diff --git a/examples/js/ShaderTranslucent.js b/examples/js/ShaderTranslucent.js new file mode 100644 index 0000000000000000000000000000000000000000..515bd7fdb592037cbdc02d57f84ac54d008d6c87 --- /dev/null +++ b/examples/js/ShaderTranslucent.js @@ -0,0 +1,206 @@ +/** + * @author daoshengmu / http://dsmu.me/ + * + */ + + +THREE.TranslucentShader = function TranslucentShader() { + + /* ------------------------------------------------------------------------------------------ + // Subsurface Scattering shader + // - Base on GDC 2011 – Approximating Translucency for a Fast, Cheap and Convincing Subsurface Scattering Look + // https://colinbarrebrisebois.com/2011/03/07/gdc-2011-approximating-translucency-for-a-fast-cheap-and-convincing-subsurface-scattering-look/ + // ------------------------------------------------------------------------------------------ */ + + this.uniforms = THREE.UniformsUtils.merge( [ + + THREE.UniformsLib[ "common" ], + THREE.UniformsLib[ "lights" ], + + { + "color": { value: new THREE.Color( 0xffffff ) }, + "diffuse": { value: new THREE.Color( 0xffffff ) }, + "specular": { value: new THREE.Color( 0xffffff ) }, + "emissive": { value: new THREE.Color( 0x000000 ) }, + "opacity": { value: 1 }, + "shininess": { value: 1 }, + + "thicknessMap": { value: null }, + "thicknessColor": { value: new THREE.Color( 0xffffff ) }, + "thicknessDistortion": { value: 0.1 }, + "thicknessAmbient": { value: 0.0 }, + "thicknessAttenuation": { value: 0.1 }, + "thicknessPower": { value: 2.0 }, + "thicknessScale": { value: 10.0 } + } + + ] ); + + this.fragmentShader = [ + "#define USE_MAP", + "#define PHONG", + "#define TRANSLUCENT", + "#include ", + "#include ", + "#include ", + "#include ", + "#include ", + + "varying vec3 vColor;", + + "uniform vec3 diffuse;", + "uniform vec3 specular;", + "uniform vec3 emissive;", + "uniform float opacity;", + "uniform float shininess;", + + // Translucency + "uniform sampler2D thicknessMap;", + "uniform float thicknessPower;", + "uniform float thicknessScale;", + "uniform float thicknessDistortion;", + "uniform float thicknessAmbient;", + "uniform float thicknessAttenuation;", + "uniform vec3 thicknessColor;", + + THREE.ShaderChunk[ "lights_pars_begin" ], + + "void RE_Direct_Scattering(const in IncidentLight directLight, const in vec2 uv, const in GeometricContext geometry, inout ReflectedLight reflectedLight) {", + " vec3 thickness = thicknessColor * texture2D(thicknessMap, uv).r;", + " vec3 scatteringHalf = normalize(directLight.direction + (geometry.normal * thicknessDistortion));", + " float scatteringDot = pow(saturate(dot(geometry.viewDir, -scatteringHalf)), thicknessPower) * thicknessScale;", + " vec3 scatteringIllu = (scatteringDot + thicknessAmbient) * thickness;", + " reflectedLight.directDiffuse += scatteringIllu * thicknessAttenuation * directLight.color;", + "}", + + "void main() {", + + " vec3 normal = normalize( vNormal );", + + " vec3 viewerDirection = normalize( vViewPosition );", + + " vec4 diffuseColor = vec4( diffuse, opacity );", + " ReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) );", + + THREE.ShaderChunk[ "map_fragment" ], + THREE.ShaderChunk[ "color_fragment" ], + THREE.ShaderChunk[ "specularmap_fragment" ], + + " vec3 totalEmissiveRadiance = emissive;", + + THREE.ShaderChunk["lights_phong_fragment"], + + // Doing lights fragment begin. + " GeometricContext geometry;", + " geometry.position = - vViewPosition;", + " geometry.normal = normal;", + " geometry.viewDir = normalize( vViewPosition );", + + " IncidentLight directLight;", + + " #if ( NUM_POINT_LIGHTS > 0 ) && defined( RE_Direct )", + + " PointLight pointLight;", + + " #pragma unroll_loop", + " for ( int i = 0; i < NUM_POINT_LIGHTS; i ++ ) {", + " pointLight = pointLights[ i ];", + " getPointDirectLightIrradiance( pointLight, geometry, directLight );", + + " #ifdef USE_SHADOWMAP", + " directLight.color *= all( bvec2( pointLight.shadow, directLight.visible ) ) ? getPointShadow( pointShadowMap[ i ], pointLight.shadowMapSize, pointLight.shadowBias, pointLight.shadowRadius, vPointShadowCoord[ i ], pointLight.shadowCameraNear, pointLight.shadowCameraFar ) : 1.0;", + " #endif", + + " RE_Direct( directLight, geometry, material, reflectedLight );", + + " #if defined( TRANSLUCENT ) && defined( USE_MAP )", + " RE_Direct_Scattering(directLight, vUv, geometry, reflectedLight);", + " #endif", + " }", + + " #endif", + + " #if ( NUM_DIR_LIGHTS > 0 ) && defined( RE_Direct )", + + " DirectionalLight directionalLight;", + + " #pragma unroll_loop", + " for ( int i = 0; i < NUM_DIR_LIGHTS; i ++ ) {", + " directionalLight = directionalLights[ i ];", + " getDirectionalDirectLightIrradiance( directionalLight, geometry, directLight );", + + " #ifdef USE_SHADOWMAP", + " directLight.color *= all( bvec2( directionalLight.shadow, directLight.visible ) ) ? getShadow( directionalShadowMap[ i ], directionalLight.shadowMapSize, directionalLight.shadowBias, directionalLight.shadowRadius, vDirectionalShadowCoord[ i ] ) : 1.0;", + " #endif", + + " RE_Direct( directLight, geometry, material, reflectedLight );", + + " #if defined( TRANSLUCENT ) && defined( USE_MAP )", + " RE_Direct_Scattering(directLight, vUv, geometry, reflectedLight);", + " #endif", + " }", + + " #endif", + + " #if defined( RE_IndirectDiffuse )", + + " vec3 irradiance = getAmbientLightIrradiance( ambientLightColor );", + + " #if ( NUM_HEMI_LIGHTS > 0 )", + + " #pragma unroll_loop", + " for ( int i = 0; i < NUM_HEMI_LIGHTS; i ++ ) {", + + " irradiance += getHemisphereLightIrradiance( hemisphereLights[ i ], geometry );", + + " }", + + " #endif", + + " #endif", + + " #if defined( RE_IndirectSpecular )", + + " vec3 radiance = vec3( 0.0 );", + " vec3 clearCoatRadiance = vec3( 0.0 );", + + " #endif", + THREE.ShaderChunk["lights_fragment_end"], + + " vec3 outgoingLight = reflectedLight.directDiffuse + reflectedLight.indirectDiffuse + reflectedLight.directSpecular + reflectedLight.indirectSpecular + totalEmissiveRadiance;", + " gl_FragColor = vec4( outgoingLight, diffuseColor.a );", // TODO, this should be pre-multiplied to allow for bright highlights on very transparent objects + + THREE.ShaderChunk["encodings_fragment"], + + "}" + + ].join( "\n" ), + + this.vertexShader = [ + + "varying vec3 vNormal;", + "varying vec2 vUv;", + + "varying vec3 vViewPosition;", + + THREE.ShaderChunk[ "common" ], + + "void main() {", + + " vec4 worldPosition = modelMatrix * vec4( position, 1.0 );", + + " vec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );", + + " vViewPosition = -mvPosition.xyz;", + + " vNormal = normalize( normalMatrix * normal );", + + " vUv = uv;", + + " gl_Position = projectionMatrix * mvPosition;", + + "}", + + ].join( "\n" ) + +}; diff --git a/examples/models/fbx/bunny_thickness.png b/examples/models/fbx/bunny_thickness.png new file mode 100644 index 0000000000000000000000000000000000000000..86c235eec00202f83cea712caf93c074e9b14327 Binary files /dev/null and b/examples/models/fbx/bunny_thickness.png differ diff --git a/examples/models/fbx/stanford-bunny.fbx b/examples/models/fbx/stanford-bunny.fbx new file mode 100644 index 0000000000000000000000000000000000000000..46540859007945d32e86f8e4a13226eb022ede96 --- /dev/null +++ b/examples/models/fbx/stanford-bunny.fbx @@ -0,0 +1,4314 @@ +; FBX 7.5.0 project file +; Copyright (C) 1997-2015 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7500 + CreationTimeStamp: { + Version: 1000 + Year: 2018 + Month: 3 + Day: 5 + Hour: 17 + Minute: 48 + Second: 57 + Millisecond: 84 + } + Creator: "FBX SDK/FBX Plugins version 2017.0.1" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "D:\bunny-ascii.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "D:\bunny-ascii.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "Autodesk" + P: "Original|ApplicationName", "KString", "", "", "Maya" + P: "Original|ApplicationVersion", "KString", "", "", "2017" + P: "Original|DateTime_GMT", "DateTime", "", "", "05/03/2018 09:48:57.083" + P: "Original|FileName", "KString", "", "", "D:\bunny-ascii.fbx" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "Autodesk" + P: "LastSaved|ApplicationName", "KString", "", "", "Maya" + P: "LastSaved|ApplicationVersion", "KString", "", "", "2017" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "05/03/2018 09:48:57.083" + P: "Original|ApplicationActiveProject", "KString", "", "", "D:\" + P: "Original|ApplicationNativeFile", "KString", "", "", "D:\bunny.ma" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",1 + P: "OriginalUnitScaleFactor", "double", "Number", "",1 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeProtocol", "enum", "", "",2 + P: "SnapOnFrameMode", "enum", "", "",0 + P: "TimeSpanStart", "KTime", "Time", "",1924423250 + P: "TimeSpanStop", "KTime", "Time", "",384884650000 + P: "CustomFrameRate", "double", "Number", "",-1 + P: "TimeMarker", "Compound", "", "" + P: "CurrentTimeMarker", "int", "Integer", "",-1 + } +} + +; Documents Description +;------------------------------------------------------------------ + +Documents: { + Count: 1 + Document: 2286596784, "", "Scene" { + Properties70: { + P: "SourceObject", "object", "", "" + P: "ActiveAnimStackName", "KString", "", "", "Take 001" + } + RootNode: 0 + } +} + +; Document References +;------------------------------------------------------------------ + +References: { +} + +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 12 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "AnimationStack" { + Count: 1 + PropertyTemplate: "FbxAnimStack" { + Properties70: { + P: "Description", "KString", "", "", "" + P: "LocalStart", "KTime", "Time", "",0 + P: "LocalStop", "KTime", "Time", "",0 + P: "ReferenceStart", "KTime", "Time", "",0 + P: "ReferenceStop", "KTime", "Time", "",0 + } + } + } + ObjectType: "AnimationLayer" { + Count: 1 + PropertyTemplate: "FbxAnimLayer" { + Properties70: { + P: "Weight", "Number", "", "A",100 + P: "Mute", "bool", "", "",0 + P: "Solo", "bool", "", "",0 + P: "Lock", "bool", "", "",0 + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BlendMode", "enum", "", "",0 + P: "RotationAccumulationMode", "enum", "", "",0 + P: "ScaleAccumulationMode", "enum", "", "",0 + P: "BlendModeBypass", "ULongLong", "", "",0 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 3 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Video" { + Count: 3 + PropertyTemplate: "FbxVideo" { + Properties70: { + P: "ImageSequence", "bool", "", "",0 + P: "ImageSequenceOffset", "int", "Integer", "",0 + P: "FrameRate", "double", "Number", "",0 + P: "LastFrame", "int", "Integer", "",0 + P: "Width", "int", "Integer", "",0 + P: "Height", "int", "Integer", "",0 + P: "Path", "KString", "XRefUrl", "", "" + P: "StartFrame", "int", "Integer", "",0 + P: "StopFrame", "int", "Integer", "",0 + P: "PlaySpeed", "double", "Number", "",0 + P: "Offset", "KTime", "Time", "",0 + P: "InterlaceMode", "enum", "", "",0 + P: "FreeRunning", "bool", "", "",0 + P: "Loop", "bool", "", "",0 + P: "AccessMode", "enum", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Geometry: 1938977120, "Geometry::", "Mesh" { + Vertices: *45774 { + a: -230.728103637695,4.68608903884888,63.8041572570801,-227.490783691406,0.933628022670746,58.9468803405762,-226.531692504883,0.776153981685638,63.7823524475098,-224.3955078125,-3.02820706367493,60.9709777832031,-229.676010131836,4.97194719314575,68.1609802246094,-223.717422485352,-3.66176891326904,63.7140464782715,-224.162475585938,-4.18509006500244,57.6427536010742,-225.297576904297,0.927745997905731,67.3258056640625,-236.843719482422,10.5875377655029,70.0572738647461,-223.672424316406,-8.0493688583374,60.4284248352051,-224.319488525391,-3.76120901107788,54.2359161376953,-226.032653808594,3.73264598846436,71.8602447509766,-232.944320678711,12.1485900878906,81.9322280883789,-222.571319580078,-3.75735807418823,66.9121551513672,-222.64631652832,-8.04057788848877,65.3647155761719,-224.177474975586,-8.02623558044434,51.465747833252,-227.580810546875,8.41695499420166,81.8371200561523,-222.975341796875,-0.335431009531021,69.7040328979492,-237.337768554688,14.6749382019043,79.6791076660156,-223.921432495117,-12.2684030532837,64.0423812866211,-225.104568481445,-12.6585397720337,59.6315460205078,-223.789443969727,3.98494005203247,77.8758316040039,-222.776336669922,0.893495976924896,73.0748672485352,-232.791305541992,14.2867002487183,89.0406341552734,-235.862609863281,15.4335126876831,84.7466125488281,-221.046157836914,-3.85493803024292,71.2336883544922,-219.633026123047,-12.5881328582764,77.2046737670898,-226.078659057617,-12.2164974212646,49.9003944396973,-224.116470336914,7.7043251991272,88.7285003662109,-239.644973754883,18.5439186096191,83.6600952148438,-216.81575012207,-8.33670711517334,82.6152954101563,-226.028656005859,-16.355001449585,63.3885154724121,-228.974945068359,-20.1664752960205,58.0794944763184,-221.062164306641,0.294422000646591,76.7400283813477,-220.446105957031,4.42645406723022,88.4941787719727,-237.654800415039,19.0945701599121,89.6150817871094,-228.256866455078,11.3987169265747,92.4335632324219,-218.751937866211,-3.77080988883972,78.1838607788086,-217.140777587891,-12.2006959915161,83.8925247192383, +-219.770050048828,-16.7652416229248,82.0451431274414,-229.306976318359,-19.4446048736572,51.4123420715332,-218.528915405273,0.611636996269226,84.8130111694336,-220.099075317383,5.27876710891724,92.7040939331055,-236.034637451172,18.0552673339844,92.6082763671875,-232.554290771484,14.8646574020386,93.9355087280273,-220.152069091797,6.01617002487183,97.8023834228516,-241.212142944336,22.6242160797119,87.4403686523438,-216.015670776367,-3.93812608718872,85.3773727416992,-227.920837402344,-21.4391994476318,66.0658721923828,-214.715545654297,-8.42812633514404,86.97802734375,-224.491500854492,-23.1049633026123,78.3620758056641,-227.699813842773,-16.2739944458008,44.1189270019531,-231.885238647461,-27.6328086853027,56.3103218078613,-216.5947265625,0.882494986057281,89.916618347168,-239.567977905273,23.2409782409668,92.7543869018555,-230.274063110352,12.9022636413574,96.0311126708984,-227.775817871094,10.7804555892944,98.9899978637695,-230.2470703125,-25.1093597412109,62.8283615112305,-215.583633422852,-13.1649904251099,88.0102233886719,-222.225280761719,-23.0879611968994,84.1755523681641,-229.390991210938,-20.89794921875,44.0617218017578,-231.288177490234,-26.1917667388916,51.2315254211426,-217.201782226563,3.59590196609497,94.6113739013672,-235.941635131836,18.2621898651123,95.5800704956055,-238.673889160156,22.1598701477051,95.9776077270508,-235.029541015625,16.359302520752,99.0584106445313,-225.574600219727,9.10402202606201,100.403846740723,-241.801193237305,27.5136966705322,92.2932434082031,-213.690444946289,-3.95762801170349,89.4182586669922,-229.06396484375,-25.5271015167236,68.668830871582,-211.975280761719,-8.62923622131348,91.734489440918,-226.190673828125,-29.2001609802246,80.5671005249023,-230.339584350586,-23.5448570251465,47.6466217041016,-233.158355712891,-33.4093742370605,56.679256439209,-231.235168457031,-29.05224609375,64.3761138916016,-211.44921875,-0.332522004842758,95.58447265625,-214.121490478516,2.96442008018494,101.213920593262,-240.769104003906,26.590705871582,95.7462844848633,-233.673400878906,13.7848510742188,102.54305267334, +-221.886245727539,6.40167713165283,102.990097045898,-231.400192260742,9.21213340759277,110.311813354492,-218.007873535156,-21.4443016052246,90.4202651977539,-212.838363647461,-13.5533275604248,92.9783096313477,-222.705337524414,-26.9908447265625,86.1907501220703,-230.773132324219,-27.451488494873,39.8035011291504,-231.030654907227,-26.8216285705566,45.5175132751465,-232.788314819336,-34.0384368896484,61.790657043457,-233.63639831543,-37.4940719604492,48.4838523864746,-212.665344238281,1.96598303318024,98.2408294677734,-237.843811035156,19.6371250152588,99.6717681884766,-239.837005615234,23.4347972869873,99.7066802978516,-238.30485534668,14.9497652053833,111.538940429688,-242.400253295898,31.6647033691406,95.9514999389648,-209.889068603516,-3.88745093345642,94.9183044433594,-229.854034423828,-29.6844081878662,70.9241561889648,-207.330825805664,-9.41667175292969,98.2461318969727,-224.853546142578,-33.0941429138184,85.4310760498047,-232.368286132813,-34.249755859375,43.4313621520996,-233.319366455078,-38.1130332946777,61.2480049133301,-233.884414672852,-38.4990730285645,54.4266357421875,-230.886123657227,-34.3138656616211,71.0269622802734,-208.551940917969,-0.877708971500397,100.715873718262,-217.241806030273,3.83887600898743,105.754364013672,-241.7001953125,28.9157333374023,99.0220108032227,-235.426574707031,11.7342500686646,112.331016540527,-227.030746459961,5.70553922653198,114.030181884766,-229.709014892578,-34.6002922058105,75.2435760498047,-221.456207275391,-34.2953605651855,91.3858642578125,-213.592437744141,-17.990062713623,94.6732788085938,-207.519836425781,-14.6749382019043,99.9733963012695,-227.883834838867,-38.0317268371582,81.7399139404297,-231.570709228516,-30.850622177124,41.617431640625,-232.229263305664,-38.968017578125,66.537223815918,-232.238265991211,-37.2247467041016,36.8986206054688,-233.85041809082,-41.6678810119629,53.6642646789551,-209.165008544922,0.126789003610611,105.14030456543,-240.630081176758,18.901252746582,110.388824462891,-241.703201293945,22.7046241760254,107.454528808594,-241.965209960938,27.8486289978027,102.517051696777, +-232.324264526367,8.34341716766357,116.499420166016,-236.472671508789,11.558032989502,118.947662353516,-242.947311401367,35.3758659362793,98.7563781738281,-206.855773925781,-4.79884004592896,99.2306213378906,-218.490921020508,-34.2302513122559,95.6477813720703,-205.188613891602,-13.1045837402344,101.958999633789,-223.578414916992,-39.9187088012695,90.0276260375977,-231.50569152832,-32.3381195068359,38.3510627746582,-233.358367919922,-42.6964836120605,59.2145042419434,-232.289260864258,-42.5356712341309,35.1850509643555,-233.632400512695,-43.0421180725098,46.2834396362305,-231.235168457031,-42.9185066223145,73.9502487182617,-205.478637695313,-3.61007404327393,103.16911315918,-222.463302612305,3.37248992919922,116.813446044922,-213.369415283203,1.80181705951691,109.446731567383,-239.818008422852,15.1575860977173,122.103965759277,-242.942321777344,33.9527282714844,101.85498046875,-228.833923339844,5.72733116149902,119.160682678223,-204.701568603516,-7.55352020263672,101.683967590332,-230.998138427734,-48.6108627319336,77.6329116821289,-214.078475952148,-33.4868812561035,100.83088684082,-209.098983764648,-24.9426441192627,102.644058227539,-201.930282592773,-20.410400390625,108.049591064453,-226.599716186523,-44.2474365234375,86.0784454345703,-230.82112121582,-31.5466918945313,34.2509613037109,-232.84033203125,-46.9720001220703,60.6742515563965,-231.617202758789,-37.7231941223145,33.4277801513672,-233.519378662109,-46.2944374084473,53.1526107788086,-232.298263549805,-44.4640579223633,67.0848770141602,-205.482635498047,-2.21811699867249,108.160598754883,-209.501037597656,0.0244420003145933,110.775863647461,-242.012222290039,18.8834495544434,122.452003479004,-243.507369995117,23.3300876617432,115.823356628418,-244.216445922852,27.5799026489258,112.910064697266,-243.427368164063,32.7128028869629,105.791374206543,-232.967346191406,8.16769981384277,121.832946777344,-236.718704223633,11.4676237106323,123.98014831543,-243.545379638672,41.2992477416992,99.2810287475586,-229.266967773438,-44.9721069335938,80.884033203125,-220.68212890625,-41.1174278259277,94.6506805419922, +-202.792373657227,-9.83954429626465,104.287216186523,-201.251220703125,-13.2396984100342,106.746459960938,-230.996139526367,-38.2216453552246,29.9569396972656,-233.26335144043,-46.6376686096191,47.2803382873535,-232.945327758789,-53.4044342041016,71.285888671875,-202.99739074707,-5.46833610534668,105.871376037598,-224.156463623047,3.27478098869324,122.276992797852,-215.501617431641,0.567425012588501,120.948852539063,-210.317108154297,-0.246076002717018,116.246391296387,-241.559173583984,19.0004615783691,131.950942993164,-243.427368164063,38.3776626586914,104.608261108398,-238.067825317383,13.275200843811,128.476593017578,-229.277969360352,5.60890913009644,124.850242614746,-227.771820068359,-50.6594619750977,84.8478164672852,-214.86555480957,-42.4702606201172,102.463043212891,-206.465728759766,-40.3392524719238,111.169898986816,-198.558975219727,-16.9247589111328,110.412818908691,-221.490203857422,-48.5611572265625,94.5979766845703,-233.595397949219,-55.0095901489258,66.4740219116211,-233.569381713867,-51.3102264404297,52.6115608215332,-230.729110717773,-43.7671890258789,28.1232604980469,-231.777221679688,-51.4359397888184,40.3601608276367,-232.150253295898,-55.5813484191895,74.554313659668,-204.154510498047,-2.65653991699219,114.341209411621,-201.605255126953,-4.69392013549805,110.610847473145,-243.805389404297,23.1975727081299,125.800331115723,-244.771484375,28.0759506225586,119.637733459473,-244.731491088867,31.6612033843994,114.441215515137,-244.215438842773,36.2238464355469,110.702850341797,-232.172256469727,7.60277509689331,128.374588012695,-243.213333129883,44.677978515625,102.960090637207,-230.1640625,-53.3104248046875,79.8417205810547,-199.192031860352,-37.3736610412598,117.039474487305,-200.449157714844,-8.11250495910645,108.034591674805,-198.440948486328,-10.6881475448608,110.274803161621,-193.210433959961,-22.3817939758301,117.333503723145,-233.160354614258,-51.0515022277832,59.7089538574219,-231.108154296875,-50.6833648681641,32.1916580200195,-232.706314086914,-50.9656944274902,46.0831184387207,-233.768417358398,-60.0874862670898,65.9915771484375, +-232.622299194336,-59.4896278381348,71.9472503662109,-217.57682800293,0.827269971370697,126.266380310059,-225.662628173828,3.77969002723694,127.362487792969,-210.980178833008,-0.531349003314972,125.637313842773,-206.847778320313,-1.71117794513702,120.300788879395,-238.984924316406,15.218391418457,132.393981933594,-243.444366455078,23.3339862823486,131.273880004883,-243.451354980469,40.6034774780273,108.593643188477,-233.56037902832,9.32962417602539,132.435974121094,-228.461898803711,-57.3805236816406,83.0085372924805,-210.187103271484,-46.7360763549805,108.485633850098,-214.79655456543,-47.9316940307617,103.332130432129,-200.878204345703,-43.4231567382813,117.172485351563,-195.20263671875,-13.7737503051758,113.621131896973,-192.124328613281,-16.6541328430176,117.145484924316,-222.14826965332,-52.5883522033691,93.6894836425781,-234.028427124023,-55.5225410461426,53.9530906677246,-230.121047973633,-51.4207382202148,29.1315593719482,-231.733215332031,-55.2820167541504,39.2946548461914,-234.017425537109,-59.2604064941406,47.6231689453125,-234.160446166992,-59.8065605163574,58.693058013916,-229.43098449707,-64.2500915527344,79.0807571411133,-199.195022583008,-6.4783148765564,112.497024536133,-199.964111328125,-5.03282308578491,117.025466918945,-237.954833984375,16.2370910644531,137.524490356445,-244.602462768555,27.9977436065674,132.877029418945,-242.637283325195,24.4014892578125,136.606399536133,-244.98551940918,27.9841423034668,127.115463256836,-245.097534179688,32.4659805297852,121.578918457031,-244.637481689453,37.9471206665039,117.218490600586,-227.168762207031,4.9315128326416,131.93293762207,-241.56217956543,53.6896591186523,110.099792480469,-225.79963684082,-59.5674362182617,87.6837921142578,-205.744674682617,-43.3512496948242,112.68204498291,-217.932861328125,-53.901782989502,99.2776336669922,-195.738693237305,-45.0077095031738,121.356895446777,-194.544570922852,-33.3776702880859,119.927749633789,-196.947799682617,-8.19796276092529,114.253196716309,-190.092132568359,-23.4426956176758,120.284790039063,-230.730117797852,-56.474536895752,31.6848087310791, +-233.312377929688,-63.7518501281738,65.7741470336914,-233.723403930664,-64.0211715698242,58.7181549072266,-231.828216552734,-64.1467895507813,72.0273590087891,-217.802841186523,1.24685204029083,130.493804931641,-203.283432006836,-3.2061140537262,122.632019042969,-233.769409179688,10.9137687683105,136.81640625,-239.215957641602,19.8633460998535,139.626678466797,-242.438262939453,48.6034622192383,114.573234558105,-228.717910766602,6.57657480239868,135.788314819336,-203.960479736328,-47.5314559936523,114.981269836426,-206.92578125,-52.198413848877,112.068984985352,-213.928466796875,-52.0959053039551,104.264221191406,-191.752304077148,-39.4570693969727,123.810134887695,-191.575286865234,-11.5376310348511,118.328598022461,-194.237533569336,-9.45194625854492,116.544425964355,-188.627990722656,-17.7999458312988,120.575820922852,-223.104370117188,-60.1797981262207,91.606086730957,-234.166442871094,-59.8395614624023,52.3486328125,-229.689025878906,-55.7272644042969,28.2930774688721,-231.72721862793,-59.4545249938965,35.6493988037109,-233.193359375,-60.4578247070313,41.9791145324707,-229.343978881836,-68.7975463867188,75.8615341186523,-209.169998168945,-0.347725987434387,132.742004394531,-197.176834106445,-6.0107889175415,118.997657775879,-232.510299682617,12.2140970230103,141.552886962891,-234.642486572266,17.3669013977051,144.71418762207,-244.538467407227,31.0410423278809,135.80632019043,-245.542556762695,32.1299476623535,128.45458984375,-239.867004394531,23.8460369110107,142.007934570313,-245.377548217773,36.4436721801758,129.040649414063,-244.032424926758,45.1417236328125,125.772323608398,-217.870864868164,2.28449392318726,136.440383911133,-241.369171142578,53.8821792602539,116.28239440918,-224.060455322266,-65.8940582275391,88.5454788208008,-215.060592651367,-65.1298828125,100.961898803711,-193.41845703125,-46.7192764282227,123.81413269043,-202.449356079102,-54.6181526184082,115.987373352051,-188.324966430664,-35.6676940917969,125.237281799316,-189.169036865234,-13.4762210845947,120.281791687012,-185.355667114258,-18.9188537597656,122.909049987793, +-233.665405273438,-64.019172668457,46.3430442810059,-229.425994873047,-60.4213218688965,25.4754009246826,-230.615112304688,-64.5414276123047,26.8642349243164,-232.328277587891,-68.8488464355469,61.3270111083984,-231.367172241211,-68.5557250976563,68.8295516967773,-233.591400146484,-64.6039352416992,52.4028396606445,-226.596710205078,-70.0909652709961,81.436882019043,-208.666961669922,0.73149698972702,139.261657714844,-198.635971069336,-4.4286642074585,124.825233459473,-229.219970703125,8.44224739074707,139.967712402344,-236.161651611328,23.0259571075439,147.015411376953,-241.136138916016,27.7369174957275,142.365951538086,-243.264343261719,48.8295822143555,126.515403747559,-222.974349975586,4.6907901763916,138.537582397461,-240.713088989258,57.8061637878418,110.322814941406,-241.52717590332,54.0501937866211,122.138977050781,-207.1748046875,-57.0521926879883,111.475929260254,-210.521133422852,-63.2006912231445,106.700454711914,-201.054214477539,-59.0894889831543,117.761543273926,-188.258941650391,-49.1108093261719,129.667709350586,-184.815612792969,-30.6448020935059,126.01335144043,-189.934112548828,-8.68527126312256,122.283988952637,-193.192428588867,-7.37275218963623,120.218780517578,-185.663696289063,-26.0732555389404,124.012153625488,-185.964736938477,-13.9795703887939,122.506004333496,-216.905746459961,-68.4322052001953,97.6711807250977,-233.282363891602,-64.0511779785156,40.8164024353027,-228.715911865234,-72.863639831543,71.9673538208008,-226.440704345703,-74.8467330932617,76.6944198608398,-199.926086425781,-2.18996500968933,136.320358276367,-195.391647338867,-5.3298921585083,123.441093444824,-230.476089477539,14.3932104110718,147.072418212891,-226.531692504883,9.37740898132324,144.97721862793,-230.259063720703,19.4525051116943,151.86589050293,-244.853500366211,36.354362487793,134.704208374023,-242.439254760742,32.0298385620117,141.644882202148,-244.328460693359,43.2381362915039,132.660003662109,-218.132873535156,3.54596710205078,141.106842041016,-239.807006835938,59.5063323974609,116.627433776855,-219.771041870117,-74.0662536621094,91.1480407714844, +-212.538330078125,-71.4973068237305,103.818176269531,-194.706588745117,-62.854362487793,126.165374755859,-190.592193603516,-52.8840827941895,128.377578735352,-206.909774780273,-61.7226486206055,111.693954467773,-183.583480834961,-41.4211578369141,131.462890625,-187.171844482422,-9.52507400512695,123.54411315918,-182.28337097168,-21.648021697998,124.894241333008,-182.396377563477,-14.8522548675537,124.112167358398,-218.162887573242,-73.4557037353516,93.9954147338867,-232.745315551758,-68.6858291625977,46.6700782775879,-232.606292724609,-68.7446365356445,39.3105583190918,-229.90803527832,-72.7296295166016,66.0834808349609,-232.290267944336,-68.4929122924805,54.6154556274414,-224.621520996094,-75.4203948974609,80.8397216796875,-200.595169067383,-0.541206002235413,142.662994384766,-194.54557800293,-2.6608510017395,138.719589233398,-192.614379882813,-4.38333892822266,129.599700927734,-224.379486083984,6.43311023712158,141.74690246582,-232.04524230957,23.5323066711426,152.38493347168,-243.257354736328,36.0726356506348,140.478775024414,-238.482879638672,32.3594703674316,147.822494506836,-235.3515625,27.7904243469238,150.589767456055,-242.342254638672,51.4837455749512,129.92073059082,-206.89176940918,2.01609706878662,144.798187255859,-239.245956420898,62.2561988830566,110.597839355469,-239.938018798828,58.5192337036133,124.082168579102,-221.294189453125,-75.394287109375,87.2280502319336,-195.824691772461,-66.4678192138672,125.336288452148,-188.966018676758,-56.4639358520508,130.541793823242,-201.955291748047,-67.439208984375,117.915565490723,-181.681304931641,-44.9970092773438,134.067138671875,-181.831314086914,-28.4006824493408,126.948448181152,-178.446990966797,-35.6110916137695,132.662994384766,-189.198059082031,-6.03021097183228,126.183372497559,-192.175338745117,-5.65980386734009,125.236282348633,-183.696502685547,-10.0521850585938,124.654220581055,-211.643249511719,-79.6246032714844,104.581253051758,-215.888656616211,-74.7952346801758,97.6857757568359,-231.574203491211,-70.2309799194336,51.5778579711914,-230.858123779297,-68.5543212890625,28.6021060943604, +-230.697113037109,-72.420295715332,60.7692565917969,-230.278060913086,-72.326789855957,54.7289657592773,-224.618515014648,-82.006233215332,66.7331390380859,-222.526321411133,-82.1648483276367,76.1417617797852,-193.940505981445,-1.38590598106384,144.069122314453,-228.814926147461,15.9046592712402,150.344741821289,-225.278579711914,11.9753742218018,149.505661010742,-218.840957641602,5.41126012802124,145.360244750977,-226.688720703125,24.0221538543701,157.064392089844,-243.453369140625,41.8054962158203,137.448471069336,-241.374160766602,50.0817108154297,136.637390136719,-212.728363037109,4.35711717605591,146.407348632813,-235.559585571289,71.2141799926758,109.99878692627,-236.649688720703,67.3843994140625,115.962364196777,-218.172897338867,-80.5128860473633,89.6571960449219,-217.368804931641,-79.1929626464844,93.0642242431641,-203.898483276367,-73.6762161254883,115.830352783203,-194.077529907227,-70.6990280151367,127.107460021973,-181.420288085938,-50.9397926330566,135.66130065918,-185.974731445313,-6.22875022888184,126.897438049316,-178.950042724609,-26.2712745666504,127.704513549805,-179.028045654297,-17.5365180969238,125.292282104492,-179.103057861328,-10.4878282546997,125.191268920898,-203.968490600586,-80.3303756713867,115.196296691895,-231.037139892578,-73.5290985107422,45.0645217895508,-231.435180664063,-72.9435501098633,39.8475112915039,-230.034057617188,-68.9360504150391,23.0834655761719,-225.42658996582,-81.1979598999023,60.8419647216797,-219.543014526367,-86.4786758422852,77.3490905761719,-219.846038818359,-80.1112518310547,85.4575805664063,-197.907897949219,0.593424022197723,147.390441894531,-191.203231811523,-2.45987105369568,140.095733642578,-222.255294799805,14.2409963607788,154.168121337891,-219.427017211914,9.7800989151001,151.659851074219,-218.789947509766,7.55926084518433,149.130615234375,-231.647201538086,28.5934009552002,154.387130737305,-222.416305541992,18.6295261383057,157.21940612793,-241.688201904297,40.4640617370605,142.515975952148,-233.007339477539,32.4285774230957,153.760070800781,-239.449966430664,36.5884857177734,146.675369262695, +-237.354766845703,64.8971633911133,125.232269287109,-239.065933227539,56.6613502502441,135.262252807617,-206.179718017578,4.06598806381226,148.920593261719,-191.029220581055,-66.1968841552734,129.711700439453,-200.529144287109,-76.7414245605469,119.83674621582,-183.51448059082,-57.0387878417969,134.840209960938,-177.120864868164,-47.0696105957031,137.433471679688,-175.924743652344,-40.527172088623,136.072326660156,-186.675796508789,-4.18978118896484,130.876831054688,-182.337371826172,-6.04386186599731,127.42049407959,-209.493041992188,-82.7311096191406,107.063491821289,-214.744552612305,-83.9245223999023,97.8277893066406,-226.970748901367,-77.6273040771484,51.3477363586426,-230.004043579102,-73.1072616577148,31.1631565093994,-229.794021606445,-72.9391479492188,23.7583312988281,-224.065460205078,-86.5870819091797,58.7144546508789,-221.223175048828,-86.7331008911133,72.8477478027344,-192.776382446289,0.391887009143829,148.253540039063,-200.246139526367,3.17481088638306,150.217727661133,-188.466979980469,-0.815622985363007,144.697189331055,-213.388412475586,6.96947288513184,150.574752807617,-222.672317504883,23.6514167785645,159.327621459961,-224.738525390625,28.2954730987549,159.685653686523,-240.105026245117,46.6127662658691,142.365951538086,-235.49658203125,37.7456016540527,151.356842041016,-237.707794189453,61.7429504394531,132.053955078125,-235.95263671875,60.749755859375,139.148635864258,-235.271560668945,71.7711334228516,116.473419189453,-218.101867675781,-84.327766418457,85.7079010009766,-216.722732543945,-86.5515823364258,91.5660781860352,-195.929702758789,-77.4450912475586,124.458206176758,-192.055328369141,-73.4500961303711,128.494598388672,-180.257171630859,-58.5890426635742,137.173446655273,-177.24787902832,-51.0995101928711,138.126541137695,-174.161575317383,-31.8925266265869,133.216064453125,-175.633712768555,-19.9125518798828,126.802429199219,-175.944732666016,-14.8498554229736,125.39429473877,-178.873031616211,-5.08687782287598,127.506500244141,-204.486541748047,-86.8306045532227,112.521026611328,-211.584228515625,-87.4061660766602,102.245018005371, +-229.666000366211,-76.441291809082,41.2762489318848,-225.675628662109,-82.1537475585938,46.2803382873535,-225.493606567383,-81.8290176391602,36.8392143249512,-224.732528686523,-82.7698135375977,57.4470329284668,-223.385391235352,-86.2753524780273,65.033073425293,-220.600112915039,-90.0736236572266,71.5624160766602,-217.734848022461,-87.8256072998047,80.8409194946289,-194.13752746582,3.22065591812134,152.122909545898,-187.141845703125,-2.01980805397034,140.437759399414,-217.122787475586,13.2655000686646,155.964279174805,-224.666519165039,32.3491706848145,160.248718261719,-219.384002685547,23.5395088195801,160.737762451172,-237.945831298828,40.6315841674805,148.173522949219,-237.406768798828,47.0876121520996,146.751388549805,-231.949234008789,36.3989677429199,154.624145507813,-236.549697875977,66.4339065551758,129.698699951172,-235.887619018555,63.9419631958008,136.53337097168,-205.003601074219,7.13263893127441,152.304931640625,-207.453842163086,7.64967012405396,152.562942504883,-234.607498168945,75.3048782348633,114.740249633789,-235.732604980469,70.7631378173828,126.372383117676,-199.641067504883,-81.9159240722656,119.755737304688,-180.975250244141,-66.3976058959961,136.569396972656,-172.7734375,-51.6718635559082,139.797698974609,-173.087463378906,-39.699390411377,137.007431030273,-174.70964050293,-24.1045627593994,128.865631103516,-178.563995361328,-2.78457307815552,131.637908935547,-173.975555419922,-10.6575441360474,124.658218383789,-173.84553527832,-6.03542184829712,125.029258728027,-214.083480834961,-87.9794235229492,97.603874206543,-226.23567199707,-81.5786972045898,41.9448165893555,-225.287582397461,-81.3678741455078,52.2821273803711,-224.979553222656,-82.2422561645508,31.9600353240967,-228.476898193359,-77.1998672485352,24.2743816375732,-223.266372680664,-90.8893051147461,61.870964050293,-216.930770874023,-92.3882598876953,77.2396697998047,-221.019165039063,-95.3891448974609,65.9990768432617,-186.962829589844,1.28657603263855,149.284622192383,-188.501983642578,3.52090501785278,153.435043334961,-196.665771484375,6.60955810546875,154.843185424805, +-182.374374389648,1.00275802612305,147.697479248047,-217.084777832031,16.8395500183105,158.266510009766,-213.774444580078,10.2253017425537,154.202117919922,-225.428588867188,36.7131958007813,159.693649291992,-220.865142822266,28.2008628845215,161.419815063477,-221.711227416992,33.4071731567383,161.608840942383,-233.979431152344,58.6679496765137,144.276138305664,-228.500900268555,41.2052345275879,156.967391967773,-235.223556518555,46.153923034668,149.85368347168,-235.567581176758,68.2639923095703,133.158050537109,-233.391372680664,63.9368667602539,142.020919799805,-201.017196655273,7.33700895309448,153.319030761719,-235.034545898438,75.2961807250977,124.891242980957,-216.143692016602,-91.6962890625,88.0314331054688,-195.744689941406,-82.1708526611328,123.314086914063,-189.818115234375,-77.5901031494141,129.123657226563,-181.462295532227,-72.096565246582,135.429275512695,-178.583999633789,-66.5501251220703,137.794494628906,-177.326873779297,-58.2917098999023,138.512573242188,-171.382293701172,-44.8578948974609,139.334655761719,-166.78385925293,-31.1825561523438,135.763305664063,-167.741943359375,-25.6884174346924,132.913024902344,-171.931365966797,-15.5801267623901,126.238372802734,-173.790542602539,-3.41921496391296,127.088455200195,-203.180404663086,-91.027717590332,111.951972961426,-197.618881225586,-86.4944763183594,120.039772033691,-210.684158325195,-91.8404006958008,101.349937438965,-213.49543762207,-92.2327423095703,96.0319137573242,-224.451507568359,-86.7368011474609,44.0819206237793,-224.548522949219,-86.0297317504883,48.9267997741699,-228.023849487305,-77.5851974487305,28.8807334899902,-223.640426635742,-86.2636566162109,32.8415222167969,-224.01545715332,-91.3036499023438,55.5529479980469,-218.615921020508,-97.5136566162109,70.0347671508789,-214.769561767578,-95.9443969726563,80.1918640136719,-192.341354370117,6.75293207168579,156.605346679688,-174.783630371094,0.546265006065369,141.327850341797,-211.950286865234,13.8664588928223,157.244400024414,-215.10758972168,21.1683731079102,160.909774780273,-217.856857299805,26.4922962188721,162.077880859375, +-230.288070678711,57.5156326293945,150.455749511719,-233.063339233398,45.1933288574219,152.276916503906,-234.074447631836,75.6329116821289,131.44189453125,-231.927230834961,73.7383270263672,139.169631958008,-201.605255126953,11.8933658599854,155.964279174805,-234.211456298828,84.2340545654297,120.95085144043,-234.436477661133,77.8057250976563,128.04655456543,-214.614532470703,-95.6671752929688,83.6296997070313,-172.034362792969,-61.3430137634277,139.812698364258,-168.92805480957,-47.1096153259277,140.24674987793,-163.492523193359,-14.0121726989746,129.040649414063,-169.165084838867,-10.4660263061523,125.494300842285,-169.915161132813,-5.99768781661987,125.194274902344,-167.589935302734,0.305251002311707,131.60090637207,-225.896636962891,-81.6934051513672,25.9666481018066,-223.349395751953,-86.6852951049805,27.2893772125244,-224.333480834961,-91.0843276977539,48.9407997131348,-222.809326171875,-95.4110488891602,59.1619033813477,-213.865463256836,-100.148811340332,76.9716491699219,-219.641021728516,-98.9082870483398,65.553825378418,-183.782516479492,5.30957984924316,158.185501098633,-187.625885009766,7.68477296829224,160.790756225586,-195.531661987305,9.14763641357422,157.861465454102,-198.70198059082,10.5882377624512,157.023391723633,-176.416778564453,2.60349488258362,149.857696533203,-212.006286621094,17.9503593444824,159.720657348633,-223.706420898438,41.4404602050781,160.106704711914,-217.021774291992,32.0510406494141,162.541931152344,-230.514099121094,64.0955810546875,146.892395019531,-227.420791625977,46.1554260253906,156.72135925293,-230.330078125,53.7390632629395,151.998901367188,-232.38427734375,78.1090545654297,134.779205322266,-204.748565673828,15.2050895690918,157.567443847656,-234.193450927734,79.7342147827148,112.348014831543,-214.864547729492,-95.0794143676758,87.237548828125,-213.447418212891,-95.852294921875,91.3909606933594,-189.931106567383,-88.9252090454102,124.896240234375,-190.136138916016,-83.0110321044922,127.101455688477,-178.972045898438,-80.9344253540039,134.678192138672,-173.140472412109,-78.0416412353516,138.470581054688, +-173.321502685547,-72.0014572143555,139.256652832031,-168.016967773438,-61.8991661071777,141.032821655273,-162.356414794922,-37.5173759460449,138.854614257813,-164.464630126953,-52.1887168884277,141.167831420898,-164.073577880859,-34.6613960266113,137.771499633789,-160.045181274414,-22.6254177093506,134.961227416992,-164.387603759766,-9.90130043029785,126.93643951416,-167.503921508789,-1.83177900314331,127.383483886719,-203.027389526367,-96.7083740234375,108.287612915039,-195.970703125,-90.3397521972656,119.619720458984,-208.935974121094,-96.6966781616211,100.386840820313,-223.024368286133,-90.5249710083008,32.9827346801758,-223.847442626953,-90.8906021118164,40.2496490478516,-225.386596679688,-81.9602355957031,20.8681488037109,-223.348388671875,-95.4144515991211,52.8368797302246,-220.988159179688,-99.3835372924805,59.2430114746094,-211.799270629883,-104.021194458008,76.7282257080078,-215.593627929688,-103.144111633301,69.0858688354492,-212.069274902344,-101.136909484863,80.6403045654297,-179.583099365234,3.85075688362122,155.02018737793,-191.588287353516,11.5312299728394,163.798049926758,-167.140884399414,2.40266489982605,138.898620605469,-173.610504150391,4.41265201568604,153.341018676758,-220.207092285156,41.0052185058594,161.607833862305,-212.241302490234,22.3695907592773,161.594833374023,-213.404418945313,28.7264156341553,162.5859375,-217.916854858398,37.3216590881348,162.309906005859,-227.906829833984,59.342113494873,153.320022583008,-231.642196655273,92.068115234375,127.432495117188,-232.975341796875,92.0968246459961,122.189971923828,-226.661712646484,79.0501403808594,146.052307128906,-229.766021728516,87.7514953613281,134.908218383789,-202.169311523438,17.6419277191162,160.397720336914,-233.438385009766,95.0367126464844,115.49031829834,-234.003433227539,90.5236740112305,111.610946655273,-212.305313110352,-99.0992126464844,88.1848449707031,-211.275207519531,-97.4941482543945,95.3858489990234,-184.444580078125,-84.7120971679688,130.130752563477,-170.130172729492,-72.3410873413086,140.89680480957,-159.159103393555,-42.5935745239258,140.069732666016, +-157.119903564453,-28.0439491271973,138.208541870117,-159.483139038086,-11.1086893081665,129.141662597656,-166.23779296875,-5.89057683944702,125.661315917969,-162.63444519043,2.65605998039246,131.454895019531,-198.495956420898,-95.0296173095703,114.450218200684,-222.240280151367,-90.8731002807617,27.970344543457,-223.904434204102,-94.1285247802734,48.363941192627,-221.416198730469,-99.2026214599609,55.0589981079102,-216.884750366211,-103.533149719238,64.6955413818359,-210.10009765625,-103.174110412598,83.4837799072266,-177.569900512695,5.89132690429688,158.955581665039,-183.164459228516,7.59059381484985,161.913864135742,-186.530776977539,10.4187211990356,164.805160522461,-205.509643554688,20.8981475830078,160.491729736328,-221.355194091797,45.198127746582,161.510833740234,-208.743957519531,22.6971244812012,161.152786254883,-209.035995483398,33.0009346008301,162.974975585938,-213.722442626953,36.8303070068359,163.109985351563,-224.302490234375,67.8812561035156,156.618347167969,-224.330490112305,46.5800666809082,159.192611694336,-227.178756713867,55.7062606811523,154.895172119141,-226.439697265625,71.7690353393555,150.82177734375,-228.702911376953,82.3317642211914,140.743789672852,-197.176834106445,15.906457901001,163.833068847656,-187.08984375,-95.0316162109375,124.026153564453,-179.014038085938,-86.295654296875,133.249053955078,-172.141372680664,-83.958625793457,137.800506591797,-166.876861572266,-67.0619659423828,142.440963745117,-162.386413574219,-54.1746101379395,141.755889892578,-159.697158813477,-34.4270706176758,138.934616088867,-160.671249389648,-6.07046508789063,126.811431884766,-162.814453125,-2.43849897384644,126.234367370605,-160.019180297852,2.03099894523621,128.084548950195,-206.192718505859,-99.7462768554688,101.498954772949,-198.55696105957,-98.7459716796875,111.479927062988,-190.240142822266,-97.6537704467773,119.748741149902,-207.984878540039,-100.984893798828,97.018310546875,-223.301391601563,-95.0835189819336,42.8190994262695,-222.17626953125,-86.645393371582,21.459005355835,-222.265289306641,-95.2947387695313,33.8886222839355, +-221.626220703125,-98.8550872802734,48.3953437805176,-220.1220703125,-100.906890869141,51.698070526123,-217.783843994141,-103.732162475586,60.6357460021973,-206.906784057617,-110.668838500977,76.7248153686523,-206.244720458984,-110.91487121582,78.6194076538086,-208.390930175781,-111.212898254395,68.0832748413086,-189.603088378906,13.5918321609497,166.982376098633,-161.523330688477,5.56725597381592,140.580780029297,-168.233993530273,5.00244998931885,149.055618286133,-218.55192565918,45.2569313049316,163.145980834961,-215.164581298828,41.1453323364258,163.58203125,-208.061904907227,27.7542190551758,162.292907714844,-224.40950012207,63.4754219055176,158.136505126953,-228.702911376953,93.0032196044922,133.243057250977,-224.871551513672,76.9477386474609,150.415740966797,-224.944549560547,84.5394821166992,145.491256713867,-226.739730834961,91.5629730224609,137.836517333984,-198.178924560547,20.1228713989258,165.965255737305,-203.12141418457,22.6044158935547,162.226898193359,-207.782867431641,-103.328125,92.3253555297852,-180.454177856445,-90.9962158203125,130.813827514648,-165.46272277832,-82.656005859375,142.591979980469,-165.027679443359,-77.2970733642578,144.125122070313,-163.146484375,-68.7577362060547,145.23323059082,-161.338317871094,-57.9052734375,143.298049926758,-153.053497314453,-37.0965347290039,140.728790283203,-151.048309326172,-41.3450508117676,141.793899536133,-153.05549621582,-31.8031158447266,140.289749145508,-157.526947021484,6.68800497055054,133.718109130859,-201.955291748047,-101.682960510254,104.941291809082,-191.687286376953,-101.511947631836,115.435317993164,-219.933059692383,-91.0782241821289,21.4553050994873,-221.63623046875,-95.4429550170898,29.2398681640625,-218.177886962891,-103.519149780273,55.3607292175293,-211.378219604492,-109.492729187012,62.6771469116211,-203.406448364258,-109.85376739502,88.7205963134766,-174.496597290039,9.24009609222412,163.781051635742,-171.389297485352,6.90554714202881,157.949478149414,-176.775833129883,11.4736242294312,166.985366821289,-183.532485961914,14.2081928253174,169.021560668945, +-193.373443603516,14.9653663635254,166.027282714844,-158.994094848633,7.83937788009644,141.860916137695,-164.282608032227,6.11840915679932,147.330444335938,-222.815338134766,50.2929267883301,160.416732788086,-219.638031005859,50.1165084838867,163.625030517578,-209.708053588867,36.8470115661621,163.742050170898,-204.284515380859,30.8409214019775,163.809051513672,-211.381225585938,41.1831359863281,165.233200073242,-223.286376953125,72.0207595825195,156.101303100586,-221.394195556641,67.4209060668945,160.958770751953,-228.40788269043,97.3811416625977,130.299774169922,-222.99836730957,78.1842575073242,152.511947631836,-224.994552612305,89.265251159668,141.999908447266,-192.839401245117,18.4183044433594,168.716537475586,-203.984481811523,26.7481212615967,163.033981323242,-184.035537719727,-103.179107666016,121.818946838379,-179.198059082031,-95.2690353393555,129.81672668457,-169.070068359375,-90.6939849853516,137.690505981445,-164.202590942383,-73.855842590332,144.871200561523,-160.231216430664,-63.3341064453125,145.859298706055,-154.051605224609,-47.0346069335938,142.648986816406,-157.927978515625,-1.51779901981354,126.156364440918,-155.107711791992,6.43975114822388,129.691711425781,-203.124404907227,-103.825172424316,100.74787902832,-195.872695922852,-105.679351806641,107.217506408691,-188.745010375977,-104.499237060547,116.278396606445,-200.506149291992,-111.466926574707,92.3702545166016,-220.107070922852,-96.1154174804688,24.9567489624023,-220.651138305664,-99.3196334838867,30.8255252838135,-220.264083862305,-99.9929962158203,38.8342094421387,-217.151779174805,-103.95418548584,49.2748336791992,-211.687255859375,-109.560737609863,55.2108116149902,-201.931289672852,-115.991371154785,81.7644119262695,-204.771575927734,-114.63623046875,71.596321105957,-208.657943725586,-113.080078125,61.3326148986816,-186.70280456543,17.7476387023926,171.102767944336,-165.786743164063,8.2698802947998,154.408126831055,-216.768753051758,48.989200592041,165.651229858398,-206.050704956055,36.8981170654297,164.79216003418,-213.072387695313,45.6348724365234,166.786346435547, +-222.575317382813,58.763355255127,161.386825561523,-220.134078979492,72.9521484375,159.443618774414,-221.02116394043,62.1569938659668,162.854949951172,-225.64762878418,97.5597610473633,134.524185180664,-220.509124755859,88.618782043457,148.544555664063,-223.335388183594,93.3637466430664,141.140838623047,-198.09391784668,24.1966705322266,167.887466430664,-178.667007446289,-108.778656005859,123.297088623047,-159.110092163086,-89.2353439331055,143.687072753906,-160.515228271484,-79.2876663208008,145.93830871582,-157.705947875977,-72.8565444946289,147.843490600586,-159.28010559082,-67.9546585083008,147.081420898438,-155.971786499023,-54.9848861694336,144.939208984375,-148.115020751953,-36.7629013061523,141.299850463867,-151.437347412109,-49.0687065124512,144.651168823242,-157.344924926758,2.20316600799561,126.748420715332,-152.034408569336,12.3573112487793,135.698303222656,-200.302139282227,-109.112693786621,96.7674865722656,-217.76383972168,-95.4732513427734,18.5539207458496,-220.473098754883,-99.7437744140625,35.0432357788086,-215.81965637207,-105.280311584473,43.0588226318359,-199.952102661133,-120.365791320801,76.0068511962891,-206.326736450195,-114.542221069336,66.1068801879883,-200.59016418457,-114.538223266602,87.4056701660156,-169.085067749023,9.61317157745361,161.703857421875,-170.604217529297,12.5323276519775,166.502319335938,-178.078948974609,14.3820085525513,169.476608276367,-162.379409790039,9.00508213043213,151.583862304688,-219.365997314453,54.5072402954102,164.761154174805,-206.065704345703,40.1630363464355,166.974365234375,-201.96630859375,36.5299797058105,167.263397216797,-208.680953979492,46.6417694091797,170.333694458008,-221.454208374023,76.2545700073242,155.977279663086,-216.43571472168,63.3456077575684,166.730331420898,-215.500610351563,72.1473693847656,164.05908203125,-221.700225830078,97.3673477172852,139.812698364258,-191.809295654297,23.7363243103027,171.816848754883,-182.161346435547,-111.721946716309,118.314598083496,-177.375900268555,-101.496948242188,128.06755065918,-169.84114074707,-95.4299545288086,135.422271728516, +-158.085006713867,-94.2769393920898,141.970916748047,-150.657272338867,-63.3495063781738,149.469650268555,-147.335952758789,-55.1578063964844,148.690567016602,-146.651870727539,-41.6116790771484,142.93000793457,-155.181716918945,12.1384887695313,143.151031494141,-193.468460083008,-108.639640808105,107.148498535156,-196.860794067383,-110.806854248047,99.9337997436523,-218.826950073242,-99.9279937744141,24.1827735900879,-217.890853881836,-103.989189147949,32.2720642089844,-217.475814819336,-103.769172668457,36.8125114440918,-212.870376586914,-108.323616027832,47.990608215332,-194.988616943359,-126.533401489258,76.8616333007813,-201.690277099609,-119.470710754395,71.4072036743164,-209.022994995117,-114.092178344727,53.0307006835938,-206.342727661133,-118.189582824707,60.1444969177246,-193.813491821289,-121.374893188477,92.5916748046875,-173.919540405273,15.507719039917,169.956665039063,-175.905746459961,19.8914489746094,173.045959472656,-188.095932006836,22.3232879638672,173.025970458984,-158.536041259766,12.7456493377686,152.3779296875,-160.948272705078,12.8182563781738,156.581344604492,-210.317108154297,54.1874084472656,171.980850219727,-209.751068115234,50.2331199645996,171.448806762695,-197.857894897461,28.5399971008301,169.281600952148,-199.060012817383,36.2785568237305,169.429611206055,-219.701034545898,58.6880531311035,164.714141845703,-218.017868041992,83.8754196166992,154.43913269043,-214.896575927734,67.7697372436523,166.572326660156,-215.369613647461,78.069953918457,160.643737792969,-218.043869018555,98.8490905761719,142.399963378906,-191.728302001953,27.8833312988281,173.247985839844,-196.151718139648,-113.943168640137,97.5359649658203,-186.30876159668,-112.351005554199,113.312103271484,-177.831939697266,-113.810157775879,120.752838134766,-174.508605957031,-111.041877746582,124.774230957031,-156.364837646484,-86.4379653930664,145.748275756836,-153.942581176758,-90.9360122680664,145.031219482422,-156.476837158203,-79.1018524169922,147.400451660156,-154.153610229492,-68.4067077636719,148.906600952148,-146.606872558594,-50.210319519043,147.093414306641, +-150.430252075195,16.9431591033936,140.890808105469,-217.103790283203,-99.9738998413086,18.6447315216064,-217.768844604492,-103.996192932129,28.2071666717529,-212.342315673828,-109.408721923828,40.0521278381348,-211.222198486328,-110.066787719727,51.0457038879395,-196.577774047852,-122.227981567383,83.677604675293,-198.353942871094,-124.642211914063,72.1344757080078,-203.136413574219,-122.989051818848,62.8621635437012,-193.744491577148,-118.00456237793,97.4091491699219,-166.386810302734,14.1045818328857,165.601226806641,-168.456008911133,17.4270076751709,169.662628173828,-180.003158569336,23.204273223877,174.434097290039,-165.270706176758,12.4016151428223,161.948883056641,-201.232223510742,41.4551620483398,170.154678344727,-202.912399291992,45.0606155395508,171.579818725586,-206.713760375977,50.567455291748,173.020965576172,-210.48112487793,63.4207153320313,171.288803100586,-210.870178222656,58.7327575683594,171.712829589844,-210.145095825195,67.4529037475586,170.236694335938,-209.106994628906,79.2439651489258,164.674133300781,-217.396820068359,91.2504425048828,149.578659057617,-189.39306640625,25.8622341156006,173.836044311523,-183.380477905273,-116.636428833008,113.055084228516,-168.856048583984,-99.5234527587891,134.013137817383,-153.966583251953,-96.8521881103516,142.222946166992,-151.784378051758,-76.8616333007813,148.479553222656,-151.993408203125,-72.9667510986328,149.098617553711,-145.03271484375,-55.4221305847168,149.420639038086,-147.326950073242,-67.8301467895508,150.495758056641,-142.771484375,-50.3751373291016,148.126525878906,-155.553741455078,17.6693325042725,155.202209472656,-193.752502441406,-113.243095397949,102.490043640137,-189.754104614258,-116.318397521973,105.515342712402,-216.119674682617,-104.363220214844,20.3347969055176,-212.861358642578,-111.102890014648,29.2184658050537,-209.572036743164,-113.359107971191,46.5344619750977,-191.882308959961,-128.127563476563,81.8117218017578,-196.049728393555,-127.45149230957,71.9026565551758,-205.633651733398,-122.197967529297,53.1991195678711,-205.082611083984,-121.872940063477,58.4300308227539, +-191.884307861328,-124.849235534668,90.0993347167969,-189.434066772461,-121.839942932129,99.4394454956055,-171.810348510742,19.3194923400879,172.163879394531,-175.624710083008,24.2999801635742,175.186172485352,-184.132553100586,27.907735824585,175.472198486328,-158.760055541992,17.6282272338867,160.577743530273,-195.817687988281,37.021728515625,171.731826782227,-194.984619140625,32.8619194030762,172.040863037109,-198.103927612305,41.4397583007813,171.387802124023,-210.947174072266,86.5316772460938,158.55354309082,-208.445922851563,72.6009216308594,168.905548095703,-206.881774902344,95.9033966064453,154.111099243164,-191.548278808594,33.0107345581055,174.142074584961,-172.501403808594,-116.217391967773,122.776031494141,-175.999755859375,-118.349594116211,118.599624633789,-169.231079101563,-109.803756713867,128.054550170898,-160.62825012207,-99.8695907592773,137.818511962891,-153.029495239258,-86.0872344970703,146.598373413086,-149.485168457031,-95.2766418457031,143.817092895508,-145.876800537109,-62.0265769958496,150.442749023438,-153.384536743164,22.3740921020508,156.890380859375,-214.110488891602,-104.994293212891,14.6610412597656,-214.110488891602,-109.080688476563,25.9885501861572,-210.480133056641,-113.958168029785,32.8078193664551,-209.779067993164,-113.922164916992,39.0465316772461,-191.805297851563,-130.308776855469,75.0456619262695,-195.969711303711,-128.951629638672,68.3682022094727,-200.354141235352,-126.501396179199,63.6396408081055,-207.747863769531,-117.864547729492,50.1501159667969,-202.715362548828,-126.29337310791,56.0045928955078,-163.771545410156,17.5141162872314,166.858352661133,-170.444198608398,22.7776317596436,173.663024902344,-178.941040039063,27.7458171844482,176.279281616211,-206.395736694336,55.1164016723633,174.07405090332,-199.751068115234,51.2836227416992,174.763137817383,-207.159805297852,60.1003913879395,173.64501953125,-205.930679321289,64.78955078125,173.281982421875,-206.122695922852,69.1047744750977,171.72282409668,-204.694564819336,76.6843185424805,168.757537841797,-206.573745727539,85.1866455078125,162.431930541992, +-187.098831176758,33.0652389526367,175.840240478516,-184.539596557617,-120.392791748047,107.728561401367,-179.776123046875,-121.139869689941,112.274002075195,-150.013214111328,-89.4627685546875,146.012313842773,-151.852386474609,-105.10230255127,138.274551391602,-147.686981201172,-103.732162475586,140.010726928711,-146.642868041992,-72.9700469970703,149.789672851563,-138.121047973633,-53.8747787475586,149.786682128906,-143.465560913086,-67.7515411376953,150.845779418945,-148.070007324219,21.7912368774414,141.91291809082,-213.45442199707,-109.161697387695,19.9703598022461,-208.668960571289,-117.178482055664,25.5434055328369,-208.590942382813,-117.723533630371,31.2706661224365,-207.648849487305,-118.593620300293,43.4252624511719,-186.320755004883,-132.0439453125,84.458381652832,-188.723983764648,-129.351684570313,86.5662841796875,-200.551147460938,-127.57950592041,59.6540489196777,-205.768676757813,-122.666023254395,45.794189453125,-184.715606689453,-128.812622070313,95.0407180786133,-164.23258972168,22.459400177002,170.762741088867,-174.136566162109,28.4365863800049,176.222274780273,-180.386184692383,31.835018157959,176.948348999023,-157.676956176758,22.3964958190918,163.979080200195,-198.174926757813,46.0386123657227,172.994964599609,-195.035614013672,41.4625625610352,172.740936279297,-205.555648803711,92.2126312255859,157.986480712891,-187.498886108398,37.429370880127,175.972259521484,-158.772064208984,-117.88655090332,127.78052520752,-169.265106201172,-119.829742431641,121.809944152832,-173.608505249023,-123.042053222656,115.760345458984,-160.42822265625,-112.3330078125,130.401779174805,-157.255905151367,-107.413528442383,134.889221191406,-146.323837280273,-99.7945785522461,141.762893676758,-147.669982910156,-90.0891265869141,145.730285644531,-144.952697753906,-82.4615783691406,147.382446289063,-142.882507324219,-72.2565765380859,150.12971496582,-137.050933837891,-58.7594566345215,150.382736206055,-147.020919799805,26.5576038360596,144.059127807617,-212.580337524414,-109.158699035645,16.3544063568115,-208.063903808594,-118.054565429688,36.7350044250488, +-183.74250793457,-136.258346557617,76.4671936035156,-197.153823852539,-129.92073059082,62.4471206665039,-189.760101318359,-134.06413269043,67.3034057617188,-199.796096801758,-129.168655395508,55.4756393432617,-181.606307983398,-124.82022857666,105.52734375,-160.829254150391,22.1792736053467,167.624435424805,-163.737548828125,27.022346496582,172.465896606445,-168.616027832031,27.8463287353516,174.782135009766,-202.342330932617,59.807559967041,175.37419128418,-199.888092041016,53.5046920776367,175.287689208984,-194.537567138672,46.1469192504883,173.764022827148,-198.929000854492,69.884147644043,173.642028808594,-201.099212646484,75.2866744995117,170.755737304688,-200.976196289063,86.0261306762695,164.549118041992,-201.755279541016,94.3381500244141,158.40153503418,-202.266311645508,100.085807800293,153.43603515625,-183.393478393555,39.3389511108398,176.787322998047,-191.399261474609,41.9607124328613,174.274078369141,-168.167984008789,-123.957145690918,118.614631652832,-171.614334106445,-126.972442626953,112.697044372559,-147.073913574219,-113.597129821777,136.091339111328,-142.813507080078,-109.172698974609,139.187637329102,-143.461563110352,-103.983192443848,140.643783569336,-143.954605102539,-96.511962890625,142.872009277344,-137.642990112305,-63.0951843261719,150.302734375,-139.915222167969,-73.3866958618164,149.52766418457,-151.777374267578,26.7199192047119,157.039398193359,-154.665664672852,26.9034366607666,162.64094543457,-209.687057495117,-113.823150634766,17.2655963897705,-210.529144287109,-109.738746643066,11.9371728897095,-205.213607788086,-122.538009643555,30.1331558227539,-205.45263671875,-122.775032043457,36.161548614502,-182.624389648438,-138.267547607422,73.2579803466797,-179.2470703125,-138.389572143555,80.2869720458984,-182.992446899414,-132.788009643555,89.406364440918,-196.158721923828,-131.404876708984,58.8681716918945,-203.09440612793,-126.545394897461,44.432056427002,-199.044006347656,-130.452789306641,49.7009735107422,-178.447982788086,-131.956924438477,98.0084075927734,-158.571044921875,27.3075752258301,168.252487182617, +-173.416488647461,32.6473999023438,176.595321655273,-168.553024291992,32.3265647888184,175.399185180664,-200.025100708008,55.725757598877,175.812240600586,-194.907608032227,55.360523223877,175.798217773438,-199.575057983398,64.7381362915039,175.043167114258,-188.693984985352,46.7817840576172,174.94514465332,-178.172973632813,37.2508506774902,177.168365478516,-151.516357421875,-122.563011169434,127.620506286621,-151.42333984375,-115.468315124512,132.994049072266,-160.598251342773,-124.983245849609,121.569915771484,-137.844009399414,-84.0595397949219,145.802291870117,-143.259552001953,-91.4003601074219,144.552169799805,-134.145645141602,-64.2269973754883,149.814697265625,-147.642974853516,31.4562816619873,149.250625610352,-207.557830810547,-117.527519226074,20.892650604248,-204.155517578125,-122.410995483398,24.8410377502441,-176.828826904297,-141.833908081055,77.1622619628906,-177.337875366211,-134.698196411133,93.9158020019531,-191.033218383789,-135.076232910156,58.8659706115723,-185.94172668457,-137.790496826172,66.2005920410156,-169.664123535156,-131.89892578125,107.572547912598,-160.631240844727,32.4130783081055,171.231781005859,-164.930679321289,30.7891178131104,173.802047729492,-194.301544189453,60.5599365234375,176.178268432617,-191.30924987793,51.2608222961426,175.020141601563,-197.683883666992,79.2132568359375,169.49560546875,-195.006622314453,68.6422271728516,174.31608581543,-197.981903076172,91.6813812255859,161.71484375,-198.691970825195,101.144912719727,154.177124023438,-185.394668579102,50.5128517150879,175.181167602539,-180.58219909668,42.1638298034668,176.798324584961,-151.193313598633,-119.075668334961,130.526794433594,-154.900680541992,-133.40608215332,116.252395629883,-161.122283935547,-131.631896972656,114.306205749512,-145.285751342773,-117.266487121582,134.363159179688,-137.573989868164,-111.584930419922,140.114730834961,-140.770309448242,-101.845977783203,141.911911010742,-136.661895751953,-77.4686889648438,147.590454101563,-140.215240478516,-94.4577560424805,143.816101074219,-133.523590087891,-72.9234466552734,148.157516479492, +-151.013305664063,31.1953582763672,157.7724609375,-154.283615112305,31.4864864349365,163.774047851563,-207.751861572266,-114.253196716309,12.9932765960693,-205.790664672852,-118.221580505371,16.5331249237061,-201.375244140625,-126.137359619141,29.4798927307129,-202.274322509766,-126.672416687012,37.4608726501465,-178.557006835938,-143.04801940918,72.0366592407227,-169.077072143555,-147.386444091797,78.8155212402344,-173.547515869141,-139.543670654297,87.5161819458008,-188.945022583008,-136.337371826172,60.7237548828125,-192.260345458984,-134.639205932617,54.2028121948242,-200.226119995117,-129.105651855469,42.9237098693848,-171.765350341797,-134.885208129883,100.428848266602,-156.987899780273,31.4068775177002,167.494415283203,-170.090179443359,37.8020057678223,176.03825378418,-164.809661865234,36.3119583129883,173.798034667969,-188.141952514648,53.840877532959,175.149154663086,-192.971420288086,63.6127319335938,175.64421081543,-194.27653503418,75.2597808837891,171.746826171875,-173.370498657227,41.8417015075684,176.375289916992,-152.993499755859,-131.757904052734,118.947662353516,-138.093032836914,-117.293487548828,136.994430541992,-133.424575805664,-80.399284362793,146.85139465332,-147.318954467773,36.0246276855469,149.916687011719,-195.854690551758,-128.375579833984,21.4425048828125,-175.231674194336,-147.457443237305,70.2008819580078,-169.990158081055,-143.13102722168,85.0408325195313,-171.433303833008,-148.929580688477,73.0020599365234,-166.106781005859,-139.414657592773,98.0615158081055,-186.427780151367,-139.660690307617,56.9043807983398,-185.798721313477,-138.972610473633,63.1216926574707,-177.996948242188,-147.399444580078,65.4060134887695,-189.402069091797,-137.28645324707,49.058910369873,-195.647674560547,-131.973937988281,39.8652114868164,-192.483367919922,-134.961227416992,46.3128433227539,-159.417129516602,-138.901611328125,105.594352722168,-157.486938476563,38.0885314941406,167.809448242188,-185.172653198242,56.2820167541504,174.673110961914,-194.502578735352,83.7242050170898,167.245391845703,-190.108123779297,69.3493957519531,173.662017822266, +-193.68147277832,102.18701171875,154.713165283203,-181.731323242188,51.0832061767578,175.101165771484,-176.480804443359,46.1926231384277,175.963256835938,-155.705749511719,-138.610580444336,109.20671081543,-148.078002929688,-135.332260131836,117.65453338623,-140.256240844727,-135.37126159668,120.108772277832,-138.298065185547,-120.83283996582,134.201156616211,-135.825820922852,-113.081581115723,139.777206420898,-134.330673217773,-104.870277404785,143.216033935547,-137.127944946289,-98.5896606445313,143.696075439453,-136.800903320313,-88.3439559936523,145.07421875,-133.74560546875,-86.1942443847656,145.851287841797,-151.014297485352,35.6223907470703,158.339508056641,-154.801681518555,35.8870162963867,164.624145507813,-203.42643737793,-118.925651550293,13.5906362533569,-196.522766113281,-130.233749389648,31.1939601898193,-163.848571777344,-148.560562133789,82.7247085571289,-165.045669555664,-152.154907226563,74.9168395996094,-163.838562011719,-143.717086791992,91.707389831543,-159.63916015625,-142.643981933594,98.6880722045898,-160.615249633789,35.8425140380859,171.063766479492,-169.590133666992,41.9539108276367,175.484191894531,-165.699752807617,40.5869750976563,173.926040649414,-187.8369140625,64.5023193359375,174.252090454102,-191.784301757813,75.394287109375,171.554809570313,-194.186538696289,96.2628326416016,159.05859375,-172.672424316406,47.9814033508301,174.799133300781,-148.766082763672,-137.803497314453,114.523223876953,-132.242462158203,-118.329597473145,137.33544921875,-134.912719726563,-110.332809448242,141.221343994141,-134.077651977539,-114.578231811523,139.439666748047,-150.817276000977,40.4894676208496,156.863372802734,-200.085098266602,-120.786834716797,11.8369636535645,-194.117523193359,-127.875526428223,16.2393951416016,-192.728393554688,-132.827011108398,25.1668701171875,-172.494400024414,-150.555755615234,68.4319076538086,-184.839630126953,-141.589874267578,52.6136627197266,-181.254272460938,-145.388244628906,61.4546279907227,-188.760009765625,-138.248550415039,42.956714630127,-192.268341064453,-134.715194702148,39.02392578125, +-193.579483032227,-132.903030395508,31.6054019927979,-152.809478759766,-142.820999145508,104.361228942871,-154.309616088867,40.6200828552246,162.80696105957,-160.347213745117,39.7751998901367,170.192672729492,-184.783615112305,60.7581558227539,173.798034667969,-190.14714050293,84.4015731811523,166.699340820313,-185.413665771484,68.5750198364258,172.376907348633,-188.34196472168,75.500602722168,170.893753051758,-190.196136474609,92.1077270507813,161.844863891602,-185.927734375,105.348320007324,152.633972167969,-181.906341552734,57.130199432373,173.635025024414,-178.771026611328,57.6803550720215,172.588912963867,-139.791198730469,-139.682693481445,115.954360961914,-134.385681152344,-132.554992675781,125.182273864746,-145.049713134766,-141.086822509766,111.844970703125,-132.745513916016,-126.821426391602,130.155746459961,-133.291061401367,-106.975486755371,142.771987915039,-131.611404418945,-100.477844238281,145.015213012695,-133.771621704102,-95.3746490478516,145.171234130859,-190.791198730469,-132.166961669922,17.615629196167,-171.560317993164,-152.802963256836,63.715950012207,-160.4072265625,-150.158706665039,83.4564819335938,-162.176391601563,-153.177017211914,75.6679229736328,-165.411712646484,-154.55615234375,68.2691955566406,-154.810684204102,-150.537750244141,87.6204833984375,-185.545684814453,-141.255844116211,46.6251754760742,-179.838119506836,-147.542465209961,57.9898872375488,-176.822830200195,-149.878692626953,61.1024932861328,-158.497024536133,46.9515991210938,165.5322265625,-161.326324462891,45.1329231262207,169.24658203125,-166.781860351563,44.4814605712891,173.480010986328,-170.951248168945,51.3027267456055,172.872955322266,-132.324462890625,-138.380569458008,120.166778564453,-130.088256835938,-113.67813873291,140.250747680664,-124.598709106445,-121.504905700684,134.542190551758,-132.25146484375,-109.080688476563,142.32795715332,-133.041793823242,-104.805770874023,143.498062133789,-154.893676757813,45.1499252319336,161.915863037109,-192.373352050781,-128.476593017578,13.1253900527954,-190.141143798828,-136.09733581543,24.4297981262207, +-189.478073120117,-137.698486328125,29.3656826019287,-178.591003417969,-147.669464111328,47.8082885742188,-189.5380859375,-137.644485473633,36.3537673950195,-182.046356201172,-145.88330078125,39.9983215332031,-145.193740844727,-146.681381225586,102.57405090332,-141.366348266602,-145.097213745117,107.616546630859,-180.737213134766,64.7063369750977,170.937744140625,-185.326675415039,84.478874206543,165.508209228516,-184.66259765625,76.2263717651367,169.41259765625,-183.70849609375,98.5281524658203,157.038391113281,-175.926742553711,63.0100746154785,169.304595947266,-131.91242980957,-142.95100402832,114.925262451172,-127.951042175293,-135.976318359375,124.119163513184,-123.739631652832,-114.631233215332,139.052627563477,-125.803833007813,-127.406478881836,130.247772216797,-131.752914428711,-104.741264343262,143.780090332031,-151.587356567383,44.6838798522949,156.749359130859,-188.02392578125,-133.122039794922,10.7411556243896,-186.45378112793,-136.834411621094,13.2762041091919,-162.697448730469,-157.877471923828,60.6847496032715,-175.327682495117,-151.548843383789,57.1878089904785,-156.078796386719,-152.492935180664,82.6890029907227,-151.653366088867,-159.504623413086,68.8935546875,-180.006149291992,-146.588363647461,45.3110427856445,-174.175567626953,-152.533950805664,51.2048187255859,-142.936508178711,-150.454742431641,96.2837448120117,-155.957794189453,49.462345123291,161.122787475586,-162.972473144531,50.7212715148926,167.732452392578,-166.420806884766,50.0381011962891,170.845748901367,-175.58171081543,72.2780838012695,165.951263427734,-185.343673706055,91.3040466308594,161.660842895508,-177.875946044922,80.979133605957,164.357116699219,-180.253173828125,105.075302124023,152.193923950195,-172.55241394043,61.7070465087891,168.251495361328,-121.301391601563,-144.233123779297,116.195388793945,-123.418594360352,-136.42936706543,124.624221801758,-120.882354736328,-139.681686401367,121.973960876465,-125.461799621582,-106.802467346191,143.605087280273,-123.896644592285,-108.551635742188,142.485977172852,-120.307289123535,-127.751518249512,130.02473449707, +-129.175155639648,-104.612251281738,144.344146728516,-187.38786315918,-139.071624755859,23.385196685791,-187.178848266602,-140.78678894043,31.9989395141602,-164.283615112305,-158.361511230469,54.9790916442871,-166.703842163086,-158.072494506836,48.1857261657715,-147.489959716797,-151.976898193359,89.7754974365234,-155.963790893555,-156.074295043945,74.1001663208008,-172.572418212891,-154.263122558594,43.8351974487305,-174.515609741211,-152.684967041016,41.1449356079102,-133.606597900391,-149.647659301758,103.558151245117,-132.257461547852,-145.660263061523,111.01188659668,-158.775054931641,54.5459442138672,161.220809936523,-180.46418762207,87.7776947021484,162.311904907227,-180.433181762695,93.4933624267578,159.299621582031,-177.171859741211,98.8472900390625,155.42024230957,-172.727432250977,67.9485626220703,165.640228271484,-120.493316650391,-136.144332885742,125.070259094238,-152.157424926758,49.1783180236816,155.649261474609,-183.67350769043,-138.090530395508,9.36090087890625,-185.037643432617,-139.395660400391,15.5193252563477,-184.901626586914,-142.569976806641,29.4095859527588,-159.312118530273,-160.729751586914,53.8758850097656,-149.764175415039,-160.99577331543,65.8773574829102,-169.651123046875,-156.436340332031,46.0638160705566,-148.599075317383,-155.26921081543,81.3321762084961,-144.764694213867,-158.828567504883,76.0697555541992,-179.179061889648,-148.975601196289,36.981128692627,-140.131225585938,-154.638153076172,87.5389785766602,-133.948638916016,-152.027893066406,98.5487594604492,-155.81477355957,54.781665802002,157.344421386719,-169.621124267578,63.4453163146973,165.467208862305,-172.781433105469,78.5353012084961,162.112899780273,-174.157577514648,93.8094940185547,156.936370849609,-122.539512634277,-149.048599243164,108.590644836426,-111.866470336914,-144.639175415039,117.882553100586,-112.26350402832,-138.492568969727,123.140075683594,-182.506393432617,-140.295745849609,11.371618270874,-181.856323242188,-143.48405456543,22.2292823791504,-177.812927246094,-149.769683837891,32.0421447753906,-150.547256469727,-162.687942504883,57.9427795410156, +-138.533081054688,-163.779052734375,66.3494033813477,-164.73063659668,-158.981582641602,43.1281318664551,-141.441360473633,-161.216796875,72.1605758666992,-169.370101928711,-156.411315917969,39.8317070007324,-173.826538085938,-153.448028564453,35.9254264831543,-125.533805847168,-152.118911743164,101.711967468262,-162.523422241211,63.0390777587891,158.914581298828,-170.489212036133,72.2635803222656,162.223892211914,-172.772430419922,88.0292282104492,158.654541015625,-167.263900756836,67.5120162963867,161.107788085938,-118.428108215332,-149.87467956543,108.246604919434,-112.490531921387,-141.564865112305,120.832847595215,-114.901763916016,-145.375244140625,116.046371459961,-153.360534667969,54.4141311645508,154.080108642578,-175.188674926758,-143.350051879883,6.92006206512451,-178.477005004883,-144.447158813477,15.5826301574707,-176.123764038086,-150.092712402344,27.0728569030762,-155.789764404297,-162.439910888672,48.1553230285645,-145.398742675781,-165.136169433594,52.3389358520508,-141.419372558594,-164.52912902832,60.9788818359375,-136.191848754883,-160.872756958008,76.5728073120117,-134.702713012695,-156.211303710938,87.664192199707,-128.094055175781,-153.904083251953,96.8917922973633,-157.431945800781,62.8232574462891,152.26692199707,-170.746231079102,82.3384704589844,159.127593994141,-118.561126708984,-151.559844970703,104.920288085938,-108.217109680176,-143.084030151367,120.670829772949,-111.094390869141,-148.074508666992,114.624237060547,-174.299591064453,-146.465362548828,12.280707359314,-174.16357421875,-150.130706787109,21.819242477417,-171.87434387207,-154.33512878418,31.5466957092285,-134.477676391602,-167.472412109375,56.9862899780273,-133.879623413086,-166.079284667969,63.1127891540527,-161.911361694336,-159.448623657227,37.3610649108887,-156.330810546875,-161.756851196289,41.8387031555176,-167.609924316406,-156.936386108398,35.2258567810059,-120.494316101074,-154.566146850586,98.7918853759766,-163.010467529297,67.6079254150391,156.282318115234,-167.322906494141,73.6415176391602,158.585540771484,-169.042068481445,88.380859375,155.763275146484, +-114.625732421875,-152.569946289063,106.505439758301,-113.666641235352,-148.568557739258,112.194999694824,-108.016090393066,-147.756484985352,116.877456665039,-167.867965698242,-147.484451293945,2.86521410942078,-171.671325683594,-149.913696289063,16.0389747619629,-169.731140136719,-154.588150024414,26.7441253662109,-151.525360107422,-163.777053833008,44.6085739135742,-137.72200012207,-167.336410522461,50.9267921447754,-131.531387329102,-164.3701171875,69.9991607666016,-133.815612792969,-160.120681762695,79.8818283081055,-127.265975952148,-157.607437133789,88.2820587158203,-122.92155456543,-156.851364135742,93.1939392089844,-158.582046508789,67.0840759277344,150.432754516602,-117.391014099121,-153.702056884766,102.183013916016,-111.176399230957,-152.134902954102,110.521835327148,-107.563049316406,-152.607955932617,114.04418182373,-167.697937011719,-149.629669189453,8.20799827575684,-167.914962768555,-153.409027099609,19.7415370941162,-165.310699462891,-157.139389038086,28.086856842041,-142.777496337891,-166.198287963867,48.4082489013672,-132.08544921875,-168.726547241211,52.8443794250488,-122.770538330078,-169.584609985352,59.5416374206543,-130.282272338867,-163.172988891602,75.4029922485352,-162.864456176758,-158.406524658203,32.6519050598145,-149.749176025391,-162.767944335938,33.1778526306152,-147.984008789063,-164.410110473633,39.6148872375488,-118.480117797852,-158.390518188477,93.8112945556641,-164.025573730469,72.7140274047852,155.090194702148,-166.343811035156,84.5205841064453,154.372131347656,-113.828659057617,-157.239410400391,101.981994628906,-163.660552978516,-149.949188232422,1.6401150226593,-166.006774902344,-152.670959472656,14.7706518173218,-164.064575195313,-156.42333984375,22.9370517730713,-140.405258178711,-166.700347900391,43.2853469848633,-135.497787475586,-167.977462768555,45.9674072265625,-129.698211669922,-169.581619262695,48.3769454956055,-153.993591308594,-159.187591552734,20.3494987487793,-150.068206787109,-161.485824584961,25.7522277832031,-125.614814758301,-162.017868041992,80.357177734375, +-116.171890258789,-157.665451049805,98.3073425292969,-122.028457641602,-159.718658447266,86.9247207641602,-116.718940734863,-162.28190612793,90.7354888916016,-160.485229492188,71.8929443359375,150.423751831055,-110.853370666504,-157.307418823242,106.903480529785,-108.682159423828,-156.796371459961,110.588836669922,-161.189300537109,-149.336639404297,-3.56573605537415,-159.453140258789,-152.413940429688,0.415015012025833,-162.723449707031,-152.293930053711,7.50999879837036,-153.524536132813,-157.969467163086,13.7213487625122,-118.23609161377,-170.573715209961,66.6162338256836,-142.202438354492,-164.00407409668,26.8514366149902,-139.4931640625,-165.368209838867,30.0104446411133,-120.506317138672,-163.054977416992,81.5112915039063,-118.477119445801,-167.381408691406,75.3656921386719,-118.413108825684,-162.936965942383,84.9572296142578,-115.136787414551,-162.039886474609,94.755989074707,-163.508529663086,77.4321823120117,152.833984375,-112.410522460938,-161.779861450195,101.344940185547,-157.033889770508,-155.100204467773,9.75262928009033,-159.888168334961,-153.485046386719,7.87929582595825,-130.432281494141,-168.441513061523,36.3329620361328,-130.994338989258,-169.047576904297,43.4213562011719,-126.836936950684,-169.962646484375,45.4008522033691,-113.250602722168,-173.925048828125,64.8396606445313,-118.707138061523,-169.175567626953,70.9620513916016,-147.25993347168,-160.04768371582,12.2809076309204,-139.940216064453,-161.775848388672,12.7319507598877,-114.625732421875,-166.961364746094,88.6394882202148,-113.907669067383,-167.485412597656,92.4213562011719,-108.089096069336,-162.238906860352,109.816772460938,-155.071701049805,-153.40202331543,-3.08978891372681,-151.899383544922,-155.541244506836,-0.875559985637665,-149.370147705078,-156.939376831055,2.57528591156006,-123.452606201172,-171.196762084961,43.1490287780762,-111.044387817383,-175.4091796875,58.6873512268066,-144.218643188477,-161.374801635742,15.2105941772461,-136.625900268555,-162.823959350586,13.1304903030396,-138.423065185547,-164.945159912109,24.865140914917, +-134.814712524414,-167.111373901367,33.3103675842285,-115.658836364746,-168.649520874023,77.284782409668,-113.381614685059,-172.981948852539,70.1766815185547,-115.680839538574,-167.637435913086,81.0258483886719,-112.870567321777,-166.551330566406,97.9926071166992,-115.1337890625,-167.349395751953,84.9872360229492,-110.366325378418,-166.028259277344,104.820274353027,-146.518859863281,-158.411514282227,5.04712820053101,-126.798934936523,-170.24267578125,38.7977066040039,-119.742240905762,-173.511993408203,43.311149597168,-111.450424194336,-175.110168457031,54.8722801208496,-108.566139221191,-178.955535888672,61.8655662536621,-142.864501953125,-160.307708740234,7.96915483474731,-134.009628295898,-162.017868041992,6.26299810409546,-136.137847900391,-164.964157104492,20.0023632049561,-135.288757324219,-166.558334350586,27.2761764526367,-130.596298217773,-169.236587524414,30.0548477172852,-113.069580078125,-173.403991699219,74.3414916992188,-113.629638671875,-172.230880737305,87.2529525756836,-112.500526428223,-170.565704345703,97.6522674560547,-107.390029907227,-171.772827148438,110.562835693359,-146.066818237305,-156.555328369141,-2.51752305030823,-127.192970275879,-170.161682128906,35.2404556274414,-122.062469482422,-173.746032714844,38.2327499389648,-116.36491394043,-174.914138793945,46.4219512939453,-107.996086120605,-178.392486572266,55.2793197631836,-112.804557800293,-175.175170898438,51.4099426269531,-107.24600982666,-180.231658935547,58.2234115600586,-109.024185180664,-179.498596191406,64.8890609741211,-110.229309082031,-178.110458374023,68.7906494140625,-135.555786132813,-160.539733886719,3.13469099998474,-132.759506225586,-164.982162475586,10.7329559326172,-134.294662475586,-165.060180664063,15.9992713928223,-134.133651733398,-166.883361816406,22.7587337493896,-113.682647705078,-171.793823242188,81.4086837768555,-110.063293457031,-170.674728393555,105.226318359375,-113.03458404541,-177.408386230469,91.9687118530273,-139.73420715332,-159.07958984375,1.51996302604675,-124.209671020508,-173.485992431641,35.507682800293, +-119.658233642578,-177.250366210938,38.9634208679199,-117.235992431641,-176.501281738281,42.1213302612305,-108.540138244629,-179.249557495117,52.2528228759766,-107.230010986328,-184.113037109375,62.8769645690918,-132.238464355469,-161.990875244141,3.80282592773438,-130.980346679688,-164.27409362793,5.25650882720947,-131.863418579102,-168.532516479492,19.9056549072266,-131.792419433594,-169.001556396484,25.0795612335205,-126.621910095215,-173.097961425781,31.1631565093994,-112.32551574707,-176.989349365234,78.4753952026367,-111.328414916992,-178.903533935547,74.6277236938477,-113.050582885742,-175.893249511719,83.0567474365234,-113.285606384277,-178.320465087891,87.6798934936523,-112.101493835449,-176.322265625,98.0932159423828,-109.816261291504,-175.851226806641,105.890380859375,-111.083389282227,-179.419570922852,48.4291496276855,-114.914764404297,-179.497589111328,44.222038269043,-106.816970825195,-182.679901123047,54.8355751037598,-106.31192779541,-184.886108398438,58.299617767334,-130.214263916016,-168.794540405273,10.044487953186,-130.975341796875,-168.806533813477,15.7134428024292,-129.036148071289,-173.003952026367,23.6220188140869,-110.220306396484,-179.986633300781,71.366096496582,-113.50163269043,-182.910934448242,88.5707855224609,-112.528526306152,-183.504989624023,99.1719207763672,-107.751068115234,-179.13655090332,110.841865539551,-124.077667236328,-178.069458007813,32.7891159057617,-119.033172607422,-179.848617553711,39.5602798461914,-108.179100036621,-184.097030639648,51.7026710510254,-106.507942199707,-189.826599121094,60.6284446716309,-109.853271484375,-183.444976806641,70.9882583618164,-129.076141357422,-168.975555419922,5.76950883865356,-129.12516784668,-173.35498046875,19.1737823486328,-126.385887145996,-177.796432495117,27.4644947052002,-112.459518432617,-183.225952148438,79.6075057983398,-113.180595397949,-181.186767578125,83.8208236694336,-111.425422668457,-180.738708496094,102.240020751953,-109.992286682129,-182.280868530273,106.943489074707,-122.501502990723,-181.756805419922,35.297664642334, +-110.546340942383,-184.350067138672,48.7663841247559,-117.355003356934,-183.753997802734,41.7064895629883,-107.07999420166,-192.172836303711,56.0175933837891,-107.905082702637,-188.626480102539,66.0297698974609,-106.482940673828,-190.90771484375,58.520938873291,-110.377326965332,-188.018417358398,72.6486206054688,-128.963150024414,-173.353988647461,8.72923946380615,-129.295181274414,-173.073974609375,14.4751224517822,-128.170074462891,-177.792419433594,19.8757514953613,-114.469718933105,-190.817687988281,87.6054840087891,-114.059684753418,-187.738403320313,90.9192123413086,-112.055480957031,-187.307357788086,103.995193481445,-108.488136291504,-183.837020874023,110.778861999512,-124.773735046387,-182.308868408203,31.7471141815186,-109.600250244141,-192.164825439453,51.5768585205078,-108.027084350586,-193.391952514648,66.2260971069336,-107.689056396484,-196.942306518555,58.7005577087402,-128.877136230469,-177.373382568359,14.9967737197876,-126.910942077637,-182.336868286133,25.8549365997314,-113.326614379883,-187.473373413086,82.2537612915039,-113.333610534668,-187.645385742188,98.3491363525391,-110.682357788086,-187.923416137695,108.320617675781,-118.853157043457,-188.555480957031,40.9592170715332,-125.890838623047,-188.976516723633,32.4409828186035,-112.749549865723,-188.730499267578,47.1515235900879,-109.138198852539,-197.503341674805,55.4396362304688,-107.527038574219,-197.512344360352,62.3959197998047,-129.326171875,-181.991836547852,14.2361993789673,-114.090682983398,-192.144836425781,83.300666809082,-115.311805725098,-192.508865356445,92.8199996948242,-114.600738525391,-191.168731689453,96.6429748535156,-114.514724731445,-191.977813720703,103.534149169922,-108.701156616211,-187.979415893555,112.286003112793,-127.208969116211,-187.259353637695,28.4229888916016,-123.65161895752,-189.338562011719,35.8239135742188,-112.614540100098,-197.785385131836,50.9257926940918,-111.145401000977,-192.924911499023,50.0774078369141,-108.953178405762,-197.376342773438,67.4526138305664,-111.645446777344,-192.573867797852,75.2165756225586, +-108.63614654541,-200.891677856445,61.6656455993652,-128.836135864258,-177.800430297852,8.78053379058838,-128.813125610352,-186.393264770508,21.8020401000977,-115.225799560547,-196.51025390625,84.228157043457,-116.007873535156,-196.272232055664,87.4269714355469,-115.156791687012,-192.363845825195,100.001899719238,-113.917663574219,-192.095825195313,106.859481811523,-112.323516845703,-192.224822998047,111.400924682617,-120.140274047852,-193.271942138672,41.2455444335938,-128.791137695313,-193.4189453125,29.4371871948242,-125.567810058594,-193.695983886719,35.3035621643066,-109.989288330078,-201.861770629883,58.3928260803223,-112.495529174805,-201.024703979492,53.9223861694336,-109.526237487793,-201.927795410156,64.9142684936523,-111.843467712402,-196.534255981445,74.2873840332031,-130.644317626953,-190.037612915039,17.3200016021729,-114.029685974121,-196.954299926758,79.9699401855469,-117.643035888672,-195.899200439453,96.2211303710938,-116.69694519043,-196.250228881836,90.6828918457031,-119.197189331055,-196.243225097656,101.731971740723,-119.237182617188,-195.965194702148,105.916381835938,-109.620246887207,-191.996810913086,116.438415527344,-116.693939208984,-202.081802368164,50.5201568603516,-111.355415344238,-201.961791992188,69.5801239013672,-111.619445800781,-205.852172851563,61.9333724975586,-129.225158691406,-183.760009765625,8.14033222198486,-131.26936340332,-191.73078918457,13.7516508102417,-130.240264892578,-190.819686889648,21.5167121887207,-117.35400390625,-200.776672363281,84.1078414916992,-115.450820922852,-201.032699584961,80.0292434692383,-118.807144165039,-200.585647583008,87.3812637329102,-120.344299316406,-196.335235595703,109.418724060059,-116.442916870117,-195.563171386719,118.11157989502,-123.358589172363,-196.459259033203,39.5847816467285,-129.949234008789,-198.031402587891,32.4438858032227,-113.702644348145,-205.910171508789,58.2265090942383,-121.527412414551,-198.273422241211,42.8716049194336,-111.562438964844,-205.627151489258,65.3133010864258,-130.516296386719,-189.253540039063,10.4567279815674, +-132.524505615234,-195.402145385742,15.0371770858765,-131.778427124023,-194.937103271484,21.728931427002,-120.131278991699,-200.502655029297,90.6186828613281,-123.382598876953,-200.085601806641,97.1341247558594,-126.200874328613,-199.806579589844,103.579147338867,-127.513000488281,-199.726577758789,106.69945526123,-117.950065612793,-195.662185668945,113.440116882324,-113.624633789063,-195.171112060547,120.84684753418,-130.634292602539,-194.860092163086,26.1743698120117,-127.253974914551,-198.223419189453,36.5030822753906,-131.517395019531,-197.859390258789,29.3204765319824,-123.022560119629,-202.279815673828,45.2565383911133,-119.027168273926,-206.266220092773,53.4032363891602,-113.246597290039,-206.22819519043,69.0785675048828,-116.540924072266,-210.393615722656,61.7353553771973,-114.475723266602,-209.456527709961,64.7026443481445,-131.972442626953,-194.93310546875,10.2908115386963,-119.405212402344,-205.12109375,80.9002304077148,-122.45450592041,-205.428131103516,84.2467575073242,-115.324806213379,-205.626159667969,74.4596939086914,-122.165473937988,-200.868682861328,93.5330657958984,-123.650619506836,-204.71305847168,87.3291625976563,-125.060760498047,-199.970596313477,100.359840393066,-137.360977172852,-203.056900024414,109.308715820313,-128.092056274414,-199.085510253906,113.402122497559,-124.439697265625,-197.821380615234,120.789840698242,-122.029457092285,-197.952392578125,125.925338745117,-125.214775085449,-200.758666992188,41.4320640563965,-133.543594360352,-202.116806030273,34.2069549560547,-119.437210083008,-211.488723754883,60.6685485839844,-135.288757324219,-199.257537841797,10.3592185974121,-137.242950439453,-199.396545410156,19.1836853027344,-134.578689575195,-199.094512939453,26.438793182373,-117.171989440918,-205.408126831055,77.6895141601563,-130.777313232422,-206.347213745117,92.1953353881836,-138.936126708984,-207.738357543945,97.5706634521484,-133.380569458008,-203.651962280273,101.20092010498,-129.182159423828,-202.217819213867,39.2590484619141,-136.713897705078,-202.451843261719,31.3237724304199, +-123.793632507324,-207.181304931641,50.9436988830566,-128.927139282227,-205.863174438477,45.0575218200684,-116.961967468262,-211.028671264648,69.2850952148438,-120.135276794434,-214.161987304688,65.2076873779297,-135.995834350586,-199.120513916016,13.5845336914063,-135.699798583984,-198.891479492188,23.024959564209,-126.301879882813,-210.60563659668,79.9173278808594,-122.382499694824,-211.131683349609,75.8790435791016,-130.503295898438,-208.215408325195,88.7789993286133,-119.222183227539,-209.802551269531,74.4432983398438,-138.247055053711,-202.695861816406,113.89616394043,-131.163360595703,-199.699554443359,118.078575134277,-126.485900878906,-199.169509887695,128.513595581055,-137.07194519043,-205.286117553711,37.2206497192383,-133.978637695313,-206.027191162109,41.236644744873,-133.192565917969,-214.432006835938,54.9025840759277,-127.490005493164,-218.511413574219,65.1355895996094,-142.382461547852,-203.375930786133,10.3820209503174,-144.217636108398,-203.200912475586,14.1442890167236,-144.184631347656,-202.500839233398,22.9074478149414,-143.205535888672,-203.085891723633,27.1558647155762,-135.454772949219,-212.988876342773,85.4149703979492,-142.112426757813,-211.696731567383,93.587776184082,-144.8046875,-206.838256835938,109.122703552246,-132.376480102539,-199.990585327148,123.251083374023,-129.212158203125,-199.321533203125,126.571411132813,-142.213439941406,-205.565139770508,34.1304473876953,-132.732513427734,-218.585418701172,61.0470848083496,-122.168472290039,-214.199996948242,71.1904754638672,-119.882255554199,-213.823944091797,68.4322128295898,-130.995346069336,-221.182662963867,68.3838043212891,-147.598968505859,-203.539947509766,19.8684520721436,-130.803329467773,-217.74333190918,74.5744094848633,-137.662994384766,-216.993270874023,81.5575942993164,-145.064712524414,-211.67073059082,97.4386444091797,-148.839080810547,-210.932678222656,105.768371582031,-138.451080322266,-202.469833374023,119.24568939209,-146.107818603516,-207.001281738281,113.257102966309,-134.833709716797,-202.005783081055,129.860717773438, +-137.296951293945,-209.902572631836,45.6141738891602,-138.638092041016,-213.992965698242,50.8604888916016,-137.781005859375,-218.360397338867,57.1287002563477,-133.201553344727,-221.407699584961,64.6494369506836,-152.021408081055,-206.710250854492,12.0821876525879,-154.238616943359,-206.386215209961,16.6656360626221,-154.656661987305,-206.438232421875,23.8227386474609,-151.085311889648,-205.462127685547,26.0418548583984,-128.276077270508,-218.221374511719,71.3372955322266,-148.392044067383,-215.845153808594,94.4161605834961,-150.243225097656,-210.843658447266,110.811859130859,-142.278442382813,-204.237014770508,116.041374206543,-139.654190063477,-203.275909423828,125.546310424805,-128.485107421875,-200.780670166016,132.475982666016,-150.818283081055,-206.957275390625,31.0702476501465,-150.561248779297,-209.585540771484,36.4172744750977,-136.762908935547,-222.435791015625,62.8154602050781,-136.092834472656,-225.11506652832,67.8258514404297,-156.789855957031,-207.075286865234,19.7935428619385,-133.610610961914,-222.180770874023,71.5414123535156,-135.675796508789,-221.799728393555,74.7300262451172,-145.464767456055,-216.002166748047,90.5110702514648,-151.301330566406,-214.908050537109,102.503051757813,-152.031402587891,-214.85205078125,106.565444946289,-145.123733520508,-206.638244628906,120.780838012695,-149.811187744141,-210.540634155273,116.909461975098,-146.258834838867,-207.039291381836,116.601432800293,-131.040344238281,-202.641845703125,135.437271118164,-150.469253540039,-213.869964599609,42.9867134094238,-143.569580078125,-218.04035949707,52.5560531616211,-145.000717163086,-221.984756469727,55.6754570007324,-160.952270507813,-210.352615356445,13.4904251098633,-161.524337768555,-210.094589233398,16.6001300811768,-162.097381591797,-210.438613891602,22.6478214263916,-158.292022705078,-209.867568969727,29.6637096405029,-143.479568481445,-220.606628417969,83.3526763916016,-149.640182495117,-220.093566894531,90.4542694091797,-152.074401855469,-219.6865234375,95.1401290893555,-154.098602294922,-216.371215820313,114.194198608398, +-152.754470825195,-213.792953491211,115.998374938965,-144.446655273438,-206.584243774414,125.89533996582,-142.935501098633,-206.51823425293,129.843719482422,-136.466873168945,-206.411239624023,138.522583007813,-155.826766967773,-210.475631713867,33.7144088745117,-154.943695068359,-214.223999023438,39.531177520752,-139.291152954102,-226.756210327148,65.1915893554688,-136.845916748047,-226.282165527344,71.4793090820313,-161.349319458008,-210.419616699219,27.1237602233887,-140.188247680664,-229.114440917969,74.3631896972656,-154.152603149414,-220.369598388672,100.437843322754,-154.792678833008,-222.393783569336,107.260513305664,-152.782485961914,-215.588119506836,121.348899841309,-148.454055786133,-210.38362121582,125.09326171875,-139.212158203125,-206.552230834961,135.918319702148,-151.527359008789,-217.771347045898,46.9480056762695,-155.688751220703,-218.306396484375,43.7655906677246,-145.217727661133,-226.21516418457,59.4616317749023,-138.868103027344,-229.530487060547,68.9303588867188,-166.268798828125,-214.313995361328,14.1545906066895,-165.909759521484,-214.068984985352,27.8145294189453,-164.071578979492,-213.907958984375,30.4813899993896,-157.781967163086,-213.208892822266,35.7934112548828,-145.425750732422,-224.321990966797,83.1609497070313,-150.134216308594,-224.602005004883,88.0320358276367,-152.012405395508,-223.141860961914,91.28564453125,-154.869674682617,-223.197860717773,97.932502746582,-154.644668579102,-217.31330871582,116.72444152832,-156.455825805664,-224.942047119141,110.146797180176,-147.233932495117,-210.700637817383,128.871627807617,-143.860595703125,-210.506622314453,135.168258666992,-140.152252197266,-210.973678588867,141.308853149414,-159.44612121582,-217.842346191406,38.9892272949219,-153.863586425781,-221.991760253906,49.4656524658203,-149.313125610352,-226.411193847656,56.139404296875,-141.921417236328,-231.53369140625,67.1555862426758,-138.834106445313,-229.737503051758,71.7948379516602,-166.7568359375,-214.999069213867,20.3794002532959,-167.39289855957,-215.076065063477,24.9817504882813, +-162.459426879883,-215.069076538086,33.6128997802734,-146.452850341797,-231.903717041016,79.6026992797852,-156.569854736328,-225.799118041992,100.942901611328,-157.276931762695,-224.916030883789,115.275299072266,-158.850082397461,-229.596496582031,111.382919311523,-150.831283569336,-214.994079589844,126.722427368164,-154.892684936523,-220.352584838867,122.69702911377,-161.939361572266,-223.35888671875,40.5187759399414,-147.111923217773,-233.409866333008,63.6469421386719,-143.389556884766,-234.460983276367,71.8596420288086,-169.871139526367,-219.044464111328,15.2790012359619,-167.804946899414,-217.430297851563,30.5851001739502,-170.349197387695,-218.855453491211,28.5110988616943,-167.256896972656,-219.453506469727,32.8769264221191,-148.431060791016,-228.389389038086,84.5668869018555,-152.873489379883,-227.855316162109,90.0029220581055,-158.914077758789,-230.241561889648,103.12410736084,-155.586761474609,-227.127258300781,95.6534805297852,-158.256011962891,-227.069244384766,119.361701965332,-144.825698852539,-214.326995849609,137.871520996094,-158.281021118164,-225.296081542969,48.3538398742676,-164.056579589844,-221.819747924805,37.3240623474121,-159.419128417969,-222.982849121094,43.9687156677246,-155.586761474609,-226.011138916016,51.4409446716309,-151.444351196289,-233.56689453125,59.379020690918,-144.860702514648,-234.703994750977,67.1334838867188,-170.66423034668,-218.995452880859,24.0311584472656,-171.765350341797,-222.04475402832,18.4251098632813,-151.927383422852,-232.554779052734,85.5126800537109,-148.763092041016,-239.025421142578,77.6136093139648,-157.901992797852,-230.873626708984,97.6949768066406,-160.543243408203,-233.932922363281,105.087303161621,-152.020401000977,-220.374588012695,129.498687744141,-157.441940307617,-227.555297851563,123.733123779297,-142.780487060547,-214.595031738281,141.468872070313,-169.022064208984,-234.14794921875,40.1333351135254,-165.839767456055,-230.977630615234,41.6020812988281,-149.83918762207,-236.138137817383,62.6621437072754,-148.008010864258,-238.981414794922,65.5284271240234, +-146.215835571289,-238.614379882813,69.394905090332,-173.863540649414,-222.788833618164,27.2551746368408,-152.332443237305,-239.038421630859,82.8532180786133,-146.542877197266,-241.663681030273,73.2365798950195,-155.693756103516,-231.920715332031,91.1792373657227,-159.517135620117,-235.901123046875,100.242828369141,-160.747253417969,-234.418960571289,110.795860290527,-155.83576965332,-227.660308837891,128.010543823242,-159.123092651367,-232.454788208008,123.515106201172,-146.530868530273,-219.271484375,139.721694946289,-157.085891723633,-230.304565429688,53.1424102783203,-162.230392456055,-229.907516479492,47.5072593688965,-151.99040222168,-239.445465087891,60.4519271850586,-173.469512939453,-224.421981811523,30.6618099212646,-155.290725708008,-236.658187866211,87.1472396850586,-157.054901123047,-237.259246826172,92.740592956543,-160.255218505859,-233.969940185547,118.173583984375,-151.059310913086,-224.801040649414,134.612197875977,-160.716262817383,-231.591690063477,50.6168632507324,-167.010864257813,-235.858123779297,44.0906257629395,-155.635757446289,-235.188034057617,56.7128601074219,-150.158218383789,-239.400451660156,63.219799041748,-146.651870727539,-241.844696044922,68.2272872924805,-176.479797363281,-227.345275878906,25.4039936065674,-175.919738769531,-226.785217285156,29.2099666595459,-154.393630981445,-232.196746826172,133.309066772461,-157.212905883789,-232.893829345703,128.593597412109,-151.768371582031,-231.606689453125,138.150543212891,-161.849365234375,-234.827011108398,50.9877014160156,-171.278289794922,-235.466064453125,38.7412986755371,-169.487121582031,-239.002426147461,41.9599151611328,-155.680755615234,-238.826400756836,57.1951065063477,-175.081665039063,-228.387390136719,16.9409637451172,-177.080856323242,-231.192657470703,30.395580291748,-175.261672973633,-232.171752929688,33.2657623291016,-166.478820800781,-240.335540771484,45.0657196044922,-164.011581420898,-239.376449584961,48.699577331543,-178.38298034668,-231.5546875,27.1141605377197,-178.11994934082,-232.259765625,22.3097896575928,-176.508804321289,-236.115127563477,33.3325691223145, +-171.234283447266,-240.419555664063,38.9488182067871,-160.844253540039,-239.077423095703,51.7931785583496,-177.240875244141,-232.907821655273,16.9324626922607,-178.983047485352,-236.510177612305,28.4144878387451,-173.792541503906,-239.944519042969,36.3365631103516,-179.376083374023,-236.439163208008,24.0131568908691,-178.623016357422,-237.567291259766,18.349401473999,-177.140869140625,-239.593490600586,31.6845092773438,-178.987045288086,-239.88151550293,25.1911716461182,-178.14697265625,-240.805587768555,27.7949275970459,-48.8926963806152,-189.816604614258,-37.9022102355957,-49.8839912414551,-189.632583618164,-34.4899749755859,-48.3402442932129,-184.789108276367,-33.9960250854492,-56.0384941101074,-194.470062255859,-37.7255935668945,-50.5863647460938,-187.71940612793,-30.5880947113037,-45.2459373474121,-185.579193115234,-41.4083557128906,-52.4068412780762,-194.016006469727,-43.2157287597656,-52.4204444885254,-191.531768798828,-32.8913192749023,-51.3507385253906,-182.717895507813,-29.3660736083984,-46.6543807983398,-190.092636108398,-43.6730766296387,-47.181827545166,-178.780517578125,-37.9925193786621,-61.4101257324219,-197.786376953125,-42.5149612426758,-56.0333938598633,-193.477966308594,-33.2105484008789,-53.7769737243652,-190.843704223633,-30.1689529418945,-53.8074760437012,-187.1943359375,-28.2558631896973,-50.4287452697754,-178.19645690918,-31.7172031402588,-43.8547058105469,-185.623184204102,-45.8447914123535,-44.4308586120605,-180.556701660156,-44.4095497131348,-56.2488174438477,-197.331329345703,-49.393138885498,-62.7915573120117,-197.273330688477,-38.1688385009766,-49.8239898681641,-193.948013305664,-47.6419639587402,-59.9153747558594,-194.814086914063,-34.3461608886719,-54.6594619750977,-182.367874145508,-27.7716178894043,-54.0112953186035,-174.954147338867,-29.3556728363037,-44.8299942016602,-190.331649780273,-49.055004119873,-48.7121772766113,-175.664215087891,-34.939323425293,-46.2668418884277,-172.036865234375,-43.5723648071289,-56.9303817749023,-199.058502197266,-56.7260551452637,-68.0557708740234,-199.838577270508,-42.6504783630371, +-57.5703468322754,-191.181732177734,-30.015438079834,-56.8639793395996,-186.759292602539,-27.8728275299072,-50.947998046875,-172.865936279297,-32.0011329650879,-42.516170501709,-185.716201782227,-52.8712768554688,-43.0198211669922,-180.154647827148,-54.1959075927734,-48.8011894226074,-171.429794311523,-35.3201560974121,-44.8586006164551,-174.285079956055,-47.4812507629395,-48.9281005859375,-194.800094604492,-53.7851676940918,-63.0146827697754,-201.796768188477,-59.7526512145996,-63.4358215332031,-195.383148193359,-33.9848251342773,-71.0556716918945,-199.430541992188,-37.4255638122559,-61.4652290344238,-191.825805664063,-30.6403980255127,-57.3478240966797,-176.175262451172,-28.6357021331787,-58.2455139160156,-182.64289855957,-27.831823348999,-53.7049713134766,-166.467315673828,-32.3197631835938,-43.161434173584,-189.917617797852,-54.0716934204102,-44.6052780151367,-172.991958618164,-51.0201988220215,-47.8296928405762,-166.986358642578,-41.7762908935547,-46.1269264221191,-166.169281005859,-50.4815444946289,-58.0620956420898,-200.905685424805,-61.8739585876465,-47.0621185302734,-194.673080444336,-56.9288749694824,-66.8322525024414,-195.87419128418,-33.2991561889648,-74.7322311401367,-201.643753051758,-41.0163154602051,-70.7664413452148,-202.400833129883,-50.782169342041,-57.0928001403809,-167.078369140625,-31.0720405578613,-62.9007682800293,-187.161346435547,-28.6952075958252,-50.9142951965332,-168.122482299805,-33.6674957275391,-41.8403053283691,-190.625671386719,-59.0719833374023,-41.639087677002,-181.469772338867,-59.9960746765137,-44.4730606079102,-168.079467773438,-54.9816818237305,-49.0815162658691,-167.021377563477,-37.4843711853027,-51.7074699401855,-198.040405273438,-59.7617530822754,-62.5969390869141,-203.25390625,-65.8429489135742,-64.5161285400391,-191.756790161133,-30.3886737823486,-71.5673141479492,-197.71337890625,-33.9206199645996,-76.1198654174805,-199.904586791992,-35.4042625427246,-71.9352569580078,-202.087799072266,-46.889892578125,-74.0253601074219,-205.120101928711,-56.3100166320801,-66.2105865478516,-182.482879638672,-29.1021480560303, +-64.4540252685547,-167.931442260742,-31.1840515136719,-57.130802154541,-158.621551513672,-35.2381477355957,-51.235424041748,-164.0390625,-35.6175880432129,-40.2002449035645,-186.182250976563,-62.8285522460938,-42.7136917114258,-175.209167480469,-58.0421829223633,-50.2802352905273,-150.622756958008,-51.2877235412598,-49.7166748046875,-158.848556518555,-44.436351776123,-51.6182632446289,-199.250534057617,-64.0227661132813,-68.6446380615234,-204.578048706055,-63.827751159668,-51.8178825378418,-200.134613037109,-67.0702667236328,-44.2866477966309,-195.090118408203,-62.5656280517578,-68.2441864013672,-191.947814941406,-30.4629821777344,-69.6731338500977,-195.091125488281,-31.8954200744629,-78.616813659668,-202.954879760742,-39.964714050293,-74.5083084106445,-204.223022460938,-53.186206817627,-72.9751510620117,-205.704162597656,-60.7088432312012,-76.915641784668,-205.221115112305,-49.8713836669922,-63.0534858703613,-174.956146240234,-29.6910057067871,-60.711856842041,-163.71403503418,-32.3546676635742,-66.6377334594727,-187.020324707031,-29.1098499298096,-53.7159690856934,-159.153594970703,-36.7318954467773,-38.9269218444824,-190.841705322266,-66.6824264526367,-40.7686004638672,-178.939529418945,-63.8843574523926,-45.1812324523926,-163.036972045898,-55.1453971862793,-40.9366188049316,-168.711532592773,-63.7815437316895,-45.2614402770996,-158.83757019043,-57.5800399780273,-51.4139442443848,-158.278503417969,-40.8394966125488,-65.2872085571289,-205.871170043945,-70.1058654785156,-61.5718383789063,-204.5810546875,-71.2713775634766,-76.2550735473633,-196.692276000977,-32.0903396606445,-73.0455627441406,-194.800094604492,-31.6851005554199,-80.3647766113281,-201.749771118164,-34.6816940307617,-77.3241806030273,-206.242202758789,-54.4952354431152,-78.2362747192383,-209.945571899414,-63.4749183654785,-68.7246398925781,-174.105056762695,-30.5676918029785,-65.8631591796875,-163.254989624023,-32.4577789306641,-73.0239639282227,-187.580383300781,-30.1127471923828,-60.6396484375,-145.366256713867,-41.3148422241211,-54.3059272766113,-153.816070556641,-39.2873458862305, +-37.3497657775879,-186.062240600586,-69.139274597168,-40.4013633728027,-163.632034301758,-67.1876831054688,-48.2220306396484,-151.468841552734,-55.9552764892578,-51.6429672241211,-153.016998291016,-44.4413528442383,-47.1160202026367,-198.280426025391,-66.4169006347656,-69.8504486083984,-207.131286621094,-67.9137496948242,-73.7658309936523,-206.992279052734,-64.3455047607422,-56.7257652282715,-203.348922729492,-72.5153961181641,-81.3387756347656,-199.557556152344,-31.8429164886475,-82.3163681030273,-205.119094848633,-37.9635162353516,-81.186164855957,-205.80517578125,-43.0308113098145,-80.0471496582031,-209.64453125,-57.3303146362305,-75.180778503418,-182.225845336914,-30.5991954803467,-71.3193969726563,-168.866546630859,-31.1229457855225,-71.6111221313477,-164.243103027344,-32.0264358520508,-65.5227279663086,-158.988586425781,-34.3345603942871,-57.1782073974609,-149.180618286133,-40.0323181152344,-65.0582809448242,-149.026596069336,-39.5030670166016,-41.9026107788086,-195.182113647461,-66.7033309936523,-35.1392517089844,-190.784698486328,-72.5509033203125,-39.7046966552734,-172.093856811523,-66.6009216308594,-37.5447845458984,-173.316986083984,-70.7303237915039,-40.6856918334961,-156.225311279297,-71.5816040039063,-38.7593040466309,-168.173477172852,-69.7426300048828,-52.1578178405762,-146.122314453125,-50.0182991027832,-44.3906555175781,-149.247619628906,-66.9662551879883,-53.3994407653809,-152.043899536133,-41.3519477844238,-45.8111953735352,-199.103515625,-70.1335678100586,-64.3231048583984,-209.052490234375,-76.9059371948242,-68.5667266845703,-210.309616088867,-73.0887603759766,-59.3603210449219,-206.177200317383,-76.5869064331055,-50.1207160949707,-202.102798461914,-73.6302108764648,-76.5496063232422,-191.741790771484,-30.7653102874756,-81.9766387939453,-196.077209472656,-30.4589805603027,-85.1076431274414,-206.124206542969,-34.2410545349121,-83.0626449584961,-209.336502075195,-46.2821311950684,-81.6731109619141,-210.081588745117,-51.4154357910156,-82.8334197998047,-213.999969482422,-60.4817237854004,-75.0497589111328,-210.176605224609,-67.0787734985352, +-70.0430755615234,-160.19970703125,-33.3405647277832,-78.8184280395508,-186.597274780273,-30.721305847168,-56.7177619934082,-144.977203369141,-43.2493362426758,-68.2409896850586,-134.326171875,-45.1614227294922,-38.6967964172363,-195.235137939453,-70.4488983154297,-34.3739738464355,-186.3642578125,-74.2668762207031,-33.6710052490234,-174.035064697266,-78.8877258300781,-37.7826042175293,-161.462829589844,-77.0419464111328,-51.5413551330566,-136.748397827148,-56.7080535888672,-47.3530426025391,-141.734878540039,-64.580322265625,-54.0554046630859,-145.091217041016,-46.9210929870605,-71.8267440795898,-211.119689941406,-70.4370040893555,-86.7129058837891,-201.18571472168,-29.9212284088135,-87.512077331543,-206.89128112793,-31.4726810455322,-85.9679260253906,-209.040481567383,-37.8273048400879,-83.3747787475586,-213.248886108398,-54.8904762268066,-82.2087631225586,-214.600021362305,-63.6401329040527,-79.2423706054688,-214.216995239258,-66.7062377929688,-79.1169586181641,-177.343383789063,-31.3587684631348,-79.3722763061523,-170.105667114258,-32.299861907959,-73.8986434936523,-159.085601806641,-33.9871253967285,-72.1333694458008,-154.428131103516,-35.9622192382813,-69.383903503418,-151.13981628418,-38.001220703125,-60.414924621582,-139.214645385742,-44.3227424621582,-72.5778121948242,-145.561264038086,-40.3285484313965,-31.2198638916016,-184.560089111328,-79.239860534668,-34.7726135253906,-196.457260131836,-74.5290985107422,-36.9267272949219,-167.955459594727,-74.5118942260742,-43.4304618835449,-149.056610107422,-70.0069580078125,-40.550479888916,-153.390029907227,-74.6310119628906,-53.0279006958008,-136.538375854492,-53.7800674438477,-49.2763328552246,-138.498565673828,-61.3057060241699,-46.8201942443848,-141.026824951172,-67.2874908447266,-41.9454154968262,-199.411544799805,-72.9081344604492,-59.6708526611328,-208.964477539063,-80.2196578979492,-67.5745239257813,-211.903762817383,-76.8798294067383,-77.5070037841797,-217.117263793945,-70.0461654663086,-46.6376762390137,-203.860977172852,-78.3797760009766,-83.7061080932617,-191.844802856445,-30.152551651001, +-87.916618347168,-196.197219848633,-29.2222595214844,-90.6071853637695,-213.436920166016,-34.4177665710449,-85.7961120605469,-215.358108520508,-50.6591606140137,-86.798210144043,-213.312911987305,-44.7562828063965,-88.1066436767578,-221.488693237305,-60.0589828491211,-82.4249877929688,-165.044174194336,-33.8912200927734,-83.1242523193359,-178.74951171875,-31.2704601287842,-57.4467353820801,-139.551666259766,-46.0418090820313,-74.8616485595703,-141.768890380859,-42.2227363586426,-63.802059173584,-133.846115112305,-46.0393104553223,-32.3630752563477,-177.765426635742,-79.9019241333008,-31.208963394165,-192.057815551758,-77.2953720092773,-38.3058586120605,-198.313446044922,-73.1465606689453,-33.6445007324219,-167.626434326172,-82.5147857666016,-39.0223274230957,-154.535140991211,-79.9705352783203,-55.6039543151855,-123.121063232422,-59.9872741699219,-53.1890144348145,-123.559104919434,-65.4261016845703,-49.8338890075684,-125.644317626953,-73.6540145874023,-55.1767120361328,-137.811508178711,-49.5734558105469,-49.7297782897949,-207.116287231445,-81.809814453125,-63.6426429748535,-213.428924560547,-82.3724670410156,-67.8798599243164,-214.871063232422,-79.9051208496094,-74.3252944946289,-219.496520996094,-76.3355712890625,-79.5587997436523,-222.702819824219,-72.754524230957,-84.2616577148438,-187.211334228516,-30.3309688568115,-95.6953811645508,-196.092208862305,-26.0761528015137,-90.0424346923828,-206.8642578125,-29.8296184539795,-93.9383163452148,-215.592132568359,-31.9948310852051,-87.8439102172852,-219.923538208008,-53.8654747009277,-88.9142150878906,-224.768020629883,-63.4867172241211,-84.2611618041992,-221.121673583984,-66.8788528442383,-84.4823837280273,-173.272979736328,-32.1676483154297,-82.5371932983398,-158.926574707031,-35.6239852905273,-76.8761367797852,-153.648056030273,-36.7256927490234,-60.586841583252,-127.340484619141,-50.8829803466797,-70.3526992797852,-125.693313598633,-49.2504234313965,-67.3536071777344,-128.063537597656,-48.1865196228027,-31.0621490478516,-171.842849731445,-84.4457778930664,-27.099760055542,-181.825820922852,-84.0771331787109, +-29.1743640899658,-178.250473022461,-83.5288848876953,-31.7470169067383,-196.975296020508,-76.9717407226563,-37.8723182678223,-201.073699951172,-76.6895141601563,-43.8543014526367,-144.810195922852,-75.2446670532227,-45.7308883666992,-140.252746582031,-73.4210891723633,-42.7044906616211,-145.251235961914,-79.9950332641602,-37.3799667358398,-156.619354248047,-83.2320556640625,-57.1545066833496,-126.445388793945,-54.54833984375,-47.7346839904785,-131.035827636719,-74.7504196166992,-51.0289077758789,-210.498626708984,-85.0313262939453,-59.3932266235352,-211.999771118164,-83.6245880126953,-72.2765884399414,-220.462600708008,-80.1631546020508,-84.4973831176758,-225.896133422852,-69.7149276733398,-43.0641250610352,-206.679244995117,-82.6919021606445,-90.4575729370117,-187.105346679688,-28.8360214233398,-89.9467163085938,-192.01481628418,-28.5783958435059,-93.541877746582,-201.408737182617,-27.5788993835449,-91.9755172729492,-209.539535522461,-30.0233383178711,-93.2881469726563,-217.827346801758,-34.5179786682129,-91.2527465820313,-218.550430297852,-42.0786209106445,-91.5950775146484,-226.260177612305,-52.2878189086914,-90.7548980712891,-226.631195068359,-60.0133781433105,-85.7819137573242,-167.008377075195,-33.6283912658691,-87.377067565918,-182.495880126953,-30.2812633514404,-57.6416549682617,-130.477783203125,-51.450439453125,-81.6181030273438,-148.834594726563,-39.7768936157227,-73.6865234375,-126.606407165527,-49.3291282653809,-63.7542533874512,-122.686027526855,-51.5689506530762,-28.1056594848633,-191.154739379883,-80.5206832885742,-28.4066886901855,-196.369247436523,-79.1259460449219,-34.5334892272949,-200.934677124023,-77.8423233032227,-33.8938293457031,-161.435821533203,-86.8555068969727,-42.0301246643066,-144.282150268555,-82.9266204833984,-57.7065582275391,-121.057861328125,-57.4546279907227,-55.2802238464355,-116.61442565918,-66.2527923583984,-53.4550437927246,-118.676628112793,-70.4377975463867,-48.3471412658691,-124.473197937012,-80.0093383789063,-58.7858657836914,-215.579116821289,-86.7835998535156,-66.3619079589844,-216.435211181641,-82.842414855957, +-81.910530090332,-227.645309448242,-76.3795776367188,-83.3691787719727,-227.692306518555,-73.0765609741211,-101.710472106934,-200.458633422852,-24.8942356109619,-97.1979293823242,-191.867797851563,-25.2438697814941,-102.368537902832,-210.627639770508,-27.652307510376,-102.075508117676,-205.831176757813,-26.0759525299072,-96.7721862792969,-220.969650268555,-33.5974884033203,-97.5159606933594,-215.570114135742,-30.6960048675537,-92.0387268066406,-233.440872192383,-63.5948295593262,-89.0424346923828,-229.116439819336,-66.3987045288086,-88.2322463989258,-177.694412231445,-30.9334278106689,-89.0611343383789,-172.687927246094,-31.9416255950928,-82.5955963134766,-153.963088989258,-37.4047622680664,-86.0254364013672,-156.461334228516,-36.7157936096191,-80.3002700805664,-127.355484008789,-50.7122650146484,-70.3601989746094,-120.871841430664,-51.0521965026855,-67.4620132446289,-121.334884643555,-51.1049041748047,-60.5927391052246,-120.899848937988,-54.0327911376953,-28.0570545196533,-171.303787231445,-88.3097457885742,-25.2821826934814,-195.468154907227,-81.3635711669922,-25.277982711792,-176.859329223633,-87.7035903930664,-31.2821712493896,-200.706665039063,-78.8922271728516,-38.1228408813477,-204.636047363281,-80.7365112304688,-30.8058242797852,-164.475112915039,-89.5202713012695,-44.2962455749512,-140.697799682617,-78.5462951660156,-45.5189628601074,-136.682403564453,-77.0651473999023,-37.4338760375977,-152.049896240234,-86.4316635131836,-57.8915786743164,-116.251388549805,-60.2007942199707,-53.2816276550293,-113.26309967041,-79.4152755737305,-43.9639129638672,-131.494873046875,-85.2798538208008,-43.6581802368164,-210.417617797852,-86.0361251831055,-64.3154067993164,-218.156372070313,-85.3909683227539,-70.8195495605469,-223.379898071289,-83.7485046386719,-79.7482147216797,-228.181350708008,-79.61669921875,-86.4256744384766,-233.154846191406,-72.8123321533203,-97.6876831054688,-187.625381469727,-25.5332984924316,-95.3550491333008,-182.100830078125,-28.02024269104,-104.471740722656,-191.913803100586,-22.9542446136475,-94.5161666870117,-221.921737670898,-37.5611763000488, +-93.5824737548828,-222.981857299805,-42.8921012878418,-93.6156768798828,-231.482696533203,-53.3422241210938,-92.4505615234375,-231.355667114258,-60.2100982666016,-88.4563751220703,-234.165954589844,-69.6886215209961,-89.3340530395508,-155.595245361328,-36.9555168151855,-83.2616577148438,-138.451568603516,-45.3307418823242,-86.1217422485352,-150.228729248047,-39.1796340942383,-80.592399597168,-121.600914001465,-52.6539573669434,-73.5142059326172,-120.871841430664,-51.2977256774902,-67.3451080322266,-112.350006103516,-53.6268501281738,-64.132194519043,-114.194190979004,-54.2288093566895,-22.0917701721191,-182.748916625977,-87.4145660400391,-28.5829067230225,-201.091705322266,-79.9674301147461,-34.7736129760742,-205.098098754883,-81.5348815917969,-33.1484565734863,-158.169509887695,-89.9323120117188,-42.7859992980957,-136.258346557617,-84.8783111572266,-40.0831336975098,-144.34114074707,-86.0437240600586,-60.6411476135254,-116.385406494141,-56.0187873840332,-55.6498603820801,-112.002975463867,-69.1530685424805,-56.9365844726563,-111.337913513184,-65.0542755126953,-54.4196395874023,-112.199996948242,-76.4504852294922,-49.035213470459,-119.830741882324,-82.9187240600586,-49.6788711547852,-114.048179626465,-86.1440353393555,-38.3239593505859,-208.487426757813,-84.558479309082,-44.5199699401855,-214.071975708008,-88.3863525390625,-50.6276664733887,-214.304992675781,-87.9550170898438,-58.7485618591309,-219.612518310547,-88.950309753418,-67.1482849121094,-222.909851074219,-86.1289367675781,-74.2463836669922,-227.294281005859,-83.5637817382813,-82.7117080688477,-232.341766357422,-79.7063064575195,-84.6951065063477,-232.250762939453,-76.476188659668,-106.718963623047,-197.418350219727,-22.5193023681641,-106.156913757324,-201.416732788086,-23.4366931915283,-104.630760192871,-187.317352294922,-23.0341548919678,-105.093803405762,-221.053665161133,-30.775411605835,-109.696258544922,-211.549743652344,-25.1090564727783,-101.848487854004,-220.127578735352,-31.2866611480713,-96.6479721069336,-225.907135009766,-36.7402992248535,-94.7388916015625,-226.564208984375,-44.9749031066895, +-93.2472457885742,-235.939117431641,-61.5554275512695,-93.9334106445313,-174.472091674805,-30.4721813201904,-92.3583526611328,-160.658752441406,-34.9783248901367,-83.2422637939453,-129.563690185547,-50.0312995910645,-83.3520736694336,-123.332084655762,-52.5031433105469,-71.4052047729492,-112.856056213379,-52.9665870666504,-27.2049713134766,-162.748947143555,-94.2674331665039,-23.7844352722168,-170.58171081543,-92.5821685791016,-22.3714962005615,-194.917098999023,-83.3885650634766,-25.7390289306641,-200.225616455078,-80.9648284912109,-20.7266368865967,-176.910339355469,-91.2257385253906,-31.4694900512695,-204.968078613281,-81.7770080566406,-30.5348987579346,-158.243499755859,-93.0952224731445,-36.526683807373,-148.281524658203,-89.1754302978516,-60.4292259216309,-111.512924194336,-57.4299240112305,-58.1217994689941,-111.68293762207,-61.0164756774902,-53.5246505737305,-108.888671875,-81.8530120849609,-44.0529251098633,-122.518005371094,-92.265739440918,-35.8705177307129,-214.146987915039,-88.1112289428711,-51.1860198974609,-218.655426025391,-90.1795349121094,-63.8510627746582,-223.092864990234,-88.02392578125,-70.901252746582,-229.203460693359,-86.4528656005859,-81.6579055786133,-235.688095092773,-82.3766708374023,-88.8916168212891,-240.560577392578,-71.9967498779297,-86.6402969360352,-236.865203857422,-75.7231216430664,-101.458442687988,-183.273956298828,-25.4174880981445,-108.484130859375,-192.743896484375,-20.9565505981445,-109.078193664551,-206.585250854492,-23.2713775634766,-108.383125305176,-187.702392578125,-21.0406589508057,-108.349128723145,-217.751327514648,-28.7816181182861,-98.8503952026367,-224.522003173828,-33.4992752075195,-96.6694793701172,-223.823928833008,-34.5741844177246,-96.1803283691406,-230.857635498047,-45.861888885498,-93.4718704223633,-239.853500366211,-62.0093727111816,-98.7063827514648,-164.133087158203,-32.9391250610352,-92.3994598388672,-147.482452392578,-39.543872833252,-89.4540710449219,-148.793594360352,-39.5111694335938,-98.9754028320313,-172.385894775391,-29.8928260803223,-86.211051940918,-127.079452514648,-50.8714828491211, +-86.1098403930664,-136.955429077148,-46.0115051269531,-83.2699584960938,-111.193893432617,-54.7721633911133,-67.1585922241211,-106.975479125977,-55.556640625,-12.8924684524536,-188.354461669922,-91.3422470092773,-22.130973815918,-200.608657836914,-82.5339813232422,-14.2596025466919,-181.78581237793,-93.1064224243164,-28.3012790679932,-204.880081176758,-82.2475509643555,-34.4633827209473,-209.777557373047,-85.4538726806641,-32.9770355224609,-146.079315185547,-93.9789047241211,-40.7737998962402,-131.82292175293,-90.9567108154297,-38.2866554260254,-136.500381469727,-91.5056610107422,-36.3236656188965,-140.989807128906,-91.8612976074219,-56.2554168701172,-107.58854675293,-70.4646987915039,-57.405330657959,-107.034492492676,-64.8419494628906,-55.5543479919434,-105.95238494873,-76.7565155029297,-47.3297424316406,-116.65242767334,-88.9166107177734,-51.0281066894531,-107.543533325195,-86.9970169067383,-41.4849700927734,-218.533401489258,-90.2031402587891,-46.3938522338867,-218.332397460938,-90.426155090332,-56.8483734130859,-222.169769287109,-90.3524475097656,-61.0112838745117,-223.591918945313,-89.3023452758789,-84.8518218994141,-237.34326171875,-79.6445999145508,-102.199523925781,-178.211471557617,-27.0342464447021,-113.957672119141,-201.815780639648,-19.0566635131836,-114.022674560547,-192.89289855957,-17.4144039154053,-108.815170288086,-181.756805419922,-21.9489479064941,-105.404838562012,-183.082946777344,-23.6792163848877,-107.130004882813,-231.687698364258,-32.7793083190918,-109.525238037109,-226.076156616211,-31.3970737457275,-114.626739501953,-219.94255065918,-27.7553157806396,-114.732749938965,-211.157684326172,-22.414493560791,-102.04850769043,-231.04264831543,-33.5671844482422,-97.7800903320313,-229.937530517578,-37.3140563964844,-97.2844314575195,-234.741012573242,-45.4840507507324,-94.7268905639648,-235.899124145508,-53.808967590332,-95.2769470214844,-239.978515625,-53.7393646240234,-91.555778503418,-241.43864440918,-67.0016632080078,-97.730583190918,-155.772262573242,-35.1715393066406,-96.0934219360352,-146.702377319336,-39.0050201416016, +-89.3245544433594,-138.370559692383,-44.9644012451172,-102.165512084961,-169.084564208984,-29.9077262878418,-79.2513732910156,-111.790954589844,-54.4865379333496,-87.0131378173828,-112.235000610352,-54.1350021362305,-70.3699035644531,-107.024490356445,-54.980583190918,-63.884765625,-107.148498535156,-56.2131042480469,-22.6277236938477,-165.307205200195,-96.590461730957,-27.2040691375732,-155.671264648438,-97.1065063476563,-17.2450942993164,-196.137222290039,-85.952522277832,-18.5723247528076,-200.101608276367,-83.8780136108398,-24.222677230835,-205.139099121094,-83.3098602294922,-13.5286312103271,-176.356292724609,-96.3344345092773,-29.2104682922363,-209.011474609375,-84.7126007080078,-28.430591583252,-150.86279296875,-97.3235321044922,-58.7268562316895,-107.634544372559,-59.9727745056152,-56.3070220947266,-103.009094238281,-73.0050506591797,-54.9331893920898,-102.689064025879,-78.6705017089844,-49.7205772399902,-108.63264465332,-89.9589080810547,-40.8115043640137,-126.361381530762,-95.6964721679688,-47.7767868041992,-109.010681152344,-95.5942687988281,-52.6841659545898,-103.678161621094,-83.5764846801758,-34.8489189147949,-218.319396972656,-89.3023452758789,-46.5759696960449,-223.075866699219,-91.8409957885742,-52.1187133789063,-222.859832763672,-91.4021530151367,-65.7695541381836,-232.263763427734,-89.6862869262695,-78.4070892333984,-238.061325073242,-85.2316513061523,-82.7220077514648,-240.26155090332,-82.8060150146484,-85.6847076416016,-241.401657104492,-79.8868255615234,-105.350830078125,-176.564300537109,-25.9740428924561,-116.787948608398,-197.449340820313,-16.3325958251953,-114.275703430176,-188.047439575195,-17.005163192749,-116.217895507813,-206.538238525391,-19.4665031433105,-114.193695068359,-181.450775146484,-18.0427646636963,-116.112884521484,-227.373275756836,-30.8727207183838,-98.951904296875,-228.973434448242,-34.6363906860352,-93.1863403320313,-243.15283203125,-59.8991661071777,-91.3763656616211,-244.040908813477,-64.7995452880859,-89.2904586791992,-244.020904541016,-70.1023635864258,-102.12451171875,-160.485733032227,-32.9105186462402, +-93.9360122680664,-140.841796875,-42.3288421630859,-86.4033737182617,-120.898849487305,-52.668155670166,-89.5595779418945,-130.86181640625,-47.9714965820313,-79.0867538452148,-106.949485778809,-55.6553497314453,-84.9006195068359,-107.087493896484,-55.8464698791504,-73.9478530883789,-105.056289672852,-55.7033538818359,-63.7917594909668,-102.368034362793,-57.779857635498,-61.0917892456055,-106.59944152832,-57.2703094482422,-20.6733303070068,-158.264495849609,-101.094909667969,-12.2687082290649,-195.124114990234,-89.0674209594727,-8.56474494934082,-187.706390380859,-93.733283996582,-18.9140586853027,-205.544143676758,-83.9755249023438,-7.4053111076355,-179.068542480469,-98.3245315551758,-27.1612663269043,-146.649368286133,-99.835578918457,-37.9956283569336,-128.545608520508,-98.7583694458008,-33.3322715759277,-137.472473144531,-98.4273376464844,-32.7244148254395,-141.73388671875,-96.126220703125,-58.419132232666,-103.106101989746,-63.5542221069336,-57.0114936828613,-98.7974853515625,-71.1874694824219,-45.4128532409668,-114.156181335449,-96.7323684692383,-49.6180686950684,-103.288124084473,-93.0563125610352,-51.0332069396973,-100.717872619629,-87.6882858276367,-27.2387733459473,-213.552917480469,-87.0293273925781,-40.8457069396973,-222.413787841797,-90.8542022705078,-58.6650543212891,-230.28857421875,-91.4052505493164,-64.8651580810547,-238.057327270508,-91.8684005737305,-73.0753707885742,-240.249542236328,-88.8047027587891,-86.7447052001953,-244.346939086914,-75.8499298095703,-118.990165710449,-202.392837524414,-16.3467979431152,-119.620223999023,-192.472854614258,-12.917462348938,-114.732749938965,-172.550903320313,-20.1644725799561,-101.730476379395,-237.067230224609,-34.8962135314941,-114.395713806152,-231.814727783203,-32.310661315918,-119.092178344727,-225.079055786133,-28.8885269165039,-119.625221252441,-211.007675170898,-20.2612819671631,-99.4201507568359,-236.83821105957,-35.3962631225586,-99.1309204101563,-238.812408447266,-40.9646110534668,-94.9067077636719,-242.884796142578,-54.1863059997559,-102.056510925293,-151.02880859375,-34.7585029602051, +-100.278335571289,-148.424545288086,-36.6885948181152,-99.3404388427734,-142.249938964844,-39.6153793334961,-92.8087997436523,-135.388259887695,-45.0962142944336,-105.884880065918,-166.545333862305,-28.7203102111816,-89.2004470825195,-124.114158630371,-50.8855819702148,-92.4533615112305,-129.043655395508,-47.3134307861328,-94.587776184082,-112.261001586914,-51.7257652282715,-91.5884780883789,-106.365425109863,-55.0211868286133,-73.1005706787109,-96.011604309082,-59.0643844604492,-16.2848014831543,-161.452819824219,-102.515045166016,-22.0716686248779,-150.339721679688,-102.872077941895,-13.9948768615723,-168.218475341797,-100.565856933594,-15.4197158813477,-200.088607788086,-85.2570495605469,-8.37502574920654,-195.080123901367,-90.7550888061523,-12.2298040390015,-199.988586425781,-86.674186706543,-15.9324674606323,-203.94499206543,-84.1596450805664,-28.4585933685303,-141.96891784668,-101.027900695801,-60.6232452392578,-102.599052429199,-59.6403388977051,-58.6259498596191,-98.4736480712891,-67.3382949829102,-52.5300521850586,-97.8522872924805,-82.7927093505859,-43.6064796447754,-112.917060852051,-100.598854064941,-44.7588920593262,-108.701652526855,-100.925880432129,-34.037540435791,-222.475799560547,-89.6235809326172,-23.4151000976563,-218.037368774414,-88.0967254638672,-51.8214836120605,-230.591598510742,-92.7348861694336,-55.2629203796387,-230.391586303711,-92.2837371826172,-59.7220573425293,-236.341156005859,-93.0869216918945,-79.2985763549805,-243.570861816406,-84.5517807006836,-84.5435943603516,-243.498870849609,-80.658203125,-120.808349609375,-196.425247192383,-12.6044311523438,-120.263290405273,-187.772399902344,-11.6808414459229,-116.573928833008,-183.438980102539,-15.6437301635742,-121.278388977051,-206.442230224609,-16.7002334594727,-118.024070739746,-176.290267944336,-15.804744720459,-108.352127075195,-235.279052734375,-33.7321014404297,-117.911056518555,-235.06103515625,-32.5706901550293,-127.959045410156,-220.074554443359,-22.6756191253662,-121.307388305664,-228.502380371094,-29.4686832427979,-98.7430801391602,-235.836120605469,-37.2406463623047, +-98.2010269165039,-239.915512084961,-45.4546508789063,-97.2282333374023,-243.281829833984,-48.1609153747559,-105.564849853516,-155.35823059082,-32.1940498352051,-98.7746887207031,-134.217147827148,-42.7379837036133,-106.07389831543,-160.502731323242,-30.6794013977051,-93.6417846679688,-118.81364440918,-50.1020050048828,-92.4720687866211,-99.6791687011719,-57.6917495727539,-78.2603759765625,-95.9730072021484,-59.2290992736816,-69.9920654296875,-93.7572860717773,-60.7078475952148,-18.675235748291,-148.275527954102,-106.426422119141,-9.4941349029541,-204.146011352539,-85.5283813476563,-4.21834802627563,-190.344650268555,-94.3938446044922,-14.158091545105,-209.241500854492,-84.9605178833008,-20.2754936218262,-214.375015258789,-87.0318222045898,-10.0813932418823,-164.091079711914,-104.865272521973,-22.5610160827637,-144.303146362305,-105.33731842041,-35.8237152099609,-130.226760864258,-100.698860168457,-60.8203620910645,-97.8602905273438,-63.5975303649902,-57.605052947998,-94.1272201538086,-70.7440338134766,-55.6388549804688,-94.4878616333008,-74.657112121582,-47.4350547790527,-104.738258361816,-97.9954986572266,-38.6393928527832,-116.421409606934,-105.283309936523,-48.8366928100586,-98.4594497680664,-95.0374145507813,-52.7714767456055,-90.4005584716797,-81.1809539794922,-38.2312507629395,-230.804611206055,-90.5253677368164,-25.1092662811279,-222.728820800781,-88.5381698608398,-48.073917388916,-230.624603271484,-92.5849685668945,-56.1098022460938,-235.7041015625,-93.5824661254883,-60.8454666137695,-241.450668334961,-94.0478134155273,-69.6172256469727,-243.926910400391,-90.7685928344727,-74.1524658203125,-244.821990966797,-88.1868438720703,-83.3402709960938,-245.308029174805,-79.1182479858398,-122.894546508789,-200.859680175781,-12.4079122543335,-123.518615722656,-191.899795532227,-7.85263586044312,-118.032073974609,-166.079284667969,-19.8283405303955,-115.221794128418,-160.998779296875,-23.9760456085205,-100.58536529541,-239.558471679688,-37.3520584106445,-104.983787536621,-240.281539916992,-36.1602401733398,-109.504234313965,-240.671585083008,-35.4489707946777, +-113.707641601563,-240.793594360352,-34.6205863952637,-128.729110717773,-225.040054321289,-24.9020366668701,-128.161071777344,-230.479583740234,-27.2587661743164,-126.624908447266,-212.853851318359,-18.3776969909668,-123.756637573242,-209.307510375977,-17.0352649688721,-100.924392700195,-244.074905395508,-40.4093551635742,-105.397834777832,-145.456253051758,-34.5840835571289,-105.395835876465,-150.19873046875,-33.0849380493164,-102.864585876465,-139.183639526367,-39.0008201599121,-97.5364685058594,-109.89476776123,-52.3868293762207,-96.1423263549805,-118.922653198242,-48.9032859802246,-95.863395690918,-101.896987915039,-56.6289482116699,-88.4577713012695,-100.983894348145,-57.533634185791,-77.0986557006836,-89.0923309326172,-61.8823623657227,-63.8632621765137,-97.6219635009766,-60.7271461486816,-72.9453506469727,-88.0766296386719,-62.7084426879883,-15.8954629898071,-144.976211547852,-109.760757446289,-12.6003398895264,-205.219116210938,-84.7199935913086,-1.20240294933319,-200.653671264648,-89.68798828125,0.0560920014977455,-177.800430297852,-101.960990905762,-1.36951994895935,-194.987106323242,-92.9528045654297,-4.04618215560913,-166.313293457031,-106.463424682617,-28.0460529327393,-135.238250732422,-105.79736328125,-32.6721076965332,-130.928833007813,-103.921180725098,-60.5387382507324,-92.86669921875,-67.23388671875,-38.8705177307129,-111.013877868652,-106.834465026855,-43.9566116333008,-103.910186767578,-102.662055969238,-50.4874534606934,-90.6561813354492,-89.9927139282227,-28.9124374389648,-229.221466064453,-88.7977905273438,-16.3480072021484,-222.55680847168,-87.6747894287109,-13.5126285552979,-213.640930175781,-86.1354370117188,-48.8974952697754,-235.429077148438,-93.4113540649414,-52.7117691040039,-235.601089477539,-93.7744827270508,-57.2698173522949,-241.065628051758,-94.2709350585938,-65.0100784301758,-242.60676574707,-92.553466796875,-124.649719238281,-196.148223876953,-7.88871908187866,-124.401695251465,-187.295349121094,-5.32283782958984,-119.807243347168,-183.178939819336,-12.2398958206177,-125.370788574219,-204.548049926758,-12.6031312942505, +-119.893257141113,-166.070266723633,-17.779239654541,-120.367301940918,-241.889694213867,-33.6299934387207,-125.655822753906,-239.381454467773,-31.0922431945801,-134.289672851563,-224.570007324219,-22.8381328582764,-134.986724853516,-218.107376098633,-18.8981475830078,-105.446838378906,-140.632781982422,-36.8475074768066,-114.751754760742,-154.463134765625,-26.4102840423584,-114.830757141113,-151.061798095703,-26.8692283630371,-102.618560791016,-128.940628051758,-42.8622970581055,-97.9811096191406,-125.548309326172,-45.4950561523438,-83.1609497070313,-96.5096588134766,-59.1321907043457,-94.7455902099609,-95.8911972045898,-58.987377166748,-67.1758880615234,-92.908203125,-62.4713172912598,-19.6427307128906,-131.603897094727,-113.793144226074,-13.0917882919312,-146.881393432617,-110.374816894531,-24.2689838409424,-133.459075927734,-109.825759887695,-3.33693194389343,-204.791061401367,-86.6734848022461,-8.97199440002441,-209.586532592773,-84.3612670898438,0.521701991558075,-188.572479248047,-96.9266967773438,-7.15451622009277,-161.167785644531,-107.469528198242,-32.8925285339355,-124.577209472656,-107.265510559082,-63.9804763793945,-92.8499984741211,-64.4190063476563,-56.7275619506836,-85.7030029296875,-72.8635406494141,-54.3137283325195,-86.1995468139648,-76.406379699707,-52.2446250915527,-85.3257598876953,-80.5150833129883,-45.4258575439453,-100.223815917969,-100.748870849609,-41.308650970459,-102.249015808105,-105.538345336914,-34.8482208251953,-116.17138671875,-108.847663879395,-48.5917663574219,-90.2959518432617,-93.301139831543,-50.1048164367676,-85.9533233642578,-88.6214752197266,-32.4677848815918,-233.451873779297,-89.7507934570313,-11.3062133789063,-218.26139831543,-86.7871017456055,-52.9571914672852,-241.07861328125,-93.8689956665039,-63.1111907958984,-245.009994506836,-91.6208724975586,-59.4057273864746,-244.785980224609,-92.0734252929688,-67.6621322631836,-245.710083007813,-88.5320739746094,-71.485107421875,-245.836090087891,-87.8381042480469,-125.904838562012,-200.40364074707,-9.03648090362549,-127.519004821777,-191.334747314453,-0.527252972126007, +-122.75853729248,-182.877914428711,-7.90560102462769,-120.697334289551,-176.233276367188,-12.2900009155273,-121.11937713623,-161.066772460938,-17.7411365509033,-118.185089111328,-160.345718383789,-21.5269050598145,-135.725799560547,-230.947631835938,-24.787525177002,-131.01335144043,-240.583572387695,-29.2418613433838,-137.988037109375,-214.434005737305,-14.6066274642944,-127.254974365234,-208.118408203125,-14.1866855621338,-110.939376831055,-145.799285888672,-30.6733016967773,-108.693153381348,-140.697799682617,-34.8664131164551,-105.40283203125,-135.26025390625,-39.5014686584473,-118.328102111816,-151.230819702148,-23.8628349304199,-99.3809432983398,-116.620429992676,-49.035701751709,-100.104316711426,-106.255416870117,-54.418529510498,-99.2401351928711,-98.1672210693359,-58.5567321777344,-88.8417129516602,-93.9832077026367,-59.3407096862793,-76.6206130981445,-84.0877380371094,-63.2920989990234,-88.1488418579102,-84.3758697509766,-62.9305648803711,-67.235595703125,-88.242546081543,-65.186279296875,-14.1787948608398,-136.297348022461,-114.633224487305,-0.142412006855011,-209.371520996094,-84.8260116577148,-4.05784320831299,-209.292510986328,-84.5583801269531,6.25554800033569,-198.757476806641,-92.6906814575195,0.448931992053986,-167.079376220703,-107.539535522461,3.91261792182922,-192.535858154297,-95.7015762329102,-1.85067701339722,-161.773849487305,-109.050682067871,-64.030876159668,-88.2540512084961,-66.3278961181641,-61.2510108947754,-83.709602355957,-68.2007827758789,-47.2048301696777,-95.616569519043,-97.1146087646484,-38.3496627807617,-101.154907226563,-108.254600524902,-34.3365707397461,-111.676940917969,-110.017776489258,-25.0789623260498,-233.320861816406,-88.427360534668,-36.9959297180176,-237.858322143555,-91.1748275756836,-43.513069152832,-238.209350585938,-92.602668762207,-10.2020053863525,-222.696823120117,-86.7418975830078,-53.8157768249512,-245.137023925781,-90.8184967041016,-128.246078491211,-200.108612060547,-5.72223711013794,-128.630111694336,-195.675186157227,-0.706269979476929,-126.847930908203,-184.293060302734,0.353917986154556, +-129.564208984375,-204.826065063477,-9.51016807556152,-122.753540039063,-165.580215454102,-13.5692262649536,-137.51399230957,-237.877319335938,-26.3634796142578,-138.031036376953,-222.491806030273,-20.7618312835693,-140.617294311523,-226.238174438477,-21.5591087341309,-140.839309692383,-218.613418579102,-17.1812801361084,-132.008438110352,-209.743560791016,-12.9971704483032,-108.821174621582,-135.839309692383,-37.9969177246094,-115.066780090332,-146.086318969727,-28.2343635559082,-105.397834777832,-126.706413269043,-43.1969299316406,-102.888580322266,-121.901947021484,-45.5374603271484,-99.3032302856445,-121.415893554688,-46.6293678283691,-101.540451049805,-114.16918182373,-50.1958122253418,-94.033821105957,-90.5438766479492,-61.075080871582,-80.1998672485352,-84.2109527587891,-63.0791778564453,-73.5545120239258,-83.5640869140625,-64.0923767089844,-69.1634826660156,-84.2360534667969,-65.45361328125,-23.172477722168,-121.843940734863,-115.311294555664,-14.4536218643188,-131.537887573242,-116.36540222168,-9.33386039733887,-138.710601806641,-115.392303466797,-9.89515495300293,-149.454650878906,-110.607833862305,3.93668103218079,-209.2705078125,-85.0117263793945,5.3104248046875,-205.890167236328,-87.5654830932617,-5.34426879882813,-213.411926269531,-84.3783645629883,3.28004598617554,-167.613418579102,-107.845565795898,-30.971040725708,-122.430999755859,-109.719749450684,-58.3692245483398,-82.9134216308594,-71.3257827758789,-53.3074264526367,-81.7261123657227,-77.1856536865234,-49.0935173034668,-81.1431503295898,-86.0829315185547,-42.7453956604004,-93.8082962036133,-102.942085266113,-35.0799407958984,-105.438331604004,-110.131790161133,-40.1593437194824,-95.2923355102539,-106.638450622559,-23.2897872924805,-115.990364074707,-116.706436157227,-45.4263572692871,-85.4233703613281,-95.4068450927734,-45.0140151977539,-91.114128112793,-98.5987548828125,-31.5009937286377,-238.72639465332,-89.74609375,-39.7575988769531,-235.832107543945,-91.4323501586914,-47.2368316650391,-240.235549926758,-93.270637512207,-24.8347396850586,-237.208236694336,-88.2876510620117, +-3.85794305801392,-218.045364379883,-84.7593078613281,-15.3873128890991,-229.759521484375,-87.2027435302734,-49.3624420166016,-244.975006103516,-90.3738555908203,-63.4225196838379,-246.168121337891,-86.8779144287109,-129.827224731445,-190.726684570313,5.74273586273193,-122.884544372559,-178.805511474609,-7.82650279998779,-128.370086669922,-185.673187255859,3.81371688842773,-122.833541870117,-174.072052001953,-9.01737976074219,-124.245681762695,-161.062774658203,-12.7540464401245,-121.256385803223,-155.97428894043,-18.8671436309814,-143.702575683594,-232.440780639648,-22.0674591064453,-145.560760498047,-216.575225830078,-12.9598655700684,-138.828109741211,-211.93376159668,-11.3147048950195,-111.828460693359,-140.26774597168,-33.556583404541,-118.19408416748,-146.212326049805,-26.3071746826172,-115.169792175293,-141.122817993164,-31.6432971954346,-108.573150634766,-130.533782958984,-41.2886428833008,-106.230911254883,-111.903961181641,-51.7541656494141,-106.338928222656,-103.208114624023,-56.5182342529297,-99.3645401000977,-91.682991027832,-61.7827491760254,-80.0272445678711,-75.6143112182617,-64.0965728759766,-72.8233413696289,-78.8678283691406,-64.9088592529297,-85.0424346923828,-80.941032409668,-63.7276420593262,-19.2981967926025,-122.02995300293,-117.368499755859,1.54781603813171,-214.126983642578,-83.269157409668,-1.67734003067017,-214.067977905273,-83.8536148071289,10.188793182373,-203.112899780273,-90.2990493774414,8.93546009063721,-197.99040222168,-93.3256454467773,6.87355804443359,-178.462493896484,-102.722061157227,-5.94457817077637,-152.545959472656,-110.551826477051,-64.0652847290039,-83.6484909057617,-66.5620193481445,-60.6851539611816,-78.4802932739258,-70.9412460327148,-56.6384544372559,-79.9203262329102,-73.7882308959961,-50.640869140625,-79.6956100463867,-80.3318710327148,-45.5832710266113,-78.4065856933594,-90.4923629760742,-33.8173217773438,-98.1305160522461,-112.43701171875,-37.4261703491211,-95.9525985717773,-109.792755126953,-30.8593292236328,-107.127494812012,-112.619033813477,-27.9914474487305,-239.161437988281,-88.9422073364258, +-38.1628456115723,-242.422760009766,-91.0630264282227,-41.1186332702637,-241.445663452148,-91.8003921508789,-45.2164344787598,-243.471862792969,-91.847297668457,-21.2760906219482,-236.117126464844,-87.8508987426758,0.398809999227524,-223.325881958008,-83.911018371582,-11.9064722061157,-237.138244628906,-85.6035842895508,-49.1998252868652,-246.518157958984,-83.9651184082031,-58.8011665344238,-246.39013671875,-86.0183258056641,-130.972351074219,-199.91259765625,-0.734046995639801,-132.354461669922,-204.205001831055,-5.69526481628418,-130.945327758789,-195.366149902344,5.31739521026611,-127.48299407959,-178.031448364258,2.9484429359436,-123.98365020752,-169.189590454102,-8.88229560852051,-126.017860412598,-161.170791625977,-8.91065883636475,-124.392700195313,-156.25129699707,-14.9263591766357,-121.211387634277,-151.245819091797,-20.69482421875,-146.821884155273,-240.207550048828,-22.9203433990479,-146.889907836914,-221.923736572266,-17.2642879486084,-148.939102172852,-225.609115600586,-18.3036918640137,-152.790481567383,-230.497589111328,-18.6623249053955,-148.702072143555,-220.244583129883,-15.1357803344727,-134.999725341797,-208.135406494141,-9.007248878479,-113.15559387207,-132.60400390625,-39.4977684020996,-121.308395385742,-146.429336547852,-23.8992385864258,-118.381103515625,-141.350860595703,-30.3445701599121,-106.478942871094,-121.325889587402,-45.720573425293,-111.169403076172,-127.050453186035,-43.3341407775879,-105.918884277344,-117.251487731934,-48.071907043457,-106.519943237305,-107.092498779297,-54.6242485046387,-105.381828308105,-93.458251953125,-61.78955078125,-94.6909790039063,-83.6524963378906,-63.9996643066406,-76.7536315917969,-74.2769775390625,-64.8192443847656,-93.6755828857422,-79.207160949707,-65.0191650390625,-16.2606983184814,-122.11897277832,-118.434600830078,-11.9483757019043,-130.78581237793,-117.225486755371,-4.41614818572998,-147.568466186523,-112.621032714844,6.35504722595215,-214.027984619141,-82.4896774291992,9.88449287414551,-208.843460083008,-85.4650726318359,6.35052680969238,-159.897674560547,-110.685844421387, +6.71683311462402,-166.350296020508,-108.609642028809,-0.597820997238159,-152.650955200195,-111.404914855957,-63.9894790649414,-78.9616394042969,-67.8623504638672,-52.1121139526367,-77.3552856445313,-77.1827545166016,-45.2199363708496,-71.3673934936523,-83.5344848632813,-44.8077964782715,-73.3844909667969,-87.1707382202148,-43.2671432495117,-83.7368087768555,-98.634162902832,-40.0899353027344,-88.8898162841797,-105.971382141113,-37.5053787231445,-88.3031539916992,-109.322708129883,-23.3617935180664,-111.893966674805,-117.150482177734,-44.892204284668,-80.1338500976563,-93.0839233398438,-29.9318389892578,-241.795700073242,-87.6036758422852,-36.39697265625,-243.951904296875,-88.8112030029297,-27.662015914917,-242.675765991211,-85.5196762084961,-22.6435241699219,-241.436645507813,-85.5964813232422,-16.3099040985107,-236.52717590332,-86.8356018066406,-46.7303848266602,-246.103103637695,-88.4286651611328,-127.053955078125,-172.932952880859,1.58705902099609,-127.37198638916,-156.897384643555,-10.7864542007446,-124.471702575684,-151.523849487305,-17.6833305358887,-149.945190429688,-237.819305419922,-21.2041759490967,-154.197616577148,-219.346496582031,-11.440318107605,-143.83659362793,-213.022872924805,-9.33198070526123,-138.876113891602,-208.57844543457,-6.18436193466187,-121.512413024902,-141.464859008789,-28.9572353363037,-118.264091491699,-135.652297973633,-36.4537658691406,-113.268608093262,-118.307594299316,-48.4573440551758,-119.773239135742,-107.656555175781,-56.5850372314453,-117.916061401367,-101.141914367676,-59.5116271972656,-99.690071105957,-88.4084625244141,-63.1039810180664,-80.5234909057617,-70.3430862426758,-65.6769332885742,-83.807014465332,-71.7198257446289,-65.2033843994141,-68.3903045654297,-75.09326171875,-67.2534866333008,-67.2535934448242,-79.1453552246094,-66.2623901367188,-86.6672973632813,-71.2283782958984,-65.5979232788086,-19.1553821563721,-113.769149780273,-118.931655883789,-3.90340805053711,-138.633575439453,-116.703430175781,-3.91694903373718,-142.468963623047,-115.228286743164,5.27070093154907,-218.064361572266,-82.0170288085938, +14.6756324768066,-199.386535644531,-92.5257568359375,13.7639427185059,-204.767059326172,-88.9284057617188,13.7626428604126,-192.969909667969,-95.7330780029297,10.47412109375,-168.386489868164,-107.260513305664,-64.0825805664063,-74.2690811157227,-70.3126831054688,-59.7581596374512,-75.1191635131836,-72.8708343505859,-54.9641914367676,-74.5485076904297,-74.8210296630859,-50.3195381164551,-73.1068649291992,-77.1229553222656,-47.3925476074219,-72.472900390625,-80.0457382202148,-39.3904647827148,-81.8293151855469,-105.24430847168,-34.8669242858887,-93.6152725219727,-111.968963623047,-26.7040214538574,-105.511337280273,-115.37230682373,-32.7448120117188,-242.856796264648,-87.4713745117188,-41.7873992919922,-245.673080444336,-87.7705917358398,1.87723898887634,-228.450378417969,-83.1443481445313,-17.02907371521,-242.574768066406,-83.4444732666016,-43.7589912414551,-246.559158325195,-81.9364242553711,-134.564697265625,-204.146011352539,-2.62797403335571,-133.857620239258,-199.693557739258,5.50684309005737,-127.030960083008,-164.284103393555,-3.67811703681946,-126.764923095703,-168.833541870117,-0.733455002307892,-127.685020446777,-160.593734741211,-6.02924680709839,-127.739028930664,-151.698867797852,-15.6681318283081,-124.545715332031,-146.629379272461,-21.7279243469238,-159.384124755859,-226.809234619141,-14.1494827270508,-156.774856567383,-236.06413269043,-18.6030197143555,-152.438430786133,-216.251190185547,-8.62701225280762,-156.248825073242,-222.797836303711,-13.3938093185425,-125.659820556641,-141.426849365234,-27.3757781982422,-121.737434387207,-136.391372680664,-35.3021545410156,-116.083877563477,-130.838821411133,-40.8977012634277,-118.105079650879,-126.275375366211,-44.314338684082,-119.620223999023,-112.619033813477,-53.7377624511719,-111.846466064453,-93.1842346191406,-62.8081512451172,-100.469345092773,-83.9374237060547,-64.3806076049805,-106.966987609863,-88.3634567260742,-63.8831558227539,-75.8075332641602,-69.2624893188477,-67.4057006835938,-96.2323379516602,-76.2245712280273,-65.47021484375,-12.7755565643311,-120.385795593262,-119.497711181641, +-16.1474876403809,-113.902160644531,-119.806739807129,-8.99971675872803,-130.125762939453,-117.64852142334,2.8935980796814,-151.678863525391,-112.80305480957,12.7175407409668,-214.60302734375,-80.8083190917969,13.3888072967529,-210.448608398438,-83.5940933227539,11.2179937362671,-182.094833374023,-101.274925231934,10.4993238449097,-157.80046081543,-111.645935058594,10.2221956253052,-177.517395019531,-103.337120056152,-44.8549003601074,-67.89794921875,-79.6930084228516,-41.7649002075195,-67.8246459960938,-88.8431015014648,-41.5282745361328,-72.5130004882813,-95.2354278564453,-40.1022338867188,-76.5220031738281,-101.468940734863,-31.2560691833496,-94.4485549926758,-114.17618560791,-35.101448059082,-86.0808410644531,-111.248901367188,-23.5519123077393,-103.934188842773,-117.171478271484,-31.9189338684082,-245.284027099609,-81.8095169067383,-36.4294776916504,-246.1201171875,-82.5497817993164,-24.9495506286621,-245.418045043945,-79.7424087524414,10.6177349090576,-223.546905517578,-80.9292297363281,-5.95637893676758,-236.847213745117,-84.0204315185547,-9.60242557525635,-242.060729980469,-82.2199554443359,-137.841018676758,-203.9169921875,2.34475302696228,-130.966339111328,-156.815368652344,-7.75748586654663,-130.972351074219,-152.392944335938,-13.6006288528442,-127.845031738281,-146.730377197266,-20.5278072357178,-159.450119018555,-230.552597045898,-15.7683410644531,-158.112487792969,-233.308364868164,-17.1856803894043,-157.639953613281,-219.904541015625,-9.35185241699219,-147.330947875977,-211.936767578125,-5.18527412414551,-124.824737548828,-136.398361206055,-34.6999969482422,-122.56551361084,-131.547897338867,-40.6490783691406,-123.104568481445,-126.109359741211,-45.231128692627,-123.089569091797,-111.466926574707,-54.7963676452637,-122.043464660645,-102.390029907227,-59.1020851135254,-120.365303039551,-93.0781173706055,-63.6221313476563,-83.5739898681641,-65.1343841552734,-66.8905487060547,-75.6113128662109,-64.9591598510742,-69.2835845947266,-86.6467971801758,-65.1050796508789,-66.2736892700195,-68.4584121704102,-69.1340713500977,-70.2084808349609, +-95.4930572509766,-68.3871002197266,-65.8544540405273,-19.6783332824707,-101.109909057617,-118.780639648438,1.95301604270935,-137.055435180664,-117.317497253418,1.68086898326874,-144.365142822266,-115.697334289551,10.6151351928711,-219.347503662109,-80.6986083984375,17.2167835235596,-203.690963745117,-90.019416809082,19.7374286651611,-198.181427001953,-93.2278289794922,16.4139022827148,-190.186630249023,-97.4615478515625,6.90784120559692,-151.9208984375,-113.426109313965,13.7081384658813,-158.186508178711,-110.940864562988,13.334300994873,-169.774627685547,-105.940376281738,-64.3588180541992,-69.6526260375977,-71.8002319335938,-61.6292457580566,-68.0031585693359,-72.5451049804688,-51.3542366027832,-69.2755889892578,-75.0432510375977,-47.5727653503418,-68.5302124023438,-76.6079025268555,-40.2020454406738,-62.9773712158203,-84.9501190185547,-36.3959732055664,-75.2616806030273,-105.936378479004,-31.4206829071045,-85.883918762207,-113.526123046875,-36.0475387573242,-81.6479034423828,-109.412712097168,-29.4951953887939,-245.96110534668,-79.2903594970703,-40.1000328063965,-246.699172973633,-81.1032485961914,12.5139207839966,-229.075439453125,-80.100944519043,-1.90094196796417,-231.824722290039,-83.6259918212891,-13.4404220581055,-245.659072875977,-77.5279922485352,-141.527374267578,-207.769348144531,-2.08138990402222,-140.683288574219,-203.692962646484,7.13972282409668,-128.555099487305,-164.659133911133,0.186882004141808,-129.516189575195,-161.052780151367,-2.93659400939941,-131.11735534668,-146.805389404297,-19.8026351928711,-162.7724609375,-230.968627929688,-13.4230117797852,-159.828170776367,-223.632904052734,-11.433217048645,-162.042388916016,-235.555084228516,-15.7696409225464,-155.056701660156,-215.566116333008,-5.0008659362793,-128.36408996582,-136.405364990234,-34.0332298278809,-128.148056030273,-126.229370117188,-45.6960754394531,-127.358985900879,-107.057487487793,-56.7965621948242,-122.446502685547,-96.8890914916992,-61.9954681396484,-113.60863494873,-88.5595779418945,-64.2195892333984,-104.620758056641,-81.9067230224609,-64.663932800293, +-90.2092514038086,-65.7756500244141,-65.8905487060547,-103.577651977539,-73.1003646850586,-64.98486328125,-11.4165239334106,-116.751441955566,-120.247779846191,-16.8388557434082,-93.9361114501953,-119.818740844727,2.10171103477478,-129.51969909668,-118.362594604492,16.3284950256348,-213.571929931641,-81.1726531982422,14.3373003005981,-218.812438964844,-79.725212097168,22.3979892730713,-194.942108154297,-94.84228515625,16.5856189727783,-184.968124389648,-100.91088104248,12.7311420440674,-152.657958984375,-112.70304107666,15.1863832473755,-178.633499145508,-103.42212677002,-55.2618217468262,-68.7236404418945,-73.9370422363281,-39.1977462768555,-58.5575370788574,-79.7326049804688,-45.8643989562988,-66.8270492553711,-76.7488174438477,-38.0528335571289,-63.7195434570313,-91.6705780029297,-39.5644798278809,-68.2711944580078,-95.1665191650391,-38.4837799072266,-73.1411666870117,-101.80997467041,-27.6375141143799,-88.2995529174805,-115.426307678223,-30.72141456604,-79.6559066772461,-112.507019042969,-18.8622531890869,-246.053115844727,-77.2415618896484,3.46704411506653,-234.991027832031,-81.4749755859375,16.6084213256836,-224.142959594727,-79.569694519043,-2.61509203910828,-239.282455444336,-81.3267669677734,-9.97188186645508,-246.076110839844,-75.6961135864258,-145.10871887207,-207.924377441406,1.39646100997925,-133.48258972168,-159.034576416016,-2.64917588233948,-138.512084960938,-151.860870361328,-11.7985534667969,-136.429885864258,-147.323440551758,-18.0838680267334,-162.905471801758,-226.598205566406,-9.22596073150635,-159.735153198242,-218.407409667969,-3.01711201667786,-161.302307128906,-222.751831054688,-8.0611572265625,-152.324432373047,-212.651840209961,-2.11363291740417,-137.634979248047,-131.510894775391,-39.7145881652832,-127.823036193848,-130.768814086914,-41.3885498046875,-130.718307495117,-117.873550415039,-51.1001052856445,-129.926239013672,-111.772956848145,-54.6562538146973,-128.201065063477,-101.386932373047,-58.9465713500977,-126.175872802734,-93.4059524536133,-62.8797569274902,-118.893157958984,-88.4668655395508,-64.2835998535156, +-109.532241821289,-84.681999206543,-64.5511245727539,-88.645393371582,-61.0766868591309,-66.3027954101563,-81.5808029174805,-60.2962074279785,-68.6765289306641,-70.8886566162109,-64.9978713989258,-70.5513076782227,-103.514656066895,-62.8325576782227,-64.7389373779297,-93.4710693359375,-60.8357620239258,-65.3723068237305,-12.7211513519287,-109.267707824707,-120.403793334961,-5.48578310012817,-120.436805725098,-119.666725158691,5.66656017303467,-144.532165527344,-115.652328491211,-6.42449522018433,-128.728622436523,-117.93155670166,9.50866603851318,-125.760322570801,-118.124572753906,20.3719902038574,-204.293014526367,-89.4220657348633,28.6690044403076,-199.702560424805,-92.5564651489258,19.8237361907959,-210.202606201172,-83.7170944213867,19.7272262573242,-184.556076049805,-101.607955932617,9.7793025970459,-147.310440063477,-113.970169067383,21.6827201843262,-152.029891967773,-110.046775817871,18.9075489044189,-163.330001831055,-106.753456115723,16.4185047149658,-172.076858520508,-104.698257446289,-67.3757019042969,-64.4943161010742,-71.3856887817383,-57.7352638244629,-63.7040405273438,-72.7328186035156,-46.8808975219727,-57.9483795166016,-73.4740982055664,-45.861499786377,-61.3909149169922,-74.3904876708984,-37.3385620117188,-58.9367752075195,-84.4679718017578,-39.8758125305176,-56.1276016235352,-76.3559799194336,-33.0665435791016,-68.1159744262695,-104.27220916748,-32.6008987426758,-75.5999069213867,-109.562728881836,-24.1934757232666,-83.9953308105469,-116.210388183594,-23.4727058410645,-79.6397018432617,-115.590324401855,14.5232172012329,-237.534271240234,-78.1921539306641,17.479907989502,-228.021331787109,-79.401481628418,-6.49310207366943,-245.259033203125,-76.0468521118164,-148.703063964844,-207.420318603516,6.64580488204956,-131.28938293457,-161.492828369141,0.13934800028801,-137.546981811523,-156.642349243164,-4.95405197143555,-165.299697875977,-235.8291015625,-12.8623571395874,-166.128784179688,-231.552688598633,-8.25095367431641,-158.712066650391,-215.199081420898,1.69763004779816,-140.065231323242,-141.967910766602,-23.7659244537354, +-132.591491699219,-131.313858032227,-40.5876731872559,-133.513595581055,-126.267372131348,-45.386043548584,-133.001541137695,-107.891571044922,-55.8319664001465,-131.602401733398,-100.646865844727,-58.4490203857422,-126.777923583984,-88.6510925292969,-63.7524452209473,-122.821533203125,-87.4820785522461,-64.1989898681641,-109.718254089355,-77.0326461791992,-64.3371963500977,-75.2403717041016,-60.5759353637695,-69.9242477416992,-106.078895568848,-63.4540176391602,-64.6907348632813,-8.81109809875488,-113.368110656738,-120.49080657959,-5.22326707839966,-115.845352172852,-120.163764953613,-12.7580556869507,-93.6571807861328,-120.472801208496,8.45178318023682,-135.306259155273,-116.590423583984,3.92812991142273,-121.265884399414,-119.734733581543,17.2807884216309,-218.156372070313,-79.178955078125,25.6408061981201,-204.388031005859,-90.2348403930664,28.7431125640869,-192.689880371094,-95.5253601074219,19.3993968963623,-214.884063720703,-79.9343338012695,22.5421028137207,-185.107147216797,-101.114906311035,15.0160655975342,-147.860488891602,-112.61302947998,21.2227745056152,-147.884490966797,-110.75984954834,21.7125225067139,-156.746368408203,-108.563629150391,19.6870231628418,-175.69921875,-103.712158203125,-66.6430358886719,-60.6358451843262,-71.3671951293945,-49.771484375,-52.007396697998,-71.9752426147461,-36.6637992858887,-54.5886497497559,-78.3282699584961,-34.5766944885254,-64.0895767211914,-98.4512405395508,-32.3529739379883,-59.6340446472168,-95.2961349487305,-36.9632263183594,-68.3831024169922,-99.7455673217773,-30.6570091247559,-68.2959899902344,-106.750457763672,-19.6392307281494,-86.7415008544922,-118.09056854248,-28.8862361907959,-73.1263656616211,-111.004875183105,-23.7235298156738,-75.155158996582,-114.092170715332,19.458402633667,-233.196853637695,-78.3089752197266,9.97897338867188,-242.242736816406,-76.9608306884766,28.6437015533447,-223.456893920898,-78.0768508911133,-2.27778792381287,-245.037017822266,-75.1052551269531,3.34714293479919,-242.369735717773,-77.9027328491211,-154.668670654297,-211.190689086914,4.21342706680298, +-144.198638916016,-155.838272094727,-4.67129421234131,-143.800598144531,-142.689971923828,-21.5853118896484,-168.514022827148,-230.746612548828,-2.11312294006348,-163.285507202148,-222.738815307617,-3.12319207191467,-162.88346862793,-219.094467163086,1.30525195598602,-140.573272705078,-131.643890380859,-38.6925888061523,-139.881210327148,-126.65941619873,-44.1803245544434,-134.553695678711,-112.36100769043,-53.5163421630859,-134.70671081543,-120.523811340332,-48.8852882385254,-131.441390991211,-93.3375473022461,-61.3498077392578,-132.361465454102,-88.5098724365234,-62.2610969543457,-127.754028320313,-77.345573425293,-63.7276420593262,-117.341003417969,-80.3827743530273,-64.2624893188477,-109.215209960938,-70.9882583618164,-64.5918273925781,-83.2963714599609,-56.0609931945801,-68.2928848266602,-78.9536437988281,-55.6906585693359,-69.0878601074219,-90.0898361206055,-55.9957847595215,-66.0363693237305,-107.043998718262,-56.0027885437012,-64.6040267944336,-94.7138824462891,-55.6409530639648,-65.0428695678711,-9.00365734100342,-103.061103820801,-120.342788696289,-6.57078886032104,-93.9679107666016,-120.454795837402,-14.4355192184448,-89.7010879516602,-119.954750061035,10.0412788391113,-139.269638061523,-115.309295654297,7.64814376831055,-119.833740234375,-119.37769317627,14.4043064117432,-126.739418029785,-117.345497131348,22.3150825500488,-214.037979125977,-80.4548797607422,26.236665725708,-209.155487060547,-85.713996887207,30.5701904296875,-194.991104125977,-94.2193298339844,29.4024753570557,-202.985900878906,-91.2775344848633,21.7349243164063,-179.993637084961,-103.063095092773,21.12766456604,-138.675598144531,-111.172889709473,26.5369968414307,-147.399444580078,-109.608741760254,26.316873550415,-152.746963500977,-109.279708862305,24.5097961425781,-161.993865966797,-105.790367126465,21.9848499298096,-165.791244506836,-104.961280822754,28.2459621429443,-170.530715942383,-103.033088684082,-58.4068260192871,-53.6976623535156,-71.5285110473633,-38.8396110534668,-51.5886535644531,-74.6489105224609,-46.5559692382813,-48.1804237365723,-71.5455093383789, +-33.3115692138672,-54.4851417541504,-82.8969192504883,-30.9611396789551,-55.3791275024414,-89.7186889648438,-30.4531898498535,-63.8818588256836,-103.068099975586,-18.425910949707,-79.4668884277344,-116.951454162598,-19.2551918029785,-73.7546234130859,-114.995262145996,20.5422077178955,-238.604370117188,-76.5268936157227,15.269190788269,-242.126724243164,-75.8262252807617,29.0432395935059,-228.441390991211,-78.0700454711914,20.3514881134033,-219.280487060547,-78.9609298706055,-157.819976806641,-210.612640380859,8.16074275970459,-145.264739990234,-152.704971313477,-8.94508266448975,-168.740036010742,-236.446166992188,-7.37903881072998,-163.354522705078,-214.65803527832,7.13137292861938,-143.502563476563,-131.862930297852,-37.062328338623,-140.321258544922,-121.966957092285,-47.0137062072754,-140.163238525391,-113.490119934082,-51.4199371337891,-134.485687255859,-100.846878051758,-57.5540351867676,-136.791915893555,-94.079216003418,-58.8735656738281,-130.383285522461,-83.7673110961914,-63.3055992126465,-71.7663421630859,-54.6513557434082,-69.7940292358398,-109.255210876465,-65.3254013061523,-65.0144653320313,-112.904571533203,-60.7639541625977,-65.7938461303711,-4.70007610321045,-110.313812255859,-120.238777160645,1.2386759519577,-114.303199768066,-120.286781311035,-6.21402406692505,-88.5662841796875,-120.591812133789,12.8061485290527,-134.401168823242,-115.66633605957,8.52029037475586,-115.685340881348,-119.507705688477,14.5000152587891,-119.031661987305,-117.95955657959,16.3161926269531,-138.509582519531,-112.729042053223,25.9379367828369,-214.706039428711,-80.0281372070313,29.9841346740723,-208.258407592773,-87.2239379882813,27.1055507659912,-184.757110595703,-100.551849365234,34.9931259155273,-189.878601074219,-96.1720199584961,38.1626319885254,-192.438858032227,-94.7204818725586,33.4138679504395,-204.440032958984,-90.2523422241211,26.6206035614014,-180.099655151367,-102.264015197754,25.905834197998,-143.076019287109,-109.550727844238,26.8602275848389,-158.732543945313,-107.168502807617,-40.082935333252,-47.9608993530273,-72.9235458374023, +-33.8617248535156,-51.7161674499512,-77.7094116210938,-27.882137298584,-59.556037902832,-101.110908508301,-26.8139343261719,-56.2785148620605,-97.2626266479492,-25.8631401062012,-62.6605415344238,-105.850372314453,-24.6594219207764,-66.5978240966797,-109.49072265625,-15.7509479522705,-84.033935546875,-118.56761932373,-24.4073963165283,-70.3517990112305,-111.790954589844,27.860523223877,-233.327850341797,-77.2923736572266,32.784008026123,-224.076950073242,-77.9973373413086,26.3535766601563,-219.4375,-78.0899505615234,-148.211029052734,-146.975402832031,-14.5763244628906,-172.277389526367,-237.25325012207,-0.726140975952148,-166.997863769531,-224.346984863281,1.23623502254486,-167.80094909668,-218.574417114258,6.91653108596802,-145.107711791992,-126.596405029297,-41.8071937561035,-142.920501708984,-107.660552978516,-53.255615234375,-143.581588745117,-100.010803222656,-55.626049041748,-134.79670715332,-82.8857269287109,-61.7713508605957,-124.122665405273,-74.9656448364258,-64.3556060791016,-131.693405151367,-76.2598724365234,-62.9265594482422,-117.712043762207,-74.6726150512695,-64.9026565551758,-80.6074981689453,-49.2220268249512,-67.8967514038086,-85.5079803466797,-50.3037300109863,-67.092170715332,-72.9296569824219,-51.2178192138672,-68.8457412719727,-89.9826278686523,-47.4522514343262,-65.8376541137695,-113.814659118652,-71.6344223022461,-65.0559768676758,-113.71565246582,-56.1422996520996,-65.5204162597656,-100.442344665527,-51.6184577941895,-65.1979827880859,-0.412900000810623,-101.618957519531,-119.252685546875,0.0903559997677803,-105.919372558594,-119.336692810059,-3.18342709541321,-92.5246658325195,-120.654823303223,-7.41542196273804,-83.0439376831055,-119.774726867676,19.132869720459,-125.868339538574,-115.778343200684,19.4585018157959,-118.902648925781,-116.898452758789,29.4477806091309,-213.197891235352,-81.5178833007813,34.4686737060547,-184.993133544922,-98.7004699707031,38.0461235046387,-199.148513793945,-92.6160736083984,20.7189235687256,-133.539093017578,-112.261001586914,34.7015953063965,-143.786087036133,-108.392616271973, +31.8955211639404,-152.167907714844,-109.163696289063,31.3796691894531,-156.677352905273,-108.275611877441,27.6908092498779,-166.427307128906,-104.053199768066,-56.8003692626953,-42.3919525146484,-69.1351699829102,-34.5107841491699,-48.2744293212891,-74.5586090087891,-39.1156387329102,-41.789192199707,-71.4377975463867,-29.2816734313965,-50.4441452026367,-79.4596862792969,-27.511302947998,-52.5696487426758,-88.6281814575195,-10.6968536376953,-71.4139938354492,-115.607322692871,-9.87966442108154,-76.8566284179688,-117.622528076172,-17.9066600799561,-67.8461456298828,-112.675033569336,25.235767364502,-237.63427734375,-76.379280090332,33.063232421875,-219.529510498047,-77.7033081054688,35.3034553527832,-228.324371337891,-77.564094543457,29.5016841888428,-217.947357177734,-77.9284362792969,-153.513549804688,-151.863876342773,-6.50184392929077,-147.311950683594,-141.688888549805,-21.2089748382568,-172.765441894531,-232.461776733398,3.00269794464111,-165.283706665039,-214.346008300781,10.2770109176636,-169.735137939453,-223.959945678711,4.27018213272095,-148.009002685547,-126.447387695313,-40.2041358947754,-147.481964111328,-117.216491699219,-48.0720062255859,-149.344146728516,-112.486022949219,-50.442138671875,-151.39533996582,-107.563545227051,-51.9148864746094,-141.188339233398,-94.8348922729492,-57.2317047119141,-140.314254760742,-89.1396331787109,-58.4333229064941,-140.767303466797,-84.6470947265625,-58.6034355163574,-128.772109985352,-66.3979110717773,-64.6650390625,-131.71240234375,-67.5108184814453,-63.4326095581055,-69.0596694946289,-41.7483901977539,-66.8840484619141,-95.1069259643555,-47.6872711181641,-65.5505218505859,-114.20369720459,-65.3608016967773,-66.0189666748047,-118.454109191895,-61.3179092407227,-66.3515930175781,-112.49153137207,-51.6724624633789,-65.3311004638672,-108.438133239746,-51.990894317627,-65.1133728027344,0.266261011362076,-98.5715560913086,-119.778732299805,13.1488828659058,-106.585441589355,-118.199577331543,0.15327300131321,-88.3938598632813,-121.546905517578,16.547815322876,-110.007781982422,-117.861549377441, +24.7191162109375,-109.52473449707,-116.667434692383,32.6588935852051,-214.389007568359,-80.2056579589844,34.3234596252441,-180.19465637207,-100.266822814941,41.7953910827637,-185.256164550781,-96.8882904052734,46.6474647521973,-193.890991210938,-93.9649047851563,36.7911987304688,-209.218505859375,-85.2503509521484,39.720287322998,-203.939987182617,-89.9298095703125,33.5464820861816,-175.649215698242,-101.129905700684,26.5245952606201,-138.405563354492,-109.843757629395,36.3576583862305,-147.758483886719,-108.557632446289,32.8725128173828,-161.159790039063,-106.520431518555,32.4385719299316,-166.796340942383,-103.752166748047,-48.3057403564453,-38.0263252258301,-68.7495346069336,-61.5073318481445,-41.6348762512207,-68.3193893432617,-30.6886138916016,-43.2922401428223,-73.4785995483398,-44.4769668579102,-37.4961738586426,-69.1550674438477,-30.6697101593018,-47.8337898254395,-75.5635070800781,-22.5224113464355,-55.3791275024414,-100.04280090332,-24.5542125701904,-50.9135894775391,-88.5273742675781,-19.9092559814453,-57.5997467041016,-104.977279663086,-21.7714405059814,-61.5510292053223,-107.508529663086,34.9911231994629,-238.112335205078,-75.1986694335938,39.1668319702148,-218.740432739258,-76.9925384521484,37.4263648986816,-233.092849731445,-76.4750900268555,-153.357528686523,-147.76448059082,-11.0924825668335,-152.266418457031,-142.042922973633,-17.8171405792236,-147.989013671875,-132.017944335938,-34.1232414245605,-176.312789916992,-237.744293212891,5.26389980316162,-169.492111206055,-218.168380737305,11.1739988327026,-170.932250976563,-222.751831054688,7.21327018737793,-152.674468994141,-117.161483764648,-46.435848236084,-149.098114013672,-101.852981567383,-53.790168762207,-150.263244628906,-92.6935882568359,-55.9561767578125,-140.764297485352,-79.0814514160156,-58.6336402893066,-135.035736083984,-73.5645065307617,-61.6142349243164,-125.244781494141,-66.43310546875,-65.7543411254883,-120.318290710449,-69.6713256835938,-65.9906692504883,-83.6853103637695,-46.1796226501465,-66.6983337402344,-74.6532211303711,-40.272647857666,-65.8842544555664, +-94.0593185424805,-42.9212074279785,-65.4282073974609,-120.845344543457,-49.689769744873,-65.0610733032227,-117.685043334961,-48.9944038391113,-65.2063903808594,-105.877883911133,-46.1421203613281,-66.0625762939453,5.04951906204224,-102.36302947998,-119.205673217773,2.35190510749817,-92.3439483642578,-121.410888671875,-0.795804977416992,-80.843620300293,-120.524803161621,23.1069583892822,-126.862426757813,-113.824150085449,24.3444805145264,-121.177871704102,-115.392303466797,25.2612705230713,-113.956169128418,-116.36840057373,41.2340354919434,-179.837631225586,-98.936393737793,42.661376953125,-190.230651855469,-95.1740188598633,44.5815620422363,-198.862487792969,-92.2132263183594,32.3515663146973,-171.656814575195,-102.000991821289,28.0376415252686,-126.547401428223,-112.629035949707,34.1065368652344,-138.839614868164,-108.865661621094,44.9992027282715,-143.369049072266,-106.19140625,43.5832672119141,-152.692962646484,-107.294509887695,36.8869094848633,-157.579437255859,-107.544532775879,-52.3384323120117,-30.3703746795654,-67.1645812988281,-59.2609100341797,-32.4906845092773,-66.9637603759766,-32.2118606567383,-35.8907165527344,-71.7157211303711,-36.4863815307617,-35.130241394043,-70.8427352905273,-25.2738838195801,-48.9773979187012,-80.8383178710938,-26.7516250610352,-47.0329093933105,-76.5166931152344,-22.1401767730713,-52.8118782043457,-95.6157684326172,-17.2829990386963,-63.7721481323242,-110.749847412109,-3.53615188598633,-72.7560272216797,-117.917556762695,-3.69570803642273,-66.6714324951172,-115.232284545898,36.6588897705078,-214.274993896484,-79.9304351806641,45.8108863830566,-228.153350830078,-76.4172897338867,-158.342010498047,-150.290725708008,-5.65958118438721,-151.698379516602,-137.500473022461,-23.8029289245605,-175.725723266602,-232.394760131836,6.60144090652466,-174.056564331055,-230.16455078125,6.30142116546631,-151.977386474609,-126.321380615234,-37.9260101318359,-156.227813720703,-107.381523132324,-50.536548614502,-144.644668579102,-89.4021606445313,-57.1533966064453,-144.333648681641,-84.1076431274414,-57.3267135620117, +-132.402481079102,-63.0602798461914,-63.1197814941406,-128.446090698242,-59.4525260925293,-64.8929595947266,-84.7769165039063,-38.6235847473145,-64.6422271728516,-74.0531616210938,-33.0927429199219,-64.534423828125,-88.9887237548828,-37.8860130310059,-64.3912048339844,-120.281295776367,-64.9959716796875,-66.4858093261719,-122.252487182617,-58.8925704956055,-66.0929718017578,-112.640548706055,-43.2457389831543,-66.3804016113281,6.38159990310669,-96.9706954956055,-120.413795471191,19.6744232177734,-101.604957580566,-117.024459838867,3.52757000923157,-87.7953033447266,-121.418899536133,30.1834526062012,-107.096496582031,-116.082374572754,45.3870429992676,-184.702102661133,-96.0645141601563,50.4273338317871,-199.261535644531,-91.6366729736328,47.2104225158691,-189.693588256836,-94.6569747924805,42.0962181091309,-214.300003051758,-78.7627182006836,46.817985534668,-204.195007324219,-88.1244354248047,36.3440551757813,-170.872741699219,-101.89998626709,30.4401779174805,-128.397583007813,-111.629936218262,38.380054473877,-138.954605102539,-107.663551330566,34.7846031188965,-134.243148803711,-110.018775939941,42.9240036010742,-138.792602539063,-106.410423278809,48.4448394775391,-146.686370849609,-105.851371765137,36.3996620178223,-161.286804199219,-106.345420837402,-48.7364807128906,-30.3148708343506,-67.5198135375977,-43.7686920166016,-32.6646003723145,-68.589714050293,-26.9108428955078,-37.6649932861328,-72.921142578125,-16.5700283050537,-53.7902717590332,-101.924980163574,-21.5042133331299,-47.7506790161133,-82.2301559448242,-18.7835464477539,-50.0538063049316,-92.3778533935547,-17.4964199066162,-60.0969886779785,-108.254600524902,-5.32683706283569,-61.939769744873,-112.420013427734,46.164119720459,-233.008819580078,-75.9040374755859,45.6722679138184,-224.177978515625,-76.3113708496094,-157.247909545898,-143.448059082031,-12.7642469406128,-157.73095703125,-138.061538696289,-18.3125915527344,-157.73796081543,-132.094940185547,-26.3305778503418,-177.241882324219,-234.304962158203,8.82075786590576,-171.824340820313,-222.300796508789,10.7763595581055, +-161.185302734375,-117.29549407959,-41.5693702697754,-155.239715576172,-112.771049499512,-48.4902496337891,-160.38623046875,-90.3860549926758,-53.239013671875,-152.338439941406,-88.6964874267578,-56.1529006958008,-144.363662719727,-73.2603759765625,-56.79736328125,-137.906021118164,-68.6974258422852,-59.8043556213379,-125.056755065918,-59.8918724060059,-65.8716506958008,-77.9413452148438,-37.2563514709473,-64.755241394043,-104.429733276367,-42.413158416748,-66.2134780883789,-101.345436096191,-38.2457466125488,-65.7942428588867,-121.830444335938,-42.7153854370117,-64.4787139892578,-125.958847045898,-48.6605682373047,-64.3854064941406,-116.066879272461,-42.0411186218262,-65.9545593261719,9.01987838745117,-92.8308944702148,-120.986854553223,12.0614767074585,-101.66096496582,-118.469604492188,0.125048995018005,-74.7810287475586,-119.028663635254,4.50277614593506,-79.1486587524414,-119.989753723145,23.1936683654785,-100.849876403809,-116.629425048828,26.7486152648926,-119.481712341309,-115.158279418945,29.9275283813477,-97.3694458007813,-116.89444732666,29.6238975524902,-113.703140258789,-115.230285644531,47.3078308105469,-170.669723510742,-99.9957962036133,54.5910415649414,-194.375045776367,-93.3249435424805,54.4769325256348,-190.206634521484,-93.5909652709961,33.6964988708496,-120.910850524902,-111.894958496094,50.4147338867188,-139.20964050293,-105.22631072998,48.2693252563477,-151.935897827148,-105.883369445801,44.2552337646484,-156.546340942383,-106.141395568848,-46.6717796325684,-23.6203155517578,-67.0476684570313,-52.2950286865234,-24.5613079071045,-65.9961624145508,-25.4046936035156,-42.5083656311035,-74.3047714233398,-34.5589942932129,-27.8412265777588,-70.6221160888672,-26.6802196502686,-32.2296600341797,-72.0004501342773,-22.5630149841309,-45.9580001831055,-77.0715484619141,-12.098991394043,-50.0820045471191,-97.7378692626953,-12.0054807662964,-55.5530433654785,-106.021385192871,-18.9137592315674,-48.3952407836914,-87.8701095581055,0.424347996711731,-66.1358795166016,-115.274291992188,-0.429163992404938,-70.5380096435547,-117.407501220703, +44.2259292602539,-237.921310424805,-74.6318130493164,42.3996505737305,-219.211486816406,-76.5288925170898,53.2019081115723,-228.579406738281,-75.3746795654297,-164.186599731445,-144.117126464844,-6.54557800292969,-174.881652832031,-229.176467895508,10.2343072891235,-178.585998535156,-237.199234008789,10.1927032470703,-158.673065185547,-127.387481689453,-31.7791118621826,-162.048385620117,-122.392990112305,-35.3415603637695,-161.941360473633,-108.138595581055,-47.6288604736328,-172.131378173828,-90.5986785888672,-48.5703582763672,-147.492965698242,-86.5694808959961,-56.858570098877,-141.650390625,-66.770149230957,-57.2698059082031,-147.832000732422,-72.4002990722656,-56.2822113037109,-132.648498535156,-55.0836982727051,-62.238697052002,-79.4617919921875,-29.8579254150391,-63.6325302124023,-76.6113128662109,-29.4574851989746,-63.6311302185059,-63.779655456543,-28.3229751586914,-64.9352569580078,-98.1215209960938,-32.285961151123,-64.7379455566406,-115.03377532959,-37.4194641113281,-65.7572402954102,17.4917087554932,-95.8383941650391,-118.020561218262,14.8011445999146,-85.1067352294922,-119.852737426758,11.2232942581177,-79.3430709838867,-119.707733154297,21.0769596099854,-95.4533538818359,-117.091468811035,34.2864570617676,-101.7099609375,-116.186378479004,32.1508445739746,-113.240089416504,-114.569229125977,51.0810012817383,-174.378082275391,-97.5964584350586,50.5755500793457,-185.370162963867,-94.1881256103516,56.9527740478516,-199.267532348633,-90.791389465332,53.4453315734863,-204.166000366211,-86.8437042236328,47.270824432373,-208.956481933594,-82.5976943969727,39.5994758605957,-167.851455688477,-102.586051940918,40.8879013061523,-120.259788513184,-110.419815063477,37.120433807373,-129.968734741211,-110.536827087402,44.6880722045898,-133.970123291016,-106.735458374023,51.0176963806152,-134.27815246582,-105.046287536621,51.7523651123047,-147.529449462891,-105.457336425781,44.2632331848145,-161.636840820313,-104.142204284668,-56.5178451538086,-26.4596939086914,-65.7948455810547,-27.2523746490479,-27.5742034912109,-71.4434967041016, +-19.1378803253174,-37.5938835144043,-72.9221420288086,-8.45570373535156,-52.3686294555664,-103.319122314453,-17.6541347503662,-45.2426338195801,-78.4419784545898,-12.4452247619629,-46.6286697387695,-88.5048675537109,-5.78134202957153,-58.2423057556152,-109.921768188477,0.000715999980457127,-61.7238502502441,-112.758041381836,55.3857231140137,-238.231338500977,-73.3696823120117,45.5170555114746,-214.390014648438,-77.7900161743164,46.7192726135254,-219.447494506836,-75.7100143432617,55.3951225280762,-223.814926147461,-74.5675048828125,59.6066360473633,-233.176849365234,-74.4167861938477,-164.178588867188,-137.551467895508,-12.9994697570801,-163.190490722656,-132.727005004883,-20.3786926269531,-165.406723022461,-124.269180297852,-30.3490695953369,-164.677642822266,-112.75505065918,-43.4376525878906,-169.045074462891,-118.144577026367,-34.7206001281738,-165.876770019531,-102.863075256348,-47.6333656311035,-164.577621459961,-85.3253631591797,-52.297420501709,-154.898681640625,-84.0497283935547,-55.9285774230957,-144.480651855469,-58.8757667541504,-56.1486968994141,-137.550979614258,-56.3308181762695,-58.3886184692383,-131.335372924805,-48.7351760864258,-62.7052421569824,-128.259063720703,-48.9110908508301,-63.9613647460938,-91.7477951049805,-28.7671184539795,-64.1377792358398,-72.8266372680664,-28.0774517059326,-63.3008003234863,-108.456130981445,-35.0220336914063,-65.7870407104492,-124.492706298828,-39.8184013366699,-63.1471824645996,-118.628135681152,-35.5812873840332,-64.6916351318359,13.7562417984009,-92.1526336669922,-119.956756591797,7.41598081588745,-69.9674606323242,-117.100471496582,12.0652770996094,-75.1320648193359,-118.765632629395,26.2886714935303,-93.412353515625,-116.914459228516,35.6227836608887,-106.608444213867,-115.441307067871,32.6670951843262,-92.03662109375,-116.463409423828,51.892578125,-170.540710449219,-98.988395690918,51.7307662963867,-180.392669677734,-94.9235000610352,58.8799667358398,-194.527053833008,-92.3569412231445,56.0190849304199,-185.438171386719,-93.1237182617188,49.6261596679688,-164.422119140625,-101.674957275391, +37.0024185180664,-116.584419250488,-112.113983154297,41.3470458984375,-128.762619018555,-109.479721069336,55.9931793212891,-139.049621582031,-104.532241821289,56.4433250427246,-143.29704284668,-105.31632232666,52.2567138671875,-153.43603515625,-104.683258056641,51.6182518005371,-157.244415283203,-103.859176635742,-49.9968032836914,-19.0391654968262,-64.7844467163086,-19.5017166137695,-42.7798919677734,-74.6469116210938,-34.4437828063965,-22.8526401519775,-70.0377655029297,-17.8568534851074,-26.9669437408447,-71.7561340332031,-15.0439786911011,-37.6102867126465,-72.9937515258789,-6.24961805343628,-49.662769317627,-99.550651550293,-5.418625831604,-55.0669975280762,-107.048484802246,1.3607280254364,-44.9527053833008,-92.7757873535156,9.23392868041992,-62.0917854309082,-113.344100952148,54.8559684753418,-219.242477416992,-74.2513732910156,59.341007232666,-228.507385253906,-74.5009994506836,-166.215286254883,-144.029602050781,-4.35716819763184,-165.831756591797,-139.642684936523,-9.36854362487793,-167.165878295898,-108.598640441895,-44.4812545776367,-171.449310302734,-98.5156478881836,-46.0232048034668,-178.464996337891,-85.6765899658203,-46.4486465454102,-153.597564697266,-77.4049835205078,-56.1700019836426,-141.236343383789,-56.9936828613281,-56.7039527893066,-150.992294311523,-66.5928268432617,-55.8812713623047,-134.410675048828,-44.9304008483887,-60.3241081237793,-137.79899597168,-48.0220031738281,-58.0766868591309,-89.3289566040039,-22.8781414031982,-63.3828048706055,-78.3825912475586,-25.3418827056885,-62.8248519897461,-62.954273223877,-19.2508869171143,-61.3558082580566,-57.0398941040039,-18.9597568511963,-62.5407257080078,-100.49235534668,-28.8033237457275,-64.2616882324219,-114.518730163574,-33.0423393249512,-65.0182647705078,24.4383907318115,-84.7320022583008,-117.382499694824,18.412899017334,-79.7543106079102,-118.679626464844,20.8451366424561,-83.6493911743164,-118.378593444824,28.911527633667,-84.2296524047852,-116.834449768066,39.5343704223633,-102.394035339355,-114.950256347656,39.3998565673828,-93.2284317016602,-115.183280944824, +37.7394905090332,-110.169792175293,-114.08317565918,55.4742317199707,-171.818832397461,-98.0258026123047,55.2329063415527,-180.558700561523,-93.8230895996094,60.8964614868164,-204.588043212891,-85.3662567138672,62.30419921875,-194.587066650391,-91.3534469604492,52.4958381652832,-209.632537841797,-80.4484786987305,50.2104148864746,-214.510025024414,-76.2681732177734,44.098316192627,-111.891960144043,-111.53092956543,45.5825614929199,-123.64811706543,-109.208702087402,49.8623809814453,-129.647705078125,-106.276412963867,61.1563873291016,-134.916213989258,-102.331024169922,57.6508445739746,-147.429443359375,-105.160301208496,-43.4149589538574,-18.2503871917725,-66.6920318603516,-21.8722496032715,-22.999454498291,-71.0028533935547,-14.9095659255981,-42.2096366882324,-75.1147613525391,-36.1203460693359,-19.1887798309326,-68.787841796875,0.716817021369934,-48.9050903320313,-100.101806640625,-2.21269202232361,-47.0018043518066,-95.6539764404297,1.27001905441284,-51.5572547912598,-103.590141296387,-5.31104612350464,-42.5033645629883,-80.7223052978516,-0.508749008178711,-42.9837112426758,-86.3447570800781,2.62068200111389,-57.9869842529297,-110.169792175293,59.2682991027832,-237.208236694336,-73.481201171875,64.0155715942383,-223.913940429688,-72.9274444580078,59.6715431213379,-219.104461669922,-73.5052947998047,69.3555908203125,-228.83642578125,-72.5608062744141,-166.902359008789,-141.867401123047,-5.9558048248291,-168.243988037109,-143.942092895508,-2.16875910758972,-170.42919921875,-135.202239990234,-9.99927711486816,-168.636016845703,-132.248947143555,-15.2409896850586,-170.908248901367,-122.486000061035,-27.5801982879639,-175.312683105469,-113.417114257813,-34.4003677368164,-176.493804931641,-90.5398712158203,-46.4882507324219,-171.237289428711,-80.9347381591797,-49.7300682067871,-164.23258972168,-80.7162094116211,-52.4543342590332,-157.50993347168,-78.7017135620117,-55.1798057556152,-144.365661621094,-49.737476348877,-55.3341217041016,-150.480255126953,-53.9071846008301,-55.3569221496582,-141.453369140625,-48.1757202148438,-55.9316787719727, +-131.53239440918,-42.9106025695801,-61.326904296875,-83.5211944580078,-23.6664199829102,-63.2184906005859,-72.2302856445313,-21.7265281677246,-61.1851921081543,-67.1036834716797,-17.6212253570557,-60.3876113891602,-107.47403717041,-28.4489860534668,-64.2589874267578,-121.764434814453,-30.2633666992188,-61.7177429199219,-114.031684875488,-28.7382144927979,-63.7246398925781,11.9382648468018,-69.5337142944336,-116.681434631348,15.8547477722168,-71.492301940918,-116.418403625488,39.8776016235352,-97.4516525268555,-114.829246520996,39.4680633544922,-106.408432006836,-114.540222167969,37.377857208252,-84.0722427368164,-116.277389526367,40.6894798278809,-88.5014724731445,-115.544319152832,58.0215797424316,-165.084167480469,-100.28182220459,61.5554275512695,-199.348526000977,-89.686882019043,67.9952545166016,-187.89241027832,-90.2791442871094,63.469612121582,-184.777114868164,-91.8383026123047,58.0330810546875,-180.150650024414,-93.9765014648438,47.6113586425781,-112.374008178711,-110.763854980469,49.1635131835938,-125.295272827148,-108.006576538086,60.9665679931641,-130.097747802734,-103.514137268066,61.2362937927246,-139.263641357422,-102.804069519043,60.6472396850586,-143.667083740234,-104.202201843262,59.006477355957,-152.660949707031,-103.838172912598,-41.555477142334,-14.5051221847534,-65.63232421875,-50.7096748352051,-14.8248519897461,-62.4391136169434,-29.939338684082,-18.0650691986084,-69.1710739135742,-13.3329105377197,-23.6946239471436,-70.5453109741211,-12.1729984283447,-33.1965522766113,-72.4413909912109,-11.1575994491577,-37.6013832092285,-73.3475799560547,1.88302898406982,-54.7256622314453,-107.061485290527,12.9885683059692,-39.9780158996582,-86.3085556030273,3.82644009590149,-46.2053298950195,-96.6939697265625,9.11881828308105,-57.4383316040039,-110.281799316406,62.6021270751953,-238.144332885742,-72.4901962280273,57.5466346740723,-215.049072265625,-75.0885543823242,70.5949172973633,-233.468872070313,-72.4955978393555,-169.618133544922,-139.617691040039,-5.36603212356567,-173.540512084961,-118.00456237793,-31.096342086792, +-175.78971862793,-103.634155273438,-40.695484161377,-175.784729003906,-108.563636779785,-37.8456039428711,-179.235076904297,-90.5575714111328,-44.9728012084961,-178.600997924805,-78.5195007324219,-46.5816612243652,-154.112609863281,-66.054573059082,-55.1757011413574,-138.132049560547,-43.0741195678711,-57.0550880432129,-130.473281860352,-38.5396766662598,-60.1265907287598,-100.912391662598,-24.4369945526123,-63.0995788574219,-85.1544494628906,-17.1744823455811,-61.900260925293,-78.5034942626953,-18.9528560638428,-61.3183059692383,-58.2386131286621,-13.2907018661499,-60.6252365112305,-124.971748352051,-30.9319305419922,-60.0148773193359,-118.818145751953,-27.4567909240723,-61.8914604187012,24.9636402130127,-79.6123046875,-116.957458496094,19.7626304626465,-75.688117980957,-117.092468261719,44.934398651123,-96.0979156494141,-113.083076477051,45.0959167480469,-106.642456054688,-112.067977905273,30.4113731384277,-79.3318710327148,-115.962356567383,51.4904403686523,-88.6864929199219,-112.477020263672,58.5634307861328,-171.04475402832,-98.3859405517578,61.0847816467285,-209.820556640625,-79.4315795898438,65.9418563842773,-199.473541259766,-88.1225357055664,71.1634674072266,-194.29704284668,-88.0734252929688,61.7245445251465,-180.69970703125,-93.302734375,48.1101112365723,-104.93628692627,-111.082885742188,48.9752922058105,-121.313888549805,-109.209701538086,56.8602676391602,-121.583915710449,-107.894569396973,64.7814407348633,-134.134140014648,-101.755966186523,65.9971618652344,-139.454666137695,-101.419937133789,62.2671966552734,-148.372543334961,-103.629150390625,-54.8777847290039,-13.4592189788818,-60.8775634765625,-20.8609504699707,-18.197883605957,-69.4261016845703,-9.10049724578857,-26.9916458129883,-71.3003845214844,-5.68674278259277,-40.5798797607422,-76.349983215332,-33.7032089233398,-14.0693788528442,-66.9546585083008,9.17160415649414,-48.0304069519043,-100.871887207031,10.4540185928345,-53.884578704834,-107.449523925781,2.67814707756042,-39.488468170166,-77.9726333618164,11.3005018234253,-43.0282135009766,-93.2202301025391, +13.1602840423584,-61.7732543945313,-112.67603302002,66.0443649291992,-219.615509033203,-72.7749328613281,70.6802215576172,-224.193969726563,-71.9395446777344,61.1263847351074,-214.15397644043,-75.4433898925781,78.4945831298828,-227.175262451172,-70.7773284912109,-177.269882202148,-134.066131591797,-2.69035005569458,-172.823440551758,-143.263031005859,3.1818950176239,-173.593505859375,-130.117752075195,-14.3562030792236,-173.931564331055,-134.664199829102,-6.42651605606079,-175.591705322266,-124.179168701172,-20.9632511138916,-181.822326660156,-114.34920501709,-26.5597972869873,-178.561996459961,-107.41552734375,-36.1275367736816,-182.83642578125,-85.4369659423828,-44.1087188720703,-182.953430175781,-79.3629760742188,-44.569263458252,-175.087661743164,-74.0612564086914,-47.7846755981445,-166.137771606445,-76.0708541870117,-51.1496086120605,-158.433029174805,-71.8893432617188,-54.149600982666,-141.582382202148,-42.6510810852051,-54.8433723449707,-150.209228515625,-48.4273452758789,-54.1584014892578,-153.951583862305,-53.1907119750977,-54.2128105163574,-134.977722167969,-38.3432579040527,-57.7529563903809,-92.9821166992188,-17.9997634887695,-61.5723304748535,-88.8315124511719,-17.5129165649414,-61.9319648742676,-71.7383346557617,-17.5442180633545,-60.3353080749512,-69.4747085571289,-10.1833982467651,-59.3387107849121,-108.619148254395,-24.0949611663818,-62.4551162719727,-123.640617370605,-22.0129566192627,-57.0932922363281,-114.634735107422,-24.0969619750977,-61.4288177490234,17.4311027526855,-65.865852355957,-113.541122436523,22.7682266235352,-73.3886947631836,-115.059272766113,42.475154876709,-79.5135879516602,-114.48120880127,45.2214279174805,-83.9051208496094,-114.658233642578,61.6114349365234,-170.163681030273,-98.2525253295898,66.6202239990234,-204.717071533203,-83.6520919799805,67.422004699707,-180.078643798828,-92.107421875,70.9477462768555,-185.925216674805,-90.3170471191406,53.6478500366211,-105.764358520508,-110.027778625488,62.1342811584473,-125.295272827148,-105.280311584473,69.9911499023438,-130.082748413086,-102.545043945313, +66.1161727905273,-143.732086181641,-102.078994750977,68.2620849609375,-148.502563476563,-101.021896362305,61.4040107727051,-159.222610473633,-101.008888244629,-46.3211441040039,-10.2314033508301,-60.7109451293945,-50.2047271728516,-11.6290397644043,-60.643238067627,-26.3141841888428,-14.1410856246948,-67.6990356445313,-16.9250621795654,-13.6066331863403,-67.1768798828125,-10.950478553772,-18.9811592102051,-68.6859283447266,-5.62704706192017,-29.9120311737061,-71.8359832763672,-6.18205118179321,-36.9602203369141,-73.5346984863281,-0.431959003210068,-40.020622253418,-77.4200820922852,7.43056297302246,-38.8338088989258,-78.4662857055664,17.4670066833496,-39.9374122619629,-87.577278137207,12.1443853378296,-45.2030296325684,-97.4931488037109,16.0351657867432,-57.7680625915527,-110.345809936523,68.3037872314453,-237.311248779297,-71.9126434326172,64.7236328125,-214.841064453125,-74.5981063842773,74.6377105712891,-233.539886474609,-71.5009994506836,-178.403991699219,-129.769714355469,-10.7526502609253,-179.262069702148,-119.206680297852,-24.1348609924316,-179.448089599609,-96.3921432495117,-41.741886138916,-184.059555053711,-89.4511642456055,-41.5899696350098,-182.083343505859,-68.7468338012695,-44.4469528198242,-157.250915527344,-59.6524429321289,-53.1151008605957,-145.180740356445,-43.1380271911621,-53.4768371582031,-138.48307800293,-38.070930480957,-55.8289680480957,-129.377182006836,-30.9142284393311,-57.4346237182617,-97.4045486450195,-19.2937908172607,-61.4142150878906,-77.3635864257813,-14.9560661315918,-60.5621337890625,-83.8298187255859,-8.65711784362793,-58.841064453125,-61.7784576416016,-5.06843709945679,-58.7949562072754,-101.092407226563,-16.0459728240967,-59.2020988464355,-117.725044250488,-19.3995990753174,-58.1703948974609,25.2156658172607,-71.0119552612305,-113.705131530762,50.6168556213379,-98.5517578125,-110.956871032715,30.3822727203369,-71.4066925048828,-113.164085388184,52.4857368469238,-84.2323532104492,-112.088981628418,67.0220642089844,-209.409530639648,-78.6967086791992,74.0947570800781,-199.326538085938,-84.5315780639648, +74.1650619506836,-189.738586425781,-89.0870208740234,64.7255325317383,-175.983245849609,-94.4225540161133,54.019889831543,-116.096374511719,-109.613739013672,53.333122253418,-111.233901977539,-110.15079498291,54.3780250549316,-98.6540679931641,-109.705749511719,63.353401184082,-120.569816589355,-106.660446166992,71.6409149169922,-125.717323303223,-104.062194824219,69.5091094970703,-134.951232910156,-100.968894958496,71.6215133666992,-143.528076171875,-100.28182220459,-39.8065032958984,-10.9498729705811,-63.6208305358887,-53.6894645690918,-10.3961181640625,-59.7070465087891,-5.79733276367188,-18.3057956695557,-68.5846176147461,-2.15359592437744,-32.8324165344238,-72.3715896606445,-1.73527503013611,-29.2644176483154,-71.4515991210938,-1.47254002094269,-37.1858444213867,-73.9461441040039,-32.26806640625,-9.5505256652832,-64.3760070800781,17.0276641845703,-47.4309463500977,-100.960891723633,1.97144794464111,-37.0198287963867,-74.0377502441406,7.12996387481689,-36.852912902832,-74.1089630126953,16.7177333831787,-37.4689712524414,-80.0319366455078,17.7789363861084,-42.7373886108398,-93.9152984619141,17.9928588867188,-62.3370056152344,-112.244995117188,71.5204086303711,-238.8994140625,-69.7324295043945,69.5921173095703,-214.725036621094,-74.1967697143555,76.3266677856445,-219.863540649414,-71.8165283203125,76.9939422607422,-223.634918212891,-71.0149536132813,73.0790557861328,-236.219650268555,-70.6167144775391,-177.934936523438,-138.418563842773,3.1385509967804,-182.900421142578,-129.199661254883,-4.03443193435669,-182.02033996582,-125.31428527832,-15.5779218673706,-183.519485473633,-122.158973693848,-18.5977172851563,-182.786407470703,-119.073661804199,-21.9334449768066,-183.213455200195,-108.531639099121,-29.7707138061523,-186.858810424805,-81.8905258178711,-41.5496673583984,-185.919723510742,-85.8459167480469,-41.3879508972168,-186.065734863281,-71.4693069458008,-42.5549659729004,-175.905746459961,-49.7166709899902,-45.050708770752,-171.703323364258,-70.64501953125,-48.6180610656738,-163.815567016602,-59.6653480529785,-49.1452102661133, +-161.665344238281,-58.5438385009766,-50.1639137268066,-142.516479492188,-38.3050537109375,-54.044792175293,-154.17561340332,-47.9272956848145,-52.9915885925293,-150.542251586914,-43.4121551513672,-52.4016304016113,-157.429931640625,-52.0707054138184,-52.474536895752,-135.351776123047,-33.3782691955566,-56.2282028198242,-80.0613479614258,-10.5643348693848,-59.7726516723633,-69.9529647827148,-5.34551382064819,-58.0960884094238,-57.9126815795898,-3.99505090713501,-57.6943511962891,-110.649345397949,-19.2385845184326,-59.5877380371094,-128.720123291016,-24.7681255340576,-55.9791831970215,-117.096977233887,-14.933464050293,-56.4889297485352,49.7504692077637,-79.7704238891602,-112.119979858398,40.451057434082,-70.1758728027344,-111.105880737305,51.6955604553223,-93.2736434936523,-111.709945678711,54.7584609985352,-89.0615310668945,-111.007873535156,64.9602584838867,-157.987487792969,-99.6277618408203,64.7730407714844,-171.387802124023,-96.4396514892578,71.2239761352539,-204.791061401367,-81.6377029418945,71.4497985839844,-178.189453125,-92.7982940673828,74.4931945800781,-195.037109375,-86.7512969970703,76.6067047119141,-181.373779296875,-92.5320587158203,68.2889862060547,-176.571304321289,-93.1659317016602,63.1773872375488,-106.997482299805,-108.032585144043,58.3721122741699,-98.3583374023438,-108.376617431641,66.8598480224609,-115.910362243652,-106.837463378906,69.6350173950195,-120.817840576172,-105.639350891113,73.8614349365234,-139.403656005859,-99.4604415893555,74.5858001708984,-130.319778442383,-101.199913024902,-47.492057800293,-4.61076211929321,-56.0685882568359,-34.508186340332,-3.74558711051941,-58.9959754943848,-51.9457931518555,-5.86844491958618,-56.7177543640137,-20.2626914978027,-9.47927856445313,-65.4644088745117,-11.6922512054443,-9.64169502258301,-66.3720932006836,-1.31695401668549,-25.6964168548584,-70.531608581543,-26.187370300293,-8.66497898101807,-64.6797332763672,16.5361156463623,-50.6835670471191,-104.41423034668,18.8065376281738,-54.1717071533203,-107.493530273438,16.0572681427002,-35.5882873535156,-75.4411926269531, +30.6512985229492,-38.1820411682129,-85.1129379272461,23.7757244110107,-40.7121887207031,-89.7801895141602,18.0257606506348,-44.9347038269043,-97.6597671508789,26.7995204925537,-62.6801414489746,-111.382911682129,83.2521514892578,-224.258972167969,-70.3910903930664,75.6149063110352,-237.559280395508,-70.090461730957,-183.26545715332,-133.500076293945,3.26058292388916,-186.500778198242,-128.833618164063,0.214499995112419,-185.790710449219,-124.791229248047,-12.5910301208496,-187.137832641602,-114.706237792969,-22.2086734771729,-186.243759155273,-109.433723449707,-25.9436378479004,-181.908340454102,-103.746162414551,-34.7797012329102,-182.46337890625,-97.0397033691406,-38.3145484924316,-188.14094543457,-74.1284637451172,-41.1870307922363,-190.485168457031,-89.3714599609375,-33.6313934326172,-188.061935424805,-58.1910018920898,-40.5449714660645,-172.790435791016,-60.9658737182617,-47.1802215576172,-166.376815795898,-59.1019897460938,-48.2911262512207,-150.158218383789,-38.5039710998535,-51.3861312866211,-137.746002197266,-30.7403125762939,-55.4718322753906,-141.797393798828,-31.7500114440918,-54.7902641296387,-97.0089111328125,-9.22563362121582,-56.6921501159668,-90.3807601928711,-1.25805294513702,-53.7056617736816,-75.1437683105469,-10.0846881866455,-59.4697265625,-74.9658508300781,-5.24816417694092,-57.8083610534668,-61.5854415893555,-2.60000491142273,-57.837963104248,-105.026794433594,-14.8044509887695,-58.1659965515137,-122.43049621582,-15.3023996353149,-55.1303977966309,-110.986381530762,-15.0018701553345,-57.6173439025879,44.685375213623,-71.4493026733398,-110.568832397461,32.4319725036621,-62.5802345275879,-110.298805236816,60.6386375427246,-84.8699188232422,-107.177505493164,56.3492164611816,-77.9112396240234,-107.859565734863,64.7692413330078,-166.77734375,-97.8613891601563,72.4431915283203,-208.693450927734,-77.7548217773438,77.7684173583984,-195.26513671875,-85.9182205200195,78.9454345703125,-185.087142944336,-91.0256118774414,79.0025405883789,-189.609588623047,-88.8316040039063,67.9235458374023,-171.401794433594,-94.8120880126953, +63.5713233947754,-111.460922241211,-107.999580383301,59.72314453125,-89.9023132324219,-108.016578674316,75.9622421264648,-120.937850952148,-104.190200805664,74.8149261474609,-134.806213378906,-99.4319381713867,78.7528076171875,-125.409294128418,-101.765968322754,71.0511627197266,-148.558563232422,-99.785774230957,79.5047836303711,-139.143646240234,-97.5797576904297,71.015754699707,-158.046493530273,-95.9990997314453,-41.2444496154785,-4.35283613204956,-57.018985748291,-13.0131807327271,-7.47316312789917,-65.5166091918945,-6.15517902374268,-12.2469997406006,-67.1800842285156,-0.51509302854538,-14.0123729705811,-66.902946472168,2.20264101028442,-29.3778781890869,-71.0379028320313,0.442842990159988,-27.5371475219727,-70.7847595214844,-31.3911819458008,-5.9924168586731,-61.9561653137207,25.1742610931396,-50.980598449707,-104.295219421387,28.1921577453613,-58.5291366577148,-109.285705566406,5.72223615646362,-33.0593376159668,-71.5442047119141,9.41989803314209,-32.823314666748,-71.7756271362305,22.4894981384277,-35.0634384155273,-75.8699264526367,30.8727188110352,-34.7606048583984,-76.4631881713867,25.9677391052246,-42.3125457763672,-92.5983657836914,75.809326171875,-214.643020629883,-73.7290191650391,81.7165069580078,-219.115463256836,-71.9878540039063,-191.736297607422,-123.837135314941,-3.50575995445251,-187.950912475586,-120.522811889648,-16.7042331695557,-186.454772949219,-118.259590148926,-20.2788829803467,-188.195938110352,-99.7111740112305,-28.8723258972168,-186.157745361328,-98.6927719116211,-32.0926399230957,-193.020416259766,-84.5112762451172,-33.5879898071289,-190.876205444336,-75.7122192382813,-38.4157600402832,-190.301162719727,-61.2213020324707,-39.2149391174316,-173.053466796875,-48.5483551025391,-46.0730094909668,-185.425674438477,-50.249626159668,-40.7675895690918,-163.869567871094,-49.0887107849121,-48.5323524475098,-150.053207397461,-34.5400848388672,-51.6560592651367,-154.078598022461,-39.1237335205078,-50.3358268737793,-157.84797668457,-47.8115844726563,-51.4831428527832,-131.022338867188,-24.0380554199219,-55.4970321655273, +-148.572067260742,-29.0549468994141,-53.080696105957,-100.461349487305,-10.0985898971558,-56.9635772705078,-80.8299255371094,-2.53565788269043,-55.9683799743652,-70.7171325683594,-0.17748099565506,-55.9696807861328,-57.4755363464355,1.8290890455246,-54.4567337036133,-124.062660217285,-13.8008527755737,-54.4281311035156,-113.098587036133,-10.6541442871094,-56.3735198974609,49.5608520507813,-74.7664260864258,-110.107780456543,42.2303352355957,-63.0137748718262,-109.198699951172,70.9688491821289,-162.478912353516,-94.8574905395508,67.9732513427734,-166.802337646484,-95.8994979858398,78.0221405029297,-200.095611572266,-82.5950927734375,71.1259613037109,-172.855941772461,-93.8371887207031,82.7091979980469,-181.037750244141,-91.8397979736328,72.0925598144531,-111.767959594727,-105.863372802734,66.8043441772461,-97.0473175048828,-105.302322387695,66.2577896118164,-88.8157043457031,-105.208305358887,73.0775604248047,-116.586418151855,-105.508331298828,82.6316909790039,-129.387680053711,-98.1962203979492,74.8069229125977,-148.488555908203,-98.4845504760742,81.7981109619141,-144.053115844727,-97.3120346069336,-50.6706733703613,-1.50024700164795,-54.5796432495117,-44.5237693786621,-0.429619014263153,-54.1166000366211,-37.632194519043,-0.231079995632172,-55.0006866455078,-14.6196384429932,-3.96498894691467,-63.5018196105957,-25.147668838501,-4.83902406692505,-62.3732070922852,-7.52910280227661,-5.09778022766113,-63.9782676696777,-5.53640794754028,-8.3549690246582,-65.6824340820313,1.46121799945831,-22.9171466827393,-69.6244201660156,26.3297748565674,-45.4486503601074,-97.5027465820313,25.9389362335205,-47.986701965332,-100.974891662598,29.469482421875,-54.5895500183105,-106.84546661377,16.6333255767822,-31.7273082733154,-72.9944534301758,27.5825977325439,-34.8861198425293,-76.264274597168,31.4141731262207,-41.0319213867188,-90.4514617919922,39.8445014953613,-36.1770439147949,-80.3251724243164,74.3994903564453,-209.850570678711,-76.3432769775391,88.4862594604492,-218.96745300293,-72.2224731445313,-188.769012451172,-128.531585693359,3.43336009979248, +-185.862716674805,-133.293060302734,6.5436749458313,-193.220428466797,-123.80712890625,0.270702004432678,-191.629287719727,-120.082763671875,-12.9759683609009,-196.166717529297,-119.215682983398,-7.45536708831787,-190.870208740234,-116.074378967285,-18.011360168457,-191.017227172852,-111.353912353516,-20.7897338867188,-194.606567382813,-100.37183380127,-22.5643062591553,-195.004623413086,-80.1545486450195,-32.9031181335449,-192.274337768555,-70.4862060546875,-37.2143440246582,-189.232055664063,-94.0836181640625,-31.704704284668,-196.112716674805,-89.9291152954102,-28.0880489349365,-191.229248046875,-53.1565055847168,-37.7343940734863,-174.89665222168,-43.620475769043,-44.6622734069824,-167.201889038086,-48.8020820617676,-47.4300422668457,-155.348724365234,-34.7206039428711,-49.285026550293,-143.98161315918,-24.5463047027588,-54.1600036621094,-137.764007568359,-22.7520294189453,-54.8099670410156,-94.6008758544922,-1.69117605686188,-53.643253326416,-102.393539428711,-7.18520402908325,-56.2612075805664,-89.1269378662109,6.58830499649048,-49.0601043701172,-67.2427978515625,3.19762301445007,-54.3535232543945,-61.948673248291,6.84622097015381,-52.1303024291992,49.580753326416,-70.7863388061523,-108.87166595459,39.8159980773926,-58.9782791137695,-108.132591247559,60.7606506347656,-76.677116394043,-105.232307434082,78.1392517089844,-204.755065917969,-79.0081405639648,77.7008056640625,-176.443283081055,-93.4035491943359,83.9557189941406,-188.219451904297,-88.9040069580078,85.9088134765625,-195.110122680664,-85.2920532226563,81.5057830810547,-176.262268066406,-92.9723052978516,71.6586151123047,-168.079467773438,-94.1227188110352,72.2408752441406,-106.998481750488,-105.418327331543,77.2322616577148,-113.852157592773,-104.726257324219,82.1148452758789,-120.96785736084,-101.522941589355,83.882209777832,-135.236251831055,-95.7977828979492,84.4876708984375,-125.887336730957,-99.052001953125,74.7066192626953,-158.351516723633,-94.4158477783203,87.0890350341797,-139.437652587891,-94.5444564819336,-55.0203971862793,2.93782806396484,-53.4837379455566, +-41.2575492858887,-0.635170996189117,-54.5289421081543,-28.1377620697021,-1.79045498371124,-59.5618324279785,-32.5346946716309,1.86103200912476,-54.3047180175781,3.96736407279968,-18.0452690124512,-68.1824798583984,31.9999294281006,-48.1827239990234,-101.112907409668,5.0491189956665,-22.6732215881348,-69.8166427612305,21.7144222259521,-31.441780090332,-73.2384719848633,26.719913482666,-31.648401260376,-73.165168762207,40.545467376709,-43.0082168579102,-93.6398773193359,29.977331161499,-31.759313583374,-72.9599456787109,37.6508827209473,-34.5033798217773,-75.9115371704102,44.2622337341309,-38.8369064331055,-85.4694747924805,80.6464004516602,-209.326507568359,-75.9352340698242,89.0031127929688,-214.317993164063,-74.2112655639648,-197.970901489258,-119.136672973633,-2.99409008026123,-195.400650024414,-96.330940246582,-24.2793750762939,-197.60285949707,-84.3874740600586,-29.0057373046875,-198.076919555664,-78.6051025390625,-29.7773151397705,-194.458557128906,-65.7900466918945,-34.5308799743652,-194.502578735352,-54.8372764587402,-34.9577217102051,-171.010269165039,-43.0820236206055,-45.8002815246582,-185.380676269531,-44.4195518493652,-39.6768836975098,-162.88948059082,-43.4846611022949,-47.8385848999023,-154.815673828125,-29.6419048309326,-49.9273872375488,-159.693145751953,-39.5504760742188,-48.1617164611816,-129.718215942383,-12.6261367797852,-53.554744720459,-148.091018676758,-24.6049118041992,-52.9822883605957,-101.418449401855,-1.26940405368805,-54.2976188659668,-93.384651184082,2.73243808746338,-51.3964309692383,-84.4949798583984,6.44847202301025,-49.4711456298828,-71.8134384155273,4.76903676986694,-53.0141906738281,-54.0433006286621,7.98728179931641,-51.1222038269043,-113.612640380859,-6.02562093734741,-55.6012420654297,-108.116104125977,-5.83975219726563,-56.0435905456543,49.758171081543,-59.9447746276855,-106.109397888184,51.1736106872559,-62.8299560546875,-106.605438232422,64.4976119995117,-84.4696807861328,-105.367317199707,52.8623733520508,-67.4016036987305,-107.033485412598,85.7798004150391,-199.855575561523,-81.959831237793, +78.3602676391602,-171.155776977539,-93.4727554321289,89.0570220947266,-176.134262084961,-90.9708099365234,87.2196426391602,-189.437576293945,-87.5161743164063,76.7413177490234,-106.863471984863,-104.743255615234,72.4464874267578,-87.8724136352539,-103.561141967773,70.3056869506836,-99.4179458618164,-104.755256652832,80.6510009765625,-113.825157165527,-103.437133789063,88.9013061523438,-126.022354125977,-97.7013702392578,83.9638214111328,-148.710571289063,-96.2170257568359,89.9181060791016,-144.174133300781,-94.187126159668,74.3801803588867,-162.541931152344,-93.618766784668,-49.1741218566895,4.00879287719727,-52.5279426574707,-40.7347946166992,3.70052289962769,-52.579948425293,-36.2723617553711,3.50362300872803,-52.7513656616211,-10.2285079956055,2.64164900779724,-58.342414855957,-2.45604610443115,-7.35876083374023,-64.3416976928711,2.97277593612671,-12.0843849182129,-65.5901184082031,34.0576324462891,-51.5849533081055,-104.125198364258,40.8544998168945,-55.5507431030273,-105.99137878418,14.095775604248,-21.355993270874,-71.0743637084961,36.6807899475098,-31.8940258026123,-71.9729461669922,41.8514938354492,-34.6300964355469,-76.0481491088867,51.0706977844238,-36.9824256896973,-80.2867584228516,-193.941513061523,-123.598106384277,3.4963059425354,-190.572174072266,-127.961540222168,6.74133396148682,-198.751983642578,-118.464614868164,0.63102799654007,-198.026901245117,-114.84725189209,-10.8235569000244,-200.887191772461,-114.582229614258,-6.38829183578491,-196.138717651367,-109.436729431152,-16.8248443603516,-198.871002197266,-98.3439331054688,-19.1909770965576,-198.737976074219,-88.8049087524414,-25.9632415771484,-193.502471923828,-50.0491065979004,-35.1698417663574,-174.952651977539,-39.5827789306641,-43.4878578186035,-167.251907348633,-43.0473175048828,-46.562557220459,-189.807098388672,-43.7858924865723,-36.3126564025879,-160.31721496582,-30.1198501586914,-46.5269546508789,-152.369430541992,-24.7208213806152,-51.0502967834473,-163.34049987793,-34.590389251709,-45.6028633117676,-140.611297607422,-20.0631656646729,-53.8545722961426, +-132.888534545898,-12.2236976623535,-52.9083786010742,-146.083831787109,-19.5685176849365,-52.4269332885742,-104.39973449707,4.20734214782715,-52.2106132507324,-109.2412109375,-1.26536405086517,-54.950382232666,-78.0090484619141,9.96144580841064,-48.6109619140625,-85.062141418457,11.6507415771484,-47.0789070129395,-95.8022994995117,8.42806625366211,-48.395637512207,-66.861457824707,14.6908388137817,-47.1986236572266,-62.1714973449707,12.4534196853638,-48.7438735961914,-126.93994140625,-6.12966012954712,-52.9719886779785,64.9108581542969,-77.5795974731445,-103.842170715332,59.6383399963379,-66.6108322143555,-104.226211547852,84.8142013549805,-205.168106079102,-78.043342590332,81.4569778442383,-171.918838500977,-93.0237121582031,91.4993591308594,-195.097122192383,-83.6993942260742,90.5206680297852,-171.0927734375,-90.8143920898438,94.8612899780273,-179.46159362793,-88.3601531982422,80.0702362060547,-162.932968139648,-92.6206741333008,80.4497756958008,-105.621353149414,-103.591148376465,84.7465972900391,-118.126571655273,-100.31282043457,87.4014587402344,-121.474899291992,-98.669059753418,88.5616683959961,-135.119247436523,-94.6220626831055,84.2644500732422,-153.344024658203,-94.5702667236328,90.7223815917969,-139.387649536133,-93.7821884155273,-41.8114013671875,8.39365196228027,-50.6756629943848,-25.9434471130371,1.65518200397491,-56.9227752685547,-33.2728652954102,8.29583263397217,-49.2389221191406,-17.5416240692139,-1.41828894615173,-61.2768020629883,-5.8132848739624,0.876116991043091,-59.4909248352051,6.39305114746094,-14.0758790969849,-66.4716110229492,12.1080808639526,-17.8737506866455,-69.5273056030273,41.3937492370605,-45.1904296875,-97.0396041870117,39.7068862915039,-48.1632194519043,-100.629852294922,22.8127307891846,-22.9843521118164,-71.2552795410156,26.7604179382324,-26.8250274658203,-71.6396179199219,50.615852355957,-38.8315086364746,-84.3068618774414,33.0426330566406,-28.0759506225586,-70.5694122314453,41.0661201477051,-32.7252082824707,-71.9646453857422,52.5056419372559,-35.3082580566406,-75.5905075073242, +84.7606048583984,-210.268600463867,-75.5121994018555,-202.151321411133,-114.236190795898,-2.59016990661621,-200.685165405273,-84.3918685913086,-25.2832736968994,-201.338241577148,-77.3791809082031,-25.6007041931152,-196.061721801758,-64.6792373657227,-32.4344749450684,-196.891799926758,-48.4876518249512,-31.4438762664795,-170.442199707031,-33.0440368652344,-42.9257049560547,-167.574935913086,-33.08984375,-43.8816947937012,-186.314758300781,-37.035228729248,-36.5814819335938,-183.747512817383,-38.5260772705078,-38.7836952209473,-160.340209960938,-25.1429634094238,-45.8480911254883,-102.84058380127,12.4099159240723,-47.2383232116699,-80.9144287109375,12.5125255584717,-46.8764877319336,-94.5131683349609,11.1172895431519,-47.3154296875,-73.8845443725586,14.5501260757446,-46.3193359375,-55.4838409423828,11.9809741973877,-48.570255279541,-120.628326416016,-0.862812995910645,-53.0038871765137,62.9301643371582,-58.0147857666016,-100.638862609863,49.0005989074707,-55.9003791809082,-104.479232788086,91.1197204589844,-204.657043457031,-77.3802795410156,92.2157287597656,-190.952713012695,-85.0843353271484,95.887092590332,-176.39729309082,-88.9658203125,98.3588333129883,-185.708206176758,-84.3602676391602,89.3979568481445,-162.919967651367,-90.4055557250977,74.2333679199219,-97.3446350097656,-104.115196228027,83.5888900756836,-109.244705200195,-101.883979797363,91.9804077148438,-148.740570068359,-93.2188262939453,82.3415679931641,-158.217498779297,-93.0486145019531,-20.7154369354248,6.66064310073853,-53.3529243469238,-16.3875122070313,5.62030076980591,-55.3730201721191,-30.6186046600342,8.39696311950684,-49.0018005371094,-37.2559547424316,9.22430419921875,-49.3479347229004,-10.6862525939941,5.77575588226318,-56.3894233703613,-2.54917502403259,-0.584674000740051,-60.0692825317383,6.8348240852356,-4.43817520141602,-61.0525779724121,41.2752380371094,-51.8409805297852,-103.448135375977,19.3896942138672,-14.0064725875854,-68.3450927734375,23.075855255127,-14.8902587890625,-68.5878143310547,48.2098197937012,-43.2691383361816,-92.4784622192383, +38.8796043395996,-27.1598606109619,-69.6917266845703,40.7749938964844,-30.4519824981689,-69.9623565673828,48.1603126525879,-32.7480087280273,-71.5667114257813,57.0265846252441,-39.8116035461426,-83.2174530029297,92.3872528076172,-209.592544555664,-75.3137741088867,-201.718276977539,-115.069274902344,3.3673939704895,-198.573974609375,-119.35669708252,6.79756021499634,-202.1953125,-109.245704650879,-9.38420581817627,-200.00910949707,-109.51473236084,-12.2280950546265,-203.476440429688,-109.990783691406,-6.35874891281128,-201.869293212891,-94.3695449829102,-17.6910305023193,-200.29313659668,-67.6228332519531,-26.2730712890625,-201.240234375,-88.4885711669922,-22.529203414917,-196.362747192383,-58.0588874816895,-32.6538963317871,-201.540252685547,-53.0341949462891,-27.2543659210205,-173.572509765625,-33.0267333984375,-41.7155838012695,-192.10432434082,-31.8847236633301,-29.7896156311035,-181.924331665039,-25.0315532684326,-34.9623222351074,-164.051574707031,-25.8586349487305,-43.9718055725098,-151.16731262207,-19.7678375244141,-50.0335998535156,-136.217849731445,-10.1069898605347,-51.4677391052246,-108.593147277832,3.87408995628357,-52.6266555786133,-107.622047424316,18.681131362915,-44.4726524353027,-76.8449325561523,17.749340057373,-44.1407203674316,-92.0318222045898,17.3540992736816,-45.7910804748535,-83.426887512207,17.0533714294434,-45.0226097106934,-103.337631225586,19.4707088470459,-44.0708160400391,-99.0351104736328,18.9179534912109,-44.6284675598145,-64.6305389404297,17.2529907226563,-44.9977073669434,-73.4288024902344,18.3652992248535,-43.7059783935547,-56.3257255554199,15.6934375762939,-45.1518211364746,-45.1980323791504,12.8752613067627,-48.2747268676758,-129.958236694336,-1.22175002098084,-50.909984588623,65.1177749633789,-62.789852142334,-101.576950073242,55.9753799438477,-53.9408874511719,-101.098907470703,65.5697174072266,-66.6697311401367,-102.405029296875,70.9657516479492,-78.9729385375977,-102.470039367676,98.9907913208008,-172.294876098633,-88.5908813476563,101.452438354492,-176.539306640625,-87.2558517456055, +88.1318283081055,-158.40852355957,-91.3176422119141,77.6906051635742,-99.1409149169922,-103.799163818359,93.2473373413086,-157.973480224609,-89.775390625,-27.0072536468506,7.86199998855591,-50.1328086853027,-32.0884475708008,18.213285446167,-42.5094604492188,-37.6673965454102,17.4316062927246,-43.3015365600586,-5.16567182540894,7.19509506225586,-56.5149345397949,3.25522398948669,-3.8049430847168,-60.7331466674805,10.1636905670166,-6.56372308731079,-62.8671569824219,13.1554841995239,-10.411319732666,-65.8637542724609,49.9318885803223,-49.2379264831543,-100.045799255371,17.0999717712402,-11.0721845626831,-67.0277633666992,28.9289283752441,-18.0799713134766,-69.0881652832031,58.8968658447266,-44.7204818725586,-91.1428298950195,51.8828811645508,-46.4949531555176,-96.3253326416016,35.2081413269043,-21.9497509002686,-69.3369903564453,44.6799736022949,-28.8900299072266,-69.207275390625,53.9718856811523,-33.0800437927246,-71.1330718994141,62.0040702819824,-37.0522308349609,-73.8655395507813,60.1956939697266,-42.5124664306641,-86.9223098754883,-205.416641235352,-109.722747802734,0.309879988431931,-204.713562011719,-109.833763122559,-2.9921600818634,-203.427444458008,-98.6959762573242,-13.2037897109985,-204.868576049805,-78.7995223999023,-19.7028274536133,-204.455551147461,-73.3470840454102,-20.9860515594482,-204.176513671875,-88.2188415527344,-17.5866184234619,-200.375137329102,-57.7400588989258,-28.0370426177979,-205.895690917969,-49.000602722168,-21.6866207122803,-193.546463012695,-40.5490760803223,-31.4962825775146,-168.391006469727,-25.8034286499023,-41.7383842468262,-188.963027954102,-25.4902973175049,-29.7728137969971,-159.455139160156,-20.3306903839111,-44.6633720397949,-140.211242675781,-6.903076171875,-49.0665016174316,-144.868698120117,-9.52186298370361,-48.2499237060547,-111.906471252441,3.84871697425842,-52.43603515625,-79.4250869750977,21.7300281524658,-42.3178443908691,-89.365364074707,20.7818374633789,-44.5017547607422,-71.7560424804688,21.9495506286621,-40.8411979675293,-128.732116699219,3.35876893997192,-49.5608520507813, +70.5610046386719,-61.4621238708496,-100.601852416992,62.2865982055664,-55.0879974365234,-99.7232666015625,49.5071487426758,-51.9113845825195,-102.141006469727,66.9540557861328,-72.0923614501953,-102.838073730469,-42.7141914367676,11.6302404403687,-48.949390411377,-22.4630069732666,12.1065864562988,-48.1400146484375,-15.8948631286621,9.69699001312256,-52.5564460754395,-25.4482975006104,14.3630065917969,-45.6981735229492,-9.0564432144165,10.9060678482056,-53.7464637756348,-0.86115700006485,7.40478515625,-56.3890228271484,4.30567598342896,4.90733098983765,-56.5577392578125,10.7799510955811,-0.327347993850708,-59.1532936096191,23.0711555480957,-7.35447978973389,-66.8284454345703,26.2965717315674,-12.9510688781738,-68.1344757080078,39.2810440063477,-23.5548076629639,-69.5558090209961,51.089599609375,-29.1235542297363,-68.855339050293,47.8292846679688,-29.968936920166,-69.3036880493164,69.3238830566406,-41.7058868408203,-82.0192337036133,-203.659454345703,-114.063179016113,6.69332981109619,-206.177719116211,-109.614738464355,3.55476188659668,-205.220611572266,-105.499336242676,-6.31089496612549,-207.412826538086,-88.8178024291992,-13.2913990020752,-204.22151184082,-83.7898101806641,-19.3446922302246,-202.871383666992,-64.954460144043,-23.6215114593506,-205.766662597656,-57.6037445068359,-22.8496360778809,-207.533843994141,-54.745662689209,-21.1204662322998,-204.797576904297,-45.4160499572754,-21.4708995819092,-200.909194946289,-40.3348503112793,-23.3611850738525,-173.150466918945,-24.4509963989258,-38.8791084289551,-192.141326904297,-22.5173072814941,-26.3790798187256,-195.152633666992,-36.1691436767578,-28.3503742218018,-163.633529663086,-19.4346046447754,-41.9631080627441,-154.446640014648,-11.0913858413696,-42.4942626953125,-148.246032714844,-10.0483846664429,-46.56005859375,-105.693855285645,24.6345138549805,-41.5005645751953,-75.7949295043945,23.7036228179932,-40.3536491394043,-93.6250762939453,20.7646350860596,-44.6586723327637,-87.8427124023438,24.9260425567627,-42.2831382751465,-60.9596786499023,18.8367462158203,-42.4876594543457, +-67.2009887695313,22.7911338806152,-39.7442893981934,-47.1248245239258,15.9220600128174,-45.5456581115723,-119.755241394043,2.81240606307983,-51.7676696777344,73.4720001220703,-65.6760406494141,-101.202911376953,60.5744285583496,-50.9466934204102,-97.7106704711914,73.5863037109375,-70.9037475585938,-101.79296875,95.4181442260742,-162.798965454102,-88.6711883544922,-28.4749965667725,21.9405498504639,-39.6905822753906,-37.5265808105469,21.4957065582275,-39.6726837158203,-3.62890100479126,11.854061126709,-53.6830558776855,7.73189306259155,3.27897095680237,-56.8059616088867,14.4021062850952,-3.40547394752502,-62.1800880432129,18.9243488311768,-2.60478496551514,-63.2849998474121,60.1399879455566,-47.5212593078613,-94.6909713745117,24.4359874725342,-3.19988393783569,-65.5741195678711,27.8454246520996,-5.02533197402954,-67.1041717529297,32.0561332702637,-13.581130027771,-68.2409896850586,68.4580001831055,-45.7944869995117,-90.0014190673828,37.7621955871582,-13.4632186889648,-67.8438415527344,43.6343727111816,-20.5007076263428,-68.3588943481445,54.7762603759766,-30.5534954071045,-68.7887344360352,60.3834114074707,-34.1521453857422,-70.3525924682617,70.6155166625977,-43.7253837585449,-85.5398788452148,-206.912780761719,-105.45532989502,-2.071368932724,-205.868682861328,-97.5421600341797,-9.84296131134033,-207.098785400391,-82.2664642333984,-16.0817718505859,-207.380828857422,-73.2019729614258,-17.522912979126,-210.392120361328,-52.8958854675293,-17.0599689483643,-209.172012329102,-43.9900093078613,-15.6693315505981,-175.76872253418,-16.6337299346924,-34.5050773620605,-184.391586303711,-18.8402462005615,-30.193754196167,-196.17073059082,-25.7365207672119,-24.4536914825439,-198.242935180664,-27.8328266143799,-23.2597751617432,-157.074890136719,-10.1785974502563,-40.6514778137207,-144.028610229492,1.25525295734406,-44.5093574523926,-112.122489929199,18.8880500793457,-44.2665328979492,-110.741355895996,24.0862617492676,-41.0998229980469,-82.988037109375,28.5990028381348,-39.4569625854492,-93.6626815795898,24.5957107543945,-42.8505973815918, +-62.1267929077148,24.5394058227539,-36.6776885986328,-54.962890625,29.9512348175049,-29.4414825439453,-68.8010482788086,26.2873764038086,-37.1823387145996,-46.3621482849121,21.1514720916748,-40.1259307861328,-116.166885375977,7.94575881958008,-49.7132682800293,-125.763824462891,9.16404819488525,-47.4538459777832,71.5505065917969,-56.4678344726563,-98.5181503295898,74.8825378417969,-60.9809722900391,-99.3150329589844,67.6914215087891,-51.5229454040527,-96.7468795776367,-17.9542636871338,16.398006439209,-45.0234107971191,-12.3166122436523,13.6800413131714,-50.4318351745605,-18.5684242248535,20.1169700622559,-41.0893211364746,-6.1272349357605,14.5607271194458,-51.0966033935547,-0.185257002711296,10.8267612457275,-54.0257911682129,7.34610414505005,9.80115032196045,-52.369327545166,15.8826513290405,9.66576671600342,-53.0722961425781,33.6793937683105,-4.74101495742798,-67.4866104125977,32.5401840209961,-9.2299337387085,-68.023063659668,52.5269393920898,-21.2325801849365,-67.1853790283203,56.2572059631348,-27.4146862030029,-67.7228317260742,-207.66584777832,-109.43172454834,6.72255277633667,-209.854064941406,-104.848274230957,5.69301223754883,-207.247802734375,-100.777870178223,-4.75915193557739,-210.000076293945,-88.6231842041016,-10.2496013641357,-211.525238037109,-70.5989227294922,-14.1132802963257,-210.40412902832,-63.6494369506836,-17.4095039367676,-213.857467651367,-57.138801574707,-13.8635540008545,-206.169708251953,-39.1107330322266,-17.7258338928223,-201.823287963867,-35.5835876464844,-21.0070533752441,-168.054977416992,-11.6503419876099,-36.3613586425781,-180.156158447266,-9.90221118927002,-28.8243217468262,-192.239349365234,-13.345908164978,-22.2914810180664,-203.17041015625,-30.7182102203369,-18.6941299438477,-161.187301635742,-8.90323162078857,-38.4488639831543,-154.00959777832,-7.29267406463623,-41.1938323974609,-149.020111083984,2.76535105705261,-41.0565223693848,-111.958473205566,27.1255588531494,-38.743293762207,-77.8734359741211,31.7344093322754,-36.4423675537109,-90.4113616943359,28.7281150817871,-40.2583389282227, +-53.7298698425293,24.4596977233887,-35.7025947570801,-73.978157043457,34.7740058898926,-33.5030822753906,-140.659286499023,7.31781721115112,-43.0597152709961,-129.387176513672,7.46127080917358,-47.3283348083496,-31.1731605529785,24.8643379211426,-36.5888824462891,-17.0564765930176,27.7597198486328,-34.2984580993652,-2.19742107391357,19.6960296630859,-45.8176879882813,2.32348203659058,16.2972965240479,-48.6445655822754,18.3902969360352,3.26425004005432,-58.9813766479492,11.4150133132935,9.44652462005615,-52.4710388183594,28.0809478759766,1.7349100112915,-63.880256652832,29.2274570465088,-1.44737195968628,-65.9868698120117,68.9229431152344,-48.5165519714355,-93.5189590454102,71.7648315429688,-48.4119453430176,-92.0794219970703,45.5967597961426,-11.2037982940674,-66.5444183349609,-211.184204101563,-96.4063415527344,1.41752302646637,-208.539947509766,-96.1579208374023,-5.6025447845459,-213.062393188477,-82.3921737670898,-9.68886470794678,-213.856460571289,-74.4890975952148,-10.487024307251,-211.80126953125,-61.6678428649902,-16.4335079193115,-215.078582763672,-49.7592735290527,-10.006477355957,-210.566146850586,-40.0219230651855,-13.2983989715576,-159.126098632813,-3.11652493476868,-36.9827194213867,-170.427200317383,-4.08299016952515,-31.7131042480469,-200.296142578125,-22.6938247680664,-19.2118797302246,-196.946792602539,-16.4848155975342,-19.6602230072021,-184.873626708984,-0.976733982563019,-22.1290645599365,-206.741760253906,-26.1444606781006,-13.7697458267212,-149.12712097168,6.84620094299316,-39.2692451477051,-120.983360290527,17.3384990692139,-43.295036315918,-118.646133422852,23.3630886077881,-40.1125297546387,-105.438835144043,28.2774715423584,-39.4807624816895,-83.4652862548828,32.136646270752,-37.2141418457031,-97.510856628418,28.5673007965088,-40.1584281921387,-89.4086608886719,33.408374786377,-36.8402061462402,-57.6482543945313,30.437183380127,-29.5804958343506,-52.2264251708984,28.1412582397461,-31.3512687683105,-62.5918388366699,29.0509452819824,-32.917121887207,-67.5990295410156,31.4895858764648,-33.3561668395996, +-48.3894462585449,25.5387020111084,-34.9719200134277,-37.8128089904785,24.8274345397949,-35.9515228271484,-130.341278076172,11.9350690841675,-44.4156494140625,75.5639038085938,-56.9501800537109,-97.201416015625,73.4160919189453,-52.5751533508301,-95.4379501342773,-12.024884223938,26.0157508850098,-35.4872741699219,-7.24313497543335,18.561918258667,-46.2050247192383,-25.1547718048096,26.5186996459961,-35.3755645751953,25.4077835083008,5.07004690170288,-60.6478385925293,14.1085767745972,13.8914613723755,-50.1523094177246,19.2626838684082,7.56864213943481,-55.7441596984863,5.51386499404907,17.2459907531738,-47.764778137207,33.9612197875977,-0.94608598947525,-66.1045761108398,39.7647895812988,-6.21383905410767,-67.1184692382813,52.707160949707,-15.6209306716919,-65.7483367919922,-212.210296630859,-100.232818603516,7.8106689453125,-213.361419677734,-87.5237731933594,-6.46472978591919,-213.926467895508,-65.8013458251953,-13.124981880188,-216.153686523438,-71.8218307495117,-8.10669040679932,-214.947570800781,-60.8916664123535,-12.779748916626,-217.433807373047,-56.0774955749512,-8.73262214660645,-213.695449829102,-43.3804512023926,-10.0355796813965,-213.232406616211,-35.4773750305176,-10.1793937683105,-174.808639526367,2.06051206588745,-27.0180435180664,-194.317535400391,-9.19229125976563,-18.4073009490967,-187.422866821289,-0.255284011363983,-19.8152370452881,-211.265197753906,-31.2850646972656,-11.1932926177979,-122.713531494141,26.4297904968262,-36.6016807556152,-107.349029541016,31.9460296630859,-36.4680709838867,-80.9558410644531,35.4782752990723,-34.5552825927734,-100.653373718262,32.441577911377,-37.2001419067383,-46.9886093139648,30.9749355316162,-27.1360549926758,-128.566101074219,17.255989074707,-41.4804573059082,-141.872421264648,10.7790555953979,-40.4895629882813,-8.52312088012695,24.9502449035645,-36.979118347168,-22.341194152832,32.2119598388672,-28.7534141540527,-34.8166160583496,29.0309448242188,-30.3195686340332,-17.0612773895264,31.7247085571289,-30.019437789917,-2.35891604423523,23.593111038208,-41.6000747680664, +2.64104390144348,20.486608505249,-45.4902572631836,20.7618293762207,13.4926223754883,-50.494743347168,24.1331596374512,13.0266771316528,-51.2010116577148,31.7225036621094,5.4746470451355,-61.5961303710938,40.9236030578613,-2.34640002250671,-65.6188278198242,45.629566192627,-4.96456623077393,-65.0497665405273,-212.789352416992,-95.9587097167969,6.69847011566162,-212.821350097656,-91.6477813720703,-1.98397099971771,-215.507629394531,-83.0142364501953,-6.450599193573,-216.516723632813,-78.5630950927734,-6.44577789306641,-216.376708984375,-44.6732788085938,-6.33810710906982,-161.322311401367,6.64241123199463,-31.9601287841797,-203.660461425781,-13.6509380340576,-11.5671300888062,-202.253326416016,-9.57883930206299,-10.8977642059326,-185.341674804688,6.90707683563232,-17.5172138214111,-177.545913696289,10.8312616348267,-20.9045448303223,-210.355117797852,-23.3467864990234,-8.48115825653076,-126.890937805176,21.5873146057129,-38.8652038574219,-114.601737976074,30.7688159942627,-35.1608390808105,-149.813186645508,10.6544437408447,-36.6417846679688,-139.381164550781,16.5112171173096,-37.7378921508789,-30.3047752380371,28.8024234771729,-31.4155750274658,5.88976192474365,24.6301136016846,-42.3288421630859,27.6416034698486,8.77952003479004,-57.5817375183105,12.9206609725952,17.5049152374268,-48.1010093688965,27.3821792602539,11.3418121337891,-53.977783203125,34.1460418701172,1.73901998996735,-64.4290084838867,54.3641204833984,-8.2921724319458,-62.5553283691406,-214.256500244141,-95.8858032226563,10.714054107666,-214.841552734375,-91.4094543457031,7.19884920120239,-215.215606689453,-87.3545608520508,-3.25132489204407,-217.157791137695,-62.4208145141602,-9.54863166809082,-218.679931640625,-78.5537948608398,-2.6696081161499,-217.719848632813,-41.0733261108398,-2.68352890014648,-215.603637695313,-35.952522277832,-6.69093179702759,-214.564529418945,-30.1458549499512,-6.82684516906738,-172.587417602539,6.07212495803833,-26.3553791046143,-193.038421630859,-4.51529312133789,-16.6863307952881,-189.091033935547,3.68622088432312,-15.924656867981, +-153.438537597656,12.0092763900757,-33.7514038085938,-134.412673950195,21.0500621795654,-36.4078636169434,-121.006362915039,30.3305721282959,-33.6007881164551,1.53028500080109,27.1199588775635,-38.0965270996094,9.97172164916992,21.2070789337158,-45.5861625671387,24.4914932250977,16.9399585723877,-48.1769142150879,18.2610836029053,21.3072891235352,-45.4009437561035,30.9128227233887,14.3913097381592,-50.841178894043,34.5183792114258,8.33191680908203,-58.6957473754883,38.9547119140625,5.38590812683105,-61.072681427002,41.6442756652832,2.64435911178589,-62.6956405639648,48.7797737121582,0.664488971233368,-61.4260177612305,53.9308776855469,-1.7878350019455,-60.5752334594727,-216.367706298828,-87.1493377685547,0.0609930008649826,-217.502807617188,-82.8142166137695,-3.24393391609192,-218.387908935547,-70.6780242919922,-4.49937677383423,-218.239883422852,-62.0004768371582,-7.52645397186279,-219.018966674805,-55.4751358032227,-5.55041980743408,-163.54052734375,11.7288503646851,-28.0008392333984,-206.56575012207,-10.0557851791382,-6.45341920852661,-202.865386962891,-5.2133412361145,-7.17586898803711,-189.726104736328,8.02628707885742,-13.1426839828491,-183.414474487305,11.1433916091919,-16.8898525238037,-173.565505981445,10.9041690826416,-23.1216621398926,-215.131591796875,-25.5733070373535,-3.42547202110291,-131.477386474609,29.9647369384766,-29.6837043762207,-145.871795654297,23.7152233123779,-28.5973987579346,-140.046234130859,27.0493507385254,-28.8613243103027,7.37377691268921,27.7548198699951,-38.93701171875,15.0881729125977,24.5763092041016,-42.902099609375,33.838809967041,11.2774057388306,-54.9428787231445,-217.075790405273,-91.4241561889648,13.9560708999634,-217.59782409668,-86.8579177856445,5.84051609039307,-221.493209838867,-78.2806701660156,4.21288681030273,-219.155975341797,-82.411979675293,1.4713180065155,-221.670227050781,-38.3439559936523,6.07302904129028,-216.351699829102,-31.093448638916,-3.70163893699646,-168.792037963867,15.4786167144775,-23.1709651947021,-208.403930664063,-9.50076103210449,-3.59835910797119, +-195.070617675781,-0.779596984386444,-11.543327331543,-192.846405029297,7.21008682250977,-9.96010208129883,-186.874816894531,10.8828659057617,-14.6369304656982,-180.521194458008,15.1818876266479,-18.0411643981934,-173.610504150391,15.8561544418335,-21.2037734985352,-154.766662597656,19.6073207855225,-27.6123027801514,12.6100311279297,27.5175971984863,-40.0548210144043,30.8645191192627,17.6624317169189,-48.0073013305664,21.6591167449951,25.0993595123291,-43.2074317932129,39.7480888366699,13.6886405944824,-51.9588890075684,43.4130477905273,8.95470714569092,-56.8631706237793,47.2308235168457,6.02426099777222,-58.607536315918,52.9573822021484,3.15862894058228,-59.3654136657715,-220.085067749023,-69.3621978759766,-0.605307996273041,-221.676223754883,-73.7343215942383,3.43487000465393,-219.830047607422,-60.9391708374023,-3.41286110877991,-221.603225708008,-48.3933410644531,3.58577489852905,-218.079879760742,-26.2892742156982,3.74093008041382,-217.872863769531,-32.7253074645996,0.693029999732971,-163.944564819336,15.7410430908203,-25.3481788635254,-205.894683837891,-0.536220014095306,0.175915002822876,-194.0615234375,3.3914520740509,-9.84513092041016,-202.266311645508,-0.460130989551544,-3.79661798477173,-192.631393432617,11.2740039825439,-10.4190168380737,-189.825119018555,14.2298946380615,-13.0344743728638,-184.972625732422,15.5739259719849,-15.7703409194946,-177.255874633789,15.2500944137573,-19.7798347473145,-216.897750854492,-23.7235260009766,2.24600410461426,-214.307510375977,-18.485912322998,0.261831998825073,-157.938980102539,19.6411247253418,-26.1589603424072,-150.191223144531,24.9870491027832,-25.9392395019531,-141.286346435547,29.9665374755859,-26.2131652832031,22.0150527954102,28.8039226531982,-40.423957824707,37.1098289489746,23.4017925262451,-44.3031387329102,38.6976852416992,17.5586204528809,-48.3362350463867,-220.069076538086,-86.8660125732422,14.4745216369629,-221.486206054688,-82.4106826782227,8.3223991394043,-224.754531860352,-77.8725280761719,11.0693893432617,-220.560119628906,-55.2795181274414,-1.16241002082825, +-223.042358398438,-43.0165138244629,7.8608341217041,-220.589126586914,-24.797830581665,9.52590656280518,-164.056579589844,20.7087287902832,-23.4267902374268,-209.163009643555,-6.10256814956665,0.169746994972229,-198.601974487305,3.32849597930908,-5.15499114990234,-196.553771972656,10.7616548538208,-7.54785585403442,-195.685684204102,7.34432888031006,-7.17895984649658,-181.160263061523,19.8479461669922,-18.611120223999,-175.954742431641,20.436502456665,-20.4402980804443,-169.408096313477,19.9067516326904,-21.9578475952148,-154.717666625977,25.5246028900146,-24.6609134674072,-145.840789794922,30.0686473846436,-24.8555316925049,32.2112503051758,29.2276649475098,-40.4549598693848,45.6004638671875,11.6480417251587,-54.2870178222656,49.8747825622559,7.82259607315063,-57.2222023010254,-220.593124389648,-65.5548248291016,0.471192985773087,-221.669219970703,-67.9852600097656,4.02027797698975,-225.899642944336,-73.4240951538086,11.5733375549316,-221.16618347168,-54.887077331543,3.00590801239014,-223.20637512207,-37.354362487793,10.250807762146,-223.080368041992,-47.587963104248,8.33368015289307,-160.541244506836,20.2540855407715,-24.7374210357666,-208.413925170898,-0.239682003855705,3.22397994995117,-202.385330200195,3.76038908958435,-1.27755105495453,-197.309844970703,14.2428960800171,-8.9916877746582,-193.135437011719,15.5445232391357,-11.643536567688,-191.193237304688,19.0723686218262,-14.2858963012695,-212.687347412109,-9.05348682403564,5.08483219146729,-158.186004638672,24.9324436187744,-24.1657657623291,-151.553359985352,30.1956577301025,-23.8202304840088,-223.767440795898,-82.0884399414063,14.5944328308105,-223.413391113281,-68.7926406860352,7.53126192092896,-227.180755615234,-77.6665115356445,17.4599151611328,-221.328201293945,-61.4812240600586,4.66323089599609,-221.878234863281,-55.7305641174316,8.81101703643799,-224.951553344727,-38.7420959472656,13.5361299514771,-222.606323242188,-56.224006652832,11.2439050674438,-226.320678710938,-47.5468559265137,14.9504690170288,-221.634231567383,-23.5762119293213,14.162091255188, +-165.782745361328,25.2931785583496,-22.8789386749268,-161.325317382813,24.7993297576904,-23.5144996643066,-206.73176574707,4.55024576187134,2.28139710426331,-210.258117675781,-4.23900508880615,3.38918590545654,-199.213027954102,7.08272409439087,-3.99060702323914,-202.802383422852,14.8089513778687,-5.7121958732605,-183.793518066406,24.4040908813477,-19.1279716491699,-171.352294921875,24.1117630004883,-21.8284358978271,-217.301803588867,-15.0066709518433,9.03523921966553,-216.28369140625,-8.78176116943359,12.0380830764771,-156.384826660156,29.4880905151367,-23.6043090820313,-222.408309936523,-60.7827529907227,10.0223846435547,-228.318878173828,-73.3342895507813,17.4963188171387,-226.151672363281,-69.0918655395508,12.295708656311,-226.720718383789,-43.1648292541504,15.5051231384277,-223.908447265625,-29.2214622497559,19.0670738220215,-220.256088256836,-16.1803855895996,15.6415367126465,-159.755661010742,24.8658866882324,-23.8401317596436,-209.945083618164,3.55157804489136,5.76264810562134,-211.111190795898,-0.161335006356239,6.58369922637939,-203.201416015625,7.78535318374634,-1.37984097003937,-205.176605224609,19.319694519043,-6.27522087097168,-197.407852172852,19.6287231445313,-11.5315256118774,-192.215347290039,24.7489242553711,-16.2068843841553,-185.876724243164,29.4077816009521,-19.7143287658691,-176.053756713867,29.5384941101074,-21.9535484313965,-214.573516845703,-4.3004322052002,11.7006502151489,-160.786254882813,30.2812671661377,-23.4851970672607,-226.375686645508,-64.5103225708008,14.8143548965454,-227.661819458008,-38.6150856018066,20.4445056915283,-226.730728149414,-35.6741943359375,20.1726818084717,-225.355590820313,-55.794864654541,16.5317249298096,-227.172760009766,-51.6286582946777,22.3998985290527,-223.506408691406,-17.7705421447754,24.4791011810303,-221.826248168945,-14.2625980377197,21.1647777557373,-213.755447387695,8.17432117462158,7.06846618652344,-208.643951416016,10.0717868804932,0.682412981987,-207.931884765625,13.9400663375854,-2.43376493453979,-210.97917175293,19.098072052002,-2.70770192146301, +-196.997817993164,24.4741973876953,-13.6982393264771,-217.12678527832,-4.54729604721069,16.7831478118896,-226.418701171875,-60.4429244995117,17.5773258209229,-228.743911743164,-69.0028610229492,18.3856067657471,-228.473892211914,-42.8959045410156,22.3181915283203,-227.537811279297,-26.6843147277832,28.3920841217041,-224.924545288086,-19.2298851013184,27.7548236846924,-220.154067993164,-8.42757606506348,21.6012210845947,-166.596832275391,30.7680644989014,-23.2701263427734,-175.087661743164,34.0621376037598,-22.5939102172852,-213.000366210938,3.85627794265747,9.03128910064697,-214.214492797852,0.0880929976701736,11.8432645797729,-209.308013916016,26.2680721282959,-6.22945690155029,-205.304626464844,25.8872375488281,-8.39492893218994,-194.806594848633,29.1096534729004,-16.2671909332275,-216.297714233398,0.147225007414818,15.0248756408691,-229.02294921875,-64.697639465332,21.2440853118896,-229.203964233398,-33.8453178405762,27.3332824707031,-226.24967956543,-55.6383514404297,19.0674724578857,-223.147384643555,-13.3358068466187,27.520601272583,-221.949249267578,-8.28487110137939,29.0342502593994,-167.410919189453,36.2429504394531,-23.6613159179688,-213.452423095703,14.1422853469849,1.47792899608612,-216.307708740234,4.55949687957764,12.6547431945801,-213.061386108398,25.5462036132813,-3.81827092170715,-204.628570556641,32.7550086975098,-10.8264570236206,-192.609375,34.1295471191406,-17.8571453094482,-199.17903137207,29.0919513702393,-13.6321315765381,-188.068923950195,34.1892509460449,-19.4596042633057,-219.096984863281,-3.97741007804871,21.5425148010254,-218.302886962891,-0.218909993767738,18.6544303894043,-229.896041870117,-26.9765434265137,35.0069313049316,-227.871841430664,-21.5458106994629,34.0750427246094,-227.471786499023,-56.0977973937988,22.9292507171631,-224.449493408203,-14.8840579986572,31.6178016662598,-220.499114990234,-3.86658906936646,25.9976501464844,-160.173202514648,41.0225219726563,-23.8141307830811,-223.851440429688,12.0447797775269,14.7888526916504,-216.65673828125,24.1299648284912,-0.632274985313416, +-215.317596435547,33.5716896057129,-6.02025604248047,-209.46403503418,33.2064552307129,-8.46210479736328,-196.810791015625,33.1796493530273,-15.7682409286499,-179.917129516602,38.9807167053223,-21.5871124267578,-218.841949462891,4.48785018920898,15.6167335510254,-222.117279052734,-3.83518600463867,32.5280914306641,-172.904449462891,44.7431831359863,-23.0561542510986,-162.77946472168,50.384635925293,-23.5353031158447,-216.595718383789,16.8735542297363,2.97185492515564,-220.980163574219,34.8851165771484,-3.52882194519043,-209.814071655273,38.3384590148926,-9.32439994812012,-202.321334838867,34.5861892700195,-12.6323337554932,-196.956802368164,45.7873878479004,-16.3717002868652,-188.467971801758,41.504566192627,-19.6836242675781,-220.224090576172,0.386036992073059,22.2834873199463,-221.232177734375,4.65121603012085,18.82594871521,-230.334579467773,-27.2140159606934,37.405216217041,-228.631408691406,-21.2218799591064,39.0683822631836,-227.785827636719,-18.9099025726318,39.0969848632813,-222.922348022461,-8.08274173736572,38.4132690429688,-222.172271728516,0.372108995914459,27.4359912872314,-168.839050292969,46.7984848022461,-23.4584941864014,-226.801727294922,17.9447593688965,13.6164379119873,-219.649032592773,22.1387691497803,3.0669538974762,-218.280883789063,37.6904907226563,-5.76299095153809,-222.126266479492,31.070743560791,-0.802402019500732,-206.569747924805,41.463062286377,-11.0568799972534,-202.121307373047,43.1438255310059,-13.20578956604,-192.945419311523,43.420654296875,-18.2569847106934,-177.695922851563,43.8418960571289,-22.2157726287842,-229.643508911133,-23.9372463226318,39.5343284606934,-225.038558959961,-12.0189781188965,41.0453262329102,-223.961456298828,0.540175020694733,31.9728374481201,-222.992370605469,-3.59181189537048,38.6130867004395,-171.849349975586,53.9380874633789,-24.1021575927734,-165.374725341797,57.7105522155762,-24.1561641693115,-227.021743774414,12.137188911438,18.710636138916,-224.211471557617,22.6028137207031,7.35810518264771,-222.103271484375,39.8327026367188,-3.40837001800537,-224.177474975586,35.2602577209473,-0.84817898273468, +-214.482528686523,43.5552673339844,-7.80141115188599,-202.43034362793,51.6519622802734,-13.753643989563,-192.651382446289,52.1501121520996,-19.4437007904053,-189.467071533203,51.7847747802734,-20.5810127258301,-178.455001831055,53.0805015563965,-23.1422634124756,-224.186477661133,5.30941009521484,23.399995803833,-224.323486328125,-8.4962215423584,45.6792793273926,-225.208572387695,0.953049004077911,35.4808807373047,-227.107757568359,4.45927715301514,30.6046028137207,-224.009460449219,-4.1664080619812,44.4628601074219,-233.752410888672,18.1656799316406,21.2157821655273,-228.700912475586,24.8020305633545,11.0458860397339,-225.003540039063,30.5492935180664,2.26916599273682,-218.750930786133,42.1052284240723,-5.77201223373413,-211.23420715332,52.5679512023926,-10.3599109649658,-197.418838500977,52.458740234375,-16.5898208618164,-226.119674682617,0.954591989517212,39.0449295043945,-174.553619384766,57.7629623413086,-23.956844329834,-170.17317199707,60.1194915771484,-24.2490730285645,-230.948135375977,13.6792411804199,21.8775482177734,-226.894744873047,9.22166442871094,21.9523544311523,-224.75553894043,41.2885475158691,-0.860598027706146,-220.480102539063,52.5718536376953,-4.24646186828613,-226.956741333008,35.2297515869141,2.54153299331665,-218.693939208984,51.2214202880859,-5.72179698944092,-215.602630615234,52.0038948059082,-7.88098812103271,-199.661071777344,57.6421508789063,-14.6695337295532,-193.578475952148,57.6254463195801,-18.6682262420654,-190.133148193359,58.3957214355469,-20.1360683441162,-183.227462768555,57.7643623352051,-22.1824703216553,-230.381088256836,9.41892337799072,26.8680362701416,-224.308486938477,-3.76782894134521,47.9424018859863,-234.222457885742,9.73018264770508,33.7053070068359,-227.237777709961,0.851067006587982,44.681884765625,-234.014434814453,13.8769598007202,25.9842491149902,-234.72151184082,22.7147254943848,19.7373371124268,-227.850830078125,30.9502334594727,5.72828483581543,-211.225204467773,57.0534934997559,-10.0883846282959,-202.839385986328,57.658748626709,-13.1122808456421,-236.583694458008,9.89602947235107,39.6622924804688, +-175.067657470703,62.2666015625,-23.3287811279297,-236.334655761719,18.2445888519287,25.4293956756592,-233.946426391602,26.6054077148438,16.9518642425537,-229.818023681641,30.9883365631104,9.03192901611328,-225.287582397461,53.2065162658691,0.926797986030579,-228.087844848633,37.1301383972168,4.20081520080566,-216.629745483398,57.2454071044922,-6.54207706451416,-199.56005859375,66.9463577270508,-12.547625541687,-192.978424072266,67.8020477294922,-16.7671394348145,-184.66960144043,63.7968521118164,-20.8561382293701,-224.752532958984,-2.71336603164673,51.097412109375,-227.582809448242,0.799018979072571,47.3213424682617,-238.142837524414,9.8261833190918,46.4823570251465,-237.880813598633,14.0788803100586,33.4737854003906,-170.898254394531,71.7024230957031,-22.0974617004395,-237.514785766602,27.1967639923096,24.2559795379639,-230.567092895508,26.6652126312256,12.2492036819458,-241.350143432617,22.963550567627,32.7615165710449,-224.432495117188,56.1192016601563,1.00244796276093,-227.057754516602,47.7962837219238,2.88052606582642,-219.685028076172,58.9948806762695,-3.06144595146179,-212.940368652344,62.7140464782715,-7.26849889755249,-202.947387695313,66.2446899414063,-10.767050743103,-189.855117797852,66.9989624023438,-18.446102142334,-185.840713500977,67.7260360717773,-19.6476211547852,-240.281051635742,14.2288942337036,39.9523162841797,-240.260040283203,18.5009136199951,33.4486808776855,-233.934432983398,31.0389423370361,16.4911193847656,-231.932235717773,32.2799606323242,12.4922275543213,-230.411087036133,35.922420501709,9.45635986328125,-227.116760253906,57.3446197509766,5.79219102859497,-228.40087890625,52.8506813049316,6.17870903015137,-228.687911987305,47.3812408447266,6.02329397201538,-215.84765625,62.4082145690918,-5.22286796569824,-209.207000732422,61.8499603271484,-9.54935169219971,-195.8046875,79.7255096435547,-12.5285243988037,-203.349426269531,73.0951614379883,-9.18801689147949,-189.606079101563,75.1245651245117,-17.1820812225342,-180.000137329102,72.0762634277344,-20.4018955230713,-228.281875610352,1.1693149805069,53.0256996154785, +-235.633605957031,6.8239688873291,53.4622421264648,-242.339248657227,14.3665075302124,50.0324058532715,-236.960723876953,34.5767860412598,23.6630210876465,-241.314147949219,27.3453788757324,31.4708881378174,-242.125228881836,18.5243148803711,39.0990333557129,-226.767730712891,61.8991661071777,7.84932279586792,-222.802337646484,66.1094741821289,4.53642797470093,-216.667739868164,73.5391082763672,1.0874400138855,-212.847351074219,71.3841934204102,-3.34124398231506,-207.589859008789,67.7731475830078,-8.17803764343262,-200.787185668945,80.7682113647461,-9.57892513275146,-185.887710571289,75.7730255126953,-18.490608215332,-239.50798034668,10.0836877822876,53.6488609313965,-171.603332519531,81.789909362793,-21.0905647277832,-241.252151489258,33.1320457458496,31.1570568084717,-234.810501098633,39.7778968811035,19.9985637664795,-243.255340576172,27.4021854400635,36.9109191894531,-243.188339233398,22.7583293914795,39.1864433288574,-232.088241577148,42.3697509765625,14.8745622634888,-230.533096313477,52.1665115356445,12.292407989502,-229.787017822266,61.8225593566895,13.8107566833496,-220.319091796875,73.2378768920898,4.68277311325073,-207.379821777344,71.9603500366211,-6.97069978713989,-196.540771484375,85.2272567749023,-11.6652393341064,-187.765899658203,81.3761749267578,-16.4902114868164,-206.983795166016,76.0706558227539,-6.00047492980957,-232.01123046875,4.72611284255981,59.0019874572754,-237.794815063477,9.10772228240967,61.100887298584,-243.972412109375,18.4269065856934,49.7470779418945,-242.253234863281,13.7532472610474,54.1883125305176,-238.437881469727,37.3055534362793,26.2379741668701,-242.769302368164,32.1437492370605,34.2554588317871,-229.574005126953,65.4731140136719,13.7696533203125,-226.348678588867,66.3335037231445,9.13180923461914,-226.335678100586,74.7497253417969,11.660945892334,-213.115386962891,77.2583694458008,-0.579203009605408,-217.432815551758,80.829216003418,4.82164621353149,-199.796096801758,86.3231582641602,-9.87361431121826,-188.50798034668,86.0832366943359,-15.3212976455688,-207.438842773438,80.6854019165039,-4.35166311264038, +-176.408782958984,85.6139907836914,-19.1587734222412,-240.826095581055,11.7349500656128,58.7819633483887,-241.590179443359,42.2979431152344,30.2256660461426,-235.762619018555,43.9704093933105,21.5018100738525,-231.98323059082,50.6291618347168,15.5159244537354,-245.246536254883,31.0917453765869,42.1000328063965,-244.708480834961,35.6660957336426,38.2016448974609,-245.210525512695,25.4567947387695,46.6661758422852,-232.818328857422,60.2140007019043,19.1229763031006,-221.397201538086,80.2300567626953,8.48593521118164,-203.280426025391,85.2500534057617,-7.14482688903809,-195.357650756836,94.9902114868164,-12.3819103240967,-182.867431640625,85.479377746582,-17.366397857666,-171.773345947266,90.7146911621094,-19.6544227600098,-242.355255126953,14.4045124053955,63.4946250915527,-244.505462646484,18.369701385498,56.120002746582,-243.25634765625,15.1189823150635,58.8544731140137,-236.647689819336,47.9223976135254,22.4266014099121,-244.168441772461,40.0116233825684,35.9598274230957,-245.444564819336,22.4358997344971,52.8429794311523,-232.482284545898,70.8010330200195,17.6652355194092,-228.458892822266,70.3166885375977,12.6072387695313,-224.238479614258,81.2567672729492,12.1729955673218,-213.920455932617,85.8155059814453,3.6334400177002,-219.287994384766,90.8015975952148,9.89113330841064,-202.580352783203,93.3250503540039,-7.43042421340942,-199.702072143555,96.1826248168945,-9.51980876922607,-187.607879638672,93.728889465332,-15.3946046829224,-179.235076904297,91.1462326049805,-17.8143405914307,-210.476119995117,84.0630416870117,-0.302794992923737,-207.005798339844,84.2079544067383,-3.78154706954956,-239.541976928711,11.5419311523438,65.6369323730469,-238.865905761719,50.1344146728516,26.333984375,-246.955703735352,27.4637908935547,53.1895141601563,-247.531753540039,35.7888069152832,49.6837730407715,-246.909698486328,40.4195594787598,47.298038482666,-242.759292602539,45.4556541442871,33.0637435913086,-234.400482177734,53.2029151916504,19.7690391540527,-236.077651977539,63.2070960998535,24.3225860595703,-231.221160888672,74.9738464355469,17.2313919067383, +-227.488784790039,79.4559783935547,15.3617086410522,-222.258285522461,88.2711486816406,12.1897983551025,-205.870681762695,89.1858444213867,-3.97924590110779,-197.209823608398,100.697868347168,-10.1453895568848,-189.703094482422,99.0498046875,-14.3431024551392,-175.559707641602,95.7102737426758,-19.2306804656982,-241.884216308594,14.444016456604,67.551025390625,-244.891494750977,19.0730686187744,61.5632362365723,-247.220733642578,26.1654644012451,57.834171295166,-247.664779663086,31.59889793396,52.1200103759766,-244.538467407227,44.11572265625,38.2497482299805,-237.002731323242,58.0257873535156,24.8868427276611,-235.156555175781,71.1448745727539,23.3057861328125,-225.296569824219,84.7372970581055,15.5512266159058,-213.75244140625,94.7314834594727,7.58614683151245,-220.369110107422,93.244743347168,12.2740058898926,-204.242523193359,97.5860595703125,-4.66934394836426,-201.728271484375,98.4999542236328,-7.27395915985107,-193.389450073242,100.344833374023,-12.4268140792847,-183.214462280273,95.1014175415039,-16.8264465332031,-184.975631713867,101.092903137207,-16.635124206543,-209.440032958984,89.0486297607422,0.813151001930237,-169.532119750977,95.2790374755859,-20.2645816802979,-244.115417480469,18.0391674041748,68.4727096557617,-240.494079589844,61.5870361328125,33.3037643432617,-247.961807250977,41.5078659057617,53.8419799804688,-248.698883056641,32.3392715454102,59.3311157226563,-246.462646484375,49.122314453125,48.2240295410156,-243.11833190918,60.0451812744141,40.3354568481445,-237.503784179688,66.4079055786133,27.701717376709,-233.61540222168,75.1329650878906,21.6254234313965,-229.757019042969,79.476188659668,18.5250186920166,-226.389678955078,85.6366958618164,18.5440216064453,-222.931350708008,92.9249114990234,16.1052837371826,-207.585845947266,92.9954071044922,-0.421436011791229,-199.137008666992,107.866569519043,-6.06702089309692,-194.541564941406,105.27131652832,-10.2793035507202,-189.133041381836,105.26131439209,-13.9410619735718,-173.236480712891,99.5722579956055,-21.3248863220215,-180.567199707031,99.209716796875,-18.3872985839844, +-239.671997070313,15.2694959640503,75.4085922241211,-242.875305175781,19.5306148529053,76.6336135864258,-245.956604003906,22.7436275482178,71.16748046875,-247.438766479492,26.1537628173828,61.8466644287109,-239.139938354492,65.7048416137695,31.2707672119141,-249.03190612793,36.2229461669922,59.3768196105957,-244.790496826172,55.5285415649414,44.689582824707,-235.260559082031,75.2702789306641,26.5575046539307,-237.410766601563,70.83154296875,29.8309268951416,-232.126251220703,79.5854949951172,22.9635543823242,-214.173492431641,101.402931213379,12.1476936340332,-211.359222412109,101.217918395996,8.76888275146484,-220.123077392578,97.0889129638672,15.2329959869385,-202.496353149414,107.71656036377,-2.91351199150085,-206.491744995117,105.857376098633,2.03601288795471,-185.154663085938,106.154396057129,-17.4364051818848,-209.074996948242,101.237915039063,5.47259998321533,-177.421890258789,100.227821350098,-20.2159786224365,-241.081130981445,66.583122253418,37.8875160217285,-249.376937866211,42.705883026123,61.4702262878418,-248.096817016602,49.4665489196777,58.6048431396484,-248.639862060547,31.4160785675049,64.265495300293,-246.447647094727,53.3768310546875,51.0408058166504,-243.872406005859,62.2837028503418,45.6087760925293,-227.231781005859,86.6089859008789,21.7438335418701,-222.516296386719,96.0966110229492,18.8730545043945,-217.617828369141,101.775970458984,16.6169319152832,-204.868576049805,107.175506591797,-0.0565220005810261,-204.129501342773,113.441116333008,0.366984993219376,-196.666778564453,109.840766906738,-7.25186681747437,-192.341354370117,110.23380279541,-10.7931537628174,-182.029342651367,104.752258300781,-20.0486602783203,-187.425872802734,110.066787719727,-16.7978420257568,-177.920944213867,104.39323425293,-23.3788871765137,-244.534469604492,23.8050327301025,81.1440505981445,-248.159820556641,30.2506637573242,74.3799896240234,-242.967315673828,66.5253143310547,46.4575538635254,-239.246948242188,70.9248504638672,36.4944763183594,-249.67497253418,38.3533592224121,65.0983810424805,-245.080520629883,57.9561805725098,48.8288879394531, +-236.601684570313,75.0813522338867,32.5444946289063,-233.832412719727,79.7389144897461,29.1790618896484,-227.940841674805,87.7336959838867,25.6647186279297,-211.756256103516,105.68635559082,10.7539577484131,-214.175491333008,106.425430297852,14.8639612197876,-208.926971435547,114.797248840332,6.97096681594849,-200.358139038086,117.567520141602,-1.83548605442047,-189.304046630859,110.450828552246,-14.1510829925537,-185.282653808594,109.872764587402,-20.2323799133301,-171.112274169922,101.726974487305,-24.1618633270264,-247.036712646484,28.0262470245361,78.2379684448242,-240.513076782227,71.0926666259766,43.1539344787598,-250,44.7118835449219,69.8606491088867,-249.277923583984,49.0748100280762,65.2575988769531,-248.569869995117,53.2269134521484,65.8103485107422,-249.558959960938,36.5356826782227,71.2470855712891,-246.611663818359,57.8107643127441,58.4928321838379,-243.564376831055,65.9352645874023,51.1812210083008,-231.261169433594,83.8954162597656,29.558801651001,-223.989456176758,97.5170593261719,27.3348827362061,-216.60173034668,106.232406616211,19.1161766052246,-220.465103149414,102.110000610352,22.6551246643066,-204.900573730469,118.89665222168,3.35526299476624,-195.232635498047,114.713241577148,-7.6895899772644,-191.408264160156,114.076179504395,-13.1943893432617,-183.669509887695,109.648742675781,-23.4450931549072,-187.870910644531,113.831153869629,-20.6742210388184,-174.494598388672,104.20320892334,-26.7236156463623,-245.227523803711,27.2823734283447,84.1345520019531,-248.127822875977,31.7934150695801,78.9816436767578,-241.947204589844,70.598518371582,52.0780067443848,-238.068832397461,75.024658203125,39.7814025878906,-249.955001831055,40.352954864502,71.7285308837891,-244.707489013672,62.2588996887207,54.7500686645508,-235.023544311523,79.6187057495117,37.1344413757324,-232.210266113281,84.3956680297852,36.9976272583008,-229.59700012207,88.378059387207,34.2912635803223,-226.556701660156,93.2774429321289,30.322774887085,-213.535430908203,110.708847045898,14.4617204666138,-215.068572998047,108.470626831055,16.788948059082, +-210.356109619141,112.671043395996,8.89524555206299,-199.151016235352,123.308082580566,-0.980812013149261,-197.638870239258,118.721633911133,-4.16499376296997,-191.547286987305,118.695625305176,-17.81494140625,-182.181350708008,109.556732177734,-27.3062725067139,-178.344985961914,106.083389282227,-26.9521389007568,-246.849700927734,31.677604675293,84.2638549804688,-248.966903686523,36.0900344848633,79.0991516113281,-239.643981933594,75.037353515625,53.5322494506836,-235.790618896484,80.0420455932617,42.9796142578125,-249.636978149414,42.180835723877,77.2607727050781,-249.402938842773,49.3480377197266,72.9871597290039,-246.027618408203,63.031177520752,64.8714599609375,-243.56037902832,66.7638473510742,58.2272109985352,-225.81364440918,97.6676635742188,32.8908271789551,-222.5283203125,101.696960449219,28.2008666992188,-220.229095458984,106.019393920898,26.1076622009277,-215.635635375977,110.829360961914,18.839448928833,-208.839981079102,122.515007019043,10.121696472168,-211.201202392578,119.370697021484,12.3338117599487,-198.274932861328,128.184555053711,-0.0709120035171509,-195.646682739258,119.790740966797,-7.46060705184937,-193.711502075195,118.580619812012,-11.5899324417114,-185.965728759766,116.019371032715,-30.691104888916,-190.178146362305,118.950660705566,-23.6108093261719,-174.789627075195,106.930473327637,-36.5478782653809,-243.42936706543,31.986234664917,92.4967651367188,-247.671768188477,35.6347923278809,84.8294219970703,-240.840103149414,73.289176940918,60.0800895690918,-238.593887329102,75.4532470703125,46.7844390869141,-248.245834350586,55.7099571228027,70.3581008911133,-233.694396972656,84.1036376953125,42.8167991638184,-230.811126708984,88.5288772583008,39.3107566833496,-228.431884765625,92.8312911987305,36.2123527526855,-224.037460327148,101.710960388184,31.4775886535645,-217.73583984375,110.94987487793,23.2171783447266,-204.243515014648,127.778518676758,7.32379198074341,-196.705780029297,123.131065368652,-4.8000168800354,-188.266967773438,119.00365447998,-29.945629119873,-193.589477539063,123.846138000488,-14.6235294342041, +-191.119232177734,123.937149047852,-23.1730651855469,-184.635589599609,115.776344299316,-34.7909049987793,-179.5380859375,109.284713745117,-34.7691040039063,-248.490844726563,40.1432342529297,83.1814498901367,-237.662796020508,79.7558135986328,56.2140121459961,-236.674697875977,79.8138198852539,50.4149436950684,-248.017807006836,51.9583930969238,81.0255432128906,-247.992797851563,55.7061576843262,76.2332763671875,-246.775680541992,61.2414016723633,72.2432861328125,-245.059509277344,66.0947799682617,66.0450744628906,-225.99365234375,101.893989562988,35.1671485900879,-228.449890136719,97.1701202392578,38.5196762084961,-222.792327880859,106.182403564453,30.6490077972412,-216.411712646484,115.876350402832,20.5106143951416,-214.635543823242,119.461700439453,17.4142112731934,-220.177093505859,111.386917114258,26.8243312835693,-212.945373535156,123.348083496094,15.3833112716675,-210.587142944336,128.019546508789,14.0629816055298,-196.389755249023,127.511497497559,-4.62326908111572,-201.890289306641,132.240951538086,7.94137191772461,-189.921112060547,123.339088439941,-33.1617469787598,-191.84130859375,123.446098327637,-19.5630130767822,-190.922225952148,122.722023010254,-26.2991733551025,-189.298049926758,123.331085205078,-37.7592964172363,-177.476898193359,109.373718261719,-39.3826560974121,-243.756393432617,36.5733833312988,94.8530960083008,-244.603469848633,41.7800941467285,94.7685852050781,-238.218841552734,79.377685546875,60.8653717041016,-237.168746948242,79.7848205566406,53.3144798278809,-234.83251953125,84.2623519897461,47.9670028686523,-247.682769775391,47.5255584716797,84.8361206054688,-244.477462768555,67.5856246948242,68.4712066650391,-233.395370483398,88.4506683349609,46.0959205627441,-230.760116577148,92.9698104858398,41.9577140808105,-225.422592163086,106.480438232422,34.1292495727539,-205.411636352539,132.222961425781,12.1874980926514,-194.27653503418,130.972839355469,-12.9050607681274,-196.321731567383,132.399963378906,-0.938099980354309,-197.862884521484,132.558990478516,2.22167110443115,-190.281158447266,123.771133422852,-29.6049976348877, +-191.911315917969,127.857528686523,-18.056266784668,-190.258148193359,128.270568847656,-22.3572883605957,-190.225143432617,127.297477722168,-26.297872543335,-182.786407470703,114.827255249023,-38.9752159118652,-175.548706054688,108.936676025391,-42.2238349914551,-244.116424560547,49.6311645507813,96.7875900268555,-236.985717773438,84.0864410400391,58.21630859375,-239.851013183594,75.7444229125977,64.0876846313477,-236.830215454102,81.9501342773438,54.3156280517578,-245.08251953125,58.3987236022949,87.8190078735352,-245.968612670898,53.6497573852539,88.3139572143555,-244.248443603516,62.5954322814941,85.9106216430664,-232.042251586914,101.622955322266,46.254035949707,-227.913833618164,106.276412963867,37.5589866638184,-232.072250366211,97.2671279907227,45.9112014770508,-222.766326904297,113.539123535156,29.0754528045654,-218.110870361328,119.270690917969,22.5623149871826,-216.280685424805,124.174171447754,19.4805126190186,-216.546722412109,128.271575927734,20.6361255645752,-211.846267700195,132.186950683594,18.6680335998535,-194.879608154297,132.288970947266,-9.13643074035645,-195.044616699219,133.241058349609,-5.11535787582397,-200.56916809082,136.059341430664,11.6390447616577,-197.432846069336,136.285354614258,6.46714687347412,-192.685394287109,132.358963012695,-17.1916809082031,-190.067123413086,127.476486206055,-34.7462043762207,-188.286956787109,123.274078369141,-44.0652160644531,-180.103149414063,112.967071533203,-42.9110984802246,-244.766479492188,45.1982307434082,94.8712005615234,-237.464767456055,84.2064514160156,64.7943496704102,-237.790817260742,80.0696411132813,69.2394866943359,-235.909118652344,84.1744003295898,53.0916557312012,-234.932525634766,88.5200729370117,51.1535148620605,-244.272445678711,66.9032516479492,74.9149398803711,-242.083221435547,71.4693069458008,72.5722122192383,-233.779418945313,93.0695190429688,48.4119491577148,-228.422882080078,114.948257446289,34.0471420288086,-203.820465087891,136.026336669922,15.9031620025635,-193.737487792969,136.837417602539,-12.1920909881592,-195.019622802734,137.001434326172,2.29103803634644, +-193.862487792969,137.246444702148,-1.98599100112915,-193.276443481445,136.8994140625,-16.2937927246094,-190.013122558594,127.642501831055,-41.5903701782227,-189.02001953125,132.288970947266,-30.7953128814697,-191.276245117188,132.433990478516,-20.292085647583,-190.084121704102,131.937927246094,-24.1043586730957,-177.166854858398,110.752853393555,-46.8650894165039,-237.074737548828,88.5260772705078,58.8403663635254,-239.598983764648,75.5694046020508,71.3712005615234,-242.83430480957,53.1541061401367,100.387840270996,-242.218246459961,60.3085098266602,96.6799774169922,-242.35725402832,66.9693603515625,86.5323791503906,-234.687515258789,97.2318267822266,50.4257431030273,-232.713302612305,106.111396789551,46.1147232055664,-231.512191772461,115.135284423828,37.4780769348145,-223.293380737305,119.643730163574,28.5489025115967,-220.583114624023,123.73112487793,25.3766918182373,-220.669128417969,128.035537719727,26.6833190917969,-217.773849487305,131.797912597656,24.9543495178223,-210.105102539063,135.81330871582,22.8762454986572,-192.640380859375,140.549774169922,-9.05357360839844,-196.614776611328,139.289657592773,13.6500406265259,-195.839691162109,138.782592773438,9.49694442749023,-192.478378295898,140.784790039063,5.73438596725464,-192.694381713867,137.427474975586,-19.9349498748779,-188.998016357422,131.482879638672,-40.7936935424805,-189.070037841797,131.92692565918,-35.126838684082,-190.022125244141,127.614501953125,-45.9909057617188,-180.588195800781,114.22119140625,-47.9430923461914,-236.695709228516,84.4049682617188,71.8833465576172,-237.86181640625,90.6603775024414,63.2663040161133,-238.403869628906,75.6956176757813,78.3207778930664,-235.839614868164,92.864501953125,53.4751434326172,-237.154739379883,99.019401550293,53.2897262573242,-233.683395385742,115.198287963867,40.9055137634277,-231.989227294922,119.401702880859,37.3732643127441,-215.382614135742,134.438171386719,26.174768447876,-199.001998901367,139.283645629883,17.9677639007568,-192.882400512695,140.663772583008,-13.9086589813232,-192.111328125,140.705795288086,-0.254907995462418, +-192.772384643555,141.717880249023,-18.7259311676025,-188.960021972656,132.07194519043,-45.9986038208008,-190.325164794922,136.389373779297,-34.5380783081055,-193.00341796875,140.309753417969,-24.1176586151123,-191.172241210938,136.845413208008,-28.2055606842041,-189.740097045898,126.954444885254,-48.7136688232422,-186.493774414063,122.651016235352,-51.4677391052246,-177.69792175293,112.425018310547,-53.2799186706543,-236.050628662109,80.0956497192383,78.6699066162109,-237.503784179688,88.7757949829102,68.1201782226563,-238.162841796875,92.8416976928711,60.0542907714844,-241.509170532227,56.8108673095703,104.468238830566,-240.314056396484,63.0209770202637,101.904991149902,-240.154037475586,71.0885620117188,86.9093170166016,-234.357482910156,110.356811523438,46.4444541931152,-236.276657104492,106.740463256836,50.8736877441406,-224.252487182617,123.86213684082,30.3046741485596,-228.085845947266,123.714126586914,34.4423789978027,-221.944259643555,132.589004516602,33.7769165039063,-217.246795654297,135.719299316406,32.3108711242676,-211.438217163086,137.499465942383,28.9336395263672,-204.533554077148,139.321655273438,25.8997402191162,-191.10823059082,144.167129516602,-9.42257976531982,-192.343353271484,141.897903442383,16.3984107971191,-190.932220458984,141.962921142578,11.604040145874,-189.759094238281,143.658081054688,1.9750269651413,-189.215057373047,136.205352783203,-40.3234481811523,-187.932922363281,136.519378662109,-46.0250053405762,-189.070037841797,132.626007080078,-51.6567573547363,-180.761215209961,117.975555419922,-58.1997985839844,-234.94352722168,84.3254623413086,78.7807235717773,-236.851715087891,91.7631988525391,73.3252868652344,-238.357864379883,93.0125198364258,66.409309387207,-239.574981689453,97.1842193603516,59.9158744812012,-237.325759887695,93.1044235229492,56.8869781494141,-235.418563842773,80.0481414794922,82.6746063232422,-238.49186706543,65.9880676269531,105.643356323242,-239.074935913086,71.7082290649414,91.2284469604492,-236.794708251953,112.955070495605,50.9788970947266,-238.121841430664,101.890983581543,53.6110572814941, +-234.57649230957,119.483711242676,41.2910499572754,-232.655303955078,123.694122314453,39.6671905517578,-224.480499267578,128.33757019043,32.8596229553223,-196.33073425293,141.312835693359,21.4041023254395,-191.832290649414,145.352233886719,-16.330696105957,-190.179138183594,144.202133178711,-3.25742602348328,-188.097930908203,143.87109375,7.52317094802856,-193.696472167969,144.533157348633,-29.3353710174561,-188.691986083984,137.124435424805,-43.3578453063965,-187.534881591797,136.514389038086,-49.3215293884277,-193.045425415039,141.044830322266,-30.8097152709961,-192.489379882813,141.075820922852,-38.9826164245605,-189.530090332031,128.175552368164,-52.1377029418945,-185.380676269531,123.142066955566,-57.857063293457,-176.176773071289,113.677139282227,-58.3278121948242,-238.012832641602,93.766487121582,69.9016571044922,-240.24104309082,98.5613555908203,64.4934234619141,-239.675003051758,100.86589050293,56.6842575073242,-233.610397338867,80.3610763549805,91.3873596191406,-236.436676025391,119.700729370117,45.6325759887695,-238.60888671875,106.299415588379,54.3935317993164,-229.544998168945,128.341567993164,39.1612396240234,-221.322189331055,136.393371582031,41.7311935424805,-224.597518920898,132.824020385742,38.3002586364746,-213.814468383789,138.692596435547,37.1012382507324,-207.626846313477,140.862808227539,36.8996200561523,-196.290740966797,142.357940673828,26.3395843505859,-192.448364257813,147.408447265625,-23.7495231628418,-187.641906738281,147.771484375,-5.93965816497803,-188.07893371582,143.625061035156,17.8016471862793,-185.852722167969,144.131134033203,12.9001684188843,-186.959823608398,147.194412231445,-1.69279205799103,-185.658706665039,146.332336425781,3.83094906806946,-190.686187744141,140.957809448242,-46.1178169250488,-189.3720703125,140.913803100586,-49.4137382507324,-194.535568237305,145.623260498047,-42.317943572998,-188.865005493164,127.634506225586,-56.3229179382324,-189.539077758789,131.561889648438,-55.2021064758301,-187.24885559082,136.661392211914,-52.5510444641113,-184.116546630859,122.786033630371,-62.9032592773438, +-180.137145996094,118.606620788574,-62.6533355712891,-233.655395507813,88.415168762207,82.3713760375977,-233.477386474609,84.144645690918,83.854118347168,-239.100936889648,101.63695526123,72.7949371337891,-240.848098754883,102.281028747559,61.6789474487305,-236.479675292969,71.9459533691406,101.559951782227,-233.125350952148,80.1351470947266,95.5088653564453,-237.524780273438,111.103889465332,53.3125305175781,-238.969924926758,119.817741394043,54.9751892089844,-236.258666992188,124.199165344238,45.78369140625,-234.301467895508,128.290573120117,45.9313049316406,-189.216049194336,148.272521972656,-12.7917490005493,-191.313247680664,148.183532714844,-18.5165119171143,-183.719497680664,145.682281494141,9.1388692855835,-193.690475463867,148.445541381836,-31.092342376709,-194.309539794922,145.612274169922,-37.4599647521973,-194.511566162109,145.93229675293,-45.8219871520996,-188.135940551758,141.040817260742,-52.6149482727051,-187.738906860352,135.536270141602,-55.684455871582,-187.852920532227,127.697509765625,-62.922061920166,-175.026657104492,115.292297363281,-64.6778335571289,-234.760513305664,93.2709426879883,80.9033279418945,-240.470077514648,101.690963745117,67.9258575439453,-236.028625488281,97.4536514282227,78.4415893554688,-239.922012329102,106.311416625977,57.4791374206543,-234.524490356445,75.86962890625,102.594062805176,-231.747222900391,84.656494140625,90.6960906982422,-238.644882202148,115.028266906738,56.0174942016602,-237.895812988281,123.636116027832,50.5563583374023,-239.482971191406,110.858863830566,58.2641143798828,-228.585891723633,131.925918579102,41.8078994750977,-218.550918579102,138.973617553711,47.3210411071777,-226.246673583984,133.779113769531,41.945011138916,-198.710983276367,143.582061767578,36.9672241210938,-192.109329223633,144.163131713867,30.2944736480713,-190.157150268555,152.480941772461,-22.2224731445313,-183.621505737305,150.608749389648,-5.23023891448975,-185.299667358398,151.297836303711,-10.139289855957,-183.101440429688,149.032608032227,-0.241210997104645,-191.876312255859,152.331924438477,-27.2499656677246, +-193.55046081543,145.462249755859,-49.429141998291,-192.431350708008,145.516250610352,-52.7144622802734,-195.364654541016,150.211730957031,-43.819393157959,-188.363967895508,132.695999145508,-61.6159362792969,-187.004821777344,140.525756835938,-56.0980949401855,-182.638397216797,122.541007995605,-70.0221557617188,-178.046951293945,118.372596740723,-68.5731201171875,-232.378280639648,88.9189147949219,86.4900817871094,-233.913436889648,93.284538269043,84.8855209350586,-239.631988525391,108.64965057373,73.8635406494141,-238.910919189453,105.191307067871,76.00634765625,-240.709091186523,106.349418640137,67.3384017944336,-240.89811706543,106.356422424316,62.5759353637695,-233.164352416992,79.9672317504883,99.6101608276367,-234.678497314453,75.0774536132813,107.842575073242,-232.369766235352,82.6812057495117,95.4324035644531,-238.534881591797,124.902236938477,54.0393981933594,-239.666000366211,115.456314086914,60.4548263549805,-236.369659423828,128.584609985352,51.5139503479004,-231.414184570313,131.98893737793,46.8389930725098,-227.669815063477,134.812210083008,47.8537902832031,-211.399215698242,141.976913452148,50.4710464477539,-189.204055786133,151.511840820313,-18.2922897338867,-185.651702880859,153.798080444336,-15.6280279159546,-193.714492797852,152.772964477539,-34.4143676757813,-195.797698974609,149.982696533203,-49.4564437866211,-190.550170898438,145.17822265625,-56.1791000366211,-186.258758544922,137.491470336914,-61.4573211669922,-188.583984375,131.440872192383,-64.9476623535156,-186.403778076172,127.511497497559,-73.8439254760742,-172.704437255859,116.070373535156,-71.544807434082,-236.567687988281,100.300827026367,79.7852249145508,-233.797409057617,78.9407348632813,105.68635559082,-231.614196777344,85.2272567749023,95.3559494018555,-231.721221923828,88.2805480957031,89.5790863037109,-239.529983520508,123.761131286621,59.0663909912109,-239.921005249023,119.229682922363,61.5830383300781,-234.508499145508,131.437881469727,53.0530014038086,-225.6826171875,136.660400390625,53.4675445556641,-217.629837036133,139.765701293945,50.3597412109375, +-186.519775390625,156.333312988281,-21.0210571289063,-189.307052612305,156.06428527832,-25.0576515197754,-180.564193725586,153.553039550781,-8.52104091644287,-181.66130065918,156.911376953125,-16.1130752563477,-191.691299438477,156.791366577148,-32.2103538513184,-195.580673217773,150.02668762207,-52.7054595947266,-195.118637084961,150.083709716797,-55.9050750732422,-195.687683105469,154.943176269531,-48.8791885375977,-188.233947753906,132.128952026367,-66.3816070556641,-185.994735717773,141.008819580078,-59.6554412841797,-184.072555541992,124.52320098877,-75.9228363037109,-179.557113647461,120.946846008301,-75.3433837890625,-233.589401245117,93.1975326538086,88.8411102294922,-236.314666748047,99.2340240478516,84.4588851928711,-239.600982666016,111.043876647949,80.8861312866211,-240.104019165039,112.234001159668,70.0416717529297,-238.411880493164,105.559349060059,79.2965774536133,-240.400054931641,110.415817260742,63.5734329223633,-232.528289794922,84.6993026733398,101.319931030273,-238.038833618164,127.814529418945,59.5899429321289,-240.042526245117,116.643432617188,64.0387344360352,-231.226150512695,133.914123535156,54.4622421264648,-215.190582275391,141.052825927734,55.5557479858398,-193.32844543457,156.916381835938,-37.5752792358398,-196.296737670898,154.520141601563,-54.7431602478027,-194.106521606445,149.971694946289,-59.0840873718262,-185.231658935547,140.983810424805,-62.8771553039551,-187.32585144043,145.319229125977,-62.1404838562012,-186.782806396484,131.823928833008,-79.1031494140625,-186.603790283203,128.210556030273,-78.0697479248047,-174.568618774414,118.693626403809,-78.2273635864258,-240.072021484375,115.591331481934,77.6705169677734,-240.164047241211,114.057174682617,66.4944229125977,-233.643402099609,84.0695419311523,108.165603637695,-231.898239135742,88.4672698974609,96.5746612548828,-234.151443481445,95.4498519897461,93.6396789550781,-239.602981567383,123.85213470459,62.9085693359375,-240.387054443359,119.963760375977,69.4022979736328,-233.992431640625,132.539978027344,63.9001655578613,-222.86735534668,138.326553344727,59.6638526916504, +-228.233871459961,135.890319824219,59.6050453186035,-187.10383605957,160.363723754883,-28.1355514526367,-190.690185546875,161.321807861328,-35.9846229553223,-196.51676940918,154.54914855957,-59.1759948730469,-192.318359375,149.812683105469,-62.2570953369141,-195.816696166992,159.389617919922,-54.8216667175293,-184.768615722656,141.006820678711,-66.1641845703125,-185.420669555664,136.548385620117,-76.5491943359375,-185.640701293945,127.034454345703,-81.0040283203125,-181.986328125,122.954048156738,-79.2008590698242,-177.828918457031,120.526809692383,-80.3164672851563,-237.327774047852,100.718872070313,88.2432479858398,-238.916915893555,107.056488037109,82.8261184692383,-239.575973510742,115.011268615723,82.6231994628906,-239.926010131836,119.177680969238,75.8868408203125,-233.609405517578,90.7264862060547,106.692459106445,-232.900329589844,92.8931045532227,95.5963745117188,-237.10173034668,129.102645874023,64.8163604736328,-216.480728149414,140.761795043945,62.9462738037109,-188.995025634766,161.300811767578,-32.7001991271973,-184.228561401367,164.22509765625,-31.1271457672119,-194.706588745117,157.824478149414,-45.7948837280273,-192.261337280273,160.628753662109,-39.111629486084,-196.105728149414,154.401138305664,-62.3553085327148,-196.861801147461,158.933578491211,-62.0131721496582,-184.287567138672,141.185836791992,-70.37109375,-185.704696655273,145.35124206543,-65.3570938110352,-187.977935791016,149.172622680664,-67.5663223266602,-184.459579467773,136.493377685547,-86.7991027832031,-173.849548339844,119.315696716309,-84.7379989624023,-239.163940429688,110.483825683594,85.9254302978516,-239.420959472656,119.631729125977,79.4028854370117,-233.371368408203,94.0127105712891,101.177925109863,-234.726501464844,97.7854843139648,95.2936401367188,-237.622787475586,102.115013122559,90.2886505126953,-239.488967895508,124.244178771973,68.4077072143555,-236.390670776367,128.759613037109,70.8399429321289,-228.085845947266,135.842300415039,67.1106796264648,-230.688110351563,134.581176757813,64.3018035888672,-216.126678466797,140.759796142578,67.567626953125, +-193.327453613281,161.23779296875,-44.3136367797852,-186.277755737305,165.853256225586,-36.0984306335449,-189.415069580078,165.009170532227,-39.8014945983887,-194.94059753418,154.366119384766,-65.5533218383789,-194.478561401367,162.952972412109,-51.4613380432129,-195.941711425781,163.635040283203,-60.82275390625,-184.589599609375,145.363235473633,-68.5429077148438,-183.557495117188,140.815795898438,-77.6686096191406,-186.324768066406,131.370880126953,-84.3166580200195,-183.249450683594,123.964149475098,-84.2662506103516,-179.261077880859,121.181869506836,-86.7082977294922,-176.640823364258,120.048767089844,-85.0726318359375,-238.839904785156,106.441429138184,86.9414291381836,-238.277862548828,114.805252075195,87.5402755737305,-238.095840454102,119.341697692871,84.2461624145508,-238.554870605469,124.103164672852,74.9176406860352,-233.590408325195,97.1288223266602,103.489143371582,-233.955429077148,97.4456481933594,98.8010864257813,-235.348571777344,101.635955810547,97.1720275878906,-232.166244506836,132.751022338867,70.410400390625,-197.049819946289,158.916580200195,-65.58251953125,-197.084808349609,163.606033325195,-68.3178863525391,-183.834518432617,145.389251708984,-71.7290191650391,-193.135437011719,154.3701171875,-68.766731262207,-183.05744934082,145.318237304688,-76.6801147460938,-182.76741027832,140.978805541992,-86.0108261108398,-185.769714355469,131.862930297852,-87.6829833984375,-185.927734375,127.505493164063,-85.1253356933594,-174.13557434082,119.979759216309,-91.1815338134766,-237.80680847168,109.886764526367,91.0438232421875,-236.868728637695,124.160171508789,80.6319046020508,-233.170349121094,100.14281463623,108.037590026855,-237.6748046875,105.767364501953,92.0981292724609,-234.409484863281,128.575607299805,77.2954788208008,-222.785339355469,137.51448059082,72.5632171630859,-192.589370727539,166.486312866211,-50.0671005249023,-186.402770996094,170.106658935547,-44.2887382507324,-190.807205200195,165.798248291016,-44.4118499755859,-196.650772094727,158.903564453125,-68.7407302856445,-194.347549438477,166.30029296875,-56.7044525146484, +-195.191635131836,171.110763549805,-68.6074142456055,-186.057739257813,149.778686523438,-71.8760375976563,-189.160034179688,153.49104309082,-73.3584823608398,-182.563400268555,144.894195556641,-82.4856719970703,-183.841522216797,136.087341308594,-91.4452514648438,-184.830627441406,130.822814941406,-91.0704193115234,-182.935424804688,124.010154724121,-88.1919403076172,-235.787612915039,114.054176330566,93.4457626342773,-234.545486450195,118.549621582031,92.4558563232422,-234.881530761719,122.234977722168,87.6024856567383,-233.365371704102,101.90699005127,104.603256225586,-234.126449584961,102.316024780273,101.122917175293,-233.931427001953,105.477340698242,101.501953125,-230.464096069336,132.306976318359,76.6580200195313,-225.691619873047,135.360260009766,76.6232147216797,-193.714492797852,169.95964050293,-60.9583702087402,-196.667770385742,167.69743347168,-70.9827575683594,-184.733612060547,149.743682861328,-75.0586547851563,-195.713684082031,158.821563720703,-71.9618453979492,-183.293472290039,149.754684448242,-81.4552764892578,-181.527282714844,140.643783569336,-95.6468734741211,-181.526290893555,145.293243408203,-88.8291015625,-184.757614135742,127.405479431152,-89.4521636962891,-181.599304199219,124.068153381348,-92.2012329101563,-177.323883056641,121.231880187988,-93.653076171875,-234.683502197266,109.670753479004,98.0203094482422,-231.917236328125,127.963539123535,84.8182144165039,-231.899230957031,105.650352478027,108.685653686523,-232.094253540039,108.945671081543,104.59024810791,-191.035217285156,170.23567199707,-53.358024597168,-189.34504699707,169.482604980469,-47.9255905151367,-197.460861206055,163.322006225586,-72.0003509521484,-192.275344848633,170.140670776367,-56.6286468505859,-193.894515991211,173.119964599609,-66.6178283691406,-197.607879638672,172.341888427734,-80.4917831420898,-183.831512451172,149.751678466797,-78.2723617553711,-194.204544067383,158.764556884766,-75.1771697998047,-182.437377929688,149.682662963867,-85.7440948486328,-182.326370239258,135.984313964844,-100.450836181641,-184.629592895508,131.488876342773,-94.5576553344727, +-174.627624511719,122.156967163086,-104.143203735352,-232.326263427734,114.419212341309,99.7853851318359,-230.753112792969,118.755638122559,99.01220703125,-230.054046630859,123.152069091797,95.3231430053711,-232.68830871582,97.5527572631836,116.498916625977,-227.286773681641,131.574890136719,85.5280914306641,-186.953826904297,173.963043212891,-52.5792503356934,-191.266250610352,173.81103515625,-60.0523834228516,-195.002624511719,175.845230102539,-75.8100280761719,-197.529861450195,167.814453125,-75.2821731567383,-186.928817749023,154.266128540039,-78.3667755126953,-197.387847900391,163.230987548828,-75.1764678955078,-192.214340209961,158.788558959961,-78.3914794921875,-185.503692626953,154.237121582031,-81.564094543457,-184.460586547852,154.262115478516,-84.7685012817383,-180.55419921875,145.264236450195,-97.0299987792969,-179.431091308594,140.78678894043,-109.767753601074,-183.845520019531,127.242469787598,-94.6958770751953,-180.924224853516,149.944686889648,-95.3825454711914,-181.247253417969,124.353187561035,-98.5512542724609,-177.022842407227,122.196975708008,-100.394828796387,-226.431701660156,127.762519836426,94.5455627441406,-232.313262939453,98.8107833862305,117.003219604492,-231.236663818359,107.400024414063,109.104690551758,-188.832000732422,175.140167236328,-57.5234336853027,-191.124237060547,177.282379150391,-66.8754501342773,-192.434356689453,179.521591186523,-74.6303100585938,-198.034912109375,176.305267333984,-86.4923706054688,-197.994903564453,167.848449707031,-78.4499893188477,-196.712783813477,163.268005371094,-78.3802795410156,-183.031448364258,154.331115722656,-89.5723724365234,-178.315979003906,145.319229125977,-111.750946044922,-183.141464233398,131.70491027832,-102.955085754395,-180.256164550781,136.743392944336,-113.248100280762,-183.895523071289,127.962539672852,-98.8124771118164,-178.622009277344,123.867141723633,-105.133293151855,-227.447784423828,118.767631530762,105.500343322754,-229.218978881836,114.536224365234,106.448432922363,-225.676620483398,123.39208984375,102.763076782227,-231.918731689453,102.859580993652,113.096588134766, +-230.574096679688,109.149696350098,109.523735046387,-195.823699951172,179.392578125,-83.607292175293,-198.577972412109,172.361892700195,-84.880012512207,-198.15592956543,167.871444702148,-81.6396026611328,-188.667984008789,158.359512329102,-83.1905517578125,-195.456665039063,163.32600402832,-81.593994140625,-185.681701660156,158.800567626953,-90.1313323974609,-182.266372680664,131.661911010742,-107.685546875,-177.951934814453,144.298141479492,-116.842445373535,-181.841323852539,154.430130004883,-95.6701736450195,-174.249588012695,123.588104248047,-113.596130371094,-231.938232421875,100.068801879883,117.507514953613,-193.728500366211,183.816009521484,-85.8018035888672,-196.967803955078,183.164947509766,-93.2555389404297,-198.914001464844,172.338897705078,-88.1460342407227,-183.968536376953,158.751556396484,-94.4591522216797,-178.13395690918,149.492645263672,-112.217987060547,-181.667297363281,127.070449829102,-105.656349182129,-180.822235107422,131.714904785156,-115.410301208496,-179.555099487305,136.151336669922,-119.03865814209,-180.009155273438,155.314208984375,-106.271408081055,-177.819915771484,124.63321685791,-113.77214050293,-198.906997680664,176.746322631836,-91.2907485961914,-197.828887939453,167.830444335938,-84.8479156494141,-193.749496459961,163.287002563477,-84.8077011108398,-190.745193481445,162.790939331055,-88.9934158325195,-187.858917236328,163.247985839844,-94.446647644043,-181.19026184082,127.671508789063,-110.318809509277,-178.148971557617,135.849304199219,-127.938529968262,-176.888824462891,149.892700195313,-120.587814331055,-183.003448486328,158.752563476563,-97.6693649291992,-181.905334472656,158.719543457031,-101.750968933105,-179.957138061523,127.065452575684,-114.122184753418,-176.904846191406,125.104263305664,-117.895545959473,-193.573486328125,187.438369750977,-91.4263534545898,-198.791976928711,181.22575378418,-96.6694717407227,-198.783981323242,172.278869628906,-91.2955474853516,-196.911804199219,167.750427246094,-88.0246276855469,-185.996734619141,163.251983642578,-97.652961730957,-177.564910888672,155.421234130859,-118.577613830566, +-179.255081176758,131.829925537109,-123.020050048828,-176.111755371094,147.332427978516,-125.908332824707,-180.110153198242,161.711853027344,-113.241088867188,-171.944351196289,124.892234802246,-119.299682617188,-199.293029785156,185.384170532227,-103.534141540527,-199.32405090332,176.836334228516,-94.5696640014648,-193.622482299805,167.743438720703,-94.4460525512695,-189.250045776367,167.078369140625,-99.225715637207,-178.700012207031,160.041687011719,-117.353492736816,-179.139053344727,127.582504272461,-120.247779846191,-178.035949707031,131.113845825195,-127.564491271973,-177.197860717773,139.943710327148,-129.073638916016,-174.894653320313,154.581146240234,-131.710891723633,-184.41357421875,163.253997802734,-100.867881774902,-181.858322143555,163.28401184082,-108.193603515625,-174.288589477539,125.623306274414,-122.372993469238,-198.05290222168,188.608474731445,-105.446327209473,-199.848083496094,181.396774291992,-100.966888427734,-199.543060302734,176.832336425781,-97.7252731323242,-195.525665283203,167.735427856445,-91.2287368774414,-198.173919677734,172.235870361328,-94.4344482421875,-177.385894775391,158.855560302734,-121.929946899414,-177.391891479492,127.405479431152,-124.179168701172,-176.417785644531,131.185852050781,-131.964935302734,-176.568801879883,135.871322631836,-134.473175048828,-175.875747680664,144.349151611328,-131.526885986328,-174.70964050293,149.767684936523,-134.220138549805,-183.14045715332,163.243988037109,-104.086196899414,-180.697219848633,167.627426147461,-117.678527832031,-182.045349121094,167.743438720703,-113.708137512207,-177.634902954102,125.872337341309,-120.657821655273,-168.671035766602,126.552398681641,-123.827125549316,-192.549377441406,191.629776000977,-98.6866683959961,-200.26513671875,184.75910949707,-107.296508789063,-200.316131591797,181.371780395508,-104.154205322266,-196.943801879883,172.223876953125,-97.645263671875,-186.535781860352,167.69743347168,-104.114196777344,-176.727813720703,165.816253662109,-129.702697753906,-175.855743408203,128.343566894531,-129.307662963867, +-175.697723388672,140.443756103516,-136.852401733398,-174.816635131836,163.081970214844,-135.164245605469,-172.820434570313,153.545043945313,-141.51286315918,-178.752014160156,170.348693847656,-126.475387573242,-184.622589111328,167.665435791016,-107.326507568359,-183.165451049805,167.695434570313,-110.509819030762,-169.991165161133,126.93643951416,-127.369476318359,-195.671676635742,192.389862060547,-107.539535522461,-199.610061645508,188.409469604492,-109.934768676758,-199.307022094727,176.866333007813,-100.933883666992,-195.001617431641,172.249877929688,-100.872886657715,-190.828201293945,171.669815063477,-105.258308410645,-175.150665283203,132.356964111328,-135.936309814453,-173.066467285156,129.398681640625,-134.051132202148,-173.583511352539,126.976440429688,-128.038543701172,-175.046661376953,136.07633972168,-139.160629272461,-174.39860534668,159.259613037109,-135.031234741211,-172.832427978516,159.17658996582,-140.992813110352,-174.084564208984,144.50715637207,-142.187942504883,-183.142456054688,172.145874023438,-117.0224609375,-181.365280151367,172.296875,-121.097862243652,-184.857620239258,172.11686706543,-113.79615020752,-200.599166870117,185.720199584961,-112.840049743652,-199.945098876953,180.710708618164,-106.913475036621,-198.206924438477,176.843338012695,-104.156204223633,-176.387786865234,173.821029663086,-136.961410522461,-174.617614746094,140.108734130859,-141.973907470703,-171.536315917969,170.520706176758,-149.826675415039,-170.974258422852,159.873672485352,-149.449630737305,-172.749435424805,144.932205200195,-146.852386474609,-180.877227783203,176.720321655273,-127.25146484375,-187.016830444336,172.056854248047,-110.584831237793,-169.266098022461,128.863632202148,-133.095031738281,-197.976913452148,192.528854370117,-112.015975952148,-200.633163452148,189.859603881836,-116.663421630859,-199.373046875,181.726806640625,-110.301803588867,-172.895446777344,176.046264648438,-148.270523071289,-178.092956542969,177.252365112305,-135.059234619141,-172.205368041992,132.680999755859,-139.99772644043,-172.796432495117,136.67839050293,-145.621276855469, +-171.054260253906,153.827072143555,-150.204711914063,-173.51350402832,140.008712768555,-145.618270874023,-184.900619506836,176.533309936523,-120.345794677734,-187.771896362305,175.877227783203,-115.920356750488,-182.808410644531,176.644302368164,-123.442085266113,-195.683685302734,196.777282714844,-116.10237121582,-199.549057006836,193.988006591797,-119.082664489746,-199.834091186523,185.700210571289,-117.149475097656,-197.356842041016,181.169738769531,-113.91015625,-196.259735107422,176.767318725586,-107.420524597168,-193.593475341797,176.63330078125,-110.680847167969,-173.897537231445,181.800827026367,-149.582656860352,-178.74201965332,181.061752319336,-137.269439697266,-168.906051635742,132.393966674805,-140.835800170898,-171.471313476563,178.644500732422,-153.384033203125,-169.879150390625,167.168380737305,-154.265106201172,-169.638122558594,158.300521850586,-154.773162841797,-171.10026550293,139.856704711914,-150.119720458984,-170.957244873047,149.485641479492,-152.817977905273,-184.615600585938,181.108749389648,-126.682411193848,-180.517196655273,181.140747070313,-133.117034912109,-200.800186157227,190.23664855957,-120.313781738281,-171.148284912109,135.069229125977,-145.068206787109,-169.456115722656,182.856918334961,-159.885665893555,-169.192077636719,161.802856445313,-156.591339111328,-168.503021240234,174.374084472656,-159.68864440918,-171.523315429688,145.165222167969,-152.064895629883,-191.061233520508,181.013732910156,-120.339790344238,-187.411865234375,181.696807861328,-124.713218688965,-182.292358398438,181.149749755859,-129.849716186523,-197.724868774414,197.320327758789,-120.454795837402,-194.533569335938,181.064743041992,-117.103469848633,-197.940902709961,185.747207641602,-120.316780090332,-200.710159301758,193.747985839844,-123.089057922363,-176.03076171875,185.859222412109,-148.11051940918,-171.107269287109,188.139434814453,-159.191604614258,-181.639297485352,185.526168823242,-136.47737121582,-167.724945068359,137.194442749023,-150.432739257813,-167.526916503906,168.16748046875,-162.159881591797, +-168.812057495117,154.078094482422,-160.403717041016,-169.531112670898,149.129623413086,-158.130493164063,-170.341186523438,144.940200805664,-155.404220581055,-187.407867431641,185.548187255859,-129.924728393555,-184.169555664063,185.522171020508,-133.182052612305,-194.761581420898,201.211715698242,-122.827033996582,-199.087020874023,197.358337402344,-123.896133422852,-200.070098876953,190.274642944336,-123.539100646973,-179.642105102539,185.774200439453,-140.249740600586,-174.594619750977,192.22282409668,-155.77326965332,-167.269897460938,183.608993530273,-164.992156982422,-167.854949951172,192.003814697266,-167.342391967773,-165.913757324219,162.438919067383,-168.190490722656,-164.568618774414,177.876419067383,-170.061660766602,-167.828948974609,157.835479736328,-162.860946655273,-168.216995239258,140.816787719727,-155.365219116211,-194.895599365234,185.632186889648,-123.509094238281,-194.915603637695,190.210647583008,-129.989730834961,-200.596160888672,194.523056030273,-126.380378723145,-178.773025512695,190.794692993164,-147.227416992188,-170.727233886719,195.192123413086,-164.341094970703,-186.911819458008,189.991622924805,-136.417373657227,-183.375473022461,190.023620605469,-139.68669128418,-163.619537353516,162.844955444336,-174.055053710938,-162.46142578125,171.836853027344,-176.074249267578,-167.885955810547,149.450653076172,-161.85285949707,-167.269897460938,153.621063232422,-164.735137939453,-168.185989379883,144.622177124023,-158.853561401367,-198.059906005859,190.265640258789,-126.765419006348,-191.049224853516,190.093627929688,-133.177047729492,-197.473861694336,200.942687988281,-126.531394958496,-199.748077392578,198.824478149414,-128.957641601563,-180.85823059082,190.143630981445,-142.948013305664,-179.443084716797,194.890106201172,-150.132720947266,-172.638412475586,199.437545776367,-164.307098388672,-164.686645507813,180.596694946289,-169.924652099609,-164.338607788086,188.346466064453,-172.366882324219,-169.722122192383,201.277725219727,-169.514602661133,-163.170486450195,166.66032409668,-174.592102050781, +-164.315612792969,158.534530639648,-171.840835571289,-166.013778686523,158.238510131836,-168.504516601563,-160.999282836914,177.005355834961,-178.697509765625,-166.152801513672,154.182113647461,-167.537414550781,-197.872894287109,194.718078613281,-133.274047851563,-199.824096679688,194.751083374023,-129.952728271484,-195.748687744141,207.001281738281,-133.698089599609,-182.4423828125,194.666076660156,-146.100311279297,-177.931945800781,199.530548095703,-156.751358032227,-194.523574829102,194.657073974609,-136.524368286133,-190.075134277344,194.572067260742,-139.674682617188,-185.804718017578,194.576080322266,-142.822998046875,-164.679641723633,201.359725952148,-176.896331787109,-166.073776245117,206.895278930664,-177.585403442383,-161.275299072266,162.649948120117,-177.144348144531,-161.573333740234,157.994491577148,-174.784118652344,-160.084197998047,171.94384765625,-180.808715820313,-161.222305297852,167.732437133789,-178.456497192383,-164.924667358398,149.34162902832,-165.716232299805,-199.132019042969,201.927795410156,-133.147048950195,-200.250137329102,198.216430664063,-132.697006225586,-184.528594970703,199.119522094727,-149.268615722656,-180.992248535156,199.122512817383,-152.553939819336,-173.011459350586,203.611953735352,-166.795349121094,-176.648818969727,203.704956054688,-162.215881347656,-159.800170898438,184.711090087891,-181.270767211914,-160.810256958008,191.559768676758,-180.085647583008,-161.874374389648,198.329437255859,-180.140640258789,-168.108978271484,211.612731933594,-177.769409179688,-161.217300415039,152.940979003906,-170.987762451172,-164.568618774414,153.314025878906,-169.334594726563,-158.279022216797,176.307266235352,-183.235946655273,-199.287033081055,198.8544921875,-136.025329589844,-197.827896118164,205.318130493164,-135.014236450195,-188.832000732422,199.123519897461,-146.023300170898,-182.718414306641,203.52294921875,-155.744262695313,-171.037261962891,210.740646362305,-174.036041259766,-179.401092529297,203.647964477539,-158.978561401367,-196.929794311523,199.088516235352,-139.70768737793, +-193.214431762695,199.164520263672,-142.947006225586,-162.356414794922,207.947372436523,-182.977935791016,-165.031677246094,213.103881835938,-181.979827880859,-158.42903137207,162.724945068359,-179.182556152344,-158.638046264648,158.354522705078,-176.536285400391,-158.891082763672,154.751159667969,-173.561996459961,-158.421035766602,167.355407714844,-181.352767944336,-157.856964111328,171.508804321289,-183.162948608398,-161.986389160156,149.293640136719,-167.511413574219,-199.2490234375,202.829879760742,-137.889511108398,-198.168914794922,206.600250244141,-138.733581542969,-191.860305786133,203.619964599609,-149.342636108398,-187.012817382813,203.507949829102,-152.525939941406,-177.28288269043,211.100692749023,-168.212478637695,-173.722518920898,210.019577026367,-170.819732666016,-181.768325805664,212.31379699707,-165.441207885742,-157.452941894531,184.370071411133,-185.054138183594,-158.162994384766,192.866912841797,-184.627090454102,-158.660049438477,201.266723632813,-185.414169311523,-169.466110229492,217.370300292969,-179.465576171875,-154.959701538086,172.476913452148,-184.983108520508,-195.792694091797,203.568939208984,-146.207321166992,-184.988647460938,208.038391113281,-158.997589111328,-189.743103027344,207.993392944336,-155.845260620117,-176.977844238281,217.301300048828,-173.003952026367,-198.376937866211,203.869979858398,-142.437957763672,-155.713760375977,178.817520141602,-186.256256103516,-160.316207885742,211.340713500977,-186.42626953125,-165.454711914063,218.46240234375,-183.621994018555,-154.614654541016,158.936584472656,-177.241363525391,-154.606643676758,163.477020263672,-180.691711425781,-156.289810180664,155.376220703125,-174.391082763672,-155.931793212891,168.100479125977,-183.019927978516,-197.406845092773,208.24040222168,-149.277618408203,-194.180541992188,207.956390380859,-152.640960693359,-186.911819458008,217.871353149414,-165.347198486328,-186.84880065918,212.774841308594,-162.199890136719,-155.038696289063,186.542282104492,-187.607376098633,-155.76676940918,193.804992675781,-187.56037902832, +-155.615753173828,202.785873413086,-189.060531616211,-173.685531616211,222.048751831055,-177.61540222168,-169.382095336914,222.344787597656,-181.125747680664,-152.4814453125,176.120254516602,-187.196350097656,-152.632461547852,167.395401000977,-183.491973876953,-198.472946166992,207.920364379883,-142.428955078125,-198.613967895508,207.545333862305,-145.759292602539,-191.513259887695,212.667846679688,-159.069580078125,-195.310653686523,212.891860961914,-155.783264160156,-151.646362304688,182.883911132813,-189.14453125,-161.939361572266,219.255477905273,-186.447265625,-157.782974243164,212.455810546875,-188.852493286133,-177.958938598633,222.102752685547,-173.780029296875,-167.177886962891,225.106063842773,-182.599884033203,-197.24983215332,212.106781005859,-152.05290222168,-191.183242797852,217.395294189453,-161.425811767578,-152.39143371582,191.529769897461,-190.068618774414,-152.091400146484,203.333923339844,-191.73779296875,-172.929443359375,225.991134643555,-177.7744140625,-175.97575378418,226.019134521484,-174.515090942383,-169.988159179688,226.634201049805,-179.692596435547,-150.453247070313,178.174957275391,-188.007415771484,-149.260131835938,173.466003417969,-186.870315551758,-194.085525512695,216.722244262695,-158.655532836914,-196.036712646484,215.51611328125,-153.686050415039,-189.320053100586,220.954650878906,-162.243881225586,-184.880630493164,221.147674560547,-168.1884765625,-147.263931274414,190.335647583008,-192.211837768555,-152.170425415039,209.384521484375,-191.850799560547,-179.415084838867,226.113159179688,-170.449691772461,-148.139022827148,181.703811645508,-189.835601806641,-194.735580444336,217.419296264648,-156.307312011719,-191.391265869141,220.461608886719,-158.422515869141,-186.638793945313,222.532806396484,-164.752151489258,-183.553482055664,224.628021240234,-167.887451171875,-146.315841674805,186.286254882813,-191.354736328125,-149.161117553711,198.198425292969,-192.803894042969,-153.853591918945,213.206893920898,-190.734680175781,12.0590763092041,59.5257339477539,18.1552810668945,12.9355621337891,58.5825424194336,12.6671447753906, +-1.26821994781494,55.8588752746582,17.8568534851074,31.2622585296631,63.2362937927246,16.4613170623779,-3.57958602905273,53.3826293945313,11.1423959732056,5.28382205963135,58.6234436035156,23.3899955749512,24.9440383911133,59.5406341552734,5.97058916091919,25.6157054901123,63.2537994384766,23.1050682067871,9.44202995300293,55.4177322387695,4.99817323684692,-13.8950672149658,51.775074005127,14.5686311721802,-4.22314882278442,56.5394401550293,26.9643478393555,13.1644849777222,60.9323692321777,25.9259433746338,38.6078796386719,62.6976432800293,8.6771240234375,20.9262447357178,57.0169868469238,0.469538003206253,35.8010025024414,64.6675415039063,20.7595386505127,-1.7110630273819,52.0024948120117,5.4187650680542,-8.79110717773438,50.2451248168945,5.2930121421814,-8.05964469909668,54.9381828308105,21.1723785400391,5.14504909515381,59.0861892700195,27.4949989318848,44.0364074707031,65.1361846923828,16.1906909942627,36.5923805236816,59.9868774414063,0.528424024581909,31.3944721221924,57.1814041137695,-5.4248480796814,18.6024188995361,63.5673294067383,44.8858032226563,30.7354068756104,64.9814682006836,33.7859153747559,10.0212869644165,53.0217971801758,-1.82341504096985,-19.1797866821289,47.8537864685059,4.42337703704834,-19.7007350921631,50.697265625,16.200590133667,-12.3513164520264,54.4038314819336,26.0098514556885,0.380647987127304,58.6689491271973,38.4999771118164,13.0254707336426,62.2188949584961,43.8020935058594,54.3067169189453,64.8953552246094,10.3555183410645,47.2732238769531,62.2592010498047,4.43532800674438,18.8166389465332,54.6511573791504,-4.79528617858887,26.3413753509521,64.7876510620117,43.2036361694336,46.2585258483887,67.5856246948242,36.7452049255371,45.9014930725098,66.3944091796875,24.2193756103516,1.65385699272156,49.9202919006348,-2.51235198974609,-5.91743516921997,48.2824287414551,-2.29866099357605,-14.3743143081665,46.9916038513184,-1.78165102005005,-21.1636791229248,51.6466636657715,24.102165222168,-5.16183090209961,57.321418762207,41.5461730957031,60.6472396850586,67.2275848388672,19.6274261474609, +36.8341026306152,57.3702239990234,-6.77613019943237,17.7511348724365,52.7168655395508,-8.78939723968506,11.8757581710815,62.0933837890625,48.2320289611816,22.8999404907227,64.3040008544922,49.8917922973633,37.5569763183594,66.5114135742188,42.6009788513184,55.1862030029297,67.2614898681641,22.3154907226563,6.54017496109009,50.1725158691406,-5.2857141494751,-1.35243797302246,47.491455078125,-6.37949085235596,-26.6059131622314,48.9657974243164,15.5032224655151,-23.4014987945557,46.0389137268066,0.924284994602203,-27.8108310699463,49.8829879760742,22.0963687896729,-25.4986038208008,51.7060661315918,36.662899017334,-17.4132118225098,54.2527160644531,41.6092834472656,60.9941711425781,65.0979766845703,10.0668897628784,53.7657623291016,63.3265075683594,5.57371997833252,30.4304752349854,54.6864585876465,-11.4540185928345,38.313549041748,55.7629623413086,-11.0200757980347,14.0315685272217,62.5538291931152,53.2173194885254,36.2222442626953,66.1089782714844,55.7307662963867,41.0388145446777,67.0838775634766,48.8887939453125,53.1248016357422,68.1160736083984,34.790714263916,2.69507908821106,46.0199089050293,-10.6451396942139,-6.5407657623291,45.7264823913574,-8.62132167816162,-13.2982091903687,45.0118103027344,-7.77676820755005,-31.0157432556152,47.4644508361816,11.9142723083496,-32.3140716552734,45.3817481994629,4.56890201568604,-22.0343647003174,42.9768104553223,-7.87985897064209,-3.88709592819214,57.7977638244629,46.3959503173828,68.7540283203125,66.44921875,15.9293651580811,62.2267913818359,68.0769653320313,26.9314422607422,49.6973648071289,60.5370330810547,-0.216352999210358,22.6971187591553,51.6287574768066,-13.8600540161133,18.2610836029053,63.0958824157715,58.4194297790527,45.1463203430176,67.3628997802734,53.6596603393555,63.3077964782715,69.1069717407227,41.6788902282715,6.92233276367188,47.8337898254395,-9.68126487731934,-1.06903994083405,44.8576927185059,-11.6664400100708,-28.2687759399414,42.4060554504395,-6.65928888320923,-30.9300365447998,50.1143112182617,29.6132068634033,-27.24387550354,51.3678321838379,44.0581207275391, +-10.9892816543579,55.9336814880371,49.2387275695801,70.6392135620117,68.0250701904297,26.5475044250488,71.9550476074219,64.7631454467773,9.66007041931152,64.1951904296875,63.5104217529297,5.42470502853394,65.6907348632813,61.4793243408203,0.681451976299286,30.9032211303711,52.9347877502441,-15.5148162841797,39.8554992675781,54.1598052978516,-14.6053266525269,16.9169521331787,50.5079498291016,-12.5449256896973,1.07898998260498,58.7471580505371,54.9504852294922,14.2661924362183,62.0792846679688,60.3143119812012,36.2268447875977,65.7983474731445,61.4176216125488,63.0844764709473,68.6878280639648,33.0494422912598,7.26039600372314,44.836296081543,-14.3217000961304,-0.405324012041092,40.950511932373,-17.6620254516602,-15.3721122741699,40.5541763305664,-16.5908222198486,-34.876823425293,48.9828987121582,23.4783039093018,-35.688304901123,47.3588371276855,13.5651330947876,-32.9558372497559,41.7974967956543,-7.1273250579834,-26.8858394622803,39.8107032775879,-13.3396034240723,-32.4297828674316,50.2810287475586,40.1777420043945,74.5268936157227,67.4345092773438,23.850040435791,76.4442901611328,65.4132080078125,13.950270652771,52.1307029724121,58.9917793273926,-3.41741108894348,48.379337310791,55.9156761169434,-9.70419692993164,24.0669536590576,49.5593566894531,-18.2591857910156,18.0950660705566,48.2856292724609,-16.7238349914551,23.3228797912598,63.199390411377,66.8284530639648,34.0027236938477,64.941764831543,67.5923233032227,56.5363349914551,68.5722198486328,53.2920265197754,70.8034286499023,69.0290679931641,39.805004119873,3.12905097007751,42.1838340759277,-16.2137851715088,-9.1851053237915,39.5623741149902,-19.6697254180908,-38.4413757324219,48.7449760437012,22.4904079437256,-39.3462600708008,47.2960357666016,12.8274602890015,-36.5531883239746,45.1106224060059,5.08538198471069,-33.5819969177246,39.4307632446289,-13.5007190704346,-36.3677673339844,49.6245651245117,32.9737358093262,-23.3553943634033,52.0518989562988,49.3963432312012,-32.8661231994629,50.0362014770508,46.0369148254395,-6.90511178970337,56.4449310302734,56.1869087219238, +77.5306930541992,67.7690353393555,28.6192073822021,77.4217758178711,63.1260871887207,6.13253498077393,72.1743698120117,62.7579498291016,3.81568789482117,62.9196586608887,59.0454864501953,-3.79617810249329,31.2490577697754,50.6881675720215,-19.5951175689697,43.7426834106445,52.9732933044434,-16.055269241333,7.73905277252197,59.8448638916016,62.7897567749023,19.0429592132568,61.3940162658691,72.141975402832,48.3951377868652,67.2719955444336,60.4849319458008,40.8838005065918,65.1345825195313,71.1203765869141,61.0651817321777,68.7483367919922,55.5503463745117,66.7952423095703,69.1920852661133,46.0878219604492,3.16780495643616,35.8423118591309,-23.4889984130859,-8.42727088928223,35.2182540893555,-25.3740825653076,-25.7193241119385,36.4509696960449,-20.2829837799072,-41.0363273620605,49.6862678527832,32.1012496948242,-42.9722175598145,49.5750617980957,25.2476768493652,-36.8939208984375,41.6420822143555,-7.3408260345459,-29.3669834136963,36.7069969177246,-19.1717758178711,-36.9414253234863,49.9199905395508,42.1421356201172,83.3318557739258,65.1627883911133,16.7561454772949,85.8032989501953,63.371711730957,11.0726890563965,70.6698226928711,56.443733215332,-9.69053554534912,53.4086265563965,56.4247283935547,-7.81295204162598,38.2327423095703,50.7658729553223,-20.1926746368408,51.327522277832,52.1843147277832,-14.7237396240234,28.7122077941895,47.7611808776855,-22.8064308166504,21.0010528564453,46.436149597168,-20.7349281311035,11.5854301452637,43.2511367797852,-18.4043006896973,27.6506023406982,63.002872467041,74.5745162963867,33.3631629943848,63.3669090270996,77.768424987793,55.4427261352539,67.8314437866211,61.3705177307129,78.5219955444336,68.5252151489258,47.6743774414063,7.73925304412842,37.5086784362793,-22.7473258972168,-12.730052947998,35.4593734741211,-25.2782745361328,-0.553122997283936,35.3642654418945,-24.0973567962646,-42.8718070983887,47.8658905029297,13.4479217529297,-45.7298889160156,49.7043724060059,19.9889621734619,-41.3765602111816,44.9589042663574,3.96375203132629,-44.8450012207031,39.9928169250488,-12.7746477127075, +-39.3882675170898,37.6096839904785,-17.7477359771729,-39.3462600708008,49.9045906066895,37.6464920043945,-26.7442264556885,50.50634765625,52.9550933837891,-13.9562730789185,53.2935218811035,60.1499977111816,-34.3769721984863,49.5196533203125,50.3144378662109,-0.540897011756897,57.4806327819824,63.427417755127,87.2199401855469,64.6820373535156,17.9150581359863,78.6096038818359,68.2264862060547,37.9409217834473,79.7168045043945,58.2768096923828,-4.40045785903931,88.1934356689453,61.5291328430176,7.06102609634399,74.3800811767578,58.0872917175293,-6.18155193328857,66.7362365722656,53.3820304870605,-14.5635242462158,58.2888069152832,52.7180633544922,-13.7665452957153,34.913215637207,48.0908126831055,-23.8356323242188,41.7645874023438,49.3546371459961,-21.4128952026367,7.70919990539551,57.7636604309082,73.783935546875,18.3208904266357,59.8337631225586,78.7750244140625,46.3623390197754,65.1345825195313,73.9074478149414,44.1663246154785,63.8837585449219,79.0806579589844,50.3628311157227,66.3592987060547,68.0291748046875,70.0436630249023,68.3630981445313,60.9804763793945,70.7147216796875,68.7719345092773,54.9779891967773,4.44141006469727,33.9420280456543,-26.7199153900146,-4.63486909866333,28.5244941711426,-32.9581260681152,-30.393482208252,32.8054161071777,-25.3519802093506,-44.5473709106445,50.9782943725586,40.7319946289063,-47.207332611084,51.3762359619141,31.2856693267822,-40.8184013366699,42.9038047790527,-3.83416199684143,-44.654182434082,41.7220878601074,-8.70130920410156,-38.0761375427246,35.2897605895996,-21.7362270355225,-41.7927017211914,50.2467231750488,44.7087821960449,-40.383861541748,49.5522575378418,50.4613456726074,0.491317987442017,57.033390045166,67.6483306884766,84.2279510498047,66.8958511352539,31.0141448974609,87.7873001098633,59.085391998291,0.870766997337341,92.4194488525391,62.1627922058105,12.4761266708374,78.0124359130859,54.9252815246582,-11.5437269210815,73.8966369628906,52.857780456543,-15.8002452850342,51.093204498291,49.5294532775879,-18.3513946533203,29.8487205505371,45.2216339111328,-25.9287376403809, +18.0851669311523,42.711784362793,-22.8207321166992,12.4757165908813,40.3339538574219,-21.7700290679932,31.0762405395508,61.6304397583008,83.0737457275391,39.8981056213379,62.9299697875977,81.7709121704102,62.18798828125,66.2155838012695,73.6598205566406,82.8719100952148,67.7104339599609,40.5355758666992,80.3470687866211,67.9489593505859,55.492244720459,10.7811517715454,34.9312210083008,-28.6025981903076,-46.9195022583008,49.6775665283203,16.4976215362549,-54.1249084472656,54.1373062133789,32.6990089416504,-44.0858268737793,44.4047508239746,-0.566881000995636,-47.8590927124023,37.5746803283691,-17.5253124237061,-49.129020690918,40.3597564697266,-13.3739070892334,-47.6537742614746,35.4077682495117,-20.9215469360352,-29.2092685699463,49.2431259155273,56.8436737060547,-21.9058513641357,50.5494537353516,59.4917335510254,-36.7194023132324,48.9558982849121,54.3962326049805,93.2774353027344,64.1795883178711,26.7231216430664,87.7791900634766,53.7239646911621,-9.54576206207275,97.7347717285156,58.0160827636719,5.35059785842896,66.4417037963867,50.1037101745605,-19.436502456665,58.0049781799316,48.4082412719727,-19.8977451324463,37.9631156921387,45.1245193481445,-26.4558887481689,48.5069465637207,46.7484817504883,-22.0478572845459,34.3230590820313,45.3148384094238,-26.6432075500488,23.7443218231201,40.7919960021973,-27.9084320068359,16.9802589416504,38.7338943481445,-26.6397075653076,-0.359950989484787,55.6314506530762,71.7841415405273,9.22128772735596,56.460132598877,80.4049835205078,36.1438331604004,61.6513442993164,85.2724609375,28.4299812316895,59.774959564209,86.9289245605469,56.364917755127,64.0912780761719,81.5964965820313,52.197811126709,62.347110748291,86.2403564453125,65.9165573120117,65.8213500976563,76.2327728271484,87.1662368774414,66.843147277832,41.9826164245605,84.3047561645508,67.4367065429688,49.3687400817871,-53.6288604736328,54.028694152832,41.9045066833496,-55.2546195983887,53.7605667114258,20.6487274169922,-46.9983100891113,43.6880798339844,-4.83846092224121,-49.3277397155762,43.8335952758789,-6.49446296691895, +-21.3416976928711,49.492748260498,64.1047821044922,94.4137496948242,62.8560600280762,18.8920555114746,99.9592895507813,55.476734161377,1.57535803318024,102.310516357422,58.0363883972168,10.0956926345825,84.4174652099609,51.4362373352051,-14.8577518463135,68.9519577026367,49.0389060974121,-21.0427589416504,45.9971046447754,43.7095832824707,-25.5488014221191,52.55224609375,45.3176422119141,-23.2745780944824,28.9727344512939,39.4030609130859,-30.6738014221191,-0.858111023902893,54.0713996887207,76.2794799804688,17.9011497497559,58.3892211914063,82.9988403320313,33.9535217285156,60.0202827453613,88.8625106811523,47.9096908569336,61.0305824279785,88.971321105957,63.1990852355957,64.4863204956055,81.1151504516602,75.6266021728516,67.0527725219727,67.1152801513672,80.9723281860352,67.2951889038086,61.6611480712891,87.3172454833984,66.5129165649414,55.5018424987793,17.3337936401367,36.3828659057617,-30.1237487792969,10.7141447067261,31.645601272583,-34.3031578063965,-51.3034324645996,51.4204406738281,16.5685272216797,-48.056713104248,46.9029960632324,3.59184598922729,-59.3432197570801,55.8377685546875,30.9034328460693,-58.3697242736816,55.6416511535645,36.7792091369629,-52.2016220092773,40.0299224853516,-15.9747610092163,-52.0600051879883,35.1290397644043,-22.4695987701416,-53.9633941650391,44.7642860412598,-8.62102127075195,-31.5743999481201,47.9982032775879,60.816463470459,-25.8674392700195,47.7424774169922,65.321907043457,102.316520690918,59.3220138549805,15.0901832580566,93.8330917358398,64.9425659179688,42.8774032592773,100.043296813965,61.2186012268066,21.2102832794189,95.6431655883789,52.1861152648926,-7.16790914535522,105.729858398438,55.1030006408691,6.42204284667969,74.8294296264648,50.3085289001465,-18.9301528930664,63.9357566833496,46.4600524902344,-23.6401138305664,43.4673538208008,35.6894989013672,-33.0882377624512,37.1000289916992,38.3571586608887,-31.9240245819092,33.5342826843262,36.882511138916,-33.4028701782227,21.5482063293457,36.6301879882813,-31.4907817840576,-13.4189195632935,49.8813858032227,72.7457275390625, +-1.32358503341675,52.2114143371582,80.6848068237305,10.5303268432617,54.8330764770508,85.8927154541016,44.5458602905273,59.1679992675781,92.9421157836914,24.5742034912109,57.1869049072266,90.5434799194336,31.7240028381348,57.7975654602051,92.7145919799805,58.9108657836914,61.6692428588867,88.6638946533203,52.0895004272461,59.6435432434082,92.1648406982422,61.5185203552246,63.1498870849609,85.1395492553711,73.2051696777344,63.3752098083496,83.7647094726563,79.9721298217773,64.9914703369141,75.2641830444336,-56.3569297790527,52.6953659057617,12.8080587387085,-60.083194732666,55.5273399353027,21.9084491729736,-56.943187713623,49.6703681945801,-0.385010004043579,-21.06907081604,47.7281761169434,69.4019012451172,100.778366088867,62.4468193054199,38.3282623291016,98.0805053710938,62.660041809082,27.9588432312012,94.483154296875,48.484447479248,-13.6788358688354,108.52912902832,49.6661682128906,-1.68132102489471,114.596725463867,52.0983047485352,10.1653995513916,112.739540100098,50.4723434448242,3.83242893218994,82.1928482055664,49.0517082214355,-18.7506332397461,71.6183166503906,43.5086631774902,-26.9232349395752,67.4017028808594,42.2753410339355,-28.4454822540283,55.2809104919434,42.4063529968262,-26.6143035888672,50.2632179260254,40.2607460021973,-28.4228801727295,29.4482803344727,32.8620185852051,-37.3256530761719,24.2423706054688,32.9923324584961,-36.4930725097656,42.570068359375,57.0268898010254,96.9052047729492,85.497673034668,65.6318283081055,67.7000427246094,90.4262542724609,65.0665817260742,63.7616539001465,13.1394834518433,30.7381114959717,-36.4988746643066,-62.1543960571289,55.1370010375977,14.9068651199341,-65.4609222412109,57.0952949523926,22.5178108215332,-54.9363861083984,38.5674819946289,-20.0739631652832,-60.7355575561523,46.8884925842285,-12.7260427474976,-62.7569541931152,49.235424041748,-9.62965965270996,112.823547363281,54.848575592041,18.0596733093262,101.248413085938,62.0141754150391,46.6488723754883,94.0043029785156,64.3077011108398,59.1601028442383,103.603652954102,61.0991897583008,34.910026550293, +88.3135452270508,45.9266014099121,-20.0670623779297,98.8494873046875,45.7515830993652,-15.2609920501709,105.260810852051,48.9150924682617,-5.32637786865234,76.0497512817383,43.6487770080566,-26.3450775146484,62.0070724487305,39.6445846557617,-30.8564186096191,44.2435264587402,29.8406238555908,-38.5956764221191,47.2588272094727,56.1466026306152,98.6599731445313,29.073844909668,55.1893081665039,96.1396255493164,37.8169975280762,54.2959213256836,100.417846679688,64.9078598022461,60.1964988708496,91.1218338012695,59.9703674316406,58.9214744567871,93.5630722045898,73.6518096923828,61.2183952331543,89.2596435546875,81.0440368652344,61.9085655212402,85.5820846557617,88.3564529418945,62.8279571533203,78.0271453857422,-58.2981185913086,52.1904144287109,6.02259397506714,-57.5646476745605,42.9402084350586,-16.3702011108398,-64.0466842651367,51.2232208251953,-5.29175519943237,111.19938659668,56.9641799926758,27.8254318237305,112.422508239746,57.2767105102539,45.2419357299805,90.575569152832,43.9985122680664,-22.2981815338135,109.497222900391,43.9485054016113,-11.7540483474731,114.098678588867,42.4067535400391,-10.1845951080322,121.190376281738,49.8803863525391,15.6778402328491,122.250473022461,45.8088912963867,4.54401922225952,81.6943969726563,44.7489814758301,-24.0303516387939,69.4932098388672,39.1457366943359,-33.1006393432617,52.0814971923828,35.0272331237793,-33.7459030151367,38.7720947265625,28.2984733581543,-40.1737327575684,36.1531867980957,32.5904922485352,-36.7883033752441,46.0977096557617,53.1520080566406,103.15111541748,57.547233581543,53.9385871887207,101.766975402832,90.1330261230469,64.0301742553711,70.7440414428711,99.1946182250977,61.7379493713379,66.3949127197266,-66.1420822143555,55.235912322998,7.61803007125854,-67.8813552856445,56.955982208252,17.5012187957764,-64.0629806518555,53.0847015380859,0.929265022277832,-60.7328567504883,32.5733947753906,-28.9662342071533,-63.6528434753418,44.8317947387695,-18.0871677398682,-63.8786659240723,46.8041839599609,-15.4524097442627,-68.5872268676758,50.6976661682129,-10.4819231033325, +119.681221008301,52.3133277893066,25.4785003662109,101.13240814209,61.4200210571289,62.1050872802734,103.624649047852,60.5659370422363,53.1597137451172,117.65202331543,54.6120529174805,39.9563179016113,82.409065246582,43.0487174987793,-26.3650798797607,101.724464416504,43.0277137756348,-18.4339027404785,121.436393737793,39.0235214233398,-8.38899803161621,122.396484375,47.8758926391602,10.675350189209,75.4333877563477,37.5339775085449,-35.6729888916016,63.9440612792969,35.4930801391602,-36.1559410095215,57.8433647155762,30.4973888397217,-40.1953353881836,45.8604888916016,26.7843246459961,-41.8522987365723,40.0517196655273,23.3489894866943,-44.3584403991699,65.33349609375,51.3525314331055,104.774269104004,73.9924392700195,58.8014602661133,93.6349792480469,83.9604187011719,58.2990112304688,92.8073959350586,87.5626754760742,60.8880653381348,85.0648422241211,95.4179382324219,59.9559745788574,79.43408203125,-77.2848815917969,59.6193428039551,29.1613616943359,-60.1869010925293,36.3523635864258,-24.7602214813232,-68.5350189208984,48.434944152832,-15.5297183990479,-70.4170989990234,55.0577926635742,1.58348894119263,111.217399597168,57.5841407775879,55.6400566101074,89.01611328125,40.8019981384277,-28.489688873291,91.7890930175781,38.6552886962891,-30.7835121154785,114.284690856934,39.0605278015137,-15.6860332489014,107.944068908691,40.4219589233398,-17.9695568084717,125.964836120605,46.754280090332,15.0008735656738,125.70881652832,48.4854545593262,23.3569927215576,128.088043212891,38.4869728088379,-2.52647399902344,131.026336669922,41.3620567321777,8.93760967254639,70.9860534667969,36.5750846862793,-36.5575790405273,37.9409637451172,25.850133895874,-42.2384376525879,58.657543182373,49.931095123291,107.296516418457,86.6918869018555,59.5228309631348,89.2912521362305,100.57234954834,58.8151626586914,77.8467330932617,101.266418457031,59.652645111084,73.2475814819336,107.614036560059,58.4617309570313,63.9276657104492,-72.4188003540039,57.5235366821289,13.2321996688843,-80.5710983276367,59.7987594604492,24.3715915679932,-68.4457092285156,37.5835838317871,-29.5964965820313, +-65.7356414794922,41.8628005981445,-22.6551170349121,-68.4142150878906,45.865592956543,-19.4774055480957,-77.543701171875,51.6780624389648,-12.8007507324219,124.174667358398,50.6606636047363,33.8147201538086,115.783836364746,55.6517562866211,47.6307716369629,83.8076019287109,38.8099021911621,-33.0934371948242,101.941482543945,39.1037292480469,-24.5501022338867,105.919868469238,39.4145622253418,-20.7678318023682,125.035743713379,31.5107879638672,-17.5589160919189,129.060134887695,33.682201385498,-10.3624105453491,136.446868896484,32.2449569702148,-3.54217290878296,75.1785659790039,33.7386054992676,-39.5005683898926,69.0693588256836,32.0612411499023,-40.301643371582,52.2225112915039,23.5111045837402,-47.1656188964844,43.9784049987793,22.035758972168,-46.0497093200684,38.5807762145996,23.3753910064697,-44.3307914733887,70.8178405761719,50.0809097290039,106.762466430664,83.3109588623047,55.3835296630859,97.6455688476563,62.9838676452637,48.6137657165527,108.593643188477,96.9271926879883,52.2221145629883,97.7974853515625,99.5128479003906,55.3262214660645,89.7269897460938,97.5320510864258,54.4223327636719,93.4196624755859,102.698554992676,56.5577430725098,83.1819534301758,-73.9244537353516,57.1119956970215,7.98432588577271,-68.6444320678711,39.9552154541016,-27.4219837188721,-75.8688354492188,47.039909362793,-21.4876022338867,-78.9343414306641,55.731861114502,-0.340319007635117,-78.1250610351563,49.814884185791,-17.4860095977783,124.501693725586,51.0231018066406,41.5428733825684,122.642509460449,51.4038352966309,63.6920433044434,94.6311645507813,36.138240814209,-32.7384033203125,116.937957763672,35.4752769470215,-18.4881076812744,111.856460571289,32.2592620849609,-25.1416606903076,133.081527709961,41.5637741088867,14.6327381134033,132.681503295898,43.1030235290527,19.8238468170166,129.757217407227,47.4222450256348,34.5413856506348,132.256454467773,31.5491924285889,-10.3428087234497,134.633682250977,36.11083984375,2.62327098846436,83.1207427978516,36.2454528808594,-36.5143737792969,80.9080200195313,33.2985610961914,-39.7979965209961, +65.9512557983398,29.749116897583,-42.4100494384766,60.6710433959961,23.5991115570068,-49.2360229492188,43.3173408508301,18.9500560760498,-48.1984176635742,39.3747024536133,20.4538059234619,-46.347339630127,81.8160095214844,51.6104583740234,103.531150817871,95.5730667114258,50.7078704833984,100.582862854004,109.467224121094,55.570442199707,72.5888137817383,116.55891418457,54.3382263183594,63.1461906433105,-83.4389877319336,59.860466003418,17.8223514556885,-73.7897415161133,38.619384765625,-30.7736110687256,-70.8530502319336,43.2244338989258,-24.848030090332,-83.8208236694336,54.2494163513184,-8.81363010406494,-85.1650543212891,50.7621726989746,-17.9901580810547,126.509895324707,49.8072776794434,52.0852088928223,89.8023910522461,35.1955490112305,-35.6521911621094,104.055694580078,35.5990905761719,-27.7634162902832,111.253395080566,26.8043270111084,-32.8019104003906,124.863731384277,27.0531520843506,-23.8615341186523,130.986328125,28.0235462188721,-16.8891525268555,136.701889038086,36.7546997070313,9.14041900634766,138.581069946289,27.121057510376,-9.45036220550537,144.567657470703,28.0507488250732,0.573145985603333,73.3568801879883,29.1705589294434,-43.1193237304688,77.431884765625,27.4331874847412,-44.3038368225098,57.6714477539063,20.3327922821045,-51.8774795532227,50.9045829772949,19.6988296508789,-50.301326751709,67.6335220336914,46.715877532959,110.763862609863,81.6420974731445,47.6946716308594,108.79866027832,102.353530883789,53.2950210571289,91.8130950927734,99.509147644043,47.424446105957,102.368034362793,115.121780395508,54.2141151428223,67.2160873413086,-87.6974945068359,58.7501564025879,7.84738302230835,-86.0785446166992,61.1231880187988,23.0996685028076,-72.8893432617188,41.8375015258789,-27.4642868041992,-77.2746734619141,44.8942985534668,-24.8741340637207,-86.8752212524414,48.5313568115234,-21.95094871521,-84.879020690918,52.6766624450684,-13.757643699646,-86.5331802368164,56.0199890136719,-3.5264720916748,131.927429199219,46.4351501464844,43.3031463623047,130.487289428711,46.3563423156738,66.3486022949219, +124.074653625488,49.6153602600098,72.9348526000977,87.5393676757813,32.422176361084,-39.2735443115234,98.592155456543,30.7582130432129,-36.2657508850098,117.674026489258,25.1717662811279,-30.1951541900635,138.026016235352,38.8527069091797,19.6364288330078,136.286849975586,42.5019645690918,32.1471557617188,143.948608398438,24.9609451293945,-6.76521921157837,144.10661315918,30.4305820465088,6.30030107498169,146.044799804688,24.7109203338623,-4.37346506118774,83.3812637329102,29.8176212310791,-42.2302360534668,64.7661437988281,24.7015209197998,-48.4640464782715,63.597827911377,20.8974475860596,-52.1063003540039,54.3095169067383,14.8337535858154,-55.1590003967285,74.3243789672852,45.6683731079102,112.01798248291,90.3662490844727,47.8807907104492,105.990386962891,104.147705078125,51.4236373901367,93.2286376953125,96.3299331665039,45.5597648620605,106.537437438965,105.724853515625,53.3839302062988,87.5374755859375,112.224487304688,51.0477027893066,83.3672714233398,114.496719360352,53.1848106384277,72.1789779663086,-87.7818145751953,59.638843536377,11.9829778671265,-87.8217086791992,60.7001457214355,17.1300830841064,-79.8478317260742,41.8112983703613,-28.9457321166992,-83.4776840209961,45.2796363830566,-25.4462890625,-93.3427505493164,55.092399597168,-9.77399444580078,-91.314453125,51.002498626709,-18.2608852386475,134.643692016602,44.4269523620605,40.3083534240723,131.511383056641,46.3502426147461,58.6266479492188,104.65274810791,32.5145835876465,-30.8647212982178,112.244499206543,23.240177154541,-35.7486000061035,129.773208618164,22.1453704833984,-25.3688812255859,124.076652526855,20.5960178375244,-31.1234455108643,143.630569458008,33.4396781921387,14.7368478775024,143.044509887695,36.9545211791992,28.0800552368164,140.040222167969,20.5289115905762,-15.5909242630005,145.176727294922,20.1015701293945,-11.53342628479,154.075592041016,22.5173072814941,6.53955507278442,73.3504791259766,26.5122985839844,-45.789981842041,83.2871551513672,25.8250312805176,-44.7200775146484,69.382194519043,22.1212673187256,-50.7831726074219,62.8146514892578,17.5085144042969,-54.6999549865723, +49.6731605529785,12.1354894638062,-54.999885559082,83.4359741210938,43.1693305969238,113.593132019043,99.4428405761719,43.0738182067871,107.388526916504,107.162994384766,46.1402206420898,97.283935546875,122.103454589844,49.654468536377,76.491096496582,-94.5962753295898,56.7565612792969,-5.01777791976929,-90.7386932373047,60.6627426147461,13.0401821136475,-89.2024459838867,62.7813529968262,25.0093555450439,-82.9950408935547,39.1549377441406,-31.8400173187256,-91.3947601318359,45.8835983276367,-25.426887512207,-92.5965728759766,53.2203140258789,-14.0847759246826,-93.5929794311523,48.4358444213867,-22.0701599121094,135.953826904297,43.3427467346191,53.5049476623535,132.023422241211,44.4897613525391,72.7881393432617,135.004730224609,43.4740600585938,63.6240386962891,90.575065612793,28.8429260253906,-41.4497604370117,103.997688293457,29.0888519287109,-34.6246871948242,132.536483764648,24.5702075958252,-19.4475021362305,127.248962402344,23.5703105926514,-26.0474491119385,143.302536010742,35.5993881225586,22.1626758575439,143.726593017578,37.4675712585449,41.054027557373,143.270538330078,37.5709800720215,34.5437889099121,153.509536743164,12.4470195770264,-12.8591556549072,152.886474609375,25.9938488006592,15.0532789230347,154.645660400391,19.0290641784668,0.400763005018234,80.0221405029297,22.63671875,-47.363639831543,91.2694396972656,24.5092010498047,-44.1875267028809,57.5568313598633,16.7681446075439,-54.6779556274414,69.2046737670898,17.2924957275391,-54.4097290039063,83.8545150756836,39.3336524963379,117.196487426758,112.223487854004,49.1597175598145,87.8962173461914,95.8116836547852,41.6093788146973,110.854866027832,109.884262084961,47.915397644043,92.5227661132813,115.931854248047,50.0659065246582,80.72021484375,128.229064941406,44.9620056152344,81.0580444335938,-93.5658721923828,59.4205207824707,5.83490610122681,-91.6319885253906,63.304801940918,19.6680316925049,-87.0514373779297,42.4361572265625,-28.7733154296875,-96.2700424194336,52.2855224609375,-15.7863435745239,-98.7838897705078,55.5019378662109,-9.17661571502686, +144.661682128906,36.5543823242188,48.724178314209,131.395370483398,43.6009712219238,78.5841979980469,97.9645919799805,27.2551708221436,-39.543571472168,113.788650512695,19.5738162994385,-37.8811073303223,104.113693237305,24.9779472351074,-38.0015182495117,130.888320922852,17.9598598480225,-28.551794052124,148.209014892578,31.5277900695801,22.4515056610107,148.251022338867,33.1068458557129,36.4339752197266,141.433364868164,14.4624176025391,-20.7530288696289,137.641983032227,19.4778099060059,-19.0735645294189,151.920379638672,9.67215824127197,-18.2182807922363,153.089508056641,17.0910739898682,-6.19884395599365,158.944061279297,17.3408985137939,5.45183801651001,158.045974731445,20.5370121002197,11.7070512771606,83.959716796875,18.0686702728271,-49.1529159545898,87.2017364501953,21.0098571777344,-46.4956512451172,58.8988647460938,12.9685707092285,-57.4352226257324,66.0863723754883,13.6698389053345,-57.0262832641602,87.9721145629883,40.8494033813477,114.359214782715,99.2340240478516,38.1983413696289,112.28800201416,105.86686706543,40.8722038269043,104.647254943848,112.895553588867,45.3408432006836,94.3260498046875,120.678321838379,48.5896606445313,81.1356506347656,123.522598266602,46.203426361084,84.4034729003906,-95.8003997802734,58.4480247497559,0.334930986166,-94.4503631591797,61.6473426818848,10.2876119613647,-92.0217208862305,65.7976455688477,26.70631980896,-94.2728424072266,36.080738067627,-34.5750846862793,-92.7727966308594,41.9241065979004,-29.3429718017578,-100.167320251465,43.8100929260254,-26.6222057342529,-97.7067794799805,56.9604797363281,-5.32979822158813,-105.437835693359,47.2022285461426,-21.096263885498,143.90559387207,36.7785034179688,56.1458053588867,139.883209228516,38.9005126953125,68.3420028686523,137.51496887207,38.7030906677246,78.3765869140625,95.8761901855469,24.0756587982178,-42.896800994873,122.175468444824,17.1923847198486,-35.038028717041,135.439758300781,14.7954502105713,-25.9577407836914,129.272171020508,14.6704368591309,-32.4330749511719,151.644348144531,29.3604755401611,27.9073390960693, +154.781646728516,27.2431697845459,45.764591217041,148.119018554688,7.44653987884521,-23.9629440307617,156.426818847656,6.35270214080811,-17.0104637145996,158.256011962891,8.58417129516602,-11.1599903106689,154.931671142578,25.7870273590088,22.4964084625244,73.2392730712891,18.7547378540039,-52.5814514160156,84.6175842285156,10.3107099533081,-54.2411117553711,96.3688430786133,15.9956674575806,-46.9223937988281,73.5761032104492,13.4369173049927,-55.8488693237305,57.0715866088867,8.43763637542725,-58.8907661437988,91.5583648681641,36.3305587768555,116.549423217773,116.039863586426,46.7485809326172,89.0110244750977,97.4365386962891,36.6078872680664,114.523223876953,110.704345703125,43.6570816040039,98.0804138183594,126.77791595459,43.3408470153809,86.9434280395508,133.590576171875,39.1056327819824,86.2866592407227,-96.6845779418945,60.4976272583008,5.10108280181885,-97.2279357910156,62.7453498840332,8.22093868255615,-93.9705123901367,63.3391075134277,14.4898233413696,-95.0415191650391,67.8232421875,21.218282699585,-102.756576538086,52.1935157775879,-14.6218290328979,-101.107414245605,57.2531127929688,-5.40333604812622,152.276412963867,28.6157035827637,62.4868278503418,115.113777160645,15.4262113571167,-39.9260101318359,104.561744689941,19.8657474517822,-41.3783531188965,134.151641845703,11.2240991592407,-30.198055267334,152.815475463867,29.1139526367188,38.4596710205078,137.628982543945,11.2555027008057,-26.8712291717529,139.681182861328,7.57973289489746,-28.7286109924316,154.005599975586,4.62382316589355,-21.6000137329102,161.45930480957,17.3151950836182,13.4971256256104,162.479415893555,4.94184398651123,-8.25666618347168,162.476409912109,17.0108661651611,17.3201007843018,98.1668167114258,18.8850498199463,-44.9373970031738,87.6918869018555,13.3121042251587,-50.6741638183594,88.0500259399414,17.5079154968262,-47.8537826538086,63.3714065551758,9.4315242767334,-59.1143913269043,72.4850006103516,9.27415752410889,-58.1228904724121,105.248809814453,36.3390617370605,110.168800354004,100.405334472656,30.9392318725586,117.375511169434, +109.530227661133,39.1769371032715,104.693267822266,117.237983703613,40.5809745788574,100.961898803711,118.584114074707,42.7875938415527,96.0013122558594,122.463493347168,40.8649063110352,96.838996887207,-99.7003784179688,61.5302314758301,2.98256611824036,-99.2299346923828,59.0694885253906,-0.951584994792938,-96.9354019165039,65.2640914916992,12.0259828567505,-96.8308944702148,72.7110290527344,26.8045291900635,-102.600563049316,36.8677139282227,-33.2501525878906,-105.40283203125,39.9381141662598,-29.7066078186035,-103.950691223145,55.1056022644043,-9.63348960876465,-107.515045166016,51.829776763916,-14.194188117981,149.209121704102,29.9491348266602,76.0479583740234,145.512756347656,33.1156463623047,77.3185806274414,144.23063659668,32.6193962097168,82.498291015625,122.746528625488,11.3792152404785,-38.4796676635742,128.283065795898,11.4666242599487,-35.0244293212891,156.341827392578,25.1618671417236,28.887134552002,155.561752319336,25.2776775360107,63.0008773803711,148.412048339844,3.85221791267395,-27.1341552734375,161.552322387695,0.313690990209579,-16.3981037139893,161.347305297852,2.91273498535156,-13.8279514312744,161.389312744141,14.4712181091309,5.77046918869019,159.2041015625,22.246280670166,30.170259475708,92.8756942749023,8.8259449005127,-52.148006439209,98.0407028198242,11.1714935302734,-49.0319023132324,92.5738677978516,12.9862718582153,-49.1404113769531,84.6933975219727,6.56940412521362,-56.1589012145996,103.678657531738,33.2052536010742,114.252197265625,116.413902282715,36.8791122436523,106.813468933105,129.547180175781,37.3014526367188,95.6516799926758,-99.7029800415039,67.0657653808594,9.62380695343018,-97.3048400878906,68.6708297729492,16.5770282745361,-108.195106506348,35.0985412597656,-33.6181907653809,-110.386322021484,38.9673194885254,-29.095947265625,-104.720764160156,58.0199851989746,-5.4325590133667,-102.633560180664,60.1295928955078,-1.43054699897766,-110.626350402832,48.5415573120117,-17.5117111206055,155.181701660156,24.3968906402588,73.9348526000977,141.267349243164,33.1398468017578,86.2352600097656, +115.774841308594,12.0529813766479,-41.5254669189453,109.018173217773,8.97280883789063,-45.4961547851563,134.260650634766,7.92793703079224,-32.1406478881836,163.430511474609,16.4093074798584,61.4311218261719,143.053512573242,2.12758803367615,-31.8118133544922,153.1875,1.55910301208496,-24.8649311065674,160.238204956055,-5.00741100311279,-22.2570762634277,164.130584716797,12.7040452957153,10.249608039856,166.300796508789,0.148675993084908,-7.11812400817871,164.259582519531,6.65983295440674,-0.807655990123749,164.950668334961,14.407112121582,23.0897655487061,103.989685058594,6.98874521255493,-48.6227607727051,89.4972686767578,6.67884492874146,-54.6850547790527,70.7567291259766,5.03459310531616,-59.6189384460449,80.6188888549805,3.6585590839386,-58.0066795349121,61.7434463500977,4.4336838722229,-59.9198684692383,105.556838989258,29.7475147247314,116.528427124023,110.326309204102,33.1085433959961,112.158996582031,119.99324798584,36.498779296875,105.616348266602,126.532890319824,37.0040283203125,99.5819625854492,-101.546455383301,65.1821823120117,5.20063304901123,-100.641372680664,70.861946105957,12.1765966415405,-99.935302734375,73.9339447021484,18.7165393829346,-107.382026672363,55.192310333252,-9.6912956237793,-110.940376281738,52.5900535583496,-12.8481550216675,156.194808959961,22.2017765045166,79.0680541992188,148.190017700195,30.0629444122314,80.0507431030273,152.592437744141,23.0806617736816,86.8398132324219,118.754127502441,6.18875598907471,-42.9694061279297,130.760299682617,5.39555883407593,-35.9439163208008,161.13427734375,20.1028709411621,37.3250617980957,135.496780395508,3.77817988395691,-34.0276298522949,146.793869018555,-0.135148003697395,-31.284761428833,150.081192016602,-0.532124996185303,-29.0090408325195,163.129470825195,-5.62519121170044,-19.0291614532471,168.560012817383,8.56349945068359,18.6791343688965,93.1039199829102,4.51053190231323,-54.3805236816406,98.2447204589844,7.83593797683716,-51.0834007263184,67.1638793945313,3.39091205596924,-60.2101974487305,88.4929656982422,2.47153210639954,-56.4180221557617, +59.5456314086914,-2.606684923172,-59.9027671813965,114.97176361084,33.0359382629395,111.377922058105,122.277481079102,37.8132057189941,102.298027038574,119.310180664063,32.8713188171387,110.038787841797,139.579177856445,31.7073078155518,90.9525146484375,131.387359619141,31.1900577545166,101.928993225098,-104.18571472168,63.4159126281738,0.543998003005981,-102.41854095459,70.4227066040039,7.86794519424438,-99.1289138793945,76.7028121948242,27.5069980621338,-114.169692993164,44.7826881408691,-20.4811019897461,-107.422035217285,60.9445724487305,-4.16311407089233,-110.29931640625,56.6383514404297,-9.01972961425781,-114.364715576172,48.9997024536133,-16.0046634674072,162.49641418457,15.3716058731079,76.09765625,148.548049926758,25.4642944335938,89.4135589599609,122.218475341797,2.64464902877808,-42.5933685302734,108.350112915039,4.10593223571777,-47.590259552002,164.085571289063,14.5289239883423,69.4248123168945,165.44270324707,14.4386138916016,41.9059104919434,142.171432495117,-3.0635199546814,-36.077033996582,153.849578857422,-3.90991306304932,-27.7117118835449,166.427795410156,-7.48026323318481,-15.5221176147461,164.630630493164,-14.4082117080688,-26.1305561065674,169.989151000977,-10.6828470230103,-11.8974618911743,168.53401184082,7.23337888717651,14.0704832077026,168.050964355469,5.28903818130493,8.10473823547363,169.732131958008,-1.31782901287079,0.332132995128632,170.053161621094,7.3734917640686,24.8583393096924,98.6645584106445,3.1635799407959,-52.7312622070313,79.0608367919922,-4.56321716308594,-59.2109985351563,71.7585296630859,-0.667509019374847,-59.9371719360352,88.1719284057617,-5.04904508590698,-57.4609260559082,115.817848205566,28.98703956604,114.64323425293,124.482696533203,33.2728614807129,106.169410705566,138.804092407227,29.4420852661133,95.2889404296875,-104.252723693848,67.6785278320313,3.13630104064941,-105.078804016113,78.4891891479492,10.1822023391724,-101.685470581055,76.9917449951172,17.9418621063232,-101.977500915527,81.0841445922852,23.0915660858154,-119.851249694824,35.7444000244141,-28.1966571807861, +-113.768653869629,54.178409576416,-11.6885414123535,155.278717041016,21.8102378845215,83.2291564941406,163.328491210938,12.8175563812256,81.09765625,152.100387573242,21.5347118377686,90.3212509155273,118.037063598633,2.15095090866089,-44.890495300293,125.76781463623,-0.0748860016465187,-41.2868423461914,132.626480102539,0.697695016860962,-37.3437538146973,169.485107421875,7.58471298217773,64.2436981201172,170.329177856445,7.53927898406982,42.5983772277832,145.244720458984,-9.7791576385498,-38.0042190551758,157.379913330078,-5.37195587158203,-25.5102958679199,149.237121582031,-8.2076940536499,-34.3648643493652,167.163879394531,-13.3660097122192,-21.7472267150879,159.842163085938,-10.5036287307739,-27.7076110839844,169.732131958008,-4.62269306182861,-5.21290683746338,174.427597045898,1.01402902603149,20.635326385498,97.4201354980469,-0.641278028488159,-54.1307983398438,68.4805068969727,-4.34487581253052,-60.0016746520996,94.0475082397461,-8.66494941711426,-56.4603271484375,58.7399520874023,-6.15673303604126,-60.5620307922363,105.734855651855,24.5247039794922,119.898750305176,121.136367797852,29.3177719116211,112.001983642578,147.823989868164,23.7802314758301,93.3906555175781,126.043846130371,28.7268161773682,109.114692687988,134.976715087891,28.6405067443848,100.696868896484,-107.454032897949,65.4293060302734,-1.83416604995728,-108.00708770752,80.7285079956055,6.4262638092041,-105.345825195313,71.9341506958008,3.84159994125366,-126.65291595459,31.8373203277588,-29.63330078125,-121.445404052734,41.9735107421875,-21.0098533630371,-113.201599121094,59.3874206542969,-8.62412166595459,-117.198989868164,52.4631423950195,-13.4381132125854,166.538818359375,9.55390644073486,76.6572189331055,159.786163330078,12.3340091705322,89.9893264770508,121.568405151367,-4.32279396057129,-45.0613136291504,115.506813049316,-1.47441399097443,-46.9214935302734,137.336944580078,-7.84138822555542,-41.368049621582,138.963119506836,-13.6605377197266,-44.0925178527832,153.727569580078,-8.32784557342529,-30.974630355835,169.928146362305,-15.9652652740479,-19.7593326568604, +164.146591186523,-17.3498001098633,-29.1992568969727,168.938049316406,-17.609827041626,-23.3548851013184,172.136367797852,-6.41663885116577,-1.22942698001862,174.563613891602,-0.874993026256561,14.8097553253174,172.370376586914,-2.09879589080811,5.72386503219604,176.704803466797,-1.00683903694153,40.0912322998047,87.2873458862305,-13.1603889465332,-59.2554016113281,74.0747528076172,-5.07187700271606,-59.8044548034668,64.6853332519531,-5.76395511627197,-59.9595718383789,64.4805145263672,-10.2373037338257,-60.8715629577637,115.228782653809,25.2568740844727,117.42650604248,143.244522094727,23.7719287872314,98.4302444458008,135.619781494141,21.6999263763428,106.733467102051,138.163040161133,25.7426223754883,100.57186126709,-109.553237915039,71.9165496826172,-1.94223701953888,-110.196304321289,63.0818786621094,-5.18495416641235,-104.409736633301,84.6506958007813,18.0421714782715,-107.84107208252,85.8332138061523,10.5705404281616,-127.753028869629,35.6824951171875,-25.3671817779541,-119.488220214844,47.6465682983398,-16.5335178375244,-116.141891479492,56.1657028198242,-11.1926927566528,163.523529052734,10.2577047348022,85.7092056274414,170.245178222656,1.47629499435425,83.1261520385742,151.480331420898,17.6967334747314,96.4611587524414,107.655044555664,-4.18166017532349,-50.4051361083984,125.361778259277,-4.35331678390503,-43.4504547119141,172.231384277344,4.19433116912842,61.0192794799805,171.160278320313,3.34004688262939,73.107666015625,128.882125854492,-5.07093715667725,-42.4141502380371,149.028106689453,-16.9163570404053,-40.9597091674805,156.847869873047,-14.0936813354492,-33.3470649719238,173.070449829102,-21.4365997314453,-19.1974773406982,173.463485717773,-15.6521339416504,-9.3763952255249,179.351058959961,-9.11519336700439,13.500527381897,178.686004638672,-4.08556985855103,33.190559387207,175.221664428711,0.465701997280121,52.0834083557129,103.033584594727,-8.84592723846436,-53.4544334411621,78.9144287109375,-9.41448211669922,-60.1300888061523,68.7746276855469,-8.76744937896729,-60.385913848877,97.8709869384766,-12.2840032577515,-56.1328964233398, +113.808647155762,18.9651584625244,121.24488067627,120.970352172852,24.5194034576416,115.43132019043,125.57780456543,23.9156436920166,112.952072143555,146.273834228516,19.1757793426514,101.039909362793,131.857406616211,18.7969417572021,111.943977355957,-113.497627258301,70.0637664794922,-6.76959991455078,-112.711555480957,64.5042266845703,-7.09065103530884,-110.101295471191,76.9679489135742,0.614706993103027,-110.821365356445,86.3085632324219,6.41746282577515,-103.257621765137,85.3826675415039,23.4391994476318,-124.444694519043,45.0122108459473,-18.5540142059326,-127.044960021973,41.5395698547363,-20.6539192199707,-121.719429016113,52.2682228088379,-14.273494720459,-120.151275634766,57.6902542114258,-12.349006652832,166.5908203125,2.10083603858948,91.0864334106445,153.700561523438,11.9623718261719,100.377838134766,112.750541687012,-6.7003870010376,-49.1419105529785,123.726615905762,-8.22163581848145,-45.8955955505371,174.566604614258,0.456061989068985,63.9067687988281,133.536575317383,-11.2408018112183,-45.000804901123,137.669998168945,-19.7705383300781,-48.5877571105957,152.50244140625,-16.5487213134766,-38.5515747070313,169.821136474609,-21.2898864746094,-24.9751434326172,162.073364257813,-20.6876277923584,-33.4260749816895,176.207763671875,-16.0362720489502,-2.13233494758606,175.692718505859,-6.99643611907959,6.87191677093506,179.011032104492,-6.46913385391235,19.9658603668213,181.844314575195,-8.80056190490723,38.429069519043,178.800018310547,-4.7291841506958,47.4522552490234,81.6396942138672,-13.4195146560669,-60.6607398986816,73.7481231689453,-10.3167114257813,-60.8292541503906,90.935302734375,-17.6681327819824,-59.4939270019531,60.5000228881836,-15.5980291366577,-63.9717636108398,117.471008300781,20.3171920776367,119.350700378418,140.871292114258,17.821647644043,107.271514892578,143.881607055664,16.8821544647217,106.133399963379,135.244750976563,17.3216972351074,110.745849609375,-114.449722290039,76.5317993164063,-4.604248046875,-106.182914733887,90.9407119750977,17.9848651885986,-110.708351135254,90.9568099975586,8.66718292236328, +-104.630760192871,91.2287445068359,23.7086277008057,-134.314666748047,34.0471382141113,-25.5145969390869,-122.67552947998,49.1908226013184,-15.8607511520386,-130.528305053711,37.8211097717285,-23.2738780975342,-116.246894836426,61.0589866638184,-9.97358417510986,169.869140625,-0.950567007064819,88.3998641967773,175.781707763672,-4.00213193893433,73.3518905639648,149.830184936523,12.3707122802734,105.099304199219,115.342796325684,-10.7664546966553,-49.2900238037109,109.853256225586,-10.3087100982666,-51.2562217712402,126.979934692383,-12.9435682296753,-47.6807708740234,151.532348632813,-19.9195537567139,-41.1679306030273,147.594955444336,-21.6346206665039,-44.6194686889648,174.891632080078,-20.6184196472168,-13.365406036377,165.939758300781,-22.9703502655029,-30.8320178985596,177.204864501953,-19.1046714782715,-4.44985198974609,179.928131103516,-13.4209146499634,7.93084096908569,183.742492675781,-14.3689079284668,17.0920791625977,182.771408081055,-10.9012680053711,25.2238750457764,103.14860534668,-12.7100458145142,-54.6192474365234,83.2769546508789,-18.3518981933594,-60.964771270752,75.6272048950195,-14.5456247329712,-61.9528656005859,70.2675857543945,-13.8138542175293,-62.0832824707031,86.8586120605469,-20.4437026977539,-60.829158782959,96.7189712524414,-15.6613340377808,-57.5836372375488,68.7567291259766,-16.9596614837646,-63.5179214477539,59.7202453613281,-20.0151615142822,-65.6441268920898,120.522308349609,11.539529800415,121.871940612793,129.085144042969,14.6686372756958,116.054382324219,132.358459472656,11.3373107910156,116.639434814453,-118.258094787598,72.5607070922852,-9.00916862487793,-115.26880645752,66.0685806274414,-8.89516830444336,-108.316116333008,91.4068603515625,12.7883567810059,-113.317611694336,84.9230270385742,2.74752306938171,-114.753753662109,90.255744934082,4.15845108032227,-128.844131469727,45.1540260314941,-18.7936363220215,-126.829933166504,48.9044914245605,-17.121675491333,-133.479583740234,41.2055397033691,-21.3761901855469,-127.674018859863,52.481143951416,-16.4191055297852,-119.34220123291,68.0420684814453,-10.8882637023926, +175.355682373047,-8.73070526123047,86.2252502441406,176.37077331543,-8.48763179779053,82.1375503540039,166.597808837891,0.258111000061035,93.009521484375,158.94206237793,7.13106918334961,97.4798583984375,153.131500244141,7.00296592712402,105.86637878418,118.626121520996,-12.374813079834,-49.1384086608887,179.208053588867,-7.2463698387146,63.934268951416,133.018539428711,-16.8804531097412,-48.6155624389648,139.814193725586,-23.6491165161133,-49.6075553894043,176.735824584961,-29.0104446411133,-19.663423538208,176.600799560547,-24.7940292358398,-15.6646308898926,171.279266357422,-26.9887447357178,-26.3382778167725,161.384307861328,-24.0687599182129,-35.7612037658691,178.938034057617,-18.7069320678711,-0.355172008275986,177.686920166016,-12.6311378479004,4.80465507507324,184.870620727539,-19.1660785675049,10.1032943725586,185.076629638672,-14.5911302566528,37.6930961608887,182.195358276367,-10.9540729522705,51.3759384155273,178.011947631836,-4.66817712783813,61.2036018371582,100.909385681152,-16.2998962402344,-57.2350044250488,77.2056655883789,-18.236686706543,-62.4449157714844,91.2770385742188,-22.3821926116943,-62.0300712585449,68.2477874755859,-20.1951770782471,-64.5398178100586,118.643119812012,8.15725898742676,124.210174560547,141.420364379883,12.8314580917358,111.406921386719,145.228729248047,11.0116786956787,110.476829528809,-117.435012817383,76.3512878417969,-6.78682088851929,-108.101104736328,96.1472244262695,14.0090770721436,-106.09090423584,95.9882049560547,20.3316974639893,-110.671348571777,95.3553466796875,9.40640640258789,-115.634834289551,95.5061645507813,4.09172487258911,-117.243995666504,80.7055130004883,-3.75765490531921,-137.156936645508,36.3335609436035,-23.7042198181152,-130.604293823242,57.7603607177734,-16.4396076202393,-128.082061767578,66.5705261230469,-14.4009065628052,177.0068359375,-13.3363065719604,88.2617568969727,178.692001342773,-10.0108814239502,75.4039916992188,175.014633178711,-12.8744621276855,91.7369918823242,147.701965332031,7.63773918151855,110.941879272461,116.619926452637,-14.7961502075195,-51.4310340881348, +109.431213378906,-14.0977821350098,-53.3708267211914,125.26676940918,-16.7998466491699,-50.8196754455566,130.760299682617,-21.5487117767334,-52.6323547363281,151.722366333008,-24.1671695709229,-42.9585075378418,146.794876098633,-25.6219100952148,-46.8138847351074,134.73469543457,-25.3739852905273,-53.1951065063477,181.186248779297,-25.3274822235107,-6.12181615829468,165.649719238281,-26.8894367218018,-33.0665397644043,182.308349609375,-19.5499153137207,3.86753296852112,186.553787231445,-18.7970428466797,18.1167793273926,184.98161315918,-14.9050598144531,23.3916969299316,104.174705505371,-16.7063388824463,-56.8975715637207,80.7392044067383,-22.61061668396,-61.8164558410645,73.0466537475586,-18.7648391723633,-63.1533851623535,85.3882675170898,-25.8127288818359,-63.2177925109863,99.7058715820313,-18.9753589630127,-59.4349212646484,63.4213104248047,-26.3095779418945,-66.272590637207,124.108657836914,7.36160087585449,122.672027587891,139.557174682617,4.56221723556519,118.542625427246,-128.726119995117,71.3443908691406,-13.7937479019165,-125.117767333984,78.6740036010742,-9.05244445800781,-104.702766418457,96.9088973999023,28.2630729675293,-116.590934753418,86.2357559204102,0.778459012508392,-118.552124023438,92.4964599609375,0.800760984420776,-134.96272277832,45.0417137145996,-20.4014949798584,-130.408279418945,48.7406768798828,-18.1367740631104,-140.159240722656,38.7636985778809,-23.1528644561768,180.618194580078,-15.4209108352661,79.4528884887695,159.395111083984,1.3760449886322,101.789978027344,167.647918701172,-5.69313812255859,96.488655090332,151.694366455078,1.39532697200775,111.252906799316,182.596389770508,-14.152286529541,63.8602638244629,141.10432434082,-32.0422401428223,-52.1401023864746,137.587982177734,-29.8880271911621,-53.5330429077148,179.466079711914,-28.952335357666,-14.2752952575684,176.240753173828,-31.5559921264648,-21.8274345397949,173.539505004883,-33.1001434326172,-26.349178314209,163.004455566406,-29.4858894348145,-36.5162734985352,186.355758666992,-23.5397052764893,7.30587005615234,188.094924926758,-23.5949115753174,13.5035266876221, +184.734603881836,-15.7997484207153,49.8593902587891,187.465866088867,-19.9067516326904,27.3951873779297,75.7049102783203,-22.5929145812988,-62.9670677185059,80.3782653808594,-27.5301971435547,-63.0904808044434,95.7559814453125,-26.6336097717285,-65.9167556762695,98.3303298950195,-23.2383766174316,-63.3987121582031,68.3182907104492,-26.9620418548584,-65.2534866333008,124.739715576172,2.86532092094421,125.382286071777,145.095703125,0.454928010702133,118.044570922852,134.343658447266,-0.125945001840591,124.448196411133,-128.183074951172,75.4135894775391,-12.1321859359741,-109.621246337891,100.206817626953,10.612943649292,-107.347023010254,100.76887512207,14.7234468460083,-105.256820678711,101.325927734375,25.2276763916016,-115.021774291992,99.7279739379883,4.47652196884155,-117.398010253906,103.734161376953,2.6193699836731,-121.05436706543,82.7792129516602,-4.56525421142578,-142.953521728516,34.3598670959473,-24.1404609680176,-140.879302978516,43.2164344787598,-22.4323959350586,-140.708297729492,57.586742401123,-20.0583610534668,-140.316253662109,62.208797454834,-19.451602935791,-135.932815551758,73.3245849609375,-16.7369365692139,178.386978149414,-19.8018398284912,91.3542556762695,174.229568481445,-16.1559829711914,95.5601654052734,158.696044921875,-6.01468896865845,107.366523742676,151.214324951172,-5.12933301925659,116.498420715332,109.959266662598,-17.0723724365234,-56.0858917236328,121.766426086426,-20.3911972045898,-55.3049163818359,126.791923522949,-22.1381683349609,-54.7499618530273,128.788116455078,-27.2798748016357,-57.7252540588379,152.367431640625,-28.4701881408691,-43.8272933959961,146.597854614258,-35.0158348083496,-49.3983383178711,131.729400634766,-32.5266876220703,-58.9163665771484,184.277557373047,-28.5047931671143,-3.11373090744019,167.651916503906,-33.167049407959,-33.16064453125,183.859512329102,-24.5878086090088,0.329793006181717,188.862991333008,-23.8683376312256,19.4938144683838,187.264846801758,-19.2369842529297,39.0000267028809,187.867904663086,-20.2319812774658,32.442081451416,104.692756652832,-22.8973426818848,-63.2919006347656, +87.3972625732422,-28.0122451782227,-65.0658721923828,83.060432434082,-32.3523712158203,-65.5462188720703,66.3751983642578,-31.2387619018555,-67.2728881835938,141.003311157227,-1.09116697311401,122.354995727539,-132.124450683594,76.3902816772461,-14.1959867477417,-127.436996459961,80.6476058959961,-10.0252780914307,-111.630447387695,100.045806884766,7.87772607803345,-105.913879394531,100.940887451172,19.2902946472168,-104.993797302246,101.004898071289,28.7600212097168,-121.231384277344,86.8271102905273,-3.16754698753357,-119.685234069824,102.812080383301,1.14153599739075,-145.623779296875,39.9222145080566,-23.3367824554443,-146.386856079102,45.6252708435059,-23.0697555541992,-138.48307800293,67.8163452148438,-18.3863983154297,181.50227355957,-20.4612045288086,83.809814453125,182.289352416992,-19.3730983734131,79.0630493164063,166.093765258789,-9.16385841369629,100.998901367188,167.621917724609,-17.4423084259033,104.515243530273,158.80305480957,-12.2368993759155,111.833961486816,117.361991882324,-18.2690906524658,-54.83056640625,110.697341918945,-21.1803760528564,-60.7296485900879,145.571746826172,-39.0554275512695,-52.0895004272461,136.928909301758,-38.5402755737305,-58.209300994873,180.294158935547,-33.3070602416992,-15.4606113433838,177.360885620117,-37.4403686523438,-21.9723491668701,185.157638549805,-33.2588577270508,-5.47401285171509,172.488388061523,-36.0857353210449,-28.4246807098389,162.857452392578,-34.4276733398438,-37.832103729248,188.462966918945,-28.2576694488525,7.32453203201294,190.340148925781,-28.8158226013184,16.2459964752197,184.78059387207,-18.8407459259033,62.0051803588867,190.710174560547,-29.0343456268311,51.2653274536133,192.781387329102,-32.2775611877441,26.400089263916,74.496696472168,-28.6421051025391,-63.9931640625,92.6803741455078,-30.7269115447998,-67.2819900512695,86.5497817993164,-31.9197273254395,-66.3288955688477,102.494537353516,-26.0539512634277,-65.5661239624023,79.5901947021484,-32.6679000854492,-65.2385864257813,74.7979278564453,-32.1891555786133,-65.4765090942383,128.508087158203,-1.27714502811432,127.044456481934, +146.479843139648,-4.57650804519653,120.694831848145,135.904800415039,-4.69397020339966,126.80443572998,-110.556335449219,105.181304931641,7.60153913497925,-108.186111450195,104.761268615723,10.633846282959,-105.32682800293,105.20930480957,14.8757619857788,-104.282722473145,105.928375244141,28.8323287963867,-103.803672790527,105.672355651855,23.7990341186523,-121.445404052734,95.2736358642578,-1.60247302055359,-113.839660644531,104.300224304199,4.96138000488281,-118.750137329102,109.357719421387,1.80321002006531,-149.595153808594,34.2484550476074,-23.3885898590088,-149.921188354492,55.4506378173828,-22.5951099395752,-148.118026733398,67.511116027832,-21.2253761291504,-143.776596069336,71.7138290405273,-19.4420013427734,-136.565887451172,78.9950408935547,-15.9167556762695,182.419372558594,-31.7765121459961,90.8968048095703,175.942733764648,-22.7110252380371,97.1786270141602,158.04997253418,-16.5203189849854,115.471321105957,122.798522949219,-25.8216304779053,-59.6237411499023,124.681709289551,-30.2670650482178,-61.6254348754883,157.074890136719,-41.6166763305664,-43.1382217407227,132.773498535156,-37.1184387207031,-60.2124977111816,183.506469726563,-34.9721260070801,-9.97524356842041,189.602066040039,-33.8955230712891,4.64439916610718,167.335891723633,-37.8140029907227,-34.3169593811035,189.759094238281,-29.8756275177002,10.1068935394287,191.041213989258,-29.528694152832,21.6034202575684,186.93782043457,-21.530309677124,53.1167106628418,191.797286987305,-29.2954711914063,32.9266319274902,192.825393676758,-32.0337409973145,39.2359504699707,110.503318786621,-23.1069641113281,-62.6782379150391,98.52734375,-29.9594345092773,-67.6049194335938,85.9248199462891,-36.6745948791504,-68.2817840576172,81.0403366088867,-36.3655624389648,-67.9318542480469,110.60033416748,-26.6764144897461,-65.0715713500977,71.194465637207,-35.3393630981445,-68.94775390625,150.086196899414,-8.96232795715332,119.880752563477,142.167419433594,-4.83250284194946,124.210174560547,-132.429489135742,82.1196517944336,-13.3902082443237,-104.068702697754,105.38932800293,19.3594017028809, +-124.043655395508,89.2122421264648,-5.81027603149414,-115.460823059082,109.464729309082,2.83217096328735,-122.3544921875,109.749755859375,0.666996002197266,-123.539611816406,99.9270858764648,-1.99707198143005,-153.11750793457,34.706600189209,-23.3433837890625,-149.903198242188,46.8489875793457,-23.3638877868652,-145.921813964844,76.5800094604492,-19.0920677185059,185.648696899414,-28.7277145385742,78.4069900512695,180.117141723633,-32.7692108154297,96.1704254150391,184.890609741211,-30.4723854064941,83.2886657714844,173.397491455078,-24.3121814727783,101.535949707031,186.112731933594,-27.7307186126709,74.4744033813477,165.716735839844,-22.8312377929688,110.940872192383,115.633827209473,-24.5815086364746,-62.0904808044434,124.473693847656,-34.7451057434082,-63.6575317382813,158.140991210938,-46.851993560791,-44.0769157409668,141.534362792969,-41.0251197814941,-56.5021324157715,135.443756103516,-44.6509742736816,-61.2620010375977,129.429183959961,-37.6623916625977,-62.0358772277832,182.297348022461,-40.1052284240723,-14.5353212356567,177.646896362305,-43.2752418518066,-22.7753276824951,186.55778503418,-37.7712020874023,-5.76791191101074,172.632415771484,-43.0066146850586,-29.0946483612061,161.928359985352,-44.4152526855469,-39.8065986633301,192.502365112305,-40.3532562255859,9.98046207427979,192.58935546875,-36.0567321777344,16.1137828826904,188.067916870117,-27.972240447998,63.7088432312012,191.986297607422,-38.1200332641602,66.9969635009766,193.271438598633,-36.1879463195801,53.6292610168457,194.90559387207,-38.1074333190918,25.0743598937988,194.252532958984,-38.7501945495605,19.1707820892334,97.2562255859375,-32.618896484375,-68.2938842773438,89.6410751342773,-36.2288513183594,-68.2814865112305,146.08381652832,-8.66705894470215,123.19807434082,139.172134399414,-8.97723007202148,127.294479370117,-127.986045837402,85.0089340209961,-9.95078086853027,-106.872978210449,108.939674377441,7.55721378326416,-112.228500366211,109.300712585449,4.22049713134766,-104.535751342773,108.612640380859,10.1945018768311,-100.901390075684,109.110687255859,16.3017024993896, +-101.599464416504,110.761856079102,28.574104309082,-99.1108169555664,111.248901367188,22.0017585754395,-125.939849853516,93.4114532470703,-6.82377481460571,-122.761535644531,116.13338470459,-0.0916000008583069,-122.727531433105,104.484237670898,-0.147756993770599,-117.06697845459,114.091178894043,1.05493700504303,-152.335433959961,32.4511299133301,-23.5818061828613,-153.11750793457,61.7571487426758,-22.8786373138428,-155.222717285156,56.2313117980957,-23.2612762451172,-149.144119262695,81.3629760742188,-19.3096885681152,-136.307861328125,84.7431030273438,-15.1746826171875,184.258560180664,-43.6445770263672,96.0408172607422,185.223648071289,-35.3095588684082,87.4862823486328,175.78971862793,-30.0416431427002,101.719970703125,168.354995727539,-29.8989295959473,112.455017089844,153.772567749023,-17.0074672698975,119.887756347656,159.00407409668,-21.8756446838379,117.864555358887,115.912857055664,-28.293872833252,-64.7587432861328,117.483009338379,-31.639799118042,-65.6760330200195,149.917175292969,-49.3339347839355,-53.8988761901855,138.010025024414,-43.2642364501953,-59.7362518310547,146.785873413086,-44.0298156738281,-53.7666625976563,186.20573425293,-46.6499710083008,-11.757848739624,189.542068481445,-37.8788108825684,1.39560997486115,167.817932128906,-45.6531753540039,-34.7885055541992,164.418594360352,-45.6059684753418,-37.9416160583496,195.591674804688,-39.3725547790527,30.4829902648926,194.445541381836,-36.4761734008789,39.594783782959,103.185600280762,-35.6697959899902,-68.2468872070313,93.4328536987305,-35.5257835388184,-68.5005111694336,108.745155334473,-32.0612411499023,-67.1384735107422,83.5096817016602,-39.5409774780273,-71.2771835327148,88.7030868530273,-39.9079093933105,-70.5921173095703,79.3705673217773,-38.9746170043945,-71.6819229125977,-131.372375488281,87.5857849121094,-12.4918203353882,-109.510238647461,109.555732727051,5.51247406005859,-101.890495300293,109.013679504395,13.3338098526001,-100.650367736816,110.58683013916,25.5020027160645,-127.782028198242,90.1042251586914,-9.55544281005859,-113.346611022949,114.321197509766,1.10172200202942, +-124.908241271973,115.078277587891,-0.218813002109528,-125.937843322754,109.225700378418,-0.326956003904343,-129.800216674805,95.7760848999023,-8.91777038574219,-126.018859863281,104.558242797852,-1.43683695793152,-154.751159667969,32.0973472595215,-23.4738464355469,-154.102600097656,67.4719161987305,-22.4391956329346,-156.645355224609,37.8645629882813,-23.5787563323975,-157.456939697266,78.9325332641602,-21.3250865936279,190.194137573242,-40.969612121582,81.2827682495117,178.956039428711,-42.8980026245117,105.561347961426,164.473617553711,-30.3906764984131,117.698539733887,121.448394775391,-37.7606010437012,-65.9367599487305,163.689544677734,-49.4593467712402,-40.5402679443359,153.661544799805,-51.120906829834,-51.7051620483398,144.140609741211,-46.7989845275879,-57.1378974914551,138.527069091797,-52.2258186340332,-62.1496887207031,125.952842712402,-48.1036148071289,-65.6981353759766,178.934036254883,-46.9551010131836,-22.2772808074951,173.08544921875,-47.3561401367188,-29.4915866851807,192.408340454102,-44.4252510070801,5.46642923355103,195.616668701172,-47.2325286865234,12.8986682891846,194.571563720703,-44.0478134155273,64.2585983276367,195.286636352539,-41.9476127624512,51.9343910217285,196.986801147461,-45.0431137084961,23.6095180511475,97.1843185424805,-35.9826240539551,-68.6717224121094,91.9032974243164,-40.0890274047852,-70.3332824707031,113.127578735352,-31.7638130187988,-66.8408432006836,71.1492691040039,-38.1696434020996,-73.0604553222656,148.650054931641,-17.2363872528076,123.505104064941,142.386444091797,-12.8330583572388,126.43839263916,-106.239921569824,112.151992797852,3.97998404502869,-101.559455871582,111.799957275391,6.14384603500366,-110.017288208008,113.114082336426,2.13335299491882,-99.2418365478516,111.506927490234,8.76698303222656,-96.5920715332031,111.469924926758,16.3059024810791,-96.2882461547852,112.048980712891,19.0468692779541,-97.3798522949219,115.662338256836,28.2057666778564,-95.8391952514648,115.153785705566,23.7637825012207,-119.868255615234,118.300590515137,-0.368707001209259,-124.704727172852,111.88646697998,0.160484999418259, +-126.476898193359,122.563011169434,-0.691730976104736,-115.736839294434,118.779640197754,-1.04045796394348,-126.843933105469,101.664962768555,-3.30054998397827,-160.496231079102,63.4433174133301,-23.6768169403076,-155.485748291016,90.7587966918945,-19.8049354553223,-149.694183349609,93.8547897338867,-17.9029502868652,-135.092742919922,89.9559097290039,-13.8134498596191,193.181427001953,-44.4536552429199,74.8157348632813,179.647094726563,-47.3097343444824,107.098503112793,189.936096191406,-44.7881851196289,85.6684951782227,174.220565795898,-37.4686737060547,108.94367980957,167.171875,-34.4657745361328,116.893455505371,155.831756591797,-21.5809154510498,120.457809448242,166.498809814453,-43.6883811950684,123.90714263916,120.164268493652,-44.9462051391602,-67.5033111572266,116.289894104004,-36.2763557434082,-67.2890853881836,149.060104370117,-53.4702415466309,-56.3638191223145,134.819702148438,-52.7370681762695,-64.1113739013672,181.426284790039,-50.2197227478027,-21.2461795806885,189.409057617188,-49.5631561279297,-5.6032657623291,191.467254638672,-46.6074676513672,1.0417959690094,167.714935302734,-48.7477760314941,-36.0066261291504,196.288726806641,-42.1559295654297,36.6826972961426,198.291931152344,-48.5770606994629,28.8875350952148,100.601348876953,-41.363956451416,-69.6886215209961,108.44312286377,-40.1947364807129,-68.5689163208008,95.9381942749023,-40.2900466918945,-70.0198516845703,111.822448730469,-41.4922676086426,-68.7360305786133,88.0885238647461,-42.3940544128418,-73.8491363525391,78.1201477050781,-40.0962295532227,-74.1733703613281,-133.060546875,92.8533020019531,-12.0173740386963,-91.7761001586914,115.599327087402,4.6647310256958,-92.443962097168,113.875160217285,13.8854637145996,-94.0906295776367,114.89225769043,21.7612361907959,-99.2601318359375,115.741348266602,30.9464359283447,-96.6089706420898,114.822746276855,25.5139045715332,-105.915878295898,118.848640441895,-2.73502397537231,-122.762535095215,123.66911315918,-1.27370095252991,-125.981597900391,114.550727844238,-0.282418996095657,-131.606399536133,109.688751220703,-1.57340002059937, +-127.054954528809,114.023170471191,-0.346024990081787,-108.236106872559,121.568908691406,-4.14546203613281,-134.751708984375,98.8464889526367,-9.52109909057617,-133.2265625,107.485534667969,-2.65061593055725,-159.154113769531,73.3389892578125,-22.1128635406494,-152.357437133789,94.9765090942383,-18.6297206878662,-161.085296630859,90.6899871826172,-20.4487991333008,-142.39045715332,90.7584991455078,-16.0664691925049,192.101318359375,-45.9764060974121,81.1455535888672,177.66389465332,-50.0640068054199,111.616943359375,188.969009399414,-51.055305480957,91.3207550048828,157.899978637695,-28.6828117370605,122.757034301758,163.154479980469,-37.6913909912109,123.715126037598,160.917266845703,-55.0321922302246,-48.2048187255859,157.370910644531,-57.1327018737793,-52.674259185791,143.427551269531,-52.802074432373,-59.66064453125,135.947830200195,-60.3787155151367,-67.0635681152344,123.396583557129,-53.970386505127,-68.8591384887695,119.430198669434,-47.9460983276367,-68.4612045288086,173.241470336914,-50.9516944885254,-31.0454387664795,184.851608276367,-49.8952903747559,-16.0687713623047,187.297836303711,-51.3197288513184,-12.9147615432739,194.341552734375,-55.1966094970703,0.837085008621216,168.541015625,-52.1640129089355,-37.5733757019043,196.74577331543,-59.0465850830078,4.05990123748779,199.556045532227,-56.432430267334,21.7888374328613,196.791778564453,-48.4256439208984,54.2691230773926,194.511566162109,-50.3535346984863,77.0004501342773,198.014892578125,-50.4028396606445,43.8928031921387,199.564056396484,-53.6300582885742,27.9109382629395,92.5606689453125,-43.4069519042969,-73.5018005371094,149.799179077148,-21.7174282073975,124.645217895508,-101.250427246094,114.846252441406,1.47243797779083,-93.2512435913086,116.249389648438,1.54223501682281,-89.7481002807617,116.008369445801,7.7868070602417,-91.9605178833008,115.169281005859,18.8182487487793,-96.8738784790039,116.889205932617,28.7194423675537,-94.9737091064453,117.360496520996,26.8657855987549,-92.5675735473633,119.058662414551,25.5258045196533,-119.109176635742,123.466102600098,-2.02152395248413, +-111.871467590332,123.374092102051,-4.02662086486816,-137.34797668457,104.857276916504,-5.94668912887573,-166.113784790039,72.3048858642578,-22.4735984802246,-162.445434570313,84.3885726928711,-21.3850917816162,-156.18782043457,95.458854675293,-19.7556324005127,-149.079116821289,99.2482299804688,-17.6053218841553,-145.010711669922,96.3633422851563,-15.7202367782593,-140.852310180664,94.4631576538086,-14.237491607666,179.892120361328,-53.8980827331543,109.802764892578,183.428466796875,-54.0300941467285,102.913093566895,192.38835144043,-50.5059471130371,83.8121185302734,172.397399902344,-42.4495582580566,113.885162353516,170.853240966797,-49.2543258666992,121.497909545898,164.724624633789,-45.0948181152344,126.690414428711,115.259788513184,-44.1006202697754,-68.6719284057617,165.852752685547,-53.8185768127441,-42.1808280944824,148.50505065918,-58.3103141784668,-58.4400215148926,126.754913330078,-59.4160194396973,-69.7686309814453,183.364456176758,-56.7630615234375,-24.3742847442627,175.525695800781,-61.8692626953125,-36.7340965270996,191.40625,-59.5965385437012,-8.89409828186035,198.036895751953,-58.0342864990234,12.284107208252,195.740676879883,-52.509147644043,72.2868804931641,199.990097045898,-58.3185157775879,38.6619911193848,99.926383972168,-44.6160697937012,-71.5478057861328,104.86376953125,-45.9397010803223,-71.1958694458008,112.834548950195,-47.6126670837402,-70.5402069091797,95.5563583374023,-44.8139915466309,-73.7092208862305,82.2815551757813,-44.4856605529785,-79.9028244018555,143.095504760742,-17.0536708831787,127.3134765625,-104.254722595215,115.575325012207,0.284830003976822,-96.2898406982422,116.476409912109,0.0173349995166063,-83.9676284790039,120.034767150879,1.0041309595108,-83.5086898803711,121.34789276123,-2.59480094909668,-86.557487487793,117.860549926758,9.07271289825439,-91.2443466186523,115.05827331543,16.8673553466797,-88.8746185302734,120.292785644531,23.124870300293,-95.2555923461914,118.070068359375,28.0583534240723,-96.3678970336914,118.116073608398,29.233118057251,-140.517272949219,98.1847229003906,-12.2119932174683, +-102.665565490723,124.249176025391,-6.25391912460327,-131.682403564453,119.343696594238,-0.708841025829315,-136.881927490234,109.141693115234,-3.87482595443726,-111.014381408691,128.274566650391,-5.98501300811768,-137.203948974609,101.066902160645,-8.77442646026611,-152.438430786133,99.3719329833984,-19.1384716033936,-163.767547607422,94.1735305786133,-20.4141979217529,-165.920761108398,90.6638793945313,-20.4565010070801,175.237670898438,-51.7253684997559,116.235397338867,189.143020629883,-57.2846145629883,93.3678512573242,167.408905029297,-53.3433265686035,127.904541015625,157.762954711914,-32.267261505127,125.13826751709,157.802963256836,-37.1848411560059,128.53059387207,168.373992919922,-62.8488616943359,-46.1596221923828,168.377990722656,-59.1859970092773,-43.6935768127441,157.277908325195,-61.4010162353516,-54.5284423828125,141.293334960938,-63.0108757019043,-65.0672760009766,128.07405090332,-66.190788269043,-71.9067459106445,121.163368225098,-58.6410446166992,-72.0230560302734,116.894943237305,-53.6472549438477,-71.6467132568359,188.105926513672,-59.8756675720215,-19.6819248199463,185.975723266602,-59.5556373596191,-23.261474609375,195.959701538086,-62.0495796203613,-0.226374998688698,197.516845703125,-64.1970977783203,3.03748106956482,200.573150634766,-59.5017318725586,28.4707946777344,198.032897949219,-54.4198341369629,53.998893737793,195.030609130859,-54.662956237793,77.9571380615234,90.229736328125,-47.8568878173828,-80.8107147216797,148.388031005859,-23.1530704498291,126.972450256348,-101.763473510742,118.894653320313,-2.88360905647278,-98.5109558105469,117.974555969238,-2.02454495429993,-92.7369918823242,120.308784484863,-4.13352108001709,-83.2798690795898,119.898750305176,4.61548614501953,-87.5530853271484,120.981857299805,-4.21654987335205,-82.4323883056641,120.759834289551,12.6959476470947,-83.9732360839844,120.395797729492,15.7381458282471,-85.8204116821289,120.636817932129,19.543119430542,-93.1313323974609,120.477806091309,27.9109382629395,-105.820877075195,128.566604614258,-7.48908996582031,-116.383911132813,128.261566162109,-4.12002992630005, +-130.505798339844,123.807632446289,-0.27334600687027,-135.699798583984,118.051567077637,-1.56112897396088,-140.766296386719,102.709060668945,-9.87082290649414,-139.877212524414,106.624450683594,-7.06816911697388,-167.847946166992,83.6030960083008,-21.3669910430908,-154.634658813477,100.830879211426,-21.1170654296875,-158.847076416016,97.7516784667969,-20.7715320587158,-150.765289306641,103.179107666016,-19.9458503723145,-145.912811279297,99.8073806762695,-15.7035350799561,193.104415893555,-54.8699798583984,83.8398208618164,174.67561340332,-55.7748680114746,119.346702575684,185.503677368164,-64.3330993652344,101.668968200684,162.455413818359,-50.3356323242188,131.782913208008,163.004455566406,-64.4190063476563,-51.2147178649902,151.399337768555,-66.2581939697266,-58.9309730529785,148.524047851563,-65.0517807006836,-60.4394187927246,136.149841308594,-66.9221572875977,-68.9996566772461,123.26057434082,-70.2418823242188,-75.3628845214844,120.58031463623,-66.5110168457031,-75.5934066772461,180.569183349609,-62.795051574707,-31.326265335083,189.200042724609,-64.2975006103516,-19.8471412658691,192.808395385742,-64.4444198608398,-8.32704162597656,200.388122558594,-63.0827827453613,20.7672386169434,198.264923095703,-58.0560874938965,57.0543975830078,196.831787109375,-62.4262161254883,74.2191772460938,200.066101074219,-61.2859039306641,43.6177787780762,102.087493896484,-48.5814590454102,-73.8078308105469,98.0015029907227,-47.9892044067383,-75.5348968505859,108.706146240234,-52.5355453491211,-73.526496887207,92.2813339233398,-50.5776557922363,-82.8524169921875,75.975944519043,-45.0212135314941,-84.3192596435547,77.9791412353516,-46.7364807128906,-85.6067886352539,143.672576904297,-21.5689125061035,129.640701293945,-95.1963348388672,122.510009765625,-6.18832302093506,-76.210075378418,124.803230285645,-4.28124618530273,-73.7245330810547,125.272277832031,-1.82486498355865,-80.5068969726563,126.475387573242,-9.23493099212646,-80.7788162231445,121.314888000488,8.41695880889893,-99.4753570556641,122.398994445801,-5.67503213882446, +-100.624359130859,132.399963378906,-10.4396200180054,-133.991638183594,122.96704864502,0.0823109969496727,-129.329177856445,128.271575927734,0.162149995565414,-139.497177124023,114.702239990234,-4.93059921264648,-108.580146789551,133.161041259766,-8.31595134735107,-162.436431884766,97.7854843139648,-21.5481071472168,-148.105026245117,104.081199645996,-17.8795471191406,-143.507568359375,100.582855224609,-13.4217109680176,179.953125,-60.3052101135254,112.111991882324,190.480163574219,-66.8732528686523,92.9335098266602,175.106658935547,-59.5873413085938,119.908752441406,152.969482421875,-29.7535152435303,128.108551025391,163.888549804688,-58.3869209289551,133.688110351563,152.757461547852,-34.8257141113281,132.323959350586,169.185073852539,-67.4295043945313,-47.6700706481934,157.425918579102,-66.1546859741211,-55.8364677429199,141.200332641602,-67.7133407592773,-66.3566970825195,131.318359375,-75.0849533081055,-72.6457138061523,126.826919555664,-74.998046875,-74.7307205200195,112.327507019043,-69.1050720214844,-81.7126083374023,114.385704040527,-60.7554550170898,-76.4693908691406,113.499618530273,-53.9409866333008,-73.0260543823242,187.066833496094,-63.8275566101074,-23.8352336883545,173.039459228516,-66.2395935058594,-42.8955001831055,193.186416625977,-69.3768997192383,-9.57495498657227,196.589752197266,-70.863639831543,-2.14706707000732,200.926193237305,-69.962158203125,25.313383102417,200.154113769531,-68.0731658935547,16.9150619506836,198.381927490234,-70.4910049438477,72.6353225708008,194.28352355957,-65.3237991333008,83.5976943969727,195.609664916992,-63.5504264831543,79.18896484375,82.5708923339844,-49.4839477539063,-86.528076171875,148.309036254883,-30.0361423492432,133.246063232422,-90.1729431152344,123.562110900879,-7.3318247795105,-76.6172103881836,126.308372497559,-7.60161113739014,-69.0570755004883,127.364479064941,-0.154798999428749,-86.26416015625,124.137161254883,-7.70667219161987,-71.455810546875,126.170364379883,5.07571077346802,-78.23876953125,125.355285644531,15.7959518432617,-76.1648635864258,125.423294067383,12.940972328186, +-80.5230941772461,125.139259338379,18.2632923126221,-96.8095855712891,126.10636138916,-8.32459163665771,-103.592658996582,137.221435546875,-11.5901317596436,-140.165252685547,117.585517883301,-4.46498394012451,-138.558074951172,122.951049804688,-0.359441012144089,-143.626586914063,104.993293762207,-12.3849096298218,-142.373458862305,114.163185119629,-8.19533920288086,-152.039398193359,104.631256103516,-22.7771282196045,-167.879959106445,96.8456420898438,-21.2174243927002,-166.227798461914,98.4122467041016,-22.1702690124512,-149.512161254883,106.81746673584,-21.3360862731934,-145.982803344727,104.39323425293,-15.3958053588867,182.198348999023,-67.4831161499023,109.601745605469,187.448852539063,-71.8805389404297,100.382835388184,167.610916137695,-62.6294364929199,130.931823730469,160.010177612305,-58.6573486328125,137.324447631836,151.827377319336,-42.3662490844727,136.964416503906,167.464904785156,-70.9752578735352,-49.9897956848145,157.636947631836,-69.9415512084961,-56.484432220459,147.786987304688,-74.0104522705078,-62.3399047851563,136.487869262695,-76.3525848388672,-70.1261672973633,115.748840332031,-77.3846817016602,-82.2133560180664,181.748306274414,-67.0174713134766,-31.897123336792,174.420593261719,-70.720329284668,-43.3599472045898,190.070114135742,-68.8128433227539,-18.8502426147461,188.968017578125,-70.0889663696289,-21.8778400421143,198.13591003418,-68.4142074584961,3.76507306098938,201.586242675781,-71.9050521850586,33.1446495056152,200.63916015625,-77.7087173461914,20.9047527313232,199.282012939453,-66.2022857666016,56.3624267578125,197.881881713867,-73.7341232299805,77.5843124389648,100.054298400879,-52.560848236084,-78.2932739257813,103.408622741699,-52.6474571228027,-75.9573440551758,97.9815902709961,-57.002082824707,-85.0663375854492,82.0537338256836,-52.4022331237793,-89.6398773193359,77.2787704467773,-50.7204704284668,-90.8254013061523,145.000701904297,-25.4469947814941,131.941940307617,-89.9666213989258,130.009735107422,-12.1762895584106,-66.3348083496094,130.133758544922,-7.30088186264038,-61.6010398864746,131.834930419922,-5.02097797393799, +-80.4572830200195,131.524887084961,-14.3983068466187,-74.6299209594727,129.634704589844,-11.5985317230225,-73.7466278076172,125.863334655762,9.77121162414551,-99.4337463378906,137.607482910156,-13.395209312439,-94.2722473144531,130.664794921875,-11.4064140319824,-133.705612182617,127.757522583008,1.27139794826508,-139.935211181641,130.721801757813,3.5083270072937,-147.441940307617,109.221702575684,-18.1792774200439,179.64909362793,-67.9707641601563,113.962173461914,191.543762207031,-72.0149078369141,92.8634033203125,171.032257080078,-64.390510559082,126.698417663574,162.222381591797,-64.1124877929688,137.281448364258,149.349136352539,-34.8858184814453,135.371276855469,172.072357177734,-75.6332092285156,-47.2977294921875,150.741271972656,-74.1219635009766,-60.399715423584,130.303253173828,-79.7533111572266,-74.5811080932617,123.540603637695,-81.7402114868164,-79.1848526000977,110.145286560059,-64.1312866210938,-80.7066116333008,106.641944885254,-73.1743698120117,-87.1321334838867,183.789505004883,-70.9382476806641,-30.4266777038574,185.279647827148,-72.2280807495117,-28.4447822570801,193.008407592773,-73.9296493530273,-11.2508983612061,197.352828979492,-73.2636795043945,0.359342992305756,201.046203613281,-75.5965118408203,42.7966957092285,201.864273071289,-78.1523590087891,30.0867519378662,198.90998840332,-72.6483154296875,8.59376621246338,200.058090209961,-75.7522201538086,59.4919319152832,200.425140380859,-73.4869003295898,50.0386047363281,200.261123657227,-87.17724609375,70.0084609985352,108.448120117188,-56.307014465332,-75.8612289428711,92.2366333007813,-54.6194534301758,-86.6866912841797,142.072418212891,-28.4556884765625,135.791320800781,-84.7833099365234,131.002838134766,-13.708438873291,-67.479118347168,130.666809082031,-9.72698879241943,-74.119270324707,134.34716796875,-16.8565483093262,-68.4423141479492,133.119049072266,-14.149582862854,-132.496490478516,133.087051391602,2.32090091705322,-141.462371826172,120.890846252441,-3.47163701057434,-143.939605712891,119.405700683594,-7.79588985443115,-143.779602050781,131.059844970703,2.78528690338135, +-143.994613647461,113.727149963379,-10.8467588424683,-145.367752075195,111.961967468262,-13.7937479019165,184.604583740234,-77.4775924682617,108.09659576416,192.607360839844,-77.1565628051758,92.7932968139648,167.265884399414,-68.1814804077148,132.230972290039,157.366912841797,-60.7131462097168,140.170745849609,147.756973266602,-50.6878662109375,143.273056030273,146.46484375,-44.741081237793,141.576889038086,167.762939453125,-80.1667556762695,-51.5835494995117,164.286605834961,-74.9176406860352,-52.8786773681641,156.793853759766,-74.7521209716797,-57.2857093811035,150.940292358398,-78.5404968261719,-60.3243103027344,144.436645507813,-81.0496444702148,-64.7882461547852,135.6337890625,-81.4537811279297,-71.6600189208984,113.593627929688,-81.7028045654297,-84.503173828125,105.936882019043,-67.9477615356445,-85.7364959716797,176.763824462891,-74.6934127807617,-41.6594772338867,186.909805297852,-76.4426956176758,-25.7447204589844,195.777679443359,-78.219367980957,-4.18566703796387,197.040802001953,-76.5414962768555,0.31114798784256,202.309326171875,-85.1444473266602,38.1767463684082,202.710357666016,-89.1570358276367,35.6244926452637,200.612152099609,-82.2112579345703,19.679931640625,199.365036010742,-76.9515380859375,13.6489410400391,195.461654663086,-75.8733367919922,85.4886779785156,198.840972900391,-87.8833160400391,77.5130004882813,105.622848510742,-58.3247146606445,-79.1174468994141,94.487060546875,-58.6292457580566,-88.681884765625,86.4347610473633,-56.9090766906738,-91.1144256591797,79.6197967529297,-54.4519386291504,-92.7295837402344,146.233825683594,-35.5035781860352,137.470474243164,-91.3081512451172,138.305557250977,-16.8048439025879,-82.7198104858398,140.951812744141,-20.6683216094971,-52.2166213989258,137.370452880859,-11.2297964096069,-73.6889266967773,140.877807617188,-22.3947925567627,-69.1726837158203,136.088333129883,-18.0730686187744,-136.861907958984,131.831924438477,3.48956608772278,-142.624481201172,126.103363037109,0.0180430002510548,-143.304550170898,135.159240722656,5.80343198776245,-146.283843994141,115.346298217773,-16.1379776000977, +174.268569946289,-70.1871795654297,121.92594909668,189.207046508789,-79.2725677490234,99.2991333007813,178.550994873047,-74.0394592285156,116.150382995605,169.128067016602,-70.3588943481445,129.728729248047,153.709564208984,-55.1312026977539,140.537780761719,160.035171508789,-67.1675872802734,140.119735717773,161.895355224609,-70.016357421875,138.785614013672,168.319976806641,-84.0148315429688,-51.4522399902344,147.957000732422,-83.0778427124023,-62.2895011901855,142.318435668945,-84.186149597168,-66.7128372192383,129.504180908203,-83.4481811523438,-76.2164688110352,128.15104675293,-87.2623519897461,-77.6556015014648,106.406921386719,-63.5029220581055,-82.8085174560547,109.023178100586,-80.0172424316406,-87.1430358886719,101.190414428711,-70.5087127685547,-90.5976791381836,182.416366577148,-78.7681198120117,-34.2958564758301,193.975494384766,-78.1865615844727,-8.9697847366333,188.079925537109,-80.2310562133789,-22.9300422668457,202.543334960938,-90.3562545776367,28.2959766387939,202.058288574219,-93.8652038574219,20.9002513885498,202.047286987305,-95.7766876220703,58.9742813110352,197.428833007813,-78.4985885620117,80.8334197998047,201.230209350586,-96.8003845214844,70.5160140991211,99.4163360595703,-60.8483619689941,-86.9578170776367,140.301254272461,-30.7244091033936,137.95751953125,-53.1741180419922,137.810501098633,-14.0507726669312,-62.5983390808105,134.809219360352,-14.4384107589722,-69.412109375,139.886703491211,-21.9270458221436,-63.8446617126465,138.278549194336,-19.6156196594238,-139.635177612305,135.062225341797,5.64060592651367,-136.17985534668,136.280349731445,5.06961107254028,-144.258636474609,123.738121032715,-3.55910491943359,-145.701782226563,119.397705078125,-12.5771293640137,-146.70588684082,133.68310546875,3.18254590034485,-146.279846191406,129.857727050781,-0.227078005671501,175.228668212891,-76.2012710571289,120.453804016113,186.209732055664,-83.4713821411133,105.970390319824,183.942520141602,-87.2978515625,110.317817687988,193.173416137695,-84.5517883300781,93.0731201171875,194.613555908203,-85.2261505126953,90.0580291748047, +164.590637207031,-72.8905410766602,135.678298950195,152.206405639648,-59.7714538574219,142.837005615234,155.868774414063,-63.8569564819336,141.86491394043,142.948501586914,-49.9159889221191,146.024307250977,147.955993652344,-55.5288391113281,144.644165039063,175.368682861328,-79.4834899902344,-44.2657318115234,163.940551757813,-81.6148986816406,-54.2002067565918,160.848251342773,-79.0936508178711,-55.3422203063965,152.338424682617,-86.8090057373047,-58.9572715759277,148.309036254883,-89.8684005737305,-61.8063545227051,145.152725219727,-87.5616836547852,-64.7440414428711,134.48567199707,-87.9896240234375,-73.8638381958008,137.851013183594,-87.4294662475586,-71.2433776855469,116.945953369141,-86.722297668457,-83.2652587890625,100.092308044434,-65.3976058959961,-89.1669311523438,107.120994567871,-86.5526809692383,-88.1196365356445,104.241706848145,-76.7434234619141,-89.300048828125,183.673492431641,-83.2098541259766,-31.9562282562256,195.734680175781,-87.1504364013672,0.548991978168488,192.870391845703,-84.1636505126953,-10.4669218063354,203.291412353516,-99.8398818969727,40.6371879577637,201.091201782227,-88.2284469604492,18.58762550354,198.629959106445,-81.6082992553711,12.0986890792847,202.678359985352,-96.9727096557617,49.0289115905762,201.909271240234,-97.8385925292969,66.4034118652344,200.235107421875,-98.9845962524414,75.0437622070313,94.2386245727539,-62.8948631286621,-91.3264465332031,81.4243774414063,-59.8992691040039,-95.1194229125977,-75.4502944946289,145.059219360352,-24.8170280456543,-43.4918670654297,142.510955810547,-17.7643375396729,-65.6519393920898,146.74137878418,-27.5587978363037,-64.3430099487305,142.271942138672,-23.9009380340576,-146.122833251953,124.519203186035,-7.26920890808105,-146.2568359375,123.606117248535,-10.3634119033813,-146.816879272461,137.370452880859,7.42428112030029,-139.398162841797,139.011627197266,7.981125831604,167.507904052734,-80.5315856933594,130.433776855469,186.560775756836,-94.041618347168,105.270317077637,179.002029418945,-85.6114959716797,116.854454040527,189.757080078125,-91.2362442016602,99.1982269287109, +159.179092407227,-73.2414779663086,141.011825561523,157.194900512695,-68.3850021362305,141.96891784668,141.359344482422,-44.4358024597168,144.050628662109,162.200393676758,-76.9979476928711,138.007537841797,139.77018737793,-38.9556198120117,142.076934814453,164.289596557617,-88.2062454223633,-54.1702041625977,175.371688842773,-84.4847793579102,-44.3453407287598,138.685089111328,-92.9151000976563,-71.3756942749023,120.398292541504,-96.7595825195313,-81.52978515625,101.27042388916,-78.8545303344727,-91.0428161621094,97.1127090454102,-67.607421875,-92.0254135131836,180.259155273438,-83.2726669311523,-37.3975639343262,186.717803955078,-87.282356262207,-23.6951198577881,195.328643798828,-89.9054107666016,-0.963375985622406,196.966796875,-82.2434539794922,4.52731704711914,203.036376953125,-107.579544067383,31.074348449707,202.400329589844,-107.116500854492,24.1269683837891,200.855163574219,-96.5459594726563,14.1551914215088,202.821365356445,-107.395523071289,56.1150054931641,203.446426391602,-109.319709777832,47.389347076416,196.831787109375,-97.2683258056641,84.1504516601563,198.801971435547,-100.728874206543,79.5533981323242,201.258209228516,-102.679061889648,71.3883972167969,86.8228988647461,-61.8310585021973,-93.5128555297852,-69.6136245727539,148.422546386719,-28.1711578369141,-53.2048187255859,139.328659057617,-17.2262840270996,-57.2957191467285,140.023712158203,-20.0685634613037,-59.7358627319336,143.327041625977,-24.5070972442627,-146.296844482422,126.644416809082,-4.01469898223877,-149.905197143555,137.84049987793,6.81182098388672,-143.755599975586,138.671600341797,9.21979713439941,-149.390151977539,134.034133911133,1.16862797737122,169.64811706543,-89.819206237793,126.865432739258,171.751327514648,-91.9189071655273,124.593208312988,180.544189453125,-94.3725433349609,115.384307861328,192.898391723633,-90.4320602416992,93.3900604248047,145.441757202148,-59.8730659484863,146.706390380859,150.196212768555,-64.1007766723633,144.385162353516,156.399826049805,-71.0011596679688,142.350952148438,143.381546020508,-55.5787467956543,147.558456420898, +139.633178710938,-46.8396873474121,147.136413574219,160.717254638672,-88.0723266601563,-55.9869804382324,167.985946655273,-88.7741012573242,-51.1983108520508,175.316665649414,-87.8381042480469,-43.9221000671387,155.326721191406,-87.9247131347656,-57.6642456054688,149.838180541992,-93.3177490234375,-61.0870819091797,132.52848815918,-93.5710678100586,-75.4377899169922,110.888359069824,-94.2988357543945,-86.7110977172852,127.663009643555,-96.6420669555664,-77.9211349487305,112.269493103027,-99.1969223022461,-86.0003280639648,97.8466873168945,-85.016731262207,-92.2527389526367,99.331428527832,-72.2409820556641,-92.0724182128906,190.251129150391,-90.4386672973633,-14.7077369689941,183.463470458984,-87.3943634033203,-31.3354663848877,196.694778442383,-90.4563674926758,3.34473204612732,196.747772216797,-86.5795822143555,4.98643207550049,193.578475952148,-91.0934295654297,-6.55731916427612,203.455429077148,-108.554634094238,40.1354370117188,198.217910766602,-86.0360336303711,9.9908332824707,199.2490234375,-95.0486145019531,7.80315923690796,202.183303833008,-106.959480285645,65.929069519043,194.844589233398,-93.7926940917969,89.0495300292969,199.69206237793,-104.986282348633,76.6490097045898,92.3574447631836,-66.7885437011719,-93.4641494750977,82.8081130981445,-64.1015777587891,-96.2782363891602,-47.8121910095215,143.365051269531,-21.6302146911621,-59.2613105773926,148.313537597656,-29.1283493041992,-66.8533554077148,152.954986572266,-31.5067844390869,-148.776092529297,131.504898071289,-2.78758907318115,-149.647674560547,135.937316894531,3.99022507667542,-139.957214355469,142.471954345703,11.496129989624,165.022659301758,-85.937126159668,133.445083618164,183.102432250977,-91.8166961669922,111.594940185547,186.013717651367,-107.537536621094,104.934288024902,173.077453613281,-99.5508575439453,123.923149108887,189.747085571289,-102.851081848145,97.4171447753906,161.699340820313,-82.1675491333008,137.418472290039,158.641036987305,-84.4465789794922,139.802703857422,161.184295654297,-93.2868423461914,-55.3925247192383,165.577728271484,-93.8050918579102,-51.6910629272461, +179.31005859375,-87.8580093383789,-38.0003204345703,156.782852172852,-96.2465286254883,-57.8582649230957,144.499649047852,-103.45613861084,-67.4385070800781,141.308349609375,-101.905990600586,-69.9016494750977,135.347763061523,-98.5666580200195,-74.3119735717773,103.738655090332,-91.3906555175781,-90.1020202636719,126.681907653809,-106.172409057617,-79.1117477416992,111.546424865723,-108.038589477539,-85.9674224853516,98.8637847900391,-90.1615371704102,-92.1194229125977,96.7683792114258,-73.1968688964844,-93.3174438476563,187.23583984375,-95.1380233764648,-19.3574924468994,185.482681274414,-92.6470794677734,-23.8201313018799,196.386749267578,-95.0904159545898,0.0850580036640167,194.539566040039,-95.3784484863281,-4.22601079940796,203.562438964844,-111.655937194824,35.1184463500977,203.375427246094,-113.111083984375,28.5956058502197,200.455139160156,-107.472526550293,13.4382209777832,198.724975585938,-99.9761962890625,4.61051511764526,202.480331420898,-109.004684448242,62.696346282959,203.707458496094,-112.836051940918,53.6845626831055,193.476455688477,-103.490142822266,90.9666137695313,196.18571472168,-110.571830749512,84.7569122314453,201.735260009766,-113.953170776367,67.5875244140625,86.6454849243164,-67.0682678222656,-95.4033432006836,-39.6155891418457,147.910491943359,-25.4363899230957,-55.0969047546387,144.431167602539,-25.1705627441406,-61.3332176208496,152.534957885742,-31.9868297576904,-56.2741203308105,148.120513916016,-29.0508422851563,-152.103408813477,137.391464233398,4.1103367805481,165.494705200195,-92.9677124023438,133.604095458984,183.631484985352,-107.116500854492,109.050689697266,179.527084350586,-111.154891967773,114.593231201172,174.720626831055,-104.9052734375,122.274978637695,146.893890380859,-68.4367065429688,145.774291992188,150.042190551758,-73.210075378418,143.883102416992,155.997772216797,-81.1939544677734,141.436859130859,157.490936279297,-91.3518524169922,-57.2240028381348,170.889236450195,-92.8531036376953,-46.856388092041,176.51579284668,-92.2977447509766,-40.7655906677246,154.498641967773,-99.2489242553711,-59.5993347167969, +149.074111938477,-101.268928527832,-63.5510215759277,138.162033081055,-102.01099395752,-72.5638046264648,100.877380371094,-99.4325408935547,-92.6514739990234,135.023727416992,-106.205406188965,-74.9140319824219,118.862144470215,-108.037590026855,-82.2519607543945,106.467933654785,-108.582641601563,-88.5910797119141,93.6172637939453,-85.0211334228516,-93.6840744018555,192.593368530273,-96.6986770629883,-8.66508483886719,189.285034179688,-96.0822143554688,-15.4098072052002,182.252349853516,-92.0023193359375,-31.3752708435059,203.823455810547,-111.790954589844,43.4121589660645,202.452331542969,-112.631042480469,22.2638854980469,201.080200195313,-111.493927001953,16.2337951660156,203.055389404297,-111.096885681152,58.1905059814453,204.395523071289,-114.316200256348,49.2367286682129,197.512847900391,-118.275588989258,79.6757049560547,200.001098632813,-114.444213867188,73.3936004638672,88.4151611328125,-71.8599395751953,-95.3417434692383,78.3302688598633,-68.0033569335938,-99.8981857299805,-49.1438179016113,147.157424926758,-27.4875888824463,-34.4079780578613,147.850494384766,-23.3719863891602,-46.4775619506836,146.689376831055,-26.2462673187256,-53.5478553771973,153.052001953125,-33.1543464660645,169.984146118164,-99.1008148193359,127.927536010742,160.576232910156,-86.3802642822266,138.156539916992,162.686431884766,-94.1498260498047,137.077438354492,184.118545532227,-120.947845458984,107.525543212891,186.375747680664,-115.557319641113,104.05419921875,172.575408935547,-114.888259887695,124.42219543457,155.049682617188,-86.5640869140625,141.866912841797,162.799453735352,-98.9326934814453,-52.3488273620605,168.857040405273,-102.525047302246,-43.633171081543,156.88786315918,-99.645866394043,-58.0111808776855,152.875473022461,-104.611251831055,-61.609935760498,144.188613891602,-113.76815032959,-69.0480651855469,101.851470947266,-104.059204101563,-91.8446960449219,95.8679885864258,-94.7426834106445,-94.3295440673828,128.191055297852,-115.026268005371,-79.3674697875977,120.538307189941,-113.447113037109,-82.0974426269531,107.981079101563,-113.296104431152,-88.1845397949219, +92.3447418212891,-89.4337692260742,-94.6240692138672,89.7603912353516,-79.0549468994141,-95.1162185668945,187.103820800781,-100.210815429688,-18.3068904876709,184.291549682617,-96.6405715942383,-23.9448413848877,196.543762207031,-100.35083770752,-1.09446394443512,204.306518554688,-114.37720489502,39.5552787780762,204.990585327148,-116.575424194336,35.0628395080566,203.652450561523,-117.427505493164,24.5161075592041,199.800079345703,-115.557319641113,12.1191911697388,198.552963256836,-103.296127319336,4.21100616455078,202.92839050293,-115.210289001465,62.9301681518555,204.057495117188,-115.996368408203,58.6295471191406,205.168594360352,-116.57942199707,54.3149261474609,193.448455810547,-116.677436828613,90.8694076538086,190.722183227539,-116.743438720703,96.4633560180664,201.144195556641,-119.139671325684,70.7087326049805,80.6688995361328,-71.4562072753906,-99.2501220703125,-32.8015213012695,152.425933837891,-30.0121364593506,-32.4156837463379,147.160415649414,-20.9928531646729,-41.6422882080078,150.581756591797,-29.8570213317871,-51.399242401123,148.866592407227,-29.6017971038818,-54.9450874328613,157.159393310547,-35.8147048950195,165.315689086914,-98.1742172241211,134.117141723633,178.383972167969,-122.661018371582,115.343299865723,180.889221191406,-126.094360351563,112.12198638916,177.0068359375,-113.529121398926,117.790550231934,172.58740234375,-110.751846313477,124.967247009277,168.968063354492,-103.221115112305,129.275680541992,156.457824707031,-91.7014846801758,141.784896850586,147.105911254883,-75.7625198364258,145.651275634766,149.760162353516,-80.1306533813477,143.625076293945,160.013168334961,-98.6316680908203,-55.3890228271484,179.378067016602,-101.05290222168,-30.3666725158691,156.446823120117,-104.899276733398,-58.4179229736328,149.755172729492,-109.77075958252,-64.4912109375,138.404052734375,-113.634132385254,-73.5871047973633,93.8330917358398,-103.26611328125,-95.3693389892578,91.0298156738281,-99.1177139282227,-96.9773025512695,133.320556640625,-115.247291564941,-76.9154357910156,114.910758972168,-113.471115112305,-84.9867248535156, +101.525444030762,-112.71004486084,-91.353645324707,101.249412536621,-108.049591064453,-91.5248641967773,90.2567367553711,-85.3811721801758,-94.9983062744141,192.204330444336,-102.243019104004,-9.55316162109375,183.313461303711,-101.008895874023,-23.6206092834473,196.168716430664,-104.565246582031,-2.00873303413391,205.132598876953,-115.91236114502,44.7666893005371,204.953582763672,-117.723533630371,30.1191558837891,202.046295166016,-116.947456359863,18.738941192627,199.168014526367,-111.823959350586,9.43430805206299,203.026382446289,-119.568717956543,66.3704147338867,206.732757568359,-117.3125,49.7059745788574,194.646575927734,-123.798133850098,86.4009704589844,198.002899169922,-121.895950317383,78.4655914306641,81.010139465332,-79.7997207641602,-99.0970077514648,77.1650543212891,-71.4533004760742,-100.693862915039,-44.3251495361328,153.291015625,-33.3663673400879,-24.8102378845215,153.050003051758,-28.2013607025146,-38.9575233459473,153.617065429688,-32.8360176086426,-47.8338928222656,153.754058837891,-33.9300231933594,156.080795288086,-97.8005828857422,142.717987060547,160.621231079102,-98.6849746704102,139.111633300781,171.526306152344,-125.00025177002,123.24308013916,182.636383056641,-127.896537780762,109.051689147949,169.911148071289,-117.517509460449,127.404487609863,161.765335083008,-102.826080322266,-52.1833076477051,163.693542480469,-106.869476318359,-48.1712188720703,176.1767578125,-96.1689224243164,-38.6226806640625,159.134078979492,-104.865280151367,-55.2399101257324,152.890472412109,-110.94287109375,-61.9203643798828,147.8759765625,-115.335296630859,-66.1516799926758,144.920700073242,-120.86784362793,-68.6716232299805,93.5675659179688,-108.402618408203,-94.4324493408203,88.4716644287109,-93.6602783203125,-97.5058517456055,126.364875793457,-120.816841125488,-80.735107421875,120.85733795166,-118.007568359375,-82.8350143432617,115.883850097656,-122.853042602539,-86.8587112426758,102.004486083984,-117.415504455566,-91.9428100585938,87.0104217529297,-80.665901184082,-96.2433242797852,188.746994018555,-106.092399597168,-15.4391088485718, +206.390716552734,-117.853553771973,39.9652214050293,207.851852416992,-120.730834960938,30.2600688934326,205.962677001953,-120.652824401855,26.826732635498,203.318420410156,-120.778831481934,20.521614074707,197.962890625,-117.130477905273,8.15297317504883,201.282211303711,-121.32088470459,15.9028615951538,197.082809448242,-110.663841247559,1.88743901252747,204.727554321289,-119.308685302734,62.344913482666,205.77165222168,-118.670623779297,58.4985389709473,207.429824829102,-118.675628662109,55.1262054443359,190.217132568359,-122.206977844238,96.79638671875,192.496368408203,-124.134162902832,91.5057678222656,202.284317016602,-123.892135620117,71.862548828125,203.682464599609,-122.725021362305,68.3572006225586,-27.4608974456787,155.039199829102,-32.0734405517578,-33.2779655456543,156.160308837891,-34.675895690918,-23.5281105041504,151.412826538086,-24.3760833740234,-44.9518127441406,158.855560302734,-37.909610748291,160.287200927734,-103.176109313965,139.020614624023,165.509704589844,-102.780067443848,133.211059570313,170.380187988281,-129.237670898438,124.602210998535,177.676910400391,-136.312347412109,116.950462341309,179.217056274414,-139.639694213867,114.730247497559,185.639694213867,-130.174758911133,102.717063903809,168.238983154297,-125.139259338379,127.229469299316,168.869049072266,-109.270713806152,129.138656616211,168.211975097656,-106.918472290039,-42.3828506469727,173.54850769043,-102.243019104004,-37.6961898803711,179.718109130859,-105.993385314941,-27.9326324462891,158.543029785156,-118.628623962402,-54.0641937255859,136.196838378906,-118.103576660156,-75.1293563842773,89.2827453613281,-104.757270812988,-97.6776733398438,83.6875991821289,-96.0807113647461,-100.194816589355,126.096855163574,-126.302375793457,-81.078239440918,108.371116638184,-122.185974121094,-89.9620056152344,93.3297424316406,-116.698432922363,-95.1020126342773,82.4414749145508,-85.3644638061523,-99.0165023803711,195.720672607422,-108.991683959961,-2.22956490516663,191.67626953125,-111.735946655273,-9.99107456207275,182.820419311523,-105.253311157227,-23.3536853790283, +208.124893188477,-118.236587524414,44.2522392272949,205.686645507813,-122.657012939453,22.7186298370361,198.593963623047,-123.152069091797,11.1177930831909,206.003677368164,-122.104965209961,65.0688781738281,210.470123291016,-118.348594665527,51.4526481628418,191.275238037109,-130.846817016602,92.3059539794922,196.032699584961,-127.112457275391,83.844123840332,199.627044677734,-125.799331665039,77.1506652832031,75.1457595825195,-81.3848724365234,-101.430938720703,-22.1508750915527,157.286407470703,-33.5730857849121,-39.2460517883301,157.817474365234,-36.9677200317383,-16.9231624603271,155.714263916016,-29.5787963867188,-43.7139892578125,162.762939453125,-40.4183540344238,154.801666259766,-102.709060668945,143.528060913086,164.726623535156,-106.836463928223,133.082046508789,181.623291015625,-136.72639465332,110.397819519043,184.250549316406,-133.987121582031,104.657257080078,167.5869140625,-119.302688598633,129.363677978516,173.774520874023,-106.511436462402,-35.0219306945801,167.279891967773,-111.60693359375,-42.2948417663574,162.104385375977,-112.143989562988,-49.0396041870117,155.385711669922,-114.448211669922,-58.8901672363281,149.796188354492,-118.673629760742,-63.9352607727051,136.548873901367,-122.634017944336,-74.2617721557617,129.372161865234,-126.541397094727,-78.9350357055664,90.8155899047852,-112.314010620117,-95.6827697753906,85.689094543457,-102.485038757324,-99.7533721923828,122.952545166016,-124.446189880371,-82.8046112060547,108.696144104004,-126.398391723633,-90.3126449584961,100.329330444336,-121.528907775879,-93.7420806884766,93.9455032348633,-112.552032470703,-94.0728149414063,189.366058349609,-116.819442749023,-15.0356693267822,187.551879882813,-110.823860168457,-17.5758190155029,210.992156982422,-118.213584899902,46.957405090332,208.926467895508,-119.172676086426,39.7754020690918,209.728042602539,-120.108772277832,35.2985649108887,208.722946166992,-122.962043762207,25.2822818756104,203.330413818359,-124.337181091309,18.6589336395264,196.423736572266,-122.616012573242,6.89764976501465,200.50813293457,-126.324371337891,14.4131164550781, +208.048889160156,-120.45580291748,60.5127334594727,210.490112304688,-119.136672973633,56.250114440918,194.160507202148,-131.539886474609,87.8174133300781,204.192504882813,-126.442390441895,73.6088104248047,206.699752807617,-124.261177062988,69.1715774536133,-27.1906700134277,158.800567626953,-36.4433670043945,-34.6748046875,159.813659667969,-38.3573532104492,-13.7830562591553,155.567245483398,-27.7913208007813,159.473129272461,-107.305511474609,138.909622192383,154.901672363281,-106.94548034668,142.898010253906,167.049865722656,-129.731704711914,127.71851348877,170.869247436523,-141.758880615234,125.446296691895,179.726104736328,-145.590270996094,112.774047851563,186.562789916992,-139.768707275391,98.1175155639648,165.543716430664,-114.255195617676,131.406875610352,163.91455078125,-123.388092041016,131.583908081055,170.780227661133,-111.244903564453,-37.3266563415527,183.551483154297,-109.631744384766,-22.645414352417,178.624008178711,-110.524833679199,-29.3810768127441,162.565414428711,-115.873352050781,-48.0379028320313,157.799957275391,-124.088157653809,-54.2101097106934,147.66096496582,-126.353385925293,-64.9673614501953,144.329635620117,-126.117362976074,-68.4560012817383,87.2736434936523,-112.611030578613,-98.5634536743164,86.7517929077148,-107.271514892578,-99.2998199462891,80.7829132080078,-95.9961090087891,-101.828971862793,77.6581039428711,-88.6254806518555,-101.830978393555,122.869537353516,-131.584899902344,-83.7148971557617,117.796035766602,-127.235466003418,-86.5626831054688,99.6562576293945,-126.263374328613,-94.8694915771484,92.8066864013672,-121.318885803223,-96.4788513183594,193.90950012207,-115.778343200684,-4.04972314834595,190.85319519043,-118.49161529541,-11.586932182312,212.365295410156,-119.014663696289,40.7983016967773,210.77165222168,-121.135871887207,31.9595355987549,209.833557128906,-121.446899414063,29.4402885437012,208.916961669922,-125.576309204102,20.5457153320313,205.610641479492,-125.867340087891,19.3294982910156,197.511856079102,-128.562606811523,10.1719999313354,194.064514160156,-125.063255310059,2.09651899337769, +209.828048706055,-122.043960571289,65.2674942016602,216.866744995117,-118.288589477539,59.066089630127,220.241073608398,-117.353500366211,50.2789306640625,191.786285400391,-135.422271728516,91.3898620605469,197.559844970703,-131.676910400391,84.0990447998047,199.88508605957,-129.154647827148,80.1575622558594,-23.6191215515137,161.711853027344,-38.8904075622559,-15.1166868209839,158.915573120117,-34.2772521972656,-39.1060371398926,162.044891357422,-40.042121887207,-10.0439891815186,160.923767089844,-36.3938636779785,160.233200073242,-111.54793548584,136.174346923828,172.335372924805,-146.501358032227,122.966049194336,181.533279418945,-145.912292480469,109.339714050293,184.266555786133,-145.965301513672,101.67797088623,161.766342163086,-113.940162658691,134.039138793945,174.614608764648,-110.850860595703,-33.4012680053711,168.958053588867,-115.876350402832,-39.5910758972168,160.592239379883,-124.825233459473,-51.2438163757324,152.683456420898,-122.016952514648,-59.9747734069824,138.553070068359,-129.626693725586,-71.2690734863281,130.82731628418,-129.036651611328,-77.5035858154297,89.8414993286133,-117.085472106934,-96.9738006591797,109.384216308594,-130.620803833008,-89.9621047973633,192.744384765625,-116.056373596191,-7.03931617736816,189.187026977539,-123.131065368652,-15.4833135604858,186.368759155273,-118.478614807129,-20.5016040802002,215.787139892578,-118.208084106445,43.8259468078613,211.884765625,-120.357292175293,34.2598114013672,211.81526184082,-122.162971496582,28.6205081939697,212.274307250977,-123.675117492676,24.4235973358154,203.311416625977,-128.434585571289,15.8810586929321,194.288528442383,-134.200149536133,5.06279993057251,200.000091552734,-131.23486328125,12.3481140136719,212.114288330078,-120.086761474609,61.478328704834,219.221969604492,-117.524513244629,54.934684753418,221.971252441406,-117.478515625,45.7030830383301,193.934494018555,-137.92951965332,90.0034255981445,196.851791381836,-135.410278320313,86.7564010620117,208.632934570313,-124.801231384277,71.7271270751953,204.568542480469,-128.89762878418,77.9507369995117, +-28.3949890136719,162.831954956055,-40.3690528869629,-19.0145683288574,160.651748657227,-37.2417488098145,-31.5866012573242,165.316207885742,-42.4302558898926,-6.18504095077515,160.989776611328,-35.8271064758301,-43.6557807922363,166.901351928711,-42.4177551269531,157.037887573242,-111.494926452637,139.724700927734,168.032958984375,-140.495758056641,128.104553222656,161.223297119141,-130.953826904297,132.747009277344,168.079971313477,-146.349349975586,128.107559204102,179.888122558594,-151.136810302734,110.397819519043,176.339782714844,-151.297836303711,115.975372314453,185.213638305664,-149.21061706543,99.5893630981445,171.053253173828,-117.369499206543,-37.4042625427246,180.254150390625,-119.752731323242,-29.663402557373,176.263763427734,-115.227294921875,-32.5916900634766,166.483810424805,-120.851837158203,-43.4237518310547,158.701049804688,-132.386962890625,-52.7441635131836,152.291427612305,-129.195663452148,-58.4783248901367,146.112808227539,-131.22785949707,-64.9896697998047,142.459442138672,-132.260955810547,-68.2185821533203,135.400756835938,-129.801727294922,-73.4774017333984,124.062644958496,-136.966430664063,-82.759407043457,118.339088439941,-132.037933349609,-86.6203842163086,100.624351501465,-131.153854370117,-94.2545318603516,93.3994522094727,-125.633316040039,-96.7414779663086,191.933303833008,-123.440101623535,-7.19452095031738,220.582107543945,-118.202583312988,40.6944885253906,214.041473388672,-120.605819702148,33.2210578918457,214.025466918945,-125.787330627441,19.9443588256836,206.187698364258,-129.582702636719,15.1717901229858,196.658752441406,-133.285064697266,8.75060081481934,191.985305786133,-135.641296386719,0.171149000525475,216.047668457031,-120.760833740234,68.0313720703125,217.434799194336,-119.285690307617,64.2643966674805,223.443389892578,-118.110572814941,60.8470649719238,225.459579467773,-117.541519165039,49.862190246582,187.847900390625,-143.662078857422,96.0662155151367,190.362152099609,-143.140029907227,93.6454849243164,200.808166503906,-134.388168334961,85.1845474243164,201.454238891602,-131.468872070313,81.7115173339844, +-25.9808521270752,167.03337097168,-43.4899559020996,-19.3515014648438,164.492111206055,-41.2282371520996,-14.7415504455566,163.363006591797,-39.9180068969727,-10.5513391494751,163.833053588867,-40.4077568054199,-34.8391189575195,167.390396118164,-43.5486640930176,-4.80967712402344,165.445205688477,-42.0734214782715,156.024795532227,-116.700439453125,137.854522705078,165.184677124023,-133.326065063477,129.363677978516,157.399917602539,-120.529808044434,135.711303710938,168.103973388672,-151.094802856445,127.128463745117,181.947326660156,-151.354827880859,105.177314758301,181.997329711914,-155.036193847656,103.496139526367,166.291778564453,-126.209365844727,-44.9212989807129,163.956558227539,-129.14665222168,-48.0163993835449,154.744659423828,-132.669006347656,-55.7445602416992,148.75407409668,-132.56298828125,-61.1930923461914,135.453765869141,-141.728881835938,-69.7217254638672,131.896423339844,-133.817108154297,-75.6532135009766,119.550216674805,-137.641494750977,-85.5842819213867,125.652809143066,-140.615783691406,-80.8921203613281,110.192291259766,-136.015319824219,-89.0060195922852,97.1608123779297,-130.813812255859,-95.3527450561523,103.637649536133,-138.432571411133,-91.3172454833984,191.397262573242,-132.170959472656,-2.97399806976318,189.332046508789,-127.91153717041,-13.5047187805176,186.370758056641,-123.541107177734,-20.7197284698486,181.122253417969,-124.251174926758,-29.162353515625,218.652923583984,-120.178779602051,32.6006965637207,219.778030395508,-122.329986572266,25.871337890625,209.652038574219,-129.345672607422,15.3950128555298,202.837371826172,-134.581176757813,10.5675392150879,196.451736450195,-138.188537597656,6.68112897872925,193.302444458008,-140.133728027344,2.91309905052185,199.308013916016,-135.55729675293,9.52392673492432,225.944641113281,-117.735534667969,57.34912109375,228.148849487305,-118.439605712891,41.5535736083984,193.414459228516,-144.339141845703,92.662483215332,196.685775756836,-140.186737060547,89.6547927856445,208.897964477539,-128.274566650391,79.2551727294922,205.142593383789,-131.488876342773,82.4597854614258, +213.313385009766,-123.920143127441,73.9606552124023,-27.5598068237305,173.822021484375,-47.4531478881836,-1.54518699645996,164.968154907227,-41.2065315246582,-41.3077545166016,172.147872924805,-44.9914054870605,164.513610839844,-143.921096801758,131.139862060547,161.723342895508,-137.833511352539,132.340972900391,157.831954956055,-130.612808227539,135.142242431641,164.61962890625,-149.806686401367,130.7158203125,179.392074584961,-156.281326293945,107.578544616699,173.573501586914,-158.484527587891,117.014472961426,169.608123779297,-158.790557861328,122.701026916504,184.599578857422,-154.043090820313,100.671867370605,188.007919311523,-148.610549926758,96.6013717651367,175.31266784668,-127.390480041504,-36.306453704834,177.758911132813,-122.839042663574,-33.0846405029297,164.092575073242,-133.725112915039,-47.9905014038086,155.430725097656,-139.127624511719,-55.0206871032715,150.450241088867,-135.607284545898,-58.6608467102051,142.264434814453,-140.418762207031,-64.7490463256836,139.008117675781,-141.061828613281,-67.4589996337891,131.813415527344,-144.959213256836,-72.1869659423828,122.690521240234,-142.172927856445,-82.9103240966797,116.601921081543,-137.063430786133,-86.9026107788086,98.3947372436523,-140.250747680664,-92.6153717041016,94.117919921875,-129.969741821289,-96.1285171508789,90.5473709106445,-131.097854614258,-95.9254989624023,189.016006469727,-138.221542358398,-6.34500789642334,187.709884643555,-127.56950378418,-17.6967296600342,224.805526733398,-118.220581054688,39.9289169311523,222.176254272461,-119.501708984375,34.2336578369141,220.958160400391,-125.402290344238,20.1689796447754,219.400985717773,-128.087554931641,16.2851982116699,207.371810913086,-136.115341186523,8.85775184631348,190.35514831543,-141.82389831543,-2.1976420879364,221.722213745117,-121.096862792969,70.1603775024414,224.6455078125,-119.564720153809,65.9430694580078,228.636901855469,-118.782646179199,60.9201736450195,227.882827758789,-117.953559875488,53.0455017089844,230.082046508789,-118.613624572754,46.2760391235352,190.483169555664,-146.808395385742,94.6496810913086, +200.195114135742,-140.596771240234,90.5184783935547,219.110977172852,-122.822036743164,73.7585296630859,-21.3176937103271,170.112655639648,-45.4775505065918,-14.5830335617065,169.183578491211,-45.3909454345703,-11.4593276977539,167.224380493164,-43.9386024475098,-4.31097793579102,170.167678833008,-47.2361221313477,-32.7711181640625,175.813232421875,-47.9177932739258,0.925888001918793,171.717834472656,-49.3701324462891,162.230392456055,-157.589447021484,131.052841186523,164.640625,-159.443618774414,128.230575561523,184.267547607422,-158.183502197266,101.474945068359,187.569869995117,-154.409133911133,99.0729064941406,170.562210083008,-128.722625732422,-40.8983001708984,163.026458740234,-140.223754882813,-48.7298736572266,160.105194091797,-140.666778564453,-51.7426643371582,144.873687744141,-140.623779296875,-61.806453704834,149.092102050781,-140.268753051758,-58.7366523742676,140.023223876953,-145.45524597168,-65.549919128418,134.635681152344,-147.150421142578,-69.5734176635742,128.801116943359,-145.567260742188,-75.7767181396484,125.612800598145,-149.918701171875,-78.2086563110352,119.525207519531,-145.856292724609,-83.7000961303711,114.351699829102,-147.916488647461,-85.5709838867188,110.46932220459,-145.369247436523,-87.6036758422852,94.2711334228516,-140.490768432617,-93.4491500854492,100.967185974121,-144.502151489258,-91.2783355712891,93.2498321533203,-134.987228393555,-94.6890716552734,187.955917358398,-132.086944580078,-15.2399892807007,181.692291259766,-128.647598266602,-28.236364364624,178.745010375977,-128.880630493164,-32.720100402832,224.357467651367,-123.240074157715,24.4529991149902,218.605911254883,-131.432876586914,12.4219207763672,216.819747924805,-135.506271362305,8.27457427978516,202.584350585938,-139.640686035156,6.25554704666138,195.788681030273,-142.667984008789,4.02684783935547,199.320037841797,-142.425964355469,4.43179798126221,192.615356445313,-144.577163696289,1.12784397602081,231.740203857422,-118.952659606934,53.1066055297852,232.459274291992,-120.321784973145,37.6134872436523,228.598907470703,-119.870750427246,34.4533805847168, +193.531448364258,-149.339630126953,95.2138366699219,197.154815673828,-145.052215576172,93.1081314086914,203.812454223633,-134.58918762207,86.3052673339844,213.596420288086,-126.281372070313,78.7591247558594,209.123977661133,-132.380966186523,85.7851104736328,-17.5143222808838,169.922653198242,-45.6311683654785,-31.2327651977539,181.594787597656,-51.0284957885742,4.88262319564819,171.256790161133,-49.2039184570313,158.14599609375,-139.515670776367,134.625198364258,161.008285522461,-147.938491821289,133.221054077148,160.247207641602,-154.561157226563,133.046035766602,172.105361938477,-167.822448730469,112.858062744141,178.88801574707,-160.122680664063,106.136405944824,169.262069702148,-165.585220336914,119.531715393066,166.273788452148,-163.89306640625,124.58521270752,181.499282836914,-160.936782836914,103.247123718262,190.734176635742,-152.705963134766,97.2010269165039,190.224136352539,-149.628662109375,95.6072692871094,176.06575012207,-133.205047607422,-35.9719200134277,166.601806640625,-138.735595703125,-44.7865867614746,153.930572509766,-144.675170898438,-55.8183670043945,143.558563232422,-145.007202148438,-62.1680870056152,132.364471435547,-150.496734619141,-71.8572387695313,128.892120361328,-150.614761352539,-75.0852508544922,122.359489440918,-153.626052856445,-79.7821197509766,103.539642333984,-148.753570556641,-89.9413070678711,98.6753616333008,-149.527648925781,-91.0623245239258,101.10750579834,-149.140609741211,-90.5018157958984,185.687698364258,-132.173950195313,-20.2516803741455,187.475860595703,-139.963714599609,-9.93365859985352,226.535690307617,-121.567909240723,28.676212310791,228.299865722656,-126.361381530762,20.1963844299316,226.050643920898,-131.561889648438,13.1475915908813,212.787338256836,-140.525756835938,4.05849123001099,187.814910888672,-144.427154541016,-6.72004508972168,189.571075439453,-147.094421386719,-2.97385811805725,225.89762878418,-123.106063842773,73.6657180786133,229.352966308594,-120.555809020996,66.259895324707,235.203536987305,-120.751831054688,56.5512466430664,233.832412719727,-120.202781677246,43.0301208496094, +202.02229309082,-144.454162597656,94.9059066772461,204.402526855469,-140.818786621094,92.6986923217773,220.411087036133,-125.4462890625,78.3700866699219,-19.3776054382324,177.237365722656,-50.4909439086914,-3.60493898391724,176.673324584961,-53.2454147338867,0.110694997012615,175.93424987793,-53.4897384643555,-23.9418506622314,181.542785644531,-52.4109306335449,3.9219388961792,166.693344116211,-43.1491241455078,8.06821537017822,178.651504516602,-58.3110122680664,158.530029296875,-161.284805297852,132.539993286133,161.404312133789,-163.18798828125,129.903732299805,174.651611328125,-167.346405029297,109.128700256348,184.088531494141,-162.15788269043,102.143013000488,186.835800170898,-161.756851196289,101.991996765137,190.363143920898,-157.518447875977,100.095817565918,161.000259399414,-150.304718017578,-49.1572151184082,164.459609985352,-143.554061889648,-46.1022109985352,158.913070678711,-148.251525878906,-52.0825004577637,147.143905639648,-144.890197753906,-59.5771331787109,139.897201538086,-149.291625976563,-65.9884643554688,119.215171813965,-154.223098754883,-81.5326843261719,115.395797729492,-153.493041992188,-83.47607421875,125.920829772949,-154.60514831543,-77.5722961425781,186.100738525391,-137.789505004883,-16.4160041809082,179.07502746582,-133.761108398438,-32.0460357666016,228.439880371094,-128.466583251953,17.3104991912842,229.625,-124.052154541016,24.8667392730713,223.401382446289,-134.6171875,9.69693374633789,216.608734130859,-142.901000976563,2.05305504798889,211.935272216797,-144.702178955078,0.596439003944397,195.49365234375,-146.521362304688,1.52542304992676,192.373352050781,-149.472640991211,-1.02737700939178,233.723388671875,-120.732833862305,60.2413063049316,235.708587646484,-120.623817443848,50.6732711791992,236.200637817383,-121.710922241211,39.9454193115234,232.416275024414,-122.038955688477,30.9243335723877,198.79997253418,-149.993698120117,97.8268966674805,209.473022460938,-136.223358154297,89.7439041137695,215.19157409668,-128.107559204102,81.7963256835938,-28.0806560516357,186.325271606445,-53.9169807434082, +6.69061517715454,169.171081542969,-46.5842628479004,9.77702331542969,175.909240722656,-55.6070442199707,154.33561706543,-143.325042724609,136.658386230469,153.593551635742,-150.460739135742,136.685394287109,152.769470214844,-158.476531982422,135.902313232422,168.897048950195,-174.630111694336,112.85506439209,178.380966186523,-165.192184448242,105.449333190918,164.213592529297,-169.721633911133,123.55411529541,160.602233886719,-167.899444580078,128.409591674805,181.124252319336,-166.338302612305,103.861183166504,193.821487426758,-153.722061157227,98.3338394165039,174.57861328125,-138.377563476563,-36.6408843994141,161.925354003906,-156.726348876953,-45.8129844665527,168.004943847656,-142.990005493164,-41.7030830383301,155.598739624023,-149.134613037109,-54.8295707702637,144.242630004883,-148.049514770508,-61.80615234375,130.844314575195,-155.002182006836,-74.3174743652344,134.433670043945,-157.846466064453,-72.4875030517578,121.152366638184,-158.918579101563,-80.2381591796875,102.833572387695,-158.501525878906,-87.374153137207,99.7149124145508,-151.771118164063,-90.1402816772461,184.402572631836,-137.50846862793,-20.6685218811035,185.128631591797,-149.475646972656,-10.0285787582397,232.487289428711,-127.191467285156,21.3491954803467,231.404174804688,-135.106246948242,11.9070711135864,232.078231811523,-131.648895263672,15.1416873931885,220.414093017578,-139.075622558594,5.58239078521729,208.559936523438,-151.092803955078,-3.70364904403687,196.01969909668,-151.665863037109,-2.11966395378113,186.784790039063,-149.491653442383,-6.83501577377319,188.943008422852,-153.029006958008,-4.2179799079895,224.337478637695,-127.352478027344,80.1904602050781,230.641098022461,-124.206169128418,72.7453308105469,232.539276123047,-122.09196472168,66.4817199707031,236.472671508789,-123.307083129883,63.258903503418,238.096832275391,-122.102966308594,51.9920997619629,237.246734619141,-123.348083496094,34.9677276611328,213.964462280273,-131.973937988281,86.2673568725586,200.034088134766,-156.667343139648,102.992095947266,208.533935546875,-142.441955566406,95.0249176025391, +219.25798034668,-128.949630737305,82.9378280639648,-6.57645988464355,181.421783447266,-55.9530792236328,0.454980999231339,181.613784790039,-58.5003280639648,5.35338878631592,180.427688598633,-59.2311973571777,-34.1057472229004,186.532287597656,-52.2676200866699,-19.4030075073242,186.333267211914,-55.9916801452637,8.57158374786377,167.887451171875,-44.4630508422852,8.07495307922363,170.409957885742,-48.301830291748,7.17095708847046,171.45280456543,-49.6116561889648,15.9258546829224,179.223556518555,-61.8833618164063,153.165496826172,-164.043075561523,134.434173583984,174.415588378906,-171.511795043945,107.6435546875,164.642623901367,-177.876419067383,116.432411193848,184.34455871582,-166.594329833984,103.745170593262,190.545166015625,-162.305892944336,103.325126647949,195.524658203125,-158.291519165039,102.604057312012,177.549896240234,-138.26155090332,-33.0565338134766,159.657135009766,-157.403427124023,-48.753173828125,158.270004272461,-152.833984375,-52.0027923583984,168.489013671875,-148.774566650391,-38.5758781433105,166.836837768555,-152.157913208008,-39.5914764404297,149.793167114258,-149.48664855957,-58.4107208251953,142.247436523438,-154.709167480469,-65.4745101928711,115.899856567383,-158.742553710938,-82.377571105957,110.471321105957,-158.723541259766,-84.2688522338867,128.62109375,-161.277801513672,-77.0155410766602,100.754470825195,-154.014587402344,-89.2182388305664,182.648391723633,-144.655181884766,-20.7389297485352,184.521591186523,-146.116317749023,-14.3462018966675,179.837112426758,-137.304458618164,-29.5314903259277,233.368362426758,-124.518196105957,26.5579051971436,224.134460449219,-139.958724975586,5.92912483215332,219.449005126953,-146.729370117188,-0.126755997538567,216.361694335938,-150.589752197266,-3.34675407409668,212.725341796875,-150.761764526367,-3.70564889907837,191.35124206543,-157.251403808594,-5.45609092712402,228.365875244141,-125.530296325684,76.2519760131836,239.207946777344,-123.706123352051,57.3980255126953,239.949996948242,-123.473098754883,45.7859916687012,237.081726074219,-126.018348693848,27.8527336120605, +216.057662963867,-135.140243530273,89.5610809326172,213.057373046875,-140.221725463867,93.5333633422852,9.19790554046631,184.080032348633,-64.4096069335938,-31.0193462371826,191.28874206543,-54.7156562805176,-26.8157825469971,188.751495361328,-55.1914558410645,9.45929145812988,171.648818969727,-50.0193977355957,13.5619239807129,174.39909362793,-54.3822250366211,18.0127582550049,186.073226928711,-70.866340637207,149.437133789063,-165.838256835938,136.226348876953,156.10578918457,-168.04345703125,131.534896850586,167.650924682617,-180.764709472656,110.234809875488,178.123947143555,-170.538711547852,105.25032043457,155.676742553711,-184.992126464844,121.791938781738,158.753051757813,-173.855041503906,126.548400878906,181.06623840332,-171.27278137207,104.965286254883,174.379577636719,-146.995407104492,-32.9857292175293,161.222290039063,-161.290802001953,-44.6819763183594,167.16487121582,-157.353424072266,-37.9073104858398,154.050598144531,-153.136993408203,-55.3193168640137,145.65576171875,-153.658065795898,-61.6025314331055,137.266952514648,-159.943664550781,-70.3412857055664,120.907341003418,-163.351013183594,-80.7524108886719,104.766761779785,-163.030975341797,-86.4404678344727,183.190444946289,-154.817169189453,-10.5497303009033,185.372665405273,-156.290313720703,-7.42174291610718,237.47477722168,-130.541793823242,20.7457370758057,236.911712646484,-128.355575561523,23.2683849334717,228.409866333008,-140.206726074219,7.52762079238892,235.172546386719,-133.590087890625,15.3958120346069,223.007354736328,-145.622268676758,1.98637795448303,204.231506347656,-156.712356567383,-6.88993215560913,213.83544921875,-155.925277709961,-6.76717901229858,188.505966186523,-158.023483276367,-6.07421207427979,222.827331542969,-131.255859375,84.8881225585938,226.779724121094,-131.347885131836,83.8329238891602,235.190536499023,-125.6953125,70.2337875366211,235.032531738281,-129.049652099609,75.1173629760742,239.938995361328,-125.445289611816,60.9232749938965,241.769180297852,-125.073249816895,53.0069999694824,240.728073120117,-126.163360595703,35.0665397644043, +195.805679321289,-161.690841674805,104.905281066895,208.146881103516,-145.984313964844,97.4324493408203,214.546508789063,-143.966110229492,96.0622177124023,-7.77348709106445,186.180252075195,-58.5253295898438,4.16170215606689,184.934127807617,-62.6055297851563,-22.476957321167,188.755493164063,-56.2288055419922,154.74365234375,-173.372985839844,130.168746948242,170.087158203125,-181.369781494141,107.594551086426,162.196380615234,-188.024429321289,111.703948974609,175.239669799805,-174.523101806641,106.217407226563,187.168838500977,-171.016754150391,106.626449584961,191.100219726563,-166.773345947266,105.99739074707,178.913024902344,-146.993408203125,-26.3409767150879,176.517791748047,-147.05940246582,-30.144250869751,156.616836547852,-157.548446655273,-51.9324836730957,156.049789428711,-161.497817993164,-50.1280097961426,172.450393676758,-155.756256103516,-32.2783584594727,149.516143798828,-154.272125244141,-58.2902069091797,142.697479248047,-158.963577270508,-65.0357666015625,130.23225402832,-165.490219116211,-76.3484802246094,110.389312744141,-163.109985351563,-84.279655456543,100.302322387695,-163.012969970703,-87.6383895874023,123.849632263184,-170.861740112305,-80.3790664672852,180.305160522461,-153.570037841797,-19.8321399688721,180.760208129883,-158.805557250977,-13.1840877532959,234.898513793945,-140.69580078125,10.5607385635376,235.760604858398,-137.328460693359,12.956672668457,220.994155883789,-152.932983398438,-3.50207901000977,209.024978637695,-156.27131652832,-7.06816911697388,195.436645507813,-163.211990356445,-9.60238742828369,190.523162841797,-163.6650390625,-9.0252513885498,231.299163818359,-130.891830444336,80.7271118164063,238.175827026367,-126.295372009277,66.5075225830078,241.512145996094,-124.68822479248,48.840892791748,243.232330322266,-127.133460998535,42.086727142334,239.71598815918,-128.862640380859,26.6085109710693,217.008758544922,-137.919525146484,91.6756896972656,200.443145751953,-162.260894775391,106.010391235352,203.632446289063,-157.873474121094,104.119201660156,-19.4579124450684,191.111724853516,-58.172794342041, +2.06869792938232,188.494476318359,-64.1414794921875,7.62317180633545,189.425567626953,-67.9656600952148,17.565315246582,191.217742919922,-75.4712905883789,-25.5509071350098,191.177734375,-56.4659271240234,165.42170715332,-187.509368896484,108.583648681641,177.98893737793,-175.493194580078,105.588348388672,157.033889770508,-194.2490234375,112.895065307617,155.122695922852,-181.869812011719,124.653221130371,153.11799621582,-181.628799438477,126.463394165039,166.683822631836,-161.427825927734,-37.2387466430664,159.919174194336,-165.64323425293,-43.2252311706543,152.130401611328,-157.980484008789,-55.3273162841797,147.916976928711,-158.396514892578,-58.7761573791504,142.429443359375,-163.294006347656,-64.0889739990234,133.760589599609,-166.32829284668,-72.9423446655273,112.406509399414,-172.06086730957,-85.1279373168945,108.561126708984,-171.904846191406,-86.4777755737305,118.734130859375,-172.45491027832,-82.6877975463867,178.596984863281,-154.993179321289,-23.0905609130859,182.285354614258,-160.03369140625,-10.0904846191406,238.202835083008,-134.612182617188,17.2799968719482,226.252670288086,-147.642471313477,2.5816969871521,228.209854125977,-147.085418701172,4.14939117431641,218.624908447266,-156.668350219727,-6.16284990310669,210.175079345703,-160.136688232422,-9.06916522979736,203.520431518555,-160.405715942383,-9.12710952758789,187.447860717773,-161.830856323242,-7.89769983291626,221.384185791016,-135.795303344727,89.2226486206055,229.089950561523,-135.242263793945,86.1914520263672,239.035919189453,-130.623794555664,71.9536514282227,233.630386352539,-132.828018188477,80.7683181762695,240.662078857422,-128.375579833984,65.3699111938477,244.14241027832,-128.003540039063,54.3630294799805,244.321441650391,-127.846527099609,49.9072952270508,243.561370849609,-129.432678222656,35.5602874755859,196.762771606445,-166.330291748047,107.054496765137,207.908874511719,-152.171905517578,101.023895263672,213.214385986328,-148.819580078125,98.947998046875,218.035858154297,-147.103424072266,97.1980285644531,-11.3323163986206,191.498764038086,-60.3431091308594, +-2.11912298202515,194.735092163086,-65.948356628418,12.5569248199463,194.455062866211,-75.1616592407227,145.14372253418,-172.776931762695,136.221343994141,168.45100402832,-189.142532348633,106.587448120117,172.586410522461,-183.23095703125,106.410430908203,162.159393310547,-191.540771484375,109.305717468262,153.964584350586,-191.414749145508,119.084678649902,151.492340087891,-189.88459777832,122.758033752441,153.019989013672,-175.825729370117,130.006744384766,183.034423828125,-176.863327026367,107.267517089844,189.367050170898,-173.128967285156,107.629547119141,175.800735473633,-155.782257080078,-28.1081504821777,163.620529174805,-166.360290527344,-38.5338745117188,171.649322509766,-160.781768798828,-31.0957431793213,150.390228271484,-167.066375732422,-51.6602592468262,148.499038696289,-162.933959960938,-56.2498092651367,126.033843994141,-172.722915649414,-79.1735534667969,138.477066040039,-163.712036132813,-68.3838958740234,128.985137939453,-172.872940063477,-76.8339233398438,117.769035339355,-176.970352172852,-83.151741027832,178.117950439453,-162.874954223633,-16.1504802703857,177.069854736328,-160.282699584961,-22.5849094390869,184.658584594727,-161.696838378906,-8.35596466064453,180.887222290039,-165.123168945313,-11.146689414978,240.674072265625,-132.024932861328,23.9147472381592,238.577880859375,-139.053619384766,14.6622409820557,231.287155151367,-149.075607299805,5.74808692932129,223.285369873047,-158.047485351563,-4.78840494155884,225.050552368164,-154.657150268555,-2.11927390098572,217.509796142578,-160.447723388672,-7.91285181045532,200.235107421875,-164.778137207031,-11.0831823348999,186.503768920898,-168.9765625,-11.4547185897827,225.403579711914,-137.851501464844,89.5961837768555,232.245254516602,-136.866409301758,84.9555282592773,236.586685180664,-134.166152954102,78.8433303833008,244.427444458008,-131.380874633789,60.5825386047363,244.962509155273,-129.366683959961,41.9280128479004,244.33544921875,-132.137954711914,33.3469734191895,219.488998413086,-140.329742431641,92.8310012817383,203.916473388672,-162.569931030273,106.037391662598, +199.753067016602,-168.785537719727,107.966583251953,208.681945800781,-157.787460327148,103.576148986816,-14.9123659133911,196.377243041992,-61.4860191345215,-9.82518768310547,194.679077148438,-62.528923034668,2.91894102096558,195.734176635742,-69.4089965820313,17.0708675384521,195.80517578125,-78.9939422607422,-24.772632598877,196.170227050781,-58.1716957092285,164.875640869141,-193.683975219727,106.54044342041,176.407775878906,-182.073837280273,106.560447692871,157.737945556641,-199.856582641602,107.59154510498,152.153411865234,-202.206817626953,112.869064331055,151.296325683594,-178.278472900391,129.8447265625,155.305709838867,-172.43489074707,-43.3945503234863,122.760528564453,-177.106353759766,-80.6482009887695,143.085510253906,-168.148483276367,-60.4933242797852,140.028213500977,-172.871932983398,-61.7866516113281,135.829803466797,-168.283493041992,-69.4370040893555,131.001327514648,-174.204071044922,-73.8982391357422,113.205589294434,-176.733322143555,-84.7990036010742,109.574226379395,-176.703323364258,-85.689697265625,178.743011474609,-164.888153076172,-13.3822078704834,183.657485961914,-165.250183105469,-9.90197658538818,240.839096069336,-137.080429077148,19.1739826202393,228.073837280273,-151.956893920898,1.82987296581268,238.301849365234,-145.098220825195,12.0553846359253,206.735748291016,-164.941162109375,-11.4218158721924,196.165710449219,-169.426605224609,-12.7822494506836,212.434310913086,-164.832153320313,-10.3480100631714,188.90901184082,-174.13606262207,-14.4711141586304,228.379867553711,-139.04362487793,89.1138381958008,241.448150634766,-133.133041381836,70.8864517211914,236.594680786133,-139.96272277832,82.8409194946289,246.940689086914,-132.265960693359,51.2473258972168,245.997589111328,-131.809906005859,40.3062515258789,204.735549926758,-166.724334716797,106.74446105957,207.657836914063,-161.663833618164,105.045295715332,211.916259765625,-153.531051635742,101.332931518555,217.608825683594,-153.335037231445,100.088813781738,223.778427124023,-144.811187744141,94.160026550293,-20.335298538208,195.935195922852,-59.7225494384766, +0.542716979980469,200.805679321289,-71.0557632446289,-6.38204097747803,201.217712402344,-67.2235794067383,14.5959253311157,200.879684448242,-80.9722290039063,168.231979370117,-197.763381958008,105.475341796875,171.128265380859,-192.817886352539,106.594451904297,160.306198120117,-199.656555175781,105.709365844727,174.504592895508,-189.332550048828,107.016494750977,152.2744140625,-208.195404052734,106.946487426758,148.18000793457,-199.252532958984,120.625823974609,146.035797119141,-208.349411010742,116.806449890137,189.317047119141,-183.621994018555,109.414726257324,184.264556884766,-188.362457275391,109.171699523926,175.036651611328,-160.455718994141,-26.3877811431885,171.755325317383,-165.239196777344,-27.6610069274902,147.027908325195,-167.592422485352,-55.4012260437012,149.665161132813,-172.035858154297,-49.9809951782227,156.174789428711,-177.507400512695,-39.055721282959,125.919830322266,-177.216369628906,-78.4422836303711,128.574096679688,-178.61750793457,-75.0370483398438,112.052474975586,-181.3427734375,-83.6313934326172,117.810035705566,-181.598785400391,-81.6873016357422,177.194854736328,-169.739639282227,-13.5723257064819,175.475677490234,-168.581527709961,-16.3270969390869,182.929412841797,-169.005554199219,-11.3317060470581,180.25715637207,-169.480606079102,-12.067479133606,243.201324462891,-136.787399291992,25.3294868469238,240.104019165039,-142.703979492188,15.0493793487549,231.824203491211,-154.641159057617,4.61154508590698,234.241455078125,-151.388824462891,8.04374217987061,241.811187744141,-139.70768737793,19.7882442474365,223.477401733398,-162.550933837891,-5.76292085647583,228.741897583008,-157.201416015625,-0.131640002131462,205.630645751953,-168.478515625,-12.6320343017578,217.560821533203,-165.032180786133,-8.74710273742676,183.212448120117,-173.384994506836,-13.2768983840942,233.433380126953,-141.279846191406,86.8048095703125,239.205932617188,-137.483474731445,78.0387496948242,245.379531860352,-135.947326660156,64.6556396484375,247.429748535156,-135.917327880859,56.8158683776855,245.432556152344,-135.68928527832,33.0695457458496, +203.269409179688,-171.622817993164,107.831573486328,213.80744934082,-162.750946044922,103.244117736816,213.111373901367,-157.775451660156,102.532051086426,221.301177978516,-150.272720336914,97.6144714355469,-15.4090147018433,200.775665283203,-62.7980499267578,-21.7289333343506,200.684661865234,-60.3975143432617,18.949951171875,199.972595214844,-83.0956344604492,145.555755615234,-177.267364501953,133.581085205078,164.865646362305,-199.625564575195,104.64525604248,154.635650634766,-208.501434326172,104.407234191895,158.057983398438,-207.525344848633,102.918090820313,147.386932373047,-195.877197265625,122.859039306641,144.168609619141,-207.662353515625,119.961761474609,147.913986206055,-213.292907714844,108.05859375,149.075103759766,-189.442565917969,124.569213867188,169.701126098633,-169.926651000977,-26.4083843231201,153.04948425293,-179.672607421875,-43.1163215637207,159.467132568359,-175.366180419922,-36.0029258728027,154.538635253906,-176.007247924805,-42.4531593322754,122.633514404297,-181.744812011719,-79.0168380737305,144.665679931641,-172.206878662109,-56.9217720031738,137.340942382813,-173.233978271484,-64.766845703125,134.579681396484,-178.128448486328,-66.0910720825195,132.281463623047,-182.213851928711,-67.9429550170898,104.203704833984,-181.821823120117,-84.5761795043945,173.734512329102,-166.028259277344,-23.5466041564941,240.637069702148,-149.642669677734,14.6166362762451,239.076919555664,-152.630950927734,12.4626245498657,227.157745361328,-160.312713623047,-2.60678195953369,210.539138793945,-169.455596923828,-11.997971534729,196.014694213867,-174.00505065918,-14.3114986419678,215.465606689453,-168.721542358398,-9.84802055358887,185.694686889648,-177.913436889648,-15.7255373001099,229.219970703125,-144.109115600586,91.2851486206055,243.07731628418,-137.289459228516,71.6760330200195,239.785980224609,-141.65087890625,79.7522125244141,236.982711791992,-145.726287841797,85.2308578491211,248.179809570313,-135.884323120117,51.9099884033203,248.168807983398,-136.538375854492,46.0039138793945,246.940689086914,-135.544281005859,39.201545715332, +210.075088500977,-166.483306884766,104.93628692627,194.033508300781,-180.345672607422,109.287712097168,207.739852905273,-171.485794067383,106.166412353516,200.571151733398,-172.653915405273,108.495628356934,218.026870727539,-157.330413818359,101.091903686523,221.163162231445,-154.125106811523,98.9944076538086,225.762619018555,-149.236618041992,95.2001342773438,-6.14194679260254,205.412124633789,-69.1069717407227,-12.1329936981201,205.386123657227,-65.7508392333984,3.31663990020752,205.365127563477,-75.3823852539063,17.2923908233643,206.357223510742,-86.1028366088867,144.276626586914,-187.048324584961,128.264572143555,168.831039428711,-203.492950439453,104.211219787598,176.116760253906,-198.025405883789,107.251518249512,176.192764282227,-194.107025146484,107.57054901123,161.698333740234,-203.247909545898,103.669166564941,183.367462158203,-193.138916015625,109.077690124512,148.972091674805,-218.201370239258,102.289031982422,143.001510620117,-202.494842529297,123.694129943848,138.542068481445,-212.54182434082,123.732124328613,138.636077880859,-217.514312744141,118.661628723145,143.713577270508,-214.326995849609,113.66414642334,188.464965820313,-189.277557373047,109.705757141113,163.127471923828,-170.890731811523,-35.2256469726563,151.050308227539,-179.961639404297,-46.3841438293457,156.259811401367,-182.653900146484,-34.2601547241211,125.91283416748,-181.98583984375,-76.1855621337891,144.256637573242,-176.860336303711,-57.1604957580566,138.236038208008,-178.001434326172,-62.4317169189453,129.131149291992,-187.175338745117,-69.5416107177734,114.813751220703,-186.259246826172,-79.6874084472656,119.194175720215,-186.42626953125,-77.7766189575195,174.23356628418,-173.769027709961,-15.4594106674194,179.737106323242,-173.145965576172,-13.0719766616821,173.647521972656,-169.493606567383,-19.4417018890381,244.714477539063,-149.239624023438,22.8706455230713,247.248718261719,-142.846984863281,33.4456787109375,242.217224121094,-146.634368896484,18.0167694091797,236.240646362305,-159.295608520508,8.59548568725586,232.112243652344,-159.921676635742,3.08329606056213, +225.393585205078,-166.350296020508,-4.24315214157104,221.391189575195,-166.743347167969,-6.99228096008301,229.010925292969,-162.922958374023,-0.878687977790833,205.354614257813,-173.449005126953,-13.5373229980469,191.71028137207,-178.684524536133,-15.9205560684204,180.019134521484,-177.747421264648,-14.7259387969971,231.951217651367,-146.237335205078,90.2111434936523,243.801376342773,-141.546875,73.0066604614258,239.902008056641,-145.770278930664,81.2537689208984,245.624572753906,-140.418762207031,68.3533020019531,247.872772216797,-140.297744750977,60.4706268310547,248.885879516602,-139.646682739258,53.982593536377,193.267440795898,-185.124145507813,109.713752746582,196.774780273438,-178.70051574707,109.187698364258,207.534820556641,-175.957244873047,106.220413208008,203.588439941406,-176.996353149414,107.900581359863,214.185485839844,-167.598419189453,103.070106506348,225.831634521484,-153.919082641602,96.4504547119141,-18.9062576293945,205.717163085938,-62.27099609375,165.091674804688,-207.086288452148,102.210021972656,177.061859130859,-203.082901000977,106.016395568848,186.763793945313,-193.889999389648,109.28971862793,151.566345214844,-219.523513793945,99.2286224365234,157.212905883789,-211.872772216797,100.51985168457,161.097274780273,-210.12858581543,100.720878601074,144.049621582031,-191.816802978516,126.164367675781,140.879302978516,-197.386352539063,126.418395996094,139.191131591797,-214.433013916016,121.182876586914,143.061508178711,-219.562515258789,107.967582702637,145.896789550781,-220.503601074219,103.441146850586,164.490615844727,-174.735122680664,-28.8612251281738,169.674118041992,-176.248275756836,-19.7484302520752,147.711975097656,-176.991348266602,-52.5510444641113,151.005294799805,-185.308151245117,-43.7705841064453,157.792953491211,-182.557876586914,-30.9395294189453,153.916580200195,-184.763107299805,-37.6440849304199,122.657508850098,-186.590286254883,-75.7083129882813,125.969841003418,-186.916305541992,-72.8032302856445,135.950820922852,-183.165939331055,-64.2963943481445,132.240463256836,-187.320358276367,-66.7672424316406, +107.227996826172,-187.053329467773,-81.0670394897461,103.318618774414,-186.069229125977,-82.6788024902344,176.836822509766,-176.195251464844,-14.2245903015137,248.150802612305,-149.578659057617,32.1175498962402,242.536254882813,-154.449142456055,16.6946411132813,240.384048461914,-159.516632080078,13.5415306091309,213.881454467773,-174.111053466797,-10.482723236084,208.837966918945,-175.023147583008,-12.6326341629028,197.084808349609,-178.228469848633,-15.1113767623901,186.231750488281,-182.214859008789,-16.8401470184326,176.919830322266,-182.438888549805,-15.8045454025269,231.289154052734,-149.276626586914,91.7649002075195,242.608276367188,-145.784286499023,76.8259353637695,235.217544555664,-151.391830444336,88.4939804077148,238.591873168945,-149.913696289063,84.2373580932617,248.496841430664,-141.98291015625,39.3341598510742,213.547424316406,-171.131774902344,103.02409362793,196.933792114258,-184.693099975586,109.134696960449,200.284118652344,-180.227661132813,108.648643493652,220.290084838867,-160.731750488281,100.484855651855,-13.8567628860474,210.044586181641,-65.6325302124023,-6.88956117630005,209.954574584961,-70.0867614746094,2.97775602340698,210.05158996582,-77.0519485473633,173.471496582031,-207.675354003906,103.425132751465,183.630493164063,-197.778381347656,108.465629577637,147.420944213867,-222.932846069336,99.7249755859375,137.809997558594,-211.128692626953,125.671318054199,138.071014404297,-206.250213623047,126.758422851563,139.878204345703,-219.030471801758,113.992172241211,190.739181518555,-193.464950561523,108.957679748535,194.029510498047,-189.233535766602,109.344718933105,159.113082885742,-183.705001831055,-26.8823299407959,149.055099487305,-181.032745361328,-49.9562911987305,152.832473754883,-189.695587158203,-34.0965385437012,155.271713256836,-189.045516967773,-27.4558868408203,146.577865600586,-181.172744750977,-54.5909461975098,139.743194580078,-185.966217041016,-61.4976234436035,129.562194824219,-191.927810668945,-66.7490310668945,125.945838928223,-191.828796386719,-69.1039733886719,96.9789047241211,-195.212127685547,-81.6691970825195, +110.649337768555,-192.169830322266,-75.9086380004883,122.142463684082,-191.551773071289,-71.5984115600586,173.340484619141,-180.632705688477,-15.716236114502,246.810684204102,-153.783081054688,26.5388031005859,232.427261352539,-164.005065917969,3.31283807754517,238.187835693359,-163.828048706055,11.3184127807617,230.152053833008,-168.737533569336,1.42458295822144,221.307189941406,-172.377883911133,-6.39007186889648,199.732070922852,-181.791809082031,-14.8556518554688,195.771682739258,-182.615905761719,-15.91965675354,191.137222290039,-182.987930297852,-16.8085422515869,245.432556152344,-145.146224975586,70.8375473022461,242.908294677734,-150.923782348633,77.0529556274414,248.022796630859,-145.225234985352,62.6361427307129,249.267913818359,-141.696884155273,45.4978637695313,204.687545776367,-180.931732177734,107.020492553711,214.583526611328,-177.413375854492,101.243919372559,222.961334228516,-171.079772949219,98.1188201904297,222.548309326172,-165.452224731445,99.1254196166992,227.366775512695,-159.208587646484,96.0170135498047,230.314071655273,-154.774169921875,93.4205627441406,14.8903541564941,213.334899902344,-87.3815536499023,173.358489990234,-211.330703735352,101.14591217041,177.726913452148,-207.443328857422,103.823173522949,183.669494628906,-202.724868774414,106.506439208984,165.405700683594,-212.158782958984,99.7139739990234,187.963912963867,-199.529541015625,107.46053314209,156.564834594727,-216.899261474609,98.0317077636719,151.362335205078,-223.377899169922,96.1367263793945,160.683227539063,-216.238189697266,97.2777328491211,141.489364624023,-223.35188293457,105.362327575684,137.928009033203,-224.047958374023,109.646743774414,142.362442016602,-225.336074829102,101.621963500977,164.366607666016,-183.355972290039,-19.8313407897949,158.878067016602,-187.013320922852,-23.0960597991943,150.438247680664,-189.83659362793,-40.6393775939941,147.653961181641,-185.682189941406,-51.5883522033691,143.969604492188,-181.528793334961,-57.8200607299805,135.464767456055,-188.343460083008,-64.2890014648438,103.341621398926,-190.777694702148,-80.4885864257813, +114.581726074219,-196.367248535156,-70.3301849365234,106.552940368652,-190.983703613281,-78.6292037963867,171.137268066406,-178.669494628906,-16.6897315979004,249.394927978516,-154.395141601563,35.6463966369629,249.914978027344,-151.537841796875,39.8357048034668,243.222320556641,-158.729553222656,18.0847759246826,240.803085327148,-164.412109375,15.4790210723877,225.300567626953,-176.980346679688,-1.38088202476501,223.292373657227,-176.850326538086,-3.54069304466248,211.301208496094,-177.999435424805,-11.1222867965698,200.471145629883,-185.863220214844,-13.9457626342773,217.322784423828,-178.704513549805,-7.5555567741394,178.790023803711,-187.188339233398,-16.6966323852539,183.309463500977,-188.056427001953,-17.109073638916,245.116516113281,-149.922698974609,71.8817443847656,237.154739379883,-154.062088012695,86.2785568237305,240.985107421875,-155.916275024414,80.3157806396484,249.220916748047,-144.373138427734,55.2735214233398,249.917984008789,-147.281433105469,45.8812026977539,196.865783691406,-190.251647949219,108.216606140137,201.472229003906,-185.9072265625,107.431533813477,206.817764282227,-182.652893066406,105.389335632324,222.455291748047,-175.447189331055,97.2545318603516,-10.4034252166748,215.005065917969,-68.4473037719727,-2.33329391479492,215.19108581543,-74.5386962890625,3.84363102912903,214.709045410156,-79.2447662353516,179.231063842773,-210.262603759766,101.583961486816,181.507278442383,-206.736267089844,104.028198242188,166.173782348633,-215.934158325195,97.395149230957,156.408828735352,-221.512710571289,94.8675994873047,144.349624633789,-226.717224121094,97.6883773803711,196.066711425781,-194.04801940918,107.056495666504,191.690292358398,-199.204513549805,106.184410095215,167.561920166016,-182.623901367188,-17.5010108947754,147.901977539063,-190.399658203125,-47.5568580627441,150.737274169922,-194.514053344727,-31.1591491699219,149.037109375,-194.606079101563,-36.7913017272949,145.518753051758,-185.846206665039,-55.3813247680664,142.777481079102,-186.231246948242,-58.6280403137207,127.315971374512,-196.943298339844,-63.8947563171387, +135.337768554688,-193.153915405273,-62.0518760681152,121.977447509766,-196.847290039063,-66.5605163574219,100.225311279297,-195.460144042969,-79.9141235351563,108.043083190918,-195.882202148438,-74.2409744262695,173.695510864258,-186.62028503418,-16.2404861450195,169.844131469727,-184.264053344727,-16.4906120300293,249.267913818359,-157.951477050781,36.302661895752,245.038497924805,-158.653549194336,22.2816867828369,243.337341308594,-163.059982299805,19.6616306304932,235.535568237305,-168.550506591797,9.063551902771,226.373672485352,-180.76872253418,1.62406301498413,194.453552246094,-187.277359008789,-16.1054744720459,190.209136962891,-187.029327392578,-16.9957618713379,230.36506652832,-160.731750488281,93.4843673706055,247.414733886719,-149.357635498047,64.8125534057617,243.708389282227,-162.46891784668,74.1944732666016,235.003524780273,-158.006484985352,88.509880065918,249.172912597656,-149.677658081055,56.5852508544922,200.338119506836,-189.444564819336,106.862480163574,208.434921264648,-185.284164428711,103.184112548828,217.101776123047,-180.85871887207,98.3948440551758,227.576797485352,-171.050750732422,94.4979629516602,226.389678955078,-166.898361206055,96.2939376831055,9.75059986114502,220.37858581543,-85.3409576416016,176.357772827148,-215.51611328125,97.1331253051758,172.155364990234,-214.795043945313,98.3209381103516,186.796798706055,-203.719955444336,105.35432434082,160.783248901367,-219.91455078125,94.7645874023438,151.564346313477,-226.33317565918,92.1112289428711,165.12467956543,-219.188491821289,94.9216003417969,137.656997680664,-227.71630859375,103.734169006348,139.297149658203,-229.086441040039,98.7642822265625,190.530166625977,-203.195907592773,103.749176025391,164.629623413086,-187.523376464844,-17.3467960357666,155.711761474609,-194.215026855469,-19.3663940429688,153.938583374023,-194.009017944336,-22.3056812286377,146.711883544922,-194.990097045898,-44.5990676879883,144.574661254883,-190.352645874023,-54.269115447998,151.952377319336,-194.398040771484,-26.4400863647461,139.277145385742,-190.946701049805,-60.250301361084, +135.006729125977,-196.716278076172,-59.2362022399902,101.109405517578,-199.404541015625,-76.7926177978516,97.1004104614258,-200.23762512207,-78.4043807983398,93.8429870605469,-204.804061889648,-76.7035140991211,107.499031066895,-200.805679321289,-71.9865570068359,115.425811767578,-201.186721801758,-66.8558502197266,250,-156.842361450195,42.8563041687012,247.159713745117,-158.40251159668,28.481294631958,242.058212280273,-167.492416381836,19.8073463439941,235.738586425781,-177.705413818359,14.6705408096313,223.208374023438,-182.837921142578,-0.825695991516113,218.157867431641,-185.5341796875,-4.09041690826416,210.926162719727,-184.512084960938,-9.55621242523193,193.620468139648,-191.575775146484,-15.1086759567261,174.442596435547,-193.471969604492,-16.0196666717529,185.435653686523,-191.70378112793,-16.5984230041504,246.390640258789,-156.895385742188,66.7081451416016,241.712188720703,-165.367202758789,77.0527572631836,205.621643066406,-189.539566040039,103.364135742188,212.822341918945,-184.798110961914,99.6336669921875,222.094268798828,-180.22265625,95.4311599731445,226.667709350586,-176.212280273438,93.576171875,-3.8829460144043,219.627517700195,-73.8966369628906,15.6712312698364,219.019470214844,-89.2774505615234,182.694396972656,-210.929672241211,99.7776870727539,170.565216064453,-218.416412353516,95.2031326293945,160.766250610352,-223.412902832031,91.6107864379883,146.137817382813,-229.266464233398,91.6753845214844,155.949783325195,-226.330169677734,89.7888031005859,135.040725708008,-227.825317382813,108.312614440918,141.977401733398,-230.549591064453,92.7419891357422,195.017608642578,-199.353530883789,104.198211669922,160.024169921875,-194.159027099609,-16.7250347137451,144.934692382813,-195.087112426758,-48.7299728393555,147.076904296875,-199.48454284668,-31.3233642578125,149.027099609375,-199.285537719727,-23.5150012969971,145.208724975586,-199.660568237305,-38.3671531677246,128.808120727539,-201.569747924805,-57.8454666137695,122.611511230469,-201.691757202148,-62.0380783081055,138.332046508789,-194.631072998047,-58.3008117675781, +103.472633361816,-200.580657958984,-74.5779037475586,119.516204833984,-201.450744628906,-64.2645874023438,248.834869384766,-162.751937866211,39.5315742492676,247.608764648438,-162.616928100586,33.4134750366211,245.44255065918,-162.962982177734,25.8033332824707,228.699905395508,-182.150848388672,5.78316020965576,243.920394897461,-167.857452392578,25.3214855194092,238.938903808594,-175.114166259766,19.1796817779541,222.451293945313,-186.777297973633,0.783276975154877,214.121490478516,-185.830200195313,-7.10332202911377,203.903472900391,-192.688873291016,-10.386513710022,190.151138305664,-191.642776489258,-16.1408767700195,175.548706054688,-199.13151550293,-15.0322685241699,179.336059570313,-197.781372070313,-14.9951658248901,248.543853759766,-157.799453735352,56.9352836608887,246.063613891602,-162.996978759766,66.2141876220703,239.274932861328,-162.471908569336,81.2560653686523,243.438354492188,-168.215484619141,72.1845779418945,202.509338378906,-194.358047485352,102.830085754395,215.189575195313,-187.445373535156,96.287841796875,230.195053100586,-170.901748657227,91.2934494018555,7.39153909683228,225.15705871582,-84.0553359985352,11.3855104446411,225.946136474609,-87.2083435058594,178.755004882813,-217.939361572266,93.2710418701172,188.007919311523,-208.170394897461,99.831184387207,150.458236694336,-228.89143371582,89.0425338745117,169.557098388672,-221.421691894531,92.167236328125,195.437652587891,-204.440032958984,98.7606887817383,163.910552978516,-194.51106262207,-16.0974731445313,167.554916381836,-190.464660644531,-16.4309062957764,154.826675415039,-200.503646850586,-16.7209339141846,151.740371704102,-199.531539916992,-19.551513671875,143.159530639648,-199.770584106445,-44.6144676208496,141.737380981445,-195.085113525391,-53.994686126709,128.247055053711,-206.247222900391,-52.6091537475586,125.381774902344,-201.764770507813,-60.0019760131836,138.926116943359,-199.146514892578,-52.5261421203613,96.8506851196289,-205.510147094727,-75.5277938842773,110.894355773926,-205.779159545898,-69.1174697875977,104.880767822266,-204.649047851563,-72.5864105224609, +100.258323669434,-205.19010925293,-74.4214935302734,116.438911437988,-206.035186767578,-65.2443923950195,249.146911621094,-162.185897827148,44.0927276611328,227.154754638672,-186.856307983398,6.4653468132019,241.511169433594,-176.465286254883,27.751823425293,235.755599975586,-185.768203735352,19.9174556732178,232.985336303711,-186.225250244141,14.97887134552,213.782440185547,-193.147918701172,-3.19367909431458,209.425003051758,-192.604873657227,-7.05885791778564,199.286010742188,-196.659271240234,-10.8945636749268,190.755187988281,-195.734176635742,-14.2436923980713,169.537109375,-200.740661621094,-15.3247976303101,182.026321411133,-197.965393066406,-14.5242204666138,247.964797973633,-162.722946166992,56.0624961853027,233.944427490234,-171.856842041016,85.523681640625,238.777893066406,-170.629730224609,79.7288131713867,239.619964599609,-175.973236083984,76.1191635131836,219.713012695313,-186.25325012207,93.4078598022461,225.630615234375,-180.674697875977,92.1591339111328,233.13134765625,-176.688323974609,84.9645309448242,16.7871398925781,223.768920898438,-89.7527923583984,183.103424072266,-215.906158447266,93.3190536499023,159.140075683594,-226.60319519043,88.383659362793,146.259826660156,-232.195755004883,85.7526016235352,152.056396484375,-230.755615234375,85.0625457763672,200.255126953125,-198.774490356445,100.918891906738,160.976257324219,-198.841491699219,-15.417106628418,155.590744018555,-205.699157714844,-14.8553524017334,140.856292724609,-199.959594726563,-48.5247535705566,143.53955078125,-204.476028442383,-27.5782985687256,141.705383300781,-204.435028076172,-34.5359802246094,139.648178100586,-203.953994750977,-41.4220542907715,124.663711547852,-206.593246459961,-55.6825523376465,119.945251464844,-206.902282714844,-61.8145523071289,122.535499572754,-206.554229736328,-58.4386215209961,248.098815917969,-166.042266845703,41.9463157653809,247.064697265625,-166.916351318359,36.8085136413574,237.636779785156,-185.802200317383,25.5702095031738,224.501495361328,-191.536773681641,6.82308292388916,204.765548706055,-196.571258544922,-7.97346782684326, +175.068649291992,-205.825164794922,-12.5980310440063,167.867950439453,-205.647155761719,-14.231990814209,245.667572021484,-167.373397827148,64.4386215209961,246.919692993164,-167.287384033203,56.4416351318359,241.803176879883,-175.214172363281,71.6980285644531,211.789260864258,-194.471054077148,94.2308349609375,14.0464706420898,227.790328979492,-88.3708572387695,176.401779174805,-221.835739135742,88.363166809082,182.202362060547,-219.932540893555,87.5359802246094,167.055862426758,-224.667022705078,88.5961837768555,145.816787719727,-234.259948730469,81.3806762695313,206.474731445313,-199.195510864258,94.8893051147461,202.117309570313,-203.503936767578,94.2115325927734,151.046310424805,-205.089096069336,-16.5761222839355,147.180923461914,-204.015991210938,-19.6022167205811,136.686889648438,-204.835067749023,-44.9440002441406,145.035705566406,-204.058990478516,-23.0491542816162,123.983642578125,-211.302703857422,-52.0188941955566,133.61360168457,-204.870086669922,-49.2541236877441,100.129302978516,-209.865570068359,-73.5528030395508,94.7216796875,-214.843063354492,-73.4555892944336,113.160583496094,-210.424621582031,-67.6369247436523,105.466835021973,-210.042587280273,-71.5433044433594,116.877944946289,-211.527725219727,-64.5359191894531,246.898681640625,-169.121566772461,49.0629119873047,229.831008911133,-191.255737304688,14.3087062835693,242.833297729492,-180.170654296875,41.2766456604004,239.035919189453,-185.530166625977,31.0429458618164,235.727584838867,-190.640670776367,27.6862163543701,232.977325439453,-190.896713256836,19.9524593353271,211.029174804688,-197.55436706543,-2.02156400680542,193.28044128418,-201.289733886719,-10.3037061691284,199.573043823242,-201.913787841797,-6.92011499404907,189.257034301758,-201.682754516602,-11.2061939239502,183.008438110352,-206.358215332031,-9.90999698638916,243.806381225586,-173.31298828125,64.9332656860352,238.071823120117,-181.454772949219,74.8364334106445,212.429321289063,-198.37744140625,90.4070587158203,223.972442626953,-184.959121704102,90.3985595703125,233.234344482422,-181.058746337891,82.418083190918, +192.091323852539,-214.766036987305,86.9544219970703,197.162826538086,-206.944274902344,94.0075149536133,165.281692504883,-227.097244262695,85.3867721557617,159.712142944336,-205.85417175293,-14.2586936950684,151.821380615234,-210.467636108398,-14.0466728210449,137.063934326172,-209.025482177734,-30.779712677002,138.902114868164,-209.60954284668,-23.8829364776611,133.908615112305,-209.877563476563,-35.7794036865234,132.061447143555,-209.650543212891,-40.1579322814941,126.189865112305,-210.986679077148,-48.8070793151855,122.642509460449,-211.292709350586,-55.1947059631348,121.39338684082,-211.191696166992,-58.4392204284668,98.0406036376953,-214.726043701172,-72.844841003418,109.741241455078,-210.239593505859,-69.5766143798828,119.827239990234,-211.907760620117,-61.2315979003906,242.594253540039,-181.379776000977,47.9403038024902,225.659606933594,-196.19921875,13.9498701095581,221.466201782227,-196.459259033203,8.33763122558594,203.576446533203,-202.022796630859,-3.90517902374268,196.504745483398,-201.398727416992,-8.97610569000244,166.577819824219,-210.496627807617,-12.1244850158691,177.848922729492,-211.752746582031,-8.62179088592529,245.165512084961,-172.255874633789,58.4086265563965,240.603073120117,-181.041748046875,68.5906219482422,177.544891357422,-223.482894897461,84.3430633544922,189.98811340332,-218.572418212891,81.7573165893555,155.295715332031,-232.093734741211,80.8437194824219,208.441925048828,-203.220916748047,89.2623443603516,204.779571533203,-206.595245361328,88.4654693603516,159.159103393555,-210.589630126953,-12.7443447113037,148.903091430664,-215.65412902832,-12.0592775344849,142.485458374023,-209.31950378418,-17.3735980987549,138.213043212891,-212.0087890625,-19.1557731628418,128.588088989258,-210.644638061523,-44.8196868896484,123.043548583984,-215.902145385742,-48.7881774902344,122.329483032227,-215.966171264648,-52.0223922729492,95.3264312744141,-224.36198425293,-68.9341506958008,113.163581848145,-214.724044799805,-66.7110366821289,108.74015045166,-215.314102172852,-68.786735534668,117.846046447754,-216.117172241211,-61.6298332214355, +228.523880004883,-196.008209228516,19.5423183441162,240.596084594727,-185.757202148438,41.6595840454102,237.992813110352,-190.214645385742,40.3879585266113,231.242156982422,-195.460144042969,26.0088520050049,208.56494140625,-202.229827880859,0.763005971908569,193.390441894531,-206.793258666992,-4.84839105606079,190.159133911133,-206.522232055664,-7.0713791847229,201.728256225586,-207.519332885742,1.36602795124054,196.465744018555,-207.266311645508,-2.44267606735229,186.794799804688,-206.402236938477,-8.680006980896,181.846313476563,-214.289001464844,-4.92394876480103,241.743179321289,-181.140747070313,60.6894493103027,235.914611816406,-185.851211547852,74.3851928710938,238.410858154297,-185.806198120117,68.2400894165039,216.137680053711,-198.37043762207,86.0629348754883,231.185150146484,-185.593185424805,81.3823776245117,181.602294921875,-223.036849975586,81.5092926025391,198.217910766602,-214.971069335938,80.6482086181641,200.701156616211,-211.178695678711,85.4350738525391,169.694122314453,-228.299362182617,79.8278274536133,153.51953125,-235.04801940918,74.5398025512695,145.508758544922,-210.937683105469,-15.0171680450439,130.150238037109,-215.067077636719,-28.0252437591553,127.316970825195,-215.232086181641,-35.362060546875,133.334564208984,-214.517028808594,-22.8699378967285,127.07494354248,-212.608825683594,-41.7674903869629,124.011650085449,-216.066177368164,-44.7225799560547,120.647323608398,-216.071182250977,-57.3203125,89.8335952758789,-224.332992553711,-69.9318466186523,104.71475982666,-220.824630737305,-67.8104400634766,115.382804870605,-217.144271850586,-63.6424331665039,232.95832824707,-195.589172363281,33.9591293334961,223.810424804688,-200.636657714844,19.4898128509521,221.2841796875,-200.798690795898,14.1176872253418,216.08366394043,-201.754776000977,8.35442161560059,175.506698608398,-215.892150878906,-6.6226749420166,164.220581054688,-215.463119506836,-9.57868480682373,239.801986694336,-185.827209472656,60.4215240478516,227.012741088867,-191.509765625,80.4552841186523,197.297836303711,-217.089263916016,76.4658966064453, +165.130676269531,-231.017639160156,76.2747802734375,211.302215576172,-204.138000488281,84.7329025268555,209.97607421875,-207.705352783203,81.0996551513672,157.319915771484,-215.388107299805,-10.4474201202393,139.660171508789,-220.211578369141,-11.6113338470459,134.120635986328,-218.301391601563,-16.263391494751,141.718383789063,-211.951766967773,-15.6362276077271,129.951232910156,-219.433502197266,-19.7355308532715,125.64380645752,-215.579116821289,-39.1575355529785,121.41739654541,-221.105667114258,-44.8039855957031,120.262283325195,-220.617614746094,-51.486644744873,90.7483901977539,-229.012451171875,-68.7012252807617,102.560539245605,-224.38298034668,-66.6537246704102,110.539329528809,-219.881546020508,-65.2854995727539,116.743934631348,-220.96565246582,-58.3541145324707,240.685073852539,-185.828201293945,47.7010765075684,225.871627807617,-200.474639892578,26.2329750061035,237.814804077148,-190.872711181641,48.2489318847656,234.63948059082,-194.748092651367,41.2854461669922,210.902160644531,-206.708251953125,9.27667331695557,192.760375976563,-213.236892700195,3.05729293823242,189.168029785156,-214.682037353516,1.63421404361725,186.64778137207,-212.621826171875,-3.08230805397034,197.773880004883,-211.952774047852,5.10525417327881,176.471786499023,-220.454605102539,-2.33817505836487,234.969512939453,-190.988723754883,68.5589218139648,229.291961669922,-191.940811157227,77.0609588623047,236.855712890625,-190.47966003418,61.813159942627,220.223083496094,-199.659561157227,79.9777374267578,174.689605712891,-228.599395751953,73.5134048461914,181.629287719727,-225.904144287109,73.0125579833984,211.372207641602,-209.177490234375,76.7361297607422,167.136871337891,-231.514694213867,73.2763824462891,155.547729492188,-221.320678710938,-6.82536506652832,145.526748657227,-220.265594482422,-10.0964860916138,127.802017211914,-219.909545898438,-22.6921195983887,125.033744812012,-220.255569458008,-28.1279525756836,123.379585266113,-219.755523681641,-37.0951309204102,118.314094543457,-221.116668701172,-55.5838432312012,96.2209243774414,-229.232467651367,-67.0093688964844, +86.5162734985352,-229.328475952148,-69.5304107666016,104.999786376953,-226.525207519531,-64.0643768310547,108.614135742188,-226.095153808594,-61.9098625183105,111.570426940918,-226.532196044922,-58.7910575866699,229.512985229492,-200.529647827148,45.4348564147949,228.457885742188,-200.475631713867,36.6120948791504,218.361892700195,-205.957183837891,19.9392566680908,215.133575439453,-205.962188720703,13.3961172103882,203.203399658203,-211.842758178711,9.38037300109863,166.536819458008,-221.154663085938,-5.01357793807983,181.39826965332,-219.895538330078,0.678237020969391,170.868240356445,-221.113662719727,-3.78635692596436,232.962326049805,-190.326644897461,73.6424179077148,194.748580932617,-220.681625366211,69.4289093017578,209.190994262695,-211.874771118164,73.3359909057617,155.732757568359,-236.738189697266,67.1356811523438,216.158676147461,-203.731964111328,79.6840057373047,136.11784362793,-219.780532836914,-13.569525718689,141.307342529297,-225.768127441406,-7.24250602722168,127.238960266113,-225.538101196289,-15.7041358947754,123.559600830078,-220.519607543945,-32.7208023071289,118.989151000977,-228.516403198242,-33.7995071411133,116.489906311035,-230.796615600586,-40.9733123779297,115.611824035645,-228.349365234375,-49.6469612121582,91.3225402832031,-234.381958007813,-67.4770126342773,87.7151947021484,-233.561889648438,-68.9234466552734,100.899383544922,-229.250457763672,-65.0478668212891,234.157440185547,-195.620162963867,50.075611114502,220.748123168945,-206.467239379883,32.8737258911133,207.198791503906,-211.279708862305,12.4290218353271,185.624694824219,-222.762832641602,9.47484302520752,193.210418701172,-220.055557250977,12.7712545394897,161.470306396484,-220.856643676758,-6.27140092849731,176.114761352539,-223.212860107422,0.830779016017914,171.890335083008,-225.576110839844,1.8102810382843,232.23225402832,-195.747177124023,64.978874206543,229.765014648438,-195.653167724609,71.1689758300781,219.59001159668,-203.620956420898,74.5694122314453,168.13996887207,-233.113845825195,66.0080718994141,185.138626098633,-226.549194335938,64.2044982910156, +205.650650024414,-216.00715637207,66.8928604125977,213.906448364258,-209.754547119141,70.7800369262695,146.926895141602,-225.942138671875,-5.4606819152832,135.088729858398,-225.547088623047,-9.6530818939209,131.475387573242,-224.042953491211,-13.2839975357056,123.054557800293,-226.984252929688,-21.6777191162109,120.62931060791,-229.130447387695,-25.1962642669678,120.24227142334,-234.434982299805,-13.4642162322998,109.30020904541,-235.985122680664,-51.4321365356445,93.9249954223633,-236.344161987305,-65.8377532958984,83.6126861572266,-233.700897216797,-69.6401138305664,103.992691040039,-231.601684570313,-61.8350524902344,107.778053283691,-235.416076660156,-54.5914459228516,222.956344604492,-205.797164916992,39.4784736633301,229.307968139648,-200.589660644531,51.3037300109863,211.077178955078,-210.778656005859,17.2222919464111,215.30158996582,-211.206695556641,32.7781143188477,179.881118774414,-223.000854492188,3.54221105575562,161.759338378906,-226.828231811523,-0.469545990228653,168.256988525391,-225.412094116211,-0.222902998328209,157.189895629883,-225.84912109375,-2.94161510467529,196.642761230469,-221.333679199219,62.6482429504395,154.12858581543,-238.377365112305,62.1732940673828,137.506973266602,-230.029541015625,-4.46238422393799,141.480361938477,-231.851715087891,-0.993664026260376,128.80712890625,-229.114440917969,-9.71827793121338,122.372489929199,-233.992935180664,-10.2359991073608,112.232490539551,-239.551467895508,-37.3889617919922,113.207588195801,-234.924026489258,-44.1478233337402,110.246299743652,-236.490173339844,-48.2682266235352,90.81298828125,-239.899520874023,-64.1023788452148,88.618278503418,-236.916213989258,-67.6995315551758,85.1167373657227,-238.577377319336,-67.1452713012695,101.787467956543,-234.891006469727,-61.936466217041,103.909683227539,-236.81120300293,-57.5564384460449,225.288558959961,-204.465042114258,46.5183639526367,227.777816772461,-200.635650634766,62.9284706115723,217.592819213867,-210.316619873047,39.7506980895996,213.677444458008,-210.552627563477,22.5562152862549,200.860168457031,-217.042266845703,16.2693977355957, +182.842422485352,-226.93522644043,14.7011451721191,179.652099609375,-227.362274169922,11.2228031158447,165.405700683594,-224.891036987305,-1.78657102584839,174.918640136719,-226.368179321289,4.89008283615112,169.21907043457,-229.047439575195,6.31534194946289,225.751617431641,-201.070693969727,68.1341781616211,171.808334350586,-233.161849975586,58.7809638977051,188.620986938477,-225.949142456055,59.0205879211426,202.256301879883,-219.104461669922,59.9627799987793,210.852157592773,-213.612930297852,63.889965057373,219.040954589844,-206.753265380859,68.2770919799805,159.178100585938,-237.9453125,55.6590576171875,149.629150390625,-230.585601806641,-0.161340996623039,132.318450927734,-230.944625854492,-5.30731582641602,118.27808380127,-235.236053466797,-17.0167636871338,116.957954406738,-235.149047851563,-24.0223503112793,116.664421081543,-233.883926391602,-29.4874858856201,106.800964355469,-239.692489624023,-49.3885383605957,96.2532272338867,-238.770385742188,-62.6527328491211,81.0420379638672,-237.702301025391,-68.8861465454102,217.774841308594,-210.537628173828,46.0302124023438,223.487396240234,-205.683151245117,51.3749389648438,206.245712280273,-215.77815246582,23.216178894043,209.042984008789,-215.875152587891,32.8160209655762,211.19319152832,-215.103073120117,39.8816146850586,191.82829284668,-222.154769897461,15.4032125473022,165.178680419922,-229.270462036133,4.53971910476685,158.901062011719,-229.688507080078,1.65925598144531,172.674407958984,-229.942535400391,11.2065010070801,206.5107421875,-217.108276367188,58.7880630493164,135.162750244141,-234.756011962891,0.448936998844147,145.311737060547,-235.899124145508,6.59173917770386,124.654708862305,-233.388870239258,-6.90663290023804,116.121879577637,-238.992416381836,-15.7237367630005,114.339698791504,-239.251449584961,-25.175464630127,109.766250610352,-239.680480957031,-43.154224395752,105.995880126953,-241.378646850586,-45.2018241882324,93.4977569580078,-242.311737060547,-58.5760383605957,77.8913269042969,-242.019714355469,-65.1184768676758,100.146308898926,-238.564376831055,-59.8230590820313, +100.730369567871,-241.774703979492,-52.7452659606934,222.147262573242,-205.581146240234,62.6374397277832,194.095520019531,-222.78483581543,22.5229110717773,187.218841552734,-225.772125244141,17.9209594726563,176.971832275391,-229.402481079102,13.6420412063599,160.761245727539,-231.714706420898,6.51477193832397,164.74462890625,-233.101837158203,13.2150983810425,163.636520385742,-238.42936706543,47.3400421142578,180.600189208984,-230.28157043457,53.4793434143066,194.405548095703,-223.963943481445,52.2261238098145,199.613052368164,-221.882736206055,45.4107513427734,217.075775146484,-210.012588500977,59.194507598877,211.203186035156,-214.374008178711,57.1476020812988,153.773559570313,-233.541885375977,6.12437391281128,126.469886779785,-234.275970458984,-3.90989899635315,129.152145385742,-236.332168579102,-0.280389010906219,139.033111572266,-236.62419128418,4.99799394607544,110.003273010254,-241.653686523438,-37.3106536865234,102.105499267578,-242.937805175781,-45.2873344421387,97.2131271362305,-241.844696044922,-57.0072822570801,90.1209182739258,-243.143814086914,-58.209300994873,85.9123077392578,-242.89680480957,-60.4165153503418,215.728637695313,-211.733749389648,50.584358215332,210.673126220703,-215.585113525391,46.8004875183105,202.713348388672,-219.85954284668,32.9806365966797,176.186767578125,-230.946624755859,18.4986152648926,183.59147644043,-228.249374389648,20.1044731140137,168.194976806641,-234.100936889648,20.4145050048828,169.095062255859,-236.501174926758,46.9763069152832,176.312774658203,-232.180755615234,53.3256301879883,131.137344360352,-239.539474487305,6.58478879928589,135.302749633789,-239.182434082031,8.35912322998047,138.74609375,-240.028518676758,13.1483917236328,144.228637695313,-239.104431152344,14.0841836929321,106.664947509766,-242.319747924805,-39.0265235900879,103.125602722168,-242.977798461914,-39.0487213134766,92.7040786743164,-243.529861450195,-52.9604835510254,98.5476531982422,-243.645874023438,-45.189323425293,205.399627685547,-218.774444580078,42.5793762207031,194.687576293945,-223.896942138672,31.2750682830811, +154.225601196289,-237.123245239258,14.9296674728394,155.329711914063,-238.835403442383,21.9992599487305,168.73503112793,-237.019226074219,41.5316734313965,184.811599731445,-228.777420043945,46.8023872375488,174.687606811523,-234.042938232422,45.7606887817383,97.3637390136719,-243.348846435547,-51.1463088989258,198.622955322266,-222.378784179688,39.2733535766602,188.009918212891,-226.791213989258,26.1840686798096,181.224243164063,-230.144546508789,24.9750499725342,172.193359375,-233.985931396484,26.8811378479004,162.909469604492,-237.898315429688,29.3421783447266,148.140014648438,-240.503570556641,22.2567844390869,189.547073364258,-226.523208618164,35.0949401855469,179.684097290039,-231.535690307617,31.536693572998,177.403884887695,-232.971832275391,39.3287582397461,164.134582519531,-238.497375488281,36.0074310302734,-174.462600708008,145.823287963867,21.8729476928711,-169.839141845703,145.605270385742,24.9389476776123,-167.611938476563,145.051208496094,20.1123733520508,-177.387893676758,146.106307983398,29.7076148986816,-160.941268920898,144.503158569336,23.8450393676758,-171.970352172852,146.025314331055,15.6116333007813,-180.315185546875,145.435256958008,20.2889938354492,-180.36018371582,147.544464111328,45.3395462036133,-166.169799804688,146.080307006836,32.8624229431152,-159.402130126953,143.410049438477,17.6514339447021,-174.674621582031,146.039306640625,17.2834968566895,-165.922760009766,144.577163696289,15.9478664398193,-179.763122558594,145.688278198242,15.2569990158081,-183.573486328125,145.938293457031,33.8111152648926,-175.890747070313,147.529449462891,44.0563201904297,-154.439636230469,145.441253662109,33.3848762512207,-153.038497924805,142.832992553711,17.7451438903809,-176.594818115234,147.17741394043,10.1654996871948,-169.48811340332,145.92529296875,12.6679458618164,-183.667495727539,144.814193725586,18.8939552307129,-188.658996582031,145.104217529297,32.3168716430664,-185.64469909668,147.438446044922,49.5364608764648,-185.894714355469,147.665466308594,54.9001808166504,-156.843872070313,146.992401123047,45.3865509033203, +-150.962295532227,143.854095458984,23.1478710174561,-158.372024536133,142.442962646484,13.3338098526001,-174.776626586914,148.709579467773,5.05756902694702,-171.966354370117,148.134506225586,5.8242039680481,-165.152694702148,144.686172485352,9.89240264892578,-180.057159423828,147.809478759766,56.6987571716309,-150.89729309082,146.092315673828,37.8306121826172,-147.5849609375,144.820190429688,27.2267723083496,-169.473114013672,147.620468139648,48.2975387573242,-160.284210205078,142.639984130859,10.6660490036011,-148.191024780273,142.788986206055,17.7382411956787,-155.286727905273,141.148818969727,11.0416860580444,-178.576995849609,149.809677124023,1.49973094463348,-180.347686767578,146.157318115234,12.2862777709961,-169.028076171875,147.572463989258,4.56829214096069,-180.752212524414,145.686767578125,13.7274656295776,-185.87321472168,144.219635009766,18.3478012084961,-187.888412475586,144.488662719727,24.5942134857178,-191.995315551758,146.79638671875,53.1140098571777,-176.810836791992,148.095504760742,70.4009017944336,-144.822708129883,146.622375488281,41.8574028015137,-145.653778076172,144.208129882813,21.6630268096924,-170.241195678711,148.125503540039,55.5579490661621,-150.638275146484,141.103820800781,12.9415721893311,-180.932235717773,146.626373291016,9.31555652618408,-175.965759277344,151.684860229492,-2.27439904212952,-172.974456787109,150.974807739258,-1.06752097606659,-169.877151489258,149.640670776367,-0.509046971797943,-161.295303344727,143.00700378418,7.26593589782715,-166.289794921875,147.055404663086,1.12581396102905,-181.741317749023,145.685272216797,12.1979341506958,-195.214630126953,144.904205322266,40.2963523864746,-193.654479980469,146.693374633789,61.3446159362793,-142.41845703125,146.291320800781,34.436580657959,-155.191711425781,147.685470581055,55.8593788146973,-144.149627685547,145.622268676758,29.0208473205566,-142.537475585938,145.638259887695,24.8834438323975,-162.093383789063,147.877502441406,57.4183311462402,-155.220703125,139.56266784668,5.43410587310791,-144.518676757813,143.227035522461,16.9954681396484, +-147.461944580078,140.977813720703,13.1056880950928,-152.999496459961,139.734680175781,8.75991344451904,-179.614105224609,151.643859863281,-3.56829595565796,-156.735870361328,140.307754516602,1.50985205173492,-163.342498779297,145.504257202148,-0.345975995063782,-202.331329345703,144.488159179688,51.8092803955078,-201.016189575195,145.331237792969,62.9168701171875,-166.602828979492,148.281524658203,69.9235534667969,-184.560592651367,147.291427612305,72.7810363769531,-139.885208129883,146.560363769531,39.0121269226074,-136.024841308594,146.364349365234,45.0313186645508,-140.782302856445,146.036315917969,20.272388458252,-173.96955871582,154.555145263672,-8.00473117828369,-177.240875244141,154.877182006836,-9.05471420288086,-170.771240234375,153.464050292969,-7.54829597473145,-164.818649291992,148.299530029297,-5.07699394226074,-158.63005065918,141.971908569336,-0.491430014371872,-195.428665161133,146.286331176758,66.158088684082,-164.691635131836,147.970489501953,78.7258148193359,-176.313781738281,147.746475219727,77.1522674560547,-137.692001342773,147.056411743164,34.6492004394531,-139.680206298828,146.802383422852,29.2279663085938,-145.144729614258,147.077423095703,57.9953880310059,-137.723007202148,148.161529541016,25.541805267334,-152.501449584961,136.613388061523,-0.247264996170998,-140.605270385742,144.490158081055,15.2171945571899,-144.013610839844,141.243835449219,12.7729549407959,-166.746841430664,150.825790405273,-7.21431303024292,-157.022888183594,141.868896484375,-6.40401411056519,-161.470321655273,145.708282470703,-5.2640118598938,-208.662963867188,143.270034790039,56.7164611816406,-201.841293334961,144.467163085938,72.5729141235352,-155.184707641602,147.802474975586,75.2818832397461,-186.089752197266,146.530364990234,79.60400390625,-134.269668579102,146.71337890625,40.9919204711914,-152.824478149414,147.770477294922,71.3536987304688,-136.536880493164,146.073318481445,62.6884460449219,-135.257751464844,150.770767211914,20.9275531768799,-153.854583740234,137.963516235352,-3.95919394493103,-142.309448242188,142.867004394531,13.9950752258301, +-136.638900756836,148.634567260742,17.1213817596436,-175.102661132813,159.203598022461,-16.6103248596191,-171.478317260742,157.656463623047,-14.9423599243164,-166.543823242188,154.18310546875,-13.4564151763916,-163.373519897461,151.108795166016,-12.7294435501099,-159.406127929688,145.800277709961,-9.984375,-207.108810424805,143.679077148438,61.7956581115723,-200.035110473633,144.211135864258,79.8479309082031,-154.342636108398,147.374435424805,80.1642608642578,-163.885559082031,146.981399536133,86.4708786010742,-175.266677856445,147.223419189453,82.209358215332,-131.434387207031,145.783279418945,47.5844650268555,-135.555786132813,148.507553100586,30.9159317016602,-134.121658325195,147.715484619141,36.1817474365234,-145.021713256836,147.192413330078,71.4208984375,-132.498489379883,151.731857299805,27.0976581573486,-150.94580078125,135.323760986328,0.46068200469017,-150.381240844727,133.818099975586,-6.15674877166748,-135.11474609375,147.815475463867,12.2964086532593,-178.496002197266,160.217697143555,-19.399097442627,-167.748947143555,156.824371337891,-16.6703281402588,-152.848480224609,137.728500366211,-8.71049976348877,-214.304504394531,140.774795532227,73.2014770507813,-147.717971801758,147.028411865234,77.7146148681641,-157.008895874023,146.899383544922,84.292366027832,-182.068344116211,146.22932434082,85.0218353271484,-186.545791625977,145.109222412109,88.5454788208008,-127.919036865234,146.436340332031,43.1060256958008,-130.504302978516,148.209533691406,37.5383796691895,-141.542373657227,146.233322143555,76.5835113525391,-132.255462646484,145.350234985352,57.609748840332,-131.059341430664,155.804275512695,18.5604228973389,-150.638763427734,134.059143066406,-1.51742696762085,-130.897323608398,153.347030639648,11.3843193054199,-173.231475830078,165.238189697266,-27.5272941589355,-175.943740844727,165.238189697266,-27.4639873504639,-169.528121948242,160.457717895508,-21.2837810516357,-158.212020874023,154.672149658203,-27.0076427459717,-161.980377197266,156.032287597656,-23.0599555969238,-158.031982421875,147.102416992188,-15.502815246582, +-155.583755493164,142.697982788086,-12.8644571304321,-212.212295532227,140.671783447266,78.3827896118164,-147.42594909668,145.859298706055,85.6655960083008,-173.072463989258,146.061309814453,89.1915435791016,-154.372634887695,144.960205078125,92.4962692260742,-199.430038452148,143.783081054688,83.5214920043945,-126.549903869629,144.701171875,48.5410614013672,-131.467391967773,150.106704711914,32.4936904907227,-132.861526489258,145.108215332031,68.7863464355469,-128.864135742188,144.862197875977,51.4121437072754,-127.574012756348,159.002578735352,19.2498893737793,-130.729309082031,155.865280151367,14.603835105896,-151.25732421875,136.592376708984,-12.5363254547119,-135.284759521484,143.460052490234,8.51808929443359,-127.147964477539,154.158111572266,6.7211217880249,-181.349273681641,167.706436157227,-34.6154861450195,-165.320709228516,159.678634643555,-24.4832954406738,-158.76106262207,150.595748901367,-19.8627414703369,-165.067687988281,145.765289306641,92.0655212402344,-200.361129760742,142.372940063477,88.7093963623047,-125.472801208496,148.268524169922,39.3587608337402,-123.27458190918,145.180221557617,44.9473114013672,-127.537002563477,151.121795654297,33.8518218994141,-134.783706665039,144.816192626953,75.9552536010742,-128.655120849609,144.339141845703,57.3606224060059,-127.536003112793,154.621154785156,28.4734935760498,-124.878746032715,159.506622314453,22.9478530883789,-127.397987365723,159.440628051758,15.6687393188477,-149.425140380859,133.444076538086,-13.482816696167,-130.155258178711,146.259323120117,5.5927619934082,-126.977951049805,158.752563476563,11.5314340591431,-177.895935058594,171.205764770508,-39.2709465026855,-170.493209838867,166.29328918457,-30.8472194671631,-166.654846191406,163.850051879883,-30.2104568481445,-154.575653076172,152.197906494141,-29.9782333374023,-154.133605957031,147.543472290039,-24.5712032318115,-154.112609863281,144.462158203125,-20.133768081665,-152.188415527344,139.833709716797,-17.4506053924561,-218.529922485352,137.361465454102,82.1161499023438,-204.749557495117,141.363861083984,87.4921798706055, +-142.471466064453,140.999801635742,102.897087097168,-133.071548461914,141.424850463867,94.5545654296875,-176.41178894043,143.221038818359,99.1316146850586,-156.052795410156,143.945098876953,96.8295974731445,-187.985931396484,143.833099365234,93.1134262084961,-124.151672363281,142.754989624023,53.8141746520996,-122.114471435547,142.98600769043,48.8629913330078,-130.084259033203,142.374938964844,84.9296264648438,-127.251968383789,143.617065429688,63.4485206604004,-120.247283935547,165.352203369141,16.3734073638916,-125.022758483887,159.811660766602,8.41852855682373,-125.422798156738,150.0537109375,2.4927179813385,-175.931747436523,177.054351806641,-50.1625137329102,-171.827346801758,171.200775146484,-39.6770820617676,-182.682418823242,174.300079345703,-48.1253128051758,-162.791458129883,162.353912353516,-32.8564147949219,-160.00617980957,159.23161315918,-31.9959335327148,-154.428634643555,154.724166870117,-34.8763160705566,-137.790008544922,141.456848144531,98.5607604980469,-167.239883422852,143.088027954102,100.985900878906,-161.646347045898,143.516571044922,98.9077453613281,-207.360824584961,139.397659301758,91.3080520629883,-190.984222412109,140.984802246094,100.619857788086,-120.751335144043,147.240432739258,41.2034378051758,-122.381500244141,151.533843994141,35.7301063537598,-120.028266906738,144.100112915039,45.0080146789551,-120.828346252441,159.854675292969,26.2640762329102,-127.016952514648,142.347946166992,77.2672729492188,-116.971961975098,165.612228393555,20.7019329071045,-122.478507995605,163.877044677734,14.0183782577515,-150.144226074219,138.219543457031,-21.3084850311279,-123.795639038086,159.00358581543,5.27867078781128,-122.872543334961,163.379013061523,10.9908800125122,-121.588424682617,158.523529052734,1.91178095340729,-179.591110229492,177.651412963867,-52.5091438293457,-166.840850830078,170.303695678711,-40.9984130859375,-165.265701293945,167.939468383789,-38.3622550964355,-162.610443115234,165.501220703125,-37.9382133483887,-151.695373535156,150.849792480469,-34.6942939758301,-150.521255493164,142.571975708008,-26.4967918395996, +-221.48420715332,133.839126586914,89.4340667724609,-148.765090942383,140.782791137695,105.917381286621,-172.917449951172,139.555679321289,109.617744445801,-158.737060546875,142.943496704102,100.033355712891,-185.551681518555,139.910705566406,106.230407714844,-202.998397827148,138.403564453125,99.259033203125,-120.036270141602,140.789794921875,51.1817207336426,-120.171287536621,142.331451416016,47.7841835021973,-122.049468994141,141.176834106445,56.6150512695313,-124.894744873047,142.376953125,64.2627944946289,-116.885955810547,167.479415893555,16.9292640686035,-116.973960876465,168.696517944336,12.0468835830688,-121.719429016113,164.008071899414,8.41178798675537,-118.355102539063,156.353317260742,-2.56839799880981,-173.604507446289,178.060455322266,-52.6267547607422,-178.31298828125,184.444076538086,-65.9279556274414,-169.356094360352,172.039855957031,-42.677978515625,-181.574310302734,181.979843139648,-62.6919364929199,-158.982070922852,161.532821655273,-37.7348937988281,-149.50715637207,155.944274902344,-48.6156616210938,-217.634826660156,135.587295532227,89.7554016113281,-153.718566894531,140.74479675293,106.653457641602,-179.47509765625,140.069717407227,107.465530395508,-162.539428710938,137.383453369141,114.939262390137,-159.495635986328,141.642623901367,104.091201782227,-208.890975952148,136.962432861328,97.1553268432617,-195.419662475586,136.883407592773,108.852668762207,-189.209045410156,137.432479858398,110.995880126953,-117.595024108887,150.24072265625,37.7789077758789,-117.923065185547,146.351348876953,41.6498870849609,-117.9970703125,158.041488647461,29.9019336700439,-118.228088378906,141.676879882813,46.705379486084,-123.884643554688,141.140823364258,73.1877746582031,-109.648246765137,167.264389038086,23.3078861236572,-110.758361816406,172.027862548828,15.3094034194946,-120.765335083008,163.829055786133,5.21604490280151,-118.907157897949,159.594635009766,-0.831479012966156,-165.567733764648,173.890045166016,-49.846378326416,-161.658355712891,169.276580810547,-45.7860832214355,-159.676147460938,166.152282714844,-43.4211502075195, +-153.454544067383,158.488540649414,-43.6854782104492,-222.511306762695,131.526901245117,93.6046752929688,-157.569946289063,141.343353271484,104.945289611816,-161.421325683594,141.941909790039,103.237121582031,-182.323364257813,137.32145690918,113.153091430664,-165.562728881836,135.255264282227,119.076667785645,-204.261520385742,135.463272094727,105.736366271973,-116.806945800781,155.510238647461,32.8252182006836,-115.981872558594,143.732086181641,43.0618209838867,-119.132179260254,141.233337402344,48.9435501098633,-117.864059448242,137.589492797852,55.9808883666992,-120.983360290527,139.881698608398,60.8394660949707,-109.823272705078,170.02766418457,19.7179355621338,-118.953163146973,163.929061889648,2.04535388946533,-117.246994018555,168.749542236328,7.68021583557129,-116.664932250977,163.832046508789,-1.13431704044342,-170.929244995117,177.644409179688,-53.2642135620117,-175.700729370117,185.765197753906,-68.5887145996094,-183.005447387695,185.439178466797,-70.9429473876953,-161.776351928711,172.246871948242,-51.3639297485352,-151.438339233398,163.11198425293,-55.3947257995605,-214.798553466797,133.341064453125,100.00350189209,-157.102890014648,138.511581420898,112.291007995605,-159.877166748047,135.582290649414,118.336601257324,-200.194122314453,133.923126220703,112.066986083984,-192.292343139648,134.944229125977,114.853256225586,-187.501892089844,134.315170288086,117.756538391113,-114.236694335938,148.314529418945,39.0619316101074,-113.657646179199,155.972290039063,33.045841217041,-110.201301574707,163.399002075195,27.1808662414551,-118.926406860352,140.212982177734,50.2623558044434,-117.422012329102,138.306549072266,51.5180511474609,-102.499542236328,176.261276245117,16.4883193969727,-105.61385345459,177.795425415039,9.78912258148193,-102.301528930664,179.15055847168,12.0081796646118,-117.390007019043,167.976470947266,4.77993202209473,-106.933982849121,177.792419433594,5.42129516601563,-113.474624633789,163.200988769531,-5.03391981124878,-180.133148193359,188.2314453125,-75.2264633178711,-158.575042724609,173.414001464844,-58.9742736816406, +-167.249908447266,177.489395141602,-56.3150177001953,-156.885879516602,167.191390991211,-50.3602333068848,-157.694961547852,170.479705810547,-54.471134185791,-148.172027587891,160.704742431641,-59.8354606628418,-218.843948364258,130.958831787109,100.245826721191,-173.779541015625,132.675994873047,122.789031982422,-165.98176574707,132.041946411133,124.092163085938,-206.845779418945,132.525985717773,109.644744873047,-104.840782165527,166.049270629883,25.9957504272461,-118.272842407227,139.592178344727,50.3464393615723,-114.902763366699,134.471176147461,53.1618156433105,-116.965721130371,138.350555419922,50.5146026611328,-117.816551208496,139.636184692383,49.3429908752441,-102.263519287109,172.498901367188,20.9801597595215,-115.570823669434,168.649520874023,2.04664397239685,-112.588539123535,172.815933227539,4.91641521453857,-112.827560424805,157.666458129883,-7.34934616088867,-113.786651611328,168.597518920898,-1.20529401302338,-173.420501708984,185.810211181641,-69.6009140014648,-177.726928710938,190.627670288086,-80.1782531738281,-185.013641357422,188.912506103516,-80.9430313110352,-161.359313964844,176.240280151367,-61.1598892211914,-170.344192504883,183.994033813477,-67.9226455688477,-151.807373046875,169.590621948242,-67.2356872558594,-154.251617431641,167.763427734375,-56.7937622070313,-221.606231689453,127.390480041504,103.042106628418,-214.318511962891,130.891830444336,105.678359985352,-159.628158569336,132.522979736328,122.694030761719,-203.745468139648,130.520782470703,115.788345336914,-195.160629272461,131.469879150391,119.647727966309,-186.506774902344,126.523399353027,130.348785400391,-110.926376342773,152.84797668457,35.6553993225098,-98.6319732666016,177.9814453125,17.1392822265625,-96.6678848266602,183.473968505859,11.016583442688,-96.9667053222656,186.624282836914,3.04465198516846,-108.025085449219,176.824340820313,2.03091311454773,-106.497940063477,166.231292724609,-11.0482788085938,-111.716453552246,168.378494262695,-4.31945991516113,-182.317367553711,192.220825195313,-86.1695404052734,-157.646957397461,175.638214111328,-66.8460464477539, +-155.277725219727,171.720825195313,-62.6697387695313,-164.481628417969,180.29167175293,-66.0303649902344,-147.741973876953,164.719146728516,-69.5034103393555,-217.121780395508,127.265472412109,109.331718444824,-171.929351806641,130.162750244141,126.655418395996,-165.004669189453,127.298477172852,129.595703125,-208.220916748047,127.526496887207,117.142486572266,-192.00732421875,129.376678466797,124.506202697754,-180.183166503906,125.891334533691,132.135955810547,-106.496940612793,159.286605834961,31.2126636505127,-98.6705703735352,170.984756469727,23.0728645324707,-116.509422302246,138.394561767578,49.5111541748047,-95.1452255249023,177.700408935547,18.907356262207,-102.626564025879,182.096832275391,1.7874790430069,-112.025482177734,172.609924316406,1.54854500293732,-108.581146240234,170.021667480469,-7.27176904678345,-101.817481994629,164.325103759766,-15.6278266906738,-110.28231048584,173.269989013672,-1.2287369966507,-170.52522277832,189.639587402344,-81.0579376220703,-175.438690185547,191.815795898438,-83.6181869506836,-179.562103271484,193.553970336914,-88.3955535888672,-187.673904418945,192.362838745117,-92.3894500732422,-159.373123168945,177.932434082031,-68.7630310058594,-166.593826293945,183.678009033203,-71.5207061767578,-150.301239013672,170.233673095703,-74.3911895751953,-222.678329467773,123.317085266113,107.821571350098,-168.247985839844,127.963539123535,129.354675292969,-201.575256347656,126.244369506836,124.468200683594,-195.545669555664,125.500297546387,129.179656982422,-187.323852539063,120.910850524902,137.663497924805,-95.0232162475586,182.55387878418,13.6538419723511,-90.3971633911133,190.171630859375,4.37721300125122,-97.6059722900391,186.819305419922,-1.25732004642487,-106.352928161621,177.988433837891,-1.22681605815887,-105.242820739746,171.203765869141,-10.3106060028076,-101.803482055664,159.68864440918,-16.4218063354492,-93.213134765625,175.669204711914,-19.9356498718262,-108.690155029297,173.147964477539,-4.43540096282959,-167.525909423828,187.457366943359,-78.9994430541992,-186.240768432617,197.062316894531,-103.157104492188, +-155.89079284668,177.977447509766,-77.4791870117188,-162.179397583008,181.216766357422,-72.270378112793,-147.015914916992,164.986175537109,-75.4111862182617,-153.919586181641,180.116653442383,-89.2412414550781,-218.866958618164,123.972145080566,112.362014770508,-180.193161010742,122.076965332031,136.986419677734,-170.778244018555,121.322883605957,136.596389770508,-215.369613647461,123.304084777832,116.841453552246,-210.213119506836,123.668113708496,121.34489440918,-196.925796508789,122.729026794434,132.535995483398,-94.1023254394531,173.810028076172,21.7936401367188,-89.7864990234375,185.089141845703,13.342511177063,-90.2197494506836,188.157440185547,8.49271488189697,-91.3859634399414,191.110717773438,0.135174006223679,-102.73356628418,182.052841186523,-1.68381094932556,-103.762672424316,177.682403564453,-7.67641878128052,-97.4658584594727,175.509201049805,-16.1401767730713,-92.4617691040039,170.468704223633,-21.7180252075195,-105.359825134277,177.880432128906,-4.46590423583984,-172.131378173828,192.481857299805,-87.3317565917969,-165.729751586914,190.376663208008,-90.0217132568359,-175.896743774414,194.198028564453,-90.4124526977539,-183.350479125977,198.128402709961,-104.267211914063,-159.274108886719,181.574798583984,-78.5035858154297,-163.241500854492,183.723007202148,-76.3766784667969,-147.93701171875,169.904647827148,-84.3042602539063,-150.036209106445,174.950149536133,-89.3037490844727,-224.495498657227,119.106674194336,110.798858642578,-177.692916870117,118.807640075684,140.265747070313,-166.372802734375,119.114669799805,137.105438232422,-201.597259521484,122.652015686035,129.983734130859,-192.944412231445,118.119575500488,139.576690673828,-182.301361083984,118.173583984375,141.099838256836,-87.3550643920898,178.772521972656,19.2557907104492,-89.182243347168,181.356781005859,17.4001083374023,-80.385383605957,198.475448608398,-3.12206196784973,-101.549453735352,182.648895263672,-4.4222297668457,-90.2411499023438,192.855911254883,-6.01476621627808,-101.585464477539,177.50439453125,-10.8676614761353,-91.122932434082,162.452911376953,-23.5892086029053, +-84.4875869750977,180.036636352539,-26.3604793548584,-92.5225677490234,181.773803710938,-18.2878894805908,-168.565017700195,191.731781005859,-89.3994522094727,-163.685546875,186.628295898438,-83.2668533325195,-188.991027832031,199.486541748047,-112.878059387207,-156.90087890625,182.021835327148,-85.6004867553711,-152.458450317383,182.675903320313,-105.837364196777,-221.161178588867,119.556716918945,115.487319946289,-169.255081176758,115.547325134277,141.197830200195,-174.270584106445,115.997367858887,142.198944091797,-215.111587524414,118.714637756348,123.432098388672,-202.379333496094,118.981658935547,134.191146850586,-196.921798706055,114.073173522949,142.690994262695,-190.574172973633,111.776954650879,146.892395019531,-81.1017532348633,193.712982177734,5.64955711364746,-84.5360870361328,185.086135864258,15.0026741027832,-79.966438293457,196.651275634766,1.39322996139526,-85.2845611572266,196.313247680664,-5.71411609649658,-97.568962097168,186.667297363281,-4.87087297439575,-100.389343261719,182.5048828125,-7.68572902679443,-98.708381652832,177.503387451172,-13.9975681304932,-88.3130569458008,170.4296875,-24.870433807373,-96.0904235839844,182.188858032227,-14.0922775268555,-171.914352416992,195.310134887695,-97.2030181884766,-161.046295166016,186.702301025391,-88.9898147583008,-166.020782470703,193.510971069336,-100.224815368652,-180.052154541016,198.231430053711,-104.056190490723,-184.954620361328,201.497741699219,-113.693138122559,-147.185928344727,170.265670776367,-90.7588958740234,-156.535842895508,186.095230102539,-99.5099487304688,-150.773284912109,178.515487670898,-99.6747589111328,-154.876678466797,185.658187866211,-105.242309570313,-226.651718139648,114.703239440918,112.543037414551,-218.213897705078,117.190483093262,122.096969604492,-180.108154296875,110.159797668457,148.228515625,-166.019775390625,113.790153503418,141.021820068359,-183.103439331055,113.418113708496,145.621276855469,-81.1869659423828,190.252639770508,10.3532180786133,-72.9316558837891,202.212814331055,-3.51642107963562,-80.1817626953125,199.672561645508,-6.98273992538452, +-84.4899826049805,196.921295166016,-10.4428195953369,-96.1482238769531,187.229339599609,-7.67320823669434,-98.4990539550781,182.346862792969,-10.8824634552002,-85.5687866210938,164.531127929688,-27.0069427490234,-84.3818740844727,174.778121948242,-27.4394855499268,-84.6595993041992,184.647094726563,-24.6121063232422,-93.1037292480469,186.95832824707,-14.152382850647,-175.855743408203,198.584457397461,-106.354415893555,-161.665344238281,190.77668762207,-100.258819580078,-181.839324951172,201.303726196289,-112.372009277344,-190.034133911133,202.948883056641,-120.781829833984,-158.852081298828,188.532485961914,-100.290824890137,-148.556076049805,175.013153076172,-100.680862426758,-150.022201538086,179.864624023438,-109.494720458984,-154.059600830078,188.513473510742,-122.07795715332,-224.891540527344,113.269104003906,117.631530761719,-222.869354248047,112.316009521484,121.94295501709,-173.584518432617,109.0546875,147.542465209961,-166.069778442383,106.096397399902,145.955307006836,-217.552825927734,112.700050354004,128.543594360352,-194.192535400391,107.359519958496,150.194717407227,-199.522064208984,110.322807312012,145.428253173828,-82.1365509033203,181.902816772461,17.0243701934814,-75.6969223022461,195.966201782227,5.39718294143677,-79.3390808105469,186.264251708984,14.2544012069702,-70.2650833129883,201.878768920898,-0.754770994186401,-75.7219314575195,202.628845214844,-8.75547504425049,-91.6588821411133,191.283737182617,-9.61035823822021,-78.4548950195313,178.206451416016,-31.0866432189941,-74.0380630493164,188.769500732422,-31.5523872375488,-90.1905364990234,186.67529296875,-17.9994602203369,-94.9295043945313,187.10334777832,-10.9228658676147,-173.999557495117,200.705673217773,-115.088272094727,-171.274276733398,199.901596069336,-115.719329833984,-163.620529174805,195.864196777344,-116.373405456543,-177.882934570313,201.077697753906,-113.268096923828,-184.2265625,208.980484008789,-128.900619506836,-186.643798828125,206.181198120117,-124.05615234375,-158.698059082031,192.961898803711,-119.540710449219,-151.594360351563,184.916122436523,-121.344886779785, +-157.019897460938,192.377838134766,-123.612113952637,-228.62890625,107.848564147949,117.066474914551,-223.369400024414,107.269515991211,127.93953704834,-229.733016967773,108.350616455078,113.527130126953,-169.012069702148,108.796661376953,145.905288696289,-173.903549194336,105.210304260254,150.374740600586,-204.253524780273,113.718147277832,138.679595947266,-75.7547302246094,190.903701782227,10.8091630935669,-64.5562286376953,207.760360717773,-7.19416093826294,-70.6175231933594,206.118209838867,-10.2937049865723,-80.589599609375,199.900588989258,-10.5879325866699,-89.202751159668,191.660781860352,-14.2663946151733,-78.955940246582,171.633819580078,-31.2334575653076,-76.4719009399414,183.139938354492,-31.4825801849365,-80.2729721069336,191.568771362305,-25.0152473449707,-84.975227355957,191.330749511719,-20.4950046539307,-166.957870483398,198.074401855469,-116.932456970215,-160.189193725586,192.245849609375,-111.579925537109,-180.830230712891,205.230117797852,-121.485900878906,-189.178039550781,215.11506652832,-141.297836303711,-150.209228515625,182.114852905273,-119.621215820313,-150.296234130859,184.466079711914,-127.141456604004,-155.383728027344,193.654983520508,-132.571990966797,-227.215774536133,105.879379272461,122.676025390625,-170.647216796875,102.760070800781,150.495758056641,-221.217178344727,104.007194519043,134.085144042969,-217.297805786133,108.309616088867,133.701110839844,-204.692565917969,104.743263244629,147.497467041016,-72.9186553955078,195.181121826172,7.57841682434082,-69.9056549072266,198.84748840332,3.95555090904236,-64.8788604736328,204.520034790039,-1.44726800918579,-74.3223876953125,204.394027709961,-14.103178024292,-79.4706954956055,200.511657714844,-13.8848571777344,-84.5753936767578,196.243225097656,-14.295597076416,-64.9629669189453,188.773498535156,-37.8677062988281,-67.0832824707031,178.702514648438,-37.9531173706055,-68.928955078125,196.783294677734,-32.3837699890137,-87.4553756713867,191.413757324219,-17.4136028289795,-173.931564331055,204.054992675781,-124.235176086426,-177.262878417969,203.732955932617,-120.458801269531, +-168.910049438477,202.363830566406,-126.310371398926,-164.253601074219,198.299438476563,-123.026054382324,-182.272369384766,211.298706054688,-134.007125854492,-192.398361206055,211.04167175293,-136.500366210938,-160.355209350586,196.82829284668,-127.452484130859,-148.501052856445,179.846618652344,-123.562103271484,-158.741058349609,197.357330322266,-132.586990356445,-229.79801940918,101.669967651367,122.140975952148,-227.400787353516,101.623954772949,127.870529174805,-166.216796875,99.4942474365234,149.225631713867,-224.516494750977,101.920989990234,132.160949707031,-215.99967956543,103.29012298584,139.920715332031,-57.3035202026367,212.041778564453,-9.56082344055176,-65.21240234375,209.573532104492,-13.549524307251,-68.3711013793945,208.28141784668,-15.9538602828979,-81.3811798095703,195.989212036133,-20.4565010070801,-60.3705215454102,195.799179077148,-39.1686325073242,-75.5633163452148,195.924194335938,-26.8512287139893,-83.3321685791016,196.141220092773,-17.3808994293213,-179.502090454102,212.095779418945,-136.991409301758,-183.339477539063,215.442123413086,-141.508865356445,-186.32975769043,217.340301513672,-144.485153198242,-193.337448120117,213.856948852539,-142.70198059082,-151.775375366211,189.990615844727,-135.643295288086,-147.648971557617,180.085647583008,-131.154846191406,-156.638854980469,198.255416870117,-139.351638793945,-169.129089355469,96.8181915283203,152.687957763672,-56.2636184692383,209.454528808594,-4.88592481613159,-60.7551612854004,211.382705688477,-11.8070526123047,-72.319694519043,205.558135986328,-18.3259925842285,-78.358283996582,200.81169128418,-17.3878993988037,-59.6615524291992,184.165054321289,-42.2612380981445,-78.6784210205078,195.918197631836,-23.6130104064941,-59.6790542602539,201.304733276367,-37.2961502075195,-72.1408767700195,200.649673461914,-26.9456367492676,-56.2847213745117,191.825805664063,-43.2416343688965,-175.611709594727,208.845458984375,-133.149047851563,-172.207366943359,206.579254150391,-132.117950439453,-161.415313720703,200.041610717773,-133.221054077148,-189.843109130859,216.251693725586,-143.896591186523, +-148.672073364258,184.971130371094,-137.122436523438,-153.277526855469,195.674179077148,-142.860000610352,-230.19206237793,97.3714447021484,126.403396606445,-52.910888671875,213.28190612793,-8.4725456237793,-57.8125686645508,213.96696472168,-15.4928140640259,-62.5841407775879,211.586730957031,-17.1611785888672,-66.6938400268555,209.091491699219,-21.021656036377,-76.8838424682617,200.754669189453,-20.53000831604,-67.9137573242188,200.64567565918,-31.0625400543213,-55.190013885498,201.985794067383,-40.7588920593262,-74.8227386474609,200.716674804688,-23.6676158905029,-54.8119773864746,197.501342773438,-42.7396850585938,-167.080871582031,206.005187988281,-137.841506958008,-161.54833984375,203.767974853516,-141.35383605957,-175.902740478516,212.134780883789,-139.642669677734,-181.069244384766,216.724243164063,-144.444152832031,-181.883331298828,221.653717041016,-151.717864990234,-190.508178710938,217.388305664063,-146.495346069336,-149.167114257813,190.606674194336,-146.370330810547,-153.350524902344,199.257537841797,-148.958587646484,-156.493835449219,201.617767333984,-146.217315673828,-231.790222167969,96.0684585571289,122.470001220703,-53.7788734436035,215.567123413086,-13.8549537658691,-71.1962814331055,205.004089355469,-22.9510459899902,-53.6811676025391,186.098236083984,-45.1311187744141,-62.7780570983887,205.7431640625,-31.6549968719482,-55.9860916137695,205.976181030273,-37.8327026367188,-67.7921524047852,205.384124755859,-27.0843505859375,-46.808292388916,203.283935546875,-46.0311088562012,-171.883346557617,212.945877075195,-144.842193603516,-177.071868896484,215.404098510742,-144.61116027832,-185.6376953125,221.798721313477,-152.560943603516,-150.732284545898,196.685272216797,-151.684860229492,-49.684871673584,216.81623840332,-11.8953619003296,-55.4296379089355,215.970169067383,-19.1413726806641,-60.3846206665039,213.206893920898,-20.5724124908447,-64.3581161499023,210.034591674805,-24.2370700836182,-48.4823532104492,192.852905273438,-47.0620079040527,-47.774486541748,206.430236816406,-44.2790336608887,-167.871963500977,210.430618286133,-144.745178222656, +-162.928466796875,205.474136352539,-142.445953369141,-156.512847900391,204.809066772461,-151.052810668945,-178.697021484375,218.190383911133,-147.921478271484,-153.412536621094,203.897979736328,-155.328216552734,-51.050407409668,218.029357910156,-17.4897117614746,-48.6498718261719,186.265243530273,-47.2048225402832,-57.0426940917969,209.655532836914,-33.8573150634766,-62.6268424987793,210.012588500977,-27.1456565856934,-46.6854782104492,211.014678955078,-42.7125816345215,-35.0605430603027,213.372909545898,-51.1577072143555,-42.8549041748047,202.356842041016,-48.6800651550293,-161.443313598633,209.122497558594,-150.194717407227,-164.830657958984,213.48991394043,-152.270904541016,-169.449111938477,218.265396118164,-154.68115234375,-171.349304199219,221.504699707031,-157.739456176758,-178.025955200195,224.4169921875,-157.807464599609,-149.502166748047,204.245025634766,-164.019073486328,-46.5726661682129,219.763534545898,-15.2949953079224,-53.5319519042969,217.339294433594,-22.7835273742676,-58.6992568969727,214.108978271484,-23.8259315490723,-44.5360679626465,190.56867980957,-49.1428108215332,-60.2115058898926,209.947570800781,-30.1342487335205,-47.8120880126953,213.885971069336,-39.4782638549805,-38.5827865600586,214.473007202148,-47.8124809265137,-41.1842422485352,198.416442871094,-50.4177360534668,-158.654052734375,207.521347045898,-151.686859130859,-172.259384155273,224.98405456543,-161.899856567383,-151.529357910156,207.048294067383,-162.965957641602,-48.6183700561523,220.107574462891,-21.1427669525146,-54.9709930419922,214.653030395508,-30.2392597198486,-51.5466575622559,214.667037963867,-34.7300987243652,-57.0964012145996,214.436004638672,-26.9905414581299,-38.423770904541,218.539413452148,-45.3015365600586,-31.3166751861572,212.823852539063,-54.1401023864746,-31.4168834686279,219.531509399414,-51.3648262023926,-155.391723632813,212.102783203125,-162.439926147461,-154.973693847656,209.031478881836,-159.430618286133,-163.190490722656,216.347198486328,-158.100494384766,-165.65673828125,220.78564453125,-161.682846069336, +-165.408721923828,224.671020507813,-166.99836730957,-151.641357421875,210.794662475586,-166.774353027344,-44.116527557373,222.401794433594,-19.2691841125488,-51.496150970459,218.486404418945,-26.3125743865967,-39.4452705383301,195.400146484375,-51.5949516296387,-44.7305870056152,219.427505493164,-37.0315246582031,-41.0857315063477,219.967559814453,-41.0644226074219,-31.5374946594238,208.121398925781,-54.9129791259766,-155.921783447266,216.452209472656,-166.968368530273,-147.93701171875,213.009872436523,-176.117263793945,-46.1886291503906,221.963745117188,-24.8488292694092,-34.3220710754395,200.620651245117,-54.0582962036133,-37.3947715759277,191.060729980469,-52.2182121276855,-49.4177474975586,219.183486938477,-29.8809242248535,-47.2159309387207,219.392501831055,-33.5252799987793,-31.0881519317627,226.224166870117,-46.3927421569824,-32.5836982727051,226.971252441406,-43.4250526428223,-25.0921630859375,219.620513916016,-57.115592956543,-28.8006286621094,206.748260498047,-56.8849678039551,-151.442337036133,214.580032348633,-171.433792114258,-156.749862670898,219.328506469727,-169.317596435547,-158.46403503418,222.546798706055,-171.292785644531,-145.97981262207,205.247116088867,-172.833923339844,-41.4449691772461,224.83903503418,-22.831033706665,-31.6279048919678,195.899200439453,-55.3009185791016,-34.5113372802734,193.479965209961,-53.7595634460449,-36.5501861572266,226.889236450195,-37.2876510620117,-40.791202545166,224.68701171875,-32.9063186645508,-28.8109283447266,224.329986572266,-50.7700691223145,-34.1829528808594,227.200256347656,-40.6849822998047,-21.7902393341064,217.834350585938,-60.2769012451172,-22.8569469451904,225.727127075195,-56.2469100952148,-152.880477905273,220.296585083008,-175.350189208984,-145.692779541016,209.504516601563,-177.556396484375,-43.9527130126953,223.205871582031,-28.6637058258057,-27.7476253509521,200.599655151367,-57.5578384399414,-26.2302742004395,233.846923828125,-43.2644348144531,-24.5119075775146,231.320678710938,-49.7714767456055,-29.8374290466309,232.195755004883,-38.4922676086426, +-19.7085361480713,226.310165405273,-59.2648048400879,-21.2873916625977,210.883666992188,-61.2911987304688,-146.831893920898,215.606140136719,-182.302856445313,-150.036209106445,218.70344543457,-178.424468994141,-38.7479019165039,226.824234008789,-26.6954135894775,-33.5101890563965,230.432586669922,-33.2760581970215,-24.4562015533447,233.973937988281,-46.5978622436523,-22.6734275817871,231.11164855957,-52.6114501953125,-16.2768001556396,227.228256225586,-62.4973182678223,-17.9775676727295,233.556884765625,-57.12939453125,-24.4129962921143,205.21711730957,-59.5324287414551,-19.0672721862793,217.721328735352,-62.3514060974121,-143.897613525391,210.284606933594,-186.012222290039,-21.1728801727295,237.492263793945,-47.7228736877441,-17.1318836212158,214.723037719727,-63.8605537414551,-17.9097595214844,238.011337280273,-53.2537155151367,-13.6048383712769,224.117950439453,-65.8430480957031,-12.1345949172974,233.720901489258,-64.3824081420898,-11.6612482070923,219.979553222656,-67.7135314941406,-14.1156892776489,238.692398071289,-58.339714050293,-16.4929218292236,241.468673706055,-49.6327590942383,-12.4950294494629,228.754409790039,-65.9213562011719,-14.5009260177612,241.566665649414,-54.0638961791992,-6.80221223831177,224.379989624023,-71.6494140625,-8.95643329620361,228.883422851563,-69.3134841918945,-11.0294857025146,238.687393188477,-62.6386337280273,-11.4678287506104,242.983810424805,-57.7523574829102,-6.92899417877197,238.10432434082,-68.3501968383789,-6.14350700378418,234.414962768555,-70.9293441772461,-3.80117797851563,228.646392822266,-74.2783737182617,-8.06331634521484,242.598770141602,-63.3490028381348,-3.53472208976746,240.52458190918,-70.7141265869141,-5.03865909576416,243.20783996582,-66.4179077148438,-5.40402507781982,246.062103271484,-61.9384651184082,-0.696727991104126,233.422866821289,-76.7019119262695,6.35037708282471,231.262664794922,-83.3324584960938,0.00306800007820129,238.724395751953,-75.2509765625,4.15085077285767,237.351257324219,-79.904426574707,11.5959310531616,231.832717895508,-86.3228607177734, +7.82041120529175,234.849014282227,-83.4646759033203,-135.528793334961,-214.519027709961,146.555374145508,-140.387268066406,-214.752044677734,143.757095336914,-135.856811523438,-210.057586669922,143.319046020508,-135.690795898438,-222.31379699707,150.553756713867,-130.969345092773,-209.872573852539,145.643280029297,-142.456466674805,-219.729522705078,144.471160888672,-138.753112792969,-222.940856933594,148.420547485352,-132.031433105469,-221.5537109375,152.694961547852,-131.133361816406,-206.219207763672,141.419860839844,-130.072250366211,-218.42041015625,151.895889282227,-145.435760498047,-220.298583984375,142.032928466797,-136.163848876953,-227.566299438477,152.297927856445,-132.928527832031,-226.584197998047,154.145095825195,-127.643013000488,-208.180404663086,144.689193725586,-127.320976257324,-212.453811645508,148.75358581543,-144.570678710938,-224.723022460938,144.485153198242,-129.293182373047,-225.338073730469,155.224212646484,-127.830032348633,-221.024658203125,153.852081298828,-126.986946105957,-204.169006347656,139.502670288086,-125.828834533691,-216.58122253418,152.098907470703,-149.164108276367,-231.109649658203,141.890914916992,-139.77619934082,-231.600692749023,150.588760375977,-133.287551879883,-231.251663208008,154.555145263672,-129.779220581055,-228.454391479492,155.553237915039,-123.542610168457,-209.178497314453,146.327346801758,-122.891548156738,-204.533050537109,140.472778320313,-122.982559204102,-212.53483581543,149.600662231445,-124.611717224121,-200.658676147461,133.598083496094,-145.066711425781,-231.366668701172,145.836288452148,-136.681900024414,-231.532684326172,152.893981933594,-124.686721801758,-229.368469238281,156.16130065918,-122.683532714844,-222.192779541016,154.863174438477,-119.247192382813,-217.077270507813,152.330932617188,-148.544052124023,-235.404067993164,143.20002746582,-153.652557373047,-236.072128295898,136.964416503906,-144.89469909668,-235.993133544922,146.354339599609,-138.182052612305,-235.40007019043,151.930892944336,-134.200653076172,-235.664093017578,153.880081176758, +-127.555999755859,-233.24885559082,155.831268310547,-122.047470092773,-225.197067260742,155.776275634766,-118.135078430176,-208.045379638672,144.85319519043,-120.028266906738,-200.841690063477,135.008224487305,-113.841659545898,-212.466812133789,148.555572509766,-151.235336303711,-236.805206298828,140.366760253906,-140.963317871094,-237.580291748047,149.348648071289,-121.359397888184,-234.374969482422,155.936279296875,-119.798248291016,-229.567489624023,156.211318969727,-115.832855224609,-225.123062133789,154.889175415039,-117.151985168457,-220.569610595703,153.654052734375,-116.857955932617,-204.154006958008,139.791702270508,-119.857246398926,-198.134414672852,128.916625976563,-112.536529541016,-216.349197387695,150.68376159668,-149.263137817383,-238.638397216797,141.962905883789,-145.027725219727,-239.386459350586,144.793182373047,-137.744003295898,-239.17643737793,150.842788696289,-125.048759460449,-236.401168823242,155.485244750977,-113.767654418945,-208.887466430664,145.222229003906,-112.959571838379,-200.734664916992,133.158050537109,-112.339515686035,-196.474258422852,124.850242614746,-102.498550415039,-212.950866699219,144.806182861328,-149.257125854492,-240.26155090332,140.243743896484,-140.496276855469,-240.871612548828,147.101409912109,-131.867416381836,-239.074417114258,152.735961914063,-115.650833129883,-233.729904174805,155.598251342773,-123.36058807373,-238.729385375977,154.067108154297,-115.099784851074,-229.680511474609,155.541244506836,-110.318313598633,-220.880630493164,151.972885131836,-106.26692199707,-204.248016357422,136.761413574219,-105.905883789063,-208.695449829102,142.156921386719,-102.560554504395,-216.561218261719,146.961395263672,-144.252639770508,-242.012710571289,141.246856689453,-136.585891723633,-241.428649902344,148.459548950195,-117.136985778809,-237.54328918457,154.643157958984,-110.021286010742,-228.427383422852,153.833068847656,-110.129295349121,-224.289978027344,153.042999267578,-107.990089416504,-200.444641113281,131.733917236328,-111.586441040039,-198.546447753906,129.064651489258, +-108.806167602539,-193.669982910156,120.810844421387,-97.5644683837891,-217.619338989258,146.08332824707,-99.4749526977539,-208.845458984375,140.399765014648,-139.371170043945,-242.590774536133,143.292053222656,-129.664215087891,-241.468673706055,150.013702392578,-110.302314758301,-236.885208129883,153.990081787109,-107.184013366699,-234.225952148438,153.42204284668,-116.751953125,-240.298538208008,151.765869140625,-105.006797790527,-228.056350708008,151.622863769531,-102.322532653809,-220.624618530273,148.420547485352,-104.281723022461,-200.671661376953,131.849914550781,-108.343124389648,-196.276229858398,125.738327026367,-98.7042770385742,-221.870742797852,147.736480712891,-96.5640640258789,-213.139892578125,143.473068237305,-132.163452148438,-242.919799804688,145.242233276367,-121.556411743164,-241.072616577148,150.852783203125,-110.993385314941,-239.913513183594,152.056900024414,-101.458442687988,-204.442031860352,136.130340576172,-105.118804931641,-196.494262695313,126.967445373535,-105.291816711426,-192.206832885742,122.412994384766,-106.80997467041,-190.843704223633,118.826644897461,-92.2225494384766,-221.296676635742,146.386352539063,-92.5706787109375,-216.958251953125,145.131225585938,-95.2981414794922,-207.978378295898,139.015625,-120.426307678223,-242.33674621582,147.122421264648,-107.496040344238,-239.054428100586,152.099899291992,-110.010284423828,-241.615676879883,148.798583984375,-103.134613037109,-233.433868408203,152.120910644531,-100.280334472656,-228.560394287109,150.106704711914,-95.8320007324219,-204.65104675293,135.696304321289,-99.1623229980469,-200.771667480469,132.370986938477,-101.932495117188,-196.408248901367,127.889541625977,-104.598754882813,-187.679382324219,119.192687988281,-93.002815246582,-227.810317993164,148.418548583984,-90.6612854003906,-213.347900390625,143.01301574707,-89.4548721313477,-208.032379150391,139.135635375977,-103.289627075195,-237.844299316406,151.604858398438,-101.834487915039,-192.085830688477,124.618217468262,-86.8550186157227,-216.425216674805,143.38005065918, +-92.5012664794922,-204.248016357422,135.719299316406,-105.076805114746,-241.194641113281,148.951599121094,-97.8418960571289,-233.421875,150.89079284668,-94.5424652099609,-200.593658447266,132.446975708008,-98.7626876831055,-196.248229980469,128.789627075195,-97.1646270751953,-191.775802612305,126.857429504395,-101.630462646484,-187.727401733398,122.400993347168,-104.943786621094,-182.82991027832,115.780349731445,-83.5460891723633,-217.921340942383,142.700988769531,-83.0510482788086,-212.951873779297,140.372756958008,-88.3448638916016,-206.311218261719,137.464462280273,-98.178825378418,-239.943511962891,148.867599487305,-97.8066864013672,-236.71418762207,150.97380065918,-91.1355361938477,-232.7578125,148.922592163086,-94.7506866455078,-195.945190429688,129.669708251953,-97.5428619384766,-187.420364379883,125.219268798828,-102.32852935791,-183.547988891602,119.875755310059,-82.9545288085938,-223.349884033203,143.835098266602,-88.8740158081055,-200.602645874023,133.551086425781,-92.9857177734375,-236.975219726563,149.159606933594,-85.3085708618164,-232.124755859375,146.946395874023,-90.1476364135742,-187.511367797852,128.783630371094,-98.68017578125,-182.66389465332,123.348091125488,-101.358436584473,-178.964538574219,119.787742614746,-79.017448425293,-224.043960571289,142.400955200195,-79.4884948730469,-216.476211547852,140.922821044922,-83.066047668457,-207.544342041016,137.319458007813,-88.1150436401367,-236.565185546875,147.858489990234,-86.6527938842773,-195.711181640625,131.895935058594,-91.5835800170898,-191.666778564453,129.052642822266,-94.9545135498047,-182.779907226563,126.080352783203,-81.4852905273438,-230.230560302734,144.7841796875,-79.297477722168,-209.629531860352,138.386566162109,-83.452880859375,-201.180709838867,134.046127319336,-94.2464447021484,-240.354553222656,146.438354492188,-90.2632446289063,-239.904510498047,146.018310546875,-84.1427536010742,-234.973022460938,146.608367919922,-89.1522445678711,-182.440887451172,129.067642211914,-86.4729843139648,-191.180740356445,130.735809326172,-97.03271484375,-178.640502929688,124.424194335938, +-103.735664367676,-172.843933105469,116.142387390137,-75.9702529907227,-231.635711669922,142.790008544922,-76.3604888916016,-214.435012817383,139.274658203125,-86.6569976806641,-239.077423095703,145.889297485352,-80.4358901977539,-195.807174682617,132.429977416992,-85.6179962158203,-185.222137451172,130.385787963867,-93.5162658691406,-177.534393310547,127.146461486816,-101.12841796875,-172.588912963867,119.586723327637,-78.7979278564453,-235.691101074219,144.217147827148,-73.1500701904297,-226.736221313477,141.212829589844,-76.2422714233398,-208.286422729492,137.366470336914,-79.525993347168,-200.653671264648,134.121154785156,-82.6655044555664,-238.391357421875,144.93620300293,-82.8874282836914,-191.608764648438,131.482894897461,-86.2881622314453,-171.423797607422,131.767913818359,-88.6786956787109,-168.962554931641,130.899826049805,-96.6663818359375,-171.290786743164,124.559211730957,-105.929885864258,-161.492828369141,113.624137878418,-73.8050384521484,-236.498184204102,142.716995239258,-71.0579681396484,-232.527786254883,143.083023071289,-72.2278823852539,-217.669326782227,139.073638916016,-72.4777069091797,-213.515914916992,137.988525390625,-75.8799438476563,-200.207626342773,133.619110107422,-78.7048187255859,-191.135726928711,131.578903198242,-82.6348037719727,-180.913726806641,131.456893920898,-90.9695129394531,-163.270004272461,129.897735595703,-81.8405227661133,-186.850311279297,131.32487487793,-93.5940780639648,-157.791458129883,128.253570556641,-102.044509887695,-161.502822875977,118.807647705078,-69.807746887207,-224.689025878906,141.754898071289,-69.0674743652344,-219.273483276367,140.399765014648,-72.6113204956055,-207.060287475586,135.702301025391,-74.659423828125,-195.969192504883,132.070953369141,-82.6345977783203,-170.72673034668,133.11604309082,-89.16064453125,-158.245498657227,131.603912353516,-98.5343627929688,-156.719345092773,123.46410369873,-105.300819396973,-156.969375610352,115.139289855957,-70.6529235839844,-237.453262329102,143.279052734375,-68.5270156860352,-228.312362670898,145.034210205078, +-68.2478942871094,-214.873062133789,138.827606201172,-69.6021270751953,-212.49983215332,137.067443847656,-70.5497207641602,-202.878875732422,133.565093994141,-70.193489074707,-187.895416259766,130.998840332031,-76.0373611450195,-186.976318359375,131.436889648438,-78.2657699584961,-181.442779541016,131.848922729492,-82.5960006713867,-161.547821044922,134.338165283203,-85.8032150268555,-158.780563354492,133.505081176758,-94.1188278198242,-150.771774291992,128.532592773438,-68.7116394042969,-234.59098815918,145.471267700195,-65.5561294555664,-222.991851806641,148.144515991211,-67.1578903198242,-219.097473144531,143.06901550293,-65.5273284912109,-213.880966186523,141.253845214844,-67.7650451660156,-206.102203369141,134.303161621094,-66.4941177368164,-200.676666259766,132.546997070313,-68.4454116821289,-193.843994140625,131.273880004883,-79.3838882446289,-171.939849853516,133.399078369141,-86.0938415527344,-150.298721313477,134.862228393555,-89.8193130493164,-144.985198974609,132.921020507813,-100.608360290527,-151.894882202148,122.009956359863,-68.4110107421875,-239.205444335938,144.505157470703,-65.6914443969727,-227.123260498047,148.945602416992,-64.6160354614258,-218.411407470703,147.285430908203,-65.4020156860352,-209.412521362305,136.411376953125,-70.6525268554688,-182.539886474609,131.167861938477,-65.0430755615234,-187.357360839844,129.843719482422,-79.4160842895508,-162.880966186523,134.794204711914,-82.3422775268555,-152.013885498047,136.261367797852,-76.3911895751953,-174.632110595703,133.003036499023,-97.1775283813477,-147.839477539063,126.39338684082,-92.1117324829102,-141.914901733398,131.943939208984,-66.3509063720703,-236.619186401367,147.825485229492,-64.0882873535156,-231.698699951172,151.109817504883,-59.4315299987793,-222.483810424805,155.175216674805,-60.0757904052734,-227.130264282227,155.73127746582,-64.213996887207,-214.34001159668,144.457153320313,-62.0240821838379,-206.442230224609,137.108444213867,-63.4637222290039,-204.059997558594,134.214141845703,-64.4365234375,-196.831283569336,131.183853149414, +-66.4613189697266,-181.298767089844,130.458786010742,-62.146598815918,-191.659790039063,129.442687988281,-71.5831146240234,-177.540390014648,132.025939941406,-76.1830673217773,-164.835159301758,134.809204101563,-83.7272033691406,-141.285842895508,136.413375854492,-101.758476257324,-147.255432128906,122.621017456055,-88.4615707397461,-138.425567626953,134.85221862793,-104.650756835938,-147.157424926758,119.981758117676,-65.2416000366211,-240.35856628418,145.826293945313,-60.8801727294922,-231.486694335938,155.166213989258,-57.922679901123,-218.361389160156,154.794174194336,-61.9751777648926,-214.328994750977,147.896484375,-61.1136932373047,-209.904571533203,144.902206420898,-58.856071472168,-206.019180297852,143.041015625,-63.1403923034668,-200.366638183594,132.445983886719,-56.7508659362793,-187.316360473633,127.190467834473,-62.2642097473145,-182.901931762695,128.988647460938,-77.8459320068359,-154.988189697266,136.973419189453,-71.607421875,-168.885559082031,134.012130737305,-77.452995300293,-150.091705322266,137.750503540039,-95.4667587280273,-141.347854614258,129.922744750977,-98.7332763671875,-142.310943603516,127.540504455566,-91.7528915405273,-136.04133605957,134.23616027832,-63.2955093383789,-237.721298217773,150.262725830078,-60.97998046875,-235.738098144531,154.444137573242,-55.3154258728027,-222.388793945313,162.579940795898,-58.5932464599609,-233.374877929688,158.427536010742,-59.7487602233887,-201.903793334961,134.637191772461,-57.8038711547852,-202.180801391602,137.792495727539,-59.3550224304199,-195.471145629883,130.109756469727,-60.3810234069824,-199.354537963867,132.051956176758,-64.1146926879883,-169.382598876953,132.169952392578,-57.2184143066406,-191.653778076172,128.384582519531,-62.6475448608398,-179.071548461914,129.638702392578,-71.6740341186523,-155.792251586914,137.590484619141,-72.9193572998047,-163.832046508789,135.313262939453,-76.6249160766602,-141.988922119141,138.501571655273,-83.6646041870117,-136.548385620117,137.302459716797,-87.2066497802734,-131.744903564453,137.924514770508,-60.8647727966309,-241.218643188477,148.266540527344, +-55.5952529907227,-226.470184326172,163.085983276367,-55.8692779541016,-213.690933227539,153.643051147461,-53.9002876281738,-218.1923828125,161.815872192383,-58.5219383239746,-210.515625,148.662567138672,-56.6721611022949,-206.021194458008,146.12532043457,-54.921688079834,-201.873779296875,142.713989257813,-53.1999206542969,-190.830688476563,127.822532653809,-53.2967262268066,-183.122940063477,125.587310791016,-73.2040786743164,-153.348022460938,137.946517944336,-64.3815155029297,-164.144088745117,133.778121948242,-69.6354293823242,-162.183898925781,135.68229675293,-100.91039276123,-134.208160400391,130.933822631836,-102.085510253906,-137.262451171875,128.564605712891,-89.7883987426758,-127.428489685059,138.942626953125,-105.812873840332,-137.818496704102,125.859329223633,-60.2311058044434,-239.579483032227,152.30793762207,-58.4288330078125,-238.196350097656,156.344329833984,-53.2207183837891,-222.606826782227,164.992172241211,-52.8730850219727,-214.127975463867,159.224609375,-55.328125,-232.043731689453,163.135986328125,-54.9931945800781,-198.15641784668,135.096237182617,-51.6571655273438,-197.199310302734,139.384674072266,-55.4328384399414,-194.589080810547,129.969741821289,-56.8663787841797,-198.000411987305,132.385986328125,-59.3907279968262,-170.971755981445,130.028747558594,-51.6252632141113,-187.535369873047,125.760322570801,-48.5333633422852,-178.055435180664,124.220176696777,-69.4066009521484,-146.719375610352,138.840606689453,-59.3226203918457,-162.822967529297,132.288970947266,-72.6015167236328,-142.884002685547,138.964614868164,-81.0482482910156,-134.497177124023,138.447570800781,-95.7810897827148,-128.485595703125,135.964324951172,-86.4180755615234,-124.032150268555,140.645782470703,-108.756164550781,-138.037536621094,124.10816192627,-57.4856414794922,-241.798690795898,149.746673583984,-56.6868591308594,-235.501068115234,160.353713989258,-53.343132019043,-228.208374023438,166.103271484375,-53.3941383361816,-208.990478515625,151.774871826172,-51.7476768493652,-210.022583007813,154.800186157227,-50.5892601013184,-213.88996887207,161.986877441406, +-50.7984848022461,-218.37939453125,165.342193603516,-53.548454284668,-204.20100402832,147.236434936523,-49.1385192871094,-198.258422851563,143.750091552734,-52.5022506713867,-172.478912353516,126.665420532227,-48.9668045043945,-190.055633544922,127.704513549805,-52.0023002624512,-193.929000854492,131.325881958008,-46.6760787963867,-183.032928466797,123.487106323242,-65.8508605957031,-156.1123046875,136.980422973633,-66.7809524536133,-148.826583862305,138.398559570313,-63.1108894348145,-155.655258178711,136.379364013672,-78.2200698852539,-132.960037231445,138.979629516602,-102.366539001465,-127.596504211426,132.580993652344,-97.488655090332,-119.971755981445,138.564575195313,-89.6014862060547,-123.697120666504,140.098724365234,-105.792877197266,-131.505889892578,128.678619384766,-57.1384048461914,-240.926605224609,153.759078979492,-55.4826431274414,-239.292449951172,158.649551391602,-51.0658111572266,-226.578201293945,167.734451293945,-49.760082244873,-210.286605834961,158.689559936523,-49.9737014770508,-222.172775268555,167.533416748047,-51.8036842346191,-234.890014648438,166.490325927734,-53.8954887390137,-237.58528137207,162.37890625,-49.0615119934082,-193.987014770508,136.274368286133,-46.2971420288086,-193.75798034668,139.267654418945,-53.1470108032227,-162.690948486328,129.198654174805,-56.3087196350098,-161.4658203125,131.160858154297,-45.6246757507324,-186.66828918457,125.111267089844,-43.8209991455078,-178.307464599609,122.378997802734,-44.477367401123,-169.629623413086,123.937149047852,-65.3045043945313,-136.972427368164,138.790603637695,-68.7834396362305,-132.55598449707,139.081634521484,-60.1683044433594,-152.931991577148,135.883316040039,-82.2566604614258,-126.282371520996,140.053726196289,-98.9107971191406,-122.63801574707,136.929428100586,-86.4576797485352,-118.363594055176,141.425872802734,-108.941177368164,-128.768615722656,128.994644165039,-112.310516357422,-132.093933105469,126.701416015625,-54.5200462341309,-242.227737426758,148.862594604492,-50.4893531799316,-231.289657592773,168.162475585938,-49.2527313232422,-205.531143188477,151.482849121094, +-46.8624000549316,-205.68115234375,154.75016784668,-46.7761917114258,-211.642730712891,163.609039306641,-45.6282768249512,-217.672332763672,167.975463867188,-41.6269836425781,-193.565963745117,142.441955566406,-44.6010780334473,-158.871566772461,126.401382446289,-57.4601364135742,-153.065994262695,134.225143432617,-46.4509544372559,-190.021621704102,129.492691040039,-42.6649856567383,-182.676895141602,122.616020202637,-63.2517051696777,-149.702667236328,137.579483032227,-61.6147422790527,-139.334655761719,137.963531494141,-74.7334289550781,-125.04125213623,139.536682128906,-80.8099212646484,-115.842353820801,142.024932861328,-105.883880615234,-127.215469360352,130.898834228516,-102.405540466309,-123.631118774414,134.963226318359,-101.932495117188,-119.054664611816,138.113525390625,-95.4149475097656,-117.69953918457,139.701705932617,-92.2747497558594,-115.464317321777,140.427764892578,-52.7348747253418,-241.525665283203,156.14729309082,-52.2151222229004,-240.534576416016,160.198699951172,-45.3982543945313,-227.275283813477,171.049758911133,-45.8609008789063,-231.838714599609,170.929748535156,-39.8174095153809,-201.897796630859,158.526550292969,-43.3865585327148,-205.642150878906,159.848663330078,-42.9907150268555,-222.548797607422,171.402801513672,-49.9435005187988,-238.938400268555,165.367202758789,-44.1708335876465,-197.504348754883,145.979309082031,-44.1531295776367,-190.062637329102,132.460983276367,-40.6824913024902,-189.969619750977,135.213256835938,-47.1166229248047,-150.411743164063,128.595596313477,-50.9679985046387,-153.902069091797,129.720718383789,-41.7911033630371,-186.110229492188,125.68132019043,-40.5981826782227,-166.533309936523,123.166076660156,-40.442569732666,-178.692520141602,121.434906005859,-40.5274772644043,-155.723251342773,125.514305114746,-59.7383613586426,-129.399673461914,138.789611816406,-63.1988983154297,-128.408584594727,139.395660400391,-54.6404571533203,-143.29704284668,134.386169433594,-58.4519348144531,-141.354858398438,136.714385986328,-71.5560150146484,-121.728927612305,139.846710205078, +-75.8975448608398,-119.098670959473,140.576782226563,-75.683219909668,-109.346710205078,142.729995727539,-105.784873962402,-124.423194885254,133.36506652832,-98.1917266845703,-114.323196411133,140.295745849609,-85.568489074707,-111.280899047852,141.949905395508,-109.783264160156,-124.421188354492,132.415985107422,-112.448524475098,-128.29557800293,129.161666870117,-49.8382873535156,-242.142730712891,151.680877685547,-39.4542694091797,-197.201324462891,149.937683105469,-36.8581161499023,-197.252334594727,153.355026245117,-45.2553405761719,-213.705932617188,166.039276123047,-43.0641250610352,-209.27751159668,164.146087646484,-39.9496192932129,-217.120269775391,170.422698974609,-46.6667785644531,-238.133331298828,169.167587280273,-44.7491874694824,-235.431076049805,171.564804077148,-35.6380996704102,-189.887603759766,137.879516601563,-43.6697845458984,-147.739486694336,127.873527526855,-38.6848983764648,-182.251846313477,122.529014587402,-40.5678787231445,-146.461364746094,127.260475158691,-56.6558609008789,-130.885833740234,137.843521118164,-63.9010696411133,-122.095962524414,139.978713989258,-78.854133605957,-106.227409362793,143.467071533203,-106.307922363281,-121.013854980469,136.666397094727,-101.729476928711,-114.078178405762,141.106842041016,-94.9770126342773,-109.533737182617,140.929824829102,-82.4809875488281,-110.01978302002,142.667984008789,-88.7919998168945,-109.312713623047,141.179840087891,-117.618034362793,-122.758033752441,133.772125244141,-49.1996269226074,-241.918716430664,156.607345581055,-48.1736297607422,-241.039627075195,162.381912231445,-42.4851684570313,-226.061157226563,173.041961669922,-39.9372177124023,-230.988632202148,176.076248168945,-38.302360534668,-203.075897216797,161.834869384766,-35.0232391357422,-198.471450805664,158.562545776367,-41.4622688293457,-213.658935546875,167.757446289063,-36.9404258728027,-222.554809570313,176.025253295898,-45.9053039550781,-240.097534179688,166.965362548828,-38.4276695251465,-185.929214477539,126.993446350098,-38.0191307067871,-193.613967895508,144.984222412109, +-33.2822685241699,-186.107238769531,130.738815307617,-47.1512260437012,-134.186157226563,132.27197265625,-50.6011657714844,-134.56217956543,134.078155517578,-37.4553756713867,-164.27409362793,123.418098449707,-37.3261642456055,-177.876419067383,121.778938293457,-37.2993583679199,-150.758773803711,126.178367614746,-59.9761848449707,-120.042762756348,139.664688110352,-53.4677467346191,-131.479873657227,136.385360717773,-64.0703811645508,-111.354911804199,139.848709106445,-72.0374603271484,-116.052375793457,140.312759399414,-72.6357269287109,-100.231819152832,143.132034301758,-111.448425292969,-121.567909240723,135.360275268555,-108.479133605957,-117.858551025391,139.448669433594,-104.812774658203,-114.254188537598,141.715896606445,-98.4951553344727,-109.041679382324,142.430953979492,-92.1406326293945,-105.809371948242,140.90380859375,-81.9831390380859,-104.515235900879,143.083023071289,-88.4209747314453,-103.793167114258,141.158828735352,-45.368049621582,-241.981704711914,157.773468017578,-35.1462516784668,-193.243942260742,147.219436645508,-31.6949100494385,-194.219024658203,152.802978515625,-40.104434967041,-208.125396728516,165.312194824219,-37.4428749084473,-217.886352539063,172.582916259766,-36.3062629699707,-208.188400268555,166.855346679688,-43.5962791442871,-239.066421508789,170.232696533203,-40.6911926269531,-234.690994262695,175.078155517578,-32.2656669616699,-189.796600341797,140.137725830078,-30.1312580108643,-185.564193725586,132.685012817383,-40.5942840576172,-131.330856323242,131.067840576172,-44.0555229187012,-126.932434082031,132.642990112305,-34.6420021057129,-181.902816772461,124.14217376709,-37.3067588806152,-138.544586181641,129.347671508789,-56.4625358581543,-116.290397644043,138.957626342773,-69.3994064331055,-101.003898620605,142.689987182617,-76.8040313720703,-99.1003112792969,143.084014892578,-101.564460754395,-109.432723999023,143.593078613281,-95.3967514038086,-104.544242858887,142.169937133789,-119.806243896484,-114.362205505371,139.346649169922,-39.7356986999512,-242.0537109375,150.02571105957, +-44.2039375305176,-241.593688964844,162.880966186523,-37.9682235717773,-226.732223510742,176.899337768555,-34.0099411010742,-201.893783569336,163.730041503906,-30.7023124694824,-197.549362182617,160.424728393555,-33.4905853271484,-210.150604248047,168.617523193359,-34.4938850402832,-218.117370605469,174.819137573242,-40.9389190673828,-240.735595703125,168.733535766602,-40.9059143066406,-238.248352050781,173.004959106445,-37.0846405029297,-231.813720703125,177.558410644531,-30.6009044647217,-181.963836669922,128.199569702148,-46.703182220459,-122.434997558594,134.212142944336,-49.8404884338379,-126.104362487793,135.023239135742,-34.8645248413086,-177.775421142578,123.153076171875,-34.4978866577148,-163.071975708008,124.839233398438,-34.0205383300781,-149.420654296875,127.871528625488,-50.9769973754883,-116.76944732666,136.57438659668,-58.5591430664063,-107.314514160156,139.294647216797,-63.3991203308105,-105.564346313477,140.314758300781,-70.3932037353516,-95.2177276611328,143.763092041016,-73.0128631591797,-94.7915954589844,143.23503112793,-116.594932556152,-119.004661560059,136.936416625977,-108.967185974121,-114.118186950684,141.688888549805,-105.070808410645,-109.03067779541,144.239135742188,-99.0779190063477,-103.415130615234,144.729187011719,-91.7536926269531,-100.674865722656,141.198837280273,-82.4332885742188,-100.157814025879,142.312942504883,-37.5396842956543,-241.906707763672,164.574127197266,-34.7407073974609,-226.683212280273,178.07844543457,-31.8153228759766,-191.462768554688,145.690277099609,-27.9957485198975,-194.182022094727,155.001190185547,-30.9247360229492,-210.38362121582,169.934661865234,-33.2513618469238,-222.18977355957,177.458389282227,-31.0326461791992,-214.715042114258,173.902038574219,-28.6432113647461,-201.693756103516,165.888259887695,-37.5160827636719,-236.901214599609,176.023254394531,-27.3701877593994,-186.052230834961,136.007339477539,-28.2703742980957,-181.302764892578,131.189865112305,-37.4096717834473,-132.488983154297,131.214859008789,-40.8901100158691,-123.654113769531,132.981048583984, +-43.7828979492188,-119.703727722168,134.011138916016,-32.1867599487305,-177.556396484375,125.711326599121,-34.2040596008301,-139.089630126953,130.830825805664,-49.773380279541,-107.835563659668,137.102432250977,-60.0706901550293,-103.174110412598,139.871719360352,-64.0586853027344,-100.053802490234,141.967910766602,-65.7935485839844,-90.3629608154297,145.133239746094,-76.8644332885742,-95.594367980957,142.414962768555,-101.52645111084,-104.823272705078,145.259231567383,-95.3999481201172,-96.7263793945313,143.927108764648,-82.7085113525391,-95.2470321655273,140.960815429688,-87.8901214599609,-98.7218704223633,140.536773681641,-119.698234558105,-109.140693664551,141.888916015625,-29.5565013885498,-242.134719848633,153.074005126953,-27.6148109436035,-190.336639404297,144.550170898438,-27.5983104705811,-197.616363525391,161.709854125977,-28.9570426940918,-208.651443481445,170.047668457031,-31.9418354034424,-218.664428710938,176.581314086914,-37.0077323913574,-239.739501953125,173.444000244141,-33.6030960083008,-235.033020019531,177.925430297852,-37.5597877502441,-123.624114990234,133.978134155273,-44.0990257263184,-112.100982666016,135.574279785156,-31.3791809082031,-152.630950927734,129.632705688477,-31.1939601898193,-142.982009887695,132.619995117188,-47.2190322875977,-108.576644897461,136.557373046875,-51.0769119262695,-99.4059448242188,137.644485473633,-54.8582801818848,-98.4032440185547,138.872604370117,-72.7539367675781,-86.4989776611328,144.62516784668,-69.563720703125,-85.6953964233398,145.538269042969,-75.7345275878906,-90.9941177368164,142.610977172852,-108.098091125488,-106.484436035156,144.782180786133,-104.72876739502,-103.652153015137,145.814300537109,-102.341529846191,-100.546852111816,146.066329956055,-90.27685546875,-93.6865768432617,141.593887329102,-98.4152450561523,-95.7014770507813,145.543258666992,-88.7554016113281,-95.8331909179688,140.662796020508,-27.7311210632324,-241.851699829102,166.890350341797,-35.0060348510742,-241.28564453125,170.266693115234,-32.0624504089355,-231.588684082031,178.859527587891, +-30.6306076049805,-227.091247558594,178.882522583008,-24.6655216217041,-193.411956787109,153.016998291016,-30.1332588195801,-221.919738769531,178.252471923828,-28.588207244873,-218.042358398438,177.287368774414,-22.336893081665,-201.731781005859,168.692535400391,-34.7675132751465,-237.675277709961,176.630310058594,-24.8181381225586,-182.231857299805,136.043334960938,-24.7154273986816,-186.873306274414,138.787612915039,-27.5191020965576,-176.025238037109,132.454986572266,-34.1962547302246,-132.365966796875,133.599090576172,-40.5769805908203,-118.560623168945,134.393173217773,-31.8123226165771,-166.080276489258,127.073455810547,-31.1333560943604,-135.779312133789,136.216354370117,-47.1478233337402,-101.575958251953,137.115432739258,-59.132999420166,-97.4883499145508,140.975814819336,-63.1859970092773,-91.8945999145508,144.300140380859,-66.2477951049805,-85.4128723144531,145.774291992188,-79.3836898803711,-91.5471725463867,141.205841064453,-113.841659545898,-109.139694213867,142.606979370117,-94.4667587280273,-90.5268707275391,145.154235839844,-85.199348449707,-91.6932907104492,140.575775146484,-117.441009521484,-100.286827087402,145.63427734375,-24.4646034240723,-197.574356079102,162.335906982422,-23.7626342773438,-189.623580932617,143.690078735352,-27.246675491333,-214.020965576172,175.495208740234,-23.9486522674561,-208.010391235352,172.983947753906,-31.964937210083,-238.996429443359,175.434188842773,-25.4300975799561,-236.470184326172,178.384475708008,-34.8732223510742,-124.480201721191,135.927322387695,-37.202751159668,-119.008666992188,136.557373046875,-40.5899848937988,-113.427116394043,136.085327148438,-43.8014984130859,-105.652351379395,137.29345703125,-29.4820957183838,-152.388931274414,132.327972412109,-28.6686153411865,-136.580383300781,140.16374206543,-47.2040328979492,-96.9607009887695,137.739501953125,-50.2842330932617,-93.9484100341797,138.126541137695,-53.9474906921387,-91.0989227294922,139.747695922852,-63.1133880615234,-86.7049026489258,145.195236206055,-72.6648254394531,-80.3773727416992,144.852203369141, +-78.7095184326172,-83.7030029296875,142.154922485352,-66.5317306518555,-78.5110931396484,145.862289428711,-111.087394714355,-96.5356597900391,146.375350952148,-111.040382385254,-101.932983398438,145.353240966797,-102.302528381348,-95.2827377319336,146.244338989258,-85.8054122924805,-82.3328704833984,142.9990234375,-98.2502365112305,-90.6221771240234,146.375350952148,-82.60009765625,-90.8238067626953,140.343765258789,-114.157691955566,-101.839981079102,144.937194824219,-123.098564147949,-99.060302734375,147.417449951172,-24.3475914001465,-240.956604003906,172.294891357422,-24.250581741333,-232.719818115234,179.446594238281,-26.5646095275879,-225.618103027344,179.03955078125,-20.8977546691895,-194.169021606445,155.401229858398,-21.1442775726318,-190.12663269043,146.526351928711,-25.3411884307861,-220.931655883789,178.526504516602,-23.0652656555176,-214.807052612305,177.381393432617,-21.239185333252,-205.433120727539,172.263885498047,-21.2514877319336,-198.388442993164,164.487121582031,-26.4044914245605,-239.3564453125,175.747222900391,-22.0234622955322,-185.696197509766,140.504776000977,-23.425500869751,-176.299270629883,138.734588623047,-28.7451229095459,-166.806335449219,131.153854370117,-26.4235954284668,-149.32763671875,137.762496948242,-26.5332050323486,-143.548065185547,139.90771484375,-33.3105697631836,-124.806228637695,138.064529418945,-43.9752159118652,-100.15380859375,138.639587402344,-60.2720108032227,-89.0396270751953,143.666076660156,-69.8229522705078,-76.1334609985352,145.442260742188,-62.9963760375977,-82.9940338134766,145.393249511719,-85.6222991943359,-86.5445861816406,141.695877075195,-90.9321136474609,-81.9807357788086,145.9453125,-94.9037017822266,-82.6274948120117,147.665481567383,-114.703742980957,-95.1661224365234,147.090408325195,-120.349296569824,-94.7082748413086,148.906600952148,-20.7577381134033,-241.835693359375,168.356506347656,-22.7883396148682,-212.23779296875,176.259262084961,-17.9963703155518,-201.694763183594,169.058563232422,-21.0486698150635,-235.965118408203,178.750518798828,-21.0049629211426,-180.875732421875,141.452865600586, +-39.6097831726074,-109.108688354492,139.360656738281,-26.3622875213623,-155.845275878906,136.436370849609,-25.3821926116943,-136.887405395508,146.186325073242,-28.7937278747559,-128.608596801758,145.05322265625,-40.9195137023926,-104.385231018066,140.37776184082,-47.3194427490234,-89.5672760009766,138.801605224609,-44.0478248596191,-95.6712799072266,139.93571472168,-50.247730255127,-83.3304672241211,139.413665771484,-56.3761291503906,-83.1306457519531,141.893905639648,-73.620719909668,-66.6197280883789,143.230041503906,-79.1601638793945,-77.6045074462891,141.972915649414,-63.5501365661621,-78.0971527099609,144.973205566406,-66.7484436035156,-73.5397109985352,145.058212280273,-81.9840393066406,-82.4261779785156,141.721893310547,-102.777572631836,-90.8179016113281,146.8583984375,-83.3507766723633,-77.5191955566406,142.319961547852,-99.7960891723633,-81.8410186767578,149.38264465332,-124.915740966797,-94.7275848388672,148.594573974609,-127.11296081543,-100.091812133789,146.343338012695,-17.1498851776123,-240.230545043945,173.164978027344,-19.6619319915771,-238.220352172852,176.899337768555,-19.7439384460449,-232.37077331543,178.920547485352,-19.5782241821289,-221.065673828125,178.4384765625,-16.6006317138672,-197.122314453125,161.469818115234,-17.9605655670166,-189.872604370117,148.196517944336,-18.7203407287598,-185.801208496094,144.297134399414,-20.4676094055176,-215.509124755859,177.618408203125,-17.8151512145996,-206.376220703125,173.550003051758,-17.5324230194092,-180.650695800781,146.466354370117,-23.7610340118408,-168.130477905273,138.684585571289,-34.4408798217773,-117.963562011719,141.577880859375,-21.1144752502441,-154.112106323242,143.544067382813,-22.2307834625244,-149.599670410156,143.358047485352,-19.374002456665,-148.434539794922,148.192520141602,-31.6980113983154,-120.094772338867,144.900207519531,-41.0655288696289,-100.429840087891,142.104934692383,-53.3359298706055,-82.214958190918,140.539779663086,-69.5106201171875,-68.4743041992188,144.624176025391,-75.5616073608398,-71.1632766723633,142.830001831055, +-59.4783325195313,-77.1343612670898,143.133041381836,-107.076995849609,-89.8736038208008,147.28742980957,-89.8663101196289,-77.9809417724609,145.935302734375,-97.1945266723633,-77.058952331543,149.416641235352,-110.977378845215,-90.9292144775391,147.45344543457,-117.392013549805,-90.3448486328125,149.406646728516,-124.530708312988,-91.0326156616211,149.217636108398,-17.5883293151855,-193.098922729492,153.211013793945,-17.4903182983398,-209.307510375977,175.177169799805,-12.2382040023804,-205.014099121094,171.840835571289,-10.7485580444336,-201.566741943359,167.634429931641,-17.2726974487305,-234.736999511719,178.297485351563,-14.5603322982788,-175.728210449219,152.054901123047,-19.4861145019531,-167.347396850586,144.715179443359,-35.8429183959961,-109.112693786621,146.764389038086,-38.2769546508789,-104.522239685059,145.286254882813,-20.7467384338379,-159.035583496094,143.43505859375,-14.6958456039429,-148.244522094727,156.122299194336,-24.1084671020508,-130.477783203125,151.709869384766,-26.8607368469238,-122.347984313965,151.350830078125,-44.0235214233398,-90.391357421875,141.291854858398,-47.0187149047852,-82.179557800293,140.257751464844,-41.0676307678223,-95.8263931274414,144.312133789063,-50.4425506591797,-78.1777572631836,141.044815063477,-55.1340065002441,-77.4054870605469,141.894912719727,-69.8233489990234,-60.339412689209,144.172119140625,-75.2796859741211,-59.9574737548828,142.013931274414,-79.717414855957,-72.5207138061523,141.428863525391,-62.7427558898926,-72.5705108642578,143.729095458984,-65.4356155395508,-68.4139099121094,144.413162231445,-91.483268737793,-72.8458404541016,146.412353515625,-103.164611816406,-76.3090744018555,151.113815307617,-120.997360229492,-88.5601806640625,149.981704711914,-129.79621887207,-94.7191848754883,146.750381469727,-13.9357709884644,-237.649291992188,176.217269897461,-16.4441165924072,-227.247268676758,178.168472290039,-14.9193668365479,-217.366302490234,177.110366821289,-14.6888446807861,-194.035018920898,155.657257080078,-15.121187210083,-185.722198486328,148.176528930664, +-15.3823118209839,-190.212646484375,149.924697875977,-14.5326290130615,-211.509719848633,175.667221069336,-11.0031843185425,-209.8515625,174.377090454102,-11.129096031189,-197.239334106445,160.700759887695,-13.3090085983276,-180.358673095703,152.310928344727,-17.4541645050049,-158.34001159668,148.505554199219,-20.4701118469238,-136.436370849609,154.511154174805,-17.3019008636475,-151.141815185547,150.429748535156,-28.2391719818115,-117.125473022461,152.69596862793,-35.6764984130859,-103.146110534668,150.930801391602,-35.0838432312012,-98.3949432373047,155.102203369141,-67.0133743286133,-63.7505493164063,144.844207763672,-78.8953323364258,-68.1920852661133,141.711898803711,-82.1844635009766,-71.4502029418945,141.360855102539,-59.8540725708008,-73.1013641357422,142.998016357422,-106.755966186523,-81.0540390014648,150.5927734375,-111.138389587402,-81.4990844726563,150.377731323242,-85.8728179931641,-72.6448211669922,143.042022705078,-97.8023910522461,-72.633918762207,149.485641479492,-114.359710693359,-86.2054443359375,149.542663574219,-115.566825866699,-82.3725738525391,150.39973449707,-130.573303222656,-83.8790130615234,147.07341003418,-123.868644714355,-84.6063919067383,149.62565612793,-6.86504793167114,-206.230209350586,171.021759033203,-5.43787813186646,-201.8427734375,165.837249755859,-13.2844066619873,-233.645904541016,177.284378051758,-11.1039333343506,-178.083450317383,155.530242919922,-14.971471786499,-169.494598388672,151.938888549805,-31.5950012207031,-108.035591125488,154.376129150391,-17.6380348205566,-155.878280639648,148.56005859375,-18.1721363067627,-153.980590820313,148.105514526367,-14.9724731445313,-136.71240234375,164.019073486328,-16.7009677886963,-153.914825439453,150.386245727539,-16.26584815979,-152.49543762207,151.548355102539,-19.6948356628418,-129.726715087891,160.472732543945,-22.190580368042,-120.796844482422,161.376815795898,-41.4214630126953,-90.9090118408203,145.41325378418,-43.8709030151367,-82.1680526733398,143.239028930664,-47.0968208312988,-77.6594085693359,142.310943603516,-36.1553497314453,-94.3327484130859,155.419235229492, +-53.6664657592773,-73.5760116577148,142.991012573242,-57.3517227172852,-73.0846633911133,142.942016601563,-66.0315780639648,-59.3861198425293,145.409240722656,-73.2062759399414,-53.4736404418945,142.297943115234,-79.2125625610352,-59.6825485229492,141.354858398438,-60.1649017333984,-68.8856506347656,143.783096313477,-63.0086822509766,-68.4207077026367,143.834091186523,-63.3703155517578,-64.3087005615234,144.873199462891,-91.7417907714844,-63.546630859375,143.965103149414,-103.970687866211,-72.2972869873047,150.977798461914,-107.937080383301,-78.0923538208008,151.239822387695,-119.334197998047,-77.7970199584961,150.529754638672,-126.995948791504,-81.3407745361328,148.496551513672,-13.3619146347046,-221.469696044922,177.025344848633,-9.10915756225586,-214.528030395508,175.083160400391,-11.0976934432983,-193.545959472656,155.197204589844,-12.6033401489258,-189.355560302734,151.34782409668,-2.03813505172729,-210.641647338867,171.304794311523,-5.42275714874268,-197.839401245117,159.793670654297,-11.6699485778809,-184.810119628906,152.224914550781,-9.81025695800781,-180.12565612793,156.35432434082,-11.7295951843262,-175.768218994141,155.402221679688,-13.0168809890747,-173.632019042969,154.281616210938,-15.807879447937,-157.992233276367,151.040802001953,-10.3191165924072,-148.120513916016,163.46501159668,-15.9653816223145,-153.881958007813,151.526596069336,-14.9628210067749,-151.046798706055,154.394638061523,-21.626823425293,-117.587516784668,164.939163208008,-32.581298828125,-103.636154174805,156.274322509766,-40.9404182434082,-86.6467895507813,147.312438964844,-50.2552299499512,-73.0079574584961,143.926116943359,-32.1765594482422,-94.1596221923828,164.941177368164,-68.8323516845703,-54.7696685791016,144.576171875,-76.2076721191406,-51.239818572998,140.89680480957,-82.0521469116211,-64.6603393554688,141.621887207031,-86.5403823852539,-65.8911514282227,142.356964111328,-97.6219711303711,-63.1757926940918,146.336334228516,-97.3766479492188,-68.3462982177734,148.189529418945,-110.658348083496,-73.0158538818359,151.325820922852, +-101.4814453125,-68.2455902099609,149.431640625,-111.880470275879,-75.9718475341797,151.31282043457,-130.548294067383,-77.1622619628906,147.689483642578,-122.363502502441,-74.7301254272461,149.556655883789,-8.1334228515625,-194.286041259766,155.776275634766,0.32710599899292,-206.442230224609,167.769439697266,-2.23494410514832,-202.089813232422,164.383102416992,-6.93656492233276,-233.72590637207,175.186172485352,-8.43776226043701,-184.56608581543,155.96728515625,-8.89885711669922,-175.808227539063,158.749557495117,-11.4734296798706,-171.53581237793,156.508346557617,-15.8998126983643,-156.761352539063,151.068054199219,-14.9847364425659,-157.818344116211,152.30842590332,-16.1668643951416,-155.812515258789,150.840774536133,-11.0898523330688,-150.792266845703,160.811767578125,-11.4007234573364,-142.351943969727,165.648223876953,-13.0597848892212,-133.96711730957,168.965560913086,-15.4312801361084,-155.779632568359,151.981140136719,-15.7478227615356,-153.172256469727,152.107650756836,-15.0963087081909,-152.447937011719,153.530792236328,-15.7340469360352,-125.993347167969,168.971572875977,-16.8682594299316,-121.388893127441,169.804641723633,-29.2719745635986,-105.423332214355,162.408920288086,-36.1810493469238,-90.0993270874023,156.910369873047,-43.8451995849609,-77.6543045043945,144.653167724609,-40.6922912597656,-81.409782409668,147.897491455078,-47.1254234313965,-73.0165557861328,144.664184570313,-31.6570072174072,-98.6781692504883,163.195999145508,-53.0875091552734,-67.9607620239258,145.89729309082,-58.6561546325684,-65.3046035766602,145.463256835938,-64.4250183105469,-54.6585540771484,146.300338745117,-72.0004653930664,-45.361442565918,141.293853759766,-67.1818923950195,-50.5243530273438,144.708190917969,-79.6459121704102,-50.5189514160156,140.509780883789,-82.9658355712891,-58.547737121582,141.786895751953,-88.9566268920898,-59.0284843444824,143.086013793945,-95.6171722412109,-59.4071197509766,144.893203735352,-106.397933959961,-68.3754959106445,150.196716308594,-116.417907714844,-72.3579864501953,150.502746582031, +-127.578010559082,-73.6271209716797,148.216522216797,-4.0426721572876,-220.221572875977,174.047058105469,-8.93626117706299,-189.669586181641,153.724075317383,0.886323988437653,-214.877059936523,171.544815063477,8.75083160400391,-210.837661743164,167.096389770508,-5.38649320602417,-193.597961425781,155.739273071289,-1.8525869846344,-197.475341796875,158.73356628418,-6.31150388717651,-179.892623901367,160.397720336914,-10.2933139801025,-165.147186279297,158.809555053711,-14.5731639862061,-157.731399536133,152.942230224609,-15.1642284393311,-156.728485107422,152.208419799805,-8.90148830413818,-150.730270385742,164.483123779297,-7.24141502380371,-147.693481445313,167.646423339844,-15.0634870529175,-155.763198852539,152.551330566406,-15.5975904464722,-153.865509033203,152.096786499023,-9.28685474395752,-152.066146850586,163.156494140625,-11.2233400344849,-152.193405151367,159.94792175293,-19.4630126953125,-115.966369628906,169.97265625,-26.0311546325684,-103.778167724609,170.975769042969,-37.4190711975098,-85.913215637207,154.601150512695,-49.5416603088379,-68.310188293457,146.027313232422,-27.7764263153076,-98.3737335205078,172.039855957031,-34.1404495239258,-88.2110443115234,162.122894287109,-60.005687713623,-59.3293151855469,147.202438354492,-75.8889465332031,-45.2113304138184,140.299743652344,-86.8931198120117,-55.9178771972656,142.686981201172,-101.22241973877,-58.7385559082031,146.646362304688,-103.168617248535,-63.975269317627,148.307540893555,-111.147399902344,-68.971061706543,150.41374206543,-130.193267822266,-71.6396179199219,148.091522216797,-116.728942871094,-67.1659851074219,149.29362487793,-122.562515258789,-70.6506195068359,149.181625366211,6.21950387954712,-206.276214599609,165.111190795898,3.68805599212646,-202.177810668945,162.028884887695,-3.44657301902771,-229.559494018555,173.822036743164,-5.32120704650879,-189.021530151367,156.378326416016,-5.1794228553772,-184.265045166016,159.376617431641,-3.88957595825195,-173.060958862305,164.702133178711,-7.34749603271484,-171.067764282227,161.519836425781,-14.1615934371948,-157.644439697266,153.576049804688, +-15.0307025909424,-157.202896118164,152.322052001953,-14.5961475372314,-157.423675537109,152.94905090332,-10.7333574295044,-136.247344970703,170.876754760742,-14.10888671875,-121.850936889648,172.719940185547,-14.7964363098145,-156.712036132813,152.778594970703,-15.2297973632813,-153.849075317383,152.666961669922,-7.48385906219482,-153.340026855469,165.501220703125,-17.9453639984131,-114.707237243652,172.615921020508,-43.4739646911621,-72.5076065063477,145.93830871582,-40.7214965820313,-76.3753814697266,147.650482177734,-37.7710037231445,-81.0635452270508,153.402038574219,-46.3883514404297,-68.2285842895508,145.910308837891,-28.7088184356689,-93.9714050292969,172.22688293457,-31.6996116638184,-88.0727310180664,166.815353393555,-56.6836585998535,-63.8263511657715,146.832382202148,-52.6972694396973,-62.8069534301758,147.487457275391,-61.7582588195801,-50.6408615112305,146.437347412109,-57.380729675293,-54.4987411499023,147.935501098633,-66.2776947021484,-43.7140846252441,143.170028686523,-72.4578094482422,-41.6277770996094,140.258743286133,-80.4083862304688,-42.3813552856445,140.273742675781,-94.8498992919922,-50.7588729858398,144.906204223633,-114.29670715332,-63.0753784179688,148.311538696289,-109.890274047852,-60.1305923461914,147.216430664063,-125.119766235352,-67.8229446411133,149.321624755859,5.16388082504272,-219.10546875,170.49169921875,8.92891025543213,-214.994079589844,168.453506469727,12.509220123291,-205.946182250977,161.842864990234,-2.6175320148468,-192.822891235352,156.550354003906,1.5318249464035,-198.647476196289,159.110595703125,-2.18429899215698,-236.357162475586,172.578918457031,1.73466503620148,-232.938827514648,171.52880859375,-1.98869001865387,-183.913024902344,162.183898925781,-0.873194992542267,-178.36247253418,165.859268188477,-7.9674859046936,-167.318405151367,161.710845947266,-7.39498996734619,-160.272705078125,163.987075805664,-14.6629114151001,-157.186462402344,152.892227172852,-5.54816913604736,-144.857192993164,170.905746459961,-24.2537822723389,-103.413131713867,174.112075805664,-37.9947280883789,-76.1941680908203,151.777877807617, +-45.1652297973633,-62.6196365356445,146.530364990234,-24.7035255432129,-98.654167175293,176.593307495117,-33.6609039306641,-79.0284423828125,162.157897949219,-61.1274948120117,-45.1757278442383,145.026214599609,-56.397533416748,-58.7174530029297,147.899490356445,-76.0500564575195,-39.3782615661621,139.394668579102,-102.04150390625,-50.0478057861328,147.891494750977,-104.529754638672,-58.8928718566895,147.341445922852,-108.791160583496,-58.8913726806641,147.007415771484,-127.336990356445,-63.2908020019531,150.128723144531,-117.851058959961,-61.9350700378418,148.53955078125,-121.782440185547,-64.9939727783203,149.262634277344,10.1628913879395,-226.809234619141,168.728530883789,16.4512062072754,-215.057067871094,165.807250976563,7.49954891204834,-202.224822998047,160.658737182617,18.9685535430908,-211.258712768555,163.238006591797,0.7761350274086,-193.923004150391,157.703460693359,4.34238004684448,-197.923400878906,158.483535766602,4.71110582351685,-231.213653564453,170.363708496094,-2.0665979385376,-188.774490356445,158.706558227539,-5.44933891296387,-164.077087402344,165.877258300781,-4.82836818695068,-148.212524414063,169.95866394043,-8.87376499176025,-135.287261962891,173.255981445313,-15.0530796051025,-114.459213256836,175.177169799805,-22.5592155456543,-102.484039306641,176.68132019043,-43.9193077087402,-64.9236602783203,146.339340209961,-40.5851783752441,-68.3939971923828,147.513458251953,-38.4943771362305,-72.3492889404297,150.153717041016,-27.4802989959717,-89.3625564575195,174.950149536133,-25.3192863464355,-93.3725509643555,177.72541809082,-28.8891353607178,-77.2214660644531,169.084564208984,-51.9378929138184,-59.0782890319824,147.806488037109,-55.0883026123047,-42.5501708984375,146.211318969727,-53.7970771789551,-46.3808441162109,147.406448364258,-65.2378005981445,-36.7573013305664,141.313858032227,-72.5024108886719,-37.5343780517578,139.210647583008,-85.0291366577148,-38.9713172912598,141.283843994141,-79.0114517211914,-35.3783683776855,139.207641601563,-90.8445053100586,-51.1827163696289,143.727096557617, +-101.131416320801,-45.4263534545898,147.256423950195,-105.128807067871,-49.7855796813965,148.368530273438,-113.875663757324,-56.9170761108398,146.491348266602,16.5426158905029,-218.975448608398,166.309310913086,20.3434886932373,-227.397277832031,165.058166503906,10.7261457443237,-202.296813964844,159.903671264648,17.0975685119629,-206.810256958008,160.909774780273,1.84699594974518,-238.266342163086,170.105667114258,6.45093679428101,-236.763198852539,169.275604248047,1.18653094768524,-188.505477905273,160.669738769531,1.16455900669098,-183.669998168945,164.241088867188,-2.53428411483765,-159.200592041016,169.940658569336,-1.94369602203369,-152.884979248047,171.460815429688,-0.980010986328125,-146.382339477539,173.853042602539,-2.7822380065918,-140.956802368164,174.734130859375,-12.0878896713257,-118.630630493164,175.612213134766,-16.9469661712646,-110.317810058594,175.952239990234,-35.5907936096191,-72.2794799804688,155.46223449707,-32.669506072998,-71.7331237792969,160.720764160156,-40.3714599609375,-62.7263450622559,146.841400146484,-26.7387256622314,-84.7894058227539,175.472198486328,-21.7975406646729,-97.1277236938477,180.186660766602,-29.2106685638428,-71.9522476196289,166.470321655273,-47.6603736877441,-54.4507369995117,147.698471069336,-57.850772857666,-36.8123092651367,142.94401550293,-52.2680282592773,-51.7888717651367,147.883499145508,-75.5395050048828,-32.4699821472168,137.691497802734,-92.9803161621094,-45.9612045288086,143.882110595703,-105.366828918457,-46.9499015808105,148.072509765625,-108.171104431152,-54.7953681945801,147.157424926758,-113.161590576172,-50.7128715515137,146.027313232422,-131.802429199219,-59.012882232666,150.607772827148,-126.141868591309,-58.4951324462891,150.390731811523,-121.18238067627,-59.5807418823242,149.104614257813,14.4409103393555,-232.896820068359,167.391418457031,19.027458190918,-235.567092895508,165.869262695313,23.4403915405273,-215.151092529297,163.553039550781,24.2201671600342,-219.041473388672,164.080078125,7.6188907623291,-197.835388183594,158.90657043457,13.8924570083618,-202.297821044922,159.682647705078, +20.3102855682373,-207.000274658203,160.016677856445,4.41110706329346,-193.23893737793,159.07958984375,11.1183843612671,-235.370071411133,168.391510009766,0.934392988681793,-177.922439575195,167.082382202148,0.750167012214661,-166.520309448242,169.794647216797,-6.94283580780029,-133.36506652832,175.357192993164,-9.19554615020752,-111.090888977051,180.23567199707,-13.8918657302856,-107.899574279785,179.092559814453,-19.336799621582,-101.727973937988,179.712615966797,-37.2570571899414,-67.7964477539063,150.560745239258,-40.9632186889648,-58.7270545959473,146.743377685547,-24.4884052276611,-87.0973358154297,179.035537719727,-21.3675003051758,-93.2883377075195,181.583801269531,-25.3162841796875,-72.0283584594727,172.704940795898,-26.0241546630859,-76.3774871826172,173.654022216797,-48.9706039428711,-40.9350128173828,147.599456787109,-50.8442878723145,-36.4452705383301,145.645278930664,-48.5196571350098,-50.2609252929688,148.117523193359,-57.3537254333496,-31.7008075714111,140.788803100586,-65.1504898071289,-32.5401878356934,139.614685058594,-71.4721069335938,-32.5946922302246,137.973526000977,-85.1517486572266,-27.9167346954346,139.768692016602,-79.1113586425781,-27.5187969207764,137.136444091797,-95.5326690673828,-40.8742065429688,143.713073730469,-105.097801208496,-41.1680374145508,146.646362304688,-117.643035888672,-54.8551750183105,146.811386108398,-117.707038879395,-49.2584266662598,145.650283813477,26.7103118896484,-232.352767944336,163.532028198242,26.9707374572754,-211.44172668457,160.128692626953,10.7353467941284,-197.752380371094,160.037689208984,23.5113983154297,-207.12629699707,159.021591186523,17.1345748901367,-202.413833618164,159.631652832031,10.0628795623779,-238.993423461914,166.99836730957,4.57527303695679,-184.395065307617,165.227203369141,0.934073984622955,-160.959777832031,171.693832397461,1.95319604873657,-155.308212280273,174.099075317383,1.06645894050598,-141.767883300781,176.713317871094,-2.93818807601929,-137.566482543945,176.035247802734,-9.26579284667969,-115.884353637695,178.551498413086,-34.7898139953613,-59.1006889343262,149.449645996094, +-33.5259895324707,-67.8374481201172,157.229400634766,-30.2839736938477,-67.5002136230469,162.038879394531,-37.945125579834,-59.3774185180664,147.485458374023,-21.6906318664551,-89.4537658691406,181.651809692383,-23.8341426849365,-77.2017669677734,176.917343139648,-18.4941177368164,-98.1345138549805,181.942840576172,-23.6651248931885,-67.2849884033203,171.64582824707,-47.4728546142578,-44.960205078125,148.548553466797,-72.3342895507813,-28.0295467376709,136.135345458984,-83.2787704467773,-20.5341129302979,137.296447753906,-89.2757568359375,-32.076343536377,140.954818725586,-90.4774703979492,-42.1749305725098,142.755981445313,-75.9757537841797,-24.628812789917,135.236251831055,-101.651466369629,-38.6252822875977,145.466262817383,-108.527137756348,-41.3968544006348,146.150329589844,-114.058685302734,-45.9416007995605,145.428253173828,-127.844032287598,-54.5131416320801,150.011703491211,-133.710601806641,-55.3721237182617,150.356735229492,-124.095664978027,-54.546745300293,149.23762512207,31.7652072906494,-227.222259521484,161.642852783203,14.4714126586914,-237.967315673828,166.345306396484,23.2467727661133,-235.283050537109,164.71614074707,35.0168266296387,-215.399108886719,159.597640991211,7.62323188781738,-193.110916137695,161.059783935547,13.9074573516846,-197.66535949707,161.402816772461,20.3967933654785,-202.517852783203,159.472640991211,3.48409605026245,-175.129165649414,168.652542114258,4.54164886474609,-166.513305664063,170.799728393555,2.21495199203491,-148.411544799805,175.601211547852,-0.762539982795715,-136.407867431641,177.622406005859,-6.23814678192139,-116.013366699219,180.468673706055,-8.13347244262695,-105.727363586426,183.112945556641,-35.0322380065918,-63.770149230957,151.643859863281,-32.2273635864258,-63.6461372375488,156.434326171875,-40.3948631286621,-54.6915588378906,147.703475952148,-21.9959602355957,-85.0632400512695,181.170761108398,-20.7566394805908,-80.6877059936523,181.185760498047,-15.7527494430542,-89.3738555908203,185.206161499023,-15.5532293319702,-93.2798385620117,184.859130859375,-21.4473075866699,-70.0491638183594,175.822235107422, +-41.879508972168,-49.3812408447266,149.037612915039,-44.2254371643066,-41.1924362182617,148.198516845703,-47.2950401306152,-35.415470123291,145.934310913086,-50.6522674560547,-30.8000183105469,142.878005981445,-66.9298629760742,-26.6173095703125,136.264358520508,-85.3154678344727,-15.8100500106812,136.547378540039,-89.0706329345703,-20.6149196624756,138.647598266602,-76.293083190918,-20.0151615142822,133.884124755859,-95.664680480957,-36.7713012695313,142.358963012695,-104.342727661133,-35.0331344604492,144.38916015625,-108.261108398438,-36.6839942932129,144.65217590332,-122.309494018555,-49.1793174743652,146.479354858398,-117.821044921875,-42.2890434265137,144.131118774414,35.0087242126465,-222.006759643555,160.677749633789,18.2141799926758,-239.62548828125,163.842056274414,22.0473556518555,-238.652389526367,163.724044799805,26.5445957183838,-237.648284912109,163.017974853516,34.3436584472656,-234.677993774414,161.500839233398,38.6763877868652,-218.695419311523,159.302627563477,33.1021385192871,-211.557739257813,158.333511352539,26.9948406219482,-206.630249023438,158.160491943359,10.7460479736328,-192.914901733398,163.366012573242,23.5984077453613,-202.423843383789,159.349624633789,17.2085800170898,-197.62336730957,162.298904418945,7.55058479309082,-183.11994934082,166.550323486328,4.33680009841919,-160.610733032227,173.194976806641,8.57305526733398,-153.186019897461,177.916442871094,4.33447885513306,-145.685287475586,176.795333862305,-2.59153890609741,-131.0478515625,178.531494140625,-3.67378497123718,-111.554931640625,182.814926147461,-37.1769485473633,-54.7972717285156,148.49055480957,-31.7017116546631,-58.8575668334961,152.43293762207,-28.8531322479248,-63.5738296508789,161.213806152344,-23.531810760498,-60.2182998657227,165.118179321289,-17.0384769439697,-84.3998718261719,184.388076782227,-19.5588226318359,-76.0936508178711,180.436676025391,-6.45103693008423,-96.5647583007813,188.059432983398,-18.2647953033447,-59.7947578430176,172.025863647461,-41.4612693786621,-45.6072692871094,149.418640136719,-56.7763671875,-27.1057567596436,138.536575317383, +-56.5816535949707,-17.1552810668945,132.789016723633,-70.1359786987305,-23.3943920135498,134.127151489258,-72.767936706543,-21.1806755065918,133.322067260742,-81.9529418945313,-14.2615966796875,134.686187744141,-94.7172927856445,-31.6972045898438,140.61979675293,-91.6049880981445,-36.3784675598145,141.822891235352,-101.654472351074,-32.2208595275879,142.305938720703,-114.651741027832,-39.834602355957,143.875091552734,-124.091667175293,-45.8211898803711,145.349243164063,-122.576515197754,-41.748893737793,144.148132324219,-128.394088745117,-50.0347023010254,148.42155456543,-135.043746948242,-50.327033996582,148.858581542969,41.1780319213867,-226.797210693359,158.912582397461,30.8496170043945,-235.757095336914,162.467926025391,37.356258392334,-232.143753051758,160.484725952148,43.7239799499512,-218.336395263672,157.538436889648,30.365270614624,-207.818374633789,157.554443359375,36.3437576293945,-211.685729980469,157.36442565918,7.59753894805908,-188.237442016602,164.306106567383,13.9359607696533,-192.729888916016,165.324203491211,22.4841976165771,-198.259429931641,162.504928588867,7.24125385284424,-174.77311706543,168.951568603516,8.88651561737061,-158.051483154297,176.663314819336,10.6354370117188,-173.577011108398,169.773635864258,7.85355377197266,-147.758483886719,177.54541015625,4.30830717086792,-141.093826293945,177.918441772461,1.46335804462433,-130.893829345703,180.453674316406,-2.10409188270569,-122.418991088867,181.033737182617,-4.83848905563354,-105.747360229492,184.286056518555,-34.049243927002,-53.638557434082,149.110610961914,-31.2899703979492,-54.882080078125,149.775680541992,-27.9816474914551,-59.1521987915039,158.813552856445,-20.6254272460938,-60.3402137756348,169.699630737305,-15.9847717285156,-79.9204254150391,184.087051391602,-6.47532987594604,-92.0144195556641,189.369567871094,-8.19881916046143,-87.7756958007813,188.980514526367,-16.1456871032715,-62.6932411193848,175.701217651367,-38.8014068603516,-44.4377555847168,148.764587402344,-44.2810478210449,-34.9162216186523,145.58625793457,-46.3004417419434,-21.8941459655762,138.898620605469, +-37.2843589782715,-50.1094093322754,149.424652099609,-66.3493041992188,-15.413610458374,129.585708618164,-86.4663848876953,-10.3116111755371,134.042129516602,-89.0142288208008,-14.6312341690063,136.424377441406,-92.0703277587891,-17.1601829528809,137.311447143555,-75.6974182128906,-12.6302366256714,130.498794555664,-98.4714584350586,-32.5256843566895,141.337844848633,-105.180809020996,-28.2650699615479,140.452758789063,-108.266120910645,-30.9017295837402,141.950912475586,-114.267707824707,-32.2070541381836,140.979827880859,-127.374984741211,-45.6926803588867,145.725280761719,-117.431007385254,-35.0138282775879,142.037933349609,-120.833343505859,-37.0708312988281,143.197036743164,49.2372207641602,-222.458801269531,156.176300048828,30.1514492034912,-239.62548828125,160.745758056641,38.180736541748,-237.685287475586,159.95068359375,33.8777122497559,-238.610382080078,160.616744995117,39.5671691894531,-211.943771362305,156.511352539063,33.1364402770996,-207.121292114258,157.272415161133,28.2216606140137,-202.190811157227,159.756652832031,12.8940582275391,-188.393463134766,167.228378295898,17.2038803100586,-192.601867675781,166.463317871094,10.3388071060181,-180.984725952148,167.996459960938,9.14925098419189,-162.473907470703,174.505096435547,11.5621280670166,-169.638610839844,171.679824829102,11.7868499755859,-155.474227905273,179.46159362793,12.0520763397217,-148.557556152344,179.440582275391,9.65025043487549,-141.004821777344,177.901443481445,4.49942588806152,-134.420166015625,180.164657592773,0.664013028144836,-111.488922119141,183.994033813477,-27.2655773162842,-51.8258781433105,150.106704711914,-19.6170272827148,-54.399730682373,164.392105102539,-14.5507307052612,-74.3577880859375,182.924926757813,-17.2301940917969,-70.4130935668945,179.332580566406,-9.21798801422119,-83.1406478881836,188.020431518555,-2.05397701263428,-95.6661758422852,189.210556030273,-1.83646500110626,-100.900886535645,187.102340698242,-16.4666194915771,-54.452335357666,168.683532714844,-11.8817701339722,-58.3551177978516,176.000259399414,-43.6614837646484,-28.1973628997803,142.329956054688, +-50.3405380249023,-10.1051912307739,130.94482421875,-62.9343719482422,-13.9811697006226,129.548690795898,-69.4954147338867,-13.7234449386597,128.79362487793,-72.3927001953125,-13.9960718154907,129.601699829102,-81.6425094604492,-10.1944990158081,132.542999267578,-97.7500915527344,-28.0975532531738,139.399673461914,-101.376441955566,-27.5722026824951,139.291656494141,-127.374984741211,-41.2307395935059,143.849090576172,-125.174774169922,-36.0670356750488,143.592086791992,-135.312759399414,-41.258243560791,144.044128417969,-142.522476196289,-41.7130851745605,143.900115966797,50.9413871765137,-230.576599121094,156.110305786133,43.1725234985352,-235.33805847168,159.029586791992,48.8710823059082,-217.983367919922,155.563232421875,43.200927734375,-211.54573059082,155.509246826172,36.450366973877,-207.207305908203,157.11540222168,30.5254878997803,-196.89128112793,165.427215576172,22.7597236633301,-192.376846313477,167.659423828125,13.5548229217529,-163.456024169922,176.836334228516,17.0644683837891,-175.776229858398,172.292892456055,14.0827751159668,-159.901672363281,178.717514038086,12.3655071258545,-151.876876831055,180.124649047852,11.7192430496216,-143.337051391602,178.182464599609,7.5401439666748,-137.752502441406,178.717514038086,4.41351699829102,-123.06706237793,182.147842407227,1.34971702098846,-106.43342590332,185.527191162109,-31.1721591949463,-49.9298934936523,147.906494140625,-34.5114898681641,-49.5522575378418,148.990600585938,-27.4593963623047,-54.6628570556641,153.33203125,-28.2017688751221,-50.5641555786133,148.44255065918,-23.8746433258057,-54.8461761474609,159.568634033203,-9.56409168243408,-78.1371612548828,186.569290161133,-4.60851716995239,-87.6172866821289,190.020629882813,-5.43758821487427,-83.2261581420898,189.373565673828,-0.755114018917084,-92.5149612426758,189.884613037109,-12.3547163009644,-54.0710983276367,172.177871704102,-10.8501682281494,-64.0475769042969,179.894638061523,-38.9761238098145,-39.4650688171387,146.230346679688,-40.4911727905273,-31.8650226593018,143.609085083008,-47.0229148864746,-6.6746940612793,129.836715698242, +-40.4233665466309,-25.3601856231689,141.183837890625,-62.0199813842773,-5.82238006591797,125.903343200684,-66.0004730224609,-2.88858294487,124.073165893555,-83.395378112793,-5.58646678924561,130.343780517578,-93.4274597167969,-7.98744297027588,132.779006958008,-98.6048736572266,-23.3147850036621,137.602478027344,-73.5274047851563,-5.69691801071167,126.482391357422,-79.0708541870117,-5.63992309570313,128.785629272461,-104.561752319336,-23.2309761047363,136.801406860352,-108.797164916992,-24.8294334411621,138.183547973633,-117.48902130127,-27.0187473297119,139.477661132813,-131.413375854492,-41.5221710205078,143.935104370117,-124.099662780762,-32.3123664855957,143.011016845703,54.2520141601563,-225.533096313477,154.924179077148,55.343318939209,-221.337677001953,154.237121582031,40.1198272705078,-206.789260864258,157.438430786133,33.1657447814941,-202.207824707031,160.220703125,17.114070892334,-187.836395263672,169.056564331055,16.3516960144043,-183.28596496582,170.204696655273,16.108772277832,-169.89665222168,174.331085205078,19.631519317627,-154.977188110352,182.773910522461,19.4654026031494,-145.822280883789,182.630889892578,13.9286603927612,-141.327850341797,179.031539916992,11.0390758514404,-131.119842529297,179.59260559082,7.67810678482056,-128.609603881836,180.753707885742,4.11265802383423,-115.847351074219,183.714996337891,-25.6541194915771,-46.0954170227051,147.475463867188,-23.1065692901611,-50.2170219421387,152.519943237305,-18.9996662139893,-50.6591644287109,159.425628662109,-13.6130399703979,-50.0803108215332,166.147277832031,-6.22365522384644,-68.4534072875977,184.093048095703,-5.48152208328247,-78.6490020751953,188.108444213867,1.09288203716278,-96.8046798706055,188.455474853516,1.73806500434875,-101.352935791016,187.039337158203,0.053812999278307,-57.0536918640137,181.747817993164,-8.34682273864746,-54.2613182067871,175.217178344727,-31.6209049224854,-44.7016792297363,145.767288208008,-51.6680679321289,-5.78153705596924,128.195571899414,-37.9649238586426,-6.4673638343811,130.726806640625,-38.7357025146484,-17.9388561248779,137.448471069336, +-69.8120498657227,-2.9142050743103,124.353187561035,-90.381965637207,-5.81461000442505,131.425888061523,-94.3795547485352,-16.2982978820801,136.402359008789,-101.369438171387,-23.1178665161133,136.861404418945,-113.850662231445,-25.90793800354,138.286560058594,-123.637619018555,-27.7610206604004,141.599884033203,-133.549591064453,-36.4873733520508,142.664993286133,-127.200973510742,-32.7887115478516,143.344055175781,-141.301345825195,-37.0202293395996,142.482971191406,49.918384552002,-236.526184082031,156.495346069336,55.2574081420898,-235.152038574219,155.216201782227,54.8683738708496,-215.610137939453,153.106018066406,46.5646553039551,-211.272705078125,154.839172363281,43.006908416748,-207.430328369141,156.584350585938,36.4937705993652,-202.198822021484,160.824752807617,29.4844837188721,-191.788803100586,169.773635864258,24.2151679992676,-187.680389404297,170.585723876953,22.27707862854,-169.295593261719,177.161361694336,23.4893970489502,-164.492111206055,180.526702880859,21.1632671356201,-182.922927856445,171.58381652832,21.1527671813965,-173.787033081055,174.62712097168,23.1501617431641,-159.854675292969,182.741912841797,18.5173091888428,-150.965789794922,182.755905151367,19.7473297119141,-142.084915161133,182.000839233398,13.7855463027954,-135.446273803711,179.017547607422,10.4462175369263,-124.25617980957,181.633804321289,9.73864936828613,-114.261199951172,185.800216674805,-28.5294017791748,-45.923900604248,146.343338012695,-21.1928825378418,-50.6534614562988,155.881286621094,-21.8269443511963,-46.1156196594238,149.751678466797,-1.92864394187927,-87.3575592041016,190.142639160156,-2.18509888648987,-79.8024215698242,188.799499511719,3.54076194763184,-92.330451965332,188.616485595703,4.1732439994812,-104.633255004883,186.562286376953,-7.05204582214355,-49.9043922424316,171.668823242188,-2.54196405410767,-61.5957336425781,182.833923339844,-37.3008613586426,-36.3903656005859,144.639175415039,-37.3409652709961,-29.1507568359375,143.118026733398,-49.7832832336426,-1.82867896556854,126.010345458984,-41.4807662963867,-1.12540996074677,126.39338684082, +-34.5347900390625,-23.7344245910645,141.405868530273,-62.077091217041,-1.55495202541351,123.534111022949,-71.1604766845703,3.45003795623779,121.130874633789,-82.287971496582,-0.487621009349823,126.346389770508,-93.7317886352539,-1.62715899944305,128.466598510742,-96.9757080078125,-10.682147026062,133.555084228516,-79.0545501708984,-1.19686698913574,126.012344360352,-102.017501831055,-18.7612380981445,134.9072265625,-107.680053710938,-18.8626480102539,134.493179321289,-110.98738861084,-19.1829814910889,135.323272705078,-115.093780517578,-22.1727733612061,136.833404541016,-122.881546020508,-22.8259372711182,139.392669677734,-129.020141601563,-28.1507587432861,142.339950561523,60.2322959899902,-234.305969238281,154.103103637695,63.1988906860352,-216.732238769531,151.953887939453,59.6982421875,-216.738235473633,152.496948242188,49.6071548461914,-212.472808837891,154.436126708984,46.1499176025391,-207.125289916992,156.928375244141,40.1172294616699,-201.55973815918,162.087875366211,32.9817276000977,-192.730895996094,169.613632202148,24.2484703063965,-155.22721862793,184.188049316406,25.7511177062988,-143.685089111328,183.922027587891,25.6954116821289,-150.598754882813,184.746109008789,19.2765827178955,-137.205444335938,181.336776733398,13.8767547607422,-127.952537536621,181.074737548828,7.28367805480957,-119.917747497559,182.975936889648,8.97408390045166,-110.471824645996,186.688293457031,-22.9602565765381,-41.9083061218262,148.169525146484,-30.962739944458,-41.2287406921387,145.376251220703,-18.6505317687988,-46.2601318359375,152.095901489258,-10.8244657516479,-46.4232482910156,162.507919311523,-16.2992038726807,-46.4307518005371,154.297119140625,0.00108299998100847,-69.5863189697266,186.14924621582,-1.78126001358032,-74.8818359375,187.348373413086,4.52003812789917,-97.2311325073242,187.683395385742,-6.58150005340576,-45.7928848266602,165.526214599609,2.75987505912781,-61.0825843811035,184.651092529297,0.273295998573303,-53.4817428588867,179.210556030273,-3.32896089553833,-49.7622756958008,173.822036743164,-34.1258506774902,-36.5933876037598,144.81217956543, +-33.7850151062012,-7.05570077896118,132.230972290039,-35.4020729064941,-1.19885694980621,127.51350402832,-33.0577430725098,-13.3808116912842,136.073333740234,-65.2364959716797,3.18697190284729,120.360801696777,-73.9104461669922,-1.02982103824615,124.229179382324,-85.7212066650391,-0.531625986099243,126.929443359375,-98.9560012817383,-5.41918087005615,130.709808349609,-104.386734008789,-17.9322566986084,133.965133666992,-127.251968383789,-22.3364887237549,139.798706054688,-135.788818359375,-32.5793914794922,142.163925170898,-142.227447509766,-31.88112449646,141.462860107422,66.6369247436523,-225.985137939453,152.323928833008,58.272403717041,-212.000762939453,153.449035644531,52.9689865112305,-212.571823120117,153.369018554688,41.6157722473145,-196.557250976563,167.68342590332,31.413272857666,-187.453369140625,172.495895385742,38.175235748291,-192.142822265625,171.293792724609,28.8606224060059,-173.391998291016,176.941345214844,28.1523532867432,-164.451110839844,181.721817016602,29.4966869354248,-178.329467773438,175.245178222656,28.242561340332,-159.498626708984,183.746017456055,23.4422912597656,-137.724487304688,182.70491027832,19.1861743927002,-132.796020507813,181.921829223633,16.8153419494629,-116.970458984375,186.382263183594,-19.2126884460449,-41.4782676696777,149.360641479492,-13.2945079803467,-45.8169898986816,156.45832824707,4.77856302261353,-87.3208541870117,188.157440185547,3.5127489566803,-80.4209823608398,187.763397216797,1.7901599407196,-75.9359359741211,187.436370849609,7.18581914901733,-92.7529830932617,188.025421142578,7.9355320930481,-99.2913284301758,187.465362548828,8.16191387176514,-105.478340148926,187.121337890625,-1.04162704944611,-45.5673675537109,170.120666503906,4.58857393264771,-56.8188705444336,183.127960205078,5.04344892501831,-52.8735809326172,180.557693481445,-34.0082397460938,-32.8352165222168,144.718185424805,-32.8203201293945,-27.6148071289063,143.693084716797,-41.7069892883301,3.87120890617371,122.356994628906,-34.937427520752,7.27271318435669,120.780838012695,-24.2369804382324,-12.3584108352661,138.573577880859, +-58.5146369934082,3.07269096374512,120.691825866699,-72.5553131103516,10.5379323959351,117.037467956543,-75.8197326660156,3.91802406311035,121.546913146973,-78.4247894287109,4.83994388580322,121.285888671875,-87.0253372192383,9.83433437347412,117.825546264648,-90.3530654907227,2.85932993888855,124.154174804688,-99.2048263549805,-1.54698204994202,128.272567749023,-104.756767272949,-10.0270833969116,131.214859008789,-108.506141662598,-11.4808254241943,131.315872192383,-115.361808776855,-10.9340705871582,132.822021484375,-120.271293640137,-14.090181350708,134.733215332031,-123.738632202148,-15.705638885498,136.277359008789,-131.789428710938,-23.0823612213135,140.21875,-135.672805786133,-27.4485893249512,141.282852172852,65.9288558959961,-235.523086547852,152.998001098633,61.4498176574707,-211.99577331543,153.544052124023,66.89794921875,-216.796234130859,151.53385925293,55.2668113708496,-211.214691162109,153.490036010742,52.239315032959,-207.549346923828,156.371337890625,48.5692558288574,-201.896789550781,162.16389465332,30.9096240997314,-182.682891845703,174.362091064453,31.541784286499,-154.301116943359,185.262161254883,32.0702362060547,-142.051910400391,184.897125244141,15.2067852020264,-121.207878112793,184.540100097656,18.7493305206299,-128.300567626953,183.227951049805,15.3086948394775,-109.394721984863,188.124450683594,-21.7123336791992,-36.6019859313965,148.317535400391,-26.7157249450684,-35.9233207702637,147.554458618164,-15.8489589691162,-41.7412910461426,150.174728393555,-6.38571119308472,-42.8445014953613,158.91357421875,-6.76373815536499,-41.4683609008789,154.337127685547,-12.5832386016846,-42.000114440918,151.343826293945,7.2488751411438,-65.3376998901367,186.795303344727,-1.10537397861481,-41.6141777038574,160.983779907227,8.76536273956299,-57.0592918395996,183.96403503418,3.65695309638977,-49.335334777832,177.161361694336,-28.7857265472412,-31.5526924133301,146.315338134766,-25.3972949981689,-21.3137893676758,143.073013305664,-49.5817642211914,7.25491094589233,118.922653198242,-26.3477878570557,-3.78115105628967,133.301071166992, +-30.5726013183594,-2.25331091880798,130.24577331543,-31.9043312072754,4.3981409072876,123.950149536133,-62.6538467407227,7.5942440032959,117.01847076416,-72.5824127197266,15.6053285598755,113.350112915039,-82.459587097168,8.91939353942871,118.495613098145,-97.7730865478516,2.68315291404724,124.787231445313,-106.933982849121,-5.99232721328735,129.238662719727,-111.372413635254,-10.4595251083374,131.408874511719,-128.915130615234,-16.3311996459961,136.935424804688,-152.362442016602,-28.1393585205078,139.61767578125,70.9268417358398,-233.904922485352,152.17692565918,64.6314239501953,-211.937774658203,153.557052612305,76.0875473022461,-224.688018798828,151.27783203125,57.491828918457,-206.84326171875,157.743469238281,47.2313232421875,-196.905303955078,168.098480224609,43.7793846130371,-191.905792236328,172.961944580078,38.1161308288574,-187.16633605957,175.104156494141,34.6014862060547,-176.914337158203,177.575408935547,30.2692604064941,-168.618530273438,179.591598510742,32.9961280822754,-159.385620117188,183.810012817383,30.7927112579346,-151.133819580078,185.498184204102,28.4796848297119,-137.119445800781,183.849014282227,25.2064647674561,-132.775009155273,183.816009521484,20.8549365997314,-123.597114562988,185.8662109375,19.7376289367676,-116.326400756836,187.154342651367,-18.1892871856689,-36.5929870605469,148.29753112793,-9.44106006622314,-41.4863662719727,152.129898071289,6.37812995910645,-71.1882705688477,187.514389038086,12.2013902664185,-61.1102905273438,186.449279785156,7.80191898345947,-86.749397277832,188.153442382813,10.4805221557617,-98.770378112793,188.04443359375,14.4766139984131,-104.429229736328,188.829498291016,1.36262798309326,-42.465763092041,165.868255615234,10.5176258087158,-52.0163955688477,180.481689453125,3.22986102104187,-46.3709449768066,173.392990112305,-26.2709808349609,-27.7019138336182,145.62028503418,-37.9844284057617,11.9464712142944,116.735443115234,-30.5517997741699,16.9432601928711,112.920066833496,-17.1898899078369,-5.38362789154053,136.62239074707,-57.8500747680664,10.8421621322632,114.398208618164, +-66.2249984741211,8.55856800079346,116.873458862305,-76.3545913696289,14.7045412063599,114.485221862793,-95.2248382568359,13.5658292770386,114.07218170166,-81.1772613525391,18.822244644165,111.062881469727,-98.7419815063477,9.48210906982422,118.078575134277,-103.015602111816,3.53033590316772,123.456100463867,-106.405937194824,-1.39191603660584,126.783424377441,-110.98738861084,-5.54724407196045,128.861633300781,-118.866157531738,-10.0951890945435,132.802017211914,-114.474723815918,-5.81555986404419,129.563705444336,-123.745628356934,-10.3840179443359,133.326080322266,-132.183456420898,-16.7242393493652,137.018417358398,75.1492538452148,-233.688903808594,151.715866088867,63.4458122253418,-206.793258666992,158.82356262207,68.2253799438477,-211.422714233398,154.344131469727,72.0968627929688,-217.486312866211,150.970794677734,52.640453338623,-201.76676940918,162.977966308594,38.5405731201172,-182.452880859375,177.636413574219,33.284854888916,-173.266983032227,177.928436279297,33.4862747192383,-168.20947265625,179.699615478516,39.7157859802246,-154.27912902832,184.525085449219,38.4664649963379,-150.239730834961,185.385162353516,35.8626098632813,-145.825286865234,185.496185302734,34.1381416320801,-137.003433227539,184.939117431641,25.7508182525635,-129.225662231445,185.531188964844,22.329381942749,-110.580833435059,188.737503051758,-23.680326461792,-32.5882911682129,147.589462280273,-14.2156982421875,-36.4968795776367,148.24853515625,-0.690545976161957,-38.1451377868652,152.675964355469,-6.3024730682373,-37.8098030090332,149.340637207031,-10.0606918334961,-37.5435791015625,148.657562255859,10.2130947113037,-68.4270095825195,187.555389404297,9.3343391418457,-80.4100799560547,188.361465454102,11.7453460693359,-90.2271423339844,189.362564086914,16.8827476501465,-103.48713684082,189.678604125977,3.40384793281555,-43.6441764831543,169.746643066406,2.74432396888733,-37.8787117004395,154.562149047852,14.3690032958984,-57.1927032470703,185.083145141602,13.0947780609131,-47.8942909240723,176.924346923828,8.58586597442627,-44.3683471679688,172.348892211914, +-21.4699096679688,-20.0056610107422,143.261047363281,-49.0971145629883,11.7404499053955,115.594329833984,-22.1654777526855,7.41223621368408,126.840431213379,-28.3338832855225,3.65583801269531,126.353385925293,-28.0234527587891,16.3255996704102,114.328201293945,-16.8678588867188,4.84586477279663,130.844833374023,-63.857063293457,14.0770788192749,111.88697052002,-75.6922225952148,23.0150566101074,107.646553039551,-118.801147460938,-6.07564496994019,130.3837890625,-129.346176147461,-10.4369220733643,133.28205871582,-149.287124633789,-23.5253067016602,138.285568237305,-148.648071289063,-18.6734294891357,135.939315795898,-153.950592041016,-22.7603302001953,137.059432983398,72.0729598999023,-212.474822998047,153.219009399414,79.7176055908203,-230.733612060547,150.998794555664,75.0844497680664,-216.354187011719,150.740783691406,58.4084167480469,-201.394729614258,164.782150268555,53.2374114990234,-196.433242797852,169.582626342773,49.3149261474609,-191.83479309082,174.407104492188,45.1027145385742,-186.984329223633,177.558410644531,36.940113067627,-173.631011962891,178.074447631836,36.2361450195313,-160.752746582031,182.643890380859,41.0307159423828,-177.898422241211,178.706512451172,29.4855842590332,-132.566986083984,185.019134521484,23.6241092681885,-119.00365447998,188.112442016602,23.4843940734863,-114.639228820801,188.401458740234,-2.50667095184326,-37.1335411071777,149.524658203125,17.5376129150391,-66.0823745727539,186.580291748047,12.0109710693359,-78.1408615112305,188.676483154297,16.5227146148682,-96.6393661499023,190.577667236328,8.08776760101318,-41.2152404785156,167.50341796875,10.1281871795654,-38.702392578125,163.457015991211,14.0372695922852,-52.4194374084473,181.880828857422,16.3687992095947,-61.1752967834473,186.176239013672,-19.7633438110352,-27.3720817565918,146.392349243164,-40.248950958252,15.7080392837524,113.448120117188,-34.2479629516602,19.2595863342285,110.626846313477,-19.90305519104,5.51707077026367,129.475692749023,-29.7419204711914,25.5380020141602,106.45743560791,-6.73000478744507,-1.36397397518158,136.453384399414, +-7.21274185180664,5.68573713302612,132.641998291016,-58.6801528930664,16.5060176849365,110.165802001953,-49.5494613647461,17.0686721801758,111.24390411377,-69.6044235229492,20.575216293335,108.574638366699,-72.6224212646484,26.1184597015381,104.851280212402,-81.5208969116211,22.0765628814697,108.183601379395,-98.9378051757813,16.7523422241211,111.126892089844,-103.277618408203,7.90292501449585,119.674728393555,-112.080490112305,3.22749590873718,123.402099609375,-112.930572509766,-1.13338100910187,126.347389221191,-117.433013916016,-1.11270904541016,126.386383056641,-126.980949401855,-5.43514204025269,129.824722290039,-137.320953369141,-12.3274078369141,133.532089233398,67.5313110351563,-201.653762817383,165.744247436523,82.5950927734375,-225.169067382813,150.397735595703,78.5730895996094,-216.903259277344,150.073699951172,64.6497268676758,-201.734771728516,165.339202880859,45.3048362731934,-182.453887939453,179.62760925293,36.2750511169434,-169.020553588867,178.808532714844,39.8221969604492,-163.628036499023,179.857635498047,42.6578750610352,-150.829788208008,185.588180541992,40.4634628295898,-145.666259765625,186.0322265625,35.8436088562012,-132.664993286133,186.258255004883,29.0334396362305,-123.31908416748,189.574584960938,20.0535583496094,-101.620956420898,190.754684448242,26.9136333465576,-114.121185302734,189.703598022461,-11.7773590087891,-31.8772220611572,146.908401489258,4.21841812133789,-33.1432456970215,148.156524658203,0.484019011259079,-33.8690185546875,147.210433959961,-7.68219804763794,-33.5879936218262,146.678375244141,-3.46468496322632,-34.2524566650391,146.631362915039,17.2429847717285,-70.4357070922852,186.856307983398,16.5606174468994,-78.0819549560547,188.59748840332,14.0495719909668,-83.5979919433594,189.313552856445,16.1344757080078,-90.4735641479492,190.444671630859,10.8465566635132,-33.965030670166,151.871887207031,18.5865154266357,-52.6351585388184,183.20295715332,18.6857261657715,-56.8235702514648,185.229156494141,14.771541595459,-44.539665222168,173.753021240234,19.1046676635742,-46.1828231811523,177.755416870117, +-18.5401210784912,-22.8134346008301,144.863204956055,-16.92236328125,17.4250068664551,121.148872375488,-24.9585514068604,15.0727767944336,117.471519470215,-24.3230895996094,25.1605663299561,109.552742004395,-14.2526016235352,-13.6299362182617,140.998825073242,-6.11894512176514,14.2402963638306,127.453491210938,-9.31660938262939,19.4858093261719,122.83504486084,-63.3355102539063,17.573522567749,109.364723205566,-51.1952209472656,20.1422748565674,108.64965057373,-68.0852737426758,24.1288642883301,106.019393920898,-75.5471038818359,29.0407466888428,102.205024719238,-94.7523880004883,19.6029205322266,108.310615539551,-98.2880325317383,21.0767650604248,107.095504760742,-104.533752441406,13.8826599121094,114.793251037598,-111.544441223145,10.2233009338379,118.070579528809,-135.076736450195,-3.91242289543152,127.837532043457,-145.068725585938,-14.7607469558716,134.213150024414,-157.558441162109,-15.5900526046753,131.998443603516,74.0058517456055,-201.637756347656,164.933166503906,84.3370590209961,-220.105575561523,149.849685668945,86.5222702026367,-233.148849487305,149.584655761719,75.2607727050781,-211.283706665039,153.558059692383,77.7260055541992,-211.909774780273,152.228912353516,60.047176361084,-196.66227722168,169.732635498047,52.4589385986328,-190.628677368164,175.484191894531,49.2102165222168,-187.077331542969,178.505493164063,42.2518348693848,-169.741638183594,177.938430786133,39.5690727233887,-168.961563110352,178.149459838867,49.4016342163086,-177.893432617188,180.96174621582,43.0349082946777,-155.876266479492,183.557983398438,45.6417655944824,-145.750274658203,187.00732421875,45.0516090393066,-137.227447509766,186.785308837891,33.2465515136719,-123.194068908691,190.819702148438,29.3898754119873,-119.035667419434,190.730682373047,25.5962028503418,-109.09268951416,189.506576538086,-15.2165956497192,-26.541202545166,146.167327880859,7.37150716781616,-33.9271278381348,149.579666137695,19.4820041656494,-70.7966384887695,187.268356323242,20.9771480560303,-60.5645370483398,186.216247558594,20.2429790496826,-96.747184753418,191.338745117188, +11.9585657119751,-41.0274200439453,168.7275390625,18.188777923584,-35.7279014587402,162.108901977539,-36.8265151977539,23.4699001312256,106.260414123535,-46.4669609069824,20.1993789672852,108.736663818359,-20.8163452148438,17.801643371582,118.285591125488,-26.9709491729736,29.0961513519287,104.425231933594,-6.74840688705444,-11.8923654556274,140.909805297852,-0.133397996425629,3.56229901313782,135.193252563477,0.507901012897491,9.20101165771484,131.989929199219,-54.7214698791504,22.8870429992676,106.535438537598,-71.102668762207,34.1723480224609,98.4731521606445,-91.5940780639648,24.0377559661865,104.257217407227,-102.298530578613,20.863245010376,108.404624938965,-107.329025268555,17.2346897125244,112.469024658203,-117.29500579834,8.50648307800293,119.359703063965,-126.781929016113,2.5643310546875,123.432098388672,-152.048400878906,-10.7912578582764,130.811828613281,-140.187240600586,-4.30619192123413,127.887535095215,-146.310836791992,-6.91285705566406,129.267669677734,-155.071701049805,-8.55468845367432,129.03564453125,65.6546249389648,-196.432235717773,170.203689575195,70.1781692504883,-196.611267089844,169.739639282227,86.9301147460938,-225.129058837891,149.731674194336,81.028938293457,-212.395812988281,150.831787109375,81.8293151855469,-216.87825012207,149.656677246094,55.9819793701172,-192.349838256836,173.021957397461,49.1441078186035,-182.381866455078,180.503692626953,46.5090522766113,-168.653518676758,178.654510498047,43.023609161377,-160.509735107422,180.746704101563,48.082706451416,-150.505752563477,186.947326660156,45.9489974975586,-154.510131835938,185.034133911133,42.6263732910156,-132.778015136719,187.243347167969,37.8479042053223,-123.413093566895,191.470764160156,23.5820064544678,-100.120811462402,191.270751953125,31.8914184570313,-112.776054382324,191.848815917969,29.350471496582,-109.639739990234,190.435653686523,-8.44791316986084,-27.7773208618164,145.272232055664,8.51562881469727,-29.7037105560303,145.951309204102,1.48195004463196,-29.4636878967285,145.810287475586,-1.58488094806671,-31.3917770385742,145.628280639648, +-5.14729022979736,-30.7297115325928,145.480270385742,22.6899185180664,-64.3952102661133,187.287353515625,22.9887466430664,-78.1455612182617,189.165542602539,21.6247138977051,-91.8270950317383,191.316741943359,14.7995452880859,-38.0221252441406,164.890151977539,17.6675262451172,-31.5134887695313,150.670761108398,10.7872524261475,-28.9813404083252,146.001312255859,23.2094707489014,-56.2395133972168,185.032135009766,20.4286975860596,-48.0416069030762,179.985641479492,16.2022838592529,-40.7745933532715,169.747650146484,-12.904468536377,-21.2971858978271,143.780090332031,-36.1818504333496,27.5140953063965,102.24201965332,-19.5583229064941,25.2603759765625,112.671043395996,-10.4950342178345,24.4748973846436,118.448608398438,-20.8919525146484,29.8655261993408,106.849472045898,-12.3349142074585,-16.3810043334961,142.027923583984,-3.66670489311218,-5.62621116638184,138.569580078125,-0.337561994791031,-1.22503995895386,137.418472290039,0.154262006282806,21.7020263671875,123.570114135742,-63.2731056213379,27.9814434051514,103.662155151367,-55.0950012207031,27.2432708740234,103.422134399414,-49.7423820495605,25.1011581420898,104.400238037109,-77.452995300293,32.6513023376465,98.1446228027344,-64.1554946899414,33.3056602478027,99.7206802368164,-95.2605361938477,24.8420333862305,102.733070373535,-83.6391983032227,24.9191417694092,104.976287841797,-101.880493164063,25.0220527648926,105.537338256836,-113.943664550781,11.8739633560181,117.043472290039,-120.002265930176,3.07500100135803,122.960052490234,-131.652404785156,3.54585790634155,122.640022277832,-139.280151367188,2.85114908218384,123.230079650879,-157.277420043945,-9.83168888092041,129.088653564453,76.5057907104492,-197.085311889648,167.673431396484,93.5335540771484,-223.825927734375,148.96159362793,96.7633743286133,-232.660797119141,147.897491455078,81.1220474243164,-207.201309204102,155.63525390625,87.4428634643555,-215.302108764648,148.82258605957,61.17138671875,-192.081832885742,172.739929199219,58.181697845459,-187.940414428711,175.091156005859,52.3986282348633,-185.893218994141,178.912536621094, +42.9549026489258,-165.363204956055,178.560501098633,52.931282043457,-180.413681030273,180.707717895508,51.7806663513184,-168.931549072266,179.967636108398,50.7701683044434,-145.892303466797,187.163330078125,42.3298416137695,-127.996543884277,189.429565429688,46.6389656066895,-132.484985351563,187.437362670898,33.0443344116211,-118.633628845215,192.07682800293,28.8644237518311,-102.626052856445,190.441650390625,27.4717864990234,-105.78337097168,190.161636352539,4.6005859375,-27.9555397033691,145.684280395508,23.4933967590332,-69.9114532470703,188.159439086914,27.9735355377197,-61.5070266723633,187.299346923828,25.4488887786865,-96.203727722168,191.462768554688,24.2804756164551,-37.1134338378906,167.893463134766,22.9527435302734,-32.8941230773926,157.786468505859,14.6658315658569,-29.5035915374756,146.83740234375,26.4684886932373,-51.8481826782227,182.94792175293,24.7004146575928,-43.6299781799316,176.264266967773,25.65260887146,-47.9640998840332,180.272659301758,29.577091217041,-56.5780448913574,185.669204711914,24.7027149200439,-40.1987380981445,172.52490234375,-40.134937286377,23.8915405273438,105.336326599121,-2.32893395423889,26.2226696014404,119.658729553223,-20.2216873168945,33.8402137756348,101.92699432373,-29.0319519042969,31.4548816680908,100.390838623047,-5.76681995391846,-18.9032516479492,143.360046386719,1.12201499938965,-17.81884765625,142.436950683594,6.90735197067261,4.93176317214966,136.537384033203,5.18198204040527,16.7728443145752,128.373580932617,-44.7141876220703,25.0566558837891,103.930191040039,-74.1651763916016,38.4250640869141,92.8908081054688,-68.7774429321289,37.8769111633301,95.0756225585938,-99.3825378417969,27.0050468444824,102.443046569824,-82.1123580932617,31.6635036468506,97.7049789428711,-92.6759872436523,29.0579471588135,98.2593307495117,-104.777770996094,25.3842868804932,107.008483886719,-109.288215637207,20.8315410614014,110.853866577148,-112.249504089355,16.6373310089111,113.753150939941,-117.261993408203,11.7541522979736,117.40550994873,-122.147476196289,7.48201322555542,120.18278503418, +-128.542098999023,7.23644876480103,120.791839599609,-149.602157592773,-2.18775391578674,126.475395202637,-143.916610717773,-1.38300502300262,126.020355224609,-158.736053466797,-9.84556484222412,128.740371704102,68.5359115600586,-192.198822021484,173.161972045898,79.1074447631836,-201.847778320313,162.865951538086,75.9826431274414,-192.651870727539,170.412704467773,100.73836517334,-229.17546081543,147.316452026367,95.3079299926758,-219.256484985352,148.869598388672,84.2772521972656,-213.261901855469,149.483642578125,85.0943298339844,-207.608337402344,153.022994995117,92.5319595336914,-214.432006835938,148.202529907227,65.2056884765625,-190.833709716797,173.988052368164,46.2178230285645,-164.035064697266,179.448593139648,52.9843864440918,-177.168365478516,180.979736328125,52.5729484558105,-173.399002075195,180.580703735352,51.8840789794922,-164.438110351563,181.267776489258,50.2654190063477,-154.690155029297,186.323257446289,49.0863037109375,-136.359359741211,186.770309448242,54.8643684387207,-150.632751464844,187.201354980469,38.0304222106934,-118.83763885498,192.908905029297,44.156421661377,-122.158973693848,192.125823974609,34.8030052185059,-103.234115600586,191.237747192383,34.2336463928223,-114.860252380371,192.655883789063,32.3114624023438,-102.269027709961,190.502670288086,-6.22699499130249,-23.8398361206055,144.52717590332,12.5574245452881,-25.0598545074463,144.930206298828,4.63343906402588,-22.8356380462646,144.017105102539,0.827260971069336,-23.6909217834473,144.612167358398,-2.28603911399841,-27.1715621948242,145.208236694336,27.1101512908936,-66.2424926757813,188.292465209961,24.3416805267334,-84.307861328125,190.214645385742,27.1571559906006,-90.8544998168945,190.848709106445,27.4665851593018,-34.676097869873,164.574127197266,23.0983581542969,-31.2504634857178,153.011001586914,17.1587753295898,-27.44748878479,146.08332824707,-40.3007545471191,27.8928337097168,100.678871154785,-8.20150947570801,30.0350437164307,114.167190551758,-13.4945268630981,34.2902603149414,105.605346679688,-36.327564239502,30.8358211517334,97.3408432006836, +-1.70973300933838,-22.3217868804932,144.562164306641,1.21278405189514,-5.39398813247681,139.259658813477,0.655290007591248,-11.9161682128906,140.738784790039,9.84906959533691,-1.74750101566315,140.569778442383,1.60290205478668,25.5780067443848,121.585922241211,-54.9153861999512,30.5250911712646,100.063804626465,-48.8280906677246,29.7041110992432,99.0935134887695,-63.4019203186035,36.1397399902344,96.603271484375,-95.9979095458984,28.7261161804199,98.7473754882813,-86.2368621826172,31.9599323272705,96.2453308105469,-102.472541809082,29.9490356445313,103.827178955078,-120.928352355957,12.3545112609863,117.91756439209,-115.825859069824,17.1552810668945,114.705238342285,-134.552703857422,7.55565118789673,120.980857849121,-154.722915649414,-6.8798770904541,128.320083618164,-143.998611450195,2.31281709671021,124.189170837402,-157.988983154297,-8.58244132995605,128.339080810547,71.7673263549805,-192.178833007813,172.334884643555,81.5970916748047,-196.956298828125,165.569229125977,85.513671875,-188.052429199219,169.305603027344,101.825477600098,-219.423492431641,147.993499755859,104.658744812012,-231.680709838867,146.048309326172,86.4432601928711,-202.980895996094,157.344421386719,87.3850555419922,-210.779663085938,149.326629638672,90.4365615844727,-210.890655517578,148.222518920898,62.0076713562012,-187.064331054688,175.347198486328,59.0833854675293,-182.825912475586,177.032348632813,56.8134613037109,-172.702926635742,179.899627685547,55.6158447265625,-168.470504760742,180.394683837891,51.3443260192871,-159.319610595703,184.262069702148,54.4215278625488,-138.13752746582,186.186248779297,63.564525604248,-150.363739013672,187.117340087891,46.5231513977051,-127.54549407959,189.245544433594,54.2698135375977,-131.522888183594,186.528274536133,32.9575271606445,-95.4185562133789,190.052627563477,37.7069892883301,-105.590347290039,192.572875976563,37.8410034179688,-109.352722167969,193.151931762695,26.8634262084961,-74.8997421264648,188.863510131836,33.0980377197266,-66.9514617919922,188.056427001953,34.6373901367188,-57.2617111206055,185.977233886719, +30.1819534301758,-37.3903656005859,169.539611816406,20.9787502288818,-30.2832679748535,149.418640136719,28.1975593566895,-31.173755645752,155.319229125977,28.7437114715576,-33.1036415100098,161.336822509766,19.7010250091553,-27.6369075775146,146.681365966797,33.9533195495605,-48.3821411132813,181.14875793457,31.1185436248779,-53.2222137451172,184.156051635742,36.0907325744629,-39.8733062744141,173.062957763672,-1.09029197692871,29.8802280426025,117.045471191406,-13.3875179290771,37.9321136474609,99.9683990478516,-33.6237030029297,33.5734901428223,93.504768371582,3.88179492950439,-15.6665353775024,142.350952148438,10.2770013809204,15.2601957321167,131.015838623047,16.2819900512695,4.30724191665649,138.902618408203,10.0785818099976,25.5499038696289,125.246276855469,-44.2597427368164,28.9955425262451,99.0787124633789,-72.0060653686523,41.817195892334,89.0815353393555,-81.2765731811523,37.7819023132324,90.4458694458008,-67.1371841430664,40.6463813781738,91.2097396850586,-98.9962005615234,31.0312404632568,98.6706695556641,-95.7040786743164,32.8905220031738,95.2467346191406,-90.7835006713867,33.8998222351074,93.4636611938477,-107.113006591797,27.0883541107178,108.366622924805,-105.005798339844,30.6966075897217,106.960487365723,-113.07258605957,21.3612937927246,112.388023376465,-118.947166442871,15.8619546890259,116.053382873535,-124.189674377441,11.8618621826172,119.128677368164,-127.238975524902,12.0702829360962,119.933753967285,-139.583190917969,7.51161623001099,121.57292175293,-130.671310424805,11.6289396286011,120.577819824219,-151.988143920898,-3.6964099407196,127.03995513916,-155.427490234375,-7.9300651550293,128.660858154297,-145.982818603516,0.603434026241302,125.403289794922,-143.050521850586,7.41315603256226,122.549011230469,-148.825592041016,0.201059997081757,125.630813598633,-157.615447998047,-7.95087909698486,128.138427734375,71.8161315917969,-187.443374633789,174.848129272461,67.2352828979492,-186.985321044922,175.945236206055,85.5829772949219,-197.009307861328,163.156982421875,82.2297515869141,-185.92121887207,171.463806152344, +78.2300643920898,-187.507369995117,171.912857055664,106.628944396973,-219.156463623047,147.161437988281,99.1760177612305,-215.176086425781,147.83349609375,89.5225677490234,-206.445236206055,150.848785400391,96.85888671875,-210.235595703125,146.791381835938,58.8802642822266,-177.954437255859,178.169464111328,56.603141784668,-163.762054443359,182.246856689453,61.788948059082,-158.948577880859,185.206161499023,60.9925727844238,-154.820159912109,186.767303466797,57.9164695739746,-141.837905883789,186.222244262695,63.9663619995117,-146.618377685547,186.694290161133,50.4146347045898,-127.290473937988,188.416473388672,52.9607810974121,-126.6494140625,187.92741394043,40.8994026184082,-114.067176818848,193.655975341797,42.9257011413574,-117.88355255127,193.362945556641,40.7672882080078,-101.513946533203,192.079818725586,36.7321968078613,-94.4906616210938,189.546585083008,7.84064292907715,-18.9016513824463,143.860092163086,35.2093467712402,-62.0115776062012,187.315353393555,28.6490020751953,-79.938232421875,189.016525268555,33.3631629943848,-84.1609497070313,187.966430664063,36.4097633361816,-36.1524429321289,167.900466918945,23.1943683624268,-27.1490612030029,147.171432495117,26.7671165466309,-27.9681415557861,148.628570556641,17.7158298492432,-22.8299369812012,144.985214233398,35.1160354614258,-44.1874313354492,177.585403442383,-40.442268371582,31.0310401916504,95.9100036621094,-0.617720007896423,34.7915115356445,111.819961547852,-3.08490800857544,38.5960845947266,105.178314208984,-18.7635440826416,37.8878135681152,95.9919128417969,-5.6795220375061,34.235954284668,110.269805908203,-38.4308700561523,33.8104133605957,90.7611999511719,9.06146240234375,-5.42416191101074,141.786895751953,8.6816349029541,-9.62892436981201,142.766983032227,15.1718816757202,10.1636962890625,135.340270996094,17.2762870788574,-0.618161976337433,141.292846679688,8.2277307510376,30.4955883026123,120.946853637695,-52.4037399291992,32.3551712036133,96.6955795288086,-41.9599189758301,33.1437454223633,92.0723266601563,-80.9806365966797,40.9572143554688,85.8182144165039, +-60.7798614501953,38.0296287536621,93.2262344360352,-86.1404418945313,38.2327461242676,88.39306640625,-101.472442626953,35.1998481750488,100.448844909668,-110.011283874512,25.4993991851807,110.590835571289,-103.389640808105,34.5023803710938,104.649253845215,-122.798538208008,16.7798442840576,118.295593261719,-117.503021240234,21.1741752624512,115.533325195313,-135.965835571289,12.1502914428711,121.560913085938,-150.620758056641,-2.10467600822449,126.399894714355,-154.374130249023,-5.20506477355957,127.604507446289,-156.156814575195,-7.93700313568115,128.486724853516,-148.049011230469,2.58987402915955,124.786231994629,-146.492858886719,7.1821141242981,124.033157348633,-150.061950683594,-1.04034399986267,126.248626708984,87.5568771362305,-182.606903076172,171.572814941406,105.747856140137,-214.264999389648,147.025421142578,108.628135681152,-226.924224853516,145.506256103516,91.7064819335938,-198.777481079102,156.602340698242,92.3467407226563,-206.980285644531,148.673568725586,63.303596496582,-182.17985534668,176.878326416016,62.4582138061523,-178.551498413086,177.076354980469,63.2904968261719,-173.742034912109,177.169357299805,59.1882934570313,-168.955551147461,179.892639160156,60.9060592651367,-136.891418457031,184.931121826172,56.0988922119141,-133.167053222656,185.851211547852,69.8086395263672,-146.219329833984,185.663192749023,66.7910385131836,-155.085205078125,185.978225708008,56.3862228393555,-124.136161804199,187.557388305664,47.5892562866211,-118.752632141113,192.72688293457,45.5460586547852,-106.05339050293,193.181930541992,41.8477973937988,-92.9758071899414,189.670593261719,47.3411331176758,-109.254707336426,193.54997253418,11.0084743499756,-17.9704608917236,144.412155151367,33.3108596801758,-74.2969818115234,188.2724609375,37.4427642822266,-73.8659439086914,188.395462036133,37.9305114746094,-52.2425193786621,183.510986328125,41.5517654418945,-60.9465751647949,186.129241943359,29.5826930999756,-28.7015113830566,148.85758972168,36.0335273742676,-31.7139072418213,157.96647644043,42.0173110961914,-34.3737678527832,165.034164428711, +20.8489379882813,-23.8876399993896,145.190231323242,44.876594543457,-44.5126647949219,177.862442016602,42.5084609985352,-47.6042671203613,180.228668212891,6.6101222038269,34.8134117126465,115.75634765625,-10.4724311828613,40.8464012145996,96.1900253295898,-23.4928073883057,38.8983116149902,90.1427383422852,-36.3479690551758,39.0934295654297,78.8930358886719,16.9562568664551,-5.46619606018066,142.684982299805,18.2475814819336,20.2856884002686,130.161758422852,25.0783538818359,4.53700494766235,140.457778930664,24.0318508148193,15.8825559616089,134.376159667969,17.9039497375488,30.3863773345947,123.779136657715,-46.5602684020996,37.2132453918457,86.4482727050781,-42.666088104248,35.1389465332031,88.4730682373047,-67.8843612670898,44.5184631347656,84.6484985351563,-71.8824462890625,44.4791603088379,84.2156600952148,-58.1345024108887,42.3913536071777,85.3175659179688,-98.3495407104492,35.6335906982422,95.4748611450195,-95.1748275756836,37.5410766601563,92.0340194702148,-91.5590744018555,37.5692825317383,89.6373825073242,-105.161811828613,35.4047698974609,108.35262298584,-110.229309082031,30.2796669006348,112.328010559082,-113.339614868164,25.6218128204346,113.294105529785,-126.20287322998,17.1354808807373,120.975860595703,-128.891128540039,16.7793445587158,122.345993041992,-143.308547973633,11.6916456222534,123.466102600098,-132.33447265625,16.7957458496094,123.551109313965,-151.639358520508,-2.02159810066223,126.32438659668,-155.783264160156,-7.30544090270996,128.286071777344,-157.241912841797,-7.31931686401367,127.937789916992,71.7666320800781,-182.775909423828,175.998260498047,78.1923522949219,-181.540786743164,173.57600402832,90.540168762207,-185.952224731445,167.834442138672,81.2759628295898,-182.015838623047,172.865951538086,84.7114944458008,-178.231475830078,173.591003417969,110.740341186523,-218.46240234375,145.937301635742,104.098693847656,-209.564544677734,145.754287719727,111.682441711426,-232.653793334961,142.115921020508,93.4805603027344,-202.1748046875,151.663879394531,91.1624298095703,-192.100830078125,162.678939819336, +96.4546508789063,-205.659164428711,147.715469360352,69.058464050293,-182.246856689453,176.648315429688,62.9535636901855,-169.04557800293,178.837524414063,61.9812660217285,-163.901062011719,182.121841430664,70.1720657348633,-150.50276184082,185.801208496094,68.0703659057617,-137.450469970703,184.308059692383,52.6259536743164,-118.846641540527,191.01872253418,55.8223648071289,-118.892646789551,189.335556030273,48.7229690551758,-113.841156005859,193.404968261719,48.4378395080566,-104.465240478516,192.793899536133,36.2973518371582,-86.1874465942383,188.09342956543,43.6733741760254,-74.0830612182617,188.095428466797,42.3496437072754,-56.8073654174805,185.011138916016,42.1311225891113,-37.2918548583984,169.860641479492,26.5124931335449,-23.0751628875732,145.262237548828,32.1425437927246,-30.1313533782959,151.395843505859,29.7940120697021,-25.7162189483643,145.642272949219,22.6556148529053,-22.392692565918,145.020217895508,17.3663959503174,-16.7430400848389,144.458160400391,48.744270324707,-40.7801933288574,174.582122802734,11.6534366607666,41.8721046447754,109.64274597168,-4.46461296081543,41.5951766967773,98.940299987793,-10.7697610855103,42.7209854125977,91.5420761108398,-18.5140190124512,43.4946594238281,82.0086364746094,-31.6428050994873,37.1175346374512,87.2807540893555,-39.1481437683105,37.5965843200684,81.8199234008789,15.0242671966553,25.8918361663818,126.321380615234,25.9008331298828,-0.257115006446838,142.630966186523,13.1243810653687,34.1450462341309,119.068672180176,-55.6588592529297,39.6424827575684,88.3738632202148,-81.4177856445313,43.7279853820801,80.824821472168,-88.9358215332031,40.9161109924316,84.9276275634766,-98.0173110961914,39.5761795043945,94.5915756225586,-104.346725463867,42.8644981384277,106.033393859863,-107.21501159668,34.8349151611328,110.856864929199,-122.909553527832,20.2758865356445,119.745735168457,-117.771049499512,25.9545421600342,117.838554382324,-138.150054931641,16.6495304107666,125.109260559082,-150.521759033203,0.107064999639988,126.021858215332,-153.676559448242,-1.85544204711914,126.173370361328, +-149.513168334961,6.98792505264282,125.736328125,-146.475860595703,11.8451614379883,126.065353393555,-156.494842529297,-6.05619382858276,127.536499023438,90.9382095336914,-181.362777709961,170.367706298828,88.568473815918,-178.079452514648,172.951950073242,111.543426513672,-214.032974243164,145.537261962891,100.676361083984,-206.018188476563,146.024307250977,108.626136779785,-209.94157409668,145.070220947266,112.394508361816,-227.497299194336,143.527069091797,113.437614440918,-222.285797119141,144.095123291016,96.9783020019531,-196.292236328125,154.367126464844,98.5751571655273,-191.726776123047,156.788360595703,68.5694198608398,-173.856048583984,176.399276733398,70.6515197753906,-169.00456237793,177.304382324219,67.1235733032227,-159.751647949219,183.963027954102,62.8406524658203,-132.560989379883,184.329055786133,62.5117225646973,-126.034355163574,185.021133422852,76.5376968383789,-150.838790893555,183.591003417969,72.7274169921875,-137.57649230957,183.316970825195,72.9535446166992,-155.674255371094,183.88801574707,58.9031677246094,-116.578422546387,187.90641784668,52.7669677734375,-114.291198730469,192.240844726563,47.4196395874023,-96.3014373779297,190.431655883789,42.7458839416504,-87.7559967041016,189.29655456543,52.028995513916,-109.792755126953,192.834899902344,41.8959999084473,-80.5423965454102,189.034515380859,45.8903923034668,-52.2249183654785,182.770904541016,47.2709274291992,-70.249382019043,187.044342041016,50.5650482177734,-61.4616241455078,185.185150146484,32.0105323791504,-28.1497573852539,147.134414672852,46.8587875366211,-32.5977935791016,161.173797607422,35.9953231811523,-30.5248908996582,152.806976318359,48.2452201843262,-37.9232139587402,171.16877746582,46.8813858032227,-48.4316444396973,180.65771484375,54.0777931213379,-43.8239936828613,176.997344970703,8.27455520629883,44.5001602172852,104.162208557129,0.718227028846741,43.6706809997559,99.6682662963867,-5.31177616119385,45.6028671264648,89.956413269043,-24.5411109924316,44.3825492858887,74.7507247924805,-25.9896507263184,40.0417251586914,85.5201797485352, +-40.226245880127,39.751895904541,77.7842254638672,-31.6388053894043,41.7112846374512,76.1439666748047,26.2155647277832,24.0158538818359,129.355682373047,21.5481052398682,-4.71182203292847,143.184036254883,27.4788875579834,16.1693859100342,134.525177001953,32.5572853088379,0.295127987861633,142.641983032227,22.0174522399902,34.9115219116211,120.744834899902,-47.8971977233887,39.8489074707031,82.6631088256836,-61.3772201538086,47.9409942626953,75.6899185180664,-70.7940368652344,48.8629875183105,75.7619247436523,-82.1423568725586,46.5867652893066,75.5022048950195,-85.5406875610352,44.0953216552734,79.760612487793,-52.4801483154297,43.1033210754395,80.2560729980469,-93.2434463500977,41.0333213806152,87.9487228393555,-107.185012817383,40.4684677124023,111.078887939453,-114.767753601074,35.3917694091797,118.998664855957,-106.795974731445,45.7767868041992,109.667755126953,-128.19807434082,25.6841163635254,127.967544555664,-124.980751037598,26.5865058898926,125.926338195801,-135.630798339844,22.1727733612061,129.065643310547,-142.520477294922,15.5354232788086,126.074356079102,-151.441345214844,2.40188503265381,125.568313598633,75.0192489624023,-178.123458862305,175.080169677734,78.2301635742188,-176.095260620117,174.397079467773,100.37133026123,-187.470367431641,158.269515991211,81.8957214355469,-174.139053344727,174.311080932617,101.465438842773,-182.425888061523,160.258712768555,86.6328887939453,-173.836029052734,174.275085449219,116.068870544434,-217.93635559082,143.212036132813,103.974678039551,-205.841171264648,145.139236450195,107.558036804199,-205.220108032227,143.915115356445,117.404998779297,-227.879318237305,140.25373840332,99.9996871948242,-200.764663696289,148.895599365234,73.1870651245117,-173.464996337891,175.731216430664,69.7431335449219,-164.835159301758,180.034652709961,62.1357841491699,-116.978462219238,186.220245361328,80.8325119018555,-146.006317138672,182.161849975586,69.3794937133789,-132.76301574707,183.871017456055,55.8891716003418,-114.436218261719,190.519668579102,52.8649749755859,-97.177619934082,189.87760925293, +45.8785934448242,-91.1762313842773,189.598587036133,44.0854148864746,-82.6710052490234,189.470565795898,54.3791236877441,-52.3210258483887,182.062850952148,51.7316627502441,-78.8697280883789,189.005523681641,57.2241020202637,-56.164005279541,182.934921264648,30.1472492218018,-21.523509979248,145.098220825195,26.8450241088867,-18.5513172149658,145.158233642578,35.7486953735352,-28.8556270599365,148.001510620117,33.6107864379883,-24.8825397491455,145.644271850586,51.468936920166,-35.800910949707,167.947463989258,43.6948738098145,-30.9925365447998,155.589248657227,21.0427570343018,-10.9083690643311,144.172119140625,54.8995742797852,-47.8749923706055,179.798614501953,54.916877746582,-39.8023986816406,172.996963500977,15.4460077285767,39.0236206054688,114.409210205078,14.9898643493652,45.8053894042969,105.375328063965,-12.0218830108643,44.2088317871094,86.7438049316406,-36.9359245300293,44.1169204711914,69.1654815673828,-33.9364318847656,42.9022026062012,71.9353561401367,28.9068279266357,-5.36251497268677,144.842208862305,33.2444534301758,7.40130519866943,138.84260559082,31.3649673461914,-3.87781000137329,144.565170288086,31.8933181762695,30.2578659057617,125.637313842773,31.9291248321533,35.0359344482422,121.940948486328,22.8689365386963,39.3847618103027,116.642433166504,-55.4103317260742,48.6570701599121,70.4415054321289,-65.1173858642578,49.2734298706055,74.364387512207,-82.4021759033203,49.7751808166504,69.5822219848633,-96.2500381469727,43.2841415405273,91.8460083007813,-89.234748840332,45.2229309082031,81.3314743041992,-99.8844909667969,44.5914726257324,98.8927917480469,-110.447334289551,40.0739288330078,114.923263549805,-121.44841003418,30.7626132965088,124.133163452148,-102.92359161377,48.9250946044922,104.142211914063,-132.850524902344,26.1862678527832,130.768814086914,-140.116226196289,20.4206008911133,129.478698730469,-154.805679321289,2.30970597267151,126.270378112793,-148.724090576172,11.7637529373169,128.625610351563,-152.126403808594,6.90939712524414,127.621505737305,-142.598480224609,20.9106483459473,132.027938842773, +92.0672225952148,-177.526397705078,171.229782104492,100.543342590332,-177.492401123047,163.43701171875,91.3958511352539,-173.026947021484,172.622924804688,113.43660736084,-209.884567260742,143.720077514648,117.092971801758,-213.668930053711,142.700988769531,102.638549804688,-202.045806884766,146.603363037109,111.041374206543,-205.644149780273,142.637985229492,115.644821166992,-233.789901733398,138.137542724609,121.414390563965,-225.228057861328,138.808609008789,104.251708984375,-188.966522216797,154.795181274414,76.9537353515625,-162.08088684082,178.822525024414,71.7694320678711,-159.854675292969,182.518890380859,65.5307159423828,-128.063537597656,184.301055908203,65.3169937133789,-119.966758728027,185.399169921875,82.4358749389648,-151.866882324219,181.172760009766,81.6261901855469,-155.751251220703,180.219665527344,74.6589126586914,-132.430969238281,183.39697265625,80.6543960571289,-142.505966186523,181.924835205078,62.5603256225586,-110.667839050293,186.512283325195,55.5558395385742,-109.586738586426,191.392761230469,54.4229278564453,-104.948287963867,191.587783813477,51.6247520446777,-92.4897613525391,189.392562866211,52.5418434143066,-68.3640975952148,186.298263549805,58.3369102478027,-64.7434463500977,184.781112670898,24.5633010864258,-14.8045501708984,145.089218139648,54.2300071716309,-34.4672775268555,164.824157714844,53.1974105834961,-31.7707118988037,158.063491821289,40.534366607666,-29.8916301727295,149.652679443359,62.3935089111328,-44.3361434936523,175.080169677734,60.7927551269531,-48.1200141906738,178.683517456055,21.0752601623535,44.2454376220703,109.792762756348,13.1670846939087,48.7359771728516,99.6798706054688,5.11757612228394,45.1202201843262,100.920890808105,5.88319110870361,51.7645721435547,88.5132751464844,-40.4494705200195,45.5496635437012,67.8745574951172,33.185546875,25.4272937774658,129.027648925781,33.7217979431152,15.4944181442261,134.773208618164,40.5117645263672,-4.65680599212646,144.560165405273,37.8400039672852,3.28669190406799,141.282852172852,26.877628326416,39.328254699707,117.605529785156, +-45.8708000183105,45.6226692199707,70.8964538574219,-63.3485107421875,51.5263481140137,68.328498840332,-68.4059143066406,51.5964546203613,69.3438034057617,-74.7239303588867,51.4162406921387,68.8468475341797,-85.8394165039063,47.3145332336426,74.7798385620117,-50.7607803344727,48.4786491394043,68.2230834960938,-94.3674545288086,45.0160102844238,87.9192199707031,-93.1661376953125,48.2641296386719,84.6693954467773,-112.060485839844,44.9407005310059,116.385406494141,-109.060195922852,49.3737373352051,111.940971374512,-126.399894714355,36.143440246582,130.798812866211,-116.299903869629,40.0273208618164,121.752937316895,-105.064796447754,53.3227272033691,106.724464416504,-128.58610534668,34.3496627807617,131.857925415039,-131.252365112305,30.4787864685059,131.947937011719,-138.19905090332,25.8840370178223,132.985046386719,81.2819595336914,-168.660522460938,174.968139648438,84.8782119750977,-169.160568237305,174.302093505859,103.914680480957,-177.484390258789,161.075790405273,87.6800842285156,-165.324203491211,173.648025512695,122.916542053223,-218.128372192383,138.839599609375,105.954879760742,-200.805679321289,145.439270019531,110.090286254883,-201.33073425293,142.831008911133,122.181465148926,-227.892333984375,137.001419067383,103.903671264648,-196.488250732422,149.508666992188,75.6831130981445,-169.259582519531,175.932235717773,65.7625427246094,-114.06517791748,185.946228027344,85.5069732666016,-146.825393676758,180.172668457031,71.073860168457,-128.572601318359,184.221069335938,80.2433624267578,-132.235961914063,182.667907714844,81.3760681152344,-137.090423583984,181.782821655273,85.9635162353516,-142.378952026367,179.946640014648,55.7898597717285,-101.307922363281,190.099624633789,56.0429878234863,-96.4398498535156,189.183532714844,54.523738861084,-90.6421813964844,189.308547973633,54.3400192260742,-83.144645690918,189.639587402344,60.1072845458984,-52.4537391662598,181.19775390625,57.7171516418457,-79.0394439697266,189.117538452148,68.234375,-60.7415504455566,181.724822998047,33.2640533447266,-19.0740699768066,145.932312011719, +32.1483459472656,-13.3118047714233,146.353332519531,37.6109809875488,-25.6753158569336,145.916305541992,56.4961280822754,-37.9045143127441,170.112670898438,48.8755874633789,-30.2895679473877,152.444946289063,41.5965728759766,-28.5426979064941,146.504348754883,29.8095169067383,-9.14290618896484,145.835296630859,67.4036026000977,-40.4510650634766,169.303604125977,22.8298320770264,53.4046325683594,96.3133392333984,2.27980303764343,51.9879913330078,84.5990447998047,-34.1987533569336,46.3562431335449,64.5710296630859,-39.7409019470215,47.4570503234863,62.3709144592285,36.0583267211914,18.3846015930176,133.493087768555,33.512580871582,-9.50376129150391,146.128326416016,37.7821998596191,-0.784823000431061,143.097015380859,39.6323776245117,32.8835220336914,124.842231750488,38.5985794067383,39.4125595092773,119.390701293945,25.3552799224854,43.3804512023926,112.621040344238,-57.9987907409668,51.3916358947754,65.1051788330078,-80.0847549438477,51.633659362793,66.674430847168,-86.2902603149414,50.0908088684082,70.4673080444336,-99.1650238037109,48.7386741638184,97.6517715454102,-97.4778594970703,51.5120468139648,93.0057220458984,-89.7158966064453,48.5930595397949,78.7085189819336,-100.826385498047,53.2733192443848,99.6508712768555,-138.416061401367,30.8266220092773,135.861312866211,-150.537246704102,11.8268594741821,131.581909179688,-146.710891723633,17.0491714477539,132.89501953125,105.825866699219,-182.152847290039,158.139495849609,95.5582580566406,-173.587020874023,169.262588500977,101.488441467285,-173.096969604492,164.2041015625,92.1569290161133,-169.590621948242,172.099868774414,116.103866577148,-205.119094848633,140.600769042969,119.870246887207,-209.355514526367,140.319763183594,125.615798950195,-213.075866699219,137.048446655273,113.869659423828,-201.31672668457,140.706787109375,120.199272155762,-233.219863891602,133.456085205078,126.111854553223,-218.601425170898,136.169342041016,107.842063903809,-192.352844238281,150.397735595703,79.9901275634766,-164.642135620117,176.456298828125,71.8566360473633,-119.113670349121,186.287261962891, +84.1074371337891,-155.544250488281,178.747512817383,85.8178024291992,-150.900787353516,179.534591674805,80.7630081176758,-159.915664672852,178.339477539063,75.171760559082,-120.74983215332,186.076232910156,85.0336227416992,-137.154449462891,180.648712158203,65.2333908081055,-107.139495849609,185.656204223633,62.3450012207031,-101.892990112305,186.975326538086,58.7284507751465,-105.265312194824,189.327545166016,56.694149017334,-70.9093475341797,186.725311279297,61.2360954284668,-66.7649383544922,185.000137329102,37.8815078735352,-21.955150604248,145.831298828125,60.4414176940918,-36.318058013916,165.635238647461,58.7555503845215,-33.768009185791,161.08479309082,55.7963600158691,-31.1643543243408,154.927185058594,49.1996154785156,-28.9450359344482,148.579574584961,67.4968109130859,-48.3895416259766,176.395278930664,72.6213150024414,-44.1819305419922,171.399795532227,66.4146041870117,-52.5992546081543,179.414596557617,9.76824188232422,52.2863235473633,90.6772918701172,-44.6345825195313,47.6347694396973,65.7227401733398,43.2653312683105,-9.75368595123291,145.946304321289,43.6600723266602,5.88157606124878,140.61979675293,42.8349914550781,12.6927433013916,137.663497924805,40.3510513305664,26.0288505554199,129.824722290039,30.2527599334717,43.4119529724121,114.077178955078,-64.250602722168,53.5699501037598,62.3690147399902,-76.9942474365234,53.6834602355957,62.4889259338379,-83.7744140625,51.8985862731934,66.6078262329102,-88.3767623901367,49.614860534668,74.0144577026367,-52.2142219543457,50.7954788208008,62.8590660095215,-92.4847717285156,52.4918403625488,80.7594146728516,-118.939163208008,44.2644386291504,124.55721282959,-112.186500549316,53.884578704834,114.517227172852,-123.690628051758,39.790699005127,129.166656494141,-103.540649414063,60.4434242248535,101.056907653809,-127.859031677246,40.7223892211914,132.911026000977,-137.645980834961,35.4778747558594,137.031433105469,-141.106338500977,25.5954074859619,134.750213623047,-144.440658569336,21.5049076080322,134.831207275391,84.4580688476563,-164.686141967773,174.617111206055, +108.896171569824,-187.314361572266,153.921081542969,107.164993286133,-177.748428344727,159.837661743164,104.672752380371,-173.062957763672,162.221893310547,91.6235733032227,-164.459106445313,171.672821044922,108.283103942871,-196.998306274414,146.195327758789,112.416511535645,-196.276229858398,144.358154296875,125.600799560547,-224.780029296875,134.273162841797,122.994552612305,-230.142547607422,133.048049926758,71.5648040771484,-115.038276672363,186.653289794922,78.0588455200195,-120.880851745605,185.599182128906,89.5317687988281,-139.17463684082,178.336486816406,67.0960693359375,-107.766555786133,185.602188110352,59.0058784484863,-100.307823181152,188.659484863281,58.4652252197266,-91.9674072265625,188.932525634766,58.439022064209,-84.7647094726563,189.622573852539,63.8519515991211,-75.171760559082,188.074432373047,72.7068176269531,-65.5436248779297,182.762908935547,46.717170715332,-18.4155044555664,146.643371582031,45.7229766845703,-26.650110244751,145.929306030273,66.1663818359375,-38.4006614685059,166.887359619141,55.4438285827637,-29.5745964050293,150.614761352539,70.9737548828125,-39.8054008483887,166.686340332031,32.3298645019531,48.1722183227539,107.729560852051,-36.5885925292969,48.1517181396484,59.0539894104004,-47.2592353820801,50.2863273620605,58.3146171569824,42.1051216125488,-13.9658689498901,146.566375732422,45.7887802124023,1.69342601299286,141.91291809082,49.1754112243652,14.3769092559814,137.612487792969,41.6330757141113,20.2516841888428,133.521087646484,51.2072105407715,27.0298480987549,130.10075378418,43.1800270080566,39.0896301269531,119.925750732422,36.7136917114258,42.4969673156738,116.122375488281,-77.4904937744141,55.2976188659668,57.7859687805176,-81.2158660888672,53.9686889648438,62.1363906860352,-87.7058944702148,53.4192352294922,68.917854309082,-89.1870422363281,51.9656944274902,72.3220901489258,-98.3563385009766,58.6828536987305,91.897705078125,-95.5958709716797,61.5477294921875,82.8396224975586,-115.95686340332,48.9586982727051,119.712738037109,-107.833068847656,58.0630874633789,108.631645202637, +-137.283950805664,39.9079093933105,137.79150390625,-141.551376342773,32.4950866699219,139.130630493164,-142.881500244141,26.2538738250732,136.977416992188,-146.335845947266,21.5608139038086,137.930511474609,110.033271789551,-182.570877075195,156.903381347656,88.1021347045898,-159.886672973633,173.774032592773,98.1341094970703,-168.738540649414,167.285400390625,101.975486755371,-169.136566162109,164.484130859375,94.9476013183594,-164.0390625,169.144577026367,120.368286132813,-205.540145874023,138.806610107422,119.818237304688,-200.5146484375,137.834518432617,131.75341796875,-207.778350830078,131.697906494141,129.138153076172,-214.764038085938,134.487182617188,116.450904846191,-196.557250976563,140.880798339844,123.159561157227,-233.263854980469,126.798431396484,129.814208984375,-218.817443847656,132.756011962891,111.272399902344,-191.901794433594,149.128616333008,83.8511123657227,-160.470733642578,176.195266723633,86.8902053833008,-156.344314575195,175.792221069336,91.2448348999023,-142.594970703125,176.760330200195,82.31005859375,-125.097259521484,183.544982910156,76.2530670166016,-114.561225891113,186.425277709961,91.2814331054688,-132.194961547852,179.061538696289,65.723030090332,-101.811981201172,185.405166625977,61.0849800109863,-96.560661315918,187.87841796875,63.9559631347656,-78.7542114257813,188.951522827148,71.4738006591797,-60.8678665161133,180.931732177734,67.4676055908203,-70.7680358886719,185.981231689453,49.7596702575684,-20.760835647583,146.509353637695,63.8316497802734,-35.0482330322266,161.053787231445,61.4768180847168,-30.7345123291016,152.31494140625,54.1101989746094,-27.0231475830078,147.616470336914,49.594352722168,-25.5835056304932,146.440353393555,71.1902694702148,-54.3447265625,178.095458984375,73.1564636230469,-48.2495307922363,174.064056396484,74.7199172973633,-40.2197418212891,165.328201293945,-40.8349075317383,48.7280769348145,57.6224479675293,48.1011085510254,-14.1985912322998,146.339340209961,49.3119277954102,-2.92716693878174,142.883010864258,51.9128837585449,8.36182880401611,140.205749511719, +48.6838684082031,21.8153381347656,133.352066040039,47.9247894287109,35.1198425292969,123.76513671875,38.4792633056641,44.3026428222656,114.159187316895,-53.7370681762695,53.0924034118652,54.7680702209473,-71.16748046875,56.2528114318848,52.6603660583496,-85.421875,54.6819610595703,64.984977722168,-90.6517868041992,56.0529937744141,72.6475219726563,-123.972648620605,49.4646492004395,128.423583984375,-126.449897766113,44.863094329834,131.841918945313,-117.929061889648,53.0142974853516,120.436805725098,-114.819755554199,58.1836013793945,115.826354980469,-100.399345397949,62.6748428344727,93.881706237793,-106.805969238281,66.9486618041992,102.356033325195,-129.846221923828,44.5111618041992,134.194152832031,-140.690292358398,39.0421257019043,140.113723754883,113.766639709473,-186.99333190918,152.798980712891,107.85506439209,-173.05094909668,161.321823120117,113.986663818359,-177.478393554688,158.970581054688,104.78776550293,-168.477508544922,163.099990844727,93.5982666015625,-160.187698364258,169.850646972656,124.691719055176,-201.484741210938,135.141235351563,116.562919616699,-193.036926269531,144.401153564453,128.8701171875,-223.754928588867,130.618804931641,127.073944091797,-229.097442626953,126.779426574707,73.1530685424805,-110.956871032715,186.415283203125,90.2211380004883,-149.458648681641,175.781219482422,80.6100921630859,-116.571418762207,185.490188598633,97.3413314819336,-141.302841186523,175.376190185547,69.0272598266602,-100.60285949707,184.586090087891,67.2849884033203,-97.4621505737305,185.344161987305,67.7426300048828,-82.9710311889648,188.698486328125,64.0439758300781,-92.5527725219727,187.637405395508,69.4867095947266,-78.9583358764648,188.233444213867,76.1736526489258,-61.6396408081055,179.849624633789,73.1079559326172,-70.2874908447266,184.893127441406,68.1527709960938,-35.7020988464355,160.65673828125,58.6834487915039,-27.4064846038818,148.119522094727,77.9876403808594,-48.626766204834,172.151870727539,71.9202423095703,-35.6079902648926,159.760650634766,80.6426010131836,-44.5149612426758,167.310394287109, +40.5111656188965,47.374942779541,110.011787414551,51.740665435791,2.9421980381012,141.526870727539,52.9993896484375,13.2556991577148,138.081527709961,54.4173278808594,22.2493801116943,132.975021362305,52.9697875976563,30.7585144042969,127.19947052002,48.1982154846191,38.1153335571289,121.169876098633,45.0595092773438,42.4423599243164,116.125381469727,-64.6081390380859,54.9767875671387,56.2600173950195,-78.9434432983398,57.1893043518066,52.4852447509766,-81.9037322998047,56.3429183959961,57.1883087158203,-84.0162353515625,55.6492538452148,61.474925994873,-88.9911270141602,58.0090827941895,67.9663619995117,-92.1731414794922,62.0595817565918,73.2235717773438,-122.045471191406,56.274715423584,123.228080749512,-114.406715393066,62.6412391662598,113.518127441406,-109.982284545898,64.6064300537109,107.829566955566,-137.910018920898,44.9091033935547,138.251541137695,-140.918304443359,44.0086135864258,140.44775390625,-143.577575683594,33.2426567077637,141.777893066406,-144.929702758789,26.330680847168,139.841720581055,115.825843811035,-182.189849853516,155.839263916016,97.0350036621094,-160.985778808594,167.691436767578,114.541717529297,-173.028945922852,160.475723266602,90.8933944702148,-155.886276245117,172.422897338867,119.897247314453,-196.965301513672,138.236541748047,128.958129882813,-200.549652099609,132.54899597168,135.182754516602,-206.503234863281,129.008651733398,133.632598876953,-214.119979858398,130.07275390625,117.295989990234,-186.062240600586,152.144912719727,121.356391906738,-192.031814575195,140.797805786133,125.917831420898,-232.805816650391,120.049766540527,132.859512329102,-219.270477294922,128.455581665039,74.3491821289063,-101.596954345703,184.482070922852,93.154426574707,-147.46044921875,174.434097290039,87.6720886230469,-126.123359680176,181.240753173828,84.0883331298828,-119.154670715332,183.821014404297,78.5168838500977,-109.286712646484,185.698196411133,98.7685775756836,-145.812286376953,173.249984741211,98.4244384765625,-138.493560791016,175.260177612305,67.8911437988281,-87.7850036621094,187.944427490234, +70.6935195922852,-74.4773025512695,187.011322021484,85.4126663208008,-65.1349868774414,179.424591064453,84.4326629638672,-69.3460006713867,181.493789672852,55.4427261352539,-22.5890121459961,146.240341186523,52.9339828491211,-23.5245056152344,146.563369750977,65.7403335571289,-32.1066474914551,154.779159545898,62.3542060852051,-26.6997165679932,147.40544128418,76.9018325805664,-56.2248077392578,176.577301025391,75.6143035888672,-36.099437713623,160.022674560547,77.8794250488281,-40.2678451538086,163.871063232422,-45.8960037231445,51.2456207275391,46.708683013916,-53.0009994506836,53.7251625061035,48.5493621826172,52.5742454528809,-7.37630319595337,143.432067871094,60.1198844909668,3.72093510627747,141.051818847656,57.5772361755371,7.97361087799072,139.981719970703,56.9255714416504,26.3747844696045,129.929733276367,53.5170402526855,35.0989418029785,123.292091369629,-61.9083709716797,55.5520439147949,50.5634574890137,-79.5611038208008,58.558536529541,47.9146995544434,-87.1116409301758,58.3029136657715,62.6557464599609,-99.1560287475586,67.5897216796875,85.8952178955078,-96.2979431152344,66.0183715820313,80.9521408081055,-127.705017089844,55.2357139587402,129.537689208984,-129.180160522461,48.6632690429688,133.1640625,-123.846641540527,62.8884658813477,122.147972106934,-101.701469421387,66.1113739013672,93.6388854980469,-111.497428894043,71.7246246337891,105.06029510498,-137.436965942383,49.6926727294922,137.049438476563,-142.90950012207,39.9943161010742,142.481979370117,108.577140808105,-167.357406616211,162.433929443359,117.165977478027,-177.565399169922,157.894485473633,100.838371276855,-160.322723388672,165.844268798828,92.4735565185547,-155.253219604492,171.539810180664,123.799629211426,-196.187225341797,136.49137878418,125.10075378418,-186.902313232422,142.865997314453,119.578216552734,-186.843307495117,149.45964050293,130.992340087891,-224.313995361328,126.536399841309,129.67919921875,-228.978439331055,120.381797790527,93.7131805419922,-124.455192565918,178.002456665039,84.2923583984375,-110.830856323242,184.196044921875, +81.4258728027344,-109.056686401367,185.120132446289,100.65535736084,-141.488876342773,173.495010375977,100.491340637207,-132.504989624023,174.386093139648,72.1090621948242,-97.3621444702148,184.326065063477,74.4483871459961,-84.1413497924805,186.705307006836,73.4075927734375,-92.9343109130859,184.73210144043,77.0408477783203,-78.8374252319336,186.135238647461,76.6996078491211,-74.5895080566406,185.580184936523,69.3008880615234,-31.915828704834,154.710159301758,65.9942626953125,-27.3704814910889,148.446548461914,60.3608093261719,-23.2064743041992,145.617279052734,81.3691711425781,-54.2818183898926,174.134063720703,82.3455657958984,-48.9489936828613,170.467697143555,74.5485992431641,-31.8587226867676,156.206314086914,81.9202194213867,-41.1459312438965,163.495010375977,52.4663352966309,43.005615234375,115.150283813477,56.1931991577148,-5.470046043396,142.295944213867,60.1156845092773,-0.436484009027481,141.604888916016,59.7803535461426,15.3445043563843,135.819320678711,65.1199722290039,21.5013084411621,131.797927856445,65.1030731201172,27.2865734100342,127.397483825684,59.0408821105957,40.4474639892578,116.945465087891,-73.2711868286133,58.0047836303711,45.243537902832,-82.7744140625,58.4397239685059,52.027904510498,-85.1095428466797,57.5519371032715,58.8267669677734,-89.1124420166016,60.8008575439453,65.2076873779297,-94.0381240844727,66.754638671875,74.3650894165039,-125.535804748535,59.0326843261719,125.384284973145,-112.94457244873,66.8273468017578,109.658744812012,-124.902740478516,67.5902252197266,120.724838256836,-108.186111450195,72.5430068969727,99.667366027832,-142.398452758789,48.961597442627,140.678787231445,-143.878616333008,44.6457748413086,143.4140625,-145.282745361328,33.7905120849609,144.9501953125,119.05216217041,-181.019729614258,154.886184692383,114.912757873535,-168.903549194336,161.249801635742,105.991874694824,-160.191696166992,164.028076171875,118.078071594238,-173.026947021484,159.212600708008,97.9485931396484,-155.988296508789,168.613525390625,135.894805908203,-201.406723022461,128.566604614258, +128.361068725586,-195.868194580078,133.827117919922,124.491691589355,-191.618789672852,138.869613647461,122.59651184082,-182.178848266602,151.049819946289,129.636199951172,-231.730697631836,111.500930786133,136.266860961914,-218.211380004883,122.892044067383,75.9007339477539,-97.5220565795898,183.707000732422,89.3168487548828,-113.309097290039,181.22575378418,104.020690917969,-147.744476318359,169.200576782227,105.070793151855,-135.428268432617,171.490814208984,91.0041122436523,-69.3200912475586,179.283569335938,82.8915176391602,-73.8355331420898,183.380966186523,56.4508247375488,-19.1992816925049,145.076217651367,68.6730270385742,-27.7710208892822,150.020706176758,65.3234939575195,-23.046459197998,145.024215698242,78.7837142944336,-35.992130279541,159.749649047852,78.1064453125,-31.6852054595947,156.886383056641,-63.1029891967773,56.3913269042969,44.9496078491211,59.4102172851563,-9.31552219390869,142.010925292969,64.9498596191406,9.56839847564697,137.550491333008,65.9687576293945,-0.773810982704163,140.438766479492,-81.0333480834961,60.175895690918,42.8283996582031,-84.0112380981445,60.3448143005371,47.9871063232422,-86.3581695556641,61.3312072753906,50.9597969055176,-89.8233108520508,64.6215286254883,57.1667022705078,-97.4565582275391,70.5127105712891,78.2423706054688,-104.186714172363,71.8272399902344,92.2003402709961,-91.2329483032227,65.2851943969727,65.9707641601563,-131.237365722656,53.6058540344238,132.647003173828,-129.534194946289,63.7543487548828,126.280380249023,-127.954040527344,71.4032974243164,121.080863952637,-110.938377380371,75.7713241577148,100.574859619141,-120.10327911377,72.4219970703125,112.993072509766,-141.412368774414,53.5496482849121,138.19953918457,-145.667785644531,40.2291412353516,146.661376953125,-145.47526550293,37.0098266601563,145.805786132813,109.342208862305,-160.583724975586,162.941970825195,120.651321411133,-176.683319091797,156.086303710938,102.966583251953,-155.233215332031,166.690338134766,132.522491455078,-196.485260009766,130.914825439453,128.029037475586,-191.309753417969,136.623397827148, +129.569198608398,-182.311874389648,142.533966064453,133.342559814453,-223.835922241211,121.619918823242,132.859512329102,-227.913345336914,113.170097351074,99.1179046630859,-123.073059082031,176.572296142578,92.1609268188477,-113.344108581543,180.29866027832,89.5976791381836,-107.80256652832,181.244750976563,84.7784042358398,-104.684265136719,183.169952392578,80.7966156005859,-97.1939239501953,182.745910644531,106.96297454834,-142.141937255859,168.641540527344,102.725555419922,-128.003540039063,174.170074462891,82.2143478393555,-90.2326431274414,182.591888427734,82.3230590820313,-82.1478500366211,184.110046386719,82.0985336303711,-77.9758453369141,184.325057983398,88.3253479003906,-73.5888061523438,180.965744018555,90.6976852416992,-65.1911849975586,178.174468994141,85.7950057983398,-55.485034942627,174.086059570313,57.9035682678223,-14.1394853591919,143.173034667969,71.9442443847656,-28.9973411560059,152.759979248047,72.44580078125,-22.0895652770996,146.196319580078,67.9283447265625,-19.0321655273438,142.782989501953,63.9966659545898,-18.3251953125,142.743988037109,90.5473709106445,-53.1630096435547,171.406799316406,78.6368026733398,-27.6532096862793,154.407135009766,81.9734268188477,-35.8739166259766,159.871673583984,-61.0689888000488,56.1952095031738,41.5577774047852,71.3501815795898,4.91266107559204,137.841522216797,67.3561935424805,17.2859935760498,133.783111572266,74.6337127685547,21.3457927703857,129.254669189453,70.9794540405273,26.930139541626,126.033355712891,63.0752754211426,43.714282989502,113.479118347168,-76.0970611572266,59.2688064575195,39.7341995239258,-88.9238204956055,64.4621200561523,50.7167739868164,-93.3925552368164,69.4360046386719,65.2560958862305,-94.8041000366211,69.8141403198242,70.950553894043,-132.989547729492,59.018482208252,131.251861572266,-104.101707458496,77.1486587524414,85.2320556640625,-108.701156616211,79.4831924438477,91.739387512207,-115.085784912109,75.8194274902344,105.716361999512,-146.192825317383,49.1853218078613,145.341247558594,-144.320648193359,53.5900535583496,140.674789428711, +-147.770980834961,44.6051712036133,149.802688598633,117.990051269531,-164.355102539063,160.798751831055,118.591117858887,-168.575531005859,160.098693847656,106.405921936035,-155.598236083984,165.064178466797,121.358390808105,-169.136566162109,158.471527099609,133.473571777344,-191.646789550781,131.876922607422,135.147735595703,-223.533905029297,116.701438903809,79.170051574707,-93.3636474609375,182.948928833008,108.224098205566,-151.274810791016,165.452209472656,114.483711242676,-147.939498901367,162.010879516602,109.332206726074,-129.728713989258,170.0966796875,86.464973449707,-90.6387786865234,180.929733276367,92.7737884521484,-75.3225784301758,178.889526367188,94.2322235107422,-65.4854125976563,176.824325561523,90.6919860839844,-61.2544021606445,176.472305297852,71.6295166015625,-18.5294151306152,142.746994018555,89.2373352050781,-44.9665069580078,164.851150512695,81.9533309936523,-33.0427398681641,158.565551757813,84.2763519287109,-40.2704467773438,162.360916137695,64.3365936279297,-14.5179233551025,141.457870483398,70.6717224121094,11.2382011413574,135.853317260742,65.7245330810547,-10.0144815444946,140.418762207031,71.3888931274414,0.819293975830078,138.771606445313,-79.2445755004883,60.0600852966309,37.3067588806152,-85.5082855224609,62.0927848815918,44.8015937805176,-88.1269454956055,64.2913055419922,45.0006141662598,-91.9009094238281,69.376594543457,48.1857261657715,-99.2091217041016,74.0886611938477,76.4450988769531,-134.09765625,71.6772232055664,124.72322845459,-125.724822998047,76.0388565063477,115.708343505859,-114.819755554199,84.8254165649414,95.8406982421875,-116.716941833496,80.3704223632813,103.474136352539,-147.496963500977,53.8922805786133,144.514175415039,-146.159820556641,57.9519805908203,139.669677734375,125.227760314941,-177.526397705078,151.218826293945,112.540519714355,-159.501617431641,161.981887817383,109.956268310547,-155.672256469727,163.373016357422,124.274673461914,-173.345977783203,154.194122314453,140.181228637695,-191.016723632813,128.842636108398,133.209548950195,-186.487274169922,135.420272827148, +130.895324707031,-176.713317871094,145.069213867188,134.411666870117,-179.908630371094,139.717697143555,102.525543212891,-121.644920349121,174.968139648438,96.4857482910156,-113.080078125,179.512588500977,98.0630111694336,-107.750556945801,179.719619750977,90.4667587280273,-103.875175476074,180.766708374023,86.3755569458008,-95.4654541015625,180.917724609375,110.964363098145,-133.438079833984,168.544525146484,88.1272277832031,-80.0889511108398,181.361770629883,95.3687438964844,-73.5410079956055,177.363388061523,95.3472442626953,-69.2445831298828,177.20036315918,92.3591461181641,-57.2128067016602,173.579010009766,79.2375640869141,-23.4339962005615,150.979797363281,74.3663787841797,-14.4049110412598,140.019729614258,68.4935073852539,-14.4760179519653,140.692794799805,95.6600723266602,-44.8581962585449,163.125991821289,87.5013732910156,-26.9239387512207,156.524353027344,85.8279037475586,-35.9468193054199,160.170700073242,-70.4961090087891,58.5559387207031,35.2058525085449,77.4721832275391,13.8807601928711,132.831024169922,77.0861511230469,6.20074796676636,135.394271850586,77.7414093017578,17.364501953125,130.884826660156,74.9881439208984,29.8467235565186,123.693130493164,70.9531478881836,31.6868057250977,122.28199005127,-84.9334259033203,62.1119842529297,38.2867584228516,-90.9589157104492,68.0487670898438,43.4521598815918,-94.2437362670898,72.7456283569336,54.1669082641602,-100.693367004395,81.2158584594727,63.8936653137207,-139.980209350586,59.8668670654297,134.044128417969,-130.377288818359,75.315673828125,120.270790100098,-112.330513000488,84.57568359375,90.7761993408203,-118.348098754883,84.9214248657227,101.231918334961,-124.401695251465,85.1751480102539,107.442535400391,-143.253540039063,58.2920112609863,136.820404052734,119.187171936035,-160.010681152344,160.219696044922,124.131652832031,-168.487503051758,156.190322875977,135.068725585938,-187.430374145508,133.37907409668,134.087646484375,-175.964248657227,142.722991943359,99.8392791748047,-112.42301940918,178.478500366211,90.9287033081055,-98.5665588378906,179.704620361328, +112.897560119629,-150.845779418945,162.484924316406,116.111869812012,-138.337554931641,163.713043212891,114.174682617188,-128.292572021484,166.928375244141,106.21590423584,-121.396896362305,172.281890869141,91.1202239990234,-89.8857116699219,178.415481567383,95.9043960571289,-82.3413696289063,175.792221069336,93.0959167480469,-86.7010955810547,177.340377807617,94.7004699707031,-61.0690841674805,174.663116455078,98.3889389038086,-63.9017601013184,173.506011962891,78.4410781860352,-18.8793506622314,145.26823425293,71.3440856933594,-13.6639394760132,139.767700195313,78.0624465942383,-13.9272651672363,140.064727783203,86.8272018432617,-22.6054153442383,152.888977050781,98.5929565429688,-52.1370086669922,167.794448852539,89.8250961303711,-40.5148696899414,161.867858886719,88.0309219360352,-31.6555004119873,158.817565917969,68.9178466796875,43.4135551452637,113.77815246582,-64.1491928100586,57.1952056884766,33.1095504760742,77.6104049682617,10.9602737426758,133.949127197266,74.2932739257813,-5.78845691680908,137.725494384766,77.7147064208984,-4.79076910018921,136.49137878418,77.9335327148438,27.1402587890625,124.923248291016,-70.2451858520508,58.4012222290039,28.3502826690674,-81.9175338745117,60.829662322998,32.3191680908203,-87.1586456298828,63.5385246276855,40.790901184082,-90.1156387329102,66.6240310668945,39.057731628418,-95.4357604980469,74.1156616210938,40.9100112915039,-97.5607681274414,78.1604614257813,44.4130554199219,-97.5666656494141,77.7364120483398,57.9798851013184,-104.431739807129,81.8266220092773,75.6254119873047,-143.969604492188,71.1196746826172,129.643707275391,-134.856719970703,76.7463226318359,121.976959228516,-133.190551757813,85.3054580688477,113.945167541504,-109.86026763916,85.5382843017578,82.9771347045898,-114.973770141602,89.546272277832,90.7665023803711,-117.929061889648,89.5681762695313,96.8600921630859,-129.860229492188,85.097541809082,111.866966247559,-150.808288574219,58.4099235534668,146.019302368164,-147.892990112305,65.4989166259766,135.843322753906,132.245452880859,-169.630615234375,147.195434570313, +121.827438354492,-160.395721435547,159.246612548828,114.816749572754,-155.131195068359,160.934768676758,130.923324584961,-165.273193359375,150.075698852539,124.500694274902,-164.245101928711,156.878372192383,140.652282714844,-186.149230957031,131.253860473633,140.249237060547,-170.67073059082,141.53385925293,102.632553100586,-114.982269287109,176.289291381836,99.0367965698242,-103.219116210938,179.53059387207,98.9645919799805,-99.0949096679688,178.830535888672,116.286895751953,-151.366836547852,160.171691894531,117.310989379883,-130.352767944336,164.79216003418,120.844337463379,-141.836898803711,158.824554443359,100.40633392334,-68.9125518798828,172.808929443359,100.525344848633,-77.2070693969727,172.66291809082,100.750366210938,-56.4540328979492,169.485610961914,84.5551834106445,-18.5819206237793,148.0625,72.5300064086914,-9.82531261444092,138.501571655273,76.6703109741211,-9.70641136169434,137.823516845703,93.9650039672852,-40.3285522460938,161.034790039063,100.428337097168,-45.0310134887695,161.230804443359,93.5319595336914,-22.8926429748535,154.195114135742,92.0147094726563,-27.573802947998,157.408416748047,92.3006362915039,-35.7670059204102,159.834671020508,87.7913970947266,12.0338792800903,129.379669189453,81.1292419433594,-1.05955398082733,134.503173828125,83.6129913330078,7.20626592636108,132.23796081543,82.016731262207,22.8340377807617,126.230369567871,77.8699264526367,38.3002548217773,118.333602905273,79.9174194335938,35.2059478759766,120.397796630859,73.092658996582,40.1394348144531,116.477416992188,-83.720703125,61.1483917236328,29.2518711090088,-87.0046310424805,63.4023628234863,36.1831474304199,-98.4356460571289,80.1768569946289,48.364143371582,-101.688468933105,85.0224304199219,57.7506637573242,-105.358825683594,85.7577972412109,70.9773635864258,-141.769393920898,63.3372077941895,132.816009521484,-113.014579772949,88.802604675293,85.7697143554688,-122.144477844238,89.7360992431641,102.416038513184,-131.805419921875,89.2075424194336,110.890869140625,-153.127517700195,67.3213958740234,141.413864135742, +-147.791000366211,75.2335662841797,129.774719238281,-151.446350097656,69.6752319335938,136.853408813477,119.56421661377,-151.569839477539,158.709564208984,139.392166137695,-177.080352783203,138.236541748047,135.842803955078,-168.264495849609,145.305252075195,103.217613220215,-107.622543334961,177.853439331055,96.2211227416992,-93.171630859375,177.21337890625,94.4387512207031,-90.2493438720703,176.911346435547,119.947250366211,-146.287322998047,158.4365234375,120.460296630859,-133.627090454102,161.898864746094,117.520004272461,-126.54239654541,165.766250610352,109.856262207031,-121.418899536133,170.236694335938,107.331016540527,-116.601425170898,172.887954711914,97.529655456543,-85.172248840332,174.670120239258,99.110107421875,-60.4321212768555,172.039855957031,105.083793640137,-65.363899230957,169.646621704102,81.6830978393555,-14.4396152496338,141.462860107422,80.7659072875977,-9.92634296417236,137.554489135742,87.3698577880859,-17.1519794464111,147.511459350586,102.646553039551,-52.6863594055176,166.099273681641,98.401237487793,-40.280647277832,159.711654663086,90.1743316650391,-16.8310470581055,147.719482421875,92.6014633178711,-31.4630813598633,158.797561645508,87.4661636352539,16.7621421813965,127.604507446289,82.3530654907227,-5.42319107055664,135.25325012207,84.6386871337891,21.980052947998,125.846336364746,84.8679122924805,32.8985252380371,121.01586151123,-87.3468627929688,62.7691497802734,30.5771007537842,-89.0758361816406,64.692741394043,34.0795402526855,-92.0165252685547,68.0454711914063,33.8746223449707,-97.6099700927734,76.8408279418945,37.2889595031738,-99.311637878418,81.7309112548828,41.6562843322754,-100.787376403809,84.8256072998047,51.9598960876465,-142.829498291016,75.7947235107422,125.960350036621,-137.290954589844,84.6471939086914,116.729438781738,-111.81046295166,91.255744934082,79.0052490234375,-115.009773254395,95.3441467285156,84.7007064819336,-118.770141601563,94.1554260253906,95.7294845581055,-122.692527770996,94.2587356567383,101.070907592773,-126.559913635254,89.8117065429688,106.601448059082, +-150.097213745117,75.0052490234375,132.053955078125,134.305648803711,-164.48811340332,147.496459960938,125.237770080566,-146.617370605469,154.73616027832,124.951736450195,-159.353607177734,156.871383666992,131.355361938477,-157.807464599609,150.94580078125,139.488159179688,-165.009170532227,144.822204589844,105.890869140625,-111.889961242676,175.424194335938,104.435722351074,-98.7318725585938,177.33837890625,106.07788848877,-102.812080383301,177.296371459961,100.969390869141,-95.6826782226563,177.319381713867,122.381484985352,-135.057235717773,160.009689331055,123.964637756348,-143.029022216797,155.604248046875,105.283805847168,-75.9989471435547,169.588623046875,102.528541564941,-81.3696746826172,171.856842041016,104.220710754395,-61.3589134216309,169.381591796875,84.8743133544922,-14.385009765625,142.960021972656,104.909774780273,-56.6159477233887,166.906356811523,104.674751281738,-51.8275756835938,163.507034301758,106.573936462402,-47.0635108947754,159.488632202148,100.888381958008,-26.9383392333984,155.627258300781,94.037109375,-18.9122543334961,150.193725585938,98.0803070068359,-31.3656730651855,157.823471069336,97.8988876342773,-35.4596748352051,158.653549194336,94.0337142944336,10.7724561691284,128.44758605957,88.4178619384766,5.86714506149292,130.927825927734,84.3053588867188,-0.720903992652893,133.30207824707,-88.2113494873047,63.7309455871582,32.3283195495605,-100.787376403809,85.9807205200195,47.6346740722656,-104.922790527344,91.0488204956055,59.5967445373535,-145.404754638672,79.3235778808594,124.94425201416,-114.23469543457,95.7535858154297,80.2245635986328,-116.433921813965,95.5328598022461,89.9610137939453,-126.857933044434,94.214729309082,105.287315368652,-133.249557495117,94.2232284545898,110.431823730469,-154.204620361328,71.894645690918,139.488662719727,-151.283325195313,80.6243057250977,130.825836181641,-153.315521240234,76.5205001831055,135.339263916016,133.954620361328,-159.841659545898,148.779586791992,125.882827758789,-155.010177612305,155.857269287109,145.121704101563,-168.496505737305,138.189544677734, +142.137420654297,-164.209091186523,143.161041259766,109.879257202148,-108.634643554688,175.193176269531,102.443534851074,-85.7555999755859,172.916946411133,120.41429901123,-122.824035644531,166.014282226563,124.179664611816,-136.666397094727,157.443435668945,124.313682556152,-130.051742553711,160.766754150391,112.384506225586,-119.3876953125,169.942657470703,106.993980407715,-64.6841430664063,167.781448364258,109.030174255371,-71.572509765625,166.250289916992,84.5383834838867,-9.62382316589355,137.494491577148,93.6535720825195,-10.0416841506958,140.134735107422,88.0392227172852,-10.1046895980835,138.735595703125,103.714660644531,-48.0666122436523,161.468826293945,109.087181091309,-44.0835227966309,157.615447998047,103.037590026855,-22.790433883667,152.459945678711,99.5257415771484,-18.0777721405029,148.69157409668,91.2255325317383,6.9775538444519,130.160751342773,94.0471115112305,19.933952331543,123.855140686035,87.1682434082031,-5.76064395904541,134.652191162109,-89.1391372680664,63.7370452880859,29.5444488525391,-89.1074905395508,64.2148971557617,31.8119945526123,-100.41234588623,81.2556686401367,32.0172386169434,-101.196426391602,87.1832427978516,42.211238861084,-103.542655944824,93.985107421875,46.4914588928223,-108.241111755371,91.1464309692383,70.8633499145508,-106.902976989746,91.1204299926758,67.0680694580078,-148.446060180664,80.8139190673828,126.842430114746,-140.991317749023,85.5191802978516,117.889556884766,-144.00260925293,84.86181640625,120.153778076172,-139.318161010742,90.2169418334961,114.75325012207,-113.713653564453,97.645263671875,75.9202423095703,-115.009773254395,100.513847351074,77.8529357910156,-116.441917419434,102.148010253906,85.918327331543,-119.206184387207,99.8540802001953,94.1695327758789,-122.947555541992,99.0735015869141,100.013008117676,-127.31697845459,98.739875793457,104.754264831543,-137.053939819336,93.6975784301758,112.711051940918,-153.274520874023,80.2814636230469,133.806121826172,139.762191772461,-159.312606811523,146.174331665039,131.177352905273,-150.19172668457,150.824783325195, +134.533676147461,-152.663955688477,149.059616088867,146.639862060547,-162.663940429688,139.199630737305,143.106521606445,-159.258605957031,144.092132568359,110.461318969727,-93.2233352661133,173.747024536133,109.558227539063,-98.9922943115234,175.532211303711,110.819351196289,-103.832176208496,175.326171875,115.577819824219,-118.496612548828,169.508605957031,126.623901367188,-137.021423339844,154.290115356445,105.865867614746,-81.7017059326172,170.438705444336,107.015983581543,-60.3470115661621,166.415313720703,109.97526550293,-75.7309265136719,166.674331665039,108.113090515137,-56.1820030212402,162.493927001953,107.420021057129,-51.6304588317871,160.889770507813,109.821258544922,-49.8371810913086,158.881576538086,108.679145812988,-31.752010345459,155.308227539063,111.295402526855,-27.5122966766357,153.110015869141,99.176513671875,-11.2557029724121,141.478866577148,96.3484344482422,6.97013282775879,129.795715332031,97.6116638183594,16.9410591125488,124.454200744629,88.9437103271484,-0.936936020851135,132.438980102539,93.2733383178711,26.8511295318604,121.070869445801,92.5802688598633,31.3333702087402,119.10767364502,-101.312431335449,86.5206756591797,37.1851463317871,-102.693565368652,92.5139617919922,43.1671333312988,-112.731552124023,98.9537963867188,71.7430267333984,-106.044898986816,96.038215637207,55.771369934082,-108.492141723633,101.084899902344,59.5399398803711,-148.598068237305,84.6535949707031,125.10326385498,-146.433853149414,85.6251907348633,121.805938720703,-116.486915588379,110.568832397461,78.1667633056641,-118.563125610352,104.800270080566,90.4038619995117,-136.194854736328,98.5486602783203,112.23600769043,-160.596237182617,76.6029052734375,148.527557373047,-151.365341186523,85.2372512817383,129.425689697266,-154.173614501953,85.2568511962891,135.054244995117,-157.409927368164,81.3554763793945,141.790893554688,113.018569946289,-108.314613342285,173.738021850586,108.933166503906,-85.3952713012695,170.823745727539,117.40299987793,-115.557319641113,169.705627441406,124.69571685791,-124.225173950195,162.59294128418, +130.925323486328,-125.12126159668,156.142303466797,130.201263427734,-140.964813232422,150.686767578125,130.042236328125,-136.473373413086,151.183807373047,109.410217285156,-65.2553939819336,164.867156982422,113.130577087402,-73.3719863891602,164.292114257813,111.273399353027,-61.1773948669434,160.872772216797,90.8643951416016,-5.35959482192993,134.754211425781,112.77254486084,-51.1368141174316,157.983489990234,105.698852539063,-18.4144039154053,147.836486816406,113.311592102051,-22.6497192382813,149.214630126953,97.2713241577148,-5.71662998199463,136.364364624023,98.0658111572266,27.5393981933594,119.925750732422,-104.219718933105,99.1542205810547,38.4948768615723,-105.03279876709,100.795883178711,43.0109176635742,-111.20240020752,105.614349365234,60.8987693786621,-113.557640075684,105.417327880859,66.2756958007813,-142.288436889648,89.7696990966797,116.720443725586,-146.859909057617,89.4665679931641,121.089866638184,-141.008316040039,93.8310928344727,115.830352783203,-115.186790466309,105.811370849609,71.6490249633789,-118.567123413086,111.037879943848,85.3708724975586,-122.289489746094,102.95108795166,98.7906875610352,-119.74723815918,106.472427368164,93.3999557495117,-125.206771850586,103.558143615723,102.887092590332,140.166229248047,-155.640243530273,146.449356079102,136.32585144043,-138.423568725586,147.069412231445,150.804275512695,-149.896697998047,138.762603759766,146.919891357422,-153.110992431641,141.811889648438,114.410705566406,-98.2851257324219,173.116958618164,114.917755126953,-103.911186218262,172.859954833984,115.460807800293,-87.2373428344727,169.177581787109,120.971351623535,-117.352500915527,167.196380615234,127.873023986816,-124.991241455078,159.615646362305,133.592575073242,-127.14045715332,151.1328125,114.416709899902,-79.3961791992188,166.359313964844,112.19149017334,-68.6088180541992,162.987976074219,110.696342468262,-56.3981285095215,159.844665527344,113.071571350098,-44.0209159851074,156.681365966797,113.744644165039,-32.7145042419434,154.410125732422,115.752838134766,-25.2900772094727,149.913696289063, +104.361717224121,-5.41757106781006,135.868316650391,104.967781066895,-10.1244916915894,139.861709594727,97.2192230224609,-0.473722010850906,132.92903137207,99.9568939208984,6.2854962348938,130.042755126953,-103.256622314453,92.7027893066406,33.8863258361816,-107.987091064453,104.968284606934,50.5727577209473,-109.764259338379,106.203407287598,55.9753875732422,-150.064208984375,89.1860427856445,126.586410522461,-115.618835449219,109.888763427734,71.0740661621094,-117.091979980469,115.508323669434,78.7399139404297,-119.390197753906,115.549324035645,85.6205978393555,-120.374298095703,103.830177307129,95.3053436279297,-130.322265625,103.620155334473,107.565544128418,-138.671096801758,99.0096054077148,115.182289123535,-161.59733581543,83.0270309448242,148.53955078125,-157.174911499023,93.1385269165039,139.951721191406,142.311431884766,-148.377548217773,145.441268920898,143.968597412109,-153.33903503418,144.360153198242,116.433906555176,-92.2346420288086,170.429702758789,120.760330200195,-112.505027770996,167.847442626953,126.866920471191,-114.891258239746,162.685943603516,129.574203491211,-114.965270996094,160.732757568359,133.425567626953,-116.022369384766,156.904373168945,135.690795898438,-133.17204284668,147.177429199219,137.092926025391,-124.385192871094,148.067504882813,136.560882568359,-115.840354919434,152.344940185547,116.313896179199,-71.3144912719727,162.586944580078,113.296592712402,-60.3605155944824,159.069595336914,117.525016784668,-42.4474563598633,155.955291748047,116.871948242188,-55.9546813964844,158.140502929688,119.059158325195,-31.9173278808594,152.299942016602,111.949462890625,-17.1807842254639,145.173233032227,127.021934509277,-22.5196075439453,142.033920288086,102.832572937012,-1.52591896057129,133.578094482422,104.229713439941,5.60170888900757,129.722717285156,103.617652893066,14.6745376586914,125.02725982666,103.070091247559,27.7319679260254,118.637130737305,-104.523750305176,100.959892272949,33.7149085998535,-106.089904785156,106.019393920898,42.0279235839844,-113.112594604492,111.068885803223,60.9989814758301, +-114.682746887207,110.568832397461,65.8965606689453,-111.635444641113,110.680847167969,56.5387420654297,-145.780792236328,94.0634155273438,120.845848083496,-115.896865844727,115.750343322754,72.7549285888672,-122.297492980957,108.35262298584,99.9043884277344,-120.665328979492,110.409820556641,95.7729873657227,-127.109962463379,107.655548095703,105.785369873047,-134.11865234375,104.12020111084,110.74885559082,-136.773910522461,102.415031433105,113.872161865234,-140.669296264648,98.8933868408203,118.122573852539,-158.765060424805,93.3894577026367,142.509979248047,-152.040405273438,95.1743240356445,131.207855224609,143.51155090332,-144.773193359375,144.48616027832,146.719879150391,-146.91438293457,142.46696472168,119.524208068848,-98.4149398803711,169.368591308594,119.372192382813,-103.271118164063,169.489608764648,119.653221130371,-85.1156387329102,167.024368286133,138.64208984375,-127.156455993652,145.891296386719,140.811294555664,-133.518081665039,144.283142089844,113.827651977539,-67.3351974487305,161.280807495117,119.817237854004,-75.9701461791992,163.832061767578,122.657508850098,-38.6264839172363,153.900085449219,122.819526672363,-44.112621307373,155.532241821289,116.976951599121,-16.4389114379883,142.510971069336,120.786331176758,-28.6696090698242,149.671676635742,115.830848693848,-9.99376964569092,136.596389770508,111.237396240234,-1.40121698379517,131.355880737305,107.537033081055,13.9606676101685,124.672218322754,-105.11580657959,106.249412536621,36.0022315979004,-108.849174499512,110.455825805664,47.9530029296875,-148.113021850586,94.4027557373047,124.091163635254,-116.165885925293,120.742835998535,75.9191436767578,-117.315002441406,124.842231750488,81.1013565063477,-124.442695617676,108.154594421387,103.168113708496,-120.704330444336,116.668426513672,91.6977920532227,-131.088348388672,111.636940002441,109.260704040527,-164.617645263672,88.8421020507813,151.288833618164,-160.798263549805,93.6957778930664,145.437240600586,-149.909194946289,96.1707229614258,127.622505187988,-151.906387329102,99.1661224365234,130.988845825195, +-158.562042236328,98.9822006225586,141.282852172852,149.311126708984,-140.095733642578,140.145721435547,119.167175292969,-91.9329071044922,168.84455871582,125.02074432373,-102.911087036133,165.756240844727,126.350875854492,-107.909576416016,164.295104980469,133.99462890625,-107.831565856934,159.450622558594,137.941009521484,-107.527534484863,154.954193115234,140.596267700195,-122.263977050781,145.922302246094,138.640075683594,-116.430404663086,149.574661254883,116.18888092041,-63.5083236694336,159.610641479492,120.348289489746,-67.366096496582,161.115783691406,122.716522216797,-51.7612724304199,157.579452514648,125.043746948242,-36.7471008300781,152.115905761719,124.084655761719,-17.9107551574707,139.953720092773,112.10147857666,-5.66827487945557,133.850112915039,-104.662757873535,105.609344482422,32.3250694274902,-105.57585144043,110.51082611084,38.0308303833008,-112.350517272949,115.281295776367,57.7118606567383,-114.080680847168,116.325401306152,64.5213317871094,-106.897979736328,111.508926391602,41.8466033935547,-110.522331237793,116.689437866211,50.6230621337891,-142.95051574707,99.459846496582,120.957862854004,-144.973724365234,102.651054382324,123.844139099121,-114.336715698242,121.241882324219,67.6984405517578,-119.707237243652,120.389793395996,86.7850112915039,-123.954650878906,112.71704864502,102.525054931641,-122.332489013672,113.197090148926,99.3196411132813,-126.653915405273,112.360008239746,105.584350585938,-135.670806884766,109.55973815918,114.546226501465,-133.259552001953,116.08137512207,111.666946411133,-139.457168579102,103.530143737793,119.684730529785,-162.96647644043,93.4619522094727,148.166519165039,-162.443420410156,99.4651412963867,145.900299072266,145.581756591797,-131.892929077148,140.920806884766,123.387588500977,-96.4927520751953,167.007369995117,124.4296875,-77.5377960205078,163.042984008789,124.261672973633,-84.9766235351563,165.434219360352,131.251342773438,-104.899276733398,162.073883056641,136.363861083984,-107.665550231934,157.01139831543,141.873397827148,-128.715621948242,143.500061035156, +122.75952911377,-71.0490646362305,162.05387878418,122.649513244629,-58.4671287536621,158.986587524414,126.136856079102,-43.5641670227051,154.343139648438,120.028259277344,-10.1735973358154,134.85221862793,129.891235351563,-21.1729755401611,139.047622680664,128.093048095703,-37.4589691162109,150.743774414063,116.735931396484,-5.66401481628418,132.759017944336,112.543525695801,7.42891788482666,126.148361206055,-104.198715209961,111.068885803223,34.6045951843262,-108.042091369629,115.280296325684,44.761791229248,-147.406951904297,100.745872497559,125.511299133301,-115.170791625977,125.960342407227,71.2237854003906,-116.648933410645,125.20726776123,78.4712905883789,-119.016174316406,129.435684204102,87.3341674804688,-121.361396789551,120.805839538574,92.4167633056641,-129.885238647461,118.326599121094,107.772560119629,-137.018920898438,109.875762939453,118.148582458496,-166.715835571289,93.7948913574219,151.986907958984,-149.302124023438,105.244316101074,128.020553588867,-156.899871826172,103.960182189941,137.446472167969,-162.636444091797,103.615158081055,144.479156494141,152.182403564453,-135.563293457031,138.009536743164,125.673805236816,-89.3474578857422,165.637237548828,135.168746948242,-100.583854675293,159.701644897461,136.920913696289,-103.046104431152,157.493438720703,140.118225097656,-108.094589233398,152.285934448242,144.771682739258,-125.286277770996,142.197937011719,142.165420532227,-110.644844055176,149.738677978516,126.797920227051,-57.1729049682617,158.143493652344,126.761917114258,-15.3399028778076,134.904220581055,133.643600463867,-25.8714351654053,139.896713256836,130.00422668457,-29.0913505554199,144.294143676758,119.364189147949,-4.65102577209473,131.500885009766,114.191688537598,2.90006399154663,128.104553222656,-102.835586547852,110.927871704102,31.6320037841797,-103.375640869141,115.754341125488,36.1762466430664,-105.53084564209,116.003364562988,39.835205078125,-112.763549804688,120.61181640625,61.0664901733398,-110.543342590332,121.044860839844,51.0867080688477,-106.865982055664,120.420799255371,43.8729019165039, +-141.620376586914,104.670257568359,122.347991943359,-147.087921142578,107.6435546875,126.284378051758,-114.014671325684,124.920234680176,65.8627548217773,-118.172088623047,130.885833740234,82.5018920898438,-121.271392822266,126.59440612793,92.0250244140625,-128.763122558594,121.662925720215,105.702362060547,-126.523902893066,122.087959289551,102.310028076172,-123.707626342773,121.623916625977,97.4700546264648,-136.334869384766,117.999565124512,119.029670715332,-131.10334777832,121.616920471191,108.980682373047,-138.634094238281,110.359809875488,121.111877441406,-152.480453491211,103.845176696777,131.367874145508,-159.800170898438,103.832176208496,141.352844238281,144.969711303711,-129.53369140625,141.096832275391,130.936325073242,-98.285026550293,162.944976806641,128.243057250977,-93.6284790039063,164.576126098633,126.906929016113,-73.0785675048828,161.235809326172,127.798011779785,-81.5699920654297,162.353912353516,129.272171020508,-88.8723068237305,163.518035888672,141.372344970703,-102.604057312012,152.753982543945,126.020843505859,-67.7353363037109,160.75276184082,130.801315307617,-43.5764694213867,152.0458984375,131.193344116211,-48.5321578979492,153.677062988281,125.81982421875,-12.4785223007202,133.097045898438,133.049530029297,-22.1125659942627,136.784408569336,133.668594360352,-41.4415626525879,149.235626220703,-101.335441589355,115.80534362793,33.5617904663086,-141.414367675781,109.080688476563,123.301086425781,-114.981773376465,128.517593383789,67.6250305175781,-117.100982666016,130.376770019531,76.3162841796875,-119.919258117676,132.800018310547,87.942024230957,-121.626419067383,132.224960327148,92.490364074707,-133.01155090332,125.876335144043,113.642143249512,-169.085571289063,92.5995254516602,154.225616455078,-152.546447753906,108.566635131836,130.754806518555,-156.668869018555,108.407623291016,135.695297241211,-160.286209106445,108.517639160156,139.820693969727,-162.827453613281,108.662651062012,142.108932495117,150.049194335938,-128.719619750977,138.49658203125,129.675201416016,-77.9307403564453,160.346710205078, +141.467361450195,-98.6470642089844,152.867980957031,133.719589233398,-95.0818176269531,160.964767456055,144.470642089844,-106.781463623047,149.522659301758,148.244033813477,-124.010154724121,140.297744750977,146.312835693359,-116.607429504395,145.201232910156,129.014129638672,-67.3609008789063,159.645645141602,133.6005859375,-56.836669921875,154.802185058594,130.981338500977,-18.0860710144043,133.819122314453,136.967910766602,-25.283878326416,136.633392333984,133.390563964844,-31.4298801422119,143.09001159668,-103.344627380371,120.925849914551,38.9778213500977,-99.6201705932617,119.746734619141,34.0927467346191,-111.941474914551,125.709320068359,55.3398284912109,-109.243209838867,125.136260986328,48.0941162109375,-148.364044189453,112.67504119873,127.162460327148,-114.295707702637,129.951736450195,61.001880645752,-119.26619720459,134.456161499023,81.4926910400391,-124.381698608398,131.214859008789,97.9134979248047,-126.793930053711,126.150360107422,102.254020690918,-129.580215454102,127.37947845459,107.240509033203,-137.413970947266,122.042953491211,120.318794250488,-138.957122802734,117.512512207031,122.071968078613,-152.200424194336,112.708045959473,129.682708740234,132.402465820313,-71.1457748413086,158.643539428711,133.060531616211,-84.2997589111328,159.258605957031,141.562377929688,-91.0978240966797,152.839981079102,151.62434387207,-111.870964050293,143.894104003906,146.233825683594,-103.558143615723,148.979598999023,146.655853271484,-98.4966506958008,148.771575927734,150.263229370117,-115.520324707031,143.355056762695,136.128845214844,-49.8959922790527,151.256820678711,127.137954711914,-5.71595001220703,129.941741943359,131.340362548828,-15.6493339538574,131.805923461914,137.111923217773,-22.8265380859375,134.320159912109,-110.867370605469,125.742324829102,51.5120506286621,-106.590950012207,125.218269348145,43.9538116455078,-104.120704650879,125.638313293457,41.078426361084,-141.200332641602,113.503120422363,123.728126525879,-116.68994140625,132.395965576172,69.2085876464844,-119.251190185547,136.013320922852,73.9358520507813, +-121.572418212891,136.113342285156,87.5217819213867,-123.354591369629,135.479278564453,93.8178939819336,-135.650802612305,126.472389221191,117.155487060547,-131.316375732422,130.939834594727,110.031784057617,-155.430740356445,113.086074829102,132.738006591797,-159.371124267578,113.337104797363,136.550384521484,-162.972473144531,113.582130432129,139.253646850586,155.945770263672,-125.12126159668,136.079330444336,151.531341552734,-124.890235900879,137.915512084961,134.860717773438,-88.544075012207,158.771560668945,135.601776123047,-73.9959487915039,157.203414916992,136.213836669922,-82.706901550293,157.058395385742,144.827697753906,-92.6958847045898,149.5556640625,138.479064941406,-89.2296447753906,155.785263061523,136.839904785156,-58.2869110107422,153.011993408203,129.220153808594,-10.65234375,131.159866333008,-95.3559494018555,120.569816589355,30.2604694366455,-101.033409118652,125.298278808594,37.9526214599609,-111.152397155762,129.803726196289,49.4428482055664,-108.661155700684,130.175750732422,45.1313247680664,-150.022201538086,117.469512939453,127.570503234863,-142.01643371582,117.433502197266,124.12816619873,-113.367614746094,131.081848144531,54.1919136047363,-116.71794128418,134.182159423828,62.9762763977051,-121.146377563477,137.562469482422,80.6015014648438,-128.772109985352,130.984832763672,106.157409667969,-127.161964416504,134.834213256836,101.696968078613,-139.024124145508,126.35538482666,120.077766418457,-133.986633300781,130.8408203125,113.365112304688,-141.378356933594,122.277984619141,122.90104675293,-155.598754882813,118.046569824219,130.927825927734,153.873580932617,-119.785743713379,138.022537231445,147.161926269531,-84.6506958007813,145.796295166016,141.337341308594,-80.3356704711914,153.393035888672,147.540954589844,-92.63427734375,147.280426025391,137.226943969727,-64.8372573852539,153.831069946289,132.488479614258,-9.29847145080566,129.924743652344,139.353149414063,-18.1850814819336,130.077758789063,-95.5595703125,125.242279052734,32.666202545166,-106.146903991699,130.298767089844,42.515869140625, +-101.746475219727,130.089736938477,39.1666412353516,-121.492408752441,139.120620727539,72.9887542724609,-124.034660339355,138.425567626953,88.7384033203125,-127.496002197266,138.036514282227,98.0142059326172,-137.23796081543,130.420791625977,116.574424743652,-140.201248168945,124.316680908203,121.489402770996,-130.524307250977,133.804107666016,107.667556762695,-135.759796142578,133.228057861328,113.515129089355,-162.102386474609,118.053565979004,135.736297607422,138.607086181641,-77.3257751464844,155.510238647461,142.717483520508,-81.4212799072266,151.703872680664,151.362335205078,-94.6375732421875,145.328247070313,141.690368652344,-60.1188888549805,149.558654785156,139.794189453125,-66.7611465454102,151.833892822266,137.922012329102,-13.3060035705566,128.825637817383,-89.9154205322266,124.968246459961,27.729621887207,-96.7398834228516,130.538787841797,35.2395553588867,-113.226600646973,133.746109008789,49.7558784484863,-109.568237304688,135.453277587891,43.4638595581055,-111.7724609375,134.467178344727,46.3137435913086,-153.527542114258,122.42399597168,127.997543334961,-118.697143554688,137.246444702148,61.946174621582,-123.27458190918,139.941711425781,78.9444427490234,-131.460388183594,136.628387451172,105.894378662109,-142.388458251953,131.202865600586,119.04167175293,-143.138534545898,127.657508850098,121.432907104492,-161.955383300781,124.436195373535,130.993850708008,144.927688598633,-80.8670272827148,148.424560546875,149.975189208984,-85.2858505249023,143.974105834961,144.113616943359,-75.1162643432617,148.721588134766,-90.2100448608398,129.439682006836,29.7169170379639,-107.243011474609,136.476364135742,41.715389251709,-103.776672363281,134.016143798828,40.2529487609863,-97.3330383300781,134.978225708008,36.1214447021484,-149.603164672852,121.827941894531,126.295379638672,-158.321014404297,122.047966003418,130.734817504883,-115.596832275391,138.482559204102,47.5042572021484,-126.110862731934,140.422760009766,86.5250778198242,-129.487197875977,139.893707275391,95.9588012695313,-133.115539550781,138.788589477539,103.634155273438, +-139.065139770508,134.690200805664,114.038177490234,-150.69026184082,126.840431213379,124.498199462891,144.823699951172,-69.9454498291016,147.344451904297,142.740982055664,-14.9433650970459,126.875938415527,-84.9504318237305,129.804733276367,25.6639194488525,-90.8122024536133,134.23014831543,31.2530651092529,-113.998672485352,139.795700073242,44.4051551818848,-111.523429870605,143.309036254883,40.8519058227539,-156.128799438477,126.389381408691,127.100456237793,-136.328857421875,136.945419311523,109.467727661133,-144.410659790039,134.262145996094,116.877456665039,-157.086898803711,129.592697143555,125.111267089844,-84.6016998291016,134.971221923828,27.2041702270508,-105.472839355469,141.428848266602,39.256950378418,-96.9597015380859,140.278747558594,35.3178634643555,-91.3055572509766,139.760696411133,31.4138813018799,-136.533874511719,139.654693603516,103.969192504883,-142.992523193359,137.266464233398,112.241004943848,-152.423431396484,133.044036865234,120.547813415527,-139.660186767578,137.987518310547,109.389724731445,-79.8915328979492,140.010711669922,25.4684982299805,-87.4586715698242,139.336654663086,29.568000793457,-99.9710006713867,141.766891479492,36.7440032958984,-108.959182739258,148.212524414063,37.7815093994141,-147.323944091797,136.234344482422,115.405311584473,-79.8399276733398,130.142761230469,21.3995990753174,-84.1982498168945,139.17463684082,27.75732421875,-102.04150390625,148.282531738281,35.8025131225586,-93.914306640625,143.171020507813,32.141056060791,-98.5607604980469,152.773971557617,32.6893081665039,-91.8727111816406,144.767196655273,29.6768131256104,-143.703582763672,139.508666992188,107.722564697266,-148.429061889648,138.999618530273,110.604843139648,-151.172317504883,137.062423706055,114.79125213623,-154.240615844727,135.202239990234,118.148582458496,-76.9761505126953,137.192443847656,22.2082805633545,-82.0286483764648,144.155136108398,26.2990798950195,-85.5650863647461,143.521072387695,27.6264095306396,-95.1536254882813,148.357543945313,31.531494140625,-72.8463439941406,133.957122802734,17.4476146697998, +-75.0297622680664,143.560073852539,23.2791843414307,-78.9822387695313,144.875183105469,25.5771102905273,-95.6651840209961,153.688064575195,31.1088523864746,-84.9002227783203,149.090606689453,24.3798923492432,-152.445434570313,138.903610229492,110.722358703613,-70.9665603637695,143.92610168457,20.9740581512451,-77.2221755981445,148.294525146484,23.4143981933594,-90.6674957275391,148.711578369141,27.1303634643555,-92.8031997680664,153.510040283203,29.1508617401123,-65.372314453125,141.9619140625,15.9409656524658,-73.3024826049805,148.902587890625,22.1234703063965,-87.8905181884766,152.793975830078,24.5300064086914,-68.0250701904297,145.271240234375,19.7402381896973,-65.6415405273438,134.709197998047,12.0055809020996,-68.0457763671875,148.993606567383,20.7849407196045,-83.1767501831055,152.663955688477,21.3845996856689,-85.3281707763672,154.10710144043,22.0014591217041,-65.1808929443359,148.29753112793,18.7977466583252,-62.7634544372559,134.900207519531,9.65095996856689,-72.6922302246094,153.543045043945,18.8144474029541,-76.5123062133789,153.560043334961,18.9675636291504,-80.3323822021484,153.903076171875,19.6022243499756,-90.3935623168945,157.801452636719,27.1600646972656,-87.3278656005859,159.110595703125,24.5171051025391,-61.9161758422852,148.888580322266,17.3007984161377,-59.1208000183105,148.775573730469,15.8312549591064,-68.5074157714844,153.02099609375,18.5440216064453,-83.0194396972656,157.450424194336,19.9040546417236,-64.9917755126953,153.640060424805,17.2002906799316,-57.374927520752,142.124923706055,10.3342161178589,-72.7481307983398,158.676544189453,13.4843254089355,-75.8077392578125,157.382431030273,15.1044836044312,-78.6540145874023,158.079483032227,15.6732387542725,-80.7688140869141,158.757568359375,17.3471031188965,-80.6263122558594,166.963363647461,19.7394371032715,-61.6492462158203,153.627059936523,16.6611366271973,-60.2179069519043,134.861221313477,7.13170289993286,-55.6038513183594,148.861587524414,13.6919450759888,-69.3773040771484,162.554931640625,8.48641490936279,-80.6422119140625,162.694946289063,18.4321098327637, +-58.2278137207031,153.542037963867,16.0033721923828,-65.524528503418,158.412521362305,12.3304119110107,-54.4473419189453,140.136734008789,6.77363681793213,-71.658821105957,162.132888793945,9.61577606201172,-76.108268737793,162.208892822266,12.9608726501465,-78.6010131835938,162.649948120117,15.5515279769897,-77.5355072021484,171.982849121094,17.8641548156738,-61.5667381286621,158.253509521484,12.4158210754395,-58.39892578125,134.875213623047,5.36570978164673,-49.5020561218262,144.398147583008,6.43657398223877,-54.9754905700684,153.588043212891,14.9461688995361,-71.485710144043,166.981353759766,8.41788864135742,-73.6496200561523,163.45002746582,10.519434928894,-75.5222091674805,167.535415649414,13.9378690719604,-74.9666519165039,172.110855102539,15.509822845459,-65.7548522949219,163.416000366211,6.72095203399658,-57.7042579650879,158.170501708984,12.2903079986572,-56.1207046508789,135.560287475586,2.86171388626099,-48.4414520263672,149.141616821289,9.44190883636475,-49.6482696533203,140.46076965332,3.12569999694824,-49.8781929016113,153.865081787109,12.5756359100342,-68.7196426391602,167.564422607422,5.86187791824341,-73.7437286376953,167.472412109375,11.2523059844971,-61.6290435791016,162.801956176758,6.35901689529419,-43.0536231994629,149.559646606445,6.77551794052124,-43.3960571289063,144.950210571289,2.85291290283203,-52.6585655212402,158.417510986328,10.8630676269531,-69.0051651000977,172.321884155273,6.90400981903076,-72.2455825805664,176.885330200195,14.2621021270752,-65.3821105957031,167.351409912109,3.36900401115417,-58.1459045410156,162.820953369141,5.56064891815186,-52.3681373596191,136.805419921875,-0.044344998896122,-46.4833602905273,153.102996826172,10.7860612869263,-46.3504486083984,140.637771606445,-0.244102001190186,-47.220531463623,158.189498901367,9.1577205657959,-66.7712478637695,171.74983215332,3.94174003601074,-70.8845443725586,172.329895019531,9.84828758239746,-67.5108184814453,180.316665649414,10.2264060974121,-61.6810493469238,167.995468139648,0.981401026248932,-41.7594985961914,153.899078369141,8.60755729675293, +-40.010425567627,148.502563476563,3.94591999053955,-40.0675315856934,144.094116210938,-1.5823210477829,-53.4226379394531,163.379013061523,3.37454390525818,-65.2176971435547,176.512298583984,3.75770211219788,-64.1930923461914,172.261871337891,1.17761898040771,-58.3324203491211,167.471420288086,-0.375126987695694,-50.8773918151855,137.118438720703,-3.43952298164368,-43.2210388183594,140.884811401367,-5.00304698944092,-48.1616249084473,167.609420776367,-4.60305690765381,-61.1832008361816,172.115859985352,-1.40607404708862,-41.2986526489258,158.585540771484,6.53243398666382,-38.1556434631348,153.714065551758,6.63167381286621,-33.8078155517578,150.052703857422,1.38017904758453,-37.9931297302246,143.268035888672,-5.7286581993103,-53.7126693725586,167.544418334961,-2.47696900367737,-43.9369125366211,162.824966430664,1.39306998252869,-62.0548858642578,176.510299682617,-0.530565023422241,-65.1279907226563,181.657806396484,7.37897682189941,-57.7302627563477,172.205871582031,-3.63156199455261,-46.2537384033203,139.132629394531,-7.25346708297729,-35.1087455749512,146.064315795898,-2.90898108482361,-36.7414054870605,143.409057617188,-8.38682842254639,-50.0504112243652,172.10285949707,-7.96240615844727,-42.9270133972168,167.776428222656,-5.90753507614136,-61.3528175354004,181.687805175781,1.15867698192596,-61.575439453125,184.25505065918,3.63755989074707,-59.4809341430664,176.99235534668,-3.22917294502258,-38.1181411743164,158.507537841797,5.49416208267212,-33.8630256652832,153.933090209961,4.45630979537964,-30.1176567077637,149.463653564453,-2.37125897407532,-54.7670707702637,172.658920288086,-5.70361518859863,-45.4396553039551,172.266876220703,-9.98447513580322,-38.8274078369141,163.21598815918,0.213534995913506,-59.296215057373,182.100830078125,-2.06628894805908,-56.5777473449707,177.057342529297,-6.04680919647217,-38.1638450622559,142.959014892578,-12.4803190231323,-30.0666522979736,154.087112426758,2.09706902503967,-32.3546752929688,146.127319335938,-6.06265020370483,-45.726188659668,176.853332519531,-12.9586658477783,-51.7686805725098,177.232360839844,-9.64388179779053, +-37.8066101074219,167.859451293945,-7.02440500259399,-41.5076713562012,172.242874145508,-11.4517183303833,-57.6217498779297,181.683807373047,-4.68268489837646,-31.9001312255859,145.301239013672,-9.98387432098389,-32.2073593139648,158.386520385742,3.67930388450623,-27.9782466888428,148.496551513672,-6.4955530166626,-27.3277835845947,153.710067749023,-0.248276993632317,-33.2745666503906,163.210998535156,-0.854885995388031,-57.2306137084961,191.18473815918,1.19657099246979,-55.2950248718262,181.117752075195,-7.49658107757568,-53.7259712219238,186.13623046875,-8.04484367370605,-29.5373992919922,146.522354125977,-14.5294198989868,-28.9909477233887,159.188598632813,2.11826109886169,-24.780933380127,153.482040405273,-2.41473293304443,-26.6340141296387,158.555526733398,0.796095013618469,-48.6694755554199,181.666809082031,-13.1538848876953,-41.2949523925781,177.019348144531,-15.3517999649048,-33.7496109008789,172.379898071289,-14.4771146774292,-30.9263362884521,167.855453491211,-9.13170146942139,-53.4498443603516,194.834091186523,-2.3937509059906,-25.8025321960449,148.34553527832,-10.2381992340088,-28.9689426422119,147.567459106445,-18.9054489135742,-22.0373649597168,152.549957275391,-5.91845607757568,-23.5731143951416,158.471527099609,-0.946126997470856,-51.781177520752,181.912826538086,-10.9916734695435,-44.770092010498,181.845825195313,-15.8290481567383,-36.5074844360352,177.139358520508,-17.6933307647705,-28.7415218353271,163.209991455078,-2.39740109443665,-50.1774215698242,191.165740966797,-10.2932052612305,-20.109375,149.939697265625,-15.129077911377,-19.8131465911865,150.556762695313,-18.9233493804932,-21.3773002624512,156.457336425781,-2.27696895599365,-22.8552436828613,163.320999145508,-5.25937223434448,-47.782787322998,186.404266357422,-14.535120010376,-50.4935531616211,185.932220458984,-12.0012722015381,-38.47607421875,181.616790771484,-19.5043067932129,-20.5694217681885,167.245391845703,-12.3744087219238,-29.5132961273193,176.904327392578,-20.8407382965088,-45.3729515075684,195.915191650391,-14.5097179412842,-20.5736217498779,150.414733886719,-11.5725297927856, +-17.7382431030273,152.523956298828,-23.0557556152344,-18.6725368499756,156.836364746094,-4.27064514160156,-18.5742244720459,159.929672241211,-3.73891305923462,-44.6072769165039,186.485275268555,-17.1853809356689,-32.0728492736816,181.726806640625,-23.1334648132324,-40.1892433166504,186.518280029297,-20.3717937469482,-16.8811588287354,172.428894042969,-21.1852722167969,-48.0483131408691,191.279739379883,-13.3578052520752,-47.0423126220703,201.251708984375,-8.05144500732422,-15.7238464355469,152.157913208008,-16.3508987426758,-15.6593399047852,153.506042480469,-11.9129638671875,-12.9809770584106,153.330032348633,-20.8800430297852,-17.7343425750732,154.064086914063,-8.39417934417725,-16.5369262695313,162.756942749023,-7.85947704315186,-45.7415885925293,190.749694824219,-16.1948833465576,-34.3260688781738,186.280242919922,-24.1610641479492,-12.8326625823975,167.414398193359,-15.5112161636353,-25.9299449920654,181.593795776367,-26.1510581970215,-14.0019779205322,177.180358886719,-27.460786819458,-42.836799621582,197.01530456543,-17.5611171722412,-10.4794321060181,155.340225219727,-26.0800514221191,-16.1177845001221,158.493530273438,-5.88153314590454,-43.1007270812988,191.187744140625,-18.6892280578613,-28.6969165802002,186.109237670898,-27.4374847412109,-35.6165962219238,191.08772277832,-24.6843147277832,-14.0047779083252,163.9140625,-10.2559013366699,-8.68295574188232,172.845932006836,-24.1561641693115,-40.1504364013672,209.714553833008,-12.8004512786865,-12.7284526824951,154.740173339844,-13.2197923660278,-11.3103132247925,154.68815612793,-16.353199005127,-13.6845474243164,158.99658203125,-8.30875968933105,-7.58178806304932,155.631240844727,-21.9790496826172,-39.498477935791,191.496765136719,-21.8944416046143,-30.0125465393066,191.390747070313,-28.5716953277588,-11.2968120574951,163.31201171875,-11.1460886001587,-8.13393211364746,168.131484985352,-17.827543258667,-22.9881572723389,186.234252929688,-30.5188865661621,-11.873969078064,181.634796142578,-32.2242546081543,-4.95600080490112,177.403381347656,-30.9393272399902, +-38.1122398376465,201.394729614258,-21.5382061004639,-11.0651893615723,158.44953918457,-10.5937337875366,-8.69760799407959,155.448226928711,-18.7573356628418,-6.02082586288452,156.484329223633,-25.6090068817139,-41.0764312744141,196.080215454102,-20.0290584564209,-24.3159885406494,190.798690795898,-32.0253372192383,-34.5870933532715,196.23323059082,-26.1639595031738,-38.5124778747559,195.461151123047,-22.6717185974121,-8.60494804382324,163.385009765625,-12.8619556427002,-4.50927686691284,167.620422363281,-18.8093395233154,-14.5590324401855,186.323257446289,-34.4902763366699,-4.4813551902771,171.931838989258,-24.4398918151855,-37.5233840942383,210.571624755859,-16.048267364502,-8.86951541900635,158.610549926758,-13.0023708343506,-6.60567283630371,158.697555541992,-15.590124130249,-3.01723098754883,158.672546386719,-21.6322154998779,-2.69052910804749,158.089492797852,-27.6894092559814,-4.48179388046265,158.803558349609,-18.1702785491943,-23.7348327636719,196.104217529297,-34.0238304138184,-29.8933353424072,195.811187744141,-29.6159973144531,-5.87994194030762,163.469024658203,-14.6440305709839,-17.488317489624,191.285736083984,-35.8698081970215,-2.05631709098816,182.164855957031,-36.6949920654297,-4.68363380432129,186.602279663086,-39.302547454834,0.779344975948334,172.630920410156,-27.1652584075928,-31.9867382049561,215.695129394531,-21.2080745697021,-3.66565489768982,157.360427856445,-25.0383491516113,0.348814994096756,160.604736328125,-32.6449966430664,-29.5717029571533,200.516647338867,-30.2997665405273,-34.8844223022461,200.960693359375,-25.5927047729492,-3.59715795516968,162.775939941406,-16.1155757904053,-1.69712197780609,168.05046081543,-20.9683513641357,-4.60531616210938,191.769805908203,-42.8003883361816,0.883750021457672,177.385375976563,-32.6513977050781,0.563920021057129,168.671524047852,-22.7501258850098,-32.0407447814941,206.788269042969,-26.5613994598389,-1.77737998962402,163.397003173828,-18.3725967407227,-0.173897996544838,159.420623779297,-25.0200481414795,2.0888888835907,160.510726928711,-28.9467315673828, +-16.2759990692139,195.854202270508,-38.4517669677734,-6.07082986831665,196.519256591797,-44.5069580078125,4.09586620330811,177.386383056641,-33.7998085021973,1.12252497673035,186.546279907227,-41.7871894836426,3.94515109062195,172.476913452148,-28.9309310913086,3.26936507225037,167.635437011719,-24.5006980895996,-27.0596561431885,219.683532714844,-25.8590316772461,0.79668802022934,163.730041503906,-21.3335876464844,4.55901098251343,162.011871337891,-32.804313659668,-22.3754978179932,201.053695678711,-35.8141059875488,-17.9827671051025,200.904678344727,-38.7990989685059,-30.675910949707,206.203201293945,-28.4344825744629,3.45115303993225,196.245223999023,-49.6739654541016,7.556884765625,177.743408203125,-35.6742897033691,5.27068090438843,191.807800292969,-47.7215728759766,-23.7103290557861,217.671325683594,-31.8566188812256,3.30298805236816,162.279907226563,-25.9365386962891,6.38152980804443,163.282012939453,-30.9853324890137,-21.9645595550537,205.906173706055,-36.4579696655273,-12.4139223098755,200.351638793945,-42.3576469421387,-28.5890064239502,206.489227294922,-30.6405982971191,0.691164970397949,201.035705566406,-50.484245300293,7.74243402481079,172.286880493164,-31.4994831085205,7.83840322494507,186.161254882813,-44.0860176086426,6.48396015167236,166.790344238281,-28.5968990325928,-23.4726047515869,224.7490234375,-28.3483734130859,9.91445636749268,166.593322753906,-35.387565612793,-26.5318050384521,205.658157348633,-32.7529029846191,-5.40787506103516,201.167709350586,-46.7418785095215,-13.8462619781494,205.573135375977,-42.5646667480469,12.5642261505127,195.942199707031,-54.429328918457,10.4311170578003,201.038696289063,-56.2885131835938,10.875659942627,173.61701965332,-34.2998580932617,10.544828414917,177.534393310547,-37.1805381774902,11.6455364227295,186.528274536133,-46.1759223937988,-21.2926921844482,224.531997680664,-31.2659587860107,9.166823387146,167.743438720703,-32.0354347229004,-22.5858173370361,211.233703613281,-35.605785369873,-5.06353187561035,205.509140014648,-48.3388328552246,-19.2702941894531,221.075668334961,-36.0306282043457, +14.3919048309326,191.36474609375,-51.8534774780273,2.84989404678345,205.594146728516,-53.6815567016602,10.7507476806641,170.256683349609,-33.4610786437988,11.0096731185913,181.61279296875,-41.3770523071289,-17.6937389373779,210.132583618164,-39.8796043395996,-6.90411186218262,210.166595458984,-48.0790061950684,17.9401531219482,195.536163330078,-57.8924674987793,9.72618770599365,205.876174926758,-58.2327041625977,13.4718141555786,173.577011108398,-36.9288177490234,12.6329326629639,170.426696777344,-36.142936706543,13.1935882568359,176.719314575195,-38.7066879272461,14.6397285461426,186.983322143555,-48.2817268371582,15.5161151885986,181.853820800781,-44.713680267334,-18.4300117492676,229.52848815918,-32.5508842468262,-11.6773500442505,211.190689086914,-44.762882232666,-18.131383895874,216.661224365234,-38.9734153747559,0.396187990903854,209.963562011719,-53.4490356445313,-17.3782081604004,221.460693359375,-38.3457527160645,14.993763923645,200.979705810547,-59.4690246582031,17.9244518280029,186.413269042969,-50.206916809082,5.72077512741089,210.840667724609,-57.5073318481445,15.0284671783447,177.4833984375,-41.3742523193359,-16.460319519043,229.349472045898,-35.3143577575684,-11.5120334625244,219.031463623047,-45.1117172241211,-15.4084148406982,217.441299438477,-41.6930809020996,-3.78516602516174,218.012359619141,-51.8790817260742,-7.73748397827148,217.270278930664,-48.3007316589355,-12.0523872375488,227.73030090332,-42.9260025024414,18.4453010559082,202.952880859375,-63.9943695068359,19.5669116973877,191.37174987793,-55.8427696228027,12.2185916900635,207.720352172852,-61.1781883239746,18.0722675323486,181.904815673828,-47.4062423706055,-16.1210842132568,234.465972900391,-34.4170684814453,-0.206448003649712,214.784042358398,-54.3123168945313,22.0675582885742,191.002716064453,-58.5793380737305,22.1265640258789,185.593185424805,-55.1950073242188,6.95803594589233,215.562118530273,-60.2312965393066,20.3796920776367,182.070831298828,-50.7641716003418,-14.9593706130981,234.354461669922,-35.7161445617676,-13.7976579666138,234.242950439453,-37.0152244567871, +-8.18926811218262,224.362991333008,-48.1780204772949,-9.65877246856689,227.194259643555,-46.0759124755859,1.08088099956512,219.843551635742,-56.7465591430664,17.399299621582,210.681640625,-68.0493621826172,21.0396556854248,203.285934448242,-67.1061706542969,-14.3205080032349,238.956420898438,-37.2756462097168,-8.66024398803711,234.274963378906,-44.871696472168,-1.60372197628021,224.462997436523,-55.2314109802246,23.5242004394531,196.162231445313,-65.077278137207,16.8866481781006,214.875061035156,-70.0095520019531,-11.9789791107178,238.34635925293,-39.1284294128418,-4.95236110687256,232.072738647461,-51.1696128845215,-2.80155992507935,229.778518676758,-54.4008255004883,3.89770698547363,224.82502746582,-60.6012344360352,6.18755102157593,219.788528442383,-61.2342948913574,19.8760414123535,213.010879516602,-72.7975311279297,21.8758392333984,211.861770629883,-75.3629837036133,13.6009283065796,219.734527587891,-68.7941436767578,-7.99315881729126,239.185440063477,-44.9549026489258,-4.83087921142578,238.598373413086,-49.5247497558594,1.56208801269531,229.592498779297,-59.1185913085938,24.6428089141846,200.519653320313,-71.138069152832,17.0451641082764,222.167770385742,-74.2437744140625,-1.57245898246765,239.846496582031,-54.903076171875,2.54528403282166,237.762298583984,-60.5263290405273,10.4846220016479,224.78303527832,-67.3489990234375,11.2790002822876,228.612396240234,-70.2519760131836,7.79200792312622,229.78352355957,-65.849853515625,17.6300220489502,227.238265991211,-78.7464065551758,12.9909677505493,234.182952880859,-76.1205596923828,5.51374483108521,235.603088378906,-64.3448944091797,9.48893547058105,234.483978271484,-71.0304565429688,6.92769384384155,236.611175537109,-67.4439010620117,-164.168594360352,131.139846801758,-134.974212646484,-165.668731689453,131.787902832031,-138.395553588867,-161.199310302734,134.17414855957,-138.576568603516,-162.417434692383,134.238159179688,-141.686874389648,-159.584136962891,134.957229614258,-135.132232666016,-158.800064086914,137.584487915039,-141.544860839844,-164.974670410156,134.123138427734,-143.794082641602, +-157.43994140625,138.644577026367,-137.450454711914,-162.220397949219,131.699905395508,-131.99592590332,-160.463226318359,136.777404785156,-144.917190551758,-157.752975463867,136.259353637695,-128.896621704102,-156.011779785156,142.603973388672,-140.646789550781,-157.020889282227,141.411849975586,-144.032104492188,-161.612335205078,136.833419799805,-147.911483764648,-154.841674804688,140.993804931641,-128.964645385742,-160.304214477539,132.712005615234,-127.354476928711,-150.769287109375,153.493041992188,-140.443756103516,-158.235015869141,140.189727783203,-147.564453125,-164.214599609375,136.861419677734,-149.917678833008,-153.130508422852,138.715591430664,-118.111572265625,-151.099319458008,154.557159423828,-145.98030090332,-156.252822875977,144.537155151367,-150.077697753906,-159.768173217773,139.528671264648,-150.934783935547,-151.512359619141,146.728378295898,-127.927528381348,-150.876281738281,143.273040771484,-120.197776794434,-156.791870117188,134.308166503906,-119.553718566895,-148.691070556641,159.917663574219,-143.184020996094,-161.047286987305,139.936721801758,-154.532135009766,-148.946105957031,154.524139404297,-132.995040893555,-149.001098632813,144.556167602539,-114.599227905273,-161.168304443359,130.075744628906,-121.000854492188,-154.00260925293,135.586288452148,-113.756141662598,-154.23161315918,149.905700683594,-157.616439819336,-149.228134155273,159.954666137695,-151.256820678711,-147.564956665039,159.905670166016,-135.410263061523,-157.596954345703,143.063018798828,-153.568054199219,-149.543167114258,150.215728759766,-126.178359985352,-147.255935668945,149.575668334961,-115.22728729248,-150.555252075195,140.063720703125,-112.128982543945,-158.180999755859,131.17985534668,-115.359306335449,-151.861389160156,154.801162719727,-159.787658691406,-147.416946411133,164.735137939453,-143.430053710938,-158.164993286133,143.534072875977,-157.401412963867,-148.045013427734,154.544143676758,-126.69140625,-147.406951904297,144.544158935547,-108.47762298584,-162.591445922852,127.245468139648,-115.081275939941, +-153.853591918945,132.279968261719,-106.768455505371,-151.041305541992,136.354370117188,-107.070487976074,-154.99870300293,149.52165222168,-161.876861572266,-151.037292480469,156.691345214844,-165.350189208984,-147.835998535156,164.313095092773,-153.891082763672,-146.681869506836,165.101181030273,-136.71337890625,-161.516342163086,142.201934814453,-158.712554931641,-146.831893920898,154.339126586914,-120.188774108887,-146.741882324219,159.756652832031,-127.010437011719,-145.387756347656,149.528656005859,-105.125297546387,-148.343032836914,140.087738037109,-105.026290893555,-159.861175537109,128.126556396484,-111.529922485352,-153.252532958984,152.350921630859,-164.270080566406,-148.028015136719,164.249099731445,-160.726745605469,-146.672866821289,169.470596313477,-149.843688964844,-146.37385559082,171.720825195313,-142.028915405273,-146.231842041016,164.646133422852,-129.047637939453,-159.79817199707,146.360336303711,-163.505020141602,-145.773788452148,154.842163085938,-113.433113098145,-146.40185546875,140.972808837891,-98.5183486938477,-163.085494995117,124.988243103027,-108.476623535156,-149.225128173828,135.927322387695,-100.418838500977,-156.131805419922,128.78662109375,-104.631248474121,-155.781768798828,149.195617675781,-165.029159545898,-154.100601196289,152.0458984375,-167.481399536133,-148.907104492188,161.754852294922,-168.552520751953,-146.601867675781,169.623611450195,-158.706558227539,-146.111831665039,170.654724121094,-134.435165405273,-145.781799316406,159.490631103516,-120.198776245117,-145.43376159668,164.874160766602,-122.087959289551,-144.291641235352,147.159423828125,-93.4824600219727,-143.973617553711,154.604156494141,-101.358932495117,-152.640472412109,130.082748413086,-98.5129470825195,-152.088409423828,155.612243652344,-170.053665161133,-146.591873168945,168.65852355957,-170.302688598633,-146.091827392578,174.514099121094,-154.01708984375,-146.190826416016,174.756118774414,-139.369659423828,-145.787796020508,169.634613037109,-127.102447509766,-144.736694335938,160.631744384766,-112.46501159668, +-146.081832885742,139.439651489258,-92.0816192626953,-148.070007324219,136.199356079102,-96.4717483520508,-159.817169189453,125.361282348633,-103.258110046387,-157.701950073242,125.816329956055,-100.572853088379,-147.183929443359,166.513305664063,-175.643203735352,-150.127227783203,159.425628662109,-172.27587890625,-145.546768188477,175.259170532227,-165.099182128906,-146.23583984375,179.691604614258,-145.942306518555,-146.309844970703,174.98014831543,-132.572982788086,-145.628784179688,170.268676757813,-121.127868652344,-143.534561157227,154.960189819336,-95.005500793457,-145.000717163086,142.019912719727,-86.9731216430664,-143.931610107422,159.510620117188,-103.903175354004,-165.583740234375,122.862037658691,-103.585144042969,-149.940185546875,131.237869262695,-92.0308151245117,-154.964691162109,126.380378723145,-95.8391876220703,-145.464767456055,171.201766967773,-178.055450439453,-145.292755126953,174.517105102539,-171.046752929688,-145.744781494141,179.819625854492,-155.67024230957,-146.579864501953,179.922622680664,-139.561676025391,-146.399856567383,174.661117553711,-125.71231842041,-144.714691162109,164.169082641602,-113.341102600098,-143.411544799805,153.76106262207,-89.6493759155273,-143.62858581543,159.687652587891,-97.4806518554688,-147.587966918945,135.196243286133,-91.2931442260742,-146.659866333008,135.126251220703,-85.1377334594727,-144.503677368164,164.878158569336,-109.188690185547,-163.552536010742,122.520011901855,-99.5461578369141,-159.697158813477,122.996055603027,-95.8297882080078,-145.019714355469,180.107650756836,-165.733245849609,-146.18083190918,184.678100585938,-152.164916992188,-147.337951660156,185.317153930664,-144.195129394531,-147.004913330078,175.534194946289,-121.060859680176,-145.529769897461,169.908645629883,-113.642135620117,-143.875595092773,160.174697875977,-92.9766082763672,-143.938613891602,148.846588134766,-84.9941253662109,-146.186828613281,134.571182250977,-77.5844955444336,-144.508666992188,164.879165649414,-104.287208557129,-152.526458740234,127.374481201172,-91.0601196289063, +-148.480056762695,130.15576171875,-82.6451873779297,-156.822875976563,123.429092407227,-91.2335357666016,-144.095626831055,175.684219360352,-180.008636474609,-144.014617919922,180.033645629883,-174.857116699219,-145.495758056641,185.532180786133,-159.566635131836,-146.787887573242,185.079147338867,-147.672470092773,-144.260635375977,160.228698730469,-82.9210205078125,-144.639678955078,165.119171142578,-97.7867813110352,-143.680587768555,154.938186645508,-83.4604721069336,-144.012619018555,144.746185302734,-75.9663391113281,-144.985717773438,139.67268371582,-77.1550598144531,-145.702774047852,169.761627197266,-107.593536376953,-165.811752319336,120.875839233398,-95.8984985351563,-150.520248413086,127.965545654297,-85.9565200805664,-163.193496704102,120.550811767578,-91.2888412475586,-144.445663452148,184.868118286133,-167.49040222168,-146.01481628418,190.305648803711,-158.699554443359,-147.343948364258,189.753601074219,-152.032897949219,-148.824081420898,179.313583374023,-117.89754486084,-147.493957519531,175.366180419922,-111.369903564453,-145.181732177734,165.209182739258,-89.5464706420898,-143.542572021484,150.255722045898,-79.7180099487305,-147.565963745117,130.158752441406,-75.7776184082031,-144.578674316406,139.652694702148,-66.8175430297852,-146.138824462891,169.96565246582,-100.721870422363,-154.067596435547,124.21216583252,-86.8724136352539,-151.597366333008,124.945243835449,-81.7160034179688,-159.908172607422,120.671829223633,-87.3801574707031,-142.340454101563,184.313064575195,-182.6708984375,-143.429565429688,184.881118774414,-176.137268066406,-144.490661621094,190.078628540039,-166.607315063477,-143.654586791992,154.707168579102,-77.897331237793,-143.457565307617,149.721664428711,-70.5813140869141,-147.090911865234,130.636795043945,-69.9745559692383,-150.310241699219,125.605308532715,-78.1355590820313,-145.793792724609,134.667205810547,-66.7091369628906,-165.819747924805,118.642623901367,-84.9884262084961,-146.131820678711,195.218139648438,-162.843948364258,-148.142028808594,194.590072631836,-155.757263183594, +-144.98371887207,160.053680419922,-75.0789489746094,-143.613586425781,145.705276489258,-69.3635940551758,-148.79508972168,126.80542755127,-72.4970016479492,-145.606781005859,134.465179443359,-55.5860443115234,-157.755966186523,120.907852172852,-84.7788009643555,-155.776779174805,121.173873901367,-81.912223815918,-153.985595703125,121.584915161133,-78.8199157714844,-161.598342895508,118.392601013184,-81.6138916015625,-141.634384155273,190.033615112305,-185.586181640625,-143.443572998047,191.367752075195,-175.188171386719,-144.52067565918,196.390243530273,-169.805633544922,-143.944610595703,154.714172363281,-72.1015625,-144.093627929688,144.317138671875,-61.9805679321289,-144.035629272461,149.566650390625,-62.2267913818359,-147.158935546875,128.527587890625,-57.7921562194824,-148.701065063477,124.803230285645,-62.6759376525879,-152.430435180664,122.310989379883,-75.4577865600586,-144.702682495117,139.550674438477,-58.1182899475098,-166.711837768555,116.621429443359,-77.9733352661133,-148.017013549805,200.507659912109,-163.287002563477,-145.528762817383,200.116607666016,-169.279586791992,-144.49365234375,155.232208251953,-65.9589614868164,-150.542251586914,123.284080505371,-70.1615676879883,-144.742691040039,139.840698242188,-51.730167388916,-146.880905151367,126.706413269043,-49.0257987976074,-159.01708984375,118.30859375,-78.0376434326172,-157.078887939453,118.674629211426,-75.2323684692383,-163.986587524414,116.206390380859,-76.1585540771484,-141.729400634766,194.757095336914,-186.532272338867,-143.73860168457,204.846084594727,-181.014739990234,-144.484664916992,144.718170166016,-54.6908569335938,-145.607772827148,155.140197753906,-59.925365447998,-148.112030029297,125.605308532715,-59.339111328125,-151.844390869141,120.428802490234,-65.4078063964844,-155.155715942383,119.263687133789,-72.1959686279297,-145.475769042969,134.984222412109,-49.6055564880371,-168.292999267578,114.475212097168,-70.2966842651367,-144.56266784668,205.19010925293,-176.96533203125,-144.688690185547,150.056716918945,-57.6980514526367,-150.125228881836,121.761932373047,-60.928466796875, +-153.385543823242,119.790740966797,-68.9757537841797,-145.750793457031,139.34065246582,-43.121021270752,-145.562759399414,145.093215942383,-47.4852485656738,-145.870788574219,133.665084838867,-43.6131706237793,-148.206024169922,122.726020812988,-51.4271354675293,-162.58544921875,115.868354797363,-73.4143905639648,-160.408233642578,116.039367675781,-70.9649505615234,-142.423461914063,202.677871704102,-186.978317260742,-145.5927734375,149.903701782227,-52.8010673522949,-154.513656616211,117.027465820313,-62.3242034912109,-156.315811157227,116.60343170166,-65.4682159423828,-158.306015014648,116.331398010254,-68.3080902099609,-146.391860961914,125.428291320801,-38.4330596923828,-147.876998901367,121.104873657227,-44.5153617858887,-165.150680541992,113.968170166016,-68.5153121948242,-151.34033203125,118.450607299805,-55.5958442687988,-152.82048034668,117.704536437988,-59.0828857421875,-146.624877929688,142.960006713867,-40.6584777832031,-145.95881652832,133.183044433594,-38.2368431091309,-149.617156982422,119.308685302734,-50.0772018432617,-163.499542236328,113.683135986328,-65.6927337646484,-169.708129882813,112.352012634277,-61.3145027160645,-157.51594543457,114.051177978516,-58.696849822998,-159.808166503906,113.925163269043,-62.0368766784668,-146.249847412109,124.621215820313,-30.1658535003662,-146.904907226563,119.780731201172,-32.7992134094238,-150.440246582031,116.312400817871,-46.0372085571289,-155.541748046875,114.48021697998,-55.836067199707,-153.651565551758,115.118286132813,-52.7491645812988,-146.219833374023,130.870819091797,-32.3246612548828,-148.186019897461,116.888450622559,-38.5855751037598,-149.152114868164,116.691436767578,-42.5870704650879,-151.988403320313,115.6943359375,-49.428539276123,-165.413711547852,111.296905517578,-57.1504974365234,-161.621337890625,111.674942016602,-55.5998420715332,-147.309951782227,139.674682617188,-33.8872184753418,-146.655868530273,130.381774902344,-28.3901786804199,-146.525863647461,119.815742492676,-24.5030975341797,-148.361038208008,114.443214416504,-33.5946884155273, +-152.664459228516,112.651039123535,-43.4657554626465,-154.605651855469,112.247001647949,-46.4138450622559,-171.197280883789,108.869667053223,-46.8627891540527,-158.915069580078,111.77995300293,-51.7950744628906,-156.720855712891,111.991973876953,-49.1956176757813,-146.49885559082,124.877235412598,-23.8015289306641,-147.588958740234,115.20629119873,-28.5240917205811,-149.796188354492,112.984069824219,-37.1600341796875,-150.840286254883,113.09008026123,-40.3525505065918,-163.250503540039,109.342712402344,-46.5725593566895,-168.705032348633,107.940574645996,-43.4907569885254,-147.485961914063,134.187149047852,-27.3163738250732,-147.43994140625,130.028747558594,-21.5511074066162,-146.283843994141,119.727737426758,-17.2034816741943,-146.817886352539,114.843254089355,-20.0000553131104,-148.827087402344,111.443916320801,-28.4684867858887,-151.445343017578,110.049781799316,-34.5169792175293,-155.60075378418,109.518737792969,-40.0805244445801,-158.401031494141,109.548736572266,-43.7135810852051,-146.957901000977,125.384284973145,-15.2416896820068,-148.264038085938,110.794853210449,-22.9280433654785,-150.431259155273,109.852767944336,-31.4541778564453,-153.357528686523,109.741760253906,-37.4682655334473,-167.534912109375,106.237411499023,-37.3185539245605,-150.791290283203,107.297515869141,-25.1295585632324,-152.330429077148,107.035491943359,-28.4934883117676,-155.554748535156,107.131500244141,-34.1287422180176,-154.333633422852,106.210403442383,-29.8598213195801,-159.5361328125,106.663452148438,-35.9025115966797,-163.376525878906,107.424530029297,-40.3079452514648,-164.704635620117,103.957183837891,-30.792013168335,-154.933700561523,103.586143493652,-24.6555137634277,-159.241104125977,104.304222106934,-29.9188270568848,-159.672149658203,101.014892578125,-24.0517520904541,-163.099487304688,101.316925048828,-25.4011859893799,-166.249801635742,101.867980957031,-26.3000736236572,-166.238800048828,100.140113830566,-24.2351722717285,-167.448913574219,99.2409286499023,-22.6681671142578,-168.670043945313,100.069610595703,-23.1660671234131, +-59.0790977478027,-230.796615600586,-5.37702322006226,-52.3554344177246,-230.229568481445,-26.335277557373,-48.1693229675293,-230.700607299805,-5.99526405334473,-56.2212142944336,-230.277572631836,-32.4111747741699,-57.2014083862305,-230.961624145508,-2.3222439289093,-62.0007820129395,-230.824615478516,-16.8583488464355,-53.8540802001953,-231.096649169922,1.63140404224396,-61.6425476074219,-230.88362121582,-9.86954307556152,-62.4203186035156,-230.443588256836,-24.7302207946777,-63.0760841369629,-230.737609863281,-12.015772819519,-66.6222381591797,-231.185653686523,-16.9745597839355,-58.4336318969727,-230.504577636719,-34.2138481140137,-56.4264335632324,-230.964630126953,-39.3627548217773,-58.283317565918,-236.083129882813,-46.6601715087891,-61.8846702575684,-240.873611450195,-49.0097007751465,-57.3590278625488,-238.483383178711,-50.0695037841797,-60.570240020752,-242.621780395508,-53.0195922851563,-66.8309478759766,-231.74169921875,-22.882137298584,-62.979679107666,-231.663711547852,-32.6056938171387,-60.6818542480469,-232.686798095703,-38.8356018066406,-54.9414863586426,-232.021728515625,-43.951301574707,-59.2760162353516,-234.066940307617,-42.8931007385254,-63.8162574768066,-246.180130004883,-68.5566177368164,-72.7589416503906,-246.173126220703,-70.523307800293,-62.9001693725586,-245.001007080078,-57.4674263000488,-59.1185989379883,-244.175918579102,-57.3339157104492,-63.0202827453613,-238.990417480469,-45.1010131835938,-64.6552352905273,-244.153930664063,-52.6797561645508,-70.1506805419922,-233.63688659668,-18.3333930969238,-61.021785736084,-245.676071166992,-62.4369163513184,-65.584228515625,-245.668075561523,-59.6691436767578,-70.3641052246094,-245.692077636719,-56.0304870605469,-68.6474380493164,-246.207122802734,-80.9912338256836,-66.3082046508789,-243.106811523438,-48.0321044921875,-71.4295043945313,-235.063034057617,-18.7711353302002,-70.1111755371094,-235.868118286133,-25.5753021240234,-65.7355422973633,-235.954116821289,-36.5758781433105,-82.4967956542969,-246.333145141602,-69.8596420288086,-74.30908203125,-245.903091430664,-82.9374237060547, +-67.7925491333008,-241.874694824219,-43.5010566711426,-68.4714126586914,-245.142013549805,-52.536247253418,-67.7498397827148,-235.572082519531,-31.4535789489746,-69.4088134765625,-240.871612548828,-38.7653961181641,-78.2652740478516,-245.693084716797,-47.3908386230469,-70.3627014160156,-244.573974609375,-47.4829483032227,-76.5829162597656,-241.828689575195,-21.3290863037109,-73.8920440673828,-240.890609741211,-27.7690181732178,-71.42919921875,-240.485565185547,-33.5714836120605,-75.4626007080078,-245.197036743164,-44.2998390197754,-87.8162078857422,-246.099105834961,-41.9070014953613,-80.1984634399414,-245.948089599609,-77.9303359985352,-72.2207870483398,-243.981903076172,-42.4082489013672,-78.6174087524414,-242.734786987305,-14.417308807373,-74.9814529418945,-243.790893554688,-35.5100746154785,-82.7419128417969,-245.417053222656,-25.4788932800293,-86.6316986083984,-245.845092773438,-29.0629444122314,-87.379768371582,-246.386138916016,-58.8718643188477,-84.9158325195313,-245.966110229492,-73.0148544311523,-76.9921493530273,-245.585067749023,-83.5128860473633,-79.138053894043,-244.396957397461,-25.4827938079834,-81.5443954467773,-244.917007446289,-19.6305198669434,-96.7985916137695,-246.240127563477,-22.7398242950439,-92.4815673828125,-246.185119628906,-45.1792221069336,-89.2842559814453,-245.891098022461,-63.3111991882324,-83.9330291748047,-245.335052490234,-13.8973579406738,-87.7719039916992,-245.759078979492,-11.2683010101318,-92.6538848876953,-245.400054931641,-53.9322814941406,-83.004638671875,-245.346054077148,-7.70725107192993,-98.416145324707,-246.242126464844,-6.43685722351074,-101.586463928223,-246.300140380859,-28.9760341644287,-96.4793548583984,-245.818099975586,-44.7936859130859,-48.4764556884766,-245.390045166016,38.5042762756348,-51.8650856018066,-245.851089477539,39.909912109375,-50.7035713195801,-245.586059570313,35.2292556762695,-55.6158561706543,-245.996109008789,37.7335014343262,-54.9613914489746,-245.574066162109,45.2621383666992,-80.5831985473633,-245.98210144043,-7.95100498199463,-93.4310607910156,-245.816101074219,5.68229007720947, +-100.396339416504,-246.197128295898,-34.8230094909668,-52.8311805725098,-245.534057617188,32.4018783569336,-58.7787666320801,-244.970001220703,43.3940582275391,-85.402473449707,-245.802093505859,5.34055709838867,-81.9355316162109,-245.482040405273,-1.55213797092438,-105.828872680664,-246.352142333984,-14.8401508331299,-100.589363098145,-246.023101806641,6.0212140083313,-103.807678222656,-246.108108520508,-34.5403785705566,-58.5626411437988,-243.250839233398,47.8870964050293,-55.3939323425293,-245.49006652832,28.2702732086182,-59.0081901550293,-245.87109375,38.4072685241699,-77.6347122192383,-244.941009521484,-0.986163020133972,-106.497940063477,-246.547149658203,-29.1434516906738,-107.05899810791,-246.110107421875,-1.32205605506897,-95.2591323852539,-246.159118652344,14.2036962509155,-103.146614074707,-246.525161743164,18.9228572845459,-62.1109924316406,-242.034713745117,44.7188873291016,-57.5845489501953,-245.625061035156,25.3497867584229,-63.1452941894531,-245.219039916992,37.1878471374512,-60.9251747131348,-245.922088623047,31.0948524475098,-81.43798828125,-245.914093017578,7.77903604507446,-86.5150833129883,-246.307144165039,15.7676486968994,-111.987480163574,-246.271133422852,5.14285707473755,-106.782974243164,-244.893997192383,-35.5513801574707,-62.065486907959,-238.383361816406,48.549259185791,-64.8844604492188,-242.784790039063,40.447868347168,-75.5995101928711,-245.977111816406,12.3318119049072,-119.583221435547,-246.765182495117,-11.8349561691284,-94.0621185302734,-246.193130493164,20.3815002441406,-107.110000610352,-246.4521484375,23.3900966644287,-111.830459594727,-246.388137817383,-30.3719711303711,-64.5139312744141,-238.223342895508,45.2653388977051,-66.0785827636719,-238.574371337891,44.0285186767578,-60.9372749328613,-245.798080444336,21.5936183929443,-68.3658065795898,-244.175918579102,35.341667175293,-66.4181137084961,-245.911087036133,31.0549468994141,-76.2811813354492,-246.258117675781,18.5597229003906,-73.4385986328125,-244.734985351563,3.85984206199646,-115.296806335449,-246.624176025391,-21.8319358825684, +-78.6387100219727,-246.133117675781,22.9163494110107,-97.7848892211914,-245.680084228516,24.2249774932861,-102.87858581543,-246.160125732422,24.0022563934326,-114.549728393555,-246.336135864258,26.0973606109619,-117.070976257324,-246.161117553711,12.9097690582275,-110.951377868652,-244.779983520508,-34.6331901550293,-69.3549041748047,-241.214630126953,38.091236114502,-66.0862808227539,-245.932098388672,17.2959995269775,-71.3319931030273,-246.117126464844,24.6725215911865,-69.4888153076172,-245.753082275391,11.6566457748413,-71.3923034667969,-245.149017333984,7.2723560333252,-75.4776000976563,-244.418960571289,0.151556000113487,-126.813934326172,-246.649169921875,-21.9591484069824,-92.13623046875,-245.026016235352,25.356388092041,-104.501747131348,-245.148010253906,28.531400680542,-111.615447998047,-246.188125610352,27.9867458343506,-127.721015930176,-246.291137695313,10.7027530670166,-115.014770507813,-246.451156616211,-25.8274269104004,-115.00577545166,-245.054016113281,-32.1536483764648,-70.3381958007813,-238.18034362793,40.0029258728027,-71.0155639648438,-245.690078735352,29.9547386169434,-71.7166290283203,-243.81689453125,33.888427734375,-67.4830169677734,-245.867095947266,14.9537687301636,-123.946647644043,-246.228118896484,-27.3383750915527,-130.402282714844,-246.703170776367,-22.3831901550293,-80.4840927124023,-244.942001342773,27.6266098022461,-96.5971755981445,-243.843902587891,27.8486328125,-100.614364624023,-244.080932617188,28.4815940856934,-108.194107055664,-245.87109375,28.452392578125,-114.279708862305,-245.403045654297,35.5043830871582,-129.372177124023,-246.768188476563,-5.00550699234009,-71.3385925292969,-238.254348754883,39.2343482971191,-74.0513610839844,-239.152435302734,36.9117202758789,-76.0347595214844,-245.411041259766,28.5342998504639,-127.025955200195,-245.823089599609,-28.7347106933594,-83.24755859375,-242.439758300781,30.2395668029785,-92.2071380615234,-242.459762573242,29.0355491638184,-102.182518005371,-242.555770874023,31.6012001037598,-105.725868225098,-243.579864501953,32.553092956543, +-109.647247314453,-244.764984130859,32.9189300537109,-118.666130065918,-246.192123413086,36.2163505554199,-128.161071777344,-246.372146606445,23.3467903137207,-136.178848266602,-246.661163330078,-1.89100205898285,-122.275489807129,-245.001998901367,-31.9434261322021,-76.6481094360352,-243.362854003906,32.1382522583008,-136.115844726563,-246.455154418945,-23.2769775390625,-131.312377929688,-245.066024780273,-28.174955368042,-96.6880798339844,-239.181442260742,31.6584053039551,-111.642448425293,-244.396957397461,37.0337333679199,-120.607322692871,-246.50715637207,30.6506080627441,-117.958061218262,-246.05810546875,43.9096069335938,-137.671005249023,-246.290145874023,27.3232822418213,-77.9455413818359,-239.92350769043,34.364673614502,-124.505706787109,-242.909805297852,-32.33056640625,-128.158065795898,-243.628875732422,-30.7075042724609,-80.6943130493164,-239.539474487305,33.4667854309082,-90.0371246337891,-238.83740234375,31.3156719207764,-94.9487152099609,-239.191436767578,31.1795597076416,-103.545654296875,-240.330551147461,34.9170265197754,-105.46484375,-241.301651000977,36.0857391357422,-112.079490661621,-244.448959350586,41.8905067443848,-120.212287902832,-246.180130004883,48.6415672302246,-126.034858703613,-246.223129272461,46.926399230957,-133.208557128906,-245.817092895508,51.9934005737305,-141.921417236328,-246.450149536133,12.913969039917,-139.527191162109,-246.602172851563,-18.8298416137695,-135.431777954102,-245.202026367188,-27.1928615570068,-83.8534240722656,-238.821411132813,32.6392021179199,-86.6972045898438,-238.631393432617,31.9416332244873,-119.024169921875,-247.33723449707,51.8818893432617,-141.662384033203,-245.404052734375,55.5972518920898,-143.374557495117,-245.701080322266,39.9831199645996,-144.893707275391,-246.907196044922,-7.33235502243042,-139.721206665039,-245.752075195313,-24.6658134460449,-128.437088012695,-246.083114624023,60.9129753112793,-119.241195678711,-247.25422668457,56.0802993774414,-138.035034179688,-245.260025024414,64.2882080078125,-151.724380493164,-246.063110351563,24.8896427154541, +-150.739288330078,-246.726165771484,5.90072202682495,-143.451568603516,-245.890090942383,-23.7897262573242,-145.705780029297,-246.378143310547,-19.4395008087158,-138.848114013672,-242.366744995117,-26.8688297271729,-122.649520874023,-246.229125976563,56.494140625,-132.634490966797,-245.44905090332,67.7390441894531,-146.961898803711,-245.169021606445,52.5623550415039,-141.267349243164,-244.872009277344,64.1433868408203,-153.528549194336,-246.648162841797,-0.104154996573925,-143.074523925781,-243.439849853516,-25.2839736938477,-146.067825317383,-244.648971557617,59.6249465942383,-157.498947143555,-245.113021850586,40.9698181152344,-159.118087768555,-246.611175537109,9.91785526275635,-146.306838989258,-244.807983398438,-23.3705863952637,-151.583358764648,-246.208129882813,-15.0245676040649,-150.55224609375,-244.630966186523,53.1100082397461,-144.579666137695,-243.780899047852,66.2646942138672,-153.232528686523,-244.949005126953,47.1553230285645,-159.640151977539,-245.434051513672,34.4231758117676,-162.757461547852,-246.352142333984,-2.02669501304626,-148.655075073242,-245.903091430664,-20.0232582092285,-156.332824707031,-245.929092407227,-16.6024227142334,-150.500259399414,-243.320846557617,58.7642593383789,-146.832885742188,-242.861801147461,64.45751953125,-157.184906005859,-244.550964355469,45.9708099365234,-161.750350952148,-244.80598449707,39.4188652038574,-167.373901367188,-245.571060180664,25.4986019134521,-170.783233642578,-245.710083007813,9.22120666503906,-149.699172973633,-243.337844848633,-21.8326358795166,-152.668472290039,-245.174026489258,-19.6151180267334,-148.835083007813,-242.458755493164,62.0068817138672,-153.744567871094,-242.457763671875,56.2673149108887,-155.604751586914,-243.830902099609,51.3915405273438,-160.619247436523,-243.898895263672,45.2506408691406,-164.975677490234,-245.187026977539,33.2578620910645,-169.552108764648,-245.821090698242,14.8625602722168,-164.070587158203,-245.836090087891,-10.3500099182129,-159.402130126953,-246.168121337891,-11.4981231689453,-156.577850341797,-243.590866088867,-19.2694854736328, +-158.848083496094,-242.677780151367,50.4999504089355,-163.863571166992,-243.273834228516,43.4530601501465,-165.271697998047,-244.240936279297,38.9184188842773,-170.475204467773,-244.619964599609,30.320276260376,-172.686416625977,-244.813980102539,22.9590549468994,-173.332489013672,-244.904998779297,15.3046026229858,-169.693130493164,-245.026016235352,-2.57177805900574,-159.891174316406,-245.190032958984,-16.2189846038818,-153.566558837891,-240.529571533203,-20.359790802002,-156.797866821289,-241.960708618164,54.3022270202637,-162.670440673828,-241.987716674805,48.1049194335938,-168.484008789063,-243.677886962891,37.0600357055664,-175.655731201172,-243.714874267578,12.3545150756836,-171.851348876953,-244.865997314453,2.82896089553833,-168.030975341797,-245.038024902344,-7.81387186050415,-160.212203979492,-240.883605957031,-17.4306049346924,-157.036895751953,-239.311447143555,-19.0524635314941,-167.784942626953,-242.378753662109,41.7808952331543,-173.32649230957,-242.695785522461,34.1475486755371,-175.035659790039,-242.976806640625,29.4186878204346,-175.926742553711,-243.403854370117,22.0334625244141,-173.984558105469,-244.575973510742,7.78394603729248,-176.864837646484,-242.30973815918,16.673038482666,-173.242477416992,-242.235748291016,0.369933009147644,-167.182891845703,-243.837890625,-11.0256767272949,-171.043273925781,-243.645874023438,-5.03465986251831,-163.329498291016,-243.626876831055,-14.7513418197632,-172.014358520508,-243.994903564453,31.7081108093262,-177.62190246582,-242.480758666992,10.094292640686,-178.671020507813,-240.286544799805,13.0799856185913,-176.175765991211,-242.512756347656,6.20743179321289,-169.854141235352,-243.569869995117,-8.28755760192871,-163.603530883789,-239.775497436523,-15.2275876998901,-170.427200317383,-241.241638183594,-6.66545009613037,-166.598831176758,-240.537582397461,-12.2109928131104,-178.727020263672,-240.309539794922,8.97572422027588,45.335636138916,-233.506881713867,48.6651725769043,46.4956512451172,-234.180953979492,52.9033889770508,43.8361892700195,-232.160751342773,52.9962959289551, +47.5790557861328,-233.129837036133,60.0645904541016,45.6570701599121,-232.112747192383,58.2172088623047,42.984504699707,-231.085647583008,57.6857566833496,41.5906677246094,-231.146636962891,50.2295265197754,44.0141105651855,-230.723617553711,62.732551574707,39.4781646728516,-230.659591674805,56.5646476745605,47.0589065551758,-231.635711669922,63.9576721191406,51.5939483642578,-235.238052368164,64.5313262939453,37.6551818847656,-230.542602539063,48.2868347167969,33.8483085632324,-230.428588867188,37.0648345947266,34.7396965026855,-230.77961730957,56.4483337402344,49.0590019226074,-232.466781616211,65.9211654663086,45.2896308898926,-230.425582885742,68.5340194702148,52.4587364196777,-233.924911499023,68.3646011352539,42.8699951171875,-230.118545532227,73.0251617431641,26.6143016815186,-230.628601074219,66.7232437133789,28.1143493652344,-230.431579589844,34.7706108093262,48.5149459838867,-230.88362121582,70.1656799316406,45.4591484069824,-229.641510009766,89.2727508544922,29.4717826843262,-230.448577880859,77.0285491943359,25.3371772766113,-230.063537597656,14.1790933609009,18.310489654541,-230.66960144043,38.1287384033203,16.0320663452148,-231.157638549805,65.1878890991211,46.3687362670898,-229.973541259766,75.2374725341797,51.9151802062988,-231.81672668457,71.3879013061523,35.6267852783203,-229.929534912109,86.4955825805664,25.344877243042,-230.081558227539,90.3353500366211,17.2714862823486,-230.458587646484,84.7718124389648,49.4225387573242,-230.087554931641,75.3046798706055,13.9162588119507,-230.892623901367,44.5499687194824,8.98495483398438,-230.83561706543,77.8261337280273,21.6086120605469,-229.186462402344,106.076400756836,8.66681385040283,-231.074645996094,68.5357208251953,8.35671424865723,-230.285568237305,89.3616638183594,14.5718221664429,-229.393478393555,106.716461181641,6.24132585525513,-230.986633300781,59.6895523071289,-1.42493498325348,-230.325561523438,94.4092559814453,-1.52497494220734,-231.214660644531,72.2334823608398,-0.764580011367798,-229.844528198242,102.931091308594,10.4485177993774,-228.29736328125,120.121772766113, +-7.62740278244019,-229.643508911133,110.902877807617,-9.20576763153076,-231.249664306641,80.8006210327148,-0.807694017887115,-229.173461914063,111.835960388184,-12.8842678070068,-230.970626831055,87.6808929443359,-7.48682880401611,-227.830322265625,131.038848876953,-13.5477323532104,-230.137557983398,103.654159545898,-20.9328556060791,-231.689712524414,77.5556030273438,-11.4180240631104,-228.029342651367,130.305770874023,-19.8459491729736,-230.974624633789,93.9458160400391,-17.6305332183838,-228.197372436523,129.224655151367,-23.0225620269775,-230.017532348633,108.376625061035,-31.5178928375244,-230.962631225586,100.957901000977,-27.0781593322754,-228.922424316406,121.000862121582,-29.8172283172607,-229.674499511719,115.125289916992,-21.1162738800049,-228.315368652344,128.56559753418,-35.0884437561035,-229.934539794922,113.798156738281,-23.9596538543701,-228.512405395508,128.266571044922,-32.063850402832,-229.289474487305,123.969146728516,-41.702091217041,-231.0146484375,108.793663024902,-28.8842353820801,-228.925430297852,127.162460327148,-30.1557598114014,-229.067443847656,125.974349975586,-37.5443878173828,-230.155548095703,120.004760742188,-41.0506286621094,-230.495590209961,116.72144317627,-43.9691123962402,-230.982635498047,112.845062255859,-47.7791862487793,-233.095840454102,110.564834594727,-14.2083978652954,-228.148361206055,129.799728393555,-186.332763671875,181.390777587891,-66.5415191650391,-186.655792236328,184.652099609375,-73.2192687988281,-189.138031005859,181.969833374023,-71.6930236816406,-185.210662841797,178.019439697266,-58.181999206543,-189.715103149414,187.51237487793,-84.8113021850586,-190.509170532227,190.24365234375,-91.5360717773438,-51.6356658935547,136.8994140625,-7.70606088638306,-58.5888481140137,133.088043212891,-2.01494407653809,-63.2707023620605,130.821823120117,3.30393695831299,-64.5242309570313,130.980834960938,6.85711622238159,-67.489616394043,130.052734375,9.17676258087158,-70.749641418457,130.134750366211,13.004077911377,-74.3268890380859,130.367767333984,16.5437240600586,-84.0217361450195,125.057250976563,22.2988872528076, +-148.977096557617,149.685668945313,-40.4161567687988,-148.349044799805,144.615173339844,-35.7102928161621,-146.972900390625,149.85368347168,-47.2425231933594,-148.695068359375,137.923522949219,-26.2453670501709,-147.378952026367,154.679153442383,-52.701961517334,-148.464050292969,132.626998901367,-18.324592590332,-146.170822143555,159.733657836914,-65.0010681152344,-147.585968017578,128.026550292969,-10.7003450393677,-148.078002929688,129.336685180664,-6.82377481460571,-146.091827392578,165.06916809082,-80.8938217163086,-166.455810546875,128.873626708984,-131.218856811523,-165.19367980957,128.875640869141,-128.154556274414,-163.383514404297,129.404678344727,-125.173263549805,-166.538818359375,126.676414489746,-121.386894226074,-164.642639160156,126.868438720703,-118.44059753418,-169.501113891602,124.574203491211,-116.844444274902,-167.379898071289,124.237174987793,-112.451011657715,-171.354293823242,123.195068359375,-111.626937866211,-169.634124755859,121.255882263184,-99.0489044189453,-169.476119995117,119.710731506348,-91.2939453125,-170.662231445313,118.065567016602,-81.3031616210938,-174.11457824707,110.899864196777,-52.7935676574707,-171.219284057617,105.212310791016,-32.9827270507813,-169.037063598633,103.171112060547,-28.3833770751953,-189.202056884766,194.623077392578,-100.228813171387,-191.271255493164,196.030212402344,-107.795562744141,-196.088729858398,210.252593994141,-140.035720825195,-197.060821533203,210.983673095703,-144.156112670898,-195.188629150391,214.448013305664,-146.754379272461,-197.619873046875,211.750747680664,-148.321533203125,-195.75569152832,215.444122314453,-150.417724609375,-192.27033996582,218.149383544922,-149.369644165039,-192.916397094727,218.898452758789,-153.422027587891,-188.463973999023,221.647720336914,-154.625152587891,-186.480773925781,223.259887695313,-159.317611694336,-180.472198486328,225.430099487305,-160.079696655273,-181.272277832031,226.538208007813,-165.915252685547,-177.9609375,227.050247192383,-165.098175048828,-175.889739990234,227.728302001953,-169.221572875977, +-174.6826171875,226.510208129883,-163.583023071289,-172.616424560547,227.614303588867,-167.551422119141,-173.754531860352,228.044357299805,-173.088958740234,-169.035064697266,226.783218383789,-167.328384399414,-170.76123046875,228.32536315918,-171.637817382813,-171.756332397461,228.08235168457,-176.137268066406,-166.973876953125,227.831329345703,-172.126861572266,-163.292510986328,225.898147583008,-171.134780883789,-168.443008422852,228.26237487793,-176.163269042969,-166.717834472656,227.457290649414,-180.656707763672,-161.55534362793,226.884231567383,-176.271255493164,-164.123596191406,227.815322875977,-178.296478271484,-157.500946044922,224.851028442383,-176.41227722168,-163.292510986328,227.397277832031,-181.416778564453,-164.49462890625,226.314178466797,-183.017929077148,-157.617950439453,225.982147216797,-180.535690307617,-151.226333618164,221.948745727539,-181.536773681641,-160.060180664063,223.258880615234,-186.413269042969,-153.904586791992,223.913940429688,-181.157745361328,-155.62776184082,224.520004272461,-185.468170166016,-151.143310546875,222.182769775391,-185.677185058594,-148.980102539063,219.478515625,-183.559982299805,-158.512023925781,219.16047668457,-188.486465454102,-152.858474731445,223.966949462891,-184.435073852539,-156.035797119141,222.012756347656,-188.59748840332,-149.740173339844,217.804351806641,-189.440551757813,-152.921493530273,221.702728271484,-188.630477905273,-155.163711547852,218.144378662109,-189.634567260742,-147.235931396484,217.654327392578,-186.68928527832,-145.351745605469,214.537033081055,-187.219345092773,-146.888900756836,217.048263549805,-189.207550048828,-146.184829711914,214.272003173828,-190.834701538086,-143.78759765625,210.478622436523,-189.519577026367,-149.051116943359,212.180801391602,-192.094818115234,-145.236740112305,209.580535888672,-192.269836425781,-142.813507080078,205.248107910156,-190.499664306641,-148.672073364258,207.647354125977,-192.872894287109,-141.280349731445,196.900283813477,-190.156631469727,-145.050720214844,204.480041503906,-193.247940063477, +-142.490478515625,202.158813476563,-192.233825683594,-149.104110717773,203.064895629883,-192.999908447266,-141.66438293457,191.796798706055,-189.887603759766,-141.351348876953,195.816192626953,-191.584777832031,-146.045806884766,199.170516967773,-193.655975341797,-143.300552368164,200.225616455078,-193.420959472656,-142.717483520508,195.681182861328,-192.919891357422,-141.986419677734,184.8701171875,-185.881210327148,-145.021713256836,194.245025634766,-193.446960449219,-143.650588989258,190.83171081543,-192.378845214844,-142.898498535156,186.187255859375,-189.583572387695,-143.632583618164,181.712814331055,-188.654479980469,-143.377548217773,178.405487060547,-184.660079956055,-145.410751342773,181.919815063477,-190.063613891602,-145.333755493164,178.05143737793,-187.704391479492,-144.945709228516,173.505996704102,-183.471984863281,-146.791885375977,172.941955566406,-186.01123046875,-147.505966186523,167.196380615234,-180.398666381836,-150.906295776367,164.079086303711,-180.985733032227,-150.327239990234,162.393920898438,-177.974426269531,-151.135314941406,159.298614501953,-175.48518371582,-153.277526855469,156.000289916992,-173.674011230469,-156.212814331055,152.720962524414,-171.019760131836,-158.156005859375,149.312637329102,-167.46940612793,-164.827651977539,144.810195922852,-161.383819580078,-165.636734008789,141.838897705078,-158.117492675781,-164.762649536133,139.40266418457,-154.975189208984,-49.7449798583984,167.329406738281,-41.5980758666992,-47.3339424133301,171.573822021484,-43.777889251709,-54.4848442077637,172.238876342773,-42.5993690490723,-57.6695556640625,167.12336730957,-40.2794456481934,-52.5042495727539,176.811325073242,-44.3344421386719,-47.8382949829102,176.75032043457,-45.5666618347168,-57.3505249023438,162.248901367188,-38.2939491271973,-58.9885864257813,172.11686706543,-41.4630584716797,-57.5501441955566,176.318267822266,-42.8723945617676,-39.7243957519531,176.517303466797,-47.0508079528809,-64.2033004760742,167.112365722656,-38.7035865783691,-63.6846466064453,171.495803833008,-39.7452926635742, +-55.7587661743164,181.51579284668,-44.0868186950684,-50.7628784179688,181.577789306641,-45.9386978149414,-46.1555290222168,181.610794067383,-47.2614288330078,-64.022575378418,162.155883789063,-36.9912185668945,-60.2085075378418,178.44548034668,-42.1172256469727,-41.0486297607422,181.531799316406,-48.6401596069336,-36.3531684875488,181.506790161133,-49.833179473877,-69.9781646728516,171.817825317383,-36.4480667114258,-68.556526184082,166.953353881836,-36.6894912719727,-64.2999038696289,157.263412475586,-34.4416732788086,-65.1603927612305,176.099258422852,-39.2869453430176,-42.0729293823242,186.212249755859,-49.6448593139648,-69.5743255615234,162.172882080078,-35.0900344848633,-73.260383605957,166.863357543945,-34.3082580566406,-69.8057479858398,157.348403930664,-33.1381416320801,-76.2460708618164,162.060882568359,-32.0627403259277,-79.8157272338867,166.360290527344,-30.6386985778809,-73.4198989868164,152.419937133789,-29.6009979248047,-76.2809829711914,157.277404785156,-30.7440071105957,-82.5144958496094,161.708831787109,-28.5816955566406,-79.3982849121094,152.275924682617,-27.380880355835,-83.5534896850586,157.107391357422,-27.2387657165527,-87.8674163818359,157.269409179688,-25.269172668457,-79.0540466308594,147.567459106445,-25.2208690643311,-84.4520797729492,152.334930419922,-25.5820026397705,-88.9682235717773,152.385940551758,-23.7390213012695,-92.2867431640625,156.865371704102,-22.8119316101074,-86.0056381225586,147.431457519531,-23.076358795166,-98.2524337768555,157.386428833008,-19.0997676849365,-88.9896240234375,142.734985351563,-19.825138092041,-92.6760864257813,147.532455444336,-20.5965137481689,-94.2040405273438,152.484939575195,-21.171070098877,-98.5580673217773,152.063903808594,-18.7009296417236,-104.608757019043,152.331924438477,-14.7257404327393,-95.5885772705078,142.677978515625,-17.5116119384766,-112.994575500488,151.940887451172,-8.20676136016846,-98.9999084472656,147.554458618164,-17.643123626709,-109.450233459473,147.530456542969,-11.0079746246338,-102.161514282227,142.666976928711,-14.4711141586304, +-105.104804992676,147.091415405273,-13.984766960144,-114.246696472168,147.737487792969,-7.55739688873291,-118.929153442383,148.909591674805,-3.95739388465881,-108.316116333008,142.724990844727,-11.0336780548096,-113.962677001953,142.581970214844,-7.58729982376099,-121.907455444336,138.868606567383,-2.4915599822998,-122.747535705566,145.607269287109,-1.43901705741882,-106.667961120605,137.803497314453,-10.5484304428101,-111.217399597168,137.963516235352,-8.48688793182373,-117.24299621582,137.823501586914,-5.19914579391479,-126.512901306152,140.41276550293,0.591602027416229,-128.427093505859,143.00700378418,2.70640897750854,-120.697334289551,133.105041503906,-3.09105896949768,-114.45272064209,133.231063842773,-5.94714879989624,-126.14086151123,133.295059204102,-0.571991980075836,-129.145156860352,137.185440063477,1.60718095302582,-134.089645385742,140.873809814453,6.12104415893555,-125.243782043457,128.507583618164,-1.13753795623779,-132.220474243164,138.485565185547,3.77345299720764,-121.159378051758,128.098556518555,-2.48000907897949,15.7782402038574,232.780807495117,-79.4393768310547,13.9062576293945,236.213150024414,-80.9420318603516,16.9365539550781,233.369873046875,-83.3111572265625,11.5288238525391,236.323165893555,-83.7052001953125,14.9152555465698,234.143951416016,-85.3006591796875,18.4715042114258,229.926544189453,-83.8889236450195,15.2874927520752,231.514694213867,-87.5946807861328,17.3613967895508,232.0107421875,-86.2159423828125,20.2283763885498,225.123062133789,-83.4152679443359,17.8286418914795,228.524398803711,-88.2019424438477,21.7171230316162,219.956558227539,-81.227653503418,19.7114276885986,227.260269165039,-86.6574859619141,22.6317138671875,220.208572387695,-84.5112762451172,20.5010032653809,223.704925537109,-88.5449676513672,24.1720638275146,207.090301513672,-75.9524383544922,24.5878028869629,214.868057250977,-84.7387008666992,25.2420692443848,209.867568969727,-80.744010925293,23.0370502471924,219.607513427734,-87.9164123535156,19.3235893249512,220.139572143555,-90.5260696411133,25.6874122619629,200.522659301758,-74.4416885375977, +21.4372959136963,221.019653320313,-89.9920196533203,25.7717208862305,209.015472412109,-83.7114944458008,23.6588134765625,215.209091186523,-88.1412353515625,26.3435745239258,200.107604980469,-77.9910430908203,25.7032146453857,195.068115234375,-71.6663208007813,22.249475479126,215.859146118164,-89.6304779052734,24.2249698638916,209.849563598633,-86.6697845458984,19.18967628479,215.205093383789,-89.7835922241211,25.6865100860596,195.242141723633,-75.5644073486328,24.9199352264404,195.645172119141,-67.9246520996094,25.7905216217041,200.006591796875,-81.0172348022461,25.0432472229004,205.490142822266,-84.7408981323242,21.7508277893066,211.557739257813,-88.8381042480469,25.8716297149658,196.268218994141,-78.5886917114258,25.7100143432617,191.599761962891,-70.7407302856445,24.7988243103027,191.483764648438,-74.1321563720703,24.9340381622314,201.485748291016,-83.1339416503906,23.4429912567139,205.514144897461,-86.3524551391602,20.8615398406982,206.31721496582,-87.051628112793,18.1894779205322,210.130584716797,-88.1258316040039,24.0361499786377,192.671875,-77.3688812255859,24.9921436309814,190.176635742188,-65.0754776000977,23.4660930633545,197.240325927734,-81.5762939453125,22.3057804107666,201.834777832031,-84.7392959594727,24.2997741699219,188.815505981445,-72.045654296875,24.4737949371338,186.888305664063,-68.1857833862305,23.7956275939941,190.836700439453,-61.5277252197266,21.9176425933838,189.75959777832,-75.2882766723633,20.6638202667236,193.646987915039,-78.9638290405273,24.3498802185059,185.215148925781,-65.1020736694336,24.202465057373,185.746200561523,-62.2888984680176,21.8471355438232,185.806198120117,-70.772331237793,22.664514541626,183.710006713867,-67.2255783081055,23.5766048431396,185.893218994141,-59.1020851135254,22.3102798461914,182.293869018555,-64.2905960083008,22.5195007324219,181.709808349609,-59.3309097290039,19.3116874694824,182.619903564453,-67.1282730102539,20.2904815673828,180.149658203125,-62.4953193664551,21.8166332244873,179.91162109375,-54.8786735534668,19.7471294403076,178.114456176758,-58.8137588500977, +20.0504589080811,176.367294311523,-55.1182975769043,20.3694915771484,177.127365112305,-52.0889015197754,17.7747364044189,175.49919128418,-56.2368087768555,19.088565826416,176.268280029297,-48.3462333679199,17.3312931060791,173.958038330078,-52.0788993835449,18.4345016479492,177.777420043945,-45.3203353881836,15.7620391845703,171.27278137207,-46.063907623291,13.0409727096558,170.920761108398,-48.4685440063477,17.3663959503174,173.854034423828,-43.9815063476563,15.5541191101074,170.888732910156,-42.0520172119141,11.8307542800903,168.232482910156,-42.5058631896973,15.5101137161255,173.466995239258,-39.8055953979492,14.2318887710571,170.497711181641,-39.1925392150879,8.15222263336182,165.171188354492,-38.5386734008789,11.7483463287354,167.821441650391,-38.6546859741211,3.64382195472717,163.408004760742,-37.7630958557129,-0.431950986385345,162.844955444336,-37.7947006225586,134.134643554688,-241.569671630859,15.039176940918,128.109039306641,-242.429763793945,13.6554412841797,128.964141845703,-243.408843994141,20.9784603118896,135.511779785156,-242.497756958008,21.6736278533936,125.43278503418,-243.487869262695,20.3500995635986,142.261428833008,-241.556671142578,22.3013896942139,125.984840393066,-243.358856201172,26.9699478149414,129.487182617188,-243.758880615234,27.5159015655518,133.959625244141,-243.307846069336,28.3163795471191,122.938545227051,-242.577774047852,25.0664596557617,143.234527587891,-242.25373840332,28.9819431304932,130.790298461914,-243.341842651367,33.4012756347656,133.992630004883,-243.398849487305,34.1459503173828,137.301940917969,-243.210830688477,34.734504699707,127.28596496582,-242.695785522461,32.7541122436523,123.882629394531,-241.684677124023,30.9215335845947,119.960250854492,-238.900405883789,29.5590019226074,149.256118774414,-241.599685668945,29.6354084014893,148.694061279297,-241.972717285156,35.2507553100586,134.639678955078,-243.144821166992,40.5586776733398,139.311141967773,-243.129821777344,42.5184707641602,131.558380126953,-242.531768798828,38.7856025695801,127.803016662598,-241.689682006836,36.6684989929199, +123.216575622559,-239.454467773438,34.5444869995117,121.344383239746,-239.214431762695,31.6648063659668,155.943771362305,-240.108535766602,29.7716217041016,155.505737304688,-240.976623535156,42.214038848877,157.141891479492,-240.561569213867,36.2975578308105,135.789810180664,-242.853805541992,46.3640480041504,137.205947875977,-242.619766235352,52.8074798583984,142.924499511719,-242.492752075195,49.2189254760742,130.544296264648,-241.322647094727,42.2226409912109,132.187438964844,-241.536666870117,48.8696899414063,125.986839294434,-238.449356079102,41.859203338623,161.50732421875,-239.665481567383,42.1997375488281,152.954483032227,-241.034622192383,47.6047706604004,155.755767822266,-240.223541259766,49.6237678527832,135.669799804688,-241.718688964844,65.5791244506836,149.163101196289,-240.91960144043,54.7909736633301,138.780090332031,-241.059616088867,66.5677261352539,143.779586791992,-241.893692016602,54.6788635253906,133.401565551758,-242.234741210938,53.7242698669434,132.128448486328,-242.282745361328,64.8899612426758,129.313171386719,-239.939514160156,47.5618667602539,127.576995849609,-239.016418457031,52.2368240356445,129.829208374023,-240.754592895508,54.1973152160645,126.57689666748,-237.894317626953,44.2252388000488,142.985504150391,-240.15852355957,66.5288162231445,137.867004394531,-239.835494995117,73.1000671386719,131.990432739258,-240.724594116211,75.9358444213867,129.549179077148,-242.30973815918,62.7783584594727,126.15185546875,-242.194732666016,71.3307952880859,127.674003601074,-241.528671264648,76.5496063232422,127.475982666016,-241.047622680664,59.6858520507813,125.290771484375,-238.887405395508,57.4510345458984,125.745819091797,-237.089233398438,49.8726921081543,123.279571533203,-236.853210449219,55.7398681640625,146.584854125977,-236.921203613281,74.0463562011719,135.657791137695,-239.109436035156,77.5395050048828,129.232147216797,-239.665481567383,83.3209686279297,135.291748046875,-237.779296875,81.3205795288086,121.552406311035,-241.697677612305,82.0758438110352,124.498695373535,-240.740585327148,85.1813507080078, +124.859733581543,-241.942718505859,66.463020324707,120.786331176758,-242.278747558594,75.3356857299805,122.301483154297,-240.181533813477,63.640739440918,120.756324768066,-237.068222045898,60.3641204833984,134.856719970703,-234.735000610352,89.0109252929688,126.063850402832,-238.723388671875,90.9281158447266,130.852325439453,-235.437072753906,92.8730087280273,121.221374511719,-240.475555419922,93.437255859375,117.216987609863,-241.430648803711,92.2484436035156,119.31819152832,-241.979705810547,71.3045959472656,116.956954956055,-242.39875793457,77.8116226196289,116.352890014648,-240.749588012695,69.0183715820313,112.228492736816,-240.382553100586,71.2821960449219,136.708877563477,-231.956741333008,94.8953018188477,129.276168823242,-234.982025146484,98.7787857055664,122.407485961914,-239.207443237305,99.0743103027344,110.521331787109,-242.320739746094,81.5187911987305,105.774864196777,-241.967712402344,100.660865783691,114.247688293457,-242.327743530273,75.921142578125,109.498222351074,-241.829696655273,73.6819229125977,104.712753295898,-242.30973815918,87.5509796142578,94.3487396240234,-242.473754882813,89.6771926879883,99.5875549316406,-242.216720581055,99.0652084350586,104.92578125,-242.66877746582,80.4246826171875,102.198509216309,-243.398849487305,74.5976104736328,95.5258560180664,-242.204727172852,95.4623565673828,89.5260696411133,-242.335739135742,89.0104217529297,90.3573532104492,-242.822784423828,83.6669082641602,95.7693786621094,-242.942810058594,78.5466003417969,91.9614028930664,-241.5966796875,94.8865051269531,100.409339904785,-243.455871582031,74.3755874633789,82.6571960449219,-241.710678100586,86.7502059936523,84.2031402587891,-242.782791137695,82.1515502929688,85.2188491821289,-240.294540405273,91.8820037841797,88.6927871704102,-241.054626464844,93.2792434692383,90.727180480957,-242.843811035156,78.0550537109375,94.0794143676758,-242.877807617188,72.7943344116211,96.7143707275391,-243.332855224609,73.4440994262695,88.0652236938477,-238.938400268555,96.9677047729492,77.9689331054688,-242.504760742188,80.4951934814453, +79.285758972168,-243.225830078125,75.5390014648438,85.1286315917969,-242.954803466797,76.5143051147461,78.948127746582,-238.815414428711,89.1687393188477,83.2698593139648,-237.41926574707,94.2846450805664,77.1958541870117,-240.858612060547,84.7192077636719,87.5574798583984,-242.134719848633,68.4165115356445,91.3110427856445,-242.390762329102,71.8074417114258,75.1791610717773,-243.119812011719,74.8380355834961,73.2172698974609,-241.560668945313,79.4406890869141,76.9596328735352,-243.621887207031,68.3994064331055,81.7272033691406,-243.059814453125,70.3598022460938,81.5037841796875,-233.849914550781,96.4074478149414,68.1321716308594,-238.611373901367,80.3010711669922,69.5983123779297,-236.040130615234,84.2681579589844,68.7020263671875,-232.147750854492,87.1320419311523,84.9684219360352,-241.945709228516,65.2061004638672,72.9934463500977,-244.008911132813,66.2947006225586,70.5201034545898,-242.663772583008,73.4126968383789,68.4413986206055,-240.98762512207,76.7420272827148,75.7817153930664,-243.574859619141,57.936580657959,77.9276351928711,-242.981796264648,59.9900817871094,79.3733673095703,-242.629776000977,61.1764984130859,75.9026336669922,-231.619689941406,93.818000793457,63.4856147766113,-233.270858764648,81.6690063476563,61.9268646240234,-230.594604492188,84.3203659057617,66.5067138671875,-229.571487426758,89.6860961914063,71.2907867431641,-230.290573120117,91.5814743041992,63.5660247802734,-239.011428833008,75.2968826293945,68.7154312133789,-243.480865478516,67.8834533691406,64.630126953125,-241.557662963867,71.5790176391602,67.0060653686523,-244.115921020508,61.1374931335449,71.1041641235352,-244.460952758789,57.679256439209,75.4046783447266,-229.074447631836,97.6173706054688,59.9595680236816,-232.528778076172,79.7265167236328,69.4087905883789,-228.361389160156,95.292839050293,59.9766731262207,-229.142456054688,87.9031143188477,63.8941535949707,-228.212371826172,95.4249572753906,57.6917495727539,-230.145553588867,82.3428726196289,59.3951148986816,-238.134323120117,71.9154510498047,64.5380172729492,-243.106811523438,66.5303192138672, +60.064079284668,-241.837692260742,65.1900863647461,59.164192199707,-239.806503295898,68.9063568115234,71.0598602294922,-227.741317749023,101.49195098877,55.9999847412109,-233.16584777832,74.1369705200195,53.6360511779785,-230.740615844727,76.1981735229492,58.5460319519043,-228.701416015625,92.2506408691406,57.740852355957,-228.411392211914,98.6185684204102,64.9124603271484,-227.632308959961,110.405822753906,55.1423988342285,-229.08544921875,87.2633590698242,54.1890029907227,-229.603500366211,81.7286148071289,50.8772811889648,-229.657501220703,80.9227294921875,55.9115715026855,-227.689315795898,112.691040039063,47.4069404602051,-228.123352050781,112.376014709473,40.567569732666,-229.446487426758,94.8097991943359,40.3154449462891,-227.855316162109,117.418510437012,44.4345474243164,-227.463287353516,121.138877868652,32.9539222717285,-228.465377807617,114.710243225098,28.6358013153076,-228.923431396484,107.846572875977,34.8453102111816,-227.26628112793,123.567108154297,23.0169506072998,-227.210266113281,126.671417236328,30.060941696167,-227.851318359375,120.494812011719,17.9841575622559,-227.947341918945,122.924049377441,32.6161918640137,-227.178268432617,124.304191589355,20.5703105926514,-227.128265380859,127.514503479004,11.1289854049683,-227.305282592773,129.961730957031,4.07240390777588,-228.095352172852,126.074356079102,7.65344476699829,-227.20426940918,131.346878051758,1.8405749797821,-227.248260498047,132.664001464844,-1.52691495418549,-227.491287231445,132.211959838867,-4.28081512451172,-227.680313110352,131.53288269043,5.54520797729492,242.665771484375,-69.6181182861328,3.20349907875061,244.839981079102,-69.6698226928711,4.40288591384888,242.837799072266,-65.7665405273438,3.7105278968811,243.193832397461,-73.4201889038086,2.38257789611816,245.828094482422,-65.6846389770508,6.59199094772339,242.041717529297,-73.5823059082031,0.310407012701035,243.042816162109,-72.0276565551758,2.65802502632141,243.434844970703,-61.9981727600098,-0.535785973072052,244.957000732422,-68.6585235595703,7.25984621047974,238.873413085938,-69.8730392456055, +5.01624584197998,241.243637084961,-77.2177658081055,0.977365016937256,246.662170410156,-61.9509658813477,-1.11616504192352,246.889205932617,-64.3892059326172,8.93867969512939,238.856399536133,-73.7869262695313,7.9393630027771,240.962600708008,-76.9226303100586,-0.237054005265236,245.276031494141,-58.3317108154297,8.34250164031982,239.076416015625,-80.6649017333984,-2.41813206672668,247.564254760742,-59.7826538085938,10.6366367340088,238.82341003418,-78.0318374633789,-0.387190014123917,242.233749389648,-56.7021522521973,-3.97599506378174,246.799179077148,-55.0179862976074,11.4554176330566,238.406356811523,-81.1398468017578,-2.47695803642273,244.741989135742,-54.6908569335938,-6.59802198410034,246.814178466797,-56.6032409667969,-7.73328304290771,245.812088012695,-51.0434989929199,-4.46814298629761,243.034820556641,-51.1620101928711,-10.7702598571777,244.81999206543,-54.5537414550781,-6.91080188751221,243.377853393555,-47.5427551269531,-11.954776763916,244.52294921875,-49.0743064880371,-8.8552827835083,245.329040527344,-47.446346282959,-10.0891942977905,243.322845458984,-44.6086692810059,-14.4116172790527,243.230834960938,-44.8492889404297,-18.3356018066406,240.887603759766,-46.0124053955078,-12.5415344238281,241.784698486328,-40.7433891296387,-16.3848114013672,241.571670532227,-40.8322982788086,-21.147777557373,238.665390014648,-42.6885795593262,-18.3754062652588,238.663391113281,-36.3863639831543,-24.3193874359131,236.667190551758,-37.5471725463867,-21.757137298584,237.428268432617,-34.3034553527832,-19.2380905151367,234.817016601563,-31.9741306304932,-23.8844451904297,235.460067749023,-31.1834526062012,-28.9673442840576,233.590881347656,-32.460376739502,-21.1735801696777,230.179550170898,-29.6410007476807,-21.3553981781006,234.042938232422,-29.8529224395752,-26.957447052002,233.188858032227,-28.2446632385254,-23.6304206848145,233.290863037109,-28.6145992279053,-31.0569496154785,231.624694824219,-28.0342426300049,-27.5592060089111,229.80451965332,-25.1327590942383,-24.6082153320313,229.815521240234,-27.046745300293, +-34.3634719848633,229.584487915039,-25.3112754821777,-31.0241451263428,229.087448120117,-22.9890480041504,-25.4524993896484,225.802124023438,-25.7612209320068,-28.0429534912109,224.654022216797,-23.2658748626709,-36.0058326721191,227.085250854492,-20.7921333312988,-31.5872001647949,225.118057250977,-20.2637825012207,-30.3940849304199,220.084564208984,-21.3489894866943,-39.9315185546875,223.986938476563,-17.7713375091553,-34.1788558959961,224.375991821289,-18.2575855255127,-32.747314453125,220.289596557617,-18.7345314025879,-36.6851005554199,224.203979492188,-17.1348743438721,-42.2169456481934,220.686614990234,-14.6495323181152,-38.3221588134766,220.452606201172,-14.7548418045044,-35.1784553527832,220.328598022461,-16.438606262207,-35.0149345397949,215.071075439453,-17.2562885284424,-43.8194999694824,218.513412475586,-12.0289745330811,-40.7049942016602,215.919158935547,-11.9210643768311,-37.3426628112793,215.268081665039,-14.3894071578979,-46.1401252746582,217.714324951172,-11.2070951461792,-43.7173881530762,215.066070556641,-9.70028686523438,-46.7007827758789,214.772048950195,-8.84861278533936,-42.3344535827637,210.361618041992,-10.1049861907959,-49.5721626281738,213.970962524414,-8.14754486083984,-44.4643630981445,211.230712890625,-8.32963275909424,-44.966911315918,206.091186523438,-8.52874183654785,-46.9898109436035,210.613647460938,-7.03219509124756,-50.0546112060547,210.340621948242,-5.62107706069946,-47.7958908081055,205.696151733398,-5.63038778305054,-52.7875785827637,209.441528320313,-4.32621002197266,-49.8952941894531,200.807678222656,-4.05965423583984,-50.7328758239746,205.754150390625,-2.96743702888489,-54.4083366394043,206.311218261719,-1.68477094173431,-53.1533126831055,201.445739746094,-0.711372017860413,-56.8413734436035,204.115005493164,0.468847006559372,-54.9330863952637,196.138229370117,0.183667004108429,-61.5574378967285,203.270919799805,1.40917205810547,-56.8689804077148,200.728668212891,1.76275599002838,-57.383129119873,196.163223266602,2.83763194084167,-59.5817413330078,200.020614624023,3.47671389579773, +-65.3999176025391,200.151611328125,3.94174003601074,-59.5297393798828,191.172744750977,4.33546876907349,-62.4165191650391,199.944595336914,4.39648485183716,-60.4523277282715,196.154220581055,5.26068878173828,-66.344108581543,195.938201904297,7.03246307373047,-63.5350303649902,196.860290527344,6.22734403610229,-63.1952972412109,191.79280090332,7.57680606842041,-62.4836273193359,186.279251098633,6.12425422668457,-69.6108245849609,194.705078125,8.31865882873535,-67.8500518798828,191.464767456055,10.0316867828369,-66.3194046020508,186.375259399414,10.1077938079834,-72.0422592163086,191.342758178711,10.7070531845093,-69.9316558837891,187.210342407227,12.1720972061157,-69.7284393310547,182.115859985352,12.7976579666138,-72.7414321899414,186.46826171875,13.2042980194092,-75.5248031616211,185.711196899414,14.3122062683105,-73.3881988525391,181.569793701172,15.0492792129517,-75.8308334350586,177.233367919922,16.711841583252,-77.6277084350586,181.4677734375,16.538122177124,-79.2629699707031,176.751312255859,18.2690944671631,-84.5750885009766,176.111251831055,20.1088733673096,-81.4452819824219,172.14387512207,20.0898723602295,-85.6553955078125,172.028854370117,21.6562252044678,-83.2438583374023,167.059371948242,21.6880283355713,-90.2000503540039,171.577819824219,22.7169303894043,-85.7475051879883,162.97297668457,23.4579029083252,-87.7659072875977,167.101379394531,23.6804256439209,-92.0571212768555,167.324401855469,24.7428283691406,-89.1802444458008,162.44091796875,25.5139045715332,-95.3222427368164,167.331405639648,25.2347755432129,-92.1650390625,162.466918945313,26.7917308807373,-98.6400680541992,166.864364624023,25.7775287628174,-95.2021331787109,162.519927978516,27.647611618042,-94.2876434326172,157.840469360352,29.2671718597412,-98.4441452026367,162.430908203125,28.4214878082275,-101.857482910156,163.005981445313,28.4844932556152,-98.3789520263672,157.884475708008,30.7694187164307,-102.495544433594,157.737457275391,31.833122253418,-105.68985748291,153.143005371094,34.746711730957,-101.679466247559,153.268020629883,33.7542114257813, +117.967056274414,-240.867599487305,101.301933288574,114.37370300293,-241.232635498047,108.681655883789,134.864715576172,-231.279663085938,99.8454818725586,117.254981994629,-240.045532226563,112.367012023926,121.380386352539,-237.687286376953,112.543037414551,132.771499633789,-231.15364074707,104.890281677246,99.7971725463867,-242.439758300781,110.929878234863,84.8188018798828,-235.369064331055,98.3937454223633,46.8141822814941,-227.399276733398,120.237785339355,110.486320495605,-241.657684326172,119.723739624023,126.480888366699,-234.758010864258,109.402725219727,107.376014709473,-242.003707885742,119.445709228516,80.4972839355469,-230.730606079102,99.8960952758789,93.2341384887695,-241.095626831055,99.7309799194336,89.9048080444336,-239.314453125,99.3482360839844,58.9210662841797,-227.164260864258,116.672439575195,56.3358154296875,-227.115264892578,117.586524963379,115.961853027344,-239.018417358398,125.243278503418,112.647537231445,-240.761596679688,123.934150695801,92.4115524291992,-242.695785522461,130.595794677734,96.7846755981445,-242.338745117188,109.965774536133,96.3017349243164,-241.950714111328,101.638961791992,84.0974349975586,-232.700790405273,102.220024108887,67.7594299316406,-227.002243041992,114.544227600098,105.896873474121,-241.47966003418,131.032836914063,118.43709564209,-236.665191650391,128.871627807617,91.7292785644531,-242.513763427734,122.241981506348,100.181312561035,-241.802703857422,135.994338989258,75.1143569946289,-228.088348388672,101.725975036621,89.695686340332,-238.194351196289,102.925086975098,92.3464431762695,-240.242538452148,104.563247680664,79.350471496582,-229.100448608398,103.207122802734,70.7968292236328,-226.94123840332,113.05207824707,113.675636291504,-238.840408325195,130.984848022461,109.489219665527,-240.383560180664,131.732925415039,82.7977066040039,-242.954803466797,132.422988891602,95.1831283569336,-242.200729370117,135.996337890625,88.914306640625,-242.113723754883,119.192687988281,93.4292526245117,-241.609680175781,109.709754943848,72.6068115234375,-227.348281860352,106.964485168457, +82.8302154541016,-230.920623779297,106.210411071777,103.86767578125,-241.027618408203,136.879425048828,107.763053894043,-239.761505126953,136.623397827148,116.173881530762,-235.943115234375,134.515182495117,89.1084213256836,-242.819793701172,135.144241333008,97.6114654541016,-240.832611083984,141.283843994141,76.0999450683594,-227.714309692383,106.706466674805,88.3738555908203,-237.275253295898,106.997489929199,90.2375335693359,-239.953506469727,109.576736450195,84.8127059936523,-233.618881225586,108.747665405273,78.5736923217773,-228.011337280273,109.61474609375,73.8942337036133,-227.414276123047,111.69295501709,112.089477539063,-237.949310302734,135.722305297852,102.504539489746,-239.807495117188,141.273849487305,83.2431488037109,-242.698791503906,139.837707519531,79.4082794189453,-242.698791503906,128.546600341797,88.9604187011719,-242.261749267578,140.712783813477,87.2379455566406,-240.961608886719,115.754348754883,81.6322937011719,-227.991333007813,108.428634643555,107.823059082031,-238.067337036133,140.342758178711,76.3000717163086,-242.780792236328,138.661590576172,76.6889114379883,-242.813781738281,132.613998413086,78.1722564697266,-241.573669433594,123.420097351074,100.656356811523,-237.740295410156,144.93620300293,92.1324234008789,-240.334548950195,144.95719909668,85.7179946899414,-237.851303100586,112.94807434082,82.1843490600586,-236.669189453125,116.98747253418,104.866767883301,-236.035125732422,144.247146606445,86.4610595703125,-241.165634155273,145.048217773438,79.4430770874023,-242.144729614258,144.454162597656,96.6523590087891,-239.015426635742,145.234237670898,82.9487228393555,-241.744674682617,144.835205078125,71.796630859375,-242.538772583008,143.066024780273,73.2712707519531,-242.687789916992,131.163864135742,97.6251602172852,-235.577087402344,147.315444946289,89.6949844360352,-237.561279296875,148.028503417969,84.6170883178711,-238.942428588867,148.510559082031,75.8349227905273,-240.977615356445,148.026504516602,69.8426361083984,-242.801788330078,137.108444213867,80.8526153564453,-240.038528442383,148.721588134766, +74.9213333129883,-242.342742919922,124.904243469238,71.1150588989258,-241.493667602539,147.794494628906,63.8715553283691,-242.815795898438,141.756896972656,62.8015480041504,-242.697784423828,135.677307128906,67.7941436767578,-241.954711914063,126.456390380859,81.7839050292969,-236.307159423828,150.481750488281,77.5357971191406,-237.363250732422,150.77278137207,73.1967697143555,-238.157333374023,151.076812744141,67.745231628418,-241.886703491211,147.436447143555,64.5601196289063,-241.902694702148,127.989547729492,69.4968109130859,-239.15544128418,151.151809692383,57.5621376037598,-242.815795898438,140.335754394531,64.2649917602539,-242.079727172852,147.03141784668,59.7615509033203,-242.110733032227,130.564804077148,65.7804412841797,-240.00651550293,151.217834472656,55.439826965332,-242.19873046875,131.989929199219,58.3648147583008,-242.452758789063,146.194320678711,49.1312103271484,-242.652770996094,139.262649536133,54.0765914916992,-242.698791503906,145.342254638672,61.5290222167969,-240.886611938477,150.774780273438,62.3082008361816,-238.421356201172,153.18701171875,45.789379119873,-241.924713134766,134.366165161133,55.9527778625488,-241.488662719727,150.632766723633,49.0106964111328,-242.739791870117,144.419158935547,43.6492691040039,-241.911712646484,135.199249267578,52.424633026123,-242.019714355469,150.139724731445,58.0549812316895,-238.536376953125,153.774078369141,42.7042808532715,-242.756790161133,143.040023803711,54.052490234375,-239.551467895508,154.027099609375,46.4790496826172,-242.400756835938,149.574661254883,35.7171974182129,-242.381759643555,141.956909179688,50.7960739135742,-240.762588500977,153.643051147461,40.1141242980957,-242.749786376953,148.527557373047,33.894718170166,-241.81770324707,137.665496826172,47.5971603393555,-240.948608398438,154.094100952148,41.8572959899902,-241.751693725586,153.957092285156,34.2952537536621,-242.722793579102,146.711380004883,31.6495952606201,-241.916717529297,138.384567260742,35.115234375,-242.404754638672,152.810974121094,45.7421760559082,-239.298446655273,157.124404907227, +36.7501945495605,-240.909606933594,157.230407714844,28.5568923950195,-242.712783813477,145.896286010742,30.1902523040771,-242.714782714844,151.922882080078,42.0884170532227,-239.761505126953,157.665451049805,32.0750389099121,-241.482666015625,157.161407470703,19.8732414245605,-241.889694213867,141.706893920898,25.0603485107422,-242.667770385742,151.121810913086,21.8392353057861,-241.754699707031,140.968826293945,28.5912971496582,-241.926712036133,156.671356201172,16.1929817199707,-242.462753295898,149.219635009766,22.9434432983398,-242.265747070313,155.832275390625,10.0584812164307,-241.917709350586,144.285140991211,24.9351387023926,-240.779586791992,160.260711669922,16.2131843566895,-242.446762084961,154.634170532227,7.80984020233154,-242.086730957031,145.087219238281,20.2881813049316,-241.300643920898,160.148696899414,3.55295300483704,-242.549774169922,152.048904418945,-33.5395927429199,-242.625778198242,144.221145629883,-36.6583976745605,-242.605773925781,143.562057495117,11.0762796401978,-242.155731201172,158.842575073242,16.830545425415,-241.696685791016,159.658645629883,-1.77737998962402,-242.263748168945,147.520462036133,4.20514678955078,-242.492752075195,157.388427734375,-4.86026096343994,-242.176727294922,148.584564208984,-30.5256958007813,-242.528778076172,144.365158081055,-3.85951399803162,-242.491760253906,155.479232788086,8.38010597229004,-241.333648681641,163.221008300781,13.0201711654663,-240.818603515625,163.32600402832,-27.3009815216064,-242.134719848633,144.746185302734,-1.81145298480988,-242.266738891602,161.593841552734,2.34241390228271,-242.007705688477,162.567947387695,-11.3686189651489,-242.161727905273,148.302536010742,-25.6743202209473,-242.124725341797,151.627853393555,-6.78473997116089,-242.501754760742,160.740753173828,4.44369983673096,-240.447555541992,166.736343383789,-23.5948162078857,-241.847702026367,145.276229858398,-0.470272988080978,-241.308654785156,166.542327880859,-15.5898332595825,-242.179733276367,163.184997558594,-20.2070846557617,-241.925704956055,146.08332824707,-21.0423679351807,-242.304748535156,161.896865844727, +-7.56033611297607,-242.110733032227,165.652236938477,-13.6422424316406,-242.195724487305,147.762481689453,-4.67672395706177,-240.247543334961,170.401702880859,-1.39623200893402,-239.817504882813,169.955657958984,-17.0500755310059,-242.128723144531,146.977401733398,-12.9414739608765,-241.214630126953,169.671630859375,-8.36440467834473,-240.993621826172,170.195678710938,-6.5091028213501,-238.389358520508,173.497009277344,-10.3051156997681,-239.461471557617,173.701019287109,-9.7088565826416,-236.532180786133,175.72721862793,30.8488178253174,-242.648773193359,-73.0413513183594,25.0987548828125,-242.251739501953,-73.7621231079102,38.1767387390137,-242.371765136719,-72.1796722412109,24.3398780822754,-245.157012939453,-69.4230041503906,38.416561126709,-244.921005249023,-67.280387878418,20.0184555053711,-244.247940063477,-71.5057983398438,51.4107322692871,-242.167724609375,-70.6557235717773,44.8330879211426,-242.182723999023,-71.3593902587891,29.177453994751,-245.31103515625,-63.506519317627,22.1026592254639,-245.54606628418,-64.7905426025391,44.6497688293457,-245.063018798828,-60.5396270751953,37.2105407714844,-245.399047851563,-61.7219467163086,52.4607353210449,-244.590972900391,-65.2385864257813,17.9824562072754,-245.540069580078,-65.4473114013672,16.0435657501221,-245.295028686523,-70.8339385986328,12.8528537750244,-245.15901184082,-72.161865234375,58.2961044311523,-241.21662902832,-70.8358383178711,55.1665992736816,-242.739791870117,-69.3257827758789,28.3320713043213,-244.66796875,-57.8437652587891,12.3273029327393,-245.022018432617,-60.8041534423828,45.9328956604004,-244.330947875977,-54.6511535644531,35.9407157897949,-244.724990844727,-56.3207168579102,56.9498748779297,-244.354934692383,-64.9781646728516,56.3916206359863,-245,-58.0932884216309,12.5644254684448,-245.715072631836,-66.2671890258789,9.99891376495361,-245.506057739258,-71.9008483886719,6.79820108413696,-245.229034423828,-73.2839736938477,61.4392127990723,-242.490753173828,-68.5898208618164,35.9983215332031,-243.048812866211,-51.8766822814941,26.5753974914551,-243.0908203125,-53.5357398986816, +15.4516077041626,-243.193832397461,-55.6140480041504,8.89142608642578,-243.471862792969,-56.6716499328613,0.84364902973175,-243.537872314453,-58.1435966491699,5.08377313613892,-245.782073974609,-67.7709350585938,1.65289700031281,-245.192031860352,-62.653434753418,56.5769386291504,-244.411956787109,-52.5691452026367,51.5007400512695,-242.666778564453,-48.994800567627,59.803955078125,-244.716979980469,-62.9157600402832,66.2872848510742,-244.775985717773,-56.658748626709,1.1314560174942,-245.629058837891,-73.299072265625,66.0104675292969,-241.944717407227,-68.0903701782227,65.0831756591797,-244.489959716797,-62.30419921875,36.3208541870117,-239.932510375977,-48.6688652038574,30.2690601348877,-240.098526000977,-49.6249618530273,12.333402633667,-240.219543457031,-52.8615760803223,6.02187490463257,-240.548568725586,-53.9296798706055,-5.59673404693604,-245.71208190918,-63.758544921875,-5.44460916519165,-240.78759765625,-56.1570014953613,-10.5162363052368,-244.004913330078,-60.1013870239258,-2.1270740032196,-246.19612121582,-68.886344909668,67.3795928955078,-244.237945556641,-50.8459777832031,64.8643493652344,-242.485763549805,-46.5722579956055,59.720344543457,-239.253448486328,-44.5889625549316,48.1428146362305,-239.659484863281,-46.563159942627,71.8576354980469,-244.80598449707,-55.9661827087402,69.9502487182617,-243.783889770508,-62.8932571411133,40.1976356506348,-232.155746459961,-43.095817565918,35.6312866210938,-232.217758178711,-43.9843063354492,27.0037403106689,-236.639190673828,-48.1540145874023,25.5365962982178,-232.352767944336,-45.6229667663574,9.22307777404785,-236.377166748047,-51.1133041381836,2.2230920791626,-232.94482421875,-49.9051856994629,-10.6598491668701,-237.404266357422,-54.9311790466309,-23.1680755615234,-241.411651611328,-58.7645568847656,-12.2903099060059,-245.713073730469,-64.9871673583984,-24.4554004669189,-244.291946411133,-62.2395973205566,-8.62425136566162,-246.491149902344,-69.8438415527344,75.2674713134766,-244.402954101563,-49.073902130127,72.5416030883789,-242.922805786133,-44.2326278686523, +64.4670104980469,-239.651489257813,-43.5495643615723,58.8781623840332,-235.124038696289,-42.464656829834,50.6582565307617,-235.168045043945,-43.8988990783691,78.1958541870117,-244.446960449219,-54.9872856140137,73.7964248657227,-244.553970336914,-60.3422088623047,48.3840370178223,-231.392669677734,-41.6631774902344,34.118335723877,-229.432479858398,-40.7278861999512,42.4144515991211,-229.32746887207,-39.1603355407715,9.4741325378418,-232.486785888672,-48.5660552978516,20.3371887207031,-229.919540405273,-42.9946098327637,2.18870902061462,-230.3095703125,-46.1631202697754,-5.48111200332642,-232.99983215332,-51.2025108337402,-16.5398273468018,-233.401870727539,-53.1853065490723,-24.6924266815186,-233.513885498047,-54.114200592041,-31.0828514099121,-242.428756713867,-59.8240585327148,-31.2663707733154,-234.442977905273,-54.8179664611816,-32.0708503723145,-238.569381713867,-57.0814895629883,-26.030855178833,-245.82209777832,-67.2370910644531,-29.3715839385986,-244.887008666992,-63.2682952880859,-13.7928562164307,-246.330139160156,-70.8466415405273,-21.7455348968506,-246.440155029297,-72.4611968994141,80.8224105834961,-244.274948120117,-47.7509765625,79.4750823974609,-243.435852050781,-42.6576766967773,75.1372604370117,-240.434555053711,-40.1116256713867,72.1028594970703,-236.395156860352,-38.3720588684082,66.4621124267578,-232.326766967773,-37.3436546325684,57.2943115234375,-231.569686889648,-40.1798324584961,82.0988388061523,-243.903900146484,-59.098388671875,84.9119186401367,-244.149932861328,-53.3057174682617,56.6877479553223,-229.22346496582,-36.4960746765137,46.6652679443359,-228.945434570313,-38.1660346984863,43.3967475891113,-228.327362060547,-33.8610153198242,32.9349212646484,-228.384384155273,-35.8433113098145,20.0881633758545,-228.874435424805,-37.8484039306641,9.72058773040771,-229.969543457031,-44.9665031433105,10.7687501907349,-228.923431396484,-39.7356910705566,2.43998408317566,-229.307479858398,-40.9553108215332,-4.33277988433838,-230.342575073242,-47.3850402832031,-4.39748620986938,-229.34147644043,-42.3330421447754, +-14.1123886108398,-230.671600341797,-49.132209777832,-22.6933288574219,-230.707611083984,-50.2749214172363,-27.9888477325439,-231.109649658203,-51.5430450439453,-39.0256271362305,-235.858123779297,-55.3726196289063,-34.8412208557129,-231.647705078125,-52.2458152770996,-38.1242408752441,-239.715484619141,-57.8967704772949,-37.2925605773926,-244.953994750977,-64.4112091064453,-38.5448837280273,-242.775787353516,-60.626335144043,-32.3218727111816,-246.125122070313,-68.3721923828125,-27.4479942321777,-246.453155517578,-73.3307800292969,88.0202255249023,-244.154922485352,-45.4925575256348,85.6265869140625,-243.843902587891,-40.8142967224121,83.3992691040039,-242.230743408203,-36.9501152038574,78.7503128051758,-240.795593261719,-38.6407852172852,73.9105377197266,-233.577880859375,-35.3599586486816,72.0353546142578,-233.483871459961,-36.0660285949707,67.9773559570313,-230.266571044922,-33.4238739013672,59.8832626342773,-228.274368286133,-30.2717628479004,50.129508972168,-228.083358764648,-32.7198028564453,41.3184432983398,-228.358383178711,-27.592601776123,23.5271015167236,-228.716415405273,-31.5111846923828,8.02417087554932,-228.931427001953,-34.7611045837402,-3.9873960018158,-229.297470092773,-35.7761001586914,-12.0951910018921,-229.664505004883,-43.7253799438477,-24.3749923706055,-229.714508056641,-46.2238235473633,-31.2733707427979,-229.787521362305,-47.2062225341797,-42.8973083496094,-232.975830078125,-52.430835723877,-37.1090393066406,-229.976531982422,-48.2707252502441,-44.5756721496582,-240.080535888672,-57.3495140075684,-42.4729652404785,-245.243026733398,-65.127685546875,-46.085521697998,-243.601867675781,-61.3705101013184,-39.4654731750488,-246.082107543945,-69.6905212402344,-33.9056282043457,-246.552154541016,-74.1319580078125,81.5086822509766,-239.795501708984,-35.019229888916,77.4887847900391,-234.81201171875,-33.7350044250488,75.7984237670898,-231.979736328125,-30.4294776916504,73.0763549804688,-230.102554321289,-27.4138813018799,68.8810501098633,-229.148468017578,-27.4064826965332,60.238597869873,-227.878326416016,-24.2142696380615, +57.8374633789063,-227.836318969727,-20.0957641601563,42.9149971008301,-228.752410888672,-9.15956401824951,33.1085395812988,-228.756408691406,-19.7791347503662,24.7019157409668,-229.631500244141,1.32465302944183,17.640022277832,-229.738510131836,-0.442036002874374,11.657036781311,-229.685501098633,-9.02176952362061,3.81046795845032,-229.586486816406,-13.7345418930054,-4.27210378646851,-229.584487915039,-26.0731525421143,-10.1554012298584,-229.567489624023,-36.2528495788574,-28.0714550018311,-229.658508300781,-41.0272178649902,-37.0566368103027,-229.494491577148,-42.3836517333984,-41.6313858032227,-229.689514160156,-43.6340713500977,-44.6056785583496,-230.728607177734,-48.442943572998,-49.8108863830566,-235.760101318359,-52.1936111450195,-48.6376686096191,-231.851715087891,-48.7903747558594,-50.0850143432617,-241.687683105469,-58.012279510498,-48.6337699890137,-238.406356811523,-54.8860740661621,-51.1440162658691,-245.729080200195,-66.296989440918,-50.300235748291,-244.088928222656,-61.5046234130859,-44.9193077087402,-246.095108032227,-70.895149230957,-38.2699546813965,-246.566162109375,-75.4272918701172,71.2682723999023,-229.142456054688,-22.7477264404297,62.5742263793945,-228.099349975586,-15.4243078231812,54.7073554992676,-228.225372314453,-10.4519195556641,43.3050384521484,-229.48649597168,12.2184009552002,35.2929534912109,-229.729507446289,10.720853805542,32.504581451416,-229.142456054688,-2.32457399368286,19.1587715148926,-230.086547851563,11.7788581848145,12.423412322998,-230.421585083008,13.4782247543335,6.58388996124268,-230.479583740234,2.30230903625488,-1.40036296844482,-230.327560424805,-2.6372549533844,-17.417911529541,-230.818618774414,-3.25939607620239,-29.6649112701416,-230.660598754883,-20.2717838287354,-41.1548385620117,-230.461578369141,-26.0370483398438,-44.4237594604492,-229.781524658203,-38.4758644104004,-47.2923393249512,-230.043533325195,-44.317138671875,-53.2943267822266,-233.925918579102,-48.2874298095703,-51.0045013427734,-230.763610839844,-44.3951454162598,-55.286922454834,-240.806594848633,-54.1430015563965, +-53.8954887390137,-244.794982910156,-61.7377471923828,-55.2687225341797,-243.103820800781,-57.4270248413086,-51.9968032836914,-246.221130371094,-72.0326538085938,-56.1518096923828,-246.005111694336,-67.1024703979492,-0.606218993663788,-230.719619750977,9.58143329620361,2.86292505264282,-230.612594604492,18.7034358978271,-6.16707992553711,-230.679595947266,7.26676607131958,-14.8594617843628,-230.932632446289,8.24759101867676,-27.7061195373535,-230.942626953125,-7.13168478012085,-31.8829288482666,-230.870635986328,5.84870719909668,-38.9291191101074,-230.856628417969,-15.4144067764282,-49.4851531982422,-229.822525024414,-38.5394744873047,-52.7765769958496,-230.223556518555,-39.3505516052246,-57.4997406005859,-245.379043579102,-62.0444755554199,-11.9206733703613,-231.086639404297,28.424488067627,-19.1563816070557,-231.408676147461,31.1047515869141,-23.9299507141113,-230.875625610352,11.575138092041,-34.7909164428711,-231.85871887207,32.1753578186035,-41.4105644226074,-230.961624145508,3.77417397499084,-38.8457107543945,-231.658706665039,22.1750755310059,-45.2759399414063,-231.285659790039,11.7308530807495,-41.2267456054688,-231.53369140625,18.5414218902588,-47.373046875,-231.045639038086,8.21206760406494,-48.7092781066895,-231.057647705078,5.98262977600098,-37.2279510498047,-231.732711791992,23.7931346893311,-43.0802268981934,-231.469680786133,15.9044618606567,100.093307495117,-238.770385742188,17.1322822570801,102.595550537109,-241.737686157227,14.3341083526611,103.05859375,-237.96630859375,17.0638751983643,98.9126815795898,-242.516754150391,14.3106060028076,106.387916564941,-241.038619995117,15.1446876525879,95.5800628662109,-240.115524291992,17.2002906799316,102.099494934082,-243.750885009766,9.9924430847168,105.379821777344,-237.953308105469,17.1261825561523,94.3896408081055,-243.301834106445,13.9449701309204,97.0452117919922,-244.185928344727,9.59140396118164,109.120193481445,-238.656387329102,18.7264385223389,108.054084777832,-243.221832275391,10.9314746856689,90.6482772827148,-240.861602783203,17.2458934783936, +98.5659561157227,-244.216918945313,4.30267477035522,110.989372253418,-242.057708740234,15.7165441513062,104.245712280273,-244.072906494141,4.55488014221191,85.5367813110352,-244.412963867188,7.25438404083252,86.2849502563477,-243.374847412109,12.856463432312,112.543525695801,-238.757385253906,21.7965393066406,113.487617492676,-243.355850219727,12.0029802322388,110.162292480469,-243.430847167969,5.53097581863403,87.6197814941406,-239.969512939453,18.0057678222656,86.3165588378906,-244.306945800781,0.857819974422455,100.814376831055,-243.486862182617,-9.43072032928467,115.262786865234,-242.601776123047,17.7077388763428,110.988372802734,-242.434753417969,-6.43667697906494,82.472770690918,-243.848892211914,12.4496231079102,84.3463592529297,-242.055709838867,16.3785076141357,96.9170913696289,-243.836898803711,-2.75220608711243,81.1779556274414,-244.315948486328,6.3179030418396,104.224708557129,-243.084823608398,-11.1923933029175,115.805839538574,-240.944610595703,21.9438533782959,119.589210510254,-243.405853271484,13.2073984146118,116.457908630371,-243.082824707031,6.09712076187134,115.511817932129,-241.938705444336,-6.55808877944946,85.157844543457,-238.864410400391,19.2935943603516,88.5400695800781,-243.814895629883,-8.02931308746338,80.806510925293,-243.84489440918,-0.998763978481293,102.68155670166,-242.968811035156,-28.9404315948486,118.688125610352,-242.975799560547,19.1358795166016,114.848747253418,-238.184341430664,24.1151676177979,106.750953674316,-242.243743896484,-19.0504627227783,114.32169342041,-241.371658325195,-13.9097604751587,78.984130859375,-244.319946289063,12.0452842712402,80.7636032104492,-242.901809692383,17.3150005340576,75.7040100097656,-244.203918457031,5.20319414138794,95.4431457519531,-243.621887207031,-18.3831977844238,95.3668441772461,-243.797897338867,-28.3836765289307,119.914245605469,-241.833694458008,23.8387393951416,122.307479858398,-243.354843139648,19.5575199127197,120.371292114258,-242.796783447266,6.55298614501953,119.711227416992,-241.607681274414,0.128112003207207,110.053283691406,-241.777694702148,-23.3652877807617, +118.092071533203,-239.315460205078,-10.14089012146,78.3264694213867,-241.875701904297,21.8184413909912,85.3203582763672,-243.344848632813,-11.3898134231567,76.7310180664063,-243.627883911133,-0.0173690002411604,91.9043960571289,-243.546859741211,-19.1937770843506,124.622711181641,-243.108825683594,13.5456314086914,123.400588989258,-242.636779785156,7.80642890930176,118.33309173584,-240.993621826172,-5.72744798660278,111.868461608887,-241.422653198242,-27.8857288360596,74.3085708618164,-244.493957519531,11.2804088592529,76.5960998535156,-244.092926025391,17.2077903747559,78.5271911621094,-238.626373291016,23.3968963623047,79.9893264770508,-243.023818969727,-6.70526313781738,71.9526443481445,-243.360855102539,3.30746793746948,93.4000473022461,-244.022903442383,-37.9236106872559,107.937072753906,-242.304748535156,-32.8380165100098,123.819625854492,-240.354553222656,1.87065696716309,121.871437072754,-238.75439453125,-1.79474198818207,69.4361038208008,-244.074905395508,10.0204162597656,74.9027328491211,-243.231826782227,21.4796085357666,74.7748184204102,-240.56657409668,26.5492057800293,88.7630920410156,-242.943801879883,-20.3414897918701,82.6795959472656,-242.110733032227,-13.6632356643677,74.8195266723633,-242.304748535156,-2.98926901817322,91.3631439208984,-243.5888671875,-27.9129314422607,126.82592010498,-241.279632568359,6.75627613067627,122.602508544922,-236.442169189453,-4.01115989685059,69.8451385498047,-244.32194519043,16.2343940734863,71.6671142578125,-243.580871582031,21.6989307403564,77.8624267578125,-240.792587280273,-9.63959121704102,66.867546081543,-242.5927734375,7.71811008453369,69.9008483886719,-241.144638061523,1.04081594944,89.5405654907227,-244.068908691406,-40.3419494628906,90.2185363769531,-243.702880859375,-33.9376220703125,65.3733062744141,-244.319946289063,18.7320384979248,85.2487487792969,-241.598678588867,-19.5685157775879,87.6745834350586,-242.086730957031,-25.7725219726563,80.8192138671875,-239.400451660156,-16.2667903900146,64.2440872192383,-243.37385559082,13.8642616271973,73.0363540649414,-238.938400268555,-5.79786396026611, +65.4916076660156,-244.512954711914,27.8356304168701,69.448600769043,-243.861892700195,27.3536834716797,76.7075119018555,-236.702194213867,-13.4179105758667,60.8626556396484,-240.608581542969,13.117488861084,65.3630065917969,-239.226440429688,4.60008382797241,87.0844345092773,-243.050811767578,-35.5295791625977,85.8984069824219,-241.183639526367,-30.607795715332,60.861255645752,-244.139923095703,31.1992607116699,61.1360855102539,-243.585861206055,21.1166725158691,71.2820816040039,-243.700881958008,32.1821594238281,83.216552734375,-239.101440429688,-22.1402645111084,79.4664840698242,-235.658081054688,-19.8556423187256,59.5785293579102,-241.821701049805,17.6444320678711,64.6597366333008,-234.545974731445,0.152198001742363,69.8806457519531,-232.355758666992,-9.09256839752197,84.69189453125,-239.8125,-26.1270561218262,61.2558975219727,-244.14892578125,41.119930267334,67.5920181274414,-244.381942749023,38.3928642272949,75.6606140136719,-232.511779785156,-17.4213027954102,54.4340286254883,-239.396453857422,22.9248504638672,58.0968856811523,-234.178955078125,8.72598934173584,83.738899230957,-239.723495483398,-32.0819396972656,79.3232727050781,-233.946914672852,-27.2667694091797,57.1753997802734,-243.269836425781,40.140438079834,56.553337097168,-242.989807128906,33.8870277404785,56.300910949707,-241.903701782227,25.2792816162109,69.9082489013672,-246.212127685547,41.4315643310547,77.8203277587891,-232.573791503906,-22.9026412963867,54.2702140808105,-235.361053466797,16.6919384002686,63.2992973327637,-230.931625366211,-3.07372689247131,60.1738929748535,-232.636795043945,3.65078210830688,71.2724761962891,-230.486587524414,-13.9635648727417,58.0967864990234,-243.464859008789,46.7864875793457,66.2341842651367,-244.609970092773,44.3745536804199,73.7074203491211,-230.069549560547,-19.9336490631104,50.505443572998,-238.481369018555,33.065544128418,50.9987907409668,-236.249145507813,25.1248664855957,52.6895561218262,-231.90771484375,13.5890350341797,66.3148956298828,-229.581497192383,-9.65372276306152,55.4700317382813,-231.075637817383,7.39182806015015, +75.4563903808594,-230.789611816406,-24.8652324676514,55.0332870483398,-242.290740966797,46.5203628540039,60.5922355651855,-243.918899536133,52.05810546875,53.0897979736328,-241.291656494141,42.9562149047852,68.4702987670898,-244.797988891602,52.3318290710449,52.5442428588867,-240.763595581055,35.7058029174805,71.3241806030273,-245.849090576172,48.1309204101563,48.9547882080078,-232.626800537109,22.2949886322021,58.2534027099609,-230.109558105469,1.21198296546936,60.8958625793457,-229.082443237305,-5.66507196426392,67.3062896728516,-228.726409912109,-15.1270780563354,53.4394340515137,-241.175628662109,51.0027008056641,56.1100921630859,-242.448760986328,52.5725555419922,47.2675247192383,-235.701095581055,40.5792808532715,46.8752861022949,-234.677001953125,34.7742118835449,45.7960815429688,-232.555786132813,30.537296295166,49.5547523498535,-230.066543579102,13.1039876937866,54.9609794616699,-229.252456665039,1.53390395641327,51.0134925842285,-239.423461914063,49.1048126220703,58.7730560302734,-243.0078125,57.8685722351074,50.0023956298828,-238.632385253906,44.2940444946289,72.7060241699219,-245.063018798828,51.5424537658691,44.5171585083008,-230.728607177734,26.2918796539307,51.5058403015137,-239.154434204102,54.1686096191406,62.6650352478027,-243.483871459961,61.3059120178223,55.9316749572754,-241.609680175781,58.4581336975098,43.8764953613281,-232.457778930664,43.6696853637695,43.4681549072266,-231.915725708008,36.6214942932129,41.8652954101563,-230.6416015625,32.5119895935059,44.868091583252,-229.705505371094,17.2220916748047,50.3607292175293,-228.973434448242,3.27032399177551,56.1392936706543,-240.416564941406,62.4471206665039,40.3156471252441,-229.988540649414,27.2096710205078,52.9211807250977,-238.64338684082,59.9306755065918,40.6230773925781,-230.820617675781,44.8602981567383,39.7854919433594,-230.522583007813,38.5520820617676,37.8644065856934,-230.28157043457,34.937126159668,55.1608009338379,-237.96630859375,65.8746566772461,29.7531108856201,-230.067535400391,23.8873443603516,7.82876205444336,-230.859634399414,33.7949142456055, +0.959864020347595,-231.118637084961,36.5546875,-5.44054794311523,-231.465667724609,47.7102813720703,-7.76009607315063,-231.448669433594,67.9563674926758,-14.1291904449463,-231.461669921875,44.4336547851563,-15.6956434249878,-231.830718994141,66.8477554321289,-18.2058887481689,-231.691711425781,48.5901641845703,-22.9376525878906,-231.832717895508,74.3883895874023,-25.6054134368896,-232.198745727539,44.2750396728516,-32.4414825439453,-231.668701171875,88.5326766967773,-24.1437702178955,-231.940734863281,58.8151664733887,-30.310375213623,-232.063735961914,39.2681541442871,-36.7050018310547,-231.477691650391,98.4399490356445,-29.0760555267334,-232.373764038086,74.5485153198242,-27.9066390991211,-232.485778808594,55.7201614379883,-28.9983463287354,-232.435775756836,49.7651786804199,-30.1755619049072,-232.519775390625,61.7486534118652,-35.4563789367676,-232.208755493164,83.4101715087891,-33.242862701416,-232.318771362305,77.9647369384766,-31.3402767181396,-231.502685546875,49.1142196655273,-34.1395492553711,-232.061737060547,36.6778984069824,-40.5393753051758,-232.066741943359,96.1980361938477,-34.4573822021484,-232.52278137207,72.0448608398438,-32.1836585998535,-232.369766235352,66.4299087524414,-34.1461524963379,-235.708099365234,56.8204727172852,-32.8468246459961,-231.656707763672,42.2713470458984,-43.6646842956543,-231.828720092773,104.068206787109,-36.8942222595215,-233.265853881836,77.9747467041016,-41.2559471130371,-234.156951904297,88.1686401367188,-34.5073852539063,-234.391967773438,61.7981605529785,-45.988208770752,-234.216949462891,99.7890853881836,-39.2979545593262,-233.850921630859,83.8013153076172,-35.6511001586914,-233.58088684082,66.8595581054688,-38.6574935913086,-235.358062744141,72.2808837890625,-38.1940460205078,-240.170532226563,58.9330787658691,-49.4896545410156,-234.180953979492,110.606842041016,-42.4850654602051,-237.880310058594,79.7157135009766,-50.8339881896973,-238.461364746094,100.785873413086,-40.1620407104492,-238.766387939453,65.9197692871094,-51.2559280395508,-242.163726806641,91.0840301513672, +-46.8923034667969,-242.56477355957,79.012451171875,-43.815601348877,-240.87060546875,73.2220764160156,-43.5750732421875,-243.501861572266,62.3467102050781,-54.0554046630859,-239.336456298828,108.364624023438,-56.1810111999512,-242.132720947266,103.076103210449,-45.8841018676758,-243.695877075195,67.9896621704102,-40.1199378967285,-242.310745239258,59.3926239013672,-55.0349006652832,-239.388458251953,114.302200317383,-55.5355491638184,-243.886901855469,91.8812026977539,-50.6628684997559,-244.409957885742,79.7010192871094,-48.2365303039551,-244.300933837891,73.7591323852539,-46.7623863220215,-245.112014770508,60.9969825744629,-59.0736923217773,-242.539779663086,110.229804992676,-60.0098876953125,-243.435852050781,103.414138793945,-50.183723449707,-245.15901184082,69.1765823364258,-43.5095710754395,-244.761993408203,50.7848815917969,-61.3850212097168,-243.055816650391,115.822357177734,-57.059497833252,-244.581970214844,86.5462875366211,-51.9641990661621,-245.713073730469,57.4540328979492,-49.3443412780762,-245.655075073242,52.1821136474609,-60.268310546875,-243.193832397461,121.704925537109,-62.9153709411621,-243.452850341797,109.904777526855,-63.904670715332,-243.706878662109,104.008193969727,-53.5406494140625,-245.122024536133,68.1088790893555,-44.8905029296875,-244.880004882813,44.8803024291992,-64.6867446899414,-243.403854370117,117.906555175781,-58.1016006469727,-244.505950927734,122.503005981445,-63.3221130371094,-244.402954101563,93.2699432373047,-56.1935081481934,-244.581970214844,76.3109817504883,-54.6867637634277,-245.233032226563,62.1490936279297,-53.9070892333984,-245.586059570313,51.1145133972168,-45.4701614379883,-244.86799621582,42.707389831543,-62.1152954101563,-243.100814819336,129.965744018555,-59.0477905273438,-243.253829956055,127.601509094238,-69.5587158203125,-243.087814331055,131.153854370117,-72.5866165161133,-243.486862182617,110.660842895508,-68.8767547607422,-244.119918823242,98.0858154296875,-59.7689590454102,-244.455963134766,84.3428649902344,-57.5845489501953,-243.845901489258,70.9530563354492, +-55.6672592163086,-245.148010253906,56.7682647705078,-55.0837020874023,-244.272933959961,125.46329498291,-66.5044174194336,-244.311935424805,93.594970703125,-64.2897109985352,-244.000915527344,87.8254089355469,-61.6932525634766,-243.166839599609,80.9812393188477,-57.7949714660645,-243.748886108398,62.8277587890625,-59.3877258300781,-243.06982421875,75.6312103271484,-57.2760162353516,-243.990905761719,52.819580078125,-54.6420593261719,-242.816787719727,135.587280273438,-64.8015518188477,-242.632766723633,137.635482788086,-51.9714965820313,-243.409851074219,128.317581176758,-73.5488128662109,-243.247833251953,124.317184448242,-74.6154174804688,-244.100921630859,97.4755554199219,-69.0054626464844,-243.677886962891,91.159538269043,-59.3563232421875,-242.838806152344,68.8948593139648,-58.5961456298828,-243.164840698242,57.7720642089844,-61.8018646240234,-240.362564086914,73.5516128540039,-58.526439666748,-242.604766845703,142.996017456055,-70.5933227539063,-242.560775756836,135.678298950195,-79.8131256103516,-243.234832763672,108.550636291504,-79.3724822998047,-242.992797851563,127.850532531738,-72.9861526489258,-243.895889282227,92.2232437133789,-65.9365692138672,-242.337738037109,84.3922729492188,-62.0808906555176,-239.741500854492,76.7833251953125,-61.4216232299805,-240.539581298828,67.0378723144531,-60.800464630127,-240.235549926758,60.9959831237793,-60.592342376709,-239.648483276367,57.8934745788574,-50.3234367370605,-242.417755126953,142.017929077148,-63.2181015014648,-242.084732055664,142.481979370117,-67.7382431030273,-241.535659790039,141.43586730957,-78.2940826416016,-242.346740722656,134.22314453125,-78.9884414672852,-243.991912841797,97.6923751831055,-77.5914154052734,-244.380935668945,90.0888290405273,-72.7937393188477,-242.487762451172,87.5506896972656,-50.141918182373,-243.480865478516,131.177856445313,-71.4732055664063,-240.520568847656,140.933822631836,-76.3824920654297,-241.208633422852,138.873611450195,-83.4642868041992,-243.107818603516,126.367385864258,-84.4946823120117,-242.907806396484,133.30207824707, +-83.7228088378906,-243.230834960938,105.964385986328,-48.4000473022461,-243.382843017578,133.618103027344,-80.6150054931641,-241.491668701172,138.673599243164,-82.8758239746094,-243.93391418457,99.1696243286133,-76.4194946289063,-244.587966918945,90.1942367553711,-40.4651718139648,-242.739791870117,140.605773925781,-75.4749984741211,-239.199432373047,141.997909545898,-79.1836624145508,-239.329452514648,142.574966430664,-90.954719543457,-242.921798706055,132.3349609375,-88.0351333618164,-242.882797241211,114.027183532715,-86.4725799560547,-242.393753051758,138.167541503906,-87.9930267333984,-244.231918334961,98.0928192138672,-43.7121887207031,-243.0908203125,137.337448120117,-84.3943786621094,-240.80859375,142.41096496582,-94.9864120483398,-243.252838134766,103.197120666504,-83.0723495483398,-245.383041381836,90.0218200683594,-42.7869987487793,-243.001815795898,138.009536743164,-92.1829376220703,-242.741790771484,137.039443969727,-95.4314575195313,-242.9248046875,123.091064453125,-98.7578887939453,-243.091812133789,108.283615112305,-90.2206497192383,-241.711685180664,142.171936035156,-100.906394958496,-244.089920043945,97.3333435058594,-88.6070861816406,-245.335052490234,91.3428497314453,-100.100318908691,-242.965805053711,135.498291015625,-107.676055908203,-242.990798950195,117.694541931152,-107.493041992188,-243.381851196289,101.860984802246,-93.1664352416992,-245.314025878906,93.2266387939453,-96.2115325927734,-242.264739990234,141.444869995117,-99.4891586303711,-245.432052612305,92.7359924316406,-109.092193603516,-243.909896850586,95.231330871582,-108.492141723633,-243.004821777344,139.466674804688,-101.267433166504,-242.719787597656,140.625793457031,-117.512016296387,-243.655883789063,100.84188079834,-101.499450683594,-245.387054443359,92.5136642456055,-104.727767944336,-245.288040161133,91.8460083007813,-112.703552246094,-243.584869384766,95.8657989501953,-99.1492156982422,-241.868698120117,145.06721496582,-114.49772644043,-243.061813354492,121.772933959961,-108.416122436523,-245.445053100586,89.3885650634766, +-112.649543762207,-244.509948730469,89.2029495239258,-105.987892150879,-242.64176940918,144.699188232422,-116.130889892578,-243.214828491211,137.526489257813,-123.906646728516,-243.357849121094,112.400016784668,-118.006072998047,-244.192932128906,90.7374954223633,-124.829734802246,-243.435852050781,124.078163146973,-129.432189941406,-243.951904296875,101.125915527344,-129.585205078125,-244.464950561523,89.074333190918,-110.374320983887,-245.680084228516,87.1614456176758,-117.499015808105,-245.252029418945,82.3329696655273,-121.603424072266,-243.027816772461,142.284942626953,-130.216262817383,-243.320846557617,140.783798217773,-134.201644897461,-243.544860839844,110.338813781738,-132.489486694336,-243.316848754883,123.62712097168,-120.54231262207,-245.413055419922,77.2093734741211,-112.335517883301,-245.89909362793,84.6905059814453,-140.464279174805,-243.779891967773,108.538642883301,-139.586181640625,-244.400955200195,82.7339172363281,-126.634910583496,-245.576065063477,73.4994049072266,-115.824859619141,-246.623168945313,74.0935668945313,-114.857757568359,-246.261123657227,77.8162307739258,-122.48950958252,-246.171127319336,64.7949523925781,-139.681198120117,-244.773986816406,73.4742050170898,-141.00732421875,-243.15983581543,137.287460327148,-140.442260742188,-243.646881103516,120.025764465332,-140.733291625977,-244.204925537109,95.6479797363281,-121.815444946289,-245.541061401367,71.2933959960938,-119.631233215332,-245.786071777344,69.8338470458984,-118.864158630371,-247.564254760742,61.6839485168457,-143.357543945313,-244.03791809082,71.6491241455078,-147.164932250977,-243.456848144531,117.366500854492,-146.729888916016,-243.701873779297,104.686264038086,-144.759689331055,-244.000915527344,77.1056594848633,-144.622680664063,-244.076904296875,90.4207611083984,-117.415008544922,-247.356246948242,68.4299087524414,-147.374954223633,-243.06282043457,130.841827392578,-146.493850708008,-242.542770385742,136.764404296875,-150.208221435547,-243.666885375977,109.978782653809,-152.770477294922,-243.26383972168,114.777252197266, +-150.522247314453,-243.540863037109,98.9319000244141,-149.368148803711,-243.370849609375,87.7848052978516,-149.430145263672,-242.704788208008,79.5543975830078,-152.153427124023,-241.424652099609,133.632110595703,-152.350433349609,-242.327743530273,128.468597412109,-151.523361206055,-242.548767089844,84.4735794067383,-153.936584472656,-243.238830566406,107.695556640625,-155.167709350586,-242.208724975586,121.385894775391,-154.266616821289,-243.107818603516,100.993896484375,-153.418548583984,-241.7216796875,89.263557434082,-153.116516113281,-239.011428833008,136.528381347656,-154.65966796875,-240.0205078125,132.240966796875,-155.873794555664,-242.563766479492,112.596038818359,-157.159912109375,-240.298538208008,125.378288269043,-156.889877319336,-241.729675292969,116.605430603027,-155.298721313477,-241.539672851563,94.4246597290039,-154.751663208008,-240.071533203125,86.9329223632813,-155.010696411133,-241.135635375977,128.394577026367,-158.517028808594,-241.766693115234,105.60334777832,-158.31201171875,-241.28564453125,110.631843566895,-157.882965087891,-240.691589355469,120.975860595703,-157.505935668945,-241.102615356445,99.9343032836914,-156.585845947266,-237.200241088867,130.228775024414,-158.707061767578,-240.724594116211,114.611236572266,-159.612152099609,-236.980224609375,122.550010681152,-159.784164428711,-238.762390136719,118.117576599121,-157.975982666016,-239.393447875977,96.8612976074219,-160.571243286133,-238.406356811523,105.424331665039,-159.723159790039,-240.774597167969,107.795570373535,-160.799255371094,-237.888320922852,111.200897216797,-158.588043212891,-236.765197753906,126.505401611328 + } + PolygonVertexIndex: *91014 { + a: 0,1,-3,3,2,-2,0,2,-5,5,2,-4,3,1,-7,4,2,-8,4,8,-1,7,2,-6,5,3,-10,6,1,-11,9,3,-7,11,4,-8,8,4,-13,5,13,-8,14,5,-10,15,6,-11,9,6,-16,11,16,-5,17,11,-8,4,16,-13,8,12,-19,5,14,-14,17,7,-14,14,9,-20,20,9,-16,16,11,-22,22,11,-18,23,12,-17,12,24,-19,25,13,-15,25,17,-14,19,9,-21,26,14,-20,20,15,-28,11,22,-22,16,21,-29,22,17,-26,23,24,-13,16,28,-24,18,24,-30,14,30,-26,19,20,-32,14,26,-31,26,19,-32,20,27,-33,22,33,-22,28,21,-35,22,25,-34,23,35,-25,36,23,-29,35,29,-25,37,25,-31,20,32,-32,26,38,-31,39,26,-32,27,40,-33,33,41,-22,34,21,-42,28,34,-43,37,33,-26,35,23,-44,36,44,-24,28,45,-37,35,46,-30,47,37,-31,32,48,-32,26,39,-39,30,38,-50,39,31,-51,51,40,-28,40,52,-33,33,37,-42,34,41,-54,34,53,-43,28,42,-46,43,23,-45,54,35,-44,44,36,-56,45,56,-37,54,46,-36,47,41,-38,30,49,-48,32,57,-49,50,31,-49,58,38,-40,58,49,-39,59,39,-51,40,51,-61,40,61,-53,52,57,-33,53,41,-48,42,53,-63,45,42,-63,43,44,-64,64,54,-44,55,36,-57,44,55,-66,56,45,-67,54,67,-47,47,49,-69,57,69,-49,50,48,-70,58,39,-60,70,49,-59,71,59,-51,60,72,-41,72,61,-41,73,52,-62,52,74,-58,47,68,-54,53,75,-63,45,62,-77,63,44,-66,64,43,-64,77,54,-65,55,56,-79,65,55,-79,66,45,-80,80,56,-67,77,67,-55,70,68,-50,57,74,-70,69,71,-51,58,59,-82,70,58,-83,71,83,-60,84,72,-61,85,61,-73,86,52,-74,73,61,-88,74,52,-87,53,68,-76,62,75,-89,62,88,-77,45,76,-80,63,65,-90,63,89,-65,64,90,-78,78,56,-81,91,65,-79,80,66,-80,92,67,-78,70,93,-69,74,94,-70,71,69,-95,81,59,-84,81,82,-59,70,82,-96,71,96,-84,84,85,-73,85,97,-62,86,73,-99,97,87,-62,73,87,-100,86,100,-75,93,75,-69,101,88,-76,76,88,-102,102,79,-77,91,89,-66,64,89,-91,77,90,-104,78,80,-105,104,91,-79,80,79,-106,77,103,-93,70,95,-94,74,100,-95,71,94,-107,107,81,-84,81,108,-83,109,95,-83,71,110,-97,96,107,-84,84,111,-86,111,97,-86,98,73,-100,86,98,-113,87,97,-114,87,114,-100,86,112,-101,101,75,-94,76,101,-116,102,105,-80,76,115,-103,89,91,-117,117,90,-90,103,90,-119,104,80,-120,91,104,-121,80,105,-120,121,92,-104,122,93,-96,94,100,-107,71,106,-111,123,81,-108,123,108,-82,109,82,-109,124,95,-110,110,125,-97,107,96,-126,84,126, +-112,97,111,-114,98,99,-128,98,127,-113,113,128,-88,114,87,-130,114,127,-100,112,130,-101,122,101,-94,131,115,-102,132,105,-103,133,102,-116,134,116,-92,89,116,-118,117,118,-91,103,118,-136,104,119,-121,134,91,-121,119,105,-137,121,103,-136,137,122,-96,138,106,-101,138,110,-107,107,125,-124,123,139,-109,108,140,-110,137,95,-125,124,109,-142,142,125,-111,126,84,-144,126,113,-112,144,112,-128,128,113,-146,128,129,-88,114,129,-147,114,146,-128,130,112,-148,100,130,-139,131,101,-123,148,115,-132,136,105,-133,102,133,-133,133,115,-150,116,134,-151,117,116,-152,117,152,-119,153,135,-119,154,120,-120,134,120,-156,119,136,-155,121,135,-157,131,122,-138,138,157,-111,123,125,-159,139,123,-159,139,140,-109,109,140,-142,159,137,-125,124,141,-161,158,125,-143,142,110,-158,113,126,-144,112,144,-148,146,144,-128,145,113,-144,145,161,-129,128,162,-130,162,146,-130,163,130,-148,138,130,-164,148,149,-116,131,164,-149,136,132,-166,132,133,-167,133,149,-168,150,134,-169,116,150,-152,117,151,-153,152,153,-119,135,153,-170,154,155,-121,134,155,-171,154,136,-172,135,169,-157,131,137,-165,138,172,-158,173,139,-159,139,174,-141,141,140,-175,159,164,-138,124,160,-160,175,160,-142,176,158,-143,142,157,-173,147,144,-178,146,178,-145,161,145,-144,179,128,-162,162,128,-181,162,178,-147,177,163,-148,181,138,-164,149,148,-183,183,148,-165,132,166,-166,136,165,-172,166,133,-168,149,182,-168,134,170,-169,150,168,-185,151,150,-185,185,152,-152,186,153,-153,169,153,-188,154,188,-156,170,155,-189,154,171,-189,156,169,-190,172,138,-191,139,173,-175,173,158,-177,141,174,-192,192,164,-160,192,159,-161,160,175,-194,141,194,-176,176,142,-173,195,177,-145,144,178,-196,128,179,-197,180,128,-197,162,180,-198,162,197,-179,198,163,-178,181,190,-139,199,181,-164,183,182,-149,192,183,-165,166,200,-166,171,165,-202,202,166,-168,167,182,-204,204,168,-171,205,184,-169,151,184,-186,185,186,-153,186,187,-154,206,169,-188,170,188,-208,201,188,-172,189,169,-207,172,190,-209,209,174,-174,176,210,-174,191,174,-212,194,141,-192,192,160,-194,193,175,-213,194,213,-176,214,176, +-173,215,177,-196,178,215,-196,179,216,-197,217,180,-197,197,180,-218,178,197,-219,198,199,-164,219,198,-178,190,181,-209,181,199,-221,182,183,-222,192,221,-184,200,166,-203,200,201,-166,202,167,-204,182,222,-204,204,223,-169,170,207,-205,205,224,-185,225,205,-169,226,185,-185,227,186,-186,187,186,-229,228,206,-188,207,188,-230,229,188,-202,206,230,-190,208,231,-173,209,232,-175,209,173,-211,176,233,-211,174,232,-212,234,191,-212,191,235,-195,192,193,-222,213,212,-176,193,212,-237,237,213,-195,233,176,-215,172,231,-215,215,219,-178,215,178,-219,216,238,-197,217,196,-239,217,218,-198,198,239,-200,219,240,-199,181,220,-209,199,241,-221,222,182,-222,200,202,-243,242,201,-201,243,202,-204,222,243,-204,204,244,-224,168,223,-246,204,207,-245,225,224,-206,226,184,-225,168,245,-226,226,227,-186,227,228,-187,228,246,-207,207,229,-248,229,201,-243,206,246,-231,231,208,-221,209,248,-233,249,209,-211,250,210,-234,248,211,-233,191,234,-252,211,248,-235,235,191,-252,194,235,-238,236,221,-194,213,252,-213,236,212,-254,237,254,-214,233,214,-256,231,255,-215,256,219,-216,215,218,-257,216,257,-239,217,238,-259,218,217,-260,239,198,-241,239,241,-200,256,240,-220,241,260,-221,236,222,-222,242,202,-262,202,243,-262,222,262,-244,263,223,-245,264,245,-224,247,244,-208,265,224,-226,226,224,-267,225,245,-268,227,226,-267,228,227,-269,246,228,-270,229,270,-248,229,242,-271,271,230,-247,231,220,-273,209,249,-249,250,249,-211,233,273,-251,234,274,-252,234,248,-276,251,276,-236,235,276,-238,277,252,-214,253,212,-253,236,253,-263,237,278,-255,254,277,-214,233,255,-274,231,272,-256,256,218,-280,238,257,-281,281,258,-239,259,217,-259,218,259,-280,282,239,-241,239,283,-242,284,240,-257,283,260,-242,285,220,-261,222,236,-263,261,286,-243,287,261,-244,243,262,-288,263,264,-224,288,263,-245,264,289,-246,288,244,-248,266,224,-266,225,290,-266,245,289,-268,225,267,-291,227,266,-269,269,228,-269,291,246,-270,270,292,-248,286,270,-243,293,230,-272,271,246,-295,285,272,-221,249,275,-249,295,249,-251,296,250,-274,274,234,-298,274,298,-252,275,297,-235,251, +298,-277,299,237,-277,277,300,-253,253,252,-302,253,301,-263,302,278,-238,303,254,-279,303,277,-255,273,255,-305,255,272,-305,256,279,-285,281,238,-281,305,258,-282,259,258,-306,279,259,-306,282,283,-240,284,282,-241,283,306,-261,307,285,-261,308,286,-262,308,261,-288,309,287,-263,310,264,-264,288,311,-264,312,289,-265,292,288,-248,266,265,-314,290,314,-266,290,267,-290,266,313,-269,268,315,-270,291,294,-247,315,291,-270,292,270,-317,316,270,-287,293,271,-318,294,317,-272,285,318,-273,295,275,-250,295,250,-297,273,319,-297,320,274,-298,321,298,-275,297,275,-323,276,298,-324,302,237,-300,276,323,-300,300,277,-325,301,252,-301,309,262,-302,278,302,-326,278,326,-304,277,303,-325,319,273,-305,327,304,-273,328,284,-280,281,329,-306,279,305,-330,330,283,-283,331,282,-285,330,306,-284,306,307,-261,285,307,-333,286,308,-334,308,287,-335,287,309,-336,312,264,-311,263,311,-311,288,336,-312,337,289,-313,336,288,-293,313,265,-339,290,339,-315,338,265,-315,290,289,-341,315,268,-314,291,341,-295,341,291,-316,292,316,-337,316,286,-343,343,293,-318,294,344,-318,345,318,-286,327,272,-319,295,322,-276,296,322,-296,319,322,-297,274,320,-322,346,320,-298,298,321,-348,348,297,-323,323,298,-350,299,350,-303,351,299,-324,300,324,-353,301,300,-354,353,309,-302,350,325,-303,325,326,-279,303,326,-355,303,354,-325,355,319,-305,356,304,-328,328,357,-285,329,328,-280,358,329,-282,330,282,-360,331,360,-283,331,284,-358,361,306,-331,306,361,-308,307,362,-333,332,345,-286,308,363,-334,286,333,-343,287,335,-335,308,334,-364,353,335,-310,312,310,-365,365,310,-312,336,366,-312,337,340,-290,312,367,-338,313,338,-369,340,339,-291,339,338,-315,313,368,-316,341,344,-295,369,341,-316,336,316,-367,316,342,-371,317,371,-344,317,344,-373,345,373,-319,327,318,-375,319,375,-323,347,321,-321,320,346,-377,346,297,-349,347,377,-299,375,348,-323,298,377,-350,351,323,-350,351,350,-300,352,324,-379,353,300,-353,350,379,-326,325,380,-327,381,354,-327,354,378,-325,355,382,-320,356,355,-305,327,374,-357,357,328,-384,329,384,-329,358,384,-330,385,358,-282,360,359,-283, +386,330,-360,331,357,-361,386,361,-331,362,307,-362,332,362,-388,332,388,-346,389,333,-364,389,342,-334,335,390,-335,390,363,-335,353,352,-336,365,364,-311,364,391,-313,392,365,-312,366,393,-312,340,337,-395,367,312,-396,394,337,-368,338,396,-369,340,397,-340,338,339,-399,369,315,-369,341,399,-345,400,341,-370,366,316,-371,342,401,-371,371,317,-373,372,344,-400,373,345,-389,318,373,-375,319,382,-376,320,402,-348,376,346,-404,320,376,-403,403,346,-349,404,377,-348,403,348,-376,349,377,-406,349,406,-352,351,379,-351,352,378,-408,380,325,-380,380,381,-327,354,381,-409,408,378,-355,409,382,-356,355,356,-411,374,410,-357,383,328,-385,411,357,-384,412,384,-359,385,413,-359,386,359,-361,360,357,-412,386,414,-362,362,361,-416,415,387,-363,387,388,-333,389,363,-417,389,417,-343,407,390,-336,418,363,-391,352,407,-336,365,391,-365,395,312,-392,392,391,-366,392,311,-394,393,366,-420,340,394,-398,367,395,-421,421,394,-368,338,398,-397,396,422,-369,423,339,-398,423,398,-340,369,368,-423,341,424,-400,341,400,-425,369,425,-401,366,370,-420,417,401,-343,401,419,-371,426,371,-373,399,426,-373,373,388,-428,374,373,-429,382,403,-376,404,347,-403,403,429,-377,402,376,-431,404,431,-378,405,377,-433,405,406,-350,406,433,-352,351,433,-380,378,408,-408,380,379,-435,381,380,-436,408,381,-437,409,437,-383,355,438,-410,355,410,-439,374,428,-411,384,439,-384,411,383,-441,412,441,-385,413,412,-359,386,360,-412,442,414,-387,414,443,-362,415,361,-444,444,387,-416,445,388,-388,416,363,-419,416,446,-390,446,417,-390,407,447,-391,390,447,-419,395,391,-449,392,448,-392,393,419,-393,394,449,-398,395,450,-421,367,420,-422,421,449,-395,451,396,-399,422,396,-453,423,397,-454,423,451,-399,422,425,-370,424,454,-400,400,455,-425,455,400,-426,417,456,-402,401,457,-420,371,426,-459,459,426,-400,445,427,-389,428,373,-428,382,460,-404,404,402,-462,460,429,-404,430,376,-430,402,430,-462,431,404,-462,432,377,-432,432,462,-406,405,463,-407,406,463,-434,433,464,-380,465,407,-409,379,464,-435,380,434,-436,381,435,-467,436,381,-468,465,408,-437,437,409,-439,460,382, +-438,468,438,-411,428,468,-411,441,439,-385,383,439,-470,383,469,-441,470,411,-441,412,471,-442,412,413,-473,386,411,-471,470,414,-443,470,442,-387,414,473,-444,415,443,-474,474,387,-445,475,444,-416,445,387,-475,416,418,-477,477,446,-417,446,478,-418,407,465,-448,447,479,-419,448,480,-396,481,448,-393,481,392,-420,482,397,-450,395,480,-451,420,450,-484,421,420,-484,421,484,-450,451,452,-397,422,452,-486,453,397,-483,453,486,-424,423,487,-452,422,485,-426,424,488,-455,459,399,-455,488,424,-456,489,455,-426,417,490,-457,457,401,-457,457,481,-420,491,458,-427,459,491,-427,445,492,-428,428,427,-493,460,493,-430,494,430,-430,430,495,-462,431,461,-497,432,431,-498,432,497,-463,498,405,-463,498,463,-406,499,433,-464,464,433,-501,434,464,-502,434,501,-436,466,435,-502,381,466,-468,502,436,-468,502,465,-437,437,438,-504,460,437,-505,468,505,-439,428,506,-469,469,439,-442,440,469,-508,470,440,-509,412,509,-472,441,471,-511,472,509,-413,508,414,-471,473,414,-512,415,473,-476,444,512,-475,475,512,-445,474,513,-446,418,479,-477,416,476,-478,514,446,-478,514,478,-447,490,417,-479,447,465,-516,447,515,-480,516,480,-449,481,516,-449,482,449,-485,517,450,-481,483,450,-519,421,483,-485,451,487,-453,452,519,-486,453,482,-487,423,486,-521,423,520,-488,425,485,-490,459,454,-489,455,521,-489,455,489,-523,456,490,-524,456,516,-458,457,516,-482,491,524,-459,525,491,-460,445,526,-493,506,428,-493,460,504,-494,429,493,-495,430,494,-496,495,496,-462,496,497,-432,497,527,-463,528,498,-463,463,498,-500,433,499,-501,464,500,-530,464,529,-502,466,501,-531,467,466,-532,467,531,-503,532,465,-503,503,438,-506,504,437,-504,506,505,-469,469,441,-508,440,507,-509,471,509,-534,534,510,-472,510,507,-442,472,533,-510,508,535,-415,535,511,-415,536,473,-512,475,473,-537,537,474,-513,475,538,-513,474,537,-514,513,526,-446,476,479,-540,476,539,-478,477,540,-515,541,478,-515,490,478,-543,465,532,-516,543,479,-516,544,480,-517,482,484,-546,518,450,-518,544,517,-481,483,518,-547,484,483,-547,452,487,-520,519,547,-486,486,482,-546,548,520,-487,549,487,-521,489, +485,-548,525,459,-489,455,550,-522,525,488,-522,547,522,-490,550,455,-523,523,490,-543,551,456,-524,551,516,-457,524,491,-526,552,458,-525,492,526,-554,506,492,-555,504,555,-494,494,493,-557,494,557,-496,495,558,-497,496,559,-498,497,559,-528,462,527,-561,528,561,-499,562,528,-463,563,499,-499,500,499,-565,529,500,-565,501,529,-566,565,530,-502,466,530,-532,566,502,-532,502,566,-533,503,505,-568,568,504,-504,506,569,-506,507,535,-509,534,471,-534,534,570,-511,510,571,-508,472,572,-534,573,511,-536,536,511,-574,574,475,-537,537,512,-576,538,475,-575,538,576,-513,537,577,-514,513,577,-527,578,539,-480,539,540,-478,579,514,-541,541,542,-479,541,514,-580,515,532,-581,578,479,-544,515,581,-544,551,544,-517,582,545,-485,518,517,-584,583,517,-545,546,518,-585,484,546,-586,549,519,-488,519,586,-548,486,545,-549,548,549,-521,550,587,-522,588,525,-522,547,589,-523,590,550,-523,523,542,-592,523,591,-552,524,525,-593,552,524,-594,553,526,-595,554,492,-554,554,595,-507,504,568,-556,556,493,-556,494,556,-597,494,596,-558,557,558,-496,559,496,-559,597,527,-560,560,527,-598,462,560,-563,598,561,-529,563,498,-562,562,598,-529,499,563,-600,499,599,-565,529,564,-601,600,565,-530,601,530,-566,601,531,-531,566,531,-602,602,532,-567,569,567,-506,603,503,-568,568,503,-604,595,569,-507,535,507,-572,534,533,-573,534,604,-571,570,571,-511,605,573,-536,536,573,-607,606,574,-537,512,576,-576,577,537,-576,538,574,-608,576,538,-608,577,608,-527,609,539,-579,610,540,-540,540,611,-580,541,579,-543,602,580,-533,581,515,-581,543,581,-579,612,544,-552,613,545,-583,582,484,-586,584,518,-584,583,544,-615,615,546,-585,616,585,-547,586,519,-550,617,547,-587,545,618,-549,548,619,-550,590,587,-551,587,588,-522,592,525,-589,589,547,-621,522,589,-622,590,522,-622,591,542,-623,612,551,-592,524,592,-594,608,594,-527,554,553,-595,595,554,-595,555,568,-624,596,556,-556,596,624,-558,557,625,-559,558,597,-560,597,626,-561,562,560,-628,598,628,-562,628,563,-562,627,598,-563,628,599,-564,600,629,-566,601,565,-630,601,630,-567,631,602,-567,569,632,-568,567,633,-604, +634,568,-604,635,569,-596,535,571,-637,637,534,-573,534,637,-605,570,604,-639,571,570,-637,605,639,-574,605,535,-637,606,573,-641,606,641,-575,642,575,-577,643,577,-576,607,574,-642,607,644,-577,643,608,-578,609,610,-540,609,578,-582,540,610,-612,579,611,-646,622,542,-580,580,602,-647,581,580,-648,612,614,-545,545,613,-619,648,613,-583,649,582,-586,650,584,-584,583,614,-651,616,546,-616,650,615,-585,616,649,-586,619,586,-550,547,617,-621,617,586,-652,618,619,-549,587,590,-653,589,620,-654,621,589,-655,655,590,-622,656,591,-623,657,612,-592,608,658,-595,594,658,-596,623,568,-635,623,659,-556,659,596,-556,596,659,-625,624,625,-558,625,660,-559,597,558,-662,597,662,-627,560,626,-664,627,560,-664,628,598,-665,627,665,-599,599,628,-667,601,629,-631,631,566,-631,631,667,-603,635,632,-570,632,668,-568,567,668,-634,633,669,-604,634,603,-670,635,595,-659,604,637,-671,671,638,-605,638,636,-571,605,636,-640,640,573,-640,606,640,-673,641,606,-673,642,643,-576,576,644,-643,607,641,-674,607,673,-645,608,643,-675,610,609,-676,676,609,-582,610,677,-612,678,645,-612,579,645,-680,622,579,-680,646,602,-681,646,681,-581,580,681,-648,676,581,-648,612,650,-615,618,613,-683,648,683,-614,649,648,-583,616,615,-685,650,685,-616,649,616,-687,586,619,-652,617,687,-621,617,651,-689,682,619,-619,655,652,-591,689,587,-653,653,620,-691,589,653,-655,654,691,-622,655,621,-692,656,657,-592,622,692,-657,693,612,-658,608,674,-659,623,634,-695,623,695,-660,659,625,-625,625,696,-661,558,660,-662,697,597,-662,697,662,-598,662,698,-627,626,698,-664,627,663,-700,665,664,-599,664,666,-629,627,699,-666,630,629,-701,630,700,-632,667,631,-702,602,667,-681,632,635,-703,632,702,-669,668,703,-634,703,669,-634,634,669,-705,705,635,-659,706,604,-671,671,707,-639,671,604,-707,708,636,-639,708,639,-637,640,639,-710,672,640,-710,641,672,-711,711,643,-643,712,642,-645,710,673,-642,713,644,-674,643,711,-675,676,675,-610,610,675,-678,611,677,-679,645,678,-715,679,645,-693,622,679,-693,680,681,-647,715,647,-682,676,647,-716,693,650,-613,683,682,-614,648,716,-684,649,716, +-649,684,615,-718,686,616,-685,693,685,-651,685,717,-616,649,686,-719,719,651,-620,687,617,-721,687,690,-621,651,721,-689,688,720,-618,719,619,-683,655,722,-653,689,652,-723,690,654,-654,723,691,-655,724,655,-692,693,657,-657,725,656,-693,705,658,-675,634,704,-695,726,623,-695,726,695,-624,659,695,-697,659,696,-626,727,660,-697,660,728,-662,697,661,-729,697,729,-663,730,698,-663,663,698,-732,663,731,-700,664,665,-733,664,732,-667,733,665,-700,631,700,-735,631,734,-702,667,701,-736,680,667,-736,635,736,-703,668,702,-704,703,704,-670,736,635,-706,737,706,-671,671,706,-708,738,638,-708,738,708,-639,708,739,-640,639,739,-710,709,710,-673,711,642,-741,740,642,-713,644,741,-713,710,713,-674,713,741,-645,711,742,-675,743,675,-677,675,744,-678,677,745,-679,678,745,-715,645,714,-693,680,746,-682,715,681,-747,743,676,-716,682,683,-748,747,683,-717,649,718,-717,684,717,-749,686,684,-749,693,725,-686,685,749,-718,718,686,-751,651,719,-722,687,720,-752,751,690,-688,752,688,-722,720,688,-754,682,747,-720,754,722,-656,690,723,-655,691,723,-725,655,724,-755,725,693,-657,755,725,-693,742,705,-675,756,694,-705,756,726,-695,757,695,-727,758,696,-696,660,727,-729,727,696,-760,729,697,-729,730,662,-730,760,698,-731,731,698,-762,733,699,-732,665,762,-733,733,762,-666,735,763,-681,702,736,-704,703,764,-705,736,705,-766,737,766,-707,766,707,-707,738,707,-768,738,768,-709,739,708,-769,709,739,-770,709,769,-711,770,711,-741,740,712,-772,741,771,-713,713,710,-773,713,773,-742,711,774,-743,743,744,-676,775,677,-745,677,775,-746,745,776,-715,692,714,-778,680,778,-747,746,779,-716,779,743,-716,780,747,-717,716,718,-782,749,748,-718,686,748,-751,782,685,-726,783,749,-686,781,718,-751,719,784,-722,720,785,-752,785,690,-752,688,752,-787,784,752,-722,753,688,-787,753,787,-721,719,747,-785,785,723,-691,788,724,-724,754,724,-789,755,789,-726,692,777,-756,742,790,-706,704,791,-757,792,726,-757,695,757,-759,757,726,-794,759,696,-759,794,728,-728,795,727,-760,796,729,-729,729,797,-731,698,760,-762,760,730,-798,733,731,-762,798,762,-734,735,799,-764,680, +763,-779,703,736,-766,703,765,-765,764,791,-705,790,765,-706,766,737,-801,801,707,-767,767,707,-802,738,767,-769,739,768,-803,769,739,-803,803,710,-770,770,804,-712,770,740,-806,740,771,-806,806,771,-742,710,803,-773,713,772,-774,806,741,-774,711,804,-775,807,742,-775,744,743,-809,809,775,-745,776,745,-776,810,714,-777,777,714,-811,746,778,-780,811,743,-780,780,784,-748,781,780,-717,748,749,-813,750,748,-814,783,685,-783,782,725,-790,783,812,-750,814,781,-751,785,720,-788,752,815,-787,752,784,-817,817,753,-787,753,818,-788,785,819,-724,819,788,-724,820,789,-756,777,820,-756,790,742,-808,756,791,-822,792,793,-727,821,792,-757,822,758,-758,757,793,-823,759,758,-823,794,796,-729,794,727,-796,795,759,-824,729,796,-825,729,825,-798,826,761,-761,827,760,-798,798,733,-762,798,828,-763,829,763,-800,778,763,-830,765,830,-765,791,764,-832,765,790,-831,766,800,-833,766,832,-802,833,767,-802,768,767,-834,768,833,-803,834,769,-803,803,769,-835,770,835,-805,770,805,-837,805,771,-807,834,772,-804,773,772,-838,838,806,-774,839,774,-805,840,807,-775,811,808,-744,744,808,-810,809,841,-776,841,776,-776,842,810,-777,777,810,-844,779,778,-830,811,779,-845,784,780,-817,814,780,-782,748,812,-814,750,813,-815,783,782,-846,782,789,-847,847,812,-784,848,785,-788,815,752,-817,817,786,-816,817,849,-754,849,818,-754,818,848,-788,848,819,-786,850,788,-820,820,851,-790,777,843,-821,830,790,-808,791,831,-822,852,793,-793,853,792,-822,854,822,-794,822,855,-760,794,856,-797,794,795,-857,759,855,-824,795,823,-858,856,824,-797,825,729,-825,825,827,-798,761,826,-829,858,826,-761,858,760,-828,798,761,-829,829,799,-860,830,831,-765,860,832,-801,801,832,-862,801,861,-834,862,802,-834,834,802,-864,864,835,-771,804,835,-840,836,805,-866,836,864,-771,805,806,-867,834,867,-773,772,867,-838,837,838,-774,838,868,-807,840,774,-840,840,831,-808,811,869,-809,809,808,-870,809,870,-842,870,776,-842,810,842,-872,870,842,-777,871,843,-811,779,829,-845,811,844,-870,872,816,-781,814,872,-781,847,813,-813,873,814,-814,782,846,-846,783,845,-848,846,789,-852,815,816,-875, +875,817,-816,876,849,-818,877,818,-850,878,848,-819,848,850,-820,820,879,-852,820,843,-880,830,807,-832,880,821,-832,793,852,-855,852,792,-854,853,821,-882,854,855,-823,882,856,-796,823,855,-884,857,823,-885,857,882,-796,856,882,-825,885,825,-825,825,885,-828,886,828,-827,826,858,-887,887,858,-828,888,859,-800,859,844,-830,889,832,-861,889,861,-833,833,861,-891,802,862,-864,833,891,-863,834,863,-893,864,893,-836,835,894,-840,865,805,-867,836,865,-865,895,866,-807,834,892,-868,867,896,-838,837,868,-839,895,806,-869,840,839,-898,880,831,-841,809,869,-899,870,809,-899,842,899,-872,870,899,-843,871,900,-844,901,869,-845,816,872,-875,814,873,-873,902,813,-848,902,873,-814,851,845,-847,847,845,-904,875,815,-875,817,875,-877,877,849,-877,878,818,-878,904,848,-879,850,848,-905,851,879,-906,879,843,-901,881,821,-881,852,906,-855,907,852,-854,908,853,-882,854,909,-856,883,855,-911,884,823,-884,857,884,-912,912,882,-858,882,913,-825,913,885,-825,914,827,-886,915,886,-859,887,915,-859,827,914,-888,888,916,-860,859,901,-845,917,889,-861,889,890,-862,891,833,-891,863,862,-919,891,918,-863,863,918,-893,864,919,-894,835,893,-895,839,894,-898,866,920,-866,865,921,-865,895,920,-867,892,896,-868,837,896,-869,895,868,-923,897,923,-841,923,880,-841,924,898,-870,870,898,-926,900,871,-900,899,870,-927,924,869,-902,927,874,-873,873,928,-873,847,903,-903,929,873,-903,851,903,-846,874,927,-876,930,876,-876,877,876,-932,932,878,-878,933,904,-879,850,904,-935,879,935,-906,851,905,-937,879,900,-936,881,880,-924,852,907,-907,854,906,-910,937,907,-854,937,853,-909,881,938,-909,910,855,-910,910,939,-884,883,940,-885,941,911,-885,857,911,-943,882,912,-914,912,857,-943,914,885,-914,887,943,-916,914,944,-888,916,945,-860,859,946,-902,917,947,-890,917,860,-949,890,889,-948,891,890,-950,891,950,-919,918,896,-893,864,951,-920,919,952,-894,953,894,-894,897,894,-954,865,920,-922,951,864,-922,895,954,-921,868,896,-956,956,922,-869,895,922,-955,897,957,-924,924,958,-899,925,898,-959,925,926,-871,959,900,-900,899,926,-961,924,901,-959,961,927,-873,928,873, +-963,928,961,-873,929,902,-904,873,929,-963,851,936,-904,963,875,-928,930,931,-877,963,930,-876,932,877,-932,933,878,-933,934,904,-934,964,905,-936,964,936,-906,935,900,-966,923,938,-882,907,966,-907,909,906,-968,907,937,-969,938,937,-909,910,909,-968,939,910,-968,883,939,-941,941,884,-941,941,942,-912,913,912,-970,912,942,-971,914,913,-945,887,971,-944,943,971,-916,887,944,-972,945,916,-973,859,945,-947,946,958,-902,917,948,-948,890,947,-974,890,974,-950,949,950,-892,950,896,-919,919,951,-976,919,975,-953,952,953,-894,897,953,-977,920,977,-922,921,978,-952,920,954,-978,950,955,-897,868,955,-957,956,954,-923,957,897,-977,957,979,-924,925,958,-981,925,981,-927,965,900,-960,959,899,-961,981,960,-927,927,961,-983,962,961,-929,929,903,-937,983,962,-930,982,963,-928,984,931,-931,963,985,-931,984,932,-932,933,932,-987,934,933,-988,988,964,-936,964,929,-937,935,965,-990,938,923,-980,907,968,-967,990,906,-967,967,906,-991,991,968,-938,937,938,-993,993,939,-968,939,994,-941,941,940,-996,941,995,-943,912,970,-970,913,969,-997,970,942,-998,944,913,-997,944,998,-972,972,999,-946,999,946,-946,946,1000,-959,1001,947,-949,947,1002,-974,973,974,-891,974,1003,-950,949,1004,-951,1005,975,-952,1006,952,-976,952,1007,-954,1007,976,-954,921,977,-1009,921,1008,-979,951,978,-1006,977,954,-1010,1004,955,-951,955,1010,-957,956,1009,-955,957,976,-1012,957,1011,-980,1012,980,-959,925,980,-982,965,959,-1014,960,1013,-960,981,1014,-961,962,982,-962,1015,962,-984,929,964,-984,1016,963,-983,984,930,-1018,1016,985,-964,985,1017,-931,986,932,-985,987,933,-987,964,988,-1016,988,935,-990,965,1018,-990,938,979,-993,966,968,-1020,993,990,-967,993,967,-991,991,1019,-969,937,992,-992,1020,939,-994,1020,994,-940,994,995,-941,997,942,-996,969,970,-998,969,1021,-997,944,996,-999,999,972,-1023,999,1000,-947,1012,958,-1001,1001,1002,-948,973,1002,-975,1023,1003,-975,1004,949,-1004,1005,1024,-976,1006,1025,-953,975,1026,-1007,952,1025,-1008,1007,1027,-977,1008,977,-1029,978,1008,-1030,978,1030,-1006,977,1009,-1032,1004,1010,-956,1032,956,-1011,1033,1009,-957, +976,1027,-1012,1011,1034,-980,1012,1035,-981,980,1014,-982,965,1013,-1019,960,1014,-1014,982,962,-1016,964,1015,-984,982,1036,-1017,984,1017,-1038,1016,1038,-986,1017,985,-1039,986,984,-1038,987,986,-1040,1015,988,-1037,989,1040,-989,1018,1041,-990,979,1042,-993,1019,1043,-967,993,966,-1045,1019,991,-1044,1042,991,-993,1020,993,-1046,1046,994,-1021,994,1047,-996,997,995,-1049,969,997,-1050,969,1050,-1022,998,996,-1022,999,1022,-1052,999,1051,-1001,1012,1000,-1053,1002,1001,-1054,1002,1023,-975,1003,1023,-1055,1003,1054,-1005,1005,1030,-1025,1024,1026,-976,1055,1025,-1007,1006,1026,-1057,1025,1057,-1008,1007,1057,-1028,1031,1028,-978,1029,1008,-1029,978,1029,-1031,1009,1033,-1032,1054,1010,-1005,1033,956,-1033,1054,1032,-1011,1027,1058,-1012,1011,1058,-1035,1042,979,-1035,1035,1012,-1053,1035,1059,-981,980,1059,-1015,1018,1013,-1061,1013,1014,-1062,982,1015,-1037,1016,1036,-1063,1037,1017,-1064,1062,1038,-1017,1063,1017,-1039,1037,1064,-987,986,1064,-1040,1036,988,-1041,989,1041,-1041,1065,1041,-1019,1043,1044,-967,993,1044,-1046,1043,991,-1067,1042,1066,-992,1067,1020,-1046,1068,994,-1047,1069,1046,-1021,1068,1047,-995,1047,1048,-996,1049,997,-1049,1049,1050,-970,1070,1051,-1023,1000,1051,-1053,1001,1071,-1054,1002,1053,-1073,1002,1072,-1024,1023,1073,-1055,1074,1024,-1031,1024,1074,-1027,1055,1057,-1026,1006,1056,-1056,1074,1056,-1027,1027,1057,-1059,1031,1075,-1029,1076,1029,-1029,1029,1076,-1031,1033,1077,-1032,1033,1032,-1079,1054,1079,-1033,1058,1080,-1035,1042,1034,-1081,1035,1052,-1082,1082,1059,-1036,1082,1014,-1060,1061,1060,-1014,1018,1060,-1066,1082,1061,-1015,1062,1036,-1084,1084,1037,-1064,1085,1038,-1063,1086,1063,-1039,1037,1087,-1065,1064,1088,-1040,1036,1040,-1090,1089,1040,-1042,1041,1065,-1091,1043,1091,-1045,1092,1045,-1045,1066,1091,-1044,1042,1093,-1067,1020,1067,-1070,1045,1094,-1068,1068,1046,-1070,1095,1047,-1069,1047,1096,-1049,1048,1097,-1050,1049,1097,-1051,1051,1070,-1082,1052,1051,-1082,1071,1072,-1054,1072,1098,-1024,1098,1073,-1024,1054,1073,-1080,1099,1074,-1031,1100,1057,-1056,1055, +1056,-1102,1074,1102,-1057,1103,1058,-1058,1031,1104,-1076,1028,1075,-1106,1076,1028,-1106,1030,1076,-1107,1077,1033,-1079,1104,1031,-1078,1032,1079,-1079,1103,1080,-1059,1042,1080,-1094,1081,1107,-1036,1082,1035,-1109,1061,1109,-1061,1109,1065,-1061,1109,1061,-1083,1036,1089,-1084,1085,1062,-1084,1087,1037,-1085,1084,1063,-1087,1085,1086,-1039,1087,1088,-1065,1041,1090,-1090,1065,1110,-1091,1091,1111,-1045,1094,1045,-1093,1044,1111,-1093,1066,1093,-1092,1112,1069,-1068,1113,1067,-1095,1114,1068,-1070,1115,1047,-1096,1114,1095,-1069,1047,1115,-1097,1097,1048,-1097,1081,1070,-1117,1071,1117,-1073,1117,1098,-1073,1098,1118,-1074,1079,1073,-1120,1099,1102,-1075,1106,1099,-1031,1057,1100,-1104,1055,1101,-1101,1102,1101,-1057,1120,1075,-1105,1075,1120,-1106,1105,1106,-1077,1077,1078,-1122,1104,1077,-1123,1079,1121,-1079,1123,1080,-1104,1080,1124,-1094,1107,1081,-1117,1108,1035,-1108,1109,1082,-1109,1110,1065,-1110,1089,1125,-1084,1125,1085,-1084,1126,1087,-1085,1086,1127,-1085,1086,1085,-1128,1087,1128,-1089,1089,1090,-1126,1110,1129,-1091,1091,1130,-1112,1131,1094,-1093,1131,1092,-1112,1091,1093,-1131,1112,1114,-1070,1132,1112,-1068,1132,1067,-1114,1113,1094,-1134,1095,1114,-1116,1115,1134,-1097,1135,1116,-1071,1117,1136,-1099,1137,1118,-1099,1118,1119,-1074,1079,1119,-1122,1099,1138,-1103,1139,1099,-1107,1140,1103,-1101,1101,1140,-1101,1102,1141,-1102,1120,1104,-1143,1120,1143,-1106,1106,1105,-1140,1122,1077,-1122,1122,1142,-1105,1080,1123,-1125,1123,1103,-1145,1093,1124,-1131,1107,1116,-1146,1108,1107,-1147,1108,1147,-1110,1109,1147,-1111,1085,1125,-1149,1149,1087,-1127,1127,1126,-1085,1127,1085,-1151,1087,1149,-1129,1151,1088,-1129,1090,1129,-1126,1110,1152,-1130,1130,1153,-1112,1131,1154,-1095,1111,1155,-1132,1156,1114,-1113,1132,1157,-1113,1154,1133,-1095,1113,1133,-1159,1134,1115,-1115,1134,1159,-1097,1135,1145,-1117,1136,1137,-1099,1160,1118,-1138,1118,1160,-1120,1119,1161,-1122,1162,1138,-1100,1102,1138,-1142,1099,1139,-1164,1103,1140,-1165,1101,1165,-1141,1101,1141,-1166,1142,1166,-1121,1143,1120,-1167,1143,1139, +-1106,1161,1122,-1122,1122,1167,-1143,1123,1168,-1125,1144,1103,-1165,1123,1144,-1169,1124,1169,-1131,1145,1170,-1108,1170,1146,-1108,1108,1146,-1148,1110,1147,-1153,1148,1125,-1130,1148,1150,-1086,1149,1126,-1172,1171,1126,-1128,1150,1171,-1128,1149,1172,-1129,1128,1173,-1152,1129,1152,-1175,1130,1169,-1154,1111,1153,-1156,1131,1155,-1155,1159,1114,-1157,1112,1157,-1157,1154,1175,-1134,1133,1175,-1159,1159,1134,-1115,1176,1145,-1136,1136,1177,-1138,1178,1160,-1138,1160,1179,-1120,1119,1179,-1162,1162,1180,-1139,1099,1163,-1163,1138,1181,-1142,1182,1163,-1140,1140,1183,-1165,1165,1183,-1141,1184,1165,-1142,1167,1166,-1143,1166,1182,-1144,1182,1139,-1144,1161,1185,-1123,1185,1167,-1123,1124,1168,-1170,1144,1164,-1187,1187,1168,-1145,1188,1170,-1146,1170,1189,-1147,1146,1189,-1148,1189,1152,-1148,1174,1148,-1130,1150,1148,-1191,1149,1171,-1173,1150,1191,-1172,1128,1172,-1174,1189,1174,-1153,1153,1169,-1193,1193,1155,-1154,1175,1154,-1156,1175,1194,-1159,1176,1188,-1146,1177,1195,-1138,1178,1196,-1161,1178,1137,-1196,1160,1196,-1180,1161,1179,-1198,1162,1163,-1181,1180,1198,-1139,1138,1198,-1182,1199,1141,-1182,1163,1182,-1201,1183,1186,-1165,1184,1183,-1166,1201,1184,-1142,1166,1167,-1203,1166,1202,-1183,1185,1161,-1198,1185,1203,-1168,1168,1192,-1170,1144,1186,-1188,1187,1204,-1169,1188,1205,-1171,1170,1205,-1190,1174,1206,-1149,1206,1190,-1149,1207,1150,-1191,1171,1191,-1173,1191,1150,-1208,1172,1191,-1174,1174,1189,-1209,1153,1192,-1210,1193,1210,-1156,1211,1193,-1154,1155,1210,-1176,1175,1210,-1195,1188,1176,-1213,1213,1195,-1178,1214,1196,-1179,1214,1178,-1196,1196,1215,-1180,1215,1197,-1180,1180,1163,-1217,1180,1217,-1199,1218,1181,-1199,1201,1141,-1200,1199,1181,-1219,1200,1182,-1203,1200,1216,-1164,1183,1184,-1187,1201,1219,-1185,1202,1167,-1204,1203,1185,-1198,1168,1204,-1193,1220,1187,-1187,1221,1204,-1188,1205,1188,-1223,1208,1189,-1206,1174,1208,-1207,1190,1206,-1224,1223,1207,-1191,1224,1209,-1193,1209,1211,-1154,1225,1210,-1194,1193,1211,-1227,1225,1194,-1211,1188,1212,-1223,1195,1213,-1228,1214,1228,-1197, +1195,1227,-1215,1196,1228,-1216,1229,1197,-1216,1180,1216,-1218,1230,1198,-1218,1230,1218,-1199,1219,1201,-1200,1231,1199,-1219,1202,1232,-1201,1200,1233,-1217,1220,1186,-1185,1220,1184,-1220,1202,1203,-1235,1203,1197,-1230,1192,1204,-1225,1221,1187,-1221,1204,1221,-1236,1205,1222,-1237,1208,1205,-1237,1237,1206,-1209,1223,1206,-1238,1223,1238,-1208,1224,1239,-1210,1211,1209,-1241,1225,1193,-1242,1211,1240,-1227,1226,1241,-1194,1227,1213,-1243,1214,1243,-1229,1214,1227,-1244,1228,1244,-1216,1244,1229,-1216,1216,1245,-1218,1230,1217,-1247,1231,1218,-1231,1199,1247,-1220,1199,1231,-1248,1202,1234,-1233,1232,1233,-1201,1245,1216,-1234,1248,1220,-1220,1229,1234,-1204,1235,1224,-1205,1221,1220,-1250,1235,1221,-1251,1251,1236,-1223,1208,1236,-1238,1223,1237,-1239,1252,1239,-1225,1239,1240,-1210,1240,1253,-1227,1226,1254,-1242,1242,1255,-1228,1228,1243,-1257,1243,1227,-1256,1256,1244,-1229,1257,1229,-1245,1258,1217,-1246,1246,1217,-1259,1230,1246,-1260,1231,1230,-1261,1261,1219,-1248,1260,1247,-1232,1232,1234,-1263,1233,1232,-1264,1245,1233,-1265,1248,1249,-1221,1261,1248,-1220,1229,1257,-1235,1235,1252,-1225,1249,1250,-1222,1265,1235,-1251,1251,1266,-1237,1237,1236,-1267,1237,1267,-1239,1268,1239,-1253,1239,1253,-1241,1254,1226,-1254,1255,1242,-1270,1256,1243,-1271,1255,1270,-1244,1256,1271,-1245,1271,1257,-1245,1258,1245,-1273,1246,1258,-1274,1259,1246,-1275,1260,1230,-1260,1247,1260,-1262,1257,1262,-1235,1232,1262,-1276,1276,1263,-1233,1233,1263,-1265,1272,1245,-1265,1249,1248,-1278,1261,1277,-1249,1278,1252,-1236,1250,1249,-1280,1265,1278,-1236,1265,1250,-1281,1266,1251,-1282,1267,1237,-1267,1268,1282,-1240,1278,1268,-1253,1282,1253,-1240,1254,1253,-1284,1269,1242,-1285,1285,1255,-1270,1271,1256,-1271,1270,1255,-1287,1257,1271,-1288,1273,1258,-1273,1274,1246,-1274,1259,1274,-1261,1260,1288,-1262,1257,1275,-1263,1232,1275,-1277,1263,1276,-1290,1264,1263,-1290,1264,1290,-1273,1291,1249,-1278,1292,1277,-1262,1249,1291,-1280,1250,1279,-1294,1294,1278,-1266,1293,1280,-1251,1265,1280,-1295,1266,1281,-1296,1267,1266,-1296,1268, +1296,-1283,1278,1296,-1269,1282,1283,-1254,1285,1269,-1285,1255,1285,-1287,1271,1270,-1298,1286,1298,-1271,1271,1297,-1288,1257,1287,-1276,1273,1272,-1300,1274,1273,-1301,1274,1301,-1261,1260,1302,-1289,1261,1288,-1304,1304,1276,-1276,1289,1276,-1306,1289,1290,-1265,1290,1299,-1273,1291,1277,-1293,1292,1261,-1304,1279,1291,-1294,1296,1278,-1295,1293,1306,-1281,1307,1294,-1281,1296,1308,-1283,1308,1283,-1283,1309,1285,-1285,1285,1310,-1287,1297,1270,-1299,1310,1298,-1287,1311,1287,-1298,1304,1275,-1288,1273,1299,-1301,1300,1301,-1275,1312,1260,-1302,1302,1260,-1314,1302,1303,-1289,1304,1314,-1277,1276,1314,-1306,1305,1315,-1290,1289,1316,-1291,1317,1299,-1291,1292,1318,-1292,1319,1292,-1304,1320,1293,-1292,1296,1294,-1322,1322,1306,-1294,1306,1307,-1281,1307,1321,-1295,1308,1296,-1324,1310,1285,-1310,1298,1311,-1298,1310,1311,-1299,1311,1324,-1288,1324,1304,-1288,1325,1300,-1300,1300,1325,-1302,1312,1326,-1261,1325,1312,-1302,1327,1313,-1261,1302,1313,-1329,1302,1319,-1304,1329,1314,-1305,1305,1314,-1330,1315,1305,-1331,1331,1289,-1316,1289,1331,-1317,1290,1316,-1333,1299,1317,-1334,1317,1290,-1333,1292,1334,-1319,1320,1291,-1319,1319,1334,-1293,1320,1322,-1294,1323,1296,-1322,1322,1335,-1307,1307,1306,-1336,1307,1336,-1322,1323,1337,-1309,1338,1311,-1311,1311,1338,-1325,1324,1329,-1305,1325,1299,-1340,1312,1340,-1327,1341,1260,-1327,1325,1340,-1313,1327,1342,-1314,1327,1260,-1344,1344,1328,-1314,1328,1345,-1303,1319,1302,-1347,1347,1305,-1330,1330,1305,-1348,1330,1348,-1316,1331,1315,-1350,1350,1316,-1332,1316,1350,-1333,1317,1332,-1334,1333,1339,-1300,1318,1334,-1352,1320,1318,-1352,1346,1334,-1320,1351,1322,-1321,1323,1321,-1353,1351,1335,-1323,1307,1335,-1354,1336,1307,-1354,1321,1336,-1353,1323,1352,-1338,1338,1354,-1325,1324,1354,-1330,1325,1339,-1356,1356,1326,-1341,1343,1260,-1342,1341,1326,-1358,1355,1340,-1326,1342,1327,-1359,1344,1313,-1343,1327,1343,-1359,1344,1359,-1329,1328,1359,-1346,1345,1346,-1303,1329,1354,-1348,1330,1347,-1361,1348,1330,-1362,1349,1315,-1349,1349,1362,-1332,1350,1331,-1363,1363,1332, +-1351,1363,1333,-1333,1333,1364,-1340,1334,1365,-1352,1366,1334,-1347,1335,1351,-1368,1368,1353,-1336,1336,1353,-1370,1352,1336,-1370,1352,1370,-1338,1355,1339,-1365,1356,1357,-1327,1355,1356,-1341,1371,1343,-1342,1372,1341,-1358,1373,1342,-1359,1344,1342,-1374,1371,1358,-1344,1374,1359,-1345,1345,1359,-1347,1361,1330,-1361,1348,1361,-1376,1376,1349,-1349,1349,1376,-1363,1362,1363,-1351,1377,1333,-1364,1364,1333,-1378,1366,1365,-1335,1367,1351,-1366,1366,1346,-1379,1368,1335,-1368,1368,1379,-1354,1380,1369,-1354,1352,1369,-1371,1370,1381,-1338,1355,1364,-1383,1356,1383,-1358,1382,1356,-1356,1371,1341,-1373,1357,1383,-1373,1373,1358,-1385,1373,1374,-1345,1371,1384,-1359,1385,1359,-1375,1359,1386,-1347,1387,1375,-1362,1375,1376,-1349,1376,1388,-1363,1362,1377,-1364,1364,1377,-1390,1366,1390,-1366,1365,1391,-1368,1378,1346,-1387,1366,1378,-1391,1368,1367,-1392,1379,1368,-1392,1380,1353,-1380,1369,1380,-1393,1370,1369,-1393,1370,1393,-1382,1382,1364,-1390,1383,1356,-1395,1382,1394,-1357,1371,1372,-1396,1396,1372,-1384,1384,1397,-1374,1373,1397,-1375,1384,1371,-1396,1385,1398,-1360,1399,1385,-1375,1400,1386,-1360,1387,1401,-1376,1375,1402,-1377,1402,1388,-1377,1377,1362,-1389,1403,1389,-1378,1391,1365,-1391,1386,1390,-1379,1379,1391,-1405,1380,1379,-1406,1380,1406,-1393,1370,1392,-1394,1407,1381,-1394,1389,1408,-1383,1394,1396,-1384,1382,1408,-1395,1396,1395,-1373,1409,1397,-1385,1374,1397,-1400,1409,1384,-1396,1398,1385,-1411,1398,1400,-1360,1385,1399,-1412,1386,1400,-1391,1401,1402,-1376,1412,1388,-1403,1377,1388,-1404,1403,1413,-1390,1414,1391,-1391,1414,1404,-1392,1379,1404,-1406,1415,1380,-1406,1415,1406,-1381,1406,1393,-1393,1416,1407,-1394,1389,1413,-1409,1394,1417,-1397,1408,1418,-1395,1396,1419,-1396,1420,1397,-1410,1411,1399,-1398,1419,1409,-1396,1421,1410,-1386,1400,1398,-1411,1411,1421,-1386,1414,1390,-1401,1401,1412,-1403,1412,1403,-1389,1422,1413,-1404,1414,1423,-1405,1424,1405,-1405,1415,1405,-1426,1415,1426,-1407,1406,1416,-1394,1416,1427,-1408,1428,1408,-1414,1429,1417,-1395,1417,1419,-1397,1428,1418,-1409, +1429,1394,-1419,1411,1397,-1421,1420,1409,-1431,1431,1409,-1420,1421,1432,-1411,1433,1400,-1411,1411,1434,-1422,1414,1400,-1434,1412,1401,-1436,1412,1422,-1404,1422,1436,-1414,1423,1414,-1434,1437,1404,-1424,1424,1425,-1406,1438,1424,-1405,1415,1425,-1440,1439,1426,-1416,1426,1440,-1407,1416,1406,-1441,1416,1441,-1428,1413,1436,-1429,1429,1442,-1418,1442,1419,-1418,1443,1418,-1429,1444,1429,-1419,1420,1445,-1412,1431,1430,-1410,1420,1430,-1447,1431,1419,-1443,1421,1447,-1433,1410,1432,-1449,1433,1410,-1449,1445,1434,-1412,1447,1421,-1435,1422,1412,-1436,1436,1422,-1450,1423,1433,-1451,1437,1438,-1405,1450,1437,-1424,1424,1451,-1426,1438,1452,-1425,1451,1439,-1426,1439,1453,-1427,1454,1440,-1427,1440,1441,-1417,1455,1427,-1442,1436,1443,-1429,1444,1442,-1430,1444,1418,-1444,1446,1445,-1421,1431,1442,-1431,1446,1430,-1457,1447,1457,-1433,1457,1448,-1433,1448,1450,-1434,1458,1434,-1446,1447,1434,-1459,1422,1435,-1460,1460,1449,-1423,1461,1436,-1450,1438,1437,-1463,1450,1463,-1438,1451,1424,-1453,1438,1464,-1453,1451,1453,-1440,1453,1454,-1427,1465,1440,-1455,1440,1465,-1442,1455,1441,-1467,1436,1461,-1444,1467,1442,-1445,1443,1468,-1445,1469,1445,-1447,1470,1430,-1443,1470,1456,-1431,1446,1456,-1470,1447,1471,-1458,1448,1457,-1451,1458,1445,-1470,1471,1447,-1459,1459,1472,-1423,1460,1473,-1450,1460,1422,-1473,1474,1461,-1450,1463,1462,-1438,1464,1438,-1463,1457,1463,-1451,1451,1452,-1476,1475,1452,-1465,1451,1476,-1454,1454,1453,-1478,1465,1454,-1479,1465,1479,-1442,1466,1441,-1480,1480,1455,-1467,1461,1481,-1444,1467,1470,-1443,1467,1444,-1483,1483,1468,-1444,1482,1444,-1469,1484,1456,-1471,1469,1456,-1486,1486,1457,-1472,1469,1487,-1459,1458,1488,-1472,1489,1473,-1461,1474,1449,-1474,1489,1460,-1473,1481,1461,-1475,1490,1462,-1464,1464,1462,-1492,1457,1492,-1464,1493,1451,-1476,1475,1464,-1495,1451,1493,-1477,1495,1453,-1477,1477,1453,-1496,1454,1477,-1479,1465,1478,-1497,1465,1497,-1480,1479,1498,-1467,1480,1466,-1500,1443,1481,-1484,1467,1500,-1471,1500,1467,-1483,1483,1501,-1469,1501,1482,-1469,1484,1485,-1457,1470, +1500,-1485,1469,1485,-1503,1486,1492,-1458,1486,1471,-1489,1469,1502,-1488,1458,1487,-1489,1489,1503,-1474,1474,1473,-1505,1481,1474,-1506,1491,1462,-1491,1506,1490,-1464,1491,1494,-1465,1506,1463,-1493,1493,1475,-1495,1507,1476,-1494,1495,1476,-1509,1477,1495,-1510,1509,1478,-1478,1509,1496,-1479,1465,1496,-1498,1479,1497,-1499,1466,1498,-1500,1481,1505,-1484,1500,1482,-1511,1501,1483,-1512,1501,1510,-1483,1485,1484,-1513,1513,1484,-1501,1502,1485,-1513,1492,1486,-1515,1514,1486,-1489,1487,1502,-1516,1487,1515,-1489,1473,1503,-1517,1504,1473,-1517,1474,1504,-1518,1505,1474,-1518,1491,1490,-1519,1506,1519,-1491,1520,1494,-1492,1506,1492,-1522,1520,1493,-1495,1508,1476,-1508,1507,1493,-1521,1508,1509,-1496,1509,1508,-1497,1522,1497,-1497,1497,1523,-1499,1499,1498,-1525,1505,1511,-1484,1513,1500,-1511,1501,1511,-1526,1510,1501,-1527,1513,1512,-1485,1502,1512,-1528,1492,1514,-1522,1514,1488,-1516,1528,1515,-1503,1503,1529,-1517,1504,1516,-1531,1504,1531,-1518,1505,1517,-1533,1490,1519,-1519,1518,1533,-1492,1519,1506,-1522,1520,1491,-1534,1507,1534,-1509,1507,1520,-1535,1535,1496,-1509,1497,1522,-1524,1522,1496,-1536,1498,1523,-1537,1524,1498,-1538,1505,1532,-1512,1513,1510,-1527,1525,1511,-1539,1525,1526,-1502,1513,1527,-1513,1502,1527,-1540,1540,1521,-1515,1514,1515,-1542,1515,1528,-1543,1539,1528,-1503,1530,1516,-1530,1504,1530,-1544,1504,1543,-1532,1517,1531,-1533,1519,1544,-1519,1518,1545,-1534,1521,1540,-1520,1533,1534,-1521,1546,1508,-1535,1535,1508,-1548,1548,1523,-1523,1522,1535,-1550,1536,1523,-1549,1536,1537,-1499,1524,1537,-1551,1511,1532,-1539,1513,1526,-1552,1525,1538,-1552,1525,1551,-1527,1552,1527,-1514,1539,1527,-1554,1541,1540,-1515,1515,1542,-1542,1554,1542,-1529,1554,1528,-1540,1530,1529,-1556,1556,1543,-1531,1543,1557,-1532,1558,1532,-1532,1559,1544,-1520,1544,1545,-1519,1533,1545,-1535,1540,1559,-1520,1547,1508,-1547,1546,1534,-1561,1561,1535,-1548,1562,1548,-1523,1549,1535,-1562,1562,1522,-1550,1536,1548,-1564,1536,1550,-1538,1564,1524,-1551,1538,1532,-1566,1552,1513,-1552,1566,1551,-1539,1552,1553, +-1528,1539,1553,-1568,1541,1542,-1541,1554,1568,-1543,1554,1539,-1568,1555,1556,-1531,1569,1543,-1557,1569,1557,-1544,1557,1558,-1532,1558,1565,-1533,1559,1570,-1545,1544,1571,-1546,1572,1534,-1546,1540,1542,-1560,1547,1546,-1574,1572,1560,-1535,1573,1546,-1561,1561,1547,-1575,1548,1562,-1576,1576,1549,-1562,1562,1549,-1578,1575,1563,-1549,1563,1550,-1537,1564,1550,-1579,1538,1565,-1567,1552,1551,-1580,1566,1579,-1552,1580,1553,-1553,1567,1553,-1582,1554,1567,-1569,1570,1542,-1569,1555,1582,-1557,1569,1556,-1584,1569,1584,-1558,1557,1585,-1559,1565,1558,-1586,1570,1559,-1543,1570,1571,-1545,1586,1545,-1572,1572,1545,-1587,1574,1547,-1574,1572,1587,-1561,1573,1560,-1589,1589,1561,-1575,1575,1562,-1578,1576,1577,-1550,1576,1561,-1591,1575,1591,-1564,1592,1550,-1564,1593,1578,-1551,1566,1565,-1595,1552,1579,-1581,1579,1566,-1596,1580,1581,-1554,1567,1581,-1597,1567,1596,-1569,1570,1568,-1598,1583,1556,-1583,1569,1583,-1585,1598,1557,-1585,1585,1557,-1599,1585,1594,-1566,1597,1571,-1571,1586,1571,-1600,1586,1587,-1573,1600,1574,-1574,1588,1560,-1588,1588,1600,-1574,1561,1589,-1591,1589,1574,-1602,1575,1577,-1577,1602,1576,-1591,1575,1603,-1592,1592,1563,-1592,1592,1604,-1551,1593,1550,-1605,1566,1594,-1596,1605,1580,-1580,1579,1595,-1607,1605,1581,-1581,1581,1607,-1597,1568,1596,-1609,1568,1608,-1598,1583,1582,-1610,1609,1584,-1584,1610,1598,-1585,1585,1598,-1612,1585,1612,-1595,1597,1599,-1572,1586,1599,-1614,1587,1586,-1615,1574,1600,-1602,1587,1615,-1589,1600,1588,-1617,1617,1590,-1590,1601,1618,-1590,1576,1603,-1576,1602,1603,-1577,1602,1590,-1618,1603,1619,-1592,1591,1619,-1593,1592,1620,-1605,1621,1593,-1605,1595,1594,-1613,1579,1606,-1606,1622,1606,-1596,1605,1623,-1582,1624,1607,-1582,1625,1596,-1608,1608,1596,-1626,1597,1608,-1627,1627,1584,-1610,1610,1611,-1599,1610,1584,-1629,1629,1585,-1612,1629,1612,-1586,1597,1626,-1600,1630,1613,-1600,1613,1614,-1587,1587,1614,-1616,1600,1631,-1602,1616,1588,-1616,1616,1631,-1601,1617,1589,-1633,1633,1618,-1602,1632,1589,-1619,1602,1634,-1604,1617,1635,-1603,1603,1634,-1620, +1620,1592,-1620,1621,1604,-1621,1612,1622,-1596,1605,1606,-1624,1622,1636,-1607,1624,1581,-1624,1637,1607,-1625,1637,1625,-1608,1608,1625,-1639,1626,1608,-1639,1628,1584,-1628,1639,1627,-1610,1610,1640,-1612,1610,1628,-1642,1629,1611,-1643,1629,1622,-1613,1599,1626,-1639,1630,1643,-1614,1638,1630,-1600,1643,1614,-1614,1644,1615,-1615,1631,1645,-1602,1616,1615,-1647,1616,1646,-1632,1617,1632,-1648,1632,1618,-1634,1601,1645,-1634,1602,1635,-1635,1617,1647,-1636,1634,1648,-1620,1620,1619,-1649,1620,1648,-1622,1649,1623,-1607,1622,1650,-1637,1636,1651,-1607,1652,1624,-1624,1637,1624,-1654,1625,1637,-1655,1638,1625,-1655,1627,1655,-1629,1639,1656,-1628,1641,1640,-1611,1640,1642,-1612,1641,1628,-1656,1622,1629,-1643,1657,1643,-1631,1630,1638,-1659,1644,1614,-1644,1644,1646,-1616,1631,1659,-1646,1646,1659,-1632,1633,1647,-1633,1660,1633,-1646,1634,1635,-1662,1635,1647,-1663,1634,1661,-1649,1621,1648,-1664,1652,1623,-1650,1606,1651,-1650,1622,1642,-1651,1650,1664,-1637,1665,1651,-1637,1653,1624,-1653,1653,1666,-1638,1637,1667,-1655,1654,1668,-1639,1627,1656,-1656,1641,1642,-1641,1641,1655,-1670,1644,1643,-1658,1657,1630,-1671,1671,1658,-1639,1670,1630,-1659,1672,1646,-1645,1645,1659,-1674,1672,1659,-1647,1674,1647,-1634,1674,1633,-1661,1660,1645,-1674,1675,1661,-1636,1676,1662,-1648,1662,1675,-1636,1661,1677,-1649,1648,1677,-1664,1678,1652,-1650,1679,1649,-1652,1664,1650,-1643,1665,1636,-1665,1665,1679,-1652,1678,1653,-1653,1653,1680,-1667,1666,1667,-1638,1654,1667,-1669,1671,1638,-1669,1669,1655,-1657,1681,1642,-1642,1641,1669,-1682,1672,1644,-1658,1670,1682,-1658,1659,1683,-1674,1672,1683,-1660,1674,1684,-1648,1685,1661,-1676,1676,1675,-1663,1676,1647,-1685,1677,1661,-1686,1686,1678,-1650,1686,1649,-1680,1664,1642,-1682,1665,1664,-1688,1687,1679,-1666,1678,1688,-1654,1653,1688,-1681,1680,1689,-1667,1689,1667,-1667,1668,1667,-1691,1671,1668,-1691,1691,1669,-1657,1669,1692,-1682,1672,1657,-1683,1682,1683,-1673,1685,1675,-1694,1694,1675,-1677,1695,1677,-1686,1686,1696,-1679,1686,1679,-1697,1664,1681,-1698,1698,1687,-1665,1696, +1679,-1688,1696,1688,-1679,1680,1688,-1700,1692,1669,-1692,1700,1691,-1657,1701,1681,-1693,1694,1693,-1676,1695,1685,-1694,1697,1681,-1703,1698,1664,-1698,1698,1703,-1688,1687,1704,-1697,1696,1699,-1689,1705,1692,-1692,1706,1691,-1701,1702,1681,-1702,1701,1692,-1706,1697,1702,-1708,1698,1697,-1709,1687,1703,-1705,1709,1696,-1705,1699,1696,-1710,1706,1705,-1692,1706,1700,-1711,1707,1702,-1702,1711,1701,-1706,1712,1697,-1708,1708,1697,-1713,1705,1706,-1714,1714,1706,-1711,1707,1701,-1712,1711,1705,-1714,1715,1712,-1708,1714,1713,-1707,1715,1707,-1712,1716,1711,-1714,1714,1716,-1714,1717,1715,-1712,1716,1717,-1712,1718,1719,-1721,1718,1721,-1720,1720,1719,-1723,1723,1718,-1721,1724,1721,-1719,1725,1719,-1722,1725,1722,-1720,1720,1722,-1727,1718,1723,-1728,1720,1728,-1724,1724,1729,-1722,1718,1727,-1725,1725,1721,-1731,1725,1731,-1723,1726,1722,-1733,1733,1720,-1727,1734,1727,-1724,1720,1733,-1729,1723,1728,-1736,1729,1724,-1737,1737,1721,-1730,1724,1727,-1739,1730,1721,-1740,1725,1730,-1732,1731,1732,-1723,1740,1726,-1733,1733,1726,-1742,1727,1734,-1743,1734,1723,-1736,1743,1728,-1734,1728,1744,-1736,1736,1724,-1739,1745,1729,-1737,1739,1721,-1738,1746,1737,-1730,1727,1742,-1739,1730,1739,-1748,1731,1730,-1748,1731,1747,-1733,1740,1741,-1727,1740,1732,-1749,1749,1733,-1742,1750,1742,-1735,1735,1751,-1735,1743,1752,-1729,1743,1733,-1750,1728,1752,-1745,1735,1744,-1754,1754,1736,-1739,1755,1729,-1746,1745,1736,-1755,1739,1737,-1757,1757,1737,-1747,1746,1729,-1756,1754,1738,-1743,1758,1747,-1740,1748,1732,-1748,1740,1759,-1742,1740,1748,-1761,1741,1761,-1750,1762,1742,-1751,1750,1734,-1752,1751,1735,-1764,1752,1743,-1750,1764,1744,-1753,1753,1744,-1766,1735,1753,-1764,1745,1766,-1756,1767,1745,-1755,1768,1756,-1738,1758,1739,-1757,1757,1768,-1738,1769,1757,-1747,1746,1755,-1771,1762,1754,-1743,1758,1748,-1748,1740,1760,-1760,1759,1771,-1742,1748,1772,-1761,1741,1771,-1762,1773,1749,-1762,1762,1750,-1775,1750,1751,-1776,1751,1763,-1777,1773,1752,-1750,1765,1744,-1765,1777,1764,-1753,1763,1753,-1766,1745,1778,-1767,1779,1755, +-1767,1778,1745,-1768,1767,1754,-1763,1768,1780,-1757,1758,1756,-1781,1768,1757,-1782,1782,1757,-1770,1746,1783,-1770,1784,1770,-1756,1746,1770,-1784,1748,1758,-1773,1785,1759,-1761,1759,1786,-1772,1785,1760,-1773,1771,1787,-1762,1773,1761,-1789,1789,1774,-1751,1762,1774,-1768,1751,1790,-1776,1789,1750,-1776,1765,1776,-1764,1751,1776,-1791,1773,1777,-1753,1791,1765,-1765,1777,1792,-1765,1793,1766,-1779,1779,1794,-1756,1795,1779,-1767,1796,1778,-1768,1780,1768,-1798,1758,1780,-1773,1782,1781,-1758,1768,1781,-1799,1782,1769,-1800,1799,1769,-1784,1770,1784,-1801,1801,1784,-1756,1802,1783,-1771,1759,1785,-1804,1759,1803,-1787,1771,1786,-1805,1805,1785,-1773,1771,1804,-1788,1787,1806,-1762,1788,1761,-1807,1773,1788,-1778,1807,1774,-1790,1796,1767,-1775,1808,1775,-1791,1789,1775,-1809,1765,1809,-1777,1776,1810,-1791,1811,1765,-1792,1792,1791,-1765,1777,1812,-1793,1793,1795,-1767,1793,1778,-1797,1794,1779,-1814,1794,1801,-1756,1795,1814,-1780,1798,1797,-1769,1797,1805,-1781,1805,1772,-1781,1815,1781,-1783,1816,1798,-1782,1817,1782,-1800,1799,1783,-1803,1784,1818,-1801,1770,1800,-1803,1819,1784,-1802,1785,1820,-1804,1803,1820,-1787,1804,1786,-1822,1805,1822,-1786,1823,1787,-1805,1824,1806,-1788,1788,1806,-1813,1777,1788,-1813,1807,1796,-1775,1807,1789,-1826,1808,1790,-1811,1825,1789,-1809,1811,1809,-1766,1826,1776,-1810,1826,1810,-1777,1791,1827,-1812,1791,1792,-1829,1792,1812,-1829,1829,1795,-1794,1829,1793,-1797,1813,1779,-1815,1794,1813,-1831,1831,1801,-1795,1832,1814,-1796,1816,1797,-1799,1805,1797,-1823,1816,1781,-1816,1782,1833,-1816,1782,1817,-1834,1834,1817,-1800,1802,1835,-1800,1784,1836,-1819,1802,1800,-1819,1819,1836,-1785,1831,1819,-1802,1785,1837,-1821,1786,1820,-1839,1786,1839,-1822,1804,1821,-1841,1785,1822,-1838,1787,1823,-1842,1823,1804,-1843,1824,1812,-1807,1787,1841,-1825,1807,1843,-1797,1807,1825,-1845,1808,1810,-1846,1825,1808,-1847,1809,1811,-1848,1809,1847,-1827,1848,1810,-1827,1827,1791,-1850,1850,1811,-1828,1828,1849,-1792,1812,1851,-1829,1852,1795,-1830,1829,1796,-1844,1813,1814,-1854,1830,1813,-1855, +1831,1794,-1831,1832,1855,-1815,1856,1832,-1796,1816,1857,-1798,1822,1797,-1858,1816,1815,-1858,1858,1815,-1834,1833,1817,-1860,1834,1859,-1818,1834,1799,-1836,1802,1860,-1836,1861,1818,-1837,1802,1818,-1862,1862,1836,-1820,1831,1863,-1820,1820,1837,-1839,1839,1786,-1839,1864,1821,-1840,1864,1840,-1822,1804,1840,-1843,1822,1865,-1838,1866,1841,-1824,1842,1867,-1824,1812,1824,-1852,1851,1824,-1842,1868,1843,-1808,1844,1825,-1870,1807,1844,-1869,1848,1845,-1811,1808,1845,-1847,1870,1825,-1847,1850,1847,-1812,1847,1871,-1827,1871,1848,-1827,1827,1849,-1873,1873,1850,-1828,1828,1874,-1850,1851,1874,-1829,1856,1795,-1853,1852,1829,-1844,1814,1855,-1854,1813,1853,-1855,1854,1875,-1831,1831,1830,-1864,1856,1855,-1833,1822,1857,-1866,1858,1857,-1816,1876,1858,-1834,1877,1833,-1860,1859,1834,-1879,1834,1835,-1879,1861,1860,-1803,1860,1878,-1836,1879,1861,-1837,1862,1879,-1837,1880,1862,-1820,1863,1881,-1820,1837,1882,-1839,1839,1838,-1884,1864,1839,-1885,1864,1885,-1841,1842,1840,-1887,1882,1837,-1866,1851,1841,-1867,1866,1823,-1888,1888,1867,-1843,1867,1887,-1824,1868,1852,-1844,1870,1869,-1826,1889,1844,-1870,1844,1890,-1869,1846,1845,-1849,1891,1870,-1847,1892,1847,-1851,1871,1847,-1894,1848,1871,-1892,1872,1849,-1895,1827,1872,-1896,1850,1873,-1897,1873,1827,-1896,1874,1894,-1850,1851,1866,-1875,1856,1852,-1898,1853,1855,-1899,1854,1853,-1900,1854,1900,-1876,1875,1863,-1831,1855,1856,-1902,1865,1857,-1903,1902,1857,-1859,1876,1903,-1859,1876,1833,-1878,1877,1859,-1905,1878,1904,-1860,1861,1905,-1861,1860,1906,-1879,1879,1905,-1862,1907,1879,-1863,1907,1862,-1881,1819,1881,-1881,1863,1900,-1882,1882,1883,-1839,1908,1839,-1884,1884,1839,-1909,1864,1884,-1886,1885,1886,-1841,1842,1886,-1889,1865,1909,-1883,1910,1866,-1888,1867,1888,-1912,1867,1912,-1888,1852,1868,-1898,1913,1869,-1871,1914,1844,-1890,1913,1889,-1870,1914,1890,-1845,1868,1890,-1916,1848,1891,-1847,1891,1916,-1871,1893,1847,-1893,1850,1896,-1893,1871,1893,-1918,1871,1916,-1892,1872,1894,-1919,1919,1895,-1873,1920,1896,-1874,1920,1873,-1896,1921,1894,-1875,1910, +1874,-1867,1901,1856,-1898,1898,1855,-1923,1898,1923,-1854,1899,1853,-1925,1854,1899,-1926,1854,1926,-1901,1875,1900,-1864,1855,1901,-1923,1865,1902,-1928,1858,1903,-1903,1903,1876,-1929,1876,1877,-1930,1877,1904,-1931,1904,1878,-1907,1905,1906,-1861,1905,1879,-1932,1931,1879,-1908,1932,1907,-1881,1880,1881,-1934,1900,1933,-1882,1882,1909,-1884,1908,1883,-1935,1935,1884,-1909,1884,1936,-1886,1888,1886,-1886,1865,1927,-1910,1910,1887,-1938,1888,1936,-1912,1867,1911,-1939,1939,1912,-1868,1887,1912,-1938,1868,1915,-1898,1913,1870,-1941,1941,1914,-1890,1942,1889,-1914,1890,1914,-1944,1890,1944,-1916,1940,1870,-1917,1893,1892,-1946,1946,1892,-1897,1917,1893,-1948,1917,1948,-1872,1948,1916,-1872,1894,1949,-1919,1872,1918,-1920,1919,1920,-1896,1950,1896,-1921,1949,1894,-1922,1921,1874,-1911,1944,1901,-1898,1898,1922,-1952,1952,1923,-1899,1924,1853,-1924,1924,1953,-1900,1953,1925,-1900,1854,1925,-1927,1926,1954,-1901,1955,1922,-1902,1902,1956,-1928,1957,1902,-1904,1958,1928,-1877,1903,1928,-1958,1929,1877,-1960,1958,1876,-1930,1960,1930,-1905,1877,1930,-1960,1904,1906,-1962,1905,1961,-1907,1931,1962,-1906,1963,1931,-1908,1932,1963,-1908,1932,1880,-1934,1900,1954,-1934,1909,1934,-1884,1934,1964,-1909,1936,1884,-1936,1935,1908,-1965,1888,1885,-1937,1909,1927,-1966,1910,1937,-1967,1967,1911,-1937,1911,1968,-1939,1867,1938,-1940,1969,1912,-1940,1969,1937,-1913,1944,1897,-1916,1942,1913,-1941,1914,1941,-1971,1889,1942,-1942,1914,1971,-1944,1890,1943,-1973,1972,1944,-1891,1940,1916,-1974,1945,1892,-1947,1947,1893,-1946,1946,1896,-1951,1947,1974,-1918,1948,1917,-1975,1973,1916,-1949,1975,1918,-1950,1976,1919,-1919,1920,1919,-1978,1978,1950,-1921,1949,1921,-1967,1910,1966,-1922,1944,1955,-1902,1955,1951,-1923,1952,1898,-1952,1952,1979,-1924,1923,1980,-1925,1924,1980,-1954,1981,1925,-1954,1925,1981,-1927,1982,1954,-1927,1902,1957,-1957,1956,1965,-1928,1983,1928,-1959,1957,1928,-1985,1929,1959,-1986,1986,1958,-1930,1987,1930,-1961,1961,1960,-1905,1930,1988,-1960,1962,1961,-1906,1962,1931,-1964,1989,1963,-1933,1932,1933,-1991,1954,1990, +-1934,1934,1909,-1992,1934,1992,-1965,1936,1935,-1994,1964,1994,-1936,1991,1909,-1966,1949,1966,-1938,1967,1995,-1912,1936,1993,-1968,1995,1968,-1912,1968,1996,-1939,1997,1939,-1939,1997,1969,-1940,1937,1969,-1999,1942,1940,-2000,1941,2000,-1971,1914,1970,-1972,2001,1941,-1943,2002,1943,-1972,2002,1972,-1944,1972,2003,-1945,2004,1940,-1974,2005,1945,-1947,1947,1945,-2006,1950,2006,-1947,1947,2005,-1975,1948,1974,-2008,1973,1948,-2008,2008,1918,-1976,1949,1998,-1976,1976,1977,-1920,2008,1976,-1919,1920,1977,-2010,1950,1978,-2011,1978,1920,-2010,1944,2003,-1956,1951,1955,-2012,1952,1951,-1980,1979,2012,-1924,1923,2012,-1981,2013,1953,-1981,2014,1981,-1954,1982,1926,-1982,2015,1954,-1983,1956,1957,-2017,2017,1965,-1957,1983,2018,-1929,1983,1958,-1987,2018,1984,-1929,2016,1957,-1985,1985,1959,-1989,1985,1986,-1930,1987,1988,-1931,2019,1987,-1961,2019,1960,-1962,1961,1962,-2021,2021,1962,-1964,1989,2022,-1964,1989,1932,-1991,1954,2023,-1991,1934,1991,-1993,1992,2024,-1965,1993,1935,-1995,1994,1964,-2025,2017,1991,-1966,1937,1998,-1950,2025,1995,-1968,1967,1993,-2027,1995,2027,-1969,1968,2028,-1997,1938,1996,-1998,1997,2029,-1970,2030,1998,-1970,2004,1999,-1941,1999,2001,-1943,2000,1941,-2032,1970,2000,-1972,2001,2031,-1942,2002,1971,-2033,2002,2033,-1973,1972,2033,-2004,2004,1973,-2035,2005,1946,-2007,2010,2006,-1951,2005,2035,-1975,2036,2007,-1975,1973,2007,-2035,1975,2037,-2009,1975,1998,-2038,1977,1976,-2039,1976,2008,-2040,2040,2009,-1978,2010,1978,-2042,2009,2042,-1979,1955,2003,-2044,2043,2011,-1956,2011,2044,-1952,2045,1979,-1952,1979,2046,-2013,2012,2047,-1981,2048,1953,-2014,1980,2047,-2014,2014,2049,-1982,2014,1953,-2049,2050,1982,-1982,1954,2015,-2024,2050,2015,-1983,1956,2016,-2018,1983,2051,-2019,1986,2052,-1984,2018,2053,-1985,2053,2016,-1985,1985,1988,-2055,1985,2055,-1987,1987,2056,-1989,2019,2057,-1988,2020,2019,-1962,1962,2058,-2021,1962,2021,-2059,2021,1963,-2023,1989,2059,-2023,1989,1990,-2024,1991,2060,-1993,1992,2061,-2025,2026,1993,-1995,2024,2026,-1995,1991,2017,-2061,2062,1995,-2026,2025,1967,-2027, +2027,1995,-2064,1968,2027,-2029,1996,2028,-2065,1997,1996,-2030,2029,2030,-1970,2030,2037,-1999,2065,1999,-2005,1999,2066,-2002,2000,2031,-2068,1971,2000,-2069,2001,2069,-2032,1971,2068,-2033,2002,2032,-2071,2033,2002,-2071,2033,2043,-2004,2071,2004,-2035,2035,2005,-2007,2035,2006,-2011,2035,2036,-1975,2036,2072,-2008,2072,2034,-2008,2037,2073,-2009,2038,1976,-2040,2040,1977,-2039,2008,2074,-2040,2040,2075,-2010,1978,2042,-2042,2076,2010,-2042,2009,2075,-2043,2043,2077,-2012,2077,2044,-2012,1951,2044,-2046,2045,2078,-1980,2078,2046,-1980,2046,2079,-2013,2012,2079,-2048,2013,2080,-2049,2080,2013,-2048,2014,2081,-2050,2049,2050,-1982,2014,2048,-2082,2082,2023,-2016,2083,2015,-2051,2017,2016,-2085,1983,2052,-2052,2018,2051,-2086,2086,2052,-1987,2018,2087,-2054,2053,2084,-2017,2054,1988,-2057,1985,2054,-2089,1985,2088,-2056,1986,2055,-2087,2089,2056,-1988,2058,2057,-2020,2057,2090,-1988,2058,2019,-2021,2091,2058,-2022,2022,2059,-2022,2092,2059,-1990,2082,1989,-2024,2060,2093,-1993,2061,1992,-2094,2061,2094,-2025,2095,2026,-2025,2017,2096,-2061,2062,2063,-1996,2097,2062,-2026,2026,2098,-2026,2099,2027,-2064,2028,2027,-2065,1996,2064,-2030,2100,2030,-2030,2030,2073,-2038,2065,2066,-2000,2065,2004,-2072,2001,2066,-2070,2101,2067,-2032,2067,2102,-2001,2102,2068,-2001,2031,2069,-2104,2068,2104,-2033,2104,2070,-2033,2033,2070,-2106,2105,2043,-2034,2071,2034,-2107,2035,2010,-2108,2035,2108,-2037,2036,2109,-2073,2106,2034,-2073,2008,2073,-2075,2039,2110,-2039,2110,2040,-2039,2074,2111,-2040,2075,2040,-2113,2113,2041,-2043,2107,2010,-2077,2041,2113,-2077,2114,2042,-2076,2105,2077,-2044,2077,2115,-2045,2045,2044,-2117,2078,2045,-2117,2078,2117,-2047,2046,2118,-2080,2079,2080,-2048,2080,2081,-2049,2049,2081,-2120,2049,2119,-2051,2083,2082,-2016,2119,2083,-2051,2084,2120,-2018,2051,2052,-2122,2085,2051,-2123,2018,2085,-2088,2121,2052,-2087,2123,2053,-2088,2084,2053,-2125,2054,2056,-2126,2054,2126,-2089,2088,2127,-2056,2128,2086,-2056,2129,2056,-2090,2089,1987,-2091,2057,2058,-2131,2057,2089,-2091,2058,2091,-2131,2091,2021,-2132,2059, +2132,-2022,2092,2133,-2060,2092,1989,-2135,2134,1989,-2083,2096,2093,-2061,2093,2135,-2062,2094,2061,-2137,2094,2095,-2025,2026,2095,-2138,2017,2138,-2097,2063,2062,-2098,2097,2025,-2099,2137,2098,-2027,2139,2027,-2100,2099,2063,-2141,2139,2064,-2028,2141,2029,-2065,2142,2030,-2101,2100,2029,-2142,2142,2073,-2031,2065,2143,-2067,2065,2071,-2145,2066,2143,-2070,2145,2067,-2102,2031,2103,-2102,2146,2102,-2068,2102,2147,-2069,2103,2069,-2149,2104,2068,-2148,2104,2149,-2071,2105,2070,-2150,2071,2106,-2151,2035,2107,-2109,2109,2036,-2109,2072,2109,-2107,2151,2074,-2074,2152,2110,-2040,2040,2110,-2113,2151,2111,-2075,2152,2039,-2112,2153,2075,-2113,2154,2113,-2043,2107,2076,-2156,2113,2156,-2077,2114,2154,-2043,2075,2157,-2115,2149,2077,-2106,2158,2115,-2078,2115,2116,-2045,2078,2116,-2160,2078,2160,-2118,2118,2046,-2118,2079,2118,-2162,2079,2161,-2081,2162,2081,-2081,2163,2119,-2082,2083,2164,-2083,2119,2164,-2084,2084,2165,-2121,2120,2138,-2018,2051,2121,-2167,2051,2166,-2123,2085,2122,-2168,2167,2087,-2086,2168,2121,-2087,2123,2124,-2054,2169,2123,-2088,2084,2124,-2166,2129,2125,-2057,2054,2125,-2127,2170,2088,-2127,2088,2170,-2128,2128,2055,-2128,2128,2168,-2087,2089,2171,-2130,2130,2171,-2058,2089,2057,-2172,2131,2130,-2092,2132,2131,-2022,2059,2133,-2133,2092,2172,-2134,2092,2134,-2174,2174,2134,-2083,2093,2096,-2176,2175,2135,-2094,2135,2136,-2062,2176,2094,-2137,2095,2094,-2177,2176,2137,-2096,2175,2096,-2139,2097,2177,-2064,2097,2098,-2179,2178,2098,-2138,2139,2099,-2180,2063,2177,-2141,2180,2099,-2141,2064,2139,-2182,2141,2064,-2182,2142,2100,-2183,2141,2182,-2101,2183,2073,-2143,2184,2143,-2066,2071,2150,-2145,2065,2144,-2185,2148,2069,-2144,2146,2067,-2146,2145,2101,-2186,2103,2186,-2102,2146,2187,-2103,2187,2147,-2103,2188,2103,-2149,2104,2147,-2150,2106,2189,-2151,2108,2107,-2191,2108,2191,-2110,2109,2192,-2107,2183,2151,-2074,2152,2112,-2111,2151,2193,-2112,2152,2111,-2195,2075,2153,-2158,2152,2153,-2113,2154,2156,-2114,2195,2155,-2077,2190,2107,-2156,2195,2076,-2157,2154,2114,-2197,2197,2114,-2158,2198,2077, +-2150,2158,2199,-2116,2198,2158,-2078,2159,2116,-2116,2159,2160,-2079,2160,2200,-2118,2118,2117,-2201,2161,2118,-2201,2161,2201,-2081,2162,2163,-2082,2202,2162,-2081,2163,2164,-2120,2164,2203,-2083,2120,2165,-2139,2204,2166,-2122,2122,2166,-2206,2167,2122,-2206,2087,2167,-2170,2204,2121,-2169,2123,2165,-2125,2169,2206,-2124,2129,2207,-2126,2208,2126,-2126,2208,2170,-2127,2209,2127,-2171,2128,2127,-2211,2128,2210,-2169,2171,2211,-2130,2171,2130,-2212,2212,2130,-2132,2132,2133,-2132,2173,2172,-2093,2213,2133,-2173,2174,2173,-2135,2174,2082,-2204,2214,2135,-2176,2135,2215,-2137,2216,2176,-2137,2137,2176,-2218,2175,2138,-2219,2097,2219,-2178,2097,2178,-2220,2178,2137,-2221,2179,2099,-2181,2181,2139,-2180,2221,2140,-2178,2180,2140,-2223,2223,2141,-2182,2183,2142,-2183,2141,2223,-2183,2143,2184,-2225,2225,2144,-2151,2225,2184,-2145,2148,2143,-2227,2145,2227,-2147,2228,2185,-2102,2145,2185,-2230,2186,2103,-2189,2228,2101,-2187,2187,2146,-2231,2198,2147,-2188,2188,2148,-2227,2147,2198,-2150,2231,2189,-2107,2225,2150,-2190,2108,2190,-2192,2109,2191,-2193,2231,2106,-2193,2232,2151,-2184,2232,2193,-2152,2111,2193,-2234,2194,2111,-2234,2153,2152,-2195,2153,2234,-2158,2196,2156,-2155,2235,2155,-2196,2155,2235,-2191,2195,2156,-2237,2114,2197,-2197,2157,2234,-2198,2237,2199,-2159,2159,2115,-2200,2238,2158,-2199,2159,2239,-2161,2200,2160,-2241,2161,2200,-2242,2161,2241,-2202,2202,2080,-2202,2162,2242,-2164,2202,2242,-2163,2163,2243,-2165,2243,2203,-2165,2218,2138,-2166,2244,2166,-2205,2244,2205,-2167,2167,2205,-2246,2169,2167,-2247,2247,2204,-2169,2218,2165,-2124,2169,2248,-2207,2218,2123,-2207,2211,2207,-2130,2207,2249,-2126,2208,2125,-2250,2170,2208,-2251,2209,2251,-2128,2209,2170,-2253,2251,2210,-2128,2247,2168,-2211,2130,2253,-2212,2130,2212,-2254,2254,2212,-2132,2131,2133,-2255,2255,2133,-2214,2215,2135,-2215,2214,2175,-2257,2136,2215,-2217,2216,2257,-2177,2257,2217,-2177,2217,2220,-2138,2258,2175,-2219,2219,2259,-2178,2219,2178,-2221,2180,2181,-2180,2221,2222,-2141,2221,2177,-2260,2180,2222,-2261,2261,2223,-2182,2232,2183,-2183, +2182,2223,-2263,2184,2263,-2225,2226,2143,-2225,2184,2225,-2264,2229,2227,-2146,2146,2227,-2231,2228,2264,-2186,2229,2185,-2265,2188,2265,-2187,2228,2186,-2266,2187,2230,-2267,2198,2187,-2268,2188,2226,-2269,2269,2189,-2232,2225,2189,-2270,2190,2270,-2192,2231,2192,-2192,2232,2271,-2194,2271,2233,-2194,2194,2233,-2273,2153,2194,-2274,2234,2153,-2274,2274,2156,-2197,2236,2235,-2196,2275,2190,-2236,2156,2274,-2237,2196,2197,-2277,2277,2197,-2235,2237,2278,-2200,2279,2237,-2159,2159,2199,-2281,2238,2279,-2159,2238,2198,-2268,2159,2280,-2240,2160,2239,-2241,2240,2281,-2201,2241,2200,-2282,2282,2201,-2242,2202,2201,-2284,2243,2163,-2243,2284,2242,-2203,2243,2285,-2204,2244,2204,-2287,2205,2244,-2288,2245,2205,-2288,2246,2167,-2246,2246,2248,-2170,2247,2286,-2205,2248,2288,-2207,2289,2218,-2207,2211,2290,-2208,2291,2249,-2208,2292,2208,-2250,2250,2208,-2294,2170,2250,-2253,2209,2294,-2252,2295,2209,-2253,2251,2296,-2211,2210,2297,-2248,2290,2211,-2254,2212,2290,-2254,2254,2298,-2213,2255,2254,-2134,2215,2214,-2300,2258,2256,-2176,2300,2214,-2257,2215,2301,-2217,2216,2301,-2258,2217,2257,-2221,2289,2258,-2219,2219,2220,-2260,2180,2261,-2182,2221,2302,-2223,2303,2221,-2260,2304,2260,-2223,2260,2305,-2181,2306,2223,-2262,2232,2182,-2308,2262,2223,-2309,2262,2307,-2183,2224,2263,-2310,2268,2226,-2225,2269,2263,-2226,2229,2310,-2228,2310,2230,-2228,2311,2264,-2229,2264,2310,-2230,2188,2312,-2266,2313,2228,-2266,2310,2266,-2231,2266,2267,-2188,2314,2188,-2269,2269,2231,-2316,2275,2270,-2191,2191,2270,-2317,2316,2231,-2192,2232,2307,-2272,2271,2317,-2234,2272,2233,-2318,2194,2272,-2274,2234,2273,-2278,2274,2196,-2277,2318,2235,-2237,2275,2235,-2319,2319,2236,-2275,2197,2320,-2277,2277,2320,-2198,2321,2278,-2238,2280,2199,-2279,2279,2321,-2238,2322,2279,-2239,2267,2323,-2239,2239,2280,-2325,2239,2325,-2241,2281,2240,-2326,2241,2281,-2327,2282,2327,-2202,2282,2241,-2327,2283,2201,-2328,2284,2202,-2284,2243,2242,-2286,2244,2286,-2329,2287,2244,-2329,2329,2245,-2288,2330,2246,-2246,2246,2330,-2249,2331,2286,-2248,2248,2332,-2289,2288, +2289,-2207,2290,2291,-2208,2292,2249,-2292,2292,2293,-2209,2333,2250,-2294,2252,2250,-2335,2294,2209,-2296,2335,2251,-2295,2252,2334,-2296,2296,2251,-2337,2296,2297,-2211,2331,2247,-2298,2298,2290,-2213,2298,2254,-2256,2300,2299,-2215,2215,2299,-2338,2258,2338,-2257,2300,2256,-2340,2215,2337,-2302,2301,2340,-2258,2257,2341,-2221,2289,2338,-2259,2259,2220,-2304,2342,2261,-2181,2303,2302,-2222,2304,2222,-2303,2304,2343,-2261,2260,2343,-2306,2342,2180,-2306,2306,2308,-2224,2342,2306,-2262,2262,2308,-2345,2262,2344,-2308,2309,2263,-2346,2224,2309,-2347,2268,2224,-2347,2347,2263,-2270,2311,2348,-2265,2313,2311,-2229,2310,2264,-2350,2312,2188,-2315,2312,2350,-2266,2265,2350,-2314,2349,2266,-2311,2266,2323,-2268,2351,2314,-2269,2316,2315,-2232,2347,2269,-2316,2275,2352,-2271,2316,2270,-2353,2353,2271,-2308,2317,2271,-2354,2317,2354,-2273,2272,2355,-2274,2356,2277,-2274,2274,2276,-2358,2318,2236,-2359,2275,2318,-2360,2358,2236,-2320,2319,2274,-2358,2276,2320,-2361,2361,2320,-2278,2321,2362,-2279,2280,2278,-2325,2321,2279,-2323,2363,2322,-2239,2238,2323,-2364,2325,2239,-2325,2281,2325,-2365,2326,2281,-2365,2327,2282,-2366,2282,2326,-2367,2283,2327,-2368,2284,2283,-2369,2286,2369,-2329,2287,2328,-2371,2245,2329,-2372,2287,2370,-2330,2371,2330,-2246,2372,2248,-2331,2286,2331,-2370,2332,2248,-2373,2332,2373,-2289,2288,2374,-2290,2290,2298,-2292,2333,2334,-2251,2295,2375,-2295,2335,2336,-2252,2294,2375,-2336,2295,2334,-2377,2296,2336,-2378,2378,2297,-2297,2378,2331,-2298,2299,2300,-2380,2299,2380,-2338,2256,2338,-2340,2379,2300,-2340,2381,2301,-2338,2301,2381,-2341,2340,2341,-2258,2341,2303,-2221,2289,2382,-2339,2302,2303,-2384,2304,2302,-2385,2385,2343,-2305,2343,2386,-2306,2342,2305,-2387,2308,2306,-2388,2306,2342,-2389,2308,2389,-2345,2353,2307,-2345,2347,2345,-2264,2309,2345,-2391,2390,2346,-2310,2268,2346,-2352,2311,2391,-2349,2392,2264,-2349,2393,2311,-2314,2392,2349,-2265,2312,2314,-2395,2312,2395,-2351,2395,2313,-2351,2323,2266,-2350,2396,2314,-2352,2352,2315,-2317,2347,2315,-2353,2275,2359,-2353,2397,2317,-2354,2317,2398, +-2355,2272,2354,-2356,2273,2355,-2357,2361,2277,-2357,2276,2399,-2358,2400,2318,-2359,2359,2318,-2402,2319,2357,-2359,2360,2320,-2362,2360,2399,-2277,2362,2321,-2403,2362,2403,-2279,2324,2278,-2405,2321,2322,-2403,2363,2405,-2323,2323,2349,-2364,2325,2324,-2365,2326,2364,-2407,2365,2282,-2367,2327,2365,-2368,2366,2326,-2407,2367,2368,-2284,2407,2328,-2370,2370,2328,-2409,2371,2329,-2410,2329,2370,-2410,2372,2330,-2372,2410,2369,-2332,2372,2411,-2333,2332,2411,-2374,2288,2373,-2375,2374,2382,-2290,2295,2412,-2376,2413,2336,-2336,2375,2414,-2336,2412,2295,-2377,2377,2336,-2416,2296,2377,-2417,2378,2296,-2417,2410,2331,-2379,2380,2299,-2380,2380,2417,-2338,2339,2338,-2383,2418,2379,-2340,2381,2337,-2418,2419,2340,-2382,2340,2420,-2342,2341,2421,-2304,2421,2383,-2304,2302,2383,-2423,2422,2384,-2303,2384,2385,-2305,2385,2423,-2344,2388,2386,-2344,2388,2342,-2387,2306,2424,-2388,2387,2425,-2309,2306,2388,-2425,2426,2389,-2309,2389,2353,-2345,2347,2427,-2346,2345,2428,-2391,2390,2429,-2347,2346,2430,-2352,2431,2391,-2312,2392,2348,-2392,2393,2432,-2312,2395,2393,-2314,2433,2349,-2393,2394,2314,-2397,2312,2394,-2435,2395,2312,-2435,2430,2396,-2352,2352,2435,-2348,2359,2435,-2353,2317,2397,-2399,2389,2397,-2354,2398,2436,-2355,2437,2355,-2355,2356,2355,-2438,2361,2356,-2439,2439,2357,-2400,2400,2440,-2319,2358,2441,-2401,2440,2401,-2319,2401,2442,-2360,2439,2358,-2358,2360,2361,-2444,2360,2444,-2400,2362,2402,-2446,2403,2362,-2446,2446,2278,-2404,2404,2278,-2447,2447,2324,-2405,2448,2402,-2323,2449,2405,-2364,2450,2322,-2406,2449,2363,-2350,2364,2324,-2448,2451,2406,-2365,2365,2366,-2453,2452,2367,-2366,2366,2406,-2453,2408,2328,-2408,2407,2369,-2411,2408,2453,-2371,2371,2409,-2455,2455,2409,-2371,2454,2372,-2372,2372,2456,-2412,2411,2457,-2374,2374,2373,-2459,2382,2374,-2459,2375,2412,-2460,2413,2415,-2337,2413,2335,-2415,2375,2459,-2415,2377,2415,-2461,2416,2377,-2462,2378,2416,-2411,2380,2379,-2463,2380,2462,-2418,2339,2382,-2464,2418,2464,-2380,2418,2339,-2464,2417,2465,-2382,2340,2419,-2421,2419,2381,-2466,2421,2341,-2421, +2421,2422,-2384,2422,2466,-2385,2467,2385,-2385,2468,2423,-2386,2343,2423,-2389,2469,2387,-2425,2387,2470,-2426,2426,2308,-2426,2471,2424,-2389,2389,2426,-2398,2427,2347,-2436,2427,2472,-2346,2345,2472,-2429,2428,2429,-2391,2430,2346,-2430,2431,2473,-2392,2432,2431,-2312,2392,2391,-2475,2393,2475,-2433,2393,2395,-2477,2449,2349,-2434,2474,2433,-2393,2394,2396,-2435,2395,2434,-2478,2478,2396,-2431,2359,2427,-2436,2398,2397,-2480,2436,2398,-2481,2481,2354,-2437,2437,2354,-2482,2356,2437,-2483,2356,2482,-2439,2361,2438,-2484,2444,2439,-2400,2440,2400,-2485,2358,2439,-2442,2400,2441,-2486,2401,2440,-2487,2401,2486,-2443,2442,2427,-2360,2443,2361,-2484,2360,2443,-2445,2487,2445,-2403,2445,2488,-2404,2446,2403,-2490,2404,2446,-2490,2447,2404,-2491,2448,2487,-2403,2491,2448,-2323,2405,2449,-2493,2450,2491,-2323,2493,2450,-2406,2364,2447,-2452,2451,2494,-2407,2452,2406,-2496,2407,2496,-2409,2410,2497,-2408,2408,2498,-2454,2455,2370,-2454,2454,2409,-2500,2409,2455,-2500,2454,2456,-2373,2500,2411,-2457,2457,2411,-2502,2457,2502,-2374,2458,2373,-2503,2503,2382,-2459,2504,2459,-2413,2413,2505,-2416,2414,2506,-2414,2459,2507,-2415,2415,2508,-2461,2377,2460,-2462,2416,2461,-2510,2416,2509,-2411,2464,2462,-2380,2417,2462,-2511,2463,2382,-2512,2512,2464,-2419,2418,2463,-2513,2510,2465,-2418,2420,2419,-2514,2465,2514,-2420,2420,2422,-2422,2466,2422,-2516,2384,2466,-2517,2517,2385,-2468,2467,2384,-2517,2423,2468,-2519,2517,2468,-2386,2518,2388,-2424,2519,2387,-2470,2469,2424,-2472,2519,2470,-2388,2470,2426,-2426,2471,2388,-2521,2479,2397,-2427,2427,2442,-2473,2521,2428,-2473,2522,2429,-2429,2430,2429,-2524,2473,2431,-2525,2474,2391,-2474,2432,2525,-2432,2393,2476,-2476,2432,2475,-2526,2476,2395,-2478,2474,2449,-2434,2396,2526,-2435,2477,2434,-2528,2528,2396,-2479,2430,2523,-2479,2398,2479,-2530,2398,2529,-2481,2481,2436,-2481,2437,2481,-2531,2437,2530,-2483,2482,2531,-2439,2438,2532,-2484,2439,2444,-2534,2400,2485,-2485,2440,2484,-2487,2441,2439,-2535,2485,2441,-2536,2536,2442,-2487,2537,2443,-2484,2533,2444,-2444,2487,2538,-2446,2445, +2539,-2489,2489,2403,-2489,2404,2489,-2491,2451,2447,-2491,2448,2540,-2488,2491,2541,-2449,2474,2492,-2450,2405,2492,-2494,2542,2491,-2451,2542,2450,-2494,2543,2494,-2452,2494,2495,-2407,2407,2497,-2497,2408,2496,-2499,2410,2509,-2498,1472,2453,-2499,1459,2455,-2454,2454,2499,-2545,1459,2499,-2456,2456,2454,-2545,2500,2501,-2412,2456,2544,-2501,2457,2501,-2546,2457,2545,-2503,2458,2502,-2547,2382,2503,-2512,2546,2503,-2459,2459,2504,-2548,2413,2506,-2506,2415,2505,-2509,2414,2507,-2507,2547,2507,-2460,2548,2460,-2509,2460,2549,-2462,2509,2461,-2551,2464,2510,-2463,2463,2511,-2552,2512,2552,-2465,2512,2463,-2552,2510,2514,-2466,2514,2513,-2420,2420,2513,-2516,2515,2422,-2421,2466,2515,-2554,2516,2466,-2555,2517,2467,-2556,2516,2554,-2468,2518,2468,-2557,2517,2556,-2469,2518,2520,-2389,2519,2469,-2558,2469,2471,-2559,2519,2559,-2471,2560,2426,-2471,2471,2520,-2562,2479,2426,-2561,2562,2472,-2443,2521,2522,-2429,2472,2562,-2522,2522,2563,-2430,2564,2523,-2430,2524,2431,-2526,2565,2473,-2525,2474,2473,-2493,2566,2475,-2477,2567,2525,-2476,2477,2568,-2477,2526,2396,-2529,2527,2434,-2527,2477,2527,-2570,2528,2478,-2524,2479,2560,-2530,2480,2529,-2571,2481,2480,-2572,2530,2481,-2573,2482,2530,-2574,2482,2574,-2532,2438,2531,-2533,2537,2483,-2533,2575,2439,-2534,2576,2484,-2486,2577,2486,-2485,2534,2439,-2576,2535,2441,-2535,2576,2485,-2536,2562,2442,-2537,2536,2486,-2578,2537,2533,-2444,2538,2487,-2541,2538,2578,-2446,2578,2539,-2446,2579,2488,-2540,2489,2488,-2580,2579,2490,-2490,2451,2490,-2544,2541,2540,-2449,2542,2541,-2492,2492,2580,-2494,2542,2493,-2582,2494,2543,-2583,2497,2583,-2497,2496,2584,-2499,2509,2550,-2498,1459,2453,-1473,2498,1489,-1473,1435,2544,-2500,1435,2499,-1460,2501,2500,-2586,2500,2544,-2587,2587,2545,-2502,2588,2502,-2546,2588,2546,-2503,2511,2503,-2590,2546,2589,-2504,2506,2508,-2506,2507,2590,-2507,2507,2547,-2592,2592,2460,-2549,2593,2548,-2509,2592,2549,-2461,2461,2549,-2551,2464,2552,-2511,2551,2511,-2595,2512,2595,-2553,2512,2551,-2596,2596,2514,-2511,2597,2513,-2515,2515,2513,-2554,2598,2466, +-2554,2598,2554,-2467,2554,2555,-2468,2555,2599,-2518,2518,2556,-2601,2601,2556,-2518,2520,2518,-2601,2469,2558,-2558,2602,2519,-2558,2558,2471,-2562,2519,2602,-2560,2560,2470,-2560,2561,2520,-2604,2522,2521,-2605,2562,2605,-2522,2563,2522,-2607,2563,2564,-2430,2607,2523,-2565,2524,2525,-2609,2565,2492,-2474,2524,2608,-2566,2567,2475,-2567,2566,2476,-2569,2525,2567,-2610,2610,2568,-2478,2526,2528,-2608,2526,2611,-2528,2569,2527,-2612,2612,2477,-2570,2528,2523,-2608,2560,2559,-2530,2529,2559,-2571,2571,2480,-2571,2572,2481,-2572,2530,2572,-2574,2574,2482,-2574,2613,2531,-2575,2531,2614,-2533,2532,2615,-2538,2616,2575,-2534,2484,2576,-2618,2484,2617,-2578,2575,2535,-2535,2576,2535,-2619,2536,2619,-2563,2536,2577,-2620,2616,2533,-2538,2540,2620,-2539,2538,2620,-2579,2578,2621,-2540,2579,2539,-2622,2579,2543,-2491,2541,2622,-2541,2581,2541,-2543,2623,2580,-2493,2624,2493,-2581,2581,2493,-2626,2579,2582,-2544,2583,2497,-2551,2496,2583,-2627,2496,2626,-2585,1489,2498,-2585,1401,2544,-1436,2500,2586,-2586,2501,2585,-2588,1387,2586,-2545,2545,2587,-2628,2588,2545,-2629,2588,2629,-2547,2511,2589,-2595,2589,2546,-2630,2593,2508,-2507,2507,2630,-2591,2506,2590,-2594,2591,2631,-2508,2592,2548,-2633,2593,2632,-2549,2592,2633,-2550,2633,2550,-2550,2552,2596,-2511,2551,2594,-2635,2552,2595,-2636,2634,2595,-2552,2597,2514,-2597,2553,2513,-2598,2553,2636,-2599,2554,2598,-2638,2554,2638,-2556,2599,2555,-2640,2601,2517,-2600,2601,2600,-2557,2520,2600,-2604,2558,2640,-2558,2602,2557,-2642,2642,2558,-2562,2643,2559,-2603,2561,2603,-2645,2521,2605,-2605,2522,2604,-2607,2645,2605,-2563,2646,2563,-2607,2647,2564,-2564,2647,2607,-2565,2525,2609,-2609,2623,2492,-2566,2565,2608,-2649,2649,2567,-2567,2650,2566,-2569,2649,2609,-2568,2568,2610,-2652,2612,2610,-2478,2526,2607,-2653,2526,2652,-2612,2611,2653,-2570,2569,2654,-2613,2559,2643,-2571,2571,2570,-2656,2656,2572,-2572,2573,2572,-2658,2574,2573,-2659,2531,2613,-2660,2613,2574,-2659,2531,2659,-2615,2614,2615,-2533,2537,2615,-2617,2616,2660,-2576,2576,2661,-2618,2619,2577,-2618,2662,2535,-2576, +2618,2535,-2663,2576,2618,-2662,2619,2645,-2563,2540,2663,-2621,2621,2578,-2621,2579,2621,-2665,2581,2622,-2542,2622,2663,-2541,2665,2580,-2624,2493,2624,-2626,2580,2666,-2625,2581,2625,-2668,2664,2582,-2580,2583,2550,-2669,2583,2668,-2627,2669,2584,-2627,2584,1503,-1490,2544,1401,-1388,2670,2585,-2587,2587,2585,-2672,1387,2670,-2587,2587,2671,-2628,2545,2627,-2629,2672,2588,-2629,2588,2672,-2630,2589,2629,-2595,2631,2630,-2508,2590,2630,-2674,2590,2674,-2594,2631,2591,-2676,2592,2632,-2677,2674,2632,-2594,2592,2676,-2634,2633,2668,-2551,2635,2596,-2553,2634,2594,-2678,2634,2635,-2596,2635,2597,-2597,2636,2553,-2598,2678,2598,-2637,2678,2637,-2599,2637,2679,-2555,2554,2679,-2639,2638,2680,-2556,2680,2639,-2556,2599,2639,-2682,2601,2599,-2682,2600,2601,-2683,2603,2600,-2683,2558,2642,-2641,2640,2641,-2558,2643,2602,-2642,2642,2561,-2684,2603,2684,-2645,2683,2561,-2645,2685,2604,-2606,2685,2606,-2605,2605,2645,-2687,2647,2563,-2647,2646,2606,-2688,2647,2652,-2608,2688,2608,-2610,2565,2648,-2624,2689,2648,-2609,2566,2650,-2650,2650,2568,-2691,2688,2609,-2650,2691,2651,-2611,2651,2690,-2569,2691,2610,-2613,2692,2611,-2653,2611,2692,-2654,2569,2653,-2655,2612,2654,-2694,2655,2570,-2644,2571,2655,-2657,2656,2694,-2573,2572,2694,-2658,2658,2573,-2658,2695,2659,-2614,2696,2613,-2659,2697,2614,-2660,2614,2698,-2616,2615,2699,-2617,2699,2660,-2617,2575,2660,-2663,2700,2617,-2662,2619,2617,-2646,2662,2701,-2619,2618,2701,-2662,2702,2622,-2582,2580,2665,-2704,2704,2665,-2624,2624,2705,-2626,2703,2666,-2581,2624,2666,-2706,2706,2667,-2626,2667,2702,-2582,2626,2668,-2708,1503,2584,-2670,2669,2626,-2708,2670,2671,-2586,1361,2670,-1388,2671,2708,-2628,2627,2709,-2629,2672,2628,-2711,2594,2629,-2673,2630,2631,-2676,2673,2630,-2676,2590,2673,-2712,2590,2711,-2675,2712,2676,-2633,2674,2713,-2633,2676,2714,-2634,2633,2707,-2669,2594,2715,-2678,2634,2677,-2717,2635,2634,-2717,2636,2597,-2636,2678,2636,-2717,2717,2637,-2679,2718,2679,-2638,2679,2719,-2639,2638,2719,-2681,2720,2639,-2681,2639,2721,-2682,2722,2601,-2682,2682,2601,-2723,2603, +2682,-2685,2642,2723,-2641,2641,2640,-2725,2725,2643,-2642,2642,2683,-2724,2684,2726,-2645,2683,2644,-2728,2728,2685,-2606,2729,2606,-2686,2686,2645,-2618,2605,2686,-2729,2730,2647,-2647,2687,2606,-2732,2687,2732,-2647,2652,2647,-2731,2689,2608,-2689,2648,2689,-2624,2733,2649,-2651,2690,2734,-2651,2649,2735,-2689,2736,2651,-2692,2651,2736,-2691,2691,2612,-2694,2737,2692,-2653,2692,2738,-2654,2654,2653,-2740,2693,2654,-2741,2741,2655,-2644,2741,2656,-2656,2742,2694,-2657,2743,2657,-2695,2658,2657,-2745,2695,2745,-2660,2613,2746,-2696,2746,2613,-2697,2744,2696,-2659,2614,2697,-2699,2697,2659,-2746,2615,2698,-2700,2699,2747,-2661,2662,2660,-2749,2686,2617,-2701,2700,2661,-2750,2662,2748,-2702,2750,2661,-2702,2703,2665,-2752,2665,2704,-2753,2704,2623,-2690,2753,2625,-2706,2703,2705,-2667,2706,2625,-2754,2669,1529,-1504,2669,2707,-2755,2671,2670,-2756,1361,2755,-2671,2671,2755,-2709,2708,2756,-2628,2627,2756,-2710,2628,2709,-2711,2672,2710,-2595,2757,2673,-2676,2711,2673,-2759,2711,2713,-2675,2712,2759,-2677,2712,2632,-2714,2714,2676,-2760,2714,2707,-2634,2594,2760,-2716,2677,2715,-2762,2761,2716,-2678,2635,2716,-2637,2762,2678,-2717,2718,2637,-2718,2762,2717,-2679,2718,2763,-2680,2719,2679,-2765,2720,2680,-2720,2720,2765,-2640,2766,2721,-2640,2722,2681,-2722,2722,2767,-2683,2682,2767,-2685,2723,2724,-2641,2641,2724,-2769,2725,2741,-2644,2725,2641,-2769,2727,2723,-2684,2726,2684,-2770,2726,2727,-2645,2728,2770,-2686,2729,2731,-2607,2685,2771,-2730,2772,2728,-2687,2730,2646,-2774,2687,2731,-2730,2732,2687,-2775,2646,2732,-2774,2737,2652,-2731,2689,2688,-2776,2733,2735,-2650,2733,2650,-2777,2690,2777,-2735,2776,2650,-2735,2688,2735,-2779,2691,2693,-2737,2779,2690,-2737,2692,2737,-2781,2692,2781,-2739,2782,2653,-2739,2739,2653,-2783,2654,2739,-2741,2783,2693,-2741,2741,2784,-2657,2785,2694,-2743,2656,2784,-2743,2744,2657,-2744,2694,2785,-2744,2695,2786,-2746,2695,2746,-2787,2746,2696,-2745,2697,2787,-2699,2788,2697,-2746,2698,2789,-2700,2789,2747,-2700,2790,2660,-2748,2790,2748,-2661,2791,2686,-2701,2750,2749,-2662,2791,2700, +-2750,2701,2748,-2793,2750,2701,-2794,2751,2665,-2795,2751,2795,-2704,2796,2752,-2705,2752,2794,-2666,2689,2775,-2705,2797,2753,-2706,2705,2703,-2799,2669,2754,-1530,2707,2799,-2755,1360,2755,-1362,2755,1347,-2709,1354,2756,-2709,2756,2800,-2710,2710,2709,-2802,2594,2710,-2761,2757,2758,-2674,2711,2758,-2803,2711,2803,-2714,2804,2759,-2713,2713,2803,-2713,2714,2759,-2800,2714,2799,-2708,2715,2760,-2806,2715,2806,-2762,2762,2716,-2762,2718,2717,-2808,2808,2717,-2763,2718,2807,-2764,2764,2679,-2764,2809,2719,-2765,2720,2719,-2810,2765,2720,-2811,2765,2766,-2640,2811,2721,-2767,2722,2721,-2813,2812,2767,-2723,2813,2684,-2768,2814,2724,-2724,2815,2768,-2725,2725,2784,-2742,2784,2725,-2769,2727,2816,-2724,2769,2684,-2814,2769,2817,-2727,2727,2726,-2819,2770,2728,-2820,2685,2770,-2772,2774,2729,-2772,2772,2820,-2729,2686,2821,-2773,2822,2730,-2774,2687,2729,-2775,2732,2774,-2824,2824,2773,-2733,2737,2730,-2823,2688,2778,-2776,2825,2735,-2734,2733,2776,-2827,2690,2779,-2778,2777,2827,-2735,2776,2734,-2829,2825,2778,-2736,2829,2736,-2694,2779,2736,-2830,2780,2737,-2831,2781,2692,-2781,2781,2831,-2739,2782,2738,-2833,2782,2833,-2740,2834,2740,-2740,2829,2693,-2784,2835,2783,-2741,2836,2785,-2743,2836,2742,-2785,2837,2744,-2744,2785,2838,-2744,2786,2839,-2746,2786,2746,-2838,2837,2746,-2745,2697,2788,-2788,2698,2787,-2790,2840,2788,-2746,2789,2787,-2748,2790,2747,-2842,2790,2792,-2749,2686,2791,-2822,2750,2842,-2750,2749,2842,-2792,2793,2701,-2793,2750,2793,-2844,2844,2751,-2795,2795,2751,-2846,2798,2703,-2796,2846,2752,-2797,2796,2704,-2848,2846,2794,-2753,2847,2704,-2776,2705,2798,-2798,1529,2754,-1556,2848,2754,-2800,2755,1360,-1348,1347,1354,-2709,2756,1354,-2801,2849,2709,-2801,2849,2801,-2710,2801,2760,-2711,2757,2850,-2759,2802,2758,-2851,2803,2711,-2803,2759,2804,-2852,2804,2712,-2804,2799,2759,-2849,2852,2805,-2761,2715,2805,-2807,2806,2762,-2762,2807,2717,-2809,2808,2762,-2854,2807,2854,-2764,2855,2764,-2764,2809,2764,-2857,2810,2720,-2810,2765,2810,-2858,2857,2766,-2766,2812,2721,-2812,2857,2811,-2767,2812,2813,-2768, +2814,2815,-2725,2814,2723,-2817,2858,2768,-2816,2784,2768,-2859,2727,2818,-2817,2813,2859,-2770,2817,2769,-2861,2726,2817,-2819,2728,2820,-2820,2770,2819,-2862,2861,2771,-2771,2774,2771,-2863,2820,2772,-2864,2772,2821,-2864,2822,2773,-2865,2865,2823,-2775,2866,2732,-2824,2824,2864,-2774,2824,2732,-2867,2737,2822,-2868,2847,2775,-2779,2868,2825,-2734,2869,2826,-2777,2868,2733,-2827,2779,2870,-2778,2827,2777,-2872,2827,2872,-2735,2873,2828,-2735,2776,2828,-2870,2825,2847,-2779,2829,2874,-2780,2737,2867,-2831,2781,2780,-2831,2831,2781,-2876,2832,2738,-2832,2782,2832,-2877,2782,2876,-2834,2833,2834,-2740,2835,2740,-2835,2783,2835,-2830,2836,2838,-2786,2858,2836,-2785,2877,2837,-2744,2743,2838,-2878,2786,2878,-2840,2840,2745,-2840,2878,2786,-2838,2879,2787,-2789,2880,2788,-2841,2787,2841,-2748,2790,2841,-2882,2792,2790,-2883,2821,2791,-2884,2750,2843,-2843,2883,2791,-2843,2884,2793,-2793,2793,2884,-2844,2844,2845,-2752,2794,2885,-2845,2846,2796,-2887,2847,2887,-2797,2794,2846,-2886,2848,1555,-2755,2800,1354,-1339,1338,2849,-2801,2801,2849,-2889,2801,2852,-2761,2802,2850,-2890,2803,2802,-2891,2891,2851,-2805,2759,2851,-2849,2803,2890,-2805,2805,2852,-2893,2805,2892,-2807,2806,2853,-2763,2807,2808,-2855,2808,2853,-2855,2763,2854,-2894,2764,2855,-2857,2763,2894,-2856,2809,2856,-2811,2810,2895,-2858,2812,2811,-2897,2857,2897,-2812,2812,2898,-2814,2814,2899,-2816,2814,2816,-2901,2858,2815,-2902,2902,2816,-2819,2813,2903,-2860,2860,2769,-2860,2860,2904,-2818,2905,2818,-2818,2819,2820,-2907,2861,2819,-2908,2862,2771,-2862,2865,2774,-2863,2820,2863,-2909,2821,2909,-2864,2822,2864,-2868,2823,2865,-2867,2910,2864,-2825,2911,2824,-2867,2868,2887,-2826,2912,2826,-2870,2868,2826,-2913,2870,2779,-2875,2913,2777,-2871,2913,2871,-2778,2827,2871,-2873,2914,2734,-2873,2873,2869,-2829,2914,2873,-2735,2847,2825,-2888,2829,2835,-2875,2915,2830,-2868,2875,2781,-2831,2875,2916,-2832,2832,2831,-2918,2918,2876,-2833,2919,2833,-2877,2919,2834,-2834,2834,2919,-2836,2836,2920,-2839,2836,2858,-2921,2877,2921,-2838,2922,2877,-2839,2923,2839,-2879,2840, +2839,-2925,2878,2837,-2922,2787,2879,-2842,2879,2788,-2881,2880,2840,-2925,2879,2881,-2842,2881,2882,-2791,2792,2882,-2885,2909,2821,-2884,2843,2925,-2843,2926,2883,-2843,2927,2843,-2885,2928,2844,-2886,2886,2796,-2930,2930,2846,-2887,2931,2796,-2888,2930,2885,-2847,2848,1582,-1556,1338,2932,-2850,2849,2932,-2889,2933,2801,-2889,2852,2801,-2934,2889,2934,-2803,2802,2934,-2891,2935,2851,-2892,2891,2804,-2937,2935,2848,-2852,2890,2936,-2805,2852,2937,-2893,2938,2806,-2893,2938,2853,-2807,2854,2853,-2940,2940,2893,-2855,2763,2893,-2895,2941,2856,-2856,2894,2941,-2856,2942,2810,-2857,2895,2810,-2944,2897,2857,-2896,2896,2811,-2945,2812,2896,-2899,2897,2945,-2812,2903,2813,-2899,2814,2900,-2900,2815,2899,-2902,2816,2902,-2901,2858,2901,-2947,2902,2818,-2948,2859,2903,-2949,2948,2860,-2860,2949,2904,-2861,2950,2817,-2905,2947,2818,-2906,2905,2817,-2952,2952,2906,-2821,2819,2906,-2908,2907,2862,-2862,2862,2953,-2866,2908,2863,-2955,2820,2908,-2953,2954,2863,-2910,2915,2867,-2865,2866,2865,-2956,2915,2864,-2911,2911,2910,-2825,2866,2956,-2912,2868,2931,-2888,2957,2912,-2870,2868,2912,-2932,2958,2870,-2875,2913,2870,-2959,2913,2959,-2872,2872,2871,-2960,2960,2914,-2873,2961,2869,-2874,2962,2873,-2915,2835,2963,-2875,2915,2964,-2831,2830,2964,-2876,2875,2964,-2917,2965,2831,-2917,2965,2917,-2832,2832,2917,-2919,2966,2876,-2919,2967,2919,-2877,2919,2967,-2836,2920,2968,-2839,2969,2920,-2859,2877,2970,-2922,2877,2922,-2971,2838,2971,-2923,2923,2924,-2840,2923,2878,-2973,2972,2878,-2922,2879,2880,-2974,2880,2924,-2975,2881,2879,-2976,2976,2882,-2882,2882,2927,-2885,2909,2883,-2927,2927,2925,-2844,2925,2926,-2843,2928,2885,-2978,2931,2929,-2797,2978,2886,-2930,2930,2886,-2979,2885,2930,-2980,2935,1582,-2849,2932,1338,-1311,2932,2980,-2889,2933,2888,-2982,2982,2852,-2934,2889,2983,-2935,2936,2890,-2935,2891,2984,-2936,2985,2891,-2937,2982,2937,-2853,2937,2986,-2893,2892,2986,-2939,2938,2939,-2854,2854,2939,-2941,2940,2987,-2894,2987,2894,-2894,2941,2942,-2857,2988,2941,-2895,2942,2943,-2811,2895,2943,-2990,2897,2895,-2991,2944,2811, +-2946,2896,2944,-2992,2898,2896,-2993,2945,2897,-2991,2992,2903,-2899,2900,2993,-2900,2901,2899,-2995,2902,2993,-2901,2946,2901,-2995,2969,2858,-2947,2902,2947,-2996,2992,2948,-2904,2949,2860,-2949,2996,2904,-2950,2950,2951,-2818,2950,2904,-2998,2947,2905,-2999,2905,2951,-2999,2999,2906,-2953,2999,2907,-2907,2862,2907,-2954,2955,2865,-2954,2954,3000,-2909,2952,2908,-3001,2954,2909,-3002,2866,2955,-2957,3002,2915,-2911,3003,2910,-2912,3004,2911,-2957,2912,2957,-2932,2961,2957,-2870,2958,2874,-2964,2958,3005,-2914,2913,3005,-2960,2872,2959,-3007,3007,2914,-2961,2960,2872,-3007,2962,2961,-2874,3007,2962,-2915,3008,2963,-2836,2915,3009,-2965,3010,2916,-2965,2916,3011,-2966,2917,2965,-3013,3013,2918,-2918,2967,2876,-2967,3013,2966,-2919,2835,2967,-3009,3014,2968,-2921,2971,2838,-2969,3015,2920,-2970,2972,2921,-2971,2922,3016,-2971,2971,3017,-2923,2923,3018,-2925,2972,3019,-2924,2973,2880,-3021,2975,2879,-2974,2924,3018,-2975,3020,2880,-2975,2976,2881,-2976,2976,3021,-2883,2927,2882,-3022,3022,2909,-2927,2927,3023,-2926,3022,2926,-2926,2885,2979,-2978,2931,2957,-2930,2978,2929,-3025,2930,2978,-3026,2930,3025,-2980,2935,1609,-1583,1309,2932,-1311,2932,3026,-2981,2888,2980,-2982,2981,3027,-2934,2933,3027,-2983,2983,3028,-2935,2936,2934,-3030,2985,2984,-2892,2935,2984,-1610,2985,2936,-3030,2937,2982,-3031,2986,2937,-3031,2938,2986,-2940,2940,2939,-3032,2940,2988,-2988,2987,2988,-2895,2941,3032,-2943,2988,3032,-2942,2943,2942,-3034,2943,3033,-2990,2989,2990,-2896,2944,2945,-3035,2991,2944,-3036,2991,2992,-2897,3034,2945,-2991,2994,2899,-2994,2902,3036,-2994,2946,2994,-3038,2946,3015,-2970,2947,2998,-2996,2995,3038,-2903,3039,2948,-2993,3039,2949,-2949,2997,2904,-2997,2996,2949,-3041,2950,2998,-2952,3041,2950,-2998,3042,2999,-2953,2907,2999,-2954,2955,2953,-3044,2954,3044,-3001,2952,3000,-3043,3001,2909,-3023,2954,3001,-3045,2955,3043,-2957,2915,3002,-3010,3003,3002,-2911,3003,2911,-3005,3004,2956,-3046,3024,2957,-2962,2958,2963,-3006,3005,3046,-2960,3046,3006,-2960,3007,2960,-3048,3006,3048,-2961,3049,2961,-2963,3050,2962,-3008, +3008,3051,-2964,2964,3009,-3053,3010,3053,-2917,3010,2964,-3055,2916,3055,-3012,3056,2965,-3012,3056,3012,-2966,3012,3013,-2918,3057,2967,-2967,3013,3057,-2967,3008,2967,-3052,2968,3014,-3059,3015,3014,-2921,3059,2971,-2969,2972,2970,-3020,2922,3017,-3017,3060,2970,-3017,3017,2971,-3060,3018,2923,-3020,3061,2973,-3021,3061,2975,-2974,3018,3062,-2975,3020,2974,-3064,3064,2976,-2976,3064,3021,-2977,2927,3021,-3066,2927,3065,-3024,3022,2925,-3024,2977,2979,-3067,3024,2929,-2958,3049,2978,-3025,3025,2978,-3068,2979,3025,-3067,3026,2932,-1310,3026,3068,-2981,2980,3068,-2982,3069,3027,-2982,2982,3027,-3071,3071,3028,-2984,3029,2934,-3029,3072,2984,-2986,1639,1609,-2985,2985,3029,-3073,2982,3070,-3031,3073,2986,-3031,3074,2939,-2987,3074,3031,-2940,3075,2940,-3032,2988,2940,-3076,3032,3033,-2943,3076,3032,-2989,3077,2989,-3034,2990,2989,-3079,3035,2944,-3035,2991,3035,-3080,2991,3039,-2993,3034,2990,-3079,2994,2993,-3081,3036,2902,-3039,3036,3080,-2994,3037,2994,-3081,3015,2946,-3038,2995,2998,-3082,3038,2995,-3083,3040,2949,-3040,2996,3083,-2998,2996,3040,-3085,3041,2998,-2951,3041,2997,-3086,2999,3042,-3087,2999,3087,-2954,2953,3087,-3044,3086,3000,-3045,3086,3042,-3001,3022,3088,-3002,3001,3089,-3045,2956,3043,-3091,3003,3009,-3003,3003,3004,-3092,2956,3092,-3046,3093,3004,-3046,3049,3024,-2962,3005,2963,-3095,3094,3046,-3006,3006,3046,-3049,3095,3047,-2961,3007,3047,-3051,3096,2960,-3049,3050,3049,-2963,2963,3051,-3095,3052,3009,-3098,2964,3052,-3055,3010,3054,-3054,3053,3055,-2917,3055,3098,-3012,3056,3011,-3099,3012,3056,-3100,3100,3013,-3013,3051,2967,-3058,3100,3057,-3014,3058,3014,-3102,2968,3058,-3060,3102,3014,-3016,3103,3019,-2971,3104,3016,-3018,3103,2970,-3061,3060,3016,-3106,3017,3059,-3105,3106,3018,-3020,3107,3061,-3021,3108,2975,-3062,3106,3062,-3019,2974,3062,-3110,3109,3063,-2975,3107,3020,-3064,3108,3064,-2976,3021,3064,-3066,3110,3023,-3066,3111,3022,-3024,3112,2977,-3067,3113,2978,-3050,3113,3067,-2979,3114,3025,-3068,3114,3066,-3026,3026,1309,-1285,3115,3068,-3027,3068,3069,-2982,3069,3070,-3028,3071, +3116,-3029,3117,3071,-2984,3029,3028,-3117,2984,3072,-1640,3029,3116,-3073,3030,3070,-3119,3073,3074,-2987,3073,3030,-3120,3120,3031,-3075,3075,3031,-3122,3076,2988,-3076,3032,3122,-3034,3076,3122,-3033,3077,3123,-2990,3033,3124,-3078,2989,3123,-3079,3034,3125,-3036,3035,3084,-3080,2991,3079,-3040,3034,3078,-3126,3038,3126,-3037,3126,3080,-3037,3127,3037,-3081,3015,3037,-3129,3041,3081,-2999,2995,3081,-3083,3082,3129,-3039,3040,3039,-3080,2996,3084,-3084,3083,3085,-2998,3084,3040,-3080,3085,3130,-3042,3087,2999,-3087,3087,3131,-3044,3044,3132,-3087,3022,3111,-3089,3088,3089,-3002,3133,3044,-3090,3043,3134,-3091,2956,3090,-3093,3009,3003,-3092,3093,3091,-3005,3135,3045,-3093,3093,3045,-3137,3094,3137,-3047,3046,3138,-3049,3139,3047,-3096,3095,2960,-3097,3050,3047,-3141,3096,3048,-3139,3049,3050,-3142,3051,3142,-3095,3009,3091,-3098,3143,3052,-3098,3144,3054,-3053,3054,3144,-3054,3053,3145,-3056,3055,3146,-3099,3147,3056,-3099,3147,3099,-3057,3012,3099,-3101,3051,3057,-3143,3057,3100,-3149,3102,3101,-3015,3058,3101,-3060,3102,3015,-3150,3019,3103,-3107,3104,3150,-3017,3103,3060,-3152,3016,3150,-3106,3151,3060,-3106,3059,3101,-3105,3152,3061,-3108,3152,3108,-3062,3153,3062,-3107,3153,3109,-3063,3154,3063,-3110,3154,3107,-3064,3064,3108,-3156,3064,3155,-3066,3111,3023,-3111,3110,3065,-3157,3157,3112,-3067,3113,3049,-3159,3113,3159,-3068,3160,3114,-3068,3161,3066,-3115,3115,3026,-1285,3162,3068,-3116,3069,3068,-3163,3163,3070,-3070,3071,1700,-3117,3117,1710,-3072,3072,1656,-1640,3116,1700,-3073,3118,3070,-3165,3119,3030,-3119,3074,3073,-3166,3166,3073,-3120,3120,3167,-3032,3165,3120,-3075,3167,3121,-3032,3121,3168,-3076,3076,3075,-3170,3122,3124,-3034,3169,3122,-3077,3170,3123,-3078,3124,3170,-3078,3123,3171,-3079,3172,3035,-3126,3035,3173,-3085,3125,3078,-3172,3174,3126,-3039,3127,3080,-3127,3037,3127,-3176,3128,3037,-3176,3128,3149,-3016,3041,3176,-3082,3082,3081,-3177,3082,3176,-3130,3174,3038,-3130,3177,3083,-3085,3178,3085,-3084,3178,3130,-3086,3130,3176,-3042,3087,3086,-3180,3087,3179,-3132,3043,3131,-3135,3133,3132, +-3045,3086,3132,-3180,3111,3180,-3089,3089,3088,-3182,3133,3089,-3182,3090,3134,-3183,3182,3092,-3091,3093,3136,-3092,3183,3045,-3136,3135,3092,-3185,3045,3183,-3137,3185,3137,-3095,3137,3186,-3047,3046,3186,-3139,3139,3140,-3048,3095,3187,-3140,3095,3096,-3188,3050,3140,-3142,3138,3188,-3097,3141,3158,-3050,3189,3094,-3143,3136,3097,-3092,3143,3144,-3053,3143,3097,-3191,3144,3191,-3054,3145,3053,-3192,3055,3145,-3147,3098,3146,-3193,3193,3147,-3099,3099,3147,-3195,3195,3100,-3100,3057,3148,-3143,3195,3148,-3101,3102,3196,-3102,3149,3196,-3103,3106,3103,-3198,3104,3198,-3151,3151,3197,-3104,3105,3150,-3200,3105,3200,-3152,3101,3198,-3105,3201,3152,-3108,3202,3108,-3153,3106,3197,-3154,3153,3154,-3110,3107,3154,-3204,3155,3108,-3203,3065,3155,-3157,3111,3110,-3181,3156,3204,-3111,3157,3066,-3162,3113,3158,-3160,3205,3067,-3160,3114,3160,-3207,3160,3067,-3206,3114,3206,-3162,3207,3115,-1285,3115,3208,-3163,3162,3163,-3070,3164,3070,-3164,3071,1710,-1701,3117,1714,-1711,3072,1700,-1657,3119,3118,-3165,3166,3165,-3074,3164,3166,-3120,3209,3167,-3121,3165,3209,-3121,3121,3167,-3211,3168,3121,-3212,3169,3075,-3169,3122,3212,-3125,3212,3122,-3170,3213,3123,-3171,3214,3170,-3125,3213,3171,-3124,3172,3173,-3036,3172,3125,-3216,3173,3177,-3085,3171,3216,-3126,3174,3217,-3127,3218,3127,-3127,3127,3218,-3176,3128,3175,-3220,3128,3220,-3150,3176,3221,-3130,3221,3174,-3130,3178,3083,-3178,3178,3222,-3131,3222,3176,-3131,3131,3179,-3224,3131,3223,-3135,3133,3224,-3133,3179,3132,-3226,3180,3181,-3089,3224,3133,-3182,3226,3182,-3135,3092,3182,-3227,3183,3135,-3228,3184,3092,-3227,3184,3228,-3136,3136,3183,-3230,3185,3230,-3138,3185,3094,-3190,3137,3231,-3187,3186,3231,-3139,3232,3140,-3140,3187,3233,-3140,3188,3187,-3097,3234,3141,-3141,3138,3231,-3189,3158,3141,-3236,3189,3142,-3149,3190,3097,-3137,3143,3191,-3145,3236,3143,-3191,3145,3191,-3238,3146,3145,-3239,3146,3239,-3193,3098,3192,-3194,3193,3240,-3148,3240,3194,-3148,3195,3099,-3195,3195,3189,-3149,3196,3241,-3102,3149,3220,-3197,3150,3198,-3243,3151,3243,-3198,3150,3242,-3200, +3105,3199,-3201,3200,3243,-3152,3101,3244,-3199,3201,3245,-3153,3107,3246,-3202,3152,3247,-3203,3197,3243,-3154,3154,3153,-3249,3203,3154,-3250,3107,3203,-3247,3250,3155,-3203,3250,3156,-3156,3204,3180,-3111,3250,3204,-3157,3251,3157,-3162,3158,3235,-3160,3205,3159,-3236,3206,3160,-3253,3253,3160,-3206,3161,3206,-3255,3115,3207,-3256,3256,3207,-1285,3115,3255,-3209,3257,3162,-3209,3258,3163,-3163,3164,3163,-3260,3166,3260,-3166,3164,3259,-3167,3209,3210,-3168,3165,3260,-3210,3210,3261,-3122,3121,3261,-3212,3168,3211,-3263,3263,3169,-3169,3212,3214,-3125,3212,3169,-3265,3265,3213,-3171,3170,3214,-3267,3267,3171,-3214,3172,3268,-3174,3215,3125,-3217,3172,3215,-3269,3177,3173,-3269,3267,3216,-3172,3221,3217,-3175,3217,3269,-3127,3218,3126,-3270,3270,3175,-3219,3271,3219,-3176,3219,3220,-3129,3272,3221,-3177,3177,3273,-3179,3178,3274,-3223,3222,3272,-3177,3223,3179,-3226,3226,3134,-3224,3132,3224,-3226,3275,3181,-3181,3224,3181,-3277,3135,3277,-3228,3183,3227,-3279,3226,3279,-3185,3184,3280,-3229,3135,3228,-3278,3183,3278,-3230,3190,3136,-3230,3185,3281,-3231,3137,3230,-3232,3189,3281,-3186,3232,3234,-3141,3139,3282,-3233,3233,3187,-3284,3139,3233,-3283,3284,3187,-3189,3234,3235,-3142,3231,3285,-3189,3143,3237,-3192,3143,3236,-3287,3190,3229,-3237,3287,3145,-3238,3145,3287,-3239,3238,3288,-3147,3146,3288,-3240,3239,3289,-3193,3193,3192,-3291,3240,3193,-3291,3240,3291,-3195,3291,3195,-3195,3189,3195,-3282,3241,3196,-3293,3244,3101,-3242,3196,3220,-3294,3198,3294,-3243,3242,3295,-3200,3200,3199,-3297,3200,3297,-3244,3244,3294,-3199,3201,3246,-3246,3152,3245,-3248,3202,3247,-3299,3153,3243,-3249,3154,3248,-3250,3203,3249,-3300,3300,3246,-3204,3202,3298,-3251,3275,3180,-3205,3301,3204,-3251,3302,3251,-3162,3235,3303,-3206,3160,3253,-3253,3254,3206,-3253,3253,3205,-3304,3161,3254,-3305,3207,3305,-3256,3305,3207,-3257,1284,1242,-3257,3255,3305,-3209,3162,3257,-3259,3305,3257,-3209,3258,3259,-3164,3306,3260,-3167,3306,3166,-3260,3209,3307,-3211,3308,3209,-3261,3261,3210,-3310,3211,3261,-3310,3262,3211,-3311,3262,3263,-3169,3264, +3169,-3264,3212,3311,-3215,3212,3264,-3312,3267,3213,-3266,3266,3265,-3171,3311,3266,-3215,3215,3216,-3313,3268,3215,-3314,3268,3313,-3178,3312,3216,-3268,3221,3314,-3218,3315,3269,-3218,3218,3269,-3317,3270,3271,-3176,3270,3218,-3317,3219,3271,-3318,3219,3317,-3221,3272,3314,-3222,3273,3177,-3319,3319,3178,-3274,3274,3178,-3320,3222,3274,-3273,3223,3225,-3321,3223,3320,-3227,3320,3225,-3225,3181,3275,-3277,3321,3224,-3277,3227,3277,-3323,3323,3278,-3228,3226,3324,-3280,3280,3184,-3280,3325,3228,-3281,3322,3277,-3229,3278,3236,-3230,3281,3326,-3231,3231,3230,-3327,3327,3234,-3233,3232,3282,-3329,3284,3283,-3188,3329,3233,-3284,3282,3233,-3329,3188,3330,-3285,3235,3234,-3304,3285,3231,-3327,3188,3285,-3331,3143,3286,-3238,3236,3331,-3287,3287,3237,-3333,3333,3238,-3288,3238,3333,-3289,3334,3239,-3289,3289,3239,-3336,3289,3290,-3193,3240,3290,-3337,3240,3336,-3292,3291,3281,-3196,3196,3293,-3293,3244,3241,-3293,3220,3337,-3294,3294,3338,-3243,3242,3338,-3296,3339,3199,-3296,3339,3296,-3200,3200,3296,-3298,3340,3243,-3298,3244,3341,-3295,3245,3246,-3301,3342,3247,-3246,3343,3298,-3248,3340,3248,-3244,3344,3249,-3249,3249,3344,-3300,3203,3299,-3346,3203,3345,-3301,3301,3250,-3299,3346,3275,-3205,3204,3301,-3347,3304,3302,-3162,3253,3347,-3253,3348,3254,-3253,3349,3253,-3304,3350,3304,-3255,3305,3256,-3352,1242,3352,-3257,3258,3257,-3354,3354,3257,-3306,3258,3355,-3260,3260,3306,-3357,3259,3355,-3307,3308,3307,-3210,3307,3309,-3211,3260,3357,-3309,3358,3211,-3310,3359,3310,-3212,3262,3310,-3361,3262,3361,-3264,3263,3362,-3265,3311,3264,-3363,3267,3265,-3364,3266,3364,-3266,3266,3311,-3366,3215,3312,-3367,3215,3366,-3314,3177,3313,-3319,3312,3267,-3364,3367,3217,-3315,3315,3316,-3270,3368,3315,-3218,3270,3369,-3272,3270,3316,-3370,3271,3370,-3318,3220,3317,-3338,3272,3371,-3315,3273,3318,-3373,3273,3372,-3320,3274,3319,-3374,3272,3274,-3372,3324,3226,-3321,3320,3224,-3322,3276,3275,-3375,3321,3276,-3376,3323,3227,-3323,3278,3323,-3237,3376,3279,-3325,3377,3280,-3280,3322,3228,-3326,3377,3325,-3281,3326,3281,-3379,3327,3303, +-3235,3232,3379,-3328,3232,3328,-3380,3380,3283,-3285,3328,3233,-3330,3329,3283,-3382,3330,3380,-3285,3285,3326,-3331,3237,3286,-3333,3323,3331,-3237,3382,3286,-3332,3333,3287,-3333,3288,3333,-3384,3334,3335,-3240,3384,3334,-3289,3385,3289,-3336,3385,3290,-3290,3385,3336,-3291,3291,3336,-3387,3281,3291,-3388,3293,3388,-3293,3341,3244,-3293,3293,3337,-3390,3338,3294,-3391,3338,3391,-3296,3392,3339,-3296,3393,3296,-3340,3296,3394,-3298,3297,3394,-3341,3294,3341,-3391,3342,3245,-3301,3343,3247,-3343,3343,3301,-3299,3395,3248,-3341,3344,3248,-3396,3344,3396,-3300,3299,3397,-3346,3398,3300,-3346,3275,3346,-3375,3399,3346,-3302,3302,3304,-3401,3253,3401,-3348,3348,3252,-3348,3350,3254,-3349,3401,3253,-3350,3303,3327,-3350,3304,3350,-3403,3352,3351,-3257,3354,3305,-3352,3352,1242,-1214,3403,3353,-3258,3258,3353,-3356,3403,3257,-3355,3404,3356,-3307,3260,3356,-3358,3355,3404,-3307,3308,3357,-3308,3309,3307,-3406,3358,3359,-3212,3406,3358,-3310,3407,3310,-3360,3360,3310,-3408,3360,3361,-3263,3263,3361,-3363,3408,3311,-3363,3363,3265,-3410,3365,3364,-3267,3364,3409,-3266,3365,3311,-3409,3410,3366,-3313,3366,3411,-3314,3411,3318,-3314,3410,3312,-3364,3368,3217,-3368,3314,3412,-3368,3315,3413,-3317,3414,3315,-3369,3369,3370,-3272,3369,3316,-3414,3317,3370,-3416,3317,3415,-3338,3371,3416,-3315,3372,3318,-3412,3372,3417,-3320,3417,3373,-3320,3371,3274,-3374,3320,3418,-3325,3320,3321,-3376,3375,3276,-3375,3322,3419,-3324,3377,3279,-3377,3376,3324,-3421,3322,3325,-3420,3421,3325,-3378,3378,3281,-3388,3378,3330,-3327,3422,3327,-3380,3328,3423,-3380,3380,3381,-3284,3328,3329,-3424,3329,3381,-3425,3330,3425,-3381,3426,3332,-3287,3323,3419,-3332,3427,3286,-3383,3382,3331,-3429,3333,3332,-3427,3383,3333,-3430,3383,3430,-3289,3431,3335,-3335,3431,3334,-3385,3430,3384,-3289,3432,3385,-3336,3336,3385,-3387,3387,3291,-3387,3389,3388,-3294,3292,3388,-3434,3341,3292,-3434,3434,3389,-3338,3390,3391,-3339,3295,3391,-3393,3392,3435,-3340,3393,3436,-3297,3393,3339,-3438,3394,3296,-3437,3438,3340,-3395,3341,3439,-3391,3398,3342,-3301,3440,3343,-3343, +3399,3301,-3344,3395,3340,-3439,3344,3395,-3442,3344,3442,-3397,3396,3443,-3300,3299,3443,-3398,3397,3444,-3346,3398,3345,-3445,3445,3374,-3347,3445,3346,-3400,3304,3446,-3401,3401,3447,-3348,3347,3448,-3349,3348,3449,-3351,3401,3349,-3423,3422,3349,-3328,3402,3450,-3305,3352,3451,-3352,3354,3351,-3453,3352,1213,-3452,3453,3353,-3404,3353,3454,-3356,3403,3354,-3453,3455,3356,-3405,3357,3356,-3457,3454,3404,-3356,3357,3405,-3308,3406,3309,-3406,3358,3457,-3360,3406,3458,-3359,3359,3459,-3408,3460,3360,-3408,3461,3361,-3361,3361,3462,-3363,3408,3362,-3464,3464,3363,-3410,3465,3364,-3366,3466,3409,-3365,3365,3408,-3468,3366,3410,-3469,3366,3468,-3412,3410,3363,-3465,3368,3367,-3415,3314,3416,-3413,3412,3414,-3368,3315,3469,-3414,3315,3414,-3470,3369,3413,-3371,3415,3370,-3471,3471,3337,-3416,3371,3472,-3417,3372,3411,-3474,3372,3474,-3418,3417,3472,-3374,3371,3373,-3473,3320,3375,-3419,3324,3418,-3421,3375,3374,-3446,3376,3475,-3378,3376,3420,-3477,3325,3477,-3420,3478,3325,-3422,3421,3377,-3476,3387,3479,-3379,3378,3480,-3331,3481,3422,-3380,3379,3423,-3482,3380,3482,-3382,3483,3423,-3330,3381,3484,-3425,3483,3329,-3425,3330,3480,-3426,3485,3380,-3426,3426,3286,-3428,3428,3331,-3420,3486,3427,-3383,3428,3487,-3383,3426,3488,-3334,3429,3333,-3489,3429,3489,-3384,3383,3489,-3431,3335,3431,-3491,3491,3431,-3385,3430,3491,-3385,3432,3386,-3386,3432,3335,-3491,3387,3386,-3480,3388,3389,-3493,3493,3433,-3389,3439,3341,-3434,3434,3494,-3390,3337,3471,-3435,3495,3391,-3391,3392,3391,-3497,3392,3496,-3436,3339,3435,-3498,3436,3393,-3438,3437,3339,-3498,3438,3394,-3437,3498,3390,-3440,3440,3342,-3399,3440,3499,-3344,3343,3500,-3400,3438,3441,-3396,3441,3442,-3345,3501,3396,-3443,3443,3396,-3502,3502,3397,-3444,3503,3444,-3398,3398,3444,-3505,3399,3505,-3446,3450,3446,-3305,3401,3422,-3448,3347,3447,-3449,3449,3348,-3449,3449,3506,-3351,3450,3402,-3508,3508,3351,-3452,3509,3452,-3352,1213,1177,-3452,3453,3454,-3354,3453,3403,-3511,3403,3452,-3511,3455,3511,-3357,3455,3404,-3455,3512,3456,-3357,3513,3357,-3457,3357,3514,-3406,3405, +3514,-3407,3358,3458,-3458,3457,3515,-3360,3406,3516,-3459,3515,3459,-3360,3407,3459,-3518,3460,3518,-3361,3407,3517,-3461,3461,3519,-3362,3518,3461,-3361,3462,3361,-3520,3462,3463,-3363,3467,3408,-3464,3520,3464,-3410,3465,3466,-3365,3365,3467,-3466,3520,3409,-3467,3410,3521,-3469,3473,3411,-3469,3410,3464,-3523,3523,3412,-3417,3414,3412,-3525,3469,3525,-3414,3414,3526,-3470,3525,3370,-3414,3525,3470,-3371,3415,3470,-3528,3471,3415,-3528,3528,3416,-3473,3473,3529,-3373,3372,3529,-3475,3474,3530,-3418,3417,3530,-3473,3418,3375,-3446,3420,3418,-3506,3376,3531,-3476,3476,3420,-3533,3376,3476,-3532,3325,3478,-3478,3419,3477,-3479,3478,3421,-3534,3421,3475,-3535,3479,3535,-3379,3378,3535,-3481,3536,3422,-3482,3423,3536,-3482,3380,3485,-3483,3381,3482,-3485,3483,3537,-3424,3424,3484,-3539,3483,3424,-3540,3480,3540,-3426,3485,3425,-3541,3541,3426,-3428,3419,3478,-3429,3486,3541,-3428,3486,3382,-3488,3428,3542,-3488,3426,3541,-3489,3429,3488,-3490,3430,3489,-3544,3544,3490,-3432,3544,3431,-3492,3545,3491,-3431,3386,3432,-3547,3490,3547,-3433,3386,3548,-3480,3494,3492,-3390,3388,3492,-3550,3439,3433,-3494,3388,3549,-3494,3434,3471,-3495,3495,3550,-3392,3495,3390,-3499,3391,3550,-3497,3496,3551,-3436,3552,3497,-3436,3436,3437,-3554,3437,3497,-3555,3438,3436,-3442,3498,3439,-3556,3398,3504,-3441,3556,3499,-3441,3343,3499,-3501,3399,3500,-3558,3441,3558,-3443,3501,3442,-3560,3501,3560,-3444,3502,3503,-3398,3502,3443,-3562,3444,3503,-3563,3444,3562,-3505,3399,3557,-3506,3418,3445,-3506,3446,3450,-3508,3422,3536,-3448,3448,3447,-3564,3564,3449,-3449,3449,3564,-3507,3508,3509,-3352,3451,1177,-3509,3509,3565,-3453,3453,3566,-3455,3453,3510,-3567,3510,3452,-3566,3455,3567,-3512,3512,3356,-3512,3455,3454,-3568,3456,3512,-3569,3357,3513,-3515,3456,3569,-3514,3406,3514,-3570,3570,3457,-3459,3457,3571,-3516,3406,3569,-3517,3458,3516,-3571,3515,3572,-3460,3459,3572,-3518,3518,3460,-3574,3517,3574,-3461,3518,3519,-3462,3462,3519,-3576,3462,3575,-3464,3463,3575,-3468,3520,3576,-3465,3577,3466,-3466,3467,3578,-3466,3520,3466,-3578,3410,3522, +-3522,3468,3521,-3580,3468,3579,-3474,3580,3522,-3465,3523,3524,-3413,3523,3416,-3582,3414,3524,-3583,3469,3526,-3526,3414,3582,-3527,3470,3525,-3527,3527,3470,-3584,3527,3584,-3472,3416,3528,-3582,3528,3472,-3531,3473,3579,-3530,3529,3585,-3475,3474,3586,-3531,3420,3505,-3533,3475,3531,-3588,3532,3588,-3477,3531,3476,-3589,3421,3534,-3534,3542,3478,-3534,3587,3534,-3476,3479,3589,-3536,3480,3535,-3591,3423,3591,-3537,3482,3485,-3593,3592,3484,-3483,3483,3539,-3538,3591,3423,-3538,3484,3593,-3539,3539,3424,-3539,3590,3540,-3481,3592,3485,-3541,3428,3478,-3543,3594,3541,-3487,3486,3487,-3596,3596,3487,-3543,3541,3594,-3489,3489,3488,-3598,3543,3489,-3598,3430,3543,-3546,3490,3544,-3548,3598,3544,-3492,3598,3491,-3546,3599,3546,-3433,3546,3548,-3387,3600,3432,-3548,3548,3589,-3480,3494,3601,-3493,3492,3602,-3550,3555,3439,-3494,3493,3549,-3604,3584,3494,-3472,3604,3550,-3496,3498,3605,-3496,3496,3550,-3607,3496,3607,-3552,3552,3435,-3552,3497,3552,-3609,3554,3553,-3438,3553,3558,-3437,3554,3497,-3609,3436,3558,-3442,3555,3605,-3499,3440,3504,-3610,3556,3500,-3500,3610,3556,-3441,3500,3611,-3558,3559,3442,-3559,3559,3612,-3502,3501,3612,-3561,3560,3613,-3444,3503,3502,-3615,3613,3561,-3444,3561,3615,-3503,3503,3614,-3563,3609,3504,-3563,3505,3557,-3533,3616,3447,-3537,3616,3563,-3448,3564,3448,-3564,3506,3564,-3618,3618,3509,-3509,3508,1177,-3620,3509,3620,-3566,3566,3567,-3455,3566,3510,-3622,3510,3565,-3623,3623,3511,-3568,3512,3511,-3625,3512,3625,-3569,3568,3569,-3457,3513,3569,-3515,3626,3457,-3571,3457,3626,-3572,3627,3515,-3572,3569,3628,-3517,3570,3516,-3630,3515,3627,-3573,3572,3630,-3518,3573,3460,-3632,3518,3573,-3633,3574,3517,-3631,3460,3574,-3632,3519,3518,-3633,3575,3519,-3633,3575,3578,-3468,3633,3576,-3521,3464,3576,-3581,3577,3465,-3579,3577,3633,-3521,3521,3522,-3635,3579,3521,-3636,3580,3634,-3523,3523,3636,-3525,3637,3523,-3582,3638,3582,-3525,3582,3583,-3527,3583,3470,-3527,3639,3527,-3584,3640,3584,-3528,3581,3528,-3638,3528,3530,-3638,3529,3579,-3586,3474,3585,-3587,3530,3586,-3638,3587,3531,-3642, +3588,3532,-3643,3531,3588,-3642,3643,3533,-3535,3596,3542,-3534,3534,3587,-3642,3535,3589,-3591,3644,3536,-3592,3484,3592,-3646,3539,3646,-3538,3647,3591,-3538,3484,3648,-3594,3646,3538,-3594,3646,3539,-3539,3590,3649,-3541,3592,3540,-3650,3594,3486,-3651,3596,3595,-3488,3595,3650,-3487,3488,3594,-3598,3543,3597,-3652,3545,3543,-3653,3653,3547,-3545,3653,3544,-3599,3598,3545,-3655,3599,3655,-3547,3600,3599,-3433,3546,3655,-3549,3547,3656,-3601,3589,3548,-3656,3494,3657,-3602,3492,3601,-3603,3658,3549,-3603,3659,3555,-3494,3658,3603,-3550,3603,3660,-3494,3494,3584,-3658,3550,3604,-3607,3604,3495,-3606,3607,3496,-3607,3551,3607,-3553,3608,3552,-3662,3553,3554,-3609,3558,3553,-3609,3555,3659,-3606,3610,3440,-3610,3500,3556,-3612,3610,3662,-3557,3642,3557,-3612,3558,3608,-3560,3559,3663,-3613,3612,3664,-3561,3665,3613,-3561,3614,3502,-3667,3561,3613,-3668,3561,3668,-3616,3669,3502,-3616,3562,3614,-3610,3642,3532,-3558,3644,3616,-3537,3563,3616,-3671,3564,3563,-3671,3617,3564,-3672,3618,3620,-3510,3618,3508,-3620,3619,1177,-1137,3672,3565,-3621,3566,3623,-3568,3621,3510,-3623,3566,3621,-3624,3672,3622,-3566,3623,3624,-3512,3512,3624,-3626,3568,3625,-3674,3628,3569,-3569,3674,3626,-3571,3675,3571,-3627,3675,3627,-3572,3628,3629,-3517,3674,3570,-3630,3676,3572,-3628,3572,3677,-3631,3678,3573,-3632,3678,3632,-3574,3574,3630,-3680,3679,3631,-3575,3575,3632,-3681,3578,3575,-3681,3633,3681,-3577,3580,3576,-3682,3577,3578,-3683,3577,3682,-3634,3634,3635,-3522,3683,3579,-3636,3634,3580,-3685,3636,3523,-3686,3636,3686,-3525,3637,3685,-3524,3687,3582,-3639,3638,3524,-3687,3582,3688,-3584,3639,3640,-3528,3688,3639,-3584,3689,3584,-3641,3585,3579,-3684,3690,3586,-3586,3637,3586,-3692,3692,3588,-3643,3641,3588,-3694,3643,3694,-3534,3534,3695,-3644,3694,3596,-3534,3534,3641,-3696,3649,3590,-3590,3644,3591,-3697,3697,3645,-3593,3645,3648,-3485,3647,3537,-3647,3647,3696,-3592,3648,3698,-3594,3646,3593,-3700,3592,3649,-3698,3700,3594,-3651,3595,3596,-3702,3702,3650,-3596,3594,3651,-3598,3703,3543,-3652,3703,3652,-3544,3652,3654,-3546,3547, +3653,-3657,3653,3598,-3705,3654,3704,-3599,3599,3705,-3656,3705,3599,-3601,3706,3600,-3657,3589,3655,-3708,3601,3657,-3709,3601,3708,-3603,3658,3602,-3710,3659,3493,-3661,3658,3709,-3604,3603,3710,-3661,3689,3657,-3585,3604,3711,-3607,3604,3605,-3660,3712,3607,-3607,3712,3552,-3608,3552,3713,-3662,3661,3663,-3609,3610,3609,-3663,3556,3714,-3612,3556,3662,-3715,3611,3715,-3643,3663,3559,-3609,3663,3716,-3613,3664,3612,-3717,3665,3560,-3665,3613,3665,-3668,3502,3669,-3667,3666,3609,-3615,3717,3561,-3668,3668,3561,-3718,3718,3615,-3669,3615,3719,-3670,3644,3670,-3617,3564,3670,-3672,3620,3618,-3721,3618,3619,-3722,3721,3619,-1137,3672,3620,-3723,3723,3621,-3623,3621,3723,-3624,3672,3724,-3623,3725,3624,-3624,3624,3725,-3626,3726,3673,-3626,3568,3673,-3629,3674,3675,-3627,3676,3627,-3676,3673,3629,-3629,3629,3727,-3675,3676,3677,-3573,3630,3677,-3729,3729,3678,-3632,3678,3730,-3633,3679,3630,-3732,3729,3631,-3680,3680,3632,-3731,3680,3682,-3579,3732,3681,-3634,3580,3681,-3734,3682,3734,-3634,3634,3735,-3636,3736,3683,-3636,3684,3580,-3734,3737,3634,-3685,3738,3636,-3686,3738,3686,-3637,3685,3637,-3740,3687,3740,-3583,3687,3638,-3742,3638,3686,-3743,3582,3740,-3689,3743,3640,-3640,3688,3743,-3640,3689,3640,-3745,3745,3585,-3684,3586,3690,-3692,3745,3690,-3586,3637,3691,-3740,3693,3588,-3693,3642,3715,-3693,3641,3693,-3696,3643,3746,-3695,3643,3695,-3748,3701,3596,-3695,3589,3707,-3650,3748,3644,-3697,3697,3749,-3646,3645,3749,-3649,3699,3647,-3647,3647,3750,-3697,3648,3751,-3699,3698,3752,-3594,3752,3699,-3594,3753,3697,-3650,3700,3651,-3595,3700,3650,-3703,3701,3702,-3596,3754,3703,-3652,3755,3652,-3704,3652,3756,-3655,3653,3757,-3657,3653,3704,-3758,3704,3654,-3757,3705,3758,-3656,3600,3706,-3706,3706,3656,-3760,3753,3707,-3656,3689,3708,-3658,3602,3708,-3690,3602,3760,-3710,3659,3660,-3762,3709,3710,-3604,3762,3660,-3711,3604,3763,-3712,3711,3764,-3607,3659,3763,-3605,3712,3606,-3765,3552,3712,-3714,3661,3713,-3766,3663,3661,-3767,3609,3767,-3663,3611,3714,-3716,3768,3714,-3663,3663,3766,-3717,3716,3769,-3665,3665,3664, +-3771,3770,3667,-3666,3669,3771,-3667,3767,3609,-3667,3717,3667,-3773,3773,3668,-3718,3718,3774,-3616,3718,3668,-3774,3615,3774,-3720,3669,3719,-3772,3748,3670,-3645,3775,3671,-3671,3618,3721,-3721,3620,3720,-3723,1117,3721,-1137,3672,3722,-3777,3723,3622,-3725,3623,3723,-3726,3776,3724,-3673,3725,3726,-3626,3726,3727,-3674,3777,3675,-3675,3778,3676,-3676,3673,3727,-3630,3777,3674,-3728,3676,3779,-3678,3728,3677,-3781,3728,3731,-3631,3729,3781,-3679,3730,3678,-3783,3783,3679,-3732,3729,3679,-3785,3680,3730,-3735,3680,3734,-3683,3732,3785,-3682,3633,3734,-3733,3681,3785,-3734,3737,3735,-3635,3735,3736,-3636,3736,3745,-3684,3684,3733,-3738,3685,3739,-3739,3738,3786,-3687,3687,3787,-3741,3741,3638,-3789,3687,3741,-3788,3786,3742,-3687,3638,3742,-3789,3740,3789,-3689,3744,3640,-3744,3789,3743,-3689,3744,3790,-3690,3739,3691,-3691,3745,3791,-3691,3792,3693,-3693,3793,3692,-3716,3693,3747,-3696,3747,3746,-3644,3694,3746,-3702,3753,3649,-3708,3794,3748,-3697,3751,3749,-3698,3751,3648,-3750,3699,3795,-3648,3750,3647,-3796,3794,3696,-3751,3796,3698,-3752,3796,3752,-3699,3797,3699,-3753,3798,3697,-3754,3700,3754,-3652,3700,3702,-3800,3701,3799,-3703,3800,3703,-3755,3652,3755,-3757,3755,3703,-3801,3759,3656,-3758,3705,3801,-3759,3655,3758,-3803,3801,3705,-3707,3753,3655,-3803,3760,3602,-3690,3710,3709,-3761,3660,3803,-3762,3659,3761,-3805,3762,3805,-3661,3762,3710,-3807,3804,3711,-3764,3711,3807,-3765,3659,3804,-3764,3808,3712,-3765,3713,3712,-3809,3713,3809,-3766,3766,3661,-3766,3768,3662,-3768,3810,3715,-3715,3810,3714,-3769,3716,3766,-3812,3716,3812,-3770,3664,3769,-3771,3770,3772,-3668,3771,3813,-3667,3666,3813,-3768,3772,3814,-3718,3773,3717,-3816,3718,3816,-3775,3773,3816,-3719,3719,3774,-3818,3719,3817,-3772,3748,3775,-3671,3775,3818,-3672,3720,3721,-3820,3720,3819,-3723,1117,3820,-3722,3722,3819,-3777,3821,3723,-3725,3822,3725,-3724,3776,3823,-3725,3726,3725,-3823,3727,3726,-3825,3778,3675,-3778,3778,3825,-3677,3727,3826,-3778,3676,3825,-3780,3779,3827,-3678,3780,3677,-3829,3728,3780,-3732,3829,3781,-3730,3782,3678,-3782, +3730,3782,-3735,3783,3784,-3680,3830,3783,-3732,3729,3784,-3832,3832,3785,-3733,3832,3732,-3735,3833,3733,-3786,3737,3834,-3736,3736,3735,-3835,3834,3745,-3737,3737,3733,-3834,3835,3738,-3740,3786,3738,-3837,3837,3740,-3788,3741,3788,-3839,3839,3787,-3742,3840,3742,-3787,3788,3742,-3842,3837,3789,-3741,3842,3744,-3744,3843,3743,-3790,3744,3844,-3791,3845,3689,-3791,3791,3739,-3691,3791,3745,-3847,3693,3792,-3848,3792,3692,-3849,3692,3793,-3849,3793,3715,-3811,3847,3747,-3694,3849,3746,-3748,3850,3701,-3747,3794,3775,-3749,3751,3697,-3799,3797,3795,-3700,3751,3851,-3797,3796,3852,-3753,3852,3797,-3753,3798,3753,-3854,3700,3854,-3755,3854,3700,-3800,3854,3799,-3702,3758,3801,-3856,3758,3853,-3803,3802,3853,-3754,3760,3689,-3846,3806,3710,-3761,3660,3856,-3804,3804,3761,-3804,3857,3805,-3763,3660,3805,-3857,3806,3858,-3763,3804,3807,-3712,3764,3807,-3860,3808,3764,-3860,3713,3808,-3861,3713,3860,-3810,3861,3765,-3810,3766,3765,-3863,3768,3767,-3864,3863,3810,-3769,3766,3864,-3812,3716,3811,-3813,3865,3769,-3813,3770,3769,-3866,3865,3772,-3771,3813,3771,-3867,3813,3867,-3768,3772,3868,-3815,3815,3717,-3815,3869,3773,-3816,3816,3870,-3775,3773,3869,-3817,3774,3871,-3818,3817,3872,-3772,3775,3794,-3819,3820,3819,-3722,3820,1117,-1072,3776,3819,-3874,3821,3822,-3724,3821,3724,-3824,3874,3823,-3777,3875,3726,-3823,3824,3726,-3876,3727,3824,-3827,3777,3876,-3779,3778,3877,-3826,3826,3878,-3778,3825,3827,-3780,3827,3879,-3678,3828,3677,-3880,3780,3828,-3881,3881,3731,-3781,3829,3882,-3782,3831,3829,-3730,3781,3882,-3783,3832,3734,-3783,3784,3783,-3832,3830,3883,-3784,3731,3881,-3831,3832,3884,-3786,3884,3833,-3786,3885,3834,-3738,3834,3846,-3746,3833,3886,-3738,3836,3738,-3836,3887,3835,-3740,3836,3840,-3787,3787,3888,-3838,3788,3841,-3839,3889,3741,-3839,3787,3839,-3889,3889,3839,-3742,3840,3841,-3743,3837,3843,-3790,3744,3842,-3845,3842,3743,-3891,3890,3743,-3844,3790,3844,-3846,3791,3887,-3740,3791,3846,-3892,3792,3892,-3848,3893,3792,-3849,3848,3793,-3895,3793,3810,-3895,3747,3847,-3850,3849,3895,-3747,3895,3850,-3747,3751, +3798,-3852,3796,3851,-3853,3855,3798,-3854,3853,3758,-3856,3845,3896,-3761,3896,3806,-3761,3856,3897,-3804,3804,3803,-3899,3857,3899,-3806,3857,3762,-3859,3805,3899,-3857,3896,3858,-3807,3804,3898,-3808,3807,3900,-3860,3901,3808,-3860,3860,3808,-3902,3902,3809,-3861,3861,3862,-3766,3903,3861,-3810,3766,3862,-3865,3867,3863,-3768,3863,3894,-3811,3811,3864,-3905,3812,3811,-3905,3865,3812,-3906,3865,3868,-3773,3872,3866,-3772,3867,3813,-3867,3868,3906,-3815,3869,3815,-3815,3816,3907,-3871,3774,3870,-3872,3869,3908,-3817,3817,3871,-3910,3817,3909,-3873,3820,3910,-3820,3820,1071,-3911,3819,3911,-3874,3776,3873,-3875,3875,3822,-3822,3821,3823,-3913,3874,3912,-3824,3875,3913,-3825,3824,3878,-3827,3777,3914,-3877,3778,3876,-3878,3877,3915,-3826,3777,3878,-3915,3825,3915,-3828,3879,3827,-3916,3916,3828,-3880,3917,3880,-3829,3780,3880,-3919,3881,3780,-3920,3920,3882,-3830,3920,3829,-3832,3832,3782,-3883,3831,3783,-3884,3883,3830,-3922,3881,3922,-3831,3884,3832,-3924,3884,3924,-3834,3834,3885,-3847,3737,3886,-3886,3833,3925,-3887,3836,3835,-3888,3926,3840,-3837,3837,3888,-3928,3928,3838,-3842,3928,3889,-3839,3929,3888,-3840,3929,3839,-3890,3926,3841,-3841,3837,3927,-3844,3844,3842,-3931,3931,3842,-3891,3843,3927,-3891,3932,3845,-3845,3887,3791,-3934,3891,3846,-3886,3891,3933,-3792,3892,3792,-3894,3934,3847,-3893,3893,3848,-3936,3863,3848,-3895,3934,3849,-3848,3934,3895,-3850,3895,3936,-3851,3851,3798,-3938,3798,3855,-3938,3858,3896,-3846,3856,3899,-3898,3897,3898,-3804,3899,3857,-3939,3858,3939,-3858,3900,3807,-3899,3859,3900,-3941,3859,3940,-3902,3902,3860,-3902,3941,3809,-3903,3862,3861,-3943,3903,3942,-3862,3941,3903,-3810,3943,3864,-3863,3944,3863,-3868,3864,3945,-3905,3812,3904,-3947,3812,3946,-3906,3865,3905,-3948,3865,3947,-3869,3948,3866,-3873,3944,3867,-3867,3949,3906,-3869,3814,3906,-3951,3869,3814,-3951,3907,3816,-3909,3907,3951,-3871,3952,3871,-3871,3907,3908,-3870,3872,3909,-3954,3819,3910,-3912,1001,3910,-1072,3954,3873,-3912,3954,3874,-3874,3955,3875,-3822,3821,3912,-3956,3954,3912,-3875,3875,3955,-3914,3824,3913, +-3879,3914,3956,-3877,3877,3876,-3957,3957,3915,-3878,3956,3914,-3879,3916,3879,-3916,3917,3828,-3917,3917,3958,-3881,3959,3918,-3881,3780,3918,-3920,3881,3919,-3923,3923,3882,-3921,3960,3920,-3832,3923,3832,-3883,3831,3883,-3962,3830,3962,-3922,3921,3961,-3884,3922,3963,-3831,3923,3964,-3885,3964,3924,-3885,3925,3833,-3925,3885,3886,-3966,3886,3925,-3966,3887,3966,-3837,3926,3836,-3968,3927,3888,-3969,3841,3926,-3929,3928,3969,-3890,3929,3968,-3889,3969,3929,-3890,3970,3930,-3843,3971,3844,-3931,3931,3970,-3843,3931,3890,-3973,3890,3927,-3973,3845,3932,-3859,3932,3844,-3974,3974,3887,-3934,3885,3965,-3892,3891,3975,-3934,3976,3892,-3894,3977,3934,-3893,3863,3935,-3849,3935,3978,-3894,3895,3934,-3937,3897,3899,-3980,3897,3980,-3899,3857,3939,-3939,3899,3938,-3982,3858,3932,-3940,3900,3898,-3981,3982,3940,-3901,3901,3940,-3984,3983,3902,-3902,3941,3902,-3985,3942,3943,-3863,3942,3903,-3986,3941,3984,-3904,3864,3943,-3946,3863,3944,-3936,3946,3904,-3946,3946,3986,-3906,3947,3905,-3988,3949,3868,-3948,3948,3944,-3867,3872,3953,-3949,3906,3949,-3951,3950,3988,-3870,3907,3989,-3952,3952,3870,-3952,3988,3907,-3870,3910,3990,-3912,3910,1001,-3991,3991,3954,-3912,3912,3992,-3956,3954,3992,-3913,3955,3993,-3914,3913,3956,-3879,3877,3956,-3958,3994,3915,-3958,3916,3915,-3996,3916,3995,-3918,3917,3996,-3959,3958,3959,-3881,3959,3997,-3919,3997,3919,-3919,3998,3922,-3920,3999,3923,-3921,3920,3960,-4000,3831,4000,-3961,4000,3831,-3962,3830,3963,-3963,3921,3962,-4002,3921,4000,-3962,3963,3922,-4003,4003,3964,-3924,3924,3964,-4005,3924,4004,-3926,3925,4005,-3966,3966,3887,-3975,3836,3966,-3968,3926,3967,-4007,3968,4007,-3928,3926,3969,-3929,4008,3968,-3930,3969,4008,-3930,3970,3971,-3931,3971,4009,-3845,3931,3972,-3971,4010,3972,-3928,3844,4009,-3974,3973,3939,-3933,3974,3933,-3976,3965,4011,-3892,4012,3975,-3892,3977,3892,-3977,3978,3976,-3894,3935,3944,-3979,3981,3979,-3900,3897,3979,-3981,4013,3938,-3940,3938,4014,-3982,3982,3900,-3981,3940,3982,-4016,3940,4016,-3984,3983,3984,-3903,3942,4017,-3944,4018,3985,-3904,3942,3985,-4018, +4018,3903,-3985,3945,3943,-4020,3945,4020,-3947,3946,4020,-3987,3905,3986,-3988,3947,3987,-3950,3944,3948,-4022,3948,3953,-4023,3950,3949,-4024,4023,3988,-3951,3907,3988,-3990,3911,3990,-3992,1001,948,-3991,3991,4024,-3955,4025,3955,-3993,3954,4024,-3993,3955,4025,-3994,3913,3993,-4027,3913,4026,-3957,3956,4026,-3958,3994,3995,-3916,4027,3994,-3958,4028,3917,-3996,3917,4028,-3997,3996,4029,-3959,3958,4029,-3960,3959,4030,-3998,3997,3998,-3920,3998,4002,-3923,3923,3999,-4032,3999,3960,-4033,4032,3960,-4001,3962,3963,-4034,3962,4034,-4002,4001,4035,-3922,4000,3921,-4036,4002,4036,-3964,4031,3964,-4004,3923,4031,-4004,4031,4004,-3965,3925,4004,-4006,4005,4037,-3966,3966,3974,-4039,3966,4039,-3968,3967,4039,-4007,4040,3926,-4007,3968,4041,-4008,4010,3927,-4008,4042,3969,-3927,4008,4043,-3969,4042,4008,-3970,3971,3970,-4045,4009,3971,-4046,3972,4046,-3971,4047,3972,-4011,3973,4009,-4049,3973,4049,-3940,3975,4038,-3975,4037,4011,-3966,4012,3891,-4012,4012,4050,-3976,3977,3976,-4052,3976,3978,-4053,3944,4021,-3979,4053,3979,-3982,3979,4054,-3981,4013,4055,-3939,4013,3939,-4050,4055,4014,-3939,4053,3981,-4015,3982,3980,-4055,4054,4015,-3983,3940,4015,-4017,3984,3983,-4017,4056,3943,-4018,4018,4057,-3986,4058,4017,-3986,3984,4059,-4019,4056,4019,-3944,4019,4020,-3946,4060,3986,-4021,3987,3986,-4062,3987,4061,-3950,3948,4022,-4022,4061,4023,-3950,4023,4062,-3989,3990,948,-3992,3991,4063,-4025,3992,4024,-4026,3993,4025,-4065,3993,4064,-4027,3957,4026,-4028,4065,3995,-3995,4027,4066,-3995,4028,3995,-4066,4028,4067,-3997,4068,4029,-3997,3959,4029,-4070,4069,4030,-3960,4030,4070,-3998,4002,3998,-3998,4032,4031,-4000,4000,4071,-4033,4036,4033,-3964,3962,4033,-4035,4072,4001,-4035,4035,4001,-4074,4000,4035,-4072,4074,4036,-4003,4005,4004,-4032,4031,4037,-4006,3966,4038,-4040,4006,4039,-4076,4042,3926,-4041,4040,4006,-4077,4041,3968,-4044,4041,4077,-4008,4007,4077,-4011,4078,4043,-4009,4078,4008,-4043,3970,4046,-4045,3971,4079,-4046,4009,4045,-4049,4047,4046,-3973,3973,4048,-4050,3975,4080,-4039,4011,4037,-4082,4012,4011,-4051,3975, +4050,-4081,4052,4051,-3977,3978,4021,-4053,4053,4082,-3980,3979,4082,-4055,4013,4083,-4056,4084,4013,-4050,4055,4085,-4015,4086,4015,-4055,4016,4015,-4088,3984,4016,-4060,4056,4017,-4059,4059,4057,-4019,4088,3985,-4058,4058,3985,-4090,4056,4090,-4020,4060,4020,-4020,4091,3986,-4061,3986,4091,-4062,4021,4022,-4053,4092,4023,-4062,4092,4062,-4024,860,3991,-949,860,4063,-3992,4063,4093,-4025,4025,4024,-4095,4094,4064,-4026,4026,4064,-4096,4026,4096,-4028,4066,4065,-3995,4096,4066,-4028,4028,4065,-4068,4068,3996,-4068,4029,4068,-4098,4029,4097,-4070,4069,4070,-4031,4074,3997,-4071,4074,4002,-3998,4098,4031,-4033,4071,4098,-4033,4033,4036,-4100,4033,4099,-4035,4073,4001,-4073,4072,4034,-4101,4073,4101,-4036,4102,4071,-4036,4074,4103,-4037,4098,4037,-4032,4104,4039,-4039,4075,4039,-4105,4075,4105,-4007,4042,4040,-4079,4076,4006,-4106,4078,4040,-4077,4041,4043,-4078,4045,4079,-4049,4084,4049,-4049,4038,4080,-4105,4037,4106,-4082,4050,4011,-4082,4107,4080,-4051,4086,4054,-4083,4013,4108,-4084,4085,4055,-4084,4013,4084,-4109,4015,4086,-4110,4015,4109,-4088,4016,4087,-4060,4058,4110,-4057,4059,4111,-4058,4088,4089,-3986,4111,4088,-4058,4089,4112,-4059,4056,4110,-4091,4019,4090,-4114,4019,4113,-4061,4113,4091,-4061,4092,4061,-4092,4114,4062,-4093,860,800,-4064,4093,4063,-4116,4116,4024,-4094,4116,4094,-4025,4094,4117,-4065,4064,4117,-4096,4095,4096,-4027,4066,4118,-4066,4119,4066,-4097,4065,4118,-4068,4068,4067,-4119,4068,4120,-4098,4069,4097,-4122,4070,4069,-4122,4122,4074,-4071,4071,4123,-4099,4099,4036,-4104,4099,4100,-4035,4073,4072,-4125,4100,4124,-4073,4125,4101,-4074,4102,4035,-4102,4102,4123,-4072,4074,4122,-4104,4037,4098,-4127,4075,4104,-4128,4075,4128,-4106,4079,4084,-4049,4104,4080,-4128,4126,4106,-4038,4106,4107,-4082,4107,4050,-4082,4107,4127,-4081,4086,4082,-4130,4129,4109,-4087,4130,4087,-4110,4111,4059,-4088,4110,4058,-4113,4131,4089,-4089,4132,4088,-4112,4089,4133,-4113,4110,4134,-4091,4090,4135,-4114,4113,4136,-4092,4091,4137,-4093,4138,4114,-4093,4063,800,-4116,4093,4115,-4117,4094,4116,-4140,4117,4094,-4140, +4117,4140,-4096,4095,4140,-4097,4141,4118,-4067,4119,4141,-4067,4096,4140,-4120,4142,4068,-4119,4143,4120,-4069,4097,4120,-4122,4070,4121,-4123,4123,4144,-4099,4099,4103,-4146,4145,4100,-4100,4124,4125,-4074,4100,4146,-4125,4125,4147,-4102,4148,4102,-4102,4102,4149,-4124,4122,4150,-4104,4126,4098,-4145,4075,4127,-4152,4151,4128,-4076,4106,4126,-4153,4106,4152,-4108,4153,4127,-4108,4154,4109,-4130,4130,4111,-4088,4109,4155,-4131,4110,4112,-4157,4089,4131,-4134,4131,4088,-4133,4111,4130,-4133,4133,4156,-4113,4110,4156,-4135,4090,4134,-4136,4113,4135,-4137,4091,4136,-4138,4092,4137,-4139,4115,800,-738,4115,4157,-4117,4116,4158,-4140,4117,4139,-4141,4141,4142,-4119,4119,4159,-4142,4160,4119,-4141,4143,4068,-4143,4143,4161,-4121,4162,4121,-4121,4122,4121,-4163,4144,4123,-4164,4145,4103,-4165,4100,4145,-4147,4125,4124,-4166,4124,4146,-4166,4166,4147,-4126,4147,4167,-4102,4148,4168,-4103,4148,4101,-4168,4149,4102,-4170,4163,4123,-4150,4122,4162,-4151,4150,4164,-4104,4126,4144,-4171,4153,4151,-4128,4152,4126,-4171,4107,4152,-4154,4171,4109,-4155,4109,4171,-4156,4132,4130,-4156,4131,4172,-4134,4173,4131,-4133,4133,4174,-4157,4156,4174,-4135,4135,4134,-4176,4135,4175,-4137,4136,4176,-4138,4177,4138,-4138,4157,4115,-738,4116,4157,-4159,4139,4158,-4161,4160,4140,-4140,4178,4142,-4142,4119,4160,-4160,4159,4179,-4142,4180,4143,-4143,4143,4181,-4162,4120,4161,-4183,4120,4183,-4163,4144,4163,-4185,4164,4185,-4146,4145,4185,-4147,4186,4125,-4166,4165,4146,-4188,4166,4188,-4148,4186,4166,-4126,4147,4189,-4168,4148,4190,-4169,4168,4191,-4103,4148,4167,-4191,4102,4191,-4170,4169,4163,-4150,4162,4192,-4151,4150,4193,-4165,4194,4170,-4145,4195,4152,-4171,4152,4196,-4154,4171,4197,-4156,4173,4132,-4156,4172,4131,-4199,4199,4133,-4173,4173,4198,-4132,4133,4199,-4175,4134,4174,-4176,4175,4176,-4137,4177,4137,-4177,4157,737,-671,4157,4200,-4159,4201,4160,-4159,4178,4180,-4143,4178,4141,-4180,4201,4159,-4161,4179,4159,-4203,4203,4143,-4181,4143,4203,-4182,4204,4161,-4182,4161,4205,-4183,4182,4183,-4121,4162,4183,-4193,4184,4163,-4207,4184,4194, +-4145,4164,4207,-4186,4187,4146,-4186,4208,4186,-4166,4165,4187,-4209,4166,4209,-4189,4189,4147,-4189,4186,4210,-4167,4189,4190,-4168,4190,4211,-4169,4168,4211,-4192,4169,4191,-4213,4169,4213,-4164,4150,4192,-4194,4207,4164,-4194,4170,4194,-4215,4195,4215,-4153,4170,4214,-4196,4152,4215,-4197,4197,4173,-4156,4199,4172,-4199,4198,4173,-4217,4217,4174,-4200,4217,4175,-4175,4175,4217,-4177,4177,4176,-4219,4157,670,-4201,4158,4200,-4202,4219,4180,-4179,4178,4179,-4221,4202,4159,-4202,4179,4202,-4222,4180,4219,-4204,4203,4222,-4182,4161,4204,-4224,4181,4224,-4205,4223,4205,-4162,4182,4205,-4193,4182,4192,-4184,4213,4206,-4164,4206,4225,-4185,4184,4225,-4195,4226,4185,-4208,4187,4185,-4228,4208,4210,-4187,4208,4187,-4228,4210,4209,-4167,4188,4209,-4229,4189,4188,-4230,4189,4230,-4191,4211,4190,-4231,4211,4212,-4192,4213,4169,-4213,4193,4192,-4206,4207,4193,-4232,4194,4232,-4215,4215,4195,-4234,4214,4233,-4196,4173,4197,-4217,4217,4218,-4177,4200,670,-638,4200,4234,-4202,4178,4220,-4220,4220,4179,-4236,4202,4201,-4235,4202,4236,-4222,4179,4221,-4236,4203,4219,-4238,4237,4222,-4204,4181,4222,-4239,4223,4204,-4240,4181,4240,-4225,4224,4241,-4205,4205,4223,-4243,4243,4206,-4214,4206,4244,-4226,4232,4194,-4226,4185,4226,-4246,4226,4207,-4247,4227,4185,-4246,4247,4210,-4209,4208,4227,-4248,4247,4209,-4211,4228,4209,-4249,4228,4229,-4189,4189,4229,-4231,4211,4230,-4250,4211,4249,-4213,4213,4212,-4251,4251,4193,-4206,4252,4231,-4194,4246,4207,-4232,4253,4214,-4233,4214,4253,-4234,4200,637,-4235,4219,4220,-4238,4220,4235,-4255,4202,4234,-4237,4255,4221,-4237,4221,4256,-4236,4237,4238,-4223,4238,4240,-4182,4257,4239,-4205,4223,4239,-4259,4224,4240,-4242,4204,4241,-4258,4223,4258,-4243,4259,4205,-4243,4244,4206,-4244,4243,4213,-4251,4244,4260,-4226,4260,4232,-4226,4226,4261,-4246,4246,4262,-4227,4245,4263,-4228,4263,4247,-4228,4247,4263,-4210,4263,4248,-4210,4228,4248,-4265,4228,4265,-4230,4229,4265,-4231,4266,4249,-4231,4267,4212,-4250,4212,4268,-4251,4193,4251,-4253,4205,4259,-4252,4252,4269,-4232,4269,4246,-4232,4253,4232,-4271, +572,4234,-638,4220,4254,-4238,4235,4271,-4255,572,4236,-4235,4255,4256,-4222,472,4255,-4237,4256,4271,-4236,4254,4238,-4238,4240,4238,-4255,4239,4257,-4273,4273,4258,-4240,4240,4274,-4242,4257,4241,-4276,4258,4276,-4243,4259,4242,-4278,4244,4243,-4271,4250,4268,-4244,4260,4244,-4271,4232,4260,-4271,4226,4262,-4262,4278,4245,-4262,4269,4262,-4247,4245,4279,-4264,4280,4248,-4264,4264,4248,-4282,4264,4265,-4229,4282,4230,-4266,4266,4267,-4250,4282,4266,-4231,4267,4268,-4213,4252,4251,-4260,4269,4252,-4284,4284,4254,-4272,472,4236,-573,4256,4255,-4286,4255,472,-414,4256,4285,-4272,4240,4254,-4275,4286,4272,-4258,4239,4272,-4274,4258,4273,-4288,4274,4275,-4242,4286,4257,-4276,4288,4276,-4259,4276,4277,-4243,4259,4277,-4290,4243,4290,-4271,4291,4243,-4269,4292,4261,-4263,4279,4245,-4279,4292,4278,-4262,4293,4262,-4270,4280,4263,-4280,4280,4281,-4249,4264,4281,-4295,4264,4295,-4266,4282,4265,-4296,4296,4267,-4267,4282,4296,-4267,4267,4291,-4269,4252,4259,-4290,4252,4289,-4284,4297,4269,-4284,4284,4274,-4255,4284,4271,-4299,4255,413,-4286,4285,4298,-4272,4286,179,-4273,4273,4272,-4300,4273,4299,-4288,4288,4258,-4288,4300,4275,-4275,4286,4275,-217,4288,4301,-4277,4277,4276,-4302,4289,4277,-4303,4290,4243,-4292,4290,4303,-4271,4293,4292,-4263,4279,4278,-4305,4305,4278,-4293,4293,4269,-4298,4280,4279,-4305,4280,4304,-4282,4306,4294,-4282,4264,4294,-4296,4282,4295,-4308,4296,4308,-4268,4296,4282,-4310,4267,4310,-4292,4283,4289,-4312,4297,4283,-4313,4300,4274,-4285,4284,4298,-281,4285,413,-386,4285,385,-4299,216,179,-4287,161,4272,-180,161,4299,-4273,4287,4299,-4314,4287,4314,-4289,4300,4315,-4276,216,4275,-258,4288,4316,-4302,4277,4301,-4303,4289,4302,-4318,4303,4290,-4292,4270,4303,-4319,4305,4292,-4294,4319,4304,-4279,4278,4305,-4320,4293,4297,-4306,4281,4304,-4321,4321,4294,-4307,4281,4320,-4307,4295,4294,-4323,4295,4322,-4308,4309,4282,-4308,4308,4296,-4324,4308,4310,-4268,4296,4309,-4324,4310,4324,-4292,4311,4289,-4318,4283,4311,-4313,4325,4297,-4313,4315,4300,-4285,280,4298,-282,4315,4284,-281,385,281,-4299,4299,161,-144, +4299,143,-4314,4314,4287,-4314,4316,4288,-4315,4315,257,-4276,4301,4316,-4303,4326,4317,-4303,4291,4327,-4304,4318,4303,-4329,4304,4319,-4330,4325,4319,-4306,4325,4305,-4298,4304,4329,-4321,4321,4322,-4295,4330,4321,-4307,4330,4306,-4321,4307,4322,-4332,4309,4307,-4333,4323,4333,-4309,4308,4334,-4311,4309,4332,-4324,4310,4334,-4325,4324,4327,-4292,4311,4317,-4336,4312,4311,-4336,4325,4312,-4337,257,4315,-281,4337,4313,-144,4313,4338,-4315,4314,4339,-4317,4316,4340,-4303,4326,4341,-4318,4302,4340,-4327,4327,4342,-4304,4328,4303,-4343,4329,4319,-4344,4325,4336,-4320,4320,4329,-4345,4345,4322,-4322,4330,4345,-4322,4346,4330,-4321,4322,4345,-4332,4307,4331,-4348,4332,4307,-4348,4323,4348,-4334,4349,4308,-4334,4308,4349,-4335,4348,4323,-4333,4334,4350,-4325,4327,4324,-4351,4341,4335,-4318,4312,4335,-4337,4313,4337,-4352,84,4337,-144,4313,4351,-4339,4314,4338,-4340,4339,51,-4317,4352,4340,-4317,4341,4326,-4354,4326,4340,-4355,4342,4327,-4356,4328,4342,-4357,4343,4319,-4358,4329,4343,-4359,4357,4319,-4337,4344,4329,-4359,4346,4320,-4345,4345,4330,-4360,4346,4360,-4331,4361,4331,-4346,4361,4347,-4332,4348,4332,-4348,4348,4362,-4334,4333,4363,-4350,4363,4334,-4350,4334,4364,-4351,4327,4350,-4366,4341,4366,-4336,4335,4366,-4337,4337,60,-4352,60,4337,-85,4351,60,-4339,4338,60,-4340,4339,60,-52,4316,51,-4353,4340,4352,-4368,4353,4326,-4369,4341,4353,-4370,4370,4354,-4341,4326,4354,-4369,4327,4365,-4356,4356,4342,-4356,4343,4357,-4372,4372,4358,-4344,4357,4336,-4367,4373,4344,-4359,4346,4344,-4374,4330,4360,-4360,4374,4345,-4360,4373,4360,-4347,4345,4374,-4362,4361,4375,-4348,4348,4347,-4363,4333,4362,-4377,4376,4363,-4334,4334,4363,-4365,4365,4350,-4365,4341,4369,-4367,51,4367,-4353,4340,4367,-4371,4368,4369,-4354,4370,4377,-4355,4377,4368,-4355,4365,4378,-4356,4379,4356,-4356,4380,4371,-4358,4343,4371,-4373,4372,4373,-4359,4381,4357,-4367,4382,4359,-4361,4359,4383,-4375,4360,4373,-4385,4385,4361,-4375,4361,4386,-4376,4362,4347,-4376,4376,4362,-4388,4363,4376,-4389,4364,4363,-4390,4365,4364,-4391,4391,4366,-4370,51,27,-4368,4370, +4367,-4393,4369,4368,-4394,4394,4377,-4371,4377,4393,-4369,4378,4365,-4391,4378,4379,-4356,4380,4395,-4372,4380,4357,-4382,4396,4372,-4372,4397,4373,-4373,4381,4366,-4392,4359,4382,-4384,4360,4384,-4383,4385,4374,-4384,4397,4384,-4374,4385,4386,-4362,4386,4398,-4376,4375,4399,-4363,4387,4362,-4400,4387,4388,-4377,4363,4388,-4390,4364,4389,-4391,4393,4391,-4370,27,15,-4368,4367,15,-4393,4370,4392,-4395,4400,4377,-4395,4400,4393,-4378,4378,4390,-4402,4379,4378,-4402,4395,4380,-4392,4371,4395,-4403,4380,4381,-4392,4396,4403,-4373,4371,4402,-4397,4397,4372,-4405,4405,4383,-4383,4382,4384,-4407,4383,4407,-4386,4397,4406,-4385,4386,4385,-4408,4398,4386,-4408,4375,4398,-4400,4408,4387,-4400,4409,4388,-4388,4409,4389,-4389,4410,4390,-4390,4393,4395,-4392,4392,15,-4412,4412,4394,-4393,4400,4394,-4414,4400,4414,-4394,4401,4390,-4411,4401,4415,-4380,4414,4402,-4396,4416,4403,-4397,4417,4372,-4404,4418,4396,-4403,4404,4372,-4418,4397,4404,-4407,4383,4405,-4420,4405,4382,-4421,4382,4406,-4421,4383,4421,-4408,4398,4407,-4423,4399,4398,-4424,4409,4387,-4409,4408,4399,-4424,4424,4389,-4410,4425,4410,-4390,4414,4395,-4394,4411,15,-11,4392,4411,-4413,4413,4394,-4413,4426,4400,-4414,4426,4414,-4401,4415,4401,-4411,4427,4402,-4415,4416,4428,-4404,4418,4416,-4397,4417,4403,-4430,4418,4402,-4428,4404,4417,-4430,4430,4406,-4405,4405,4431,-4420,4419,4421,-4384,4405,4420,-4433,4420,4406,-4434,4407,4421,-4435,4422,4407,-4435,4422,4435,-4399,4435,4423,-4399,4409,4408,-4437,4437,4408,-4424,4424,4425,-4390,4424,4409,-4439,4439,4410,-4426,4411,10,-4441,4412,4411,-4441,4441,4413,-4413,4442,4426,-4414,4426,4427,-4415,4410,4439,-4416,4416,4443,-4429,4429,4403,-4429,4418,4444,-4417,4427,4445,-4419,4429,4430,-4405,4406,4430,-4434,4432,4431,-4406,4431,4446,-4420,4419,4447,-4422,4432,4420,-4434,4448,4434,-4422,4449,4422,-4435,4422,4450,-4436,4450,4423,-4436,4436,4408,-4452,4436,4438,-4410,4437,4451,-4409,4450,4437,-4424,4424,4438,-4426,4452,4439,-4426,4440,10,-2,4441,4412,-4441,4453,4413,-4442,4442,4445,-4427,4453,4442,-4414,4427,4426,-4446,4439,4454, +-4416,4455,4443,-4417,4443,4456,-4429,4456,4429,-4429,4444,4418,-4458,4416,4444,-4456,4418,4445,-4459,4430,4429,-4460,4433,4430,-4461,4431,4432,-4462,4446,4431,-4462,4419,4446,-4448,4462,4421,-4448,4432,4433,-4461,4449,4434,-4449,4462,4448,-4422,4463,4422,-4450,4463,4450,-4423,4436,4451,-4465,4436,4465,-4439,4437,4466,-4452,4437,4450,-4464,4425,4438,-4453,4452,4454,-4440,4440,1,-4468,4440,4467,-4442,4468,4453,-4442,4445,4442,-4470,4470,4442,-4454,4455,4471,-4444,4443,4471,-4457,4456,4459,-4430,4418,4458,-4458,4472,4444,-4458,4472,4455,-4445,4445,4469,-4459,4459,4460,-4431,4432,4460,-4462,4461,4473,-4447,4446,4474,-4448,4447,4475,-4463,4476,4449,-4449,4448,4462,-4478,4463,4449,-4467,4464,4451,-4479,4436,4464,-4480,4465,4436,-4480,4438,4465,-4453,4437,4463,-4467,4466,4480,-4452,4452,4481,-4455,4467,1,-1,4468,4441,-4468,4482,4453,-4469,4470,4469,-4443,4482,4470,-4454,4455,4483,-4472,4484,4456,-4472,4456,4485,-4460,4458,4486,-4458,4457,4487,-4473,4483,4455,-4473,4469,4488,-4459,4459,4485,-4461,4461,4460,-4486,4461,4489,-4474,4474,4446,-4474,4475,4447,-4475,4475,4490,-4463,4449,4476,-4467,4476,4448,-4478,4477,4462,-4491,4478,4451,-4492,4464,4478,-4493,4492,4479,-4465,4493,4465,-4480,4493,4452,-4466,4476,4480,-4467,4451,4480,-4492,4493,4481,-4453,4494,4454,-4482,4467,0,-4469,4468,4495,-4483,4469,4470,-4497,4497,4470,-4483,4498,4471,-4484,4456,4484,-4486,4484,4471,-4499,4458,4488,-4487,4457,4486,-4488,4472,4487,-4500,4483,4472,-4500,4469,4500,-4489,4489,4461,-4486,4473,4489,-4502,4474,4473,-4503,4475,4474,-4503,4490,4475,-4504,4476,4477,-4505,4477,4490,-4506,4491,4506,-4479,4507,4492,-4479,4508,4479,-4493,4509,4493,-4480,4476,4510,-4481,4511,4491,-4481,4481,4493,-4510,4509,4494,-4482,4468,0,-9,4468,4512,-4496,4497,4482,-4496,4497,4496,-4471,4469,4496,-4501,4483,4513,-4499,4485,4484,-4499,4488,4514,-4487,4515,4487,-4487,4516,4499,-4488,4517,4483,-4500,4514,4488,-4501,4489,4485,-4519,4501,4489,-4520,4501,4502,-4474,4520,4475,-4503,4521,4503,-4476,4503,4522,-4491,4504,4477,-4506,4510,4476,-4505,4505,4490,-4523,4491,4523,-4507, +4507,4478,-4507,4507,4524,-4493,4509,4479,-4509,4508,4492,-4526,4480,4510,-4512,4511,4523,-4492,4526,4494,-4510,4512,4468,-9,4495,4512,-4528,4497,4495,-4529,4497,4528,-4497,4500,4496,-4530,4483,4517,-4514,4498,4513,-4519,4485,4498,-4519,4530,4486,-4515,4516,4487,-4516,4530,4515,-4487,4516,4531,-4500,4517,4499,-4532,4514,4500,-4530,4518,4532,-4490,4532,4519,-4490,4533,4501,-4520,4501,4520,-4503,4520,4521,-4476,4521,4534,-4504,4503,4534,-4523,4504,4505,-4536,4535,4510,-4505,4505,4522,-4537,4537,4506,-4524,4507,4506,-4539,4507,4538,-4525,4492,4524,-4540,4508,4540,-4510,4539,4525,-4493,4525,4541,-4509,4542,4511,-4511,4542,4523,-4512,4526,4543,-4495,4526,4509,-4541,4512,8,-4528,4495,4527,-4545,4528,4495,-4545,4528,4529,-4497,4513,4517,-4546,4532,4518,-4514,4530,4514,-4530,4515,4546,-4517,4547,4515,-4531,4548,4531,-4517,4549,4517,-4532,4550,4519,-4533,4501,4533,-4552,4550,4533,-4520,4551,4520,-4502,4521,4520,-4553,4534,4521,-4554,4554,4522,-4535,4505,4536,-4536,4542,4510,-4536,4554,4536,-4523,4537,4538,-4507,4523,4555,-4538,4538,4556,-4525,4557,4539,-4525,4508,4541,-4541,4539,4558,-4526,4525,4558,-4542,4542,4555,-4524,4543,4526,-4560,4526,4540,-4561,4561,4527,-9,4544,4527,-4563,4528,4544,-4564,4564,4529,-4529,4549,4545,-4518,4513,4545,-4566,4513,4550,-4533,4547,4530,-4530,4566,4546,-4516,4548,4516,-4547,4566,4515,-4548,4548,4567,-4532,4549,4531,-4568,4551,4533,-4569,4550,4569,-4534,4551,4570,-4521,4520,4570,-4553,4553,4521,-4553,4554,4534,-4554,4571,4535,-4537,4542,4535,-4573,4554,4573,-4537,4537,4574,-4539,4537,4555,-4576,4538,4574,-4557,4557,4524,-4557,4539,4557,-4559,4560,4540,-4542,4576,4541,-4559,4577,4555,-4543,4578,4559,-4527,4560,4578,-4527,4561,4562,-4528,4561,8,-19,4544,4562,-4564,4564,4528,-4564,4564,4547,-4530,4579,4545,-4550,4565,4545,-4580,4550,4513,-4566,4546,4566,-4581,4548,4546,-4582,4547,4582,-4567,4567,4548,-4584,4584,4549,-4568,4568,4533,-4570,4551,4568,-4571,4550,4565,-4570,4552,4570,-4586,4553,4552,-4586,4553,4586,-4555,4571,4572,-4536,4587,4571,-4537,4542,4572,-4578,4554,4586,-4574,4587,4536,-4574, +4537,4588,-4575,4577,4575,-4556,4588,4537,-4576,4574,4589,-4557,4557,4556,-4591,4558,4557,-4592,4592,4560,-4542,4541,4576,-4593,4576,4558,-4594,4578,4594,-4560,4578,4560,-4593,29,4562,-4562,4561,18,-30,4595,4563,-4563,4564,4563,-4597,4582,4547,-4565,4579,4549,-4598,4598,4565,-4580,4580,4566,-4600,4546,4580,-4582,4583,4548,-4582,4566,4582,-4600,4567,4583,-4601,4584,4597,-4550,4567,4600,-4585,4568,4569,-4602,4570,4568,-4603,4569,4565,-4599,4570,4603,-4586,4553,4585,-4587,4571,4604,-4573,4571,4587,-4606,4604,4577,-4573,4573,4586,-4588,4574,4588,-4590,4604,4575,-4578,4606,4588,-4576,4607,4556,-4590,4607,4590,-4557,4557,4590,-4592,4558,4591,-4609,4592,4576,-4610,4593,4558,-4609,4576,4593,-4610,4592,4594,-4579,4594,4610,-4560,4595,4562,-30,4595,4611,-4564,4596,4563,-4612,4582,4564,-4597,4579,4597,-4613,4598,4579,-4613,4599,4613,-4581,4614,4581,-4581,4615,4583,-4582,4582,4616,-4600,4600,4583,-4618,4597,4584,-4619,4600,4618,-4585,4569,4598,-4602,4568,4601,-4603,4570,4602,-4620,4570,4619,-4604,4603,4620,-4586,4586,4585,-4621,4571,4605,-4605,4605,4587,-4622,4586,4622,-4588,4606,4589,-4589,4604,4606,-4576,4607,4589,-4624,4590,4607,-4625,4590,4624,-4592,4608,4591,-4626,4592,4609,-4627,4593,4608,-4626,4609,4593,-4628,4626,4594,-4593,4594,4628,-4611,29,46,-4596,4611,4595,-4630,4596,4611,-4631,4582,4596,-4617,4631,4612,-4598,4612,4632,-4599,4633,4613,-4600,4614,4580,-4614,4614,4615,-4582,4615,4617,-4584,4633,4599,-4617,4617,4634,-4601,4597,4618,-4632,4600,4634,-4619,4632,4601,-4599,4635,4602,-4602,4602,4636,-4620,4603,4619,-4638,4638,4620,-4604,4620,4622,-4587,4605,4639,-4605,4621,4587,-4623,4621,4640,-4606,4589,4606,-4624,4606,4604,-4642,4607,4623,-4643,4643,4624,-4608,4591,4624,-4626,4626,4609,-4628,4625,4644,-4594,4593,4644,-4628,4626,4645,-4595,4628,4594,-4647,4629,4595,-47,4647,4611,-4630,4647,4630,-4612,4630,4648,-4597,4596,4648,-4617,4612,4631,-4650,4612,4650,-4633,4651,4613,-4634,4614,4613,-4653,4614,4652,-4616,4615,4653,-4618,4616,4648,-4634,4634,4617,-4654,4618,4654,-4632,4618,4634,-4655,4632,4635,-4602,4635,4636,-4603, +4637,4619,-4637,4637,4638,-4604,4655,4620,-4639,4656,4622,-4621,4640,4639,-4606,4639,4641,-4605,4621,4622,-4658,4621,4658,-4641,4606,4659,-4624,4606,4641,-4661,4661,4642,-4624,4607,4642,-4644,4624,4643,-4663,4663,4625,-4625,4664,4626,-4628,4663,4644,-4626,4665,4627,-4645,4664,4645,-4627,4594,4645,-4647,4666,4628,-4647,4629,46,-68,4629,4667,-4648,4647,4668,-4631,4668,4648,-4631,4631,4669,-4650,4670,4612,-4650,4612,4670,-4651,4632,4650,-4636,4651,4652,-4614,4648,4651,-4634,4615,4652,-4672,4653,4615,-4672,4634,4653,-4655,4669,4631,-4655,4635,4672,-4637,4637,4636,-4674,4674,4638,-4638,4675,4620,-4656,4674,4655,-4639,4656,4657,-4623,4656,4620,-4676,4639,4640,-4659,4639,4660,-4642,4676,4621,-4658,4658,4621,-4677,4659,4606,-4661,4623,4659,-4678,4661,4678,-4643,4661,4623,-4678,4643,4642,-4679,4643,4678,-4663,4624,4662,-4664,4664,4627,-4680,4663,4680,-4645,4665,4679,-4628,4665,4644,-4682,4645,4664,-4683,4646,4645,-4684,4646,4683,-4667,4629,67,-4668,4647,4667,-4669,4668,4684,-4649,4669,4685,-4650,4686,4670,-4650,4670,4686,-4651,4650,4672,-4636,4687,4652,-4652,4651,4648,-4685,4652,4688,-4672,4671,4689,-4654,4690,4654,-4654,4669,4654,-4691,4672,4673,-4637,4674,4637,-4674,4655,4691,-4676,4674,4692,-4656,4657,4656,-4694,4656,4675,-4694,4639,4658,-4695,4639,4695,-4661,4676,4657,-4697,4658,4676,-4695,4697,4659,-4661,4698,4677,-4660,4699,4678,-4662,4661,4677,-4701,4678,4680,-4663,4680,4663,-4663,4701,4664,-4680,4680,4702,-4645,4665,4703,-4680,4681,4644,-4703,4703,4665,-4682,4704,4682,-4665,4645,4682,-4684,4666,4683,-4706,92,4667,-68,4667,4706,-4669,4684,4668,-4708,4708,4685,-4670,4685,4709,-4650,4709,4686,-4650,4650,4686,-4711,4650,4710,-4673,4652,4687,-4689,4687,4651,-4712,4684,4711,-4652,4689,4671,-4689,4653,4689,-4691,4690,4712,-4670,4673,4672,-4714,4674,4673,-4715,4655,4692,-4692,4715,4675,-4692,4674,4714,-4693,4693,4696,-4658,4693,4675,-4716,4694,4695,-4640,4697,4660,-4696,4694,4676,-4697,4697,4698,-4660,4698,4716,-4678,4678,4699,-4718,4699,4661,-4719,4700,4677,-4717,4719,4661,-4701,4678,4717,-4681,4701,4704,-4665,4701,4679,-4721, +4702,4680,-4722,4720,4679,-4704,4681,4702,-4723,4703,4681,-4724,4704,4724,-4683,4724,4683,-4683,4705,4683,-4725,4725,4666,-4706,4667,92,-4707,4668,4706,-4708,4684,4707,-4727,4708,4727,-4686,4669,4728,-4709,4727,4709,-4686,4729,4686,-4710,4729,4710,-4687,4710,4713,-4673,4688,4687,-4731,4731,4687,-4712,4684,4726,-4712,4688,4732,-4690,4690,4689,-4713,4669,4712,-4729,4713,4714,-4674,4691,4692,-4734,4715,4691,-4735,4714,4735,-4693,4696,4693,-4737,4693,4715,-4737,4737,4695,-4695,4697,4695,-4739,4737,4694,-4697,4739,4698,-4698,4698,4740,-4717,4699,4741,-4718,4718,4661,-4720,4742,4699,-4719,4700,4716,-4744,4744,4719,-4701,4717,4745,-4681,4701,4746,-4705,4720,4746,-4702,4680,4745,-4722,4722,4702,-4722,4720,4703,-4724,4723,4681,-4723,4704,4747,-4725,4724,4748,-4706,4725,4705,-4749,121,4706,-93,4707,4706,-157,4749,4726,-4708,4708,4750,-4728,4708,4728,-4752,4727,4729,-4710,4752,4710,-4730,4710,4753,-4714,4731,4730,-4688,4688,4730,-4733,4731,4711,-4727,4732,4754,-4690,4712,4689,-4755,4712,4755,-4729,4713,4756,-4715,4692,4735,-4734,4691,4733,-4735,4715,4734,-4758,4756,4735,-4715,4736,4737,-4697,4757,4736,-4716,4737,4738,-4696,4697,4738,-4740,4739,4740,-4699,4740,4758,-4717,4742,4741,-4700,4741,4759,-4718,4718,4719,-4761,4718,4761,-4743,4743,4716,-4759,4743,4744,-4701,4760,4719,-4745,4717,4762,-4746,4746,4763,-4705,4720,4764,-4747,4765,4721,-4746,4722,4721,-4766,4720,4723,-4765,4723,4722,-4767,4704,4763,-4748,4747,4748,-4725,4767,4725,-4749,4706,121,-157,4707,156,-4750,4726,4749,-157,4708,4751,-4751,4750,4768,-4728,4728,4769,-4752,4727,4752,-4730,4710,4752,-4754,4753,4756,-4714,4731,4770,-4731,4771,4732,-4731,4731,4726,-4771,4754,4732,-4773,4712,4754,-4756,4728,4755,-4770,4773,4733,-4736,4774,4734,-4734,4757,4734,-4776,4756,4773,-4736,4737,4736,-4777,4776,4736,-4758,4777,4738,-4738,4739,4738,-4779,4739,4779,-4741,4758,4740,-4781,4741,4742,-4760,4762,4717,-4760,4718,4760,-4762,4761,4781,-4743,4758,4782,-4744,4743,4783,-4745,4760,4744,-4785,4745,4762,-4786,4746,4786,-4764,4746,4764,-4788,4785,4765,-4746,4722,4765,-4767,4764,4723,-4767, +4788,4747,-4764,4789,4748,-4748,4767,4748,-4790,4726,156,-190,4751,4790,-4751,4750,4791,-4769,4753,4727,-4769,4769,4792,-4752,4727,4753,-4753,4753,4793,-4757,4771,4730,-4771,4772,4732,-4772,4726,189,-4771,4754,4772,-4756,4769,4755,-4793,4773,4794,-4734,4774,4795,-4735,4774,4733,-4795,4734,4795,-4776,4757,4775,-4797,4793,4773,-4757,4777,4737,-4777,4796,4776,-4758,4777,4778,-4739,4739,4778,-4780,4779,4797,-4741,4740,4797,-4781,4758,4780,-4799,4781,4759,-4743,4762,4759,-4800,4760,4800,-4762,4761,4800,-4782,4782,4758,-4799,4743,4782,-4784,4744,4783,-4785,4760,4784,-4801,4785,4762,-4802,4787,4786,-4747,4763,4786,-4803,4787,4764,-4804,4785,4804,-4766,4765,4804,-4767,4766,4805,-4765,4806,4747,-4789,4788,4763,-4803,4747,4807,-4790,4767,4789,-4809,4790,4751,-4810,4750,4790,-4811,4810,4791,-4751,4791,4811,-4769,4768,4793,-4754,4751,4792,-4810,4771,4770,-4813,4771,4813,-4773,4812,4770,-190,4814,4755,-4773,4814,4792,-4756,4793,4794,-4774,4795,4774,-4816,4774,4794,-4817,4795,4796,-4776,4777,4776,-4818,4796,4818,-4777,4777,4817,-4779,4819,4779,-4779,4820,4797,-4780,4797,4821,-4781,4822,4798,-4781,4799,4759,-4782,4762,4799,-4802,4823,4781,-4801,4798,4824,-4783,4825,4783,-4783,4825,4784,-4784,4826,4800,-4785,4785,4801,-4805,4787,4827,-4787,4828,4802,-4787,4803,4764,-4806,4787,4803,-4828,4805,4766,-4805,4747,4806,-4808,4806,4788,-4830,4829,4788,-4803,4807,4830,-4790,4830,4808,-4790,4831,4790,-4810,4790,4832,-4811,4810,4833,-4792,4791,4834,-4812,4811,4835,-4769,4835,4793,-4769,4836,4809,-4793,4813,4771,-4813,4837,4772,-4814,230,4812,-190,4838,4814,-4773,4814,4836,-4793,4835,4794,-4794,4816,4815,-4775,4795,4815,-4840,4840,4816,-4795,4796,4795,-4842,4817,4776,-4819,4842,4818,-4797,4843,4778,-4818,4819,4820,-4780,4819,4778,-4844,4820,4821,-4798,4822,4780,-4822,4844,4798,-4823,4799,4781,-4824,4845,4801,-4800,4823,4800,-4847,4798,4844,-4825,4825,4782,-4825,4825,4847,-4785,4826,4846,-4801,4826,4784,-4848,4801,4848,-4805,4827,4849,-4787,4850,4802,-4829,4828,4786,-4850,4803,4805,-4852,4827,4803,-4853,4851,4805,-4805,4853,4807,-4807,4853,4806, +-4830,4829,4802,-4851,4830,4807,-4855,4855,4808,-4831,4831,4832,-4791,4836,4831,-4810,4810,4832,-4857,4833,4810,-4857,4833,4857,-4792,4857,4834,-4792,4811,4834,-4859,4835,4811,-4859,293,4813,-4813,4837,4838,-4773,343,4837,-4814,293,4812,-231,4838,4859,-4815,4814,4859,-4837,4835,4858,-4795,4815,4816,-4840,4860,4795,-4840,4840,4861,-4817,4840,4794,-4859,4860,4841,-4796,4796,4841,-4843,4817,4818,-4844,4862,4818,-4843,4863,4820,-4820,4819,4843,-4865,4865,4821,-4821,4866,4822,-4822,4867,4844,-4823,4845,4799,-4824,4868,4801,-4846,4823,4846,-4870,4844,4870,-4825,4825,4824,-4871,4847,4825,-4872,4826,4872,-4847,4826,4847,-4874,4801,4868,-4849,4851,4804,-4849,4849,4827,-4875,4850,4828,-4876,4874,4828,-4850,4851,4852,-4804,4876,4827,-4853,4853,4877,-4808,4878,4853,-4830,4850,4879,-4830,4854,4807,-4878,4854,4880,-4831,4830,4881,-4856,4831,4882,-4833,4883,4831,-4837,4884,4856,-4833,4856,4857,-4834,4857,4885,-4835,4885,4858,-4835,343,4813,-294,4838,4837,-4887,4837,343,-372,4859,4838,-4888,4836,4859,-4884,4888,4839,-4817,4889,4860,-4840,4858,4861,-4841,4888,4816,-4862,4860,4890,-4842,4890,4842,-4842,4862,4843,-4819,4891,4862,-4843,4863,4865,-4821,4819,4864,-4864,4862,4864,-4844,4865,4866,-4822,4867,4822,-4867,4870,4844,-4868,4892,4845,-4824,4845,4893,-4869,4872,4869,-4847,4869,4892,-4824,4825,4870,-4872,4847,4871,-4895,4873,4872,-4827,4873,4847,-4895,4848,4868,-4896,4851,4848,-4897,4874,4827,-4898,4874,4875,-4829,4875,4898,-4851,4852,4851,-4897,4897,4827,-4877,4876,4852,-4897,4853,4878,-4878,4878,4829,-4900,4850,4898,-4880,4879,4899,-4830,4900,4854,-4878,4854,4900,-4881,4830,4880,-4882,4901,4855,-4882,4883,4882,-4832,4832,4882,-4903,4856,4884,-4904,4832,4904,-4885,4856,4903,-4858,4857,4903,-4886,4858,4885,-4906,4837,4906,-4887,4838,4886,-4888,371,4906,-4838,4887,4907,-4860,4883,4859,-4908,4888,4908,-4840,4889,4909,-4861,4889,4839,-4909,4858,4905,-4862,4888,4861,-4911,4860,4909,-4891,4890,4891,-4843,4891,4911,-4863,4863,4912,-4866,4863,4864,-4914,4911,4864,-4863,4866,4865,-4913,4867,4866,-4915,4870,4867,-4916,4892,4893,-4846,4893, +4916,-4869,4917,4869,-4873,4869,4918,-4893,4873,4919,-4873,4868,4920,-4896,4848,4895,-4897,4897,4921,-4875,4874,4921,-4876,4875,4922,-4899,4897,4876,-4924,4876,4896,-4924,4924,4877,-4879,4924,4878,-4900,4879,4898,-4926,4879,4925,-4900,4900,4877,-4925,4926,4880,-4901,4926,4881,-4881,4901,4881,-4928,4883,4928,-4883,4882,4929,-4903,4904,4832,-4903,4884,4930,-4904,4931,4884,-4905,4932,4885,-4904,4905,4885,-4934,4906,4934,-4887,4887,4886,-4935,371,4935,-4907,4887,4936,-4908,4883,4907,-4929,4888,4910,-4909,4909,4889,-4938,4889,4908,-4939,4905,4910,-4862,4890,4909,-4940,4939,4891,-4891,4911,4891,-4941,4912,4863,-4942,4911,4913,-4865,4863,4913,-4942,4912,4942,-4867,4866,4942,-4915,4914,4915,-4868,4892,4943,-4894,4943,4916,-4894,4868,4916,-4921,4917,4918,-4870,4917,4872,-4920,4944,4892,-4919,4945,4895,-4921,4895,4923,-4897,4897,4946,-4922,4875,4921,-4923,4898,4922,-4948,4946,4897,-4924,4948,4924,-4900,4925,4898,-4948,4948,4899,-4926,4900,4924,-4950,4900,4950,-4927,4881,4926,-4928,4901,4927,-4952,4928,4929,-4883,4929,4952,-4903,4904,4902,-4953,4931,4930,-4885,4932,4903,-4931,4931,4904,-4953,4933,4885,-4933,4905,4933,-4911,4906,4953,-4935,4936,4887,-4935,4935,371,-459,4935,4953,-4907,4936,4954,-4908,4907,4955,-4929,4910,4938,-4909,4956,4937,-4890,4937,4939,-4910,4938,4957,-4890,4939,4958,-4892,4958,4940,-4892,4911,4940,-4942,4959,4912,-4942,4941,4913,-4912,4942,4912,-4961,4944,4943,-4893,4943,4961,-4917,4962,4920,-4917,4917,4963,-4919,4964,4944,-4919,4895,4945,-4924,4945,4920,-4966,4966,4921,-4947,4966,4922,-4922,4922,4967,-4948,4946,4923,-4969,4948,4969,-4925,4925,4947,-4971,4925,4970,-4949,4924,4969,-4950,4969,4900,-4950,4900,4969,-4951,4950,4971,-4927,4927,4926,-4973,4927,4972,-4952,4928,4973,-4930,4929,4974,-4953,4931,4975,-4931,4976,4932,-4931,4931,4952,-4978,4932,4978,-4934,4910,4933,-4979,4934,4953,-4980,4954,4936,-4935,4953,4935,-459,4907,4954,-4956,4928,4955,-4974,4978,4938,-4911,4956,4980,-4938,4956,4889,-4958,4937,4980,-4940,4981,4957,-4939,4980,4958,-4940,4958,4941,-4941,4960,4912,-4960,4941,4982,-4960,4942,4960, +-4984,4961,4943,-4945,4962,4916,-4962,4962,4965,-4921,4964,4918,-4964,4961,4944,-4965,4923,4945,-4969,4965,4984,-4946,4985,4966,-4947,4966,4967,-4923,4947,4967,-4987,4968,4985,-4947,4948,4987,-4970,4988,4970,-4948,4970,4987,-4949,4969,4989,-4951,4950,4990,-4972,4926,4971,-4973,4991,4951,-4973,4929,4973,-4975,4974,4977,-4953,4931,4977,-4976,4992,4930,-4976,4932,4976,-4994,4930,4992,-4977,4978,4932,-4994,4994,4979,-4954,4954,4934,-4980,4953,458,-553,4955,4954,-4996,4955,4996,-4974,4978,4993,-4939,4956,4997,-4981,4956,4957,-4998,4957,4981,-4999,4993,4981,-4939,4980,4999,-4959,4941,4958,-4983,4960,4959,-5001,4959,4982,-5002,4960,5000,-4984,5002,4962,-4962,4962,5002,-4966,5002,4961,-4965,4984,4968,-4946,4965,5003,-4985,4966,4985,-4968,4967,5004,-4987,4986,5005,-4948,4985,4968,-5007,5007,4969,-4988,4970,4988,-4988,4947,5005,-4989,4969,5008,-4990,4950,4989,-4991,4990,5009,-4972,4971,5010,-4973,4991,4972,-5012,5012,4974,-4974,4974,5013,-4978,4975,4977,-5014,4975,5014,-4993,4993,4976,-4999,5015,4976,-4993,4994,5016,-4980,4994,4953,-553,4954,4979,-4996,4955,4995,-5018,5017,4996,-4956,4996,5012,-4974,5018,4980,-4998,4998,4997,-4958,4981,4993,-4999,5018,4999,-4981,4958,4999,-4983,4959,5001,-5001,5001,4982,-5000,4983,5000,-5020,5020,4965,-5003,5002,4964,-5022,4984,5022,-4969,5003,4965,-5021,4984,5003,-5024,4967,4985,-5005,5024,4986,-5005,4986,5024,-5006,5006,4968,-5023,5025,4985,-5007,5026,4969,-5008,4987,5027,-5008,5027,4987,-4989,4988,5005,-5029,5008,4969,-5027,4989,5008,-5030,4990,4989,-5010,4971,5009,-5011,5011,4972,-5011,4991,5011,-5031,4974,5012,-5014,4975,5013,-5032,5014,4975,-5032,5032,4992,-5015,4976,5015,-4999,5015,4992,-5033,593,5016,-4995,5016,4995,-4980,593,4994,-553,4995,5033,-5018,5017,5034,-4997,4996,5035,-5013,4997,5036,-5019,4997,4998,-5037,5018,5037,-5000,5038,5000,-5002,5039,5001,-5000,5040,5019,-5001,5021,5020,-5003,4984,5041,-5023,5003,5020,-5043,5003,5043,-5024,5041,4984,-5024,5025,5004,-4986,5024,5004,-5026,5024,5044,-5006,5022,5045,-5007,5025,5006,-5047,5026,5007,-5048,5047,5007,-5028,5027,4988,-5029,5028, +5005,-5045,5026,5048,-5009,5008,5048,-5030,4989,5029,-5050,4989,5049,-5010,5010,5009,-5051,5010,5051,-5012,5052,5030,-5012,5013,5012,-5054,5013,5053,-5032,5014,5031,-5055,5032,5014,-5056,5015,5056,-4999,5015,5032,-5057,593,5057,-5017,4995,5016,-5034,5033,5058,-5018,5058,5034,-5018,4996,5034,-5060,5035,4996,-5060,5053,5012,-5036,5018,5036,-5038,4998,5056,-5037,4999,5037,-5061,5038,5040,-5001,5039,5038,-5002,4999,5060,-5040,5042,5020,-5022,5022,5041,-5046,5003,5042,-5044,5041,5023,-5044,5061,5024,-5026,5024,5061,-5045,5046,5006,-5046,5062,5025,-5047,5047,5063,-5027,5047,5027,-5029,5044,5064,-5029,5026,5065,-5049,5066,5029,-5049,5067,5049,-5030,5068,5009,-5050,5068,5050,-5010,5010,5050,-5052,5051,5052,-5012,5069,5030,-5053,5031,5053,-5071,5054,5031,-5071,5014,5054,-5056,5071,5032,-5056,5056,5032,-5072,593,5072,-5058,5016,5057,-5034,5033,5057,-5059,5059,5034,-5059,5059,5073,-5036,5053,5035,-5074,5037,5036,-5057,5074,5060,-5038,5038,5075,-5041,5039,5060,-5039,5076,5045,-5042,5042,5077,-5044,5078,5041,-5044,5061,5025,-5063,5044,5061,-5080,5080,5046,-5046,5046,5081,-5063,5047,5082,-5064,5026,5063,-5066,5047,5028,-5083,5044,5079,-5065,5083,5028,-5065,5084,5048,-5066,5029,5066,-5086,5066,5048,-5085,5067,5068,-5050,5067,5029,-5087,5050,5068,-5088,5050,5087,-5052,5051,5069,-5053,5053,5073,-5071,5054,5070,-5089,5089,5055,-5055,5090,5071,-5056,5056,5071,-5075,5072,593,-593,5072,5091,-5058,5057,5092,-5059,5092,5059,-5059,5093,5073,-5060,5074,5037,-5057,5060,5074,-5095,5075,5038,-5096,5095,5038,-5061,5080,5045,-5077,5076,5041,-5079,5078,5043,-5078,5062,5079,-5062,5080,5096,-5047,5046,5096,-5082,5062,5081,-5098,5063,5082,-5099,5063,5098,-5066,5028,5083,-5083,5079,5099,-5065,5083,5064,-5100,5084,5065,-5101,5085,5066,-5102,5029,5085,-5087,5084,5102,-5067,5068,5067,-5104,5067,5086,-5104,5068,5103,-5088,5087,5104,-5052,5051,5105,-5070,5070,5073,-5107,5070,5106,-5089,5089,5054,-5089,5090,5055,-5090,5071,5090,-5108,5074,5071,-5108,5072,592,-5109,5072,5109,-5092,5057,5091,-5093,5092,5093,-5060,5093,5106,-5074,5074,5107,-5095,5060,5094,-5096, +5076,5110,-5081,5076,5078,-5112,5077,5111,-5079,5112,5079,-5063,5080,5113,-5097,5096,5114,-5082,5081,5115,-5098,5112,5062,-5098,5082,5083,-5099,5116,5065,-5099,5079,5112,-5100,5083,5099,-5118,5116,5100,-5066,5100,5118,-5085,5102,5101,-5067,5119,5085,-5102,5086,5085,-5121,5084,5118,-5103,5086,5104,-5104,5103,5104,-5088,5051,5104,-5106,5069,5105,-5122,5122,5088,-5107,5089,5088,-5124,5090,5089,-5125,5124,5107,-5091,592,5125,-5109,5108,5109,-5073,5091,5109,-5094,5093,5092,-5092,5106,5093,-5110,5126,5094,-5108,5094,5126,-5096,5076,5111,-5111,5110,5113,-5081,5127,5111,-5078,5113,5128,-5097,5096,5128,-5115,5081,5114,-5130,5081,5129,-5116,5130,5097,-5116,5130,5112,-5098,5083,5131,-5099,5116,5098,-5132,5099,5112,-5133,5099,5132,-5118,5117,5133,-5084,5116,5134,-5101,5100,5135,-5119,5102,5136,-5102,5119,5120,-5086,5137,5119,-5102,5086,5120,-5139,5118,5139,-5103,5086,5138,-5105,5140,5105,-5105,5105,5141,-5122,5122,5123,-5089,5122,5106,-5110,5089,5123,-5125,5124,5142,-5108,5125,592,-589,5125,5143,-5109,5108,5144,-5110,5107,5142,-5127,5127,5110,-5112,5110,5145,-5114,5113,5145,-5129,5146,5114,-5129,5129,5114,-5148,5129,5148,-5116,5130,5115,-5150,5112,5130,-5133,5083,5133,-5132,5116,5131,-5135,5132,5150,-5118,5117,5150,-5134,5135,5100,-5135,5135,5151,-5119,5102,5139,-5137,5136,5152,-5102,5120,5119,-5154,5154,5119,-5138,5137,5101,-5153,5155,5138,-5121,5118,5151,-5140,5138,5140,-5105,5105,5140,-5142,5156,5121,-5142,5157,5123,-5123,5109,5158,-5123,5124,5123,-5160,5124,5159,-5143,5143,5125,-589,5160,5108,-5144,5108,5160,-5145,5144,5161,-5110,5145,5110,-5128,5146,5128,-5146,5146,5147,-5115,5162,5129,-5148,5162,5148,-5130,5115,5148,-5164,5164,5149,-5116,5130,5149,-5133,5131,5133,-5166,5134,5131,-5166,5132,5149,-5151,5150,5166,-5134,5135,5134,-5166,5135,5167,-5152,5136,5139,-5153,5153,5119,-5169,5120,5153,-5156,5154,5168,-5120,5154,5137,-5170,5152,5169,-5138,5155,5140,-5139,5151,5170,-5140,5140,5156,-5142,5171,5121,-5157,5157,5159,-5124,5122,5158,-5158,5158,5109,-5162,5172,5143,-589,5143,5172,-5161,5160,5172,-5145,5161,5144,-5173,5173,5162, +-5148,5174,5148,-5163,5163,5148,-5176,5164,5115,-5164,5164,5150,-5150,5133,5166,-5166,5150,5164,-5167,5167,5135,-5166,5151,5167,-5177,5139,5177,-5153,5153,5168,-5179,5178,5155,-5154,5168,5154,-5180,5180,5154,-5170,5169,5152,-5178,5140,5155,-5179,5170,5151,-5177,5181,5139,-5171,5140,5178,-5157,5156,5182,-5172,5174,5162,-5174,5148,5174,-5184,5148,5183,-5176,5163,5175,-5185,5164,5163,-5185,5185,5165,-5167,5166,5164,-5185,5167,5165,-5187,5167,5187,-5177,5139,5181,-5178,5178,5168,-5189,5154,5180,-5180,5168,5179,-5189,5189,5180,-5170,5177,5190,-5170,5170,5176,-5192,5181,5170,-5193,5178,5188,-5157,5156,5193,-5183,5182,5194,-5172,5195,5174,-5174,5183,5174,-5197,5197,5175,-5184,5198,5184,-5176,5185,5186,-5166,5166,5184,-5186,5187,5167,-5187,5199,5176,-5188,5200,5177,-5182,5201,5179,-5181,5188,5179,-5194,5189,5201,-5181,5202,5189,-5170,5177,5200,-5191,5202,5169,-5191,5191,5176,-5200,5192,5170,-5192,5203,5181,-5193,5188,5193,-5157,5182,5193,-5195,5171,5194,-5205,5195,5205,-5175,5196,5174,-5206,5183,5196,-5207,5197,5198,-5176,5197,5183,-5207,5198,5185,-5185,5185,5198,-5187,5187,5186,-5208,5199,5187,-5209,5200,5181,-5210,5201,5210,-5180,5193,5179,-5211,5201,5189,-5212,5212,5189,-5203,5200,5213,-5191,5202,5190,-5214,5199,5214,-5192,5192,5191,-5215,5209,5181,-5204,5203,5192,-5216,5193,5210,-5195,5216,5204,-5195,5205,5195,-5218,5196,5205,-5219,5219,5206,-5197,5198,5197,-5221,5197,5206,-5222,5198,5220,-5187,5207,5186,-5221,5187,5207,-5209,5199,5208,-5215,5222,5200,-5210,5223,5210,-5202,5189,5224,-5212,5201,5211,-5224,5225,5189,-5213,5202,5226,-5213,5200,5222,-5214,5227,5202,-5214,5214,5228,-5193,5203,5229,-5210,5228,5215,-5193,5203,5215,-5231,5194,5210,-5232,5216,5232,-5205,5194,5231,-5217,5195,5233,-5218,5217,5234,-5206,5235,5218,-5206,5219,5196,-5219,5219,5221,-5207,5220,5197,-5222,5220,5221,-5208,5208,5207,-5237,5237,5214,-5209,5238,5222,-5210,5223,5231,-5211,5225,5224,-5190,5211,5224,-5240,5223,5211,-5240,5240,5225,-5213,5227,5226,-5203,5240,5212,-5227,5241,5213,-5223,5213,5242,-5228,5237,5228,-5215,5203,5230,-5230,5229,5243,-5210, +5228,5244,-5216,5230,5215,-5246,5216,5246,-5233,5223,5216,-5232,5233,5247,-5218,5217,5248,-5235,5235,5205,-5235,5235,5249,-5219,5219,5218,-5250,5221,5219,-5237,5221,5236,-5208,5208,5236,-5251,5237,5208,-5252,5241,5222,-5239,5243,5238,-5210,5252,5224,-5226,5239,5224,-5254,5223,5239,-5255,5240,5255,-5226,5240,5226,-5228,5256,5213,-5242,5213,5257,-5243,5242,5258,-5228,5244,5228,-5238,5259,5229,-5231,5229,5260,-5244,5245,5215,-5245,5230,5245,-5262,5254,5246,-5217,5223,5254,-5217,5247,5248,-5218,5234,5248,-5263,5235,5234,-5264,5264,5249,-5236,5236,5219,-5250,5236,5249,-5251,5250,5251,-5209,5244,5237,-5252,5241,5238,-5266,5265,5238,-5244,5252,5253,-5225,5255,5252,-5226,5253,5254,-5240,5240,5266,-5256,5258,5240,-5228,5257,5213,-5257,5267,5256,-5242,5242,5257,-5269,5269,5258,-5243,5259,5260,-5230,5259,5230,-5262,5243,5260,-5271,5244,5271,-5246,5271,5261,-5246,5272,5246,-5255,5248,5247,-5274,5274,5262,-5249,5234,5262,-5276,5275,5263,-5235,5264,5235,-5264,5264,5250,-5250,5250,5264,-5252,5244,5251,-5272,5276,5241,-5266,5265,5243,-5278,5253,5252,-5279,5255,5278,-5253,5253,5272,-5255,5240,5258,-5267,5279,5255,-5267,5256,5267,-5258,5276,5267,-5242,5257,5267,-5269,5280,5242,-5269,5269,5281,-5259,5280,5269,-5243,5259,5282,-5261,5283,5259,-5262,5284,5270,-5261,5277,5243,-5271,5271,5283,-5262,5285,5273,-5248,5286,5248,-5274,5287,5262,-5275,5286,5274,-5249,5288,5275,-5263,5275,5289,-5264,5264,5263,-5290,5264,5289,-5252,5271,5251,-5291,5265,5291,-5277,5277,5292,-5266,5253,5278,-5294,5279,5278,-5256,5272,5253,-5294,5266,5258,-5282,5279,5266,-5282,5276,5294,-5268,5295,5268,-5268,5268,5296,-5281,5297,5281,-5270,5298,5269,-5281,5283,5282,-5260,5260,5282,-5285,5284,5299,-5271,5277,5270,-5301,5283,5271,-5291,5286,5273,-5286,5287,5288,-5263,5274,5301,-5288,5274,5286,-5302,5288,5290,-5276,5290,5289,-5276,5290,5251,-5290,5265,5292,-5292,5276,5291,-5295,5300,5292,-5278,5293,5278,-5303,5279,5302,-5279,5297,5279,-5282,5303,5267,-5295,5295,5304,-5269,5305,5295,-5268,5296,5268,-5305,5296,5298,-5281,5306,5297,-5270,5298,5306,-5270,5283,5307,-5283,5308, +5284,-5283,5299,5284,-5309,5309,5270,-5300,5309,5300,-5271,5283,5290,-5289,5285,5310,-5287,5288,5287,-5312,5312,5287,-5302,5301,5286,-5314,5292,5314,-5292,5294,5291,-5316,5300,5316,-5293,5317,5293,-5303,5297,5302,-5280,5267,5303,-5306,5315,5303,-5295,5295,5318,-5305,5295,5305,-5319,5319,5296,-5305,5296,5320,-5299,5306,5321,-5298,5306,5298,-5322,5307,5283,-5312,5308,5282,-5308,5322,5299,-5309,5322,5309,-5300,5309,5323,-5301,5288,5311,-5284,5285,5324,-5311,5325,5286,-5311,5312,5311,-5288,5326,5312,-5302,5325,5313,-5287,5301,5313,-5327,5314,5292,-5328,5328,5291,-5315,5315,5291,-5329,5316,5300,-5324,5327,5292,-5317,5317,5302,-5298,5329,5305,-5304,5303,5315,-5331,5304,5318,-5332,5305,5332,-5319,5320,5296,-5320,5319,5304,-5334,5320,5321,-5299,5297,5321,-5335,5312,5307,-5312,5307,5335,-5309,5336,5322,-5309,5323,5309,-5323,5325,5310,-5325,5326,5335,-5313,5337,5313,-5326,5337,5326,-5314,5314,5327,-5339,5328,5314,-5339,5339,5315,-5329,5323,5340,-5317,5327,5316,-5342,5334,5317,-5298,5305,5329,-5333,5303,5330,-5330,5339,5330,-5316,5331,5318,-5343,5331,5333,-5305,5332,5343,-5319,5320,5319,-5345,5319,5333,-5346,5320,5346,-5322,5334,5321,-5347,5307,5312,-5336,5308,5335,-5348,5322,5336,-5349,5336,5308,-5348,5323,5322,-5349,5349,5325,-5325,5326,5347,-5336,5325,5350,-5338,5326,5337,-5348,5351,5338,-5328,5328,5338,-5353,5353,5339,-5329,5323,5348,-5341,5316,5340,-5342,5351,5327,-5342,5354,5332,-5330,5330,5355,-5330,5330,5339,-5357,5357,5342,-5319,5331,5342,-5359,5359,5333,-5332,5360,5343,-5333,5318,5343,-5358,5319,5345,-5345,5320,5344,-5347,5345,5333,-5362,5336,5362,-5349,5347,5363,-5337,5350,5325,-5350,5349,5324,-5365,5350,5363,-5338,5347,5337,-5364,5351,5365,-5339,5365,5352,-5339,5366,5328,-5353,5353,5356,-5340,5328,5366,-5354,5340,5348,-5368,5341,5340,-5369,5341,5369,-5352,5360,5332,-5355,5329,5355,-5355,5355,5330,-5371,5330,5356,-5372,5357,5372,-5343,5358,5342,-5374,5331,5358,-5360,5359,5361,-5334,5374,5343,-5361,5357,5343,-5376,5376,5344,-5346,5345,5361,-5377,5336,5363,-5363,5367,5348,-5363,5377,5350,-5350,5349,5364,-5378,5378,5363, +-5351,5365,5351,-5370,5365,5379,-5353,5366,5352,-5381,5353,5381,-5357,5382,5353,-5367,5340,5367,-5369,5341,5368,-5370,5383,5360,-5355,5384,5354,-5356,5330,5371,-5371,5385,5355,-5371,5356,5386,-5372,5357,5375,-5373,5373,5342,-5373,5358,5373,-5388,5358,5388,-5360,5361,5359,-5389,5374,5375,-5344,5389,5374,-5361,5376,5361,-5389,5378,5362,-5364,5367,5362,-5391,5377,5378,-5351,5391,5377,-5365,5365,5369,-5393,5365,5392,-5380,5379,5380,-5353,5393,5366,-5381,5382,5381,-5354,5394,5356,-5382,5382,5366,-5396,5396,5368,-5368,5369,5368,-5398,5383,5389,-5361,5384,5383,-5355,5384,5355,-5386,5371,5398,-5371,5398,5385,-5371,5356,5394,-5387,5399,5371,-5387,5400,5372,-5376,5373,5372,-5402,5387,5373,-5403,5358,5387,-5389,5374,5403,-5376,5404,5374,-5390,5376,5388,-5406,5390,5362,-5379,5390,5396,-5368,5390,5378,-5378,5377,5391,-5407,5407,5391,-5365,5369,5397,-5393,5379,5392,-5409,5380,5379,-5410,5395,5366,-5394,5393,5380,-5410,5382,5410,-5382,5394,5381,-5412,5412,5382,-5396,5396,5397,-5369,5389,5383,-5414,5414,5383,-5385,5385,5415,-5385,5371,5399,-5399,5398,5415,-5386,5394,5416,-5387,5399,5386,-5417,5400,5401,-5373,5400,5375,-5404,5401,5402,-5374,5405,5388,-5388,5403,5374,-5405,5404,5389,-5418,5390,5406,-5397,5377,5406,-5391,5407,5406,-5392,5397,5418,-5393,5418,5408,-5393,5379,5408,-5410,5395,5393,-5420,5393,5409,-5421,5382,5412,-5411,5381,5410,-5412,5394,5411,-5422,5412,5395,-5420,5396,5422,-5398,5413,5383,-5415,5389,5413,-5424,5414,5384,-5416,5424,5398,-5400,5424,5415,-5399,5394,5421,-5417,5399,5416,-5426,5400,5426,-5402,5400,5403,-5428,5428,5402,-5402,5403,5404,-5430,5417,5389,-5424,5429,5404,-5418,5396,5406,-5423,5407,5422,-5407,5397,5422,-5419,5408,5418,-5431,5408,5431,-5410,5419,5393,-5421,5420,5409,-5432,5410,5412,-5433,5411,5410,-5422,5412,5419,-5434,5413,5414,-5435,5434,5423,-5414,5414,5415,-5436,5424,5399,-5426,5424,5436,-5416,5437,5416,-5422,5425,5416,-5439,5400,5427,-5427,5426,5428,-5402,5403,5429,-5428,5417,5423,-5440,5429,5417,-5441,5441,5422,-5408,5442,5418,-5423,5418,5442,-5431,5430,5431,-5409,5419,5420,-5444,5444,5420,-5432, +5412,5433,-5433,5432,5421,-5411,5433,5419,-5444,5434,5414,-5436,5423,5434,-5446,5436,5435,-5416,5424,5425,-5447,5447,5436,-5425,5437,5438,-5417,5437,5421,-5449,5438,5449,-5426,5440,5427,-5430,5439,5423,-5446,5439,5440,-5418,5422,5441,-5443,5430,5450,-5432,5443,5420,-5445,5444,5431,-5451,5451,5432,-5434,5432,5448,-5422,5433,5443,-5452,5434,5435,-5453,5445,5434,-5453,5435,5436,-5453,5449,5446,-5426,5446,5447,-5425,5447,5453,-5437,5437,5454,-5439,5455,5437,-5449,5456,5449,-5439,5439,5445,-5458,5439,5458,-5441,5444,5459,-5444,5444,5450,-5461,5451,5461,-5433,5448,5432,-5463,5459,5451,-5444,5463,5445,-5453,5453,5452,-5437,5447,5464,-5454,5437,5455,-5455,5456,5438,-5455,5465,5455,-5449,5457,5445,-5467,5457,5458,-5440,5459,5444,-5468,5460,5467,-5445,5461,5451,-5469,5469,5432,-5462,5469,5462,-5433,5448,5462,-5471,5459,5468,-5452,5471,5445,-5464,5472,5463,-5453,5472,5452,-5454,5464,5447,-5474,5465,5448,-5471,5445,5471,-5467,5458,5457,-5467,5459,5467,-5469,5469,5470,-5463,5474,5475,-5477,5477,5475,-5475,5476,5475,-5479,5474,5476,-5480,5477,5480,-5476,5474,5481,-5478,5478,5475,-5483,5476,5478,-5484,5476,5484,-5480,5485,5474,-5480,5477,5486,-5481,5480,5487,-5476,5485,5481,-5475,5477,5481,-5489,5475,5487,-5483,5478,5482,-5490,5483,5478,-5491,5491,5476,-5484,5484,5476,-5492,5484,5492,-5480,5485,5479,-5493,5477,5493,-5487,5494,5480,-5487,5487,5480,-5496,5481,5485,-5497,5497,5488,-5482,5493,5477,-5489,5482,5487,-5499,5482,5498,-5490,5490,5478,-5490,5499,5483,-5491,5491,5483,-5501,5484,5491,-5502,5484,5502,-5493,5492,5503,-5486,5493,5504,-5487,5494,5495,-5481,5494,5486,-5506,5495,5506,-5488,5496,5485,-5504,5481,5496,-5508,5488,5497,-5509,5507,5497,-5482,5493,5488,-5510,5498,5487,-5507,5489,5498,-5511,5489,5511,-5491,5500,5483,-5500,5499,5490,-5513,5513,5491,-5501,5501,5491,-5514,5501,5514,-5485,5484,5514,-5503,5492,5502,-5504,5515,5504,-5494,5486,5504,-5506,5495,5494,-5517,5505,5516,-5495,5506,5495,-5518,5503,5518,-5497,5507,5496,-5520,5508,5497,-5521,5509,5488,-5509,5520,5497,-5508,5493,5509,-5522,5498,5506,-5518,5498,5522,-5511,5489, +5510,-5524,5511,5489,-5524,5512,5490,-5512,5524,5500,-5500,5525,5499,-5513,5500,5526,-5514,5501,5513,-5528,5501,5528,-5515,5518,5502,-5515,5503,5502,-5519,5515,5529,-5505,5515,5493,-5522,5530,5505,-5505,5531,5495,-5517,5505,5532,-5517,5517,5495,-5532,5496,5518,-5534,5496,5533,-5520,5534,5507,-5520,5535,5508,-5521,5536,5509,-5509,5535,5520,-5508,5536,5521,-5510,5498,5517,-5523,5522,5537,-5511,5523,5510,-5538,5511,5523,-5539,5512,5511,-5540,5526,5500,-5525,5524,5499,-5541,5499,5525,-5542,5525,5512,-5543,5526,5527,-5514,5501,5527,-5529,5528,5543,-5515,5518,5514,-5544,5515,5544,-5530,5529,5530,-5505,5521,5545,-5516,5505,5530,-5547,5531,5516,-5533,5505,5546,-5533,5517,5531,-5548,5533,5518,-5544,5533,5548,-5520,5535,5507,-5535,5534,5519,-5549,5508,5535,-5550,5550,5536,-5509,5521,5536,-5546,5517,5551,-5523,5522,5551,-5538,5523,5537,-5553,5523,5552,-5539,5539,5511,-5539,5512,5539,-5543,5526,5524,-5541,5499,5541,-5541,5553,5541,-5526,5525,5542,-5554,5526,5554,-5528,5555,5528,-5528,5528,5556,-5544,5515,5557,-5545,5544,5558,-5530,5530,5529,-5560,5515,5545,-5558,5560,5546,-5531,5531,5532,-5562,5546,5562,-5533,5547,5531,-5562,5563,5517,-5548,5533,5543,-5565,5565,5548,-5534,5549,5535,-5535,5566,5534,-5549,5550,5508,-5550,5536,5550,-5568,5536,5567,-5546,5517,5563,-5552,5537,5551,-5569,5569,5552,-5538,5538,5552,-5571,5539,5538,-5571,5570,5542,-5540,5526,5540,-5572,5541,5572,-5541,5573,5541,-5554,5574,5553,-5543,5571,5554,-5527,5527,5554,-5576,5555,5556,-5529,5555,5527,-5576,5564,5543,-5557,5576,5544,-5558,5544,5577,-5559,5529,5558,-5560,5530,5559,-5561,5567,5557,-5546,5560,5578,-5547,5532,5562,-5562,5546,5579,-5563,5547,5561,-5581,5563,5547,-5582,5565,5533,-5565,5582,5548,-5566,5549,5534,-5567,5566,5548,-5584,5550,5549,-5585,5550,5585,-5568,5563,5568,-5552,5537,5568,-5587,5587,5552,-5570,5537,5586,-5570,5587,5570,-5553,5574,5542,-5571,5588,5571,-5541,5541,5589,-5573,5572,5588,-5541,5573,5590,-5542,5553,5591,-5574,5574,5591,-5554,5592,5554,-5572,5554,5592,-5576,5555,5593,-5557,5594,5555,-5576,5556,5595,-5565,5576,5577,-5545,5596,5576, +-5558,5597,5558,-5578,5559,5558,-5599,5559,5598,-5561,5567,5585,-5558,5560,5599,-5579,5578,5579,-5547,5600,5561,-5563,5562,5579,-5602,5561,5600,-5581,5580,5581,-5548,5568,5563,-5582,5602,5565,-5565,5548,5582,-5584,5582,5565,-5604,5566,5604,-5550,5583,5605,-5567,5584,5549,-5605,5550,5584,-5607,5550,5607,-5586,5608,5586,-5569,5609,5587,-5570,5608,5569,-5587,5570,5587,-4084,5570,5610,-5575,5588,5611,-5572,5589,5541,-5591,5589,5612,-5573,5572,5612,-5589,5573,5613,-5591,5573,5591,-5614,5614,5591,-5575,5592,5571,-5612,5575,5592,-5616,5594,5593,-5556,5595,5556,-5594,5575,5615,-5595,5595,5602,-5565,5616,5577,-5577,5596,5616,-5577,5596,5557,-5586,5597,5598,-5559,5597,5577,-5618,5560,5598,-5619,5618,5599,-5561,5619,5578,-5600,5579,5578,-5620,5562,5620,-5601,5601,5579,-5622,5601,5620,-5563,5580,5600,-5623,5623,5581,-5581,5568,5581,-5625,5603,5565,-5603,5625,5583,-5583,5582,5603,-5626,5566,5605,-5605,5626,5605,-5584,5604,5627,-5585,5606,5584,-5628,5606,5607,-5551,5628,5585,-5608,5608,5568,-5630,5609,5630,-5588,5569,5631,-5610,5608,5631,-5570,5587,5630,-4084,4083,5610,-5571,5574,5610,-5615,5588,5612,-5612,5632,5589,-5591,5612,5589,-5634,5613,5634,-5591,5591,5635,-5614,5636,5591,-5615,5592,5611,-5638,5637,5615,-5593,5594,5638,-5594,5595,5593,-5640,5640,5594,-5616,5641,5602,-5596,5616,5617,-5578,5596,5642,-5617,5643,5596,-5586,5644,5598,-5598,5617,5645,-5598,5598,5646,-5619,5599,5618,-5648,5599,5648,-5620,5619,5621,-5580,5620,5649,-5601,5650,5601,-5622,5601,5650,-5621,5649,5622,-5601,5623,5580,-5623,5623,5624,-5582,5629,5568,-5625,5603,5602,-5652,5583,5625,-5627,5603,5652,-5626,5605,5653,-5605,5626,5654,-5606,5604,5655,-5628,5606,5627,-5657,5606,5657,-5608,5643,5585,-5629,5628,5607,-5658,5608,5629,-5659,5609,4085,-5631,5631,4053,-5610,5659,5631,-5609,4085,4083,-5631,4083,5660,-5611,5660,5614,-5611,5612,5661,-5612,5589,5632,-5634,5632,5590,-5635,5662,5612,-5634,5613,5663,-5635,5635,5591,-5637,5613,5635,-5665,5636,5614,-5666,5611,5661,-5638,5666,5615,-5638,5594,5640,-5639,5639,5593,-5639,5639,5641,-5596,5640,5615,-5668,5668,5602,-5642, +5617,5616,-5643,5642,5596,-5670,5669,5596,-5644,5598,5644,-5647,5644,5597,-5671,5617,5671,-5646,5597,5645,-5671,5646,5672,-5619,5647,5618,-5674,5599,5647,-5649,5648,5621,-5620,5650,5649,-5621,5650,5621,-5675,5675,5622,-5650,5622,5675,-5624,5623,5676,-5625,5677,5629,-5625,5651,5602,-5669,5651,5652,-5604,5626,5625,-5679,5652,5678,-5626,5605,5654,-5654,5653,5655,-5605,5626,5679,-5655,5680,5627,-5656,5627,5680,-5657,5657,5606,-5657,5628,5681,-5644,5628,5657,-5683,5629,5683,-5659,5659,5608,-5659,5609,4014,-4086,5631,5659,-4054,5609,4053,-4015,4108,5660,-4084,5665,5614,-5661,5612,5662,-5662,5684,5633,-5633,5632,5634,-5685,5662,5633,-5686,5613,5664,-5664,5663,5686,-5635,5687,5635,-5637,5688,5664,-5636,5689,5636,-5666,5661,5666,-5638,5667,5615,-5667,5640,5690,-5639,5639,5638,-5692,5668,5641,-5640,5692,5640,-5668,5617,5642,-5672,5669,5693,-5643,5669,5643,-5682,5672,5646,-5645,5670,5694,-5645,5671,5695,-5646,5645,5695,-5671,5673,5618,-5673,5673,5696,-5648,5647,5697,-5649,5648,5674,-5622,5650,5698,-5650,5674,5699,-5651,5700,5675,-5650,5623,5675,-5702,5623,5702,-5677,5624,5676,-5678,5629,5677,-5703,5651,5668,-5704,5651,5704,-5653,5705,5626,-5679,5652,5706,-5679,5707,5653,-5655,5653,5707,-5656,5705,5679,-5627,5654,5679,-5709,5680,5655,-5708,5656,5680,-5710,5656,5682,-5658,5710,5681,-5629,5682,5711,-5629,5629,5702,-5684,5683,4129,-5659,5659,5658,-4130,5659,4082,-4054,4084,5660,-4109,5660,4084,-5666,5712,5661,-5663,5633,5684,-5714,5686,5684,-5635,5713,5685,-5634,5662,5685,-5713,5663,5664,-5715,5714,5686,-5664,5688,5635,-5688,5687,5636,-5690,5715,5664,-5689,5665,4079,-5690,5692,5690,-5641,5690,5691,-5639,5691,5716,-5640,5668,5639,-5704,5642,5717,-5672,5669,5710,-5694,5717,5642,-5694,5710,5669,-5682,5672,5644,-5695,5694,5670,-5719,5671,5719,-5696,5670,5695,-5719,5673,5672,-5721,5696,5673,-5722,5697,5647,-5697,5648,5697,-5675,5650,5722,-5699,5698,5700,-5650,5674,5723,-5700,5699,5722,-5651,5675,5700,-5725,5724,5701,-5676,5702,5623,-5702,5676,5702,-5678,5651,5703,-5726,5704,5651,-5726,5726,5652,-5705,5705,5678,-5728,5726,5706,-5653,5706, +5727,-5679,5707,5654,-5709,5728,5679,-5706,5679,5728,-5709,5680,5707,-5730,5709,5680,-5730,5709,5730,-5657,5731,5682,-5657,5711,5710,-5629,5732,5711,-5683,5733,5683,-5703,5734,4129,-5684,4129,4082,-5660,5665,4084,-4080,5684,5735,-5714,5686,5736,-5685,5713,5737,-5686,5712,5685,-5739,5714,5664,-5716,5736,5686,-5715,5688,5687,-5740,5740,5687,-5690,5688,5741,-5716,4079,3971,-5690,5692,5742,-5691,5691,5690,-5744,5691,5743,-5717,5716,5703,-5640,5671,5717,-5745,5745,5693,-5711,5746,5717,-5694,5672,5694,-5721,5747,5694,-5719,5671,5744,-5720,5695,5719,-5749,5748,5718,-5696,5673,5720,-5750,5673,5749,-5722,5750,5696,-5722,5750,5697,-5697,5697,5723,-5675,5722,5751,-5699,5698,5752,-5701,5699,5723,-5723,5753,5724,-5701,5724,5754,-5702,5701,5733,-5703,5755,5725,-5704,5756,5704,-5726,5726,5704,-5758,5758,5705,-5728,5759,5706,-5727,5706,5760,-5728,5761,5707,-5709,5728,5705,-5759,5762,5708,-5729,5763,5729,-5708,5764,5709,-5730,5730,5709,-5766,5656,5730,-5732,5731,5732,-5683,5710,5711,-5733,5733,5734,-5684,4154,4129,-5735,5735,5684,-5737,5713,5735,-5767,5737,5713,-5768,5737,5738,-5686,5736,5714,-5716,5739,5687,-5741,5741,5688,-5740,5689,3971,-5741,5768,5715,-5742,5742,5743,-5691,5716,5743,-5770,5716,5755,-5704,5746,5744,-5718,5770,5693,-5746,5732,5745,-5711,5746,5693,-5772,5720,5694,-5773,5694,5747,-5773,5773,5747,-5719,5719,5744,-5775,5719,5774,-5749,5718,5748,-5776,5720,5776,-5750,5721,5749,-5778,5778,5750,-5722,5779,5697,-5751,5723,5697,-5780,5751,5722,-5781,5698,5751,-5753,5753,5700,-5753,5722,5723,-5781,5781,5724,-5754,5754,5724,-5783,5733,5701,-5755,5755,5756,-5726,5704,5756,-5758,5759,5726,-5758,5758,5727,-5784,5760,5706,-5760,5760,5783,-5728,5763,5707,-5762,5761,5708,-5763,5758,5762,-5729,5764,5729,-5764,5765,5709,-5765,5784,5730,-5766,5730,5784,-5732,5732,5731,-5786,5734,5733,-5787,5734,5786,-4155,5735,5736,-5767,5713,5766,-5788,5787,5767,-5714,5788,5737,-5768,5736,5715,-5769,5740,5789,-5740,5741,5739,-5791,3971,4044,-5741,5768,5741,-5792,5755,5716,-5770,5746,5792,-5745,5770,5771,-5694,5770,5745,-5794,5794,5745,-5733,5746,5771, +-5796,5720,5772,-5797,5797,5772,-5748,5798,5747,-5774,5773,5718,-5776,5744,5792,-5775,5774,5775,-5749,5776,5720,-5797,5776,5799,-5750,5799,5777,-5750,5721,5777,-5779,5750,5778,-5801,5800,5779,-5751,5780,5723,-5780,5780,5801,-5752,5753,5752,-5752,5781,5782,-5725,4216,5781,-5754,5786,5754,-5783,5733,5754,-5787,5758,5783,-5803,5760,5759,-5804,5760,5804,-5784,5761,5805,-5764,5762,5806,-5762,5758,5802,-5763,5807,5764,-5764,5808,5765,-5765,5784,5765,-5810,5785,5731,-5785,5785,5794,-5733,4171,4154,-5787,5810,5766,-5737,5810,5787,-5767,5767,5787,-5789,5768,5810,-5737,5789,5740,-4045,5739,5789,-5812,5739,5811,-5791,5791,5741,-5791,5812,5768,-5792,5746,5813,-5793,5795,5771,-5771,5745,5794,-5794,5814,5770,-5794,5813,5746,-5796,5815,5796,-5773,5797,5815,-5773,5798,5797,-5748,5773,5816,-5799,5773,5775,-5818,5818,5774,-5793,5819,5775,-5775,5776,5796,-5821,5776,5820,-5800,5821,5777,-5800,5778,5777,-5822,5821,5800,-5779,5800,5822,-5780,5780,5779,-5823,5780,5822,-5802,5823,5751,-5802,5751,5824,-5754,5781,4197,-5783,4197,5781,-4217,5753,5824,-4217,5786,5782,-4198,5825,5802,-5784,5803,5804,-5761,5825,5783,-5805,5761,5806,-5806,5807,5763,-5806,5762,5826,-5807,5826,5762,-5803,5764,5807,-5809,5809,5765,-5809,5827,5784,-5810,5827,5785,-5785,5785,5828,-5795,4171,5786,-4198,5787,5810,-5830,5788,5787,-5831,5831,5810,-5769,5789,4044,-5833,5833,5811,-5790,5790,5811,-5834,5790,5834,-5792,5812,5831,-5769,5835,5812,-5792,5836,5792,-5814,5814,5795,-5771,5794,5837,-5794,5838,5814,-5794,5839,5813,-5796,5796,5815,-5841,5815,5797,-5842,5841,5797,-5799,5816,5773,-5818,5841,5798,-5817,5817,5775,-5843,5843,5774,-5819,5836,5818,-5793,5819,5842,-5776,5819,5774,-5844,5796,5840,-5821,5799,5820,-5841,5844,5821,-5800,5821,5845,-5801,5822,5800,-5847,5801,5822,-5848,5751,5823,-5825,5823,5801,-5849,5824,5823,-4217,5826,5802,-5826,5849,5805,-5807,5805,5850,-5808,5849,5806,-5827,5807,5851,-5809,5852,5809,-5809,5853,5827,-5810,5828,5785,-5828,5794,5828,-5838,5810,5831,-5830,5829,5830,-5788,5788,5830,-5855,4044,4046,-5833,5789,5832,-5856,5833,5789,-5856,5790,5833,-5835, +5791,5834,-5857,5857,5831,-5813,5857,5812,-5836,5835,5791,-5857,5813,5839,-5837,5839,5795,-5815,5837,5838,-5794,5814,5838,-5859,5859,5840,-5816,5815,5841,-5861,5816,5817,-5862,5816,5862,-5842,5817,5842,-5862,5863,5843,-5819,5818,5836,-5865,5865,5842,-5820,5819,5843,-5867,5844,5799,-5841,5844,5867,-5822,5821,5867,-5846,5800,5845,-5847,5846,5847,-5823,5801,5847,-5849,5848,5868,-5824,5823,5868,-4217,5869,5826,-5826,5805,5849,-5851,5807,5850,-5852,5849,5826,-5870,5808,5851,-5871,5852,5853,-5810,5852,5808,-5871,5871,5827,-5854,5827,5872,-5829,5873,5837,-5829,5829,5831,-5858,5829,5874,-5831,5875,5854,-5831,5832,4046,-5877,5832,5877,-5856,5833,5855,-5878,5878,5834,-5834,5856,5834,-5879,5857,5835,-5880,5879,5835,-5857,5836,5839,-5881,5881,5839,-5815,5858,5838,-5838,5814,5858,-5882,5882,5840,-5860,5859,5815,-5861,5883,5860,-5842,5816,5861,-5863,5884,5841,-5863,5885,5861,-5843,5863,5866,-5844,5864,5863,-5819,5836,5880,-5865,5865,5886,-5843,5865,5819,-5888,5887,5819,-5867,5882,5844,-5841,5888,5867,-5845,5845,5867,-5890,5845,5889,-5847,5846,5890,-5848,5848,5847,-5892,5868,5848,-5893,5868,4198,-4217,5850,5849,-5894,5851,5850,-5895,5895,5849,-5870,5896,5870,-5852,5897,5853,-5853,5898,5852,-5871,5827,5871,-5873,5899,5871,-5854,5873,5828,-5873,5873,5858,-5838,5857,5900,-5830,5900,5874,-5830,5874,5875,-5831,4047,5876,-4047,5901,5832,-5877,5832,5901,-5878,5878,5833,-5878,5856,5878,-5903,5857,5879,-5904,5904,5879,-5857,5905,5880,-5840,5839,5881,-5906,5906,5881,-5859,5882,5859,-5861,5907,5860,-5884,5883,5841,-5885,5861,5908,-5863,5909,5884,-5863,5885,5908,-5862,5885,5842,-5887,5910,5866,-5864,5911,5863,-5865,5864,5880,-5913,5886,5865,-5914,5865,5887,-5914,5887,5866,-5915,5844,5882,-5916,5888,5889,-5868,5844,5916,-5889,5917,5846,-5890,5846,5918,-5891,5891,5847,-5891,5891,5919,-5849,5892,5848,-5921,4198,5868,-5893,5849,5895,-5894,5893,5921,-5851,5894,5850,-5922,5894,5922,-5852,5898,5870,-5897,5896,5851,-5923,5899,5853,-5898,5852,5898,-5898,5899,5872,-5872,5873,5872,-5924,5873,5924,-5859,5903,5900,-5858,5925,5874,-5901,5875,5874,-5926,5926, +5876,-4048,5926,5901,-5877,5927,5877,-5902,5878,5877,-5928,5927,5902,-5879,5904,5856,-5903,5903,5879,-5929,5929,5879,-5905,5912,5880,-5906,5881,5930,-5906,5930,5881,-5907,5906,5858,-5925,5915,5882,-5861,5931,5860,-5908,5907,5883,-5933,5884,5932,-5884,5909,5862,-5909,5909,5933,-5885,5908,5885,-5935,5935,5885,-5887,5910,5936,-5867,5911,5910,-5864,5911,5864,-5913,5886,5913,-5936,5887,5937,-5914,5866,5936,-5915,5938,5887,-5915,5844,5915,-5917,5939,5889,-5889,5916,5940,-5889,5918,5846,-5918,5939,5917,-5890,5918,5941,-5891,5890,5942,-5892,5891,5942,-5920,5920,5848,-5920,4198,5892,-5921,5893,5895,-5944,5921,5893,-5945,5894,5921,-5923,5945,5898,-5897,5896,5922,-5947,5899,5897,-5946,5945,5897,-5899,5872,5899,-5924,5923,5947,-5874,5924,5873,-5948,5903,5948,-5901,5948,5925,-5901,5949,5875,-5926,5926,4047,-4011,5901,5926,-5951,5901,5950,-5928,5927,5951,-5903,5902,5952,-5905,5879,5953,-5929,5954,5903,-5929,5879,5929,-5954,5929,5904,-5953,5905,5955,-5913,5905,5930,-5956,5930,5906,-5957,5957,5906,-5925,5931,5915,-5861,5931,5907,-5959,5932,5959,-5908,5884,5933,-5933,5909,5908,-5961,5960,5933,-5910,5885,5935,-5935,5960,5908,-5935,5961,5936,-5911,5961,5910,-5912,5911,5912,-5963,5913,5937,-5936,5963,5937,-5888,5936,5964,-5915,5965,5887,-5939,5938,5914,-5965,5958,5916,-5916,5940,5939,-5889,5940,5916,-5967,5967,5918,-5918,5917,5939,-5968,5918,5968,-5942,5890,5941,-5943,5969,5919,-5943,4199,5920,-5920,4198,5920,-4200,5970,5893,-5944,5970,5944,-5894,5971,5921,-5945,5971,5922,-5922,5945,5896,-5973,5973,5946,-5923,5946,5972,-5897,5899,5945,-5975,5923,5899,-5976,5923,5976,-5948,5957,5924,-5948,5954,5948,-5904,5948,5977,-5926,5925,5978,-5950,5926,4010,-4078,5979,5950,-5927,5927,5950,-5952,5902,5951,-5981,5902,5980,-5953,5981,5928,-5954,5954,5928,-5982,5929,5982,-5954,5929,5952,-5983,5912,5955,-5984,5930,5984,-5956,5957,5956,-5907,5930,5956,-5985,5915,5931,-5959,5958,5907,-5960,5985,5959,-5933,5985,5932,-5934,5960,5986,-5934,5935,5987,-5935,5934,5988,-5961,5989,5936,-5962,5961,5911,-5991,5983,5962,-5913,5990,5911,-5963,5935,5937,-5992,5937,5963, +-5993,5965,5963,-5888,5989,5964,-5937,5938,5993,-5966,5938,5964,-5994,5958,5966,-5917,5994,5939,-5941,5995,5940,-5967,5918,5967,-5969,5996,5967,-5940,5997,5941,-5969,5941,5969,-5943,5998,5919,-5970,4199,5919,-4218,5970,5999,-5945,5971,5944,-6000,5973,5922,-5972,5945,5972,-5975,5973,6000,-5947,5946,6001,-5973,5975,5899,-5975,5923,5975,-5977,5976,6002,-5948,5957,5947,-6003,6003,5948,-5955,5977,5948,-6005,5978,5925,-5978,5978,6005,-5950,5926,4077,-6007,5979,5951,-5951,6006,5979,-5927,5979,5980,-5952,5980,6007,-5953,6008,5981,-5954,6003,5954,-5982,6008,5953,-5983,6009,5982,-5953,5983,5955,-6011,6010,5955,-5985,6011,5956,-5958,5956,6012,-5985,5958,5959,-6014,5985,6014,-5960,5985,5933,-6015,5988,5986,-5961,5986,6014,-5934,5935,6015,-5988,6016,5934,-5988,5988,5934,-6017,5989,5961,-6018,6017,5961,-5991,5983,6018,-5963,5990,5962,-6020,5937,5992,-5992,5991,6015,-5936,6020,5992,-5964,6020,5963,-5966,5964,5989,-6022,5965,5993,-6023,5993,5964,-6022,5958,6013,-5967,5939,5994,-5997,6023,5994,-5941,5995,6023,-5941,6024,5995,-5967,5996,5968,-5968,6025,5941,-5998,5968,6026,-5998,5969,5941,-6026,4217,5919,-5999,5998,5969,-4219,5970,6027,-6000,5999,5973,-5972,5972,6028,-5975,6029,6000,-5974,6000,6001,-5947,5972,6001,-6031,5974,6028,-5976,6031,5976,-5976,6002,5976,-6032,5957,6002,-6033,5948,6003,-6034,6033,6004,-5949,5978,5977,-6005,5978,6034,-6006,6006,4077,-4044,6006,6035,-5980,5979,6035,-5981,5980,6035,-6008,6007,6009,-5953,6036,5981,-6009,6037,6003,-5982,6036,6008,-5983,6036,5982,-6010,6010,6038,-5984,6012,6010,-5985,6011,6012,-5957,6011,5957,-6040,6013,5959,-6041,6014,6040,-5960,5988,6041,-5987,5986,6042,-6015,6043,5987,-6016,6043,6016,-5988,5988,6016,-6044,6044,5989,-6018,6017,5990,-6045,6018,5983,-6039,6019,5962,-6019,5990,6019,-6046,6046,5991,-5993,5991,6047,-6016,6048,5992,-6021,6049,6020,-5966,5989,6044,-6022,6022,5993,-6051,5965,6022,-6050,6021,6051,-5994,6024,5966,-6014,5996,5994,-6024,6052,6023,-5996,6024,6053,-5996,5968,5996,-6027,5997,6054,-6026,6055,5997,-6027,6025,6054,-5970,5998,4218,-4218,6054,4218,-5970,6056,5999,-6028, +5973,5999,-6030,5972,6030,-6029,6057,6000,-6030,6058,6001,-6001,6030,6001,-6060,6031,5975,-6029,6002,6031,-6061,6002,6061,-6033,6039,5957,-6033,6062,6033,-6004,6004,6033,-6064,5978,6004,-6035,6005,6034,-6065,6065,6006,-4044,6066,6035,-6007,6035,6066,-6008,6007,6067,-6010,6037,5981,-6037,6037,6068,-6004,6036,6009,-6070,6070,6038,-6011,6010,6012,-6071,6012,6011,-6072,6011,6039,-6073,6013,6040,-6074,6042,6040,-6015,6074,6041,-5989,6042,5986,-6042,6015,6075,-6044,5988,6043,-6077,6077,6044,-5991,6018,6038,-6079,6018,6045,-6020,6077,5990,-6046,5991,6046,-6048,6046,5992,-6080,6015,6047,-6076,6048,6079,-5993,6080,6048,-6021,6049,6081,-6021,6044,6082,-6022,6051,6050,-5994,6081,6022,-6051,6081,6049,-6023,6021,6082,-6052,6024,6013,-6074,5996,6023,-6084,6052,6084,-6024,6052,5995,-6054,6024,6085,-6054,6083,6026,-5997,6054,5997,-6056,6055,6026,-6087,4218,6054,-6088,6056,6029,-6000,6056,6027,-6089,6089,6028,-6031,6057,6058,-6001,6057,6029,-6091,6001,6058,-6092,6059,6001,-6092,6089,6030,-6060,6089,6031,-6029,6031,6089,-6061,6061,6002,-6061,6092,6032,-6062,6093,6039,-6033,6062,6094,-6034,6062,6003,-6069,6063,6033,-6096,6096,6004,-6064,6096,6034,-6005,6034,6097,-6065,6066,6006,-6066,6065,4043,-4079,6007,6066,-6068,6067,6069,-6010,6037,6036,-6099,6068,6037,-6100,6036,6069,-6099,6070,6100,-6039,6012,6071,-6071,6071,6011,-6073,6039,6093,-6073,6042,6073,-6041,6074,6101,-6042,6076,6074,-5989,6042,6041,-6103,6043,6075,-6104,6043,6103,-6077,6044,6077,-6083,6038,6100,-6079,6018,6078,-6046,6104,6077,-6046,6105,6047,-6047,6046,6079,-6107,6105,6075,-6048,6107,6079,-6049,6107,6048,-6081,6080,6020,-6082,6051,6108,-6051,6109,6081,-6051,6051,6082,-6111,6111,6024,-6074,6084,6083,-6024,6052,6112,-6085,6052,6053,-6114,6085,6024,-6112,6085,6113,-6054,6026,6083,-6087,6055,6114,-6055,6055,6086,-6116,6087,6054,-6115,4177,4218,-6088,6029,6056,-6091,6090,6056,-6089,6116,6058,-6058,6117,6057,-6091,6118,6091,-6059,6091,6119,-6060,6089,6059,-6121,6061,6060,-6090,6093,6032,-6093,6092,6061,-6122,6122,6094,-6063,6094,6095,-6034,6123,6062,-6069,6063,6095,-6125,6096, +6063,-6125,6096,6097,-6035,6125,6064,-6098,6066,6065,-6127,6065,4078,-6127,6066,6126,-6068,6069,6067,-6128,6128,6037,-6099,6128,6099,-6038,6123,6068,-6100,6129,6098,-6070,6130,6100,-6071,6070,6071,-6132,6071,6072,-6132,6072,6093,-6133,6102,6073,-6043,6101,6074,-6134,6101,6102,-6042,6133,6074,-6077,6105,6103,-6076,6134,6076,-6104,6077,6135,-6083,6078,6100,-6137,6104,6045,-6079,6135,6077,-6105,6046,6106,-6106,6137,6106,-6080,6079,6107,-6138,6138,6107,-6081,6080,6081,-6140,6051,6110,-6109,6140,6050,-6109,6139,6081,-6110,6140,6109,-6051,6110,6082,-6142,6102,6111,-6074,6084,6086,-6084,6052,6113,-6113,6112,6142,-6085,6085,6111,-6144,6085,6144,-6114,6055,6115,-6115,6115,6086,-6146,6087,6114,-4178,6117,6090,-6089,6116,6118,-6059,6146,6116,-6058,6117,6146,-6058,6118,6147,-6092,6119,6091,-6148,6119,6120,-6060,6061,6089,-6121,6148,6093,-6093,6061,6120,-6122,6148,6092,-6122,6122,6095,-6095,6122,6062,-6124,6149,6124,-6096,6096,6124,-6151,6097,6096,-6151,6150,6125,-6098,6151,6126,-4079,6127,6067,-6127,6127,6152,-6070,6129,6128,-6099,6153,6099,-6129,6123,6099,-6155,6129,6069,-6156,6130,6156,-6101,6131,6130,-6071,6131,6072,-6133,6132,6093,-6158,6101,6133,-6159,6159,6102,-6102,6133,6076,-6135,6105,6160,-6104,6160,6134,-6104,6135,6141,-6083,6100,6156,-6137,6161,6078,-6137,6104,6078,-6136,6106,6160,-6106,6162,6106,-6138,6107,6163,-6138,6138,6164,-6108,6080,6139,-6139,6165,6108,-6111,6165,6140,-6109,6166,6139,-6110,6140,6167,-6110,6141,6168,-6111,6169,6111,-6103,6084,6145,-6087,6113,6144,-6113,6112,6144,-6143,6170,6084,-6143,6111,6169,-6144,6143,6144,-6086,6115,6171,-6115,6115,6145,-6173,4177,6114,-6174,6116,6146,-6119,6117,6174,-6147,6175,6147,-6119,6176,6119,-6148,6120,6119,-6122,6157,6093,-6149,6177,6148,-6122,6178,6095,-6123,6154,6122,-6124,6149,6179,-6125,6149,6095,-6179,6150,6124,-6180,6125,6150,-6181,6151,6127,-6127,4078,4076,-6152,6151,6152,-6128,6155,6069,-6153,6181,6128,-6130,6153,6154,-6100,6153,6128,-6182,6129,6155,-6183,6130,6183,-6157,6131,6184,-6131,6131,6132,-6185,6132,6157,-6186,6133,6186,-6159,6158,6159,-6102,6169,6102, +-6160,6133,6134,-6188,6160,6187,-6135,6141,6135,-6079,6161,6136,-6157,6078,6161,-6189,6106,6189,-6161,6162,6189,-6107,6137,6190,-6163,6163,6107,-6165,6163,6191,-6138,6138,6192,-6165,6138,6139,-6167,6193,6165,-6111,6165,6167,-6141,6167,6166,-6110,6141,6188,-6169,6193,6110,-6169,6145,6084,-6171,6143,6142,-6145,6194,6170,-6143,6169,6195,-6144,6171,6115,-6173,6196,6114,-6172,6197,6172,-6146,6173,6114,-6197,4177,6173,-6199,6146,6175,-6119,6146,6174,-6176,6147,6175,-6200,6119,6176,-6201,6176,6147,-6202,6121,6119,-6201,6148,6202,-6158,6148,6177,-6204,6121,6200,-6178,6178,6122,-6205,6154,6204,-6123,6205,6179,-6150,6178,6205,-6150,6150,6179,-6181,6206,6125,-6181,6151,4076,-4106,6152,6151,-4129,6155,6152,-6208,6181,6129,-6183,6208,6154,-6154,6153,6181,-6210,6210,6182,-6156,6184,6183,-6131,6211,6156,-6184,6184,6132,-6186,6212,6185,-6158,6133,6213,-6187,6186,6159,-6159,6159,6214,-6170,6133,6187,-6214,6187,6160,-6190,6141,6078,-6189,6215,6161,-6157,6161,6216,-6189,6162,6217,-6190,6190,6137,-6192,6190,6217,-6163,6163,6164,-6219,6163,6218,-6192,6138,6219,-6193,6220,6164,-6193,6138,6166,-6222,6165,6193,-6223,6223,6167,-6166,6224,6166,-6168,6168,6188,-6217,6225,6193,-6169,6145,6170,-6198,6195,6142,-6144,6194,6197,-6171,6195,6194,-6143,6169,6226,-6196,6171,6172,-6228,6171,6228,-6197,6229,6172,-6198,6173,6196,-6199,4177,6198,-4139,6230,6175,-6175,6175,6230,-6200,6147,6199,-6202,6176,6231,-6201,6231,6176,-6202,6148,6232,-6203,6202,6212,-6158,6177,6231,-6204,6203,6232,-6149,6231,6177,-6201,6178,6204,-6234,6208,6204,-6155,6234,6179,-6206,6178,6233,-6206,6235,6180,-6180,6206,6180,-6237,6151,4105,-4129,6152,4128,-6238,6237,6207,-6153,6210,6155,-6208,6181,6182,-6210,6153,6209,-6209,6238,6182,-6211,6184,6239,-6184,6211,6215,-6157,6183,6240,-6212,6184,6185,-6240,6185,6212,-6242,6186,6213,-6243,6186,6242,-6160,6214,6159,-6243,6226,6169,-6215,6213,6187,-6244,6187,6189,-6245,6245,6161,-6216,6161,6246,-6217,6189,6217,-6245,6191,6247,-6191,6190,6247,-6218,6248,6218,-6165,6249,6191,-6219,6221,6219,-6139,6250,6192,-6220,6164,6220,-6252,6220,6192,-6251, +6221,6166,-6253,6193,6253,-6223,6165,6222,-6224,6224,6167,-6224,6252,6166,-6225,6246,6168,-6217,6193,6225,-6254,6246,6225,-6169,6254,6197,-6195,6194,6195,-6227,6227,6172,-6230,6171,6227,-6229,6255,6196,-6229,6256,6229,-6198,6198,6196,-6256,4138,6198,-6258,6258,6230,-6175,6199,6230,-6202,6201,6259,-6232,6202,6232,-6261,6202,6260,-6213,6261,6203,-6232,6203,6262,-6233,6233,6204,-6264,6208,6263,-6205,6235,6179,-6235,6234,6205,-6265,6205,6233,-6266,6236,6180,-6236,6266,6237,-4129,6207,6237,-6267,6267,6210,-6208,6182,6238,-6210,6208,6209,-6269,6210,6269,-6239,6183,6239,-6241,6211,6270,-6216,6211,6240,-6271,6185,6271,-6240,6260,6241,-6213,6185,6241,-6272,6242,6213,-6273,6214,6242,-6274,6226,6214,-6255,6243,6187,-6245,6272,6213,-6244,6245,6246,-6162,6245,6215,-6271,6274,6244,-6218,6249,6247,-6192,6275,6217,-6248,6276,6218,-6249,6164,6251,-6249,6276,6249,-6219,6219,6221,-6278,6250,6219,-6278,6251,6220,-6279,6250,6279,-6221,6280,6221,-6253,6222,6253,-6282,6281,6223,-6223,6224,6223,-6283,6280,6252,-6225,6225,6283,-6254,6283,6225,-6247,6254,6256,-6198,6194,6226,-6255,6227,6229,-6285,6285,6228,-6228,6285,6255,-6229,6284,6229,-6257,6286,6198,-6256,6287,6257,-6199,4138,6257,-4115,6230,6258,-6289,6259,6201,-6231,6261,6231,-6260,6232,6289,-6261,6203,6261,-6291,6203,6290,-6263,6262,6291,-6233,6292,6233,-6264,6208,6293,-6264,6235,6234,-6295,6264,6205,-6266,6264,6295,-6235,6292,6265,-6234,6236,6235,-6295,4151,6266,-4129,6207,6266,-6297,6267,6297,-6211,6267,6207,-6297,6209,6238,-6269,6208,6268,-6294,6210,6297,-6270,6269,6298,-6239,6299,6240,-6240,6240,6300,-6271,6299,6239,-6272,6260,6301,-6242,6241,6301,-6272,6242,6272,-6274,6214,6273,-6303,6214,6302,-6255,6303,6243,-6245,6272,6243,-6304,6246,6245,-6305,6305,6245,-6271,6274,6306,-6245,6217,6275,-6275,6247,6249,-6308,6247,6307,-6276,6276,6248,-6309,6248,6251,-6309,6276,6308,-6250,6309,6277,-6222,6250,6277,-6280,6279,6278,-6221,6251,6278,-6309,6280,6310,-6222,6311,6281,-6254,6281,6282,-6224,6224,6282,-6281,6253,6283,-6313,6246,6313,-6284,6256,6254,-6315,6284,6315,-6228,6227,6315,-6286,6285, +6316,-6256,6284,6256,-6318,6198,6286,-6288,6286,6255,-6317,6257,6287,-4063,4114,6257,-4063,6258,6318,-6289,6288,6319,-6231,6259,6230,-6320,6261,6259,-6321,6289,6232,-6292,6260,6289,-6322,6290,6261,-6323,6291,6262,-6291,6323,6292,-6264,6324,6263,-6294,6234,6295,-6295,6264,6265,-6326,6326,6295,-6265,6325,6265,-6293,6327,6236,-6295,4151,6296,-6267,6297,6267,-6329,6267,6296,-6330,6268,6238,-6299,6324,6293,-6269,6297,6330,-6270,6331,6298,-6270,6240,6299,-6301,6270,6300,-6306,6332,6299,-6272,6260,6321,-6302,6301,6333,-6272,6272,6334,-6274,6302,6273,-6335,6314,6254,-6303,6306,6303,-6245,6303,6335,-6273,6304,6245,-6337,6313,6246,-6305,6336,6245,-6306,6274,6337,-6307,6274,6275,-6339,6307,6249,-6340,6307,6338,-6276,6249,6308,-6340,6277,6309,-6280,6309,6221,-6311,6279,6340,-6279,6278,6341,-6309,6342,6310,-6281,6343,6281,-6312,6311,6253,-6345,6281,6343,-6283,6282,6343,-6281,6345,6312,-6284,6253,6312,-6345,6283,6313,-6347,6256,6314,-6318,6284,6347,-6316,6315,6348,-6286,6348,6316,-6286,6349,6284,-6318,6287,6286,-6317,6287,6350,-4063,6351,6288,-6319,6288,6351,-6320,6320,6259,-6320,6320,6322,-6262,6289,6291,-6353,6353,6321,-6290,6354,6290,-6323,6290,6352,-6292,6355,6292,-6324,6323,6263,-6325,6294,6295,-6357,6326,6264,-6326,6357,6295,-6327,6355,6325,-6293,6358,6327,-6295,6296,4151,-6360,6328,6267,-6330,6328,6360,-6298,6329,6296,-6362,6268,6298,-6363,6268,6362,-6325,6330,6297,-6361,6331,6269,-6331,6362,6298,-6332,6299,6363,-6301,6364,6305,-6301,6299,6332,-6364,6333,6332,-6272,6321,6365,-6302,6333,6301,-6366,6366,6334,-6273,6334,6367,-6303,6302,6367,-6315,6303,6306,-6369,6335,6303,-6369,6272,6335,-6367,6304,6336,-6314,6336,6305,-6365,6274,6338,-6338,6337,6368,-6307,6339,6369,-6308,6370,6338,-6308,6339,6308,-6342,6309,6340,-6280,6309,6310,-6372,6372,6278,-6341,6372,6341,-6279,6342,6373,-6311,6342,6280,-6344,6311,6374,-6344,6375,6311,-6345,6345,6376,-6313,6346,6345,-6284,6376,6344,-6313,6336,6346,-6314,6317,6314,-6378,6378,6347,-6285,6315,6347,-6380,6315,6379,-6349,6316,6348,-6381,6349,6381,-6285,6382,6349,-6318,6287,6316,-6381,6287,6383, +-6351,6384,4062,-6351,6351,6318,-6386,6351,6385,-6320,6320,6319,-6387,6320,6386,-6323,6353,6289,-6353,6321,6353,-6366,6290,6354,-6353,6354,6322,-6388,6355,6323,-6389,6324,6389,-6324,6390,6356,-6296,6358,6294,-6357,6325,6391,-6327,6357,6390,-6296,6392,6357,-6327,6391,6325,-6356,6359,4151,-4154,6296,6359,-6362,6328,6329,-6394,6394,6360,-6329,6395,6329,-6362,6362,6389,-6325,6396,6330,-6361,6396,6331,-6331,6331,6397,-6363,6398,6300,-6364,6399,6364,-6301,6332,6400,-6364,6333,6401,-6333,6333,6365,-6403,6334,6366,-6368,6367,6377,-6315,6368,6403,-6336,6335,6403,-6367,6404,6336,-6365,6405,6337,-6339,6337,6405,-6369,6339,6341,-6370,6369,6370,-6308,6370,6406,-6339,6340,6309,-6408,6373,6371,-6311,6309,6371,-6409,6340,6409,-6373,6372,6410,-6342,6342,6411,-6374,6342,6343,-6413,6311,6413,-6375,6374,6412,-6344,6311,6375,-6414,6375,6344,-6377,6345,6414,-6377,6346,6415,-6346,6336,6416,-6347,6317,6377,-6418,6418,6347,-6379,6381,6378,-6285,6418,6379,-6348,6379,6380,-6349,6349,6419,-6382,6419,6349,-6383,6417,6382,-6318,6380,6383,-6288,6420,6350,-6384,4062,6384,-3989,6420,6384,-6351,6318,6421,-6386,6385,6386,-6320,6322,6386,-6388,6353,6352,-6423,6353,6423,-6366,6422,6352,-6355,6422,6354,-6388,6323,6397,-6389,6355,6388,-6425,6389,6397,-6324,6356,6390,-6426,6426,6358,-6357,6392,6326,-6392,6427,6390,-6358,6392,6428,-6358,6429,6391,-6356,4196,6359,-4154,6430,6361,-6360,6329,6395,-6394,6393,6394,-6329,6394,6396,-6361,6395,6361,-6431,6362,6397,-6390,6331,6396,-6432,6397,6331,-6433,6398,6399,-6301,6398,6363,-6434,6399,6434,-6365,6401,6400,-6333,6400,6435,-6364,6401,6333,-6403,6365,6436,-6403,6366,6437,-6368,6367,6438,-6378,6368,6439,-6404,6403,6437,-6367,6404,6416,-6337,6404,6364,-6435,6440,6405,-6339,6405,6439,-6369,6369,6341,-6411,6369,6441,-6371,6370,6442,-6407,6338,6406,-6444,6408,6407,-6310,6340,6407,-6410,6444,6371,-6374,6444,6408,-6372,6372,6409,-6446,6372,6445,-6411,6342,6412,-6412,6411,6444,-6374,6374,6413,-6447,6412,6374,-6412,6413,6375,-6448,6448,6375,-6377,6345,6415,-6415,6376,6414,-6449,6416,6415,-6347,6449,6417,-6378,6418,6378,-6451, +6381,6450,-6379,6451,6379,-6419,6380,6379,-6452,6381,6419,-6453,6453,6419,-6383,6417,6453,-6383,6383,6380,-6452,6420,6383,-6452,3988,6384,-6455,6384,6420,-6455,6421,6455,-6386,6385,6455,-6387,6455,6387,-6387,6422,6423,-6354,6365,6423,-6437,6422,6387,-6457,6397,6457,-6389,6458,6424,-6389,6429,6355,-6425,6427,6425,-6391,6356,6425,-6427,6459,6358,-6427,6392,6391,-6461,6427,6357,-6429,6461,6428,-6393,6429,6460,-6392,6359,4196,-6431,6393,6395,-6463,6394,6393,-6464,6394,6463,-6397,6430,6464,-6396,6431,6396,-6463,6432,6331,-6432,6397,6432,-6458,6398,6433,-6400,6433,6363,-6436,6465,6434,-6400,6401,6466,-6401,6400,6467,-6436,6401,6402,-6467,6402,6436,-6469,6438,6367,-6438,6449,6377,-6439,6439,6437,-6404,6415,6416,-6405,6469,6404,-6435,6440,6439,-6406,6440,6338,-6444,6369,6410,-6442,6442,6370,-6442,6406,6442,-6471,6443,6406,-6472,6472,6407,-6409,6473,6409,-6408,6444,6472,-6409,6409,6474,-6446,6475,6410,-6446,6444,6411,-6447,6476,6446,-6414,6374,6446,-6412,6448,6447,-6376,6413,6447,-6478,6414,6415,-6479,6448,6414,-6480,6453,6417,-6450,6480,6418,-6451,6381,6481,-6451,6451,6418,-6481,6482,6452,-6420,6381,6452,-6482,6419,6453,-6484,6420,6451,-6485,6454,3989,-3989,6484,6454,-6421,6455,6421,-6486,6485,6387,-6456,6422,6456,-6424,6486,6436,-6424,6387,6487,-6457,6457,6488,-6389,6458,6429,-6425,6458,6388,-6489,6427,6489,-6426,6490,6426,-6426,6491,6459,-6427,6461,6392,-6461,6427,6428,-6493,6493,6428,-6462,6494,6460,-6430,4196,6495,-6431,6395,6496,-6463,6462,6463,-6394,6396,6463,-6463,6464,6430,-6496,6464,6496,-6396,6431,6462,-6498,6432,6431,-6499,6432,6499,-6458,6433,6465,-6400,6500,6433,-6436,6465,6469,-6435,6466,6467,-6401,6467,6501,-6436,6402,6502,-6467,6436,6503,-6469,6468,6502,-6403,6438,6437,-6505,6504,6449,-6439,6439,6505,-6438,6415,6404,-6470,6440,6506,-6440,6443,6507,-6441,6475,6441,-6411,6442,6441,-6509,6442,6509,-6471,6471,6406,-6471,6471,6510,-6444,6472,6473,-6408,6473,6474,-6410,6444,6511,-6473,6512,6445,-6475,6445,6512,-6476,6513,6444,-6447,6513,6446,-6477,6476,6413,-6478,6447,6448,-6480,6514,6477,-6448,6469,6478,-6416,6515, +6414,-6479,6479,6414,-6517,6453,6449,-6518,6480,6450,-6482,6451,6480,-6485,6482,6518,-6453,6483,6482,-6420,6452,6519,-6482,6483,6453,-6518,6520,3989,-6455,6520,6454,-6485,6485,6487,-6388,6456,6486,-6424,6436,6486,-6504,6487,6521,-6457,6457,6522,-6489,6458,6494,-6430,6488,6523,-6459,6427,6524,-6490,6490,6425,-6490,6490,6525,-6427,6491,6526,-6460,6491,6426,-6526,6461,6460,-6528,6493,6492,-6429,6427,6492,-6525,6528,6493,-6462,6527,6460,-6495,6495,4196,-4216,6497,6462,-6497,6495,6529,-6465,6496,6464,-6531,6431,6497,-6499,6432,6498,-6532,6531,6499,-6433,6457,6499,-6523,6433,6532,-6466,6433,6500,-6533,6501,6500,-6436,6465,6533,-6470,6467,6466,-6535,6467,6534,-6502,6502,6535,-6467,6503,6536,-6469,6536,6502,-6469,6537,6504,-6438,6449,6504,-6539,6505,6439,-6507,6537,6437,-6506,6440,6507,-6507,6507,6443,-6511,6441,6475,-6509,6442,6508,-6510,6470,6509,-6540,6471,6470,-6541,6540,6510,-6472,6541,6473,-6473,6474,6473,-6543,6513,6511,-6445,6543,6472,-6512,6544,6512,-6475,6475,6512,-6546,6513,6476,-6512,6476,6477,-6547,6447,6479,-6515,6547,6477,-6515,6469,6548,-6479,6515,6516,-6415,6515,6478,-6550,6479,6516,-6551,6538,6517,-6450,6551,6480,-6482,6484,6480,-6552,6482,6552,-6519,6452,6518,-6554,6554,6482,-6484,6452,6553,-6520,6555,6481,-6520,6483,6517,-6555,6520,3951,-3990,6520,6484,-6557,6557,6487,-6486,6521,6486,-6457,6486,6558,-6504,6487,6559,-6522,6522,6523,-6489,6523,6494,-6459,6560,6489,-6525,6489,6561,-6491,6490,6562,-6526,6491,6563,-6527,6525,6564,-6492,6565,6461,-6528,6492,6493,-6567,6566,6524,-6493,6493,6528,-6568,6528,6461,-6566,6523,6527,-6495,6495,4215,-6569,6496,6569,-6498,6568,6529,-6496,6530,6464,-6530,6569,6496,-6531,6570,6498,-6498,6570,6531,-6499,6531,6571,-6500,6499,6572,-6523,6533,6465,-6533,6532,6500,-6574,6501,6574,-6501,6548,6469,-6534,6466,6535,-6535,6535,6501,-6535,6535,6502,-6537,6536,6503,-6576,6538,6504,-6538,6505,6506,-6577,6538,6537,-6506,6576,6506,-6508,6510,6577,-6508,6475,6545,-6509,6509,6508,-6579,6578,6539,-6510,6470,6539,-6541,6540,6579,-6511,6541,6542,-6474,6472,6580,-6542,6474,6542,-6545,6543,6580, +-6473,6581,6543,-6512,6544,6582,-6513,6582,6545,-6513,6511,6476,-6547,6583,6546,-6478,6479,6584,-6515,6547,6583,-6478,6584,6547,-6515,6548,6585,-6479,6515,6586,-6517,6478,6585,-6550,6549,6587,-6516,6516,6586,-6551,6479,6550,-6585,6517,6538,-6589,6551,6481,-6556,6484,6551,-6557,6552,6482,-6590,6553,6518,-6553,6554,6589,-6483,6590,6519,-6554,6555,6519,-6592,6592,6554,-6518,3952,3951,-6521,6520,6556,-6594,6559,6487,-6558,6521,6558,-6487,6558,6594,-6504,6595,6521,-6560,6522,6596,-6524,6560,6561,-6490,6566,6560,-6525,6562,6490,-6562,6525,6562,-6598,6491,6564,-6564,6525,6597,-6565,6565,6527,-6599,6493,6599,-6567,6600,6567,-6529,6599,6493,-6568,6528,6565,-6602,6527,6523,-6599,6568,4215,-4234,6570,6497,-6570,6568,6602,-6530,6603,6530,-6530,6603,6569,-6531,6531,6570,-6572,6604,6499,-6572,6572,6499,-6605,6572,6596,-6523,6532,6605,-6534,6500,6606,-6574,6573,6607,-6533,6608,6574,-6502,6500,6574,-6607,6533,6609,-6549,6535,6608,-6502,6610,6535,-6537,6594,6575,-6504,6536,6575,-6611,6611,6505,-6577,6538,6505,-6612,6577,6576,-6508,6510,6612,-6578,6545,6578,-6509,6539,6578,-6614,6614,6540,-6540,6540,6615,-6580,6579,6616,-6511,6541,6617,-6543,6580,6617,-6542,6618,6544,-6543,6543,6619,-6581,6619,6543,-6582,6581,6511,-6547,6582,6544,-6621,6582,6621,-6546,6583,6581,-6547,6583,6547,-6623,6547,6584,-6624,6585,6548,-6625,6586,6515,-6588,6549,6585,-6626,6549,6626,-6588,6550,6586,-6628,6550,6628,-6585,6611,6588,-6539,6517,6588,-6593,6555,6556,-6552,6552,6589,-6630,6630,6553,-6553,6589,6554,-6593,6590,6591,-6520,6590,6553,-6631,6555,6591,-6557,6593,3952,-6521,6556,6591,-6594,6595,6558,-6522,6594,6558,-6632,6595,6559,-6633,6633,6523,-6597,6560,6634,-6562,6635,6560,-6567,6562,6561,-6637,6597,6562,-6638,6563,6564,-6639,6639,6564,-6598,6565,6598,-6641,6599,6635,-6567,6641,6567,-6601,6528,6642,-6601,6599,6567,-6644,6640,6601,-6566,6528,6601,-6643,6523,6633,-6599,6568,4233,-6645,6645,6570,-6570,6644,6602,-6569,6603,6529,-6603,6569,6603,-6647,6571,6570,-6605,6572,6604,-6648,6648,6596,-6573,6607,6605,-6533,6609,6533,-6606,6606,6649,-6574,6650,6607,-6574, +6651,6574,-6609,6651,6606,-6575,6609,6624,-6549,6535,6652,-6609,6610,6652,-6536,6594,6653,-6576,6654,6610,-6576,6611,6576,-6656,6655,6576,-6578,6612,6510,-6617,6656,6577,-6613,6545,6621,-6579,6578,6621,-6614,6613,6657,-6540,6540,6614,-6659,6659,6614,-6540,6540,6658,-6616,6615,6616,-6580,6617,6618,-6543,6617,6580,-6661,6618,6620,-6545,6660,6580,-6620,6619,6581,-6662,6620,6662,-6583,6582,6663,-6622,6583,6622,-6582,6622,6547,-6624,6628,6623,-6585,6625,6585,-6625,6586,6587,-6665,6549,6625,-6627,6665,6587,-6627,6586,6664,-6628,6627,6628,-6551,6611,6592,-6589,6666,6629,-6590,6667,6552,-6630,6667,6630,-6553,6589,6592,-6669,6590,6669,-6592,6590,6630,-6671,3952,6593,-3872,6591,6671,-6594,6631,6558,-6596,6594,6631,-6654,6632,6631,-6596,6633,6596,-6673,6634,6560,-6674,6636,6561,-6635,6635,6673,-6561,6636,6674,-6563,6674,6637,-6563,6639,6597,-6638,6638,6564,-6676,6639,6675,-6565,6640,6598,-6677,6635,6599,-6678,6567,6641,-6644,6641,6600,-6679,6600,6642,-6680,6599,6643,-6678,6601,6640,-6681,6681,6642,-6602,6676,6598,-6634,6644,4233,-6683,6570,6645,-6684,6645,6569,-6647,6602,6644,-6683,6602,6684,-6604,6603,4318,-6647,6685,6604,-6571,6604,6685,-6648,6648,6572,-6648,6648,6672,-6597,6686,6605,-6608,6605,6624,-6610,6649,6606,-6688,6650,6573,-6650,6650,6686,-6608,6651,6608,-6653,6651,6687,-6607,6652,6610,-6689,6653,6654,-6576,6654,6688,-6611,6592,6611,-6656,6655,6577,-6657,6616,6689,-6613,6656,6612,-6690,6621,6690,-6614,6691,6657,-6614,6539,6657,-6660,6658,6614,-6693,6659,6692,-6615,6615,6658,-6694,6615,6694,-6617,6695,6618,-6618,6660,6695,-6618,6696,6620,-6619,6660,6619,-6662,6697,6661,-6582,6696,6662,-6621,6582,6662,-6664,6663,6690,-6622,6697,6581,-6623,6698,6622,-6624,6628,6698,-6624,6625,6624,-6606,6664,6587,-6666,6699,6626,-6626,6700,6665,-6627,6627,6664,-6702,6627,6701,-6629,6702,6629,-6667,6589,6668,-6667,6667,6629,-6703,6630,6667,-6704,6668,6592,-6705,6669,6590,-6671,6669,6671,-6592,6630,6703,-6671,6593,6705,-3872,6671,6705,-6594,6706,6653,-6632,6707,6631,-6633,6633,6672,-6677,6708,6634,-6674,6636,6634,-6710,6635,6710,-6674,6636, +6711,-6675,6712,6637,-6675,6639,6637,-6714,6714,6638,-6676,6715,6675,-6640,6676,6680,-6641,6710,6635,-6678,6643,6641,-6717,6717,6678,-6601,6641,6678,-6719,6681,6679,-6643,6600,6679,-6718,6719,6677,-6644,6601,6680,-6721,6601,6720,-6682,4253,6682,-4234,6645,6721,-6684,6685,6570,-6684,6645,6646,-6722,6602,6682,-4271,6684,6602,-4271,6684,4318,-6604,6646,4318,-4329,6722,6647,-6686,6648,6647,-6724,6724,6672,-6649,6686,6725,-6606,6649,6687,-6727,6727,6650,-6650,6686,6650,-6728,6728,6651,-6653,6728,6687,-6652,6652,6688,-6730,6653,6730,-6655,6688,6654,-6732,6592,6655,-6705,6656,6704,-6656,6732,6689,-6617,6656,6689,-6734,6690,6691,-6614,6657,6691,-6735,6659,6657,-6693,6658,6692,-6694,6615,6693,-6736,6615,6735,-6695,6732,6616,-6695,6696,6618,-6696,6660,6736,-6696,6660,6661,-6738,6738,6661,-6698,6696,6739,-6663,6739,6663,-6663,6739,6690,-6664,6697,6622,-6699,6628,6701,-6699,6725,6625,-6606,6740,6664,-6666,6699,6700,-6627,6725,6699,-6626,6700,6740,-6666,6701,6664,-6742,6742,6702,-6667,6668,6743,-6667,6667,6702,-6745,6744,6703,-6668,6704,6745,-6669,6669,6670,-6747,6669,6747,-6672,6746,6670,-6704,6705,3909,-3872,6671,6747,-6706,6706,6730,-6654,6706,6631,-6708,6676,6672,-6749,6708,6709,-6635,6708,6673,-6711,6636,6709,-6712,6749,6674,-6712,6712,6713,-6638,6712,6674,-6751,6751,6639,-6714,6638,6714,-6753,6675,6753,-6715,6753,6675,-6716,6715,6639,-6752,6676,6748,-6681,6677,6754,-6711,6641,6755,-6717,6716,6719,-6644,6678,6717,-6757,6678,6756,-6719,6755,6641,-6719,6681,6757,-6680,6758,6717,-6680,6759,6677,-6720,6680,6760,-6721,6681,6720,-6762,6682,4253,-4271,6762,6683,-6722,6685,6683,-6763,6646,4356,-6722,4318,6684,-4271,6646,4328,-4357,6763,6647,-6723,6764,6722,-6686,6763,6723,-6648,6765,6648,-6724,6748,6672,-6725,6724,6648,-6766,6686,6766,-6726,6726,6687,-6768,6726,6768,-6650,6727,6649,-6769,6686,6727,-6767,6728,6652,-6730,6767,6687,-6729,6688,6731,-6730,6730,6769,-6655,6770,6731,-6655,6656,6733,-6705,6733,6689,-6733,6771,6691,-6691,6734,6691,-6773,6734,6773,-6658,6773,6692,-6658,6693,6692,-6774,6735,6693,-6775,6694,6735,-6776,6776,6732, +-6695,6695,6777,-6697,6736,6660,-6779,6695,6736,-6778,6738,6737,-6662,6660,6737,-6780,6780,6738,-6698,6739,6696,-6778,6739,6781,-6691,6782,6697,-6699,6698,6701,-6784,6740,6741,-6665,6784,6700,-6700,6725,6785,-6700,6786,6740,-6701,6701,6741,-6788,6744,6702,-6743,6743,6742,-6667,6668,6745,-6744,6744,6788,-6704,6704,6733,-6746,6747,6669,-6747,6788,6746,-6704,3909,6705,-6748,6706,6789,-6731,6708,6790,-6710,6710,6754,-6709,6791,6711,-6710,6749,6792,-6675,6791,6749,-6712,6713,6712,-6794,6792,6750,-6675,6712,6750,-6794,6713,6793,-6752,6714,6794,-6753,6795,6714,-6754,6796,6753,-6716,6796,6715,-6752,6680,6748,-6761,6677,6759,-6755,6797,6716,-6756,6716,6797,-6720,6717,6758,-6757,6756,6758,-6719,6681,6761,-6758,6679,6757,-6759,6759,6719,-6799,6720,6760,-6800,6761,6720,-6800,6800,6762,-6722,6801,6685,-6763,6721,4356,-4380,6802,6763,-6723,6802,6722,-6765,6801,6764,-6686,6763,6803,-6724,6804,6765,-6724,6724,6805,-6749,6724,6765,-6806,6785,6725,-6767,6767,6806,-6727,6768,6726,-6808,6768,6808,-6728,6766,6727,-6809,6809,6728,-6730,6767,6728,-6810,6729,6731,-6811,6769,6730,-6790,6770,6654,-6770,6811,6731,-6771,6733,6732,-6813,6771,6772,-6692,6771,6690,-6814,6734,6772,-6815,6734,6814,-6774,6773,6774,-6694,6735,6774,-6816,6735,6815,-6776,6776,6694,-6776,6812,6732,-6777,6778,6660,-6780,6778,6816,-6737,6777,6736,-6818,6738,6818,-6738,6818,6779,-6738,6780,6818,-6739,6780,6697,-6783,6739,6777,-6782,6813,6690,-6782,6782,6698,-6820,6783,6701,-6788,6698,6783,-6820,6741,6740,-6788,6786,6700,-6785,6784,6699,-6821,6785,6820,-6700,6821,6740,-6787,6744,6742,-6823,6743,6823,-6743,6745,6824,-6744,6825,6788,-6745,6733,6812,-6746,6746,6826,-6748,6746,6788,-6827,6747,3953,-3910,6789,6706,-6828,6708,6828,-6791,6829,6709,-6791,6708,6754,-6829,6829,6791,-6710,6749,6830,-6793,6749,6791,-6832,6750,6792,-6833,6750,6833,-6794,6834,6751,-6794,6714,6835,-6795,6794,6836,-6753,6835,6714,-6796,6796,6795,-6754,6751,6834,-6797,6760,6748,-6838,6838,6754,-6760,6797,6798,-6720,6758,6839,-6719,6757,6761,-6841,6839,6758,-6758,6759,6798,-6842,6799,6760,-6843,6799,6840,-6762, +6800,6801,-6763,6721,4379,-6801,6802,6843,-6764,6764,6844,-6803,6845,6764,-6802,6843,6803,-6764,6804,6723,-6804,6805,6765,-6805,6837,6748,-6806,6808,6785,-6767,6767,6846,-6807,6806,6807,-6727,6807,6847,-6769,6768,6847,-6809,6729,6810,-6810,6767,6809,-6847,6810,6731,-6849,6769,6789,-6850,6770,6769,-6850,6811,6848,-6732,6770,6850,-6812,6772,6771,-6852,6771,6813,-6853,6814,6772,-6854,6814,6854,-6774,6854,6774,-6774,6774,6855,-6816,6775,6815,-6857,6857,6776,-6776,6812,6776,-6825,6858,6778,-6780,6859,6816,-6779,6736,6816,-6818,6817,6781,-6778,6779,6818,-6859,6780,6860,-6819,6780,6782,-6861,6852,6813,-6782,6861,6782,-6820,6787,6862,-6784,6783,6861,-6820,6821,6787,-6741,6784,6863,-6787,6784,6820,-6864,6820,6785,-6865,6786,6863,-6822,6742,6823,-6823,6825,6744,-6823,6743,6824,-6824,6812,6824,-6746,6865,6788,-6826,3953,6747,-6827,6788,6865,-6827,6789,6827,-6867,6828,6867,-6791,6868,6829,-6791,6867,6828,-6755,6829,6869,-6792,6749,6831,-6831,6870,6792,-6831,6791,6871,-6832,6870,6832,-6793,6872,6750,-6833,6750,6873,-6834,6874,6793,-6834,6793,6874,-6835,6875,6794,-6836,6794,6875,-6837,6796,6835,-6796,6760,6837,-6843,6867,6754,-6839,6759,6876,-6839,6797,6877,-6799,6839,6878,-6719,6879,6757,-6841,6757,6879,-6840,6877,6841,-6799,6759,6841,-6877,6799,6842,-6881,6881,6840,-6800,6800,6882,-6802,4379,4415,-6801,6883,6843,-6803,6764,6845,-6845,6884,6802,-6845,6882,6845,-6802,6803,6843,-6886,6804,6803,-6887,6805,6804,-6838,6785,6808,-6888,6888,6806,-6847,6806,6889,-6808,6889,6847,-6808,6847,6887,-6809,6810,6846,-6810,6810,6848,-6889,6866,6849,-6790,6770,6849,-6851,6848,6811,-6891,6890,6811,-6851,6771,6852,-6852,6772,6851,-6892,6853,6772,-6892,6853,6892,-6815,6854,6814,-6894,6854,6894,-6775,6894,6855,-6775,6895,6815,-6856,6815,6896,-6857,6775,6856,-6858,6857,6824,-6777,6859,6778,-6859,6859,6897,-6817,6816,6897,-6818,6817,6852,-6782,6818,6898,-6859,6860,6899,-6819,6782,6861,-6861,6787,6821,-6863,6783,6862,-6901,6900,6861,-6784,6863,6820,-6902,6785,6887,-6865,6902,6820,-6865,6821,6863,-6904,6904,6822,-6824,6825,6822,-6906,6823,6824,-6907,6907, +6865,-6826,6826,6908,-3954,6909,6826,-6866,6866,6827,-6911,6867,6868,-6791,6868,6911,-6830,6829,6911,-6870,6871,6791,-6870,6831,6912,-6831,6870,6830,-6914,6871,6914,-6832,6915,6832,-6871,6872,6873,-6751,6915,6872,-6833,6874,6833,-6874,6835,6796,-6876,6842,6837,-6881,6867,6838,-6917,6838,6876,-6918,6878,6839,-6919,6878,6919,-6719,6879,6840,-6921,6879,6918,-6840,6921,6876,-6842,6881,6799,-6881,6881,6920,-6841,6800,4415,-6883,6843,6883,-6886,6802,6884,-6884,4543,6844,-6846,6922,6884,-6845,6845,6882,-4455,6803,6885,-6924,6803,6923,-6887,6924,6804,-6887,6924,6837,-6805,6888,6925,-6807,6846,6810,-6889,6925,6889,-6807,6889,6926,-6848,6847,6926,-6888,6848,6927,-6889,6866,6928,-6850,6850,6849,-6929,6848,6890,-6930,6850,6930,-6891,6851,6852,-6818,6931,6891,-6852,6853,6891,-6933,6853,6932,-6893,6814,6892,-6894,6933,6854,-6894,6894,6854,-6934,6855,6894,-6935,6815,6895,-6897,6935,6895,-6856,6936,6856,-6897,6856,6937,-6858,6938,6824,-6858,6859,6858,-6940,6859,6939,-6898,6940,6817,-6898,6818,6899,-6899,6898,6939,-6859,6860,6941,-6900,6942,6860,-6862,6862,6821,-6904,6900,6862,-6944,6900,6944,-6862,6820,6945,-6902,6903,6863,-6902,6946,6864,-6888,6820,6902,-6946,6902,6864,-6948,6905,6822,-6905,6906,6904,-6824,6907,6825,-6906,6938,6906,-6825,6948,6865,-6908,6909,6908,-6827,3953,6908,-4023,6948,6909,-6866,6910,6949,-6867,6867,6916,-6869,6916,6911,-6869,6950,6869,-6912,6871,6869,-6951,6831,6951,-6913,6830,6912,-6914,6952,6870,-6914,6871,6953,-6915,6831,6914,-6952,6915,6870,-6955,6955,6873,-6873,6872,6915,-6957,6874,6873,-6958,6837,6924,-6881,6958,6916,-6839,6959,6917,-6877,6958,6838,-6918,6919,6878,-6919,6960,6879,-6921,6879,6961,-6919,6921,6959,-6877,6881,6880,-6963,6963,6920,-6882,4415,4454,-6883,6883,6964,-6886,4543,6965,-6845,4494,4543,-6846,6922,6844,-6967,4494,6845,-4455,6923,6885,-6968,6968,6886,-6924,6968,6924,-6887,6927,6925,-6889,6969,6889,-6926,6970,6926,-6890,6946,6887,-6927,6927,6848,-6972,6866,6949,-6929,6930,6850,-6929,6972,6929,-6891,6929,6971,-6849,6890,6930,-6974,6940,6851,-6818,6974,6891,-6932,6940,6931,-6852,6974,6932, +-6892,6892,6932,-6976,6892,6976,-6894,6976,6933,-6894,6933,6977,-6895,6894,6977,-6935,6935,6855,-6935,6895,6978,-6897,6978,6895,-6936,6856,6936,-6938,6978,6936,-6897,6937,6938,-6858,6939,6979,-6898,6897,6980,-6941,6898,6899,-6982,6898,6982,-6940,6942,6941,-6861,6899,6941,-6982,6942,6861,-6984,6984,6862,-6904,6862,6984,-6944,6900,6943,-6986,6900,6985,-6945,6944,6983,-6862,6901,6945,-6987,6901,6986,-6904,6864,6946,-6948,6945,6902,-6988,6987,6902,-6948,6905,6904,-6989,6906,6989,-6905,6990,6907,-6906,6906,6938,-6938,6948,6907,-6992,4022,6908,-6910,6909,6948,-6993,6910,6993,-6950,6916,6958,-6912,6950,6911,-6995,6950,6953,-6872,6995,6912,-6952,6995,6913,-6913,6870,6952,-6955,6913,6996,-6953,6953,6997,-6915,6998,6951,-6915,6915,6954,-7000,6955,6957,-6874,6956,6955,-6873,6999,6956,-6916,6962,6880,-6925,6959,7000,-6918,6917,7001,-6959,6919,6918,-7003,6960,6961,-6880,6963,6960,-6921,7003,6918,-6962,6963,6881,-6963,6964,6967,-6886,6965,4543,-4560,6965,6966,-6845,6923,6967,-7005,6923,7004,-6969,6962,6924,-6969,6927,7005,-6926,6970,6889,-6970,6969,6925,-7006,7006,6926,-6971,6926,7006,-6947,6927,6971,-7008,6949,6930,-6929,7008,6929,-6973,6890,6973,-6973,7008,6971,-6930,6930,7009,-6974,6931,7010,-6975,6931,6940,-6981,6974,6975,-6933,6892,6975,-7012,6976,6892,-7012,6976,6977,-6934,6977,7012,-6935,7012,6935,-6935,6978,6935,-7014,6937,6936,-7015,6978,7015,-6937,7016,6979,-6940,6897,6979,-6981,6982,6898,-6982,6982,7017,-6940,6942,7018,-6942,6981,6941,-7019,6942,6983,-7020,7020,6984,-6904,6943,6984,-7022,7021,6985,-6944,6944,6985,-7023,6944,7022,-6984,7023,6986,-6946,6903,6986,-7025,6946,6987,-6948,7025,6945,-6988,6989,6988,-6905,6905,6988,-6991,6989,6906,-7027,7027,6907,-6991,7026,6906,-6938,6991,6907,-7028,6991,6992,-6949,4022,6909,-6993,6949,6993,-7029,7001,6911,-6959,6994,6911,-7002,6994,7029,-6951,6950,7029,-6954,7030,6995,-6952,6996,6913,-6996,6953,7029,-6998,6914,6997,-7032,6998,7032,-6952,6914,7031,-6999,7000,7001,-6918,7003,7002,-6919,6919,7002,-7034,7034,6961,-6961,6963,7035,-6961,7036,7003,-6962,6963,6962,-7038,6966,6965,-4560, +6968,7004,-7039,6968,7038,-6963,7007,7005,-6928,6969,7039,-6971,7005,7039,-6970,7040,7006,-6971,7006,7040,-6947,7007,6971,-7042,6930,6949,-7010,7008,6972,-7043,6973,7043,-6973,7041,6971,-7009,7009,7044,-6974,6931,6980,-7011,7045,6974,-7011,6975,6974,-7047,6975,7047,-7012,7011,7048,-6977,6976,7049,-6978,7050,7012,-6978,7012,7013,-6936,7051,6978,-7014,6936,7052,-7015,7026,6937,-7015,6978,7051,-7016,6936,7015,-7053,7016,7053,-6980,7016,6939,-7018,7053,6980,-6980,6982,6981,-7019,6982,7054,-7018,6942,7055,-7019,7022,7019,-6984,7056,6942,-7020,6984,7020,-7058,6903,7024,-7021,7058,7021,-6985,6985,7021,-7060,7060,7022,-6986,7023,7024,-6987,6945,7025,-7024,7061,6987,-6947,7025,6987,-7063,6989,7063,-6989,7063,6990,-6989,6989,7026,-7064,7064,7027,-6991,6991,7027,-7066,6991,7066,-6993,6992,4052,-4023,6949,7028,-7068,7068,6994,-7002,6994,7069,-7030,7070,6995,-7031,7030,6951,-7033,6995,7070,-6997,7071,6997,-7030,7031,6997,-7072,6998,7072,-7033,7031,7072,-6999,7000,7068,-7002,7003,7073,-7003,7073,7033,-7003,7034,7074,-6962,7034,6960,-7036,7037,7035,-6964,7003,7036,-7076,7036,6961,-7075,7038,7037,-6963,7038,7004,-7077,7007,7077,-7006,7078,6970,-7040,7005,7079,-7040,6970,7078,-7041,6946,7040,-7062,7041,7080,-7008,6949,7067,-7010,7042,6972,-7082,7082,7008,-7043,7044,7043,-6974,6972,7043,-7082,7083,7041,-7009,7044,7009,-7068,6980,7053,-7011,7045,7046,-6975,7084,7045,-7011,6975,7046,-7048,7011,7047,-7049,7085,6976,-7049,7085,7049,-6977,7049,7086,-6978,7087,7012,-7051,7050,6977,-7087,7013,7012,-7088,7013,7088,-7052,7014,7052,-7090,7026,7014,-7090,7051,7090,-7016,7091,7052,-7016,7016,7092,-7054,7017,7092,-7017,6982,7018,-7094,6982,7094,-7055,7092,7017,-7055,7056,7055,-6943,7093,7018,-7056,7056,7019,-7023,7057,7020,-7025,7058,6984,-7058,7058,7095,-7022,7021,7096,-7060,7059,7060,-6986,7056,7022,-7061,7057,7024,-7024,7023,7025,-7098,6987,7061,-7099,7062,6987,-7099,7062,7099,-7026,6990,7063,-7101,7026,7089,-7064,7064,7065,-7028,7100,7064,-6991,6991,7065,-7067,7066,4052,-6993,7028,7101,-7068,6994,7068,-7070,7071,7029,-7070,7070,7030,-7103,7103, +7030,-7033,7104,7031,-7072,7072,7105,-7033,7104,7072,-7032,7003,7106,-7074,7107,7033,-7074,7034,7108,-7075,7035,7108,-7035,7109,7035,-7038,7110,7075,-7037,7003,7075,-7107,7036,7074,-7112,7038,7109,-7038,7109,7038,-7077,7080,7077,-7008,7077,7112,-7006,7039,7113,-7079,7079,7005,-7113,7114,7039,-7080,7115,7040,-7079,7116,7061,-7041,7117,7080,-7042,7042,7081,-7119,7082,7083,-7009,7082,7042,-7120,7120,7043,-7045,7081,7043,-7122,7083,7117,-7042,7067,7101,-7045,7122,7010,-7054,7046,7045,-7124,7084,7123,-7046,7084,7010,-7123,7124,7047,-7047,7047,7125,-7049,7085,7048,-7127,7049,7085,-7128,7127,7086,-7050,7087,7050,-7129,7086,7129,-7051,7013,7087,-7089,7130,7051,-7089,7131,7089,-7053,7132,7090,-7052,7090,7133,-7016,7052,7091,-7132,7091,7015,-7134,7122,7053,-7093,7094,6982,-7094,7094,7134,-7055,7134,7092,-7055,7135,7055,-7057,7055,7136,-7094,7058,7057,-7138,7058,7137,-7096,7095,7096,-7022,7138,7059,-7097,7059,7139,-7061,7139,7056,-7061,7057,7023,-7141,7141,7097,-7026,7023,7097,-7141,7116,7098,-7062,7098,7116,-7063,7099,7062,-7143,7025,7099,-7142,7063,7089,-7101,7064,7143,-7066,7100,7143,-7065,7065,7144,-7067,4052,7066,-4052,7145,7071,-7070,7102,7030,-7104,7102,7146,-7071,7103,7032,-7106,7147,7104,-7072,7148,7105,-7073,7148,7072,-7105,7107,7073,-7107,7108,7111,-7075,7035,7149,-7109,7035,7109,-7151,7075,7110,-7152,7111,7110,-7037,7075,7152,-7107,7080,7153,-7078,7112,7077,-7154,7039,7114,-7114,7154,7078,-7114,7112,7155,-7080,7114,7079,-7156,7115,7116,-7041,7115,7078,-7157,7117,7153,-7081,7081,7121,-7119,7118,7119,-7043,7157,7083,-7083,7082,7119,-7159,7043,7120,-7122,7159,7120,-7045,7083,7160,-7118,7161,7044,-7102,7046,7123,-7125,7162,7123,-7085,7084,7122,-7164,7124,7125,-7048,7125,7126,-7049,7085,7126,-7128,7127,7164,-7087,7128,7050,-7130,7087,7128,-7089,7164,7129,-7087,7130,7132,-7052,7130,7088,-7166,7100,7089,-7132,7090,7132,-7167,7133,7090,-7167,7167,7131,-7092,7091,7133,-7167,7122,7092,-7169,7094,7093,-7137,7094,7169,-7135,7092,7134,-7169,7170,7055,-7136,7056,7171,-7136,7170,7136,-7056,7140,7137,-7058,7137,7172,-7096,7095,7173, +-7097,7059,7138,-7140,7096,7174,-7139,7139,7171,-7057,7141,7175,-7098,7097,7176,-7141,7062,7116,-7178,7178,7142,-7063,7142,7179,-7100,7179,7141,-7100,7143,7180,-7066,7100,7131,-7144,7180,7144,-7066,7144,4051,-7067,7181,7071,-7146,7182,7102,-7104,7102,7182,-7147,7105,7183,-7104,7104,7147,-7149,7147,7071,-7182,7105,7148,-7185,7152,7107,-7107,7108,7185,-7112,7149,7035,-7151,7108,7149,-7186,7186,7151,-7111,7075,7151,-7188,7188,7110,-7112,7187,7152,-7076,7189,7112,-7154,7113,7114,-7155,7078,7154,-7157,7190,7155,-7113,7191,7114,-7156,7116,7115,-7193,7192,7115,-7157,7117,7160,-7154,7121,7193,-7119,7118,7194,-7120,7083,7157,-7161,7157,7082,-7159,7158,7119,-7196,7120,7196,-7122,7120,7159,-7198,7161,7159,-7045,7198,7124,-7124,7162,7198,-7124,7084,7199,-7163,7122,7168,-7164,7084,7163,-7201,7201,7125,-7125,7125,7202,-7127,7127,7126,-7165,7129,7164,-7129,7203,7088,-7129,7130,7204,-7133,7165,7088,-7206,7165,7206,-7131,7132,7207,-7167,7167,7143,-7132,7167,7091,-7209,7208,7091,-7167,7094,7136,-7210,7169,7094,-7210,7169,7210,-7135,7210,7168,-7135,7170,7135,-7212,7135,7171,-7213,7213,7136,-7171,7176,7137,-7141,7137,7214,-7173,7095,7172,-7174,7174,7096,-7174,7138,7215,-7140,7216,7138,-7175,7215,7171,-7140,7141,7217,-7176,7175,7176,-7098,7116,7218,-7178,7178,7062,-7178,7142,7178,-7220,7179,7142,-7220,7141,7179,-7218,7143,7220,-7181,7180,7221,-7145,7144,3977,-4052,7103,7183,-7183,7182,7222,-7147,7105,7184,-7184,7223,7148,-7148,7181,7224,-7148,7223,7184,-7149,7225,7111,-7186,7226,7186,-7111,7188,7226,-7111,7225,7188,-7112,7152,7187,-7228,7190,7112,-7190,7189,7153,-7229,7229,7154,-7115,7154,7230,-7157,7231,7155,-7191,7114,7191,-7230,7231,7191,-7156,7192,7218,-7117,7156,7232,-7193,7233,7153,-7161,7196,7193,-7122,7118,7193,-7195,7119,7194,-7196,7157,7234,-7161,7158,7195,-7158,7159,7161,-7198,7198,7201,-7125,7198,7162,-7236,7199,7084,-7201,7162,7199,-7237,7237,7163,-7169,7200,7163,-7238,7125,7201,-7239,7125,7238,-7203,7202,7239,-7127,7240,7164,-7127,7241,7128,-7165,7203,7205,-7089,7241,7203,-7129,7206,7204,-7131,7132,7204,-7243,7165,7205,-7244, +7244,7206,-7166,7132,7245,-7208,7207,7246,-7167,7167,7220,-7144,7246,7167,-7209,7208,7166,-7247,7209,7136,-7214,7169,7209,-7248,7169,7248,-7211,7210,7237,-7169,7211,7135,-7213,7249,7170,-7212,7215,7212,-7172,7250,7213,-7171,7214,7137,-7177,7172,7214,-7252,7172,7252,-7174,7174,7173,-7254,7138,7216,-7216,7254,7216,-7175,7175,7217,-7256,7176,7175,-7257,7257,7177,-7219,7258,7178,-7178,7219,7178,-7259,7179,7219,-7260,7179,7259,-7218,7180,7220,-7261,7260,7221,-7181,7221,3977,-7145,7183,7222,-7183,7261,7146,-7223,7262,7183,-7185,7263,7223,-7148,7263,7147,-7225,7264,7184,-7224,7186,7226,-7266,7226,7188,-7266,7231,7190,-7190,7228,7153,-7234,7228,7266,-7190,7267,7154,-7230,7154,7267,-7231,7232,7156,-7231,7229,7191,-7269,7269,7191,-7232,7232,7218,-7193,7234,7233,-7161,7193,7270,-7195,7194,7271,-7196,7157,7272,-7235,7272,7157,-7196,7273,7201,-7199,7162,7236,-7236,7273,7198,-7236,7199,7200,-7275,7199,7274,-7237,7200,7237,-7276,7273,7238,-7202,7202,7238,-7277,7277,7239,-7203,7240,7126,-7240,7278,7164,-7241,7164,7278,-7242,7241,7205,-7204,7279,7204,-7207,7204,7279,-7243,7242,7245,-7133,7243,7205,-7281,7281,7165,-7244,7244,7282,-7207,7244,7165,-7282,7207,7245,-7284,7207,7283,-7247,7167,7246,-7221,7209,7213,-7285,7209,7285,-7248,7247,7248,-7170,7248,7286,-7211,7237,7210,-7287,7215,7211,-7213,7250,7170,-7250,7216,7249,-7212,7250,7284,-7214,7287,7214,-7177,7251,7214,-7288,7251,7252,-7173,7252,7288,-7174,7173,7289,-7254,7174,7253,-7255,7216,7211,-7216,7254,7249,-7217,7255,7217,-7260,7175,7255,-7291,7175,7290,-7257,7176,7256,-7292,7258,7177,-7258,7232,7257,-7219,7258,7292,-7220,7293,7259,-7220,7260,7220,-7295,7295,7221,-7261,7221,7295,-3978,7183,7296,-7223,7261,7297,-7147,7298,7261,-7223,7262,7296,-7184,7264,7262,-7185,7299,7223,-7264,7299,7264,-7224,7231,7189,-7301,7301,7228,-7234,7302,7266,-7229,7300,7189,-7267,7267,7229,-7269,7267,7303,-7231,7304,7232,-7231,7191,7305,-7269,7269,7305,-7192,7231,7300,-7270,7301,7233,-7235,7194,7270,-7272,7272,7195,-7272,7234,7272,-7307,7307,7235,-7237,7238,7273,-7236,7274,7200,-7276,7274,7308,-7237,7275, +7237,-7287,7309,7276,-7239,7276,7277,-7203,7239,7277,-7311,7239,7311,-7241,7311,7278,-7241,7278,7280,-7242,7241,7280,-7206,7279,7206,-7313,7242,7279,-7314,7242,7313,-7246,7243,7280,-7315,7281,7243,-7316,7282,7244,-7317,7312,7206,-7283,7281,7315,-7245,7317,7283,-7246,7318,7246,-7284,7246,7294,-7221,7284,7285,-7210,7285,7319,-7248,7247,7320,-7249,7286,7248,-7321,7249,7321,-7251,7250,7321,-7285,7291,7287,-7177,7251,7287,-7323,7251,7323,-7253,7252,7324,-7289,7173,7288,-7290,7325,7253,-7290,7253,7326,-7255,7254,7321,-7250,7255,7259,-7328,7327,7290,-7256,7328,7256,-7291,7291,7256,-7330,7258,7257,-7331,7257,7232,-7332,7258,7330,-7293,7293,7219,-7293,7259,7293,-7333,7260,7294,-7334,7260,7333,-7296,3934,3977,-7296,7298,7222,-7297,7334,7297,-7262,7146,7297,-7336,7298,7336,-7262,7262,7337,-7297,7337,7262,-7265,7299,7263,-7339,7337,7264,-7300,7302,7228,-7302,7339,7266,-7303,7339,7300,-7267,7267,7268,-7341,7267,7341,-7304,7230,7303,-7305,7331,7232,-7305,7342,7268,-7306,7343,7305,-7270,7269,7300,-7345,7234,7345,-7302,7346,7271,-7271,7272,7271,-7348,7272,7347,-7307,7345,7234,-7307,7348,7235,-7308,7308,7307,-7237,7348,7238,-7236,7274,7275,-7309,7275,7286,-7350,7309,7350,-7277,7309,7238,-7349,7310,7277,-7277,7351,7239,-7311,7311,7239,-7352,7278,7311,-7353,7352,7280,-7279,7312,7353,-7280,7279,7354,-7314,7317,7245,-7314,7355,7314,-7281,7314,7315,-7244,7356,7316,-7245,7316,7357,-7283,7358,7312,-7283,7315,7356,-7245,7317,7359,-7284,7246,7318,-7295,7359,7318,-7284,7284,7360,-7286,7319,7285,-7361,7247,7319,-7321,7286,7320,-7362,7321,7362,-7285,7291,7363,-7288,7363,7322,-7288,7322,7323,-7252,7364,7252,-7324,7252,7364,-7325,7365,7288,-7325,7289,7288,-7366,7325,7366,-7254,7325,7289,-7366,7253,7366,-7327,7254,7326,-7322,7367,7327,-7260,7327,7328,-7291,7328,7329,-7257,7368,7291,-7330,7330,7257,-7332,7330,7369,-7293,7293,7292,-7371,7293,7370,-7333,7367,7259,-7333,7371,7333,-7295,7372,7295,-7334,3934,7295,-3937,7373,7298,-7297,7374,7297,-7335,7375,7334,-7262,7374,7335,-7298,7298,7373,-7337,7261,7336,-7376,7337,7376,-7297,7376,7299,-7339,7376,7337, +-7300,7377,7302,-7302,7339,7302,-7379,7339,7344,-7301,7340,7268,-7380,7267,7340,-7342,7341,7380,-7304,7304,7303,-7332,7268,7342,-7380,7305,7379,-7343,7305,7343,-7382,7344,7343,-7270,7377,7301,-7346,7271,7346,-7348,7348,7307,-7383,7308,7383,-7308,7275,7384,-7309,7361,7349,-7287,7349,7384,-7276,7385,7350,-7310,7310,7276,-7351,7309,7348,-7386,7386,7351,-7311,7351,7387,-7312,7352,7311,-7389,7355,7280,-7353,7312,7389,-7354,7279,7353,-7355,7390,7313,-7355,7390,7317,-7314,7391,7314,-7356,7314,7392,-7316,7316,7356,-7394,7316,7394,-7358,7358,7282,-7358,7358,7389,-7313,7315,7392,-7357,7317,7390,-7360,7318,7395,-7295,7318,7359,-7396,7362,7360,-7285,7319,7360,-7397,7361,7320,-7320,7321,7326,-7363,7291,7368,-7364,7322,7363,-7398,7322,7397,-7324,7364,7323,-7399,7364,7399,-7325,7400,7365,-7325,7366,7325,-7402,7402,7325,-7366,7403,7326,-7367,7367,7404,-7328,7327,7404,-7329,7329,7328,-7406,7368,7329,-7407,7330,7331,-7408,7330,7408,-7370,7292,7369,-7371,7332,7370,-7410,7367,7332,-7411,7333,7371,-7373,7294,7395,-7372,7372,3936,-7296,7373,7296,-7377,7334,7411,-7375,7375,7412,-7335,7413,7335,-7375,7375,7336,-7374,7414,7376,-7339,7377,7378,-7303,7415,7339,-7379,7339,7416,-7345,7379,7417,-7341,7418,7341,-7341,7341,7419,-7381,7420,7303,-7381,7303,7407,-7332,7379,7305,-7422,7381,7343,-7423,7421,7305,-7382,7422,7343,-7345,7382,7307,-7384,7348,7382,-7386,7383,7308,-7424,7424,7308,-7385,7361,7425,-7350,7424,7384,-7350,7385,7426,-7351,7386,7310,-7351,7351,7386,-7388,7311,7387,-7389,7388,7427,-7353,7352,7427,-7356,7428,7353,-7390,7353,7428,-7355,7390,7354,-7430,7391,7392,-7315,7391,7355,-7431,7392,7393,-7357,7393,7431,-7317,7394,7316,-7432,7432,7357,-7395,7358,7357,-7390,7433,7359,-7391,7359,7433,-7396,7362,7434,-7361,7435,7396,-7361,7319,7396,-7437,7436,7361,-7320,7403,7362,-7327,7437,7363,-7369,7437,7397,-7364,7397,7398,-7324,7364,7398,-7400,7438,7324,-7400,7402,7365,-7401,7324,7438,-7401,7401,7325,-7440,7401,7403,-7367,7325,7402,-7440,7367,7440,-7405,7404,7405,-7329,7329,7405,-7407,7368,7406,-7442,7330,7407,-7409,7442,7369,-7409,7370,7369,-7444, +7370,7444,-7410,7409,7410,-7333,7367,7410,-7441,7445,7372,-7372,7371,7395,-7434,3850,3936,-7373,7414,7373,-7377,7412,7411,-7335,7374,7411,-7447,7412,7375,-7448,7374,7448,-7414,7447,7375,-7374,7414,7338,-7450,7450,7378,-7378,7339,7415,-7417,7450,7415,-7379,7416,7451,-7345,7379,7421,-7418,7417,7418,-7341,7341,7418,-7420,7380,7419,-7453,7303,7420,-7408,7420,7380,-7454,7381,7422,-7455,7381,7454,-7422,7422,7344,-7452,7385,7382,-7384,7455,7423,-7309,7456,7383,-7424,7308,7424,-7456,7425,7361,-7437,7455,7349,-7426,7455,7424,-7350,7426,7385,-7458,7350,7426,-7459,7350,7458,-7387,7386,7459,-7388,7459,7388,-7388,7388,7460,-7428,7461,7355,-7428,7462,7428,-7390,7428,7463,-7355,7429,7354,-7464,7433,7390,-7430,7391,7464,-7393,7461,7430,-7356,7391,7430,-7465,7392,7464,-7394,7393,7465,-7432,7466,7394,-7432,7357,7432,-7468,7432,7394,-7467,7357,7467,-7390,7434,7362,-7404,7360,7434,-7436,7435,7468,-7397,7469,7436,-7397,7470,7437,-7369,7397,7437,-7472,7397,7472,-7399,7473,7399,-7399,7399,7473,-7439,7402,7400,-7475,7438,7474,-7401,7475,7401,-7440,7401,7475,-7404,7402,7476,-7440,7477,7404,-7441,7477,7405,-7405,7477,7406,-7406,7441,7406,-7479,7470,7368,-7442,7407,7442,-7409,7442,7479,-7370,7443,7369,-7480,7370,7443,-7445,7480,7409,-7445,7481,7410,-7410,7410,7481,-7441,7445,3850,-7373,7371,7433,-7446,7447,7373,-7415,7412,7482,-7412,7482,7446,-7412,7374,7446,-7449,7412,7447,-7484,7484,7413,-7449,7414,7449,-7448,7485,7416,-7416,7450,7486,-7416,7416,7485,-7452,7487,7417,-7422,7488,7418,-7418,7488,7419,-7419,7489,7452,-7420,7380,7452,-7454,7407,7420,-7443,7420,7453,-7491,7454,7422,-7492,7492,7421,-7455,7422,7451,-7492,7457,7385,-7384,7455,7493,-7424,7457,7383,-7457,7456,7423,-7494,7425,7436,-7495,7455,7425,-7496,7457,7496,-7427,7426,7497,-7459,7386,7458,-7460,7498,7388,-7460,7499,7460,-7389,7461,7427,-7461,7462,7500,-7429,7462,7389,-7468,7428,7501,-7464,7463,7502,-7430,7429,7503,-7434,7430,7461,-7505,7430,7504,-7465,7464,7505,-7394,7505,7465,-7394,7506,7431,-7466,7466,7431,-7507,7467,7432,-7463,7466,7507,-7433,7508,7434,-7404,7508,7435,-7435,7509, +7468,-7436,7396,7468,-7470,7494,7436,-7470,7437,7470,-7511,7471,7437,-7511,7471,7472,-7398,7472,7511,-7399,7473,7398,-7513,7473,7513,-7439,7402,7474,-7477,7438,7514,-7475,7475,7439,-7516,7516,7403,-7476,7515,7439,-7477,7440,7517,-7478,7406,7477,-7479,7478,7518,-7442,7470,7441,-7520,7479,7442,-7521,7479,7521,-7444,7443,7522,-7445,7409,7480,-7482,7522,7480,-7445,7440,7481,-7518,7445,3701,-3851,7503,7445,-7434,7482,7412,-7484,7482,7523,-7447,7446,7524,-7449,7483,7447,-7526,7484,7448,-7527,7447,7449,-7526,7486,7485,-7416,7485,7527,-7452,7487,7488,-7418,7487,7421,-7493,7528,7419,-7489,7529,7452,-7490,7528,7489,-7420,7529,7453,-7453,7420,7490,-7443,7490,7453,-7531,7491,7492,-7455,7451,7531,-7492,7493,7455,-7533,7457,7456,-7534,7493,7533,-7457,7495,7425,-7495,7495,7532,-7456,7533,7496,-7458,7534,7426,-7497,7534,7497,-7427,7497,7535,-7459,7535,7459,-7459,7498,7499,-7389,7459,7535,-7499,7499,7536,-7461,7461,7460,-7538,7462,7538,-7501,7501,7428,-7501,3800,7463,-7502,3754,7502,-7464,7429,7502,-7504,7461,7537,-7505,7505,7464,-7505,7505,7539,-7466,7506,7465,-7540,7466,7506,-7508,7462,7432,-7539,7432,7507,-7539,7508,7403,-7517,7508,7540,-7436,7509,7541,-7469,7509,7435,-7541,7542,7469,-7469,7469,7542,-7495,7470,7543,-7511,7472,7471,-7511,7511,7472,-7545,7512,7398,-7512,7545,7473,-7513,7546,7513,-7474,7438,7513,-7515,7474,7547,-7477,7514,7547,-7475,7515,7548,-7476,7516,7475,-7549,7515,7476,-7550,7477,7517,-7551,7477,7550,-7479,7478,7550,-7519,7441,7518,-7552,7441,7551,-7520,7470,7519,-7553,7490,7520,-7443,7479,7520,-7554,7521,7479,-7555,7522,7443,-7522,7481,7480,-7556,7480,7522,-7557,7481,7555,-7518,7503,3701,-7446,7482,7483,-7558,7523,7482,-7558,7523,7558,-7447,7558,7524,-7447,7524,7526,-7449,7559,7483,-7526,7526,7560,-7485,7449,7561,-7526,7486,7562,-7486,7485,7562,-7528,7451,7527,-7532,7487,7563,-7489,7564,7487,-7493,7528,7488,-7566,7566,7529,-7490,7489,7528,-7568,7529,7530,-7454,7530,7568,-7491,7531,7492,-7492,7493,7532,-7570,7493,7569,-7534,7495,7494,-7571,7571,7532,-7496,7533,7572,-7497,7534,7496,-7573,7534,7573,-7498,7497,7574, +-7536,7499,7498,-7576,7574,7498,-7536,7576,7536,-7500,7536,7577,-7461,7577,7537,-7461,7538,3755,-7501,3800,7501,-7501,3754,7463,-3801,3754,3854,-7503,3854,7503,-7503,7578,7504,-7538,7505,7504,-7580,7579,7539,-7506,7580,7506,-7540,7506,7581,-7508,7507,3756,-7539,7582,7508,-7517,7582,7540,-7509,7509,7582,-7542,7542,7468,-7542,7540,7582,-7510,7494,7542,-7571,7543,7470,-7553,7543,7583,-7511,7544,7472,-7511,7584,7511,-7545,7545,7512,-7512,7546,7473,-7546,7546,7585,-7514,7586,7514,-7514,7547,7549,-7477,7586,7547,-7515,7515,7587,-7549,7588,7516,-7549,7587,7515,-7550,7517,7589,-7551,7518,7550,-7591,7591,7551,-7519,7592,7519,-7552,7552,7519,-7593,7593,7520,-7491,7553,7520,-7595,7554,7479,-7554,7595,7521,-7555,7522,7521,-7597,7556,7555,-7481,7556,7522,-7597,7517,7555,-7590,3854,3701,-7504,7559,7557,-7484,7523,7557,-7598,7523,7598,-7559,7599,7524,-7559,7524,7600,-7527,7559,7525,-7602,7526,7602,-7561,7561,7601,-7526,7562,7603,-7528,7531,7527,-7604,7563,7487,-7605,7563,7565,-7489,7604,7487,-7565,7492,7605,-7565,7528,7565,-7607,7529,7566,-7608,7566,7489,-7568,7606,7567,-7529,7529,7607,-7531,7608,7568,-7531,7568,7593,-7491,7531,7605,-7493,7571,7569,-7533,7533,7569,-7573,7571,7495,-7571,7609,7534,-7573,7534,7610,-7574,7611,7497,-7574,7611,7574,-7498,7612,7575,-7499,7576,7499,-7576,7574,7612,-7499,7613,7536,-7577,7613,7577,-7537,7577,7614,-7538,7538,3756,-3756,3755,3800,-7501,7615,7504,-7579,7537,7616,-7579,7579,7504,-7616,7579,7617,-7540,7580,7618,-7507,7619,7580,-7540,7506,7618,-7582,7581,3704,-7508,7507,3704,-3757,7516,7620,-7583,7621,7541,-7583,7542,7541,-7623,7623,7570,-7543,7583,7543,-7553,7510,7583,-7625,7584,7544,-7511,7511,7584,-7546,7545,7625,-7547,7625,7585,-7547,7626,7513,-7586,7586,7513,-7627,7627,7549,-7548,7627,7547,-7587,7628,7548,-7588,7516,7588,-7621,7588,7548,-7630,7587,7549,-7631,7550,7589,-7591,7591,7518,-7591,7631,7551,-7592,7631,7592,-7552,7552,7592,-7633,7593,7594,-7521,7553,7594,-7634,7554,7553,-7635,7595,7596,-7522,7634,7595,-7555,7635,7555,-7557,7556,7596,-7637,7637,7589,-7556,7557,7559,-7598,7597,7598,-7524, +7599,7558,-7599,7524,7599,-7601,7526,7600,-7603,7601,7638,-7560,7639,7560,-7603,7601,7561,-7641,7531,7603,-7606,7563,7604,-7642,7641,7565,-7564,7604,7564,-7643,7643,7564,-7606,7565,7644,-7607,7607,7566,-7646,7567,7646,-7567,7647,7567,-7607,7608,7530,-7608,7568,7608,-7649,7568,7649,-7594,7569,7571,-7651,7572,7569,-7610,7571,7570,-7652,7609,7610,-7535,7573,7610,-7653,7573,7653,-7612,7574,7611,-7655,7575,7612,-7656,7575,7655,-7577,7574,7654,-7613,7576,7656,-7614,7613,7657,-7578,7577,7657,-7615,7614,7616,-7538,7615,7578,-7659,7578,7616,-7659,7579,7615,-7660,7579,7659,-7618,7617,7619,-7540,7660,7618,-7581,7619,7660,-7581,7618,7661,-7582,7581,7662,-3705,7582,7620,-7664,7664,7541,-7622,7582,7663,-7622,7664,7622,-7542,7623,7542,-7623,7651,7570,-7624,7552,7665,-7584,7583,7666,-7625,7510,7624,-7585,7624,7545,-7585,7624,7625,-7546,7667,7585,-7626,7626,7585,-7669,7669,7586,-7627,7627,7630,-7550,7669,7627,-7587,7629,7548,-7629,7628,7587,-7631,7588,7663,-7621,7670,7588,-7630,7589,7671,-7591,7672,7591,-7591,7673,7631,-7592,7674,7592,-7632,7675,7632,-7593,7665,7552,-7633,7676,7594,-7594,7676,7633,-7595,7633,7634,-7554,7595,7636,-7597,7595,7634,-7678,7635,7637,-7556,7635,7556,-7637,7637,7678,-7590,7597,7559,-7639,7597,7679,-7599,7599,7598,-7681,7599,7681,-7601,7600,7682,-7603,7638,7601,-7684,7639,7602,-7685,7683,7601,-7641,7642,7641,-7605,7565,7641,-7645,7643,7642,-7565,7644,7685,-7607,7566,7646,-7646,7608,7607,-7646,7646,7567,-7648,7647,7606,-7687,7648,7608,-7688,7568,7648,-7689,7688,7649,-7569,7676,7593,-7650,7571,7651,-7651,7569,7650,-7690,7689,7609,-7570,7689,7610,-7610,7689,7652,-7611,7690,7573,-7653,7691,7653,-7574,7611,7653,-7655,7692,7655,-7613,7576,7655,-7657,7654,7693,-7613,7613,7656,-7695,7613,7695,-7658,7657,7696,-7615,7697,7616,-7615,7615,7658,-7699,7697,7658,-7617,7615,7699,-7660,7617,7659,-7701,7617,7700,-7620,7660,7701,-7619,7702,7660,-7620,7618,7703,-7662,7581,7661,-7663,7662,3757,-3705,7664,7621,-7705,7663,7704,-7622,7664,7705,-7623,7623,7622,-7706,7623,7706,-7652,7666,7583,-7666,7666,7625,-7625,7667,7668,-7586,7667, +7625,-7708,7626,7668,-7709,7709,7669,-7627,7630,7627,-7711,7710,7627,-7670,7628,7711,-7630,7712,7628,-7631,7588,7670,-7664,7670,7629,-7714,7671,7589,-7679,7671,7672,-7591,7673,7591,-7673,7714,7631,-7674,7675,7592,-7675,7631,7714,-7675,7675,7715,-7633,7716,7665,-7633,7676,7717,-7634,7633,7718,-7635,7595,7719,-7637,7677,7634,-7719,7719,7595,-7678,7637,7635,-7721,7635,7636,-7722,7720,7678,-7638,7597,7638,-7680,7722,7598,-7680,7722,7680,-7599,7680,7681,-7600,7600,7681,-7683,7682,7684,-7603,7723,7638,-7684,7724,7639,-7685,7641,7642,-7726,7641,7726,-7645,7642,7643,-7726,7727,7685,-7645,7606,7685,-7687,7728,7645,-7647,7608,7645,-7730,7646,7647,-7731,7647,7686,-7732,7608,7732,-7688,7648,7687,-7689,7733,7649,-7689,7676,7649,-7735,7651,7706,-7651,7650,7735,-7690,7735,7652,-7690,7691,7573,-7691,7690,7652,-7737,7653,7691,-7738,7653,7693,-7655,7738,7655,-7693,7612,7693,-7693,7655,7694,-7657,7613,7694,-7696,7739,7657,-7696,7696,7657,-7741,7697,7614,-7697,7658,7741,-7699,7615,7698,-7700,7658,7697,-7742,7699,7700,-7660,7619,7700,-7743,7743,7701,-7661,7701,7703,-7619,7660,7702,-7745,7742,7702,-7620,7703,7662,-7662,7703,3757,-7663,7664,7704,-7746,7746,7704,-7664,7664,7745,-7706,7623,7705,-7707,7666,7665,-7717,7747,7625,-7667,7748,7668,-7668,7747,7707,-7626,7667,7707,-7749,7749,7708,-7669,7709,7626,-7709,7709,7750,-7670,7712,7630,-7711,7710,7669,-7751,7628,7712,-7712,7711,7713,-7630,7663,7670,-7752,7670,7713,-7753,7671,7678,-7754,7753,7672,-7672,7754,7673,-7673,7714,7673,-7756,7714,7675,-7675,7715,7675,-7757,7716,7632,-7716,7676,7734,-7718,7718,7633,-7718,7721,7636,-7720,7677,7718,-7758,7758,7719,-7678,7635,7721,-7721,7720,7759,-7679,7760,7679,-7639,7760,7722,-7680,7722,7760,-7681,7761,7681,-7681,7761,7682,-7682,7682,7762,-7685,7638,7723,-7764,7639,7724,-7765,7684,7765,-7725,7726,7641,-7726,7726,7727,-7645,7727,7766,-7686,7686,7685,-7768,7768,7645,-7729,7730,7728,-7647,7729,7645,-7769,7729,7732,-7609,7647,7731,-7731,7731,7686,-7768,7687,7732,-7770,7770,7688,-7688,7734,7649,-7734,7771,7733,-7689,7650,7706,-7736,7735,7736,-7653,7690,7772, +-7692,7736,7773,-7691,7691,7774,-7738,7653,7737,-7694,7738,7694,-7656,7738,7692,-7776,7692,7693,-7776,7694,7776,-7696,7740,7657,-7740,7695,7776,-7740,7740,7697,-7697,7777,7698,-7742,7778,7699,-7699,7779,7741,-7698,7700,7699,-7743,7743,3801,-7702,7660,7744,-7744,7701,3759,-7704,7702,7742,-7745,3759,3757,-7704,7780,7745,-7705,7746,7780,-7705,7663,7751,-7747,7781,7705,-7746,7781,7706,-7706,7666,7716,-7748,7782,7668,-7749,7747,7783,-7708,7748,7707,-7784,7749,7784,-7709,7782,7749,-7669,7784,7709,-7709,7709,7785,-7751,7786,7712,-7711,7786,7710,-7751,7787,7711,-7713,7711,7787,-7714,7751,7670,-7753,7788,7752,-7714,7678,7759,-7754,7753,7754,-7673,7789,7673,-7755,7789,7755,-7674,7790,7714,-7756,7714,7756,-7676,7715,7756,-7792,7716,7715,-7793,7733,7717,-7735,7793,7718,-7718,7719,7794,-7722,7757,7718,-7794,7757,7758,-7678,7758,7794,-7720,7720,7721,-7796,7759,7720,-7796,7638,7763,-7761,7680,7760,-7762,7762,7682,-7762,7684,7762,-7766,7763,7723,-7797,7797,7764,-7725,7798,7724,-7766,7725,7799,-7727,7800,7727,-7727,7766,7727,-7802,7685,7766,-7768,7728,7802,-7769,7730,7802,-7729,7803,7729,-7769,7803,7732,-7730,7804,7730,-7732,7731,7767,-7806,7806,7769,-7733,7687,7769,-7771,7770,7771,-7689,7771,7807,-7734,7706,7781,-7736,7736,7735,-7809,7690,7809,-7773,7691,7772,-7775,7736,7810,-7774,7690,7773,-7810,7774,7811,-7738,7693,7737,-7776,7738,7812,-7695,7738,7775,-7813,7776,7694,-7813,7740,7739,-7814,7776,7814,-7740,7740,7779,-7698,7777,7778,-7699,7777,7741,-7816,7816,7699,-7779,7779,7815,-7742,7816,7742,-7700,3801,7743,-3856,7701,3801,-3707,7743,7744,-7818,7701,3706,-3760,7744,7742,-7818,7818,7745,-7781,7819,7780,-7747,7819,7746,-7752,7781,7745,-7819,7792,7747,-7717,7748,7820,-7783,7792,7783,-7748,7748,7783,-7821,7821,7784,-7750,7822,7749,-7783,7823,7709,-7785,7709,7823,-7786,7785,7786,-7751,7824,7712,-7787,7787,7712,-7826,7787,7788,-7714,7826,7751,-7753,7788,7827,-7753,7759,7828,-7754,7829,7754,-7754,7830,7789,-7755,7831,7755,-7790,7756,7714,-7791,7832,7790,-7756,7756,7790,-7792,7715,7791,-7834,7792,7715,-7834,7733,7807,-7718,7807,7793,-7718, +7721,7794,-7835,7793,7835,-7758,7758,7757,-7837,7758,7836,-7795,7721,7834,-7796,7759,7795,-7838,7838,7760,-7764,7761,7760,-7839,7761,7839,-7763,7762,7840,-7766,7841,7796,-7724,7842,7763,-7797,7764,7797,-7844,7844,7797,-7725,7845,7724,-7799,7846,7798,-7766,7800,7726,-7800,7727,7800,-7802,7766,7801,-7848,7805,7767,-7767,7848,7768,-7803,7849,7802,-7731,7848,7803,-7769,7803,7806,-7733,7849,7730,-7805,7804,7731,-7806,7806,7850,-7770,7769,7850,-7771,7771,7770,-7852,7852,7807,-7772,7735,7781,-7854,7853,7808,-7736,7808,7810,-7737,7854,7772,-7810,7774,7772,-7856,7810,7856,-7774,7809,7773,-7858,7811,7774,-7856,7858,7737,-7812,7858,7775,-7738,7812,7775,-7859,7859,7776,-7813,7739,7814,-7814,7740,7813,-7780,7859,7814,-7777,7777,7860,-7779,7860,7777,-7816,7816,7778,-7862,7862,7815,-7780,7816,7863,-7743,7743,7817,-3856,7863,7817,-7743,7864,7818,-7781,7819,7865,-7781,7819,7751,-7827,7866,7781,-7819,7820,7822,-7783,7783,7792,-7868,7820,7783,-7868,7784,7821,-7869,7822,7821,-7750,7784,7868,-7824,7869,7785,-7824,7785,7870,-7787,7825,7712,-7825,7871,7824,-7787,7787,7825,-7789,7826,7752,-7828,7788,7872,-7828,7759,7837,-7829,7828,7873,-7754,7830,7754,-7830,7829,7753,-7874,7831,7789,-7831,7831,7874,-7756,7875,7790,-7833,7832,7755,-7875,7790,7875,-7792,7833,7791,-7876,7792,7833,-7877,7852,7793,-7808,7834,7794,-7878,7793,7852,-7836,7836,7757,-7836,7836,7878,-7795,7837,7795,-7835,7838,7763,-7843,7761,7838,-7840,7762,7839,-7841,7840,7879,-7766,7841,7880,-7797,7796,7881,-7843,7797,7844,-7844,7724,7845,-7845,7882,7845,-7799,7846,7883,-7799,7884,7846,-7766,7847,7801,-7886,7766,7847,-7887,7766,7886,-7806,7848,7802,-7888,7849,7887,-7803,7848,7888,-7804,7806,7803,-7889,7889,7849,-7805,7890,7804,-7806,7806,7891,-7851,7770,7850,-7852,7852,7771,-7852,7853,7781,-7867,7892,7808,-7854,7808,7892,-7811,7854,7855,-7773,7854,7809,-7894,7810,7892,-7857,7857,7773,-7857,7894,7809,-7858,7811,7855,-7896,7811,7895,-7859,7896,7812,-7859,7896,7859,-7813,7862,7813,-7815,7779,7813,-7863,7859,7897,-7815,7861,7778,-7861,7815,7898,-7861,7816,7861,-7900,7862,7898,-7816,7863, +7816,-3856,7817,7863,-3856,7864,7866,-7819,7780,7865,-7865,7819,7900,-7866,7826,7901,-7820,7902,7822,-7821,7792,7876,-7868,7820,7867,-7904,7904,7868,-7822,7821,7822,-7906,7868,7906,-7824,7870,7785,-7870,7906,7869,-7824,7871,7786,-7871,7825,7824,-7908,7908,7824,-7872,7872,7788,-7826,7826,7827,-7902,7827,7872,-7910,7910,7828,-7838,7911,7873,-7829,7830,7829,-7913,7829,7873,-7914,7912,7831,-7831,7831,7914,-7875,7875,7832,-7916,7915,7832,-7875,7916,7833,-7876,7916,7876,-7834,7877,7794,-7879,7877,7837,-7835,7852,7917,-7836,7836,7835,-7919,7836,7919,-7879,7842,7920,-7839,7920,7839,-7839,7921,7840,-7840,7921,7879,-7841,7884,7765,-7880,7881,7796,-7881,7922,7842,-7882,7844,7882,-7844,7845,7882,-7845,7798,7883,-7883,7886,7847,-7886,7805,7886,-7924,7848,7887,-7925,7925,7887,-7850,7888,7848,-7927,7806,7888,-7892,7849,7889,-7926,7889,7804,-7891,7890,7805,-7924,7891,7927,-7851,7851,7850,-7929,7852,7851,-7918,7866,7929,-7854,7853,7930,-7893,7931,7855,-7855,7809,7894,-7894,7854,7893,-7933,7892,7933,-7857,7856,7894,-7858,7855,7931,-7896,7934,7858,-7896,7858,7934,-7897,7896,7935,-7860,7862,7814,-7937,7935,7897,-7860,7897,7936,-7815,7898,7861,-7861,7937,7899,-7862,7899,7938,-7817,7862,7939,-7899,7816,3937,-3856,7864,7929,-7867,7864,7865,-7941,7819,7901,-7901,7941,7865,-7901,7905,7822,-7903,7820,7903,-7903,7903,7867,-7877,7868,7904,-7907,7904,7821,-7943,7821,7905,-7944,7944,7870,-7870,7944,7869,-7907,7908,7871,-7871,7907,7824,-7946,7946,7825,-7908,7945,7824,-7909,7946,7872,-7826,7827,7909,-7902,7947,7909,-7873,7911,7828,-7911,7877,7910,-7838,7873,7911,-7949,7829,7913,-7913,7873,7948,-7914,7949,7831,-7913,7949,7914,-7832,7915,7874,-7915,7915,7950,-7876,7916,7875,-7952,7952,7876,-7917,7877,7878,-7954,7954,7835,-7918,7955,7918,-7836,7919,7836,-7919,7919,7953,-7879,7842,7956,-7921,7920,7957,-7840,7921,7839,-7958,7921,7958,-7880,7959,7884,-7880,7960,7881,-7881,7842,7922,-7957,7881,7960,-7923,7885,7923,-7887,7961,7924,-7888,7848,7924,-7927,7925,7961,-7888,7888,7926,-7963,7891,7888,-7963,7963,7925,-7890,7890,7964,-7890,7923,7965,-7891,7891,7962, +-7928,7928,7850,-7928,7851,7928,-7918,7929,7930,-7854,7930,7933,-7893,7931,7854,-7933,7966,7893,-7895,7967,7932,-7894,7856,7933,-7895,7968,7895,-7932,7934,7895,-7969,7969,7896,-7935,7935,7896,-7970,7862,7936,-7940,7935,7970,-7898,7897,7971,-7937,7937,7861,-7899,7937,7972,-7900,7973,7938,-7900,3937,7816,-7939,7898,7939,-7975,7864,7975,-7930,7865,7941,-7941,7864,7940,-7976,7900,7901,-7977,7941,7900,-7977,7977,7905,-7903,7952,7902,-7904,7952,7903,-7877,7906,7904,-7979,7942,7821,-7944,7904,7942,-7980,7977,7943,-7906,7944,7980,-7871,7944,7906,-7979,7908,7870,-7981,7907,7945,-7982,7946,7907,-7983,7908,7981,-7946,7947,7872,-7947,7983,7901,-7910,7983,7909,-7948,7910,7984,-7912,7877,7984,-7911,7911,7985,-7949,7912,7913,-7987,7987,7913,-7949,7949,7912,-7989,7949,7988,-7915,7915,7914,-7990,7990,7950,-7916,7951,7875,-7951,7991,7916,-7952,7991,7952,-7917,7984,7877,-7954,7954,7955,-7836,7954,7917,-7993,7993,7918,-7956,7919,7918,-7995,7919,7995,-7954,7956,7996,-7921,7997,7957,-7921,7921,7957,-7959,7998,7879,-7959,7959,7879,-7999,7922,7960,-7957,7923,7885,-8000,7924,7961,-8001,8001,7926,-7925,8002,7961,-7926,8001,7962,-7927,7925,7963,-8003,7889,8003,-7964,7890,7965,-7965,7964,8004,-7890,7923,8005,-7966,8006,7927,-7963,7928,7927,-8008,7992,7917,-7929,7930,7929,-8009,8008,7933,-7931,7931,7932,-7969,7893,7966,-8010,8010,7966,-7895,8011,7932,-7968,7893,8009,-7968,8010,7894,-7934,7969,7934,-7969,7935,7969,-8013,8013,7939,-7937,7970,7935,-8013,8014,7897,-7971,8014,7971,-7898,8015,7936,-7972,7898,7974,-7938,7974,7972,-7938,7972,7973,-7900,7973,3851,-7939,3851,3937,-7939,8016,7974,-7940,7975,8008,-7930,7941,8017,-7941,7975,7940,-8019,7901,8019,-7977,7976,8020,-7942,7977,7902,-8022,7902,7952,-8022,7904,7979,-7979,7942,7943,-8023,8023,7979,-7943,8022,7943,-7978,8024,7980,-7945,7978,8025,-7945,7908,7980,-8027,7981,7982,-7908,7946,7982,-8028,7908,8026,-7982,7947,7946,-8029,7901,7983,-8020,7947,8028,-7984,7911,7984,-8030,7911,8029,-7986,7985,8030,-7949,7913,8031,-7987,7986,7988,-7913,7987,8031,-7914,7987,7948,-8031,7914,7988,-8033,7914,8032,-7990, +7915,7989,-7991,7951,7950,-7991,8033,7991,-7952,8034,7952,-7992,7984,7953,-8036,7954,8036,-7956,7954,7992,-8038,7918,7993,-7995,7955,8038,-7994,7995,7919,-7995,7953,7995,-8036,8039,7996,-7957,8040,7920,-7997,7957,7997,-8042,7997,7920,-8041,7957,8041,-7959,7958,8041,-7999,7959,7998,-8043,8043,7956,-7961,8005,7923,-8000,8044,8000,-7962,7924,8000,-8002,8002,8044,-7962,7962,8001,-8046,8002,7963,-8047,7889,8004,-8004,7963,8003,-8048,7965,8004,-7965,8005,8048,-7966,8007,7927,-8007,7962,8045,-8007,7992,7928,-8008,7933,8008,-8011,8012,7968,-7933,8010,8009,-7967,8011,8012,-7933,8011,7967,-8050,8009,8049,-7968,7969,7968,-8013,8013,8050,-7940,8013,7936,-8016,7970,8012,-8052,8014,7970,-8053,8014,8053,-7972,7971,8054,-8016,7972,7974,-8056,7972,8056,-7974,3851,7973,-3853,8055,7974,-8017,8050,8016,-7940,8018,8008,-7976,7941,8057,-8018,8017,8018,-7941,7976,8019,-8059,7976,8058,-8021,8057,7941,-8021,7977,8021,-8060,8034,8021,-7953,7979,8060,-7979,8061,7942,-8023,8060,7979,-8024,8061,8023,-7943,7977,8059,-8023,8024,8026,-7981,8024,7944,-8026,7978,8060,-8026,7981,8062,-7983,8062,8027,-7983,7946,8027,-8064,8064,7981,-8027,7946,8065,-8029,8058,8019,-7984,7983,8028,-8059,8029,7984,-8036,8066,7985,-8030,8066,8030,-7986,8067,7986,-8032,8067,7988,-7987,8031,7987,-8069,8030,8068,-7988,8067,8032,-7989,8069,7989,-8033,7989,8069,-7991,8033,7951,-7991,8033,8070,-7992,8070,8034,-7992,7954,8071,-8037,7955,8036,-8073,8037,7992,-8008,7954,8037,-8072,7994,7993,-8074,7955,8072,-8039,8038,8073,-7994,7995,7994,-8075,7995,8075,-8036,8040,7996,-8040,8076,8039,-7957,7997,8077,-8042,7997,8040,-8079,8041,8077,-7999,8079,8042,-7999,7956,8043,-8077,8048,8005,-8000,8000,8044,-8081,8001,8000,-8082,8082,8044,-8003,8083,8045,-8002,7963,8084,-8047,8002,8046,-8083,8003,8004,-8086,8047,8003,-8087,7963,8047,-8085,7965,8048,-8005,8007,8006,-8088,8006,8045,-8089,8010,8008,-8090,8010,8090,-8010,8091,8012,-8012,8011,8049,-8093,8009,8093,-8050,8050,8013,-8095,8013,8015,-8095,8012,8091,-8052,7970,8051,-8053,8014,8052,-8054,8054,7971,-8054,8095,8015,-8055,8055,8056,-7973,3852, +7973,-8057,8055,8016,-8097,8050,8097,-8017,8089,8008,-8019,8098,8017,-8058,8099,8018,-8018,8058,8100,-8021,8057,8020,-8102,8102,8059,-8022,8034,8102,-8022,8061,8022,-8104,8060,8023,-8105,8023,8061,-8106,8106,8022,-8060,8024,8107,-8027,8024,8025,-8109,8025,8060,-8109,8062,7981,-8065,8062,8109,-8028,8027,8109,-8064,8063,8065,-7947,8064,8026,-8111,8111,8028,-8066,8058,8028,-8101,8029,8035,-8076,8029,8075,-8067,8066,8112,-8031,8113,8067,-8032,8031,8068,-8114,8112,8068,-8031,8067,8114,-8033,8069,8032,-8116,8069,8033,-7991,8033,8069,-8071,8070,8116,-8035,8036,8071,-8073,8007,8087,-8038,8117,8071,-8038,8073,8074,-7995,8072,8118,-8039,8119,8073,-8039,7995,8074,-8121,8120,8075,-7996,8040,8039,-8122,8122,8039,-8077,8077,7997,-8079,8078,8040,-8122,8077,8079,-7999,8042,8079,-8124,8043,8122,-8077,8124,8048,-8000,8044,8125,-8081,8000,8080,-8082,8001,8081,-8084,8044,8082,-8126,8083,8088,-8046,8046,8084,-8127,8082,8046,-8128,8004,8128,-8086,8003,8085,-8130,8003,8129,-8087,8047,8086,-8131,8084,8047,-8131,8048,8131,-8005,8006,8088,-8088,8089,8090,-8011,8132,8009,-8091,8011,8092,-8092,8133,8092,-8050,8093,8009,-8135,8049,8093,-8136,8050,8094,-8137,8094,8015,-8096,8051,8091,-8138,8052,8051,-8138,8138,8053,-8053,8054,8053,-8140,8095,8054,-8141,8055,8096,-8057,3852,8056,-8142,8097,8096,-8017,8050,8136,-8098,8089,8018,-8143,8017,8098,-8100,8098,8057,-8102,8142,8018,-8100,8101,8020,-8101,8059,8102,-8107,8034,8116,-8103,8106,8103,-8023,8143,8061,-8104,8104,8023,-8106,8060,8104,-8109,8105,8061,-8145,8024,8145,-8108,8107,8110,-8027,8108,8145,-8025,8146,8062,-8065,8062,8146,-8110,8109,8147,-8064,8063,8147,-8066,8148,8064,-8111,8100,8028,-8112,8111,8065,-8150,8150,8066,-8076,8112,8066,-8151,8067,8113,-8152,8113,8068,-8153,8112,8153,-8069,8067,8151,-8115,8115,8032,-8115,8069,8115,-8155,8155,8070,-8070,8116,8070,-8157,8071,8157,-8073,8087,8158,-8038,8117,8159,-8072,8160,8117,-8038,8073,8161,-8075,8157,8118,-8073,8119,8038,-8119,8161,8073,-8120,8162,8120,-8075,8163,8075,-8121,8122,8121,-8040,8077,8078,-8165,8078,8121,-8166,8077,8166,-8080,8079,8167, +-8124,8168,8048,-8125,8125,8169,-8081,8170,8081,-8081,8083,8081,-8172,8082,8172,-8126,8083,8173,-8089,8084,8174,-8127,8046,8126,-8128,8082,8127,-8173,8131,8128,-8005,8175,8085,-8129,8085,8176,-8130,8129,8177,-8087,8178,8130,-8087,8084,8130,-8175,8048,8168,-8132,8087,8088,-8180,8089,8142,-8091,8180,8009,-8133,8090,8142,-8133,8137,8091,-8093,8133,8181,-8093,8135,8133,-8050,8009,8180,-8135,8182,8093,-8135,8133,8135,-8094,8183,8136,-8095,8094,8095,-8184,8052,8137,-8185,8138,8139,-8054,8052,8185,-8139,8140,8054,-8140,8140,8186,-8096,8096,8141,-8057,8141,3797,-3853,8097,8187,-8097,8097,8136,-8189,8098,8189,-8100,8101,8190,-8099,8142,8099,-8192,8101,8100,-8112,8106,8102,-8193,8102,8116,-8194,8106,8194,-8104,8143,8144,-8062,8103,8194,-8144,8195,8104,-8106,8104,8196,-8109,8195,8105,-8145,8145,8197,-8108,8107,8198,-8111,8199,8145,-8109,8148,8146,-8065,8146,8200,-8110,8147,8109,-8201,8201,8065,-8148,8148,8110,-8199,8149,8065,-8202,8149,8202,-8112,8150,8075,-8164,8203,8112,-8151,8113,8204,-8152,8205,8152,-8069,8152,8204,-8114,8203,8153,-8113,8153,8205,-8069,8151,8206,-8115,8115,8114,-8208,8115,8208,-8155,8155,8069,-8155,8156,8070,-8156,8116,8156,-8194,8159,8157,-8072,8209,8158,-8088,8158,8210,-8038,8159,8117,-8212,8117,8160,-8213,8210,8160,-8038,8161,8162,-8075,8157,8213,-8119,8161,8119,-8119,8162,8214,-8121,8120,8214,-8164,8122,8215,-8122,8164,8078,-8166,8166,8077,-8165,8165,8121,-8216,8166,8167,-8080,8169,8125,-8217,8217,8080,-8170,8171,8081,-8171,8217,8170,-8081,8173,8083,-8172,8125,8172,-8217,8173,8218,-8089,8219,8126,-8175,8127,8126,-8221,8127,8221,-8173,8128,8131,-8223,8085,8175,-8177,8175,8128,-8224,8224,8129,-8177,8224,8177,-8130,8177,8178,-8087,8225,8130,-8179,8226,8174,-8131,8168,8222,-8132,8179,8088,-8219,8179,8209,-8088,8132,8227,-8181,8132,8142,-8229,8137,8092,-8230,8133,8230,-8182,8181,8229,-8093,8180,8231,-8135,8182,8232,-8094,8182,8134,-8232,8133,8093,-8233,8183,8233,-8137,8183,8095,-8235,8229,8184,-8138,8184,8185,-8053,8138,8185,-8140,8235,8140,-8140,8186,8140,-8237,8186,8234,-8096,8096,8237,-8142,8238,3797,-8142, +8097,8188,-8188,8096,8187,-8238,8188,8136,-8234,8098,8239,-8190,8099,8189,-8192,8101,8111,-8191,8098,8190,-8240,8142,8191,-8229,8240,8192,-8103,8192,8194,-8107,8240,8102,-8194,8143,8241,-8145,8143,8194,-8242,8195,8196,-8105,8199,8108,-8197,8195,8144,-8243,8199,8197,-8146,8197,8198,-8108,8148,8243,-8147,8146,8244,-8201,8245,8147,-8201,8201,8147,-8246,8198,8243,-8149,8246,8149,-8202,8202,8149,-8248,8190,8111,-8203,8150,8163,-8249,8150,8248,-8204,8206,8151,-8205,8205,8249,-8153,8152,8249,-8205,8203,8250,-8154,8205,8153,-8252,8206,8207,-8115,8115,8207,-8209,8155,8154,-8209,8252,8156,-8156,8193,8156,-8253,8159,8253,-8158,8209,8254,-8159,8158,8254,-8211,8117,8212,-8212,8253,8159,-8212,8255,8212,-8161,8210,8255,-8161,8161,8256,-8163,8157,8253,-8214,8256,8118,-8214,8256,8161,-8119,8162,8256,-8215,8248,8163,-8215,8164,8165,-8258,8166,8164,-8259,8165,8215,-8258,8166,8259,-8168,8169,8216,-8261,8217,8169,-8261,8261,8171,-8171,8261,8170,-8218,8173,8171,-8262,8172,8221,-8217,8173,8261,-8219,8219,8220,-8127,8174,8262,-8220,8127,8220,-8222,8223,8128,-8223,8175,8263,-8177,8223,8264,-8176,8177,8265,-8179,8225,8226,-8131,8178,8265,-8226,8226,8262,-8175,8266,8179,-8219,8179,8267,-8210,8228,8227,-8133,8227,8268,-8181,8230,8133,-8233,8230,8269,-8182,8181,8269,-8230,8268,8231,-8181,8232,8182,-8271,8182,8231,-8272,8183,8234,-8234,8272,8184,-8230,8184,8273,-8186,8185,8235,-8140,8235,8236,-8141,8274,8186,-8237,8186,8275,-8235,8238,8141,-8238,8238,8276,-3798,8277,8187,-8189,8277,8237,-8188,8188,8233,-8279,8239,8279,-8190,8189,8228,-8192,8190,8202,-8240,8240,8280,-8193,8192,8241,-8195,8252,8240,-8194,8144,8241,-8243,8195,8281,-8197,8199,8196,-8282,8242,8282,-8196,8283,8197,-8200,8198,8197,-8285,8243,8244,-8147,8285,8200,-8245,8245,8200,-8286,8201,8245,-8287,8198,8284,-8244,8149,8246,-8248,8246,8201,-8288,8239,8202,-8248,8250,8203,-8249,8206,8204,-8289,8205,8289,-8250,8249,8288,-8205,8250,8251,-8154,8205,8251,-8290,8206,8290,-8208,8207,8290,-8209,8208,8291,-8156,8291,8252,-8156,8267,8254,-8210,8210,8254,-8256,8211,8212,-8293,8253,8211,-8294,8255, +8292,-8213,8253,8294,-8214,8256,8213,-8296,8214,8256,-8297,8248,8214,-8298,8257,8258,-8165,8259,8166,-8259,8259,8298,-8168,8299,8260,-8217,8300,8217,-8261,8261,8217,-8302,8221,8302,-8217,8218,8261,-8304,8304,8220,-8220,8262,8305,-8220,8306,8221,-8221,8175,8264,-8264,8226,8225,-8308,8308,8225,-8266,8226,8309,-8263,8267,8179,-8267,8266,8218,-8304,8228,8310,-8228,8227,8311,-8269,8230,8232,-8313,8230,8313,-8270,8272,8229,-8270,8231,8268,-8272,8182,8271,-8271,8270,8312,-8233,8233,8234,-8279,8272,8314,-8185,8314,8273,-8185,8185,8273,-8236,8315,8236,-8236,8274,8275,-8187,8315,8274,-8237,8278,8234,-8276,8238,8237,-8317,8238,8316,-8277,3797,8276,-3796,8317,8277,-8189,8318,8237,-8278,8188,8278,-8318,8239,8247,-8280,8189,8279,-8320,8189,8319,-8229,8280,8240,-8321,8192,8280,-8242,8252,8321,-8241,8322,8242,-8242,8282,8281,-8196,8283,8199,-8282,8242,8323,-8283,8283,8324,-8198,8284,8197,-8326,8243,8326,-8245,8244,8327,-8286,8245,8285,-8287,8286,8287,-8202,8328,8243,-8285,8329,8247,-8247,8246,8287,-8331,8250,8248,-8298,8288,8290,-8207,8289,8331,-8250,8288,8249,-8332,8250,8332,-8252,8333,8289,-8252,8208,8290,-8335,8208,8335,-8292,8321,8252,-8292,8267,8336,-8255,8254,8337,-8256,8211,8292,-8339,8211,8338,-8294,8253,8293,-8340,8337,8292,-8256,8253,8339,-8295,8294,8295,-8214,8296,8256,-8296,8296,8297,-8215,8257,8340,-8259,8259,8258,-8342,8342,8298,-8260,8260,8299,-8344,8302,8299,-8217,8344,8217,-8301,8300,8260,-8344,8301,8217,-8345,8301,8303,-8262,8302,8221,-8346,8304,8306,-8221,8304,8219,-8347,8347,8305,-8263,8305,8346,-8220,8306,8345,-8222,8225,8308,-8308,8226,8307,-8310,8347,8262,-8310,8267,8266,-8349,8266,8303,-8350,8228,8350,-8311,8310,8311,-8228,8311,8271,-8269,8351,8230,-8313,8230,8351,-8314,8272,8269,-8314,8352,8270,-8272,8270,8353,-8313,8354,8314,-8273,8355,8273,-8315,8273,8315,-8236,8275,8274,-8357,8357,8274,-8316,8278,8275,-8359,8318,8316,-8238,8359,8276,-8317,8276,3750,-3796,8317,8360,-8278,8318,8277,-8361,8358,8317,-8279,8361,8279,-8248,8362,8319,-8280,8319,8350,-8229,8320,8240,-8322,8320,8363,-8281,8280,8364,-8242,8322,8365, +-8243,8322,8241,-8365,8282,8366,-8282,8366,8283,-8282,8323,8242,-8366,8366,8282,-8324,8324,8283,-8368,8197,8324,-8326,8325,8328,-8285,8326,8243,-8329,8326,8327,-8245,8285,8327,-8369,8285,8368,-8287,8286,8368,-8288,8329,8361,-8248,8330,8329,-8247,8330,8287,-8370,8250,8297,-8371,8288,8371,-8291,8372,8331,-8290,8331,8371,-8289,8373,8332,-8251,8333,8251,-8333,8333,8372,-8290,8334,8290,-8375,8334,8335,-8209,8291,8335,-8322,8348,8336,-8268,8375,8254,-8337,8254,8375,-8338,8337,8338,-8293,8338,8376,-8294,8293,8377,-8340,8294,8339,-8379,8294,8379,-8296,8295,8379,-8297,8370,8297,-8297,8340,8341,-8259,8341,8342,-8260,8342,8380,-8299,8381,8343,-8300,8302,8382,-8300,8343,8344,-8301,8301,8344,-8384,8303,8301,-8384,8345,8382,-8303,8304,8384,-8307,8304,8346,-8385,8347,8385,-8306,8305,8385,-8347,8306,8386,-8346,8308,8387,-8308,8387,8309,-8308,8347,8309,-8389,8349,8348,-8267,8349,8303,-8390,8390,8310,-8351,8310,8391,-8312,8392,8271,-8312,8351,8312,-8394,8313,8351,-8395,8272,8313,-8355,8353,8270,-8353,8352,8271,-8396,8393,8312,-8354,8355,8314,-8355,8355,8396,-8274,8396,8315,-8274,8356,8274,-8398,8356,8358,-8276,8274,8357,-8398,8396,8357,-8316,8318,8398,-8317,8276,8359,-8400,8398,8359,-8317,3750,8276,-8401,8317,8401,-8361,8360,8398,-8319,8358,8402,-8318,8361,8362,-8280,8319,8362,-8351,8320,8321,-8404,8320,8403,-8364,8363,8404,-8281,8280,8404,-8365,8322,8364,-8366,8283,8366,-8368,8323,8365,-8406,8366,8323,-8407,8324,8367,-8408,8324,8407,-8326,8325,8408,-8329,8326,8328,-8410,8327,8326,-8410,8368,8327,-8411,8369,8287,-8369,8411,8361,-8330,8330,8411,-8330,8330,8369,-8413,8250,8370,-8374,8371,8374,-8291,8372,8413,-8332,8331,8413,-8372,8333,8332,-8374,8372,8333,-8415,8334,8374,-8336,8403,8321,-8336,8375,8336,-8349,8415,8337,-8376,8337,8415,-8339,8376,8338,-8416,8376,8416,-8294,8377,8293,-8417,8339,8377,-8418,8339,8418,-8379,8294,8378,-8380,8370,8296,-8380,8340,8419,-8342,8342,8341,-8420,8419,8380,-8343,8298,8380,-8421,8381,8421,-8344,8382,8381,-8300,8343,8421,-8345,8421,8383,-8345,8303,8383,-8390,8345,8422,-8383,8384,8386,-8307,8346,8423,-8385, +8385,8347,-8425,8385,8425,-8347,8386,8422,-8346,8387,8308,-8427,8309,8387,-8389,8347,8388,-8428,8349,8428,-8349,8389,8428,-8350,8429,8310,-8391,8362,8390,-8351,8310,8429,-8392,8392,8311,-8392,8392,8395,-8272,8393,8430,-8352,8430,8394,-8352,8313,8394,-8355,8353,8352,-8432,8432,8352,-8396,8393,8353,-8434,8355,8354,-8395,8396,8355,-8395,8356,8397,-8435,8435,8358,-8357,8436,8397,-8358,8396,8436,-8358,8399,8359,-8399,8276,8399,-8401,8400,3794,-3751,8402,8401,-8318,8437,8360,-8402,8360,8437,-8399,8402,8358,-8439,8361,8411,-8363,8403,8439,-8364,8363,8440,-8405,8364,8404,-8442,8365,8364,-8442,8367,8366,-8443,8405,8365,-8444,8444,8323,-8406,8323,8444,-8407,8442,8366,-8407,8367,8445,-8408,8407,8408,-8326,8446,8328,-8409,8446,8409,-8329,8409,8447,-8328,8447,8410,-8328,8410,8448,-8369,8369,8368,-8449,8411,8330,-8450,8412,8369,-8449,8450,8330,-8413,8378,8373,-8371,8371,8451,-8375,8372,8452,-8414,8371,8413,-8452,8373,8453,-8334,8414,8333,-8454,8414,8454,-8373,8403,8335,-8375,8455,8375,-8349,8455,8415,-8376,8376,8415,-8417,8377,8416,-8457,8456,8417,-8378,8339,8417,-8419,8418,8457,-8379,8370,8379,-8379,8419,8458,-8381,8459,8420,-8381,8381,8460,-8422,8381,8382,-8423,8421,8461,-8384,8383,8461,-8390,8423,8386,-8385,8346,8425,-8424,8427,8424,-8348,8424,8462,-8386,8425,8385,-8463,8463,8422,-8387,8455,8348,-8429,8389,8464,-8429,8429,8390,-8466,8466,8390,-8363,8429,8467,-8392,8392,8391,-8469,8432,8395,-8393,8393,8469,-8431,8430,8470,-8395,8432,8431,-8353,8431,8433,-8354,8469,8393,-8434,8396,8394,-8471,8471,8434,-8398,8434,8472,-8357,8435,8438,-8359,8435,8356,-8473,8473,8397,-8437,8436,8396,-8471,8474,8399,-8399,8474,8400,-8400,8400,3818,-3795,8402,8475,-8402,8437,8401,-8477,8477,8398,-8438,8402,8438,-8479,8466,8362,-8412,8403,8479,-8440,8440,8363,-8440,8441,8404,-8441,8365,8441,-8444,8480,8367,-8443,8405,8443,-8482,8444,8405,-8482,8444,8482,-8407,8483,8442,-8407,8480,8445,-8368,8445,8408,-8408,8484,8446,-8409,8485,8409,-8447,8447,8409,-8486,8486,8410,-8448,8448,8410,-8488,8449,8330,-8451,8449,8488,-8412,8412,8448,-8488,8412,8489,-8451,8457, +8373,-8379,8403,8374,-8452,8372,8454,-8453,8452,8490,-8414,8490,8451,-8414,8491,8453,-8374,8453,8492,-8415,8493,8454,-8415,8456,8415,-8456,8456,8416,-8416,8456,8494,-8418,8495,8418,-8418,8457,8418,-8497,8459,8380,-8459,8420,8459,-8498,8463,8460,-8382,8498,8421,-8461,8381,8422,-8464,8461,8421,-8499,8461,8464,-8390,8423,8463,-8387,8499,8423,-8426,8424,8427,-8501,8424,8500,-8463,8501,8425,-8463,8428,8502,-8456,8428,8464,-8503,8466,8465,-8391,8429,8465,-8504,8467,8429,-8505,8468,8391,-8468,8392,8468,-8433,8505,8430,-8470,8430,8505,-8471,8506,8431,-8433,8431,8507,-8434,8508,8469,-8434,8509,8434,-8472,8473,8471,-8398,8434,8509,-8473,8435,8510,-8439,8511,8435,-8473,8436,8470,-8474,8474,8398,-8478,8474,3818,-8401,8402,8478,-8476,8475,8476,-8402,8476,8477,-8438,8478,8438,-8511,8466,8411,-8489,8451,8479,-8404,8479,8512,-8440,8440,8439,-8514,8513,8441,-8441,8441,8513,-8444,8483,8480,-8443,8481,8443,-8514,8481,8514,-8445,8444,8514,-8483,8406,8482,-8484,8480,8515,-8446,8408,8445,-8485,8485,8446,-8485,8516,8447,-8486,8486,8487,-8411,8516,8486,-8448,8517,8449,-8451,8449,8518,-8489,8489,8412,-8488,8450,8489,-8518,8491,8373,-8458,8454,8519,-8453,8452,8520,-8491,8451,8490,-8480,8453,8491,-8493,8493,8414,-8493,8493,8521,-8455,8522,8456,-8456,8522,8494,-8457,8495,8417,-8495,8496,8418,-8496,8457,8496,-8492,8497,8459,-8524,8463,8524,-8461,8460,8525,-8499,8464,8461,-8499,8423,8526,-8464,8526,8423,-8500,8425,8501,-8500,8427,8527,-8501,8501,8462,-8501,8528,8455,-8503,8502,8464,-8530,8466,8488,-8466,8503,8465,-8489,8503,8504,-8430,8467,8504,-8531,8530,8468,-8468,8531,8432,-8469,8505,8469,-8533,8505,8473,-8471,8506,8507,-8432,8533,8506,-8433,8508,8433,-8508,8508,8532,-8470,8509,8471,-8535,8535,8471,-8474,8509,8511,-8473,8510,8435,-8512,8474,8477,-8537,8474,8537,-3819,8478,8538,-8476,8476,8475,-8540,8536,8477,-8477,8510,8540,-8479,8541,8512,-8480,8512,8513,-8440,8483,8542,-8481,8543,8481,-8514,8481,8544,-8515,8482,8514,-8546,8482,8546,-8484,8515,8480,-8543,8515,8484,-8446,8484,8547,-8486,8516,8485,-8548,8486,8548,-8488,8516,8549,-8487,8518,8449, +-8518,8503,8488,-8519,8489,8487,-8551,8551,8517,-8490,8552,8519,-8455,8519,8520,-8453,8541,8490,-8521,8541,8479,-8491,8491,8496,-8493,8493,8492,-8497,8521,8493,-8554,8521,8552,-8455,8522,8455,-8529,8522,8554,-8495,8494,8555,-8496,8556,8496,-8496,8526,8524,-8464,8524,8525,-8461,8525,8557,-8499,8464,8498,-8559,8526,8499,-8560,8501,8559,-8500,8501,8500,-8528,8528,8502,-8530,8529,8464,-8559,8560,8504,-8504,8530,8504,-8562,8468,8530,-8532,8533,8432,-8532,8535,8505,-8533,8535,8473,-8506,8506,8562,-8508,8533,8563,-8507,8508,8507,-8565,8565,8532,-8509,8534,8471,-8567,8509,8534,-8568,8535,8566,-8472,8509,8567,-8512,8510,8511,-8569,8474,8536,-8570,8537,8474,-8570,8537,3671,-3819,8538,8478,-8541,8538,8570,-8476,8475,8570,-8540,8536,8476,-8540,8510,8571,-8541,8512,8541,-8573,8513,8512,-8544,8546,8542,-8484,8481,8543,-8545,8544,8545,-8515,8545,8546,-8483,8515,8542,-8574,8515,8574,-8485,8484,8574,-8548,8516,8547,-8576,8576,8548,-8487,8548,8550,-8488,8575,8549,-8517,8576,8486,-8550,8518,8517,-8578,8560,8503,-8519,8489,8550,-8552,8551,8578,-8518,8579,8519,-8553,8519,8579,-8521,8541,8520,-8580,8493,8496,-8557,8493,8556,-8554,8580,8521,-8554,8521,8580,-8553,8528,8554,-8523,8494,8554,-8556,8556,8495,-8556,8526,8559,-8525,8524,8581,-8526,8525,8582,-8558,8558,8498,-8558,8583,8559,-8502,8583,8501,-8528,8529,8584,-8529,8558,8585,-8530,8586,8504,-8561,8561,8504,-8587,8530,8561,-8588,8588,8531,-8531,8589,8533,-8532,8590,8535,-8533,8562,8506,-8564,8564,8507,-8563,8589,8563,-8534,8565,8508,-8565,8590,8532,-8566,8534,8566,-8592,8592,8567,-8535,8535,8590,-8567,8568,8511,-8568,8568,8571,-8511,8536,8539,-8570,8593,8537,-8570,8537,3617,-3672,8538,8540,-8595,8538,8595,-8571,8570,8595,-8540,8596,8540,-8572,8572,8541,-8580,8512,8572,-8544,8546,8597,-8543,8544,8543,-8599,8599,8545,-8545,8545,8600,-8547,8542,8597,-8574,8573,8574,-8516,8574,8601,-8548,8601,8575,-8548,8576,8602,-8549,8548,8603,-8551,8575,8604,-8550,8576,8549,-8606,8577,8517,-8579,8577,8586,-8519,8560,8518,-8587,8606,8551,-8551,8578,8551,-8608,8608,8579,-8553,8609,8553,-8557,8580,8553,-8611, +8608,8552,-8581,8584,8554,-8529,8555,8554,-8612,8612,8556,-8556,8559,8581,-8525,8581,8613,-8526,8525,8613,-8583,8614,8557,-8583,8615,8558,-8558,8616,8559,-8584,8583,8527,-8618,8529,8585,-8585,8558,8615,-8586,8561,8586,-8588,8530,8587,-8619,8588,8589,-8532,8588,8530,-8619,8563,8619,-8563,8564,8562,-8621,8621,8563,-8590,8565,8564,-8621,8590,8565,-8623,8591,8566,-8624,8592,8534,-8592,8624,8567,-8593,8590,8623,-8567,8568,8567,-8625,8568,8624,-8572,8595,8569,-8540,8593,8625,-8538,8626,8593,-8570,8625,3617,-8538,8627,8594,-8541,8538,8594,-8596,8596,8627,-8541,8596,8571,-8625,8572,8579,-8609,8572,8598,-8544,8600,8597,-8547,8544,8598,-8600,8599,8628,-8546,8600,8545,-8629,8629,8573,-8598,8630,8574,-8574,8601,8574,-8632,8601,8604,-8576,8602,8576,-8606,8602,8603,-8549,8606,8550,-8604,8604,8605,-8550,8577,8578,-8633,8577,8633,-8587,8606,8607,-8552,8607,8632,-8579,8553,8609,-8611,8612,8609,-8557,8634,8580,-8611,8608,8580,-8635,8554,8584,-8612,8555,8611,-8636,8635,8612,-8556,8559,8616,-8582,8616,8613,-8582,8636,8582,-8614,8557,8614,-8616,8636,8614,-8583,8616,8583,-8638,8637,8583,-8618,8584,8585,-8639,8615,8639,-8586,8640,8587,-8587,8641,8618,-8588,8588,8642,-8590,8618,8643,-8589,8621,8619,-8564,8620,8562,-8620,8589,8644,-8622,8645,8565,-8621,8645,8622,-8566,8622,8623,-8591,8591,8623,-8647,8592,8591,-8648,8624,8592,-8648,8595,8626,-8570,8593,8648,-8626,8649,8593,-8627,3506,3617,-8626,8627,8650,-8595,8595,8594,-8651,8651,8627,-8597,8624,8651,-8597,8572,8608,-8653,8598,8572,-8653,8600,8653,-8598,8654,8599,-8599,8628,8599,-8656,8628,8653,-8601,8629,8630,-8574,8597,8653,-8630,8630,8631,-8575,8601,8631,-8657,8601,8656,-8605,8657,8602,-8606,8603,8602,-8659,8659,8606,-8604,8604,8660,-8606,8633,8577,-8633,8640,8586,-8634,8607,8606,-8660,8607,8661,-8633,8662,8610,-8610,8609,8612,-8664,8610,8664,-8635,8634,8652,-8609,8584,8638,-8612,8635,8611,-8666,8635,8663,-8613,8616,8666,-8614,8636,8613,-8668,8614,8668,-8616,8614,8636,-8669,8616,8637,-8670,8617,8669,-8638,8639,8638,-8586,8615,8668,-8640,8640,8670,-8588,8618,8641,-8644,8671,8641,-8588,8588, +8643,-8643,8644,8589,-8643,8621,8672,-8620,8620,8619,-8674,8644,8672,-8622,8645,8620,-8675,8645,8623,-8623,8646,8623,-8675,8647,8591,-8647,8647,8675,-8625,8595,8650,-8627,8676,8648,-8594,8648,8677,-8626,8649,8676,-8594,8649,8626,-8679,3506,8625,-8678,8679,8650,-8628,8680,8627,-8652,8675,8651,-8625,8598,8652,-8655,8654,8655,-8600,8681,8628,-8656,8682,8653,-8629,8629,8683,-8631,8653,8683,-8630,8630,8684,-8632,8656,8631,-8685,8604,8656,-8686,8657,8658,-8603,8657,8605,-8661,8659,8603,-8659,8604,8685,-8661,8686,8633,-8633,8640,8633,-8671,8687,8607,-8660,8607,8687,-8662,8661,8688,-8633,8662,8664,-8611,8662,8609,-8690,8689,8609,-8664,8664,8654,-8635,8634,8654,-8653,8665,8611,-8639,8665,8663,-8636,8666,8616,-8670,8613,8666,-8668,8667,8690,-8637,8691,8668,-8637,8669,8617,-8693,8693,8638,-8640,8668,8693,-8640,8670,8671,-8588,8694,8643,-8642,8695,8641,-8672,8694,8642,-8644,8644,8642,-8697,8673,8619,-8673,8697,8620,-8674,8644,8696,-8673,8697,8674,-8621,8645,8674,-8624,8646,8674,-8699,8699,8647,-8647,8647,8700,-8676,8650,8678,-8627,8676,8701,-8649,8702,8677,-8649,8703,8676,-8650,8703,8649,-8679,3506,8677,-3351,8650,8679,-8679,8679,8627,-8681,8651,8675,-8681,8704,8655,-8655,8681,8682,-8629,8655,8704,-8682,8682,8705,-8654,8684,8630,-8684,8705,8683,-8654,8656,8684,-8707,8706,8685,-8657,8658,8657,-8708,8708,8657,-8661,8687,8659,-8659,8685,8708,-8661,8686,8709,-8634,8688,8686,-8633,8709,8670,-8634,8710,8661,-8688,8661,8711,-8689,8662,8712,-8665,8662,8689,-8714,8713,8689,-8664,8704,8654,-8665,8693,8665,-8639,8665,8714,-8664,8669,8715,-8667,8666,8715,-8668,8667,8716,-8691,8690,8717,-8637,8691,8718,-8669,8691,8636,-8718,8669,8692,-8716,8693,8668,-8715,8670,8719,-8672,8694,8641,-8721,8695,8720,-8642,8695,8671,-8720,8721,8642,-8695,8721,8696,-8643,8673,8672,-8723,8697,8673,-8724,8724,8672,-8697,8697,8698,-8675,8698,8699,-8647,8647,8699,-8701,8725,8675,-8701,8726,8701,-8677,8648,8701,-8703,8702,8727,-8678,8726,8676,-8704,8703,8678,-8729,8727,3350,-8678,8679,8728,-8679,8679,8680,-8729,8729,8680,-8676,8681,8730,-8683,8704,8731,-8682,8682,8730, +-8706,8684,8683,-8733,8733,8683,-8706,8684,8732,-8707,8708,8685,-8707,8708,8707,-8658,8658,8707,-8735,8687,8658,-8735,8686,8735,-8710,8688,8736,-8687,8709,8737,-8671,8710,8711,-8662,8710,8687,-8735,8736,8688,-8712,8662,8713,-8713,8664,8712,-8705,8663,8714,-8714,8693,8714,-8666,8716,8667,-8716,8716,8738,-8691,8717,8690,-8739,8717,8718,-8692,8718,8714,-8669,8715,8692,-8740,8737,8719,-8671,8721,8694,-8721,8740,8720,-8696,8741,8695,-8720,8721,8742,-8697,8724,8722,-8673,8723,8673,-8723,8697,8723,-8699,8696,8743,-8725,8699,8698,-8745,8699,8745,-8701,8725,8729,-8676,8725,8700,-8747,8726,8747,-8702,8701,8748,-8703,8702,8749,-8728,8703,8750,-8727,8728,8750,-8704,8727,3402,-3351,8680,8751,-8729,8751,8680,-8730,8752,8730,-8682,8731,8704,-8754,8752,8681,-8732,8730,8754,-8706,8732,8683,-8756,8733,8755,-8684,8733,8705,-8755,8706,8732,-8757,8708,8706,-8757,8757,8707,-8709,8758,8734,-8708,8735,8686,-8760,8737,8709,-8736,8736,8759,-8687,8710,8760,-8712,8710,8734,-8761,8736,8711,-8762,8762,8712,-8714,8753,8704,-8713,8713,8714,-8763,8716,8715,-8764,8716,8764,-8739,8717,8738,-8766,8766,8718,-8718,8767,8714,-8719,8715,8739,-8769,8769,8719,-8738,8742,8721,-8721,8770,8720,-8741,8741,8740,-8696,8769,8741,-8720,8696,8742,-8744,8724,8771,-8723,8771,8723,-8723,8772,8698,-8724,8698,8773,-8745,8745,8699,-8745,8700,8745,-8747,8725,8774,-8730,8725,8746,-8775,8747,8726,-8776,8701,8747,-8749,8749,8702,-8749,8776,8727,-8750,8775,8726,-8751,8751,8750,-8729,8727,3507,-3403,8751,8729,-8775,8752,8777,-8731,8778,8731,-8754,8752,8731,-8779,8777,8754,-8731,8779,8732,-8756,8733,8780,-8756,8733,8754,-8782,8779,8756,-8733,8782,8708,-8757,8757,8758,-8708,8708,8782,-8758,8758,8760,-8735,8735,8759,-8784,8784,8737,-8736,8736,8783,-8760,8760,8785,-8712,8785,8761,-8712,8736,8761,-8784,8753,8712,-8763,8767,8762,-8715,8715,8768,-8764,8764,8716,-8764,8764,8765,-8739,8717,8765,-8787,8766,8767,-8719,8766,8717,-8787,8769,8737,-8785,8742,8720,-8771,8770,8740,-8788,8741,8787,-8741,8788,8741,-8770,8742,8789,-8744,8724,8790,-8772,8772,8723,-8772,8773,8698,-8773,8773,8791,-8745, +8792,8745,-8745,8746,8745,-8793,8774,8746,-8794,8747,8775,-8795,8747,8749,-8749,8776,3507,-8728,8776,8749,-8796,8796,8775,-8751,8751,8796,-8751,8797,8751,-8775,8752,8778,-8778,8798,8778,-8754,8777,8781,-8755,8755,8780,-8780,8780,8733,-8782,8779,8799,-8757,8782,8756,-8801,8757,8801,-8759,8757,8782,-8801,8758,8785,-8761,8802,8735,-8784,8735,8802,-8785,8803,8761,-8786,8783,8761,-8804,8753,8762,-8799,8767,8798,-8763,8804,8763,-8769,8805,8764,-8764,8764,8806,-8766,8807,8786,-8766,8808,8767,-8767,8766,8786,-8810,8769,8784,-8811,8811,8742,-8771,8812,8770,-8788,8741,8813,-8788,8788,8813,-8742,8810,8788,-8770,8742,8811,-8790,8790,8772,-8772,8791,8773,-8773,8792,8744,-8815,8746,8792,-8794,8774,8793,-8816,8816,8794,-8776,8817,8747,-8795,8747,8818,-8750,8776,8795,-3508,8795,8749,-8819,8796,8816,-8776,8751,8797,-8797,8797,8774,-8816,8777,8778,-8820,8798,8808,-8779,8820,8781,-8778,8780,8821,-8780,8780,8781,-8822,8799,8779,-8822,8800,8756,-8800,8757,8822,-8802,8785,8758,-8802,8757,8800,-8824,8802,8783,-8804,8810,8784,-8803,8803,8785,-8825,8808,8798,-8768,8804,8825,-8764,8806,8764,-8806,8805,8763,-8827,8807,8765,-8807,8807,8820,-8787,8809,8808,-8767,8786,8820,-8810,8811,8770,-8813,8812,8787,-8828,8813,8828,-8788,8788,8829,-8814,8810,8830,-8789,8791,8772,-8791,8831,8792,-8815,8793,8792,-8832,8815,8793,-8833,8816,8833,-8795,8818,8747,-8818,8833,8817,-8795,8797,8816,-8797,8834,8797,-8816,8819,8778,-8809,8777,8819,-8821,8835,8781,-8821,8821,8781,-8836,8799,8821,-8837,8823,8800,-8800,8823,8822,-8758,8785,8801,-8823,8837,8802,-8804,8810,8802,-8838,8824,8785,-8823,8838,8803,-8825,8825,8804,-8840,8825,8826,-8764,8806,8805,-8841,8841,8805,-8827,8840,8807,-8807,8835,8820,-8808,8819,8808,-8810,8820,8819,-8810,8828,8827,-8788,8813,8829,-8829,8830,8829,-8789,8837,8830,-8811,8831,8832,-8794,8815,8832,-8835,8833,8816,-8843,8797,8842,-8817,8834,8842,-8798,8821,8835,-8844,8821,8843,-8837,8836,8844,-8800,8823,8799,-8845,8823,8845,-8823,8837,8803,-8839,8824,8822,-8847,8838,8824,-8848,8841,8825,-8840,8825,8841,-8827,8841,8840,-8806,8840,8843,-8808,8843, +8835,-8808,8837,8848,-8831,8833,8842,-8835,8849,8836,-8844,8836,8850,-8845,8823,8844,-8846,8822,8845,-8847,8837,8838,-8849,8847,8824,-8847,8841,8839,-8852,8841,8851,-8841,8849,8843,-8841,8849,8850,-8837,8850,8845,-8845,8845,8850,-8847,8847,8846,-8853,8851,8839,-8851,8840,8851,-8850,8851,8850,-8850,8850,8852,-8847,8852,8850,-8840,8853,8854,-8856,8853,8856,-8855,8854,8857,-8856,8858,8853,-8856,8856,8853,-8860,8856,8860,-8855,8861,8857,-8855,8862,8855,-8858,8853,8858,-8864,8858,8855,-8865,8853,8865,-8860,8856,8859,-8867,8866,8860,-8857,8854,8860,-8868,8861,8868,-8858,8854,8867,-8862,8855,8862,-8865,8857,8869,-8863,8858,8870,-8864,8865,8853,-8864,8871,8858,-8865,8865,8872,-8860,8859,8873,-8867,8866,8874,-8861,8867,8860,-8876,8868,8861,-8877,8857,8868,-8878,8861,8867,-8877,8862,8878,-8865,8869,8857,-8878,8869,8878,-8863,8879,8870,-8859,8870,8865,-8864,8858,8871,-8881,8871,8864,-8882,8872,8865,-4872,8859,8872,-8874,8873,8874,-8867,8874,8875,-8861,8867,8875,-8883,8876,8883,-8869,8877,8868,-8885,8885,8876,-8868,8886,8864,-8879,8877,8887,-8870,8869,8888,-8879,8889,8870,-8880,8858,8880,-8880,8890,8865,-8871,8871,8891,-8881,8886,8881,-8865,8891,8871,-8882,8865,8892,-4872,8893,8872,-4872,8872,8894,-8874,8874,8873,-8896,8874,8895,-8876,8896,8882,-8876,8867,8882,-8886,8897,8883,-8877,8883,8884,-8869,8884,8898,-8878,8876,8885,-8900,8886,8878,-8889,8877,8898,-8888,8887,8900,-8870,8869,8900,-8889,8870,8889,-8902,8879,8902,-8890,8903,8879,-8881,8892,8865,-8891,8901,8890,-8871,8904,8880,-8892,8886,8905,-8882,8891,8881,-8907,8892,8907,-4872,8894,8872,-8894,4870,8893,-4872,8894,4915,-8874,8908,8895,-8874,8875,8895,-8910,8899,8882,-8897,8896,8875,-8910,8885,8882,-8900,8897,8910,-8884,8911,8897,-8877,8883,8912,-8885,8884,8913,-8899,8876,8899,-8915,8915,8886,-8889,8887,8898,-8917,8900,8887,-8918,8918,8888,-8901,8903,8902,-8880,8889,8902,-8920,8904,8903,-8881,8907,8892,-8891,8890,8901,-8908,8891,8906,-8905,8905,8886,-8921,8905,8921,-8882,8881,8921,-8907,4915,8894,-8894,4915,8893,-4871,4915,8908,-8874,8895,8908,-8923,8923,8909,-8896,8899,8896, +-8925,8925,8896,-8910,8897,8926,-8911,8910,8912,-8884,8927,8897,-8912,8911,8876,-8915,8912,8913,-8885,8928,8898,-8914,8899,8924,-8915,8886,8915,-8921,8915,8888,-8919,8898,8928,-8917,8916,8917,-8888,8917,7186,-8901,8918,8900,-7187,8929,8902,-8904,8930,8919,-8903,8931,8903,-8905,8906,8932,-8905,8920,8933,-8906,8933,8921,-8906,8921,8932,-8907,4915,4914,-8909,8922,8908,-4915,8922,8923,-8896,8909,8923,-8935,8935,8924,-8897,8896,8925,-8937,8925,8909,-8935,8926,8897,-8928,8937,8910,-8927,8910,8938,-8913,8911,8939,-8928,8924,8911,-8915,8938,8913,-8913,8928,8913,-8941,8920,8915,-8942,8918,7265,-8916,8942,8916,-8929,8917,8916,-8944,8917,7151,-7187,8918,7186,-7266,8929,8930,-8903,8903,8931,-8930,8904,8944,-8932,8904,8932,-8945,8933,8920,-8946,8921,8933,-8947,8921,8946,-8933,4942,8922,-4915,8923,8922,-8948,8934,8923,-8949,8949,8924,-8936,8896,8936,-8936,8936,8925,-8951,8934,8950,-8926,8927,8951,-8927,8937,8938,-8911,8937,8926,-8952,8952,8939,-8912,8939,8953,-8928,8924,8952,-8912,8913,8938,-8941,8928,8940,-8955,7265,8941,-8916,8920,8941,-8956,8942,8956,-8917,8928,8957,-8943,8956,8943,-8917,8943,7151,-8918,8929,8958,-8931,8931,8959,-8930,8944,8960,-8932,8944,8932,-8962,8945,8920,-8956,8933,8945,-8947,8962,8932,-8947,8922,4942,-8948,8963,8923,-8948,5040,8948,-8924,8964,8934,-8949,8924,8949,-8953,8935,8965,-8950,8936,8966,-8936,8967,8936,-8951,8950,8934,-8965,8968,8951,-8928,8937,8969,-8939,8970,8937,-8952,8971,8939,-8953,8971,8953,-8940,8968,8927,-8954,8969,8940,-8939,8954,8940,-8973,8928,8954,-8958,8973,8941,-7266,8974,8955,-8942,8956,8942,-7228,8975,8942,-8958,8943,8956,-7228,7151,8943,-7188,8958,8929,-8960,8976,8930,-8959,8977,8959,-8932,8944,8961,-8961,8977,8931,-8961,8932,8962,-8962,8955,8978,-8946,8945,8962,-8947,8947,4942,-4984,5040,8923,-8964,5019,8963,-8948,8979,8948,-5041,8979,8964,-8949,8980,8952,-8950,8965,8935,-8982,8980,8949,-8966,8966,8936,-8968,8981,8935,-8967,8982,8967,-8951,8964,8983,-8951,8984,8951,-8969,8970,8969,-8938,8985,8970,-8952,8952,8980,-8972,8986,8953,-8972,8987,8968,-8954,8972,8940,-8970,8954,8972,-8989, +8954,8988,-8958,8941,8973,-8990,8974,8978,-8956,8941,8989,-8975,8942,8975,-7228,8990,8975,-8958,7187,8943,-7228,8991,8958,-8960,8976,8958,-8993,8993,8959,-8978,8994,8960,-8962,8960,8995,-8978,8996,8961,-8963,8945,8978,-8998,8945,8997,-8963,8947,4983,-5020,5019,5040,-8964,5040,5075,-8980,8964,8979,-8999,8999,8965,-8982,8980,8965,-9000,8966,8967,-9001,8981,8966,-9002,8982,9000,-8968,8982,8950,-8984,8983,8964,-9003,8984,8985,-8952,8968,9003,-8985,8970,9004,-8970,8985,9004,-8971,8971,8980,-8987,8986,9005,-8954,9006,8968,-8988,8953,9005,-8988,8969,9004,-8973,8972,9007,-8989,8957,8988,-9009,8978,8974,-9010,9010,7227,-8976,8975,8990,-9012,8957,9008,-8991,8958,8991,-8993,8991,8959,-8994,9012,8976,-8993,8993,8977,-9014,8960,8994,-8996,8994,8961,-9015,8995,9013,-8978,9014,8961,-8997,8996,8962,-8998,8997,8978,-9010,8998,8979,-5076,8964,8998,-9003,8999,8981,-9002,8986,8980,-9000,9000,9015,-8967,9015,9001,-8967,8983,9000,-8983,8983,9002,-9017,8985,8984,-9018,9006,9003,-8969,9003,9018,-8985,8985,9019,-9005,8986,9020,-9006,9006,8987,-9022,9005,9021,-8988,9022,8972,-9005,8972,9023,-9008,9024,8988,-9008,9024,9008,-8989,8974,9025,-9010,8975,9026,-9011,9027,9011,-8991,8975,9011,-9027,9027,8990,-9009,8992,8991,-9029,9029,8991,-8994,8992,9028,-9013,9013,9030,-8994,8995,8994,-9014,8994,9014,-9032,9014,8996,-9033,9033,8996,-8998,8997,9009,-9035,5075,9035,-8999,8998,9036,-9003,9001,9037,-9000,8986,8999,-9039,9039,9015,-9001,9015,9040,-9002,8983,9039,-9001,9016,9002,-9037,9016,9041,-8984,9017,8984,-9019,8985,9017,-9020,9042,9003,-9007,9043,9018,-9004,9019,9022,-9005,8986,9044,-9021,9020,9044,-9006,9006,9021,-9043,9045,9021,-9006,9023,8972,-9023,9023,9046,-9008,9024,9007,-9047,9024,9027,-9009,9009,9025,-9035,9047,9011,-9028,9011,9048,-9027,8991,9049,-9029,8991,9029,-9051,8993,9030,-9030,9051,9012,-9029,9013,9052,-9031,9053,9013,-8995,9031,9014,-9033,9054,8994,-9032,9033,9032,-8997,8997,9034,-9034,9035,5075,-5096,9035,9036,-8999,9040,9037,-9002,8999,9037,-9056,9038,8999,-9056,8986,9038,-9045,9056,9015,-9040,9057,9040,-9016,8983,9041,-9040,9058, +9016,-9037,9016,9059,-9042,9060,9017,-9019,9061,9019,-9018,9042,9043,-9004,9043,9062,-9019,9019,9063,-9023,9005,9044,-9065,9045,9042,-9022,9045,9005,-9065,9023,9022,-9064,9065,9046,-9024,9024,9046,-9067,9024,9066,-9028,9067,9034,-9026,9068,9011,-9048,9047,9027,-9070,9011,9070,-9049,8991,9050,-9050,9071,9028,-9050,9072,9050,-9030,9073,9029,-9031,9071,9051,-9029,9052,9013,-9054,9030,9052,-9075,8994,9054,-9054,9075,9031,-9033,9075,9054,-9032,9033,9076,-9033,9067,9033,-9035,5095,9077,-9036,9035,9058,-9037,9040,9078,-9038,9056,9057,-9016,9039,9079,-9057,9040,9057,-9081,9039,9041,-9082,9058,9082,-9017,9059,9016,-9083,9041,9059,-9082,9060,9061,-9018,9060,9018,-9063,9061,9063,-9020,9083,9043,-9043,9062,9043,-9085,9042,9045,-9086,9064,9086,-9046,9065,9023,-9064,9087,9046,-9066,9088,9066,-9047,9066,9069,-9028,9011,9068,-9071,9068,9047,-9090,9089,9047,-9070,9090,9048,-9071,9050,9091,-9050,9049,9092,-9072,9093,9050,-9073,9072,9029,-9074,9073,9030,-9075,9071,9094,-9052,9095,9052,-9054,9074,9052,-9096,9053,9054,-9096,9075,9032,-9077,9054,9075,-9097,9033,9067,-9077,5095,5126,-9078,9077,9097,-9036,9035,9097,-9059,9040,9098,-9079,9056,9080,-9058,9099,9079,-9040,9079,9100,-9057,9101,9040,-9081,9099,9039,-9082,9058,9102,-9083,9059,9082,-9104,9059,9104,-9082,9060,9105,-9062,9106,9060,-9063,9107,9063,-9062,9083,9084,-9044,9042,9085,-9084,9108,9062,-9085,9085,9045,-9087,9064,9109,-9087,9063,9110,-9066,9088,9046,-9088,9111,9087,-9066,9066,9088,-9070,9112,9070,-9069,9112,9068,-9090,9089,9069,-9089,9070,9113,-9091,9093,9091,-9051,9049,9091,-9093,9071,9092,-9095,9072,9114,-9094,9073,9115,-9073,9073,9074,-9117,9116,9074,-9096,9117,9095,-9055,9096,9117,-9055,9118,9077,-5127,9118,9097,-9078,9058,9097,-9103,9119,9098,-9041,9080,9056,-9121,9079,9099,-9122,9079,9122,-9101,9100,9120,-9057,9040,9101,-9120,9120,9101,-9081,9081,9121,-9100,9082,9102,-9124,9123,9103,-9083,9059,9103,-9105,9104,9121,-9082,9105,9060,-9107,9105,9124,-9062,9062,9125,-9107,9110,9063,-9108,9107,9061,-9125,9084,9083,-9127,9127,9083,-9086,9125,9062,-9109,9108,9084,-9127,9085,9086, +-9129,9109,9128,-9087,9129,9065,-9111,9111,9088,-9088,9129,9111,-9066,9130,9070,-9113,9112,9089,-9132,9088,9131,-9090,9070,9130,-9114,9132,9090,-9114,9133,9091,-9094,9091,9134,-9093,9135,9094,-9093,9072,9136,-9115,9093,9114,-9134,9073,9116,-9116,9072,9115,-9137,9116,9095,-9118,9117,9096,-9138,9118,5126,-5143,9138,9097,-9119,9138,9102,-9098,9098,9119,-9140,9122,9079,-9122,9122,9140,-9101,9139,9120,-9101,9119,9101,-9140,9101,9120,-9140,9138,9123,-9103,9123,9141,-9104,9142,9104,-9104,9104,9143,-9122,9144,9105,-9107,9105,9145,-9125,9144,9106,-9126,9107,9146,-9111,9145,9107,-9125,9126,9083,-9148,9127,9148,-9084,9128,9127,-9086,9108,9126,-9148,9129,9110,-9150,9088,9111,-9151,9111,9129,-9152,9112,9152,-9131,9112,9131,-9153,9153,9131,-9089,9132,9113,-9131,9154,9090,-9133,9091,9133,-9135,9092,9134,-9156,9092,9155,-9136,9156,9114,-9137,9114,9157,-9134,9116,9158,-9116,9115,9159,-9137,9117,9158,-9117,9137,9096,-9161,9158,9117,-9138,5142,9161,-9119,9118,9161,-9139,9122,9121,-9163,9140,9122,-9164,9100,9140,-9140,9138,9164,-9124,9164,9141,-9124,9142,9103,-9142,9142,9143,-9105,9162,9121,-9144,9105,9144,-9146,9107,9145,-9147,9146,9165,-9111,9147,9083,-9167,9148,9127,-9168,9168,9083,-9149,9147,9169,-9109,9110,9170,-9150,9129,9149,-9152,9111,9151,-9151,9088,9150,-9154,9171,9130,-9153,9131,9172,-9153,9131,9153,-9173,9132,9130,-9172,9090,9154,-9174,9132,9174,-9155,9133,9175,-9135,9155,9134,-9177,9177,9135,-9156,9114,9156,-9179,9156,9136,-9160,9114,9178,-9158,9179,9133,-9158,9115,9158,-9160,9160,9180,-9138,9181,9158,-9138,9182,9161,-5143,9183,9138,-9162,9163,9122,-9163,9140,9163,-9185,9183,9164,-9139,9164,9185,-9142,9142,9141,-9187,9143,9142,-9187,9187,9162,-9144,9188,9145,-9145,9145,9165,-9147,9110,9165,-9171,9166,9083,-9169,9169,9147,-9167,9168,9148,-9168,9149,9170,-9190,9149,9190,-9152,9151,9191,-9151,9191,9153,-9151,9171,9152,-9173,9192,9172,-9154,9132,9171,-9175,9173,9154,-9194,9194,9154,-9175,9133,9179,-9176,9175,9176,-9135,9195,9155,-9177,9195,9177,-9156,9156,9196,-9179,9156,9159,-9198,9198,9157,-9179,9179,9157,-9199,9181,9159,-9159, +9180,9160,-9200,9181,9137,-9181,9182,9200,-9162,9182,5142,-5160,9183,9161,-9201,9163,9162,-9202,9184,9163,-9203,9183,9200,-9165,9185,9164,-9204,9185,9186,-9142,9204,9143,-9187,9187,9205,-9163,9143,9204,-9188,9145,9188,-9207,9145,9206,-9166,9207,9170,-9166,9208,9166,-9169,9169,9166,-9209,9208,9168,-9168,9170,9209,-9190,9149,9189,-9191,9151,9190,-9192,9191,9210,-9154,9171,9172,-9212,9192,9211,-9173,9192,9153,-9211,9171,9211,-9175,9212,9193,-9155,9213,9173,-9194,9212,9154,-9195,9194,9174,-9215,9215,9175,-9180,9216,9176,-9176,9217,9195,-9177,9218,9177,-9196,9156,9197,-9197,9196,9219,-9179,9197,9159,-9182,9198,9178,-9220,9198,9220,-9180,9199,9221,-9181,9180,9197,-9182,9182,9222,-9201,5159,9222,-9183,9201,9162,-9206,9163,9201,-9224,9202,9163,-9224,9164,9200,-9204,9224,9185,-9204,9224,9186,-9186,9225,9204,-9187,9205,9187,-9227,9187,9204,-9226,9209,9170,-9208,9227,9189,-9210,9227,9190,-9190,9190,9228,-9192,9229,9210,-9192,9214,9211,-9193,9192,9210,-9231,9214,9174,-9212,9212,9231,-9194,9232,9173,-9214,9233,9213,-9194,9212,9194,-9235,9234,9194,-9215,9216,9175,-9216,9179,9235,-9216,9216,9217,-9177,9236,9195,-9218,9236,9218,-9196,9197,9180,-9197,9237,9219,-9197,9238,9198,-9220,9198,9238,-9221,9179,9220,-9236,9221,9199,-9240,9240,9180,-9222,9222,9241,-9201,9222,5159,-5158,9205,9242,-9202,9201,9242,-9224,9243,9202,-9224,9244,9203,-9201,9245,9224,-9204,9224,9225,-9187,9187,9246,-9227,9226,9242,-9206,9187,9225,-9247,9209,9207,-9248,9248,9227,-9210,9190,9227,-9250,9228,9190,-9250,9191,9228,-9251,9210,9229,-9252,9229,9191,-9251,9192,9230,-9215,9230,9210,-9252,9252,9231,-9213,9231,9253,-9194,9254,9232,-9214,9233,9254,-9214,9253,9233,-9194,9255,9212,-9235,9234,9214,-9231,9256,9216,-9216,9235,9257,-9216,9217,9216,-9259,9236,9217,-9260,9237,9196,-9181,9260,9219,-9238,9260,9238,-9220,9261,9220,-9239,9261,9235,-9221,9221,9239,-9263,9180,9240,-9238,9221,9263,-9241,9222,9264,-9242,9241,9244,-9201,5157,9264,-9223,9265,9223,-9243,9243,9266,-9203,9243,9223,-9266,9244,9245,-9204,9245,9267,-9225,9224,9267,-9226,9246,9268,-9227,9226,9269,-9243,9267, +9246,-9226,9270,9209,-9248,9248,9249,-9228,9209,9271,-9249,9228,9249,-9273,9228,9272,-9251,9273,9251,-9230,9229,9250,-9275,9230,9251,-9256,9231,9252,-9276,9252,9212,-9256,9231,9275,-9254,9276,9232,-9255,9277,9254,-9234,9233,9253,-9279,9255,9234,-9231,9256,9258,-9217,9215,9279,-9257,9235,9280,-9258,9279,9215,-9258,9217,9258,-9260,9281,9236,-9260,9237,9282,-9261,9261,9238,-9261,9235,9261,-9281,9221,9262,-9264,9237,9240,-9283,9263,9283,-9241,9264,9284,-9242,9241,9284,-9245,5157,5158,-9265,9242,9269,-9266,9266,9243,-9286,9243,9265,-9287,9244,9287,-9246,9245,9288,-9268,9289,9268,-9247,9268,9290,-9227,9290,9269,-9227,9267,9288,-9247,9209,9270,-9272,9248,9291,-9250,9271,9292,-9249,9293,9272,-9250,9294,9250,-9273,9273,9255,-9252,9229,9295,-9274,9274,9250,-9295,9229,9274,-9296,9296,9275,-9253,9255,9273,-9253,9297,9253,-9276,9276,9254,-9299,9277,9298,-9255,9278,9277,-9234,9278,9253,-9300,9300,9258,-9257,9300,9256,-9280,9257,9280,-9302,9302,9279,-9258,9303,9259,-9259,9259,9304,-9282,9260,9282,-9302,9260,9280,-9262,9305,9263,-9263,9306,9282,-9241,9263,9307,-9284,9240,9283,-9309,9264,9309,-9285,9244,9284,-9311,9309,9264,-5159,9265,9269,-9312,9243,9286,-9286,9266,9285,-9313,9265,9311,-9287,9244,9310,-9288,9288,9245,-9288,9290,9268,-9290,9246,9288,-9290,9269,9290,-9314,9271,9270,-9293,9314,9291,-9249,9293,9249,-9292,9248,9292,-9315,9293,9315,-9273,9294,9272,-9317,9296,9273,-9296,9274,9294,-9318,9318,9295,-9275,9296,9319,-9276,9296,9252,-9274,9299,9253,-9298,9297,9275,-9320,9320,9276,-9299,9277,9321,-9299,9322,9277,-9279,9278,9299,-9324,9258,9300,-9325,9279,9302,-9301,9260,9301,-9281,9301,9325,-9258,9257,9325,-9303,9303,9326,-9260,9303,9258,-9325,9259,9326,-9305,9304,9327,-9282,9328,9301,-9283,9305,9329,-9264,9282,9306,-9329,9240,9308,-9307,9307,9263,-9330,9307,9330,-9284,9283,9331,-9309,9284,9309,-9333,9284,9333,-9311,5158,5161,-9310,9311,9269,-9314,9285,9286,-9335,9312,9285,-9336,9334,9286,-9312,9287,9310,-9337,9288,9287,-9337,9290,9289,-9338,9338,9289,-9289,9290,1088,-9314,9270,9339,-9293,9340,9291,-9315,9340,9293,-9292,9341,9314, +-9293,9342,9315,-9294,9315,9343,-9273,9316,9272,-9344,9294,9316,-9318,9318,9296,-9296,9274,9317,-9345,9318,9274,-9345,9296,9318,-9320,9299,9297,-9320,9298,9321,-9321,9277,9345,-9322,9322,9346,-9278,9322,9278,-9348,9348,9323,-9300,9278,9323,-9348,9300,9349,-9325,9302,9350,-9301,9301,9328,-9326,9325,9351,-9303,9303,9352,-9327,9303,9324,-9353,9304,9326,-9354,9354,9327,-9305,9355,9328,-9307,9306,9308,-9356,9307,9329,-9331,9330,9356,-9284,9283,9356,-9332,9308,9331,-9358,9358,9332,-9310,9284,9332,-9334,9359,9310,-9334,9360,9309,-5162,1088,9311,-9314,9285,9334,-9362,9361,9335,-9286,9311,9362,-9335,9359,9336,-9311,9336,9363,-9289,9338,9337,-9290,1039,9290,-9338,9338,9288,-9364,1039,1088,-9291,9341,9292,-9340,9314,9364,-9341,9340,9342,-9294,9341,9364,-9315,9315,9342,-9366,9343,9315,-9367,9316,9343,-9368,9316,9367,-9318,9344,9317,-9369,9318,9344,-9349,9319,9318,-9349,9319,9348,-9300,9320,9321,-9370,9277,9370,-9346,9345,9369,-9322,9322,9371,-9347,9277,9346,-9371,9372,9322,-9348,9348,9344,-9324,9323,9368,-9348,9300,9350,-9350,9324,9349,-9353,9373,9350,-9303,9325,9328,-9375,9351,9325,-9375,9302,9351,-9374,9352,9375,-9327,9326,9375,-9354,9354,9304,-9354,9376,9327,-9355,9328,9355,-9375,9308,9357,-9356,9377,9356,-9331,9378,9331,-9357,9331,9379,-9358,9358,9380,-9333,9360,9358,-9310,9332,9380,-9334,9380,9359,-9334,5172,9360,-5162,9311,1088,-1152,9381,9361,-9335,9381,9335,-9362,9362,9311,-1152,9334,9362,-9382,9359,9382,-9337,9363,9336,-9384,987,9337,-9339,9337,987,-1040,9384,9338,-9364,9364,9385,-9341,9386,9342,-9341,9387,9365,-9343,9315,9365,-9367,9343,9366,-9389,9367,9343,-9390,9317,9367,-9391,9317,9390,-9369,9323,9344,-9369,9345,9370,-9392,9369,9345,-9393,9372,9371,-9323,9393,9346,-9372,9391,9370,-9347,9372,9347,-9395,9368,9394,-9348,9395,9349,-9351,9352,9349,-9397,9397,9350,-9374,9355,9351,-9375,9351,9398,-9374,9352,9396,-9376,9353,9375,-9400,9354,9353,-9377,9376,9400,-9328,9355,9357,-9402,9356,9377,-9403,9331,9378,-9380,9356,9402,-9379,9403,9357,-9380,9380,9358,-9405,9358,9360,-5173,9380,9405,-9360,9406,9335,-9382,9362,1151,-1174, +9362,1173,-9382,9359,9407,-9383,9383,9336,-9383,9363,9383,-9409,987,9338,-935,9338,9384,-935,9408,9384,-9364,9386,9340,-9386,9387,9342,-9387,9387,9409,-9366,9365,9410,-9367,9411,9388,-9367,9343,9388,-9390,9367,9389,-9391,9368,9390,-9395,9391,9392,-9346,9372,9412,-9372,9346,9393,-9414,9371,9414,-9394,9346,9413,-9392,9394,9415,-9373,9395,9396,-9350,9350,9397,-9396,9397,9373,-9399,9398,9351,-9356,9416,9375,-9397,9375,9416,-9400,9417,9353,-9400,9418,9376,-9354,9376,9419,-9401,9357,9403,-9402,9398,9355,-9402,9379,9378,-9421,9421,9378,-9403,9379,9422,-9404,9358,5172,-9405,9405,9380,-9405,9407,9359,-9406,9423,9406,-9382,9381,1173,-1192,722,9382,-9408,788,9383,-9383,9383,788,-9409,934,9384,-851,9384,9408,-789,9387,9424,-9410,9425,9365,-9410,9425,9410,-9366,9411,9366,-9411,9411,9426,-9389,9388,9427,-9390,9389,9415,-9391,9394,9390,-9416,9392,9391,-9429,9415,9412,-9373,9371,9412,-9430,9393,9430,-9414,9371,9429,-9415,9393,9414,-9432,9432,9391,-9414,9433,9396,-9396,9397,9434,-9396,9435,9397,-9399,9396,9433,-9417,9399,9416,-9418,9353,9417,-9419,9436,9376,-9419,9376,9436,-9420,9435,9401,-9404,9401,9435,-9399,9378,9437,-9421,9438,9379,-9421,9378,9421,-9438,9438,9422,-9380,9403,9422,-9436,5172,9439,-9405,9439,9405,-9405,689,9407,-9406,1191,9423,-9382,754,9382,-723,689,722,-9408,754,788,-9383,850,9384,-789,9409,9424,-9441,9425,9409,-9442,9442,9410,-9426,9411,9410,-9443,9426,9411,-9444,9426,9427,-9389,9427,9415,-9390,9432,9428,-9392,9415,9427,-9413,9412,9444,-9430,9393,9445,-9431,9413,9430,-9447,9429,9447,-9415,9431,9414,-9448,9445,9393,-9432,9432,9413,-9449,9434,9433,-9396,9397,9449,-9435,9435,9450,-9398,9433,9451,-9417,9416,9452,-9418,9417,9453,-9419,9454,9436,-9419,9436,9454,-9420,9455,9420,-9438,9438,9420,-9456,9438,9456,-9423,9422,9457,-9436,5172,9458,-9440,9405,9439,-690,9423,1191,-1208,9409,9440,-9460,9459,9441,-9410,9425,9441,-9443,9442,9443,-9412,9426,9443,-9461,9426,9444,-9428,9432,9461,-9429,9412,9427,-9445,9429,9444,-9448,9462,9430,-9446,9463,9446,-9431,9413,9446,-9449,9460,9431,-9448,9445,9431,-9465,9448,9465,-9433,9434, +9449,-9434,9397,9450,-9450,9450,9435,-9458,9433,9466,-9452,9416,9451,-9468,9416,9467,-9453,9453,9417,-9453,9468,9418,-9454,9454,9418,-9469,9469,9438,-9456,9438,9469,-9457,9422,9456,-9458,9458,5172,-589,587,9439,-9459,689,9439,-588,9459,9440,-9471,9459,9471,-9442,9442,9441,-9473,9442,9472,-9444,9443,9473,-9461,9460,9444,-9427,9474,9461,-9433,9460,9447,-9445,9463,9430,-9463,9445,9464,-9463,9446,9463,-9476,9446,9475,-9449,9460,9464,-9432,9448,9475,-9466,9432,9465,-9475,9433,9449,-9477,9477,9449,-9451,9450,9457,-9479,9476,9466,-9434,9466,9467,-9452,9467,9479,-9453,9479,9453,-9453,9469,9480,-9457,9457,9456,-9481,587,9458,-589,9459,9470,-9482,9471,9459,-9482,9472,9441,-9472,9443,9472,-9474,9460,9473,-9465,9474,9482,-9462,9463,9462,-9484,9464,9484,-9463,9485,9475,-9464,9486,9465,-9476,9465,9487,-9475,9476,9449,-9489,9488,9449,-9478,9450,9478,-9478,9457,9480,-9479,9466,9476,-9490,9467,9466,-9491,9479,9467,-9492,9453,9479,-9493,9493,9480,-9470,9494,9481,-9471,9471,9481,-9496,9472,9471,-9497,9496,9473,-9473,9464,9473,-9485,9482,9474,-9498,9483,9462,-9499,9499,9463,-9484,9484,9498,-9463,9500,9475,-9486,9485,9463,-9500,9465,9486,-9488,9486,9475,-9501,9501,9474,-9488,9476,9488,-9490,9477,9502,-9489,9477,9478,-9503,9478,9480,-9503,9489,9490,-9467,9467,9490,-9492,9503,9479,-9492,9503,9492,-9480,9493,9504,-9481,9481,9494,-9506,9495,9481,-9506,9471,9495,-9497,9496,9484,-9474,9501,9497,-9475,9483,9498,-9507,9499,9483,-9508,9484,9508,-9499,9500,9485,-9510,9485,9499,-9510,9510,9487,-9487,9500,9511,-9487,9510,9501,-9488,9489,9488,-9513,9513,9488,-9503,9513,9502,-9481,9489,9514,-9491,9490,9515,-9492,9516,9503,-9492,9504,9493,-9518,9504,9513,-9481,9518,9505,-9495,9495,9505,-9520,9496,9495,-9509,9496,9508,-9485,9497,9501,-9521,9508,9506,-9499,9507,9483,-9507,9521,9499,-9508,9509,9511,-9501,9499,9522,-9510,9511,9510,-9487,9510,9523,-9502,9513,9512,-9489,9524,9489,-9513,9524,9514,-9490,9515,9490,-9515,9516,9491,-9516,9517,9493,-9526,9517,9513,-9505,9526,9505,-9519,9526,9519,-9506,9508,9495,-9520,9527,9520,-9502,9497,9520,-9529,9508,9519,-9507, +9529,9507,-9507,9499,9521,-9523,9521,9507,-9531,9509,9531,-9512,9509,9522,-9533,9533,9510,-9512,9510,9534,-9524,9523,9527,-9502,9517,9512,-9514,9524,9512,-9536,9514,9524,-9537,9537,9515,-9515,9516,9515,-9538,9525,9493,-9539,9517,9525,-9536,9518,9539,-9527,9519,9526,-9530,9540,9520,-9528,9541,9528,-9521,9529,9506,-9520,9530,9507,-9530,9542,9522,-9522,9521,9530,-9544,9531,9509,-9533,9544,9511,-9532,9532,9522,-9546,9546,9510,-9534,9511,9547,-9534,9546,9534,-9511,9534,9527,-9524,9512,9517,-9536,9548,9524,-9536,9536,9524,-9549,9514,9536,-9538,9538,9549,-9526,9548,9535,-9526,9526,9539,-9551,9526,9550,-9530,9540,9541,-9521,9551,9540,-9528,9528,9541,-7881,9530,9529,-9551,9542,9545,-9523,9542,9521,-9544,9550,9543,-9531,9532,9552,-9532,9511,9544,-9548,9531,9553,-9545,9545,9554,-9533,9546,9533,-9556,9533,9547,-9556,9556,9534,-9547,9551,9527,-9535,9537,9536,-9549,9549,9557,-9526,9525,9558,-9549,9550,9539,-9560,9541,9540,-7881,8043,9540,-9552,9554,9545,-9543,9543,9560,-9543,9550,9559,-9544,9554,9552,-9533,9561,9531,-9553,9562,9547,-9545,9561,9553,-9532,9562,9544,-9554,9563,9546,-9556,9564,9555,-9548,9565,9534,-9557,9566,9556,-9547,9565,9551,-9535,9557,9549,-9568,9525,9557,-9559,9540,7960,-7881,9540,8043,-7961,8122,8043,-9552,9554,9542,-9561,9559,9560,-9544,9564,9547,-9563,9561,9568,-9554,9568,9562,-9554,9563,9566,-9547,9555,9564,-9564,9556,8215,-9566,9556,9566,-9570,9565,8122,-9552,9564,9562,-9571,9568,9570,-9563,9571,9566,-9564,9564,9572,-9564,9556,8257,-8216,8215,8122,-9566,9573,9569,-9567,9556,9569,-8258,9564,9570,-9575,9568,9575,-9571,9571,9573,-9567,9571,9563,-9577,9564,9574,-9573,9563,9572,-9577,8340,9569,-9574,8257,9569,-8341,9570,9577,-9575,9577,9570,-9576,9573,9571,-9579,9571,9576,-9580,9580,9572,-9575,9572,9579,-9577,8340,9573,-8420,9581,9574,-9578,9571,9579,-9579,9573,9578,-8420,9582,9572,-9581,9581,9580,-9575,9579,9572,-9584,9584,9578,-9580,8458,8419,-9579,9583,9572,-9583,9582,9580,-9586,9580,9581,-9586,9584,9579,-9584,9584,8458,-9579,9586,9583,-9583,9587,9582,-9586,9585,9581,-9589,9589,9584,-9584,9590,8458,-9585,9591, +9583,-9587,9586,9582,-9588,9587,9585,-9589,9589,9590,-9585,9589,9583,-9592,9590,8459,-8459,9589,9592,-9591,9591,9592,-9590,9593,8459,-9591,9592,9594,-9591,8459,9593,-8524,9594,9593,-9591,9595,1621,-9597,1621,9595,-9598,1621,1663,-9597,9596,9598,-9596,9599,9597,-9596,1621,9597,-1594,1663,9600,-9597,9596,9601,-9599,9595,9598,-9603,9597,9599,-9604,9595,9604,-9600,1593,9597,-9604,9605,9600,-1664,9596,9600,-9602,9601,9606,-9599,9602,9598,-9608,9595,9602,-9605,9603,9599,-9609,9599,9604,-9610,1593,9603,-1579,9605,9610,-9601,9605,1663,-1678,9600,9610,-9602,9606,9601,-9611,9606,9607,-9599,9602,9607,-9612,9602,9612,-9605,9599,9609,-9609,9603,9608,-9614,9609,9604,-9615,9603,9613,-1579,9615,9610,-9606,1695,9605,-1678,9606,9610,-9617,9607,9606,-9618,9618,9611,-9608,9611,9612,-9603,9614,9604,-9613,9619,9608,-9610,9620,9613,-9609,9614,9621,-9610,1578,9613,-9623,9623,9610,-9616,1695,9615,-9606,9616,9610,-9624,9624,9606,-9617,9606,9624,-9618,9618,9607,-9618,9618,9625,-9612,9611,9626,-9613,9626,9614,-9613,9619,9620,-9609,9621,9619,-9610,9620,9622,-9614,9614,9627,-9622,9622,1564,-1579,9623,9615,-9629,9629,9615,-1696,9616,9623,-9631,9616,9631,-9625,9617,9624,-9633,9618,9617,-9634,9625,9618,-9634,9634,9611,-9626,9626,9611,-9635,9614,9626,-9628,9619,9635,-9621,9619,9621,-9636,9620,9636,-9623,9637,9621,-9628,9622,1524,-1565,9615,9638,-9629,9628,9630,-9624,9638,9615,-9630,9630,9639,-9617,9631,9616,-9640,9631,9632,-9625,9617,9632,-9634,9640,9625,-9634,9634,9625,-9642,9626,9634,-9643,9626,9643,-9628,9644,9620,-9636,9637,9635,-9622,9644,9636,-9621,9622,9636,-9646,9646,9637,-9628,1499,1524,-9623,9628,9638,-9648,9628,9648,-9631,9630,9648,-9640,9631,9639,-9650,9631,9649,-9633,9650,9633,-9633,9641,9625,-9641,9640,9633,-9651,9641,9642,-9635,9626,9642,-9644,9646,9627,-9644,9635,9651,-9645,9637,9651,-9636,9636,9644,-9653,9645,9636,-9654,9622,9645,-1500,9637,9646,-9655,9647,9638,-9656,9648,9628,-9648,9639,9648,-9657,9656,9649,-9640,9649,9657,-9633,9650,9632,-9658,9640,9658,-9642,9650,9659,-9641,9660,9642,-9642,9661,9643,-9643,9661,9646,-9644,9644,9651, +-9663,9663,9651,-9638,9644,9662,-9653,9636,9652,-9654,9645,9653,-1481,1480,1499,-9646,9664,9654,-9647,9637,9654,-9664,9648,9647,-9656,9656,9648,-9666,9656,9666,-9650,9649,9666,-9658,9659,9650,-9658,9640,9667,-9659,9660,9641,-9659,9659,9667,-9641,9660,9668,-9643,9661,9642,-9670,9664,9646,-9662,9663,9662,-9652,9670,9652,-9663,9653,9652,-9672,9653,9672,-1481,9664,9673,-9655,9663,9654,-9675,9655,9665,-9649,9656,9665,-9676,9666,9656,-9676,9676,9657,-9667,9659,9657,-9677,9658,9667,-9678,9678,9660,-9659,9667,9659,-9680,9660,9678,-9669,9668,9669,-9643,9661,9669,-9681,9661,9681,-9665,9663,9674,-9663,9670,9671,-9653,9662,9682,-9671,9683,9653,-9672,9683,9672,-9654,1480,9672,-1456,9664,9684,-9674,9654,9673,-9686,9654,9685,-9675,9666,9675,-9687,9676,9666,-9687,9676,9687,-9660,9688,9677,-9668,9678,9658,-9678,9687,9679,-9660,9688,9667,-9680,9668,9678,-9681,9668,9680,-9670,9680,9681,-9662,9681,9684,-9665,9662,9674,-9690,9670,9683,-9672,9689,9682,-9663,9690,9670,-9683,9683,9691,-9673,9692,1455,-9673,9684,9693,-9674,9673,9694,-9686,9674,9685,-9696,9696,9676,-9687,9676,9696,-9688,9697,9677,-9689,9697,9678,-9678,9696,9679,-9688,9688,9679,-9699,9678,9699,-9681,9680,9700,-9682,9684,9681,-9701,9689,9674,-9702,9683,9670,-9691,9689,9702,-9683,9703,9690,-9683,9683,9690,-9692,9691,9692,-9673,9704,1455,-9693,9684,9705,-9694,9673,9693,-9695,9685,9694,-9707,9685,9707,-9696,9701,9674,-9696,9698,9697,-9689,9708,9678,-9698,9698,9679,-9697,9678,9708,-9700,9680,9699,-9701,9700,9705,-9685,9689,9701,-9703,9703,9682,-9703,9703,9709,-9691,9691,9690,-9710,9691,9704,-9693,1427,1455,-9705,9693,9705,-9711,9693,9710,-9695,9694,9710,-9707,9685,9706,-9708,9711,9695,-9708,9701,9695,-9712,9712,9697,-9699,9708,9697,-9713,9713,9699,-9709,9713,9700,-9700,9713,9705,-9701,9702,9701,-9715,9703,9702,-9716,9709,9703,-9717,9709,9717,-9692,9691,9717,-9705,9718,1427,-9705,9705,9719,-9711,9706,9710,-9721,9706,9720,-9708,9707,9721,-9712,9701,9711,-9715,9722,9708,-9713,9708,9723,-9714,9713,9724,-9706,9702,9714,-9726,9715,9702,-9726,9703,9715,-9717,9726,9709,-9717,9709,9726,-9718, +9704,9717,-9728,1407,1427,-9719,9718,9704,-9728,9728,9719,-9706,9719,9720,-9711,9707,9720,-9722,9721,9729,-9712,9714,9711,-9730,9708,9722,-9724,9730,9713,-9724,9724,9713,-9731,9731,9705,-9725,9725,9714,-9730,9725,9716,-9716,9732,9726,-9717,9733,9717,-9727,9733,9727,-9718,1407,9718,-1382,9734,9718,-9728,9719,9728,-9736,9705,9731,-9729,9719,9736,-9721,9720,9737,-9722,9737,9729,-9722,9730,9723,-9723,9730,9738,-9725,9731,9724,-9739,9725,9729,-9740,9725,9740,-9717,9732,9741,-9727,9716,9740,-9733,9733,9726,-9742,9733,9734,-9728,9718,9734,-1382,9742,9735,-9729,9719,9735,-9737,9731,9742,-9729,9736,9743,-9721,9743,9737,-9721,9729,9737,-9745,9745,9730,-9723,9730,9746,-9739,9738,9747,-9732,9744,9739,-9730,9725,9739,-9741,9741,9732,-9749,9749,9732,-9741,9741,9750,-9734,9750,9734,-9734,9734,9751,-1382,9735,9742,-9753,9753,9736,-9736,9731,9747,-9743,9736,9753,-9744,9737,9743,-9745,9730,9745,-9747,9754,9738,-9747,9754,9747,-9739,9744,9755,-9740,9749,9740,-9740,9732,9756,-9749,9741,9748,-9758,9749,9756,-9733,9741,9757,-9751,9750,9758,-9735,9734,9758,-9752,1381,9751,-1338,9759,9752,-9743,9760,9735,-9753,9753,9735,-9761,9747,9759,-9743,9743,9753,-9762,9762,9744,-9744,9763,9747,-9755,9744,9762,-9756,9739,9755,-9765,9749,9739,-9765,9756,9765,-9749,9766,9757,-9749,9764,9756,-9750,9750,9757,-9768,9767,9758,-9751,9751,9758,-9769,9751,1308,-1338,9752,9759,-9770,9770,9760,-9753,9771,9753,-9761,9747,9763,-9760,9753,9772,-9762,9762,9743,-9762,9755,9762,-9774,9764,9755,-9775,9756,9775,-9766,9765,9766,-9749,9766,9776,-9758,9764,9777,-9757,9778,9767,-9758,9779,9758,-9768,9758,9779,-9769,9751,9768,-1309,9770,9752,-9770,9760,9770,-9781,9771,9772,-9754,9771,9760,-9782,9772,9782,-9762,9761,9773,-9763,9755,9773,-9784,9755,9783,-9775,9774,9777,-9765,9775,9756,-9778,9784,9765,-9776,9765,9785,-9767,9776,9766,-9786,9757,9776,-9779,9786,9767,-9779,9767,9786,-9780,9787,9768,-9780,1308,9768,-1284,9788,9770,-9770,9770,9789,-9781,9780,9781,-9761,9771,9790,-9773,9790,9771,-9782,9772,9791,-9783,9761,9782,-9774,9773,9792,-9784,9793,9774,-9784,9774,9794,-9778,9775, +9777,-9796,9784,9796,-9766,9784,9775,-9796,9765,9797,-9786,9778,9776,-9786,9798,9786,-9779,9786,9787,-9780,1283,9768,-9788,9770,9788,-9800,9799,9789,-9771,9800,9780,-9790,9781,9780,-9802,9791,9772,-9791,9790,9781,-9803,9803,9782,-9792,9782,9792,-9774,9804,9783,-9793,9774,9793,-9795,9805,9793,-9784,9794,9795,-9778,9784,9806,-9797,9765,9796,-9798,9795,9806,-9785,9785,9797,-9808,9808,9778,-9786,9798,9809,-9787,9778,9808,-9799,9786,9809,-9788,1283,9787,-1255,9810,9799,-9789,9811,9789,-9800,9812,9780,-9801,9811,9800,-9790,9801,9780,-9813,9802,9781,-9802,9813,9791,-9791,9813,9790,-9803,9803,9792,-9783,9803,9791,-9814,9805,9783,-9805,9803,9804,-9793,9814,9794,-9794,9805,9815,-9794,9814,9795,-9795,9796,9806,-9817,9796,9817,-9798,9795,9818,-9807,9797,9817,-9808,9785,9807,-9809,9809,9798,-9820,9808,9820,-9799,1254,9787,-9810,9821,9799,-9811,9822,9811,-9800,9812,9800,-9824,9800,9811,-9825,9801,9812,-9826,9825,9802,-9802,9826,9813,-9803,9827,9803,-9814,9828,9805,-9805,9803,9827,-9805,9793,9829,-9815,9805,9830,-9816,9793,9815,-9830,9831,9795,-9815,9806,9832,-9817,9796,9816,-9818,9831,9818,-9796,9806,9818,-9833,9817,9833,-9808,9833,9808,-9808,9820,9819,-9799,9809,9819,-9835,9808,9835,-9821,9809,9836,-1255,9821,9822,-9800,9821,9810,-9838,9838,9811,-9823,9800,9824,-9824,9839,9812,-9824,9824,9811,-9839,9840,9825,-9813,9825,9841,-9803,9827,9813,-9827,9826,9802,-9843,9805,9828,-9831,9843,9828,-9805,9843,9804,-9828,9814,9829,-9832,9830,9844,-9816,9845,9829,-9816,9816,9832,-9847,9846,9817,-9817,9818,9831,-9848,9832,9818,-9848,9817,9848,-9834,9833,9835,-9809,9820,9849,-9820,9834,9819,-9851,9836,9809,-9835,9851,9820,-9836,1241,1254,-9837,9821,9852,-9823,9821,9837,-9853,9838,9822,-9854,9824,9854,-9824,9840,9812,-9840,9839,9823,-9855,9824,9838,-9856,9840,9841,-9826,9841,9842,-9803,9856,9827,-9827,9842,9857,-9827,9858,9830,-9829,9843,9859,-9829,9856,9843,-9828,9860,9831,-9830,9861,9844,-9831,9845,9815,-9845,9862,9829,-9846,9846,9832,-9864,9817,9846,-9849,9847,9831,-9861,9864,9832,-9848,9848,9865,-9834,9833,9866,-9836,9849,9820,-9852,9850,9819, +-9850,9836,9834,-9851,9851,9835,-9868,1225,1241,-9837,9852,9853,-9823,9868,9852,-9838,9838,9853,-9856,9824,9869,-9855,9870,9840,-9840,9871,9839,-9855,9855,9869,-9825,9841,9840,-9873,9841,9873,-9843,9856,9826,-9858,9857,9842,-9875,9858,9861,-9831,9858,9828,-9860,9843,9856,-9860,9829,9862,-9861,9875,9844,-9862,9845,9844,-9877,9845,9876,-9863,9864,9863,-9833,9846,9863,-9878,9846,9877,-9849,9878,9847,-9861,9847,9879,-9865,9848,9877,-9866,9865,9866,-9834,9867,9835,-9867,9851,9880,-9850,9880,9850,-9850,9836,9850,-9882,9882,9851,-9868,9883,1225,-9837,9852,9884,-9854,9868,9884,-9853,9853,9885,-9856,9869,9886,-9855,9872,9840,-9871,9870,9839,-9888,9871,9887,-9840,9871,9854,-9887,9888,9869,-9856,9841,9872,-9874,9874,9842,-9874,9856,9857,-9890,9857,9874,-9891,9858,9891,-9862,9858,9859,-9893,9892,9859,-9857,9860,9862,-9894,9894,9844,-9876,9875,9861,-9892,9894,9876,-9845,9862,9876,-9896,9864,9879,-9864,9877,9863,-9897,9878,9879,-9848,9860,9897,-9879,9877,9898,-9866,9866,9865,-9900,9866,9899,-9868,9880,9851,-9901,9880,9881,-9851,9836,9881,-9884,9900,9851,-9883,9867,9901,-9883,9883,9902,-1226,9884,9885,-9854,9903,9884,-9869,9904,9855,-9886,9905,9886,-9870,9906,9872,-9871,9887,9907,-9871,9871,9908,-9888,9871,9886,-9910,9888,9905,-9870,9888,9855,-9905,9910,9873,-9873,9910,9874,-9874,9889,9857,-9891,9856,9889,-9893,9890,9874,-9912,9891,9858,-9893,9862,9912,-9894,9893,9897,-9861,9875,9913,-9895,9875,9891,-9915,9915,9876,-9895,9915,9895,-9877,9862,9895,-9913,9879,9916,-9864,9896,9863,-9918,9877,9896,-9899,9879,9878,-9917,9878,9897,-9919,9919,9865,-9899,9865,9919,-9900,9899,9901,-9868,9920,9880,-9901,9880,9883,-9882,9921,9900,-9883,9922,9882,-9902,9902,9883,-9924,1225,9902,-1195,9884,9924,-9886,9884,9903,-9925,9904,9885,-9926,9926,9886,-9906,9906,9910,-9873,9906,9870,-9908,9887,9927,-9908,9871,9909,-9909,9887,9908,-9928,9928,9909,-9887,9888,9929,-9906,9930,9888,-9905,9910,9911,-9875,9889,9890,-9932,9892,9889,-9915,9932,9890,-9912,9891,9892,-9915,9893,9912,-9934,9893,9934,-9898,9875,9914,-9914,9935,9894,-9914,9915,9894,-9936,9936,9895,-9916, +9895,9937,-9913,9916,9917,-9864,9917,9938,-9897,9896,9939,-9899,9878,9918,-9917,9897,9940,-9919,9919,9898,-9940,9899,9919,-9942,9899,9941,-9902,9923,9880,-9921,9920,9900,-9943,9880,9923,-9884,9942,9900,-9922,9922,9921,-9883,9901,9943,-9923,9902,9923,-9945,1194,9902,-9946,9924,9925,-9886,9946,9924,-9904,9930,9904,-9926,9928,9886,-9927,9947,9926,-9906,9906,9948,-9911,9907,9948,-9907,9907,9927,-9950,9909,9950,-9909,9908,9950,-9928,9909,9928,-9952,9930,9929,-9889,9905,9929,-9948,9910,9948,-9912,9932,9931,-9891,9914,9889,-9932,9932,9911,-9953,9953,9933,-9913,9933,9934,-9894,9897,9934,-9955,9913,9914,-9956,9935,9913,-9956,9956,9915,-9936,9936,9937,-9896,9956,9936,-9916,9912,9937,-9954,9957,9917,-9917,9917,9958,-9939,9896,9938,-9940,9918,9957,-9917,9897,9954,-9941,9918,9940,-9958,9919,9939,-9960,9941,9919,-9960,9901,9941,-9961,9923,9920,-9962,9942,9962,-9921,9942,9921,-9964,9922,9964,-9922,9901,9960,-9944,9943,9965,-9923,9944,9923,-9962,9945,9902,-9945,1194,9945,-1159,9924,9966,-9926,9946,9966,-9925,9967,9930,-9926,9968,9928,-9927,9947,9969,-9927,9907,9949,-9949,9949,9927,-9971,9909,9951,-9951,9971,9927,-9951,9972,9951,-9929,9930,9973,-9930,9947,9929,-9970,9948,9974,-9912,9975,9931,-9933,9914,9931,-9956,9952,9911,-9975,9932,9952,-9977,9933,9953,-9978,9934,9933,-9979,9934,9978,-9955,9979,9935,-9956,9935,9979,-9957,9936,9980,-9938,9981,9936,-9957,9937,9982,-9954,9917,9957,-9959,9983,9938,-9959,9984,9939,-9939,9940,9954,-9986,9940,9986,-9958,9939,9987,-9960,9941,9959,-9989,9960,9941,-9990,9990,9961,-9921,9942,9963,-9963,9990,9920,-9963,9991,9963,-9922,9964,9922,-9966,9964,9991,-9922,9992,9943,-9961,9992,9965,-9944,9944,9961,-9994,9945,9944,-9995,1158,9945,-9995,9967,9925,-9967,9966,9946,-9996,9967,9973,-9931,9972,9928,-9969,9968,9926,-9970,9949,9996,-9949,9971,9970,-9928,9997,9949,-9971,9951,9998,-9951,9999,9971,-9951,9951,9972,-10001,9973,10001,-9930,10002,9969,-9930,9948,9996,-9975,9975,9955,-9932,9975,9932,-9977,9974,9996,-9953,9952,10003,-9977,9977,9953,-10005,9933,9977,-9979,9985,9954,-9979,9979,9955,-9976,10005,9956,-9980, +9981,9980,-9937,9980,9982,-9938,9981,9956,-10006,10006,9953,-9983,9957,9986,-9959,9938,9983,-9985,9983,9958,-10008,9984,10008,-9940,9940,9985,-9987,10008,9987,-9940,9959,9987,-9989,9989,9941,-9989,10009,9960,-9990,9990,9993,-9962,9962,9963,-10011,9990,9962,-10011,10011,9963,-9992,9965,10012,-9965,9991,9964,-10013,10013,9992,-9961,9992,10014,-9966,9994,9944,-9994,1158,9994,-10016,10016,9967,-9967,10016,9966,-9996,10017,9973,-9968,9972,9968,-10019,9968,9969,-10020,9997,9996,-9950,9970,9971,-10021,9997,9970,-10022,10022,9998,-9952,9999,9950,-9999,9971,9999,-10021,10000,9972,-10024,10000,10022,-9952,10024,10001,-9974,10002,9929,-10002,9969,10002,-10020,9975,9976,-10026,9952,9996,-10027,9952,10026,-10004,10027,9976,-10004,10006,10004,-9954,10028,9977,-10005,10029,9978,-9978,9985,9978,-10030,10025,9979,-9976,10025,10005,-9980,9981,10030,-9981,9980,10030,-9983,10031,9981,-10006,10006,9982,-10033,10007,9958,-9987,9983,10033,-9985,9983,10007,-10034,10008,9984,-10034,9986,9985,-10035,9987,10008,-10036,9988,9987,-10037,9989,9988,-10037,10009,10013,-9961,10009,9989,-10038,9990,10038,-9994,10039,10010,-9964,9990,10010,-10039,10011,10040,-9964,10041,10011,-9992,9965,10042,-10013,10041,9991,-10013,10043,9992,-10014,10014,9992,-10045,9965,10014,-10043,9993,10015,-9995,1158,10015,-1114,10017,9967,-10017,9995,10045,-10017,10024,9973,-10018,9968,10019,-10019,10018,10023,-9973,9997,10046,-9997,10021,9970,-10021,9997,10021,-10048,10022,9999,-9999,9999,10048,-10021,10049,10000,-10024,10000,10050,-10023,10051,10001,-10025,10051,10002,-10002,10002,10052,-10020,10027,10025,-9977,10046,10026,-9997,10053,10003,-10027,10027,10003,-10055,10006,10055,-10005,10028,10029,-9978,10056,10028,-10005,9985,10029,-10035,10057,10005,-10026,10031,10030,-9982,10030,10032,-9983,10057,10031,-10006,10032,10058,-10007,10034,10007,-9987,10007,10059,-10034,10033,10035,-10009,9987,10035,-10037,10060,9989,-10037,10043,10013,-10010,10037,9989,-10061,10009,10037,-10062,9993,10038,-10016,10039,10038,-10011,10039,9963,-10041,10011,10062,-10041,10011,10041,-10063,10012, +10042,-10064,10012,10063,-10042,10043,10044,-9993,10014,10044,-10043,10015,10064,-1114,10017,10016,-10046,10045,9995,-10066,10066,10024,-10018,10067,10018,-10020,10067,10023,-10019,10047,10046,-9998,10068,10021,-10021,10069,10047,-10022,10022,10048,-10000,10068,10020,-10049,10000,10049,-10071,10023,10071,-10050,10000,10070,-10051,10022,10050,-10049,10024,10072,-10052,10051,10073,-10003,10052,10002,-10074,10052,10074,-10020,10027,10057,-10026,10046,10053,-10027,10053,10054,-10004,10027,10054,-10076,10006,10058,-10056,10056,10004,-10056,10028,10076,-10030,10028,10056,-10077,10077,10034,-10030,10031,10078,-10031,10030,10079,-10033,10031,10057,-10079,10032,10080,-10059,10034,10081,-10008,10007,10081,-10060,10033,10059,-10083,10033,10082,-10036,10083,10036,-10036,10060,10036,-10084,10043,10009,-10062,10084,10037,-10061,10061,10037,-10086,10086,10015,-10039,10086,10038,-10040,10087,10039,-10041,10088,10040,-10063,10062,10041,-10090,10090,10063,-10043,10041,10063,-10090,10043,10091,-10045,10090,10042,-10045,10015,10086,-10065,1132,1113,-10065,10066,10017,-10046,10065,10092,-10046,10024,10066,-10073,10067,10019,-10075,10067,10093,-10024,10047,10094,-10047,10021,10068,-10070,10047,10069,-10096,10048,10050,-10069,10049,10096,-10071,10023,10097,-10072,10049,10071,-10099,10070,10099,-10051,10051,10072,-10074,10052,10073,-10101,10100,10074,-10053,10057,10027,-10076,10053,10046,-10095,10101,10054,-10054,10054,10102,-10076,10103,10055,-10059,10104,10056,-10056,10076,10077,-10030,10105,10076,-10057,10034,10077,-10082,10078,10079,-10031,10080,10032,-10080,10078,10057,-10107,10080,10107,-10059,10108,10059,-10082,10082,10059,-10109,10035,10082,-10110,10109,10083,-10036,10060,10083,-10111,10061,10091,-10044,10084,10085,-10038,10060,10111,-10085,10112,10061,-10086,10039,10087,-10087,10087,10040,-10089,10113,10088,-10063,10113,10062,-10090,10090,10114,-10064,10063,10114,-10090,10044,10091,-10116,10044,10116,-10091,10064,10086,-10088,1132,10064,-10118,10092,10066,-10046,10092,10065,-10119,10066,10092,-10073,10067,10074,-10094,10097,10023, +-10094,10119,10094,-10048,10068,10099,-10070,10120,10095,-10070,10047,10095,-10120,10050,10099,-10069,10049,10098,-10097,10121,10070,-10097,10122,10071,-10098,10098,10071,-10123,10099,10070,-10122,10123,10073,-10073,10100,10073,-10124,10124,10074,-10101,10057,10075,-10107,10053,10094,-10120,10101,10102,-10055,10101,10053,-10120,10106,10075,-10103,10125,10055,-10104,10103,10058,-10108,10105,10056,-10105,10104,10055,-10126,10077,10076,-10082,10076,10105,-10127,10078,10106,-10080,10127,10080,-10080,10080,10128,-10108,10081,10129,-10109,10082,10108,-10131,10131,10109,-10083,10083,10109,-10111,10111,10060,-10111,10061,10112,-10092,10084,10132,-10086,10084,10111,-10134,10112,10085,-10135,10087,10088,-10136,10113,10136,-10089,10113,10089,-10138,10090,10138,-10115,10089,10114,-10140,10115,10091,-10113,10044,10115,-10117,10090,10116,-10141,10087,10117,-10065,1132,10117,-1158,10118,10141,-10093,10092,10142,-10073,10074,10143,-10094,10093,10144,-10098,10120,10069,-10100,10120,10145,-10096,10145,10119,-10096,10121,10096,-10099,10122,10097,-10147,10147,10098,-10123,10099,10121,-10149,10123,10072,-10143,10100,10123,-10150,10074,10124,-10144,10100,10149,-10125,10102,10101,-10151,10101,10119,-10152,10102,10152,-10107,10125,10103,-10154,10153,10103,-10108,10154,10105,-10105,10154,10104,-10126,10076,10129,-10082,10105,10154,-10127,10076,10126,-10130,10106,10155,-10080,10128,10080,-10128,10155,10127,-10080,10107,10128,-10157,10108,10129,-10158,10130,10108,-10158,10082,10130,-10132,10109,10131,-10159,10158,10110,-10110,10111,10110,-10160,10132,10084,-10134,10134,10085,-10133,10111,10160,-10134,10161,10112,-10135,10088,10136,-10136,10162,10087,-10136,10113,10137,-10137,10139,10137,-10090,10090,10140,-10139,10138,10163,-10115,10163,10139,-10115,10115,10112,-10162,10115,10164,-10117,10140,10116,-10165,10162,10117,-10088,10117,10165,-1158,10141,10142,-10093,10093,10143,-10145,10097,10144,-10147,10166,10120,-10100,10166,10145,-10121,10145,10167,-10120,10168,10121,-10099,10147,10122,-10147,10168,10098,-10148,10169,10148,-10122,10099,10148, +-10167,10123,10142,-10171,10123,10170,-10150,10124,10171,-10144,10124,10149,-10171,10101,10151,-10151,10102,10150,-10153,10151,10119,-10168,10155,10106,-10153,10172,10125,-10154,10153,10107,-10157,10173,10154,-10126,10174,10126,-10155,10175,10129,-10127,10128,10127,-10177,10155,10176,-10128,10156,10128,-10178,10129,10175,-10158,10178,10130,-10158,10130,10179,-10132,10158,10131,-10181,10159,10110,-10159,10181,10111,-10160,10132,10133,-10183,10134,10132,-10184,10111,10181,-10161,10160,10184,-10134,10161,10134,-10184,10136,10185,-10136,10162,10135,-10187,10136,10137,-10186,10187,10137,-10140,10138,10140,-10165,10163,10138,-10189,10163,10189,-10140,10115,10161,-10191,10164,10115,-10191,10117,10162,-10192,10117,10191,-10166,10165,10192,-1158,10142,10141,-10194,10194,10144,-10144,10146,10144,-10196,10166,10196,-10146,10197,10167,-10146,10168,10169,-10122,10198,10147,-10147,10168,10147,-10200,10200,10148,-10170,10166,10148,-10202,10170,10142,-10203,10124,10170,-10172,10194,10143,-10172,10150,10151,-10204,10150,10204,-10153,10151,10167,-10204,10155,10152,-10206,10173,10125,-10173,10156,10172,-10154,10174,10154,-10174,10175,10126,-10175,10128,10176,-10207,10155,10205,-10177,10128,10207,-10178,10208,10156,-10178,10175,10209,-10158,10179,10130,-10179,10178,10157,-10210,10131,10179,-10181,10210,10158,-10181,10210,10159,-10159,10181,10159,-10211,10182,10133,-10212,10132,10182,-10184,10181,10212,-10161,10212,10184,-10161,10184,10211,-10134,10161,10183,-10191,10185,10186,-10136,10191,10162,-10187,10185,10137,-10188,10189,10187,-10140,10138,10164,-10214,10138,10213,-10189,10188,10214,-10164,10215,10189,-10164,10190,10213,-10165,10165,10191,-10217,10165,10217,-10193,1156,1157,-10193,10193,10141,-10219,10142,10193,-10203,10144,10194,-10196,10198,10146,-10196,10166,10201,-10197,10145,10196,-10198,10197,10203,-10168,10168,10219,-10170,10198,10199,-10148,10219,10168,-10200,10200,10220,-10149,10169,10219,-10201,10148,10220,-10202,10170,10202,-10172,10221,10194,-10172,10150,10203,-10223,10150,10222,-10205,10204,10205,-10153,10173,10172, +-10209,10208,10172,-10157,10223,10174,-10174,10174,10223,-10176,10206,10176,-10225,10128,10206,-10208,10176,10205,-10225,10207,10225,-10178,10226,10208,-10178,10175,10227,-10210,10179,10178,-10229,10209,10229,-10179,10179,10230,-10181,10210,10180,-10232,10181,10210,-10213,10211,10232,-10183,10233,10183,-10183,10212,10234,-10185,10184,10235,-10212,10236,10190,-10184,10185,10191,-10187,10185,10187,-10238,10189,10237,-10188,10236,10188,-10214,10238,10214,-10189,10215,10163,-10215,10239,10189,-10216,10236,10213,-10191,10185,10216,-10192,10217,10165,-10217,10217,10240,-10193,10241,1156,-10193,10193,10218,-10243,10202,10193,-10244,10194,10244,-10196,10195,10245,-10199,10246,10196,-10202,10247,10197,-10197,10203,10197,-10249,10198,10249,-10200,10219,10199,-10250,10200,10250,-10221,10200,10219,-10251,10201,10220,-10247,10202,10243,-10172,10194,10221,-10245,10221,10171,-10244,10203,10248,-10223,10251,10204,-10223,10252,10205,-10205,10253,10173,-10209,10173,10253,-10224,10227,10175,-10224,10206,10224,-10255,10255,10207,-10207,10252,10224,-10206,10225,10207,-10257,10226,10177,-10226,10208,10226,-10258,10258,10209,-10228,10229,10228,-10179,10179,10228,-10231,10209,10258,-10230,10180,10230,-10260,10231,10180,-10260,10212,10210,-10232,10260,10232,-10212,10182,10232,-10262,10233,10236,-10184,10233,10182,-10262,10212,10262,-10235,10234,10235,-10185,10260,10211,-10236,10237,10263,-10186,10239,10237,-10190,10236,10238,-10189,10238,10264,-10215,10215,10214,-10265,10215,10265,-10240,10266,10216,-10186,10267,10217,-10217,10268,10240,-10218,10192,10240,-10242,1156,10241,-1160,10242,10243,-10194,10244,10245,-10196,10245,10249,-10199,10196,10246,-10270,10247,10248,-10198,10196,10269,-10248,10219,10249,-10271,10250,10271,-10221,10219,10270,-10251,10220,10272,-10247,10221,10273,-10245,10221,10243,-10274,10251,10222,-10249,10251,10274,-10205,10275,10252,-10205,10208,10257,-10254,10276,10223,-10254,10223,10277,-10228,10278,10254,-10225,10255,10206,-10255,10256,10207,-10256,10278,10224,-10253,10279,10225,-10257,10225,10280,-10227,10226,10281, +-10258,10258,10227,-10278,10229,10282,-10229,10228,10283,-10231,10284,10229,-10259,10259,10230,-10286,10259,10286,-10232,10212,10231,-10263,10232,10260,-10288,10288,10261,-10233,10236,10233,-10239,10233,10261,-10290,10262,10290,-10235,10290,10235,-10235,10291,10260,-10236,10237,10239,-10264,10263,10266,-10186,10238,10292,-10265,10215,10264,-10266,10239,10265,-10294,10267,10216,-10267,10217,10267,-10295,10295,10240,-10269,10217,10294,-10269,10295,10241,-10241,10241,1096,-1160,10243,10242,-10297,10244,10297,-10246,10245,10298,-10250,10246,10299,-10270,10300,10248,-10248,10247,10269,-10302,10249,10302,-10271,10250,10303,-10272,10220,10271,-10273,10302,10250,-10271,10304,10246,-10273,10273,10297,-10245,10296,10273,-10244,10251,10248,-10301,10305,10274,-10252,10204,10274,-10276,10275,10278,-10253,10257,10276,-10254,10223,10276,-10278,10306,10254,-10279,10256,10255,-10255,10225,10279,-10308,10256,10308,-10280,10307,10280,-10226,10280,10281,-10227,10257,10281,-10310,10277,10310,-10259,10229,10284,-10283,10228,10282,-10284,10283,10285,-10231,10311,10284,-10259,10259,10285,-10287,10231,10286,-10263,10312,10287,-10261,10232,10287,-10289,10288,10313,-10262,10314,10238,-10234,10289,10261,-10314,10233,10289,-10315,10262,10315,-10291,10290,10291,-10236,10291,10312,-10261,10239,10316,-10264,10266,10263,-10318,10318,10292,-10239,10265,10264,-10293,10293,10265,-10320,10239,10293,-10317,10320,10267,-10267,10294,10267,-10322,10295,10268,-10323,10268,10294,-10324,10241,10295,-1097,10245,10297,-10299,10249,10298,-10303,10304,10299,-10247,10299,10301,-10270,10247,10301,-10301,10303,10250,-10303,10271,10303,-10325,10271,10324,-10273,10272,10325,-10305,10326,10297,-10274,10300,10305,-10252,10305,10327,-10275,10275,10274,-10329,10278,10275,-10329,10257,10329,-10277,10276,10310,-10278,10254,10306,-10331,10306,10278,-10329,10254,10331,-10257,10279,10332,-10308,10256,10333,-10309,10308,10334,-10280,10335,10280,-10308,10335,10281,-10281,10281,10336,-10310,10329,10257,-10310,10311,10258,-10311,10282,10284,-10338,10338,10283,-10283,10283,10339, +-10286,10284,10311,-10341,10286,10285,-10342,10286,10342,-10263,10343,10287,-10313,10344,10288,-10288,10288,10345,-10314,10314,10318,-10239,10314,10289,-10314,10342,10315,-10263,10315,10346,-10291,10290,10347,-10292,10312,10291,-10349,10316,10317,-10264,10317,10320,-10267,10318,10349,-10293,10319,10265,-10293,10350,10293,-10320,10293,10351,-10317,10267,10320,-10322,10352,10294,-10322,10322,10268,-10354,1050,10295,-10323,10352,10323,-10295,10323,10353,-10269,10295,1097,-1097,10297,10354,-10299,10355,10302,-10299,10304,10356,-10300,10301,10299,-10358,10300,10301,-10358,10303,10302,-10356,10358,10324,-10304,10272,10324,-10326,10359,10304,-10326,10297,10326,-10355,10300,10360,-10306,10327,10305,-10362,10274,10327,-10363,10274,10363,-10329,10276,10329,-10311,10364,10330,-10307,10254,10330,-10332,10364,10306,-10329,10333,10256,-10332,10279,10365,-10333,10307,10332,-10336,10366,10308,-10334,10334,10308,-10367,10367,10279,-10335,10281,10335,-10337,10368,10309,-10337,10368,10329,-10310,10369,10311,-10311,10284,10340,-10338,10282,10337,-10371,10339,10283,-10339,10338,10282,-10371,10339,10371,-10286,10340,10311,-10373,10371,10341,-10286,10342,10286,-10342,10343,10373,-10288,10343,10312,-10349,10288,10344,-10375,10373,10344,-10288,10288,10374,-10346,10375,10313,-10346,10376,10318,-10315,10314,10313,-10376,10342,10346,-10316,10346,10347,-10291,10291,10347,-10349,10316,10351,-10318,10320,10317,-10322,10318,10376,-10350,10292,10349,-10378,10319,10292,-10379,10379,10293,-10351,10350,10319,-10381,10293,10379,-10352,10381,10352,-10322,10382,10322,-10354,10295,1050,-1098,10322,1021,-1051,10352,10383,-10324,10323,10383,-10354,10355,10298,-10355,10356,10304,-10385,10356,10357,-10300,10300,10357,-10361,10358,10303,-10356,10324,10358,-10386,10325,10324,-10386,10359,10384,-10305,10386,10359,-10326,10326,10387,-10355,10360,10388,-10306,10361,10305,-10389,10327,10361,-10390,10327,10389,-10363,10274,10362,-10364,10363,10390,-10329,10369,10310,-10330,10330,10364,-10392,10391,10331,-10331,10392,10364,-10329,10331,10393,-10334,10279,10394,-10366, +10365,10395,-10333,10396,10335,-10333,10366,10333,-10398,10366,10398,-10335,10394,10279,-10368,10399,10367,-10335,10336,10335,-10401,10401,10368,-10337,10329,10368,-10403,10369,10402,-10312,10337,10340,-10404,10337,10403,-10371,10404,10339,-10339,10370,10405,-10339,10406,10371,-10340,10372,10311,-10408,10340,10372,-10404,10408,10341,-10372,10342,10341,-10410,10410,10373,-10344,10343,10348,-10410,10374,10344,-10412,10373,10412,-10345,10413,10345,-10375,10375,10345,-10415,10376,10314,-10376,10342,10409,-10347,10346,10348,-10348,10351,10381,-10318,10381,10321,-10318,10349,10376,-10416,10416,10377,-10350,10292,10377,-10379,10380,10319,-10379,10379,10350,-10418,10380,10417,-10351,10379,10381,-10352,10381,10418,-10353,10322,10382,-1022,10353,10419,-10383,10418,10383,-10353,10353,10383,-10420,10354,10420,-10356,10356,10384,-10422,10357,10356,-10422,10357,10421,-10361,10355,10422,-10359,10358,10423,-10386,10385,10386,-10326,10359,10424,-10385,10386,10425,-10360,10420,10354,-10388,10388,10360,-10422,10426,10361,-10389,10361,10426,-10390,10390,10362,-10390,10362,10390,-10364,10390,10427,-10329,10369,10329,-10403,10392,10391,-10365,10331,10391,-10394,10428,10392,-10329,10429,10333,-10394,10394,10430,-10366,10365,10431,-10396,10396,10332,-10396,10335,10396,-10401,10397,10333,-10430,10432,10366,-10398,10398,10366,-10434,10334,10398,-10400,10367,10434,-10395,10435,10367,-10400,10400,10401,-10337,10436,10368,-10402,10437,10402,-10369,10407,10311,-10403,10370,10403,-10439,10406,10339,-10405,10338,10405,-10405,10370,10438,-10406,10439,10371,-10407,10440,10372,-10408,10403,10372,-10442,10409,10341,-10409,10408,10371,-10440,10410,10412,-10374,10343,10442,-10411,10348,10346,-10410,10343,10409,-10443,10411,10344,-10413,10374,10411,-10444,10345,10413,-10415,10374,10443,-10414,10376,10375,-10415,10415,10376,-10445,10416,10349,-10416,10416,10445,-10378,10377,10446,-10379,10380,10378,-10447,10447,10379,-10418,10380,10446,-10418,10418,10381,-10380,998,1021,-10383,10382,10419,-10449,10418,10449,-10384,10419,10383,-10451,10422,10355,-10421,10421, +10384,-10425,10358,10422,-10424,10451,10385,-10424,10386,10385,-10453,10425,10424,-10360,10386,10452,-10426,10420,10387,-10454,10388,10421,-10455,10426,10388,-10456,10426,10456,-10390,10457,10390,-10390,10427,10390,-10458,10328,10427,-10459,10459,10391,-10393,10459,10393,-10392,10428,10460,-10393,10458,10428,-10329,10429,10393,-10460,10430,10394,-10435,10431,10365,-10431,10431,10461,-10396,10396,10395,-10462,10400,10396,-10463,10463,10397,-10430,10433,10366,-10433,10463,10432,-10398,10464,10398,-10434,10464,10399,-10399,10434,10367,-10436,10465,10435,-10400,10462,10401,-10401,10437,10368,-10437,10466,10436,-10402,10407,10402,-10438,10438,10403,-10442,10467,10406,-10405,10404,10405,-10469,10405,10438,-10470,10439,10406,-10471,10471,10372,-10441,10440,10407,-10438,10441,10372,-10473,10409,10408,-10474,10408,10439,-10475,10475,10412,-10411,10410,10442,-10477,10442,10409,-10474,10411,10412,-10478,10443,10411,-10479,10413,10444,-10415,10413,10443,-10480,10376,10414,-10445,10416,10415,-10445,10416,10480,-10446,10377,10445,-10447,10418,10379,-10448,10447,10417,-10482,10446,10482,-10418,10382,10448,-999,10483,10448,-10420,10447,10449,-10419,10450,10383,-10450,10419,10450,-10484,10484,10422,-10421,10454,10421,-10425,10422,10485,-10424,10451,10452,-10386,10486,10451,-10424,10425,10487,-10425,10425,10452,-10489,10387,10489,-10454,10453,10490,-10421,10388,10454,-10456,10455,10491,-10427,10426,10492,-10457,10457,10389,-10457,10427,10457,-10494,10458,10427,-10495,10460,10459,-10393,10428,10458,-10461,10495,10429,-10460,10465,10430,-10435,10465,10431,-10431,10431,10496,-10462,10462,10396,-10462,10495,10463,-10430,10432,10458,-10434,10463,10458,-10433,10464,10433,-10459,10465,10399,-10465,10465,10434,-10436,10462,10466,-10402,10497,10437,-10437,10466,10497,-10437,10438,10441,-10470,10467,10470,-10407,10467,10404,-10469,10468,10405,-10499,10498,10405,-10470,10470,10499,-10440,10471,10472,-10373,10500,10471,-10441,10440,10437,-10498,10501,10441,-10473,10474,10473,-10409,10439,10499,-10475,10475,10502,-10413,10410,10476,-10476,10503, +10476,-10443,10442,10473,-10504,10412,10502,-10478,10478,10411,-10478,10443,10478,-10505,10413,10479,-10445,10479,10443,-10505,10416,10444,-10481,10445,10480,-10506,10445,10506,-10447,10481,10417,-10483,10449,10447,-10482,10446,10507,-10483,998,10448,-972,10483,10508,-10449,10450,10449,-10510,10483,10450,-10511,10422,10484,-10486,10484,10420,-10512,10454,10424,-10488,10512,10423,-10486,10452,10451,-10514,10486,10513,-10452,10514,10486,-10424,10515,10487,-10426,10452,10516,-10489,10425,10488,-10516,10453,10489,-10491,10420,10490,-10518,10518,10455,-10455,10455,10518,-10492,10492,10426,-10492,10519,10456,-10493,10493,10457,-10457,10493,10494,-10428,10458,10494,-10465,10460,10495,-10460,10460,10458,-10496,10520,10431,-10466,10520,10496,-10432,10496,10521,-10462,10461,10521,-10463,10495,10458,-10464,10465,10464,-10495,10462,10522,-10467,10466,10523,-10498,10501,10469,-10442,10467,10524,-10471,10525,10467,-10469,10526,10468,-10499,10501,10498,-10470,10470,10524,-10500,10472,10471,-10528,10528,10471,-10501,10500,10440,-10498,10529,10501,-10473,10503,10473,-10475,10474,10499,-10531,10502,10475,-10532,10532,10475,-10477,10503,10530,-10477,10533,10477,-10503,10478,10477,-10534,10534,10504,-10479,10479,10535,-10445,10479,10504,-10537,10537,10480,-10445,10505,10480,-10539,10539,10445,-10506,10445,10539,-10507,10506,10507,-10447,10540,10481,-10483,10481,10509,-10450,10540,10482,-10508,971,10448,-10509,10508,10483,-10511,10509,10510,-10451,10484,10541,-10486,10511,10420,-10518,10511,10542,-10485,10487,10518,-10455,10514,10423,-10513,10512,10485,-10542,10516,10452,-10514,10486,10543,-10514,10486,10514,-10545,10515,10518,-10488,10516,10515,-10489,10545,10490,-10490,10546,10517,-10491,10547,10491,-10519,10492,10491,-10549,10493,10456,-10520,10549,10519,-10493,10493,10519,-10495,10520,10465,-10551,10496,10520,-10552,10521,10496,-10553,10553,10462,-10522,10519,10465,-10495,10462,10553,-10523,10466,10522,-10555,10554,10523,-10467,10497,10523,-10501,10467,10525,-10525,10525,10468,-10527,10555,10526,-10499,10501,10556,-10499,10557,10499, +-10525,10471,10528,-10528,10472,10527,-10559,10559,10528,-10501,10501,10529,-10561,10529,10472,-10559,10503,10474,-10531,10499,10561,-10531,10532,10531,-10476,10562,10502,-10532,10563,10532,-10477,10563,10476,-10531,10533,10502,-10563,10478,10533,-10535,10534,10564,-10505,10535,10479,-10537,10535,10537,-10445,10564,10536,-10505,10537,10565,-10481,10480,10565,-10539,10566,10505,-10539,10566,10539,-10506,10567,10506,-10540,10506,10567,-10508,10540,10509,-10482,10540,10507,-10569,971,10508,-10570,10508,10510,-10571,10509,10571,-10511,10484,10542,-10542,10572,10511,-10518,10573,10542,-10512,10512,10574,-10515,10541,10575,-10513,10516,10513,-10577,10577,10543,-10487,10513,10543,-10577,10514,10578,-10545,10486,10544,-10578,10515,10547,-10519,10515,10516,-10580,10546,10490,-10546,10546,10580,-10518,10491,10547,-10549,10548,10581,-10493,10465,10519,-10550,10549,10492,-10583,10465,10549,-10551,10520,10550,-10552,10551,10552,-10497,10552,10583,-10522,10553,10521,-10584,10584,10522,-10554,10585,10554,-10523,10586,10523,-10555,10500,10523,-10587,10557,10524,-10526,10587,10525,-10527,10526,10555,-10588,10555,10498,-10557,10560,10556,-10502,10499,10557,-10589,10527,10528,-10590,10558,10527,-10590,10590,10528,-10560,10586,10559,-10501,10560,10529,-10592,10558,10592,-10530,10499,10588,-10562,10563,10530,-10562,10531,10532,-10594,10562,10531,-10595,10532,10563,-10596,10533,10562,-10597,10597,10534,-10534,10534,10598,-10565,10535,10536,-10600,10537,10535,-10566,10536,10564,-10601,10538,10565,-10602,10566,10538,-10603,10568,10539,-10567,10539,10568,-10568,10507,10567,-10569,10540,10603,-10510,10604,10540,-10569,10569,10508,-10571,915,971,-10570,10510,10571,-10571,10509,10603,-10572,10542,10575,-10542,10572,10573,-10512,10572,10517,-10581,10573,10605,-10543,10512,10575,-10575,10574,10606,-10515,10516,10576,-10580,10577,10607,-10544,10543,10607,-10577,10578,10514,-10609,10609,10544,-10579,10609,10577,-10545,10547,10515,-10580,10546,10610,-10581,10548,10547,-10612,10548,10611,-10582,10581,10582,-10493,10612,10549,-10583,10613,10550,-10550, +10550,10613,-10552,10552,10551,-10615,10615,10583,-10553,10553,10583,-10617,10585,10522,-10585,10616,10584,-10554,10554,10585,-10587,10525,10617,-10558,10525,10587,-10618,10587,10555,-10619,10556,10618,-10556,10560,10619,-10557,10557,10620,-10589,10528,10621,-10590,10589,10622,-10559,10528,10590,-10622,10559,10623,-10591,10559,10586,-10624,10529,10592,-10592,10560,10591,-10625,10558,10622,-10593,10588,10595,-10562,10563,10561,-10596,10532,10625,-10594,10531,10593,-10595,10562,10594,-10597,10532,10595,-10626,10533,10596,-10598,10598,10534,-10598,10564,10598,-10627,10536,10627,-10600,10535,10599,-10629,10565,10535,-10630,10600,10564,-10631,10536,10600,-10628,10601,10565,-10630,10538,10601,-10632,10538,10631,-10603,10632,10566,-10603,10633,10568,-10567,10604,10603,-10541,10604,10568,-10634,10569,10570,-10635,915,10569,-10636,10570,10571,-10637,10636,10571,-10604,10542,10637,-10576,10572,10638,-10574,10580,10638,-10573,10605,10573,-10640,10542,10605,-10638,10640,10574,-10576,10640,10606,-10575,10606,10608,-10515,10641,10579,-10577,10607,10577,-10643,10576,10607,-10642,10578,10608,-10644,10609,10578,-10644,10609,10642,-10578,10547,10579,-10612,10580,10610,-10639,10611,10644,-10582,10581,10644,-10583,10613,10549,-10613,10612,10582,-10646,10613,10646,-10552,10614,10551,-10647,10614,10615,-10553,10647,10583,-10616,10648,10616,-10584,10649,10585,-10585,10584,10616,-10649,10586,10585,-10650,10557,10617,-10621,10650,10617,-10588,10587,10618,-10652,10618,10556,-10620,10619,10560,-10625,10620,10652,-10589,10653,10589,-10622,10589,10654,-10623,10590,10655,-10622,10590,10623,-10657,10623,10586,-10650,10622,10591,-10593,10657,10624,-10592,10595,10588,-10659,10625,10659,-10594,10660,10594,-10594,10661,10596,-10595,10595,10658,-10626,10597,10596,-10663,10598,10597,-10663,10626,10598,-10663,10564,10626,-10631,10599,10627,-10664,10628,10599,-10665,10535,10628,-10630,10630,10665,-10601,10600,10665,-10628,10629,10666,-10602,10631,10601,-10667,10602,10631,-10668,10632,10633,-10567,10602,10668,-10633,10669,10603,-10605,10604,10633,-10671, +10634,10570,-10637,10634,10635,-10570,886,915,-10636,10669,10636,-10604,10671,10575,-10638,10638,10672,-10574,10573,10673,-10640,10605,10639,-10675,10675,10637,-10606,10575,10676,-10641,10677,10606,-10641,10678,10608,-10607,10641,10611,-10580,10607,10642,-10680,10679,10641,-10608,10680,10643,-10609,10643,10681,-10610,10609,10681,-10643,10611,10682,-10645,10645,10582,-10645,10613,10612,-10684,10612,10645,-10684,10613,10684,-10647,10614,10646,-10686,10614,10647,-10616,10583,10647,-10687,10686,10648,-10584,10649,10584,-10688,10687,10584,-10649,10620,10617,-10689,10617,10650,-10690,10650,10587,-10652,10651,10618,-10691,10618,10619,-10691,10619,10624,-10692,10652,10620,-10689,10652,10658,-10589,10653,10654,-10590,10692,10653,-10622,10622,10654,-10694,10590,10656,-10656,10621,10655,-10693,10623,10694,-10657,10623,10649,-10695,10622,10657,-10592,10695,10624,-10658,10625,10696,-10660,10659,10660,-10594,10594,10660,-10662,10697,10596,-10662,10625,10658,-10697,10596,10698,-10663,10626,10662,-10700,10626,10700,-10631,10701,10663,-10628,10663,10664,-10600,10664,10702,-10629,10628,10703,-10630,10630,10700,-10666,10701,10627,-10666,10703,10666,-10630,10631,10666,-10705,10631,10704,-10668,10602,10667,-10669,10632,10705,-10634,10632,10668,-10706,10604,10706,-10670,10633,10705,-10671,10604,10670,-10708,10634,10636,-10709,10634,10709,-10636,10635,10709,-887,10669,10708,-10637,10575,10671,-10677,10710,10671,-10638,10672,10673,-10574,10674,10639,-10674,10674,10711,-10606,10675,10712,-10638,10675,10605,-10712,10676,10713,-10641,10677,10714,-10607,10640,10715,-10678,10678,10680,-10609,10678,10606,-10715,10716,10611,-10642,10717,10679,-10643,10679,10716,-10642,10680,10718,-10644,10681,10643,-10719,10717,10642,-10682,10716,10682,-10612,10682,10719,-10645,10645,10644,-10720,10613,10683,-10721,10645,10721,-10684,10613,10720,-10685,10646,10684,-10723,10646,10722,-10686,10723,10614,-10686,10614,10724,-10648,10686,10647,-10725,10686,10725,-10649,10649,10687,-10727,10687,10648,-10726,10617,10727,-10689,10650,10651,-10690,10728,10617,-10690,10729, +10651,-10691,10619,10691,-10691,10624,10730,-10692,10652,10688,-10659,10692,10654,-10654,10693,10654,-10732,10622,10693,-10658,10656,10732,-10656,10655,10733,-10693,10656,10694,-10733,10726,10694,-10650,10624,10695,-10731,10695,10657,-10735,10735,10659,-10697,10659,10736,-10661,10737,10661,-10661,10596,10697,-10699,10661,10698,-10698,10738,10696,-10659,10739,10662,-10699,10739,10699,-10663,10626,10699,-10701,10663,10701,-10741,10663,10741,-10665,10702,10664,-10743,10702,10703,-10629,10700,10743,-10666,10701,10665,-10744,10703,10702,-10667,10744,10704,-10667,10704,10745,-10668,10668,10667,-10747,10747,10705,-10669,10706,10604,-10708,10748,10669,-10707,10749,10670,-10706,10707,10670,-10751,10708,10709,-10635,886,10709,-829,10748,10708,-10670,10751,10676,-10672,10751,10671,-10711,10710,10637,-10713,10674,10752,-10712,10675,10753,-10713,10711,10754,-10676,10676,10751,-10714,10640,10713,-10756,10714,10677,-10757,10755,10715,-10641,10715,10756,-10678,10757,10680,-10679,10678,10714,-10758,10717,10758,-10680,10716,10679,-10759,10757,10718,-10681,10681,10718,-10760,10717,10681,-10760,10716,10758,-10683,10760,10719,-10683,10719,10721,-10646,10761,10720,-10684,10683,10721,-10763,10684,10720,-10764,10722,10684,-10765,10722,10765,-10686,10723,10766,-10615,10723,10685,-10766,10724,10614,-10767,10724,10725,-10687,10726,10687,-10768,10687,10725,-10768,10617,10728,-10728,10738,10688,-10728,10729,10689,-10652,10768,10728,-10690,10729,10690,-10692,10769,10691,-10731,10738,10658,-10689,10731,10654,-10693,10770,10693,-10732,10693,10771,-10658,10733,10655,-10733,10733,10772,-10693,10694,10773,-10733,10694,10726,-10775,10730,10695,-10776,10657,10771,-10735,10695,10734,-10777,10736,10659,-10736,10738,10735,-10697,10660,10736,-10778,10661,10737,-10779,10660,10777,-10738,10661,10778,-10699,10739,10698,-10780,10739,10780,-10700,10700,10699,-10782,10701,10782,-10741,10741,10663,-10741,10741,10742,-10665,10702,10742,-10784,10700,10781,-10744,10701,10743,-10783,10744,10666,-10703,10704,10744,-10785,10745,10704,-10785,10746,10667,-10746,10746,10747, +-10669,10749,10705,-10748,10785,10706,-10708,10785,10748,-10707,10749,10750,-10671,10707,10750,-10787,10708,10787,-10710,828,10709,-10789,10787,10708,-10749,10710,10789,-10752,10710,10712,-10791,10711,10752,-10755,10753,10675,-10755,10790,10712,-10754,10713,10751,-10792,10755,10713,-10793,10714,10756,-10758,10755,10793,-10716,10756,10715,-10794,10717,10759,-10759,10757,10794,-10719,10759,10718,-10796,10760,10682,-10759,10721,10719,-10761,10720,10761,-10797,10761,10683,-10763,10721,10797,-10763,10720,10798,-10764,10684,10763,-10800,10799,10764,-10685,10722,10764,-10801,10765,10722,-10801,10723,10801,-10767,10765,10801,-10724,10766,10802,-10725,10724,10767,-10726,10803,10726,-10768,10804,10727,-10729,10727,10805,-10739,10806,10689,-10730,10807,10728,-10769,10806,10768,-10690,10691,10808,-10730,10769,10808,-10692,10775,10769,-10731,10692,10772,-10732,10693,10770,-10772,10731,10809,-10771,10732,10810,-10734,10733,10811,-10773,10694,10774,-10774,10773,10812,-10733,10803,10774,-10727,10775,10695,-10814,10771,10814,-10735,10776,10734,-10815,10695,10776,-10814,10736,10735,-10816,10805,10735,-10739,10816,10777,-10737,10817,10778,-10738,10818,10737,-10778,10698,10778,-10780,10819,10739,-10780,10820,10780,-10740,10699,10780,-10782,10740,10782,-10822,10741,10740,-10823,10741,10822,-10743,10823,10783,-10743,10702,10783,-10745,10824,10743,-10782,10782,10743,-10826,10784,10744,-10784,10784,10826,-10746,10746,10745,-10828,10746,10827,-10748,10749,10747,-10829,10785,10707,-10787,10829,10748,-10786,10830,10750,-10750,10786,10750,-10831,10787,10788,-10710,10788,762,-829,10787,10748,-10830,10789,10710,-10791,10751,10789,-10832,10832,10791,-10752,10713,10791,-10793,10755,10792,-10834,10757,10756,-10835,10755,10833,-10794,10756,10793,-10835,10835,10758,-10760,10757,10834,-10795,10795,10718,-10795,10759,10795,-10836,10758,10836,-10761,10760,10836,-10722,10761,10837,-10797,10798,10720,-10797,10837,10761,-10763,10797,10721,-10837,10837,10762,-10798,10838,10763,-10799,10799,10763,-10839,10839,10764,-10800,10840,10800,-10765,10800,10840,-10766, +10801,10841,-10767,10801,10765,-10842,10766,10842,-10803,10802,10767,-10725,10803,10767,-10844,10804,10805,-10728,10804,10728,-10808,10808,10806,-10730,10807,10768,-10845,10768,10806,-10846,10769,10846,-10809,10775,10847,-10770,10731,10772,-10810,10770,10814,-10772,10848,10770,-10810,10812,10810,-10733,10733,10810,-10812,10811,10849,-10773,10774,10850,-10774,10773,10850,-10813,10774,10803,-10852,10775,10813,-10848,10776,10814,-10853,10813,10776,-10854,10735,10854,-10816,10816,10736,-10816,10735,10805,-10855,10818,10777,-10817,10778,10817,-10856,10817,10737,-10857,10818,10857,-10738,10778,10855,-10780,10739,10819,-10821,10855,10819,-10780,10858,10780,-10821,10824,10781,-10781,10821,10782,-10826,10859,10740,-10822,10740,10859,-10823,10742,10822,-10861,10823,10784,-10784,10823,10742,-10861,10743,10824,-10826,10784,10861,-10827,10745,10826,-10828,10747,10827,-10863,10862,10828,-10748,10828,10863,-10750,10785,10786,-10865,10785,10864,-10830,10863,10830,-10750,10865,10786,-10831,10787,10866,-10789,10788,10866,-763,10829,10864,-10788,10789,10790,-10868,10789,10868,-10832,10832,10751,-10832,10832,10869,-10792,10792,10791,-10871,10833,10792,-10872,10833,10872,-10794,10872,10834,-10794,10835,10836,-10759,10872,10794,-10835,10873,10795,-10795,10874,10835,-10796,10837,10875,-10797,10876,10798,-10797,10797,10836,-10878,10878,10837,-10798,10838,10798,-10880,10799,10838,-10881,10839,10881,-10765,10799,10880,-10840,10840,10764,-10882,10765,10840,-10883,10841,10842,-10767,10765,10882,-10842,10883,10802,-10843,10767,10802,-10844,10803,10843,-10885,10804,10854,-10806,10885,10804,-10808,10886,10806,-10809,10844,10768,-10888,10885,10807,-10845,10886,10845,-10807,10768,10845,-10888,10846,10769,-10848,10846,10886,-10809,10849,10809,-10773,10848,10814,-10771,10849,10848,-10810,10812,10888,-10811,10810,10888,-10812,10811,10889,-10850,10851,10850,-10775,10812,10850,-10891,10891,10851,-10804,10813,10892,-10848,10893,10852,-10815,10776,10852,-10854,10813,10853,-10893,10854,10894,-10816,10816,10815,-10895,10818,10816,-10896,10855,10817,-10897, +10856,10737,-10858,10856,10897,-10818,10818,10898,-10858,10899,10820,-10820,10855,10896,-10820,10858,10824,-10781,10820,10900,-10859,10821,10825,-10902,10859,10821,-10903,10822,10859,-10903,10860,10822,-10904,10823,10861,-10785,10860,10903,-10824,10825,10824,-10905,10905,10826,-10862,10906,10827,-10827,10907,10862,-10828,10862,10908,-10829,10828,10909,-10864,10786,10865,-10865,10910,10830,-10864,10910,10865,-10831,10866,10787,-10865,10866,732,-763,10867,10868,-10790,10831,10868,-10912,10912,10832,-10832,10869,10832,-10914,10914,10791,-10870,10914,10870,-10792,10792,10870,-10916,10871,10792,-10916,10833,10871,-10917,10872,10833,-10917,10877,10836,-10836,10794,10872,-10917,10873,10874,-10796,10873,10794,-10918,10874,10877,-10836,10878,10875,-10838,10876,10796,-10876,10876,10879,-10799,10877,10878,-10798,10838,10879,-10919,10880,10838,-10919,10839,10919,-10882,10880,10920,-10840,10840,10881,-10922,10882,10840,-10922,10841,10883,-10843,10882,10922,-10842,10923,10802,-10884,10923,10843,-10803,10884,10843,-10924,10884,10924,-10804,10854,10804,-10886,10844,10887,-10926,10885,10844,-10927,10845,10886,-10928,10845,10927,-10888,10846,10847,-10929,10846,10929,-10887,10848,10893,-10815,10849,10930,-10849,10812,10890,-10889,10888,10889,-10812,10849,10889,-10932,10851,10932,-10851,10890,10850,-10933,10851,10891,-10933,10924,10891,-10804,10933,10847,-10893,10934,10852,-10894,10853,10852,-10936,10892,10853,-10937,10937,10894,-10855,10816,10894,-10896,10898,10818,-10896,10896,10817,-10898,10857,10938,-10857,10856,10939,-10898,10898,10940,-10858,10820,10899,-10942,10896,10899,-10820,10942,10824,-10859,10900,10820,-10942,10858,10900,-10943,10901,10825,-10905,10901,10943,-10822,10943,10902,-10822,10944,10822,-10903,10944,10903,-10823,10905,10861,-10824,10903,10905,-10824,10942,10904,-10825,10945,10826,-10906,10906,10907,-10828,10945,10906,-10827,10907,10908,-10863,10909,10828,-10909,10863,10909,-10947,10865,10947,-10865,10910,10863,-10947,10910,10947,-10866,10866,10864,-10948,732,10866,-10949,10949,10831,-10912,10913,10832,-10913,10949, +10912,-10832,10869,10913,-10951,10914,10869,-10952,10914,10915,-10871,10871,10915,-10917,10794,10916,-10953,10873,10953,-10875,10917,10794,-10955,10873,10917,-10954,10877,10874,-10954,10878,10955,-10876,10876,10875,-10956,10876,10956,-10880,10877,10957,-10879,10879,10958,-10919,10880,10918,-10921,10920,10919,-10840,10959,10881,-10920,10921,10881,-10960,10882,10921,-10961,10883,10841,-10923,10882,10960,-10923,10884,10923,-10884,10924,10884,-10962,10885,10926,-10855,10962,10925,-10888,10844,10925,-10927,10929,10927,-10887,10962,10887,-10928,10928,10847,-10934,10846,10928,-10964,10963,10929,-10847,10934,10893,-10849,10849,10931,-10931,10934,10848,-10931,10964,10888,-10891,10888,10965,-10890,10889,10966,-10932,10890,10932,-10968,10968,10932,-10892,10891,10924,-10970,10970,10933,-10893,10971,10852,-10935,10972,10935,-10853,10853,10935,-10937,10892,10936,-10971,10973,10894,-10938,10937,10854,-10927,10973,10895,-10895,10898,10895,-10975,10975,10896,-10898,10857,10940,-10939,10938,10939,-10857,10976,10897,-10940,10898,10977,-10941,10899,10978,-10942,10896,10978,-10900,10979,10900,-10942,10980,10942,-10901,10981,10901,-10905,10982,10943,-10902,10902,10943,-10984,10944,10902,-10985,10985,10903,-10945,10903,10985,-10906,10942,10981,-10905,10945,10905,-10986,10907,10906,-10987,10945,10986,-10907,10987,10908,-10908,10988,10909,-10909,10989,10946,-10910,10990,10910,-10947,10991,10947,-10911,10948,10866,-10948,10948,666,-733,10992,10949,-10912,10912,10993,-10914,10994,10912,-10950,10993,10950,-10914,10950,10995,-10870,10951,10869,-10996,10914,10951,-10997,10915,10914,-10997,10916,10915,-10998,10916,10997,-10953,10794,10952,-10955,10917,10954,-10954,10998,10877,-10954,10878,10957,-10956,10876,10955,-10957,10958,10879,-10957,10998,10957,-10878,10958,10999,-10919,10920,10918,-11000,11000,10919,-10921,11000,10959,-10920,10921,10959,-10961,11001,10883,-10923,10960,11002,-10923,10884,10883,-11002,11001,10961,-10885,10924,10961,-11004,11004,10925,-10963,10925,11005,-10927,10929,11006,-10928,10962,10927,-11007,10928,10933,-11008,11008,10963, +-10929,10929,10963,-11010,10966,10930,-10932,11010,10934,-10931,10964,10965,-10889,10964,10890,-10968,10889,10965,-10967,10967,10932,-10969,10968,10891,-10970,10924,11003,-10970,10970,11011,-10934,10971,10972,-10853,10971,10934,-11013,11013,10935,-10973,11013,10936,-10936,11013,10970,-10937,10973,10937,-11015,10926,11005,-10938,10974,10895,-10974,10898,10974,-11016,11016,10896,-10976,10976,10975,-10898,11017,10938,-10941,10938,11018,-10940,10939,11019,-10977,10898,11015,-10978,10940,10977,-11018,10978,11020,-10942,10896,11016,-10979,10979,10980,-10901,10979,10941,-11022,10980,10981,-10943,10901,10981,-11023,10943,10982,-10984,11022,10982,-10902,11023,10902,-10984,10902,11023,-10985,11024,10944,-10985,11024,10985,-10945,10986,10945,-10986,10907,10986,-11026,10988,10908,-10988,11025,10987,-10908,10988,10989,-10910,10946,10989,-11027,10991,10910,-10991,10990,10946,-11027,10991,10948,-10948,666,10948,-11028,10992,11028,-10950,11029,10993,-10913,10994,11029,-10913,10994,10949,-11031,10993,11031,-10951,10950,11031,-10996,10996,10951,-10996,10915,10996,-10998,10997,11032,-10953,11033,10954,-10953,10953,10954,-11035,11034,10998,-10954,10955,10957,-11036,11036,10956,-10956,10958,10956,-11038,11035,10957,-10999,11037,10999,-10959,11038,10920,-11000,11038,11000,-10921,11000,11039,-10960,11040,10960,-10960,10922,11002,-11002,11040,11002,-10961,11001,11041,-10962,11003,10961,-11043,10925,11004,-11006,11043,11004,-10963,10929,11009,-11007,11043,10962,-11007,11011,11007,-10934,11007,11008,-10929,11008,11044,-10964,11009,10963,-11045,10966,11045,-10931,11046,10934,-11011,10930,11045,-11011,10964,11047,-10966,10964,10967,-11048,10966,10965,-11046,10967,10968,-11049,10968,10969,-11049,11003,11049,-10970,11011,10970,-11051,10971,11012,-10973,11046,11012,-10935,10972,11051,-11014,11052,10970,-11014,11005,11014,-10938,10974,10973,-11015,10974,11053,-11016,10975,11054,-11017,11054,10975,-10977,11017,11018,-10939,10939,11018,-11020,11055,10976,-11020,10977,11015,-11057,11017,10977,-11057,10978,11057,-11021,11058,10941,-11021,11016,11057, +-10979,10979,11059,-10981,11058,11021,-10942,11059,10979,-11022,10981,10980,-11060,10981,11059,-11023,10982,11060,-10984,11022,11061,-10983,11023,10983,-11063,11063,10984,-11024,11064,11024,-10985,11024,10986,-10986,11025,10986,-11066,10988,10987,-11067,11067,10987,-11026,10988,11068,-10990,11026,10989,-11069,11027,10991,-10991,10990,11026,-11070,11027,10948,-10992,11027,599,-667,11028,11070,-10950,11029,11071,-10994,11072,11029,-10995,10949,11070,-11031,10994,11030,-11074,11031,10993,-11072,10996,10995,-11032,10997,10996,-11075,10997,11074,-11033,11033,10952,-11033,11033,11034,-10955,11075,10998,-11035,11076,10955,-11036,11036,11077,-10957,11036,10955,-11077,11037,10956,-11078,11035,10998,-11076,11037,11078,-11000,11038,10999,-11080,11038,11080,-11001,11081,11039,-11001,11040,10959,-11040,11001,11002,-11042,11040,11082,-11003,11042,10961,-11042,11083,11003,-11043,11084,11005,-11005,11004,11043,-11085,11085,11006,-11010,11085,11043,-11007,11011,11086,-11008,11007,11086,-11009,11087,11044,-11009,11009,11044,-11089,11010,11089,-11047,11010,11045,-11090,10965,11047,-11091,11091,11047,-10968,10965,11090,-11046,10967,11048,-11092,10969,11049,-11049,11049,11003,-11093,11093,11050,-10971,11011,11050,-11095,10972,11012,-11052,11095,11012,-11047,11096,11013,-11052,11052,11093,-10971,11013,11097,-11053,11084,11014,-11006,10974,11014,-11054,11098,11015,-11054,11054,11099,-11017,11055,11054,-10977,11017,11100,-11019,11019,11018,-11102,11055,11019,-11103,11056,11015,-11099,11017,11056,-11104,11020,11057,-11105,11104,11058,-11021,11057,11016,-11100,11104,11021,-11059,11105,11059,-11022,11022,11059,-11062,11060,10982,-11062,11060,11062,-10984,11063,11023,-11063,11064,10984,-11064,11024,11064,-11066,11024,11065,-10987,11025,11065,-11068,11066,10987,-11107,10988,11066,-11069,11106,10987,-11068,11026,11068,-11108,11108,11027,-10991,11026,11107,-11070,11109,10990,-11070,599,11027,-11111,11072,11071,-11030,11111,11072,-10995,11070,11112,-11031,11113,11073,-11031,11073,11111,-10995,11031,11071,-11115,11031,11074,-10997,11074,11115,-11033, +11116,11033,-11033,11117,11034,-11034,11117,11075,-11035,11035,11118,-11077,11036,11076,-11078,11037,11077,-11120,11035,11075,-11121,11078,11037,-11120,11078,11079,-11000,11038,11079,-11081,11081,11000,-11081,11081,11121,-11040,11121,11040,-11040,11002,11082,-11042,11040,11121,-11083,11042,11041,-11123,11003,11083,-11093,11083,11042,-11124,11084,11043,-11086,11085,11009,-11089,11094,11086,-11012,11124,11008,-11087,11044,11087,-11089,11087,11008,-11125,11089,11125,-11047,11126,11089,-11046,11090,11047,-11092,11126,11045,-11091,11127,11091,-11049,11049,11127,-11049,11049,11092,-11128,11128,11050,-11094,11129,11094,-11051,11051,11012,-11131,11012,11095,-11131,11131,11095,-11047,11096,11097,-11014,11051,11130,-11097,11093,11052,-11098,11084,11053,-11015,11053,11132,-11099,11054,11133,-11100,11055,11134,-11055,11135,11100,-11018,11018,11100,-11102,11101,11102,-11020,11055,11102,-11137,11056,11098,-11138,11103,11056,-11139,11103,11135,-11018,11139,11104,-11058,11140,11057,-11100,11021,11104,-11142,11105,11061,-11060,11021,11142,-11106,11060,11061,-11144,11062,11060,-11145,11062,11145,-11064,11063,11146,-11065,11147,11065,-11065,11067,11065,-11148,11106,11068,-11067,11106,11067,-11149,11107,11068,-11150,11027,11108,-11111,11108,10990,-11110,11150,11069,-11108,11150,11109,-11070,11110,564,-600,11072,11151,-11072,11072,11111,-11152,11152,11030,-11113,11113,11111,-11074,11153,11113,-11031,11114,11071,-11155,11074,11031,-11115,11074,11114,-11116,11116,11032,-11116,11116,11117,-11034,11155,11075,-11118,11035,11120,-11119,11076,11118,-11157,11076,11156,-11078,11119,11077,-11157,11155,11120,-11076,11078,11119,-11158,11158,11079,-11079,11080,11079,-11160,11159,11081,-11081,11121,11081,-11161,11041,11082,-11162,11082,11121,-11162,11041,11161,-11123,11122,11123,-11043,11083,11162,-11093,11083,11123,-11164,11084,11085,-11133,11085,11088,-11165,11094,11165,-11087,11166,11124,-11087,11088,11087,-11168,11087,11124,-11169,11089,11169,-11126,11131,11046,-11126,11089,11126,-11171,11091,11171,-11091,11171,11126,-11091,11172,11091,-11128,11162, +11127,-11093,11129,11050,-11129,11128,11093,-11098,11094,11129,-11174,11095,11174,-11131,11095,11131,-11176,11176,11097,-11097,11177,11096,-11131,11084,11132,-11054,11178,11098,-11133,11133,11054,-11135,11133,11140,-11100,11055,11136,-11135,11179,11100,-11136,11101,11100,-11181,11102,11101,-11181,11136,11102,-11182,11098,11182,-11138,11138,11056,-11138,11103,11138,-11184,11103,11184,-11136,11139,11185,-11105,11139,11057,-11187,11057,11140,-11187,11187,11141,-11105,11141,11142,-11022,11105,11143,-11062,11105,11142,-11189,11189,11060,-11144,11190,11144,-11061,11191,11062,-11145,11145,11062,-11192,11063,11145,-11193,11063,11192,-11147,11146,11147,-11065,11067,11147,-11149,11106,11149,-11069,11106,11148,-11150,11107,11149,-11194,11108,11109,-11111,11107,11193,-11151,11150,11194,-11110,564,11110,-11196,11154,11071,-11152,11111,11196,-11152,11152,11197,-11031,11112,11198,-11153,11199,11111,-11114,11153,11200,-11114,11030,11197,-11154,11114,11154,-11202,11115,11114,-11202,11116,11115,-11203,11203,11117,-11117,11203,11155,-11118,11120,11204,-11119,11156,11118,-11206,11157,11119,-11157,11120,11155,-11207,11207,11078,-11158,11158,11159,-11080,11207,11158,-11079,11208,11081,-11160,11160,11081,-11210,11121,11160,-11211,11121,11210,-11162,11211,11122,-11162,11122,11211,-11124,11083,11212,-11163,11211,11163,-11124,11083,11163,-11213,11213,11132,-11086,11088,11167,-11165,11213,11085,-11165,11214,11165,-11095,11165,11166,-11087,11166,11168,-11125,11168,11167,-11088,11089,11170,-11170,11125,11169,-11216,11131,11125,-11217,11171,11170,-11127,11172,11171,-11092,11217,11172,-11128,11162,11217,-11128,11128,11218,-11130,11218,11128,-11098,11173,11129,-11220,11214,11094,-11174,11095,11175,-11175,11177,11130,-11175,11131,11216,-11176,11218,11097,-11177,11177,11176,-11097,11098,11178,-11183,11213,11178,-11133,11133,11134,-11221,11133,11221,-11141,11220,11134,-11137,11100,11179,-11223,11135,11184,-11180,11100,11222,-11181,11102,11180,-11182,11136,11181,-11224,11182,11224,-11138,11225,11138,-11138,11138,11226,-11184,11183,11184,-11104,11185, +11139,-11228,11104,11185,-11188,11139,11186,-11228,11221,11186,-11141,11187,11142,-11142,11105,11188,-11144,11228,11188,-11143,11189,11190,-11061,11189,11143,-11230,11190,11230,-11145,11231,11191,-11145,11191,11192,-11146,11192,11232,-11147,11148,11147,-11147,11149,11148,-11234,11149,11233,-11194,11110,11109,-11235,11193,11235,-11151,11236,11194,-11151,11234,11109,-11195,11237,11195,-11111,564,11195,-601,11151,11238,-11155,11199,11196,-11112,11239,11151,-11197,11152,11240,-11198,11152,11198,-11241,11200,11199,-11114,11200,11153,-11242,11242,11153,-11198,11201,11154,-11239,11115,11201,-11244,11243,11202,-11116,11116,11202,-11204,11155,11203,-11245,11245,11204,-11121,11205,11118,-11205,11157,11156,-11206,11155,11244,-11207,11206,11245,-11121,11246,11207,-11158,11158,11247,-11160,11207,11248,-11159,11208,11209,-11082,11159,11247,-11209,11249,11160,-11210,11250,11210,-11161,11211,11161,-11211,11162,11212,-11252,11252,11163,-11212,11163,11253,-11213,11254,11164,-11168,11254,11213,-11165,11214,11255,-11166,11166,11165,-11257,11166,11257,-11169,11258,11167,-11169,11170,11215,-11170,11125,11215,-11260,11259,11216,-11126,11171,11260,-11171,11261,11171,-11173,11261,11172,-11218,11162,11251,-11218,11129,11218,-11263,11129,11262,-11220,11173,11219,-11264,11214,11173,-11265,11175,11265,-11175,11266,11177,-11175,11265,11175,-11217,11267,11218,-11177,11176,11177,-11268,11182,11178,-11269,11268,11178,-11214,11133,11220,-11222,11220,11136,-11270,11270,11222,-11180,11271,11179,-11185,11181,11180,-11223,11272,11223,-11182,11223,11269,-11137,11224,11182,-11274,11274,11137,-11225,11225,11226,-11139,11137,11275,-11226,11226,11276,-11184,11184,11183,-11277,11185,11227,-11278,11187,11185,-11278,11186,11278,-11228,11221,11279,-11187,11187,11277,-11143,11143,11188,-11281,11280,11188,-11229,11142,11281,-11229,11282,11190,-11190,11229,11143,-11284,11282,11189,-11230,11190,11284,-11231,11230,11231,-11145,11231,11192,-11192,11285,11232,-11193,11286,11146,-11233,11286,11148,-11147,11286,11233,-11149,11287,11193,-11234,11110,11234,-11238,11235,11193, +-11289,11236,11150,-11236,11194,11236,-11235,11195,11237,-11290,600,11195,-11290,11239,11238,-11152,11199,11200,-11197,11196,11290,-11240,11240,11291,-11198,11292,11240,-11199,11242,11241,-11154,11200,11241,-11294,11294,11242,-11198,11295,11201,-11239,11243,11201,-11296,11243,11296,-11203,11203,11202,-11298,11203,11297,-11245,11245,11298,-11205,11204,11298,-11206,11298,11157,-11206,11206,11244,-11300,11245,11206,-11301,11207,11246,-11249,11298,11246,-11158,11158,11248,-11248,11301,11209,-11209,11247,11301,-11209,11249,11302,-11161,11303,11249,-11210,11250,11304,-11211,11250,11160,-11303,11304,11211,-11211,11212,11305,-11252,11163,11252,-11254,11304,11252,-11212,11306,11212,-11254,11254,11167,-11259,11268,11213,-11255,11255,11214,-11265,11255,11307,-11166,11307,11256,-11166,11256,11257,-11167,11168,11257,-11259,11170,11260,-11216,11308,11259,-11216,11259,11309,-11217,11261,11260,-11172,11261,11217,-11311,11217,11251,-11311,11267,11262,-11219,11262,11311,-11220,11312,11263,-11220,11173,11263,-11314,11264,11173,-11314,11314,11174,-11266,11315,11177,-11267,11316,11266,-11175,11317,11265,-11217,11177,11318,-11268,11182,11268,-11274,11220,11319,-11222,11269,11319,-11221,11181,11222,-11271,11270,11179,-11272,11271,11184,-11321,11272,11321,-11224,11181,11270,-11273,11322,11269,-11224,11224,11273,-11324,11137,11274,-11276,11324,11274,-11225,11226,11225,-11326,11225,11275,-11326,11276,11226,-11327,11320,11184,-11277,11227,11278,-11278,11278,11186,-11280,11279,11221,-11328,11277,11281,-11143,11283,11143,-11281,11280,11228,-11329,11228,11281,-11330,11282,11330,-11191,11229,11283,-11332,11332,11282,-11230,11284,11190,-11331,11333,11230,-11285,11231,11230,-11335,11231,11335,-11193,11336,11232,-11286,11285,11192,-11336,11337,11286,-11233,11286,11337,-11234,11288,11193,-11288,11287,11233,-11339,11237,11234,-11340,11340,11235,-11289,11236,11235,-11341,11234,11236,-11340,11289,11237,-11342,600,11289,-11342,11239,11342,-11239,11343,11196,-11201,11343,11290,-11197,11239,11290,-11345,11345,11291,-11241,11346,11197,-11292,11345,11240,-11293, +11347,11241,-11243,11241,11348,-11294,11343,11200,-11294,11294,11347,-11243,11294,11197,-11350,11238,11350,-11296,11243,11295,-11297,11296,11297,-11203,11299,11244,-11298,11298,11245,-11352,11206,11299,-11353,11300,11206,-11354,11245,11300,-11355,11248,11246,-11352,11298,11351,-11247,11247,11248,-11356,11301,11356,-11210,11247,11357,-11302,11303,11302,-11250,11303,11209,-11357,11358,11304,-11251,11302,11359,-11251,11306,11305,-11213,11305,11310,-11252,11252,11360,-11254,11304,11361,-11253,11253,11362,-11307,11254,11258,-11364,11268,11254,-11364,11255,11264,-11365,11255,11365,-11308,11307,11366,-11257,11256,11367,-11258,11257,11367,-11259,11260,11308,-11216,11259,11308,-11369,11259,11368,-11310,11309,11317,-11217,11260,11261,-11370,11261,11310,-11371,11262,11267,-11312,11371,11219,-11312,11372,11263,-11313,11219,11371,-11313,11313,11263,-11374,11264,11313,-11365,11314,11316,-11175,11317,11314,-11266,11315,11318,-11178,11316,11315,-11267,11318,11311,-11268,11273,11268,-11364,11327,11221,-11320,11374,11319,-11270,11270,11271,-11376,11271,11320,-11376,11376,11321,-11273,11321,11322,-11224,11272,11270,-11376,11322,11377,-11270,11323,11273,-11364,11224,11323,-11379,11275,11274,-11380,11324,11380,-11275,11224,11378,-11325,11226,11325,-11327,11275,11381,-11326,11276,11326,-11383,11320,11276,-11383,11278,11281,-11278,11278,11279,-11384,11279,11327,-11385,11331,11283,-11281,11329,11328,-11229,11328,11331,-11281,11385,11329,-11282,11386,11330,-11283,11331,11387,-11230,11332,11386,-11283,11387,11332,-11230,11388,11284,-11331,11333,11334,-11231,11333,11284,-11389,11335,11231,-11335,11336,11389,-11233,11336,11285,-11391,11285,11335,-11391,11337,11232,-11390,11338,11233,-11338,11288,11287,-11392,11338,11391,-11288,11339,11392,-11238,11393,11340,-11289,11236,11340,-11340,11394,11341,-11238,600,11341,-630,11239,11395,-11343,11342,11350,-11239,11396,11290,-11344,11397,11344,-11291,11344,11395,-11240,11398,11291,-11346,11346,11349,-11198,11398,11346,-11292,11345,11292,-11400,11347,11348,-11242,11400,11293,-11349,11343,11293,-11401,11347, +11294,-11402,11294,11349,-11403,11295,11350,-11404,11296,11295,-11404,11404,11297,-11297,11404,11299,-11298,11354,11351,-11246,11405,11352,-11300,11206,11352,-11354,11406,11300,-11354,11406,11354,-11301,11354,11248,-11352,11355,11248,-11408,11247,11355,-11358,11301,11408,-11357,11409,11301,-11358,11303,11410,-11303,11303,11356,-11412,11358,11361,-11305,11358,11250,-11360,11410,11359,-11303,11306,11362,-11306,11412,11310,-11306,11252,11413,-11361,11253,11360,-11363,11414,11252,-11362,11363,11258,-11368,11365,11255,-11365,11307,11365,-11367,11256,11366,-11368,11415,11308,-11261,11415,11368,-11309,11368,11416,-11310,11417,11317,-11310,11369,11261,-11371,11415,11260,-11370,11370,11310,-11413,11371,11311,-11419,11263,11372,-11420,11420,11372,-11313,11371,11421,-11313,11422,11373,-11264,11313,11373,-11365,11316,11314,-11424,11314,11317,-11425,11318,11315,-11426,11316,11423,-11316,11418,11311,-11319,11374,11327,-11320,11374,11269,-11378,11320,11426,-11376,11376,11427,-11322,11272,11375,-11377,11322,11321,-11429,11377,11322,-11429,11378,11323,-11364,11379,11274,-11381,11275,11379,-11382,11429,11380,-11325,11324,11378,-11367,11430,11326,-11326,11381,11431,-11326,11432,11382,-11327,11382,11426,-11321,11278,11383,-11282,11279,11384,-11384,11433,11384,-11328,11329,11434,-11329,11331,11328,-11436,11385,11436,-11330,11281,11383,-11386,11386,11437,-11331,11387,11331,-11436,11438,11386,-11333,11439,11332,-11388,11388,11330,-11438,11333,11440,-11335,11388,11441,-11334,11335,11334,-11443,11389,11336,-11444,11336,11390,-11444,11442,11390,-11336,11444,11337,-11390,11445,11338,-11338,11446,11288,-11392,11338,11447,-11392,11392,11339,-11449,11237,11392,-11450,11450,11340,-11394,11393,11288,-11452,11452,11339,-11341,11341,11394,-630,11453,11394,-11238,11454,11342,-11396,11455,11350,-11343,11396,11397,-11291,11396,11343,-11457,11457,11344,-11398,11344,11458,-11396,11345,11459,-11399,11349,11346,-11461,11460,11346,-11399,11399,11459,-11346,11347,11401,-11349,11348,11461,-11401,11343,11400,-11457,11402,11401,-11295,11402,11349,-11463,11455, +11403,-11351,11296,11403,-11405,11404,11463,-11300,11405,11353,-11353,11463,11405,-11300,11406,11353,-11406,11406,11464,-11355,11354,11407,-11249,11465,11355,-11408,11357,11355,-11467,11408,11301,-11468,11408,11411,-11357,11409,11468,-11302,11466,11409,-11358,11303,11469,-11411,11470,11303,-11412,11358,11471,-11362,11358,11359,-11473,11469,11359,-11411,11362,11412,-11306,11414,11413,-11253,11473,11360,-11414,11362,11360,-11475,11414,11361,-11472,11363,11367,-11379,11365,11364,-11476,11365,11324,-11367,11366,11378,-11368,11415,11416,-11369,11309,11416,-11477,11417,11424,-11318,11309,11476,-11418,11369,11370,-11478,11369,11477,-11416,11478,11370,-11413,11371,11418,-11480,11372,11480,-11420,11263,11419,-11423,11420,11481,-11373,11420,11312,-11422,11371,11479,-11422,11422,11482,-11374,11364,11373,-11483,11314,11424,-11424,11315,11483,-11426,11318,11425,-11419,11315,11423,-11484,11374,11433,-11328,11374,11377,-11485,11375,11426,-11486,11376,11486,-11428,11427,11487,-11322,11488,11376,-11376,11428,11321,-11488,11428,11489,-11378,11379,11380,-11491,11381,11379,-11491,11429,11491,-11381,11365,11429,-11325,11326,11430,-11433,11430,11325,-11493,11431,11381,-11494,11431,11492,-11326,11432,11494,-11383,11382,11494,-11427,11384,11495,-11384,11496,11384,-11434,11436,11434,-11330,11328,11434,-11498,11328,11497,-11436,11498,11436,-11386,11383,11498,-11386,11438,11437,-11387,11387,11435,-11500,11439,11438,-11333,11439,11387,-11500,11388,11437,-11501,11333,11441,-11441,11501,11334,-11441,11388,11502,-11442,11442,11334,-11502,11389,11443,-11504,11443,11390,-11505,11442,11504,-11391,11337,11444,-11446,11444,11389,-11504,11338,11445,-11448,11446,11451,-11289,11391,11505,-11447,11505,11391,-11448,11448,11339,-11507,11507,11392,-11449,11507,11449,-11393,11237,11449,-11509,11340,11450,-11453,11509,11450,-11394,11510,11393,-11452,11511,11339,-11453,11394,11453,-630,11237,11508,-11454,11455,11342,-11455,11458,11454,-11396,11456,11397,-11397,11457,11458,-11345,11457,11397,-11513,11459,11513,-11399,11349,11460,-11463,11513,11460,-11399,11459, +11399,-11515,11348,11401,-11462,11400,11461,-11516,11456,11400,-11516,11402,11461,-11402,11402,11462,-11517,11403,11455,-11518,11403,11517,-11405,11463,11404,-11519,11519,11405,-11464,11406,11405,-11521,11406,11520,-11465,11407,11354,-11465,11355,11465,-11467,11465,11407,-11465,11468,11467,-11302,11408,11467,-11522,11522,11411,-11409,11468,11409,-11524,11466,11524,-11410,11470,11469,-11304,11470,11411,-11526,11358,11472,-11472,11359,11526,-11473,11469,11526,-11360,11362,11474,-11413,11527,11413,-11415,11473,11528,-11361,11527,11473,-11414,11360,11528,-11475,11414,11471,-11530,11364,11530,-11476,11365,11475,-11430,11416,11415,-11532,11416,11532,-11477,11417,11533,-11425,11417,11476,-11535,11370,11478,-11478,11415,11477,-11532,11478,11412,-11475,11418,11425,-11480,11480,11372,-11482,11422,11419,-11481,11481,11420,-11536,11420,11421,-11537,11537,11421,-11480,11422,11538,-11483,11364,11482,-11531,11423,11424,-11534,11483,11539,-11426,11423,11540,-11484,11484,11433,-11375,11484,11377,-11490,11541,11485,-11427,11485,11488,-11376,11488,11486,-11377,11486,11542,-11428,11487,11427,-11543,11428,11487,-11544,11544,11489,-11429,11491,11490,-11381,11490,11545,-11382,11429,11475,-11492,11546,11432,-11431,11430,11492,-11547,11545,11493,-11382,11547,11431,-11494,11431,11548,-11493,11494,11432,-11550,11426,11494,-11542,11384,11550,-11496,11495,11498,-11384,11384,11496,-11552,11484,11496,-11434,11436,11552,-11435,11434,11553,-11498,11499,11435,-11498,11498,11554,-11437,11555,11437,-11439,11438,11439,-11557,11439,11499,-11558,11555,11500,-11438,11388,11500,-11503,11558,11440,-11442,11440,11559,-11502,11558,11441,-11503,11442,11501,-11561,11443,11504,-11504,11504,11442,-11561,11444,11561,-11446,11561,11444,-11504,11447,11445,-11563,11563,11451,-11447,11563,11446,-11506,11505,11447,-11565,11506,11339,-11512,11506,11565,-11449,11507,11448,-11566,11449,11507,-11567,11566,11508,-11450,11509,11452,-11451,11393,11510,-11510,11451,11563,-11511,11509,11511,-11453,11453,11567,-630,11567,11453,-11509,11568,11455,-11455,11458,11569,-11455,11570, +11397,-11457,11571,11458,-11458,11570,11512,-11398,11457,11512,-11573,11573,11513,-11460,11462,11460,-11575,11513,11574,-11461,11399,11575,-11515,11573,11459,-11515,11515,11461,-11577,11515,11577,-11457,11402,11516,-11462,11578,11516,-11463,11579,11517,-11456,11517,11518,-11405,11519,11463,-11519,11519,11580,-11406,11580,11520,-11406,11464,11520,-11582,11466,11465,-11525,11465,11464,-11582,11521,11467,-11469,11408,11521,-11523,11522,11525,-11412,11582,11523,-11410,11583,11468,-11524,11582,11409,-11525,11470,11584,-11470,11525,11585,-11471,11586,11471,-11473,11472,11526,-11587,11469,11584,-11527,11414,11529,-11528,11528,11473,-11588,11473,11527,-11588,11528,11588,-11475,11586,11529,-11472,11475,11530,-11492,11532,11416,-11532,11589,11476,-11533,11533,11417,-11591,11476,11589,-11535,11590,11417,-11535,11478,11531,-11478,11474,11588,-11479,11479,11425,-11592,11481,11592,-11481,11422,11480,-11539,11420,11593,-11536,11594,11481,-11536,11537,11536,-11422,11420,11536,-11594,11479,11591,-11538,11482,11538,-11596,11482,11596,-11531,11423,11533,-11541,11540,11539,-11484,11425,11539,-11598,11484,11489,-11497,11485,11541,-11599,11485,11486,-11489,11486,11599,-11543,11487,11542,-11601,11543,11487,-11602,11543,11602,-11429,11489,11544,-11604,11544,11428,-11603,11490,11491,-11546,11546,11604,-11433,11546,11492,-11549,11493,11545,-11606,11431,11547,-11549,11493,11605,-11548,11432,11604,-11550,11494,11549,-11607,11606,11541,-11495,11550,11384,-11552,11550,11607,-11496,11495,11607,-11499,11551,11496,-11490,11554,11552,-11437,11552,11553,-11435,11553,11608,-11498,11499,11497,-11609,11498,11607,-11555,11556,11555,-11439,11439,11557,-11557,11609,11557,-11500,11555,11610,-11501,11611,11502,-11501,11440,11558,-11613,11440,11612,-11560,11559,11560,-11502,11558,11502,-11612,11613,11503,-11505,11614,11504,-11561,11562,11445,-11562,11561,11503,-11614,11564,11447,-11563,11563,11505,-11616,11615,11505,-11565,11511,11616,-11507,11565,11506,-11617,11617,11507,-11566,11617,11566,-11508,11508,11566,-11568,11510,11618,-11510,11510,11563,-11620,11511, +11509,-11617,11567,11620,-630,11568,11579,-11456,11568,11454,-11570,11571,11569,-11459,11570,11456,-11578,11457,11572,-11572,11621,11512,-11571,11622,11572,-11513,11623,11513,-11574,11462,11574,-11625,11625,11574,-11514,11626,11514,-11576,11573,11514,-11628,11461,11516,-11577,11628,11515,-11577,11515,11629,-11578,11578,11576,-11517,11624,11578,-11463,11630,11517,-11580,11517,11630,-11519,11630,11519,-11519,11580,11519,-11632,11580,11581,-11521,11465,11632,-11525,11632,11465,-11582,11583,11521,-11469,11633,11522,-11522,11522,11634,-11526,11635,11523,-11583,11636,11583,-11524,11637,11582,-11525,11585,11584,-11471,11525,11638,-11586,11639,11586,-11527,11639,11526,-11585,11527,11529,-11588,11528,11587,-11641,11528,11641,-11589,11642,11529,-11587,11530,11545,-11492,11532,11531,-11479,11589,11532,-11644,11644,11533,-11591,11645,11534,-11590,11646,11590,-11535,11588,11532,-11479,11425,11597,-11592,11594,11592,-11482,11595,11480,-11593,11595,11538,-11481,11593,11647,-11536,11594,11535,-11648,11536,11537,-11649,11593,11536,-11650,11537,11591,-11651,11595,11596,-11483,11530,11596,-11546,11644,11540,-11534,11539,11540,-11652,11652,11597,-11540,11606,11598,-11542,11485,11598,-11654,11653,11486,-11486,11486,11654,-11600,11655,11542,-11600,11600,11542,-11656,11600,11601,-11488,11601,11656,-11544,11657,11602,-11544,11658,11603,-11545,11489,11603,-11552,11544,11602,-11660,11604,11546,-11661,11660,11546,-11549,11545,11661,-11606,11547,11662,-11549,11605,11663,-11548,11549,11604,-11661,11549,11664,-11607,11658,11550,-11552,11607,11550,-11666,11552,11554,-11667,11553,11552,-11668,11668,11608,-11554,11499,11608,-11670,11607,11670,-11555,11556,11610,-11556,11557,11671,-11557,11609,11671,-11558,11669,11609,-11500,11611,11500,-11611,11672,11612,-11559,11673,11559,-11613,11560,11559,-11615,11558,11611,-11675,11614,11613,-11505,11561,11675,-11563,11613,11676,-11562,11564,11562,-11678,11678,11563,-11616,11615,11564,-11678,11679,11565,-11617,11617,11565,-11680,11566,11617,-11621,11620,11567,-11567,11618,11510,-11620,11509,11618,-11680,11678, +11619,-11564,11679,11616,-11510,11620,700,-630,11680,11579,-11569,11680,11568,-11570,11681,11569,-11572,11682,11570,-11578,11683,11571,-11573,11621,11622,-11513,11570,11684,-11622,11572,11622,-11686,11623,11625,-11514,11573,11686,-11624,11624,11574,-11688,11625,11688,-11575,11626,11627,-11515,11575,11689,-11627,11573,11627,-11687,11515,11628,-11630,11690,11628,-11577,11682,11577,-11630,11690,11576,-11579,11578,11624,-11691,11691,11630,-11580,11631,11519,-11631,11580,11631,-11693,11692,11581,-11581,11637,11524,-11633,11632,11581,-11693,11583,11633,-11522,11633,11634,-11523,11634,11693,-11526,11523,11635,-11695,11637,11635,-11583,11636,11695,-11584,11523,11694,-11637,11696,11584,-11586,11693,11638,-11526,11696,11585,-11639,11639,11642,-11587,11639,11584,-11697,11587,11529,-11643,11640,11587,-11698,11698,11528,-11641,11528,11698,-11642,11641,11643,-11589,11588,11643,-11533,11699,11589,-11644,11700,11644,-11591,11646,11534,-11646,11589,11701,-11646,11590,11646,-11703,11650,11591,-11598,11594,11703,-11593,11595,11592,-11705,11705,11647,-11594,11647,11706,-11595,11707,11648,-11538,11536,11648,-11709,11649,11536,-11709,11593,11649,-11706,11707,11537,-11651,11595,11709,-11597,11709,11545,-11597,11644,11651,-11541,11651,11710,-11540,11711,11597,-11653,11652,11539,-11711,11598,11606,-11713,11713,11653,-11599,11486,11653,-11655,11654,11655,-11600,11714,11600,-11656,11601,11600,-11715,5769,11656,-11602,11656,11657,-11544,11657,11659,-11603,11658,11551,-11604,11658,11544,-11716,11544,11659,-11717,11662,11660,-11549,11661,11545,-11710,11605,11661,-11718,11547,11718,-11663,11719,11663,-11606,11663,11718,-11548,11660,11720,-11550,11721,11664,-11550,11606,11664,-11723,11658,11665,-11551,11607,11665,-11671,11666,11554,-11724,11724,11552,-11667,11724,11667,-11553,11725,11553,-11668,11608,11668,-11670,11725,11668,-11554,11670,11723,-11555,11726,11610,-11557,11671,11726,-11557,11727,11671,-11610,11669,11727,-11610,11611,11610,-11729,11672,11729,-11613,11672,11558,-11675,11730,11559,-11674,11673,11612,-11730,11730,11614,-11560,11674,11611, +-11732,11613,11614,-11677,11561,11676,-11676,11732,11562,-11676,11732,11677,-11563,11678,11615,-11734,11615,11677,-11734,11679,11734,-11618,700,11620,-11618,11735,11618,-11620,11618,11736,-11680,11678,11737,-11620,11691,11579,-11681,11681,11680,-11570,11683,11681,-11572,11682,11684,-11571,11572,11685,-11684,11621,11738,-11623,11739,11621,-11685,11740,11685,-11623,11741,11625,-11624,11742,11623,-11687,11687,11574,-11689,11624,11687,-11744,11688,11625,-11745,11627,11626,-11690,11575,11745,-11690,11686,11627,-11747,11629,11628,-11691,11747,11682,-11630,11624,11743,-11691,11691,11631,-11631,11692,11631,-11749,11637,11632,-11750,11749,11632,-11693,11583,11695,-11634,11633,11750,-11635,11634,11751,-11694,11635,11752,-11695,11753,11635,-11638,11754,11695,-11637,11755,11636,-11695,11693,11756,-11639,11638,11757,-11697,11639,11757,-11643,11639,11696,-11758,11758,11587,-11643,11697,11587,-11759,11697,11759,-11641,11759,11698,-11641,11641,11698,-11700,11641,11699,-11644,11699,11701,-11590,11700,11651,-11645,11590,11702,-11701,11646,11645,-11761,11645,11701,-11761,11761,11702,-11647,11650,11597,-11712,11706,11703,-11595,11704,11592,-11704,11595,11704,-11763,11705,11706,-11648,11648,11707,-11764,11764,11708,-11649,11765,11649,-11709,11649,11765,-11706,11650,11711,-11708,11595,11762,-11710,11651,11700,-11711,11652,11766,-11712,11767,11652,-11711,11712,11606,-11723,11712,11768,-11599,11713,11769,-11654,11713,11598,-11769,11654,11653,-11771,11654,11771,-11656,11771,11714,-11656,11714,5755,-11602,5743,11656,-5770,11601,5755,-5770,11657,11656,-11660,11715,11544,-11717,11715,11772,-11659,11656,11716,-11660,11662,11773,-11661,11709,11717,-11662,11719,11605,-11718,11718,11774,-11663,11719,11775,-11664,11718,11663,-11777,11773,11720,-11661,11720,11721,-11550,11721,11777,-11665,11777,11722,-11665,11778,11665,-11659,11670,11665,-11779,11779,11666,-11724,11724,11666,-11780,11724,11780,-11668,11725,11667,-11782,11782,11669,-11669,11725,11782,-11669,11723,11670,-11784,11726,11728,-11611,11671,11784,-11727,11727,11785,-11672,11782,11727,-11670, +11611,11728,-11732,11786,11729,-11673,11672,11674,-11788,11788,11730,-11674,11789,11673,-11730,11730,11676,-11615,11790,11674,-11732,11676,11791,-11676,11675,11792,-11733,11793,11677,-11733,11678,11733,-11738,11733,11677,-11794,11736,11734,-11680,700,11617,-11735,11618,11735,-11737,11735,11619,-11738,11680,11681,-11692,11794,11681,-11684,11747,11684,-11683,11685,11795,-11684,11621,11739,-11739,11622,11738,-11741,11739,11684,-11797,11740,11797,-11686,11625,11741,-11745,11742,11741,-11624,11798,11742,-11687,11687,11688,-11800,11799,11743,-11688,11688,11744,-11801,11746,11627,-11690,11745,11801,-11690,11798,11686,-11747,11802,11629,-11691,11802,11747,-11630,11802,11690,-11744,11631,11691,-11804,11631,11803,-11749,11692,11748,-11750,11637,11749,-11749,11633,11695,-11751,11751,11634,-11751,11693,11751,-11805,11635,11753,-11753,11752,11805,-11695,11753,11637,-11749,11754,11806,-11696,11754,11636,-11808,11808,11636,-11756,11809,11755,-11695,11756,11693,-11805,11756,11757,-11639,11758,11642,-11758,11758,11810,-11698,11811,11759,-11698,11812,11698,-11760,11813,11699,-11699,11701,11699,-11814,11700,11702,-11815,11761,11646,-11761,11760,11701,-11816,11702,11761,-11817,11706,11817,-11704,11703,11817,-11705,11818,11762,-11705,11819,11706,-11706,11707,11820,-11764,11764,11648,-11764,11764,11821,-11709,11821,11765,-11709,11705,11765,-11823,11707,11711,-11821,11762,11823,-11710,11710,11700,-11815,11767,11766,-11653,11824,11711,-11767,11767,11710,-11815,11712,11722,-11769,11713,11825,-11770,11653,11769,-11771,11713,11768,-11826,11771,11654,-11771,11771,11826,-11715,11714,5756,-5756,5743,11716,-11657,11827,11715,-11717,11772,11715,-11829,11772,11778,-11659,11774,11773,-11663,11823,11717,-11710,11823,11719,-11718,11829,11774,-11719,11719,11830,-11776,11775,11831,-11664,11663,11831,-11777,11718,11776,-11830,11832,11720,-11774,11721,11720,-11833,11721,11833,-11778,11777,11834,-11723,11778,11783,-11671,11779,11723,-11836,11724,11779,-11781,11781,11667,-11781,11725,11781,-11837,11782,11725,-11838,11723,11783,-11836,11726,11838,-11729,11785, +11784,-11672,11784,11839,-11727,11727,11840,-11786,11782,11840,-11728,11838,11731,-11729,11789,11729,-11787,11672,11787,-11787,11787,11674,-11791,11676,11730,-11789,11788,11673,-11790,11790,11731,-11842,11788,11791,-11677,11675,11791,-11793,11842,11732,-11793,11732,11842,-11794,11733,11793,-11738,11736,701,-11735,11734,734,-701,11735,11843,-11737,11737,11844,-11736,11681,11803,-11692,11794,11803,-11682,11794,11683,-11796,11747,11845,-11685,11795,11685,-11798,11846,11738,-11740,11740,11738,-11847,11845,11796,-11685,11796,11847,-11740,11740,11848,-11798,11741,11849,-11745,11742,11850,-11742,11798,11851,-11743,11800,11799,-11689,11799,11802,-11744,11852,11800,-11745,11746,11689,-11802,11801,11745,-11854,11854,11798,-11747,11855,11747,-11803,11748,11803,-11857,11695,11806,-11751,11806,11751,-11751,11751,11857,-11805,11858,11752,-11754,11752,11859,-11806,11809,11694,-11806,11753,11748,-11861,11754,11861,-11807,11808,11807,-11637,11754,11807,-11862,11862,11808,-11756,11862,11755,-11810,11756,11804,-11864,11756,11864,-11758,11865,11758,-11758,11865,11810,-11759,11811,11697,-11811,11811,11812,-11760,11812,11813,-11699,11701,11813,-11816,11702,11816,-11815,11761,11760,-11867,11760,11815,-11867,11761,11867,-11817,11868,11817,-11707,11704,11817,-11819,11818,11823,-11763,11819,11868,-11707,11705,11822,-11820,11869,11763,-11821,11764,11763,-11871,11871,11821,-11765,11821,11872,-11766,11872,11822,-11766,11824,11820,-11712,11767,11873,-11767,11766,11874,-11825,11875,11767,-11815,11834,11768,-11723,5759,11769,-11826,11769,11876,-11771,11825,11768,-5804,11876,11771,-11771,11826,11771,-5758,11826,5756,-11715,11716,5743,-11828,11827,11828,-11716,11828,11877,-11773,11772,11877,-11779,11773,11774,-11830,11823,11830,-11720,11775,11830,-11879,11831,11775,-11880,11879,11776,-11832,11829,11776,-11881,11773,11881,-11833,11721,11832,-11834,11882,11777,-11834,11834,11777,-11883,11783,11778,-11878,11779,11835,-11884,11883,11780,-11780,11884,11781,-11781,11781,11884,-11837,11725,11836,-11886,11837,11725,-11886,11782,11837,-11887,11887,11835,-11784, +11839,11838,-11727,11785,11839,-11785,11888,11785,-11841,11840,11782,-11887,11838,11841,-11732,11786,11889,-11790,11786,11787,-11891,11787,11790,-11891,11789,11891,-11789,11790,11841,-11893,11788,11893,-11792,11894,11792,-11792,11842,11792,-11895,11895,11793,-11843,11737,11793,-11896,701,11736,-11844,11734,701,-735,11735,11844,-11844,11896,11844,-11738,11794,11856,-11804,11794,11795,-11898,11747,11898,-11846,11795,11797,-11898,11847,11846,-11740,11740,11846,-11849,11899,11796,-11846,11796,11900,-11848,11797,11848,-11902,11850,11849,-11742,11849,11852,-11745,11742,11851,-11851,11798,11854,-11852,11800,11902,-11800,11802,11799,-11903,11852,11903,-11801,11904,11746,-11802,11801,11853,-11906,11854,11746,-11905,11855,11898,-11748,11902,11855,-11803,11856,11860,-11749,11857,11751,-11807,11804,11857,-11907,11752,11858,-11860,11858,11753,-11861,11859,11809,-11806,11857,11806,-11862,11808,11862,-11808,11807,11907,-11862,11809,11908,-11863,11863,11804,-11910,11756,11863,-11865,11864,11865,-11758,11810,11865,-11911,11810,11910,-11812,11911,11812,-11812,11812,11912,-11814,11912,11815,-11814,11875,11814,-11817,11867,11761,-11867,11913,11866,-11816,11914,11816,-11868,11915,11817,-11869,11915,11818,-11818,11823,11818,-11831,11819,11916,-11869,11819,11822,-11917,11869,11870,-11764,11820,11917,-11870,11871,11764,-11871,11871,11918,-11822,11872,11821,-11919,11872,11916,-11823,11820,11824,-11918,11767,11875,-11874,11766,11873,-11875,11874,11919,-11825,11834,11920,-11769,5759,11876,-11770,5803,5759,-11826,5803,11768,-5805,11771,11876,-5758,5756,11826,-5758,5743,5742,-11828,11828,11827,-11922,11828,11922,-11878,11773,11829,-11882,11878,11830,-11924,11878,11924,-11776,11879,11775,-11925,11776,11879,-11926,11776,11925,-11881,11829,11880,-11927,11881,11927,-11833,11833,11832,-11929,11882,11833,-11930,11834,11882,-11921,11877,11887,-11784,11883,11835,-11888,11883,11930,-11781,11884,11780,-11931,11836,11884,-11932,11836,11931,-11886,11837,11885,-11933,11886,11837,-11934,11838,11839,-11842,11934,11839,-11786,11888,11935,-11786,11840,11886,-11889, +11786,11936,-11890,11789,11889,-11892,11786,11890,-11937,11937,11890,-11791,11893,11788,-11892,11934,11892,-11842,11937,11790,-11893,11938,11791,-11894,11894,11791,-11939,11894,11939,-11843,11940,11895,-11843,11737,11895,-11897,11843,735,-702,11843,11844,-736,11844,11896,-11942,11794,11897,-11857,11845,11898,-11943,11897,11797,-11944,11847,11944,-11847,11848,11846,-11945,11899,11900,-11797,11845,11942,-11900,11945,11847,-11901,11848,11946,-11902,11797,11901,-11944,11947,11849,-11851,11948,11852,-11850,11949,11850,-11852,11950,11851,-11855,11903,11902,-11801,11903,11852,-11952,11904,11801,-11906,11952,11905,-11854,11904,11953,-11855,11855,11954,-11899,11855,11902,-11955,11955,11860,-11857,11861,11906,-11858,11804,11906,-11910,11858,11956,-11860,11858,11860,-11956,11859,11957,-11810,11958,11807,-11863,11958,11907,-11808,11861,11907,-11960,11908,11809,-11958,11960,11862,-11909,11909,11961,-11864,11864,11863,-11962,11865,11864,-11911,11811,11910,-11963,11912,11812,-11912,11811,11962,-11912,11912,11963,-11816,11875,11816,-11965,11913,11867,-11867,11913,11815,-11964,11914,11964,-11817,11914,11867,-11966,11868,11966,-11916,11818,11915,-11924,11923,11830,-11819,11868,11916,-11967,11967,11870,-11870,11967,11869,-11918,11871,11870,-11968,11918,11871,-11969,11872,11918,-11970,11970,11916,-11873,11917,11824,-11920,11875,11971,-11874,11972,11874,-11874,11973,11919,-11875,11768,11920,-5805,11876,5759,-5758,11827,5742,-11922,11828,11921,-11975,11922,11828,-11975,11877,11922,-11888,11926,11881,-11830,11878,11923,-11976,11924,11878,-11977,11879,11924,-11978,11879,11977,-11926,11925,11926,-11881,11881,11978,-11928,11979,11832,-11928,11979,11928,-11833,11833,11928,-11981,11929,11833,-11981,11882,11929,-11981,11882,11980,-11921,11981,11883,-11888,11883,11982,-11931,11930,11931,-11885,11885,11931,-11984,11983,11932,-11886,11933,11837,-11933,11888,11886,-11934,11934,11841,-11840,11785,11935,-11935,11935,11888,-11985,11936,11985,-11890,11889,11986,-11892,11936,11890,-11988,11937,11988,-11891,11893,11891,-11987,11989,11892,-11935,11892,11990, +-11938,11938,11893,-11992,11938,11992,-11895,11939,11894,-11993,11940,11842,-11940,11940,11896,-11896,11844,799,-736,11941,11896,-11941,11844,11941,-800,11955,11856,-11898,11898,11993,-11943,11897,11943,-11956,11945,11944,-11848,11848,11944,-11947,11900,11899,-11995,11899,11942,-11996,11945,11900,-11997,11997,11901,-11947,11997,11943,-11902,11947,11948,-11850,11998,11947,-11851,11948,11951,-11853,11949,11998,-11851,11950,11949,-11852,11953,11950,-11855,11903,11954,-11903,11903,11951,-12000,11905,12000,-11905,11905,11952,-12002,11904,12000,-11954,11993,11898,-11955,11906,11861,-11960,11909,11906,-12003,11858,11955,-11957,12003,11859,-11957,11859,12003,-11958,11960,11958,-11863,12004,11907,-11959,11959,11907,-12005,12005,11908,-11958,11960,11908,-12006,12006,11961,-11910,11961,12007,-11865,11910,11864,-11963,11912,11911,-12009,12009,11911,-11963,12008,11963,-11913,11971,11875,-11965,11913,11965,-11868,11963,12010,-11914,11964,11914,-12012,11965,12012,-11915,11966,11975,-11916,11975,11923,-11916,11970,11966,-11917,12013,11967,-11918,11871,11967,-11969,11918,11968,-12015,11969,11918,-12015,11969,11970,-11873,11917,11919,-12014,11972,11873,-11972,11972,12015,-11875,11973,12016,-11920,12017,11973,-11875,5804,11920,-12019,11921,5742,-5693,11974,11921,-5693,11974,5666,-11923,11887,11922,-11982,11881,11926,-11979,11975,11976,-11879,11976,12019,-11925,12019,11977,-11925,11977,12020,-11926,11925,11978,-11927,11978,12021,-11928,11979,11927,-12023,11928,11979,-12024,11980,11928,-12025,12018,11920,-11981,11981,12025,-11884,11982,11883,-12026,11982,12026,-11931,11930,12027,-11932,11931,12028,-11984,11983,12029,-11933,11933,11932,-11985,11933,11984,-11889,11935,11989,-11935,12030,11935,-11985,11985,11936,-12032,11889,11985,-11987,11988,11987,-11891,11987,12031,-11937,11937,12032,-11989,11986,11991,-11894,11989,11990,-11893,11990,12033,-11938,12034,11938,-11992,11938,12035,-11993,12036,11939,-11993,11939,12037,-11941,12037,11941,-11941,11941,888,-800,12038,11942,-11994,11956,11955,-11944,12039,11944,-11946,12039,11946,-11945,11994, +11899,-12041,11900,11994,-11997,11995,11942,-12039,11995,12040,-11900,12039,11945,-11997,11997,11946,-12040,11997,12041,-11944,11998,11948,-11948,12042,11951,-11949,11998,11949,-12044,11950,12044,-11950,11950,11953,-12046,11903,12046,-11955,11999,11951,-12048,11903,11999,-12047,11905,12001,-12001,12048,12001,-11953,12049,11953,-12001,12046,11993,-11955,11906,11959,-12003,12050,11909,-12003,12003,11956,-12042,11957,12003,-12052,11958,11960,-12053,12004,11958,-12054,12004,12054,-11960,11957,12055,-12006,12005,12056,-11961,12007,11961,-12007,12006,11909,-12051,11962,11864,-12008,12057,12008,-11912,12057,11911,-12010,11962,12007,-12010,12008,12010,-11964,11971,11964,-12012,11913,12058,-11966,11913,12010,-12059,11914,12059,-12012,12058,12012,-11966,12012,12060,-11915,11975,11966,-12062,12062,11966,-11971,12013,12063,-11968,12063,11968,-11968,12014,11968,-12065,11969,12014,-12062,12062,11970,-11970,12013,11919,-12017,12065,11972,-11972,11972,12065,-12016,12017,11874,-12016,11973,12066,-12017,12067,11973,-12018,5825,5804,-12019,11974,5692,-5668,11974,5667,-5667,11922,5666,-12069,11981,11922,-12070,12070,11976,-11976,11976,12070,-12020,12071,11977,-12020,12072,12020,-11978,11978,11925,-12021,12020,12021,-11979,12073,11927,-12022,12073,12022,-11928,11979,12022,-12075,12023,11979,-12075,11928,12023,-12025,11980,12024,-12019,11981,12075,-12026,12075,11982,-12026,11982,12076,-12027,11930,12026,-12028,12027,12028,-11932,11983,12028,-12078,11983,12077,-12030,11984,11932,-12030,11935,12078,-11990,12030,12079,-11936,12029,12030,-11985,12080,11985,-12032,12081,11986,-11986,12031,11987,-11989,12033,12032,-11938,12082,11988,-12033,11986,12081,-11992,12083,11990,-11990,11990,12084,-12034,11938,12034,-12036,12034,11991,-12086,11992,12035,-12087,12036,12037,-11940,12036,11992,-12087,888,11941,-12038,11993,12046,-12039,12041,11956,-11944,11994,12040,-12088,12087,11996,-11995,11995,12038,-12089,12088,12040,-11996,12039,11996,-12090,11997,12039,-12091,12090,12041,-11998,11998,12091,-11949,12042,12047,-11952,12091,12042,-11949,12043,11949, +-12045,11998,12043,-12092,11950,12045,-12045,12045,11953,-12050,12092,11999,-12048,12046,11999,-12094,12001,12094,-12001,12048,12095,-12002,12094,12049,-12001,12054,12002,-11960,12050,12002,-12055,12003,12041,-12091,12051,12003,-12091,12051,12055,-11958,12052,11960,-12097,12052,12053,-11959,12004,12053,-12098,12098,12054,-12005,12099,12005,-12056,12056,12005,-12100,12056,12100,-11961,12101,12007,-12007,12101,12006,-12051,12008,12057,-12103,12009,12103,-12058,12009,12007,-12104,12008,12102,-12011,11971,12011,-12066,12058,12010,-12105,11914,12060,-12060,12011,12059,-12066,12058,12105,-12013,12012,12105,-12061,12062,12061,-11967,11975,12061,-12071,12013,12106,-12064,12107,11968,-12064,12107,12064,-11969,12014,12064,-12109,12061,12014,-12109,11969,12061,-12063,12013,12016,-12107,12109,12015,-12066,12110,12017,-12016,12066,11973,-12068,12111,12016,-12067,12017,12112,-12068,12018,12113,-5826,12068,5666,-5662,12069,11922,-12069,12075,11981,-12070,12070,12114,-12020,12072,11977,-12072,12071,12019,-12116,12116,12020,-12073,12020,12116,-12022,12117,12073,-12022,12022,12073,-12119,12022,12118,-12075,12023,12074,-12120,12023,12113,-12025,12018,12024,-12114,12120,11982,-12076,12076,11982,-12121,12121,12026,-12077,12121,12027,-12027,12122,12028,-12028,12122,12077,-12029,12029,12077,-12124,11935,12079,-12079,12083,11989,-12079,12030,12124,-12080,12123,12030,-12030,12081,11985,-12081,12080,12031,-12126,12031,11988,-12083,12033,12126,-12033,12082,12032,-12128,12085,11991,-12082,11990,12083,-12129,12128,12084,-11991,12084,12126,-12034,12034,12129,-12036,12034,12085,-12130,12130,12086,-12036,12036,916,-12038,12131,12036,-12087,888,12037,-917,12132,12038,-12047,12133,12087,-12041,11996,12087,-12135,12088,12038,-12133,12135,12040,-12089,11996,12134,-12090,12039,12089,-12137,12136,12090,-12040,12091,12047,-12043,12043,12044,-12138,12138,12091,-12044,8264,12044,-12046,12049,8263,-12046,12092,12093,-12000,12092,12047,-12140,12046,12093,-12141,12001,12095,-12095,12095,12048,-12142,12142,12049,-12095,12143,12050,-12055,12136,12051,-12091,12136, +12055,-12052,12096,11960,-12101,12144,12052,-12097,12144,12053,-12053,12144,12097,-12054,12098,12004,-12098,12098,12143,-12055,12055,12145,-12100,12056,12099,-12147,12056,12146,-12101,12007,12101,-12104,12143,12101,-12051,12057,12103,-12103,12102,12104,-12011,12058,12104,-12106,12060,12147,-12060,12065,12059,-12110,12105,12148,-12061,12149,12070,-12062,12106,12150,-12064,12150,12107,-12064,12064,12107,-12152,12064,12151,-12109,12061,12108,-12150,12106,12016,-12112,12110,12015,-12110,12110,12112,-12018,12152,12066,-12068,12111,12066,-12154,12152,12067,-12113,5869,5825,-12114,5661,12069,-12069,12154,12075,-12070,12114,12070,-12156,12114,12115,-12020,12156,12072,-12072,12115,12157,-12072,12156,12116,-12073,12117,12021,-12117,12073,12117,-12119,12118,12119,-12075,12113,12023,-12120,12120,12075,-12155,12076,12120,-12159,12121,12076,-12160,12121,12122,-12028,12160,12077,-12123,12077,12161,-12124,12078,12079,-12163,12083,12078,-12164,12164,12124,-12031,12079,12124,-12163,12164,12030,-12124,12165,12081,-12081,12125,12031,-12083,12166,12080,-12126,12127,12032,-12127,12167,12082,-12128,12085,12081,-12166,12083,12163,-12129,12128,12168,-12085,12084,12169,-12127,12130,12035,-12130,12085,12170,-12130,12086,12130,-12172,916,12036,-12132,12172,12131,-12087,12132,12046,-12141,12133,12173,-12088,12135,12133,-12041,12173,12134,-12088,12088,12132,-12175,12135,12088,-12175,12089,12134,-12176,12089,12175,-12137,12139,12047,-12092,8264,12137,-12045,12043,12137,-12177,12138,12177,-12092,12138,12043,-12177,8264,12045,-8264,12049,12142,-8264,12093,12092,-12141,12178,12092,-12140,12094,12095,-12180,12141,12180,-12096,12094,12179,-12143,12055,12136,-12176,12096,12100,-12182,12144,12096,-12183,12097,12144,-12184,12184,12098,-12098,12185,12143,-12099,12055,12175,-12146,12145,12186,-12100,12146,12099,-12187,12187,12100,-12147,12143,12103,-12102,12188,12102,-12104,12104,12102,-12190,12190,12105,-12105,12147,12060,-12192,12059,12147,-12193,12059,12193,-12110,12105,12190,-12149,12060,12148,-12192,12149,12194,-12071,12106,12195,-12151,12107,12150, +-12197,12151,12107,-12198,12108,12151,-12199,12108,12198,-12150,12106,12111,-12196,12109,12193,-12111,12199,12112,-12111,12152,12153,-12067,12200,12111,-12154,12152,12112,-12202,5895,5869,-12114,5712,12069,-5662,12154,12069,-12203,12070,12194,-12156,12155,12115,-12115,12071,12203,-12157,12115,12155,-12158,12071,12157,-12204,12204,12116,-12157,12117,12116,-12205,12205,12118,-12118,12118,12206,-12120,12119,12207,-12114,12154,12208,-12121,12120,12208,-12159,12158,12159,-12077,12160,12121,-12160,12121,12160,-12123,12209,12077,-12161,12209,12161,-12078,12161,12164,-12124,12163,12078,-12163,12164,12210,-12125,12211,12162,-12125,12080,12212,-12166,12166,12125,-12083,12080,12166,-12213,12127,12126,-12170,12082,12167,-12167,12167,12127,-12170,12170,12085,-12166,12163,12213,-12129,12128,12214,-12169,12215,12084,-12169,12084,12215,-12170,12130,12129,-12217,12217,12129,-12171,12218,12171,-12131,12171,12172,-12087,916,12131,-973,12131,12172,-1023,12174,12132,-12141,12219,12173,-12134,12220,12133,-12136,12173,12221,-12135,12135,12174,-12223,12175,12134,-12222,12177,12139,-12092,12137,8264,-8224,12137,8223,-12177,12223,12177,-12139,12223,12138,-12177,8176,8263,-12143,12178,12140,-12093,12177,12178,-12140,12095,12224,-12180,12180,12141,-8427,12095,12180,-12225,12142,12179,-12225,12181,12100,-12188,12096,12181,-12183,12144,12182,-12184,12184,12097,-12184,12098,12184,-12186,12143,12185,-12226,12175,12221,-12146,12226,12186,-12146,12227,12146,-12187,12187,12146,-12229,12143,12225,-12104,12229,12102,-12189,12188,12103,-12226,12229,12189,-12103,12104,12189,-12191,12230,12147,-12192,12231,12192,-12148,12059,12192,-12233,12059,12232,-12194,12190,12191,-12149,12194,12149,-12199,12150,12195,-12197,12107,12196,-12234,12107,12233,-12198,12151,12197,-12199,12200,12195,-12112,12199,12110,-12194,12199,12234,-12113,12152,12235,-12154,12153,12235,-12201,12201,12112,-12237,12152,12201,-12236,12207,5895,-12114,5712,12202,-12070,12154,12202,-12209,12237,12155,-12195,12238,12156,-12204,12155,12239,-12158,12157,12240,-12204,12156,12238,-12205,12205,12117, +-12205,12118,12205,-12207,12119,12206,-12208,12208,12241,-12159,12158,12242,-12160,12160,12159,-12243,12160,12243,-12210,12209,12244,-12162,12164,12161,-12211,12163,12162,-12214,12210,12211,-12125,12211,12245,-12163,12170,12165,-12213,12212,12166,-12247,12166,12167,-12247,12167,12169,-12248,12214,12128,-12214,12214,12248,-12169,12249,12215,-12169,12215,12247,-12170,12250,12216,-12130,12218,12130,-12217,12250,12129,-12218,12217,12170,-12252,1070,12171,-12219,12172,12171,-1023,972,12131,-1023,12252,12174,-12141,12219,12253,-12174,12220,12219,-12134,12222,12220,-12136,12173,12254,-12222,12255,12222,-12175,12256,12176,-8224,12177,12223,-12258,12256,12223,-12177,8224,8176,-12143,12178,12258,-12141,12259,12178,-12178,8308,12180,-8427,12180,8308,-12225,8177,12142,-12225,12187,12260,-12182,12261,12182,-12182,12262,12183,-12183,12263,12184,-12184,12184,12264,-12186,12185,12264,-12226,12221,12226,-12146,12226,12227,-12187,12227,12265,-12147,12146,12265,-12229,12187,12228,-12261,12264,12229,-12189,12225,12264,-12189,12266,12189,-12230,12266,12190,-12190,12267,12147,-12231,12266,12230,-12192,12232,12192,-12232,12147,12268,-12232,12232,12269,-12194,12190,12266,-12192,12237,12194,-12199,12196,12195,-12271,12271,12233,-12197,12233,12272,-12198,12198,12197,-12238,12200,12270,-12196,12199,12193,-12270,12273,12234,-12200,12112,12234,-12237,12274,12200,-12236,12236,12275,-12202,12275,12235,-12202,12207,5943,-5896,5712,5738,-12203,12276,12208,-12203,12155,12237,-12240,12238,12203,-12278,12157,12239,-12241,12203,12240,-12279,12238,12277,-12205,12204,12279,-12206,12280,12206,-12206,12207,12206,-12282,12208,12276,-12242,12241,12282,-12159,12282,12242,-12159,12160,12242,-12244,12283,12209,-12244,12209,12283,-12245,12244,12284,-12162,12284,12210,-12162,12213,12162,-12246,12210,12285,-12212,12285,12245,-12212,12286,12170,-12213,12286,12212,-12247,12287,12246,-12168,12287,12167,-12248,12213,12288,-12215,12248,12214,-12289,12248,12289,-12169,12215,12249,-12291,12289,12249,-12169,12247,12215,-12291,12250,1212,-12217,12216,1176,-12219,12250,12217, +-12252,12251,12170,-12292,12171,1070,-1023,12218,1135,-1071,12252,12255,-12175,12252,12140,-12259,12219,12292,-12254,12173,12253,-12255,12219,12220,-12223,12226,12221,-12255,12222,12255,-12294,12256,8223,-8223,12223,12294,-12258,12177,12257,-12260,12256,12294,-12224,8177,8224,-12143,12178,12295,-12259,12295,12178,-12260,12224,8308,-8266,12224,8265,-8178,12181,12260,-12297,12262,12182,-12262,12181,12296,-12262,12263,12183,-12263,12263,12297,-12185,12264,12184,-12298,12227,12226,-12299,12299,12265,-12228,12228,12265,-12301,12260,12228,-12302,12302,12229,-12265,12266,12229,-12303,12147,12267,-12269,12230,12303,-12268,12230,12266,-12305,12305,12232,-12232,12231,12268,-12307,12305,12269,-12233,12307,12196,-12271,12271,12308,-12234,12309,12271,-12197,12272,12233,-12309,12272,12237,-12198,12270,12200,-12311,12199,12269,-12312,12273,12312,-12235,12199,12311,-12274,12312,12236,-12235,12274,12310,-12201,12274,12235,-12314,12312,12275,-12237,12275,12313,-12236,12207,12314,-5944,12202,5738,-12316,12315,12276,-12203,12272,12239,-12238,12316,12277,-12204,12240,12239,-12318,12318,12278,-12241,12316,12203,-12279,12277,12279,-12205,12319,12205,-12280,12206,12280,-12282,12280,12205,-12320,12281,12314,-12208,12276,12320,-12242,12282,12241,-12322,12282,12322,-12243,12242,12322,-12244,12283,12243,-12324,12283,12324,-12245,12325,12284,-12245,12210,12284,-12327,12213,12245,-12328,12210,12326,-12286,12327,12245,-12286,12291,12170,-12287,12328,12286,-12247,12287,12329,-12247,12247,12330,-12288,12213,12331,-12289,12288,12332,-12249,12333,12289,-12249,12249,12289,-12291,12334,12247,-12291,12335,1212,-12251,12216,1212,-1177,12218,1176,-1136,12335,12250,-12252,12251,12291,-12337,12255,12252,-12338,12252,12258,-12338,12338,12292,-12220,12253,12292,-12340,12253,12339,-12255,12338,12219,-12223,12298,12226,-12255,12255,12340,-12294,12341,12222,-12294,12256,8222,-8169,12259,12257,-12295,12294,12256,-12343,12337,12258,-12296,12259,12343,-12296,12344,12296,-12261,12296,12262,-12262,12345,12263,-12263,12297,12263,-12347,12302,12264,-12298,12347,12227, +-12299,12299,12348,-12266,12349,12299,-12228,12348,12300,-12266,12300,12301,-12229,12344,12260,-12302,12302,12304,-12267,12268,12267,-12351,12230,12304,-12304,12351,12267,-12304,12231,12306,-12306,12268,12350,-12307,12352,12269,-12306,12309,12196,-12308,12307,12270,-12354,12308,12271,-12355,12309,12355,-12272,12272,12308,-12240,12353,12270,-12311,12352,12311,-12270,12312,12273,-12357,12311,12357,-12274,12310,12274,-12359,12359,12274,-12314,12360,12275,-12313,12360,12313,-12276,5943,12314,-5971,12315,5738,-5738,12276,12315,-12321,12361,12277,-12317,12354,12317,-12240,12318,12240,-12318,12362,12278,-12319,12363,12316,-12279,12277,12364,-12280,12364,12319,-12280,12280,12365,-12282,12280,12319,-12367,12281,12367,-12315,5854,12241,-12321,12321,12241,-5855,12282,12321,-12369,12322,12282,-12370,12323,12243,-12323,12323,12324,-12284,12325,12244,-12325,12325,12370,-12285,12370,12326,-12285,12331,12213,-12328,12326,12371,-12286,12327,12285,-12373,12373,12291,-12287,12286,12328,-12374,12329,12328,-12247,12330,12329,-12288,12247,12334,-12331,12288,12331,-12375,12374,12332,-12289,12248,12332,-12334,12333,12375,-12290,12290,12289,-12376,12376,12334,-12291,12335,1222,-1213,12377,12335,-12252,12291,12378,-12337,12251,12336,-12380,12255,12337,-12341,12338,12380,-12293,12339,12292,-12381,12339,12298,-12255,12338,12222,-12342,12341,12293,-12341,8168,12342,-12257,12381,12259,-12295,12381,12294,-12343,12295,12382,-12338,12259,12381,-12344,12295,12343,-12383,12296,12344,-12384,12296,12383,-12263,12345,12346,-12264,12262,12383,-12346,12297,12346,-12385,12297,12385,-12303,12347,12386,-12228,12347,12298,-12340,12387,12348,-12300,12387,12299,-12350,12349,12227,-12387,12348,12388,-12301,12300,12389,-12302,12390,12344,-12302,12304,12302,-12386,12351,12350,-12268,12391,12303,-12305,12351,12303,-12392,12305,12306,-12393,12393,12306,-12351,12305,12392,-12353,12394,12309,-12308,12394,12307,-12354,12355,12354,-12272,12308,12354,-12240,12309,12395,-12356,12353,12310,-12397,12397,12311,-12353,12398,12356,-12274,12312,12356,-12361,12357,12311,-12398, +12398,12273,-12358,12359,12358,-12275,12399,12310,-12359,12359,12313,-12401,12400,12313,-12361,12314,12367,-5971,5788,12315,-5738,5788,12320,-12316,12361,12401,-12278,12361,12316,-12364,12355,12317,-12355,12318,12317,-12356,12363,12278,-12363,12362,12318,-12403,12277,12401,-12365,12319,12364,-12404,12280,12366,-12366,12281,12365,-12368,12366,12319,-12405,5788,5854,-12321,12321,5854,-5876,12321,5875,-12369,12282,12368,-12406,12369,12282,-12406,12406,12322,-12370,12322,12406,-12324,12323,12407,-12325,12325,12324,-12409,12325,12409,-12371,12326,12370,-12411,12372,12331,-12328,12326,12410,-12372,12285,12371,-12373,12291,12373,-12379,12373,12328,-12379,12329,12411,-12329,12412,12329,-12331,12330,12334,-12377,12374,12331,-12414,12332,12374,-12415,12332,12415,-12334,12333,12416,-12376,12375,12417,-12291,12376,12290,-12418,12335,12377,-1223,12251,12379,-12378,12418,12336,-12379,12418,12379,-12337,12337,12419,-12341,12420,12380,-12339,12347,12339,-12381,12338,12341,-12422,12422,12341,-12341,8168,12381,-12343,12337,12382,-12420,12381,7999,-12344,12343,12423,-12383,12383,12344,-12425,12425,12346,-12346,12426,12345,-12384,12384,12346,-12428,12297,12384,-12386,12347,12380,-12387,12348,12387,-12389,12349,12428,-12388,12349,12386,-12430,12300,12388,-12390,12390,12301,-12390,12424,12344,-12391,12391,12304,-12386,12350,12351,-12431,12391,12431,-12352,12432,12392,-12307,12432,12306,-12394,12430,12393,-12351,12352,12392,-12433,12394,12395,-12310,12353,12433,-12395,12318,12355,-12396,12396,12310,-12400,12433,12353,-12397,12397,12352,-12435,12356,12398,-12361,12397,12435,-12358,12398,12357,-12437,12359,12437,-12359,12438,12399,-12359,12400,12439,-12360,12440,12400,-12361,5970,12367,-12366,12361,12441,-12402,12442,12361,-12364,12443,12363,-12363,12402,12318,-12396,12443,12362,-12403,12403,12364,-12402,12404,12319,-12404,6027,12365,-12367,6027,12366,-12405,5875,5949,-12369,5949,12405,-12369,12405,12444,-12370,12406,12369,-12445,12407,12323,-12407,6125,12324,-12408,6125,12408,-12325,12325,12408,-12410,12370,12409,-12446,12410,12370,-12446, +12413,12331,-12373,12410,12446,-12372,12446,12372,-12372,12378,12328,-12448,12411,12329,-12413,12328,12411,-12448,12412,12330,-12377,12374,12413,-12449,12448,12414,-12375,12449,12332,-12415,12332,12449,-12416,12333,12415,-12417,12450,12375,-12417,12417,12375,-12451,12417,12451,-12377,12377,1251,-1223,12379,12452,-12378,12418,12378,-12454,12454,12379,-12419,12455,12340,-12420,12420,12386,-12381,12456,12420,-12339,12422,12421,-12342,12456,12338,-12422,12455,12422,-12341,8124,12381,-8169,12423,12419,-12383,12381,8124,-8000,12457,12343,-8000,12343,12458,-12424,12383,12424,-12460,12425,12427,-12347,12426,12425,-12346,12383,12459,-12427,12384,12427,-12461,12385,12384,-12392,12461,12388,-12388,12349,12462,-12429,12428,12463,-12388,12420,12429,-12387,12349,12429,-12463,12388,12464,-12390,12390,12389,-12465,12390,12464,-12425,12351,12431,-12431,12391,12460,-12432,12432,12393,-12466,12430,12466,-12394,12432,12434,-12353,12467,12395,-12395,12467,12394,-12434,12468,12396,-12400,12433,12396,-12470,12397,12434,-12436,12440,12360,-12399,12435,12470,-12358,12470,12436,-12358,12398,12436,-12472,12359,12439,-12438,12472,12358,-12438,12468,12399,-12439,12438,12358,-12474,12400,12440,-12440,6027,5970,-12366,12474,12441,-12362,12441,12475,-12402,12442,12474,-12362,12442,12363,-12444,12467,12402,-12396,12402,12476,-12444,12403,12401,-12476,12404,12403,-12476,6027,12404,-6089,12405,5949,-6006,12477,12444,-12406,12406,12444,-12479,6064,12407,-12407,6125,12407,-6065,12408,6125,-6207,12409,12408,-12480,12445,12409,-12481,12445,12481,-12411,12413,12372,-12483,12410,12481,-12447,12483,12372,-12447,12378,12447,-12485,12411,12412,-12486,12447,12411,-12487,12487,12412,-12377,12488,12448,-12414,12448,12489,-12415,12414,12490,-12450,12491,12415,-12450,12415,12492,-12417,12450,12416,-12494,12417,12450,-12452,12451,12494,-12377,12377,12452,-1252,12452,12379,-12455,12484,12453,-12379,12453,12495,-12419,12495,12454,-12419,12455,12419,-12497,12497,12420,-12457,12456,12421,-12423,12455,12498,-12423,12423,12496,-12420,12457,12499,-12344,7885,12457,-8000, +12458,12343,-12500,12423,12458,-12501,12424,12464,-12460,12501,12427,-12426,12502,12425,-12427,12503,12426,-12460,12427,12501,-12461,12384,12460,-12392,12504,12388,-12462,12461,12387,-12464,12428,12462,-12464,12497,12429,-12421,12462,12429,-12506,12388,12504,-12465,12430,12431,-12507,12460,12506,-12432,12465,12393,-12467,12465,12507,-12433,12466,12430,-12509,12432,12507,-12435,12433,12469,-12468,12468,12469,-12397,12434,12509,-12436,12398,12471,-12441,12510,12470,-12436,12510,12436,-12471,12471,12436,-12512,12437,12439,-12513,12472,12473,-12359,12437,12513,-12473,12468,12438,-12515,12514,12438,-12474,12440,12512,-12440,12474,12515,-12442,12441,12516,-12476,12474,12442,-12518,12442,12443,-12518,12467,12476,-12403,12517,12443,-12477,12518,12404,-12476,12519,6088,-12405,6005,12477,-12406,12444,12477,-12479,12406,12478,-6065,12408,6206,-12480,12409,12479,-12521,12520,12480,-12410,12445,12480,-12522,12445,12521,-12482,12482,12372,-12484,12413,12482,-12523,12481,12523,-12447,12446,12524,-12484,12525,12484,-12448,12487,12485,-12413,12486,12411,-12486,12526,12447,-12487,12487,12376,-12495,12488,12489,-12449,12413,12522,-12489,12414,12489,-12528,12414,12527,-12491,12528,12449,-12491,12415,12491,-12493,12491,12449,-12529,12492,12493,-12417,12451,12450,-12494,12451,12529,-12495,12452,1281,-1252,12454,12530,-12453,12484,12531,-12454,12532,12495,-12454,12454,12495,-12534,12496,12498,-12456,12422,12497,-12457,12422,12498,-12498,12496,12423,-12501,12457,7885,-12500,12458,12499,-12501,12504,12459,-12465,12502,12501,-12426,12426,12503,-12503,12459,12534,-12504,12501,12535,-12461,12504,12461,-12537,12537,12461,-12464,12538,12463,-12463,12539,12429,-12498,12429,12540,-12506,12462,12505,-12539,12506,12508,-12431,12460,12535,-12507,12465,12466,-12542,12465,12541,-12508,12542,12466,-12509,12507,12543,-12435,12467,12469,-12477,12468,12544,-12470,12543,12509,-12435,12510,12435,-12510,12440,12471,-12513,12510,12511,-12437,12545,12471,-12512,12437,12512,-12514,12546,12473,-12473,12472,12513,-12548,12514,12548,-12469,12514,12473,-12547,12517, +12515,-12475,12515,12516,-12442,12518,12475,-12517,12544,12517,-12477,12519,12404,-12519,12549,6088,-12520,12477,6005,-6065,12478,12477,-6065,6236,12479,-6207,12520,12479,-6328,12550,12480,-12521,12521,12480,-12551,12521,12551,-12482,12482,12483,-12553,12522,12482,-12554,12481,12551,-12524,12446,12523,-12525,12483,12524,-12553,12525,12531,-12485,12525,12447,-12527,12487,12554,-12486,12486,12485,-12555,12526,12486,-12556,12494,12556,-12488,12557,12489,-12489,12488,12522,-12558,12557,12527,-12490,12527,12558,-12491,12490,12558,-12529,12559,12492,-12492,12491,12528,-12561,12492,12561,-12494,12529,12451,-12494,12529,12556,-12495,12530,1281,-12453,12530,12454,-12534,12532,12453,-12532,12495,12532,-12534,12496,12562,-12499,12498,12563,-12498,12562,12496,-12501,12564,12499,-7886,12500,12499,-12566,12504,12534,-12460,12502,12566,-12502,12503,12566,-12503,12503,12534,-12568,12568,12535,-12502,12461,12569,-12537,12534,12504,-12537,12537,12569,-12462,12537,12463,-12571,12538,12570,-12464,12429,12539,-12541,12539,12497,-12564,12505,12540,-12572,12505,12571,-12539,12506,12572,-12509,12506,12535,-12573,12573,12541,-12467,12507,12541,-12544,12573,12466,-12543,12572,12542,-12509,12544,12476,-12470,12548,12544,-12469,12574,12509,-12544,12574,12510,-12510,12471,12575,-12513,12574,12511,-12511,12545,12575,-12472,12574,12545,-12512,12576,12513,-12513,12472,12547,-12547,12513,12577,-12548,12514,12578,-12549,12514,12546,-12580,12517,12580,-12516,12581,12516,-12516,12516,12549,-12519,12517,12544,-12581,12519,12518,-12550,12549,6117,-6089,6236,6327,-12480,6327,12582,-12521,12520,12582,-12551,12521,12550,-12552,12482,12552,-12554,12553,12557,-12523,12551,12583,-12524,12583,12524,-12524,12584,12552,-12525,12525,12585,-12532,12525,12526,-12556,12487,12556,-12555,12554,12555,-12487,12527,12557,-12587,12558,12527,-12588,12558,12588,-12529,12559,12561,-12493,12589,12559,-12492,12588,12560,-12529,12491,12560,-12590,12561,12590,-12494,12529,12493,-12591,12529,12591,-12557,1281,12530,-1296,12592,12530,-12534,12585,12532,-12532,12533,12532,-12594, +12594,12498,-12563,12498,12594,-12564,12500,12595,-12563,12564,12565,-12500,7801,12564,-7886,12500,12565,-12596,12596,12501,-12567,12503,12567,-12567,12597,12567,-12535,12572,12535,-12569,12568,12501,-12597,12597,12536,-12570,12597,12534,-12537,12537,12598,-12570,12537,12570,-12600,12600,12570,-12539,12539,12601,-12541,12539,12563,-12602,12540,12602,-12572,12571,12603,-12539,12573,12543,-12542,12573,12542,-12605,12572,12604,-12543,12580,12544,-12549,12543,12605,-12575,12512,12575,-12607,12545,12607,-12576,12545,12574,-12606,12513,12576,-12609,12576,12512,-12607,12546,12547,-12610,12513,12608,-12578,12610,12547,-12578,12578,12514,-12580,12578,12611,-12549,12609,12579,-12547,12581,12515,-12581,12612,12516,-12582,12613,12549,-12517,12614,6117,-12550,12582,6327,-6359,12615,12550,-12583,12550,12616,-12552,12552,12617,-12554,12557,12553,-12619,12583,12551,-12617,12583,12584,-12525,12619,12552,-12585,12555,12585,-12526,12556,12620,-12555,12620,12555,-12555,12618,12586,-12558,12527,12586,-12622,12587,12527,-12622,12588,12558,-12588,12559,12622,-12562,12589,12622,-12560,12623,12560,-12589,12589,12560,-12624,12561,12624,-12591,12625,12529,-12591,12591,12529,-12627,12627,12556,-12592,12530,12592,-1296,12592,12533,-12629,12629,12532,-12586,12532,12629,-12594,12628,12533,-12594,12594,12562,-12596,12630,12563,-12595,12631,12565,-12565,7800,12564,-7802,12595,12565,-12632,12632,12596,-12567,12632,12566,-12568,12633,12567,-12598,12568,12634,-12573,12568,12596,-12635,12597,12569,-12599,12537,12599,-12599,12570,12600,-12600,12538,12603,-12601,12601,12635,-12541,12636,12601,-12564,12602,12540,-12636,12571,12602,-12604,12573,12637,-12544,12637,12573,-12605,12638,12604,-12573,12580,12548,-12612,12605,12543,-12638,12607,12606,-12576,12545,12605,-12608,12576,12639,-12609,12576,12606,-12641,12641,12609,-12548,12642,12577,-12609,12610,12641,-12548,12577,12642,-12611,12578,12579,-12644,12578,12644,-12612,12609,12643,-12580,12580,12611,-12582,12613,12516,-12613,12581,12611,-12613,12549,12613,-12646,6117,12614,-6175,6258,12614,-12550,12582,6358, +-6460,12615,12646,-12551,6459,12615,-12583,12646,12616,-12551,12552,12619,-12618,12617,12618,-12554,12583,12616,-12648,12584,12583,-12648,12647,12619,-12585,12648,12585,-12556,12556,12627,-12621,12620,12648,-12556,12586,12618,-12622,12587,12621,-12650,12650,12588,-12588,12622,12651,-12562,12589,12623,-12623,12623,12588,-12653,12561,12651,-12625,12590,12624,-12654,12529,12625,-12627,12625,12590,-12654,12627,12591,-12627,1295,12592,-12655,12655,12592,-12629,12629,12585,-12657,12657,12593,-12630,12658,12628,-12594,12594,12595,-12632,12636,12563,-12631,12594,12631,-12631,12659,12631,-12565,7799,12564,-7801,12596,12632,-12661,12632,12567,-12634,12633,12597,-12662,12634,12638,-12573,12596,12660,-12635,12597,12598,-12663,12598,12599,-12663,12663,12599,-12601,12603,12664,-12601,12636,12635,-12602,12635,12665,-12603,12666,12603,-12603,12637,12604,-12668,12638,12668,-12605,12605,12637,-12668,12607,12669,-12607,12605,12667,-12608,12576,12640,-12640,12670,12608,-12640,12606,12669,-12641,12609,12641,-12644,12670,12642,-12609,12671,12641,-12611,12670,12610,-12643,12672,12578,-12644,12644,12578,-12673,12644,12612,-12612,12645,12613,-12613,6258,12549,-12646,12614,6258,-6175,12673,12646,-12616,6526,12615,-6460,12646,12674,-12617,12675,12617,-12620,12617,12676,-12619,12616,12677,-12648,12647,12678,-12620,12648,12656,-12586,12620,12627,-12680,12680,12648,-12621,12621,12618,-12677,12681,12649,-12622,12650,12587,-12650,12588,12650,-12683,12683,12651,-12623,12622,12623,-12685,12652,12588,-12683,12652,12684,-12624,12651,12685,-12625,12653,12624,-12686,12626,12625,-12687,12625,12653,-12688,12688,12627,-12627,12689,12654,-12593,1295,12654,-1268,12655,12689,-12593,12655,12628,-12691,12629,12656,-12658,12657,12658,-12594,12658,12690,-12629,12636,12630,-12692,12659,12630,-12632,7799,12659,-12565,12660,12632,-12693,12661,12632,-12634,12662,12661,-12598,12693,12638,-12635,12660,12694,-12635,12695,12662,-12600,12663,12695,-12600,12663,12600,-12697,12603,12666,-12665,12600,12664,-12697,12697,12635,-12637,12665,12635,-12698,12666,12602,-12666,12668, +12667,-12605,12638,12698,-12669,12607,12699,-12670,12699,12607,-12668,12700,12639,-12641,12700,12670,-12640,12700,12640,-12670,12701,12643,-12642,12641,12671,-12702,12610,12702,-12672,12670,12703,-12611,12672,12643,-12705,12672,12704,-12645,12644,12705,-12613,12645,12612,-12706,12645,6318,-6259,12673,12706,-12647,6526,12673,-12616,12674,12646,-12707,12674,12677,-12617,12675,12676,-12618,12675,12619,-12679,12677,12707,-12648,12707,12678,-12648,12648,12708,-12657,12688,12679,-12628,12680,12620,-12680,12648,12680,-12709,12681,12621,-12677,12649,12681,-12710,12710,12650,-12650,12682,12650,-12712,12683,12685,-12652,12683,12622,-12685,12682,12712,-12653,12712,12684,-12653,12653,12685,-12714,12625,12687,-12687,12626,12686,-12715,12653,12713,-12688,12626,12714,-12689,12689,12715,-12655,12715,1267,-12655,12689,12655,-12691,12657,12656,-12717,12658,12657,-12718,12658,12718,-12691,12659,12691,-12631,12636,12691,-12698,7799,12719,-12660,12632,12661,-12693,12660,12692,-12721,12695,12661,-12663,12693,12698,-12639,12693,12634,-12695,12720,12694,-12661,12663,12721,-12696,12722,12663,-12697,12664,12666,-12724,12664,12722,-12697,12665,12697,-12725,12666,12665,-12726,12668,12699,-12668,12698,12699,-12669,12699,12726,-12670,12670,12700,-12704,12726,12700,-12670,12704,12643,-12702,12701,12671,-12728,12728,12702,-12611,12727,12671,-12703,12610,12703,-12730,12704,12730,-12645,12644,12731,-12706,12705,6421,-12646,6421,6318,-12646,12706,12673,-12733,12673,6526,-6564,12733,12674,-12707,12674,12734,-12678,12735,12676,-12676,12675,12678,-12737,12734,12707,-12678,12707,12737,-12679,12716,12656,-12709,12688,12738,-12680,12738,12680,-12680,12708,12680,-12740,12681,12676,-12736,12709,12681,-12741,12710,12649,-12710,12741,12650,-12711,12711,12650,-12742,12682,12711,-12743,12683,12743,-12686,12683,12684,-12745,12682,12742,-12713,12712,12745,-12685,12685,12743,-12714,12686,12687,-12747,12714,12686,-12747,12747,12687,-12714,12688,12714,-12749,12715,12689,-9407,12715,1238,-1268,12689,12690,-9407,12716,12749,-12658,12657,12749,-12718,12750,12658,-12718, +12718,12658,-12751,9335,12690,-12719,12691,12659,-12720,12691,12751,-12698,12719,7799,-7726,12692,12661,-12753,12692,12753,-12721,12661,12695,-12753,12693,12754,-12699,12755,12693,-12695,12756,12694,-12721,12663,12722,-12722,12721,12752,-12696,12666,12725,-12724,12757,12664,-12724,12757,12722,-12665,12751,12724,-12698,12725,12665,-12725,12698,12758,-12700,12758,12726,-12700,12759,12703,-12701,12726,12760,-12701,12701,12730,-12705,12701,12727,-12762,12762,12702,-12729,12610,12729,-12729,12762,12727,-12703,12763,12729,-12704,12644,12730,-12732,6485,12705,-12732,12705,6485,-6422,6563,12732,-12674,12732,12764,-12707,12674,12733,-12735,12733,12706,-12765,12736,12735,-12676,12736,12678,-12738,12734,12737,-12708,12716,12708,-12740,12738,12688,-12749,12680,12738,-12766,12739,12680,-12766,12681,12735,-12741,12709,12740,-12767,12710,12709,-12768,12741,12710,-12768,12741,12768,-12712,12711,12769,-12743,12683,12744,-12744,12745,12744,-12685,12712,12742,-12746,12747,12713,-12744,12770,12746,-12688,12714,12746,-12749,12747,12770,-12688,9423,12715,-9407,12771,1238,-12716,9406,12690,-9336,12772,12749,-12717,12749,12773,-12718,12750,12717,-12775,12718,12750,-12776,9335,12718,-12776,12776,12691,-12720,12776,12751,-12692,7643,12719,-7726,12692,12752,-12754,12753,12756,-12721,12777,12754,-12694,12698,12754,-12759,12777,12693,-12756,12756,12755,-12695,12778,12721,-12723,12779,12752,-12722,12780,12723,-12726,12757,12723,-12781,12757,12778,-12723,12781,12724,-12752,12782,12725,-12725,12783,12726,-12759,12763,12703,-12760,12759,12700,-12761,12726,12784,-12761,12761,12730,-12702,12761,12727,-12786,12786,12762,-12729,12728,12729,-12788,12785,12727,-12763,12763,12787,-12730,6485,12731,-12731,6638,12732,-6564,12732,6752,-12765,12734,12733,-12789,12733,12764,-12790,12736,12790,-12736,12736,12737,-12792,12734,12788,-12738,12792,12716,-12740,12765,12738,-12749,12739,12765,-12793,12790,12740,-12736,12740,12793,-12767,12767,12709,-12767,12794,12741,-12768,12741,12794,-12769,12711,12768,-12770,12795,12742,-12770,12743,12744,-12797,12744,12745,-12797, +12745,12742,-12797,12747,12743,-12798,12746,12770,-12799,12748,12746,-12800,12747,12797,-12771,9423,12771,-12716,1238,12771,-1208,12773,12749,-12773,12800,12772,-12717,12717,12773,-12775,12750,12774,-12776,9335,12775,-9313,12719,7643,-12777,12776,12781,-12752,12753,12752,-12780,12756,12753,-12780,12754,12777,-12802,12783,12758,-12755,12777,12755,-12803,12755,12756,-12803,12778,12803,-12722,12779,12721,-12804,12725,12804,-12781,12805,12757,-12781,12757,12806,-12779,12781,12782,-12725,12807,12725,-12783,12783,12784,-12727,12808,12763,-12760,12808,12759,-12761,12784,12808,-12761,12730,12761,-12810,12761,12785,-12811,12786,12811,-12763,7101,12786,-12729,7101,12728,-12788,12811,12785,-12763,12763,7197,-12788,6557,6485,-12731,12732,6638,-6753,12789,12764,-6753,12733,12789,-12789,12812,12790,-12737,12813,12791,-12738,12812,12736,-12792,12814,12737,-12789,12792,12800,-12717,12765,12748,-12816,12815,12792,-12766,12790,12793,-12741,12793,12816,-12767,12767,12766,-12817,12794,12767,-12818,12768,12794,-12819,12768,12819,-12770,12795,12796,-12743,12795,12769,-12820,12743,12796,-12798,12820,12798,-12771,12798,12799,-12747,12799,12815,-12749,12770,12797,-12822,12771,9423,-1208,12773,12772,-12823,12800,12822,-12773,12823,12774,-12774,12824,12775,-12775,12824,9312,-12776,12776,7643,-12826,12776,12826,-12782,12756,12779,-12828,12801,12777,-12829,12754,12801,-12784,12829,12777,-12803,12756,12827,-12803,12830,12803,-12779,12779,12803,-12832,12725,12807,-12805,7486,12780,-12805,12805,12806,-12758,7486,12805,-12781,12806,12830,-12779,12807,12782,-12782,12801,12784,-12784,12808,7197,-12764,12832,12808,-12785,12809,12761,-12834,12730,12809,-6558,12810,12785,-12812,12761,12810,-12834,7028,12811,-12787,12786,7101,-7029,7161,7101,-12788,7197,7161,-12788,12834,12789,-6753,12788,12789,-12836,12812,12836,-12791,12791,12813,-12838,12814,12813,-12738,12812,12791,-12837,12788,12835,-12815,12800,12792,-12839,12815,12839,-12793,12840,12793,-12791,12793,12841,-12817,12767,12816,-12818,12794,12817,-12843,12818,12794,-12843,12818,12819,-12769,12795,12843, +-12797,12819,12844,-12796,12843,12797,-12797,12820,12845,-12799,12770,12846,-12821,12798,12847,-12800,12799,12839,-12816,12821,12797,-12844,12821,12846,-12771,12773,12822,-12824,12822,12800,-12849,12823,12824,-12775,12824,9266,-9313,12825,7643,-7606,12776,12825,-12827,12849,12781,-12827,12831,12827,-12780,12829,12828,-12778,12801,12828,-12785,12802,12831,-12830,12802,12827,-12832,12850,12803,-12831,12851,12831,-12804,12804,12807,-7563,12804,7562,-7487,12805,7450,-12807,12805,7486,-7451,12806,12852,-12831,12849,12807,-12782,12808,7120,-7198,7196,12808,-12833,12832,12784,-12854,12854,12809,-12834,12809,6559,-6558,12855,12810,-12812,12833,12810,-12855,12811,7028,-6994,12789,12834,-12857,12835,12789,-12857,12840,12790,-12837,12813,12857,-12838,12791,12837,-12837,12813,12814,-12858,12858,12814,-12836,12839,12838,-12793,12800,12838,-12849,12840,9167,-12794,12793,9167,-12842,12816,12841,-12818,12859,12842,-12818,12818,12842,-12861,12818,12860,-12820,12795,12844,-12844,12844,12819,-12862,12820,12862,-12846,12845,12863,-12799,12820,12846,-12863,12863,12847,-12799,12847,12839,-12800,12821,12843,-12865,12821,12865,-12847,12822,12848,-12824,12866,12824,-12824,12866,9266,-12825,12849,12825,-7606,12826,12825,-12850,12867,12828,-12830,12784,12828,-12854,12851,12829,-12832,12803,12850,-12869,12850,12830,-12853,12868,12851,-12804,12807,7603,-7563,7377,12806,-7451,12806,12869,-12853,12807,12849,-7604,7120,12808,-7197,12832,12870,-7197,12832,12853,-12872,12809,12854,-6560,12855,12872,-12811,6910,12855,-12812,6632,12854,-12811,6910,12811,-6994,12834,12873,-12857,12835,12856,-12875,12840,12836,-12876,12876,12837,-12858,12836,12837,-12878,12857,12814,-12859,12858,12835,-12875,12839,12847,-12839,12838,12878,-12849,12875,9167,-12841,9127,12841,-9168,12879,12817,-12842,12880,12842,-12860,12859,12817,-12880,12880,12860,-12843,12860,12861,-12820,12844,12864,-12844,12861,12881,-12845,12862,12882,-12846,12863,12845,-12884,12862,12846,-12866,12847,12863,-12884,12864,12865,-12822,12866,12823,-12849,9266,12866,-12885,7605,7603,-12850,12867,12853, +-12829,12867,12829,-12852,12868,12850,-12886,12886,12850,-12853,12851,12868,-12888,7377,12869,-12807,12886,12852,-12870,12832,12871,-12871,7196,12870,-7194,12867,12871,-12854,6632,6559,-12855,12855,6707,-12873,12810,12872,-6633,6827,12855,-6911,12873,12888,-12857,12874,12856,-12889,12836,12877,-12876,12876,12877,-12838,12857,12889,-12877,12857,12858,-12891,12858,12874,-12892,12892,12838,-12848,12892,12878,-12839,12878,12893,-12849,12875,12894,-9168,9127,12879,-12842,12880,12859,-9110,12859,12879,-9129,12880,12895,-12861,12896,12861,-12861,12844,12881,-12865,12861,12897,-12882,12898,12882,-12863,12883,12845,-12883,12862,12865,-12899,12899,12847,-12884,12865,12864,-12882,12893,12866,-12849,12893,12884,-12867,9266,12884,-9203,12851,12871,-12868,7346,12885,-12851,12868,12885,-12888,12886,7347,-12851,12851,12887,-12872,7377,7345,-12870,12869,7306,-12887,12871,12900,-12871,7193,12870,-12901,12901,6707,-12856,6632,12872,-6708,6827,12901,-12856,12888,12873,-12903,12874,12888,-12904,12894,12875,-12878,12876,12904,-12878,12890,12889,-12858,12905,12876,-12890,12858,12891,-12891,12891,12874,-12904,12892,12847,-12900,12892,12899,-12879,12878,12906,-12894,12879,9127,-9129,9109,12859,-9129,9109,9064,-12881,12880,9064,-12896,12895,12896,-12861,12897,12861,-12897,12907,12881,-12898,12898,12908,-12883,12899,12883,-12883,12898,12865,-12908,12865,12881,-12908,12884,12893,-12907,12884,12909,-9203,12885,7346,-12888,7346,12850,-7348,7306,7347,-12887,12900,12871,-12888,12869,7345,-7307,7193,12900,-7271,6707,12901,-6707,12901,6827,-6707,12888,12902,-12911,12910,12903,-12889,12904,12894,-12878,12876,12905,-12905,12911,12889,-12891,12905,12889,-12912,12890,12891,-12913,12913,12891,-12904,12906,12878,-12900,9044,12895,-9065,12895,9044,-12897,12897,12896,-9039,12897,12914,-12908,12898,12915,-12909,12908,12916,-12883,12882,12909,-12900,12898,12907,-12918,12884,12906,-12910,9184,9202,-12910,12900,12887,-7347,7346,7270,-12901,12902,12918,-12911,12910,12919,-12904,12920,12911,-12891,12905,12911,-12922,12913,12912,-12892,12920,12890,-12913,12903,12919, +-12914,12906,12899,-12910,9038,12896,-9045,12914,12897,-9039,12907,12914,-12918,12917,12915,-12899,12922,12908,-12916,12916,12908,-12923,12882,12916,-12910,9184,12909,-12917,12918,12902,-12924,12918,12924,-12911,12919,12910,-12925,12925,12911,-12921,12911,12925,-12922,12912,12913,-12927,12920,12912,-12928,12913,12919,-12929,9055,12914,-9039,12917,12914,-9038,12917,12929,-12916,12930,12922,-12916,12931,12916,-12923,12932,9184,-12917,12918,12923,-12934,12918,12934,-12925,12919,12924,-12936,12920,12927,-12926,12913,12928,-12927,12912,12926,-12937,12936,12927,-12913,12928,12919,-12936,9055,9037,-12915,12929,12917,-9038,12929,12930,-12916,12922,12930,-12932,12931,12932,-12917,12932,9140,-9185,12937,12933,-12924,12918,12933,-12939,12934,12918,-12940,12935,12924,-12935,12936,12926,-12929,12927,12936,-12941,12928,12935,-12942,9037,9078,-12930,9078,12930,-12930,12942,12931,-12931,12932,12931,-9140,9140,12932,-9140,12933,12937,-12944,12933,12943,-12939,12918,12938,-12940,12934,12939,-12945,12935,12934,-12942,12936,12928,-12946,12936,12946,-12941,12945,12928,-12942,12930,9078,-9099,12931,12942,-9140,9098,12942,-12931,12947,12943,-12938,12943,12948,-12939,12938,12944,-12940,12941,12934,-12945,12936,12945,-12947,12945,12941,-12950,12942,9098,-9140,12950,12943,-12948,12937,12951,-12948,12948,12943,-12953,12948,12944,-12939,12941,12944,-12954,12945,12949,-12947,12949,12941,-12955,12950,12952,-12944,12950,12947,-12956,12947,12951,-12957,12948,12952,-12958,12944,12948,-12959,12959,12953,-12945,12941,12953,-12955,12946,12949,-12961,12949,12954,-12962,12955,12952,-12951,12955,12947,-12963,12956,12963,-12948,12964,12957,-12953,12958,12948,-12958,12944,12958,-12960,12959,12965,-12954,12965,12954,-12954,12960,12949,-12962,12954,12965,-12962,12955,12964,-12953,12962,12947,-12964,12955,12962,-12967,12956,12967,-12964,12957,12964,-12969,12958,12957,-12970,12970,12959,-12959,12965,12959,-12972,12961,12965,-12973,12964,12955,-12967,12963,12973,-12963,12973,12966,-12963,12974,12967,-12957,12967,12975,-12964,12964,12976,-12969,12968,12969,-12958, +12958,12969,-12971,12970,12971,-12960,12965,12971,-12978,12965,12977,-12973,12964,12966,-12977,12963,12978,-12974,12973,12979,-12967,12980,12967,-12975,12980,12975,-12968,12963,12975,-12979,12976,12981,-12969,12968,12982,-12970,12970,12969,-12983,12970,12983,-12972,12983,12977,-12972,12972,12977,-12985,12966,12979,-12977,12973,12978,-12986,12973,12985,-12980,12974,12986,-12981,12987,12975,-12981,12988,12978,-12976,12981,12976,-12990,12990,12968,-12982,12982,12968,-12991,12970,12982,-12984,12991,12977,-12984,12992,12984,-12978,12976,12979,-12994,12994,12985,-12979,12985,12993,-12980,12995,12980,-12987,12975,12987,-12997,12997,12987,-12981,12988,12994,-12979,12988,12975,-12999,12976,12999,-12990,12990,12981,-12990,12982,12990,-13001,12991,12983,-12983,12992,12977,-12992,12976,12993,-13000,12994,13001,-12986,12993,12985,-13002,12995,12997,-12981,13002,12996,-12988,12975,12996,-12999,13003,12987,-12998,13004,12994,-12989,12988,12998,-13005,12999,13005,-12990,12990,12989,-13001,12991,12982,-13001,12992,12991,-13007,12999,12993,-13008,12994,13008,-13002,12993,13001,-13008,12995,13009,-12998,13002,13010,-12997,13002,12987,-13004,12998,12996,-13011,13003,12997,-13012,13004,13008,-12995,13004,12998,-13013,13013,13005,-13000,13005,13014,-12990,12989,13014,-13001,12991,13000,-13015,13015,13006,-12992,12999,13007,-13014,13001,13008,-13017,13001,13016,-13008,13009,13011,-12998,13017,13010,-13003,13003,13018,-13003,12998,13010,-13013,13011,13019,-13004,13020,13008,-13005,13004,13012,-13021,13005,13013,-13022,13014,13005,-13016,13015,12991,-13015,13022,13013,-13008,13016,13008,-13024,13022,13007,-13017,13009,13024,-13012,13017,13012,-13011,13018,13017,-13003,13003,13019,-13019,13019,13011,-13026,13020,13023,-13009,13026,13020,-13013,13022,13021,-13014,13005,13021,-13016,13016,13023,-13028,13022,13016,-13028,13024,13025,-13012,13028,13012,-13018,13017,13018,-13030,13030,13018,-13020,13019,13025,-13032,13032,13023,-13021,13026,13032,-13021,13026,13012,-13034,13022,13034,-13022,13021,13035,-13016,13027,13023,-13037,13022,13027,-13035, +13024,13037,-13026,13028,13033,-13013,13017,13029,-13029,13030,13029,-13019,13019,13038,-13031,13031,13025,-13040,13038,13019,-13032,13032,13036,-13024,13026,13040,-13033,13026,13033,-13042,13042,13021,-13035,13035,13021,-13044,13027,13036,-13045,13027,13044,-13035,13039,13025,-13038,13045,13033,-13029,13045,13028,-13030,13029,13030,-13047,13030,13038,-13048,13038,13031,-13040,13048,13036,-13033,13026,13049,-13041,13040,13048,-13033,13050,13041,-13034,13026,13041,-13050,13042,13043,-13022,13051,13042,-13035,13052,13044,-13037,13044,13051,-13035,13039,13037,-13054,13045,13050,-13034,13029,13046,-13046,13054,13046,-13031,13038,13055,-13048,13030,13047,-13055,13038,13039,-13056,13048,13052,-13037,13056,13040,-13050,13048,13040,-13058,13058,13041,-13051,13049,13041,-13060,13051,13043,-13043,13052,13060,-13045,13060,13051,-13045,13039,13053,-13062,13045,13062,-13051,13045,13046,-13063,13054,13062,-13047,13055,13063,-13048,13054,13047,-13065,13039,13061,-13056,13048,13057,-13053,13056,13057,-13041,13056,13049,-13060,13058,13059,-13042,13050,13065,-13059,13051,13066,-13044,13067,13060,-13053,13051,13060,-13069,13069,13061,-13054,13050,13062,-13066,13062,13054,-13071,13061,13063,-13056,13071,13047,-13064,13064,13047,-13072,13054,13064,-13073,13067,13052,-13058,13057,13056,-13074,13056,13059,-13075,13059,13058,-13076,13076,13058,-13066,13066,13051,-13078,13067,13068,-13061,13051,13068,-13078,13078,13061,-13070,13069,13053,-13080,13062,13070,-13066,13070,13054,-13073,13078,13063,-13062,13080,13071,-13064,13064,13071,-13082,13072,13064,-13082,13057,13082,-13068,13073,13056,-13084,13073,13082,-13058,13059,13084,-13075,13056,13074,-13084,13076,13075,-13059,13059,13075,-13085,13065,13085,-13077,13068,13067,-13083,13077,13068,-13087,13069,13087,-13079,13088,13069,-13080,13070,13085,-13066,13070,13072,-13086,13080,13063,-13079,13089,13071,-13081,13089,13081,-13072,13072,13081,-13091,13073,13083,-13092,13073,13092,-13083,13093,13074,-13085,13093,13083,-13075,13094,13075,-13077,13095,13084,-13076,13090,13076,-13086,13092,13068,-13083, +13092,13086,-13069,13096,13077,-13087,13069,13088,-13088,13078,13087,-13098,13079,13098,-13089,13090,13085,-13073,13078,13097,-13081,13099,13089,-13081,13081,13089,-13101,13081,13100,-13091,13101,13091,-13084,13092,13073,-13092,13102,13093,-13085,13083,13093,-13104,13104,13075,-13095,13094,13076,-13091,13095,13102,-13085,13104,13095,-13076,13092,13105,-13087,13096,13106,-13078,13086,13105,-13097,13107,13087,-13089,13097,13087,-13109,13109,13088,-13099,13080,13097,-13111,13099,13100,-13090,13080,13110,-13100,13111,13090,-13101,13101,13112,-13092,13083,13103,-13102,13092,13091,-13106,13102,13113,-13094,13093,13113,-13104,13094,13114,-13105,13111,13094,-13091,13115,13102,-13096,13116,13095,-13105,13106,13096,-13118,13112,13096,-13106,13107,13108,-13088,13109,13107,-13089,13108,13110,-13098,13118,13109,-13099,13099,13119,-13101,13099,13110,-13120,13100,13119,-13112,13101,13120,-13113,13112,13105,-13092,13101,13103,-13121,13121,13113,-13103,13103,13113,-13123,13094,13123,-13115,13104,13114,-13125,13111,13123,-13095,13115,13121,-13103,13116,13115,-13096,13104,13124,-13117,13117,13096,-13113,13106,13117,-13126,13108,13107,-13127,13109,13127,-13108,13108,13128,-13111,13118,13129,-13110,13128,13119,-13111,13128,13111,-13120,13112,13120,-13118,13130,13120,-13104,13121,13131,-13114,13131,13122,-13114,13103,13122,-13131,13123,13132,-13115,13114,13133,-13125,13111,13128,-13124,13115,13134,-13122,13115,13116,-13136,13116,13124,-13137,13125,13117,-13138,13126,13107,-13128,13108,13126,-13139,13127,13109,-13140,13128,13108,-13139,13140,13129,-13119,13129,13139,-13110,13120,13141,-13118,13130,13141,-13121,13121,13142,-13132,13122,13131,-13144,13130,13122,-13145,13123,13128,-13133,13132,13145,-13115,13114,13145,-13134,13133,13146,-13125,13134,13115,-13148,13121,13134,-13143,13116,13136,-13136,13115,13135,-13148,13148,13136,-13125,13137,13117,-13142,13137,13149,-13126,13150,13126,-13128,13138,13126,-13151,13127,13139,-13152,13128,13138,-13133,13152,13129,-13141,13140,13118,-13154,13154,13139,-13130,13144,13141,-13131,13155,13131,-13143, +13143,13131,-13157,13144,13122,-13144,13138,13145,-13133,13157,13133,-13146,13146,13133,-13158,13148,13124,-13147,13134,13147,-13159,13158,13142,-13135,13136,13159,-13136,13160,13147,-13136,13161,13136,-13149,13144,13137,-13142,13149,13137,-13163,13150,13127,-13152,13138,13150,-13146,13154,13151,-13140,13154,13129,-13153,13140,13163,-13153,13164,13153,-13119,13140,13153,-13164,13155,13156,-13132,13158,13155,-13143,13143,13156,-13166,13144,13143,-13167,13157,13145,-13151,13167,13146,-13158,13168,13148,-13147,13158,13147,-13170,13136,13170,-13160,13159,13160,-13136,13160,13169,-13148,13161,13170,-13137,13161,13148,-13172,13144,13166,-13138,13162,13137,-13173,13150,13151,-13158,13151,13154,-13168,13154,13152,-13174,13174,13152,-13164,13164,13175,-13154,13174,13163,-13154,13156,13155,-13166,13155,13158,-13177,13165,13166,-13144,13173,13146,-13168,13167,13157,-13152,13168,13171,-13149,13168,13146,-13174,13177,13158,-13170,13159,13170,-13179,13179,13160,-13160,13169,13160,-13180,13180,13170,-13162,13161,13171,-13182,13166,13172,-13138,13182,13162,-13173,13173,13167,-13155,13183,13173,-13153,13183,13152,-13175,13175,13164,-13185,13175,13174,-13154,13165,13155,-13186,13177,13176,-13159,13155,13176,-13187,13165,13187,-13167,13168,13183,-13172,13183,13168,-13174,13177,13169,-13189,13180,13178,-13171,13178,13189,-13160,13189,13179,-13160,13190,13169,-13180,13180,13161,-13182,13183,13181,-13172,13172,13166,-13188,13191,13182,-13173,13183,13174,-13193,13175,13184,-13194,13175,13192,-13175,13185,13155,-13187,13165,13185,-13195,13176,13177,-13196,13176,13195,-13187,13187,13165,-13197,13190,13188,-13170,13177,13188,-13198,13180,13198,-13179,13178,13198,-13190,13189,13199,-13180,13179,13199,-13191,13181,13200,-13181,13183,13192,-13182,13191,13172,-13188,13182,13191,-13202,13202,13193,-13185,13175,13193,-13193,13194,13185,-13187,13165,13194,-13204,13195,13177,-13205,13205,13186,-13196,13165,13203,-13197,13191,13187,-13197,13206,13188,-13191,13207,13197,-13189,13197,13204,-13178,13180,13200,-13199,13208,13189,-13199,13209,13199,-13190, +13210,13190,-13200,13200,13181,-13193,13201,13191,-13212,13202,13212,-13194,13200,13192,-13194,13205,13194,-13187,13194,13213,-13204,13195,13204,-13215,13195,13214,-13206,13196,13203,-13214,13196,13215,-13192,13206,13207,-13189,13190,13216,-13207,13197,13207,-13218,13197,13214,-13205,13212,13198,-13201,13189,13208,-13210,13208,13198,-13219,13219,13199,-13210,13190,13210,-13217,13210,13199,-13220,13215,13211,-13192,13212,13202,-13219,13212,13200,-13194,13205,13220,-13195,13213,13194,-13221,13205,13214,-13222,13196,13213,-13216,13207,13206,-13223,13206,13216,-13223,13207,13223,-13218,13214,13197,-13218,13212,13218,-13199,13208,13224,-13210,13218,13225,-13209,13219,13209,-13227,13216,13210,-13228,13219,13228,-13211,13211,13215,-13230,13218,13202,-13226,13230,13220,-13206,13213,13220,-13232,13221,13214,-13233,13221,13230,-13206,13233,13215,-13214,13207,13222,-13235,13235,13222,-13217,13207,13234,-13224,13236,13217,-13224,13214,13217,-13233,13208,13225,-13225,13226,13209,-13225,13237,13219,-13227,13210,13228,-13228,13235,13216,-13228,13219,13237,-13229,13238,13229,-13216,13230,13239,-13221,13231,13220,-13241,13233,13213,-13232,13241,13221,-13233,13242,13230,-13222,13215,13233,-13244,13244,13234,-13223,13235,13245,-13223,13223,13234,-13247,13236,13232,-13218,13246,13236,-13224,13227,13228,-13248,13235,13227,-13248,13229,13238,-13249,13238,13215,-13244,13242,13239,-13231,13239,13240,-13221,13243,13231,-13241,13243,13233,-13232,13241,13242,-13222,13249,13241,-13233,13244,13246,-13235,13250,13244,-13223,13235,13251,-13246,13245,13250,-13223,13236,13249,-13233,13252,13236,-13247,13235,13247,-13254,13254,13248,-13239,13255,13238,-13244,13239,13242,-13257,13257,13240,-13240,13257,13243,-13241,13241,13256,-13243,13258,13241,-13250,13244,13259,-13247,13244,13250,-13261,13253,13251,-13236,13245,13251,-13251,13249,13236,-13253,13259,13252,-13247,13248,13254,-13262,13255,13254,-13239,13255,13243,-13263,13256,13257,-13240,13257,13262,-13244,13241,13263,-13257,13241,13258,-13264,13249,13252,-13259,13259,13244,-13261,13260,13250,-13265, +13265,13252,-13260,13254,13255,-13262,13266,13255,-13263,13267,13257,-13257,13262,13257,-13268,13268,13256,-13264,13258,13269,-13264,13252,13270,-13259,13271,13259,-13261,13264,13272,-13261,13265,13273,-13253,13259,13271,-13266,13255,13266,-13262,13266,13262,-13275,13268,13267,-13257,13275,13262,-13268,13263,13276,-13269,13258,13270,-13270,13263,13269,-13277,13273,13270,-13253,13271,13260,-13273,13277,13272,-13265,13273,13265,-13279,13271,13278,-13266,13274,13262,-13276,13268,13279,-13268,13275,13267,-13280,13268,13276,-13281,13270,13281,-13270,13269,13281,-13277,13273,13281,-13271,13272,13278,-13272,13278,13282,-13274,13280,13279,-13269,13283,13280,-13277,13283,13276,-13282,13282,13281,-13274,13278,13272,-13285,13278,13285,-13283,13283,13286,-13281,13283,13281,-13283,13285,13278,-13285,13282,13285,-13288,13283,13288,-13287,13283,13282,-13289,13282,13287,-13289,13289,13290,-13292,13292,13291,-13291,13291,13293,-13290,13294,13291,-13293,13290,13295,-13293,13291,13296,-13294,13293,13297,-13290,13294,13296,-13292,13298,13294,-13293,13298,13292,-13296,13299,13293,-13297,13293,13299,-13298,13294,13300,-13297,13301,13294,-13299,13298,13295,-13303,13296,13303,-13300,13297,13299,-13305,13301,13300,-13295,13296,13300,-13306,13306,13301,-13299,13302,13295,-13308,13298,13302,-13307,13296,13305,-13304,13308,13299,-13304,13304,13299,-13309,13300,13301,-13310,13309,13305,-13301,13306,13310,-13302,13302,13307,-13312,13302,13311,-13307,13303,13305,-13313,13303,13313,-13309,13314,13304,-13309,13309,13301,-13311,13309,13315,-13306,13306,13311,-13311,13316,13311,-13308,13317,13312,-13306,13303,13312,-13314,13313,13318,-13309,13314,13319,-13305,13320,13314,-13309,13321,13309,-13311,13315,13309,-13323,13323,13305,-13316,13311,13324,-13311,13311,13316,-13325,13317,13325,-13313,13317,13305,-13324,13312,13325,-13314,13313,13326,-13319,13308,13318,-13328,13314,13328,-13320,13320,13328,-13315,13308,13327,-13321,13321,13329,-13310,13321,13310,-13325,13322,13309,-13330,13315,13322,-13331,13323,13315,-13331,13331,13324,-13317,13317,13332,-13326, +13317,13323,-13333,13326,13313,-13326,13318,13326,-13334,13318,13333,-13328,13319,13328,-13335,13328,13320,-13336,13320,13327,-13337,13329,13321,-13338,13331,13321,-13325,13329,13338,-13323,13330,13322,-13340,13330,13340,-13324,13341,13331,-13317,13342,13325,-13333,13343,13332,-13324,13326,13325,-13343,13344,13333,-13327,13345,13327,-13334,13334,13328,-13347,13320,13336,-13336,13328,13335,-13347,13345,13336,-13328,13337,13321,-13332,13329,13337,-13348,13338,13329,-13348,13348,13322,-13339,13348,13339,-13323,13330,13339,-13350,13330,13350,-13341,13340,13351,-13324,13341,13352,-13332,13342,13332,-13344,13343,13323,-13352,13353,13326,-13343,13344,13354,-13334,13344,13326,-13354,13354,13345,-13334,13334,13346,-13356,13336,13356,-13336,13335,13357,-13347,13336,13345,-13357,13337,13331,-13353,13337,13358,-13348,13338,13347,-13360,13360,13348,-13339,13348,13361,-13340,13361,13349,-13340,13350,13330,-13350,13350,13362,-13341,13340,13362,-13352,13343,13363,-13343,13364,13343,-13352,13353,13342,-13364,13354,13344,-13366,13366,13344,-13354,13354,13356,-13346,13357,13355,-13347,13356,13367,-13336,13367,13357,-13336,13358,13337,-13353,13359,13347,-13359,13359,13368,-13339,13360,13369,-13349,13360,13338,-13369,13361,13348,-13370,13361,13370,-13350,13370,13350,-13350,13362,13350,-13372,13362,13372,-13352,13343,13364,-13364,13364,13351,-13373,13363,13373,-13354,13344,13366,-13366,13374,13354,-13366,13366,13353,-13374,13375,13356,-13355,13376,13355,-13358,13367,13356,-13376,13367,13377,-13358,13369,13360,-13379,13379,13360,-13369,13361,13369,-13381,13380,13370,-13362,13370,13381,-13351,13371,13350,-13382,13362,13371,-13383,13362,13382,-13373,13364,13373,-13364,13372,13383,-13365,13384,13365,-13367,13374,13375,-13355,13374,13365,-13386,13373,13386,-13367,13376,13387,-13356,13376,13357,-13378,13388,13367,-13376,13389,13377,-13368,13379,13378,-13361,13390,13369,-13379,13391,13380,-13370,13380,13392,-13371,13381,13370,-13393,13371,13381,-13394,13393,13382,-13372,13394,13372,-13383,13364,13395,-13374,13383,13372,-13395,13364,13383,-13396, +13384,13396,-13366,13384,13366,-13398,13374,13398,-13376,13365,13396,-13386,13399,13374,-13386,13386,13373,-13401,13397,13366,-13387,13387,13376,-13402,13376,13377,-13402,13388,13389,-13368,13388,13375,-13399,13402,13377,-13390,13391,13369,-13391,13391,13403,-13381,13403,13392,-13381,13381,13392,-13405,13393,13381,-13406,9421,13382,-13394,9421,13394,-13383,13395,13400,-13374,13394,13406,-13384,13407,13395,-13384,13384,13408,-13397,13408,13384,-13398,13399,13398,-13375,13396,13409,-13386,13410,13399,-13386,13400,13411,-13387,13397,13386,-13412,13402,13401,-13378,13412,13389,-13389,13413,13388,-13399,13402,13389,-13415,13415,13391,-13391,13416,13403,-13392,13417,13392,-13404,13417,13404,-13393,13404,13418,-13382,13405,13381,-13419,9437,13393,-13406,9421,13393,-9438,13394,9421,-9403,13407,13400,-13396,13406,13394,-9403,13407,13383,-13407,13408,13419,-13397,13408,13397,-13421,13413,13398,-13400,13396,13421,-13410,13422,13385,-13410,13410,13413,-13400,13385,13423,-13411,13400,13424,-13412,13397,13411,-13421,13425,13401,-13403,13412,13414,-13390,13426,13412,-13389,13388,13413,-13427,13402,13414,-13428,13415,13416,-13392,13416,13428,-13404,13417,13403,-13429,13417,13429,-13405,13430,13418,-13405,13405,13418,-9456,9437,13405,-9456,13407,13424,-13401,9402,13431,-13407,13432,13407,-13407,13433,13419,-13409,13421,13396,-13420,13420,13433,-13409,13421,13434,-13410,13422,13423,-13386,13422,13409,-13435,13413,13410,-13436,13436,13410,-13424,13424,13437,-13412,13437,13420,-13412,13425,13402,-13428,13414,13412,-13439,13426,13438,-13413,13439,13426,-13414,13414,13440,-13428,13441,13416,-13416,13442,13428,-13417,13417,13428,-13444,13417,13443,-13430,13404,13429,-13431,13430,9455,-13419,13407,13432,-13425,13432,13406,-13432,13444,13421,-13420,13420,13437,-13434,13444,13434,-13422,13436,13423,-13423,13445,13422,-13435,13410,13446,-13436,13413,13435,-13448,13410,13436,-13449,13424,13432,-13438,13414,13438,-13441,13439,13438,-13427,13439,13413,-13448,13449,13427,-13441,13441,13442,-13417,13442,13443,-13429,13450,13429,-13444,13451,13430, +-13430,13430,9469,-9456,13444,13419,-13453,13445,13434,-13445,13422,13453,-13437,13445,13453,-13423,13410,13448,-13447,13454,13435,-13447,13454,13447,-13436,13436,13455,-13449,13456,13440,-13439,13439,13457,-13439,13439,13447,-13459,13459,13449,-13441,13460,13442,-13442,13443,13442,-13462,13450,13451,-13430,13462,13450,-13444,9469,13430,-13452,13444,13452,-13464,13444,13463,-13446,13453,13464,-13437,13445,13465,-13454,13466,13446,-13449,13467,13454,-13447,13447,13454,-13469,13469,13455,-13437,13455,13466,-13449,13459,13440,-13457,13456,13438,-13458,13457,13439,-13459,13447,13468,-13459,13449,13459,-13471,13442,13460,-13462,13443,13461,-13463,13471,13451,-13451,13462,13472,-13451,13471,9469,-13452,13473,13463,-13453,13463,13473,-13446,13453,13465,-13465,13469,13436,-13465,13445,13473,-13466,13466,13467,-13447,13467,13474,-13455,13468,13454,-13475,13475,13455,-13470,13466,13455,-13477,13456,13457,-13460,13457,13458,-13478,13458,13468,-13479,13459,13479,-13471,13460,13480,-13462,13462,13461,-13482,13471,13450,-13473,9538,13472,-13463,13471,9493,-9470,13482,13464,-13466,13482,13469,-13465,13483,13465,-13474,13467,13466,-13485,13467,13485,-13475,13468,13474,-13487,13487,13455,-13476,13475,13469,-13483,13476,13455,-13488,13484,13466,-13477,13457,13477,-13460,13477,13458,-13479,13486,13478,-13469,13459,13477,-13480,13488,13470,-13480,13461,13480,-13482,13462,13481,-13490,13471,13472,-9494,13472,9538,-9494,13462,13489,-9539,13482,13465,-13491,13490,13465,-13484,13484,13491,-13468,13491,13485,-13468,13485,13492,-13475,13486,13474,-13493,13475,13493,-13488,13475,13482,-13495,13487,13495,-13477,13484,13476,-13497,13477,13478,-13498,13478,13486,-13499,13497,13479,-13478,13497,13488,-13480,13480,13499,-13482,13489,13481,-9550,9538,13489,-9550,13500,13482,-13491,13500,13490,-13484,13496,13491,-13485,13491,13501,-13486,13492,13485,-13503,13486,13492,-13504,13475,13494,-13494,13487,13493,-13496,13482,13500,-13495,13476,13495,-13505,13505,13496,-13477,13478,13498,-13498,13503,13498,-13487,13497,13506,-13489,13499,9567,-13482,9549, +13481,-9568,13507,13491,-13497,13508,13501,-13492,13502,13485,-13502,13492,13502,-13504,13509,13493,-13495,13510,13495,-13494,13504,13495,-13511,13505,13476,-13505,13505,13511,-13497,13497,13498,-13507,13503,13512,-13499,13513,13488,-13507,13507,13508,-13492,13511,13507,-13497,13508,13514,-13502,13502,13501,-13516,13502,13515,-13504,13510,13493,-13510,13510,13516,-13505,13505,13504,-13518,13511,13505,-13519,13512,13506,-13499,13503,13515,-13513,13512,13513,-13507,13508,13507,-13520,13511,13520,-13508,13519,13514,-13509,13501,13514,-13516,13510,13509,-13522,13510,13521,-13517,13504,13516,-13518,13505,13517,-13523,13518,13505,-13524,13511,13518,-13525,13512,13515,-13526,13512,13525,-13514,13520,13519,-13508,13520,13511,-13525,13519,13526,-13515,13526,13515,-13515,13527,13521,-13510,13528,13516,-13522,13517,13516,-13530,13522,13517,-13531,13522,13523,-13506,13518,13523,-13532,13532,13524,-13519,13526,13525,-13516,13513,13525,-13534,13520,13534,-13520,13520,13524,-13536,13526,13519,-13535,13527,13528,-13522,13516,13528,-13537,13516,13536,-13530,13517,13529,-13538,13530,13517,-13538,13522,13530,-13539,13522,13539,-13524,13523,13539,-13532,13531,13532,-13519,13532,13535,-13525,13526,13540,-13526,13525,13541,-13534,13534,13520,-13536,13526,13534,-13541,13528,13527,-13543,13543,13536,-13529,13536,13544,-13530,13537,13529,-13546,13530,13537,-13547,13547,13538,-13531,13539,13522,-13539,13548,13531,-13540,13531,13549,-13533,13549,13535,-13533,13525,13540,-13542,13534,13535,-13541,13543,13528,-13543,13543,13550,-13537,13536,13550,-13545,13545,13529,-13545,13537,13545,-13552,13537,13551,-13547,13552,13530,-13547,13547,13553,-13539,13547,13530,-13553,13539,13538,-13554,13549,13531,-13549,13553,13548,-13540,13535,13549,-13541,13554,13541,-13541,13550,7109,-13545,7076,13545,-13545,13551,13545,-7005,13555,13546,-13552,13556,13552,-13547,13547,13557,-13554,13547,13552,-13559,13549,13548,-13560,13553,13559,-13549,13549,13560,-13541,13554,13540,-13561,7109,13550,-7151,7109,7076,-13545,7004,13545,-7077,7004,6967,-13552,13555,13556,-13547, +13555,13551,-6968,13552,13556,-13559,13558,13557,-13548,13559,13553,-13558,13559,13560,-13550,13561,13554,-13561,13555,13562,-13557,6964,13555,-6968,13562,13558,-13557,13558,13563,-13558,13563,13559,-13558,13559,13561,-13561,13562,13555,-6965,13562,13564,-13559,13563,13558,-13565,13563,13561,-13560,6883,13562,-6965,6883,13564,-13563,13564,13565,-13564,13563,13565,-13562,6883,6884,-13565,13564,6922,-13566,13565,13566,-13562,6922,13564,-6885,6922,6966,-13566,13567,13566,-13566,6966,13567,-13566,13566,13567,-13569,6966,13568,-13568,13568,13569,-13567,13568,6966,-4560,13569,13568,-4560,13570,13571,-13573,13570,13573,-13572,13570,13572,-13575,13570,13575,-13574,13574,13572,-13577,13577,13575,-13571,13575,13578,-13574,13579,13575,-13578,13578,13575,-13581,13578,13581,-13574,13581,13582,-13574,13583,13584,-13586,13584,13586,-13586,13580,13575,-13580,13580,13587,-13579,13578,13588,-13582,13589,13582,-13582,13590,13582,-13592,13592,13593,-2496,13586,13594,-13596,13583,13590,-13592,13583,13596,-13585,13584,13597,-13587,13580,13598,-13588,13587,13588,-13579,13588,13589,-13582,13589,13591,-13583,13592,13599,-13601,13593,13592,-13602,13602,2495,-13594,13599,13595,-13595,13597,13594,-13587,13583,13591,-13597,13584,13596,-13604,13584,13603,-13598,13604,13587,-13599,13587,13605,-13589,13588,13606,-13590,13596,13591,-13590,13599,13594,-13601,13592,13600,-13602,13593,13601,-13608,2495,13602,-2453,13608,13602,-13594,13597,13600,-13595,13609,13603,-13597,13610,13597,-13604,13604,13605,-13588,13605,13611,-13589,13588,13611,-13607,13612,13589,-13607,13596,13589,-13610,13610,13601,-13601,13601,13613,-13608,13607,13608,-13594,13608,2368,-13603,13610,13600,-13598,13609,13614,-13604,13610,13603,-13615,13615,13605,-13605,13605,13616,-13612,13606,13611,-13618,13609,13589,-13613,13617,13612,-13607,13610,13614,-13602,13618,13613,-13602,13607,13613,-13620,13608,13607,-13621,2367,13602,-2369,13608,2284,-2369,13614,13609,-13622,13616,13605,-13616,13622,13615,-13605,13616,13617,-13612,13609,13612,-13622,13617,13623,-13613,13618,13601,-13615,13624, +13613,-13619,13619,13613,-13626,13607,13619,-13627,13627,13620,-13608,13620,13628,-13609,2284,13608,-13629,13614,13621,-13619,13616,13615,-13630,13615,13622,-13631,13623,13617,-13617,13621,13612,-13624,13624,13625,-13614,13624,13618,-13624,13619,13625,-13632,13626,13619,-13633,13626,13633,-13608,13627,2285,-13621,13627,13607,-13634,13620,2242,-13629,2284,13628,-2243,13621,13623,-13619,13629,13615,-13631,13623,13616,-13630,13630,13622,-13635,13635,13625,-13625,13623,13629,-13625,13635,13631,-13626,13619,13631,-13633,13626,13632,-13637,13633,13626,-13637,13627,2203,-2286,2285,2242,-13621,13627,13633,-2175,13629,13630,-13625,13637,13634,-13623,13630,13634,-13625,13624,13634,-13636,13638,13631,-13636,13631,13639,-13633,13636,13632,-13641,13633,13636,-2173,2174,2203,-13628,2174,13633,-2174,13641,13642,-13644,13644,13642,-13646,13635,13634,-13638,13646,13637,-13623,13631,13638,-13640,13635,13647,-13639,13632,13639,-13649,13640,13632,-13649,13636,13640,-2256,2213,2172,-13637,13633,2172,-2174,13643,13642,-13650,13644,13649,-13643,13645,13650,-13645,13635,13637,-13652,13646,13652,-13638,13653,13639,-13639,13635,13651,-13648,13647,13654,-13639,13648,13639,-13656,13640,13648,-2299,2298,2255,-13641,13636,2255,-2214,13656,13650,-13646,13649,13644,-13658,13644,13650,-13659,13652,13651,-13638,13659,13652,-13647,13639,13653,-13661,13653,13638,-13662,13647,13651,-13663,13647,13663,-13655,13654,13661,-13639,13660,13655,-13640,13648,13655,-2299,13650,13656,-13665,13657,13644,-13666,13650,13666,-13659,13667,13644,-13659,13652,13668,-13652,13652,13659,-13669,13653,13661,-13661,13662,13651,-13670,13647,13662,-13664,13670,13654,-13664,13654,13670,-13662,13660,13671,-13656,2298,13655,-13672,13672,13664,-13657,13650,13664,-13674,13667,13665,-13645,13650,13673,-13667,13667,13658,-13667,13651,13668,-13670,13674,13668,-13660,13661,13675,-13661,13662,13669,-13677,13676,13663,-13663,13663,13677,-13671,13670,13675,-13662,13660,13678,-13672,13671,2291,-2299,13679,13664,-13673,13680,13673,-13665,13681,13665,-13668,13682,13666,-13674,13683,13667,-13667, +13684,13669,-13669,13684,13668,-13675,13685,13674,-13660,13660,13675,-13687,13687,13676,-13670,13676,13688,-13664,13677,13663,-13690,13670,13677,-13691,13670,13691,-13676,13678,13660,-13687,13671,13678,-13693,2291,13671,-2293,13680,13664,-13680,13693,13673,-13681,13694,13681,-13668,13683,13666,-13683,13693,13682,-13674,13667,13683,-13696,13669,13684,-13688,13696,13684,-13675,13697,13674,-13686,13685,13659,-13699,13699,13686,-13676,13687,13700,-13677,13700,13688,-13677,13688,13689,-13664,13677,13689,-13702,13677,13702,-13691,13691,13670,-13691,13675,13691,-13704,13704,13678,-13687,13705,13692,-13679,13671,13692,-2293,13706,13693,-13681,13694,13667,-13696,13707,13683,-13683,13682,13693,-13709,13707,13695,-13684,13695,13687,-13685,13709,13684,-13697,13696,13674,-13698,13710,13686,-13700,13699,13675,-13712,13700,13687,-13713,13688,13700,-13714,13688,13714,-13690,13701,13689,-13715,13701,13715,-13678,13677,13715,-13703,13702,13716,-13691,13690,13703,-13692,13675,13703,-13718,13678,13704,-13706,13710,13704,-13687,13705,2293,-13693,2292,13692,-2294,13718,13693,-13707,13695,13709,-13695,13682,13708,-13708,13719,13708,-13694,13707,13720,-13696,13695,13720,-13688,13709,13695,-13685,13721,13710,-13700,13717,13711,-13676,13711,13721,-13700,13712,13687,-13721,13700,13712,-13723,13723,13713,-13701,13713,13714,-13689,13701,13714,-13725,13701,13725,-13716,13702,13715,-13727,13726,13716,-13703,13727,13690,-13717,13703,13690,-13729,13717,13703,-13730,13705,13704,-13731,13710,13730,-13705,13705,13730,-2294,13719,13693,-13719,13708,13731,-13708,13708,13719,-13732,13707,13731,-13721,13721,13730,-13711,13717,13732,-13712,13711,13733,-13722,13712,13720,-13732,13731,13722,-13713,13723,13700,-13723,13723,13734,-13714,13713,13734,-13715,13734,13724,-13715,13725,13701,-13725,13726,13715,-13726,13716,13726,-13736,13736,13690,-13728,13716,13737,-13728,13728,13690,-13737,13728,13738,-13704,13729,13703,-13739,13732,13717,-13730,13730,2333,-2294,13739,13731,-13720,13721,13740,-13731,13732,13733,-13712,13741,13721,-13734,13731,13742,-13723,13723, +13722,-13744,13734,13723,-13745,13734,13745,-13725,13725,13724,-13746,13726,13725,-13747,13726,13746,-13736,13735,13747,-13717,13727,13748,-13737,13716,13747,-13738,13727,13737,-13749,13749,13728,-13737,13728,13750,-13739,13729,13738,-13752,13752,13732,-13730,13740,2333,-13731,13739,13742,-13732,13740,13721,-13742,13733,13732,-13754,13741,13733,-2377,13754,13722,-13743,13743,13722,-13756,13744,13723,-13744,13746,13725,-13746,13747,13735,-13747,13749,13736,-13749,13756,13737,-13748,13756,13748,-13738,13728,13749,-13751,13757,13738,-13751,13758,13751,-13739,13759,13729,-13752,13760,13732,-13753,13752,13729,-13760,13740,2334,-2334,13740,13741,-2335,13732,13760,-13754,13733,13753,-2377,2376,2334,-13742,13755,13722,-13755,13761,13749,-13749,13762,13748,-13757,13750,13749,-13762,13738,13757,-13759,13763,13757,-13751,13751,13758,-13765,13751,13765,-13760,13760,13752,-13767,13752,13759,-13768,13753,13760,-13769,13753,13768,-2377,13769,13761,-13749,13769,13748,-13763,13770,13750,-13762,13771,13758,-13758,13757,13763,-13773,13763,13750,-13771,13771,13764,-13759,13764,13765,-13752,13759,13765,-13774,13767,13766,-13753,13760,13766,-13775,13767,13759,-13774,13768,13760,-13775,13768,2412,-2377,13771,13757,-13776,13775,13757,-13773,13764,13771,-13777,13777,13765,-13765,13777,13773,-13766,13767,13778,-13767,13774,13766,-13779,13767,13773,-13780,13768,13774,-2413,13771,13775,-13781,13775,13772,-13782,13776,13771,-13783,13783,13764,-13777,13764,13783,-13778,13777,13784,-13774,13785,13778,-13768,13774,13778,-2505,13779,13773,-13787,13779,13785,-13768,13774,2504,-2413,13780,13775,-13788,13782,13771,-13781,13775,13781,-13789,13776,13782,-13790,13776,13790,-13784,13777,13783,-13792,13784,13777,-13793,13786,13773,-13785,13785,13793,-13779,2504,13778,-13794,13786,13794,-13780,13794,13785,-13780,13775,13795,-13788,13796,13780,-13788,13797,13782,-13781,1690,13788,-13782,13775,13788,-13796,13797,13789,-13783,13798,13776,-13790,13790,13776,-13799,13799,13783,-13791,13799,13791,-13784,13791,13800,-13778,13777,13800,-13793,13792,13801,-13785,13802, +13786,-13785,13794,13793,-13786,2504,13793,-2548,13794,13786,-13804,1680,13787,-13796,13797,13780,-13797,13796,13787,-1681,1690,1667,-13789,1667,13795,-13789,13797,13804,-13790,13798,13789,-13805,13790,13798,-13806,13806,13799,-13791,13791,13799,-13808,13800,13791,-13809,13809,13792,-13801,13792,13810,-13802,13801,13802,-13785,13786,13802,-13812,13793,13794,-13813,13793,13812,-2548,13803,13786,-13812,13794,13803,-13813,1680,13795,-1690,13796,13813,-13798,1680,1699,-13797,1667,1689,-13796,13813,13804,-13798,13804,13814,-13799,13798,13814,-13806,13806,13790,-13806,13806,13815,-13800,13815,13807,-13800,13808,13791,-13808,13800,13808,-13810,13816,13792,-13810,13810,13792,-13818,13818,13801,-13811,13801,13811,-13803,2591,2547,-13813,13819,13803,-13812,13812,13803,-13821,13796,1699,-13814,13813,1709,-13805,13804,1709,-13815,13814,1703,-13806,13805,13821,-13807,13815,13806,-13822,13815,13822,-13808,13808,13807,-13824,13809,13808,-13825,13825,13792,-13817,13816,13809,-13827,13817,13792,-13826,13817,13827,-13811,13818,13828,-13802,13818,13810,-13830,13830,13811,-13802,13812,13820,-2592,13819,13820,-13804,13830,13819,-13812,1699,1709,-13814,1709,1704,-13815,13814,1704,-1704,13805,1703,-13822,13821,1708,-13816,13815,1708,-13823,13831,13807,-13823,13831,13823,-13808,13823,13824,-13809,13809,13824,-13827,13816,13832,-13826,13833,13816,-13827,13817,13825,-13835,13834,13827,-13818,13810,13827,-13830,13828,13818,-13836,13801,13828,-13831,13829,13835,-13819,13819,2591,-13821,13819,13830,-13837,1703,1698,-13822,13821,1698,-1709,1712,13822,-1709,13822,13823,-13832,1717,13824,-13824,1716,13826,-13825,13816,13833,-13833,13832,13834,-13826,1714,13833,-13827,13834,2983,-13828,13837,13829,-13828,13828,13835,-13838,13828,13838,-13831,13829,13837,-13836,2591,13819,-2676,13838,13836,-13831,13836,2675,-13820,1715,13822,-1713,13822,1715,-13824,1716,13824,-1718,1715,1717,-13824,1714,13826,-1717,13839,13832,-13834,13839,13834,-13833,13833,1714,-3118,13839,2983,-13835,2889,13827,-2984,13837,13827,-2890,13837,13838,-13829,13838,2757,-13837,2757,2675, +-13837,13839,13833,-3118,13839,3117,-2984,13837,2889,-2851,13838,13837,-2851,2757,13838,-2851,2452,13602,-2368,13840,13841,-13843,13841,13843,-13845,13842,13841,-13846,13846,13840,-13843,13843,13847,-13845,13841,13844,-13846,13842,13845,-13849,13846,13842,-13849,13849,13843,-13851,13849,13847,-13844,13847,13845,-13845,13847,13848,-13846,13846,13848,-13852,13852,13851,-13854,13854,13849,-13851,13855,13847,-13850,13850,13856,-13855,13857,13848,-13848,13848,13853,-13852,13858,13852,-13854,13858,13859,-13853,13854,13855,-13850,13855,13857,-13848,13860,13854,-13857,13861,13848,-13858,13862,13853,-13849,13862,13858,-13854,13863,13859,-13865,13859,13858,-13866,13860,13855,-13855,13866,13857,-13856,13867,13860,-13857,13861,13868,-13849,13866,13861,-13858,13848,13868,-13863,13862,13869,-13859,13859,13865,-13865,13858,13870,-13866,13860,13866,-13856,13860,13867,-13872,13869,13862,-13869,13869,13870,-13859,13872,13864,-13866,13865,13870,-13874,13860,13871,-13867,13869,13868,-13875,13870,13869,-13875,13865,13875,-13873,13873,13870,-13877,13875,13865,-13874,13870,13874,-13878,13878,13872,-13876,13879,13876,-13871,13873,13876,-13880,13875,13873,-13881,13881,13870,-13878,13878,13875,-13881,13881,13879,-13871,13873,13879,-13881,13881,13877,-13883,13881,13883,-13880,13879,13884,-13881,13881,13882,-13886,13881,13885,-13884,13886,13879,-13884,13884,13879,-13887,13887,13883,-13886,13886,13883,-13889,13884,13886,-13890,13890,13883,-13888,13890,13888,-13884,13888,13891,-13887,13886,13891,-13890,13892,13888,-13891,13888,13893,-13892,13891,13894,-13890,13892,13893,-13889,13891,13893,-13895,13892,13895,-13894,13896,13894,-13894,13892,13897,-13896,13893,13895,-13897,13896,13898,-13895,13899,13895,-13898,13895,13900,-13897,13896,13900,-13899,13898,13901,-13895,13899,13902,-13896,13900,13895,-13904,13904,13898,-13901,13905,13901,-13899,13903,13895,-13903,13905,13898,-13905,13905,13906,-13902,13907,13901,-13907,13892,13890,-13909,5042,9012,-9052,9012,5042,-5022,9012,5021,-8977,8976,5021,-4965,8976,4964,-8931,4963,8930,-4965,8930,4963,-8920,4917, +8919,-4964,8919,4917,-4920,8919,4919,-8890,4919,8901,-8890,4919,4873,-8902,4894,8901,-4874,8901,4894,-8908,8907,4894,-4872,13909,9135,-13911,9135,13909,-9095,9177,13910,-9136,13909,13910,-13912,13912,9094,-13910,13913,13910,-9178,13913,13911,-13911,5146,13909,-13912,9051,9094,-13913,5145,13912,-13910,9218,13913,-9178,13913,5173,-13912,5145,13909,-5147,5146,13911,-5148,9051,13912,-5128,5145,5127,-13913,13914,13913,-9219,13913,5195,-5174,13911,5173,-5148,5077,9051,-5128,13914,5195,-13914,13914,9218,-5234,9051,5077,-5043,13914,5233,-5196,13118,7484,-7561,7484,13118,-13099,7484,13098,-7414,13079,7413,-13099,7413,13079,-7336,7335,13079,-7147,7070,7146,-13080,13053,7070,-13080,7070,13053,-13916,13053,13037,-13916,13915,6996,-7071,13024,13915,-13038,13915,13916,-6997,13916,13915,-13025,13916,6952,-6997,13916,13024,-13010,13916,13917,-6953,12995,13916,-13010,13916,12995,-13918,6952,13917,-6955,12995,12986,-13918,13918,6954,-13918,12974,13917,-12987,13919,6954,-13919,13918,13917,-12975,6999,6954,-13920,13919,13918,-12957,12974,12956,-13919,6999,13919,-13921,12951,13919,-12957,13920,13919,-12952,6999,13920,-6957,12937,13920,-12952,13920,13921,-6957,13920,12937,-13922,6956,13921,-6956,12937,12923,-13922,6957,6955,-13922,12923,6957,-13922,6957,12923,-13923,12902,13922,-12924,6957,13922,-6875,12873,13922,-12903,6874,13922,-6835,12873,6834,-13923,12873,6796,-6835,12873,6875,-6797,6875,12873,-12835,12834,6836,-6876,6836,12834,-6753,13923,9075,-13925,9075,13923,-9097,9075,9076,-13925,13509,13923,-13925,9096,13923,-13926,13924,9076,-13927,13923,13509,-13926,13527,13509,-13925,9096,13925,-13928,9067,13926,-9077,13924,13926,-13528,13509,13494,-13926,13500,13927,-13926,13927,9160,-9097,9067,13928,-13927,13542,13527,-13927,13500,13925,-13495,13927,13500,-13484,13483,9160,-13928,13928,9067,-9026,13928,13542,-13927,9160,13483,-13930,9025,13930,-13929,13928,13543,-13543,13483,13473,-13930,9199,9160,-13930,13930,9025,-13932,13928,13930,-13551,13550,13543,-13929,13473,13452,-13930,13452,9199,-13930,8974,13931,-9026,13930,13931,-7150,13930, +7150,-13551,9199,13452,-9240,8974,7225,-13932,13931,7185,-7150,13930,7149,-7151,9239,13452,-13933,8989,7225,-8975,7225,7185,-13932,13452,13419,-13933,13932,9262,-9240,8989,7188,-7226,13932,13419,-13434,13932,13433,-9263,8973,7188,-8990,9305,9262,-13434,7188,8973,-7266,9305,13433,-13438,9305,13437,-9330,13432,9329,-13438,13432,9330,-9330,13431,9330,-13433,9330,13431,-9378,9377,13431,-9403,5272,13289,-13934,13289,13297,-13934,5272,13933,-5247,13933,13297,-13935,13933,13934,-5247,13297,13304,-13935,5232,5246,-13935,13935,13934,-13305,5232,13934,-13936,13319,13935,-13305,5232,13935,-13937,13319,13936,-13936,5232,13936,-5205,13936,13319,-13938,13936,13938,-5205,13319,13334,-13938,13936,13937,-13939,5171,5204,-13939,13939,13937,-13335,13937,13939,-13939,5171,13938,-13941,13355,13939,-13335,13939,13940,-13939,5171,13940,-5122,13939,13355,-13388,13941,13940,-13940,13941,5121,-13941,13939,13387,-13942,5069,5121,-13942,13387,13401,-13942,13942,5069,-13942,13425,13941,-13402,5069,13942,-5031,13942,13941,-13426,13942,13943,-5031,13425,13427,-13943,13942,13449,-13944,5030,13943,-4992,13449,13942,-13428,13449,13470,-13944,4951,4991,-13944,13470,4951,-13944,13488,4951,-13471,13488,4901,-4952,13513,4901,-13489,13513,4855,-4902,4855,13513,-13945,13513,13533,-13945,4808,4855,-13945,13533,4725,-13945,4767,4808,-13945,13533,4666,-4726,4725,4767,-13945,4666,13533,-13542,4666,13541,-13946,13541,13554,-13946,4666,13945,-4629,13946,13945,-13555,13946,4628,-13946,13561,13946,-13555,4610,4628,-13947,13566,13946,-13562,13566,4610,-13947,13569,4610,-13567,4610,13569,-4560,13947,5233,-9219,5233,13947,-13949,13947,9218,-9237,9236,13948,-13948,5233,13948,-5248,9281,13948,-9237,5285,5247,-13949,9281,5285,-13949,9327,5285,-9282,9327,5324,-5286,5324,9327,-9401,9400,5364,-5325,5364,9400,-13950,13949,9400,-9420,5364,13949,-5408,9419,13950,-13950,5407,13949,-5442,13951,13950,-9420,13950,5441,-13950,13951,13952,-13951,9454,13951,-9420,5442,5441,-13951,13953,13952,-13952,5442,13950,-13953,13951,9454,-13955,13952,13953,-5451,13953,13951,-13955,5442,13952, +-5431,9454,9468,-13955,5460,5450,-13954,13952,5450,-5431,13955,13953,-13955,13956,13954,-9469,13953,13955,-5461,13956,13955,-13955,13957,13956,-9469,5460,13955,-5468,13955,13956,-5469,13956,13957,-5469,13958,13957,-9469,13955,5468,-5468,5461,5468,-13958,13959,13957,-13959,13958,9468,-9454,5469,5461,-13958,13959,5469,-13958,13960,13959,-13959,9453,9492,-13959,5469,13959,-5471,13959,13960,-5466,13960,13958,-9493,5465,5470,-13960,13960,13961,-5466,9492,13962,-13961,13960,13962,-13962,5465,13961,-5456,9492,9503,-13963,13963,13961,-13963,5455,13961,-13965,9503,13963,-13963,13964,13961,-13964,5455,13964,-5455,13965,13963,-9504,13963,13966,-13965,13964,13967,-5455,13963,13965,-13967,13965,9503,-9517,13964,13966,-13968,5456,5454,-13968,13965,13968,-13967,13965,9516,-13970,13970,13967,-13967,13970,5456,-13968,13965,13969,-13969,13968,13970,-13967,9537,13969,-9517,5456,13970,-13972,13968,13969,-13973,13973,13970,-13969,9537,13974,-13970,13973,13971,-13971,5456,13971,-5450,13972,13969,-13975,13973,13968,-13973,9537,9548,-13975,13975,13971,-13974,13976,5449,-13972,13977,13972,-13975,13973,13972,-13976,13978,13974,-9549,13976,13971,-13976,5449,13976,-13980,13977,13975,-13973,13977,13974,-13981,13980,13974,-13979,13978,9548,-9559,13979,13976,-13976,5449,13979,-5447,13975,13977,-13982,13977,13980,-13982,13978,13982,-13981,13978,9558,-13984,13979,13975,-13982,13979,13984,-5447,13981,13980,-13986,13983,13982,-13979,13985,13980,-13983,13983,9558,-9558,13979,13981,-13987,13979,13986,-13985,5446,13984,-5448,13981,13985,-13983,13983,13987,-13983,13988,13986,-13982,13986,13989,-13985,13984,13989,-5448,13988,13981,-13983,13987,13988,-13983,13986,13988,-13990,13987,13989,-13989,13983,9557,-13991,13983,13990,-13988,13991,13990,-9558,13989,5473,-5448,13987,13990,-13993,13990,13991,-13993,13991,9557,-9568,13989,13987,-5474,13993,13987,-13993,13993,13992,-13992,13994,13991,-9568,13987,13995,-5474,13993,13995,-13988,13993,13991,-13995,13994,9567,-13500,5473,13995,-5465,13993,13996,-13996,13993,13994,-13997,13994,13499,-13998,13995,13998,-5465, +13996,13998,-13996,13994,13997,-13997,13499,13999,-13998,13998,5453,-5465,14000,13998,-13997,14000,13996,-13998,13480,13999,-13500,13997,13999,-14002,14002,5453,-13999,14000,14002,-13999,13997,14001,-14001,14003,13999,-13481,14001,13999,-14005,5472,5453,-14003,14002,14000,-14006,14000,14001,-14007,14003,14004,-14000,14003,13480,-13461,14006,14001,-14005,14002,14005,-5473,14006,14005,-14001,14003,14007,-14005,14008,14003,-13461,14006,14004,-14008,14005,14009,-5473,14006,14007,-14006,14010,14007,-14004,14003,14008,-14012,13460,13441,-14009,14005,14007,-14010,5472,14009,-5464,14010,14009,-14008,14011,14010,-14004,14011,14008,-14013,14008,13441,-14014,14009,14010,-5464,5471,14010,-14012,14008,14013,-14013,14011,14012,-14015,13441,13415,-14014,5463,14010,-5472,14014,5471,-14012,14013,14015,-14013,14014,14012,-14016,14016,14013,-13416,14014,5466,-5472,14016,14015,-14014,14014,14015,-5467,13415,13390,-14017,14015,14016,-14018,5458,5466,-14016,14016,13390,-14019,14017,14016,-14019,14015,14017,-5459,13390,13378,-14019,14017,14018,-14020,14017,5440,-5459,13378,14020,-14019,14020,14019,-14019,14017,14019,-5441,14020,13378,-14022,14020,5427,-14020,5440,14019,-5428,13379,14021,-13379,14020,14021,-5427,5426,5427,-14021,13379,14022,-14022,5426,14021,-14023,13368,14022,-13380,5426,14022,-5429,13368,14023,-14023,14023,5428,-14023,13359,14023,-13369,5428,14023,-5403,14024,14023,-13360,14023,5387,-5403,14024,5387,-14024,13359,13358,-14025,5405,5387,-14025,14024,13358,-13353,13352,5405,-14025,5405,13352,-5377,5376,13352,-14026,13341,14025,-13353,5376,14025,-5345,14025,13341,-14027,5346,5344,-14026,13341,14027,-14027,14025,14026,-5347,13341,13316,-14028,5334,14026,-14028,5334,5346,-14027,14027,13316,-13308,5334,14027,-5318,13307,5317,-14028,5317,13307,-5294,13307,13295,-5294,13290,5293,-13296,5272,5293,-13291,13289,5272,-13291,7561,14028,-14030,7561,7449,-14029,14029,14028,-14031,7640,7561,-14030,14028,7449,-14032,14031,14030,-14029,14029,14030,-14033,7640,14029,-14034,14034,14031,-7450,14031,14035,-14031,14032,14030,-14037,14033,14029, +-14033,14033,14037,-7641,14038,14031,-14035,14034,7449,-7339,14031,14039,-14036,14030,14035,-14037,14040,14032,-14037,14033,14032,-14042,14033,14042,-14038,7683,7640,-14038,14038,14039,-14032,14038,14034,-14044,7338,14043,-14035,14044,14035,-14040,14035,14044,-14037,14040,14041,-14033,14040,14036,-14045,14033,14041,-14043,14037,14042,-14046,14037,14046,-7684,14047,14039,-14039,14048,14038,-14044,14049,14043,-7339,14044,14039,-14051,14040,9461,-14042,14040,14044,-9429,14041,9482,-14043,14042,14051,-14046,14046,14037,-14046,7723,7683,-14047,14047,14050,-14040,14048,14047,-14039,14052,14048,-14044,14052,14043,-14050,14049,7338,-7264,14044,14050,-9429,9428,9461,-14041,9482,14041,-9462,14051,14042,-9483,14046,14045,-14052,7723,14046,-7842,14050,14047,-9393,14048,14053,-14048,14048,14052,-14054,14049,14054,-14053,14049,7263,-7225,9428,14050,-9393,9497,14051,-9483,14051,7841,-14047,9369,9392,-14048,14053,9369,-14048,14052,14055,-14054,7224,14054,-14050,14052,14054,-14056,9528,14051,-9498,9528,7841,-14052,14053,14056,-9370,14053,14055,-14057,7224,14057,-14055,14058,14055,-14055,7841,9528,-7881,9320,9369,-14057,14059,14056,-14056,7224,7181,-14058,14058,14054,-14058,14058,14059,-14056,14059,9320,-14057,7181,7145,-14058,14060,14058,-14058,14061,14059,-14059,14061,9320,-14060,14060,14057,-7146,14061,14058,-14061,14061,14062,-9321,7145,14063,-14061,14060,14064,-14062,14061,14064,-14063,9276,9320,-14063,14063,7145,-7070,14060,14063,-14065,14064,14065,-14063,14066,9276,-14063,14063,7069,-14068,14064,14063,-14068,14064,14067,-14066,14062,14065,-14067,14066,14068,-9277,14069,14067,-7070,14067,14070,-14066,14065,14071,-14067,14066,14071,-14069,9276,14068,-9233,14067,14069,-14071,7068,14069,-7070,14065,14070,-14072,14072,14068,-14072,14073,9232,-14069,14074,14070,-14070,14069,7068,-14075,14070,14072,-14072,14073,14068,-14073,14073,14075,-9233,14076,14070,-14075,7000,14074,-7069,14076,14072,-14071,14072,14076,-14074,14073,14077,-14076,9232,14075,-9174,14078,14076,-14075,14078,14074,-7001,14079,14073,-14077,14073,14079,-14078,14077,14080, +-14076,14081,9173,-14076,14079,14076,-14079,6959,14078,-7001,14082,14077,-14080,14077,14082,-14081,14081,14075,-14081,14081,9090,-9174,14082,14079,-14079,6959,14082,-14079,14083,14080,-14083,14081,14080,-14085,14081,14085,-9091,14086,14082,-6960,14080,14083,-14085,14083,14082,-14088,14084,14085,-14082,9090,14085,-9049,14086,14087,-14083,6921,14086,-6960,14083,14088,-14085,14087,14088,-14084,14089,14085,-14085,14085,14090,-9049,14086,6921,-14088,14091,14084,-14089,14087,14092,-14089,14085,14089,-14091,14089,14084,-14094,14090,9026,-9049,14087,6921,-14093,14091,14093,-14085,14091,14088,-14093,14094,14090,-14090,14094,14089,-14094,14090,14095,-9027,6921,6841,-14093,14091,14096,-14094,14091,14092,-6878,14094,14097,-14091,6919,14094,-14094,14090,14097,-14096,9010,9026,-14096,6877,14092,-6842,14091,14098,-14097,6919,14093,-14097,6877,14098,-14092,14094,7033,-14098,6919,7033,-14095,7107,14095,-14098,7152,9010,-14096,6755,14096,-14099,6919,14096,-6719,6877,6797,-14099,14097,7033,-7108,7107,7152,-14096,9010,7152,-7228,6718,14096,-6756,6797,6755,-14099,14099,14100,-13286,14101,14100,-14100,13284,14099,-13286,9593,14102,-14104,14102,14100,-14104,14101,14103,-14101,14104,14101,-14100,13284,14104,-14100,14105,9593,-14104,14106,14103,-14102,14104,14106,-14102,14104,13284,-14108,9593,14105,-8524,14106,14105,-14104,14108,14106,-14105,13284,14109,-14108,14104,14107,-14111,14108,8523,-14106,14108,14105,-14107,14104,14110,-14109,13272,14109,-13285,14111,14107,-14110,14110,14107,-14113,8523,14108,-8498,14108,14110,-14113,14113,14109,-13273,14111,14112,-14108,14111,14109,-14115,8497,14108,-14113,14113,14115,-14110,14113,13272,-13278,14112,14111,-14117,14115,14114,-14110,14111,14114,-14117,14117,8497,-14113,14118,14115,-14114,14118,14113,-13278,14112,14116,-14120,14114,14115,-14121,14121,14116,-14115,14117,8420,-8498,14112,14119,-14118,14118,14122,-14116,14118,13277,-14124,14119,14116,-14125,14120,14115,-14123,14114,14120,-14126,14124,14116,-14122,14121,14114,-14126,14117,14126,-8421,14117,14119,-14125,14118,14127,-14123,14128,14123,-13278, +14123,14127,-14119,14120,14122,-14130,14130,14125,-14121,14131,14124,-14122,14131,14121,-14126,14117,14124,-14127,8298,8420,-14127,14127,14132,-14123,14133,14123,-14129,13277,13264,-14129,14123,14134,-14128,14132,14129,-14123,14129,14135,-14121,14130,14136,-14126,14130,14120,-14136,14131,14126,-14125,14131,14125,-14138,14126,14138,-8299,14127,14139,-14133,14134,14123,-14134,14140,14133,-14129,14140,14128,-13265,14134,14139,-14128,14132,14141,-14130,14135,14129,-14142,14142,14136,-14131,14137,14125,-14137,14130,14135,-14143,14131,14138,-14127,14131,14137,-14139,14138,8167,-8299,14132,14139,-14142,14134,14133,-14144,14144,14133,-14141,13264,14145,-14141,14139,14134,-14147,14142,14135,-14142,14137,14136,-14143,14138,14137,-8168,14147,14141,-14140,14144,14143,-14134,14143,14146,-14135,14144,14140,-14149,13264,13250,-14146,14149,14140,-14146,14147,14139,-14147,14142,14141,-8124,14142,8123,-14138,8123,8167,-14138,8123,14141,-14148,14144,14150,-14144,14146,14143,-14151,14149,14148,-14141,14144,14148,-14152,13250,14152,-14146,14152,14149,-14146,14147,14146,-7960,8123,14147,-8043,14150,14144,-14152,14146,14150,-7885,14149,14153,-14149,14153,14151,-14149,14152,13250,-13252,14152,14154,-14150,7959,14146,-7885,14147,7959,-8043,14150,14151,-14156,7884,14150,-14156,14149,14154,-14154,14153,14155,-14152,14152,13251,-14155,7846,7884,-14156,14156,14153,-14155,14155,14153,-14157,14157,14154,-13252,7846,14155,-14157,14158,14156,-14155,14157,14158,-14155,13253,14157,-13252,14158,7846,-14157,14158,14157,-14160,14160,14157,-13254,14158,14161,-7847,14160,14159,-14158,14158,14159,-14162,14160,13253,-14163,7846,14161,-7884,14163,14159,-14161,14159,14163,-14162,13247,14162,-13254,14160,14162,-14164,14163,7883,-14162,13247,14164,-14163,14163,14162,-14166,14166,7883,-14164,13247,13228,-14165,14167,14162,-14165,14167,14165,-14163,14163,14165,-14167,14166,7882,-7884,14164,13228,-13238,14164,13237,-14168,14167,14168,-14166,14165,14169,-14167,14166,7843,-7883,14167,13237,-14171,14167,14170,-14169,14165,14168,-14170,14166,14169,-7844,13237,13226, +-14171,14171,14168,-14171,14171,14169,-14169,14169,14172,-7844,13226,13224,-14171,14170,13224,-14172,14171,14173,-14170,14169,14173,-14173,7843,14172,-14175,13224,13225,-14172,14171,13225,-14174,13202,14172,-14174,14174,14172,-13185,7843,14174,-7765,13202,14173,-13226,13184,14172,-13203,14174,13184,-13165,14175,7764,-14175,14174,13164,-14176,14175,7639,-7765,13164,13118,-14176,14175,7560,-7640,14175,13118,-7561,14176,14177,-8828,8828,14176,-8828,8828,8829,-14177,14176,14178,-14178,14179,14178,-14177,14176,8829,-14180,14180,14177,-14179,8829,14181,-14180,8830,14181,-8830,14180,14178,-14183,14183,14182,-14179,14183,14178,-14185,14179,14184,-14179,14179,14181,-14185,14182,14185,-14181,8848,14181,-8831,14184,14181,-14187,8848,14186,-14182,14183,14184,-14188,14184,14188,-14188,14188,14184,-14190,14184,14186,-14190,14182,14183,-14191,14190,14183,-14188,14182,14191,-14186,14190,14191,-14183,14185,14191,-14193,14193,14186,-8849,8838,14193,-8849,14186,14194,-14190,14193,14194,-14187,14188,14189,-14196,14189,14196,-14196,14189,14194,-14197,14188,14197,-14188,14195,14197,-14189,14190,14187,-14199,14197,14198,-14188,14190,14199,-14192,14190,14198,-14200,14192,14191,-14201,14199,14200,-14192,14193,8838,-14202,8838,8847,-14202,14193,14201,-14195,14196,14194,-14203,14201,14203,-14195,14202,14194,-14204,14204,14195,-14197,14205,14204,-14197,14196,14202,-14207,14205,14196,-14207,14195,14207,-14198,14207,14195,-14209,14204,14208,-14196,14197,14207,-14199,14199,14198,-14210,14198,14207,-14210,14203,14201,-8848,8852,14203,-8848,14202,14203,-14211,8852,14210,-14204,14211,14206,-14203,14202,14210,-14213,14211,14202,-14213,14206,14213,-14206,14211,14214,-14207,14213,14206,-14216,14216,14206,-14215,14216,14215,-14207,14204,14205,-14218,14218,14217,-14206,14218,14205,-14214,14204,14217,-14209,14207,14208,-14220,14208,14220,-14220,14208,14221,-14221,14217,14221,-14209,14209,14207,-14223,14222,14207,-14220,8839,14210,-8853,8804,14212,-14211,8839,8804,-14211,14211,14212,-14215,8804,8768,-14213,14214,14212,-8740,8768,8739,-14213,14223,14216,-14215, +14223,14214,-8740,14216,14223,-14216,14213,14215,-14225,14215,14223,-14225,14225,14218,-14214,14225,14213,-14225,14226,14217,-14219,14227,14226,-14219,14227,14218,-14229,14225,14228,-14219,14217,14229,-14222,14217,14226,-14230,14221,14230,-14221,14221,14229,-14231,14219,14220,-14232,14231,14220,-14233,14232,14220,-14231,14222,14219,-14232,8739,8692,-14224,14224,14223,-14234,14233,14223,-8618,14223,8692,-8618,14225,14224,-14235,14234,14224,-14234,14225,14235,-14229,14225,14236,-14236,14234,14236,-14226,14228,14237,-14228,14238,14237,-14229,14238,14228,-14236,14227,14239,-14227,14240,14239,-14228,14240,14227,-14238,14239,14229,-14227,14241,14230,-14230,14239,14241,-14230,14242,14232,-14231,14242,14230,-14242,14233,8617,-8528,14234,14233,-8528,14234,8527,-14237,14243,14235,-14237,14243,14236,-8428,8527,8427,-14237,14238,14235,-14245,14245,14235,-14244,14244,14235,-14246,14238,14246,-14238,14238,14244,-14247,14247,14240,-14238,14247,14237,-14247,14240,14248,-14240,14240,14249,-14249,14249,14240,-14248,14248,14241,-14240,14250,14242,-14242,14248,14250,-14242,14242,14250,-14252,14243,8427,-14253,14245,14243,-14253,14244,14245,-14254,14254,14246,-14245,14253,14254,-14245,14255,14249,-14248,14255,14247,-14257,14257,14248,-14250,14255,14257,-14250,14257,14250,-14249,14251,14250,-14259,14257,14258,-14251,14255,14256,-14260,14256,14260,-14260,14260,14256,-14262,14255,14258,-14258,14262,14258,-14256,14262,14255,-14260,14258,14262,-14264,14264,14260,-14262,14260,14265,-14267,14266,14267,-14261,14260,14268,-14266,14259,14260,-14268,14260,14264,-14269,14262,14259,-14268,14262,14267,-14264,14263,14267,-14270,14270,14271,-14266,14266,14265,-14272,14270,14265,-14273,14265,14273,-14273,14268,14273,-14266,14266,14271,-14275,14266,14274,-14268,14274,14275,-14268,14276,14267,-14276,14269,14267,-14277,14273,14268,-14278,14271,14278,-14280,14279,14280,-14272,14271,14270,-14279,14271,14280,-14275,14273,14277,-14273,14281,14270,-14273,14281,14272,-14283,14282,14272,-14278,14283,14278,-14271,14283,14270,-14282,14274,14280,-14285,14285,14274, +-14285,14275,14274,-14286,14278,14286,-14280,14278,14287,-14287,14283,14287,-14279,14288,14279,-14287,14288,14289,-14280,14279,14289,-14281,14284,14280,-14290,14281,14282,-14291,14291,14283,-14282,14291,14281,-14293,14292,14281,-14294,14290,14293,-14282,14283,14291,-14288,14284,14289,-14295,14295,14288,-14287,14296,14295,-14287,14296,14286,-14288,14287,14297,-14297,14287,14291,-14298,14288,14295,-14299,14299,14288,-14299,14300,14288,-14300,14289,14288,-14301,14294,14289,-14301,14290,14301,-14294,14293,14302,-14292,14302,14293,-14304,14293,14291,-14293,14303,14293,-14305,14305,14304,-14294,14305,14293,-14302,14297,14291,-14307,14291,14302,-14307,14295,14296,-14308,14308,14307,-14297,14308,14296,-14298,14309,14310,-14296,14298,14295,-14311,14307,14309,-14296,14297,14306,-14309,14305,14301,-14312,14312,14306,-14303,14312,14302,-14304,14305,14313,-14305,14311,14313,-14306,14303,14304,-14315,14314,14304,-14316,14313,14315,-14305,14303,14316,-14313,14314,14316,-14304,14308,14306,-14318,14317,14306,-14313,14307,14308,-14319,14319,14318,-14309,14319,14308,-14321,14308,14317,-14321,14307,14318,-14310,14311,14321,-14314,14317,14312,-14323,14323,14322,-14313,14312,14316,-14324,14321,14315,-14314,14324,14315,-14326,14314,14315,-14325,14325,14315,-14327,14321,14326,-14316,14314,14327,-14317,14314,14324,-14328,14316,14328,-14324,14327,14328,-14317,14320,14317,-13857,13856,14317,-14323,14322,14323,-13868,13871,13867,-14324,13871,14323,-14330,14329,14323,-14329,14322,13867,-13857,14330,14325,-14327,13861,14325,-14332,13861,14327,-14326,14325,14330,-14332,14324,14325,-14328,13861,14329,-14328,14329,14328,-14328,14329,13861,-13867,14329,13866,-13872,13861,14332,-13869,13861,14331,-14333,14332,14331,-14334,14334,14333,-14332,14335,13868,-14333,14332,14333,-14336,14336,13868,-14336,13874,13868,-14337,14337,14333,-14335,14335,14333,-14338,14335,14338,-14337,14338,14335,-14340,14339,14335,-14338,14336,14338,-13875,14340,13877,-13875,14340,13874,-14339,14341,14339,-14338,14338,14339,-14342,14338,14342,-14341,13877,14340,-13883,14340,14343, +-13883,14343,14340,-14343,14344,13882,-14344,14345,14344,-14344,13885,13882,-14345,14346,14344,-14346,14347,13885,-14345,14347,14344,-14347,14347,13887,-13886,14348,13887,-14348,14349,14350,-14352,14349,14352,-14351,14353,14351,-14351,13288,14349,-14352,14349,14354,-14353,14352,14355,-14351,14356,14351,-14354,14353,14350,-14358,14349,13288,-14359,13288,14351,-13287,14349,14358,-14355,14352,14354,-14360,14352,9591,-14356,14357,14350,-14356,14356,13286,-14352,14353,14360,-14357,14361,14353,-14358,14358,13288,-13288,14358,14362,-14355,14354,14363,-14360,14352,14359,-9592,9591,9586,-14356,14357,14355,-9587,13280,13286,-14357,14353,14361,-14361,14364,14356,-14361,9587,14361,-14358,14358,13287,-14363,14354,14362,-14364,14365,14359,-14364,9591,14359,-9593,9586,9587,-14358,14364,13280,-14357,14366,14360,-14362,14364,14360,-14367,14361,9587,-9589,14362,13287,-13286,14367,14363,-14363,14365,9592,-14360,14367,14365,-14364,13280,14364,-14369,14361,9588,-14367,14364,14366,-14370,14362,13285,-14368,9592,14365,-9595,14370,14365,-14368,14371,14368,-14365,13280,14368,-13280,9588,14372,-14367,14366,14372,-14370,14371,14364,-14370,14100,14367,-13286,14365,14102,-9595,14365,14370,-14103,14100,14370,-14368,14368,14371,-13280,9588,9581,-14373,14373,14369,-14373,14374,14371,-14370,14102,9593,-9595,14100,14102,-14371,14374,13279,-14372,14372,9581,-14376,14373,14374,-14370,14372,14375,-14374,13275,13279,-14375,9581,9577,-14376,14374,14373,-14377,14373,14375,-14378,14374,14376,-13276,14375,9577,-14378,14378,14376,-14374,14378,14373,-14378,13275,14376,-13275,9577,9575,-14378,14379,14376,-14379,14379,14378,-14378,14376,14379,-13275,14377,9575,-14381,14377,14380,-14380,13266,13274,-14380,14381,14380,-9576,14379,14380,-14383,14379,14382,-13267,14383,14380,-14382,14381,9575,-9569,14382,14380,-14384,13261,13266,-14383,14384,14383,-14382,14384,14381,-9569,14383,13261,-14383,14385,14383,-14385,9561,14384,-9569,14385,13261,-14384,14386,14385,-14385,9561,9552,-14385,13261,14385,-13249,14387,14385,-14387,14386,14384,-9553,14388,13248,-14386,14387,14388, +-14386,14389,14387,-14387,9554,14386,-9553,14388,13229,-13249,14389,14388,-14388,14386,14390,-14390,14386,9554,-14391,14391,13229,-14389,14392,14388,-14390,14389,14390,-14394,14390,9554,-9561,14391,13211,-13230,14391,14388,-14393,14394,14392,-14390,14393,14390,-14396,14389,14393,-14395,14395,14390,-9561,13211,14391,-13202,14394,14391,-14393,14393,14395,-14397,14397,14394,-14394,14395,9560,-14399,14397,13201,-14392,14397,14391,-14395,14396,14395,-14400,14393,14396,-14398,9559,14398,-9561,14395,14398,-14400,14400,13201,-14398,14396,14399,-14402,14400,14397,-14397,14398,9559,-14403,14399,14398,-14403,13182,13201,-14401,14403,14401,-14400,14401,14400,-14397,9559,9539,-14403,14403,14399,-14403,14401,13182,-14401,14403,14404,-14402,14402,9539,-14406,14403,14402,-14407,14404,13182,-14402,14404,14403,-14408,9518,14405,-9540,14402,14405,-14409,14408,14406,-14403,14403,14406,-14408,13182,14404,-13163,14404,14407,-13163,14405,9518,-14410,14408,14405,-14411,14406,14408,-14412,14406,14411,-14408,14412,13162,-14408,9518,9494,-14410,14405,14409,-14411,14411,14408,-14411,14412,14407,-14412,13162,14412,-13150,14409,9494,-14414,14414,14410,-14410,14410,14415,-14412,14415,14412,-14412,14415,13149,-14413,14413,9494,-14417,14409,14413,-14415,14414,14415,-14411,14415,13125,-13150,9494,9470,-14417,14413,14416,-14418,14414,14413,-14418,14415,14414,-13126,14416,9470,-14419,14416,14418,-14418,14414,14417,-14420,14419,13125,-14415,14418,9470,-14421,14421,14417,-14419,14421,14419,-14418,14422,13125,-14420,9440,14420,-9471,14418,14420,-14424,14423,14421,-14419,14422,14419,-14422,14422,13106,-13126,14424,14420,-9441,14424,14423,-14421,14423,14422,-14422,14422,14425,-13107,14426,14424,-9441,14425,14423,-14425,14425,14422,-14424,13106,14425,-14428,14426,14428,-14425,9424,14426,-9441,14428,14425,-14425,14428,14427,-14426,13106,14427,-13078,14429,14428,-14427,14429,14426,-9425,14430,14427,-14429,13077,14427,-14431,14430,14428,-14430,14429,9424,-14432,14432,13077,-14431,14429,14431,-14431,14433,14431,-9425,14432,13066,-13078,14434,14432,-14431,14434, +14430,-14432,14433,14434,-14432,14433,9424,-9388,14432,14435,-13067,14435,14432,-14435,14436,14434,-14434,14433,9387,-14438,13066,14435,-14439,14436,14435,-14435,14439,14436,-14434,14437,9387,-9387,14433,14437,-14440,14440,14438,-14436,13066,14438,-13044,14440,14435,-14437,14440,14436,-14440,14441,14437,-9387,14442,14439,-14438,14443,14438,-14441,14438,14444,-13044,14442,14440,-14440,14441,14442,-14438,14445,14441,-9387,14438,14443,-14445,14443,14440,-14443,13035,13043,-14445,14441,14443,-14443,14445,14446,-14442,14445,9386,-9386,14443,14447,-14445,13035,14444,-14448,14443,14441,-14447,14445,14448,-14447,14445,9385,-14449,14443,14446,-14448,13015,13035,-14448,14448,14449,-14447,9364,14448,-9386,14446,14449,-14448,14450,13015,-14448,14449,14448,-14452,14448,9364,-14452,14450,14447,-14450,14450,13006,-13016,14449,14451,-14451,14451,9364,-14453,14450,14453,-13007,14450,14451,-14454,9341,14452,-9365,14451,14452,-14454,14454,13006,-14454,14455,14452,-9342,14455,14453,-14453,12992,13006,-14455,14454,14453,-14456,9341,9339,-14456,12984,12992,-14455,14456,14454,-14456,14456,14455,-9340,14456,12984,-14455,14456,9339,-14458,14458,12984,-14457,9270,14457,-9340,14458,14456,-14458,12972,12984,-14459,14457,9270,-14460,14457,14459,-14459,14458,14460,-12973,9270,14461,-14460,14458,14459,-14461,14462,12972,-14461,9270,9247,-14462,14463,14459,-14462,14460,14459,-14464,14462,12961,-12973,14463,14462,-14461,14464,14461,-9248,14464,14463,-14462,14465,12961,-14463,14463,14465,-14463,9247,14466,-14465,14463,14464,-14466,12960,12961,-14466,9247,9207,-14467,14464,14466,-14468,14467,14465,-14465,14467,12960,-14466,14468,14466,-9208,14467,14466,-14470,14470,12960,-14468,14468,14469,-14467,9207,9165,-14469,14470,14467,-14470,12946,12960,-14471,14471,14469,-14469,14468,9165,-14473,14471,14470,-14470,14470,12940,-12947,14468,14472,-14472,9206,14472,-9166,14473,14470,-14472,14470,14473,-12941,14473,14471,-14473,14472,9206,-14475,12927,12940,-14474,14474,14473,-14473,14474,9206,-14476,14474,12927,-14474,9188,14475,-9207,14474,14475,-14477,14476, +12927,-14475,9188,12921,-14476,14476,14475,-12926,14476,12925,-12928,9144,12921,-9189,12925,14475,-12922,12921,9144,-12906,9125,12905,-9145,9125,12904,-12906,9125,9108,-12905,9108,12894,-12905,9169,12894,-9109,9208,12894,-9170,12894,9208,-9168,14247,14246,-14478,14254,14477,-14247,14477,14478,-14248,14245,14252,-14480,8388,14252,-8428,14253,14245,-14480,14256,14247,-14479,14480,14477,-14255,14477,14480,-14479,14253,14481,-14255,14479,14252,-8389,14253,14479,-14483,14478,14483,-14257,14484,14282,-14278,14290,14282,-14485,14331,14330,-14486,14334,14331,-14486,14480,14254,-14482,14486,14478,-14481,14253,14487,-14482,14479,8388,-8388,14482,14479,-8388,14487,14253,-14483,14478,14488,-14484,14483,14261,-14257,14301,14290,-14490,14490,14268,-14265,14268,14491,-14278,14484,14277,-14492,14290,14484,-14490,14330,14326,-14493,14485,14330,-14494,14481,14494,-14481,14478,14486,-14489,14480,14495,-14487,14481,14487,-14495,14482,8387,-8427,14487,14482,-12142,14496,14483,-14489,14483,14497,-14262,14311,14301,-14490,14498,14264,-14262,14490,14491,-14269,14498,14490,-14265,14499,14484,-14492,14499,14489,-14485,14492,14326,-14501,14492,14493,-14331,14480,14494,-14496,14501,14488,-14487,14501,14486,-14496,14502,14494,-14488,8426,12141,-14483,12141,12048,-14488,14496,14503,-14484,14488,14504,-14497,14497,14483,-14504,14261,14497,-14499,14311,14489,-14506,14311,14505,-14322,14506,14491,-14491,14498,14507,-14491,14499,14491,-14507,14499,14508,-14490,14509,14326,-14322,14500,14326,-14510,14494,14510,-14496,14501,14504,-14489,14495,14511,-14502,14494,14502,-14511,14487,12048,-14503,14496,14512,-14504,14496,14504,-14514,14497,14503,-14515,14498,14497,-14516,14505,14489,-14509,14321,14505,-14517,14507,14506,-14491,14498,14515,-14508,14499,14506,-14518,14499,14517,-14509,14516,14509,-14322,14495,14510,-14512,14504,14501,-14519,14501,14511,-14520,14520,14510,-14503,11952,14502,-12049,14496,14521,-14513,14512,14514,-14504,14504,14522,-14514,14513,14521,-14497,14515,14497,-14515,14508,14523,-14506,14516,14505,-14524,14524,14506,-14508,14515,14525, +-14508,14506,14526,-14518,14517,14527,-14509,14509,14516,-14529,14529,14511,-14511,14501,14519,-14519,14504,14518,-14531,14511,14529,-14520,14529,14510,-14521,11853,14520,-14503,11853,14502,-11953,14521,14531,-14513,14514,14512,-14533,14504,14530,-14523,14533,14513,-14523,14513,14533,-14522,14515,14514,-14535,14508,14527,-14524,14528,14516,-14524,14506,14524,-14527,14525,14524,-14508,14525,14515,-14535,14526,14535,-14518,14527,14517,-14536,14519,14536,-14519,14536,14530,-14519,14529,14536,-14520,14520,11745,-14530,11853,11745,-14521,14521,14533,-14532,14512,14531,-14538,14538,14532,-14513,14539,14514,-14533,14530,14540,-14523,14533,14522,-14542,14539,14534,-14515,14528,14523,-14528,14524,14542,-14527,14525,14542,-14525,14525,14534,-14543,14535,14526,-14544,14536,14544,-14531,11745,14536,-14530,14531,14533,-14546,14546,14537,-14532,14512,14537,-14539,14538,14539,-14533,14530,14544,-14541,14547,14522,-14541,14547,14541,-14523,14545,14533,-14542,14534,14539,-14543,14542,14543,-14527,11575,14544,-14537,11745,11575,-14537,14545,14548,-14532,14537,14546,-14550,14546,14531,-14549,14538,14537,-14551,14538,14550,-14540,14540,14544,-11400,14547,14540,-14552,14547,14552,-14542,14545,14541,-14553,14542,14539,-14544,11575,11399,-14545,14545,14553,-14549,14546,14554,-14550,14537,14549,-14556,14546,14548,-14557,14537,14555,-14551,14539,14550,-14558,11399,14551,-14541,14547,14551,-14553,14552,14553,-14546,14548,14553,-14557,14554,14546,-14557,14554,14558,-14550,14559,14555,-14550,14550,14555,-14561,14557,14550,-14562,11399,11292,-14552,14552,14551,-11293,14552,11198,-14554,14553,14562,-14557,14554,14556,-14564,14554,14564,-14559,14565,14549,-14559,14559,14560,-14556,14565,14559,-14550,14550,14560,-14567,14561,14550,-14567,11292,11198,-14553,14553,11198,-14563,14563,14556,-14563,14563,14564,-14555,14567,14558,-14565,14558,14567,-14566,14568,14560,-14560,14569,14559,-14566,14566,14560,-14571,11198,11112,-14563,14563,14562,-11113,14563,11070,-14565,14567,14564,-11029,14571,14565,-14568,14560,14568,-14573,14568,14559,-14574,14573,14559, +-14570,14569,14565,-14572,14570,14560,-14573,11070,14563,-11113,11028,14564,-11071,11028,10992,-14568,14571,14567,-10993,14568,14574,-14573,14575,14568,-14574,14573,14569,-14577,14569,14571,-14577,14571,10992,-14578,14568,14575,-14575,14572,14574,-14579,14573,14579,-14576,14579,14573,-14577,14571,14577,-14577,10992,10911,-14578,14575,14580,-14575,14578,14574,-14582,14582,14575,-14580,14579,14576,-14584,14583,14576,-14578,14583,14577,-10912,14575,14582,-14581,14584,14574,-14581,14574,14584,-14582,14582,14579,-14586,14585,14579,-14584,10868,14583,-10912,14586,14580,-14583,14584,14580,-14587,14584,14587,-14582,14585,14588,-14583,14585,14583,-10869,14586,14582,-14589,14589,14584,-14587,14584,14589,-14588,14581,14587,-14591,14585,10867,-14589,10867,14585,-10869,14591,14586,-14589,14589,14586,-14593,14593,14587,-14590,14590,14587,-14595,14591,14588,-10868,14591,14592,-14587,14589,14592,-14596,14593,14594,-14588,14589,14595,-14594,14591,10867,-14597,14591,14596,-14593,14597,14595,-14593,14593,14598,-14595,14599,14593,-14596,10867,10790,-14597,14600,14592,-14597,14597,14601,-14596,14592,14600,-14598,14593,14599,-14599,14594,14598,-14603,14599,14595,-14602,14600,14596,-10791,14597,10754,-14602,14597,14600,-10754,14599,14603,-14599,14603,14602,-14599,14604,14594,-14603,14601,14605,-14600,10790,10753,-14601,10753,10754,-14598,10752,14601,-10755,14599,14605,-14604,14603,14606,-14603,14601,10752,-14606,14603,14605,-14608,14603,14607,-14607,14602,14606,-14609,14605,10752,-14610,14605,14609,-14608,14610,14606,-14608,14608,14606,-14612,10674,14609,-10753,14609,14612,-14608,14613,14606,-14611,14610,14607,-14613,14613,14611,-14607,10674,10673,-14610,14614,10065,-14616,14609,10673,-14613,14616,14613,-14611,14617,14610,-14613,14611,14613,-14619,10065,14614,-10119,10672,14612,-10674,14619,14613,-14617,14616,14610,-14618,14612,10672,-14618,14618,14613,-14621,10118,14614,-14622,14622,14613,-14620,14619,14616,-14624,14624,14616,-14618,10672,14624,-14618,14622,14620,-14614,14625,10118,-14622,14626,14622,-14620,14623,14616,-14625,14623,14627, +-14620,10638,14624,-10673,14622,14628,-14621,10118,14625,-14630,14630,14622,-14627,14626,14619,-14628,14623,14624,-10611,14623,14631,-14628,10610,14624,-10639,14622,14630,-14629,14632,14629,-14626,10141,10118,-14630,14630,14626,-14634,14633,14626,-14628,14631,14623,-10611,14633,14627,-14632,14634,14628,-14631,14635,14629,-14633,10141,14629,-14637,14633,14637,-14631,14631,10610,-10547,14633,14631,-10546,14634,14638,-14629,14634,14630,-14638,14635,14636,-14630,14636,10218,-10142,14633,14639,-14638,10546,10545,-14632,10545,14640,-14634,14638,14634,-14642,14634,14637,-14643,14641,14636,-14636,14636,14634,-10219,14639,14633,-14641,14639,14643,-14638,10545,10489,-14641,14641,14634,-14637,14642,14637,-14644,10218,14634,-14643,14639,14640,-10490,14639,14644,-14644,14643,14645,-14643,10218,14642,-10243,10489,14644,-14640,14643,14644,-14646,14642,14645,-10243,10489,10387,-14645,14646,14645,-14645,10242,14645,-10297,14646,14644,-10388,10296,14645,-14647,10387,10326,-14647,10296,14646,-10327,10296,10326,-10274,14647,14648,-2929,2928,2977,-14648,2928,14648,-2845,3112,14649,-2978,14649,14647,-2978,14650,14647,-14652,14649,14651,-14648,14647,14650,-14649,14650,14652,-14649,14652,2844,-14649,2844,14652,-2846,3157,14653,-3113,14654,3112,-14654,14649,3112,-14655,14649,14654,-14652,14650,14651,-14656,14656,14650,-14656,14650,14656,-14653,14657,14658,-14652,14659,14657,-14652,14658,14655,-14652,14659,14651,-14655,14660,14652,-14657,14652,14660,-14662,14652,14661,-2846,14662,2845,-14662,2795,2845,-14663,3251,14663,-3158,14664,3157,-14664,14653,3157,-14665,14653,14664,-14660,14654,14653,-14660,14658,14665,-14656,14665,14656,-14656,14666,14656,-14666,14660,14656,-14667,14657,14667,-14659,14667,14668,-14659,14665,14658,-14669,14659,14669,-14671,14670,14657,-14660,14659,14664,-14670,14670,14667,-14658,14660,14666,-14672,14660,14671,-14662,14662,14661,-14672,14662,14671,-14673,14662,14672,-2796,14673,2795,-14673,2798,2795,-14674,3302,14663,-3252,14674,14663,-3303,14674,14669,-14664,14664,14663,-14670,14665,14668,-14676,14676,14665,-14676,14666, +14665,-14677,14677,14666,-14677,14677,14678,-14667,14679,14666,-14679,14671,14666,-14681,14666,14679,-14682,14666,14681,-14681,14682,14667,-14671,14682,14683,-14668,14675,14667,-14684,14667,14675,-14669,14669,14684,-14671,14669,14674,-14685,14670,14685,-14683,14670,14684,-14686,14671,14680,-14673,14673,14672,-14681,14673,14680,-14687,14673,14686,-2799,14686,2797,-2799,3400,14687,-3303,14674,3302,-14688,14674,14687,-14689,14688,14684,-14675,14675,14683,-14690,14689,14690,-14676,14676,14675,-14691,14690,14691,-14677,14677,14676,-14692,14677,14691,-14679,14692,14678,-14692,14679,14678,-14693,14693,14681,-14680,14692,14694,-14680,14679,14695,-14694,14679,14694,-14696,14680,14681,-14697,14693,14696,-14682,14680,14696,-14687,14697,14682,-14686,14697,14698,-14683,14698,14683,-14683,14698,14699,-14684,14700,14683,-14700,14700,14689,-14684,14688,14685,-14685,14685,14701,-14698,14685,14702,-14702,14702,14685,-14689,14686,14696,-2798,2797,14696,-2754,14687,3400,-3447,14687,3446,-14703,14702,14688,-14688,14689,14700,-14704,14689,14703,-14705,14689,14705,-14691,14704,14706,-14690,14706,14705,-14690,14690,14705,-14692,14707,14691,-14706,14691,14707,-14693,14708,14692,-14708,14692,14708,-14695,14709,14694,-14709,14710,14694,-14710,14710,14695,-14695,14711,14693,-14696,14711,14695,-14713,14712,14695,-14711,14696,14693,-14714,14711,14713,-14694,14696,14713,-2754,14697,14701,-14715,14697,14714,-14716,14698,14697,-14716,14698,14715,-14717,14699,14698,-14717,14699,14716,-14718,14717,14718,-14700,14700,14699,-14719,14718,14703,-14701,14719,14714,-14702,14701,14720,-14720,14702,14720,-14702,14702,8795,-14721,14702,3446,-8796,2706,2753,-14714,3446,3507,-8796,14721,14703,-14719,14703,14722,-14705,14721,14723,-14704,14722,14703,-14724,14704,14722,-14707,14706,14724,-14706,14725,14706,-14723,14706,14725,-14725,14705,14724,-14708,14724,14708,-14708,14724,14726,-14709,14708,14726,-14728,14709,14708,-14728,14727,14728,-14710,14709,14728,-14711,14728,14729,-14711,14730,14712,-14711,14731,14710,-14730,14730,14710,-14733,14732,14710,-14732,14711, +14712,-14734,14712,14734,-14734,14712,14730,-14735,14713,14711,-14736,14736,14735,-14712,14736,14711,-14734,14713,14735,-2707,14737,14714,-14720,14737,14738,-14715,14715,14714,-14739,14715,14738,-14740,14716,14715,-14740,14716,14739,-14741,14716,14740,-14718,14717,14740,-14742,14717,14741,-14743,14717,14742,-14719,14721,14718,-14743,14743,14719,-14721,14743,14720,-8796,14744,14737,-14720,14744,14719,-14744,14743,8795,-8819,2706,14735,-2668,14721,14742,-14746,14746,14721,-14746,14723,14721,-14747,14723,14746,-14748,14747,14748,-14724,14722,14723,-14749,14725,14722,-14749,14749,14725,-14749,14750,14724,-14726,14751,14725,-14750,14750,14725,-14752,14750,14726,-14725,14750,14751,-14727,14752,14726,-14752,14753,14727,-14727,14752,14754,-14727,14753,14726,-14755,14755,14727,-14754,14727,14755,-14729,14756,14728,-14756,14728,14756,-14730,14756,14757,-14730,14731,14729,-14758,14732,14731,-14759,14757,14759,-14732,14759,14758,-14732,14760,14730,-14733,14760,14732,-14759,14761,14734,-14731,14762,14761,-14731,14762,14730,-14761,14763,14733,-14735,14761,14763,-14735,14736,14733,-14765,14763,14764,-14734,14736,2702,-14736,2702,14736,-2623,14736,14764,-2623,2667,14735,-2703,14737,14744,-14766,14737,14765,-14767,14766,14738,-14738,14767,14738,-14767,14767,14768,-14739,14768,14739,-14739,14768,14769,-14740,14739,14769,-14741,14740,14769,-14771,14770,14741,-14741,14770,14771,-14742,14745,14741,-14772,14742,14741,-14746,14744,14743,-8819,14744,8833,-14766,14744,8817,-8834,8818,8817,-14745,14745,14771,-14773,14772,14773,-14746,14746,14745,-14774,14747,14746,-14774,14747,14773,-14775,14747,14774,-14749,14774,14775,-14749,14749,14748,-14776,14776,14749,-14776,14751,14749,-14777,14752,14751,-14777,14776,14777,-14753,14752,14777,-14755,14754,14777,-14779,14754,14778,-14754,14755,14753,-14779,14756,14755,-14779,14778,14779,-14757,14779,14757,-14757,14779,14780,-14758,14757,14780,-14760,14781,14758,-14760,14759,14780,-14783,14781,14759,-14783,14783,14760,-14759,14783,14758,-14782,14762,14760,-14784,14761,14762,-14785,14784,14762,-14786,14762, +14783,-14786,14786,14763,-14762,14761,14784,-14787,14787,14764,-14764,14786,14787,-14764,2622,14764,-2664,14787,2663,-14765,14765,8833,-8835,14767,14788,-14769,14768,14788,-14790,14789,14769,-14769,14789,14790,-14770,14790,14771,-14770,14770,14769,-14772,14771,14790,-14792,14771,14791,-14793,14772,14771,-14793,14772,14792,-14794,14793,14773,-14773,14794,14773,-14794,14774,14773,-14795,14794,14795,-14775,14795,14796,-14775,14774,14796,-14776,14796,14797,-14776,14798,14775,-14798,14798,14776,-14776,14798,14799,-14777,14776,14799,-14801,14800,14801,-14777,14801,14777,-14777,14801,14802,-14778,14802,14778,-14778,14803,14778,-14803,14778,14803,-14780,14779,14803,-14781,14804,14780,-14804,14804,14782,-14781,14804,14805,-14783,14806,14781,-14783,14806,14782,-14806,14781,14807,-14784,14781,14808,-14808,14781,14806,-14809,14785,14783,-14810,14809,14783,-14811,14807,14810,-14784,14811,14784,-14786,14811,14785,-14813,14785,14809,-14813,14813,14786,-14785,14811,14813,-14785,14814,14787,-14787,14786,2582,-14815,14813,2582,-14787,2663,14787,-2621,2620,14787,-2622,14814,2621,-14788,14815,14792,-14792,14815,14793,-14793,14815,14816,-14794,14816,14794,-14794,14794,14816,-14818,14795,14794,-14818,14817,14818,-14796,14818,14819,-14796,14795,14819,-14821,14795,14820,-14797,14797,14796,-14821,13863,14797,-14821,13863,14821,-14798,14797,14821,-14799,14822,14798,-14822,14823,14798,-14823,14823,14799,-14799,14823,14824,-14800,14799,14824,-14801,14801,14800,-14825,14824,14825,-14802,14825,14802,-14802,14825,14826,-14803,14803,14802,-14827,14803,14826,-14805,14826,14827,-14805,14828,14804,-14828,14804,14828,-14806,14805,14828,-14830,14805,14829,-14807,14829,14808,-14807,14808,14830,-14808,14808,14831,-14831,14831,14808,-14830,14810,14807,-14833,13585,14807,-14831,13585,14832,-14808,14810,14832,-14810,14833,14812,-14810,14809,14832,-14835,14809,14834,-14834,14833,14811,-14813,14813,14811,-14836,14835,14811,-14837,14833,14836,-14812,2494,2582,-14814,2494,14813,-14836,2664,14814,-2583,2664,2621,-14815,13863,14820,-14820,14822,14837,-14824,14822, +14838,-14838,14837,14824,-14824,14837,14839,-14825,14839,14825,-14825,14840,14825,-14840,14825,14841,-14827,14840,14842,-14826,14825,14842,-14842,14841,14843,-14827,14827,14826,-14844,14827,14843,-13573,14827,13572,-13572,13571,14828,-14828,13571,14844,-14829,14829,14828,-14845,14829,14844,-14832,14845,14831,-14845,14831,13590,-14831,14831,14845,-13591,13583,13585,-14831,13590,13583,-14831,13586,14832,-13586,13595,14834,-14833,13586,13595,-14833,14833,14834,-14847,13595,14846,-14835,14833,14846,-14837,14835,14836,-2496,14836,13592,-2496,14846,13599,-14837,14836,13599,-13593,2495,2494,-14836,14837,14838,-14848,14837,14847,-14840,14840,14839,-14848,14840,14847,-14849,14840,14848,-14850,14840,14849,-14843,14843,14841,-14843,14849,14850,-14843,14851,14843,-14843,14852,14842,-14851,14851,14842,-14854,14854,14842,-14853,14853,14842,-14855,13572,14843,-14852,14851,14855,-13573,14856,13572,-14856,13576,13572,-14857,13571,13573,-14845,14845,14844,-13574,14845,13573,-13583,13590,14845,-13583,14846,13595,-13600,14852,14850,-14858,14858,14853,-14855,14851,14853,-14856,14859,14860,-14862,14860,14859,-14863,14863,14861,-14861,14864,14862,-14860,14860,14862,-14866,14861,14863,-14867,14863,14860,-14866,14867,14862,-14865,14865,14862,-14869,14866,14863,-14870,14870,14863,-14866,14867,14868,-14863,14871,14867,-14865,14865,14868,-14873,14863,14873,-14870,14863,14870,-14874,14874,14870,-14866,14868,14867,-14876,14876,14867,-14872,14868,14875,-14873,14874,14865,-14873,14873,14877,-14870,14878,14873,-14871,14879,14870,-14875,14876,14875,-14868,14880,14876,-14872,14881,14872,-14876,14874,14872,-14883,14873,14883,-14878,14873,14878,-14884,14878,14870,-14880,14879,14874,-14885,14885,14875,-14877,14880,14886,-14877,14881,14887,-14873,14888,14881,-14876,14882,14872,-14888,14874,14882,-14890,14883,14890,-14878,14891,14883,-14879,14879,14892,-14879,14874,14889,-14885,14879,14884,-14894,14888,14875,-14886,14885,14876,-14887,14880,14894,-14887,14895,14887,-14882,14896,14881,-14889,14895,14882,-14888,14882,14897,-14890,14883,14898,-14891,14877,14890, +-14900,14883,14891,-14899,14891,14878,-14893,14893,14892,-14880,14900,14884,-14890,14901,14893,-14885,14902,14888,-14886,14903,14885,-14887,14903,14886,-14895,14895,14881,-14897,14888,14904,-14897,14895,14905,-14883,14897,14882,-14907,14889,14897,-14901,14907,14890,-14899,14907,14899,-14891,14891,14908,-14899,14892,14909,-14892,14893,14910,-14893,14900,14911,-14885,14901,14912,-14894,14901,14884,-14912,14902,14904,-14889,14902,14885,-14904,14913,14903,-14895,14914,14895,-14897,14896,14904,-14916,14895,14916,-14906,14905,14906,-14883,14897,14906,-8835,14897,14911,-14901,14908,14907,-14899,14899,14907,-14193,14891,14917,-14909,14910,14909,-14893,14909,14918,-14892,14910,14893,-14920,14912,14901,-8791,14912,14919,-14894,14901,14911,-14921,14921,14904,-14903,14922,14902,-14904,14913,14922,-14904,14923,14913,-14895,14914,14916,-14896,14914,14896,-14925,14904,14925,-14916,14896,14915,-14925,14906,14905,-14917,14926,8834,-14907,14897,8834,-8833,14897,14927,-14912,14907,14908,-14186,14907,14185,-14193,14917,14891,-14919,14917,14180,-14909,14910,14928,-14910,14909,14928,-14919,14929,14910,-14920,8790,14901,-8792,14912,8790,-8725,14919,14912,-8744,14927,14920,-14912,14920,8791,-14902,14930,14904,-14922,14902,14922,-14922,14931,14922,-14914,14932,14913,-14924,14914,14933,-14917,14924,14934,-14915,14930,14925,-14905,14935,14915,-14926,14935,14924,-14916,14906,14916,-14937,14765,8834,-14927,14936,14926,-14907,8831,14897,-8833,8831,14927,-14898,14908,14180,-14186,14917,14918,-14938,14917,14177,-14181,14910,14929,-14929,14928,14937,-14919,14919,14938,-14930,8743,14912,-8725,14919,8743,-8790,8814,14920,-14928,8791,14920,-8745,14939,14930,-14922,14939,14921,-14923,14940,14922,-14932,14932,14931,-14914,14914,14934,-14934,14933,14936,-14917,14924,14941,-14935,14930,14942,-14926,14935,14925,-14944,14935,14941,-14925,14926,14944,-14766,14936,14945,-14927,8831,8814,-14928,14917,14937,-14178,14928,14929,-8812,14937,14928,-8813,8789,14938,-14920,8811,14929,-14939,8814,8744,-14921,14930,14939,-14947,14939,14922,-14941,14940,14931,-14933,14947, +14933,-14935,14933,14948,-14937,14949,14934,-14942,14942,14930,-14951,14943,14925,-14943,14943,14951,-14936,14935,14951,-14942,14926,14945,-14945,14944,14766,-14766,14948,14945,-14937,8827,14177,-14938,8812,14928,-8812,8827,14937,-8813,8789,8811,-14939,14952,14946,-14940,14930,14946,-14951,14939,14940,-14954,14940,14932,-14954,14933,14947,-14949,14947,14934,-14950,14949,14941,-14955,14942,14950,-14956,14943,14942,-14957,14943,14956,-14952,14941,14951,-14955,14945,14957,-14945,14944,14957,-14767,14948,14958,-14946,14952,14959,-14947,14939,14953,-14953,14960,14950,-14947,14961,14953,-14933,14947,14962,-14949,14947,14949,-14963,14949,14954,-14964,14950,14964,-14956,14942,14955,-14957,14965,14951,-14957,14966,14954,-14952,14945,14958,-14958,14766,14957,-14768,14948,14967,-14959,14968,14959,-14953,14959,14960,-14947,14969,14952,-14954,14960,14964,-14951,14969,14953,-14962,14962,14967,-14949,14949,14963,-14963,14963,14954,-14971,14955,14964,-14972,14972,14956,-14956,14965,14966,-14952,14956,14972,-14966,14970,14954,-14967,14958,14973,-14958,14767,14957,-14974,14974,14958,-14968,14968,14975,-14960,14968,14952,-14970,14960,14959,-14977,14977,14964,-14961,14978,14969,-14962,14967,14962,-14964,14970,14979,-14964,14977,14971,-14965,14955,14971,-14981,14955,14980,-14973,14966,14965,-14982,14965,14972,-14983,14966,14983,-14971,14974,14973,-14959,14767,14973,-14789,14967,14979,-14975,14984,14975,-14969,14959,14975,-14977,14968,14969,-14986,14960,14976,-14978,14985,14969,-14979,14967,14963,-14980,14970,14986,-14980,14971,14977,-14988,14971,14988,-14981,14980,14989,-14973,14965,14982,-14982,14990,14966,-14982,14972,14991,-14983,14983,14966,-14991,14986,14970,-14984,14973,14974,-14791,14973,14789,-14789,14979,14992,-14975,14984,14993,-14976,14968,14994,-14985,14975,14995,-14977,14996,14968,-14986,14976,14997,-14978,14998,14985,-14979,14992,14979,-14987,14987,14977,-14998,14971,14987,-14989,14988,14999,-14981,14999,14989,-14981,14972,14989,-14992,15000,14981,-14983,14990,14981,-15002,14991,15000,-14983,14983,14990,-15003,15002,14986, +-14984,14790,14974,-14993,14789,14973,-14791,14993,14984,-15004,14995,14975,-14994,14996,14994,-14969,14984,14994,-15005,14995,14997,-14977,14998,14996,-14986,14992,14986,-14816,14997,15005,-14988,15006,14988,-14988,14999,14988,-15008,14999,15008,-14990,14991,14989,-15009,15000,15001,-14982,15002,14990,-15002,14991,15009,-15001,14815,14986,-15003,14791,14790,-14993,15004,15003,-14985,15003,15010,-14994,14995,14993,-15011,14309,14994,-14997,15011,15004,-14995,14995,15012,-14998,14998,15013,-14997,14815,14791,-14993,14997,15012,-15006,15005,15006,-14988,15006,15007,-14989,14999,15007,-15015,15014,15008,-15000,14991,15008,-15010,15001,15000,-15010,15002,15001,-14817,15002,14816,-14816,15004,15015,-15004,15003,15015,-15011,14995,15010,-15013,14309,15016,-14995,14310,14309,-14997,15011,15017,-15005,15016,15011,-14995,14310,14996,-15014,15005,15012,-13841,15005,15018,-15007,15006,15019,-15008,15014,15007,-15021,15014,15021,-15009,15008,15022,-15010,15001,15009,-14817,15015,15004,-15018,15010,15015,-13842,15012,15010,-13842,15016,14309,-14319,15023,15017,-15012,15016,14319,-15012,14298,14310,-15014,15012,13841,-13841,15018,15005,-13841,15018,15019,-15007,15020,15007,-15020,15020,15024,-15015,15021,15014,-15025,15021,15022,-15009,14817,15009,-15023,15009,14817,-14817,15015,15017,-15026,13841,15015,-13844,15016,14318,-14320,15023,15025,-15018,15011,14319,-15024,15018,13840,-13847,15018,15026,-15020,15027,15020,-15020,15020,15028,-15025,14818,15021,-15025,15021,14818,-15023,15022,14818,-14818,15015,15025,-13844,15025,15023,-13851,14319,15029,-15024,15018,13846,-15027,15027,15019,-15027,15027,15028,-15021,15028,13852,-15025,14818,15024,-14820,13843,15025,-13851,13850,15023,-15030,14320,15029,-14320,15026,13846,-13852,15027,15026,-13852,15027,13851,-15029,13852,15028,-13852,15024,13852,-15031,14819,15024,-15031,13850,15029,-13857,14320,13856,-15030,13859,15030,-13853,13863,14819,-15031,13859,13863,-15031,13864,14821,-13864,13864,13872,-14822,14822,14821,-13873,14822,13872,-15032,13872,13878,-15033,15031,13872,-15033,15031,14838, +-14823,15032,13878,-15034,13880,15033,-13879,15031,15032,-14839,15032,15033,-14848,13880,15034,-15034,15032,14847,-14839,13884,15034,-13881,15035,14847,-15034,15035,15033,-15035,15034,13884,-15037,14847,15035,-14849,15034,15036,-15036,13884,13889,-15037,15035,15037,-14849,15036,15037,-15036,13889,15038,-15037,15037,15039,-14849,15038,15037,-15037,13894,15040,-13890,15038,13889,-15041,15037,15041,-15040,15039,15042,-14849,14849,14848,-15043,15038,15041,-15038,13894,15043,-15041,15038,15040,-15045,15041,15045,-15040,15046,15042,-15040,15042,14850,-14850,15038,15047,-15042,15043,13894,-13902,15048,15040,-15044,15044,15040,-15050,15038,15044,-15048,15045,15041,-15048,15039,15045,-15047,15046,15050,-15043,15051,14850,-15043,15052,15043,-13902,15040,15048,-15050,15048,15043,-15053,15053,15044,-15050,15044,15054,-15048,15045,15047,-15056,15045,15055,-15047,15046,15055,-15051,15056,15042,-15051,15051,15042,-15057,15057,15052,-13902,15048,15058,-15050,15052,15059,-15049,15053,15054,-15045,15053,15049,-15059,15054,15060,-15048,15055,15047,-15061,15057,15061,-15053,15057,13901,-13908,15048,15062,-15059,15059,15052,-15062,15059,15062,-15049,15053,15063,-15055,15053,15058,-15065,15060,15054,-15064,15055,15060,-15066,15066,15061,-15058,13907,15066,-15058,15067,15058,-15063,15059,15061,-15069,15062,15059,-15068,15064,15063,-15054,15067,15064,-15059,15060,15063,-15070,15069,15065,-15061,15066,15068,-15062,15068,15070,-15060,15071,15067,-15060,15069,15063,-15065,15067,15072,-15065,15069,15073,-15066,15066,15074,-15069,15075,15070,-15069,15071,15059,-15071,15071,15072,-15068,15072,15069,-15065,15076,15073,-15070,15065,15073,-15078,15078,15074,-15067,15075,15068,-15075,15075,15079,-15071,15071,15070,-15081,15071,15081,-15073,15072,15076,-15070,15076,15082,-15074,15077,15073,-15083,15083,15074,-15079,15083,15075,-15075,15084,15079,-15076,15070,15079,-15081,15080,15081,-15072,15072,15081,-15077,15082,15076,-15086,15086,15077,-15083,15078,15087,-15084,15083,15084,-15076,15084,15088,-15080,15080,15079,-15089,15080,15085,-15082,15085,15076, +-15082,15082,15085,-15090,15086,15082,-15091,15091,15087,-15079,15092,15083,-15088,15084,15083,-15093,15093,15088,-15085,15088,15085,-15081,15094,15089,-15086,15082,15089,-15091,15086,15090,-15096,15096,15087,-15092,15078,15097,-15092,15092,15087,-15097,15084,15092,-15094,15093,15098,-15089,15088,15099,-15086,15094,15100,-15090,15099,15094,-15086,15090,15089,-15102,15095,15090,-15103,15096,15091,-15104,15104,15091,-15098,15092,15096,-15106,15092,15106,-15094,15093,15107,-15099,15098,15108,-15089,15099,15088,-15109,15100,15094,-15110,15110,15089,-15101,15099,15109,-15095,15110,15101,-15090,13642,15090,-15102,13641,15102,-15091,15104,15103,-15092,15105,15096,-15104,15111,15104,-15098,15092,15105,-15107,15107,15093,-15107,15107,15112,-15099,15098,15113,-15109,15099,15108,-15115,15100,15109,-15116,15110,15100,-15116,15109,15099,-15117,15110,15117,-15102,13641,15090,-13643,13645,13642,-15102,15118,15103,-15105,15105,15103,-15120,15120,15104,-15112,15121,15106,-15106,15106,15122,-15108,15107,15123,-15113,15112,15113,-15099,15113,15114,-15109,15099,15114,-15117,15115,15109,-15125,15125,15110,-15116,15109,15116,-15127,15117,15110,-15126,13645,15101,-15118,15103,15118,-15128,15120,15118,-15105,15119,15103,-15128,15105,15119,-15129,15121,15129,-15107,15121,15105,-15131,15106,15129,-15123,15122,15131,-15108,15123,15107,-15132,15113,15112,-15124,15113,15132,-15115,15116,15114,-15134,15124,15109,-15127,15115,15124,-15135,15125,15115,-15136,15126,15116,-15134,15117,15125,-15137,13645,15117,-13657,15118,9946,-15128,15120,15137,-15119,15138,15119,-15128,15128,15119,-15140,15105,15128,-15141,15130,15129,-15122,15105,15140,-15131,15122,15129,-15142,15122,15142,-15132,15123,15131,-15144,15113,15123,-15133,15132,15133,-15115,15134,15124,-15127,15135,15115,-15135,15136,15125,-15136,15136,13656,-15118,15137,9946,-15119,15127,9946,-9904,15120,15144,-15138,15139,15119,-15139,15127,9868,-15139,15128,15139,-15146,15140,15128,-15147,15129,15130,-15148,15148,15130,-15141,15129,15149,-15142,15141,15142,-15123,15143,15131,-15143,15132,15123,-15144, +15133,15132,-15144,15136,13672,-13657,9946,15137,-9996,15127,9903,-9869,15150,15137,-15145,15139,15138,-9838,9868,9837,-15139,15145,15139,-9811,15146,15128,-15146,15146,15151,-15141,15147,15130,-15149,15149,15129,-15148,15148,15140,-15152,15141,15149,-15153,15153,15142,-15142,10065,9995,-15138,15150,15154,-15138,15139,9837,-9811,9810,9788,-15146,15146,15145,-15156,15146,15156,-15152,15148,15157,-15148,15149,15147,-15159,15148,15151,-15160,15149,15160,-15153,15153,15141,-15153,10065,15137,-15155,15161,15154,-15151,15145,9788,-9770,15145,9769,-15156,15156,15146,-15156,15162,15151,-15157,15157,15148,-15160,15147,15157,-15159,15149,15158,-15164,15162,15159,-15152,15149,15163,-15161,15160,15164,-15153,15153,15152,-15165,14615,10065,-15155,15165,15154,-15162,9769,9759,-15156,15156,15155,-9760,15162,15156,-9764,15157,15159,-15167,15158,15157,-15168,15168,15163,-15159,15162,15169,-15160,15170,15160,-15164,15164,15160,-15172,9763,15156,-9760,9763,9754,-15163,15169,15166,-15160,15172,15157,-15167,15173,15167,-15158,15168,15158,-15168,15163,15168,-15175,15162,9754,-15170,15170,15175,-15161,15170,15163,-15175,15171,15160,-15176,15166,15169,-15177,15173,15157,-15173,15166,15176,-15173,15173,15168,-15168,15174,15168,-15174,9754,9746,-15170,15175,15170,-15178,15178,15170,-15175,15169,9745,-15177,15173,15172,-15180,15180,15172,-15177,15174,15173,-15182,15169,9746,-9746,15177,15170,-15183,15178,15183,-15171,15174,15184,-15179,9745,15185,-15177,15180,15179,-15173,15173,15179,-15187,15176,15185,-15181,15173,15186,-15182,15181,15184,-15175,15182,15170,-15184,15183,15178,-15188,15178,15184,-15189,9745,9722,-15186,15180,15189,-15180,15190,15186,-15180,15185,15189,-15181,15191,15181,-15187,15192,15184,-15182,15178,15188,-15188,15192,15188,-15185,9722,9712,-15186,15179,15189,-15191,15193,15186,-15191,15185,9712,-15190,15181,15191,-15195,15193,15191,-15187,15195,15192,-15182,15187,15188,-15197,15188,15192,-15198,15198,15190,-15190,15193,15190,-15200,9712,9698,-15190,15200,15194,-15192,15181,15194,-15196,15191,15193,-15202,15195,15202,-15193, +15196,15188,-15204,15192,15202,-15198,15188,15197,-15204,15199,15190,-15199,15198,15189,-9699,15193,15199,-15202,15194,15200,-15205,15200,15191,-15202,15205,15195,-15195,15206,15202,-15196,15197,15202,-15208,15203,15197,-15209,15209,13761,-13770,13769,13762,-15210,13761,15206,-13771,15210,13772,-13764,13763,13770,-15211,15198,9696,-15200,9698,9696,-15199,15211,15201,-15200,15212,15204,-15201,15194,15204,-15214,15201,15212,-15201,15210,15195,-15206,15194,15213,-15206,15206,15214,-15203,15195,13770,-15207,15207,15202,-15216,15208,15197,-15208,15209,15206,-13762,15216,15209,-13763,13772,15210,-15218,15195,15210,-13771,9696,9686,-15200,15212,15201,-15212,15211,15199,-9687,15218,15204,-15213,15219,15213,-15205,15210,15205,-15221,15205,15213,-15222,15206,15209,-15215,15214,15215,-15203,15207,15215,-15223,15215,15209,-15217,15210,15220,-15218,13772,15217,-13782,15211,15223,-15213,15211,9686,-9676,15218,15219,-15205,15218,15212,-15224,15221,15213,-15220,15220,15205,-15222,15215,15214,-15210,15222,15215,-15217,15217,15220,-1672,13781,15217,-1672,15211,15224,-15224,9675,9665,-15212,15225,15219,-15219,15226,15218,-15224,15227,15221,-15220,15220,15221,-15229,1671,15220,-15230,1690,13781,-1672,15211,9665,-15225,15223,15224,-15231,15227,15219,-15226,15225,15218,-15227,15231,15226,-15224,15228,15221,-15228,15232,15220,-15229,15232,15229,-15221,1671,15229,-1659,9655,15224,-9666,9655,15230,-15225,15231,15223,-15231,15227,15225,-15234,15233,15225,-15227,15231,15234,-15227,15228,15227,-15236,15232,15228,-15237,15229,15232,-1671,1658,15229,-1671,9655,15237,-15231,15238,15231,-15231,15233,15235,-15228,15233,15226,-15240,15231,15240,-15235,15226,15234,-15242,15228,15235,-15243,15242,15236,-15229,15232,15236,-15244,15232,15243,-1671,9655,9638,-15238,15238,15230,-15238,15238,15244,-15232,15245,15235,-15234,15226,15241,-15240,15233,15239,-15247,15240,15231,-15245,15240,15247,-15235,15247,15241,-15235,15248,15242,-15236,15242,1683,-15237,15243,15236,-1684,1670,15243,-1683,9629,15237,-9639,15238,15237,-9630,15238,15249,-15245,15245,15248,-15236, +15245,15233,-15247,15239,15241,-15251,15246,15239,-15251,15240,15244,-15250,15240,15251,-15248,15247,15252,-15242,15248,15253,-15243,1683,15242,-15254,1682,15243,-1684,9629,15249,-15239,15245,15254,-15249,15245,15246,-15256,15250,15241,-15253,15246,15250,-15257,15249,15257,-15241,15240,15257,-15252,15247,15251,-15253,1673,15253,-15249,1683,15253,-1674,9629,1693,-15250,15254,15245,-15256,15254,1673,-15249,15255,15246,-15257,15252,15256,-15251,15249,1694,-15258,1676,15251,-15258,15251,1684,-15253,1693,9629,-1696,1694,15249,-1694,15254,15255,-15257,1660,1673,-15255,15256,15252,-1685,1694,1676,-15258,15251,1676,-1685,15254,15256,-1675,1674,1660,-15255,15256,1684,-1675 + } + Edges: *45598 { + a: 0,1,2,3,5,7,8,9,11,13,14,16,17,18,19,23,25,26,28,29,32,33,35,37,38,39,40,42,44,45,47,50,51,52,54,56,58,61,62,64,68,70,71,72,74,76,77,78,80,81,83,84,85,87,89,90,95,96,98,100,101,103,106,107,110,111,115,118,119,120,121,124,125,127,131,133,134,135,136,139,140,142,144,145,147,149,150,153,155,157,159,160,162,164,165,166,168,169,173,175,176,177,181,182,183,184,186,187,189,190,192,194,195,196,199,202,203,205,206,207,209,210,211,214,217,218,220,223,227,228,230,232,233,234,235,237,240,244,246,247,251,252,254,255,258,260,262,263,264,265,267,272,274,275,278,280,281,282,284,287,289,290,292,293,294,295,298,299,300,301,305,308,309,311,312,314,315,316,318,321,323,324,325,328,330,331,334,335,338,341,342,344,346,347,350,352,353,354,356,357,360,364,366,370,371,373,374,375,376,378,380,381,383,384,386,388,389,392,394,397,398,400,403,406,407,409,411,412,416,417,419,422,423,425,426,427,429,430,434,437,438,442,443,444,445,447,450,451,454,455,456,460,461,462,463,465,468,470,473,474,476,477,481,484,485,487,488,489,493,494,496,499,502,505,506,507,509,510,511,513,515,516,517,519,522,523,525,530,532,533,535,536,537,538,541,545,547,548,549,553,556,557,558,560,562,563,565,566,568,569,571,573,575,576,578,580,583,585,587,588,593,594,596,597,598,602,603,604,607,610,611,613,615,616,619,620,621,624,625,627,630,632,633,635,636,638,639,641,643,645,649,650,652,656,658,659,662,663,665,666,668,669,673,675,676,678,679,683,685,686,687,689,691,692,693,696,698,700,701,702,706,707,709,712,713,715,719,720,722,725,727,730,731,733,734,736,737,738,739,741,743,744,746,748,749,751,754,755,758,759,760,763,764,767,768,772,774,776,778,779,782,785,788,790,792,797,798,799,801,802,804,807,809,812,813,816,817,820,821,823,824,826,827,829,830,832,835,837,841,842,843,847,848,850,851,853,856,858,859,861,863,864,865,869,870,874,876,878,879,881,884,886,887,888,889,893,894,896,898,899,900,903,906,908,910,911,912,914,916,919,923,925,928,931,932,935,936,938,939,941,943,944,945,946,950,952,955,956,958,959,961,965,967,968,969,971,974,976,977,978,979,983,984,986, +988,991,992,995,997,998,1000,1002,1004,1005,1008,1010,1011,1014,1017,1018,1021,1022,1023,1025,1027,1028,1029,1031,1032,1034,1036,1038,1041,1044,1046,1048,1049,1050,1055,1057,1058,1059,1061,1062,1063,1066,1067,1070,1073,1075,1076,1077,1078,1080,1082,1083,1085,1086,1089,1090,1092,1094,1097,1099,1100,1101,1104,1106,1108,1111,1112,1114,1115,1116,1121,1122,1127,1128,1129,1131,1132,1135,1137,1138,1140,1142,1143,1145,1146,1148,1150,1151,1152,1156,1157,1160,1161,1162,1164,1165,1167,1168,1172,1173,1174,1177,1179,1181,1182,1183,1186,1188,1192,1193,1194,1196,1199,1201,1203,1208,1209,1210,1214,1215,1218,1219,1221,1222,1225,1227,1228,1232,1234,1235,1236,1239,1241,1242,1245,1246,1249,1250,1252,1254,1259,1261,1263,1266,1269,1270,1273,1274,1277,1279,1283,1284,1285,1287,1289,1290,1292,1293,1297,1298,1300,1304,1306,1308,1311,1312,1315,1316,1317,1318,1321,1322,1323,1326,1328,1330,1332,1333,1336,1337,1339,1340,1343,1344,1347,1350,1351,1353,1357,1358,1360,1362,1363,1365,1367,1368,1370,1371,1374,1376,1378,1379,1381,1382,1385,1387,1388,1390,1391,1392,1393,1396,1398,1400,1402,1403,1405,1407,1410,1411,1413,1414,1417,1418,1419,1420,1423,1425,1427,1430,1432,1433,1434,1435,1437,1441,1444,1447,1448,1450,1451,1452,1454,1457,1459,1461,1463,1464,1465,1467,1469,1470,1473,1475,1479,1480,1482,1484,1486,1488,1491,1493,1494,1495,1499,1502,1503,1504,1507,1510,1513,1517,1518,1520,1521,1522,1524,1527,1529,1531,1532,1533,1536,1539,1541,1542,1544,1546,1547,1548,1549,1551,1555,1557,1559,1560,1561,1564,1565,1567,1569,1571,1572,1574,1575,1579,1580,1582,1585,1589,1590,1592,1595,1598,1599,1602,1605,1606,1608,1610,1611,1613,1616,1617,1619,1620,1622,1623,1624,1626,1628,1629,1633,1634,1635,1636,1640,1642,1644,1645,1647,1650,1654,1655,1658,1660,1661,1662,1665,1666,1668,1673,1674,1675,1677,1679,1680,1682,1684,1685,1687,1688,1691,1693,1696,1697,1700,1703,1705,1706,1707,1708,1711,1715,1716,1718,1719,1721,1722,1723,1727,1728,1730,1731,1733,1734,1737,1741,1742,1744,1745,1747,1748,1750,1751,1754,1756,1758,1759,1761,1763,1766,1768,1769,1770,1771,1775,1777,1778,1781,1782, +1783,1787,1789,1792,1793,1794,1796,1797,1798,1800,1802,1805,1806,1809,1812,1816,1818,1820,1822,1823,1824,1826,1828,1829,1830,1831,1833,1835,1837,1838,1840,1841,1842,1845,1848,1852,1853,1855,1857,1859,1860,1862,1863,1864,1866,1869,1871,1873,1874,1875,1876,1880,1881,1883,1885,1887,1888,1890,1893,1894,1897,1900,1903,1905,1909,1910,1911,1913,1914,1915,1917,1920,1921,1924,1925,1926,1929,1933,1935,1938,1940,1942,1945,1946,1947,1948,1951,1952,1953,1954,1957,1958,1959,1960,1964,1966,1967,1970,1971,1972,1974,1978,1982,1983,1987,1988,1991,1992,1993,1995,1996,1998,2000,2001,2004,2005,2007,2011,2014,2015,2016,2017,2019,2022,2024,2025,2028,2030,2032,2034,2039,2041,2042,2043,2044,2046,2048,2049,2052,2053,2055,2059,2061,2064,2065,2067,2069,2070,2071,2074,2075,2077,2078,2081,2082,2083,2085,2086,2089,2090,2093,2094,2095,2097,2099,2102,2103,2104,2108,2111,2114,2116,2119,2121,2122,2125,2126,2128,2132,2133,2135,2138,2140,2141,2142,2143,2145,2149,2150,2153,2154,2158,2159,2160,2163,2165,2167,2168,2169,2174,2175,2177,2178,2180,2181,2182,2186,2189,2190,2191,2194,2195,2196,2199,2203,2204,2205,2206,2208,2210,2211,2213,2217,2222,2223,2228,2230,2231,2233,2236,2237,2238,2240,2242,2244,2245,2247,2249,2250,2255,2256,2257,2260,2262,2263,2266,2268,2271,2274,2276,2277,2281,2282,2284,2285,2286,2291,2292,2293,2296,2297,2298,2299,2302,2303,2304,2307,2308,2311,2314,2317,2318,2320,2321,2323,2324,2325,2326,2328,2329,2332,2335,2337,2338,2341,2342,2343,2344,2346,2351,2352,2354,2355,2356,2360,2361,2363,2364,2366,2369,2370,2371,2373,2376,2377,2380,2383,2384,2385,2389,2391,2392,2394,2395,2398,2400,2403,2405,2407,2408,2410,2411,2412,2415,2418,2419,2421,2422,2426,2427,2428,2430,2431,2434,2435,2436,2438,2439,2444,2445,2446,2449,2450,2451,2456,2458,2462,2465,2466,2467,2469,2470,2473,2475,2476,2478,2480,2482,2485,2488,2489,2491,2492,2495,2498,2501,2502,2504,2505,2508,2512,2513,2515,2517,2519,2520,2521,2524,2525,2528,2529,2531,2535,2536,2540,2541,2543,2544,2546,2549,2551,2552,2553,2555,2556,2557,2560,2562,2563,2565,2566,2568,2570,2573,2574,2576,2578,2581,2582,2585, +2586,2587,2589,2593,2594,2597,2598,2599,2601,2602,2605,2607,2608,2612,2615,2616,2618,2619,2620,2624,2625,2628,2630,2631,2634,2635,2639,2640,2641,2643,2645,2646,2647,2650,2651,2653,2654,2656,2658,2660,2661,2664,2666,2668,2669,2671,2672,2674,2678,2680,2682,2684,2685,2689,2690,2692,2693,2694,2695,2697,2698,2702,2704,2705,2707,2708,2709,2710,2713,2714,2715,2718,2722,2723,2725,2727,2728,2730,2733,2734,2737,2740,2742,2744,2745,2750,2752,2753,2755,2757,2759,2760,2765,2766,2768,2770,2771,2773,2776,2778,2779,2782,2785,2786,2788,2791,2795,2796,2797,2800,2801,2803,2804,2805,2806,2811,2812,2814,2816,2817,2818,2822,2824,2827,2830,2832,2835,2838,2839,2841,2843,2845,2848,2851,2852,2854,2857,2858,2860,2861,2863,2865,2867,2870,2873,2874,2878,2881,2884,2885,2886,2888,2889,2892,2895,2896,2898,2901,2903,2906,2907,2909,2910,2911,2914,2916,2920,2921,2923,2925,2926,2928,2930,2932,2933,2935,2937,2939,2940,2942,2944,2945,2948,2949,2953,2954,2957,2959,2961,2962,2966,2967,2969,2970,2972,2975,2978,2979,2980,2984,2985,2990,2993,2994,2996,2997,3002,3003,3005,3007,3008,3010,3011,3012,3013,3016,3017,3018,3019,3021,3022,3024,3025,3028,3031,3032,3033,3034,3036,3038,3039,3041,3043,3044,3047,3049,3050,3051,3055,3057,3059,3061,3064,3065,3066,3068,3069,3070,3072,3077,3078,3079,3081,3082,3084,3085,3087,3089,3092,3093,3095,3097,3098,3101,3102,3103,3105,3106,3109,3111,3113,3114,3117,3119,3120,3125,3127,3128,3131,3132,3133,3135,3138,3140,3142,3143,3146,3148,3149,3151,3152,3153,3156,3157,3160,3162,3165,3166,3168,3170,3171,3172,3174,3176,3178,3179,3181,3184,3185,3187,3188,3190,3191,3194,3195,3196,3199,3203,3205,3206,3208,3210,3215,3216,3218,3221,3223,3225,3227,3230,3231,3235,3236,3238,3241,3242,3243,3246,3248,3249,3254,3255,3257,3258,3261,3263,3266,3267,3272,3275,3276,3277,3279,3282,3284,3286,3287,3288,3292,3296,3298,3299,3302,3303,3304,3306,3308,3309,3311,3312,3313,3316,3318,3323,3325,3327,3329,3330,3332,3335,3338,3340,3341,3342,3344,3345,3347,3350,3351,3353,3354,3355,3357,3358,3360,3363,3368,3370,3371,3373,3374,3377,3379,3380,3383,3385,3387,3392,3395,3397, +3398,3401,3402,3403,3405,3406,3408,3411,3412,3415,3416,3417,3418,3420,3423,3426,3429,3430,3434,3435,3436,3438,3440,3441,3442,3444,3445,3447,3449,3450,3452,3454,3455,3456,3458,3460,3463,3464,3466,3468,3469,3473,3475,3476,3477,3478,3480,3482,3483,3485,3488,3489,3490,3492,3495,3500,3502,3505,3506,3509,3511,3512,3514,3515,3516,3520,3522,3524,3525,3527,3528,3530,3532,3536,3537,3540,3543,3547,3550,3551,3552,3556,3557,3559,3560,3562,3563,3564,3566,3567,3569,3570,3572,3573,3574,3577,3581,3582,3583,3585,3589,3591,3594,3595,3598,3599,3600,3601,3604,3605,3608,3610,3611,3612,3613,3616,3617,3619,3623,3624,3625,3627,3630,3631,3634,3636,3637,3641,3644,3646,3647,3648,3650,3651,3655,3659,3661,3662,3665,3666,3670,3673,3674,3676,3679,3680,3682,3683,3684,3686,3687,3688,3690,3692,3694,3695,3698,3700,3701,3702,3703,3706,3710,3711,3715,3716,3717,3718,3720,3724,3725,3726,3727,3730,3731,3733,3735,3736,3739,3740,3741,3744,3747,3749,3751,3752,3754,3756,3757,3761,3762,3765,3766,3768,3770,3772,3775,3776,3777,3778,3780,3783,3784,3787,3789,3791,3792,3795,3796,3799,3802,3803,3804,3807,3811,3814,3815,3817,3820,3821,3823,3826,3827,3829,3831,3832,3834,3838,3839,3840,3842,3843,3845,3846,3847,3851,3852,3854,3855,3859,3860,3863,3865,3866,3867,3869,3870,3872,3873,3876,3878,3880,3882,3886,3889,3892,3893,3895,3896,3900,3903,3905,3908,3909,3912,3915,3916,3918,3922,3923,3926,3927,3930,3934,3935,3936,3938,3940,3941,3942,3945,3946,3948,3953,3954,3955,3959,3960,3963,3965,3966,3968,3971,3972,3974,3977,3979,3981,3983,3984,3988,3989,3993,3995,3996,3997,4001,4002,4003,4005,4007,4009,4010,4012,4015,4016,4018,4020,4022,4024,4025,4027,4030,4031,4034,4035,4036,4039,4041,4046,4047,4049,4051,4053,4055,4056,4059,4060,4063,4065,4069,4070,4073,4074,4075,4077,4080,4083,4084,4086,4088,4089,4090,4092,4093,4096,4099,4101,4102,4106,4109,4111,4112,4115,4117,4120,4121,4124,4125,4126,4128,4129,4132,4133,4135,4138,4139,4140,4143,4145,4147,4148,4150,4152,4154,4155,4159,4162,4167,4169,4170,4173,4175,4176,4179,4181,4182,4184,4186,4189,4190,4193,4196,4197,4199,4201,4202,4205,4206,4207, +4209,4212,4213,4216,4218,4219,4222,4223,4224,4225,4227,4231,4232,4233,4234,4238,4240,4241,4243,4245,4247,4249,4250,4251,4255,4256,4257,4258,4260,4261,4263,4266,4268,4270,4272,4273,4276,4277,4278,4279,4281,4282,4284,4287,4289,4291,4292,4293,4297,4299,4301,4302,4304,4307,4308,4309,4311,4312,4314,4318,4319,4320,4325,4326,4327,4330,4332,4335,4337,4340,4341,4342,4345,4347,4348,4350,4351,4353,4355,4357,4360,4361,4364,4365,4367,4368,4370,4371,4373,4374,4375,4378,4382,4385,4386,4388,4389,4390,4393,4397,4399,4401,4404,4408,4409,4410,4412,4415,4417,4420,4421,4424,4425,4427,4428,4429,4432,4433,4435,4437,4439,4441,4444,4448,4450,4452,4454,4456,4457,4458,4460,4463,4464,4466,4469,4471,4473,4475,4476,4479,4483,4484,4486,4487,4490,4493,4494,4497,4499,4502,4503,4504,4507,4508,4509,4511,4512,4513,4515,4516,4518,4521,4523,4524,4529,4531,4532,4533,4536,4539,4541,4543,4547,4548,4553,4555,4556,4558,4559,4560,4561,4563,4565,4566,4568,4571,4572,4573,4575,4577,4580,4581,4582,4585,4586,4588,4591,4592,4594,4596,4598,4601,4603,4605,4607,4610,4611,4612,4615,4616,4619,4620,4624,4625,4626,4628,4629,4631,4632,4634,4635,4639,4641,4642,4644,4647,4649,4651,4652,4655,4657,4658,4660,4662,4666,4669,4672,4673,4675,4676,4677,4679,4680,4682,4685,4688,4689,4690,4692,4695,4698,4701,4703,4704,4705,4708,4712,4714,4716,4718,4719,4721,4722,4724,4725,4726,4728,4729,4732,4735,4738,4739,4740,4745,4746,4750,4751,4752,4754,4757,4762,4763,4764,4767,4769,4771,4772,4774,4776,4778,4780,4781,4782,4784,4786,4789,4790,4791,4795,4796,4797,4798,4801,4803,4806,4807,4811,4812,4813,4815,4816,4820,4821,4822,4824,4828,4829,4830,4833,4837,4840,4842,4844,4845,4848,4851,4853,4855,4858,4862,4864,4865,4866,4868,4869,4871,4872,4874,4875,4877,4878,4881,4882,4885,4890,4892,4894,4898,4900,4901,4902,4905,4907,4909,4910,4912,4913,4914,4918,4920,4922,4924,4926,4928,4930,4932,4934,4935,4937,4938,4941,4943,4944,4948,4949,4951,4953,4954,4957,4958,4959,4960,4962,4963,4967,4969,4971,4973,4975,4977,4978,4980,4985,4987,4988,4991,4993,4994,4997,4998,4999,5001,5004,5005,5007,5009,5011,5014,5016,5018, +5019,5022,5026,5027,5030,5032,5036,5039,5040,5042,5045,5047,5048,5051,5054,5055,5056,5058,5060,5061,5063,5064,5065,5068,5069,5072,5074,5075,5076,5078,5079,5080,5082,5085,5087,5088,5090,5091,5095,5097,5098,5100,5103,5105,5106,5111,5113,5114,5115,5119,5121,5122,5125,5128,5130,5131,5133,5134,5136,5139,5143,5146,5147,5148,5149,5151,5154,5156,5158,5159,5162,5164,5165,5168,5169,5171,5172,5173,5176,5178,5180,5181,5185,5187,5189,5191,5192,5193,5195,5196,5198,5200,5201,5202,5203,5206,5207,5209,5213,5215,5218,5220,5222,5225,5226,5227,5231,5232,5233,5235,5236,5238,5240,5242,5243,5245,5249,5252,5253,5254,5256,5257,5259,5260,5262,5263,5265,5266,5269,5270,5273,5275,5276,5277,5278,5280,5283,5284,5286,5287,5289,5291,5294,5296,5300,5301,5302,5305,5306,5307,5309,5311,5313,5314,5316,5317,5321,5322,5325,5327,5329,5330,5332,5334,5336,5338,5339,5340,5345,5347,5350,5352,5354,5355,5358,5363,5366,5369,5370,5372,5373,5377,5378,5379,5382,5383,5386,5387,5389,5390,5391,5396,5399,5401,5405,5406,5410,5411,5413,5414,5416,5418,5419,5422,5425,5428,5429,5431,5433,5437,5440,5441,5442,5443,5445,5448,5452,5453,5455,5457,5461,5462,5463,5464,5466,5467,5470,5472,5476,5478,5483,5484,5485,5488,5489,5490,5491,5495,5498,5499,5503,5504,5505,5510,5511,5513,5514,5517,5519,5520,5521,5523,5527,5528,5530,5531,5532,5534,5535,5539,5540,5543,5545,5547,5549,5552,5553,5555,5557,5558,5559,5561,5562,5563,5566,5567,5569,5572,5575,5576,5578,5579,5582,5583,5584,5586,5587,5589,5592,5593,5595,5597,5598,5599,5601,5604,5605,5607,5608,5610,5612,5613,5615,5616,5617,5619,5623,5624,5626,5629,5632,5633,5634,5637,5638,5640,5644,5645,5647,5649,5651,5653,5656,5657,5658,5661,5662,5664,5667,5669,5671,5673,5675,5677,5678,5679,5682,5687,5690,5692,5693,5696,5697,5698,5701,5704,5705,5706,5708,5712,5716,5718,5720,5721,5724,5729,5732,5733,5734,5737,5740,5741,5742,5747,5748,5752,5754,5756,5759,5760,5761,5763,5764,5766,5767,5770,5772,5773,5776,5777,5779,5780,5781,5782,5785,5786,5787,5790,5792,5793,5795,5797,5799,5800,5802,5803,5805,5809,5812,5816,5820,5821,5824,5825,5826,5827,5831,5834,5836,5837, +5839,5840,5841,5842,5844,5845,5847,5848,5850,5851,5854,5855,5857,5859,5863,5864,5865,5867,5868,5869,5872,5873,5875,5876,5877,5878,5882,5884,5885,5887,5890,5891,5893,5894,5895,5899,5900,5902,5905,5907,5910,5912,5914,5915,5916,5917,5920,5922,5927,5929,5932,5934,5939,5940,5943,5944,5947,5951,5954,5955,5956,5959,5962,5963,5965,5966,5971,5972,5974,5975,5976,5981,5982,5983,5986,5990,5992,5994,5996,5997,6001,6004,6005,6006,6009,6011,6012,6014,6015,6017,6018,6021,6026,6027,6030,6032,6034,6036,6037,6040,6041,6043,6045,6046,6048,6050,6052,6054,6058,6060,6064,6066,6067,6069,6071,6073,6075,6076,6079,6080,6081,6082,6084,6085,6089,6091,6092,6093,6095,6096,6099,6103,6105,6109,6110,6111,6113,6114,6116,6117,6119,6120,6121,6123,6124,6127,6128,6131,6133,6134,6135,6136,6138,6140,6141,6144,6145,6148,6150,6151,6155,6156,6158,6159,6160,6162,6163,6166,6169,6170,6174,6177,6178,6180,6184,6186,6188,6189,6191,6193,6194,6195,6196,6198,6200,6201,6202,6205,6206,6209,6211,6212,6215,6218,6220,6222,6226,6228,6229,6232,6233,6234,6235,6237,6242,6244,6248,6251,6254,6255,6258,6262,6264,6265,6267,6268,6272,6274,6277,6279,6281,6282,6284,6285,6287,6288,6290,6291,6295,6299,6301,6302,6303,6304,6306,6309,6310,6313,6314,6315,6318,6322,6325,6327,6330,6332,6334,6336,6340,6341,6343,6344,6345,6348,6350,6351,6352,6356,6359,6362,6365,6366,6367,6369,6372,6374,6375,6376,6379,6381,6382,6385,6387,6388,6390,6391,6393,6395,6398,6400,6402,6405,6407,6410,6412,6413,6415,6417,6418,6420,6422,6423,6424,6426,6428,6429,6433,6435,6436,6438,6440,6441,6443,6444,6447,6448,6451,6452,6453,6454,6457,6461,6462,6466,6469,6470,6472,6475,6476,6478,6479,6480,6481,6484,6487,6488,6489,6491,6492,6496,6497,6499,6501,6503,6505,6507,6508,6510,6511,6513,6514,6516,6517,6519,6521,6522,6523,6525,6529,6530,6533,6534,6535,6537,6540,6543,6545,6547,6549,6550,6552,6554,6556,6559,6560,6562,6563,6564,6565,6568,6570,6571,6575,6576,6579,6582,6583,6585,6586,6590,6592,6594,6595,6597,6598,6600,6604,6607,6611,6612,6616,6617,6620,6621,6624,6625,6627,6628,6631,6632,6634,6637,6640,6642,6644,6646,6648,6649,6652,6657, +6659,6660,6661,6663,6665,6666,6667,6670,6672,6673,6676,6678,6679,6681,6683,6684,6685,6687,6690,6692,6693,6696,6697,6702,6703,6705,6709,6712,6713,6714,6716,6717,6719,6720,6721,6724,6726,6729,6733,6734,6736,6738,6739,6742,6744,6748,6749,6750,6752,6755,6756,6757,6759,6762,6763,6765,6766,6770,6772,6775,6776,6778,6780,6781,6784,6786,6788,6790,6791,6792,6795,6798,6800,6802,6803,6805,6809,6810,6811,6813,6817,6819,6820,6822,6823,6826,6828,6829,6831,6834,6836,6838,6842,6844,6847,6848,6850,6851,6852,6853,6855,6857,6859,6862,6865,6866,6867,6869,6870,6872,6875,6876,6877,6879,6883,6884,6885,6886,6888,6890,6893,6896,6899,6900,6904,6906,6907,6911,6914,6916,6918,6920,6921,6923,6925,6926,6929,6931,6934,6935,6936,6939,6941,6942,6945,6947,6949,6950,6951,6955,6958,6959,6960,6961,6964,6967,6969,6971,6973,6975,6977,6978,6983,6984,6986,6987,6988,6990,6991,6995,6998,7000,7001,7004,7006,7010,7012,7013,7015,7016,7019,7020,7022,7025,7026,7027,7029,7030,7033,7034,7036,7037,7039,7041,7045,7046,7047,7048,7051,7053,7054,7056,7059,7060,7063,7064,7067,7068,7069,7072,7075,7077,7082,7083,7085,7086,7089,7093,7094,7096,7097,7098,7100,7102,7105,7107,7109,7110,7113,7114,7116,7117,7119,7120,7123,7124,7127,7128,7131,7133,7134,7136,7139,7141,7142,7144,7145,7146,7148,7149,7153,7154,7156,7157,7159,7160,7161,7164,7168,7170,7173,7176,7178,7179,7180,7184,7185,7186,7188,7190,7191,7196,7198,7199,7201,7202,7203,7206,7207,7209,7213,7214,7216,7217,7219,7220,7223,7225,7227,7231,7232,7233,7235,7237,7241,7243,7244,7245,7248,7250,7252,7253,7254,7258,7259,7261,7262,7265,7266,7267,7269,7272,7276,7277,7279,7280,7281,7283,7286,7288,7289,7291,7292,7295,7298,7300,7302,7303,7305,7309,7312,7313,7316,7317,7318,7320,7322,7323,7325,7327,7330,7331,7332,7334,7335,7339,7342,7343,7346,7347,7348,7350,7353,7358,7360,7363,7364,7365,7366,7369,7372,7375,7376,7378,7379,7380,7381,7383,7384,7387,7388,7389,7391,7393,7394,7395,7398,7403,7406,7408,7412,7413,7414,7416,7418,7419,7420,7422,7425,7427,7428,7429,7433,7434,7437,7439,7442,7444,7446,7449,7451,7453,7454,7455,7458,7459,7462,7464,7465,7467, +7468,7470,7472,7473,7474,7476,7478,7479,7481,7483,7484,7485,7487,7488,7491,7495,7496,7499,7500,7503,7506,7507,7509,7512,7514,7516,7518,7519,7521,7524,7526,7528,7529,7530,7533,7535,7538,7540,7541,7542,7544,7546,7549,7550,7552,7553,7556,7557,7558,7562,7563,7566,7571,7572,7573,7577,7578,7579,7581,7582,7584,7586,7588,7590,7594,7595,7596,7597,7599,7601,7602,7605,7606,7609,7610,7611,7613,7614,7615,7618,7619,7620,7622,7625,7626,7627,7630,7631,7632,7634,7636,7639,7641,7645,7646,7649,7650,7653,7657,7658,7659,7663,7664,7667,7669,7672,7674,7675,7678,7681,7682,7683,7685,7688,7690,7691,7692,7696,7697,7700,7702,7704,7705,7708,7710,7714,7717,7718,7720,7721,7724,7725,7726,7730,7731,7733,7734,7737,7738,7740,7741,7743,7745,7747,7748,7749,7751,7753,7754,7757,7758,7759,7763,7764,7767,7770,7772,7773,7775,7776,7778,7781,7782,7785,7787,7789,7793,7795,7796,7797,7799,7801,7803,7806,7808,7811,7812,7817,7819,7820,7823,7824,7825,7827,7829,7831,7833,7834,7837,7838,7839,7840,7842,7847,7849,7852,7853,7854,7857,7860,7862,7863,7864,7866,7868,7869,7872,7873,7875,7879,7880,7881,7882,7884,7885,7889,7891,7895,7898,7901,7903,7904,7907,7908,7909,7913,7915,7916,7917,7921,7922,7923,7925,7926,7927,7930,7934,7935,7936,7938,7940,7941,7943,7944,7945,7947,7948,7950,7955,7956,7958,7961,7962,7966,7967,7969,7970,7971,7972,7975,7977,7979,7980,7981,7983,7987,7989,7992,7994,7996,8000,8002,8003,8004,8008,8009,8011,8013,8016,8018,8020,8022,8023,8025,8027,8028,8032,8034,8036,8037,8040,8043,8045,8047,8049,8050,8052,8053,8055,8056,8058,8060,8063,8064,8067,8069,8072,8073,8078,8079,8082,8085,8087,8088,8089,8091,8093,8095,8096,8097,8098,8100,8103,8104,8106,8108,8109,8111,8112,8115,8120,8123,8125,8126,8127,8129,8130,8131,8133,8135,8136,8137,8141,8143,8144,8145,8148,8149,8153,8154,8156,8157,8160,8162,8164,8165,8166,8169,8170,8174,8175,8176,8179,8181,8182,8184,8187,8189,8190,8192,8193,8194,8196,8200,8201,8204,8205,8206,8209,8210,8213,8214,8219,8222,8224,8225,8227,8228,8229,8232,8235,8236,8238,8239,8241,8244,8245,8247,8249,8250,8253,8255,8256,8259,8264,8265,8269,8272,8273,8274, +8275,8277,8280,8283,8285,8288,8290,8291,8292,8294,8295,8297,8299,8300,8301,8302,8306,8307,8308,8310,8313,8316,8318,8320,8323,8324,8326,8328,8330,8331,8332,8334,8336,8337,8339,8340,8344,8346,8347,8350,8354,8357,8358,8359,8361,8362,8366,8367,8369,8370,8375,8376,8380,8381,8384,8385,8386,8389,8390,8392,8393,8394,8395,8399,8400,8402,8403,8404,8406,8410,8411,8412,8414,8417,8418,8420,8422,8423,8424,8426,8427,8428,8430,8431,8433,8435,8438,8441,8444,8445,8447,8449,8450,8451,8452,8454,8456,8458,8459,8461,8463,8465,8468,8470,8473,8474,8475,8476,8478,8479,8482,8483,8485,8487,8488,8492,8493,8494,8496,8499,8503,8506,8507,8508,8513,8515,8518,8520,8521,8524,8525,8527,8528,8531,8532,8534,8535,8540,8543,8544,8546,8548,8549,8551,8552,8553,8556,8560,8563,8566,8569,8572,8573,8575,8576,8577,8581,8582,8583,8585,8588,8590,8591,8594,8596,8597,8599,8602,8603,8606,8608,8609,8612,8614,8615,8616,8617,8619,8621,8623,8624,8625,8630,8633,8634,8638,8640,8642,8643,8644,8647,8648,8649,8654,8656,8657,8659,8660,8661,8665,8666,8668,8672,8673,8675,8676,8677,8680,8681,8682,8683,8686,8687,8689,8691,8692,8696,8699,8700,8701,8704,8706,8708,8710,8714,8716,8717,8719,8720,8722,8726,8728,8729,8730,8733,8737,8738,8739,8741,8743,8744,8746,8747,8748,8753,8755,8756,8758,8761,8763,8764,8766,8767,8770,8772,8775,8777,8779,8780,8781,8783,8785,8786,8789,8790,8794,8795,8797,8800,8801,8803,8804,8808,8810,8812,8813,8814,8818,8820,8822,8825,8827,8828,8829,8831,8832,8833,8835,8837,8838,8840,8841,8845,8847,8852,8854,8855,8856,8858,8859,8861,8864,8867,8869,8870,8871,8874,8876,8878,8879,8882,8883,8885,8886,8890,8891,8893,8895,8896,8900,8901,8904,8906,8907,8910,8913,8916,8917,8919,8920,8922,8924,8926,8929,8930,8931,8936,8938,8939,8941,8942,8943,8945,8947,8948,8949,8952,8956,8957,8959,8962,8963,8964,8967,8969,8971,8972,8974,8976,8978,8979,8980,8983,8984,8985,8986,8988,8989,8993,8997,9000,9002,9005,9008,9009,9010,9013,9014,9015,9017,9020,9021,9025,9026,9027,9028,9030,9032,9033,9035,9037,9038,9040,9043,9044,9045,9049,9050,9052,9055,9056,9059,9061,9063,9065,9068,9069,9072,9076,9077, +9078,9081,9083,9086,9087,9091,9094,9095,9098,9099,9101,9102,9103,9107,9108,9109,9113,9115,9117,9119,9121,9122,9123,9126,9127,9130,9131,9133,9136,9137,9138,9141,9143,9145,9146,9147,9148,9150,9154,9155,9157,9158,9160,9162,9163,9166,9167,9168,9170,9171,9172,9174,9177,9182,9183,9184,9187,9189,9190,9192,9194,9197,9199,9201,9203,9204,9205,9207,9209,9210,9212,9215,9217,9218,9219,9221,9222,9226,9227,9228,9230,9231,9235,9237,9239,9240,9244,9246,9247,9251,9252,9256,9257,9258,9260,9263,9264,9265,9267,9268,9271,9275,9278,9279,9283,9285,9286,9290,9291,9293,9294,9298,9299,9302,9305,9306,9308,9309,9310,9313,9314,9316,9317,9318,9323,9324,9325,9327,9330,9333,9335,9336,9337,9340,9341,9343,9346,9347,9350,9352,9355,9358,9360,9361,9365,9367,9369,9371,9372,9373,9375,9376,9378,9380,9382,9383,9385,9386,9389,9390,9391,9393,9394,9396,9399,9404,9407,9408,9410,9412,9413,9416,9417,9420,9421,9423,9426,9429,9431,9433,9434,9436,9437,9439,9442,9443,9446,9448,9451,9453,9454,9456,9458,9461,9462,9463,9465,9466,9468,9469,9472,9474,9478,9479,9482,9484,9485,9486,9488,9491,9492,9494,9496,9497,9498,9501,9503,9506,9509,9510,9512,9513,9515,9516,9519,9520,9523,9525,9527,9528,9530,9533,9536,9537,9540,9543,9544,9546,9550,9554,9557,9558,9560,9562,9566,9567,9568,9570,9571,9573,9576,9577,9579,9581,9582,9587,9590,9591,9593,9596,9599,9601,9602,9603,9606,9607,9610,9612,9613,9615,9619,9620,9623,9624,9626,9627,9628,9632,9633,9637,9638,9639,9641,9642,9644,9645,9646,9649,9652,9653,9654,9656,9659,9660,9664,9665,9668,9669,9671,9672,9674,9675,9680,9682,9683,9686,9687,9688,9690,9691,9693,9696,9698,9699,9701,9704,9707,9709,9710,9712,9713,9715,9717,9719,9722,9723,9727,9728,9731,9732,9734,9735,9737,9740,9742,9743,9744,9746,9749,9752,9753,9755,9756,9761,9762,9764,9765,9768,9770,9771,9774,9775,9776,9777,9778,9781,9782,9783,9785,9786,9788,9789,9791,9792,9796,9797,9799,9800,9801,9802,9804,9805,9808,9811,9812,9813,9814,9817,9818,9819,9821,9822,9824,9826,9829,9830,9832,9833,9834,9836,9838,9839,9841,9842,9844,9846,9849,9851,9853,9854,9856,9857,9860,9861,9863,9864,9865,9869,9870,9872, +9875,9876,9878,9880,9883,9884,9887,9889,9891,9895,9896,9897,9899,9900,9902,9903,9904,9906,9907,9911,9913,9916,9917,9918,9920,9921,9923,9926,9928,9929,9930,9932,9935,9938,9939,9941,9944,9945,9946,9949,9950,9951,9952,9954,9956,9959,9961,9962,9965,9966,9968,9970,9971,9973,9975,9976,9978,9980,9981,9983,9986,9987,9990,9992,9994,9995,9996,9999,10003,10005,10006,10008,10009,10012,10014,10016,10018,10019,10021,10022,10024,10025,10026,10031,10032,10034,10037,10038,10039,10041,10043,10046,10049,10050,10051,10055,10057,10058,10059,10061,10062,10063,10065,10067,10069,10072,10074,10076,10077,10078,10082,10083,10084,10087,10088,10089,10091,10093,10095,10096,10100,10101,10105,10107,10110,10112,10113,10114,10116,10118,10119,10120,10122,10124,10125,10127,10129,10130,10132,10134,10138,10139,10141,10142,10145,10147,10148,10149,10151,10152,10154,10156,10157,10159,10162,10163,10164,10166,10168,10170,10171,10175,10177,10179,10181,10184,10185,10187,10190,10191,10192,10194,10195,10197,10199,10200,10203,10204,10206,10211,10213,10214,10215,10218,10219,10221,10224,10225,10230,10232,10233,10235,10236,10238,10241,10242,10243,10246,10248,10250,10251,10252,10255,10258,10259,10260,10261,10263,10265,10266,10268,10270,10271,10275,10279,10280,10283,10286,10287,10290,10292,10293,10296,10297,10300,10301,10303,10305,10307,10310,10313,10315,10316,10317,10319,10320,10322,10323,10327,10331,10332,10333,10336,10338,10340,10341,10342,10344,10345,10349,10350,10353,10356,10357,10360,10361,10362,10363,10366,10367,10369,10372,10373,10375,10376,10377,10381,10383,10384,10387,10388,10390,10391,10393,10394,10396,10397,10399,10401,10403,10405,10406,10407,10409,10410,10413,10414,10416,10418,10421,10423,10424,10426,10427,10430,10431,10432,10434,10436,10437,10438,10442,10444,10446,10448,10450,10451,10452,10457,10458,10459,10461,10463,10466,10467,10469,10470,10471,10474,10478,10479,10481,10482,10486,10488,10489,10491,10493,10494,10495,10498,10502,10503,10505,10507,10508,10510,10512,10516,10518,10520,10521,10524,10525,10527,10531,10532,10533,10535,10536,10537,10539,10544, +10547,10549,10552,10554,10555,10558,10560,10564,10566,10569,10571,10572,10574,10576,10577,10579,10581,10584,10587,10589,10590,10593,10595,10596,10597,10599,10600,10603,10604,10606,10607,10608,10609,10612,10613,10616,10619,10621,10622,10623,10625,10626,10629,10632,10635,10637,10638,10639,10643,10644,10646,10647,10649,10651,10652,10654,10655,10657,10658,10660,10661,10663,10664,10667,10668,10672,10675,10676,10678,10679,10681,10682,10683,10684,10686,10690,10691,10693,10694,10697,10698,10699,10703,10705,10706,10707,10710,10711,10713,10714,10716,10719,10721,10724,10726,10728,10729,10731,10734,10736,10739,10741,10743,10747,10749,10750,10752,10754,10756,10757,10758,10759,10762,10764,10766,10767,10769,10770,10773,10777,10778,10782,10783,10787,10789,10792,10793,10794,10798,10799,10800,10802,10803,10805,10808,10809,10811,10812,10817,10819,10820,10821,10822,10825,10826,10828,10829,10830,10831,10837,10840,10841,10843,10846,10847,10849,10850,10852,10853,10856,10857,10861,10862,10865,10866,10868,10870,10871,10872,10876,10879,10880,10881,10883,10884,10885,10889,10891,10894,10895,10896,10897,10900,10901,10902,10904,10906,10909,10912,10913,10914,10916,10917,10919,10921,10922,10923,10924,10928,10930,10931,10932,10934,10936,10937,10938,10939,10941,10944,10945,10948,10950,10953,10955,10958,10961,10962,10964,10966,10967,10968,10970,10973,10974,10975,10977,10981,10983,10984,10986,10988,10989,10990,10992,10994,10995,10997,10999,11002,11003,11006,11007,11009,11011,11014,11015,11016,11019,11020,11022,11024,11025,11030,11032,11034,11037,11038,11042,11045,11050,11051,11053,11054,11055,11057,11058,11059,11062,11064,11066,11067,11075,11077,11078,11080,11082,11083,11086,11087,11088,11092,11093,11096,11099,11102,11103,11104,11108,11111,11112,11114,11115,11117,11119,11120,11121,11123,11125,11126,11130,11133,11138,11139,11140,11142,11143,11146,11148,11150,11152,11154,11156,11158,11160,11163,11165,11167,11168,11170,11171,11172,11174,11175,11177,11178,11181,11182,11184,11189,11190,11192,11194,11195,11196,11200,11201,11202,11203,11206,11207,11208,11209, +11213,11216,11217,11218,11221,11223,11226,11227,11229,11231,11232,11236,11237,11239,11240,11241,11242,11245,11247,11249,11250,11252,11253,11256,11257,11259,11261,11262,11264,11267,11268,11269,11272,11275,11276,11279,11280,11282,11283,11284,11286,11289,11293,11294,11296,11297,11300,11302,11305,11306,11308,11310,11311,11314,11316,11318,11319,11321,11324,11325,11327,11329,11330,11331,11333,11334,11335,11339,11340,11345,11348,11349,11352,11355,11357,11360,11362,11363,11364,11366,11367,11368,11372,11373,11374,11377,11379,11380,11384,11387,11388,11394,11396,11398,11399,11400,11401,11403,11404,11407,11409,11410,11412,11414,11415,11418,11422,11423,11425,11427,11431,11432,11433,11434,11437,11440,11441,11444,11445,11448,11449,11451,11453,11455,11457,11458,11461,11464,11465,11467,11468,11469,11471,11473,11474,11475,11476,11479,11480,11481,11484,11485,11487,11489,11490,11491,11493,11494,11496,11498,11500,11502,11503,11507,11508,11510,11512,11514,11518,11520,11521,11523,11524,11526,11527,11529,11533,11534,11535,11536,11538,11539,11541,11542,11544,11547,11548,11551,11555,11556,11557,11561,11562,11563,11565,11566,11570,11571,11575,11577,11579,11582,11584,11585,11587,11590,11591,11593,11595,11598,11601,11603,11604,11605,11608,11609,11611,11612,11613,11614,11617,11620,11621,11624,11625,11628,11630,11633,11636,11637,11640,11641,11643,11646,11647,11651,11654,11655,11656,11658,11659,11662,11664,11666,11668,11670,11671,11673,11677,11679,11680,11682,11685,11686,11689,11691,11692,11696,11697,11698,11700,11704,11706,11708,11709,11711,11713,11714,11716,11719,11720,11721,11723,11724,11725,11727,11732,11734,11735,11737,11740,11742,11744,11745,11747,11748,11749,11754,11756,11758,11760,11762,11763,11766,11767,11771,11772,11773,11775,11777,11778,11779,11781,11784,11786,11787,11788,11790,11792,11794,11797,11799,11801,11802,11805,11810,11812,11814,11816,11817,11818,11820,11824,11825,11826,11827,11829,11833,11834,11835,11839,11840,11842,11843,11844,11845,11847,11848,11852,11854,11856,11857,11859,11862,11863,11866,11867,11868,11870,11873,11875,11877, +11879,11880,11883,11884,11887,11888,11891,11892,11893,11895,11896,11898,11901,11905,11906,11908,11910,11913,11916,11917,11920,11921,11923,11924,11926,11930,11931,11933,11935,11936,11938,11939,11940,11941,11943,11944,11946,11948,11949,11951,11954,11956,11957,11958,11962,11965,11966,11967,11968,11970,11971,11974,11975,11978,11979,11982,11983,11986,11987,11988,11992,11993,11994,11995,11999,12002,12003,12006,12008,12010,12011,12012,12015,12017,12018,12020,12023,12024,12027,12028,12031,12032,12034,12036,12038,12040,12042,12044,12045,12046,12049,12050,12053,12054,12055,12059,12061,12062,12064,12068,12070,12072,12074,12075,12077,12079,12081,12086,12087,12089,12090,12092,12094,12095,12096,12097,12099,12102,12103,12105,12108,12110,12111,12115,12116,12117,12118,12122,12124,12125,12127,12129,12131,12132,12134,12135,12136,12138,12141,12142,12144,12148,12149,12151,12154,12155,12156,12159,12161,12162,12165,12167,12169,12171,12175,12177,12179,12181,12185,12186,12189,12190,12192,12193,12198,12201,12205,12207,12208,12211,12212,12213,12215,12217,12218,12219,12222,12225,12227,12230,12231,12236,12237,12238,12241,12242,12245,12247,12248,12250,12252,12254,12256,12257,12260,12262,12263,12264,12267,12269,12270,12272,12274,12277,12281,12284,12286,12287,12288,12289,12291,12292,12294,12297,12299,12301,12303,12304,12307,12308,12309,12310,12312,12313,12315,12318,12321,12322,12325,12326,12328,12330,12333,12336,12338,12341,12344,12346,12347,12348,12350,12351,12353,12354,12355,12357,12362,12363,12366,12367,12371,12374,12375,12376,12378,12381,12383,12384,12387,12388,12391,12393,12395,12397,12398,12401,12403,12407,12408,12411,12412,12414,12415,12417,12419,12420,12423,12425,12427,12428,12430,12432,12433,12436,12438,12440,12442,12444,12447,12449,12450,12455,12456,12458,12459,12460,12462,12464,12466,12467,12469,12470,12471,12472,12475,12478,12479,12482,12485,12486,12488,12490,12491,12492,12494,12497,12499,12502,12503,12504,12506,12507,12511,12512,12513,12514,12516,12518,12520,12521,12524,12527,12529,12530,12531,12533,12536,12540,12542,12545,12547,12550, +12554,12555,12557,12558,12562,12563,12566,12569,12570,12571,12573,12576,12578,12580,12583,12584,12586,12589,12591,12593,12596,12597,12599,12600,12601,12604,12605,12607,12608,12610,12614,12615,12616,12618,12621,12622,12624,12629,12630,12632,12633,12637,12638,12640,12641,12642,12644,12647,12648,12649,12653,12654,12657,12658,12662,12664,12665,12666,12667,12670,12671,12672,12677,12678,12679,12682,12684,12686,12688,12690,12692,12695,12697,12698,12700,12702,12703,12705,12708,12711,12713,12714,12715,12719,12720,12723,12728,12730,12731,12732,12734,12737,12739,12740,12741,12742,12746,12748,12750,12754,12756,12757,12761,12762,12763,12767,12769,12770,12772,12773,12775,12776,12777,12779,12782,12783,12784,12788,12789,12790,12792,12796,12797,12799,12800,12803,12804,12806,12807,12810,12812,12814,12817,12818,12819,12821,12822,12823,12825,12827,12829,12830,12831,12836,12838,12841,12843,12844,12848,12849,12851,12853,12854,12857,12858,12860,12861,12862,12865,12866,12868,12869,12872,12875,12876,12879,12882,12883,12885,12887,12888,12889,12891,12893,12894,12896,12898,12899,12901,12903,12904,12906,12908,12909,12910,12912,12913,12917,12918,12921,12922,12924,12928,12929,12930,12933,12935,12936,12937,12940,12943,12945,12949,12951,12954,12955,12957,12959,12960,12962,12963,12964,12966,12968,12970,12971,12973,12974,12975,12979,12980,12983,12984,12987,12988,12990,12993,12995,12996,12999,13000,13002,13004,13005,13008,13011,13013,13015,13016,13017,13021,13022,13023,13027,13029,13030,13034,13036,13039,13043,13044,13046,13049,13050,13052,13053,13054,13056,13059,13061,13064,13065,13068,13070,13071,13072,13075,13076,13077,13078,13082,13084,13085,13086,13087,13091,13094,13097,13099,13102,13103,13106,13107,13109,13110,13112,13114,13116,13118,13119,13120,13122,13125,13130,13131,13134,13136,13138,13139,13142,13143,13145,13147,13150,13151,13152,13157,13158,13163,13164,13168,13169,13170,13171,13174,13175,13177,13179,13180,13182,13183,13185,13189,13191,13193,13194,13199,13200,13201,13204,13208,13209,13212,13216,13217,13219,13222,13223,13225,13226,13229,13230, +13232,13233,13234,13236,13240,13241,13244,13245,13246,13249,13251,13254,13257,13259,13260,13265,13266,13267,13271,13272,13274,13277,13278,13279,13281,13282,13284,13286,13288,13289,13291,13292,13294,13295,13298,13301,13303,13304,13305,13307,13308,13309,13312,13316,13317,13319,13321,13325,13327,13328,13331,13333,13334,13336,13337,13339,13340,13342,13343,13344,13345,13348,13349,13351,13352,13354,13356,13359,13361,13363,13367,13368,13369,13371,13372,13375,13377,13380,13381,13383,13387,13390,13391,13393,13394,13395,13397,13398,13402,13403,13404,13405,13408,13412,13413,13415,13417,13419,13422,13425,13426,13429,13430,13432,13433,13434,13436,13437,13438,13442,13444,13445,13447,13448,13449,13450,13454,13455,13459,13460,13461,13465,13467,13468,13470,13472,13473,13475,13476,13480,13481,13482,13483,13485,13490,13491,13493,13494,13499,13501,13503,13505,13506,13507,13510,13513,13517,13518,13519,13521,13523,13525,13526,13528,13532,13533,13537,13538,13539,13540,13543,13544,13546,13548,13549,13552,13555,13558,13559,13562,13564,13568,13569,13572,13574,13576,13577,13579,13580,13582,13586,13587,13589,13590,13591,13594,13597,13599,13602,13603,13605,13607,13608,13609,13613,13615,13616,13618,13619,13622,13625,13628,13629,13630,13634,13635,13637,13640,13641,13643,13644,13645,13647,13648,13650,13654,13655,13656,13659,13662,13663,13665,13667,13671,13672,13674,13675,13678,13680,13682,13683,13686,13687,13689,13690,13692,13693,13695,13696,13698,13700,13703,13704,13705,13707,13710,13712,13715,13717,13718,13721,13722,13725,13726,13728,13732,13734,13737,13738,13740,13742,13745,13747,13748,13749,13751,13752,13753,13755,13756,13758,13761,13762,13764,13768,13769,13770,13771,13774,13775,13778,13779,13781,13784,13785,13787,13788,13790,13791,13793,13794,13796,13799,13802,13803,13805,13807,13808,13809,13813,13817,13820,13821,13822,13825,13826,13827,13829,13830,13833,13834,13836,13837,13840,13841,13844,13846,13847,13848,13853,13855,13858,13859,13861,13862,13864,13867,13868,13870,13873,13874,13875,13876,13880,13881,13882,13885,13889,13892,13893,13896,13897, +13899,13901,13902,13904,13906,13908,13910,13911,13912,13916,13917,13919,13921,13925,13926,13927,13930,13932,13937,13938,13939,13941,13945,13946,13947,13948,13951,13952,13955,13956,13960,13963,13964,13965,13967,13968,13972,13973,13975,13976,13977,13979,13982,13984,13985,13987,13990,13991,13992,13996,13997,13999,14002,14003,14005,14006,14008,14010,14015,14017,14019,14021,14022,14023,14026,14027,14030,14032,14033,14034,14037,14039,14041,14042,14043,14046,14048,14050,14052,14053,14056,14057,14058,14059,14061,14062,14064,14065,14069,14071,14072,14074,14076,14079,14081,14083,14084,14085,14086,14090,14091,14093,14094,14096,14097,14098,14100,14101,14103,14104,14106,14107,14110,14113,14114,14116,14118,14122,14123,14125,14126,14127,14129,14131,14133,14137,14138,14139,14140,14142,14146,14147,14149,14150,14151,14153,14156,14158,14159,14160,14163,14166,14168,14171,14172,14175,14179,14180,14183,14185,14187,14189,14190,14192,14194,14195,14197,14198,14201,14202,14203,14206,14209,14213,14214,14217,14218,14221,14222,14223,14225,14227,14230,14231,14233,14237,14239,14240,14242,14244,14245,14247,14248,14251,14252,14254,14257,14260,14261,14263,14264,14265,14267,14268,14270,14273,14274,14275,14277,14278,14282,14284,14288,14289,14290,14292,14293,14295,14299,14301,14303,14306,14307,14309,14310,14314,14317,14320,14322,14324,14325,14327,14329,14330,14331,14336,14337,14341,14344,14345,14347,14350,14351,14353,14355,14359,14360,14362,14365,14368,14370,14373,14375,14376,14377,14380,14381,14382,14386,14387,14388,14389,14393,14394,14397,14401,14402,14407,14408,14410,14411,14413,14414,14416,14419,14420,14421,14424,14428,14429,14431,14432,14433,14434,14436,14438,14440,14441,14444,14445,14447,14448,14452,14454,14455,14457,14459,14462,14463,14465,14467,14469,14471,14472,14474,14475,14476,14480,14483,14485,14486,14489,14491,14494,14495,14497,14498,14500,14501,14503,14504,14505,14506,14509,14513,14514,14516,14517,14519,14520,14522,14525,14528,14531,14534,14537,14538,14543,14544,14545,14547,14550,14552,14555,14556,14560,14562,14565,14568,14569,14572,14573, +14575,14576,14577,14578,14580,14581,14584,14589,14592,14594,14599,14600,14602,14603,14604,14606,14607,14609,14610,14614,14615,14616,14619,14622,14623,14626,14627,14628,14630,14631,14633,14634,14638,14641,14644,14645,14646,14647,14650,14652,14654,14655,14657,14659,14661,14663,14664,14667,14670,14671,14674,14675,14676,14678,14681,14683,14685,14687,14690,14692,14696,14698,14699,14701,14702,14703,14704,14707,14708,14709,14712,14714,14716,14717,14718,14722,14726,14729,14731,14732,14733,14735,14737,14738,14739,14740,14744,14745,14747,14752,14755,14759,14762,14764,14768,14769,14771,14772,14773,14775,14776,14778,14780,14782,14783,14785,14787,14791,14792,14793,14794,14797,14801,14802,14803,14806,14808,14809,14813,14814,14817,14818,14820,14823,14825,14826,14828,14830,14831,14832,14837,14839,14840,14842,14846,14847,14851,14854,14856,14858,14860,14861,14863,14864,14865,14866,14869,14873,14876,14877,14878,14881,14883,14884,14887,14888,14889,14892,14893,14895,14898,14902,14903,14905,14906,14907,14912,14915,14916,14917,14920,14921,14922,14923,14926,14927,14930,14931,14935,14937,14938,14941,14942,14943,14945,14946,14948,14950,14951,14953,14956,14958,14960,14961,14963,14964,14966,14967,14971,14975,14977,14978,14979,14981,14982,14984,14985,14989,14990,14991,14995,14996,14998,15000,15001,15003,15004,15007,15010,15011,15012,15014,15016,15017,15019,15020,15022,15023,15026,15028,15030,15034,15036,15037,15039,15040,15044,15045,15047,15050,15052,15054,15057,15058,15062,15064,15065,15066,15069,15072,15074,15076,15078,15079,15082,15083,15084,15088,15089,15091,15093,15095,15096,15102,15104,15106,15107,15108,15112,15115,15117,15119,15121,15124,15126,15130,15131,15132,15133,15136,15137,15139,15140,15141,15145,15147,15150,15154,15155,15156,15159,15164,15165,15167,15168,15171,15172,15175,15177,15178,15180,15184,15185,15188,15190,15191,15194,15196,15198,15203,15205,15206,15207,15208,15212,15213,15215,15216,15220,15221,15224,15226,15227,15228,15231,15233,15235,15237,15239,15241,15244,15245,15248,15249,15251,15252,15257,15258,15260,15262,15265,15268, +15269,15272,15274,15276,15277,15280,15284,15285,15287,15288,15290,15291,15293,15294,15295,15297,15298,15300,15304,15306,15308,15310,15312,15313,15316,15318,15320,15322,15323,15324,15326,15327,15328,15330,15334,15336,15338,15339,15343,15344,15347,15350,15351,15354,15357,15358,15360,15361,15364,15365,15368,15371,15374,15376,15377,15379,15381,15383,15384,15385,15387,15388,15390,15393,15394,15397,15398,15401,15404,15406,15407,15408,15410,15411,15413,15414,15415,15418,15420,15422,15423,15424,15426,15428,15431,15433,15435,15436,15439,15440,15441,15443,15445,15447,15448,15451,15452,15453,15455,15456,15458,15461,15463,15465,15467,15469,15470,15471,15472,15476,15479,15481,15483,15485,15486,15487,15489,15490,15492,15494,15496,15500,15501,15503,15504,15505,15508,15509,15511,15512,15513,15515,15516,15519,15521,15522,15524,15526,15527,15528,15529,15531,15532,15536,15537,15541,15545,15547,15549,15550,15553,15554,15557,15559,15560,15562,15564,15566,15568,15569,15571,15572,15575,15576,15578,15579,15584,15585,15589,15590,15592,15593,15594,15598,15600,15601,15604,15607,15610,15612,15614,15616,15617,15618,15621,15622,15626,15629,15630,15633,15634,15637,15638,15639,15645,15647,15650,15651,15654,15655,15658,15659,15662,15663,15664,15666,15668,15671,15672,15673,15676,15678,15682,15683,15684,15689,15690,15694,15695,15696,15699,15700,15702,15705,15706,15708,15710,15712,15713,15716,15718,15719,15721,15725,15727,15728,15729,15733,15734,15735,15736,15740,15742,15743,15745,15747,15749,15751,15752,15753,15754,15756,15758,15761,15763,15765,15767,15768,15769,15771,15773,15775,15779,15781,15783,15784,15787,15791,15792,15793,15795,15797,15798,15799,15801,15804,15806,15807,15810,15812,15813,15818,15820,15821,15823,15824,15826,15827,15828,15829,15831,15833,15834,15838,15840,15842,15844,15845,15847,15849,15850,15852,15855,15856,15858,15860,15861,15862,15865,15866,15868,15870,15874,15875,15876,15877,15879,15881,15883,15886,15887,15892,15893,15894,15895,15899,15901,15902,15903,15905,15907,15911,15912,15914,15917,15919,15920,15921,15924,15926,15928,15929, +15930,15933,15935,15936,15938,15939,15941,15942,15947,15948,15949,15953,15954,15955,15958,15959,15961,15962,15964,15966,15968,15969,15970,15972,15973,15975,15977,15982,15983,15984,15986,15989,15991,15993,15995,15997,15998,16000,16002,16003,16006,16007,16008,16011,16013,16016,16018,16019,16022,16023,16024,16027,16028,16029,16030,16032,16034,16037,16038,16040,16041,16043,16046,16047,16049,16050,16051,16053,16054,16057,16058,16063,16066,16068,16070,16072,16075,16076,16077,16081,16083,16084,16087,16091,16093,16094,16095,16097,16099,16100,16103,16104,16106,16108,16109,16110,16115,16117,16120,16122,16124,16132,16134,16136,16137,16140,16143,16144,16148,16151,16153,16154,16157,16159,16161,16163,16165,16167,16172,16174,16175,16176,16177,16179,16181,16183,16184,16187,16189,16190,16191,16196,16197,16200,16203,16208,16209,16211,16214,16216,16218,16219,16222,16223,16225,16228,16231,16232,16233,16237,16238,16240,16241,16243,16246,16247,16248,16250,16251,16253,16254,16259,16261,16262,16265,16266,16268,16269,16271,16274,16275,16276,16279,16280,16281,16282,16284,16286,16288,16290,16293,16294,16297,16301,16303,16304,16307,16309,16310,16312,16314,16319,16321,16323,16326,16329,16331,16333,16335,16336,16340,16343,16344,16346,16347,16349,16350,16354,16355,16357,16358,16360,16361,16363,16367,16368,16370,16372,16374,16377,16378,16381,16382,16383,16384,16387,16389,16394,16395,16399,16400,16401,16405,16406,16408,16409,16410,16412,16414,16417,16420,16421,16423,16425,16429,16432,16435,16436,16438,16440,16441,16444,16446,16447,16450,16451,16452,16453,16455,16456,16458,16459,16462,16463,16465,16466,16467,16469,16470,16471,16475,16476,16477,16479,16481,16483,16484,16486,16487,16490,16493,16495,16496,16497,16498,16501,16504,16506,16508,16509,16511,16512,16513,16515,16517,16520,16523,16524,16526,16527,16531,16533,16535,16536,16539,16546,16548,16550,16553,16554,16555,16558,16559,16560,16562,16563,16565,16566,16570,16572,16573,16576,16578,16579,16581,16583,16584,16586,16588,16589,16592,16594,16598,16601,16602,16605,16609,16613,16614,16615,16617,16619, +16620,16622,16623,16625,16627,16628,16629,16631,16632,16634,16635,16638,16641,16642,16645,16647,16649,16652,16653,16654,16657,16659,16661,16663,16664,16665,16668,16671,16672,16674,16676,16677,16681,16682,16683,16685,16687,16689,16691,16692,16695,16697,16699,16700,16703,16705,16706,16708,16710,16711,16715,16717,16720,16723,16726,16727,16729,16730,16732,16733,16734,16737,16739,16740,16742,16745,16747,16748,16749,16751,16753,16755,16758,16759,16762,16763,16765,16769,16772,16774,16775,16778,16779,16782,16783,16785,16788,16790,16792,16794,16796,16799,16800,16801,16805,16806,16808,16809,16811,16812,16814,16815,16816,16818,16819,16822,16825,16827,16829,16830,16834,16836,16838,16839,16841,16843,16845,16846,16848,16850,16851,16852,16855,16857,16858,16860,16864,16865,16868,16870,16871,16873,16874,16876,16877,16878,16880,16881,16886,16887,16890,16894,16895,16896,16899,16901,16904,16906,16907,16908,16913,16914,16915,16918,16919,16920,16922,16923,16924,16928,16929,16930,16932,16934,16935,16938,16939,16942,16944,16948,16950,16951,16953,16956,16959,16961,16962,16966,16967,16969,16970,16973,16975,16976,16978,16979,16982,16983,16986,16987,16990,16991,16992,16997,17000,17002,17003,17004,17009,17010,17012,17013,17017,17018,17020,17021,17023,17025,17027,17028,17032,17036,17037,17038,17042,17044,17045,17047,17049,17051,17052,17054,17055,17057,17059,17061,17066,17067,17068,17071,17074,17075,17076,17078,17081,17082,17085,17088,17090,17091,17092,17094,17096,17097,17098,17101,17102,17103,17105,17108,17109,17113,17115,17117,17120,17121,17123,17126,17127,17128,17130,17131,17133,17134,17136,17137,17140,17141,17144,17146,17150,17153,17154,17155,17159,17160,17162,17163,17164,17168,17170,17173,17176,17177,17179,17180,17182,17184,17187,17190,17191,17194,17196,17197,17200,17202,17203,17206,17207,17208,17212,17216,17218,17219,17222,17224,17227,17228,17229,17230,17235,17236,17238,17242,17243,17245,17247,17251,17252,17254,17255,17256,17261,17264,17265,17266,17269,17270,17271,17275,17277,17278,17280,17282,17283,17288,17290,17291,17292,17295,17297,17298, +17300,17302,17305,17306,17307,17308,17311,17315,17317,17320,17323,17325,17330,17332,17333,17334,17336,17338,17340,17341,17343,17347,17348,17349,17350,17352,17354,17355,17357,17358,17359,17362,17363,17364,17365,17368,17369,17370,17371,17373,17375,17376,17379,17382,17384,17385,17389,17392,17393,17394,17397,17399,17401,17404,17406,17408,17411,17414,17415,17417,17418,17421,17422,17425,17426,17427,17429,17430,17434,17435,17437,17441,17443,17444,17448,17450,17452,17453,17455,17459,17460,17461,17464,17466,17468,17470,17471,17472,17474,17477,17478,17480,17483,17485,17488,17490,17492,17493,17495,17496,17499,17501,17504,17505,17508,17510,17511,17513,17515,17516,17519,17521,17522,17523,17528,17530,17531,17534,17535,17540,17543,17545,17546,17548,17549,17552,17553,17554,17557,17558,17559,17563,17564,17566,17567,17568,17569,17572,17574,17576,17580,17581,17583,17584,17587,17588,17589,17593,17594,17595,17596,17598,17600,17605,17606,17607,17611,17613,17615,17617,17619,17621,17622,17626,17629,17630,17632,17635,17637,17640,17641,17645,17647,17648,17649,17651,17654,17655,17659,17660,17662,17664,17666,17667,17669,17670,17672,17675,17677,17678,17680,17682,17684,17685,17687,17688,17690,17691,17695,17696,17697,17702,17703,17707,17709,17711,17712,17714,17715,17717,17718,17720,17721,17724,17726,17727,17732,17733,17735,17736,17739,17742,17743,17745,17747,17750,17752,17755,17758,17759,17760,17764,17765,17766,17768,17770,17771,17774,17775,17776,17778,17781,17782,17784,17785,17788,17790,17791,17793,17794,17797,17800,17802,17803,17805,17808,17810,17812,17813,17814,17818,17820,17821,17825,17827,17829,17835,17836,17840,17841,17842,17844,17845,17848,17850,17853,17855,17856,17857,17860,17864,17865,17868,17870,17872,17873,17874,17875,17877,17878,17880,17882,17885,17887,17888,17891,17893,17894,17895,17896,17899,17901,17903,17904,17906,17908,17910,17911,17913,17914,17916,17918,17919,17923,17926,17929,17930,17931,17935,17938,17939,17941,17943,17944,17947,17948,17950,17954,17956,17958,17960,17961,17964,17966,17967,17970,17972,17973,17977,17978,17980,17984, +17986,17987,17988,17990,17992,17993,17994,17995,17997,17999,18000,18002,18005,18006,18008,18011,18012,18014,18015,18016,18018,18019,18021,18025,18028,18029,18032,18034,18035,18036,18038,18039,18040,18042,18045,18048,18049,18052,18053,18054,18057,18060,18062,18063,18066,18067,18069,18071,18072,18073,18077,18078,18080,18083,18085,18086,18089,18090,18093,18094,18098,18100,18104,18105,18107,18108,18110,18111,18114,18118,18119,18121,18124,18126,18130,18132,18133,18136,18137,18140,18142,18143,18144,18148,18150,18152,18154,18155,18157,18159,18161,18162,18163,18166,18168,18171,18172,18175,18178,18180,18181,18183,18186,18188,18189,18192,18196,18197,18198,18199,18203,18205,18208,18209,18210,18212,18214,18215,18216,18218,18220,18222,18225,18226,18228,18232,18233,18234,18235,18237,18241,18242,18243,18244,18246,18249,18251,18252,18254,18256,18258,18262,18263,18266,18268,18271,18273,18274,18278,18280,18282,18284,18286,18287,18290,18292,18294,18296,18297,18298,18300,18305,18309,18317,18318,18321,18324,18326,18327,18331,18332,18334,18335,18338,18339,18340,18344,18345,18347,18348,18350,18351,18354,18358,18359,18360,18363,18364,18366,18367,18369,18371,18373,18376,18377,18378,18379,18381,18382,18384,18389,18390,18391,18393,18397,18398,18400,18402,18403,18406,18407,18408,18413,18414,18416,18419,18421,18422,18425,18426,18427,18430,18431,18432,18433,18437,18438,18439,18442,18444,18446,18447,18448,18450,18453,18455,18457,18460,18461,18464,18467,18468,18471,18473,18475,18476,18478,18479,18480,18481,18484,18486,18487,18489,18494,18495,18498,18499,18502,18505,18506,18507,18508,18511,18514,18516,18519,18520,18522,18523,18525,18526,18528,18529,18532,18535,18536,18538,18539,18541,18543,18545,18546,18549,18552,18555,18557,18559,18563,18565,18566,18567,18569,18571,18572,18574,18575,18576,18578,18580,18582,18584,18585,18587,18589,18590,18591,18592,18595,18597,18601,18603,18604,18607,18610,18611,18612,18614,18615,18619,18620,18621,18623,18625,18626,18627,18629,18630,18631,18635,18637,18641,18642,18645,18648,18649,18653,18654,18656,18657,18659,18660, +18663,18665,18666,18667,18669,18670,18672,18677,18680,18682,18684,18686,18688,18689,18690,18691,18694,18695,18696,18697,18699,18700,18703,18706,18710,18711,18712,18715,18717,18720,18723,18724,18727,18728,18730,18732,18734,18735,18738,18739,18741,18745,18746,18748,18750,18752,18754,18756,18757,18760,18762,18763,18766,18767,18770,18771,18772,18774,18778,18781,18782,18785,18787,18788,18789,18790,18792,18793,18796,18797,18798,18799,18801,18805,18808,18811,18812,18814,18817,18820,18821,18822,18824,18826,18830,18831,18833,18834,18836,18837,18838,18841,18845,18848,18850,18851,18852,18853,18857,18859,18862,18865,18867,18870,18873,18875,18878,18879,18880,18882,18884,18886,18887,18890,18892,18893,18894,18899,18900,18901,18904,18908,18909,18912,18916,18917,18919,18920,18922,18926,18927,18928,18930,18932,18934,18935,18936,18941,18943,18944,18946,18948,18952,18953,18954,18956,18959,18961,18964,18965,18967,18971,18973,18975,18977,18979,18980,18981,18983,18984,18985,18989,18990,18992,18995,18996,18999,19000,19004,19005,19007,19009,19010,19011,19014,19016,19018,19020,19021,19024,19028,19030,19033,19035,19036,19039,19040,19041,19043,19045,19047,19049,19051,19052,19053,19057,19058,19060,19062,19066,19070,19071,19072,19074,19075,19078,19080,19082,19083,19087,19089,19091,19092,19093,19097,19098,19100,19101,19103,19104,19107,19109,19111,19114,19115,19117,19121,19122,19124,19126,19128,19131,19132,19134,19136,19137,19139,19140,19142,19144,19145,19146,19147,19150,19151,19152,19154,19155,19156,19159,19160,19162,19164,19167,19170,19171,19173,19175,19176,19178,19180,19181,19182,19183,19185,19186,19190,19192,19193,19194,19195,19198,19199,19201,19202,19204,19207,19211,19212,19214,19215,19218,19220,19221,19222,19225,19227,19228,19231,19233,19234,19237,19238,19240,19243,19244,19246,19250,19253,19255,19256,19258,19259,19262,19264,19266,19268,19269,19271,19274,19275,19279,19280,19281,19284,19285,19288,19290,19292,19295,19297,19298,19299,19303,19306,19308,19311,19313,19316,19318,19319,19320,19323,19325,19326,19328,19329,19332,19336,19337,19339,19340, +19341,19342,19346,19348,19349,19351,19352,19353,19354,19356,19358,19359,19361,19362,19363,19366,19369,19373,19376,19377,19380,19382,19385,19386,19387,19389,19390,19392,19394,19396,19398,19400,19402,19403,19404,19405,19409,19412,19415,19417,19420,19421,19422,19427,19430,19431,19433,19435,19439,19440,19442,19444,19446,19450,19453,19454,19455,19458,19460,19461,19463,19466,19467,19471,19473,19475,19477,19478,19479,19482,19487,19488,19490,19491,19492,19494,19499,19502,19503,19504,19506,19507,19509,19511,19512,19517,19519,19520,19522,19524,19525,19529,19530,19531,19533,19538,19539,19540,19544,19547,19548,19549,19553,19555,19556,19558,19560,19562,19565,19566,19569,19571,19572,19573,19575,19579,19582,19583,19584,19585,19587,19589,19591,19593,19595,19597,19598,19601,19603,19604,19605,19606,19608,19610,19613,19614,19617,19619,19621,19625,19626,19630,19631,19634,19635,19637,19638,19642,19644,19645,19647,19648,19651,19652,19655,19656,19658,19659,19660,19662,19665,19667,19670,19673,19675,19676,19677,19678,19680,19681,19684,19686,19687,19691,19692,19694,19697,19698,19699,19701,19702,19704,19705,19707,19708,19711,19712,19716,19717,19719,19720,19723,19724,19726,19728,19730,19731,19732,19736,19737,19739,19741,19742,19743,19746,19751,19752,19753,19755,19756,19758,19759,19761,19763,19764,19766,19767,19768,19771,19772,19773,19775,19776,19778,19779,19781,19783,19784,19786,19787,19789,19793,19795,19798,19800,19803,19804,19807,19810,19813,19814,19815,19817,19818,19819,19822,19823,19824,19825,19827,19828,19834,19837,19841,19842,19843,19846,19847,19848,19849,19851,19853,19856,19857,19858,19860,19861,19863,19865,19867,19869,19870,19872,19874,19875,19876,19880,19882,19884,19886,19889,19892,19893,19895,19896,19897,19899,19900,19904,19905,19906,19909,19912,19913,19914,19916,19917,19920,19925,19927,19930,19931,19932,19934,19937,19938,19939,19942,19944,19946,19948,19949,19951,19954,19955,19958,19961,19964,19965,19967,19970,19971,19972,19974,19975,19977,19980,19983,19985,19988,19989,19991,19992,19994,19996,19997,19998,19999,20001,20005,20008,20012, +20013,20014,20017,20018,20019,20021,20022,20024,20026,20028,20032,20033,20035,20037,20038,20042,20043,20045,20046,20048,20049,20050,20053,20056,20058,20059,20061,20062,20064,20068,20069,20070,20071,20074,20076,20077,20079,20084,20085,20090,20091,20093,20094,20098,20102,20103,20104,20108,20110,20111,20112,20114,20116,20117,20118,20119,20121,20122,20124,20127,20131,20132,20135,20136,20138,20139,20140,20143,20145,20146,20149,20153,20155,20156,20157,20158,20161,20162,20164,20167,20171,20173,20174,20176,20177,20178,20179,20182,20184,20186,20187,20191,20194,20196,20197,20200,20201,20203,20204,20205,20206,20210,20211,20213,20215,20217,20222,20223,20224,20227,20230,20233,20234,20235,20237,20240,20241,20243,20245,20246,20247,20248,20250,20251,20253,20257,20258,20261,20263,20266,20268,20269,20273,20275,20277,20278,20280,20282,20284,20285,20287,20288,20290,20293,20294,20296,20298,20300,20302,20305,20306,20307,20308,20311,20312,20313,20314,20316,20320,20321,20323,20324,20326,20329,20336,20338,20341,20342,20343,20345,20347,20349,20353,20355,20356,20358,20359,20362,20366,20367,20368,20372,20374,20377,20378,20380,20382,20383,20386,20387,20388,20390,20391,20392,20395,20398,20400,20401,20404,20407,20408,20409,20410,20412,20416,20417,20419,20422,20424,20425,20427,20429,20430,20431,20435,20437,20440,20441,20443,20445,20447,20448,20452,20453,20455,20456,20458,20461,20465,20467,20468,20469,20470,20473,20477,20479,20481,20482,20484,20485,20488,20491,20492,20493,20494,20498,20500,20502,20504,20505,20508,20509,20512,20513,20514,20515,20518,20519,20520,20524,20528,20529,20530,20534,20535,20540,20544,20546,20548,20549,20550,20552,20554,20557,20558,20561,20563,20566,20568,20570,20573,20574,20576,20577,20580,20582,20583,20586,20587,20589,20590,20594,20596,20597,20598,20601,20603,20604,20605,20608,20609,20610,20611,20615,20617,20618,20619,20622,20623,20627,20631,20635,20636,20637,20640,20642,20643,20644,20648,20649,20650,20653,20655,20656,20659,20660,20661,20664,20665,20668,20672,20674,20676,20678,20679,20684,20686,20687,20688,20690,20692,20693, +20694,20695,20697,20701,20702,20704,20705,20706,20708,20710,20711,20712,20713,20715,20721,20723,20725,20727,20729,20730,20731,20734,20735,20737,20739,20740,20743,20744,20746,20747,20750,20752,20756,20759,20760,20763,20765,20767,20771,20772,20776,20777,20779,20780,20781,20784,20785,20787,20789,20790,20792,20793,20794,20799,20801,20802,20804,20806,20809,20812,20815,20818,20821,20822,20824,20825,20827,20829,20831,20834,20837,20839,20841,20843,20845,20846,20847,20848,20850,20852,20853,20854,20856,20858,20862,20863,20867,20869,20870,20871,20874,20878,20881,20882,20884,20885,20886,20888,20891,20893,20894,20895,20896,20898,20902,20904,20905,20909,20910,20911,20914,20916,20918,20919,20921,20922,20925,20926,20929,20932,20936,20939,20941,20944,20945,20948,20951,20953,20957,20959,20961,20962,20964,20966,20968,20970,20971,20973,20974,20976,20978,20980,20981,20983,20984,20985,20986,20988,20990,20992,20997,21001,21002,21005,21007,21008,21009,21014,21017,21018,21020,21021,21026,21028,21030,21033,21037,21040,21041,21044,21045,21047,21048,21050,21051,21054,21059,21060,21062,21063,21064,21066,21068,21069,21073,21074,21075,21079,21080,21083,21084,21085,21089,21091,21092,21094,21096,21099,21101,21103,21104,21106,21107,21108,21109,21111,21114,21116,21119,21120,21121,21123,21126,21129,21131,21134,21135,21137,21139,21140,21141,21143,21145,21146,21147,21148,21150,21151,21153,21157,21161,21163,21164,21165,21167,21168,21173,21174,21177,21178,21181,21182,21184,21186,21188,21190,21191,21192,21194,21195,21198,21200,21201,21204,21208,21211,21212,21213,21216,21217,21221,21222,21224,21226,21227,21229,21230,21232,21235,21236,21239,21241,21243,21244,21246,21249,21250,21254,21255,21257,21258,21261,21262,21264,21265,21268,21270,21271,21274,21276,21277,21282,21283,21287,21290,21292,21295,21297,21300,21302,21305,21306,21308,21309,21310,21312,21316,21319,21320,21322,21323,21326,21328,21329,21330,21332,21334,21336,21337,21339,21341,21343,21345,21347,21349,21351,21356,21357,21360,21361,21363,21367,21368,21369,21371,21372,21373,21376,21377,21380,21383,21384, +21387,21389,21391,21392,21393,21394,21396,21397,21399,21401,21404,21405,21407,21408,21410,21411,21415,21416,21417,21418,21421,21422,21424,21425,21427,21429,21431,21432,21436,21437,21438,21440,21442,21444,21448,21452,21454,21457,21459,21460,21463,21464,21467,21469,21471,21473,21474,21475,21478,21480,21483,21484,21486,21487,21489,21490,21492,21495,21497,21498,21503,21504,21507,21509,21510,21512,21513,21514,21516,21517,21520,21524,21525,21526,21529,21532,21533,21534,21536,21537,21542,21543,21544,21547,21548,21549,21552,21554,21555,21556,21558,21559,21561,21566,21568,21571,21572,21574,21575,21576,21577,21580,21582,21584,21586,21588,21589,21592,21593,21594,21597,21598,21602,21604,21605,21606,21608,21609,21610,21614,21616,21619,21621,21624,21626,21628,21631,21633,21637,21638,21641,21643,21645,21648,21651,21652,21654,21656,21657,21659,21665,21666,21667,21670,21671,21672,21675,21676,21679,21680,21681,21683,21685,21686,21688,21689,21693,21694,21697,21700,21702,21705,21708,21712,21715,21717,21718,21720,21721,21724,21725,21727,21729,21733,21735,21736,21740,21741,21744,21745,21749,21750,21751,21753,21755,21756,21758,21759,21762,21766,21771,21773,21774,21776,21780,21781,21785,21788,21789,21791,21792,21795,21797,21798,21800,21801,21805,21806,21807,21810,21812,21814,21818,21821,21822,21823,21826,21827,21830,21833,21836,21839,21840,21841,21844,21845,21846,21847,21850,21851,21852,21854,21855,21856,21861,21863,21866,21867,21868,21872,21875,21876,21878,21881,21883,21884,21885,21886,21889,21891,21894,21895,21898,21900,21901,21904,21905,21906,21907,21909,21913,21914,21916,21918,21921,21922,21925,21926,21928,21930,21931,21934,21936,21938,21939,21941,21942,21943,21947,21949,21950,21953,21954,21955,21957,21958,21961,21963,21964,21967,21968,21970,21972,21974,21977,21979,21981,21984,21986,21988,21989,21990,21992,21995,21996,21998,21999,22000,22004,22005,22010,22011,22013,22015,22016,22017,22019,22021,22022,22023,22025,22026,22028,22030,22031,22032,22035,22037,22038,22040,22041,22042,22044,22046,22047,22051,22052,22054,22055,22057,22058,22060, +22064,22065,22068,22070,22071,22073,22074,22079,22080,22083,22084,22086,22087,22089,22093,22094,22095,22096,22100,22103,22105,22106,22107,22108,22115,22118,22119,22120,22124,22125,22127,22129,22131,22132,22134,22138,22139,22142,22144,22145,22147,22149,22151,22153,22154,22156,22157,22158,22161,22162,22165,22167,22169,22172,22173,22177,22178,22179,22180,22182,22183,22187,22188,22190,22191,22192,22195,22197,22198,22200,22201,22204,22206,22211,22213,22214,22215,22220,22221,22223,22224,22226,22229,22231,22233,22234,22236,22237,22239,22240,22242,22245,22246,22250,22252,22253,22254,22256,22257,22258,22260,22264,22268,22270,22272,22273,22276,22278,22279,22281,22284,22286,22287,22290,22291,22295,22296,22298,22299,22302,22303,22306,22308,22310,22312,22314,22317,22320,22324,22327,22328,22331,22333,22335,22339,22340,22341,22342,22344,22346,22348,22349,22351,22354,22356,22357,22359,22363,22366,22368,22370,22374,22375,22377,22380,22381,22384,22385,22386,22387,22391,22393,22395,22399,22401,22402,22404,22406,22409,22410,22412,22413,22416,22418,22420,22422,22425,22429,22430,22433,22435,22436,22437,22440,22445,22446,22447,22451,22452,22453,22456,22458,22459,22462,22463,22465,22467,22468,22471,22473,22474,22477,22481,22483,22484,22485,22488,22489,22491,22494,22495,22498,22500,22501,22504,22507,22511,22512,22514,22515,22517,22519,22520,22522,22523,22524,22526,22529,22532,22535,22537,22538,22539,22540,22543,22544,22545,22546,22549,22552,22554,22555,22559,22560,22562,22564,22565,22566,22568,22569,22572,22574,22577,22578,22582,22585,22586,22587,22589,22591,22593,22595,22597,22598,22601,22602,22607,22608,22610,22612,22613,22614,22617,22620,22623,22624,22627,22628,22630,22634,22636,22638,22642,22643,22644,22645,22649,22651,22652,22654,22658,22659,22661,22663,22664,22665,22668,22671,22673,22674,22676,22677,22678,22681,22682,22684,22687,22688,22690,22692,22694,22697,22698,22700,22702,22703,22706,22709,22710,22711,22713,22715,22718,22720,22721,22723,22725,22728,22730,22731,22734,22736,22738,22740,22744,22747,22749,22750,22754,22755,22757,22760, +22763,22766,22767,22768,22770,22772,22774,22777,22779,22781,22782,22784,22789,22790,22791,22792,22794,22797,22798,22800,22801,22803,22808,22810,22811,22813,22815,22816,22819,22820,22822,22823,22825,22827,22828,22830,22833,22836,22838,22839,22841,22842,22846,22847,22849,22852,22855,22856,22857,22859,22861,22863,22864,22866,22868,22869,22871,22872,22875,22876,22879,22882,22883,22884,22885,22888,22891,22892,22894,22898,22899,22901,22903,22904,22905,22909,22910,22911,22915,22916,22918,22921,22924,22928,22929,22930,22933,22934,22937,22938,22942,22945,22947,22948,22950,22951,22955,22956,22959,22960,22963,22965,22967,22968,22969,22971,22974,22975,22977,22981,22983,22985,22987,22988,22990,22992,22993,22995,22998,22999,23001,23004,23006,23007,23009,23011,23013,23014,23018,23020,23023,23024,23025,23029,23030,23031,23033,23035,23036,23038,23040,23041,23045,23047,23050,23051,23052,23053,23055,23058,23060,23061,23064,23067,23068,23071,23073,23075,23077,23079,23084,23085,23086,23088,23090,23093,23094,23098,23100,23104,23106,23108,23109,23110,23114,23116,23117,23118,23119,23121,23124,23125,23127,23129,23131,23135,23137,23138,23139,23140,23143,23146,23149,23152,23153,23155,23156,23158,23159,23160,23164,23167,23170,23172,23173,23175,23177,23179,23182,23185,23186,23188,23191,23193,23196,23198,23199,23201,23203,23205,23206,23209,23211,23212,23214,23217,23221,23222,23224,23225,23228,23230,23231,23232,23233,23235,23236,23240,23241,23242,23244,23246,23250,23254,23256,23257,23260,23261,23262,23263,23266,23268,23270,23271,23272,23276,23277,23279,23280,23281,23283,23287,23288,23290,23291,23292,23293,23295,23297,23299,23300,23301,23302,23304,23307,23312,23313,23314,23317,23318,23320,23321,23323,23325,23327,23328,23329,23331,23332,23336,23337,23342,23345,23346,23350,23354,23355,23357,23358,23359,23361,23363,23364,23365,23367,23370,23373,23375,23377,23378,23380,23383,23385,23388,23389,23392,23394,23395,23398,23401,23402,23404,23407,23409,23411,23412,23413,23417,23418,23419,23421,23423,23425,23426,23427,23430,23431,23435,23436,23439,23440,23442, +23446,23448,23450,23452,23453,23455,23457,23459,23462,23463,23467,23470,23471,23474,23476,23477,23480,23481,23482,23485,23487,23489,23492,23494,23496,23497,23500,23502,23506,23508,23509,23512,23513,23515,23518,23520,23524,23526,23527,23530,23532,23533,23535,23537,23538,23539,23541,23543,23545,23546,23548,23552,23553,23556,23558,23560,23561,23562,23563,23567,23568,23570,23572,23575,23577,23579,23580,23583,23586,23589,23590,23593,23594,23595,23599,23600,23601,23602,23604,23607,23611,23615,23617,23618,23620,23622,23625,23627,23631,23633,23634,23638,23639,23641,23645,23647,23648,23649,23650,23652,23654,23655,23656,23658,23661,23663,23666,23667,23668,23671,23675,23678,23680,23683,23687,23689,23691,23692,23696,23697,23699,23702,23703,23704,23708,23710,23713,23714,23716,23719,23721,23722,23724,23725,23727,23730,23733,23734,23737,23740,23741,23743,23745,23750,23751,23753,23755,23758,23759,23760,23762,23763,23766,23767,23770,23772,23775,23776,23778,23780,23782,23786,23787,23788,23791,23792,23795,23796,23798,23799,23800,23804,23805,23809,23810,23811,23814,23816,23819,23820,23824,23827,23828,23830,23831,23832,23833,23835,23839,23841,23844,23845,23850,23854,23855,23856,23859,23861,23864,23867,23868,23870,23871,23873,23874,23875,23877,23878,23880,23881,23883,23884,23886,23887,23889,23891,23893,23896,23899,23900,23903,23904,23905,23908,23910,23912,23913,23917,23919,23921,23922,23924,23926,23929,23931,23932,23935,23936,23937,23940,23943,23944,23946,23947,23949,23951,23952,23953,23955,23956,23960,23962,23963,23964,23968,23969,23971,23973,23975,23976,23978,23979,23982,23983,23986,23987,23989,23993,23995,23997,24001,24004,24007,24010,24013,24017,24018,24019,24021,24022,24025,24027,24030,24031,24033,24035,24038,24039,24040,24042,24044,24047,24049,24050,24052,24053,24055,24058,24059,24061,24063,24065,24066,24067,24069,24070,24074,24076,24077,24080,24082,24084,24088,24089,24090,24095,24097,24099,24101,24103,24107,24108,24109,24111,24113,24114,24115,24118,24121,24122,24124,24126,24127,24129,24131,24134,24136,24139,24140,24144,24146,24148, +24150,24151,24153,24155,24156,24157,24160,24161,24162,24163,24166,24167,24168,24169,24172,24174,24176,24178,24179,24180,24181,24183,24186,24187,24189,24190,24192,24193,24196,24199,24201,24204,24205,24207,24208,24210,24212,24213,24215,24216,24217,24219,24220,24224,24226,24227,24228,24230,24231,24235,24238,24240,24245,24248,24249,24250,24252,24254,24255,24260,24261,24265,24266,24267,24269,24271,24273,24275,24276,24277,24279,24283,24286,24287,24288,24291,24292,24296,24297,24299,24301,24303,24304,24308,24309,24310,24312,24315,24316,24319,24322,24323,24324,24325,24328,24332,24334,24335,24336,24337,24340,24343,24345,24350,24352,24353,24354,24356,24357,24361,24364,24365,24367,24370,24372,24374,24376,24377,24380,24382,24383,24385,24387,24388,24391,24392,24393,24394,24396,24400,24401,24405,24408,24409,24412,24414,24416,24418,24419,24420,24425,24426,24430,24431,24433,24434,24435,24436,24440,24441,24446,24449,24451,24452,24453,24454,24457,24458,24459,24463,24465,24470,24471,24472,24475,24478,24479,24482,24483,24484,24487,24490,24491,24492,24496,24497,24499,24500,24501,24502,24504,24505,24508,24509,24510,24512,24513,24514,24518,24520,24521,24523,24524,24527,24528,24530,24532,24534,24538,24539,24540,24544,24547,24548,24550,24553,24554,24555,24557,24558,24560,24563,24564,24566,24568,24571,24574,24577,24578,24580,24582,24584,24585,24586,24588,24591,24594,24596,24598,24599,24601,24604,24607,24609,24611,24614,24617,24618,24619,24621,24624,24625,24627,24628,24630,24631,24633,24637,24639,24643,24644,24645,24646,24649,24651,24653,24654,24656,24657,24658,24661,24664,24666,24667,24669,24673,24674,24675,24679,24681,24682,24684,24687,24690,24692,24693,24696,24701,24703,24704,24705,24707,24708,24709,24712,24713,24714,24715,24718,24719,24721,24722,24724,24728,24733,24735,24737,24738,24741,24742,24744,24746,24748,24749,24750,24753,24755,24756,24759,24762,24767,24769,24770,24771,24773,24778,24779,24782,24784,24787,24789,24791,24793,24796,24797,24798,24803,24804,24806,24807,24811,24812,24813,24814,24816,24818,24819,24821,24824,24825,24828,24830, +24833,24834,24838,24839,24840,24841,24845,24846,24848,24849,24852,24857,24859,24861,24863,24864,24868,24869,24871,24873,24876,24877,24880,24881,24883,24887,24888,24890,24892,24893,24894,24895,24899,24901,24902,24905,24906,24907,24909,24913,24914,24915,24917,24920,24923,24925,24927,24929,24931,24934,24935,24936,24937,24940,24941,24942,24943,24946,24947,24949,24950,24953,24955,24956,24959,24961,24966,24969,24973,24974,24975,24976,24978,24979,24982,24984,24985,24988,24991,24992,24995,24997,24998,25001,25002,25004,25006,25009,25012,25013,25014,25016,25018,25021,25022,25024,25028,25030,25031,25032,25036,25038,25039,25043,25045,25047,25049,25052,25054,25058,25064,25066,25070,25073,25074,25078,25080,25082,25083,25084,25087,25088,25090,25091,25092,25094,25099,25101,25104,25106,25109,25111,25112,25114,25115,25116,25117,25119,25120,25123,25126,25128,25132,25133,25136,25138,25139,25143,25145,25146,25147,25149,25150,25152,25153,25155,25156,25159,25161,25162,25166,25168,25169,25171,25174,25175,25176,25178,25179,25182,25184,25186,25189,25190,25193,25194,25195,25197,25199,25201,25205,25206,25207,25211,25212,25216,25219,25220,25221,25225,25228,25230,25231,25233,25235,25237,25238,25240,25241,25243,25244,25246,25247,25249,25250,25252,25253,25256,25259,25262,25264,25265,25266,25267,25269,25271,25272,25277,25278,25279,25281,25282,25284,25287,25288,25291,25292,25293,25294,25297,25299,25300,25306,25309,25315,25318,25319,25321,25322,25324,25325,25326,25328,25330,25333,25337,25339,25340,25341,25343,25346,25347,25349,25352,25354,25356,25358,25359,25363,25365,25366,25369,25372,25373,25374,25378,25382,25384,25386,25390,25392,25395,25396,25398,25401,25402,25404,25406,25407,25409,25411,25413,25416,25418,25419,25421,25422,25423,25426,25427,25428,25430,25431,25432,25436,25438,25439,25441,25442,25444,25445,25447,25448,25449,25451,25453,25456,25457,25459,25460,25461,25463,25464,25469,25470,25473,25474,25478,25479,25481,25482,25484,25487,25489,25492,25496,25497,25500,25503,25504,25506,25507,25511,25512,25516,25519,25521,25525,25528,25531,25533,25535, +25536,25540,25541,25544,25546,25547,25549,25550,25554,25555,25558,25561,25562,25563,25565,25567,25568,25569,25570,25572,25577,25580,25582,25584,25586,25587,25589,25590,25593,25595,25596,25600,25601,25602,25604,25606,25607,25608,25609,25613,25614,25615,25617,25619,25620,25622,25623,25625,25626,25628,25631,25633,25636,25637,25639,25640,25642,25644,25645,25648,25649,25651,25652,25655,25658,25659,25661,25662,25664,25670,25672,25676,25677,25679,25680,25685,25686,25688,25689,25690,25692,25696,25697,25700,25703,25704,25706,25707,25708,25710,25714,25715,25717,25718,25720,25721,25724,25725,25726,25728,25732,25733,25734,25736,25737,25741,25742,25743,25745,25747,25748,25751,25752,25754,25755,25757,25758,25762,25764,25765,25769,25770,25771,25773,25774,25776,25780,25782,25785,25786,25788,25789,25793,25794,25796,25797,25799,25800,25801,25803,25807,25808,25809,25812,25815,25819,25821,25823,25826,25829,25830,25832,25833,25834,25836,25842,25843,25845,25847,25848,25849,25851,25855,25856,25858,25861,25862,25864,25865,25867,25868,25870,25871,25874,25876,25878,25880,25883,25886,25887,25890,25892,25893,25897,25898,25899,25900,25902,25903,25907,25909,25911,25915,25916,25918,25920,25922,25924,25925,25926,25928,25929,25930,25933,25935,25939,25941,25943,25944,25948,25950,25954,25956,25957,25959,25960,25962,25963,25965,25967,25969,25970,25972,25973,25975,25976,25978,25979,25982,25984,25989,25990,25992,25993,25997,26000,26001,26003,26004,26007,26010,26011,26013,26015,26016,26017,26019,26020,26022,26023,26027,26028,26029,26032,26036,26037,26038,26042,26045,26046,26047,26050,26054,26057,26059,26060,26062,26063,26064,26067,26069,26070,26073,26077,26079,26082,26084,26086,26088,26089,26092,26093,26094,26096,26097,26099,26101,26105,26107,26110,26113,26114,26117,26118,26119,26123,26125,26126,26128,26129,26132,26134,26135,26137,26138,26140,26141,26142,26143,26145,26147,26148,26150,26151,26153,26154,26155,26157,26159,26162,26163,26168,26169,26170,26174,26175,26179,26181,26182,26186,26187,26188,26190,26192,26193,26195,26196,26198,26201,26203,26204,26206, +26207,26208,26211,26213,26214,26216,26217,26218,26222,26225,26228,26229,26230,26234,26235,26236,26240,26242,26243,26245,26247,26250,26252,26255,26257,26258,26260,26261,26263,26266,26267,26269,26272,26273,26277,26279,26282,26283,26286,26287,26291,26294,26295,26296,26298,26301,26303,26304,26307,26310,26311,26314,26317,26318,26319,26323,26324,26325,26327,26329,26330,26332,26335,26336,26337,26338,26340,26343,26344,26346,26348,26349,26352,26353,26357,26359,26362,26363,26366,26367,26371,26372,26375,26378,26379,26380,26382,26384,26385,26387,26388,26390,26391,26393,26395,26396,26397,26400,26404,26405,26407,26408,26409,26411,26413,26417,26418,26421,26424,26425,26427,26428,26430,26432,26434,26436,26437,26440,26442,26446,26447,26449,26450,26451,26453,26455,26456,26458,26459,26460,26462,26463,26467,26468,26469,26474,26475,26477,26480,26483,26484,26485,26489,26491,26492,26493,26494,26496,26497,26500,26504,26507,26508,26510,26512,26513,26514,26515,26517,26518,26521,26522,26524,26528,26530,26534,26535,26537,26538,26540,26541,26543,26544,26547,26552,26554,26558,26559,26562,26564,26567,26570,26572,26573,26575,26576,26577,26578,26581,26582,26583,26585,26588,26590,26593,26596,26597,26600,26601,26602,26604,26607,26609,26611,26614,26618,26619,26620,26622,26627,26628,26629,26632,26633,26635,26636,26637,26639,26641,26644,26645,26646,26647,26651,26652,26654,26658,26660,26662,26663,26666,26668,26669,26670,26672,26674,26675,26677,26681,26683,26686,26687,26688,26692,26695,26696,26698,26699,26702,26703,26704,26707,26709,26710,26713,26714,26715,26719,26722,26724,26727,26729,26730,26732,26733,26737,26740,26741,26743,26744,26747,26749,26751,26754,26755,26759,26760,26761,26765,26768,26770,26771,26774,26775,26776,26778,26780,26781,26783,26784,26785,26788,26789,26791,26792,26793,26797,26800,26803,26804,26806,26808,26809,26813,26815,26818,26819,26820,26821,26823,26826,26830,26831,26833,26834,26836,26839,26840,26842,26843,26846,26848,26849,26850,26853,26854,26857,26860,26861,26863,26864,26866,26868,26870,26871,26872,26874,26876,26879,26880,26883,26888, +26889,26890,26893,26896,26898,26901,26903,26904,26905,26908,26909,26910,26912,26913,26916,26917,26921,26922,26923,26926,26929,26930,26932,26933,26934,26936,26938,26942,26943,26944,26947,26949,26950,26953,26954,26957,26958,26960,26961,26964,26965,26968,26971,26972,26973,26974,26976,26978,26980,26981,26983,26985,26986,26989,26993,26994,26995,26998,27000,27003,27008,27009,27012,27014,27015,27017,27018,27021,27025,27026,27027,27028,27030,27031,27034,27035,27036,27038,27040,27043,27044,27045,27047,27048,27050,27051,27054,27056,27057,27061,27063,27065,27068,27069,27070,27072,27073,27075,27078,27079,27081,27083,27085,27088,27090,27093,27097,27098,27101,27103,27107,27108,27109,27112,27113,27114,27116,27117,27119,27120,27123,27128,27131,27132,27135,27137,27140,27143,27145,27146,27147,27148,27152,27155,27157,27160,27163,27164,27165,27166,27168,27172,27173,27175,27176,27178,27179,27181,27184,27187,27189,27190,27192,27193,27195,27197,27199,27201,27204,27206,27209,27210,27211,27213,27214,27216,27218,27221,27222,27227,27228,27229,27231,27232,27235,27236,27238,27241,27242,27243,27244,27247,27248,27250,27252,27254,27255,27257,27258,27260,27262,27263,27264,27265,27270,27272,27273,27274,27276,27277,27281,27284,27285,27287,27289,27292,27293,27294,27297,27298,27301,27302,27303,27305,27306,27307,27309,27313,27314,27316,27319,27322,27323,27324,27329,27331,27333,27334,27337,27338,27340,27341,27343,27345,27347,27349,27351,27356,27357,27362,27365,27366,27369,27370,27373,27374,27376,27377,27380,27381,27383,27385,27387,27391,27392,27394,27395,27398,27400,27401,27403,27404,27405,27406,27408,27413,27414,27416,27418,27421,27424,27425,27426,27427,27429,27430,27432,27435,27437,27438,27441,27445,27446,27447,27449,27451,27453,27454,27457,27460,27462,27466,27467,27469,27470,27471,27472,27475,27476,27478,27480,27482,27484,27485,27488,27489,27491,27492,27493,27495,27496,27500,27501,27503,27505,27506,27507,27509,27510,27511,27513,27514,27516,27520,27524,27527,27530,27531,27532,27534,27535,27539,27540,27544,27545,27546,27548,27549,27550,27553,27554,27555, +27558,27560,27561,27562,27564,27568,27572,27573,27574,27578,27579,27580,27582,27583,27586,27589,27592,27593,27594,27597,27600,27603,27607,27609,27612,27613,27615,27618,27619,27622,27623,27624,27625,27629,27630,27635,27636,27637,27639,27640,27642,27643,27645,27647,27650,27652,27655,27656,27658,27660,27663,27665,27670,27674,27676,27678,27679,27681,27682,27684,27688,27690,27693,27694,27696,27698,27700,27703,27704,27706,27709,27711,27713,27714,27716,27718,27719,27720,27724,27725,27728,27729,27731,27733,27734,27735,27736,27739,27740,27742,27746,27748,27750,27751,27753,27754,27756,27757,27760,27761,27763,27764,27765,27766,27769,27770,27771,27775,27779,27780,27782,27783,27785,27788,27791,27792,27793,27795,27796,27798,27800,27801,27802,27807,27808,27812,27815,27817,27820,27823,27825,27826,27828,27829,27833,27835,27838,27839,27840,27845,27846,27849,27853,27855,27856,27859,27862,27863,27864,27868,27869,27870,27871,27874,27878,27880,27883,27886,27889,27890,27891,27895,27896,27898,27899,27900,27901,27904,27906,27907,27909,27911,27914,27915,27916,27919,27920,27922,27923,27925,27926,27927,27930,27931,27933,27937,27940,27941,27942,27943,27947,27948,27950,27951,27954,27958,27959,27961,27962,27963,27967,27968,27969,27970,27973,27975,27977,27978,27980,27981,27982,27984,27986,27989,27991,27993,27995,27996,27997,27999,28001,28002,28005,28007,28009,28011,28012,28014,28016,28019,28021,28025,28027,28030,28031,28034,28035,28036,28038,28041,28043,28044,28045,28047,28048,28050,28051,28053,28054,28056,28059,28061,28064,28065,28067,28068,28071,28073,28074,28077,28080,28084,28085,28086,28088,28090,28091,28094,28095,28097,28098,28100,28101,28106,28107,28112,28113,28115,28118,28119,28121,28123,28124,28126,28130,28131,28132,28134,28139,28140,28141,28143,28144,28146,28148,28151,28153,28154,28156,28157,28160,28161,28163,28166,28169,28171,28172,28173,28175,28176,28179,28183,28184,28187,28188,28189,28191,28195,28196,28199,28200,28202,28203,28206,28208,28212,28213,28216,28219,28222,28224,28226,28227,28228,28232,28233,28237,28240,28242,28244,28245,28247, +28249,28250,28251,28253,28254,28256,28257,28259,28262,28263,28265,28267,28268,28269,28270,28274,28276,28277,28278,28279,28282,28283,28285,28289,28291,28292,28294,28295,28296,28299,28302,28304,28305,28306,28308,28310,28311,28312,28316,28317,28318,28320,28321,28323,28324,28326,28328,28329,28331,28332,28335,28336,28338,28345,28346,28349,28351,28352,28354,28356,28358,28359,28361,28362,28367,28368,28369,28371,28374,28377,28379,28380,28384,28386,28389,28394,28397,28398,28400,28401,28402,28404,28407,28411,28414,28415,28416,28421,28423,28424,28426,28427,28429,28430,28431,28434,28435,28439,28442,28445,28447,28450,28451,28453,28455,28458,28460,28462,28465,28467,28469,28470,28474,28475,28477,28478,28479,28480,28483,28486,28489,28490,28491,28492,28495,28497,28500,28501,28505,28506,28507,28509,28510,28514,28516,28519,28520,28522,28524,28527,28528,28530,28531,28534,28535,28536,28541,28543,28544,28546,28547,28548,28551,28552,28554,28556,28557,28558,28560,28561,28563,28564,28567,28569,28570,28573,28575,28576,28579,28580,28582,28584,28586,28589,28591,28592,28594,28598,28599,28601,28602,28606,28607,28608,28609,28611,28612,28616,28617,28618,28620,28622,28623,28625,28627,28628,28629,28630,28634,28635,28636,28638,28639,28642,28645,28648,28649,28651,28652,28653,28657,28658,28659,28663,28664,28666,28667,28668,28672,28674,28675,28678,28680,28683,28684,28686,28690,28692,28697,28698,28700,28701,28703,28704,28707,28708,28711,28714,28715,28718,28719,28721,28724,28727,28729,28730,28731,28732,28735,28738,28739,28740,28743,28744,28748,28749,28754,28757,28760,28762,28764,28765,28769,28772,28773,28776,28777,28779,28780,28782,28785,28787,28788,28791,28792,28794,28795,28797,28801,28802,28803,28805,28810,28811,28812,28815,28816,28818,28820,28821,28822,28824,28826,28828,28831,28832,28833,28835,28836,28839,28840,28843,28844,28845,28846,28849,28850,28852,28855,28857,28861,28863,28864,28867,28868,28870,28872,28873,28875,28876,28878,28879,28881,28883,28885,28886,28887,28888,28892,28894,28895,28898,28901,28903,28906,28908,28911,28912,28916,28918,28920,28922, +28923,28926,28931,28932,28933,28936,28937,28940,28943,28944,28949,28952,28954,28956,28957,28959,28961,28962,28966,28967,28968,28971,28972,28974,28976,28977,28980,28981,28983,28984,28987,28989,28991,28993,28995,28999,29001,29003,29005,29006,29008,29012,29013,29015,29018,29021,29023,29024,29025,29026,29029,29031,29032,29035,29038,29039,29040,29043,29044,29047,29050,29051,29053,29054,29056,29058,29060,29062,29066,29067,29070,29071,29074,29076,29077,29079,29080,29083,29084,29085,29087,29089,29092,29094,29095,29098,29100,29101,29103,29104,29107,29108,29109,29111,29112,29113,29117,29118,29119,29122,29123,29124,29126,29127,29128,29132,29134,29137,29138,29139,29142,29145,29147,29148,29154,29158,29161,29165,29167,29168,29169,29171,29173,29174,29175,29176,29180,29182,29183,29185,29187,29189,29191,29195,29196,29198,29199,29201,29202,29203,29207,29209,29210,29213,29215,29216,29218,29221,29225,29227,29228,29230,29233,29234,29237,29238,29240,29242,29246,29247,29249,29250,29256,29257,29259,29260,29262,29263,29265,29266,29269,29271,29272,29274,29276,29277,29279,29280,29282,29283,29286,29287,29290,29291,29292,29293,29297,29298,29303,29304,29305,29307,29308,29311,29312,29314,29315,29318,29321,29324,29325,29326,29329,29332,29333,29335,29338,29339,29340,29341,29343,29345,29347,29348,29350,29353,29354,29356,29357,29358,29359,29362,29364,29365,29368,29370,29371,29373,29377,29378,29381,29384,29386,29389,29392,29393,29394,29397,29401,29405,29407,29410,29414,29415,29417,29419,29423,29424,29426,29427,29428,29432,29433,29434,29436,29437,29439,29441,29442,29444,29445,29447,29448,29452,29454,29457,29459,29461,29462,29465,29467,29469,29471,29474,29475,29476,29479,29482,29486,29487,29488,29492,29495,29496,29498,29499,29500,29503,29505,29507,29508,29509,29511,29513,29516,29518,29519,29520,29522,29523,29524,29526,29527,29530,29533,29536,29538,29540,29541,29543,29545,29546,29549,29550,29554,29555,29557,29558,29560,29562,29566,29569,29570,29571,29573,29574,29576,29578,29579,29582,29583,29584,29586,29587,29589,29592,29594,29599,29600,29602,29603,29606, +29609,29612,29615,29616,29619,29620,29623,29626,29627,29629,29630,29632,29635,29637,29638,29642,29644,29645,29647,29648,29650,29652,29653,29656,29657,29659,29662,29664,29665,29667,29668,29671,29672,29674,29678,29681,29683,29684,29687,29689,29690,29691,29692,29695,29697,29700,29704,29707,29709,29710,29713,29714,29715,29718,29720,29721,29722,29724,29725,29727,29728,29732,29734,29736,29738,29740,29743,29744,29745,29748,29749,29751,29754,29756,29758,29759,29761,29763,29764,29770,29773,29774,29775,29777,29779,29780,29782,29783,29784,29787,29788,29790,29794,29795,29801,29802,29804,29806,29809,29811,29814,29816,29817,29818,29821,29824,29825,29827,29829,29831,29832,29835,29836,29840,29842,29843,29845,29847,29848,29850,29851,29853,29854,29856,29857,29859,29862,29864,29866,29867,29868,29869,29872,29874,29876,29877,29878,29880,29885,29887,29889,29890,29894,29895,29896,29898,29899,29902,29904,29907,29908,29911,29913,29915,29917,29918,29919,29920,29923,29924,29926,29929,29932,29934,29935,29938,29942,29943,29944,29947,29949,29950,29953,29954,29955,29957,29960,29961,29963,29965,29967,29971,29973,29975,29976,29978,29979,29980,29983,29984,29986,29990,29991,29993,29995,29997,29998,30002,30005,30006,30009,30011,30012,30016,30017,30018,30020,30022,30025,30026,30029,30031,30033,30034,30038,30039,30040,30043,30046,30047,30049,30051,30055,30056,30057,30060,30063,30064,30066,30069,30071,30072,30076,30080,30081,30083,30085,30088,30092,30093,30095,30096,30098,30100,30101,30104,30105,30109,30112,30116,30118,30119,30120,30121,30124,30125,30126,30130,30131,30132,30134,30137,30140,30143,30144,30146,30148,30150,30151,30155,30157,30158,30160,30163,30164,30167,30168,30170,30173,30175,30176,30177,30178,30181,30184,30185,30187,30190,30192,30194,30195,30196,30199,30200,30202,30203,30205,30207,30208,30210,30211,30213,30215,30217,30218,30219,30221,30222,30224,30225,30229,30233,30234,30236,30237,30239,30240,30242,30244,30245,30246,30249,30251,30253,30257,30260,30263,30264,30266,30271,30274,30275,30276,30277,30281,30283,30284,30285,30290,30291,30295,30298, +30299,30301,30302,30304,30305,30306,30307,30311,30313,30314,30315,30317,30318,30319,30323,30324,30325,30329,30332,30334,30335,30337,30339,30341,30343,30344,30346,30347,30348,30350,30352,30353,30355,30356,30358,30362,30364,30367,30369,30371,30372,30374,30375,30376,30379,30381,30383,30384,30385,30388,30390,30392,30393,30394,30396,30397,30399,30403,30404,30406,30407,30408,30409,30412,30414,30415,30417,30418,30420,30422,30425,30426,30431,30433,30436,30437,30438,30440,30441,30443,30444,30447,30451,30452,30455,30456,30458,30459,30464,30465,30467,30468,30469,30471,30475,30477,30478,30480,30481,30484,30485,30486,30487,30489,30492,30493,30495,30496,30500,30501,30502,30506,30508,30509,30514,30515,30517,30518,30521,30522,30525,30527,30529,30530,30532,30533,30534,30535,30539,30540,30542,30543,30544,30546,30547,30551,30552,30554,30555,30556,30560,30562,30563,30564,30566,30570,30574,30575,30577,30578,30579,30581,30584,30586,30588,30593,30595,30596,30599,30600,30603,30606,30609,30610,30612,30617,30618,30620,30622,30623,30624,30626,30627,30632,30634,30635,30636,30637,30639,30642,30644,30646,30647,30648,30650,30652,30653,30654,30659,30660,30664,30667,30669,30671,30673,30674,30676,30677,30678,30681,30685,30687,30689,30691,30693,30697,30699,30701,30702,30703,30705,30708,30709,30711,30713,30714,30716,30719,30720,30723,30725,30726,30728,30729,30731,30732,30735,30737,30738,30739,30743,30745,30748,30749,30750,30751,30753,30754,30757,30758,30759,30764,30767,30770,30771,30772,30774,30776,30777,30778,30780,30782,30783,30785,30786,30790,30792,30793,30796,30797,30800,30803,30804,30807,30808,30811,30813,30814,30816,30823,30826,30828,30832,30833,30834,30837,30840,30842,30843,30844,30846,30848,30851,30852,30855,30857,30858,30861,30862,30864,30866,30869,30870,30872,30873,30878,30879,30880,30883,30884,30885,30887,30889,30890,30891,30892,30895,30896,30897,30898,30900,30902,30903,30907,30909,30912,30913,30916,30918,30920,30921,30922,30924,30925,30928,30931,30932,30935,30936,30938,30939,30942,30943,30948,30949,30951,30953,30954,30957,30959,30960,30964, +30967,30968,30969,30971,30974,30977,30980,30983,30984,30986,30988,30989,30991,30992,30993,30994,30998,31000,31001,31002,31006,31007,31008,31011,31012,31014,31016,31019,31022,31023,31024,31026,31028,31029,31033,31034,31037,31038,31040,31041,31042,31045,31046,31047,31051,31054,31056,31060,31061,31062,31065,31066,31069,31070,31072,31073,31074,31075,31079,31084,31085,31087,31088,31091,31094,31095,31097,31098,31101,31102,31105,31107,31109,31111,31112,31113,31115,31117,31120,31124,31125,31127,31128,31129,31132,31133,31134,31136,31138,31139,31140,31142,31143,31145,31147,31150,31153,31156,31157,31158,31159,31161,31162,31166,31168,31169,31170,31171,31176,31177,31179,31182,31184,31185,31189,31192,31193,31195,31196,31197,31198,31202,31204,31207,31208,31210,31211,31212,31213,31216,31217,31219,31221,31224,31226,31228,31229,31230,31232,31234,31237,31241,31242,31244,31246,31248,31250,31253,31254,31255,31258,31259,31260,31261,31263,31265,31267,31270,31272,31274,31275,31277,31279,31281,31283,31284,31285,31288,31292,31294,31295,31296,31297,31301,31302,31305,31307,31310,31311,31315,31316,31317,31320,31322,31324,31325,31327,31329,31332,31334,31335,31338,31340,31342,31343,31344,31346,31348,31349,31350,31353,31358,31359,31360,31362,31366,31368,31370,31371,31373,31375,31376,31378,31379,31381,31383,31384,31386,31388,31390,31391,31394,31395,31400,31402,31403,31404,31406,31408,31411,31412,31414,31415,31418,31421,31422,31423,31426,31427,31428,31430,31431,31435,31436,31437,31439,31440,31441,31444,31446,31449,31450,31454,31455,31460,31461,31466,31469,31471,31472,31473,31474,31479,31482,31483,31485,31489,31492,31493,31495,31496,31498,31501,31504,31505,31508,31509,31510,31514,31516,31517,31520,31521,31523,31524,31528,31531,31532,31533,31534,31537,31538,31539,31541,31543,31544,31547,31550,31552,31554,31558,31561,31562,31563,31564,31568,31571,31573,31574,31576,31579,31580,31582,31583,31584,31588,31589,31592,31593,31594,31596,31598,31600,31601,31603,31605,31609,31612,31613,31615,31616,31617,31619,31620,31622,31624,31626,31630,31631,31632,31634,31636, +31638,31643,31646,31648,31649,31650,31654,31655,31656,31658,31659,31663,31664,31665,31666,31668,31673,31674,31678,31680,31681,31685,31688,31689,31691,31692,31696,31699,31700,31703,31705,31707,31710,31713,31714,31716,31717,31719,31721,31722,31724,31726,31727,31728,31729,31731,31732,31735,31736,31737,31738,31741,31742,31743,31746,31748,31749,31752,31753,31756,31760,31761,31763,31765,31766,31767,31771,31772,31773,31777,31778,31779,31781,31782,31786,31787,31788,31791,31793,31794,31796,31799,31801,31802,31805,31807,31811,31813,31815,31818,31819,31820,31821,31823,31825,31826,31828,31829,31830,31831,31833,31834,31837,31838,31840,31841,31842,31843,31845,31847,31848,31849,31851,31852,31854,31858,31859,31861,31864,31865,31867,31868,31869,31871,31874,31875,31876,31880,31881,31882,31884,31886,31888,31889,31891,31892,31893,31895,31898,31900,31901,31903,31907,31908,31910,31912,31913,31915,31916,31917,31918,31920,31921,31923,31924,31926,31930,31931,31932,31933,31937,31939,31940,31942,31943,31944,31948,31949,31952,31954,31955,31956,31957,31961,31963,31964,31965,31967,31970,31971,31972,31975,31978,31980,31982,31984,31987,31988,31989,31993,31994,31995,31996,31999,32000,32002,32003,32006,32009,32011,32012,32015,32016,32017,32020,32021,32024,32027,32028,32030,32031,32033,32034,32035,32038,32039,32040,32041,32043,32045,32049,32050,32054,32055,32057,32058,32060,32061,32062,32066,32068,32069,32071,32073,32075,32076,32078,32079,32081,32084,32085,32089,32091,32092,32096,32098,32099,32101,32102,32105,32107,32108,32110,32111,32113,32114,32115,32119,32121,32122,32126,32127,32128,32130,32133,32134,32137,32138,32141,32143,32146,32147,32150,32151,32152,32156,32159,32161,32162,32163,32165,32167,32169,32170,32173,32176,32177,32179,32183,32185,32189,32191,32193,32195,32197,32199,32200,32202,32204,32205,32206,32208,32209,32211,32212,32215,32216,32218,32220,32222,32224,32225,32226,32227,32231,32232,32234,32236,32237,32238,32240,32243,32244,32246,32249,32251,32252,32254,32257,32260,32261,32262,32264,32266,32267,32270,32271,32275,32276,32277,32278,32280, +32282,32283,32285,32286,32290,32291,32292,32297,32300,32301,32303,32304,32305,32308,32311,32313,32316,32317,32320,32322,32323,32326,32327,32329,32330,32333,32334,32336,32339,32341,32342,32344,32345,32346,32347,32349,32353,32354,32355,32357,32359,32361,32366,32367,32369,32370,32371,32373,32376,32377,32379,32380,32382,32385,32387,32389,32391,32392,32394,32396,32397,32398,32400,32403,32405,32406,32408,32410,32411,32413,32416,32418,32419,32421,32424,32426,32428,32429,32431,32433,32438,32439,32441,32443,32446,32447,32448,32449,32451,32452,32456,32458,32459,32460,32461,32463,32465,32466,32468,32469,32473,32474,32475,32476,32478,32479,32483,32484,32485,32488,32490,32491,32494,32496,32498,32501,32503,32504,32505,32510,32512,32514,32517,32519,32520,32525,32526,32530,32531,32533,32534,32535,32538,32540,32543,32544,32545,32548,32549,32550,32554,32555,32556,32558,32560,32561,32564,32565,32567,32569,32572,32574,32576,32577,32578,32582,32583,32586,32588,32590,32591,32592,32593,32595,32596,32598,32602,32604,32608,32611,32613,32615,32617,32618,32619,32620,32622,32623,32625,32627,32629,32630,32631,32634,32635,32638,32639,32640,32642,32643,32645,32646,32649,32650,32652,32654,32655,32657,32658,32659,32661,32662,32665,32666,32667,32668,32670,32673,32674,32676,32678,32680,32682,32687,32688,32693,32695,32696,32698,32700,32701,32703,32704,32706,32707,32709,32710,32713,32714,32715,32716,32720,32723,32725,32726,32727,32728,32730,32731,32733,32735,32739,32740,32742,32745,32746,32749,32753,32754,32756,32757,32758,32762,32764,32765,32767,32768,32770,32772,32774,32776,32780,32781,32785,32786,32787,32789,32792,32794,32795,32798,32800,32803,32804,32805,32806,32809,32811,32812,32815,32816,32818,32820,32823,32827,32828,32829,32831,32833,32835,32836,32838,32840,32843,32844,32848,32849,32850,32854,32856,32859,32860,32862,32864,32866,32870,32871,32872,32875,32876,32877,32878,32882,32883,32887,32892,32897,32899,32901,32903,32905,32908,32909,32911,32913,32914,32916,32918,32919,32921,32922,32924,32925,32930,32931,32932,32935,32936,32939,32940,32942,32944, +32946,32947,32951,32954,32955,32956,32958,32959,32962,32966,32967,32968,32970,32971,32973,32976,32977,32979,32980,32982,32984,32986,32987,32988,32989,32992,32995,32996,32998,32999,33000,33001,33003,33005,33006,33007,33009,33011,33013,33015,33019,33020,33023,33025,33026,33027,33030,33032,33033,33034,33037,33039,33040,33044,33045,33048,33052,33054,33056,33058,33059,33060,33063,33067,33070,33071,33072,33077,33080,33081,33083,33084,33085,33087,33090,33093,33094,33097,33099,33100,33102,33103,33107,33113,33115,33116,33117,33118,33121,33124,33125,33127,33128,33131,33133,33135,33136,33138,33141,33142,33144,33148,33149,33150,33155,33160,33161,33164,33165,33167,33169,33170,33171,33174,33179,33180,33182,33184,33187,33188,33191,33192,33193,33195,33197,33198,33201,33203,33204,33206,33207,33209,33216,33217,33219,33220,33222,33223,33226,33227,33230,33233,33235,33236,33237,33239,33240,33241,33244,33246,33247,33250,33251,33253,33255,33259,33260,33261,33263,33264,33266,33268,33270,33272,33274,33277,33278,33279,33283,33284,33286,33288,33290,33291,33294,33297,33298,33300,33301,33304,33306,33308,33309,33310,33312,33315,33317,33318,33320,33322,33323,33324,33326,33327,33329,33330,33331,33333,33335,33338,33339,33341,33342,33344,33345,33347,33349,33350,33352,33354,33359,33360,33365,33368,33370,33371,33373,33374,33375,33380,33383,33386,33388,33390,33392,33393,33397,33398,33399,33402,33405,33407,33408,33412,33413,33415,33416,33418,33420,33422,33424,33425,33427,33430,33431,33432,33433,33436,33437,33438,33440,33441,33443,33446,33448,33449,33451,33455,33457,33459,33461,33463,33464,33467,33468,33472,33476,33478,33479,33482,33483,33488,33491,33492,33497,33500,33501,33503,33505,33508,33509,33511,33512,33514,33517,33520,33521,33522,33525,33527,33530,33531,33532,33535,33536,33538,33541,33542,33545,33546,33547,33549,33553,33554,33555,33557,33559,33560,33562,33563,33564,33566,33567,33569,33572,33574,33576,33581,33582,33583,33585,33589,33592,33593,33594,33599,33600,33601,33605,33606,33609,33611,33612,33614,33619,33620,33622,33623,33624,33625,33627,33628, +33630,33631,33634,33636,33638,33639,33641,33643,33644,33647,33648,33653,33654,33656,33657,33661,33663,33668,33670,33671,33673,33677,33678,33680,33681,33682,33686,33688,33690,33692,33695,33696,33698,33699,33702,33705,33706,33709,33710,33711,33713,33714,33716,33718,33719,33721,33723,33725,33728,33729,33732,33733,33737,33739,33741,33743,33744,33745,33747,33748,33754,33758,33759,33761,33762,33767,33769,33773,33774,33775,33779,33781,33785,33786,33788,33789,33792,33793,33799,33800,33802,33803,33804,33806,33808,33809,33810,33812,33815,33816,33817,33819,33822,33824,33825,33827,33828,33831,33832,33834,33836,33837,33839,33841,33842,33844,33845,33848,33851,33854,33856,33857,33858,33860,33861,33864,33869,33871,33875,33876,33878,33879,33880,33883,33884,33886,33887,33889,33892,33893,33895,33899,33900,33902,33903,33904,33908,33909,33910,33912,33914,33915,33917,33920,33922,33925,33927,33931,33932,33934,33937,33938,33941,33943,33946,33947,33948,33950,33953,33956,33958,33962,33963,33967,33968,33969,33971,33973,33974,33976,33977,33978,33979,33982,33984,33986,33988,33989,33990,33992,33994,33995,33998,33999,34000,34003,34006,34008,34012,34014,34015,34018,34020,34022,34024,34027,34031,34033,34034,34035,34040,34041,34043,34044,34045,34047,34049,34052,34053,34054,34056,34058,34060,34061,34062,34063,34067,34068,34070,34073,34075,34076,34079,34081,34082,34083,34085,34088,34090,34092,34094,34097,34098,34100,34102,34104,34106,34107,34109,34110,34113,34117,34119,34120,34123,34124,34127,34128,34131,34133,34135,34136,34138,34140,34141,34144,34145,34147,34148,34149,34153,34154,34156,34157,34158,34160,34161,34163,34164,34166,34167,34169,34171,34173,34175,34178,34179,34182,34183,34185,34188,34191,34194,34196,34198,34202,34204,34205,34207,34208,34209,34211,34212,34214,34216,34218,34220,34223,34224,34226,34229,34230,34231,34233,34235,34236,34241,34242,34244,34245,34247,34249,34250,34252,34253,34255,34258,34259,34261,34262,34263,34266,34267,34269,34271,34272,34273,34277,34278,34279,34282,34283,34286,34288,34290,34291,34295,34296,34297,34301,34304,34307, +34309,34311,34315,34316,34317,34318,34320,34323,34325,34328,34329,34331,34332,34335,34337,34340,34341,34346,34348,34349,34350,34352,34355,34356,34357,34361,34364,34367,34368,34370,34372,34373,34374,34379,34380,34381,34384,34385,34386,34388,34389,34390,34392,34397,34399,34401,34402,34405,34407,34409,34411,34413,34415,34416,34417,34421,34422,34425,34426,34428,34429,34432,34436,34439,34441,34442,34444,34445,34447,34449,34451,34453,34454,34456,34457,34462,34464,34465,34469,34470,34471,34473,34476,34478,34481,34483,34484,34486,34488,34489,34491,34492,34494,34495,34497,34499,34501,34505,34506,34507,34510,34513,34514,34515,34517,34518,34522,34523,34524,34525,34528,34531,34532,34533,34537,34541,34542,34544,34547,34549,34550,34552,34554,34556,34557,34558,34560,34562,34565,34566,34568,34569,34573,34574,34575,34577,34579,34581,34582,34585,34587,34589,34590,34592,34596,34598,34599,34602,34604,34605,34609,34610,34611,34613,34614,34618,34619,34621,34622,34623,34624,34628,34629,34632,34633,34635,34636,34640,34641,34643,34645,34648,34649,34651,34653,34655,34658,34659,34660,34663,34666,34667,34668,34669,34671,34675,34682,34683,34685,34688,34689,34690,34692,34693,34695,34696,34698,34700,34702,34703,34704,34709,34711,34712,34714,34715,34716,34719,34722,34723,34726,34728,34731,34733,34734,34736,34738,34740,34742,34743,34745,34746,34749,34751,34753,34755,34756,34760,34763,34765,34767,34768,34770,34771,34775,34777,34779,34780,34784,34785,34787,34789,34790,34793,34794,34795,34798,34799,34800,34803,34806,34809,34810,34812,34814,34817,34820,34821,34823,34825,34826,34829,34830,34832,34833,34834,34837,34838,34839,34840,34843,34845,34848,34851,34852,34854,34856,34859,34861,34862,34865,34866,34867,34870,34871,34873,34875,34878,34880,34883,34885,34886,34888,34889,34892,34894,34897,34899,34901,34902,34905,34907,34908,34911,34913,34914,34915,34919,34922,34924,34925,34926,34927,34929,34932,34933,34935,34937,34938,34942,34943,34945,34947,34949,34952,34954,34955,34957,34958,34959,34964,34965,34966,34970,34971,34972,34975,34978,34980,34983,34985,34986, +34988,34991,34994,34995,34996,34998,35001,35005,35006,35008,35009,35010,35013,35014,35016,35017,35019,35021,35022,35027,35028,35030,35032,35036,35039,35041,35042,35043,35045,35046,35047,35049,35051,35052,35054,35056,35059,35060,35062,35064,35065,35069,35072,35073,35075,35076,35077,35080,35082,35083,35085,35087,35089,35094,35097,35099,35101,35104,35106,35108,35109,35111,35113,35114,35117,35119,35120,35121,35122,35126,35127,35129,35131,35132,35134,35137,35138,35139,35141,35142,35144,35146,35148,35149,35153,35154,35155,35158,35159,35160,35162,35164,35167,35168,35170,35171,35173,35174,35175,35178,35180,35183,35184,35185,35188,35189,35190,35192,35194,35195,35196,35201,35203,35206,35207,35209,35211,35214,35216,35217,35218,35220,35221,35223,35226,35228,35233,35237,35239,35240,35241,35242,35246,35247,35248,35250,35255,35257,35258,35260,35261,35262,35266,35267,35268,35270,35271,35275,35276,35278,35279,35282,35285,35286,35290,35294,35295,35297,35298,35300,35301,35302,35306,35308,35309,35310,35312,35313,35316,35317,35321,35324,35326,35328,35332,35333,35335,35336,35338,35340,35341,35344,35348,35350,35352,35355,35356,35358,35362,35363,35365,35366,35368,35371,35374,35377,35379,35381,35382,35384,35386,35387,35388,35391,35393,35396,35399,35400,35401,35403,35405,35407,35408,35409,35411,35412,35415,35416,35419,35420,35423,35424,35428,35430,35431,35434,35435,35438,35441,35443,35447,35448,35450,35451,35453,35454,35456,35457,35458,35461,35462,35465,35468,35470,35471,35472,35474,35475,35478,35480,35482,35483,35486,35487,35490,35492,35494,35495,35497,35500,35503,35504,35505,35507,35508,35513,35514,35516,35517,35519,35521,35522,35524,35527,35528,35529,35533,35534,35535,35540,35541,35544,35546,35547,35548,35551,35552,35555,35558,35560,35562,35564,35566,35568,35570,35572,35573,35575,35577,35579,35582,35583,35587,35588,35589,35592,35596,35598,35599,35602,35603,35604,35605,35608,35611,35612,35614,35618,35619,35622,35624,35625,35628,35629,35633,35634,35639,35640,35642,35644,35648,35649,35654,35655,35657,35659,35660,35663,35664,35667,35669,35672, +35673,35674,35676,35679,35681,35683,35684,35686,35687,35688,35689,35691,35696,35698,35699,35701,35702,35703,35705,35708,35709,35710,35712,35715,35719,35721,35723,35725,35727,35730,35732,35733,35734,35736,35737,35740,35742,35744,35745,35748,35750,35751,35752,35754,35755,35757,35759,35760,35764,35767,35769,35771,35773,35775,35778,35779,35782,35783,35785,35786,35788,35790,35791,35793,35795,35796,35798,35800,35804,35805,35807,35808,35810,35811,35814,35815,35819,35822,35824,35825,35826,35830,35832,35837,35838,35840,35841,35846,35848,35849,35850,35851,35853,35854,35857,35860,35861,35862,35863,35865,35870,35872,35873,35874,35879,35882,35884,35885,35886,35887,35889,35892,35893,35897,35898,35899,35901,35902,35906,35907,35909,35910,35913,35916,35917,35921,35924,35925,35928,35930,35931,35932,35936,35937,35939,35940,35942,35945,35947,35948,35949,35953,35956,35957,35959,35960,35962,35963,35966,35967,35968,35971,35972,35974,35977,35978,35979,35982,35984,35985,35989,35991,35993,35996,35998,35999,36001,36002,36005,36006,36008,36010,36011,36012,36014,36015,36018,36020,36023,36024,36026,36027,36028,36030,36033,36034,36037,36041,36045,36047,36048,36049,36051,36052,36056,36057,36061,36062,36064,36066,36067,36069,36071,36073,36074,36076,36077,36078,36080,36081,36083,36086,36087,36089,36091,36093,36096,36099,36102,36103,36106,36107,36108,36109,36111,36113,36115,36118,36120,36122,36124,36127,36129,36130,36134,36135,36136,36138,36141,36142,36144,36151,36152,36153,36156,36158,36160,36162,36164,36166,36167,36172,36173,36174,36179,36181,36184,36186,36188,36189,36190,36192,36195,36196,36199,36202,36203,36205,36206,36208,36212,36215,36217,36218,36220,36221,36222,36224,36225,36226,36229,36231,36232,36235,36237,36239,36240,36242,36243,36246,36248,36250,36251,36254,36256,36257,36258,36259,36262,36266,36269,36270,36274,36276,36279,36281,36284,36287,36289,36291,36293,36294,36296,36299,36301,36302,36303,36305,36307,36309,36310,36313,36314,36316,36318,36320,36321,36322,36325,36326,36327,36332,36334,36335,36337,36338,36341,36342,36344,36347,36348,36350, +36352,36355,36356,36357,36358,36361,36363,36364,36367,36369,36370,36372,36376,36379,36380,36382,36383,36385,36386,36389,36392,36393,36398,36399,36401,36402,36405,36407,36408,36410,36412,36414,36418,36419,36422,36424,36425,36426,36427,36429,36431,36433,36434,36435,36439,36440,36443,36444,36445,36449,36450,36457,36458,36459,36461,36462,36467,36468,36470,36471,36473,36475,36478,36479,36482,36485,36486,36487,36490,36491,36493,36495,36496,36498,36500,36501,36502,36505,36506,36509,36510,36511,36513,36518,36519,36523,36524,36525,36526,36530,36532,36535,36538,36540,36541,36543,36545,36546,36547,36551,36552,36553,36556,36559,36562,36563,36565,36567,36569,36572,36574,36575,36576,36578,36579,36580,36583,36586,36587,36589,36592,36593,36595,36598,36600,36602,36604,36606,36610,36612,36613,36615,36617,36618,36622,36625,36626,36627,36628,36631,36632,36633,36634,36637,36639,36640,36643,36644,36646,36650,36652,36653,36657,36658,36660,36661,36665,36667,36668,36671,36673,36674,36676,36677,36680,36681,36683,36684,36686,36688,36691,36692,36693,36695,36698,36699,36701,36702,36706,36707,36709,36710,36713,36716,36717,36718,36720,36722,36724,36727,36729,36731,36733,36735,36736,36738,36739,36743,36746,36747,36750,36751,36754,36755,36758,36761,36762,36763,36766,36767,36769,36770,36771,36775,36778,36782,36783,36784,36786,36787,36789,36791,36792,36794,36796,36797,36799,36802,36804,36806,36808,36811,36812,36814,36816,36817,36819,36820,36822,36825,36827,36830,36831,36832,36834,36836,36838,36842,36843,36847,36848,36849,36851,36852,36854,36855,36858,36860,36863,36865,36866,36869,36870,36872,36873,36876,36878,36880,36881,36884,36885,36886,36889,36890,36892,36893,36895,36899,36902,36905,36906,36907,36909,36911,36913,36915,36918,36919,36923,36924,36926,36927,36928,36931,36934,36935,36938,36940,36943,36947,36949,36951,36954,36955,36957,36959,36962,36963,36967,36968,36969,36971,36972,36975,36976,36980,36981,36982,36984,36986,36987,36988,36990,36993,36996,37000,37001,37002,37004,37006,37007,37009,37012,37013,37014,37015,37017,37019,37022,37023,37024,37026, +37028,37030,37031,37033,37036,37037,37039,37043,37045,37048,37051,37052,37054,37055,37056,37057,37059,37061,37064,37065,37066,37068,37071,37073,37076,37079,37081,37084,37085,37086,37088,37089,37091,37092,37095,37097,37098,37101,37102,37104,37106,37107,37109,37110,37111,37113,37114,37117,37118,37120,37122,37125,37126,37129,37131,37133,37134,37136,37138,37141,37143,37146,37147,37150,37151,37152,37156,37157,37158,37159,37161,37162,37164,37165,37168,37169,37170,37171,37173,37177,37181,37182,37183,37185,37186,37188,37189,37192,37193,37194,37196,37197,37200,37203,37206,37207,37211,37212,37215,37218,37220,37222,37224,37227,37228,37230,37234,37237,37238,37239,37240,37244,37247,37248,37249,37252,37253,37254,37258,37259,37260,37262,37265,37266,37268,37269,37270,37272,37274,37275,37278,37280,37282,37284,37287,37292,37297,37298,37300,37301,37302,37306,37307,37308,37309,37311,37314,37315,37319,37320,37321,37323,37324,37326,37327,37329,37330,37332,37335,37340,37341,37343,37344,37349,37350,37351,37353,37354,37357,37358,37359,37363,37365,37367,37368,37372,37373,37375,37378,37380,37384,37385,37387,37390,37391,37392,37394,37396,37399,37401,37404,37406,37408,37409,37410,37413,37415,37418,37420,37421,37422,37424,37425,37430,37433,37435,37436,37438,37440,37441,37444,37446,37449,37453,37456,37457,37458,37459,37461,37463,37466,37467,37471,37473,37475,37477,37478,37481,37482,37484,37485,37489,37492,37493,37495,37496,37498,37500,37501,37504,37505,37508,37510,37513,37517,37518,37520,37521,37522,37524,37525,37528,37531,37532,37535,37538,37539,37544,37545,37547,37548,37553,37555,37559,37561,37562,37564,37565,37566,37568,37569,37571,37572,37575,37576,37578,37580,37582,37583,37584,37586,37590,37594,37595,37597,37598,37600,37601,37604,37605,37607,37608,37609,37613,37614,37616,37618,37621,37622,37624,37625,37626,37629,37633,37634,37635,37639,37641,37643,37644,37645,37647,37648,37650,37655,37656,37657,37659,37661,37662,37664,37667,37669,37670,37671,37673,37674,37676,37677,37678,37680,37681,37683,37691,37692,37696,37697,37699,37700,37701,37702,37704, +37707,37709,37710,37713,37716,37717,37719,37720,37722,37723,37725,37729,37730,37731,37734,37735,37739,37740,37741,37743,37744,37746,37750,37751,37752,37753,37757,37758,37759,37761,37764,37767,37768,37770,37772,37774,37776,37778,37781,37784,37787,37788,37790,37791,37794,37796,37798,37799,37801,37802,37805,37807,37809,37810,37812,37815,37816,37820,37821,37823,37826,37827,37830,37834,37836,37837,37839,37840,37842,37845,37846,37848,37849,37853,37854,37855,37857,37858,37862,37864,37865,37866,37870,37872,37874,37877,37880,37883,37884,37885,37888,37889,37891,37894,37895,37896,37900,37902,37903,37906,37908,37911,37912,37915,37916,37918,37920,37921,37923,37924,37926,37929,37931,37933,37934,37937,37940,37942,37946,37948,37951,37954,37955,37957,37958,37959,37962,37964,37966,37967,37968,37971,37973,37974,37976,37978,37979,37981,37984,37985,37987,37989,37991,37992,37993,37995,37999,38000,38002,38003,38004,38007,38009,38012,38013,38014,38017,38018,38019,38021,38023,38025,38027,38029,38031,38035,38036,38037,38039,38040,38043,38044,38046,38047,38049,38052,38055,38057,38058,38059,38061,38062,38064,38065,38067,38068,38070,38072,38074,38075,38076,38080,38081,38084,38085,38089,38090,38091,38092,38094,38099,38102,38103,38105,38106,38109,38110,38112,38113,38117,38119,38120,38121,38122,38126,38128,38130,38135,38137,38138,38141,38143,38144,38147,38150,38151,38152,38155,38158,38159,38160,38164,38166,38167,38169,38172,38173,38176,38178,38181,38183,38184,38185,38187,38192,38193,38195,38196,38197,38199,38202,38205,38206,38208,38209,38212,38214,38215,38218,38221,38224,38225,38228,38230,38233,38234,38237,38238,38241,38243,38245,38246,38247,38249,38252,38254,38255,38258,38259,38262,38263,38265,38267,38268,38269,38271,38274,38279,38281,38282,38284,38287,38290,38291,38292,38293,38295,38297,38300,38302,38303,38305,38309,38312,38313,38314,38316,38318,38319,38323,38325,38327,38330,38331,38334,38335,38337,38338,38340,38341,38343,38345,38347,38349,38350,38352,38355,38357,38358,38362,38364,38366,38369,38370,38373,38374,38376,38380,38381,38382,38384,38385, +38386,38388,38389,38391,38392,38394,38397,38399,38400,38401,38405,38408,38410,38411,38412,38413,38415,38419,38420,38422,38423,38425,38426,38429,38431,38432,38433,38434,38437,38438,38439,38440,38442,38446,38448,38452,38453,38454,38456,38459,38460,38465,38467,38469,38473,38475,38479,38480,38482,38483,38484,38486,38487,38488,38490,38492,38494,38495,38497,38498,38500,38501,38502,38504,38506,38507,38508,38511,38513,38514,38515,38518,38519,38520,38524,38527,38530,38531,38532,38534,38535,38540,38542,38543,38545,38548,38549,38550,38552,38553,38558,38559,38560,38562,38564,38565,38567,38568,38571,38574,38575,38577,38580,38581,38583,38585,38587,38588,38591,38594,38595,38597,38599,38602,38604,38605,38608,38609,38610,38612,38614,38616,38619,38623,38624,38625,38630,38632,38633,38634,38635,38637,38638,38641,38645,38646,38651,38653,38654,38656,38658,38660,38662,38664,38667,38670,38672,38673,38675,38676,38680,38681,38682,38683,38686,38687,38689,38691,38692,38696,38698,38700,38704,38705,38707,38708,38711,38712,38715,38716,38718,38723,38725,38726,38727,38731,38732,38734,38735,38737,38740,38741,38743,38744,38746,38749,38750,38751,38753,38756,38758,38759,38761,38762,38765,38768,38769,38770,38772,38773,38775,38777,38779,38783,38784,38787,38789,38790,38794,38795,38798,38799,38804,38805,38809,38810,38811,38814,38819,38822,38823,38824,38828,38829,38830,38832,38834,38836,38839,38840,38841,38845,38846,38847,38848,38850,38852,38853,38856,38858,38861,38862,38864,38865,38869,38871,38876,38877,38879,38880,38885,38888,38889,38891,38892,38894,38896,38897,38899,38901,38903,38905,38909,38911,38912,38914,38915,38918,38919,38923,38925,38926,38928,38931,38933,38934,38936,38938,38940,38942,38944,38945,38946,38947,38949,38950,38952,38954,38956,38957,38958,38960,38961,38963,38964,38969,38971,38972,38973,38975,38977,38978,38979,38983,38985,38987,38989,38990,38992,38994,38997,38998,39002,39004,39007,39008,39011,39012,39017,39018,39020,39022,39023,39024,39026,39027,39028,39031,39032,39033,39035,39038,39039,39041,39042,39046,39047,39048,39049,39052,39053,39055, +39057,39060,39062,39064,39065,39066,39070,39071,39073,39076,39079,39080,39082,39086,39089,39090,39091,39094,39095,39096,39098,39099,39100,39102,39105,39110,39112,39114,39117,39119,39120,39123,39126,39130,39131,39132,39134,39135,39136,39139,39140,39141,39144,39145,39148,39149,39150,39151,39155,39156,39160,39162,39167,39169,39170,39171,39176,39178,39180,39182,39183,39187,39188,39189,39191,39193,39194,39195,39196,39200,39203,39205,39207,39208,39210,39211,39213,39217,39218,39220,39224,39225,39226,39228,39230,39231,39233,39234,39235,39238,39239,39243,39245,39248,39249,39250,39258,39260,39261,39263,39264,39267,39269,39272,39275,39276,39277,39280,39281,39282,39283,39287,39289,39293,39296,39298,39300,39301,39303,39305,39307,39311,39312,39314,39316,39317,39318,39319,39321,39326,39328,39329,39331,39332,39333,39335,39336,39337,39340,39341,39343,39345,39349,39350,39351,39353,39356,39357,39358,39360,39362,39364,39365,39366,39369,39371,39372,39373,39375,39377,39379,39380,39383,39384,39388,39390,39391,39394,39398,39399,39404,39405,39406,39408,39409,39412,39414,39416,39417,39418,39420,39424,39425,39426,39430,39433,39435,39436,39438,39440,39441,39443,39446,39448,39451,39453,39455,39457,39460,39463,39466,39469,39472,39473,39475,39476,39479,39480,39482,39483,39485,39488,39489,39491,39494,39495,39498,39499,39501,39503,39504,39505,39508,39512,39513,39514,39517,39518,39519,39520,39524,39525,39527,39530,39532,39533,39536,39539,39540,39542,39544,39545,39546,39550,39551,39553,39554,39556,39558,39562,39563,39565,39569,39572,39575,39576,39577,39580,39581,39582,39583,39585,39588,39593,39595,39599,39601,39602,39605,39607,39610,39614,39616,39617,39618,39621,39623,39625,39626,39627,39628,39630,39631,39633,39635,39637,39639,39640,39643,39645,39649,39650,39651,39652,39654,39656,39658,39660,39663,39664,39667,39668,39670,39671,39672,39673,39675,39677,39678,39679,39681,39682,39686,39687,39691,39694,39695,39696,39698,39699,39702,39703,39706,39707,39710,39712,39713,39715,39716,39717,39720,39724,39726,39727,39729,39730,39732,39734,39735,39740,39743,39746, +39747,39750,39751,39753,39756,39757,39760,39763,39766,39769,39770,39772,39773,39776,39777,39780,39781,39784,39785,39787,39788,39790,39791,39792,39793,39795,39798,39799,39802,39803,39804,39806,39808,39809,39810,39812,39813,39815,39817,39819,39823,39825,39826,39829,39833,39834,39836,39837,39838,39840,39843,39846,39847,39850,39853,39854,39856,39859,39863,39865,39870,39872,39875,39877,39880,39881,39882,39883,39885,39887,39890,39891,39892,39895,39897,39899,39900,39901,39903,39906,39908,39909,39910,39912,39914,39916,39918,39920,39922,39924,39928,39932,39933,39934,39936,39937,39939,39940,39942,39944,39946,39948,39952,39955,39956,39957,39959,39960,39961,39964,39966,39968,39970,39972,39974,39975,39979,39980,39982,39983,39985,39988,39989,39990,39992,39993,39994,39996,39999,40002,40006,40007,40008,40012,40015,40016,40019,40021,40024,40025,40028,40029,40030,40033,40034,40035,40036,40038,40041,40043,40044,40045,40048,40050,40055,40056,40057,40060,40062,40065,40066,40068,40069,40072,40075,40078,40079,40080,40084,40085,40087,40089,40091,40093,40094,40095,40097,40099,40100,40102,40103,40104,40106,40107,40108,40110,40112,40114,40115,40116,40119,40120,40123,40127,40128,40129,40132,40133,40134,40135,40137,40139,40140,40143,40148,40150,40153,40156,40157,40159,40160,40162,40163,40164,40165,40168,40169,40170,40173,40175,40178,40179,40183,40186,40189,40191,40193,40194,40196,40198,40199,40201,40202,40204,40206,40208,40209,40212,40213,40218,40221,40222,40225,40227,40228,40230,40231,40235,40237,40238,40239,40240,40244,40245,40247,40249,40250,40252,40255,40257,40259,40262,40264,40265,40267,40269,40271,40272,40274,40275,40276,40278,40280,40282,40283,40285,40287,40289,40291,40293,40296,40297,40299,40301,40304,40306,40307,40308,40309,40311,40312,40316,40317,40319,40321,40324,40325,40328,40329,40334,40335,40338,40340,40341,40345,40347,40350,40351,40354,40356,40359,40361,40364,40365,40366,40369,40371,40373,40374,40375,40378,40381,40382,40383,40385,40387,40388,40390,40391,40393,40395,40397,40398,40400,40403,40406,40407,40409,40410,40411,40413,40417, +40418,40419,40421,40425,40426,40428,40429,40433,40435,40436,40441,40442,40443,40445,40446,40449,40452,40454,40455,40457,40460,40462,40463,40465,40469,40470,40472,40473,40477,40478,40479,40482,40484,40485,40488,40492,40493,40494,40495,40497,40500,40501,40504,40508,40509,40510,40514,40516,40518,40521,40524,40525,40527,40528,40531,40532,40533,40534,40536,40540,40543,40544,40545,40547,40549,40552,40553,40555,40557,40561,40562,40564,40567,40570,40571,40574,40576,40577,40578,40579,40581,40583,40586,40588,40589,40592,40594,40595,40596,40597,40600,40603,40604,40605,40608,40610,40611,40615,40617,40618,40620,40621,40623,40625,40627,40628,40629,40632,40635,40640,40641,40642,40644,40645,40648,40649,40650,40653,40656,40658,40661,40662,40667,40668,40672,40673,40675,40679,40680,40681,40685,40688,40689,40691,40693,40696,40697,40698,40701,40703,40705,40707,40710,40711,40713,40714,40718,40719,40723,40724,40727,40728,40731,40732,40734,40738,40739,40741,40742,40743,40744,40746,40748,40750,40754,40755,40756,40758,40759,40763,40765,40766,40767,40769,40771,40772,40773,40777,40778,40780,40782,40784,40786,40787,40788,40791,40793,40794,40798,40801,40802,40803,40805,40808,40811,40812,40817,40819,40820,40821,40826,40827,40828,40831,40833,40835,40838,40840,40843,40844,40845,40846,40849,40851,40854,40858,40859,40860,40862,40863,40864,40866,40868,40870,40871,40874,40876,40877,40879,40881,40884,40885,40887,40890,40892,40894,40897,40898,40900,40903,40904,40905,40906,40910,40911,40912,40915,40917,40919,40921,40922,40923,40924,40926,40927,40929,40930,40932,40934,40935,40938,40940,40941,40942,40946,40948,40951,40953,40954,40958,40959,40964,40965,40966,40968,40969,40971,40974,40976,40978,40979,40981,40983,40985,40987,40988,40989,40991,40992,40996,40998,41000,41002,41003,41004,41005,41007,41011,41013,41015,41017,41018,41019,41020,41022,41026,41027,41028,41030,41031,41032,41034,41036,41039,41041,41043,41045,41048,41049,41050,41052,41055,41058,41059,41061,41064,41065,41069,41070,41074,41075,41078,41079,41083,41084,41085,41086,41088,41090,41091,41092,41095, +41098,41100,41101,41104,41107,41108,41109,41111,41112,41116,41118,41120,41123,41125,41127,41130,41132,41134,41137,41139,41141,41142,41145,41146,41148,41150,41153,41156,41157,41158,41161,41162,41165,41166,41167,41169,41171,41172,41173,41175,41179,41180,41181,41182,41186,41187,41192,41195,41198,41201,41202,41203,41205,41206,41208,41213,41216,41218,41219,41221,41222,41225,41226,41227,41230,41231,41233,41235,41238,41242,41244,41247,41248,41251,41255,41257,41258,41259,41261,41262,41264,41265,41266,41268,41271,41272,41274,41276,41277,41278,41280,41283,41285,41286,41288,41290,41293,41294,41295,41300,41301,41304,41305,41307,41308,41312,41313,41315,41316,41318,41319,41321,41322,41324,41326,41327,41328,41332,41333,41334,41336,41338,41339,41340,41344,41346,41348,41350,41351,41352,41357,41358,41360,41361,41362,41365,41366,41368,41369,41370,41374,41375,41376,41377,41380,41382,41384,41385,41387,41388,41390,41391,41392,41395,41399,41402,41405,41406,41407,41409,41412,41414,41415,41416,41419,41420,41422,41424,41427,41429,41430,41431,41433,41437,41438,41439,41441,41443,41445,41449,41452,41453,41455,41458,41460,41461,41463,41466,41467,41470,41472,41474,41477,41478,41479,41483,41484,41486,41487,41489,41492,41495,41496,41499,41500,41503,41504,41506,41507,41508,41511,41512,41514,41515,41519,41521,41523,41525,41526,41527,41531,41532,41536,41537,41538,41542,41544,41547,41549,41551,41552,41554,41556,41558,41559,41560,41562,41564,41566,41568,41570,41572,41573,41574,41577,41581,41583,41584,41588,41590,41592,41595,41599,41600,41603,41605,41606,41609,41610,41612,41615,41617,41618,41621,41622,41623,41626,41628,41630,41631,41632,41634,41637,41640,41641,41643,41644,41647,41649,41650,41652,41655,41656,41658,41659,41662,41663,41664,41666,41667,41668,41670,41673,41674,41677,41679,41682,41685,41687,41688,41690,41692,41694,41695,41698,41702,41704,41705,41706,41709,41710,41714,41716,41718,41720,41722,41723,41724,41726,41727,41730,41732,41734,41737,41739,41741,41742,41744,41746,41747,41750,41752,41754,41755,41757,41758,41761,41765,41767,41768,41769,41770, +41773,41774,41775,41778,41780,41781,41784,41785,41788,41791,41792,41793,41795,41796,41797,41800,41803,41805,41807,41808,41809,41812,41813,41814,41815,41817,41818,41820,41824,41825,41828,41830,41831,41834,41835,41836,41838,41842,41843,41845,41846,41847,41849,41850,41853,41854,41857,41861,41862,41863,41865,41867,41868,41871,41872,41874,41877,41878,41882,41884,41885,41888,41890,41892,41893,41895,41896,41898,41902,41904,41905,41908,41910,41912,41913,41914,41916,41919,41921,41922,41924,41925,41928,41932,41933,41936,41938,41939,41940,41942,41943,41944,41946,41948,41950,41952,41955,41958,41959,41961,41963,41964,41968,41971,41973,41974,41977,41980,41982,41986,41987,41990,41992,41993,41994,41996,41999,42001,42002,42004,42006,42007,42009,42011,42012,42014,42015,42018,42021,42025,42026,42028,42029,42030,42032,42033,42034,42036,42037,42039,42042,42044,42050,42052,42053,42054,42055,42057,42062,42063,42065,42066,42069,42071,42074,42076,42077,42078,42079,42082,42083,42085,42087,42089,42091,42092,42094,42095,42096,42098,42099,42101,42104,42106,42107,42109,42112,42113,42114,42117,42120,42123,42125,42126,42128,42129,42131,42134,42135,42137,42139,42140,42142,42146,42149,42150,42151,42153,42155,42157,42161,42163,42164,42165,42167,42168,42171,42174,42175,42177,42178,42180,42181,42185,42186,42188,42190,42194,42196,42197,42199,42202,42203,42204,42208,42209,42210,42212,42215,42216,42218,42220,42222,42225,42227,42229,42231,42235,42236,42237,42239,42240,42241,42245,42247,42248,42250,42253,42256,42257,42258,42259,42261,42264,42265,42269,42270,42275,42276,42278,42279,42282,42284,42287,42288,42291,42292,42294,42295,42298,42303,42308,42310,42311,42313,42316,42317,42320,42321,42324,42325,42327,42329,42331,42332,42333,42335,42337,42339,42340,42342,42343,42345,42347,42348,42351,42354,42356,42357,42361,42362,42363,42365,42366,42368,42371,42374,42375,42376,42378,42380,42381,42382,42384,42388,42392,42394,42398,42400,42401,42402,42404,42407,42410,42411,42412,42416,42417,42419,42420,42424,42425,42426,42427,42429,42432,42433,42439,42440,42442,42443,42445, +42448,42449,42451,42452,42454,42455,42458,42460,42462,42464,42465,42467,42468,42471,42474,42475,42477,42478,42482,42483,42484,42487,42489,42493,42494,42495,42496,42498,42499,42502,42504,42506,42507,42508,42510,42514,42515,42516,42519,42521,42523,42524,42526,42527,42529,42530,42532,42536,42538,42539,42541,42542,42544,42548,42551,42552,42554,42556,42557,42558,42559,42561,42562,42566,42568,42569,42572,42575,42576,42578,42579,42583,42584,42585,42586,42589,42593,42594,42596,42597,42599,42601,42602,42603,42604,42606,42608,42610,42611,42613,42617,42618,42620,42621,42624,42628,42631,42632,42633,42634,42638,42641,42642,42644,42647,42649,42650,42651,42654,42655,42657,42658,42662,42663,42665,42666,42669,42671,42672,42673,42675,42677,42678,42681,42682,42685,42687,42690,42691,42695,42697,42700,42701,42702,42703,42705,42706,42708,42711,42714,42716,42718,42720,42722,42725,42726,42727,42731,42733,42736,42738,42740,42741,42744,42747,42749,42752,42753,42754,42757,42758,42760,42764,42765,42767,42768,42770,42772,42774,42776,42777,42779,42780,42782,42783,42787,42790,42792,42793,42795,42797,42801,42803,42805,42806,42807,42811,42812,42814,42816,42817,42820,42823,42825,42829,42830,42831,42836,42838,42841,42842,42843,42844,42846,42847,42849,42852,42855,42857,42860,42862,42864,42866,42867,42868,42871,42872,42875,42876,42877,42880,42882,42884,42885,42888,42890,42891,42892,42895,42896,42897,42898,42902,42903,42907,42910,42912,42913,42916,42918,42922,42923,42926,42928,42931,42934,42935,42937,42940,42941,42942,42943,42945,42947,42949,42950,42951,42953,42954,42956,42957,42958,42961,42964,42965,42967,42968,42970,42971,42972,42973,42976,42979,42980,42982,42983,42985,42988,42990,42995,42996,42997,42999,43000,43002,43004,43007,43008,43010,43011,43014,43016,43017,43018,43020,43021,43023,43025,43026,43027,43029,43031,43032,43036,43037,43039,43040,43043,43046,43049,43051,43054,43055,43056,43058,43059,43060,43064,43065,43066,43070,43072,43075,43077,43078,43081,43083,43085,43087,43090,43091,43092,43096,43097,43098,43101,43102,43106,43107,43109,43111,43113, +43115,43117,43119,43120,43122,43124,43126,43127,43128,43131,43134,43136,43137,43140,43144,43146,43148,43151,43153,43156,43157,43158,43162,43164,43165,43167,43171,43174,43175,43177,43179,43181,43183,43184,43185,43186,43188,43192,43194,43196,43199,43202,43203,43206,43210,43211,43213,43214,43215,43216,43220,43222,43223,43224,43226,43228,43230,43233,43234,43237,43239,43243,43246,43247,43249,43252,43253,43255,43256,43258,43262,43265,43266,43268,43269,43271,43273,43277,43278,43280,43285,43286,43288,43289,43291,43293,43294,43296,43299,43300,43302,43304,43305,43307,43308,43309,43313,43316,43317,43318,43320,43324,43327,43329,43330,43332,43334,43336,43337,43340,43342,43346,43348,43350,43351,43353,43355,43356,43358,43360,43361,43362,43363,43365,43367,43369,43372,43373,43374,43377,43379,43381,43383,43384,43386,43388,43389,43392,43396,43397,43400,43401,43404,43405,43409,43411,43413,43415,43416,43418,43420,43422,43426,43430,43431,43432,43434,43438,43441,43442,43443,43445,43447,43449,43451,43452,43453,43456,43458,43460,43461,43463,43464,43467,43469,43471,43474,43477,43478,43480,43481,43482,43484,43486,43490,43491,43492,43496,43499,43501,43502,43504,43505,43506,43507,43509,43510,43513,43515,43517,43518,43520,43523,43524,43525,43529,43530,43531,43533,43534,43536,43537,43540,43541,43543,43545,43546,43548,43551,43553,43556,43558,43560,43561,43563,43565,43566,43569,43571,43573,43577,43579,43580,43583,43584,43587,43588,43591,43592,43593,43594,43597,43599,43600,43603,43604,43605,43607,43610,43611,43612,43615,43617,43618,43621,43622,43624,43625,43626,43627,43629,43630,43633,43635,43639,43641,43644,43649,43650,43651,43653,43654,43657,43658,43660,43661,43663,43665,43668,43669,43671,43676,43677,43679,43680,43682,43683,43686,43690,43693,43694,43695,43698,43699,43702,43703,43705,43706,43707,43712,43713,43716,43719,43721,43722,43725,43726,43728,43731,43735,43737,43738,43741,43742,43743,43744,43748,43749,43751,43752,43754,43756,43759,43763,43764,43765,43769,43771,43774,43777,43781,43782,43783,43785,43786,43790,43791,43793,43795,43797,43798,43802, +43804,43805,43808,43809,43811,43812,43814,43816,43818,43819,43821,43824,43825,43829,43831,43832,43834,43835,43837,43840,43843,43844,43846,43849,43850,43851,43855,43856,43858,43859,43862,43864,43865,43867,43868,43870,43872,43876,43877,43880,43881,43882,43884,43887,43890,43892,43893,43894,43896,43897,43899,43900,43903,43906,43908,43909,43911,43913,43915,43916,43917,43919,43921,43922,43923,43926,43927,43929,43933,43934,43936,43939,43940,43941,43943,43944,43945,43949,43950,43951,43953,43954,43957,43958,43959,43962,43964,43965,43966,43968,43971,43972,43976,43981,43983,43986,43988,43990,43991,43992,43995,43997,43998,43999,44001,44002,44004,44006,44007,44010,44011,44015,44020,44024,44025,44026,44030,44031,44033,44036,44039,44040,44041,44043,44045,44046,44049,44052,44053,44055,44057,44060,44061,44062,44065,44066,44067,44069,44070,44072,44075,44076,44078,44080,44081,44084,44085,44087,44089,44090,44091,44096,44098,44103,44107,44108,44109,44110,44112,44114,44115,44116,44119,44120,44121,44122,44124,44127,44128,44132,44134,44135,44136,44141,44142,44143,44146,44147,44149,44150,44153,44154,44158,44160,44162,44163,44166,44169,44173,44177,44178,44180,44181,44182,44184,44186,44187,44190,44192,44195,44196,44199,44201,44202,44205,44206,44214,44216,44217,44218,44222,44223,44224,44226,44227,44229,44231,44233,44235,44236,44241,44242,44244,44246,44248,44249,44250,44252,44255,44257,44258,44261,44263,44265,44266,44268,44271,44273,44276,44277,44279,44282,44283,44285,44287,44290,44291,44293,44294,44296,44300,44301,44303,44304,44308,44309,44310,44314,44315,44317,44318,44319,44322,44325,44327,44329,44330,44331,44333,44335,44337,44342,44344,44347,44349,44350,44352,44354,44356,44357,44359,44362,44363,44364,44368,44369,44370,44372,44373,44374,44377,44378,44379,44380,44382,44384,44387,44389,44390,44391,44392,44395,44396,44398,44401,44402,44403,44407,44408,44409,44410,44413,44414,44416,44417,44419,44422,44424,44425,44427,44428,44431,44433,44437,44438,44440,44443,44444,44446,44448,44451,44453,44454,44457,44458,44460,44461,44464,44465,44466,44468,44470, +44472,44477,44480,44481,44482,44484,44485,44488,44490,44493,44496,44498,44500,44501,44502,44504,44505,44508,44513,44516,44517,44520,44522,44523,44524,44526,44528,44529,44531,44532,44534,44535,44537,44540,44541,44543,44544,44547,44550,44554,44555,44556,44561,44562,44563,44567,44568,44569,44572,44573,44574,44575,44577,44578,44581,44582,44584,44585,44588,44589,44593,44595,44598,44599,44602,44606,44609,44611,44612,44614,44615,44617,44618,44619,44624,44626,44629,44630,44631,44634,44637,44640,44642,44643,44645,44647,44649,44651,44653,44655,44656,44659,44660,44661,44662,44664,44665,44667,44669,44671,44672,44673,44676,44677,44680,44681,44683,44685,44686,44688,44690,44691,44692,44695,44697,44701,44702,44703,44706,44707,44711,44712,44713,44717,44718,44721,44725,44726,44728,44729,44730,44732,44734,44735,44738,44739,44740,44742,44744,44746,44749,44750,44753,44754,44759,44760,44762,44765,44767,44769,44770,44772,44774,44775,44776,44778,44779,44781,44782,44786,44789,44791,44792,44794,44795,44796,44800,44802,44804,44805,44808,44812,44814,44817,44819,44820,44822,44824,44825,44826,44827,44830,44832,44834,44836,44838,44840,44842,44843,44845,44846,44848,44849,44850,44851,44854,44856,44858,44860,44861,44863,44865,44866,44868,44873,44875,44876,44878,44879,44880,44883,44885,44887,44889,44893,44895,44897,44899,44900,44903,44904,44905,44908,44911,44913,44917,44918,44919,44921,44922,44926,44927,44928,44931,44934,44938,44939,44940,44942,44944,44947,44951,44952,44954,44955,44957,44958,44962,44964,44966,44969,44970,44971,44975,44978,44980,44982,44986,44987,44989,44990,44992,44993,44994,44997,44999,45001,45002,45003,45007,45008,45011,45013,45017,45020,45022,45023,45024,45026,45028,45030,45031,45033,45035,45036,45040,45042,45044,45045,45048,45049,45052,45053,45055,45056,45057,45058,45062,45063,45066,45067,45070,45071,45072,45074,45075,45080,45081,45085,45089,45091,45092,45093,45095,45098,45099,45101,45103,45105,45108,45109,45111,45112,45114,45115,45118,45120,45124,45125,45127,45129,45130,45134,45136,45138,45141,45143,45144,45146,45147,45149,45151, +45153,45154,45157,45159,45160,45163,45168,45170,45171,45175,45177,45179,45180,45184,45186,45188,45189,45190,45194,45195,45196,45198,45201,45204,45205,45207,45209,45212,45213,45215,45217,45221,45222,45224,45226,45228,45231,45233,45234,45237,45239,45240,45244,45245,45247,45248,45249,45252,45254,45255,45256,45260,45261,45264,45268,45269,45272,45274,45277,45281,45283,45286,45287,45288,45290,45291,45293,45294,45295,45297,45299,45301,45302,45304,45306,45307,45309,45312,45314,45315,45318,45320,45322,45323,45324,45326,45328,45330,45333,45334,45337,45340,45341,45342,45343,45346,45348,45349,45352,45354,45355,45358,45360,45361,45364,45368,45370,45371,45372,45373,45375,45378,45382,45383,45384,45386,45387,45390,45394,45398,45400,45401,45406,45408,45410,45411,45413,45416,45419,45420,45423,45424,45426,45430,45432,45434,45435,45437,45438,45440,45442,45444,45447,45449,45451,45452,45453,45456,45458,45459,45460,45462,45463,45465,45467,45468,45470,45471,45473,45476,45477,45479,45481,45484,45485,45488,45490,45492,45496,45497,45498,45499,45502,45503,45505,45508,45511,45512,45513,45515,45518,45519,45520,45522,45523,45525,45527,45528,45530,45532,45533,45534,45536,45537,45539,45540,45542,45545,45547,45550,45551,45554,45555,45557,45558,45560,45561,45564,45569,45572,45573,45574,45577,45580,45581,45582,45584,45586,45587,45588,45591,45594,45596,45598,45599,45600,45601,45604,45605,45608,45609,45611,45612,45617,45618,45620,45622,45625,45627,45630,45631,45635,45637,45638,45639,45641,45642,45643,45646,45648,45651,45653,45654,45655,45659,45660,45662,45663,45667,45668,45671,45673,45674,45675,45679,45681,45683,45684,45685,45689,45690,45692,45694,45698,45699,45700,45703,45705,45706,45710,45713,45716,45717,45718,45720,45722,45725,45727,45731,45733,45734,45735,45739,45740,45742,45746,45747,45748,45752,45755,45757,45760,45762,45763,45765,45766,45768,45769,45772,45775,45777,45779,45780,45781,45783,45785,45787,45788,45790,45791,45793,45796,45797,45798,45801,45802,45806,45807,45809,45810,45812,45813,45814,45817,45821,45824,45825,45827,45829,45831,45835,45836, +45838,45842,45843,45845,45847,45848,45850,45852,45854,45855,45858,45860,45864,45865,45869,45870,45871,45874,45875,45876,45880,45881,45885,45889,45891,45892,45894,45895,45897,45899,45901,45904,45905,45906,45908,45910,45911,45912,45913,45917,45918,45923,45925,45926,45927,45929,45932,45934,45937,45938,45939,45941,45942,45944,45946,45947,45949,45950,45951,45954,45955,45958,45959,45962,45963,45965,45966,45971,45972,45975,45976,45979,45980,45981,45982,45984,45985,45987,45990,45992,45993,45998,46001,46002,46004,46005,46006,46012,46016,46018,46019,46021,46022,46023,46025,46027,46028,46030,46033,46037,46040,46041,46042,46045,46046,46048,46050,46051,46053,46054,46056,46058,46060,46063,46064,46065,46066,46068,46072,46074,46076,46078,46080,46081,46084,46085,46086,46089,46092,46095,46097,46098,46099,46101,46102,46104,46107,46111,46112,46114,46116,46118,46121,46123,46127,46129,46132,46133,46135,46136,46137,46139,46142,46145,46147,46148,46149,46151,46154,46155,46159,46161,46163,46166,46167,46171,46172,46174,46177,46179,46181,46182,46187,46188,46189,46192,46193,46194,46196,46198,46199,46200,46202,46203,46205,46208,46209,46212,46213,46215,46216,46220,46221,46222,46224,46226,46227,46229,46231,46234,46236,46239,46241,46243,46245,46249,46250,46253,46254,46256,46257,46258,46260,46261,46264,46268,46270,46272,46275,46280,46281,46283,46284,46286,46288,46290,46292,46295,46296,46298,46301,46303,46305,46306,46308,46309,46313,46314,46315,46317,46319,46322,46324,46325,46326,46327,46330,46333,46336,46337,46340,46341,46343,46344,46346,46351,46352,46355,46357,46358,46359,46362,46363,46367,46370,46372,46373,46375,46376,46377,46382,46383,46385,46388,46389,46390,46392,46395,46396,46399,46400,46401,46403,46405,46406,46408,46411,46412,46413,46415,46418,46419,46421,46422,46427,46428,46432,46433,46434,46436,46438,46439,46440,46441,46443,46444,46446,46448,46450,46452,46454,46457,46459,46462,46463,46465,46466,46467,46469,46470,46472,46473,46477,46479,46480,46483,46485,46486,46488,46489,46491,46493,46495,46496,46499,46501,46502,46503,46507,46510,46511,46512, +46514,46515,46517,46519,46523,46526,46528,46529,46530,46532,46535,46536,46538,46539,46542,46544,46546,46548,46551,46554,46555,46560,46562,46563,46566,46567,46570,46571,46572,46573,46575,46576,46579,46580,46582,46585,46588,46589,46590,46592,46595,46596,46598,46599,46600,46603,46604,46605,46609,46610,46612,46615,46616,46618,46621,46624,46625,46627,46629,46630,46632,46633,46635,46638,46643,46645,46646,46648,46651,46655,46656,46658,46659,46661,46663,46664,46665,46666,46669,46670,46672,46674,46675,46679,46681,46683,46685,46686,46688,46690,46691,46694,46696,46699,46702,46703,46704,46706,46709,46710,46712,46714,46716,46720,46721,46723,46724,46726,46729,46730,46731,46734,46735,46739,46741,46745,46747,46749,46751,46752,46755,46759,46760,46761,46767,46768,46772,46774,46775,46777,46778,46779,46780,46782,46783,46786,46787,46788,46789,46792,46796,46797,46800,46803,46804,46806,46810,46811,46813,46817,46819,46820,46821,46824,46825,46827,46829,46832,46833,46837,46839,46844,46846,46848,46849,46851,46855,46856,46857,46859,46860,46861,46865,46867,46871,46872,46874,46875,46878,46880,46881,46885,46886,46887,46890,46893,46895,46897,46901,46902,46903,46905,46908,46909,46912,46913,46916,46918,46921,46922,46924,46926,46930,46931,46932,46933,46937,46938,46940,46941,46942,46945,46946,46948,46950,46952,46954,46958,46960,46961,46963,46964,46965,46967,46968,46970,46971,46972,46975,46978,46979,46981,46982,46984,46987,46990,46991,46993,46994,46996,46997,46998,46999,47001,47003,47005,47006,47007,47008,47011,47012,47014,47017,47020,47023,47027,47028,47030,47031,47036,47038,47039,47040,47041,47045,47046,47048,47049,47051,47052,47053,47056,47057,47058,47060,47061,47065,47066,47068,47069,47071,47072,47073,47075,47076,47077,47080,47081,47083,47087,47088,47089,47092,47094,47098,47099,47100,47102,47104,47108,47110,47112,47113,47115,47117,47119,47121,47124,47125,47128,47129,47130,47134,47136,47137,47140,47143,47145,47147,47148,47151,47152,47154,47156,47158,47159,47160,47164,47165,47166,47168,47171,47174,47175,47179,47180,47181,47184,47186,47187,47188,47191, +47194,47197,47199,47203,47204,47206,47207,47208,47209,47212,47213,47215,47218,47219,47222,47223,47224,47227,47229,47232,47234,47236,47238,47240,47242,47243,47245,47246,47248,47249,47252,47254,47255,47258,47259,47261,47263,47264,47266,47267,47269,47272,47273,47274,47278,47281,47282,47284,47288,47291,47294,47296,47299,47301,47304,47306,47309,47311,47314,47315,47316,47317,47319,47322,47325,47327,47329,47331,47332,47335,47337,47339,47342,47344,47345,47346,47348,47351,47353,47354,47356,47357,47358,47359,47362,47366,47368,47369,47370,47372,47374,47375,47376,47377,47379,47380,47382,47383,47385,47387,47388,47389,47391,47396,47399,47400,47402,47403,47405,47406,47410,47411,47413,47414,47415,47416,47418,47419,47421,47423,47424,47425,47427,47429,47431,47432,47433,47434,47436,47437,47439,47440,47443,47446,47448,47451,47453,47454,47455,47457,47458,47460,47462,47464,47467,47470,47471,47473,47475,47477,47479,47483,47484,47485,47487,47491,47493,47495,47498,47499,47501,47503,47506,47507,47508,47511,47512,47516,47517,47518,47520,47523,47526,47527,47530,47531,47532,47533,47535,47536,47539,47540,47543,47545,47546,47548,47549,47550,47551,47553,47557,47559,47561,47562,47563,47567,47568,47569,47571,47572,47574,47576,47577,47580,47581,47585,47586,47588,47591,47594,47595,47596,47600,47601,47603,47604,47605,47607,47609,47610,47613,47616,47619,47620,47623,47624,47625,47626,47630,47633,47635,47637,47640,47642,47643,47644,47647,47648,47650,47651,47652,47655,47658,47659,47663,47664,47665,47668,47670,47671,47675,47678,47681,47682,47686,47687,47688,47690,47693,47694,47699,47701,47703,47704,47706,47708,47710,47711,47712,47713,47716,47717,47719,47722,47723,47724,47726,47727,47730,47733,47735,47736,47738,47739,47744,47745,47748,47749,47752,47753,47755,47756,47757,47758,47760,47763,47764,47766,47767,47771,47774,47775,47776,47779,47780,47781,47784,47788,47790,47792,47794,47795,47796,47799,47800,47802,47804,47806,47809,47813,47814,47815,47818,47821,47824,47827,47829,47831,47832,47837,47838,47839,47842,47844,47849,47851,47852,47853,47856,47859,47860,47862, +47863,47865,47867,47870,47871,47874,47876,47878,47879,47882,47884,47885,47887,47891,47892,47893,47896,47898,47899,47902,47903,47904,47908,47912,47913,47915,47918,47919,47920,47922,47923,47926,47929,47933,47934,47936,47937,47940,47941,47944,47946,47948,47953,47957,47959,47960,47962,47963,47965,47967,47968,47971,47972,47975,47976,47978,47981,47984,47986,47989,47991,47994,47995,47998,48002,48003,48004,48006,48007,48009,48010,48012,48016,48018,48021,48023,48024,48025,48027,48030,48031,48035,48036,48037,48040,48042,48046,48047,48049,48050,48052,48054,48056,48057,48058,48060,48063,48066,48068,48069,48070,48074,48075,48076,48078,48080,48081,48085,48086,48087,48088,48090,48094,48096,48097,48099,48102,48106,48108,48109,48113,48114,48115,48117,48119,48121,48122,48123,48126,48128,48131,48133,48134,48136,48139,48142,48143,48146,48149,48151,48152,48153,48154,48156,48159,48163,48165,48166,48169,48171,48172,48174,48177,48181,48184,48185,48187,48188,48189,48192,48193,48196,48197,48199,48200,48202,48203,48204,48209,48210,48211,48213,48215,48216,48218,48220,48221,48222,48223,48226,48227,48228,48230,48231,48232,48234,48236,48238,48241,48242,48243,48245,48246,48247,48251,48254,48255,48256,48258,48259,48262,48263,48264,48265,48269,48271,48274,48276,48280,48282,48283,48285,48289,48291,48293,48294,48297,48302,48304,48305,48307,48310,48312,48314,48315,48317,48319,48322,48325,48326,48328,48331,48332,48334,48336,48337,48339,48341,48342,48347,48348,48349,48351,48352,48355,48356,48357,48358,48360,48361,48364,48366,48369,48371,48372,48374,48376,48377,48380,48381,48384,48385,48389,48390,48391,48393,48395,48397,48398,48399,48400,48404,48405,48406,48408,48409,48412,48413,48415,48418,48419,48420,48424,48426,48431,48432,48435,48436,48439,48440,48441,48443,48445,48446,48447,48450,48452,48455,48458,48459,48463,48464,48465,48469,48470,48471,48473,48474,48477,48481,48484,48488,48490,48491,48493,48494,48495,48496,48498,48501,48504,48506,48508,48512,48513,48515,48516,48517,48519,48521,48522,48524,48525,48529,48530,48531,48533,48535,48536,48537,48540,48542, +48543,48546,48547,48551,48552,48555,48557,48558,48560,48561,48566,48567,48568,48570,48571,48573,48574,48578,48579,48580,48582,48587,48590,48592,48593,48595,48597,48602,48603,48607,48608,48610,48613,48615,48618,48622,48623,48625,48626,48627,48628,48630,48632,48633,48636,48638,48641,48642,48646,48647,48648,48652,48654,48657,48659,48661,48663,48666,48667,48669,48670,48673,48674,48675,48676,48679,48683,48684,48687,48690,48691,48693,48695,48696,48697,48699,48703,48704,48707,48708,48711,48712,48715,48717,48718,48721,48723,48724,48726,48727,48729,48733,48734,48735,48739,48740,48741,48743,48744,48745,48747,48749,48751,48752,48754,48755,48757,48761,48763,48764,48767,48770,48771,48772,48774,48778,48779,48780,48784,48786,48789,48790,48793,48794,48795,48799,48800,48801,48802,48804,48807,48808,48810,48814,48817,48818,48820,48822,48823,48826,48829,48832,48835,48836,48838,48839,48841,48842,48844,48846,48847,48850,48851,48854,48856,48857,48860,48861,48863,48864,48868,48869,48871,48873,48876,48877,48880,48884,48886,48887,48889,48893,48896,48897,48899,48901,48905,48906,48907,48911,48913,48914,48915,48916,48919,48923,48924,48925,48929,48930,48934,48935,48936,48937,48939,48943,48945,48949,48951,48952,48954,48957,48958,48961,48962,48963,48964,48966,48970,48971,48973,48976,48977,48978,48979,48981,48984,48986,48987,48991,48995,48996,48999,49000,49002,49006,49009,49010,49011,49013,49015,49016,49019,49022,49024,49025,49026,49028,49029,49031,49032,49037,49039,49041,49044,49047,49049,49051,49054,49055,49057,49059,49060,49062,49063,49066,49067,49070,49072,49073,49075,49076,49077,49079,49081,49085,49086,49087,49089,49092,49094,49095,49098,49099,49101,49104,49105,49109,49111,49112,49115,49116,49118,49119,49121,49122,49123,49125,49126,49129,49131,49132,49136,49137,49138,49142,49143,49145,49146,49150,49153,49154,49155,49159,49161,49162,49167,49168,49170,49172,49173,49174,49178,49179,49180,49183,49185,49189,49191,49194,49195,49199,49200,49202,49205,49206,49207,49210,49211,49212,49214,49215,49216,49219,49220,49223,49224,49225,49227,49228,49230,49233, +49238,49241,49242,49244,49245,49246,49248,49253,49254,49256,49259,49260,49262,49263,49266,49269,49270,49273,49274,49275,49277,49279,49280,49283,49284,49285,49289,49292,49294,49296,49298,49300,49301,49304,49305,49306,49308,49310,49311,49314,49317,49319,49320,49322,49325,49326,49328,49330,49331,49334,49335,49336,49340,49341,49342,49344,49349,49351,49353,49354,49356,49359,49361,49362,49363,49365,49367,49368,49370,49374,49375,49377,49379,49381,49382,49385,49387,49388,49389,49391,49392,49394,49400,49401,49404,49407,49409,49411,49412,49414,49416,49418,49419,49420,49423,49425,49429,49430,49432,49433,49436,49438,49440,49442,49444,49446,49448,49449,49450,49452,49454,49455,49457,49458,49462,49464,49465,49467,49469,49471,49475,49476,49480,49482,49485,49490,49493,49494,49497,49498,49501,49502,49503,49507,49509,49514,49515,49516,49519,49522,49524,49525,49528,49532,49533,49535,49536,49539,49542,49544,49545,49546,49550,49552,49556,49557,49558,49560,49561,49564,49567,49571,49572,49573,49575,49577,49578,49583,49586,49588,49591,49592,49593,49594,49596,49597,49601,49602,49603,49607,49609,49611,49612,49616,49617,49619,49621,49622,49624,49628,49629,49633,49634,49635,49638,49640,49642,49643,49644,49647,49650,49652,49655,49656,49660,49661,49662,49664,49665,49670,49672,49673,49674,49675,49677,49678,49681,49682,49685,49686,49687,49689,49691,49692,49695,49696,49698,49700,49701,49702,49705,49706,49707,49708,49712,49713,49716,49717,49721,49722,49723,49725,49726,49730,49733,49735,49736,49737,49739,49740,49742,49743,49746,49748,49753,49757,49759,49760,49761,49766,49767,49768,49770,49771,49773,49775,49776,49779,49782,49783,49786,49787,49789,49790,49791,49796,49799,49802,49803,49805,49807,49808,49810,49814,49815,49817,49821,49822,49824,49825,49828,49829,49830,49832,49834,49835,49837,49838,49839,49843,49846,49847,49849,49850,49853,49854,49859,49860,49861,49864,49868,49869,49870,49873,49874,49876,49878,49882,49884,49887,49891,49892,49893,49894,49897,49900,49901,49902,49904,49905,49908,49913,49915,49916,49919,49921,49923,49924,49926,49928,49930,49934, +49937,49939,49941,49943,49945,49947,49951,49955,49957,49959,49960,49962,49963,49967,49968,49970,49973,49974,49975,49977,49978,49980,49982,49985,49987,49988,49989,49991,49992,49994,49995,49997,50000,50003,50004,50009,50012,50014,50015,50016,50018,50020,50024,50025,50029,50031,50033,50034,50038,50039,50040,50041,50044,50046,50048,50051,50053,50055,50056,50059,50060,50061,50063,50064,50065,50068,50070,50073,50074,50076,50079,50080,50082,50083,50085,50086,50089,50090,50093,50094,50095,50100,50102,50104,50105,50106,50108,50109,50111,50113,50114,50117,50118,50122,50123,50124,50126,50127,50130,50131,50134,50136,50138,50139,50141,50142,50144,50146,50147,50149,50152,50155,50158,50159,50160,50165,50166,50167,50170,50171,50172,50174,50177,50179,50180,50182,50183,50186,50187,50189,50190,50195,50197,50199,50202,50203,50205,50207,50208,50211,50213,50215,50217,50222,50225,50226,50229,50233,50235,50236,50240,50241,50243,50244,50246,50248,50249,50250,50255,50256,50261,50262,50266,50267,50268,50269,50271,50274,50278,50280,50283,50285,50288,50290,50293,50294,50295,50299,50301,50304,50306,50308,50310,50314,50315,50318,50320,50321,50322,50323,50325,50327,50328,50330,50331,50332,50334,50335,50337,50342,50343,50344,50346,50348,50349,50352,50356,50357,50359,50360,50363,50364,50367,50368,50370,50372,50375,50376,50377,50381,50382,50384,50385,50389,50390,50393,50394,50395,50397,50399,50401,50402,50403,50406,50410,50412,50416,50417,50419,50421,50423,50425,50426,50427,50429,50430,50431,50435,50438,50441,50442,50443,50445,50447,50449,50450,50451,50452,50454,50458,50461,50462,50463,50466,50467,50470,50471,50472,50473,50476,50479,50480,50481,50484,50488,50490,50491,50494,50496,50498,50500,50504,50505,50506,50509,50510,50511,50515,50516,50517,50521,50522,50525,50526,50527,50530,50532,50534,50535,50536,50538,50542,50543,50546,50547,50549,50550,50552,50553,50557,50559,50562,50564,50565,50567,50568,50569,50571,50574,50575,50579,50581,50582,50583,50588,50591,50593,50595,50597,50599,50601,50603,50605,50607,50608,50610,50614,50615,50618,50619,50620,50627, +50628,50633,50635,50637,50638,50640,50642,50644,50645,50646,50648,50649,50652,50655,50657,50658,50660,50661,50665,50666,50669,50670,50672,50674,50676,50683,50684,50685,50687,50688,50689,50691,50694,50695,50697,50699,50700,50702,50705,50707,50710,50714,50716,50718,50720,50721,50725,50727,50728,50732,50733,50737,50738,50739,50743,50744,50745,50747,50750,50751,50754,50755,50757,50760,50763,50765,50766,50767,50769,50770,50773,50774,50777,50780,50781,50784,50785,50787,50788,50791,50793,50794,50796,50797,50799,50800,50804,50806,50809,50810,50811,50812,50815,50816,50817,50822,50823,50825,50826,50830,50831,50833,50834,50835,50837,50838,50841,50845,50847,50849,50850,50852,50854,50856,50857,50861,50863,50864,50865,50868,50872,50874,50876,50877,50878,50880,50881,50884,50887,50888,50889,50891,50893,50897,50898,50902,50903,50906,50907,50908,50910,50911,50913,50914,50916,50921,50924,50926,50929,50932,50939,50940,50941,50945,50946,50949,50953,50954,50955,50960,50961,50963,50964,50966,50967,50968,50970,50975,50977,50979,50980,50983,50984,50985,50986,50988,50992,50993,50994,50995,50997,50998,51000,51001,51003,51004,51006,51009,51012,51013,51017,51018,51020,51022,51023,51026,51027,51028,51031,51032,51033,51038,51040,51041,51044,51045,51047,51048,51050,51052,51053,51056,51057,51060,51061,51064,51067,51068,51069,51071,51074,51076,51079,51080,51081,51082,51085,51086,51087,51089,51090,51092,51094,51095,51096,51098,51101,51102,51104,51105,51108,51112,51114,51115,51117,51120,51122,51123,51124,51128,51130,51132,51133,51136,51139,51140,51142,51146,51147,51149,51152,51153,51156,51161,51162,51163,51165,51167,51170,51171,51174,51176,51177,51178,51181,51182,51183,51186,51188,51189,51193,51195,51199,51200,51201,51203,51204,51207,51208,51210,51214,51218,51219,51223,51227,51228,51232,51233,51234,51239,51242,51245,51247,51248,51249,51252,51254,51255,51256,51258,51259,51263,51266,51267,51268,51270,51272,51275,51277,51278,51280,51281,51282,51285,51289,51290,51291,51293,51294,51297,51299,51301,51303,51305,51306,51310,51314,51315,51316,51319,51320,51321, +51322,51326,51327,51330,51332,51334,51336,51338,51341,51343,51345,51348,51350,51351,51353,51354,51355,51357,51359,51360,51362,51364,51365,51367,51368,51369,51371,51372,51374,51375,51376,51378,51381,51385,51387,51392,51394,51395,51397,51400,51401,51402,51404,51405,51407,51408,51409,51412,51416,51417,51421,51425,51427,51428,51429,51430,51432,51434,51435,51436,51439,51443,51446,51447,51448,51452,51454,51455,51458,51461,51463,51464,51468,51469,51473,51475,51476,51479,51480,51481,51483,51487,51491,51493,51494,51495,51496,51498,51499,51501,51502,51506,51507,51509,51512,51514,51515,51516,51517,51521,51522,51525,51528,51530,51533,51535,51537,51539,51542,51544,51545,51548,51549,51554,51555,51557,51560,51563,51564,51566,51568,51569,51570,51574,51575,51576,51578,51579,51584,51587,51591,51595,51597,51600,51603,51607,51610,51611,51612,51615,51619,51620,51622,51624,51625,51629,51630,51631,51635,51637,51638,51640,51641,51642,51644,51648,51651,51652,51657,51658,51662,51663,51665,51666,51667,51670,51673,51676,51680,51682,51683,51685,51689,51690,51693,51697,51700,51701,51703,51704,51706,51711,51716,51717,51718,51719,51720,51721,51723,51724,51726,51728,51730,51731,51732,51733,51735,51737,51738,51740,51742,51743,51745,51746,51747,51748,51751,51752,51753,51757,51758,51759,51760,51763,51766,51768,51769,51771,51772,51776,51777,51779,51780,51781,51783,51784,51786,51787,51790,51791,51793,51794,51796,51797,51799,51801,51802,51806,51807,51810,51812,51813,51817,51818,51820,51821,51823,51824,51826,51828,51831,51835,51836,51837,51838,51841,51842,51843,51845,51846,51848,51849,51850,51852,51853,51855,51857,51859,51861,51863,51864,51865,51867,51872,51873,51874,51876,51878,51879,51880,51883,51884,51886,51888,51890,51892,51894,51896,51897,51900,51901,51904,51905,51908,51910,51912,51913,51916,51919,51920,51921,51922,51924,51926,51929,51930,51933,51935,51936,51937,51940,51941,51942,51943,51947,51948,51951,51952,51954,51956,51958,51959,51960,51962,51965,51969,51970,51972,51974,51975,51976,51978,51979,51982,51983,51984,51986,51988,51989,51991,51992,51993, +51995,51996,52000,52001,52002,52007,52009,52012,52015,52016,52017,52018,52021,52025,52029,52033,52034,52035,52037,52039,52040,52041,52043,52044,52045,52047,52050,52052,52055,52056,52059,52061,52063,52066,52070,52072,52074,52077,52078,52082,52083,52085,52086,52088,52089,52091,52092,52093,52095,52096,52098,52101,52105,52109,52110,52114,52115,52116,52118,52120,52121,52124,52127,52128,52130,52131,52132,52134,52135,52137,52140,52144,52145,52147,52148,52149,52150,52152,52154,52156,52157,52158,52164,52168,52170,52171,52174,52177,52178,52180,52181,52183,52185,52189,52190,52192,52193,52194,52196,52198,52201,52202,52203,52206,52207,52209,52214,52215,52217,52218,52219,52221,52225,52228,52229,52230,52234,52235,52236,52237,52239,52240,52242,52245,52248,52249,52251,52252,52254,52255,52258,52259,52262,52264,52266,52268,52270,52272,52274,52275,52277,52278,52280,52282,52284,52285,52287,52288,52290,52292,52295,52296,52298,52299,52300,52302,52304,52305,52307,52308,52313,52314,52318,52319,52321,52323,52325,52326,52328,52330,52331,52332,52334,52337,52339,52343,52344,52346,52347,52349,52351,52355,52357,52359,52360,52362,52367,52370,52371,52373,52374,52376,52377,52380,52382,52384,52385,52388,52391,52394,52395,52397,52398,52399,52401,52403,52404,52407,52409,52411,52413,52415,52416,52418,52421,52423,52424,52426,52429,52430,52431,52435,52438,52440,52442,52446,52448,52450,52451,52452,52454,52455,52457,52458,52459,52461,52463,52465,52466,52468,52477,52480,52481,52482,52484,52487,52489,52490,52492,52493,52494,52499,52501,52502,52503,52506,52507,52509,52510,52512,52516,52518,52519,52521,52523,52525,52528,52530,52531,52534,52535,52537,52538,52539,52541,52543,52544,52546,52549,52553,52554,52556,52558,52559,52561,52564,52565,52566,52571,52574,52577,52580,52582,52586,52589,52590,52591,52593,52596,52600,52601,52603,52604,52605,52608,52609,52611,52612,52614,52615,52618,52619,52620,52623,52625,52626,52627,52629,52631,52632,52635,52636,52638,52639,52641,52643,52645,52649,52651,52652,52653,52655,52657,52659,52660,52663,52666,52667,52669,52670,52671,52673, +52675,52676,52677,52678,52680,52681,52683,52684,52687,52688,52689,52691,52692,52693,52695,52700,52701,52702,52706,52708,52710,52712,52713,52715,52716,52719,52720,52723,52726,52728,52730,52733,52734,52735,52739,52740,52744,52746,52748,52749,52750,52752,52753,52756,52757,52759,52761,52763,52764,52765,52767,52769,52772,52773,52775,52776,52780,52784,52785,52788,52792,52793,52796,52798,52800,52802,52803,52805,52807,52809,52811,52812,52813,52815,52817,52818,52820,52821,52824,52825,52827,52828,52831,52832,52833,52838,52841,52842,52844,52846,52847,52849,52851,52853,52854,52856,52858,52859,52860,52861,52864,52866,52868,52869,52871,52872,52874,52875,52880,52882,52883,52885,52887,52889,52890,52893,52894,52896,52899,52900,52902,52905,52906,52908,52911,52912,52915,52916,52918,52919,52920,52921,52925,52927,52929,52934,52935,52938,52940,52942,52943,52945,52946,52947,52948,52952,52953,52955,52956,52958,52959,52963,52966,52967,52970,52971,52973,52974,52975,52977,52978,52980,52982,52985,52988,52989,52990,52992,52994,52997,52999,53003,53005,53006,53008,53011,53013,53014,53017,53019,53020,53022,53025,53027,53028,53029,53031,53033,53036,53037,53038,53041,53042,53043,53044,53046,53047,53049,53051,53052,53054,53055,53059,53061,53063,53066,53067,53068,53070,53071,53075,53076,53078,53080,53082,53084,53087,53090,53091,53092,53094,53098,53101,53103,53104,53106,53107,53110,53111,53114,53115,53117,53118,53121,53123,53124,53128,53130,53132,53134,53135,53137,53138,53139,53140,53142,53146,53148,53151,53155,53156,53157,53161,53163,53168,53169,53170,53172,53173,53177,53180,53182,53183,53184,53186,53189,53192,53194,53195,53196,53199,53201,53202,53205,53208,53210,53212,53213,53214,53218,53220,53222,53223,53225,53226,53227,53229,53231,53232,53233,53236,53239,53242,53246,53248,53249,53252,53253,53255,53256,53260,53261,53264,53265,53266,53268,53270,53272,53277,53280,53281,53283,53285,53286,53287,53289,53291,53292,53293,53297,53298,53299,53301,53305,53306,53307,53308,53310,53315,53317,53318,53320,53321,53323,53324,53325,53326,53329,53331,53333,53336,53337, +53339,53341,53344,53345,53347,53349,53351,53352,53353,53355,53356,53358,53359,53361,53365,53366,53369,53370,53371,53374,53377,53378,53380,53381,53383,53385,53386,53388,53393,53394,53399,53401,53404,53406,53407,53410,53411,53413,53414,53415,53417,53418,53419,53421,53422,53425,53428,53431,53433,53435,53436,53437,53440,53444,53446,53447,53448,53449,53451,53452,53455,53456,53457,53459,53461,53462,53465,53467,53469,53471,53473,53475,53476,53478,53480,53481,53483,53484,53486,53489,53491,53492,53493,53496,53497,53500,53501,53504,53505,53507,53508,53510,53511,53515,53519,53522,53525,53527,53528,53529,53530,53532,53533,53535,53540,53541,53543,53545,53548,53549,53550,53552,53554,53556,53559,53561,53562,53565,53566,53569,53570,53571,53573,53576,53577,53581,53582,53585,53586,53587,53591,53594,53596,53597,53599,53600,53602,53605,53606,53607,53610,53612,53613,53614,53617,53620,53621,53623,53625,53627,53628,53630,53633,53636,53637,53638,53641,53644,53646,53647,53650,53651,53652,53657,53659,53661,53663,53664,53666,53669,53671,53672,53673,53675,53676,53678,53679,53681,53682,53684,53686,53688,53689,53693,53696,53697,53698,53700,53701,53703,53706,53707,53709,53714,53716,53717,53720,53722,53724,53726,53727,53730,53732,53734,53735,53738,53741,53742,53744,53745,53748,53749,53751,53753,53754,53756,53758,53759,53763,53764,53766,53768,53769,53771,53773,53774,53777,53780,53781,53782,53784,53787,53789,53790,53794,53796,53798,53799,53801,53803,53806,53809,53810,53811,53813,53814,53815,53819,53820,53821,53824,53826,53828,53829,53831,53832,53834,53835,53838,53839,53841,53845,53848,53849,53850,53852,53854,53855,53858,53860,53861,53863,53864,53867,53869,53873,53874,53876,53877,53878,53880,53882,53883,53886,53889,53891,53894,53895,53897,53898,53899,53902,53903,53905,53906,53909,53910,53912,53913,53916,53918,53919,53923,53924,53926,53928,53929,53931,53932,53934,53937,53940,53942,53943,53944,53948,53949,53952,53953,53956,53958,53959,53961,53962,53964,53967,53969,53970,53973,53974,53977,53978,53980,53982,53984,53986,53987,53989,53990,53992,53993,53996, +53998,54000,54002,54003,54005,54007,54008,54012,54015,54016,54018,54019,54023,54025,54027,54029,54030,54031,54035,54037,54040,54043,54045,54046,54048,54049,54052,54055,54058,54061,54062,54064,54065,54066,54067,54069,54070,54072,54074,54075,54076,54078,54082,54085,54087,54088,54090,54091,54093,54095,54096,54098,54099,54102,54103,54107,54109,54111,54113,54115,54117,54119,54121,54122,54123,54126,54130,54131,54132,54134,54137,54139,54140,54141,54143,54144,54146,54147,54148,54151,54152,54153,54156,54158,54159,54161,54162,54163,54166,54167,54168,54169,54172,54173,54176,54178,54179,54181,54184,54185,54187,54190,54194,54197,54199,54202,54203,54205,54207,54209,54212,54214,54216,54217,54220,54221,54222,54224,54226,54227,54228,54230,54231,54232,54239,54242,54243,54245,54246,54247,54249,54251,54253,54254,54256,54257,54259,54264,54265,54268,54270,54271,54275,54277,54279,54280,54282,54284,54285,54286,54289,54292,54296,54297,54298,54300,54301,54304,54305,54306,54307,54310,54314,54316,54317,54319,54320,54323,54325,54326,54329,54331,54332,54333,54335,54336,54337,54339,54340,54342,54344,54345,54348,54350,54351,54353,54354,54355,54359,54361,54363,54367,54368,54371,54373,54377,54379,54381,54382,54384,54385,54388,54389,54390,54392,54394,54396,54397,54399,54400,54403,54405,54406,54408,54409,54412,54415,54416,54417,54419,54420,54422,54424,54427,54429,54430,54433,54436,54437,54438,54440,54442,54444,54446,54447,54449,54450,54454,54455,54456,54459,54460,54462,54465,54466,54468,54471,54473,54476,54482,54483,54484,54486,54489,54493,54494,54496,54497,54499,54500,54502,54505,54506,54508,54509,54512,54517,54518,54519,54520,54522,54525,54526,54529,54531,54533,54535,54537,54538,54541,54544,54546,54548,54550,54551,54554,54556,54558,54559,54562,54566,54567,54569,54571,54574,54576,54578,54579,54581,54582,54583,54585,54586,54588,54592,54594,54597,54602,54603,54605,54606,54611,54613,54615,54616,54619,54620,54621,54623,54627,54629,54630,54631,54633,54635,54636,54638,54640,54643,54644,54646,54647,54649,54650,54652,54658,54659,54661,54662,54663,54666,54668, +54671,54673,54674,54675,54678,54680,54682,54683,54684,54686,54687,54690,54691,54694,54697,54698,54700,54702,54703,54706,54707,54709,54710,54712,54715,54717,54719,54721,54722,54725,54726,54727,54729,54731,54734,54736,54738,54739,54743,54745,54746,54748,54751,54753,54758,54761,54762,54763,54765,54766,54768,54770,54772,54775,54778,54780,54783,54784,54787,54788,54789,54790,54793,54795,54796,54798,54802,54806,54809,54810,54812,54814,54816,54818,54819,54821,54822,54823,54826,54830,54832,54833,54834,54836,54837,54838,54841,54845,54848,54849,54851,54854,54855,54857,54858,54860,54862,54865,54869,54870,54871,54873,54875,54876,54881,54882,54883,54885,54886,54888,54889,54895,54896,54897,54901,54902,54903,54904,54907,54910,54911,54912,54914,54915,54917,54918,54919,54921,54923,54925,54928,54931,54933,54935,54937,54939,54941,54945,54946,54948,54950,54952,54954,54958,54960,54961,54963,54966,54968,54969,54972,54985,54986,54988,54989,54990,54992,54995,54997,54998,54999,55002,55005,55009,55011,55012,55014,55015,55018,55019,55020,55021,55025,55028,55030,55031,55032,55035,55036,55038,55039,55041,55042,55044,55045,55047,55048,55050,55052,55054,55056,55058,55061,55062,55063,55065,55066,55068,55069,55072,55076,55078,55079,55080,55084,55086,55090,55091,55092,55093,55095,55096,55102,55104,55106,55107,55109,55111,55113,55115,55117,55118,55119,55120,55123,55126,55130,55131,55132,55135,55136,55138,55142,55143,55145,55148,55149,55151,55153,55156,55160,55161,55163,55168,55169,55170,55171,55174,55175,55177,55179,55180,55182,55185,55187,55193,55195,55198,55199,55201,55203,55207,55210,55213,55214,55215,55217,55219,55220,55221,55224,55227,55228,55230,55233,55234,55238,55243,55244,55247,55250,55252,55255,55257,55258,55261,55262,55263,55264,55266,55268,55269,55271,55272,55273,55276,55277,55280,55282,55285,55288,55289,55291,55292,55294,55295,55297,55298,55299,55301,55302,55304,55306,55307,55309,55310,55311,55315,55318,55319,55321,55322,55323,55325,55326,55329,55331,55334,55336,55340,55341,55343,55345,55347,55348,55351,55354,55356,55360,55362,55364,55365, +55368,55369,55372,55373,55376,55378,55380,55383,55387,55388,55390,55391,55392,55393,55396,55397,55399,55401,55403,55404,55405,55407,55411,55412,55413,55415,55418,55419,55420,55422,55423,55425,55427,55429,55430,55431,55434,55436,55438,55439,55441,55442,55447,55448,55449,55454,55455,55457,55458,55461,55462,55464,55467,55468,55470,55473,55475,55476,55481,55484,55486,55487,55488,55491,55493,55494,55499,55500,55502,55504,55505,55507,55509,55511,55513,55516,55517,55518,55519,55522,55523,55524,55526,55527,55528,55530,55533,55537,55538,55540,55541,55542,55544,55547,55549,55550,55552,55553,55554,55555,55558,55559,55560,55562,55563,55565,55571,55572,55574,55576,55577,55580,55581,55583,55585,55586,55587,55589,55590,55591,55593,55596,55602,55604,55607,55609,55611,55612,55616,55618,55619,55621,55623,55626,55628,55630,55631,55634,55635,55640,55641,55644,55645,55648,55650,55651,55653,55654,55657,55658,55660,55662,55664,55667,55670,55671,55672,55674,55675,55678,55679,55681,55683,55685,55688,55689,55690,55693,55695,55698,55700,55701,55703,55704,55709,55710,55712,55713,55715,55716,55718,55719,55721,55722,55726,55727,55729,55731,55739,55742,55743,55748,55749,55750,55752,55755,55759,55761,55762,55765,55766,55767,55771,55772,55773,55776,55778,55779,55780,55782,55788,55790,55792,55795,55796,55797,55798,55800,55804,55805,55807,55810,55812,55814,55818,55819,55823,55825,55826,55828,55829,55830,55832,55833,55837,55839,55841,55843,55846,55848,55850,55851,55855,55856,55857,55859,55862,55865,55867,55868,55870,55874,55875,55878,55880,55881,55883,55885,55886,55887,55889,55890,55892,55893,55895,55898,55901,55902,55907,55908,55911,55912,55914,55917,55919,55920,55921,55924,55926,55929,55930,55931,55933,55934,55936,55938,55939,55941,55943,55945,55947,55948,55950,55951,55954,55955,55957,55958,55959,55960,55964,55965,55967,55969,55971,55972,55975,55976,55978,55981,55982,55984,55985,55987,55989,55990,55994,55996,56000,56001,56005,56006,56007,56008,56011,56014,56015,56017,56018,56020,56022,56024,56025,56029,56030,56032,56033,56034,56036,56037,56042,56043, +56045,56046,56048,56049,56050,56053,56054,56055,56057,56058,56063,56064,56066,56068,56072,56073,56074,56076,56077,56079,56082,56085,56088,56091,56092,56094,56098,56099,56100,56102,56104,56105,56106,56107,56110,56111,56113,56114,56117,56118,56120,56123,56125,56127,56128,56131,56133,56134,56136,56138,56139,56142,56143,56145,56150,56151,56152,56156,56157,56161,56163,56165,56167,56168,56170,56171,56172,56173,56175,56177,56178,56181,56185,56186,56187,56189,56192,56194,56195,56196,56197,56200,56203,56204,56206,56208,56210,56213,56216,56217,56221,56225,56226,56227,56229,56233,56234,56236,56237,56239,56242,56243,56245,56246,56249,56251,56252,56253,56256,56257,56261,56262,56263,56265,56266,56268,56270,56271,56273,56274,56278,56279,56280,56282,56284,56287,56290,56291,56295,56297,56299,56303,56305,56306,56307,56308,56311,56315,56316,56317,56321,56322,56325,56326,56329,56330,56333,56334,56337,56339,56341,56342,56343,56344,56346,56347,56350,56351,56352,56356,56357,56360,56361,56363,56366,56368,56369,56370,56372,56374,56375,56377,56379,56383,56384,56385,56386,56389,56391,56394,56395,56397,56399,56400,56404,56406,56407,56410,56411,56413,56416,56417,56420,56421,56422,56424,56426,56429,56430,56435,56437,56438,56442,56445,56449,56450,56451,56454,56457,56459,56460,56461,56463,56465,56466,56467,56469,56470,56473,56474,56475,56477,56479,56481,56483,56484,56487,56491,56492,56493,56494,56496,56497,56501,56503,56504,56507,56508,56509,56511,56513,56515,56517,56520,56522,56523,56524,56527,56530,56531,56532,56533,56537,56538,56541,56543,56546,56548,56551,56553,56557,56561,56562,56563,56567,56568,56573,56575,56576,56578,56581,56584,56586,56588,56591,56592,56594,56597,56598,56600,56601,56604,56608,56609,56611,56612,56614,56615,56616,56617,56620,56622,56624,56625,56626,56629,56630,56632,56634,56635,56638,56640,56642,56643,56644,56646,56647,56650,56651,56654,56656,56658,56660,56662,56665,56666,56669,56672,56673,56675,56676,56680,56682,56683,56687,56689,56691,56693,56696,56697,56699,56702,56703,56706,56708,56709,56711,56712,56716,56718,56720,56722, +56723,56725,56727,56728,56730,56731,56733,56738,56739,56740,56744,56746,56747,56748,56749,56751,56752,56755,56759,56760,56764,56766,56768,56770,56772,56775,56776,56778,56782,56783,56784,56786,56787,56788,56790,56791,56793,56797,56800,56801,56802,56804,56805,56806,56808,56811,56812,56815,56816,56817,56819,56821,56824,56827,56830,56832,56834,56835,56838,56839,56843,56844,56845,56848,56849,56850,56854,56856,56857,56860,56863,56865,56867,56868,56870,56873,56874,56878,56879,56880,56882,56883,56885,56887,56890,56891,56894,56895,56896,56898,56900,56901,56905,56906,56907,56911,56912,56913,56917,56918,56919,56921,56922,56924,56926,56928,56929,56933,56935,56936,56938,56939,56940,56941,56943,56946,56947,56949,56950,56952,56954,56955,56957,56959,56962,56966,56968,56969,56970,56974,56975,56976,56977,56979,56983,56984,56986,56988,56993,56994,56996,56997,56998,57002,57004,57006,57008,57010,57012,57014,57016,57018,57020,57021,57022,57024,57027,57028,57032,57033,57034,57037,57039,57040,57042,57044,57045,57046,57049,57050,57051,57052,57056,57057,57058,57062,57063,57065,57066,57071,57073,57074,57075,57078,57080,57082,57083,57086,57088,57089,57090,57092,57093,57096,57098,57100,57102,57104,57105,57108,57109,57112,57114,57118,57119,57120,57122,57123,57124,57127,57130,57133,57135,57137,57138,57140,57141,57143,57144,57149,57152,57153,57155,57158,57159,57164,57167,57168,57171,57173,57174,57175,57177,57181,57182,57183,57184,57186,57187,57190,57193,57196,57197,57198,57199,57203,57204,57206,57207,57209,57211,57212,57214,57215,57217,57218,57219,57222,57224,57225,57227,57228,57230,57232,57234,57235,57237,57238,57241,57243,57245,57246,57247,57250,57252,57256,57258,57259,57261,57264,57268,57269,57270,57271,57273,57274,57276,57280,57281,57282,57284,57286,57288,57290,57293,57294,57296,57297,57298,57302,57304,57305,57307,57309,57311,57314,57316,57318,57319,57321,57323,57325,57326,57327,57331,57332,57335,57336,57337,57339,57342,57343,57346,57347,57350,57351,57353,57356,57357,57358,57361,57364,57365,57366,57367,57371,57374,57376,57377,57378,57381,57384, +57386,57387,57388,57390,57392,57393,57394,57396,57399,57401,57402,57404,57407,57408,57410,57412,57413,57415,57419,57420,57422,57423,57424,57426,57427,57431,57434,57437,57439,57440,57443,57444,57447,57449,57451,57453,57454,57456,57458,57459,57461,57462,57466,57467,57468,57469,57473,57475,57476,57477,57482,57484,57487,57489,57491,57493,57494,57496,57498,57502,57503,57505,57507,57509,57510,57511,57514,57516,57521,57522,57523,57525,57529,57530,57531,57533,57534,57536,57537,57538,57540,57543,57544,57546,57547,57551,57553,57554,57555,57560,57561,57563,57565,57569,57571,57572,57574,57575,57576,57577,57580,57581,57584,57586,57587,57588,57590,57593,57594,57598,57599,57601,57604,57605,57606,57609,57610,57612,57613,57616,57617,57619,57622,57623,57624,57628,57632,57633,57634,57636,57637,57639,57642,57644,57645,57647,57648,57650,57651,57653,57654,57655,57657,57658,57661,57662,57663,57668,57669,57671,57672,57677,57679,57682,57683,57686,57687,57688,57690,57693,57694,57697,57698,57699,57701,57702,57706,57708,57709,57712,57713,57715,57718,57721,57722,57723,57725,57727,57729,57732,57734,57735,57738,57740,57741,57743,57745,57746,57748,57750,57751,57754,57757,57758,57759,57761,57762,57767,57768,57769,57772,57775,57777,57779,57780,57781,57783,57785,57786,57790,57791,57793,57794,57795,57797,57802,57803,57804,57805,57808,57810,57812,57815,57816,57818,57819,57820,57822,57825,57826,57828,57829,57832,57834,57835,57839,57841,57842,57844,57846,57848,57850,57851,57857,57858,57861,57862,57865,57866,57868,57869,57870,57873,57875,57878,57881,57882,57884,57885,57886,57888,57892,57893,57894,57895,57898,57901,57902,57903,57907,57910,57912,57917,57919,57920,57921,57923,57924,57928,57929,57931,57932,57935,57936,57938,57939,57942,57946,57948,57950,57951,57952,57955,57957,57961,57964,57967,57968,57971,57973,57974,57976,57977,57978,57979,57982,57983,57984,57985,57988,57990,57991,57995,57998,58000,58002,58003,58005,58008,58010,58011,58013,58014,58015,58018,58021,58022,58024,58026,58028,58029,58031,58032,58033,58036,58038,58039,58041,58043,58045,58049,58051, +58052,58054,58055,58057,58058,58060,58062,58064,58066,58068,58069,58071,58073,58074,58075,58078,58080,58082,58083,58085,58087,58088,58089,58090,58092,58093,58096,58097,58099,58100,58101,58103,58105,58109,58110,58112,58115,58116,58119,58121,58122,58126,58127,58129,58130,58133,58136,58138,58139,58140,58145,58148,58149,58150,58152,58155,58157,58158,58159,58161,58163,58165,58166,58167,58168,58170,58172,58174,58176,58181,58183,58185,58186,58189,58190,58192,58196,58199,58200,58202,58203,58206,58211,58212,58214,58216,58219,58222,58223,58224,58225,58228,58230,58234,58238,58239,58241,58242,58246,58247,58250,58251,58253,58254,58255,58259,58260,58262,58263,58264,58268,58270,58271,58272,58274,58277,58278,58280,58282,58283,58285,58286,58287,58291,58292,58294,58295,58296,58298,58301,58303,58306,58307,58308,58311,58313,58316,58318,58321,58322,58324,58325,58327,58329,58331,58332,58335,58337,58338,58340,58343,58344,58347,58350,58351,58354,58356,58358,58360,58361,58364,58365,58366,58369,58373,58375,58376,58378,58379,58381,58382,58385,58386,58390,58391,58392,58393,58395,58397,58399,58401,58402,58404,58406,58407,58408,58412,58413,58415,58417,58418,58420,58422,58426,58430,58431,58432,58436,58438,58440,58443,58444,58448,58450,58451,58452,58455,58456,58458,58460,58461,58462,58464,58466,58467,58470,58471,58473,58476,58479,58481,58483,58484,58485,58486,58488,58491,58493,58495,58497,58499,58500,58503,58506,58509,58510,58512,58515,58516,58518,58522,58524,58526,58529,58532,58534,58535,58537,58539,58544,58545,58546,58549,58552,58553,58555,58557,58561,58563,58564,58568,58570,58571,58572,58574,58575,58577,58578,58581,58584,58586,58587,58589,58590,58595,58597,58598,58599,58600,58603,58606,58608,58609,58611,58612,58616,58617,58618,58620,58623,58626,58630,58631,58633,58637,58638,58639,58642,58644,58646,58647,58648,58650,58651,58654,58656,58657,58659,58660,58663,58666,58667,58669,58671,58673,58676,58679,58680,58682,58684,58685,58686,58688,58691,58692,58694,58695,58697,58699,58700,58701,58703,58705,58707,58708,58712,58714,58718,58721,58722,58723,58726, +58730,58731,58732,58734,58735,58738,58741,58742,58744,58746,58747,58749,58750,58753,58754,58755,58756,58759,58762,58763,58764,58769,58772,58773,58775,58776,58777,58779,58781,58782,58784,58785,58788,58790,58792,58794,58799,58801,58802,58803,58804,58806,58808,58811,58813,58814,58815,58819,58820,58821,58824,58827,58828,58830,58832,58834,58838,58839,58841,58844,58845,58846,58849,58852,58853,58854,58855,58859,58861,58862,58863,58867,58868,58870,58873,58877,58878,58880,58881,58882,58884,58886,58888,58894,58896,58898,58899,58901,58904,58907,58908,58910,58913,58914,58916,58918,58922,58923,58928,58931,58932,58934,58937,58940,58943,58945,58948,58949,58951,58953,58955,58956,58957,58959,58960,58963,58964,58965,58967,58969,58973,58975,58977,58978,58981,58982,58984,58985,58987,58988,58989,58990,58993,58994,58995,58996,58999,59000,59003,59005,59008,59009,59010,59014,59016,59017,59019,59020,59022,59023,59025,59026,59030,59031,59032,59034,59039,59041,59042,59043,59045,59047,59048,59051,59053,59054,59056,59059,59062,59063,59065,59066,59067,59068,59071,59072,59075,59076,59078,59081,59082,59086,59089,59091,59092,59096,59097,59101,59102,59104,59105,59108,59110,59113,59114,59115,59119,59120,59123,59126,59127,59128,59130,59132,59134,59136,59138,59140,59142,59146,59148,59149,59151,59156,59157,59158,59162,59163,59166,59167,59169,59173,59176,59178,59180,59181,59184,59185,59187,59189,59192,59195,59196,59198,59200,59203,59204,59206,59208,59209,59213,59215,59218,59222,59225,59226,59228,59231,59232,59234,59235,59237,59238,59240,59242,59243,59244,59248,59249,59251,59253,59255,59256,59257,59260,59261,59264,59265,59267,59269,59270,59272,59273,59275,59277,59278,59282,59283,59284,59287,59288,59290,59292,59294,59297,59299,59300,59301,59302,59305,59306,59309,59311,59312,59314,59316,59317,59320,59321,59322,59324,59326,59327,59328,59329,59331,59333,59334,59337,59339,59341,59342,59343,59345,59347,59348,59350,59351,59353,59357,59359,59360,59361,59362,59365,59368,59369,59372,59373,59378,59381,59383,59384,59386,59388,59389,59391,59393,59394,59395,59399,59402, +59404,59406,59408,59409,59414,59416,59417,59419,59421,59422,59424,59427,59431,59433,59438,59441,59442,59446,59447,59449,59451,59452,59454,59456,59457,59461,59462,59463,59464,59468,59470,59471,59473,59476,59480,59482,59485,59487,59490,59491,59493,59498,59499,59500,59503,59506,59509,59511,59513,59515,59516,59518,59520,59524,59525,59529,59531,59533,59536,59537,59539,59542,59544,59545,59547,59549,59550,59551,59554,59555,59556,59557,59559,59560,59563,59564,59566,59568,59569,59571,59573,59574,59575,59577,59578,59580,59582,59583,59587,59588,59589,59592,59594,59595,59597,59600,59601,59603,59607,59612,59613,59614,59616,59618,59620,59621,59623,59624,59625,59626,59628,59629,59631,59633,59634,59636,59638,59639,59640,59641,59645,59646,59647,59650,59653,59656,59659,59663,59665,59667,59669,59670,59672,59673,59675,59677,59681,59683,59684,59685,59687,59688,59692,59693,59696,59698,59699,59700,59702,59703,59707,59710,59713,59714,59717,59720,59721,59723,59725,59726,59727,59732,59733,59734,59736,59741,59742,59743,59745,59748,59751,59752,59756,59757,59758,59760,59762,59763,59765,59766,59768,59770,59773,59775,59778,59781,59785,59786,59787,59791,59794,59795,59796,59797,59800,59802,59803,59805,59806,59809,59813,59814,59815,59817,59819,59821,59823,59825,59826,59827,59829,59831,59834,59837,59840,59841,59843,59844,59845,59847,59848,59852,59853,59854,59856,59857,59859,59861,59863,59864,59865,59866,59869,59872,59873,59874,59876,59878,59881,59882,59883,59884,59886,59889,59891,59893,59895,59898,59899,59902,59905,59906,59909,59911,59912,59913,59915,59917,59919,59922,59926,59927,59928,59929,59931,59932,59934,59935,59937,59939,59941,59942,59943,59944,59946,59947,59950,59952,59955,59957,59958,59961,59966,59967,59969,59971,59973,59976,59980,59982,59984,59987,59989,59990,59991,59992,59994,59997,60001,60002,60003,60004,60007,60010,60012,60015,60017,60019,60022,60024,60026,60028,60030,60031,60033,60035,60038,60040,60042,60043,60045,60048,60051,60052,60055,60056,60057,60059,60062,60064,60065,60067,60069,60071,60073,60074,60076,60077,60079,60080,60082,60085, +60088,60090,60093,60097,60101,60103,60104,60106,60108,60109,60111,60113,60114,60117,60118,60121,60122,60125,60126,60127,60129,60133,60134,60137,60138,60139,60141,60142,60144,60145,60147,60148,60150,60152,60153,60156,60157,60161,60164,60166,60167,60168,60170,60171,60172,60175,60176,60178,60179,60180,60181,60183,60185,60186,60188,60189,60190,60192,60197,60198,60201,60202,60204,60205,60208,60209,60210,60213,60216,60217,60221,60222,60224,60225,60226,60229,60231,60233,60235,60236,60237,60239,60240,60243,60246,60249,60250,60252,60254,60255,60256,60259,60260,60263,60266,60267,60269,60271,60273,60275,60277,60279,60280,60283,60284,60286,60287,60288,60289,60292,60294,60296,60298,60302,60305,60306,60307,60310,60312,60314,60317,60318,60320,60322,60324,60326,60327,60330,60332,60334,60337,60338,60341,60344,60345,60346,60349,60350,60351,60356,60357,60358,60362,60364,60365,60366,60370,60372,60374,60375,60377,60380,60381,60384,60388,60391,60394,60397,60400,60401,60403,60404,60405,60407,60409,60410,60412,60414,60416,60417,60419,60423,60426,60427,60430,60434,60436,60437,60438,60442,60446,60448,60449,60452,60453,60456,60458,60459,60460,60462,60463,60467,60469,60470,60472,60475,60477,60478,60482,60484,60485,60486,60489,60491,60492,60493,60495,60496,60498,60499,60501,60503,60505,60506,60507,60508,60512,60513,60515,60517,60518,60519,60521,60523,60524,60525,60526,60529,60530,60532,60534,60536,60537,60538,60540,60542,60544,60545,60547,60549,60551,60553,60554,60555,60557,60559,60560,60562,60563,60564,60565,60567,60569,60571,60572,60575,60577,60579,60582,60583,60589,60590,60591,60593,60595,60599,60601,60602,60603,60606,60609,60610,60613,60615,60616,60618,60622,60624,60625,60628,60629,60632,60634,60636,60637,60639,60640,60642,60645,60646,60648,60649,60653,60656,60657,60659,60661,60663,60665,60669,60670,60675,60679,60681,60683,60684,60686,60687,60688,60690,60691,60695,60697,60701,60702,60704,60706,60707,60709,60711,60712,60714,60716,60717,60720,60722,60723,60725,60728,60730,60731,60734,60736,60739,60741,60743,60744,60746,60748,60749,60752,60755, +60756,60759,60760,60766,60770,60772,60773,60775,60778,60782,60784,60785,60788,60789,60790,60792,60793,60797,60798,60800,60802,60806,60809,60811,60812,60813,60814,60817,60818,60821,60824,60826,60828,60830,60832,60833,60834,60838,60841,60842,60844,60845,60847,60848,60849,60850,60852,60854,60857,60859,60860,60861,60863,60864,60867,60868,60870,60875,60878,60881,60882,60883,60887,60889,60890,60891,60893,60896,60897,60900,60902,60903,60908,60909,60911,60912,60917,60918,60920,60923,60926,60927,60929,60931,60932,60934,60935,60937,60938,60939,60941,60944,60946,60947,60949,60950,60952,60953,60954,60956,60958,60959,60962,60964,60965,60967,60968,60969,60970,60973,60974,60980,60981,60982,60985,60989,60991,60992,60993,60994,60997,60999,61001,61002,61007,61009,61011,61013,61016,61017,61018,61020,61023,61025,61026,61027,61030,61031,61032,61033,61035,61036,61039,61041,61042,61044,61045,61049,61051,61052,61054,61055,61056,61060,61062,61064,61065,61067,61068,61071,61072,61076,61077,61080,61081,61083,61088,61091,61095,61098,61100,61101,61105,61107,61112,61114,61115,61118,61119,61120,61122,61125,61127,61130,61131,61133,61134,61138,61140,61141,61144,61146,61148,61150,61153,61157,61159,61160,61162,61166,61168,61171,61172,61173,61174,61178,61181,61182,61183,61186,61188,61189,61192,61193,61195,61196,61198,61201,61202,61205,61206,61208,61210,61211,61212,61215,61217,61218,61220,61221,61222,61225,61228,61231,61232,61233,61235,61237,61241,61242,61244,61247,61248,61252,61254,61258,61260,61262,61263,61266,61267,61270,61277,61278,61279,61281,61282,61284,61287,61288,61290,61292,61293,61295,61296,61300,61303,61304,61305,61307,61310,61311,61313,61316,61318,61319,61321,61322,61323,61325,61326,61327,61329,61331,61334,61335,61337,61338,61339,61342,61343,61344,61346,61348,61349,61350,61352,61354,61356,61359,61361,61362,61367,61370,61373,61374,61377,61378,61382,61383,61384,61386,61391,61394,61397,61398,61399,61402,61403,61404,61407,61410,61412,61413,61415,61416,61418,61420,61421,61424,61425,61427,61429,61432,61433,61435,61436,61438,61439,61440,61442,61443, +61447,61450,61451,61452,61456,61459,61463,61464,61466,61467,61468,61470,61472,61474,61477,61478,61479,61481,61483,61484,61487,61491,61492,61494,61497,61499,61500,61502,61505,61508,61510,61512,61513,61517,61518,61521,61524,61525,61528,61530,61532,61533,61536,61538,61540,61542,61546,61547,61549,61550,61552,61553,61554,61555,61558,61560,61562,61563,61565,61566,61567,61569,61570,61573,61574,61575,61577,61579,61581,61582,61585,61587,61591,61592,61595,61596,61597,61600,61602,61603,61607,61609,61610,61612,61615,61617,61620,61621,61625,61626,61628,61629,61631,61632,61634,61637,61640,61641,61643,61645,61649,61650,61654,61655,61657,61658,61661,61662,61664,61665,61669,61670,61671,61672,61675,61679,61681,61682,61684,61685,61687,61688,61690,61691,61692,61694,61695,61696,61699,61700,61702,61705,61706,61708,61709,61711,61712,61713,61715,61717,61722,61723,61725,61727,61730,61733,61735,61738,61740,61743,61748,61749,61750,61753,61755,61756,61759,61761,61762,61765,61768,61769,61770,61772,61773,61778,61779,61780,61783,61784,61786,61788,61791,61793,61794,61796,61798,61801,61802,61803,61805,61807,61808,61811,61812,61816,61818,61819,61822,61825,61826,61827,61830,61831,61833,61834,61836,61837,61839,61840,61843,61845,61846,61849,61852,61855,61856,61858,61860,61861,61866,61867,61870,61873,61876,61879,61883,61885,61886,61887,61888,61891,61892,61894,61895,61897,61898,61900,61904,61906,61907,61909,61911,61913,61914,61916,61917,61922,61924,61925,61927,61928,61930,61931,61934,61935,61936,61938,61939,61941,61945,61946,61948,61950,61952,61953,61956,61959,61961,61963,61964,61966,61969,61970,61973,61974,61978,61981,61983,61984,61987,61991,61993,61994,61995,61996,62000,62001,62004,62006,62007,62009,62010,62012,62015,62018,62020,62022,62024,62026,62027,62030,62033,62034,62035,62037,62039,62040,62041,62043,62044,62047,62048,62051,62052,62055,62057,62059,62060,62061,62062,62064,62066,62067,62069,62071,62074,62075,62078,62081,62083,62086,62087,62089,62090,62092,62094,62095,62098,62100,62101,62105,62107,62108,62109,62112,62113,62115,62117,62119,62120,62123, +62124,62129,62130,62133,62135,62136,62137,62139,62140,62143,62144,62145,62147,62148,62149,62151,62153,62154,62156,62157,62161,62162,62163,62166,62168,62169,62170,62173,62175,62176,62180,62182,62183,62185,62187,62188,62191,62192,62193,62197,62198,62199,62203,62204,62207,62209,62210,62212,62213,62216,62218,62219,62221,62224,62225,62228,62229,62232,62235,62237,62239,62240,62242,62245,62247,62248,62251,62253,62256,62258,62259,62260,62262,62266,62268,62270,62272,62274,62275,62278,62279,62280,62281,62283,62285,62286,62289,62290,62292,62293,62296,62300,62301,62305,62306,62308,62311,62313,62314,62317,62319,62320,62323,62326,62327,62329,62330,62331,62332,62335,62337,62341,62343,62345,62346,62351,62352,62353,62355,62356,62360,62361,62362,62364,62365,62367,62368,62370,62375,62376,62378,62379,62381,62382,62385,62386,62390,62393,62394,62397,62398,62402,62404,62405,62406,62407,62410,62413,62414,62416,62418,62420,62421,62422,62426,62427,62428,62431,62432,62435,62436,62437,62440,62442,62444,62445,62447,62449,62451,62452,62455,62457,62461,62462,62464,62466,62467,62469,62470,62473,62475,62479,62482,62483,62484,62486,62487,62488,62490,62492,62494,62496,62499,62501,62502,62504,62505,62509,62512,62513,62514,62515,62518,62519,62520,62523,62524,62528,62530,62532,62534,62535,62536,62539,62540,62541,62543,62546,62547,62549,62550,62552,62554,62555,62556,62560,62562,62565,62567,62570,62573,62574,62575,62577,62578,62580,62581,62584,62587,62588,62590,62591,62592,62595,62598,62600,62602,62604,62605,62609,62610,62614,62615,62618,62620,62622,62624,62625,62628,62630,62632,62633,62635,62636,62638,62639,62640,62641,62643,62644,62648,62651,62652,62656,62657,62659,62662,62664,62666,62667,62670,62672,62675,62676,62678,62684,62685,62687,62688,62689,62693,62694,62695,62697,62698,62701,62702,62704,62705,62707,62710,62711,62714,62715,62719,62720,62722,62723,62725,62728,62731,62732,62733,62734,62737,62738,62739,62740,62744,62745,62749,62750,62752,62755,62759,62761,62762,62765,62768,62769,62774,62775,62777,62778,62781,62785,62786,62787,62788,62791,62792,62795, +62796,62797,62800,62801,62803,62807,62810,62812,62813,62815,62816,62818,62820,62821,62825,62827,62829,62830,62833,62834,62837,62840,62842,62843,62846,62847,62848,62850,62851,62854,62855,62856,62860,62861,62864,62865,62866,62868,62871,62872,62874,62877,62879,62880,62882,62883,62884,62886,62888,62889,62891,62892,62895,62896,62898,62901,62905,62908,62910,62911,62913,62914,62916,62917,62920,62922,62923,62925,62929,62930,62931,62932,62936,62938,62941,62942,62943,62946,62948,62949,62951,62952,62954,62956,62958,62960,62961,62963,62965,62968,62969,62971,62972,62974,62976,62978,62980,62982,62984,62986,62987,62990,62991,62992,62995,62996,62998,63001,63002,63005,63006,63008,63009,63011,63014,63015,63018,63023,63026,63028,63029,63030,63032,63034,63037,63038,63040,63041,63043,63046,63048,63050,63052,63056,63058,63060,63061,63064,63066,63067,63071,63074,63077,63080,63081,63083,63086,63087,63089,63090,63092,63094,63096,63097,63100,63102,63103,63105,63109,63110,63111,63116,63117,63121,63122,63124,63125,63126,63127,63129,63130,63133,63135,63138,63140,63141,63145,63147,63148,63150,63151,63154,63157,63158,63160,63163,63164,63166,63167,63168,63169,63173,63175,63179,63181,63182,63184,63185,63186,63187,63190,63193,63195,63198,63200,63203,63206,63207,63209,63211,63214,63215,63216,63221,63223,63225,63226,63229,63232,63233,63234,63237,63238,63241,63242,63244,63246,63249,63251,63252,63253,63256,63259,63262,63263,63264,63265,63269,63270,63271,63274,63275,63277,63278,63279,63280,63282,63285,63288,63291,63293,63294,63296,63297,63298,63300,63302,63304,63305,63306,63308,63310,63311,63313,63314,63315,63316,63319,63323,63325,63326,63327,63331,63333,63335,63337,63340,63341,63342,63345,63347,63348,63350,63352,63353,63356,63357,63361,63365,63366,63369,63372,63375,63378,63379,63382,63384,63385,63387,63391,63392,63393,63395,63396,63397,63399,63401,63403,63406,63408,63409,63413,63415,63416,63418,63419,63422,63423,63424,63426,63427,63429,63431,63433,63435,63438,63439,63442,63443,63445,63446,63449,63451,63452,63453,63457,63460,63461,63462,63464,63465,63467, +63468,63470,63471,63472,63474,63475,63478,63480,63482,63483,63488,63489,63492,63496,63497,63498,63500,63502,63503,63504,63506,63507,63511,63512,63515,63517,63518,63521,63524,63527,63528,63532,63533,63534,63537,63542,63543,63546,63550,63551,63554,63555,63556,63558,63559,63562,63563,63566,63567,63570,63571,63573,63575,63576,63581,63582,63583,63587,63589,63590,63592,63593,63595,63596,63598,63601,63602,63603,63604,63606,63609,63610,63613,63615,63619,63620,63621,63622,63626,63628,63630,63633,63635,63636,63638,63640,63641,63643,63644,63645,63647,63649,63653,63656,63657,63658,63660,63661,63663,63664,63667,63668,63669,63672,63674,63677,63679,63683,63684,63685,63687,63690,63692,63693,63698,63699,63702,63705,63707,63708,63711,63714,63719,63721,63722,63723,63724,63728,63729,63734,63736,63737,63738,63740,63743,63744,63748,63749,63751,63752,63753,63757,63760,63761,63762,63763,63766,63767,63769,63773,63774,63775,63779,63780,63781,63783,63784,63786,63787,63790,63792,63795,63797,63800,63802,63803,63806,63808,63812,63814,63815,63817,63819,63821,63823,63825,63830,63833,63835,63836,63837,63842,63844,63848,63849,63851,63852,63853,63855,63856,63859,63860,63861,63863,63865,63866,63867,63869,63870,63872,63873,63875,63877,63880,63882,63884,63887,63888,63892,63893,63894,63896,63898,63900,63903,63905,63906,63907,63909,63910,63912,63915,63917,63918,63920,63921,63923,63924,63926,63928,63929,63931,63932,63933,63935,63937,63939,63944,63946,63947,63948,63951,63953,63954,63956,63957,63959,63960,63962,63963,63965,63968,63969,63972,63974,63975,63976,63978,63980,63981,63984,63985,63989,63991,63992,63995,63997,63998,64000,64003,64006,64008,64010,64012,64015,64019,64020,64023,64024,64028,64029,64031,64032,64036,64038,64040,64041,64042,64046,64047,64051,64052,64053,64055,64056,64057,64059,64060,64064,64066,64067,64068,64070,64072,64073,64074,64077,64079,64080,64085,64087,64091,64094,64096,64098,64099,64101,64105,64106,64107,64109,64110,64113,64117,64118,64120,64124,64126,64127,64128,64130,64131,64134,64136,64137,64138,64140,64141,64144,64147,64149,64150, +64153,64155,64159,64160,64161,64165,64166,64168,64170,64173,64175,64177,64179,64181,64182,64187,64189,64190,64193,64194,64197,64201,64202,64205,64208,64209,64213,64214,64215,64216,64218,64220,64221,64225,64226,64227,64228,64231,64235,64237,64239,64240,64242,64244,64246,64247,64248,64252,64253,64254,64256,64258,64259,64262,64263,64266,64268,64269,64272,64273,64275,64277,64279,64281,64284,64285,64288,64289,64291,64293,64295,64297,64301,64302,64305,64308,64309,64313,64314,64315,64317,64319,64321,64323,64324,64327,64330,64333,64334,64336,64338,64339,64342,64343,64345,64347,64350,64351,64353,64355,64356,64361,64362,64363,64365,64366,64370,64371,64375,64377,64379,64381,64382,64385,64386,64387,64389,64391,64392,64395,64396,64398,64403,64406,64408,64410,64411,64413,64414,64417,64418,64419,64421,64422,64424,64425,64429,64430,64432,64433,64434,64436,64437,64438,64442,64443,64445,64447,64448,64452,64455,64456,64458,64459,64461,64463,64465,64468,64469,64472,64475,64477,64478,64480,64484,64485,64488,64490,64491,64493,64494,64495,64499,64502,64505,64506,64507,64510,64511,64512,64513,64515,64517,64520,64522,64524,64525,64529,64530,64532,64533,64535,64537,64539,64541,64542,64545,64546,64549,64551,64553,64555,64556,64557,64558,64561,64564,64565,64566,64568,64570,64573,64576,64579,64580,64581,64583,64585,64586,64588,64590,64592,64593,64595,64596,64599,64600,64602,64606,64608,64610,64611,64612,64614,64617,64618,64621,64622,64624,64625,64628,64630,64631,64633,64634,64635,64640,64641,64644,64646,64648,64652,64653,64658,64661,64663,64664,64669,64672,64673,64675,64679,64681,64682,64683,64685,64687,64689,64691,64693,64694,64695,64698,64700,64701,64702,64704,64706,64707,64711,64712,64713,64716,64717,64719,64721,64722,64724,64725,64728,64729,64732,64735,64736,64738,64739,64742,64743,64747,64751,64752,64753,64755,64759,64762,64765,64766,64768,64771,64772,64775,64778,64779,64782,64784,64786,64790,64791,64792,64794,64796,64799,64802,64803,64805,64806,64810,64812,64814,64815,64817,64819,64820,64822,64824,64826,64827,64831,64835,64836,64839,64840, +64842,64843,64845,64846,64848,64850,64852,64854,64858,64859,64861,64862,64864,64865,64866,64869,64871,64872,64874,64876,64877,64878,64881,64882,64885,64886,64888,64889,64890,64891,64893,64894,64896,64898,64901,64902,64906,64907,64909,64910,64912,64916,64917,64919,64920,64923,64926,64927,64930,64932,64934,64935,64938,64940,64942,64943,64946,64948,64952,64953,64956,64958,64960,64963,64964,64966,64970,64971,64975,64976,64977,64979,64981,64982,64983,64987,64988,64990,64991,64993,64996,64998,65001,65002,65005,65006,65008,65009,65011,65012,65013,65014,65016,65018,65020,65021,65023,65024,65025,65026,65030,65032,65033,65034,65035,65037,65040,65042,65043,65048,65051,65053,65054,65055,65056,65059,65060,65061,65063,65064,65066,65070,65072,65075,65076,65080,65082,65084,65086,65087,65090,65092,65093,65094,65095,65099,65101,65102,65103,65104,65106,65107,65110,65111,65113,65115,65117,65118,65121,65125,65126,65127,65129,65130,65132,65133,65135,65138,65140,65141,65143,65145,65149,65151,65155,65158,65159,65161,65164,65166,65167,65170,65171,65174,65175,65176,65178,65179,65181,65182,65184,65186,65187,65188,65191,65194,65195,65198,65200,65201,65202,65204,65205,65208,65209,65212,65213,65216,65218,65219,65220,65222,65223,65226,65229,65231,65233,65234,65236,65237,65239,65241,65243,65245,65247,65248,65250,65254,65256,65258,65260,65264,65265,65267,65268,65271,65274,65278,65281,65282,65284,65285,65286,65289,65292,65294,65295,65298,65299,65303,65305,65306,65309,65311,65315,65317,65321,65322,65326,65328,65332,65333,65334,65335,65339,65341,65342,65344,65347,65350,65353,65354,65355,65356,65358,65360,65361,65362,65364,65368,65369,65371,65374,65376,65379,65383,65385,65387,65388,65392,65393,65394,65395,65397,65399,65400,65403,65404,65408,65410,65411,65413,65416,65417,65418,65419,65421,65423,65426,65427,65429,65431,65433,65434,65436,65439,65441,65442,65443,65446,65448,65452,65453,65454,65456,65459,65461,65462,65463,65467,65470,65471,65472,65474,65477,65480,65482,65484,65487,65489,65490,65491,65493,65494,65496,65500,65502,65504,65505,65507,65510,65512, +65513,65514,65516,65517,65518,65520,65522,65523,65526,65527,65530,65531,65532,65533,65535,65537,65538,65542,65543,65544,65547,65548,65550,65552,65555,65557,65560,65561,65563,65566,65567,65569,65570,65571,65572,65574,65576,65579,65580,65582,65584,65587,65588,65591,65593,65596,65597,65598,65600,65601,65603,65606,65607,65609,65610,65614,65615,65616,65618,65619,65622,65623,65625,65626,65630,65632,65633,65636,65637,65638,65640,65641,65644,65647,65648,65651,65652,65653,65655,65657,65659,65660,65663,65664,65665,65667,65670,65673,65675,65676,65678,65679,65682,65685,65687,65689,65692,65693,65696,65698,65701,65702,65705,65706,65710,65712,65713,65715,65716,65718,65720,65721,65725,65726,65727,65729,65730,65732,65735,65736,65737,65740,65741,65743,65745,65746,65749,65751,65755,65756,65758,65759,65761,65763,65767,65769,65771,65772,65775,65776,65778,65780,65781,65782,65786,65787,65790,65791,65794,65796,65799,65801,65804,65807,65810,65811,65812,65814,65817,65821,65824,65826,65828,65829,65830,65832,65836,65837,65839,65841,65844,65845,65847,65849,65851,65852,65855,65856,65858,65859,65861,65862,65864,65865,65867,65868,65869,65872,65874,65875,65877,65882,65885,65887,65888,65889,65890,65893,65895,65897,65899,65900,65902,65904,65906,65908,65909,65911,65914,65915,65918,65920,65924,65926,65927,65928,65933,65935,65936,65938,65939,65940,65941,65944,65945,65946,65948,65951,65952,65954,65956,65957,65958,65959,65961,65963,65966,65967,65969,65971,65975,65977,65978,65980,65981,65982,65984,65987,65989,65992,65993,65996,65997,65998,66000,66002,66003,66007,66008,66009,66011,66012,66014,66017,66018,66020,66021,66022,66026,66027,66031,66032,66033,66034,66037,66039,66044,66046,66047,66049,66050,66052,66053,66055,66056,66058,66059,66064,66065,66066,66067,66069,66070,66072,66077,66078,66080,66081,66082,66084,66087,66090,66091,66093,66094,66096,66097,66100,66101,66104,66106,66107,66108,66109,66111,66112,66114,66115,66118,66120,66124,66125,66127,66129,66133,66134,66136,66137,66139,66141,66143,66144,66146,66148,66151,66152,66154,66156,66159,66162,66165,66168, +66173,66176,66177,66179,66181,66182,66184,66186,66188,66189,66194,66195,66196,66200,66202,66203,66205,66206,66207,66208,66211,66214,66216,66217,66220,66221,66224,66225,66229,66230,66232,66233,66236,66237,66240,66243,66245,66246,66248,66249,66250,66252,66255,66258,66260,66261,66266,66269,66270,66271,66274,66275,66277,66281,66284,66286,66287,66288,66291,66292,66294,66296,66298,66300,66302,66304,66306,66307,66309,66312,66314,66315,66317,66318,66321,66323,66324,66327,66331,66332,66333,66336,66338,66341,66343,66344,66346,66347,66349,66350,66353,66354,66356,66357,66360,66363,66365,66367,66369,66371,66372,66375,66379,66380,66382,66384,66385,66387,66389,66390,66391,66394,66395,66396,66401,66402,66406,66408,66410,66411,66412,66415,66417,66419,66422,66425,66427,66430,66432,66434,66435,66438,66439,66441,66443,66446,66449,66452,66454,66455,66457,66458,66459,66461,66462,66463,66465,66467,66469,66472,66473,66475,66476,66478,66479,66481,66485,66486,66491,66492,66493,66495,66496,66499,66502,66503,66506,66509,66512,66514,66516,66518,66520,66521,66522,66524,66525,66526,66528,66530,66531,66535,66538,66540,66542,66543,66544,66547,66548,66549,66550,66553,66555,66556,66560,66561,66563,66564,66566,66569,66570,66571,66573,66574,66577,66578,66580,66581,66583,66585,66588,66590,66591,66593,66594,66596,66597,66598,66601,66602,66604,66605,66606,66608,66610,66611,66612,66614,66616,66618,66620,66621,66623,66624,66626,66627,66631,66632,66633,66635,66636,66637,66639,66640,66643,66644,66647,66648,66652,66654,66655,66658,66660,66664,66665,66666,66670,66672,66673,66675,66678,66683,66684,66685,66687,66690,66692,66694,66695,66697,66698,66699,66702,66703,66705,66708,66709,66711,66713,66714,66715,66718,66719,66720,66723,66726,66729,66731,66733,66734,66737,66739,66742,66743,66744,66750,66754,66755,66756,66760,66763,66764,66766,66768,66770,66772,66773,66774,66775,66778,66780,66781,66785,66787,66789,66790,66794,66796,66798,66799,66802,66805,66807,66811,66812,66814,66815,66816,66817,66819,66820,66822,66824,66827,66828,66829,66832,66833,66836,66837,66838,66840, +66844,66847,66848,66850,66851,66852,66855,66856,66859,66861,66862,66864,66866,66867,66871,66872,66874,66876,66878,66879,66882,66886,66887,66888,66893,66895,66896,66898,66900,66902,66903,66904,66908,66910,66911,66913,66914,66915,66919,66923,66925,66927,66930,66931,66935,66937,66938,66939,66941,66942,66946,66947,66949,66951,66953,66954,66956,66957,66959,66961,66964,66968,66969,66972,66975,66979,66980,66981,66982,66985,66987,66991,66992,66994,66997,66998,67001,67002,67006,67007,67009,67010,67012,67015,67016,67017,67019,67021,67022,67024,67028,67030,67034,67035,67039,67040,67041,67043,67045,67046,67047,67048,67050,67054,67055,67057,67059,67060,67062,67066,67068,67070,67071,67072,67074,67078,67081,67082,67083,67084,67087,67090,67091,67092,67093,67095,67096,67099,67100,67102,67105,67109,67111,67115,67118,67120,67121,67123,67124,67125,67127,67128,67129,67132,67136,67137,67138,67140,67141,67143,67148,67149,67151,67152,67155,67158,67159,67163,67165,67166,67167,67169,67170,67173,67174,67177,67179,67181,67183,67185,67188,67190,67191,67192,67195,67196,67198,67200,67201,67203,67207,67208,67209,67212,67213,67215,67216,67220,67221,67222,67224,67226,67228,67229,67231,67232,67233,67237,67239,67241,67242,67243,67247,67249,67250,67252,67256,67257,67258,67262,67264,67265,67266,67268,67271,67273,67274,67277,67278,67279,67283,67285,67286,67287,67290,67294,67297,67299,67302,67303,67307,67308,67310,67311,67312,67314,67316,67317,67319,67320,67324,67325,67326,67328,67330,67331,67332,67335,67336,67340,67342,67343,67344,67345,67348,67350,67352,67353,67355,67356,67361,67362,67363,67365,67369,67370,67372,67376,67379,67381,67383,67386,67388,67389,67391,67394,67395,67396,67398,67399,67401,67403,67405,67408,67411,67414,67415,67417,67419,67420,67422,67426,67430,67431,67433,67435,67436,67438,67442,67443,67447,67450,67451,67452,67453,67456,67458,67459,67461,67463,67464,67468,67471,67474,67475,67476,67477,67480,67482,67486,67487,67489,67492,67493,67494,67497,67498,67501,67502,67504,67505,67506,67507,67510,67511,67514,67516,67518,67519,67523,67525,67526, +67528,67531,67534,67537,67538,67539,67544,67545,67546,67549,67553,67554,67557,67560,67561,67565,67567,67569,67573,67575,67577,67578,67579,67581,67583,67585,67586,67588,67590,67595,67596,67598,67599,67601,67604,67607,67610,67612,67613,67616,67617,67618,67622,67623,67625,67626,67630,67632,67633,67636,67637,67639,67641,67642,67644,67649,67650,67655,67657,67659,67661,67662,67664,67665,67667,67669,67670,67671,67673,67674,67676,67678,67679,67681,67683,67685,67686,67687,67689,67692,67695,67697,67699,67701,67705,67706,67707,67710,67711,67715,67716,67719,67721,67722,67723,67725,67727,67728,67730,67731,67733,67734,67737,67738,67740,67742,67745,67747,67750,67751,67752,67753,67755,67757,67758,67763,67765,67766,67767,67769,67770,67772,67773,67775,67776,67780,67782,67785,67787,67791,67792,67796,67798,67799,67801,67802,67804,67805,67806,67810,67812,67816,67817,67818,67820,67821,67825,67826,67827,67830,67831,67833,67835,67838,67839,67842,67843,67845,67847,67848,67850,67852,67855,67856,67858,67859,67862,67863,67864,67866,67867,67869,67870,67874,67875,67876,67878,67880,67882,67883,67885,67886,67888,67889,67890,67892,67894,67895,67896,67897,67899,67902,67903,67905,67908,67913,67914,67916,67917,67919,67921,67924,67925,67926,67929,67930,67932,67933,67936,67937,67938,67940,67943,67944,67946,67949,67951,67952,67958,67960,67961,67962,67968,67971,67973,67976,67977,67979,67980,67982,67983,67985,67986,67989,67990,67993,67994,67995,67998,67999,68002,68003,68004,68005,68007,68010,68011,68014,68017,68019,68021,68024,68027,68029,68031,68033,68036,68038,68039,68040,68045,68048,68049,68052,68055,68056,68059,68060,68061,68064,68065,68068,68070,68072,68073,68078,68079,68084,68087,68089,68090,68091,68093,68095,68097,68098,68103,68105,68106,68108,68111,68112,68113,68116,68117,68120,68121,68122,68125,68126,68127,68129,68130,68131,68133,68135,68137,68138,68141,68143,68147,68148,68149,68151,68154,68157,68158,68160,68162,68165,68167,68168,68169,68171,68173,68175,68178,68180,68183,68184,68186,68187,68190,68197,68198,68200,68201,68202,68207,68209,68210,68211, +68212,68214,68216,68217,68220,68221,68223,68225,68227,68228,68229,68233,68236,68237,68238,68240,68241,68244,68246,68248,68250,68253,68256,68258,68259,68262,68264,68265,68269,68270,68271,68272,68276,68277,68279,68282,68283,68287,68288,68290,68293,68295,68297,68298,68302,68303,68305,68307,68308,68312,68313,68315,68316,68317,68319,68320,68324,68325,68328,68331,68335,68337,68338,68340,68342,68343,68345,68346,68348,68349,68351,68354,68356,68357,68359,68360,68363,68364,68365,68368,68369,68372,68373,68375,68377,68379,68383,68384,68386,68387,68390,68392,68394,68395,68397,68398,68400,68401,68403,68405,68406,68408,68409,68411,68412,68413,68415,68416,68418,68419,68424,68426,68429,68430,68431,68433,68437,68438,68442,68445,68449,68452,68453,68455,68457,68459,68462,68463,68468,68470,68471,68472,68476,68477,68478,68480,68481,68483,68485,68488,68491,68494,68496,68497,68499,68501,68504,68505,68506,68508,68509,68513,68515,68516,68517,68518,68520,68523,68524,68526,68533,68537,68538,68539,68541,68544,68545,68547,68552,68553,68554,68556,68557,68560,68561,68562,68565,68568,68569,68571,68574,68576,68579,68580,68582,68585,68586,68587,68590,68591,68592,68594,68595,68599,68600,68601,68604,68605,68607,68608,68610,68614,68616,68618,68620,68621,68622,68624,68625,68627,68628,68631,68633,68634,68635,68637,68638,68640,68642,68644,68648,68649,68654,68656,68660,68662,68664,68666,68667,68670,68671,68674,68677,68680,68681,68682,68683,68686,68688,68691,68693,68695,68696,68697,68701,68702,68705,68706,68707,68711,68712,68714,68715,68720,68722,68723,68725,68728,68732,68734,68738,68740,68741,68743,68745,68746,68750,68751,68752,68755,68756,68757,68759,68760,68762,68765,68766,68771,68772,68773,68775,68777,68778,68780,68781,68783,68786,68788,68789,68792,68794,68795,68797,68798,68799,68800,68803,68805,68807,68808,68810,68811,68812,68816,68817,68818,68820,68824,68825,68827,68829,68830,68834,68835,68838,68840,68843,68845,68847,68848,68851,68854,68858,68859,68860,68862,68865,68868,68870,68872,68873,68874,68877,68880,68883,68886,68888,68889,68890,68892,68893,68896, +68899,68901,68903,68906,68907,68908,68910,68911,68913,68917,68918,68920,68924,68926,68927,68929,68930,68932,68934,68935,68937,68940,68941,68943,68944,68946,68949,68954,68956,68960,68963,68966,68968,68969,68970,68974,68976,68978,68980,68983,68985,68986,68988,68991,68992,68994,68995,68997,69000,69005,69006,69007,69011,69012,69014,69017,69018,69021,69022,69024,69025,69027,69028,69030,69031,69033,69034,69036,69039,69042,69044,69047,69049,69050,69051,69053,69054,69056,69058,69059,69061,69063,69066,69067,69069,69071,69072,69073,69077,69079,69080,69081,69082,69084,69088,69090,69092,69095,69097,69098,69099,69100,69102,69104,69105,69110,69111,69114,69118,69121,69124,69125,69127,69129,69130,69132,69134,69136,69138,69141,69145,69147,69149,69151,69152,69153,69155,69156,69157,69159,69162,69165,69166,69168,69169,69171,69173,69174,69177,69179,69180,69181,69184,69185,69186,69190,69191,69192,69196,69198,69201,69202,69205,69209,69210,69214,69215,69217,69218,69219,69223,69224,69225,69226,69229,69231,69233,69236,69239,69241,69242,69243,69246,69248,69250,69253,69254,69257,69259,69260,69261,69263,69264,69267,69270,69272,69275,69276,69279,69280,69283,69284,69286,69288,69289,69292,69293,69294,69295,69297,69299,69302,69303,69305,69308,69311,69316,69318,69320,69321,69325,69326,69327,69328,69331,69333,69337,69339,69341,69342,69343,69346,69347,69348,69351,69355,69358,69360,69361,69365,69366,69367,69369,69371,69373,69374,69377,69378,69381,69384,69389,69391,69392,69394,69398,69399,69404,69406,69408,69409,69411,69412,69415,69416,69418,69420,69424,69425,69427,69429,69431,69432,69433,69435,69440,69443,69444,69446,69447,69449,69450,69452,69453,69457,69459,69460,69463,69465,69468,69469,69473,69474,69475,69479,69480,69484,69487,69490,69492,69493,69495,69496,69498,69505,69508,69514,69517,69518,69519,69520,69523,69526,69527,69528,69529,69533,69535,69536,69538,69541,69542,69543,69544,69547,69548,69550,69551,69553,69555,69560,69561,69562,69566,69568,69569,69571,69574,69575,69577,69578,69580,69582,69584,69585,69586,69589,69591,69592,69595,69598,69600,69602, +69605,69606,69608,69611,69612,69614,69617,69618,69619,69621,69623,69625,69627,69631,69634,69635,69637,69640,69641,69643,69644,69645,69646,69650,69651,69655,69657,69659,69660,69661,69664,69666,69668,69669,69671,69672,69674,69675,69677,69678,69682,69683,69686,69687,69689,69690,69691,69693,69694,69697,69699,69701,69702,69706,69708,69709,69713,69714,69715,69717,69719,69720,69724,69725,69728,69729,69731,69732,69733,69737,69739,69742,69743,69746,69748,69750,69751,69754,69755,69756,69761,69762,69766,69767,69768,69769,69772,69773,69778,69780,69782,69785,69788,69790,69791,69793,69794,69795,69797,69800,69801,69802,69804,69806,69807,69809,69811,69817,69820,69821,69824,69826,69828,69832,69833,69835,69836,69838,69839,69841,69843,69846,69847,69849,69851,69852,69856,69857,69860,69863,69865,69867,69869,69870,69871,69873,69877,69878,69879,69884,69887,69892,69895,69896,69897,69898,69900,69901,69904,69905,69906,69907,69911,69912,69914,69915,69916,69919,69920,69921,69922,69926,69929,69930,69933,69938,69940,69944,69945,69946,69949,69951,69955,69958,69959,69961,69962,69964,69965,69966,69968,69969,69972,69975,69977,69978,69981,69984,69987,69990,69994,69995,69996,69997,70000,70001,70003,70007,70010,70012,70013,70015,70017,70019,70021,70023,70026,70028,70031,70032,70034,70037,70038,70040,70041,70042,70045,70048,70049,70050,70052,70053,70058,70059,70062,70063,70066,70067,70068,70069,70071,70072,70077,70080,70082,70084,70087,70088,70091,70092,70096,70100,70101,70102,70104,70105,70107,70109,70111,70112,70115,70118,70119,70120,70123,70126,70128,70131,70132,70134,70137,70138,70140,70143,70144,70147,70148,70150,70151,70153,70154,70157,70158,70159,70163,70164,70165,70167,70168,70170,70171,70173,70174,70177,70178,70182,70185,70187,70189,70190,70192,70194,70197,70200,70201,70203,70206,70209,70210,70212,70214,70215,70216,70218,70220,70221,70222,70224,70227,70230,70232,70235,70236,70238,70239,70243,70244,70246,70250,70251,70256,70259,70260,70261,70263,70266,70268,70270,70271,70272,70273,70276,70277,70278,70279,70282,70283,70285,70288,70290,70292,70293, +70295,70296,70300,70302,70304,70306,70307,70309,70310,70312,70313,70315,70316,70317,70318,70320,70321,70323,70324,70328,70331,70334,70335,70337,70340,70342,70344,70349,70350,70351,70354,70356,70357,70359,70362,70363,70366,70367,70368,70370,70371,70372,70374,70378,70379,70381,70382,70385,70388,70389,70391,70393,70397,70398,70399,70401,70403,70406,70409,70414,70415,70417,70418,70419,70421,70423,70425,70427,70428,70430,70433,70434,70437,70439,70440,70444,70445,70448,70450,70453,70455,70456,70458,70461,70462,70465,70467,70471,70472,70474,70478,70479,70480,70482,70483,70485,70488,70490,70491,70493,70496,70497,70500,70502,70504,70506,70508,70509,70510,70513,70516,70517,70519,70520,70521,70526,70529,70531,70537,70538,70539,70543,70544,70545,70549,70550,70552,70553,70554,70557,70558,70560,70563,70568,70570,70573,70577,70578,70580,70582,70583,70584,70585,70587,70588,70590,70593,70598,70601,70604,70605,70609,70610,70611,70615,70616,70617,70619,70620,70622,70625,70626,70627,70629,70631,70634,70636,70637,70638,70639,70642,70645,70648,70651,70652,70654,70657,70659,70660,70663,70665,70669,70671,70672,70674,70676,70677,70681,70682,70685,70690,70692,70694,70695,70697,70700,70701,70703,70704,70705,70707,70708,70712,70715,70718,70719,70720,70724,70726,70727,70728,70730,70732,70734,70736,70738,70739,70741,70744,70745,70746,70747,70752,70754,70757,70758,70760,70761,70764,70766,70767,70771,70772,70774,70778,70779,70780,70782,70787,70789,70790,70793,70794,70795,70798,70799,70802,70804,70805,70806,70809,70812,70813,70816,70818,70820,70821,70822,70824,70826,70830,70832,70833,70835,70837,70838,70841,70842,70844,70846,70849,70850,70851,70854,70858,70859,70860,70862,70863,70865,70866,70867,70869,70873,70874,70876,70877,70879,70882,70883,70884,70886,70887,70889,70890,70893,70898,70899,70901,70902,70905,70910,70911,70914,70915,70918,70919,70921,70924,70926,70930,70932,70936,70938,70939,70942,70944,70945,70947,70949,70950,70951,70953,70957,70958,70960,70963,70967,70970,70971,70974,70976,70978,70979,70982,70985,70986,70989,70991,70993,70994,70995, +70998,71000,71001,71002,71004,71009,71011,71013,71018,71021,71023,71024,71026,71027,71028,71031,71033,71034,71035,71038,71039,71041,71042,71043,71045,71047,71051,71052,71054,71057,71058,71060,71063,71064,71066,71069,71071,71073,71074,71076,71077,71081,71082,71083,71086,71087,71090,71091,71093,71096,71097,71098,71100,71103,71107,71108,71111,71113,71114,71116,71120,71121,71125,71126,71127,71128,71132,71137,71140,71142,71144,71146,71147,71148,71149,71152,71156,71158,71159,71161,71162,71164,71165,71166,71168,71169,71171,71173,71175,71176,71180,71181,71183,71184,71187,71189,71191,71192,71193,71195,71197,71198,71200,71201,71202,71203,71206,71209,71211,71212,71214,71215,71218,71219,71221,71222,71224,71225,71227,71230,71233,71235,71237,71238,71241,71243,71245,71246,71249,71250,71254,71255,71257,71259,71262,71263,71266,71269,71271,71273,71276,71277,71279,71280,71281,71283,71284,71286,71287,71290,71292,71295,71297,71301,71303,71304,71307,71312,71313,71314,71316,71318,71319,71320,71324,71326,71330,71332,71336,71339,71340,71341,71343,71344,71346,71348,71350,71353,71354,71355,71357,71358,71360,71361,71365,71368,71369,71372,71373,71375,71376,71378,71379,71380,71383,71384,71387,71388,71393,71395,71397,71399,71402,71405,71406,71409,71412,71413,71416,71417,71419,71423,71426,71428,71431,71435,71437,71440,71441,71443,71445,71447,71448,71450,71452,71453,71455,71457,71459,71462,71463,71467,71469,71471,71472,71474,71476,71477,71479,71481,71486,71488,71491,71492,71494,71497,71499,71504,71505,71506,71508,71509,71512,71515,71516,71518,71520,71523,71527,71529,71531,71532,71534,71535,71536,71538,71539,71542,71546,71548,71551,71553,71554,71556,71557,71561,71562,71563,71565,71566,71569,71572,71574,71577,71578,71582,71584,71585,71587,71590,71591,71594,71595,71596,71598,71600,71601,71604,71606,71609,71612,71614,71615,71616,71618,71620,71625,71627,71628,71629,71631,71634,71637,71638,71640,71642,71643,71645,71647,71648,71649,71654,71655,71656,71658,71660,71661,71665,71667,71669,71670,71671,71673,71675,71676,71678,71679,71681,71682,71683,71686,71688, +71691,71694,71695,71698,71701,71703,71705,71709,71711,71712,71715,71717,71718,71720,71723,71724,71725,71727,71728,71735,71737,71738,71739,71741,71742,71743,71746,71748,71753,71754,71756,71758,71760,71762,71763,71764,71766,71769,71773,71775,71777,71779,71782,71783,71785,71788,71789,71791,71793,71794,71796,71798,71800,71801,71803,71805,71806,71808,71812,71814,71816,71818,71820,71821,71823,71828,71829,71830,71832,71835,71837,71840,71841,71843,71846,71847,71848,71852,71853,71854,71857,71858,71859,71864,71865,71866,71868,71869,71873,71875,71876,71880,71883,71888,71889,71890,71893,71897,71900,71902,71903,71906,71907,71908,71911,71913,71919,71920,71924,71927,71932,71933,71936,71938,71942,71943,71944,71948,71950,71951,71952,71954,71956,71957,71959,71960,71961,71963,71966,71968,71970,71971,71974,71975,71976,71978,71980,71981,71982,71985,71987,71988,71989,71991,71993,71996,71997,72001,72002,72004,72005,72006,72007,72010,72012,72015,72019,72020,72021,72024,72027,72028,72031,72032,72033,72036,72039,72041,72043,72044,72045,72047,72050,72051,72054,72056,72058,72062,72063,72066,72067,72070,72071,72072,72073,72076,72079,72080,72081,72082,72084,72086,72088,72089,72091,72092,72094,72098,72101,72102,72104,72105,72106,72108,72109,72111,72112,72114,72115,72117,72119,72121,72123,72125,72126,72128,72137,72139,72140,72142,72143,72145,72147,72149,72151,72152,72154,72158,72161,72162,72163,72165,72167,72170,72173,72175,72176,72179,72180,72181,72183,72185,72186,72189,72191,72193,72194,72197,72198,72200,72201,72202,72204,72206,72207,72210,72215,72216,72220,72221,72223,72225,72227,72229,72232,72234,72236,72239,72241,72242,72244,72245,72246,72247,72250,72254,72255,72259,72260,72261,72262,72265,72266,72267,72269,72270,72272,72273,72277,72281,72283,72285,72287,72288,72290,72293,72294,72296,72297,72299,72300,72301,72303,72306,72307,72310,72311,72312,72313,72315,72317,72320,72322,72323,72325,72326,72329,72330,72335,72336,72337,72339,72344,72345,72346,72349,72350,72351,72353,72355,72357,72360,72364,72367,72368,72369,72373,72375,72376,72380,72381,72383, +72384,72387,72389,72390,72391,72394,72395,72397,72399,72400,72404,72405,72410,72413,72414,72417,72419,72422,72423,72424,72427,72430,72433,72434,72436,72438,72442,72445,72446,72447,72448,72450,72451,72455,72456,72458,72461,72464,72465,72466,72468,72469,72471,72473,72476,72477,72480,72482,72485,72487,72488,72489,72491,72493,72495,72497,72500,72501,72507,72508,72511,72512,72513,72515,72516,72518,72520,72524,72527,72528,72531,72533,72535,72536,72539,72541,72543,72546,72549,72550,72554,72555,72560,72563,72565,72566,72568,72571,72572,72574,72577,72580,72581,72587,72589,72592,72593,72596,72597,72599,72601,72603,72604,72607,72608,72609,72610,72613,72614,72615,72619,72622,72625,72628,72630,72631,72633,72635,72638,72640,72641,72643,72644,72645,72646,72648,72649,72651,72652,72656,72658,72661,72663,72665,72666,72669,72670,72672,72674,72677,72679,72680,72681,72683,72684,72688,72690,72691,72693,72694,72697,72698,72699,72701,72702,72704,72706,72707,72709,72712,72715,72717,72718,72721,72722,72724,72728,72731,72734,72736,72737,72738,72739,72741,72743,72746,72747,72752,72753,72756,72757,72761,72764,72767,72769,72770,72772,72774,72775,72778,72779,72780,72781,72783,72785,72786,72787,72789,72791,72794,72795,72796,72798,72800,72801,72803,72806,72809,72812,72815,72816,72818,72821,72823,72825,72828,72829,72833,72836,72837,72839,72840,72844,72847,72848,72851,72854,72855,72856,72858,72862,72863,72866,72868,72872,72874,72875,72876,72879,72881,72883,72886,72888,72890,72893,72894,72895,72897,72900,72901,72904,72905,72906,72908,72909,72911,72912,72915,72917,72918,72923,72924,72927,72930,72936,72938,72939,72940,72943,72944,72945,72948,72952,72955,72956,72958,72960,72962,72963,72964,72966,72967,72969,72973,72975,72976,72980,72982,72985,72987,72988,72991,72992,72993,72994,72996,72999,73001,73004,73005,73007,73009,73010,73012,73016,73017,73018,73020,73024,73025,73027,73029,73031,73034,73036,73037,73039,73044,73046,73047,73048,73050,73055,73056,73059,73060,73064,73067,73069,73073,73074,73076,73078,73079,73080,73082,73088,73090,73091,73093,73094,73095, +73096,73099,73100,73102,73104,73106,73108,73109,73111,73112,73114,73115,73116,73118,73119,73121,73122,73123,73125,73126,73128,73130,73131,73132,73135,73136,73138,73140,73141,73144,73148,73149,73152,73153,73155,73159,73160,73161,73163,73166,73167,73168,73170,73173,73174,73176,73181,73183,73184,73186,73188,73190,73191,73193,73194,73196,73198,73203,73205,73208,73210,73212,73216,73217,73219,73222,73223,73224,73229,73230,73231,73234,73235,73237,73240,73242,73245,73246,73249,73251,73253,73254,73258,73259,73261,73262,73263,73266,73267,73270,73271,73274,73275,73278,73279,73281,73282,73285,73286,73288,73290,73295,73296,73298,73299,73301,73302,73306,73309,73312,73315,73316,73317,73321,73322,73324,73328,73330,73331,73332,73333,73335,73336,73338,73340,73341,73346,73347,73349,73352,73353,73357,73360,73361,73363,73365,73367,73369,73373,73374,73379,73380,73381,73383,73386,73387,73389,73390,73392,73394,73396,73397,73398,73401,73405,73409,73411,73414,73416,73419,73423,73425,73426,73428,73429,73432,73433,73434,73436,73437,73439,73440,73442,73443,73444,73447,73449,73453,73456,73457,73459,73461,73463,73464,73465,73468,73470,73471,73473,73478,73480,73482,73485,73487,73489,73491,73493,73495,73496,73497,73498,73502,73503,73506,73511,73512,73514,73517,73518,73520,73523,73527,73531,73532,73533,73535,73538,73539,73540,73543,73544,73546,73547,73549,73552,73555,73557,73562,73563,73564,73568,73570,73571,73572,73573,73575,73577,73579,73581,73584,73585,73588,73590,73592,73594,73595,73596,73597,73601,73602,73605,73610,73613,73615,73617,73618,73620,73621,73625,73626,73628,73630,73631,73632,73635,73636,73638,73642,73643,73644,73646,73647,73648,73652,73653,73657,73658,73659,73663,73667,73669,73670,73672,73674,73675,73678,73680,73682,73684,73688,73689,73695,73698,73700,73701,73704,73705,73707,73710,73713,73716,73718,73720,73722,73723,73725,73726,73729,73730,73731,73732,73734,73736,73737,73738,73741,73746,73752,73753,73756,73759,73762,73764,73767,73768,73770,73773,73775,73776,73777,73781,73783,73785,73789,73790,73792,73793,73794,73795,73797,73800,73802, +73803,73807,73809,73810,73814,73815,73816,73819,73821,73823,73824,73828,73829,73830,73832,73834,73836,73837,73839,73842,73846,73848,73850,73852,73854,73856,73859,73862,73863,73865,73869,73870,73873,73874,73875,73877,73878,73879,73882,73884,73885,73887,73888,73890,73894,73895,73896,73901,73902,73903,73906,73907,73908,73909,73913,73915,73916,73919,73921,73922,73924,73926,73928,73931,73932,73933,73935,73940,73941,73943,73944,73946,73947,73949,73952,73953,73955,73956,73957,73959,73960,73963,73964,73967,73968,73971,73973,73974,73977,73978,73980,73983,73987,73988,73991,73994,73995,73996,73998,74001,74003,74006,74007,74008,74010,74012,74014,74015,74016,74018,74020,74023,74024,74025,74027,74029,74033,74036,74037,74039,74040,74042,74043,74048,74049,74051,74054,74055,74057,74058,74059,74062,74066,74068,74071,74074,74076,74077,74079,74081,74084,74086,74088,74089,74093,74094,74096,74099,74102,74103,74107,74109,74110,74113,74114,74115,74117,74118,74120,74121,74125,74128,74129,74130,74131,74133,74137,74141,74143,74146,74147,74149,74151,74153,74156,74157,74158,74160,74163,74167,74169,74173,74174,74177,74178,74181,74183,74185,74187,74191,74194,74195,74196,74198,74199,74200,74203,74206,74207,74209,74212,74213,74215,74219,74222,74224,74225,74226,74228,74230,74231,74232,74234,74235,74237,74240,74243,74245,74247,74249,74250,74254,74255,74258,74260,74261,74262,74266,74269,74270,74272,74274,74276,74277,74278,74280,74283,74284,74286,74288,74290,74291,74292,74293,74297,74298,74299,74302,74305,74307,74309,74311,74314,74316,74319,74321,74322,74325,74327,74330,74331,74336,74339,74343,74345,74346,74349,74350,74352,74354,74355,74356,74358,74359,74361,74362,74364,74368,74369,74370,74372,74375,74376,74378,74381,74383,74384,74385,74387,74389,74390,74393,74394,74397,74398,74402,74404,74405,74407,74408,74409,74411,74412,74414,74416,74418,74422,74423,74425,74427,74430,74434,74435,74436,74439,74443,74444,74445,74448,74451,74453,74454,74455,74457,74459,74460,74464,74465,74467,74470,74472,74474,74477,74480,74481,74484,74485,74487,74488,74492,74493,74495, +74496,74501,74502,74504,74506,74508,74509,74511,74512,74515,74516,74518,74520,74521,74525,74526,74529,74530,74532,74537,74538,74541,74546,74547,74548,74550,74553,74554,74556,74561,74563,74567,74569,74570,74571,74573,74575,74576,74577,74582,74583,74584,74586,74590,74591,74593,74596,74597,74599,74602,74604,74605,74607,74612,74614,74615,74617,74618,74619,74620,74622,74626,74628,74629,74632,74635,74636,74637,74640,74645,74646,74649,74650,74652,74654,74656,74657,74658,74662,74663,74665,74666,74667,74670,74673,74674,74677,74679,74684,74686,74687,74688,74690,74693,74695,74696,74697,74698,74700,74701,74703,74704,74710,74711,74714,74715,74717,74718,74719,74721,74723,74725,74726,74727,74730,74731,74735,74736,74737,74739,74743,74744,74747,74749,74750,74753,74754,74756,74759,74761,74762,74763,74764,74767,74768,74770,74772,74773,74776,74779,74780,74783,74784,74786,74788,74789,74791,74792,74793,74797,74799,74800,74803,74805,74807,74810,74811,74813,74816,74817,74818,74822,74824,74825,74826,74827,74830,74832,74833,74835,74837,74838,74840,74842,74844,74848,74850,74852,74853,74856,74861,74862,74863,74865,74868,74870,74871,74872,74874,74878,74879,74880,74882,74884,74886,74889,74891,74893,74895,74897,74901,74904,74905,74908,74912,74913,74918,74919,74924,74927,74929,74930,74933,74935,74938,74939,74941,74942,74945,74946,74947,74949,74950,74953,74955,74959,74963,74964,74966,74968,74970,74973,74976,74978,74982,74984,74985,74986,74989,74990,74992,74993,74996,74997,74999,75000,75003,75007,75009,75012,75014,75016,75020,75021,75024,75026,75027,75029,75030,75032,75035,75036,75039,75041,75042,75044,75045,75047,75050,75053,75054,75055,75057,75061,75062,75063,75065,75067,75068,75071,75072,75077,75078,75081,75082,75085,75086,75088,75089,75090,75091,75094,75095,75097,75099,75101,75104,75106,75108,75111,75112,75116,75117,75119,75121,75124,75126,75128,75130,75131,75133,75136,75139,75140,75142,75143,75145,75146,75148,75150,75154,75158,75159,75161,75163,75166,75169,75172,75174,75179,75182,75184,75185,75188,75190,75191,75193,75195,75196,75200,75201,75202, +75204,75206,75207,75208,75210,75213,75215,75216,75219,75221,75224,75225,75229,75230,75232,75233,75234,75235,75237,75239,75242,75243,75246,75247,75251,75257,75259,75261,75263,75264,75266,75269,75270,75272,75273,75277,75278,75279,75282,75285,75286,75290,75292,75293,75295,75296,75297,75298,75300,75305,75307,75309,75311,75312,75315,75319,75320,75325,75326,75327,75330,75332,75333,75335,75336,75340,75341,75342,75343,75346,75347,75349,75350,75352,75354,75356,75358,75360,75362,75364,75365,75367,75369,75371,75372,75375,75378,75383,75384,75387,75390,75392,75394,75395,75397,75401,75403,75405,75407,75413,75417,75419,75421,75422,75423,75424,75427,75428,75429,75433,75436,75439,75440,75441,75442,75444,75446,75447,75448,75451,75454,75455,75458,75459,75462,75463,75465,75466,75468,75471,75472,75474,75475,75477,75478,75480,75485,75486,75490,75493,75494,75495,75498,75503,75505,75507,75509,75510,75513,75517,75519,75520,75525,75527,75528,75530,75532,75533,75537,75538,75543,75544,75546,75549,75552,75554,75556,75557,75558,75560,75561,75564,75566,75568,75572,75574,75575,75578,75581,75582,75583,75586,75589,75591,75593,75594,75598,75600,75601,75604,75607,75609,75611,75613,75614,75616,75619,75622,75623,75624,75625,75627,75628,75631,75633,75636,75640,75641,75642,75643,75646,75648,75650,75651,75654,75656,75660,75662,75664,75666,75670,75671,75674,75675,75678,75681,75684,75685,75688,75693,75694,75697,75698,75700,75702,75703,75705,75707,75708,75710,75714,75715,75718,75719,75721,75722,75723,75725,75727,75728,75731,75734,75736,75738,75739,75741,75744,75747,75749,75750,75752,75755,75756,75759,75762,75765,75766,75768,75769,75772,75773,75776,75779,75780,75785,75787,75788,75792,75797,75799,75800,75801,75803,75805,75806,75807,75812,75814,75817,75819,75825,75826,75829,75831,75834,75835,75839,75841,75843,75846,75847,75850,75851,75853,75854,75855,75857,75858,75861,75862,75864,75865,75867,75871,75872,75874,75875,75876,75877,75879,75881,75883,75885,75886,75888,75890,75893,75895,75897,75899,75902,75903,75906,75910,75912,75915,75917,75919,75921,75922,75925,75928, +75930,75931,75933,75934,75938,75939,75941,75945,75949,75950,75952,75953,75956,75957,75958,75960,75963,75965,75967,75971,75974,75976,75978,75979,75988,75991,75993,75998,75999,76001,76002,76003,76007,76009,76010,76016,76017,76018,76021,76031,76036,76039,76045,76046,76047,76050,76054,76056,76058,76061,76063,76064,76065,76067,76070,76071,76075,76078,76079,76080,76081,76083,76084,76086,76087,76089,76090,76093,76094,76096,76100,76103,76107,76108,76110,76111,76113,76115,76117,76118,76119,76124,76126,76136,76138,76140,76143,76145,76148,76150,76154,76156,76157,76158,76159,76163,76164,76166,76168,76171,76172,76174,76175,76177,76178,76179,76183,76184,76185,76186,76188,76190,76191,76193,76194,76196,76198,76199,76200,76201,76204,76205,76207,76210,76213,76214,76215,76220,76226,76227,76231,76233,76236,76239,76241,76243,76244,76246,76247,76250,76253,76255,76256,76258,76259,76261,76263,76266,76268,76270,76271,76276,76277,76279,76282,76285,76286,76288,76291,76292,76293,76294,76298,76301,76303,76305,76308,76310,76311,76312,76314,76319,76321,76324,76325,76329,76331,76332,76333,76336,76337,76338,76342,76343,76345,76348,76349,76350,76354,76355,76357,76358,76360,76361,76363,76364,76365,76367,76369,76372,76373,76375,76376,76377,76381,76382,76383,76384,76386,76388,76391,76393,76395,76396,76398,76403,76405,76407,76412,76414,76415,76416,76417,76420,76421,76423,76424,76425,76427,76429,76430,76432,76433,76436,76437,76438,76440,76443,76445,76446,76447,76449,76450,76452,76456,76458,76462,76463,76465,76468,76470,76471,76473,76474,76476,76478,76479,76483,76485,76486,76488,76489,76493,76494,76495,76497,76501,76502,76504,76507,76508,76510,76512,76513,76515,76517,76518,76520,76522,76523,76524,76526,76529,76531,76533,76535,76536,76538,76540,76541,76542,76544,76545,76548,76550,76552,76553,76554,76556,76557,76561,76562,76563,76564,76568,76570,76571,76574,76577,76579,76581,76582,76586,76587,76590,76592,76594,76596,76598,76599,76601,76603,76605,76606,76609,76613,76615,76616,76618,76619,76620,76621,76624,76626,76627,76629,76630,76634,76637,76639,76640,76641, +76645,76646,76647,76649,76650,76651,76654,76658,76659,76661,76663,76666,76667,76669,76671,76674,76676,76677,76678,76681,76683,76684,76686,76688,76690,76693,76694,76696,76697,76701,76703,76705,76706,76709,76710,76711,76713,76716,76720,76723,76724,76725,76728,76730,76731,76735,76738,76739,76742,76743,76746,76748,76750,76751,76752,76754,76756,76757,76758,76760,76761,76765,76766,76767,76768,76770,76771,76774,76775,76777,76779,76780,76782,76786,76788,76791,76792,76795,76796,76799,76800,76803,76804,76807,76808,76809,76811,76813,76814,76816,76817,76819,76823,76824,76826,76829,76831,76832,76834,76835,76838,76839,76841,76842,76843,76845,76848,76850,76852,76854,76857,76859,76860,76862,76863,76867,76868,76869,76873,76875,76877,76878,76879,76882,76885,76887,76890,76892,76894,76895,76896,76898,76900,76901,76902,76905,76906,76908,76912,76913,76914,76915,76918,76920,76923,76924,76927,76928,76930,76933,76935,76940,76941,76944,76945,76947,76948,76950,76952,76954,76955,76956,76958,76960,76963,76964,76965,76968,76970,76973,76975,76976,76979,76981,76982,76984,76985,76987,76988,76989,76991,76993,76994,76995,76999,77001,77003,77005,77006,77008,77012,77013,77016,77018,77020,77021,77024,77025,77026,77029,77030,77031,77034,77035,77038,77040,77044,77046,77047,77051,77053,77054,77055,77056,77058,77060,77061,77065,77069,77070,77072,77073,77077,77078,77080,77081,77082,77083,77085,77087,77088,77091,77093,77094,77096,77097,77099,77100,77103,77106,77108,77110,77113,77114,77115,77116,77122,77124,77126,77128,77129,77131,77133,77135,77138,77139,77141,77143,77144,77145,77147,77150,77151,77154,77157,77158,77160,77161,77164,77166,77168,77170,77171,77172,77174,77176,77177,77178,77182,77184,77186,77187,77188,77191,77194,77196,77197,77200,77202,77203,77205,77208,77210,77211,77213,77215,77216,77217,77219,77220,77223,77226,77229,77231,77232,77233,77236,77239,77241,77242,77248,77250,77252,77254,77255,77256,77257,77260,77261,77262,77265,77268,77272,77276,77278,77279,77281,77282,77283,77284,77286,77287,77289,77290,77292,77295,77299,77301,77303,77304,77305,77307, +77311,77313,77314,77316,77317,77320,77322,77323,77326,77327,77329,77330,77332,77333,77336,77338,77339,77341,77342,77345,77346,77348,77349,77352,77353,77355,77358,77359,77362,77363,77365,77366,77368,77370,77371,77374,77376,77377,77380,77381,77383,77386,77389,77391,77393,77396,77397,77398,77400,77402,77405,77407,77408,77410,77412,77414,77416,77417,77418,77420,77421,77424,77426,77428,77429,77432,77433,77436,77438,77441,77444,77446,77447,77448,77451,77452,77454,77456,77457,77459,77460,77464,77465,77468,77470,77472,77477,77478,77479,77481,77483,77485,77487,77490,77494,77495,77497,77498,77501,77502,77504,77505,77507,77509,77510,77511,77512,77514,77517,77520,77524,77525,77527,77530,77531,77533,77536,77537,77539,77540,77541,77543,77544,77545,77549,77551,77554,77555,77556,77559,77561,77565,77570,77571,77573,77575,77576,77577,77579,77582,77583,77585,77587,77588,77589,77592,77594,77598,77600,77603,77605,77606,77607,77611,77612,77613,77617,77618,77619,77620,77622,77623,77629,77630,77631,77634,77635,77637,77640,77642,77645,77646,77651,77652,77654,77656,77657,77659,77660,77661,77666,77668,77669,77671,77672,77674,77677,77678,77679,77683,77684,77685,77686,77689,77691,77692,77695,77697,77698,77701,77705,77707,77708,77709,77711,77713,77717,77719,77720,77722,77723,77724,77726,77728,77732,77733,77735,77736,77738,77739,77743,77745,77747,77748,77750,77751,77753,77756,77758,77759,77760,77761,77765,77766,77769,77770,77773,77774,77776,77780,77781,77782,77784,77787,77788,77791,77792,77793,77796,77798,77800,77803,77804,77805,77807,77809,77813,77814,77818,77819,77823,77824,77828,77830,77831,77833,77836,77837,77839,77841,77842,77846,77850,77851,77853,77854,77857,77858,77860,77861,77862,77863,77866,77867,77869,77871,77873,77875,77876,77878,77879,77880,77883,77885,77887,77888,77889,77891,77893,77895,77897,77899,77902,77906,77907,77909,77911,77915,77917,77919,77921,77922,77923,77926,77927,77930,77931,77933,77934,77936,77938,77939,77940,77942,77943,77944,77947,77948,77949,77952,77956,77957,77960,77962,77963,77966,77967,77970,77973,77975,77979,77982, +77984,77985,77988,77990,77991,77992,77994,77997,78000,78002,78004,78005,78006,78008,78009,78011,78013,78014,78015,78017,78018,78021,78024,78026,78027,78028,78031,78032,78033,78037,78041,78042,78046,78047,78048,78052,78053,78054,78057,78060,78061,78064,78067,78071,78073,78074,78075,78077,78079,78081,78083,78084,78086,78089,78090,78092,78093,78094,78096,78097,78099,78101,78102,78103,78105,78106,78109,78112,78115,78116,78117,78120,78122,78123,78124,78127,78130,78132,78137,78138,78140,78142,78143,78144,78149,78150,78151,78155,78157,78158,78159,78160,78163,78165,78168,78171,78172,78174,78177,78179,78182,78183,78187,78188,78189,78190,78192,78193,78197,78200,78202,78203,78204,78205,78208,78211,78213,78214,78215,78216,78218,78219,78220,78222,78224,78225,78226,78228,78229,78231,78232,78234,78237,78239,78242,78243,78245,78247,78249,78250,78252,78254,78256,78257,78258,78259,78262,78263,78264,78268,78269,78270,78272,78274,78275,78277,78280,78282,78284,78287,78289,78290,78291,78294,78295,78298,78299,78301,78304,78305,78306,78307,78309,78311,78314,78315,78316,78319,78321,78323,78324,78326,78328,78330,78331,78333,78334,78336,78338,78339,78341,78343,78344,78345,78347,78348,78349,78352,78354,78355,78359,78361,78363,78364,78367,78368,78369,78370,78372,78376,78378,78379,78383,78386,78388,78389,78392,78393,78395,78396,78397,78400,78404,78406,78407,78409,78412,78413,78415,78416,78418,78419,78421,78422,78423,78426,78427,78430,78431,78432,78433,78435,78437,78438,78440,78441,78443,78446,78447,78449,78450,78452,78454,78455,78457,78460,78462,78467,78469,78470,78473,78474,78476,78477,78481,78482,78483,78484,78486,78487,78489,78490,78494,78497,78498,78500,78501,78502,78506,78507,78511,78512,78513,78514,78516,78517,78520,78524,78525,78526,78529,78530,78531,78533,78534,78535,78537,78542,78543,78544,78547,78549,78550,78552,78554,78557,78559,78560,78561,78563,78564,78567,78570,78571,78573,78578,78581,78582,78583,78585,78586,78590,78593,78594,78595,78597,78601,78602,78603,78604,78607,78611,78612,78613,78616,78618,78620,78623,78624,78626,78627,78629, +78632,78633,78634,78637,78638,78639,78641,78643,78644,78645,78648,78649,78653,78655,78656,78658,78660,78663,78664,78666,78668,78669,78673,78674,78675,78676,78678,78679,78683,78684,78686,78687,78689,78690,78693,78695,78696,78698,78699,78700,78704,78706,78707,78708,78711,78713,78714,78715,78719,78721,78723,78724,78727,78728,78729,78730,78733,78735,78737,78739,78740,78743,78745,78746,78748,78750,78755,78756,78758,78761,78762,78763,78765,78769,78770,78772,78773,78774,78776,78777,78780,78783,78784,78786,78788,78789,78790,78794,78795,78798,78799,78801,78803,78804,78805,78809,78810,78813,78815,78816,78818,78820,78821,78822,78824,78825,78827,78828,78830,78831,78834,78835,78839,78840,78842,78848,78849,78854,78857,78858,78859,78862,78863,78866,78867,78868,78870,78872,78873,78876,78877,78879,78880,78883,78885,78887,78888,78891,78893,78895,78898,78899,78900,78903,78904,78908,78909,78910,78912,78914,78916,78917,78921,78924,78925,78927,78929,78930,78932,78935,78936,78939,78940,78942,78947,78949,78950,78951,78953,78954,78955,78957,78962,78964,78965,78966,78969,78971,78972,78973,78975,78977,78978,78980,78982,78983,78985,78988,78990,78994,78998,78999,79001,79003,79005,79010,79011,79013,79014,79015,79018,79019,79021,79022,79024,79027,79029,79034,79035,79037,79038,79041,79044,79046,79047,79049,79050,79054,79055,79058,79059,79060,79062,79066,79068,79070,79071,79074,79075,79077,79079,79080,79081,79084,79085,79086,79088,79089,79091,79093,79094,79095,79098,79100,79103,79105,79106,79108,79110,79111,79113,79114,79116,79118,79119,79121,79123,79124,79125,79127,79128,79133,79136,79139,79141,79144,79145,79147,79150,79152,79154,79155,79156,79158,79161,79163,79165,79168,79172,79174,79176,79179,79180,79184,79185,79187,79189,79190,79192,79195,79196,79198,79199,79200,79201,79203,79204,79207,79208,79211,79212,79214,79215,79218,79220,79221,79224,79226,79228,79229,79230,79231,79234,79235,79236,79238,79241,79244,79247,79249,79253,79254,79258,79260,79262,79264,79267,79268,79270,79276,79279,79280,79283,79284,79285,79287,79290,79291,79295,79296,79297,79300, +79301,79302,79303,79306,79307,79309,79310,79312,79313,79314,79317,79320,79321,79324,79325,79329,79331,79334,79335,79338,79339,79342,79343,79345,79346,79348,79351,79354,79357,79358,79359,79361,79363,79365,79368,79369,79371,79372,79377,79379,79380,79382,79385,79387,79389,79391,79392,79394,79397,79400,79401,79402,79405,79407,79408,79410,79412,79413,79416,79419,79420,79423,79424,79426,79430,79431,79432,79435,79436,79438,79439,79440,79444,79446,79450,79451,79452,79453,79455,79459,79462,79463,79465,79468,79471,79472,79474,79475,79477,79478,79480,79481,79483,79485,79490,79491,79492,79494,79497,79499,79500,79502,79504,79505,79507,79508,79509,79513,79514,79515,79517,79518,79522,79523,79524,79525,79528,79529,79532,79533,79537,79538,79540,79543,79544,79547,79549,79550,79551,79552,79555,79557,79560,79563,79564,79566,79567,79571,79573,79576,79577,79578,79580,79581,79582,79585,79586,79588,79589,79590,79592,79595,79596,79598,79599,79600,79602,79606,79609,79613,79614,79615,79618,79622,79624,79625,79627,79629,79631,79632,79633,79637,79640,79643,79644,79648,79650,79652,79653,79654,79656,79658,79660,79661,79662,79664,79665,79667,79668,79669,79672,79673,79675,79676,79677,79680,79681,79685,79687,79696,79698,79703,79705,79707,79712,79713,79716,79718,79719,79720,79722,79725,79728,79729,79731,79734,79739,79740,79741,79745,79746,79749,79752,79755,79756,79759,79762,79764,79765,79767,79768,79774,79776,79778,79779,79783,79784,79785,79788,79789,79793,79796,79797,79798,79799,79800,79801,79804,79805,79806,79807,79810,79811,79812,79814,79815,79816,79818,79820,79822,79823,79824,79825,79827,79828,79830,79831,79832,79833,79834,79838,79839,79840,79842,79843,79845,79847,79848,79849,79850,79851,79852,79853,79854,79855,79856,79857,79859,79860,79861,79863,79864,79866,79867,79869,79872,79875,79878,79879,79880,79882,79883,79884,79886,79887,79889,79890,79894,79897,79898,79900,79902,79904,79905,79906,79908,79909,79913,79915,79918,79921,79922,79924,79926,79928,79929,79932,79934,79935,79937,79938,79941,79942,79945,79947,79949,79951,79953,79955,79956,79957,79959, +79962,79963,79968,79969,79973,79974,79976,79977,79978,79981,79982,79985,79986,79990,79992,79994,79996,79997,79999,80000,80001,80004,80008,80009,80012,80013,80015,80016,80020,80022,80023,80027,80028,80030,80032,80033,80035,80036,80037,80039,80040,80041,80045,80047,80050,80051,80053,80054,80057,80060,80061,80065,80066,80068,80069,80071,80072,80073,80074,80076,80077,80081,80082,80083,80093,80096,80098,80099,80100,80102,80104,80106,80110,80113,80114,80117,80118,80125,80126,80128,80130,80132,80134,80137,80139,80141,80142,80143,80146,80147,80149,80150,80155,80157,80158,80159,80160,80161,80162,80165,80166,80168,80170,80172,80173,80176,80177,80180,80182,80183,80186,80191,80192,80193,80196,80197,80200,80201,80202,80203,80205,80207,80209,80211,80212,80215,80216,80218,80219,80226,80228,80230,80231,80233,80234,80235,80238,80240,80242,80243,80245,80246,80248,80249,80250,80251,80253,80256,80260,80263,80264,80266,80267,80268,80269,80271,80273,80274,80275,80278,80281,80284,80285,80287,80289,80291,80293,80295,80296,80300,80301,80303,80305,80306,80307,80311,80315,80317,80319,80321,80322,80323,80326,80327,80328,80331,80332,80334,80337,80338,80340,80343,80345,80346,80348,80349,80351,80352,80354,80355,80357,80358,80360,80363,80364,80366,80368,80369,80370,80372,80373,80374,80377,80378,80380,80381,80382,80383,80387,80389,80390,80392,80396,80397,80399,80400,80402,80405,80406,80410,80411,80413,80415,80417,80418,80420,80422,80423,80424,80426,80427,80428,80430,80433,80437,80438,80439,80440,80444,80446,80447,80448,80450,80451,80453,80455,80457,80459,80462,80463,80465,80467,80468,80469,80472,80474,80475,80477,80480,80481,80483,80485,80486,80488,80489,80491,80492,80493,80494,80498,80499,80500,80503,80505,80506,80508,80512,80513,80515,80517,80520,80521,80526,80528,80529,80530,80533,80535,80537,80538,80539,80542,80547,80549,80550,80553,80558,80560,80561,80562,80564,80565,80569,80570,80571,80572,80575,80576,80577,80580,80582,80584,80585,80587,80588,80590,80591,80592,80596,80600,80601,80602,80605,80608,80610,80613,80614,80616,80617,80621,80622,80627, +80628,80629,80632,80634,80639,80642,80644,80645,80646,80648,80649,80650,80654,80655,80656,80660,80663,80664,80667,80669,80670,80671,80673,80676,80678,80679,80680,80683,80684,80686,80687,80688,80689,80693,80695,80696,80698,80700,80701,80703,80704,80707,80710,80712,80714,80715,80716,80719,80720,80721,80723,80724,80727,80732,80734,80735,80737,80738,80739,80741,80743,80744,80747,80750,80753,80756,80757,80759,80760,80764,80766,80768,80769,80771,80772,80774,80775,80777,80780,80781,80785,80788,80791,80798,80799,80801,80802,80804,80807,80809,80811,80813,80815,80816,80817,80818,80821,80822,80824,80825,80827,80828,80830,80832,80834,80837,80838,80840,80841,80843,80845,80846,80849,80850,80853,80857,80858,80859,80863,80864,80867,80870,80871,80875,80876,80879,80881,80882,80883,80885,80886,80889,80890,80894,80896,80897,80899,80902,80903,80905,80906,80908,80909,80910,80912,80914,80916,80917,80919,80921,80923,80924,80926,80927,80928,80935,80936,80939,80941,80942,80944,80945,80946,80947,80950,80951,80953,80954,80957,80958,80959,80963,80964,80965,80967,80970,80971,80973,80975,80976,80978,80979,80981,80983,80985,80988,80990,80993,80994,80996,80997,81000,81001,81004,81006,81007,81009,81011,81012,81016,81019,81020,81021,81023,81026,81029,81031,81033,81036,81037,81041,81043,81044,81045,81047,81049,81050,81052,81053,81054,81056,81057,81058,81060,81064,81065,81067,81068,81070,81074,81076,81079,81081,81082,81085,81090,81093,81094,81097,81101,81102,81103,81105,81110,81112,81114,81116,81118,81119,81120,81122,81123,81128,81129,81131,81133,81134,81136,81138,81139,81142,81144,81145,81147,81148,81152,81153,81154,81157,81158,81160,81161,81162,81164,81166,81167,81170,81171,81172,81174,81175,81178,81179,81180,81182,81184,81186,81189,81196,81202,81204,81205,81208,81210,81212,81213,81216,81220,81222,81223,81225,81227,81229,81230,81231,81235,81238,81239,81241,81243,81246,81250,81251,81253,81258,81261,81264,81266,81267,81269,81271,81273,81276,81278,81279,81280,81282,81284,81286,81287,81288,81289,81295,81297,81300,81303,81307,81318,81320,81321,81326,81327, +81330,81335,81336,81339,81340,81347,81353,81356,81363,81364,81365,81366,81367,81368,81370,81371,81372,81374,81375,81376,81379,81382,81383,81386,81387,81388,81389,81390,81393,81396,81400,81401,81402,81403,81404,81405,81407,81408,81410,81411,81412,81414,81416,81417,81420,81422,81423,81424,81426,81429,81432,81434,81435,81437,81438,81440,81441,81444,81445,81446,81448,81449,81450,81453,81455,81456,81458,81459,81460,81462,81466,81468,81469,81472,81474,81475,81477,81481,81482,81485,81486,81489,81491,81493,81494,81496,81499,81500,81503,81504,81505,81508,81509,81512,81514,81515,81516,81518,81519,81521,81524,81526,81527,81528,81530,81533,81534,81538,81541,81542,81543,81544,81546,81547,81550,81551,81553,81555,81557,81560,81561,81563,81565,81566,81568,81569,81570,81572,81573,81576,81577,81580,81582,81584,81585,81586,81588,81589,81591,81595,81597,81598,81600,81602,81603,81604,81607,81609,81610,81612,81614,81615,81616,81619,81621,81622,81624,81625,81628,81629,81630,81632,81633,81635,81638,81641,81642,81643,81645,81647,81649,81650,81651,81653,81656,81658,81662,81664,81666,81670,81672,81677,81679,81681,81685,81687,81691,81696,81697,81698,81700,81702,81706,81707,81708,81710,81711,81713,81714,81717,81719,81722,81723,81725,81726,81729,81730,81736,81739,81740,81744,81746,81747,81753,81756,81760,81761,81768,81770,81773,81775,81777,81781,81784,81788,81789,81793,81794,81796,81798,81801,81804,81805,81809,81810,81815,81816,81817,81819,81823,81826,81829,81831,81833,81834,81837,81839,81842,81845,81847,81848,81853,81854,81855,81860,81862,81864,81867,81868,81871,81874,81877,81881,81882,81886,81887,81888,81892,81894,81898,81900,81903,81906,81911,81912,81918,81919,81920,81922,81925,81927,81929,81931,81932,81934,81935,81937,81941,81943,81944,81945,81949,81952,81954,81956,81957,81960,81961,81965,81971,81972,81977,81978,81982,81983,81984,81985,81987,81991,81995,81997,81998,82000,82001,82006,82008,82011,82015,82016,82017,82021,82023,82024,82026,82033,82034,82035,82042,82044,82047,82052,82054,82056,82061,82067,82069,82071,82074,82077,82081,82086,82087, +82088,82090,82093,82096,82097,82099,82102,82106,82107,82109,82112,82113,82117,82118,82119,82123,82126,82127,82128,82129,82132,82135,82139,82140,82142,82144,82147,82148,82149,82152,82156,82160,82161,82163,82164,82168,82172,82174,82176,82178,82179,82183,82187,82188,82189,82192,82194,82195,82198,82204,82208,82209,82212,82215,82218,82221,82225,82226,82228,82232,82233,82234,82238,82239,82247,82249,82250,82252,82255,82257,82259,82260,82263,82268,82269,82272,82275,82281,82283,82285,82286,82289,82290,82294,82296,82301,82302,82305,82308,82313,82314,82318,82319,82322,82324,82326,82327,82330,82332,82334,82335,82338,82339,82341,82346,82347,82349,82352,82354,82355,82357,82358,82361,82363,82366,82370,82374,82376,82377,82379,82381,82383,82386,82388,82390,82393,82394,82396,82398,82400,82406,82407,82409,82412,82415,82416,82419,82421,82423,82426,82429,82430,82433,82437,82438,82440,82441,82444,82447,82450,82452,82454,82456,82457,82458,82463,82465,82467,82469,82470,82471,82473,82474,82477,82481,82483,82487,82488,82489,82492,82493,82494,82496,82497,82501,82503,82506,82510,82511,82513,82514,82515,82517,82518,82519,82521,82525,82529,82532,82534,82536,82538,82539,82541,82542,82544,82546,82548,82550,82553,82555,82556,82557,82561,82562,82565,82568,82571,82573,82576,82577,82579,82581,82582,82585,82586,82589,82590,82591,82594,82595,82596,82601,82604,82606,82607,82609,82612,82616,82617,82618,82620,82622,82623,82624,82627,82631,82632,82636,82638,82642,82643,82645,82647,82649,82650,82654,82655,82657,82661,82663,82665,82667,82670,82671,82673,82674,82675,82677,82682,82685,82687,82689,82690,82693,82696,82697,82698,82699,82701,82705,82707,82708,82710,82713,82715,82718,82719,82723,82724,82725,82727,82728,82732,82734,82736,82738,82739,82742,82744,82745,82747,82748,82749,82754,82757,82759,82761,82764,82765,82767,82769,82772,82773,82774,82777,82779,82781,82783,82784,82786,82789,82792,82794,82797,82801,82802,82804,82805,82807,82809,82811,82813,82816,82817,82819,82824,82827,82828,82832,82833,82835,82836,82839,82843,82846,82849,82850,82853,82855,82856,82859, +82861,82864,82867,82868,82869,82872,82873,82875,82879,82882,82883,82884,82885,82890,82894,82895,82899,82900,82904,82905,82909,82911,82912,82914,82917,82921,82923,82925,82926,82929,82933,82937,82940,82941,82945,82948,82949,82950,82954,82957,82958,82961,82962,82963,82966,82969,82971,82973,82979,82981,82983,82987,82990,82992,82997,83001,83002,83003,83005,83008,83009,83012,83014,83015,83016,83020,83021,83023,83024,83025,83027,83028,83029,83032,83033,83036,83037,83038,83040,83042,83045,83046,83047,83050,83052,83054,83056,83057,83058,83059,83063,83064,83068,83069,83070,83073,83075,83077,83079,83084,83086,83089,83090,83091,83092,83094,83096,83097,83099,83100,83102,83104,83105,83106,83107,83110,83111,83112,83113,83115,83116,83120,83123,83124,83127,83130,83132,83135,83138,83140,83150,83153,83155,83158,83159,83160,83161,83164,83166,83167,83171,83175,83178,83183,83184,83187,83188,83190,83194,83196,83199,83202,83203,83206,83208,83209,83211,83213,83219,83220,83222,83224,83228,83229,83232,83236,83238,83240,83241,83243,83244,83249,83252,83253,83254,83256,83257,83259,83260,83263,83267,83270,83272,83274,83275,83277,83279,83281,83282,83285,83287,83290,83292,83293,83295,83297,83298,83299,83301,83302,83305,83308,83311,83313,83317,83319,83321,83322,83324,83325,83327,83329,83331,83336,83337,83338,83340,83342,83343,83346,83350,83352,83353,83356,83358,83360,83363,83364,83366,83368,83370,83371,83373,83375,83378,83379,83382,83384,83386,83390,83391,83396,83397,83400,83402,83404,83405,83406,83407,83409,83411,83413,83416,83417,83418,83422,83424,83427,83430,83431,83433,83436,83438,83439,83440,83443,83445,83447,83448,83449,83452,83455,83456,83457,83461,83463,83468,83469,83471,83474,83475,83476,83479,83481,83482,83485,83486,83487,83488,83490,83492,83494,83498,83502,83503,83507,83508,83511,83512,83517,83519,83520,83522,83523,83525,83527,83530,83547,83548,83549,83550,83552,83553,83556,83557,83558,83559,83560,83562,83565,83567,83568,83571,83573,83574,83576,83577,83581,83582,83584,83586,83589,83591,83592,83593,83596,83597,83598,83600,83605,83607,83610, +83612,83614,83615,83617,83621,83622,83624,83625,83629,83630,83633,83634,83635,83639,83641,83642,83643,83647,83649,83651,83652,83654,83657,83659,83660,83662,83663,83664,83666,83667,83671,83673,83674,83677,83678,83680,83681,83684,83686,83687,83690,83693,83694,83695,83699,83700,83701,83703,83705,83706,83710,83711,83712,83714,83715,83717,83720,83722,83726,83727,83728,83730,83732,83734,83736,83737,83739,83742,83743,83745,83746,83750,83751,83755,83756,83757,83758,83760,83761,83765,83766,83768,83771,83772,83775,83776,83780,83781,83783,83786,83788,83790,83794,83796,83800,83803,83804,83805,83807,83808,83809,83812,83813,83816,83819,83821,83823,83825,83826,83829,83833,83834,83836,83838,83840,83843,83845,83846,83848,83855,83856,83857,83861,83862,83866,83867,83868,83869,83871,83875,83876,83878,83882,83884,83885,83886,83887,83889,83894,83895,83896,83905,83906,83909,83911,83913,83917,83921,83922,83924,83927,83928,83930,83933,83934,83936,83937,83940,83943,83947,83948,83949,83951,83952,83953,83955,83959,83962,83963,83965,83967,83969,83971,83973,83977,83979,83982,83983,83986,83987,83988,83990,83992,83994,83996,83997,84001,84003,84008,84010,84012,84013,84015,84016,84018,84022,84023,84025,84028,84031,84034,84036,84038,84039,84042,84043,84046,84049,84051,84052,84055,84058,84059,84061,84064,84066,84068,84070,84071,84073,84083,84084,84086,84088,84090,84094,84096,84102,84103,84104,84105,84109,84111,84112,84114,84116,84118,84120,84122,84123,84124,84126,84130,84131,84132,84134,84136,84137,84138,84142,84144,84145,84147,84151,84152,84153,84157,84158,84159,84160,84163,84164,84166,84169,84170,84173,84174,84175,84177,84181,84182,84183,84185,84186,84189,84190,84192,84196,84197,84198,84199,84202,84204,84205,84207,84211,84212,84213,84216,84217,84220,84223,84224,84225,84229,84230,84232,84235,84238,84239,84240,84241,84245,84246,84248,84249,84251,84253,84254,84257,84258,84259,84262,84263,84264,84268,84271,84272,84274,84278,84279,84283,84284,84285,84288,84290,84292,84293,84296,84297,84298,84300,84301,84304,84305,84306,84308,84309,84313,84314,84315,84317, +84320,84322,84325,84326,84327,84328,84330,84331,84333,84337,84338,84341,84342,84345,84347,84352,84355,84358,84359,84363,84365,84368,84370,84373,84374,84376,84378,84380,84383,84384,84386,84387,84389,84391,84392,84393,84396,84397,84400,84402,84403,84406,84409,84410,84412,84413,84416,84419,84421,84424,84425,84427,84428,84433,84434,84437,84438,84439,84441,84442,84444,84447,84448,84450,84452,84455,84456,84457,84459,84461,84464,84465,84468,84470,84471,84474,84476,84479,84482,84485,84487,84489,84491,84493,84494,84499,84500,84501,84503,84506,84507,84508,84511,84513,84515,84518,84519,84520,84522,84523,84527,84528,84531,84533,84534,84538,84539,84541,84542,84545,84547,84548,84549,84551,84552,84555,84557,84559,84560,84561,84563,84564,84567,84571,84572,84573,84577,84578,84579,84580,84583,84584,84585,84588,84590,84593,84595,84596,84597,84599,84600,84601,84602,84603,84604,84606,84607,84611,84613,84617,84619,84622,84623,84624,84625,84626,84629,84631,84632,84633,84634,84636,84640,84641,84643,84645,84646,84648,84650,84653,84655,84656,84657,84658,84659,84660,84661,84664,84667,84670,84672,84674,84676,84677,84680,84681,84683,84686,84688,84689,84690,84692,84695,84696,84697,84699,84700,84702,84705,84707,84708,84709,84712,84716,84718,84719,84720,84722,84724,84725,84727,84728,84729,84733,84736,84737,84738,84740,84741,84743,84746,84747,84748,84751,84754,84755,84756,84758,84759,84761,84764,84767,84768,84769,84771,84772,84773,84775,84776,84781,84782,84783,84785,84788,84790,84791,84793,84796,84797,84798,84800,84803,84804,84805,84806,84809,84810,84814,84817,84818,84819,84821,84824,84825,84826,84828,84832,84833,84835,84836,84837,84840,84841,84843,84847,84848,84851,84853,84854,84855,84857,84859,84860,84862,84865,84867,84868,84871,84872,84873,84875,84877,84879,84882,84883,84884,84887,84889,84890,84891,84894,84895,84898,84900,84901,84903,84907,84908,84911,84913,84914,84917,84919,84920,84923,84927,84929,84930,84931,84932,84933,84934,84937,84942,84943,84950,84954,84955,84958,84961,84962,84963,84965,84966,84968,84970,84972,84974,84977,84978,84980,84983, +84984,84985,84988,84989,84992,84994,84996,84998,85001,85002,85004,85007,85008,85009,85012,85014,85015,85019,85020,85022,85023,85025,85028,85029,85031,85032,85034,85037,85038,85041,85043,85044,85045,85046,85047,85048,85050,85052,85053,85055,85056,85057,85059,85060,85062,85064,85066,85067,85069,85070,85072,85075,85078,85079,85080,85081,85085,85086,85089,85090,85092,85094,85097,85098,85099,85101,85102,85105,85108,85112,85115,85117,85119,85121,85122,85124,85126,85129,85131,85133,85135,85140,85143,85145,85148,85151,85154,85155,85157,85158,85161,85165,85166,85168,85171,85172,85174,85177,85179,85181,85182,85184,85186,85188,85189,85192,85196,85197,85200,85201,85204,85206,85210,85213,85215,85217,85218,85220,85227,85231,85232,85233,85237,85241,85243,85246,85247,85249,85250,85252,85255,85257,85259,85262,85264,85267,85269,85271,85274,85276,85279,85280,85282,85286,85287,85289,85291,85292,85294,85296,85298,85301,85304,85307,85308,85310,85313,85314,85317,85319,85320,85323,85326,85328,85330,85333,85335,85337,85340,85341,85343,85344,85347,85349,85350,85353,85356,85359,85360,85363,85365,85367,85368,85370,85372,85373,85376,85377,85382,85383,85385,85387,85388,85390,85394,85396,85398,85402,85403,85404,85406,85408,85409,85410,85412,85417,85418,85420,85422,85426,85428,85430,85432,85433,85436,85438,85439,85442,85445,85446,85448,85449,85453,85457,85458,85461,85462,85465,85466,85468,85469,85470,85474,85475,85476,85480,85481,85482,85486,85489,85492,85495,85496,85498,85499,85501,85502,85504,85506,85508,85510,85513,85517,85520,85522,85525,85526,85527,85529,85530,85531,85533,85536,85540,85541,85543,85545,85548,85552,85555,85556,85559,85561,85564,85565,85567,85570,85571,85572,85576,85577,85578,85580,85581,85584,85586,85587,85591,85592,85593,85598,85599,85602,85604,85605,85608,85611,85612,85614,85616,85617,85619,85624,85625,85626,85627,85629,85632,85635,85639,85641,85643,85646,85647,85649,85652,85655,85657,85658,85659,85661,85663,85665,85667,85668,85671,85673,85676,85677,85682,85683,85684,85688,85689,85691,85693,85694,85696,85697,85698,85701,85703, +85706,85708,85710,85712,85714,85718,85721,85722,85724,85725,85727,85728,85730,85731,85732,85734,85737,85740,85742,85744,85748,85751,85752,85755,85756,85760,85761,85762,85766,85769,85770,85771,85774,85777,85781,85782,85783,85785,85789,85791,85793,85795,85796,85798,85802,85803,85807,85810,85811,85812,85813,85816,85818,85822,85824,85826,85827,85829,85830,85835,85838,85840,85844,85845,85847,85850,85851,85855,85856,85857,85859,85860,85865,85868,85870,85871,85873,85875,85876,85878,85879,85882,85884,85886,85888,85890,85892,85895,85896,85899,85902,85904,85905,85908,85910,85911,85914,85915,85918,85922,85924,85927,85928,85929,85932,85935,85937,85939,85940,85941,85943,85944,85948,85952,85955,85956,85958,85960,85961,85962,85965,85969,85971,85974,85976,85978,85982,85984,85985,85988,85989,85993,85994,85995,85998,86002,86003,86004,86007,86008,86011,86012,86016,86023,86025,86028,86032,86034,86037,86040,86047,86048,86049,86052,86053,86056,86057,86058,86063,86066,86067,86069,86071,86073,86074,86078,86080,86081,86082,86083,86085,86087,86090,86092,86093,86096,86099,86100,86102,86103,86104,86108,86111,86114,86115,86116,86118,86122,86123,86124,86126,86127,86128,86132,86134,86137,86138,86140,86141,86142,86143,86146,86148,86149,86152,86156,86158,86159,86160,86162,86163,86164,86168,86169,86171,86172,86175,86178,86180,86181,86185,86186,86187,86191,86193,86195,86198,86199,86201,86206,86208,86209,86211,86212,86216,86218,86221,86222,86224,86226,86228,86229,86230,86234,86235,86236,86238,86240,86243,86244,86245,86247,86250,86251,86254,86257,86259,86260,86263,86264,86266,86267,86269,86270,86273,86275,86276,86277,86281,86284,86285,86287,86289,86293,86296,86297,86299,86300,86301,86303,86304,86307,86308,86310,86313,86314,86316,86321,86322,86323,86327,86328,86330,86331,86332,86334,86335,86337,86338,86341,86342,86343,86345,86347,86350,86351,86353,86357,86358,86360,86364,86365,86368,86369,86371,86373,86375,86377,86380,86381,86383,86387,86389,86391,86396,86397,86398,86402,86403,86404,86406,86409,86412,86413,86419,86422,86423,86424,86426,86427,86429,86430, +86431,86434,86435,86436,86441,86442,86443,86445,86449,86452,86453,86454,86455,86457,86461,86462,86463,86465,86467,86469,86473,86475,86477,86478,86483,86485,86487,86490,86492,86496,86497,86500,86501,86504,86506,86507,86509,86512,86513,86515,86516,86517,86518,86522,86524,86529,86530,86532,86533,86536,86537,86539,86540,86542,86545,86546,86547,86551,86553,86557,86561,86562,86563,86565,86567,86569,86570,86572,86573,86575,86579,86580,86581,86583,86584,86587,86588,86589,86590,86592,86594,86595,86598,86602,86603,86606,86611,86615,86616,86619,86621,86623,86625,86627,86628,86630,86632,86633,86635,86639,86640,86641,86644,86645,86646,86648,86650,86651,86653,86654,86657,86660,86663,86671,86675,86676,86677,86679,86681,86683,86684,86686,86689,86690,86692,86695,86696,86697,86698,86702,86704,86707,86709,86710,86713,86714,86715,86717,86719,86720,86723,86726,86728,86730,86732,86734,86737,86738,86741,86742,86745,86747,86750,86751,86752,86754,86755,86759,86762,86763,86765,86767,86770,86771,86772,86773,86778,86780,86782,86783,86784,86786,86788,86789,86792,86793,86797,86798,86799,86803,86806,86807,86809,86811,86813,86814,86815,86817,86819,86821,86823,86825,86826,86827,86830,86833,86836,86837,86840,86843,86844,86845,86848,86849,86850,86851,86853,86856,86858,86859,86860,86868,86872,86874,86875,86878,86881,86882,86884,86887,86888,86890,86891,86893,86895,86897,86899,86900,86901,86904,86905,86907,86909,86912,86913,86917,86919,86920,86921,86923,86925,86927,86928,86930,86932,86933,86935,86937,86940,86942,86945,86947,86950,86951,86953,86954,86955,86957,86959,86960,86961,86963,86964,86967,86970,86972,86973,86975,86978,86979,86980,86982,86985,86986,86989,86990,86991,86993,86996,86998,86999,87000,87001,87007,87009,87011,87014,87016,87017,87020,87023,87026,87027,87029,87030,87032,87034,87035,87036,87037,87041,87043,87044,87045,87046,87050,87051,87054,87057,87058,87063,87064,87067,87068,87070,87071,87072,87074,87075,87076,87080,87081,87082,87085,87092,87095,87098,87099,87100,87102,87103,87106,87108,87112,87115,87118,87120,87122,87124,87128,87131,87133, +87137,87141,87142,87143,87145,87148,87150,87151,87153,87156,87157,87158,87159,87163,87165,87166,87168,87172,87174,87175,87177,87179,87182,87184,87187,87188,87189,87191,87193,87195,87196,87197,87198,87200,87201,87206,87207,87209,87211,87212,87214,87216,87218,87221,87222,87223,87225,87227,87230,87232,87233,87237,87238,87240,87243,87245,87248,87249,87250,87252,87253,87257,87258,87259,87260,87261,87265,87267,87271,87272,87274,87278,87280,87281,87283,87285,87287,87290,87291,87294,87296,87297,87298,87304,87305,87306,87308,87311,87312,87314,87315,87316,87318,87320,87322,87323,87325,87326,87328,87330,87332,87333,87334,87336,87338,87342,87343,87346,87348,87349,87352,87355,87359,87361,87362,87364,87366,87369,87370,87374,87376,87377,87378,87382,87383,87384,87385,87389,87390,87391,87395,87397,87399,87401,87404,87405,87407,87408,87409,87411,87412,87415,87418,87419,87420,87424,87426,87428,87429,87430,87432,87435,87436,87438,87440,87441,87444,87447,87448,87450,87451,87455,87457,87460,87464,87466,87467,87472,87473,87475,87476,87477,87478,87480,87481,87483,87487,87489,87491,87493,87495,87497,87499,87501,87503,87504,87506,87507,87510,87512,87514,87515,87518,87520,87521,87522,87526,87529,87530,87532,87533,87536,87538,87539,87542,87544,87545,87546,87547,87551,87552,87555,87557,87558,87559,87561,87564,87565,87568,87572,87576,87578,87579,87580,87582,87583,87587,87589,87591,87592,87594,87596,87598,87601,87603,87606,87607,87610,87611,87614,87615,87616,87619,87621,87622,87624,87626,87627,87629,87631,87632,87635,87637,87638,87639,87640,87643,87646,87647,87648,87650,87653,87655,87657,87659,87660,87661,87665,87667,87668,87671,87673,87674,87676,87679,87680,87682,87683,87685,87689,87690,87692,87695,87696,87698,87701,87704,87706,87709,87710,87711,87713,87716,87718,87719,87720,87721,87725,87728,87729,87731,87732,87734,87735,87737,87740,87741,87745,87747,87749,87750,87752,87753,87754,87758,87759,87761,87763,87765,87767,87769,87771,87772,87776,87778,87779,87780,87781,87783,87786,87788,87791,87792,87794,87795,87797,87800,87801,87803,87804,87808,87809, +87810,87813,87814,87817,87820,87826,87827,87829,87830,87831,87834,87836,87837,87838,87840,87843,87844,87847,87850,87851,87852,87855,87856,87858,87860,87866,87867,87868,87870,87877,87878,87879,87880,87884,87887,87889,87890,87892,87894,87895,87899,87900,87902,87905,87908,87909,87910,87913,87916,87917,87919,87923,87926,87927,87928,87930,87933,87934,87937,87939,87941,87943,87944,87947,87948,87950,87953,87956,87958,87959,87961,87962,87964,87966,87968,87970,87972,87974,87975,87979,87981,87986,87987,87988,87991,87992,87993,87996,87997,87999,88000,88006,88007,88009,88010,88013,88015,88016,88017,88020,88022,88025,88026,88027,88029,88030,88033,88035,88036,88038,88040,88041,88044,88045,88048,88049,88050,88051,88053,88056,88057,88059,88062,88064,88066,88069,88071,88073,88074,88077,88078,88080,88082,88085,88086,88087,88089,88090,88093,88096,88097,88099,88100,88101,88104,88106,88108,88109,88111,88113,88115,88116,88119,88121,88122,88123,88125,88129,88132,88134,88137,88139,88140,88143,88144,88146,88150,88151,88154,88155,88156,88158,88159,88162,88163,88165,88169,88170,88172,88173,88174,88177,88179,88181,88182,88184,88185,88188,88189,88192,88196,88197,88198,88200,88203,88204,88208,88210,88212,88213,88215,88217,88219,88222,88223,88225,88227,88230,88231,88233,88234,88238,88240,88241,88242,88244,88245,88249,88251,88253,88255,88256,88258,88260,88264,88265,88267,88268,88269,88274,88277,88278,88286,88287,88288,88290,88291,88293,88296,88297,88299,88302,88304,88305,88306,88308,88309,88312,88314,88315,88319,88321,88322,88325,88326,88329,88330,88334,88336,88338,88340,88341,88342,88345,88349,88353,88356,88358,88363,88364,88365,88369,88372,88373,88374,88377,88378,88387,88388,88390,88394,88396,88397,88399,88400,88402,88406,88407,88408,88410,88412,88413,88415,88417,88418,88419,88421,88424,88427,88428,88429,88431,88433,88436,88438,88442,88445,88453,88454,88455,88457,88459,88461,88462,88463,88465,88466,88467,88469,88470,88472,88474,88475,88477,88478,88481,88482,88484,88486,88487,88489,88490,88491,88493,88494,88497,88499,88501,88502,88503,88504,88507, +88509,88511,88513,88514,88515,88517,88519,88523,88524,88525,88527,88529,88530,88532,88533,88536,88538,88539,88541,88543,88544,88545,88546,88549,88553,88555,88556,88557,88559,88560,88561,88563,88564,88566,88568,88571,88573,88574,88575,88576,88578,88580,88581,88582,88585,88588,88589,88592,88595,88596,88597,88599,88601,88602,88604,88605,88608,88609,88611,88612,88615,88616,88618,88622,88623,88626,88628,88629,88631,88632,88634,88635,88637,88640,88643,88644,88645,88647,88648,88651,88652,88654,88656,88658,88659,88662,88663,88665,88666,88668,88669,88671,88672,88674,88675,88679,88680,88685,88686,88688,88689,88691,88693,88694,88695,88696,88698,88702,88703,88704,88707,88711,88712,88713,88714,88716,88719,88720,88723,88724,88726,88727,88728,88732,88733,88734,88736,88737,88739,88740,88743,88745,88746,88750,88751,88752,88753,88756,88760,88761,88763,88766,88767,88768,88771,88772,88778,88779,88780,88782,88783,88786,88788,88790,88792,88796,88798,88799,88800,88803,88806,88808,88810,88812,88814,88815,88817,88818,88819,88821,88822,88824,88827,88829,88830,88834,88835,88838,88839,88842,88845,88852,88853,88854,88858,88860,88863,88864,88871,88872,88874,88876,88878,88880,88883,88884,88886,88887,88891,88893,88896,88897,88899,88900,88903,88904,88905,88908,88909,88911,88912,88918,88921,88922,88924,88925,88926,88931,88936,88937,88940,88943,88944,88946,88947,88948,88950,88952,88954,88955,88958,88959,88960,88963,88966,88968,88971,88976,88986,88988,88990,88993,88994,88996,88999,89003,89005,89006,89008,89009,89011,89012,89014,89017,89019,89020,89023,89025,89026,89028,89029,89032,89034,89036,89037,89039,89040,89041,89044,89047,89048,89049,89050,89053,89055,89057,89058,89060,89062,89065,89067,89068,89070,89072,89073,89076,89078,89079,89084,89085,89089,89092,89093,89095,89096,89097,89099,89100,89104,89108,89109,89110,89114,89115,89117,89118,89119,89123,89125,89126,89127,89129,89130,89132,89135,89136,89137,89139,89143,89144,89146,89149,89150,89152,89153,89154,89155,89157,89161,89163,89164,89166,89168,89170,89173,89174,89176,89180,89184,89185,89188,89189, +89190,89191,89193,89194,89197,89199,89201,89202,89203,89207,89210,89212,89213,89214,89217,89218,89220,89221,89223,89224,89226,89227,89229,89231,89232,89233,89235,89237,89240,89243,89245,89247,89248,89250,89254,89256,89258,89260,89261,89262,89266,89267,89268,89273,89278,89279,89282,89283,89287,89288,89289,89292,89296,89297,89298,89299,89301,89303,89305,89306,89307,89308,89312,89313,89318,89319,89320,89324,89327,89328,89331,89332,89336,89337,89339,89340,89342,89343,89344,89346,89347,89353,89355,89358,89362,89363,89364,89368,89372,89374,89375,89379,89380,89383,89386,89388,89389,89393,89394,89395,89397,89402,89404,89405,89406,89407,89409,89410,89413,89414,89415,89416,89418,89419,89422,89426,89428,89429,89432,89435,89436,89438,89439,89440,89444,89450,89451,89456,89457,89458,89462,89463,89466,89468,89473,89474,89476,89481,89485,89489,89490,89491,89493,89495,89496,89497,89499,89501,89503,89509,89512,89513,89514,89515,89518,89522,89523,89526,89527,89530,89537,89538,89543,89546,89548,89554,89555,89558,89560,89565,89570,89574,89578,89582,89584,89585,89587,89588,89591,89592,89596,89597,89598,89602,89605,89606,89607,89608,89613,89616,89618,89621,89623,89624,89626,89629,89632,89634,89635,89637,89640,89641,89643,89644,89646,89649,89650,89654,89655,89656,89658,89659,89663,89664,89667,89668,89671,89672,89673,89674,89676,89678,89679,89682,89683,89687,89688,89690,89692,89693,89695,89699,89701,89703,89704,89706,89708,89709,89711,89713,89717,89718,89720,89721,89722,89725,89726,89728,89731,89733,89735,89738,89739,89741,89742,89743,89745,89746,89748,89753,89754,89755,89759,89760,89761,89765,89766,89767,89771,89772,89775,89776,89779,89780,89783,89785,89786,89787,89789,89790,89793,89795,89797,89798,89800,89802,89805,89809,89810,89811,89814,89817,89818,89820,89822,89825,89826,89827,89829,89830,89832,89833,89835,89837,89840,89841,89844,89847,89849,89851,89852,89853,89855,89858,89859,89860,89863,89864,89865,89866,89868,89871,89872,89876,89877,89879,89880,89883,89885,89887,89889,89893,89896,89897,89898,89900,89901,89902,89904,89907,89908,89912, +89913,89914,89920,89921,89923,89924,89925,89927,89928,89930,89933,89934,89936,89937,89940,89942,89944,89947,89948,89949,89951,89952,89953,89957,89959,89961,89962,89964,89965,89967,89968,89970,89974,89975,89977,89978,89980,89981,89982,89984,89986,89987,89988,89989,89991,89992,89994,89995,89999,90001,90002,90003,90005,90006,90009,90012,90014,90015,90017,90018,90023,90024,90026,90028,90032,90033,90034,90036,90037,90040,90041,90043,90044,90047,90049,90050,90051,90052,90059,90060,90062,90064,90065,90066,90068,90069,90071,90072,90073,90075,90076,90078,90081,90085,90088,90089,90090,90092,90094,90095,90098,90101,90103,90104,90105,90110,90112,90113,90114,90115,90118,90119,90121,90123,90124,90128,90131,90132,90133,90136,90137,90140,90142,90143,90145,90146,90149,90151,90152,90154,90156,90157,90159,90160,90162,90164,90166,90167,90169,90170,90171,90175,90178,90179,90180,90181,90184,90185,90187,90189,90194,90197,90200,90201,90204,90209,90210,90211,90215,90216,90217,90220,90221,90223,90224,90226,90227,90228,90230,90231,90232,90234,90239,90242,90245,90246,90250,90255,90257,90259,90260,90265,90266,90269,90270,90271,90275,90278,90281,90283,90284,90285,90287,90290,90291,90292,90298,90301,90302,90303,90304,90306,90307,90310,90311,90313,90314,90315,90316,90320,90323,90324,90326,90329,90331,90335,90336,90338,90341,90343,90346,90347,90348,90352,90354,90355,90359,90362,90363,90365,90367,90371,90373,90374,90376,90377,90379,90380,90381,90383,90384,90385,90387,90389,90391,90392,90397,90399,90402,90404,90405,90407,90410,90412,90413,90415,90417,90418,90422,90425,90427,90428,90431,90433,90435,90440,90442,90445,90446,90447,90449,90450,90451,90454,90455,90456,90458,90460,90461,90466,90467,90468,90469,90471,90472,90474,90475,90477,90481,90482,90484,90487,90489,90494,90496,90497,90499,90500,90502,90504,90505,90507,90509,90510,90513,90515,90516,90518,90520,90522,90526,90529,90531,90533,90535,90538,90539,90540,90543,90545,90547,90548,90550,90551,90552,90554,90556,90557,90559,90561,90563,90565,90568,90569,90570,90571,90574,90575,90577,90580,90584,90587, +90589,90592,90593,90596,90597,90599,90600,90602,90604,90605,90607,90608,90609,90611,90613,90615,90616,90618,90620,90622,90624,90625,90630,90632,90633,90635,90637,90638,90639,90642,90644,90646,90648,90649,90651,90655,90656,90659,90660,90663,90665,90667,90668,90673,90677,90680,90681,90683,90684,90686,90688,90689,90691,90692,90694,90696,90700,90701,90702,90704,90706,90709,90711,90712,90716,90717,90722,90725,90728,90734,90736,90737,90740,90741,90742,90745,90747,90749,90750,90752,90753,90755,90757,90758,90760,90761,90766,90769,90770,90773,90776,90777,90779,90782,90783,90785,90786,90790,90792,90795,90800,90802,90803,90806,90807,90808,90811,90812,90814,90815,90817,90818,90822,90823,90825,90827,90828,90832,90833,90834,90835,90838,90839,90841,90842,90843,90847,90848,90850,90853,90857,90858,90859,90861,90863,90865,90868,90869,90872,90873,90874,90876,90879,90881,90882,90883,90887,90889,90891,90896,90897,90898,90900,90905,90907,90908,90911,90914,90915,90916,90918,90919,90921,90922,90926,90930,90933,90934,90937,90938,90941,90943,90944,90945,90946,90949,90952,90954,90956,90960,90961,90965,90966,90971,90972,90975,90976,90978,90980,90981,90982,90992,90995,90998,91006,91007 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 102 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *273042 { + a: -0.615803182125092,-0.769678115844727,0.168469190597534,-0.751060783863068,-0.653262317180634,0.0956870019435883,-0.746909618377686,-0.638622760772705,0.185167282819748,-0.908264517784119,-0.402994424104691,0.112476132810116,-0.746909618377686,-0.638622760772705,0.185167282819748,-0.751060783863068,-0.653262317180634,0.0956870019435883,-0.615803182125092,-0.769678115844727,0.168469190597534,-0.746909618377686,-0.638622760772705,0.185167282819748,-0.588932693004608,-0.763725101947784,0.264352411031723,-0.910558879375458,-0.337222635746002,0.239088535308838,-0.746909618377686,-0.638622760772705,0.185167282819748,-0.908264517784119,-0.402994424104691,0.112476132810116,-0.908264517784119,-0.402994424104691,0.112476132810116,-0.751060783863068,-0.653262317180634,0.0956870019435883,-0.957254707813263,-0.286717057228088,0.0381655804812908,-0.588932693004608,-0.763725101947784,0.264352411031723,-0.746909618377686,-0.638622760772705,0.185167282819748,-0.720512449741364,-0.609711468219757,0.330323368310928,-0.588932693004608,-0.763725101947784,0.264352411031723,-0.608868300914764,-0.755570590496063,0.241645351052284,-0.615803182125092,-0.769678115844727,0.168469190597534,-0.720512449741364,-0.609711468219757,0.330323368310928,-0.746909618377686,-0.638622760772705,0.185167282819748,-0.910558879375458,-0.337222635746002,0.239088535308838,-0.910558879375458,-0.337222635746002,0.239088535308838,-0.908264517784119,-0.402994424104691,0.112476132810116,-0.990371406078339,0.0319164656102657,0.134706124663353,-0.957254707813263,-0.286717057228088,0.0381655804812908,-0.751060783863068,-0.653262317180634,0.0956870019435883,-0.913361012935638,-0.406753957271576,0.0179593674838543,-0.990371406078339,0.0319164656102657,0.134706124663353,-0.908264517784119,-0.402994424104691,0.112476132810116,-0.957254707813263,-0.286717057228088,0.0381655804812908,-0.637302100658417,-0.712090075016022,0.294573605060577,-0.588932693004608,-0.763725101947784,0.264352411031723,-0.720512449741364,-0.609711468219757,0.330323368310928, +-0.608868300914764,-0.755570590496063,0.241645351052284,-0.588932693004608,-0.763725101947784,0.264352411031723,-0.570636391639709,-0.774850487709045,0.271993905305862,-0.910558879375458,-0.337222635746002,0.239088535308838,-0.882527351379395,-0.313222646713257,0.350766241550446,-0.720512449741364,-0.609711468219757,0.330323368310928,-0.956584274768829,0.0246339440345764,0.290412724018097,-0.910558879375458,-0.337222635746002,0.239088535308838,-0.990371406078339,0.0319164656102657,0.134706124663353,-0.995173454284668,0.0915359258651733,0.0353678464889526,-0.957254707813263,-0.286717057228088,0.0381655804812908,-0.913361012935638,-0.406753957271576,0.0179593674838543,-0.990371406078339,0.0319164656102657,0.134706124663353,-0.957254707813263,-0.286717057228088,0.0381655804812908,-0.995173454284668,0.0915359258651733,0.0353678464889526,-0.637302100658417,-0.712090075016022,0.294573605060577,-0.578005850315094,-0.775402009487152,0.254284769296646,-0.588932693004608,-0.763725101947784,0.264352411031723,-0.790795743465424,-0.522526502609253,0.318760246038437,-0.637302100658417,-0.712090075016022,0.294573605060577,-0.720512449741364,-0.609711468219757,0.330323368310928,-0.588932693004608,-0.763725101947784,0.264352411031723,-0.578005850315094,-0.775402009487152,0.254284769296646,-0.570636391639709,-0.774850487709045,0.271993905305862,-0.608868300914764,-0.755570590496063,0.241645351052284,-0.570636391639709,-0.774850487709045,0.271993905305862,-0.633143723011017,-0.720825433731079,0.282027572393417,-0.910558879375458,-0.337222635746002,0.239088535308838,-0.956584274768829,0.0246339440345764,0.290412724018097,-0.882527351379395,-0.313222646713257,0.350766241550446,-0.790795743465424,-0.522526502609253,0.318760246038437,-0.720512449741364,-0.609711468219757,0.330323368310928,-0.882527351379395,-0.313222646713257,0.350766241550446,-0.956584274768829,0.0246339440345764,0.290412724018097,-0.990371406078339,0.0319164656102657,0.134706124663353,-0.921541094779968,0.299404978752136,0.247221648693085,-0.917774856090546,0.367717653512955,0.149909824132919, +-0.990371406078339,0.0319164656102657,0.134706124663353,-0.995173454284668,0.0915359258651733,0.0353678464889526,-0.578005850315094,-0.775402009487152,0.254284769296646,-0.637302100658417,-0.712090075016022,0.294573605060577,-0.684927582740784,-0.68296867609024,0.253826469182968,-0.779449880123138,-0.56513386964798,0.27033594250679,-0.637302100658417,-0.712090075016022,0.294573605060577,-0.790795743465424,-0.522526502609253,0.318760246038437,-0.625824689865112,-0.757623851299286,0.185335516929626,-0.570636391639709,-0.774850487709045,0.271993905305862,-0.578005850315094,-0.775402009487152,0.254284769296646,-0.570636391639709,-0.774850487709045,0.271993905305862,-0.634203672409058,-0.72170627117157,0.277354627847672,-0.633143723011017,-0.720825433731079,0.282027572393417,-0.914715647697449,-0.269655495882034,0.300966918468475,-0.882527351379395,-0.313222646713257,0.350766241550446,-0.956584274768829,0.0246339440345764,0.290412724018097,-0.914715647697449,-0.269655495882034,0.300966918468475,-0.790795743465424,-0.522526502609253,0.318760246038437,-0.882527351379395,-0.313222646713257,0.350766241550446,-0.921541094779968,0.299404978752136,0.247221648693085,-0.990371406078339,0.0319164656102657,0.134706124663353,-0.917774856090546,0.367717653512955,0.149909824132919,-0.904452562332153,0.292012631893158,0.310956597328186,-0.956584274768829,0.0246339440345764,0.290412724018097,-0.921541094779968,0.299404978752136,0.247221648693085,-0.917774856090546,0.367717653512955,0.149909824132919,-0.995173454284668,0.0915359258651733,0.0353678464889526,-0.910906970500946,0.410561859607697,0.0410783030092716,-0.637302100658417,-0.712090075016022,0.294573605060577,-0.779449880123138,-0.56513386964798,0.27033594250679,-0.684927582740784,-0.68296867609024,0.253826469182968,-0.578005850315094,-0.775402009487152,0.254284769296646,-0.684927582740784,-0.68296867609024,0.253826469182968,-0.613195896148682,-0.769968032836914,0.176464825868607,-0.779449880123138,-0.56513386964798,0.27033594250679,-0.790795743465424,-0.522526502609253,0.318760246038437, +-0.914715647697449,-0.269655495882034,0.300966918468475,-0.625824689865112,-0.757623851299286,0.185335516929626,-0.634203672409058,-0.72170627117157,0.277354627847672,-0.570636391639709,-0.774850487709045,0.271993905305862,-0.578005850315094,-0.775402009487152,0.254284769296646,-0.613195896148682,-0.769968032836914,0.176464825868607,-0.625824689865112,-0.757623851299286,0.185335516929626,-0.633143723011017,-0.720825433731079,0.282027572393417,-0.634203672409058,-0.72170627117157,0.277354627847672,-0.718601405620575,-0.635046601295471,0.283421337604523,-0.956584274768829,0.0246339440345764,0.290412724018097,-0.932053744792938,0.0394968278706074,0.360160678625107,-0.914715647697449,-0.269655495882034,0.300966918468475,-0.921541094779968,0.299404978752136,0.247221648693085,-0.917774856090546,0.367717653512955,0.149909824132919,-0.869410872459412,0.425109535455704,0.251806437969208,-0.956584274768829,0.0246339440345764,0.290412724018097,-0.904452562332153,0.292012631893158,0.310956597328186,-0.932053744792938,0.0394968278706074,0.360160678625107,-0.904452562332153,0.292012631893158,0.310956597328186,-0.921541094779968,0.299404978752136,0.247221648693085,-0.869410872459412,0.425109535455704,0.251806437969208,-0.917774856090546,0.367717653512955,0.149909824132919,-0.910906970500946,0.410561859607697,0.0410783030092716,-0.90642511844635,0.400000125169754,0.135621771216393,-0.779449880123138,-0.56513386964798,0.27033594250679,-0.820072710514069,-0.497058212757111,0.283573120832443,-0.684927582740784,-0.68296867609024,0.253826469182968,-0.613195896148682,-0.769968032836914,0.176464825868607,-0.684927582740784,-0.68296867609024,0.253826469182968,-0.687779605388641,-0.685572624206543,0.238640457391739,-0.779449880123138,-0.56513386964798,0.27033594250679,-0.914715647697449,-0.269655495882034,0.300966918468475,-0.820072710514069,-0.497058212757111,0.283573120832443,-0.625824689865112,-0.757623851299286,0.185335516929626,-0.723955988883972,-0.639540493488312,0.258602738380432,-0.634203672409058,-0.72170627117157,0.277354627847672, +-0.600943863391876,-0.798098385334015,0.0436496920883656,-0.625824689865112,-0.757623851299286,0.185335516929626,-0.613195896148682,-0.769968032836914,0.176464825868607,-0.723955988883972,-0.639540493488312,0.258602738380432,-0.718601405620575,-0.635046601295471,0.283421337604523,-0.634203672409058,-0.72170627117157,0.277354627847672,-0.907230734825134,-0.276688277721405,0.316821396350861,-0.914715647697449,-0.269655495882034,0.300966918468475,-0.932053744792938,0.0394968278706074,0.360160678625107,-0.917774856090546,0.367717653512955,0.149909824132919,-0.90642511844635,0.400000125169754,0.135621771216393,-0.869410872459412,0.425109535455704,0.251806437969208,-0.904452562332153,0.292012631893158,0.310956597328186,-0.886648952960968,0.273373007774353,0.372988879680634,-0.932053744792938,0.0394968278706074,0.360160678625107,-0.855134606361389,0.403474271297455,0.325504511594772,-0.904452562332153,0.292012631893158,0.310956597328186,-0.869410872459412,0.425109535455704,0.251806437969208,-0.910906970500946,0.410561859607697,0.0410783030092716,-0.940997183322906,0.338384091854095,-0.00451730145141482,-0.90642511844635,0.400000125169754,0.135621771216393,-0.820072710514069,-0.497058212757111,0.283573120832443,-0.796992063522339,-0.526758313179016,0.295515090227127,-0.684927582740784,-0.68296867609024,0.253826469182968,-0.687779605388641,-0.685572624206543,0.238640457391739,-0.684927582740784,-0.68296867609024,0.253826469182968,-0.796992063522339,-0.526758313179016,0.295515090227127,-0.613195896148682,-0.769968032836914,0.176464825868607,-0.687779605388641,-0.685572624206543,0.238640457391739,-0.62739360332489,-0.754909574985504,0.191019967198372,-0.907230734825134,-0.276688277721405,0.316821396350861,-0.820072710514069,-0.497058212757111,0.283573120832443,-0.914715647697449,-0.269655495882034,0.300966918468475,-0.723955988883972,-0.639540493488312,0.258602738380432,-0.625824689865112,-0.757623851299286,0.185335516929626,-0.757185697555542,-0.643689274787903,0.111057490110397,-0.600943863391876,-0.798098385334015,0.0436496920883656, +-0.666441023349762,-0.745517194271088,0.0077572432346642,-0.625824689865112,-0.757623851299286,0.185335516929626,-0.613195896148682,-0.769968032836914,0.176464825868607,-0.540468513965607,-0.841207683086395,0.016225840896368,-0.600943863391876,-0.798098385334015,0.0436496920883656,-0.723955988883972,-0.639540493488312,0.258602738380432,-0.798175275325775,-0.509768307209015,0.32101759314537,-0.718601405620575,-0.635046601295471,0.283421337604523,-0.874836683273315,-0.269082009792328,0.402809500694275,-0.907230734825134,-0.276688277721405,0.316821396350861,-0.932053744792938,0.0394968278706074,0.360160678625107,-0.90642511844635,0.400000125169754,0.135621771216393,-0.875261545181274,0.423102617263794,0.234310135245323,-0.869410872459412,0.425109535455704,0.251806437969208,-0.904452562332153,0.292012631893158,0.310956597328186,-0.855134606361389,0.403474271297455,0.325504511594772,-0.886648952960968,0.273373007774353,0.372988879680634,-0.932053744792938,0.0394968278706074,0.360160678625107,-0.886648952960968,0.273373007774353,0.372988879680634,-0.88322639465332,0.0795839130878448,0.462144374847412,-0.855134606361389,0.403474271297455,0.325504511594772,-0.869410872459412,0.425109535455704,0.251806437969208,-0.852789342403412,0.418839335441589,0.311967700719833,-0.912759602069855,0.390766352415085,-0.119044318795204,-0.940997183322906,0.338384091854095,-0.00451730145141482,-0.910906970500946,0.410561859607697,0.0410783030092716,-0.940997183322906,0.338384091854095,-0.00451730145141482,-0.959052085876465,0.275978326797485,0.0636781305074692,-0.90642511844635,0.400000125169754,0.135621771216393,-0.820072710514069,-0.497058212757111,0.283573120832443,-0.907230734825134,-0.276688277721405,0.316821396350861,-0.796992063522339,-0.526758313179016,0.295515090227127,-0.687779605388641,-0.685572624206543,0.238640457391739,-0.796992063522339,-0.526758313179016,0.295515090227127,-0.709794163703918,-0.60507208108902,0.360665887594223,-0.687779605388641,-0.685572624206543,0.238640457391739,-0.709794163703918,-0.60507208108902,0.360665887594223, +-0.62739360332489,-0.754909574985504,0.191019967198372,-0.613195896148682,-0.769968032836914,0.176464825868607,-0.62739360332489,-0.754909574985504,0.191019967198372,-0.540468513965607,-0.841207683086395,0.016225840896368,-0.757185697555542,-0.643689274787903,0.111057490110397,-0.625824689865112,-0.757623851299286,0.185335516929626,-0.666441023349762,-0.745517194271088,0.0077572432346642,-0.844338834285736,-0.49977120757103,0.193185269832611,-0.723955988883972,-0.639540493488312,0.258602738380432,-0.757185697555542,-0.643689274787903,0.111057490110397,-0.666441023349762,-0.745517194271088,0.0077572432346642,-0.600943863391876,-0.798098385334015,0.0436496920883656,-0.617546558380127,-0.778938412666321,-0.109045796096325,-0.540468513965607,-0.841207683086395,0.016225840896368,-0.547231316566467,-0.822490394115448,-0.155072331428528,-0.600943863391876,-0.798098385334015,0.0436496920883656,-0.844338834285736,-0.49977120757103,0.193185269832611,-0.798175275325775,-0.509768307209015,0.32101759314537,-0.723955988883972,-0.639540493488312,0.258602738380432,-0.874836683273315,-0.269082009792328,0.402809500694275,-0.796992063522339,-0.526758313179016,0.295515090227127,-0.907230734825134,-0.276688277721405,0.316821396350861,-0.932053744792938,0.0394968278706074,0.360160678625107,-0.88322639465332,0.0795839130878448,0.462144374847412,-0.874836683273315,-0.269082009792328,0.402809500694275,-0.90642511844635,0.400000125169754,0.135621771216393,-0.922751426696777,0.347352683544159,0.166960775852203,-0.875261545181274,0.423102617263794,0.234310135245323,-0.852789342403412,0.418839335441589,0.311967700719833,-0.869410872459412,0.425109535455704,0.251806437969208,-0.875261545181274,0.423102617263794,0.234310135245323,-0.840224981307983,0.327272742986679,0.432336002588272,-0.886648952960968,0.273373007774353,0.372988879680634,-0.855134606361389,0.403474271297455,0.325504511594772,-0.840224981307983,0.327272742986679,0.432336002588272,-0.88322639465332,0.0795839130878448,0.462144374847412,-0.886648952960968,0.273373007774353,0.372988879680634, +-0.841464996337891,0.377782493829727,0.386285752058029,-0.855134606361389,0.403474271297455,0.325504511594772,-0.852789342403412,0.418839335441589,0.311967700719833,-0.940997183322906,0.338384091854095,-0.00451730145141482,-0.912759602069855,0.390766352415085,-0.119044318795204,-0.943793594837189,0.308408051729202,-0.118903286755085,-0.940997183322906,0.338384091854095,-0.00451730145141482,-0.969552755355835,0.23749415576458,-0.0596988946199417,-0.959052085876465,0.275978326797485,0.0636781305074692,-0.959052085876465,0.275978326797485,0.0636781305074692,-0.922751426696777,0.347352683544159,0.166960775852203,-0.90642511844635,0.400000125169754,0.135621771216393,-0.709794163703918,-0.60507208108902,0.360665887594223,-0.796992063522339,-0.526758313179016,0.295515090227127,-0.874836683273315,-0.269082009792328,0.402809500694275,-0.62739360332489,-0.754909574985504,0.191019967198372,-0.709794163703918,-0.60507208108902,0.360665887594223,-0.545961499214172,-0.801949083805084,0.242494434118271,-0.540468513965607,-0.841207683086395,0.016225840896368,-0.62739360332489,-0.754909574985504,0.191019967198372,-0.545961499214172,-0.801949083805084,0.242494434118271,-0.757185697555542,-0.643689274787903,0.111057490110397,-0.666441023349762,-0.745517194271088,0.0077572432346642,-0.770847201347351,-0.632754147052765,-0.0735977366566658,-0.862349629402161,-0.504867851734161,-0.0382305383682251,-0.844338834285736,-0.49977120757103,0.193185269832611,-0.757185697555542,-0.643689274787903,0.111057490110397,-0.617546558380127,-0.778938412666321,-0.109045796096325,-0.600943863391876,-0.798098385334015,0.0436496920883656,-0.547231316566467,-0.822490394115448,-0.155072331428528,-0.666441023349762,-0.745517194271088,0.0077572432346642,-0.617546558380127,-0.778938412666321,-0.109045796096325,-0.70594722032547,-0.681429266929626,-0.193113103508949,-0.547231316566467,-0.822490394115448,-0.155072331428528,-0.540468513965607,-0.841207683086395,0.016225840896368,-0.499478697776794,-0.843991279602051,-0.195447281002998,-0.844338834285736,-0.49977120757103,0.193185269832611, +-0.882231712341309,-0.384362518787384,0.271905452013016,-0.798175275325775,-0.509768307209015,0.32101759314537,-0.874836683273315,-0.269082009792328,0.402809500694275,-0.88322639465332,0.0795839130878448,0.462144374847412,-0.811360120773315,-0.266502887010574,0.520260334014893,-0.922751426696777,0.347352683544159,0.166960775852203,-0.896605789661407,0.355314016342163,0.26429083943367,-0.875261545181274,0.423102617263794,0.234310135245323,-0.852789342403412,0.418839335441589,0.311967700719833,-0.875261545181274,0.423102617263794,0.234310135245323,-0.896605789661407,0.355314016342163,0.26429083943367,-0.840224981307983,0.327272742986679,0.432336002588272,-0.855134606361389,0.403474271297455,0.325504511594772,-0.841464996337891,0.377782493829727,0.386285752058029,-0.833818197250366,0.115977317094803,0.539718747138977,-0.88322639465332,0.0795839130878448,0.462144374847412,-0.840224981307983,0.327272742986679,0.432336002588272,-0.881759107112885,0.293494254350662,0.369272112846375,-0.841464996337891,0.377782493829727,0.386285752058029,-0.852789342403412,0.418839335441589,0.311967700719833,-0.943793594837189,0.308408051729202,-0.118903286755085,-0.962894380092621,0.262982875108719,-0.0606162026524544,-0.940997183322906,0.338384091854095,-0.00451730145141482,-0.962894380092621,0.262982875108719,-0.0606162026524544,-0.969552755355835,0.23749415576458,-0.0596988946199417,-0.940997183322906,0.338384091854095,-0.00451730145141482,-0.98507559299469,0.17055906355381,0.0231380853801966,-0.959052085876465,0.275978326797485,0.0636781305074692,-0.969552755355835,0.23749415576458,-0.0596988946199417,-0.959052085876465,0.275978326797485,0.0636781305074692,-0.948133766651154,0.258678287267685,0.184737265110016,-0.922751426696777,0.347352683544159,0.166960775852203,-0.874836683273315,-0.269082009792328,0.402809500694275,-0.811360120773315,-0.266502887010574,0.520260334014893,-0.709794163703918,-0.60507208108902,0.360665887594223,-0.709794163703918,-0.60507208108902,0.360665887594223,-0.685062766075134,-0.593301713466644,0.422707974910736, +-0.545961499214172,-0.801949083805084,0.242494434118271,-0.540468513965607,-0.841207683086395,0.016225840896368,-0.545961499214172,-0.801949083805084,0.242494434118271,-0.477749019861221,-0.878447413444519,0.00926608964800835,-0.770847201347351,-0.632754147052765,-0.0735977366566658,-0.666441023349762,-0.745517194271088,0.0077572432346642,-0.70594722032547,-0.681429266929626,-0.193113103508949,-0.862349629402161,-0.504867851734161,-0.0382305383682251,-0.757185697555542,-0.643689274787903,0.111057490110397,-0.770847201347351,-0.632754147052765,-0.0735977366566658,-0.926027774810791,-0.375538945198059,0.037987481802702,-0.844338834285736,-0.49977120757103,0.193185269832611,-0.862349629402161,-0.504867851734161,-0.0382305383682251,-0.617546558380127,-0.778938412666321,-0.109045796096325,-0.547231316566467,-0.822490394115448,-0.155072331428528,-0.622253596782684,-0.742165148258209,-0.248980402946472,-0.70594722032547,-0.681429266929626,-0.193113103508949,-0.617546558380127,-0.778938412666321,-0.109045796096325,-0.622253596782684,-0.742165148258209,-0.248980402946472,-0.499478697776794,-0.843991279602051,-0.195447281002998,-0.540468513965607,-0.841207683086395,0.016225840896368,-0.442557156085968,-0.879206001758575,-0.176465094089508,-0.522124707698822,-0.815898239612579,-0.248386114835739,-0.547231316566467,-0.822490394115448,-0.155072331428528,-0.499478697776794,-0.843991279602051,-0.195447281002998,-0.926027774810791,-0.375538945198059,0.037987481802702,-0.882231712341309,-0.384362518787384,0.271905452013016,-0.844338834285736,-0.49977120757103,0.193185269832611,-0.833818197250366,0.115977317094803,0.539718747138977,-0.811360120773315,-0.266502887010574,0.520260334014893,-0.88322639465332,0.0795839130878448,0.462144374847412,-0.922751426696777,0.347352683544159,0.166960775852203,-0.948133766651154,0.258678287267685,0.184737265110016,-0.896605789661407,0.355314016342163,0.26429083943367,-0.896605789661407,0.355314016342163,0.26429083943367,-0.881759107112885,0.293494254350662,0.369272112846375,-0.852789342403412,0.418839335441589,0.311967700719833, +-0.840224981307983,0.327272742986679,0.432336002588272,-0.841464996337891,0.377782493829727,0.386285752058029,-0.79726904630661,0.313998281955719,0.515525937080383,-0.833818197250366,0.115977317094803,0.539718747138977,-0.840224981307983,0.327272742986679,0.432336002588272,-0.777702629566193,0.307011604309082,0.548563838005066,-0.881759107112885,0.293494254350662,0.369272112846375,-0.834325850009918,0.277977496385574,0.476055443286896,-0.841464996337891,0.377782493829727,0.386285752058029,-0.968857109546661,0.224325031042099,-0.10485265403986,-0.962894380092621,0.262982875108719,-0.0606162026524544,-0.943793594837189,0.308408051729202,-0.118903286755085,-0.973857522010803,0.216808184981346,-0.0677893608808517,-0.969552755355835,0.23749415576458,-0.0596988946199417,-0.962894380092621,0.262982875108719,-0.0606162026524544,-0.975016593933105,0.159267649054527,0.154842913150787,-0.959052085876465,0.275978326797485,0.0636781305074692,-0.98507559299469,0.17055906355381,0.0231380853801966,-0.98507559299469,0.17055906355381,0.0231380853801966,-0.969552755355835,0.23749415576458,-0.0596988946199417,-0.990868985652924,0.112827844917774,-0.0738138630986214,-0.948133766651154,0.258678287267685,0.184737265110016,-0.959052085876465,0.275978326797485,0.0636781305074692,-0.975016593933105,0.159267649054527,0.154842913150787,-0.709794163703918,-0.60507208108902,0.360665887594223,-0.811360120773315,-0.266502887010574,0.520260334014893,-0.685062766075134,-0.593301713466644,0.422707974910736,-0.545961499214172,-0.801949083805084,0.242494434118271,-0.685062766075134,-0.593301713466644,0.422707974910736,-0.560498535633087,-0.804159879684448,0.197909355163574,-0.545961499214172,-0.801949083805084,0.242494434118271,-0.560498535633087,-0.804159879684448,0.197909355163574,-0.477749019861221,-0.878447413444519,0.00926608964800835,-0.540468513965607,-0.841207683086395,0.016225840896368,-0.477749019861221,-0.878447413444519,0.00926608964800835,-0.442557156085968,-0.879206001758575,-0.176465094089508,-0.770847201347351,-0.632754147052765,-0.0735977366566658, +-0.70594722032547,-0.681429266929626,-0.193113103508949,-0.823346138000488,-0.526907384395599,-0.210878357291222,-0.770847201347351,-0.632754147052765,-0.0735977366566658,-0.823346138000488,-0.526907384395599,-0.210878357291222,-0.862349629402161,-0.504867851734161,-0.0382305383682251,-0.862349629402161,-0.504867851734161,-0.0382305383682251,-0.909549593925476,-0.38334533572197,-0.160517290234566,-0.926027774810791,-0.375538945198059,0.037987481802702,-0.622253596782684,-0.742165148258209,-0.248980402946472,-0.547231316566467,-0.822490394115448,-0.155072331428528,-0.522124707698822,-0.815898239612579,-0.248386114835739,-0.754384100437164,-0.626113712787628,-0.197195425629616,-0.70594722032547,-0.681429266929626,-0.193113103508949,-0.622253596782684,-0.742165148258209,-0.248980402946472,-0.522124707698822,-0.815898239612579,-0.248386114835739,-0.499478697776794,-0.843991279602051,-0.195447281002998,-0.442557156085968,-0.879206001758575,-0.176465094089508,-0.954124748706818,-0.265357881784439,0.138676434755325,-0.882231712341309,-0.384362518787384,0.271905452013016,-0.926027774810791,-0.375538945198059,0.037987481802702,-0.833818197250366,0.115977317094803,0.539718747138977,-0.81481409072876,-0.244563221931458,0.5256108045578,-0.811360120773315,-0.266502887010574,0.520260334014893,-0.948133766651154,0.258678287267685,0.184737265110016,-0.923419177532196,0.267668962478638,0.275045812129974,-0.896605789661407,0.355314016342163,0.26429083943367,-0.881759107112885,0.293494254350662,0.369272112846375,-0.896605789661407,0.355314016342163,0.26429083943367,-0.923419177532196,0.267668962478638,0.275045812129974,-0.79726904630661,0.313998281955719,0.515525937080383,-0.841464996337891,0.377782493829727,0.386285752058029,-0.834325850009918,0.277977496385574,0.476055443286896,-0.79726904630661,0.313998281955719,0.515525937080383,-0.777702629566193,0.307011604309082,0.548563838005066,-0.840224981307983,0.327272742986679,0.432336002588272,-0.833818197250366,0.115977317094803,0.539718747138977,-0.777702629566193,0.307011604309082,0.548563838005066, +-0.789740383625031,0.105304673314095,0.604335069656372,-0.881759107112885,0.293494254350662,0.369272112846375,-0.853832304477692,0.211642503738403,0.475581437349319,-0.834325850009918,0.277977496385574,0.476055443286896,-0.968857109546661,0.224325031042099,-0.10485265403986,-0.973857522010803,0.216808184981346,-0.0677893608808517,-0.962894380092621,0.262982875108719,-0.0606162026524544,-0.973857522010803,0.216808184981346,-0.0677893608808517,-0.975951254367828,0.19923423230648,-0.0884575173258781,-0.969552755355835,0.23749415576458,-0.0596988946199417,-0.975016593933105,0.159267649054527,0.154842913150787,-0.98507559299469,0.17055906355381,0.0231380853801966,-0.99040675163269,0.0439176075160503,0.131017699837685,-0.975951254367828,0.19923423230648,-0.0884575173258781,-0.990868985652924,0.112827844917774,-0.0738138630986214,-0.969552755355835,0.23749415576458,-0.0596988946199417,-0.98507559299469,0.17055906355381,0.0231380853801966,-0.990868985652924,0.112827844917774,-0.0738138630986214,-0.998535871505737,0.0393497087061405,0.0371158309280872,-0.975016593933105,0.159267649054527,0.154842913150787,-0.96047031879425,0.153700947761536,0.232104733586311,-0.948133766651154,0.258678287267685,0.184737265110016,-0.81481409072876,-0.244563221931458,0.5256108045578,-0.685062766075134,-0.593301713466644,0.422707974910736,-0.811360120773315,-0.266502887010574,0.520260334014893,-0.708381772041321,-0.658330261707306,0.254551142454147,-0.560498535633087,-0.804159879684448,0.197909355163574,-0.685062766075134,-0.593301713466644,0.422707974910736,-0.477749019861221,-0.878447413444519,0.00926608964800835,-0.560498535633087,-0.804159879684448,0.197909355163574,-0.708381772041321,-0.658330261707306,0.254551142454147,-0.382421642541885,-0.911413550376892,-0.15191775560379,-0.442557156085968,-0.879206001758575,-0.176465094089508,-0.477749019861221,-0.878447413444519,0.00926608964800835,-0.754384100437164,-0.626113712787628,-0.197195425629616,-0.823346138000488,-0.526907384395599,-0.210878357291222,-0.70594722032547,-0.681429266929626,-0.193113103508949, +-0.862349629402161,-0.504867851734161,-0.0382305383682251,-0.823346138000488,-0.526907384395599,-0.210878357291222,-0.909549593925476,-0.38334533572197,-0.160517290234566,-0.926027774810791,-0.375538945198059,0.037987481802702,-0.909549593925476,-0.38334533572197,-0.160517290234566,-0.964657366275787,-0.253858596086502,-0.0706533342599869,-0.622253596782684,-0.742165148258209,-0.248980402946472,-0.522124707698822,-0.815898239612579,-0.248386114835739,-0.653252065181732,-0.730915188789368,-0.197546049952507,-0.653252065181732,-0.730915188789368,-0.197546049952507,-0.754384100437164,-0.626113712787628,-0.197195425629616,-0.622253596782684,-0.742165148258209,-0.248980402946472,-0.522124707698822,-0.815898239612579,-0.248386114835739,-0.442557156085968,-0.879206001758575,-0.176465094089508,-0.428512156009674,-0.881238877773285,-0.199487686157227,-0.926027774810791,-0.375538945198059,0.037987481802702,-0.964657366275787,-0.253858596086502,-0.0706533342599869,-0.954124748706818,-0.265357881784439,0.138676434755325,-0.833818197250366,0.115977317094803,0.539718747138977,-0.789740383625031,0.105304673314095,0.604335069656372,-0.81481409072876,-0.244563221931458,0.5256108045578,-0.948133766651154,0.258678287267685,0.184737265110016,-0.96047031879425,0.153700947761536,0.232104733586311,-0.923419177532196,0.267668962478638,0.275045812129974,-0.881759107112885,0.293494254350662,0.369272112846375,-0.923419177532196,0.267668962478638,0.275045812129974,-0.927371561527252,0.196153610944748,0.318599551916122,-0.813236594200134,0.219590738415718,0.538911879062653,-0.79726904630661,0.313998281955719,0.515525937080383,-0.834325850009918,0.277977496385574,0.476055443286896,-0.79726904630661,0.313998281955719,0.515525937080383,-0.741351664066315,0.296001344919205,0.602312803268433,-0.777702629566193,0.307011604309082,0.548563838005066,-0.718769073486328,0.268358290195465,0.6413694024086,-0.789740383625031,0.105304673314095,0.604335069656372,-0.777702629566193,0.307011604309082,0.548563838005066,-0.881759107112885,0.293494254350662,0.369272112846375, +-0.895663797855377,0.169362112879753,0.411221086978912,-0.853832304477692,0.211642503738403,0.475581437349319,-0.853832304477692,0.211642503738403,0.475581437349319,-0.813236594200134,0.219590738415718,0.538911879062653,-0.834325850009918,0.277977496385574,0.476055443286896,-0.968857109546661,0.224325031042099,-0.10485265403986,-0.979184091091156,0.183780834078789,-0.0861566662788391,-0.973857522010803,0.216808184981346,-0.0677893608808517,-0.979184091091156,0.183780834078789,-0.0861566662788391,-0.975951254367828,0.19923423230648,-0.0884575173258781,-0.973857522010803,0.216808184981346,-0.0677893608808517,-0.99040675163269,0.0439176075160503,0.131017699837685,-0.98507559299469,0.17055906355381,0.0231380853801966,-0.998535871505737,0.0393497087061405,0.0371158309280872,-0.975016593933105,0.159267649054527,0.154842913150787,-0.99040675163269,0.0439176075160503,0.131017699837685,-0.984711945056915,0.0286628324538469,0.171816185116768,-0.990868985652924,0.112827844917774,-0.0738138630986214,-0.975951254367828,0.19923423230648,-0.0884575173258781,-0.980329811573029,0.144548386335373,-0.134384348988533,-0.990868985652924,0.112827844917774,-0.0738138630986214,-0.999344170093536,-0.0337034054100513,0.0132349347695708,-0.998535871505737,0.0393497087061405,0.0371158309280872,-0.975016593933105,0.159267649054527,0.154842913150787,-0.984711945056915,0.0286628324538469,0.171816185116768,-0.96047031879425,0.153700947761536,0.232104733586311,-0.708381772041321,-0.658330261707306,0.254551142454147,-0.685062766075134,-0.593301713466644,0.422707974910736,-0.81481409072876,-0.244563221931458,0.5256108045578,-0.477749019861221,-0.878447413444519,0.00926608964800835,-0.708381772041321,-0.658330261707306,0.254551142454147,-0.52852338552475,-0.848739206790924,0.0174528956413269,-0.382421642541885,-0.911413550376892,-0.15191775560379,-0.428512156009674,-0.881238877773285,-0.199487686157227,-0.442557156085968,-0.879206001758575,-0.176465094089508,-0.477749019861221,-0.878447413444519,0.00926608964800835,-0.52852338552475,-0.848739206790924,0.0174528956413269, +-0.382421642541885,-0.911413550376892,-0.15191775560379,-0.823346138000488,-0.526907384395599,-0.210878357291222,-0.754384100437164,-0.626113712787628,-0.197195425629616,-0.864021301269531,-0.476043999195099,-0.163857519626617,-0.910527765750885,-0.350183397531509,-0.219796925783157,-0.909549593925476,-0.38334533572197,-0.160517290234566,-0.823346138000488,-0.526907384395599,-0.210878357291222,-0.964657366275787,-0.253858596086502,-0.0706533342599869,-0.909549593925476,-0.38334533572197,-0.160517290234566,-0.95451021194458,-0.228277161717415,-0.191832318902016,-0.653252065181732,-0.730915188789368,-0.197546049952507,-0.522124707698822,-0.815898239612579,-0.248386114835739,-0.577032148838043,-0.803214251995087,-0.147921323776245,-0.754384100437164,-0.626113712787628,-0.197195425629616,-0.653252065181732,-0.730915188789368,-0.197546049952507,-0.705085396766663,-0.703118443489075,-0.0920807421207428,-0.522124707698822,-0.815898239612579,-0.248386114835739,-0.428512156009674,-0.881238877773285,-0.199487686157227,-0.577032148838043,-0.803214251995087,-0.147921323776245,-0.985034346580505,-0.166498497128487,0.0445587895810604,-0.954124748706818,-0.265357881784439,0.138676434755325,-0.964657366275787,-0.253858596086502,-0.0706533342599869,-0.817781627178192,-0.284997910261154,0.500009179115295,-0.81481409072876,-0.244563221931458,0.5256108045578,-0.789740383625031,0.105304673314095,0.604335069656372,-0.923419177532196,0.267668962478638,0.275045812129974,-0.96047031879425,0.153700947761536,0.232104733586311,-0.927371561527252,0.196153610944748,0.318599551916122,-0.881759107112885,0.293494254350662,0.369272112846375,-0.927371561527252,0.196153610944748,0.318599551916122,-0.895663797855377,0.169362112879753,0.411221086978912,-0.785261571407318,0.214567378163338,0.580796837806702,-0.79726904630661,0.313998281955719,0.515525937080383,-0.813236594200134,0.219590738415718,0.538911879062653,-0.785261571407318,0.214567378163338,0.580796837806702,-0.741351664066315,0.296001344919205,0.602312803268433,-0.79726904630661,0.313998281955719,0.515525937080383, +-0.718769073486328,0.268358290195465,0.6413694024086,-0.777702629566193,0.307011604309082,0.548563838005066,-0.741351664066315,0.296001344919205,0.602312803268433,-0.757410824298859,0.161274611949921,0.632707834243774,-0.789740383625031,0.105304673314095,0.604335069656372,-0.718769073486328,0.268358290195465,0.6413694024086,-0.895663797855377,0.169362112879753,0.411221086978912,-0.836454510688782,0.158474132418633,0.524623334407806,-0.853832304477692,0.211642503738403,0.475581437349319,-0.813236594200134,0.219590738415718,0.538911879062653,-0.853832304477692,0.211642503738403,0.475581437349319,-0.836454510688782,0.158474132418633,0.524623334407806,-0.968857109546661,0.224325031042099,-0.10485265403986,-0.977048516273499,0.180224150419235,-0.113557353615761,-0.979184091091156,0.183780834078789,-0.0861566662788391,-0.975951254367828,0.19923423230648,-0.0884575173258781,-0.979184091091156,0.183780834078789,-0.0861566662788391,-0.980329811573029,0.144548386335373,-0.134384348988533,-0.99040675163269,0.0439176075160503,0.131017699837685,-0.998535871505737,0.0393497087061405,0.0371158309280872,-0.991451501846313,-0.0608009919524193,0.115442894399166,-0.99040675163269,0.0439176075160503,0.131017699837685,-0.991451501846313,-0.0608009919524193,0.115442894399166,-0.984711945056915,0.0286628324538469,0.171816185116768,-0.980329811573029,0.144548386335373,-0.134384348988533,-0.988027811050415,-0.0203132946044207,-0.152932360768318,-0.990868985652924,0.112827844917774,-0.0738138630986214,-0.999344170093536,-0.0337034054100513,0.0132349347695708,-0.990868985652924,0.112827844917774,-0.0738138630986214,-0.996471583843231,-0.0520442612469196,-0.065846249461174,-0.999344170093536,-0.0337034054100513,0.0132349347695708,-0.991451501846313,-0.0608009919524193,0.115442894399166,-0.998535871505737,0.0393497087061405,0.0371158309280872,-0.984711945056915,0.0286628324538469,0.171816185116768,-0.977508127689362,0.097618356347084,0.186944961547852,-0.96047031879425,0.153700947761536,0.232104733586311,-0.817781627178192,-0.284997910261154,0.500009179115295, +-0.708381772041321,-0.658330261707306,0.254551142454147,-0.81481409072876,-0.244563221931458,0.5256108045578,-0.767416656017303,-0.564530193805695,0.303936094045639,-0.52852338552475,-0.848739206790924,0.0174528956413269,-0.708381772041321,-0.658330261707306,0.254551142454147,-0.339074969291687,-0.928006947040558,-0.154373481869698,-0.428512156009674,-0.881238877773285,-0.199487686157227,-0.382421642541885,-0.911413550376892,-0.15191775560379,-0.351332247257233,-0.928938329219818,-0.11678659170866,-0.382421642541885,-0.911413550376892,-0.15191775560379,-0.52852338552475,-0.848739206790924,0.0174528956413269,-0.817202687263489,-0.575498580932617,-0.0313207395374775,-0.864021301269531,-0.476043999195099,-0.163857519626617,-0.754384100437164,-0.626113712787628,-0.197195425629616,-0.823346138000488,-0.526907384395599,-0.210878357291222,-0.864021301269531,-0.476043999195099,-0.163857519626617,-0.910527765750885,-0.350183397531509,-0.219796925783157,-0.910527765750885,-0.350183397531509,-0.219796925783157,-0.95451021194458,-0.228277161717415,-0.191832318902016,-0.909549593925476,-0.38334533572197,-0.160517290234566,-0.964657366275787,-0.253858596086502,-0.0706533342599869,-0.95451021194458,-0.228277161717415,-0.191832318902016,-0.987173616886139,-0.125706791877747,-0.0984170511364937,-0.653252065181732,-0.730915188789368,-0.197546049952507,-0.577032148838043,-0.803214251995087,-0.147921323776245,-0.705085396766663,-0.703118443489075,-0.0920807421207428,-0.817202687263489,-0.575498580932617,-0.0313207395374775,-0.754384100437164,-0.626113712787628,-0.197195425629616,-0.705085396766663,-0.703118443489075,-0.0920807421207428,-0.577032148838043,-0.803214251995087,-0.147921323776245,-0.428512156009674,-0.881238877773285,-0.199487686157227,-0.468124747276306,-0.877007782459259,-0.108242549002171,-0.985034346580505,-0.166498497128487,0.0445587895810604,-0.964657366275787,-0.253858596086502,-0.0706533342599869,-0.987173616886139,-0.125706791877747,-0.0984170511364937,-0.830917000770569,-0.12318617105484,0.542588233947754,-0.817781627178192,-0.284997910261154,0.500009179115295, +-0.789740383625031,0.105304673314095,0.604335069656372,-0.943177402019501,0.0872023925185204,0.320643275976181,-0.927371561527252,0.196153610944748,0.318599551916122,-0.96047031879425,0.153700947761536,0.232104733586311,-0.943177402019501,0.0872023925185204,0.320643275976181,-0.895663797855377,0.169362112879753,0.411221086978912,-0.927371561527252,0.196153610944748,0.318599551916122,-0.813236594200134,0.219590738415718,0.538911879062653,-0.836454510688782,0.158474132418633,0.524623334407806,-0.785261571407318,0.214567378163338,0.580796837806702,-0.785261571407318,0.214567378163338,0.580796837806702,-0.738290250301361,0.219255849719048,0.637851297855377,-0.741351664066315,0.296001344919205,0.602312803268433,-0.741351664066315,0.296001344919205,0.602312803268433,-0.696187019348145,0.271159946918488,0.664677262306213,-0.718769073486328,0.268358290195465,0.6413694024086,-0.830917000770569,-0.12318617105484,0.542588233947754,-0.789740383625031,0.105304673314095,0.604335069656372,-0.757410824298859,0.161274611949921,0.632707834243774,-0.757410824298859,0.161274611949921,0.632707834243774,-0.718769073486328,0.268358290195465,0.6413694024086,-0.696441292762756,0.233764976263046,0.678471326828003,-0.860747992992401,0.0975154489278793,0.49960333108902,-0.836454510688782,0.158474132418633,0.524623334407806,-0.895663797855377,0.169362112879753,0.411221086978912,-0.977048516273499,0.180224150419235,-0.113557353615761,-0.968857109546661,0.224325031042099,-0.10485265403986,-0.961704611778259,0.195084795355797,-0.192525506019592,-0.977048516273499,0.180224150419235,-0.113557353615761,-0.980329811573029,0.144548386335373,-0.134384348988533,-0.979184091091156,0.183780834078789,-0.0861566662788391,-0.997187077999115,0.019730543717742,0.0723086893558502,-0.984711945056915,0.0286628324538469,0.171816185116768,-0.991451501846313,-0.0608009919524193,0.115442894399166,-0.988027811050415,-0.0203132946044207,-0.152932360768318,-0.980329811573029,0.144548386335373,-0.134384348988533,-0.975511789321899,0.110154382884502,-0.19037489593029,-0.988027811050415,-0.0203132946044207,-0.152932360768318, +-0.996471583843231,-0.0520442612469196,-0.065846249461174,-0.990868985652924,0.112827844917774,-0.0738138630986214,-0.999344170093536,-0.0337034054100513,0.0132349347695708,-0.996471583843231,-0.0520442612469196,-0.065846249461174,-0.998096764087677,-0.0565630495548248,0.0245636124163866,-0.999344170093536,-0.0337034054100513,0.0132349347695708,-0.998096764087677,-0.0565630495548248,0.0245636124163866,-0.991451501846313,-0.0608009919524193,0.115442894399166,-0.977508127689362,0.097618356347084,0.186944961547852,-0.984711945056915,0.0286628324538469,0.171816185116768,-0.991956532001495,0.0826260298490524,0.0958909243345261,-0.96047031879425,0.153700947761536,0.232104733586311,-0.977508127689362,0.097618356347084,0.186944961547852,-0.943177402019501,0.0872023925185204,0.320643275976181,-0.767416656017303,-0.564530193805695,0.303936094045639,-0.708381772041321,-0.658330261707306,0.254551142454147,-0.817781627178192,-0.284997910261154,0.500009179115295,-0.597461640834808,-0.791750133037567,0.127165749669075,-0.52852338552475,-0.848739206790924,0.0174528956413269,-0.767416656017303,-0.564530193805695,0.303936094045639,-0.468124747276306,-0.877007782459259,-0.108242549002171,-0.428512156009674,-0.881238877773285,-0.199487686157227,-0.339074969291687,-0.928006947040558,-0.154373481869698,-0.382421642541885,-0.911413550376892,-0.15191775560379,-0.351332247257233,-0.928938329219818,-0.11678659170866,-0.339074969291687,-0.928006947040558,-0.154373481869698,-0.351332247257233,-0.928938329219818,-0.11678659170866,-0.52852338552475,-0.848739206790924,0.0174528956413269,-0.432973355054855,-0.899953186511993,-0.0511660128831863,-0.864021301269531,-0.476043999195099,-0.163857519626617,-0.817202687263489,-0.575498580932617,-0.0313207395374775,-0.893084466457367,-0.449026346206665,-0.0278455950319767,-0.910527765750885,-0.350183397531509,-0.219796925783157,-0.864021301269531,-0.476043999195099,-0.163857519626617,-0.941727101802826,-0.321950763463974,-0.0974546372890472,-0.910527765750885,-0.350183397531509,-0.219796925783157,-0.97272402048111,-0.175906389951706,-0.151211246848106, +-0.95451021194458,-0.228277161717415,-0.191832318902016,-0.984046041965485,-0.0758880376815796,-0.16091725230217,-0.987173616886139,-0.125706791877747,-0.0984170511364937,-0.95451021194458,-0.228277161717415,-0.191832318902016,-0.607315540313721,-0.792984426021576,-0.0484083294868469,-0.705085396766663,-0.703118443489075,-0.0920807421207428,-0.577032148838043,-0.803214251995087,-0.147921323776245,-0.817202687263489,-0.575498580932617,-0.0313207395374775,-0.705085396766663,-0.703118443489075,-0.0920807421207428,-0.71125054359436,-0.702919602394104,0.00515411421656609,-0.577032148838043,-0.803214251995087,-0.147921323776245,-0.468124747276306,-0.877007782459259,-0.108242549002171,-0.607315540313721,-0.792984426021576,-0.0484083294868469,-0.985034346580505,-0.166498497128487,0.0445587895810604,-0.987173616886139,-0.125706791877747,-0.0984170511364937,-0.990543961524963,-0.0600122734904289,0.123373597860336,-0.767416656017303,-0.564530193805695,0.303936094045639,-0.817781627178192,-0.284997910261154,0.500009179115295,-0.830917000770569,-0.12318617105484,0.542588233947754,-0.943177402019501,0.0872023925185204,0.320643275976181,-0.906078219413757,0.100095003843308,0.411099880933762,-0.895663797855377,0.169362112879753,0.411221086978912,-0.785261571407318,0.214567378163338,0.580796837806702,-0.836454510688782,0.158474132418633,0.524623334407806,-0.803370416164398,0.12723471224308,0.581727743148804,-0.738290250301361,0.219255849719048,0.637851297855377,-0.785261571407318,0.214567378163338,0.580796837806702,-0.803370416164398,0.12723471224308,0.581727743148804,-0.738290250301361,0.219255849719048,0.637851297855377,-0.696187019348145,0.271159946918488,0.664677262306213,-0.741351664066315,0.296001344919205,0.602312803268433,-0.718769073486328,0.268358290195465,0.6413694024086,-0.696187019348145,0.271159946918488,0.664677262306213,-0.696441292762756,0.233764976263046,0.678471326828003,-0.813128232955933,-0.0503583289682865,0.579901993274689,-0.830917000770569,-0.12318617105484,0.542588233947754,-0.757410824298859,0.161274611949921,0.632707834243774, +-0.757410824298859,0.161274611949921,0.632707834243774,-0.696441292762756,0.233764976263046,0.678471326828003,-0.774583876132965,0.0797665566205978,0.627420842647552,-0.803370416164398,0.12723471224308,0.581727743148804,-0.836454510688782,0.158474132418633,0.524623334407806,-0.860747992992401,0.0975154489278793,0.49960333108902,-0.860747992992401,0.0975154489278793,0.49960333108902,-0.895663797855377,0.169362112879753,0.411221086978912,-0.906078219413757,0.100095003843308,0.411099880933762,-0.980329811573029,0.144548386335373,-0.134384348988533,-0.977048516273499,0.180224150419235,-0.113557353615761,-0.961704611778259,0.195084795355797,-0.192525506019592,-0.984711945056915,0.0286628324538469,0.171816185116768,-0.997187077999115,0.019730543717742,0.0723086893558502,-0.991956532001495,0.0826260298490524,0.0958909243345261,-0.998096764087677,-0.0565630495548248,0.0245636124163866,-0.997187077999115,0.019730543717742,0.0723086893558502,-0.991451501846313,-0.0608009919524193,0.115442894399166,-0.975511789321899,0.110154382884502,-0.19037489593029,-0.980329811573029,0.144548386335373,-0.134384348988533,-0.961704611778259,0.195084795355797,-0.192525506019592,-0.975511789321899,0.110154382884502,-0.19037489593029,-0.958469569683075,0.11726663261652,-0.259970188140869,-0.988027811050415,-0.0203132946044207,-0.152932360768318,-0.988027811050415,-0.0203132946044207,-0.152932360768318,-0.990652084350586,-0.089354895055294,-0.103073336184025,-0.996471583843231,-0.0520442612469196,-0.065846249461174,-0.990652084350586,-0.089354895055294,-0.103073336184025,-0.998096764087677,-0.0565630495548248,0.0245636124163866,-0.996471583843231,-0.0520442612469196,-0.065846249461174,-0.982793569564819,0.0506217889487743,0.177634984254837,-0.977508127689362,0.097618356347084,0.186944961547852,-0.991956532001495,0.0826260298490524,0.0958909243345261,-0.943177402019501,0.0872023925185204,0.320643275976181,-0.977508127689362,0.097618356347084,0.186944961547852,-0.982793569564819,0.0506217889487743,0.177634984254837,-0.597461640834808,-0.791750133037567,0.127165749669075, +-0.432973355054855,-0.899953186511993,-0.0511660128831863,-0.52852338552475,-0.848739206790924,0.0174528956413269,-0.767416656017303,-0.564530193805695,0.303936094045639,-0.788274347782135,-0.463149398565292,0.405112385749817,-0.597461640834808,-0.791750133037567,0.127165749669075,-0.468124747276306,-0.877007782459259,-0.108242549002171,-0.339074969291687,-0.928006947040558,-0.154373481869698,-0.370564758777618,-0.926112294197083,-0.0706940069794655,-0.339074969291687,-0.928006947040558,-0.154373481869698,-0.351332247257233,-0.928938329219818,-0.11678659170866,-0.266616523265839,-0.959038317203522,-0.0957130119204521,-0.351332247257233,-0.928938329219818,-0.11678659170866,-0.432973355054855,-0.899953186511993,-0.0511660128831863,-0.328401952981949,-0.941168248653412,-0.0797141045331955,-0.893084466457367,-0.449026346206665,-0.0278455950319767,-0.817202687263489,-0.575498580932617,-0.0313207395374775,-0.868086636066437,-0.470832884311676,0.15729546546936,-0.864021301269531,-0.476043999195099,-0.163857519626617,-0.893084466457367,-0.449026346206665,-0.0278455950319767,-0.941727101802826,-0.321950763463974,-0.0974546372890472,-0.910527765750885,-0.350183397531509,-0.219796925783157,-0.941727101802826,-0.321950763463974,-0.0974546372890472,-0.97272402048111,-0.175906389951706,-0.151211246848106,-0.97272402048111,-0.175906389951706,-0.151211246848106,-0.984046041965485,-0.0758880376815796,-0.16091725230217,-0.95451021194458,-0.228277161717415,-0.191832318902016,-0.987173616886139,-0.125706791877747,-0.0984170511364937,-0.984046041965485,-0.0758880376815796,-0.16091725230217,-0.998211026191711,0.0101094404235482,-0.0589273199439049,-0.607315540313721,-0.792984426021576,-0.0484083294868469,-0.71125054359436,-0.702919602394104,0.00515411421656609,-0.705085396766663,-0.703118443489075,-0.0920807421207428,-0.817202687263489,-0.575498580932617,-0.0313207395374775,-0.71125054359436,-0.702919602394104,0.00515411421656609,-0.760629296302795,-0.644086539745331,0.0812121033668518,-0.607315540313721,-0.792984426021576,-0.0484083294868469, +-0.468124747276306,-0.877007782459259,-0.108242549002171,-0.494779646396637,-0.868907928466797,-0.0138549581170082,-0.987173616886139,-0.125706791877747,-0.0984170511364937,-0.998211026191711,0.0101094404235482,-0.0589273199439049,-0.990543961524963,-0.0600122734904289,0.123373597860336,-0.767416656017303,-0.564530193805695,0.303936094045639,-0.830917000770569,-0.12318617105484,0.542588233947754,-0.788274347782135,-0.463149398565292,0.405112385749817,-0.943177402019501,0.0872023925185204,0.320643275976181,-0.878306984901428,0.0183787159621716,0.477743566036224,-0.906078219413757,0.100095003843308,0.411099880933762,-0.763344585895538,0.128106087446213,0.633161664009094,-0.738290250301361,0.219255849719048,0.637851297855377,-0.803370416164398,0.12723471224308,0.581727743148804,-0.738290250301361,0.219255849719048,0.637851297855377,-0.69633013010025,0.208589717745781,0.686741948127747,-0.696187019348145,0.271159946918488,0.664677262306213,-0.696441292762756,0.233764976263046,0.678471326828003,-0.696187019348145,0.271159946918488,0.664677262306213,-0.69633013010025,0.208589717745781,0.686741948127747,-0.813128232955933,-0.0503583289682865,0.579901993274689,-0.788274347782135,-0.463149398565292,0.405112385749817,-0.830917000770569,-0.12318617105484,0.542588233947754,-0.757410824298859,0.161274611949921,0.632707834243774,-0.774583876132965,0.0797665566205978,0.627420842647552,-0.813128232955933,-0.0503583289682865,0.579901993274689,-0.722338020801544,0.113330706954002,0.682190418243408,-0.774583876132965,0.0797665566205978,0.627420842647552,-0.696441292762756,0.233764976263046,0.678471326828003,-0.815522372722626,0.0459687896072865,0.576896846294403,-0.803370416164398,0.12723471224308,0.581727743148804,-0.860747992992401,0.0975154489278793,0.49960333108902,-0.860747992992401,0.0975154489278793,0.49960333108902,-0.906078219413757,0.100095003843308,0.411099880933762,-0.878306984901428,0.0183787159621716,0.477743566036224,-0.991956532001495,0.0826260298490524,0.0958909243345261,-0.997187077999115,0.019730543717742,0.0723086893558502, +-0.995112895965576,0.084517240524292,0.0510594174265862,-0.998096764087677,-0.0565630495548248,0.0245636124163866,-0.998548805713654,0.0486693046987057,-0.0230560097843409,-0.997187077999115,0.019730543717742,0.0723086893558502,-0.958469569683075,0.11726663261652,-0.259970188140869,-0.975511789321899,0.110154382884502,-0.19037489593029,-0.961704611778259,0.195084795355797,-0.192525506019592,-0.954406797885895,-0.0321029238402843,-0.296777546405792,-0.988027811050415,-0.0203132946044207,-0.152932360768318,-0.958469569683075,0.11726663261652,-0.259970188140869,-0.990652084350586,-0.089354895055294,-0.103073336184025,-0.988027811050415,-0.0203132946044207,-0.152932360768318,-0.990921258926392,-0.0556617267429829,-0.122379176318645,-0.990652084350586,-0.089354895055294,-0.103073336184025,-0.998548805713654,0.0486693046987057,-0.0230560097843409,-0.998096764087677,-0.0565630495548248,0.0245636124163866,-0.995112895965576,0.084517240524292,0.0510594174265862,-0.982793569564819,0.0506217889487743,0.177634984254837,-0.991956532001495,0.0826260298490524,0.0958909243345261,-0.944766461849213,-0.0461756102740765,0.324475049972534,-0.943177402019501,0.0872023925185204,0.320643275976181,-0.982793569564819,0.0506217889487743,0.177634984254837,-0.432973355054855,-0.899953186511993,-0.0511660128831863,-0.597461640834808,-0.791750133037567,0.127165749669075,-0.492701381444931,-0.870091676712036,0.0136280683800578,-0.683740556240082,-0.693256258964539,0.227803573012352,-0.597461640834808,-0.791750133037567,0.127165749669075,-0.788274347782135,-0.463149398565292,0.405112385749817,-0.339074969291687,-0.928006947040558,-0.154373481869698,-0.266616523265839,-0.959038317203522,-0.0957130119204521,-0.370564758777618,-0.926112294197083,-0.0706940069794655,-0.468124747276306,-0.877007782459259,-0.108242549002171,-0.370564758777618,-0.926112294197083,-0.0706940069794655,-0.494779646396637,-0.868907928466797,-0.0138549581170082,-0.266616523265839,-0.959038317203522,-0.0957130119204521,-0.351332247257233,-0.928938329219818,-0.11678659170866,-0.328401952981949,-0.941168248653412,-0.0797141045331955, +-0.432973355054855,-0.899953186511993,-0.0511660128831863,-0.492701381444931,-0.870091676712036,0.0136280683800578,-0.328401952981949,-0.941168248653412,-0.0797141045331955,-0.817202687263489,-0.575498580932617,-0.0313207395374775,-0.760629296302795,-0.644086539745331,0.0812121033668518,-0.868086636066437,-0.470832884311676,0.15729546546936,-0.893084466457367,-0.449026346206665,-0.0278455950319767,-0.868086636066437,-0.470832884311676,0.15729546546936,-0.95104056596756,-0.30823341012001,0.0226709600538015,-0.941727101802826,-0.321950763463974,-0.0974546372890472,-0.893084466457367,-0.449026346206665,-0.0278455950319767,-0.95104056596756,-0.30823341012001,0.0226709600538015,-0.987916946411133,-0.147896096110344,-0.0463334247469902,-0.97272402048111,-0.175906389951706,-0.151211246848106,-0.941727101802826,-0.321950763463974,-0.0974546372890472,-0.995341420173645,-0.0233628414571285,-0.0935390964150429,-0.984046041965485,-0.0758880376815796,-0.16091725230217,-0.97272402048111,-0.175906389951706,-0.151211246848106,-0.998211026191711,0.0101094404235482,-0.0589273199439049,-0.984046041965485,-0.0758880376815796,-0.16091725230217,-0.992582976818085,0.0537131540477276,-0.109058655798435,-0.607315540313721,-0.792984426021576,-0.0484083294868469,-0.596688687801361,-0.799742341041565,0.066141277551651,-0.71125054359436,-0.702919602394104,0.00515411421656609,-0.760629296302795,-0.644086539745331,0.0812121033668518,-0.71125054359436,-0.702919602394104,0.00515411421656609,-0.596688687801361,-0.799742341041565,0.066141277551651,-0.607315540313721,-0.792984426021576,-0.0484083294868469,-0.494779646396637,-0.868907928466797,-0.0138549581170082,-0.596688687801361,-0.799742341041565,0.066141277551651,-0.990543961524963,-0.0600122734904289,0.123373597860336,-0.998211026191711,0.0101094404235482,-0.0589273199439049,-0.991766750812531,0.0765160620212555,0.102683752775192,-0.878306984901428,0.0183787159621716,0.477743566036224,-0.943177402019501,0.0872023925185204,0.320643275976181,-0.916596353054047,-0.0207065623253584,0.399277180433273, +-0.738290250301361,0.219255849719048,0.637851297855377,-0.763344585895538,0.128106087446213,0.633161664009094,-0.69633013010025,0.208589717745781,0.686741948127747,-0.763344585895538,0.128106087446213,0.633161664009094,-0.803370416164398,0.12723471224308,0.581727743148804,-0.815522372722626,0.0459687896072865,0.576896846294403,-0.696441292762756,0.233764976263046,0.678471326828003,-0.69633013010025,0.208589717745781,0.686741948127747,-0.648269355297089,0.210383951663971,0.731768608093262,-0.819859087467194,-0.293190062046051,0.491803467273712,-0.788274347782135,-0.463149398565292,0.405112385749817,-0.813128232955933,-0.0503583289682865,0.579901993274689,-0.819859087467194,-0.293190062046051,0.491803467273712,-0.813128232955933,-0.0503583289682865,0.579901993274689,-0.774583876132965,0.0797665566205978,0.627420842647552,-0.774583876132965,0.0797665566205978,0.627420842647552,-0.722338020801544,0.113330706954002,0.682190418243408,-0.798144817352295,-0.180704697966576,0.574726462364197,-0.696441292762756,0.233764976263046,0.678471326828003,-0.670250177383423,0.210615932941437,0.711621701717377,-0.722338020801544,0.113330706954002,0.682190418243408,-0.815522372722626,0.0459687896072865,0.576896846294403,-0.860747992992401,0.0975154489278793,0.49960333108902,-0.878306984901428,0.0183787159621716,0.477743566036224,-0.993804275989532,0.107062853872776,0.0298423767089844,-0.995112895965576,0.084517240524292,0.0510594174265862,-0.997187077999115,0.019730543717742,0.0723086893558502,-0.997187077999115,0.019730543717742,0.0723086893558502,-0.998548805713654,0.0486693046987057,-0.0230560097843409,-0.993804275989532,0.107062853872776,0.0298423767089844,-0.988027811050415,-0.0203132946044207,-0.152932360768318,-0.954406797885895,-0.0321029238402843,-0.296777546405792,-0.981646180152893,-0.0616967380046844,-0.180455401539803,-0.990921258926392,-0.0556617267429829,-0.122379176318645,-0.988027811050415,-0.0203132946044207,-0.152932360768318,-0.981646180152893,-0.0616967380046844,-0.180455401539803,-0.990652084350586,-0.089354895055294,-0.103073336184025, +-0.990921258926392,-0.0556617267429829,-0.122379176318645,-0.98721981048584,0.0214142613112926,-0.157918885350227,-0.990652084350586,-0.089354895055294,-0.103073336184025,-0.98721981048584,0.0214142613112926,-0.157918885350227,-0.998548805713654,0.0486693046987057,-0.0230560097843409,-0.991737008094788,-0.0574095584452152,0.114724777638912,-0.982793569564819,0.0506217889487743,0.177634984254837,-0.995112895965576,0.084517240524292,0.0510594174265862,-0.944766461849213,-0.0461756102740765,0.324475049972534,-0.916596353054047,-0.0207065623253584,0.399277180433273,-0.943177402019501,0.0872023925185204,0.320643275976181,-0.963054120540619,-0.103879280388355,0.248466834425926,-0.944766461849213,-0.0461756102740765,0.324475049972534,-0.982793569564819,0.0506217889487743,0.177634984254837,-0.683740556240082,-0.693256258964539,0.227803573012352,-0.492701381444931,-0.870091676712036,0.0136280683800578,-0.597461640834808,-0.791750133037567,0.127165749669075,-0.819859087467194,-0.293190062046051,0.491803467273712,-0.683740556240082,-0.693256258964539,0.227803573012352,-0.788274347782135,-0.463149398565292,0.405112385749817,-0.266616523265839,-0.959038317203522,-0.0957130119204521,-0.277679353952408,-0.960626125335693,0.00956455059349537,-0.370564758777618,-0.926112294197083,-0.0706940069794655,-0.494779646396637,-0.868907928466797,-0.0138549581170082,-0.370564758777618,-0.926112294197083,-0.0706940069794655,-0.410030603408813,-0.910823702812195,0.0476967394351959,-0.253877282142639,-0.96718442440033,0.0100284861400723,-0.266616523265839,-0.959038317203522,-0.0957130119204521,-0.328401952981949,-0.941168248653412,-0.0797141045331955,-0.328401952981949,-0.941168248653412,-0.0797141045331955,-0.492701381444931,-0.870091676712036,0.0136280683800578,-0.386652708053589,-0.921718597412109,-0.030569177120924,-0.769105732440948,-0.607690870761871,0.197959586977959,-0.868086636066437,-0.470832884311676,0.15729546546936,-0.760629296302795,-0.644086539745331,0.0812121033668518,-0.93381804227829,-0.329889744520187,0.138406842947006,-0.95104056596756,-0.30823341012001,0.0226709600538015, +-0.868086636066437,-0.470832884311676,0.15729546546936,-0.941727101802826,-0.321950763463974,-0.0974546372890472,-0.95104056596756,-0.30823341012001,0.0226709600538015,-0.987916946411133,-0.147896096110344,-0.0463334247469902,-0.987916946411133,-0.147896096110344,-0.0463334247469902,-0.995341420173645,-0.0233628414571285,-0.0935390964150429,-0.97272402048111,-0.175906389951706,-0.151211246848106,-0.995341420173645,-0.0233628414571285,-0.0935390964150429,-0.992582976818085,0.0537131540477276,-0.109058655798435,-0.984046041965485,-0.0758880376815796,-0.16091725230217,-0.991198003292084,0.12568536400795,-0.0415885448455811,-0.998211026191711,0.0101094404235482,-0.0589273199439049,-0.992582976818085,0.0537131540477276,-0.109058655798435,-0.760629296302795,-0.644086539745331,0.0812121033668518,-0.596688687801361,-0.799742341041565,0.066141277551651,-0.645231306552887,-0.746477782726288,0.162625968456268,-0.410030603408813,-0.910823702812195,0.0476967394351959,-0.596688687801361,-0.799742341041565,0.066141277551651,-0.494779646396637,-0.868907928466797,-0.0138549581170082,-0.991766750812531,0.0765160620212555,0.102683752775192,-0.998211026191711,0.0101094404235482,-0.0589273199439049,-0.991198003292084,0.12568536400795,-0.0415885448455811,-0.878306984901428,0.0183787159621716,0.477743566036224,-0.916596353054047,-0.0207065623253584,0.399277180433273,-0.901004135608673,-0.0752089247107506,0.427241295576096,-0.734722971916199,0.0812597051262856,0.673482656478882,-0.69633013010025,0.208589717745781,0.686741948127747,-0.763344585895538,0.128106087446213,0.633161664009094,-0.815522372722626,0.0459687896072865,0.576896846294403,-0.768809676170349,0.0252159759402275,0.638980090618134,-0.763344585895538,0.128106087446213,0.633161664009094,-0.648269355297089,0.210383951663971,0.731768608093262,-0.69633013010025,0.208589717745781,0.686741948127747,-0.643142223358154,0.150258779525757,0.750859677791595,-0.670250177383423,0.210615932941437,0.711621701717377,-0.696441292762756,0.233764976263046,0.678471326828003,-0.648269355297089,0.210383951663971,0.731768608093262, +-0.819859087467194,-0.293190062046051,0.491803467273712,-0.774583876132965,0.0797665566205978,0.627420842647552,-0.798144817352295,-0.180704697966576,0.574726462364197,-0.798144817352295,-0.180704697966576,0.574726462364197,-0.722338020801544,0.113330706954002,0.682190418243408,-0.743632555007935,-0.1464584171772,0.652349889278412,-0.670250177383423,0.210615932941437,0.711621701717377,-0.707336962223053,0.0449778996407986,0.705444097518921,-0.722338020801544,0.113330706954002,0.682190418243408,-0.824152171611786,-0.02346146479249,0.56588214635849,-0.815522372722626,0.0459687896072865,0.576896846294403,-0.878306984901428,0.0183787159621716,0.477743566036224,-0.996344745159149,0.0852642431855202,0.00520692579448223,-0.995112895965576,0.084517240524292,0.0510594174265862,-0.993804275989532,0.107062853872776,0.0298423767089844,-0.998548805713654,0.0486693046987057,-0.0230560097843409,-0.996344745159149,0.0852642431855202,0.00520692579448223,-0.993804275989532,0.107062853872776,0.0298423767089844,-0.954406797885895,-0.0321029238402843,-0.296777546405792,-0.936345636844635,-0.0770668834447861,-0.342516452074051,-0.981646180152893,-0.0616967380046844,-0.180455401539803,-0.983838677406311,0.0838269516825676,-0.158222496509552,-0.990921258926392,-0.0556617267429829,-0.122379176318645,-0.981646180152893,-0.0616967380046844,-0.180455401539803,-0.98721981048584,0.0214142613112926,-0.157918885350227,-0.990921258926392,-0.0556617267429829,-0.122379176318645,-0.983838677406311,0.0838269516825676,-0.158222496509552,-0.998548805713654,0.0486693046987057,-0.0230560097843409,-0.98721981048584,0.0214142613112926,-0.157918885350227,-0.99163806438446,0.0660066232085228,-0.110891982913017,-0.991737008094788,-0.0574095584452152,0.114724777638912,-0.963054120540619,-0.103879280388355,0.248466834425926,-0.982793569564819,0.0506217889487743,0.177634984254837,-0.999488711357117,-0.0159418061375618,0.0277152322232723,-0.991737008094788,-0.0574095584452152,0.114724777638912,-0.995112895965576,0.084517240524292,0.0510594174265862,-0.916596353054047,-0.0207065623253584,0.399277180433273, +-0.944766461849213,-0.0461756102740765,0.324475049972534,-0.901004135608673,-0.0752089247107506,0.427241295576096,-0.944766461849213,-0.0461756102740765,0.324475049972534,-0.963054120540619,-0.103879280388355,0.248466834425926,-0.905236661434174,-0.177825674414635,0.385907381772995,-0.492701381444931,-0.870091676712036,0.0136280683800578,-0.683740556240082,-0.693256258964539,0.227803573012352,-0.720129907131195,-0.634536921977997,0.280670017004013,-0.819859087467194,-0.293190062046051,0.491803467273712,-0.720129907131195,-0.634536921977997,0.280670017004013,-0.683740556240082,-0.693256258964539,0.227803573012352,-0.277679353952408,-0.960626125335693,0.00956455059349537,-0.266616523265839,-0.959038317203522,-0.0957130119204521,-0.253877282142639,-0.96718442440033,0.0100284861400723,-0.277679353952408,-0.960626125335693,0.00956455059349537,-0.410030603408813,-0.910823702812195,0.0476967394351959,-0.370564758777618,-0.926112294197083,-0.0706940069794655,-0.253877282142639,-0.96718442440033,0.0100284861400723,-0.328401952981949,-0.941168248653412,-0.0797141045331955,-0.386652708053589,-0.921718597412109,-0.030569177120924,-0.492701381444931,-0.870091676712036,0.0136280683800578,-0.506147980690002,-0.854633808135986,0.115823596715927,-0.386652708053589,-0.921718597412109,-0.030569177120924,-0.769105732440948,-0.607690870761871,0.197959586977959,-0.763543546199799,-0.547811806201935,0.341911226511002,-0.868086636066437,-0.470832884311676,0.15729546546936,-0.760629296302795,-0.644086539745331,0.0812121033668518,-0.645231306552887,-0.746477782726288,0.162625968456268,-0.769105732440948,-0.607690870761871,0.197959586977959,-0.93381804227829,-0.329889744520187,0.138406842947006,-0.96682596206665,-0.218625783920288,0.132099226117134,-0.95104056596756,-0.30823341012001,0.0226709600538015,-0.895187377929688,-0.321751713752747,0.308407813310623,-0.93381804227829,-0.329889744520187,0.138406842947006,-0.868086636066437,-0.470832884311676,0.15729546546936,-0.986592173576355,-0.163204491138458,0.000218002503970638,-0.987916946411133,-0.147896096110344,-0.0463334247469902, +-0.95104056596756,-0.30823341012001,0.0226709600538015,-0.998430728912354,-0.017044547945261,-0.0533436350524426,-0.995341420173645,-0.0233628414571285,-0.0935390964150429,-0.987916946411133,-0.147896096110344,-0.0463334247469902,-0.992582976818085,0.0537131540477276,-0.109058655798435,-0.995341420173645,-0.0233628414571285,-0.0935390964150429,-0.991659700870514,0.107720330357552,-0.070762112736702,-0.991659700870514,0.107720330357552,-0.070762112736702,-0.991198003292084,0.12568536400795,-0.0415885448455811,-0.992582976818085,0.0537131540477276,-0.109058655798435,-0.645231306552887,-0.746477782726288,0.162625968456268,-0.596688687801361,-0.799742341041565,0.066141277551651,-0.447025656700134,-0.882981896400452,0.143216237425804,-0.447025656700134,-0.882981896400452,0.143216237425804,-0.596688687801361,-0.799742341041565,0.066141277551651,-0.410030603408813,-0.910823702812195,0.0476967394351959,-0.991198003292084,0.12568536400795,-0.0415885448455811,-0.98514324426651,0.166968986392021,0.0401755645871162,-0.991766750812531,0.0765160620212555,0.102683752775192,-0.901004135608673,-0.0752089247107506,0.427241295576096,-0.857553124427795,-0.0946232602000237,0.505617380142212,-0.878306984901428,0.0183787159621716,0.477743566036224,-0.734722971916199,0.0812597051262856,0.673482656478882,-0.698357999324799,0.13744792342186,0.702427268028259,-0.69633013010025,0.208589717745781,0.686741948127747,-0.734722971916199,0.0812597051262856,0.673482656478882,-0.763344585895538,0.128106087446213,0.633161664009094,-0.768809676170349,0.0252159759402275,0.638980090618134,-0.815522372722626,0.0459687896072865,0.576896846294403,-0.786325752735138,-0.0480460748076439,0.615940868854523,-0.768809676170349,0.0252159759402275,0.638980090618134,-0.69633013010025,0.208589717745781,0.686741948127747,-0.698357999324799,0.13744792342186,0.702427268028259,-0.643142223358154,0.150258779525757,0.750859677791595,-0.646149635314941,0.0934269279241562,0.757470786571503,-0.648269355297089,0.210383951663971,0.731768608093262,-0.643142223358154,0.150258779525757,0.750859677791595, +-0.648269355297089,0.210383951663971,0.731768608093262,-0.614160358905792,0.230744227766991,0.754694640636444,-0.670250177383423,0.210615932941437,0.711621701717377,-0.819859087467194,-0.293190062046051,0.491803467273712,-0.798144817352295,-0.180704697966576,0.574726462364197,-0.720129907131195,-0.634536921977997,0.280670017004013,-0.707336962223053,0.0449778996407986,0.705444097518921,-0.743632555007935,-0.1464584171772,0.652349889278412,-0.722338020801544,0.113330706954002,0.682190418243408,-0.798144817352295,-0.180704697966576,0.574726462364197,-0.743632555007935,-0.1464584171772,0.652349889278412,-0.6998330950737,-0.570917665958405,0.429286032915115,-0.59280788898468,0.190979212522507,0.782371759414673,-0.707336962223053,0.0449778996407986,0.705444097518921,-0.670250177383423,0.210615932941437,0.711621701717377,-0.786325752735138,-0.0480460748076439,0.615940868854523,-0.815522372722626,0.0459687896072865,0.576896846294403,-0.824152171611786,-0.02346146479249,0.56588214635849,-0.878306984901428,0.0183787159621716,0.477743566036224,-0.857553124427795,-0.0946232602000237,0.505617380142212,-0.824152171611786,-0.02346146479249,0.56588214635849,-0.996344745159149,0.0852642431855202,0.00520692579448223,-0.999488711357117,-0.0159418061375618,0.0277152322232723,-0.995112895965576,0.084517240524292,0.0510594174265862,-0.996344745159149,0.0852642431855202,0.00520692579448223,-0.998548805713654,0.0486693046987057,-0.0230560097843409,-0.99163806438446,0.0660066232085228,-0.110891982913017,-0.936345636844635,-0.0770668834447861,-0.342516452074051,-0.970951795578003,0.0532846339046955,-0.233266472816467,-0.981646180152893,-0.0616967380046844,-0.180455401539803,-0.983838677406311,0.0838269516825676,-0.158222496509552,-0.981646180152893,-0.0616967380046844,-0.180455401539803,-0.970951795578003,0.0532846339046955,-0.233266472816467,-0.983838677406311,0.0838269516825676,-0.158222496509552,-0.99163806438446,0.0660066232085228,-0.110891982913017,-0.98721981048584,0.0214142613112926,-0.157918885350227,-0.991737008094788,-0.0574095584452152,0.114724777638912, +-0.967832446098328,-0.202984303236008,0.148652717471123,-0.963054120540619,-0.103879280388355,0.248466834425926,-0.999488711357117,-0.0159418061375618,0.0277152322232723,-0.986283242702484,-0.162457957863808,0.029199980199337,-0.991737008094788,-0.0574095584452152,0.114724777638912,-0.944766461849213,-0.0461756102740765,0.324475049972534,-0.905236661434174,-0.177825674414635,0.385907381772995,-0.901004135608673,-0.0752089247107506,0.427241295576096,-0.963054120540619,-0.103879280388355,0.248466834425926,-0.940180063247681,-0.217322558164597,0.262358903884888,-0.905236661434174,-0.177825674414635,0.385907381772995,-0.506147980690002,-0.854633808135986,0.115823596715927,-0.492701381444931,-0.870091676712036,0.0136280683800578,-0.720129907131195,-0.634536921977997,0.280670017004013,-0.277679353952408,-0.960626125335693,0.00956455059349537,-0.253877282142639,-0.96718442440033,0.0100284861400723,-0.265182822942734,-0.95633065700531,0.122921280562878,-0.265182822942734,-0.95633065700531,0.122921280562878,-0.410030603408813,-0.910823702812195,0.0476967394351959,-0.277679353952408,-0.960626125335693,0.00956455059349537,-0.34376472234726,-0.936299562454224,0.0718943327665329,-0.253877282142639,-0.96718442440033,0.0100284861400723,-0.386652708053589,-0.921718597412109,-0.030569177120924,-0.506147980690002,-0.854633808135986,0.115823596715927,-0.34376472234726,-0.936299562454224,0.0718943327665329,-0.386652708053589,-0.921718597412109,-0.030569177120924,-0.769105732440948,-0.607690870761871,0.197959586977959,-0.66901969909668,-0.686459243297577,0.284931898117065,-0.763543546199799,-0.547811806201935,0.341911226511002,-0.868086636066437,-0.470832884311676,0.15729546546936,-0.763543546199799,-0.547811806201935,0.341911226511002,-0.80349600315094,-0.436433672904968,0.404870092868805,-0.769105732440948,-0.607690870761871,0.197959586977959,-0.645231306552887,-0.746477782726288,0.162625968456268,-0.66901969909668,-0.686459243297577,0.284931898117065,-0.895187377929688,-0.321751713752747,0.308407813310623,-0.96682596206665,-0.218625783920288,0.132099226117134, +-0.93381804227829,-0.329889744520187,0.138406842947006,-0.986592173576355,-0.163204491138458,0.000218002503970638,-0.95104056596756,-0.30823341012001,0.0226709600538015,-0.96682596206665,-0.218625783920288,0.132099226117134,-0.868086636066437,-0.470832884311676,0.15729546546936,-0.80349600315094,-0.436433672904968,0.404870092868805,-0.895187377929688,-0.321751713752747,0.308407813310623,-0.986592173576355,-0.163204491138458,0.000218002503970638,-0.998430728912354,-0.017044547945261,-0.0533436350524426,-0.987916946411133,-0.147896096110344,-0.0463334247469902,-0.998430728912354,-0.017044547945261,-0.0533436350524426,-0.991659700870514,0.107720330357552,-0.070762112736702,-0.995341420173645,-0.0233628414571285,-0.0935390964150429,-0.991659700870514,0.107720330357552,-0.070762112736702,-0.978914320468903,0.198390051722527,-0.0486628860235214,-0.991198003292084,0.12568536400795,-0.0415885448455811,-0.645231306552887,-0.746477782726288,0.162625968456268,-0.447025656700134,-0.882981896400452,0.143216237425804,-0.492289841175079,-0.840448498725891,0.226488277316093,-0.447025656700134,-0.882981896400452,0.143216237425804,-0.410030603408813,-0.910823702812195,0.0476967394351959,-0.265182822942734,-0.95633065700531,0.122921280562878,-0.991198003292084,0.12568536400795,-0.0415885448455811,-0.978914320468903,0.198390051722527,-0.0486628860235214,-0.98514324426651,0.166968986392021,0.0401755645871162,-0.857553124427795,-0.0946232602000237,0.505617380142212,-0.901004135608673,-0.0752089247107506,0.427241295576096,-0.905236661434174,-0.177825674414635,0.385907381772995,-0.734722971916199,0.0812597051262856,0.673482656478882,-0.670052587985992,0.0352894142270088,0.741474151611328,-0.698357999324799,0.13744792342186,0.702427268028259,-0.717174291610718,-0.0206298679113388,0.696588337421417,-0.734722971916199,0.0812597051262856,0.673482656478882,-0.768809676170349,0.0252159759402275,0.638980090618134,-0.75810581445694,-0.0587753504514694,0.649477362632751,-0.768809676170349,0.0252159759402275,0.638980090618134,-0.786325752735138,-0.0480460748076439,0.615940868854523, +-0.670052587985992,0.0352894142270088,0.741474151611328,-0.643142223358154,0.150258779525757,0.750859677791595,-0.698357999324799,0.13744792342186,0.702427268028259,-0.648269355297089,0.210383951663971,0.731768608093262,-0.646149635314941,0.0934269279241562,0.757470786571503,-0.638443470001221,0.186822026968002,0.746650755405426,-0.643142223358154,0.150258779525757,0.750859677791595,-0.670052587985992,0.0352894142270088,0.741474151611328,-0.646149635314941,0.0934269279241562,0.757470786571503,-0.614160358905792,0.230744227766991,0.754694640636444,-0.648269355297089,0.210383951663971,0.731768608093262,-0.638443470001221,0.186822026968002,0.746650755405426,-0.670250177383423,0.210615932941437,0.711621701717377,-0.614160358905792,0.230744227766991,0.754694640636444,-0.59280788898468,0.190979212522507,0.782371759414673,-0.6998330950737,-0.570917665958405,0.429286032915115,-0.720129907131195,-0.634536921977997,0.280670017004013,-0.798144817352295,-0.180704697966576,0.574726462364197,-0.707336962223053,0.0449778996407986,0.705444097518921,-0.712881565093994,-0.310397803783417,0.62885046005249,-0.743632555007935,-0.1464584171772,0.652349889278412,-0.6998330950737,-0.570917665958405,0.429286032915115,-0.743632555007935,-0.1464584171772,0.652349889278412,-0.644208610057831,-0.530712246894836,0.550762712955475,-0.59280788898468,0.190979212522507,0.782371759414673,-0.620472013950348,0.0354281067848206,0.783427834510803,-0.707336962223053,0.0449778996407986,0.705444097518921,-0.786325752735138,-0.0480460748076439,0.615940868854523,-0.824152171611786,-0.02346146479249,0.56588214635849,-0.805120825767517,-0.116953201591969,0.581465601921082,-0.857553124427795,-0.0946232602000237,0.505617380142212,-0.805120825767517,-0.116953201591969,0.581465601921082,-0.824152171611786,-0.02346146479249,0.56588214635849,-0.998380422592163,-0.0555867925286293,-0.0121032111346722,-0.999488711357117,-0.0159418061375618,0.0277152322232723,-0.996344745159149,0.0852642431855202,0.00520692579448223,-0.996344745159149,0.0852642431855202,0.00520692579448223, +-0.99163806438446,0.0660066232085228,-0.110891982913017,-0.998380422592163,-0.0555867925286293,-0.0121032111346722,-0.936345636844635,-0.0770668834447861,-0.342516452074051,-0.935402035713196,0.0512750223278999,-0.34984827041626,-0.970951795578003,0.0532846339046955,-0.233266472816467,-0.983838677406311,0.0838269516825676,-0.158222496509552,-0.970951795578003,0.0532846339046955,-0.233266472816467,-0.975376605987549,0.119999662041664,-0.185041829943657,-0.99163806438446,0.0660066232085228,-0.110891982913017,-0.983838677406311,0.0838269516825676,-0.158222496509552,-0.983016967773438,0.0910675376653671,-0.159324392676353,-0.967832446098328,-0.202984303236008,0.148652717471123,-0.991737008094788,-0.0574095584452152,0.114724777638912,-0.986283242702484,-0.162457957863808,0.029199980199337,-0.967832446098328,-0.202984303236008,0.148652717471123,-0.940180063247681,-0.217322558164597,0.262358903884888,-0.963054120540619,-0.103879280388355,0.248466834425926,-0.998380422592163,-0.0555867925286293,-0.0121032111346722,-0.986283242702484,-0.162457957863808,0.029199980199337,-0.999488711357117,-0.0159418061375618,0.0277152322232723,-0.940180063247681,-0.217322558164597,0.262358903884888,-0.898384988307953,-0.322263598442078,0.298413395881653,-0.905236661434174,-0.177825674414635,0.385907381772995,-0.6998330950737,-0.570917665958405,0.429286032915115,-0.506147980690002,-0.854633808135986,0.115823596715927,-0.720129907131195,-0.634536921977997,0.280670017004013,-0.265182822942734,-0.95633065700531,0.122921280562878,-0.253877282142639,-0.96718442440033,0.0100284861400723,-0.253704577684402,-0.958419978618622,0.130633071064949,-0.253877282142639,-0.96718442440033,0.0100284861400723,-0.34376472234726,-0.936299562454224,0.0718943327665329,-0.253704577684402,-0.958419978618622,0.130633071064949,-0.506147980690002,-0.854633808135986,0.115823596715927,-0.408448398113251,-0.867878019809723,0.282767564058304,-0.34376472234726,-0.936299562454224,0.0718943327665329,-0.651238143444061,-0.631153762340546,0.421347558498383,-0.763543546199799,-0.547811806201935,0.341911226511002, +-0.66901969909668,-0.686459243297577,0.284931898117065,-0.718677699565887,-0.494189828634262,0.489161163568497,-0.80349600315094,-0.436433672904968,0.404870092868805,-0.763543546199799,-0.547811806201935,0.341911226511002,-0.492289841175079,-0.840448498725891,0.226488277316093,-0.66901969909668,-0.686459243297577,0.284931898117065,-0.645231306552887,-0.746477782726288,0.162625968456268,-0.955036282539368,-0.1273153424263,0.267761796712875,-0.96682596206665,-0.218625783920288,0.132099226117134,-0.895187377929688,-0.321751713752747,0.308407813310623,-0.986592173576355,-0.163204491138458,0.000218002503970638,-0.96682596206665,-0.218625783920288,0.132099226117134,-0.997474491596222,-0.0535811148583889,0.0466217249631882,-0.895187377929688,-0.321751713752747,0.308407813310623,-0.80349600315094,-0.436433672904968,0.404870092868805,-0.814661979675293,-0.355138659477234,0.458478152751923,-0.998430728912354,-0.017044547945261,-0.0533436350524426,-0.986592173576355,-0.163204491138458,0.000218002503970638,-0.997474491596222,-0.0535811148583889,0.0466217249631882,-0.991659700870514,0.107720330357552,-0.070762112736702,-0.998430728912354,-0.017044547945261,-0.0533436350524426,-0.99646008014679,0.0839931592345238,0.00351081416010857,-0.978914320468903,0.198390051722527,-0.0486628860235214,-0.991659700870514,0.107720330357552,-0.070762112736702,-0.983323216438293,0.178004220128059,-0.0372805669903755,-0.447025656700134,-0.882981896400452,0.143216237425804,-0.311777979135513,-0.929612100124359,0.196508824825287,-0.492289841175079,-0.840448498725891,0.226488277316093,-0.447025656700134,-0.882981896400452,0.143216237425804,-0.265182822942734,-0.95633065700531,0.122921280562878,-0.311777979135513,-0.929612100124359,0.196508824825287,-0.973890900611877,0.226792708039284,0.0100759863853455,-0.98514324426651,0.166968986392021,0.0401755645871162,-0.978914320468903,0.198390051722527,-0.0486628860235214,-0.857553124427795,-0.0946232602000237,0.505617380142212,-0.905236661434174,-0.177825674414635,0.385907381772995,-0.830845594406128,-0.216008484363556,0.512870132923126, +-0.734722971916199,0.0812597051262856,0.673482656478882,-0.717174291610718,-0.0206298679113388,0.696588337421417,-0.670052587985992,0.0352894142270088,0.741474151611328,-0.75810581445694,-0.0587753504514694,0.649477362632751,-0.717174291610718,-0.0206298679113388,0.696588337421417,-0.768809676170349,0.0252159759402275,0.638980090618134,-0.786325752735138,-0.0480460748076439,0.615940868854523,-0.785086154937744,-0.0942376181483269,0.612175583839417,-0.75810581445694,-0.0587753504514694,0.649477362632751,-0.646149635314941,0.0934269279241562,0.757470786571503,-0.709019482135773,0.149786978960037,0.689097285270691,-0.638443470001221,0.186822026968002,0.746650755405426,-0.646149635314941,0.0934269279241562,0.757470786571503,-0.670052587985992,0.0352894142270088,0.741474151611328,-0.677474975585938,0.000373881717678159,0.735545635223389,-0.638443470001221,0.186822026968002,0.746650755405426,-0.592390179634094,0.250416159629822,0.765745043754578,-0.614160358905792,0.230744227766991,0.754694640636444,-0.614160358905792,0.230744227766991,0.754694640636444,-0.592390179634094,0.250416159629822,0.765745043754578,-0.59280788898468,0.190979212522507,0.782371759414673,-0.637498140335083,-0.211123317480087,0.740960896015167,-0.712881565093994,-0.310397803783417,0.62885046005249,-0.707336962223053,0.0449778996407986,0.705444097518921,-0.644208610057831,-0.530712246894836,0.550762712955475,-0.743632555007935,-0.1464584171772,0.652349889278412,-0.712881565093994,-0.310397803783417,0.62885046005249,-0.6998330950737,-0.570917665958405,0.429286032915115,-0.644208610057831,-0.530712246894836,0.550762712955475,-0.408448398113251,-0.867878019809723,0.282767564058304,-0.59280788898468,0.190979212522507,0.782371759414673,-0.509539902210236,0.0865226984024048,0.856085777282715,-0.620472013950348,0.0354281067848206,0.783427834510803,-0.620472013950348,0.0354281067848206,0.783427834510803,-0.637498140335083,-0.211123317480087,0.740960896015167,-0.707336962223053,0.0449778996407986,0.705444097518921,-0.786325752735138,-0.0480460748076439,0.615940868854523, +-0.805120825767517,-0.116953201591969,0.581465601921082,-0.785086154937744,-0.0942376181483269,0.612175583839417,-0.857553124427795,-0.0946232602000237,0.505617380142212,-0.830845594406128,-0.216008484363556,0.512870132923126,-0.805120825767517,-0.116953201591969,0.581465601921082,-0.998380422592163,-0.0555867925286293,-0.0121032111346722,-0.99163806438446,0.0660066232085228,-0.110891982913017,-0.994035243988037,-0.0977968871593475,-0.0482660718262196,-0.970951795578003,0.0532846339046955,-0.233266472816467,-0.935402035713196,0.0512750223278999,-0.34984827041626,-0.928783655166626,0.184098944067955,-0.321665018796921,-0.973963141441345,0.0716409087181091,-0.215088814496994,-0.975376605987549,0.119999662041664,-0.185041829943657,-0.970951795578003,0.0532846339046955,-0.233266472816467,-0.983016967773438,0.0910675376653671,-0.159324392676353,-0.983838677406311,0.0838269516825676,-0.158222496509552,-0.975376605987549,0.119999662041664,-0.185041829943657,-0.99163806438446,0.0660066232085228,-0.110891982913017,-0.983016967773438,0.0910675376653671,-0.159324392676353,-0.994035243988037,-0.0977968871593475,-0.0482660718262196,-0.932827770709991,-0.358040899038315,0.040483970195055,-0.967832446098328,-0.202984303236008,0.148652717471123,-0.986283242702484,-0.162457957863808,0.029199980199337,-0.967832446098328,-0.202984303236008,0.148652717471123,-0.920881509780884,-0.339583158493042,0.191469326615334,-0.940180063247681,-0.217322558164597,0.262358903884888,-0.968948245048523,-0.247171193361282,0.00674665858969092,-0.986283242702484,-0.162457957863808,0.029199980199337,-0.998380422592163,-0.0555867925286293,-0.0121032111346722,-0.920881509780884,-0.339583158493042,0.191469326615334,-0.898384988307953,-0.322263598442078,0.298413395881653,-0.940180063247681,-0.217322558164597,0.262358903884888,-0.855848908424377,-0.320610255002975,0.405871391296387,-0.905236661434174,-0.177825674414635,0.385907381772995,-0.898384988307953,-0.322263598442078,0.298413395881653,-0.506147980690002,-0.854633808135986,0.115823596715927,-0.6998330950737,-0.570917665958405,0.429286032915115, +-0.408448398113251,-0.867878019809723,0.282767564058304,-0.253704577684402,-0.958419978618622,0.130633071064949,-0.237545058131218,-0.945163726806641,0.224137887358665,-0.265182822942734,-0.95633065700531,0.122921280562878,-0.214732989668846,-0.961456656455994,0.171728521585464,-0.253704577684402,-0.958419978618622,0.130633071064949,-0.34376472234726,-0.936299562454224,0.0718943327665329,-0.34376472234726,-0.936299562454224,0.0718943327665329,-0.408448398113251,-0.867878019809723,0.282767564058304,-0.214732989668846,-0.961456656455994,0.171728521585464,-0.651238143444061,-0.631153762340546,0.421347558498383,-0.718677699565887,-0.494189828634262,0.489161163568497,-0.763543546199799,-0.547811806201935,0.341911226511002,-0.52939373254776,-0.775372266769409,0.344296336174011,-0.651238143444061,-0.631153762340546,0.421347558498383,-0.66901969909668,-0.686459243297577,0.284931898117065,-0.718677699565887,-0.494189828634262,0.489161163568497,-0.754516661167145,-0.364125370979309,0.546001076698303,-0.80349600315094,-0.436433672904968,0.404870092868805,-0.52939373254776,-0.775372266769409,0.344296336174011,-0.66901969909668,-0.686459243297577,0.284931898117065,-0.492289841175079,-0.840448498725891,0.226488277316093,-0.997474491596222,-0.0535811148583889,0.0466217249631882,-0.96682596206665,-0.218625783920288,0.132099226117134,-0.955036282539368,-0.1273153424263,0.267761796712875,-0.895187377929688,-0.321751713752747,0.308407813310623,-0.84396904706955,-0.244811117649078,0.477266848087311,-0.955036282539368,-0.1273153424263,0.267761796712875,-0.80349600315094,-0.436433672904968,0.404870092868805,-0.754516661167145,-0.364125370979309,0.546001076698303,-0.814661979675293,-0.355138659477234,0.458478152751923,-0.895187377929688,-0.321751713752747,0.308407813310623,-0.814661979675293,-0.355138659477234,0.458478152751923,-0.84396904706955,-0.244811117649078,0.477266848087311,-0.998430728912354,-0.017044547945261,-0.0533436350524426,-0.997474491596222,-0.0535811148583889,0.0466217249631882,-0.99646008014679,0.0839931592345238,0.00351081416010857, +-0.983323216438293,0.178004220128059,-0.0372805669903755,-0.991659700870514,0.107720330357552,-0.070762112736702,-0.99646008014679,0.0839931592345238,0.00351081416010857,-0.967860400676727,0.251207172870636,-0.0118780564516783,-0.978914320468903,0.198390051722527,-0.0486628860235214,-0.983323216438293,0.178004220128059,-0.0372805669903755,-0.311777979135513,-0.929612100124359,0.196508824825287,-0.394015848636627,-0.882691621780396,0.256138354539871,-0.492289841175079,-0.840448498725891,0.226488277316093,-0.237545058131218,-0.945163726806641,0.224137887358665,-0.311777979135513,-0.929612100124359,0.196508824825287,-0.265182822942734,-0.95633065700531,0.122921280562878,-0.964949667453766,0.249902233481407,0.0801306068897247,-0.98514324426651,0.166968986392021,0.0401755645871162,-0.973890900611877,0.226792708039284,0.0100759863853455,-0.973890900611877,0.226792708039284,0.0100759863853455,-0.978914320468903,0.198390051722527,-0.0486628860235214,-0.958029329776764,0.286237329244614,-0.0157435238361359,-0.855848908424377,-0.320610255002975,0.405871391296387,-0.830845594406128,-0.216008484363556,0.512870132923126,-0.905236661434174,-0.177825674414635,0.385907381772995,-0.717174291610718,-0.0206298679113388,0.696588337421417,-0.677474975585938,0.000373881717678159,0.735545635223389,-0.670052587985992,0.0352894142270088,0.741474151611328,-0.736675977706909,-0.0426608696579933,0.6748988032341,-0.717174291610718,-0.0206298679113388,0.696588337421417,-0.75810581445694,-0.0587753504514694,0.649477362632751,-0.784627258777618,-0.0478446371853352,0.618118703365326,-0.75810581445694,-0.0587753504514694,0.649477362632751,-0.785086154937744,-0.0942376181483269,0.612175583839417,-0.709019482135773,0.149786978960037,0.689097285270691,-0.646149635314941,0.0934269279241562,0.757470786571503,-0.736524641513824,0.0907081663608551,0.670301020145416,-0.709019482135773,0.149786978960037,0.689097285270691,-0.649602949619293,0.191111624240875,0.735861599445343,-0.638443470001221,0.186822026968002,0.746650755405426,-0.677474975585938,0.000373881717678159,0.735545635223389, +-0.736524641513824,0.0907081663608551,0.670301020145416,-0.646149635314941,0.0934269279241562,0.757470786571503,-0.638443470001221,0.186822026968002,0.746650755405426,-0.649602949619293,0.191111624240875,0.735861599445343,-0.592390179634094,0.250416159629822,0.765745043754578,-0.535122692584991,0.297950178384781,0.790486693382263,-0.59280788898468,0.190979212522507,0.782371759414673,-0.592390179634094,0.250416159629822,0.765745043754578,-0.637498140335083,-0.211123317480087,0.740960896015167,-0.533774435520172,-0.599851310253143,0.596039474010468,-0.712881565093994,-0.310397803783417,0.62885046005249,-0.644208610057831,-0.530712246894836,0.550762712955475,-0.712881565093994,-0.310397803783417,0.62885046005249,-0.506099164485931,-0.73201459646225,0.456090033054352,-0.644208610057831,-0.530712246894836,0.550762712955475,-0.506099164485931,-0.73201459646225,0.456090033054352,-0.408448398113251,-0.867878019809723,0.282767564058304,-0.506590962409973,0.21234293282032,0.835629045963287,-0.509539902210236,0.0865226984024048,0.856085777282715,-0.59280788898468,0.190979212522507,0.782371759414673,-0.492939531803131,-0.143014743924141,0.858229160308838,-0.620472013950348,0.0354281067848206,0.783427834510803,-0.509539902210236,0.0865226984024048,0.856085777282715,-0.492939531803131,-0.143014743924141,0.858229160308838,-0.637498140335083,-0.211123317480087,0.740960896015167,-0.620472013950348,0.0354281067848206,0.783427834510803,-0.785086154937744,-0.0942376181483269,0.612175583839417,-0.805120825767517,-0.116953201591969,0.581465601921082,-0.829346776008606,-0.134889930486679,0.542207002639771,-0.805120825767517,-0.116953201591969,0.581465601921082,-0.830845594406128,-0.216008484363556,0.512870132923126,-0.829346776008606,-0.134889930486679,0.542207002639771,-0.998380422592163,-0.0555867925286293,-0.0121032111346722,-0.994035243988037,-0.0977968871593475,-0.0482660718262196,-0.968948245048523,-0.247171193361282,0.00674665858969092,-0.973963141441345,0.0716409087181091,-0.215088814496994,-0.970951795578003,0.0532846339046955,-0.233266472816467, +-0.928783655166626,0.184098944067955,-0.321665018796921,-0.989299416542053,0.0105464737862349,-0.145517721772194,-0.975376605987549,0.119999662041664,-0.185041829943657,-0.973963141441345,0.0716409087181091,-0.215088814496994,-0.983016967773438,0.0910675376653671,-0.159324392676353,-0.975376605987549,0.119999662041664,-0.185041829943657,-0.989299416542053,0.0105464737862349,-0.145517721772194,-0.994035243988037,-0.0977968871593475,-0.0482660718262196,-0.983016967773438,0.0910675376653671,-0.159324392676353,-0.989299416542053,0.0105464737862349,-0.145517721772194,-0.932827770709991,-0.358040899038315,0.040483970195055,-0.920881509780884,-0.339583158493042,0.191469326615334,-0.967832446098328,-0.202984303236008,0.148652717471123,-0.968948245048523,-0.247171193361282,0.00674665858969092,-0.932827770709991,-0.358040899038315,0.040483970195055,-0.986283242702484,-0.162457957863808,0.029199980199337,-0.920881509780884,-0.339583158493042,0.191469326615334,-0.877155721187592,-0.432444155216217,0.20878167450428,-0.898384988307953,-0.322263598442078,0.298413395881653,-0.86280232667923,-0.42682883143425,0.270904302597046,-0.855848908424377,-0.320610255002975,0.405871391296387,-0.898384988307953,-0.322263598442078,0.298413395881653,-0.213044866919518,-0.956108033657074,0.201169833540916,-0.237545058131218,-0.945163726806641,0.224137887358665,-0.253704577684402,-0.958419978618622,0.130633071064949,-0.213044866919518,-0.956108033657074,0.201169833540916,-0.253704577684402,-0.958419978618622,0.130633071064949,-0.214732989668846,-0.961456656455994,0.171728521585464,-0.253711938858032,-0.928763866424561,0.27023658156395,-0.214732989668846,-0.961456656455994,0.171728521585464,-0.408448398113251,-0.867878019809723,0.282767564058304,-0.615224301815033,-0.585253119468689,0.528183341026306,-0.718677699565887,-0.494189828634262,0.489161163568497,-0.651238143444061,-0.631153762340546,0.421347558498383,-0.52939373254776,-0.775372266769409,0.344296336174011,-0.496228337287903,-0.726787090301514,0.474908262491226,-0.651238143444061,-0.631153762340546,0.421347558498383, +-0.621662497520447,-0.45054167509079,0.640740036964417,-0.754516661167145,-0.364125370979309,0.546001076698303,-0.718677699565887,-0.494189828634262,0.489161163568497,-0.394015848636627,-0.882691621780396,0.256138354539871,-0.52939373254776,-0.775372266769409,0.344296336174011,-0.492289841175079,-0.840448498725891,0.226488277316093,-0.997474491596222,-0.0535811148583889,0.0466217249631882,-0.955036282539368,-0.1273153424263,0.267761796712875,-0.982108354568481,0.0575344786047935,0.179312124848366,-0.84396904706955,-0.244811117649078,0.477266848087311,-0.884215950965881,-0.120330207049847,0.451312154531479,-0.955036282539368,-0.1273153424263,0.267761796712875,-0.84396904706955,-0.244811117649078,0.477266848087311,-0.814661979675293,-0.355138659477234,0.458478152751923,-0.754516661167145,-0.364125370979309,0.546001076698303,-0.997474491596222,-0.0535811148583889,0.0466217249631882,-0.982108354568481,0.0575344786047935,0.179312124848366,-0.99646008014679,0.0839931592345238,0.00351081416010857,-0.99646008014679,0.0839931592345238,0.00351081416010857,-0.972219407558441,0.201181814074516,0.119646079838276,-0.983323216438293,0.178004220128059,-0.0372805669903755,-0.967860400676727,0.251207172870636,-0.0118780564516783,-0.958029329776764,0.286237329244614,-0.0157435238361359,-0.978914320468903,0.198390051722527,-0.0486628860235214,-0.972219407558441,0.201181814074516,0.119646079838276,-0.967860400676727,0.251207172870636,-0.0118780564516783,-0.983323216438293,0.178004220128059,-0.0372805669903755,-0.394015848636627,-0.882691621780396,0.256138354539871,-0.311777979135513,-0.929612100124359,0.196508824825287,-0.286868512630463,-0.907491028308868,0.30686554312706,-0.286868512630463,-0.907491028308868,0.30686554312706,-0.311777979135513,-0.929612100124359,0.196508824825287,-0.237545058131218,-0.945163726806641,0.224137887358665,-0.964949667453766,0.249902233481407,0.0801306068897247,-0.973890900611877,0.226792708039284,0.0100759863853455,-0.943133056163788,0.32946440577507,0.0441916286945343,-0.958029329776764,0.286237329244614,-0.0157435238361359, +-0.943133056163788,0.32946440577507,0.0441916286945343,-0.973890900611877,0.226792708039284,0.0100759863853455,-0.855848908424377,-0.320610255002975,0.405871391296387,-0.845392286777496,-0.285469472408295,0.451463103294373,-0.830845594406128,-0.216008484363556,0.512870132923126,-0.736675977706909,-0.0426608696579933,0.6748988032341,-0.677474975585938,0.000373881717678159,0.735545635223389,-0.717174291610718,-0.0206298679113388,0.696588337421417,-0.736675977706909,-0.0426608696579933,0.6748988032341,-0.75810581445694,-0.0587753504514694,0.649477362632751,-0.784627258777618,-0.0478446371853352,0.618118703365326,-0.785086154937744,-0.0942376181483269,0.612175583839417,-0.81215626001358,-0.0342019572854042,0.582436501979828,-0.784627258777618,-0.0478446371853352,0.618118703365326,-0.708793759346008,0.0962651669979095,0.698816359043121,-0.709019482135773,0.149786978960037,0.689097285270691,-0.736524641513824,0.0907081663608551,0.670301020145416,-0.692429900169373,0.155857086181641,0.704449594020844,-0.649602949619293,0.191111624240875,0.735861599445343,-0.709019482135773,0.149786978960037,0.689097285270691,-0.736524641513824,0.0907081663608551,0.670301020145416,-0.677474975585938,0.000373881717678159,0.735545635223389,-0.766904890537262,0.0184888206422329,0.641494274139404,-0.592390179634094,0.250416159629822,0.765745043754578,-0.649602949619293,0.191111624240875,0.735861599445343,-0.594218671321869,0.275418907403946,0.755677461624146,-0.506590962409973,0.21234293282032,0.835629045963287,-0.59280788898468,0.190979212522507,0.782371759414673,-0.535122692584991,0.297950178384781,0.790486693382263,-0.592390179634094,0.250416159629822,0.765745043754578,-0.594218671321869,0.275418907403946,0.755677461624146,-0.535122692584991,0.297950178384781,0.790486693382263,-0.533774435520172,-0.599851310253143,0.596039474010468,-0.637498140335083,-0.211123317480087,0.740960896015167,-0.405372053384781,-0.512635171413422,0.756887376308441,-0.506099164485931,-0.73201459646225,0.456090033054352,-0.712881565093994,-0.310397803783417,0.62885046005249, +-0.533774435520172,-0.599851310253143,0.596039474010468,-0.253711938858032,-0.928763866424561,0.27023658156395,-0.408448398113251,-0.867878019809723,0.282767564058304,-0.506099164485931,-0.73201459646225,0.456090033054352,-0.509539902210236,0.0865226984024048,0.856085777282715,-0.506590962409973,0.21234293282032,0.835629045963287,-0.417913734912872,0.17672435939312,0.891132116317749,-0.509539902210236,0.0865226984024048,0.856085777282715,-0.344552218914032,-0.022103188559413,0.938506901264191,-0.492939531803131,-0.143014743924141,0.858229160308838,-0.637498140335083,-0.211123317480087,0.740960896015167,-0.492939531803131,-0.143014743924141,0.858229160308838,-0.405372053384781,-0.512635171413422,0.756887376308441,-0.81215626001358,-0.0342019572854042,0.582436501979828,-0.785086154937744,-0.0942376181483269,0.612175583839417,-0.829346776008606,-0.134889930486679,0.542207002639771,-0.836646854877472,-0.201972380280495,0.509145438671112,-0.829346776008606,-0.134889930486679,0.542207002639771,-0.830845594406128,-0.216008484363556,0.512870132923126,-0.957349896430969,-0.286737233400345,0.0355358757078648,-0.968948245048523,-0.247171193361282,0.00674665858969092,-0.994035243988037,-0.0977968871593475,-0.0482660718262196,-0.973963141441345,0.0716409087181091,-0.215088814496994,-0.981603741645813,-0.161551132798195,-0.101759493350983,-0.989299416542053,0.0105464737862349,-0.145517721772194,-0.994035243988037,-0.0977968871593475,-0.0482660718262196,-0.989299416542053,0.0105464737862349,-0.145517721772194,-0.981603741645813,-0.161551132798195,-0.101759493350983,-0.881215214729309,-0.457031279802322,0.120755143463612,-0.920881509780884,-0.339583158493042,0.191469326615334,-0.932827770709991,-0.358040899038315,0.040483970195055,-0.91700953245163,-0.398804277181625,-0.00696755526587367,-0.932827770709991,-0.358040899038315,0.040483970195055,-0.968948245048523,-0.247171193361282,0.00674665858969092,-0.881215214729309,-0.457031279802322,0.120755143463612,-0.877155721187592,-0.432444155216217,0.20878167450428,-0.920881509780884,-0.339583158493042,0.191469326615334, +-0.877155721187592,-0.432444155216217,0.20878167450428,-0.86280232667923,-0.42682883143425,0.270904302597046,-0.898384988307953,-0.322263598442078,0.298413395881653,-0.855848908424377,-0.320610255002975,0.405871391296387,-0.86280232667923,-0.42682883143425,0.270904302597046,-0.830054461956024,-0.425752431154251,0.36020040512085,-0.237545058131218,-0.945163726806641,0.224137887358665,-0.213044866919518,-0.956108033657074,0.201169833540916,-0.223504051566124,-0.931307435035706,0.287597596645355,-0.213044866919518,-0.956108033657074,0.201169833540916,-0.214732989668846,-0.961456656455994,0.171728521585464,-0.10614025592804,-0.974018394947052,0.200055703520775,-0.214732989668846,-0.961456656455994,0.171728521585464,-0.253711938858032,-0.928763866424561,0.27023658156395,-0.11535918712616,-0.964765965938568,0.236471563577652,-0.621662497520447,-0.45054167509079,0.640740036964417,-0.718677699565887,-0.494189828634262,0.489161163568497,-0.615224301815033,-0.585253119468689,0.528183341026306,-0.651238143444061,-0.631153762340546,0.421347558498383,-0.496228337287903,-0.726787090301514,0.474908262491226,-0.615224301815033,-0.585253119468689,0.528183341026306,-0.52939373254776,-0.775372266769409,0.344296336174011,-0.420710027217865,-0.837879955768585,0.347793191671371,-0.496228337287903,-0.726787090301514,0.474908262491226,-0.67288476228714,-0.307846575975418,0.672648787498474,-0.754516661167145,-0.364125370979309,0.546001076698303,-0.621662497520447,-0.45054167509079,0.640740036964417,-0.420710027217865,-0.837879955768585,0.347793191671371,-0.52939373254776,-0.775372266769409,0.344296336174011,-0.394015848636627,-0.882691621780396,0.256138354539871,-0.982108354568481,0.0575344786047935,0.179312124848366,-0.955036282539368,-0.1273153424263,0.267761796712875,-0.912093222141266,0.0257614105939865,0.409172594547272,-0.84396904706955,-0.244811117649078,0.477266848087311,-0.796981990337372,-0.0808374062180519,0.598568975925446,-0.884215950965881,-0.120330207049847,0.451312154531479,-0.912093222141266,0.0257614105939865,0.409172594547272, +-0.955036282539368,-0.1273153424263,0.267761796712875,-0.884215950965881,-0.120330207049847,0.451312154531479,-0.84396904706955,-0.244811117649078,0.477266848087311,-0.754516661167145,-0.364125370979309,0.546001076698303,-0.74137020111084,-0.211065664887428,0.637041091918945,-0.972219407558441,0.201181814074516,0.119646079838276,-0.99646008014679,0.0839931592345238,0.00351081416010857,-0.982108354568481,0.0575344786047935,0.179312124848366,-0.967860400676727,0.251207172870636,-0.0118780564516783,-0.935433924198151,0.336147397756577,0.109399616718292,-0.958029329776764,0.286237329244614,-0.0157435238361359,-0.935433924198151,0.336147397756577,0.109399616718292,-0.967860400676727,0.251207172870636,-0.0118780564516783,-0.972219407558441,0.201181814074516,0.119646079838276,-0.394015848636627,-0.882691621780396,0.256138354539871,-0.286868512630463,-0.907491028308868,0.30686554312706,-0.420710027217865,-0.837879955768585,0.347793191671371,-0.286868512630463,-0.907491028308868,0.30686554312706,-0.237545058131218,-0.945163726806641,0.224137887358665,-0.245125323534012,-0.8840691447258,0.397913604974747,-0.928602576255798,0.352295219898224,0.116555690765381,-0.964949667453766,0.249902233481407,0.0801306068897247,-0.943133056163788,0.32946440577507,0.0441916286945343,-0.958029329776764,0.286237329244614,-0.0157435238361359,-0.934933841228485,0.353427588939667,0.0314261689782143,-0.943133056163788,0.32946440577507,0.0441916286945343,-0.838005840778351,-0.36155092716217,0.408689111471176,-0.845392286777496,-0.285469472408295,0.451463103294373,-0.855848908424377,-0.320610255002975,0.405871391296387,-0.836646854877472,-0.201972380280495,0.509145438671112,-0.830845594406128,-0.216008484363556,0.512870132923126,-0.845392286777496,-0.285469472408295,0.451463103294373,-0.736675977706909,-0.0426608696579933,0.6748988032341,-0.766904890537262,0.0184888206422329,0.641494274139404,-0.677474975585938,0.000373881717678159,0.735545635223389,-0.784627258777618,-0.0478446371853352,0.618118703365326,-0.766904890537262,0.0184888206422329,0.641494274139404, +-0.736675977706909,-0.0426608696579933,0.6748988032341,-0.81215626001358,-0.0342019572854042,0.582436501979828,-0.766904890537262,0.0184888206422329,0.641494274139404,-0.784627258777618,-0.0478446371853352,0.618118703365326,-0.709019482135773,0.149786978960037,0.689097285270691,-0.708793759346008,0.0962651669979095,0.698816359043121,-0.692429900169373,0.155857086181641,0.704449594020844,-0.747022211551666,0.0434442907571793,0.663378000259399,-0.708793759346008,0.0962651669979095,0.698816359043121,-0.736524641513824,0.0907081663608551,0.670301020145416,-0.649602949619293,0.191111624240875,0.735861599445343,-0.692429900169373,0.155857086181641,0.704449594020844,-0.641817212104797,0.111245356500149,0.758745670318604,-0.762575089931488,0.0490225218236446,0.645039439201355,-0.736524641513824,0.0907081663608551,0.670301020145416,-0.766904890537262,0.0184888206422329,0.641494274139404,-0.594218671321869,0.275418907403946,0.755677461624146,-0.649602949619293,0.191111624240875,0.735861599445343,-0.552300095558167,0.241704493761063,0.797836780548096,-0.535122692584991,0.297950178384781,0.790486693382263,-0.481017529964447,0.300130903720856,0.823737502098084,-0.506590962409973,0.21234293282032,0.835629045963287,-0.496110886335373,0.349229335784912,0.794929385185242,-0.535122692584991,0.297950178384781,0.790486693382263,-0.594218671321869,0.275418907403946,0.755677461624146,-0.533774435520172,-0.599851310253143,0.596039474010468,-0.405372053384781,-0.512635171413422,0.756887376308441,-0.230309322476387,-0.834010779857636,0.501381576061249,-0.506099164485931,-0.73201459646225,0.456090033054352,-0.533774435520172,-0.599851310253143,0.596039474010468,-0.314614027738571,-0.874551177024841,0.369023203849792,-0.314614027738571,-0.874551177024841,0.369023203849792,-0.253711938858032,-0.928763866424561,0.27023658156395,-0.506099164485931,-0.73201459646225,0.456090033054352,-0.481017529964447,0.300130903720856,0.823737502098084,-0.417913734912872,0.17672435939312,0.891132116317749,-0.506590962409973,0.21234293282032,0.835629045963287, +-0.417913734912872,0.17672435939312,0.891132116317749,-0.344552218914032,-0.022103188559413,0.938506901264191,-0.509539902210236,0.0865226984024048,0.856085777282715,-0.492939531803131,-0.143014743924141,0.858229160308838,-0.344552218914032,-0.022103188559413,0.938506901264191,-0.251503795385361,-0.402564972639084,0.880163192749023,-0.492939531803131,-0.143014743924141,0.858229160308838,-0.251503795385361,-0.402564972639084,0.880163192749023,-0.405372053384781,-0.512635171413422,0.756887376308441,-0.845319807529449,-0.104571245610714,0.523926675319672,-0.81215626001358,-0.0342019572854042,0.582436501979828,-0.829346776008606,-0.134889930486679,0.542207002639771,-0.881718695163727,-0.136763527989388,0.451517134904861,-0.829346776008606,-0.134889930486679,0.542207002639771,-0.836646854877472,-0.201972380280495,0.509145438671112,-0.957349896430969,-0.286737233400345,0.0355358757078648,-0.900074124336243,-0.429503887891769,0.0734344497323036,-0.968948245048523,-0.247171193361282,0.00674665858969092,-0.981603741645813,-0.161551132798195,-0.101759493350983,-0.957349896430969,-0.286737233400345,0.0355358757078648,-0.994035243988037,-0.0977968871593475,-0.0482660718262196,-0.980799674987793,-0.142287746071815,-0.133364528417587,-0.981603741645813,-0.161551132798195,-0.101759493350983,-0.973963141441345,0.0716409087181091,-0.215088814496994,-0.881215214729309,-0.457031279802322,0.120755143463612,-0.932827770709991,-0.358040899038315,0.040483970195055,-0.884101986885071,-0.466975629329681,0.0172439813613892,-0.91700953245163,-0.398804277181625,-0.00696755526587367,-0.876194536685944,-0.481192648410797,-0.0271411500871181,-0.932827770709991,-0.358040899038315,0.040483970195055,-0.91700953245163,-0.398804277181625,-0.00696755526587367,-0.968948245048523,-0.247171193361282,0.00674665858969092,-0.900074124336243,-0.429503887891769,0.0734344497323036,-0.897467851638794,-0.412993907928467,0.154878452420235,-0.877155721187592,-0.432444155216217,0.20878167450428,-0.881215214729309,-0.457031279802322,0.120755143463612,-0.877155721187592,-0.432444155216217,0.20878167450428, +-0.897467851638794,-0.412993907928467,0.154878452420235,-0.86280232667923,-0.42682883143425,0.270904302597046,-0.86280232667923,-0.42682883143425,0.270904302597046,-0.847784221172333,-0.458609938621521,0.266343206167221,-0.830054461956024,-0.425752431154251,0.36020040512085,-0.830054461956024,-0.425752431154251,0.36020040512085,-0.838005840778351,-0.36155092716217,0.408689111471176,-0.855848908424377,-0.320610255002975,0.405871391296387,-0.213044866919518,-0.956108033657074,0.201169833540916,-0.0831226706504822,-0.947884202003479,0.307580977678299,-0.223504051566124,-0.931307435035706,0.287597596645355,-0.237545058131218,-0.945163726806641,0.224137887358665,-0.223504051566124,-0.931307435035706,0.287597596645355,-0.245125323534012,-0.8840691447258,0.397913604974747,-0.214732989668846,-0.961456656455994,0.171728521585464,-0.11535918712616,-0.964765965938568,0.236471563577652,-0.10614025592804,-0.974018394947052,0.200055703520775,-0.213044866919518,-0.956108033657074,0.201169833540916,-0.10614025592804,-0.974018394947052,0.200055703520775,-0.0831226706504822,-0.947884202003479,0.307580977678299,-0.314614027738571,-0.874551177024841,0.369023203849792,-0.11535918712616,-0.964765965938568,0.236471563577652,-0.253711938858032,-0.928763866424561,0.27023658156395,-0.621662497520447,-0.45054167509079,0.640740036964417,-0.615224301815033,-0.585253119468689,0.528183341026306,-0.562232792377472,-0.55803370475769,0.610321640968323,-0.508878111839294,-0.642900228500366,0.572470366954803,-0.615224301815033,-0.585253119468689,0.528183341026306,-0.496228337287903,-0.726787090301514,0.474908262491226,-0.420710027217865,-0.837879955768585,0.347793191671371,-0.31830295920372,-0.846238672733307,0.427274167537689,-0.496228337287903,-0.726787090301514,0.474908262491226,-0.67288476228714,-0.307846575975418,0.672648787498474,-0.74137020111084,-0.211065664887428,0.637041091918945,-0.754516661167145,-0.364125370979309,0.546001076698303,-0.621662497520447,-0.45054167509079,0.640740036964417,-0.559540629386902,-0.30947470664978,0.76885598897934, +-0.67288476228714,-0.307846575975418,0.672648787498474,-0.982108354568481,0.0575344786047935,0.179312124848366,-0.912093222141266,0.0257614105939865,0.409172594547272,-0.931698560714722,0.195349991321564,0.306228697299957,-0.74137020111084,-0.211065664887428,0.637041091918945,-0.796981990337372,-0.0808374062180519,0.598568975925446,-0.84396904706955,-0.244811117649078,0.477266848087311,-0.796981990337372,-0.0808374062180519,0.598568975925446,-0.912093222141266,0.0257614105939865,0.409172594547272,-0.884215950965881,-0.120330207049847,0.451312154531479,-0.982108354568481,0.0575344786047935,0.179312124848366,-0.931698560714722,0.195349991321564,0.306228697299957,-0.972219407558441,0.201181814074516,0.119646079838276,-0.935433924198151,0.336147397756577,0.109399616718292,-0.934933841228485,0.353427588939667,0.0314261689782143,-0.958029329776764,0.286237329244614,-0.0157435238361359,-0.904667496681213,0.315384298563004,0.286547273397446,-0.935433924198151,0.336147397756577,0.109399616718292,-0.972219407558441,0.201181814074516,0.119646079838276,-0.420710027217865,-0.837879955768585,0.347793191671371,-0.286868512630463,-0.907491028308868,0.30686554312706,-0.31830295920372,-0.846238672733307,0.427274167537689,-0.286868512630463,-0.907491028308868,0.30686554312706,-0.245125323534012,-0.8840691447258,0.397913604974747,-0.22806017100811,-0.868450582027435,0.44020676612854,-0.943133056163788,0.32946440577507,0.0441916286945343,-0.947691798210144,0.313144117593765,0.0618131756782532,-0.928602576255798,0.352295219898224,0.116555690765381,-0.943133056163788,0.32946440577507,0.0441916286945343,-0.934933841228485,0.353427588939667,0.0314261689782143,-0.938436806201935,0.343973100185394,0.0319183133542538,-0.838005840778351,-0.36155092716217,0.408689111471176,-0.909922122955322,-0.278977364301682,0.306941896677017,-0.845392286777496,-0.285469472408295,0.451463103294373,-0.836646854877472,-0.201972380280495,0.509145438671112,-0.845392286777496,-0.285469472408295,0.451463103294373,-0.901951670646667,-0.183267995715141,0.39101904630661, +-0.81215626001358,-0.0342019572854042,0.582436501979828,-0.788596153259277,-0.0109866885468364,0.614813148975372,-0.766904890537262,0.0184888206422329,0.641494274139404,-0.641817212104797,0.111245356500149,0.758745670318604,-0.692429900169373,0.155857086181641,0.704449594020844,-0.708793759346008,0.0962651669979095,0.698816359043121,-0.708793759346008,0.0962651669979095,0.698816359043121,-0.747022211551666,0.0434442907571793,0.663378000259399,-0.679345011711121,-0.031563077121973,0.73313981294632,-0.747022211551666,0.0434442907571793,0.663378000259399,-0.736524641513824,0.0907081663608551,0.670301020145416,-0.762575089931488,0.0490225218236446,0.645039439201355,-0.641817212104797,0.111245356500149,0.758745670318604,-0.564114451408386,0.138426467776299,0.814010322093964,-0.649602949619293,0.191111624240875,0.735861599445343,-0.788596153259277,-0.0109866885468364,0.614813148975372,-0.762575089931488,0.0490225218236446,0.645039439201355,-0.766904890537262,0.0184888206422329,0.641494274139404,-0.649602949619293,0.191111624240875,0.735861599445343,-0.564114451408386,0.138426467776299,0.814010322093964,-0.552300095558167,0.241704493761063,0.797836780548096,-0.496110886335373,0.349229335784912,0.794929385185242,-0.594218671321869,0.275418907403946,0.755677461624146,-0.552300095558167,0.241704493761063,0.797836780548096,-0.496110886335373,0.349229335784912,0.794929385185242,-0.481017529964447,0.300130903720856,0.823737502098084,-0.535122692584991,0.297950178384781,0.790486693382263,-0.230309322476387,-0.834010779857636,0.501381576061249,-0.405372053384781,-0.512635171413422,0.756887376308441,-0.161895647644997,-0.741974830627441,0.650586724281311,-0.314614027738571,-0.874551177024841,0.369023203849792,-0.533774435520172,-0.599851310253143,0.596039474010468,-0.230309322476387,-0.834010779857636,0.501381576061249,-0.481017529964447,0.300130903720856,0.823737502098084,-0.407306104898453,0.326726704835892,0.852848887443542,-0.417913734912872,0.17672435939312,0.891132116317749,-0.417913734912872,0.17672435939312,0.891132116317749, +-0.255362570285797,0.147216036915779,0.955571711063385,-0.344552218914032,-0.022103188559413,0.938506901264191,-0.000222532078623772,-0.181408226490021,0.98340779542923,-0.251503795385361,-0.402564972639084,0.880163192749023,-0.344552218914032,-0.022103188559413,0.938506901264191,-0.251503795385361,-0.402564972639084,0.880163192749023,-0.161895647644997,-0.741974830627441,0.650586724281311,-0.405372053384781,-0.512635171413422,0.756887376308441,-0.845319807529449,-0.104571245610714,0.523926675319672,-0.786965131759644,-0.107311755418777,0.607593536376953,-0.81215626001358,-0.0342019572854042,0.582436501979828,-0.881718695163727,-0.136763527989388,0.451517134904861,-0.845319807529449,-0.104571245610714,0.523926675319672,-0.829346776008606,-0.134889930486679,0.542207002639771,-0.836646854877472,-0.201972380280495,0.509145438671112,-0.901951670646667,-0.183267995715141,0.39101904630661,-0.881718695163727,-0.136763527989388,0.451517134904861,-0.900074124336243,-0.429503887891769,0.0734344497323036,-0.957349896430969,-0.286737233400345,0.0355358757078648,-0.879407942295074,-0.464226096868515,0.105525769293308,-0.981603741645813,-0.161551132798195,-0.101759493350983,-0.921282112598419,-0.379481106996536,-0.0850483253598213,-0.957349896430969,-0.286737233400345,0.0355358757078648,-0.980799674987793,-0.142287746071815,-0.133364528417587,-0.921282112598419,-0.379481106996536,-0.0850483253598213,-0.981603741645813,-0.161551132798195,-0.101759493350983,-0.97564959526062,0.00685996934771538,-0.219227507710457,-0.980799674987793,-0.142287746071815,-0.133364528417587,-0.973963141441345,0.0716409087181091,-0.215088814496994,-0.876194536685944,-0.481192648410797,-0.0271411500871181,-0.884101986885071,-0.466975629329681,0.0172439813613892,-0.932827770709991,-0.358040899038315,0.040483970195055,-0.908652901649475,-0.417551398277283,0.000796466309111565,-0.881215214729309,-0.457031279802322,0.120755143463612,-0.884101986885071,-0.466975629329681,0.0172439813613892,-0.91700953245163,-0.398804277181625,-0.00696755526587367,-0.900074124336243,-0.429503887891769,0.0734344497323036, +-0.876194536685944,-0.481192648410797,-0.0271411500871181,-0.908652901649475,-0.417551398277283,0.000796466309111565,-0.897467851638794,-0.412993907928467,0.154878452420235,-0.881215214729309,-0.457031279802322,0.120755143463612,-0.847784221172333,-0.458609938621521,0.266343206167221,-0.86280232667923,-0.42682883143425,0.270904302597046,-0.897467851638794,-0.412993907928467,0.154878452420235,-0.830054461956024,-0.425752431154251,0.36020040512085,-0.847784221172333,-0.458609938621521,0.266343206167221,-0.845972001552582,-0.416474580764771,0.332986891269684,-0.830054461956024,-0.425752431154251,0.36020040512085,-0.860646784305573,-0.400201410055161,0.31484255194664,-0.838005840778351,-0.36155092716217,0.408689111471176,-0.187359720468521,-0.867031514644623,0.46168452501297,-0.223504051566124,-0.931307435035706,0.287597596645355,-0.0831226706504822,-0.947884202003479,0.307580977678299,-0.187359720468521,-0.867031514644623,0.46168452501297,-0.245125323534012,-0.8840691447258,0.397913604974747,-0.223504051566124,-0.931307435035706,0.287597596645355,-0.11535918712616,-0.964765965938568,0.236471563577652,0.0280215330421925,-0.971082389354706,0.237094193696976,-0.10614025592804,-0.974018394947052,0.200055703520775,0.0280215330421925,-0.971082389354706,0.237094193696976,-0.0831226706504822,-0.947884202003479,0.307580977678299,-0.10614025592804,-0.974018394947052,0.200055703520775,-0.314614027738571,-0.874551177024841,0.369023203849792,-0.230309322476387,-0.834010779857636,0.501381576061249,-0.11535918712616,-0.964765965938568,0.236471563577652,-0.508878111839294,-0.642900228500366,0.572470366954803,-0.562232792377472,-0.55803370475769,0.610321640968323,-0.615224301815033,-0.585253119468689,0.528183341026306,-0.562232792377472,-0.55803370475769,0.610321640968323,-0.461818367242813,-0.569500207901001,0.679994940757751,-0.621662497520447,-0.45054167509079,0.640740036964417,-0.355412781238556,-0.700944662094116,0.61835116147995,-0.508878111839294,-0.642900228500366,0.572470366954803,-0.496228337287903,-0.726787090301514,0.474908262491226, +-0.31830295920372,-0.846238672733307,0.427274167537689,-0.33849972486496,-0.784184694290161,0.520069360733032,-0.496228337287903,-0.726787090301514,0.474908262491226,-0.74137020111084,-0.211065664887428,0.637041091918945,-0.67288476228714,-0.307846575975418,0.672648787498474,-0.638000190258026,-0.165173903107643,0.752112448215485,-0.559540629386902,-0.30947470664978,0.76885598897934,-0.621662497520447,-0.45054167509079,0.640740036964417,-0.421766430139542,-0.448150038719177,0.788209676742554,-0.638000190258026,-0.165173903107643,0.752112448215485,-0.67288476228714,-0.307846575975418,0.672648787498474,-0.559540629386902,-0.30947470664978,0.76885598897934,-0.912093222141266,0.0257614105939865,0.409172594547272,-0.864504337310791,0.16521942615509,0.474694401025772,-0.931698560714722,0.195349991321564,0.306228697299957,-0.74137020111084,-0.211065664887428,0.637041091918945,-0.670338213443756,-0.0496103353798389,0.740395307540894,-0.796981990337372,-0.0808374062180519,0.598568975925446,-0.912093222141266,0.0257614105939865,0.409172594547272,-0.796981990337372,-0.0808374062180519,0.598568975925446,-0.81617796421051,0.0340377055108547,0.576797008514404,-0.904667496681213,0.315384298563004,0.286547273397446,-0.972219407558441,0.201181814074516,0.119646079838276,-0.931698560714722,0.195349991321564,0.306228697299957,-0.935433924198151,0.336147397756577,0.109399616718292,-0.946791529655457,0.317356437444687,0.0535776130855083,-0.934933841228485,0.353427588939667,0.0314261689782143,-0.898111879825592,0.357958078384399,0.255462139844894,-0.935433924198151,0.336147397756577,0.109399616718292,-0.904667496681213,0.315384298563004,0.286547273397446,-0.31830295920372,-0.846238672733307,0.427274167537689,-0.286868512630463,-0.907491028308868,0.30686554312706,-0.22806017100811,-0.868450582027435,0.44020676612854,-0.245125323534012,-0.8840691447258,0.397913604974747,-0.193102195858955,-0.788150250911713,0.584406197071075,-0.22806017100811,-0.868450582027435,0.44020676612854,-0.947691798210144,0.313144117593765,0.0618131756782532,-0.943133056163788,0.32946440577507,0.0441916286945343, +-0.938436806201935,0.343973100185394,0.0319183133542538,-0.938436806201935,0.343973100185394,0.0319183133542538,-0.934933841228485,0.353427588939667,0.0314261689782143,-0.946791529655457,0.317356437444687,0.0535776130855083,-0.909922122955322,-0.278977364301682,0.306941896677017,-0.838005840778351,-0.36155092716217,0.408689111471176,-0.860646784305573,-0.400201410055161,0.31484255194664,-0.845392286777496,-0.285469472408295,0.451463103294373,-0.909922122955322,-0.278977364301682,0.306941896677017,-0.901951670646667,-0.183267995715141,0.39101904630661,-0.81215626001358,-0.0342019572854042,0.582436501979828,-0.786965131759644,-0.107311755418777,0.607593536376953,-0.788596153259277,-0.0109866885468364,0.614813148975372,-0.708793759346008,0.0962651669979095,0.698816359043121,-0.61540699005127,0.011033559218049,0.788132190704346,-0.641817212104797,0.111245356500149,0.758745670318604,-0.679345011711121,-0.031563077121973,0.73313981294632,-0.747022211551666,0.0434442907571793,0.663378000259399,-0.747290134429932,-0.055997796356678,0.662134051322937,-0.708793759346008,0.0962651669979095,0.698816359043121,-0.679345011711121,-0.031563077121973,0.73313981294632,-0.61540699005127,0.011033559218049,0.788132190704346,-0.747290134429932,-0.055997796356678,0.662134051322937,-0.747022211551666,0.0434442907571793,0.663378000259399,-0.762575089931488,0.0490225218236446,0.645039439201355,-0.586202621459961,0.0473357290029526,0.808780372142792,-0.564114451408386,0.138426467776299,0.814010322093964,-0.641817212104797,0.111245356500149,0.758745670318604,-0.747290134429932,-0.055997796356678,0.662134051322937,-0.762575089931488,0.0490225218236446,0.645039439201355,-0.788596153259277,-0.0109866885468364,0.614813148975372,-0.552300095558167,0.241704493761063,0.797836780548096,-0.564114451408386,0.138426467776299,0.814010322093964,-0.424647182226181,0.208214685320854,0.881090939044952,-0.552300095558167,0.241704493761063,0.797836780548096,-0.437147319316864,0.307760179042816,0.845095098018646,-0.496110886335373,0.349229335784912,0.794929385185242, +-0.496110886335373,0.349229335784912,0.794929385185242,-0.407306104898453,0.326726704835892,0.852848887443542,-0.481017529964447,0.300130903720856,0.823737502098084,-0.230309322476387,-0.834010779857636,0.501381576061249,-0.161895647644997,-0.741974830627441,0.650586724281311,0.0133547401055694,-0.934127688407898,0.356688976287842,-0.255362570285797,0.147216036915779,0.955571711063385,-0.417913734912872,0.17672435939312,0.891132116317749,-0.407306104898453,0.326726704835892,0.852848887443542,-0.255362570285797,0.147216036915779,0.955571711063385,-0.000222532078623772,-0.181408226490021,0.98340779542923,-0.344552218914032,-0.022103188559413,0.938506901264191,-0.251503795385361,-0.402564972639084,0.880163192749023,-0.000222532078623772,-0.181408226490021,0.98340779542923,0.0249655302613974,-0.705653250217438,0.708117246627808,0.0249655302613974,-0.705653250217438,0.708117246627808,-0.161895647644997,-0.741974830627441,0.650586724281311,-0.251503795385361,-0.402564972639084,0.880163192749023,-0.809113085269928,-0.166176706552505,0.563667595386505,-0.786965131759644,-0.107311755418777,0.607593536376953,-0.845319807529449,-0.104571245610714,0.523926675319672,-0.845319807529449,-0.104571245610714,0.523926675319672,-0.881718695163727,-0.136763527989388,0.451517134904861,-0.89298951625824,-0.142765656113625,0.426834285259247,-0.901951670646667,-0.183267995715141,0.39101904630661,-0.89298951625824,-0.142765656113625,0.426834285259247,-0.881718695163727,-0.136763527989388,0.451517134904861,-0.879407942295074,-0.464226096868515,0.105525769293308,-0.957349896430969,-0.286737233400345,0.0355358757078648,-0.921282112598419,-0.379481106996536,-0.0850483253598213,-0.87491774559021,-0.477767139673233,0.0791043341159821,-0.900074124336243,-0.429503887891769,0.0734344497323036,-0.879407942295074,-0.464226096868515,0.105525769293308,-0.922467708587646,-0.385115921497345,-0.0271854046732187,-0.921282112598419,-0.379481106996536,-0.0850483253598213,-0.980799674987793,-0.142287746071815,-0.133364528417587,-0.97564959526062,0.00685996934771538,-0.219227507710457, +-0.972794651985168,-0.176005840301514,-0.150640055537224,-0.980799674987793,-0.142287746071815,-0.133364528417587,-0.908652901649475,-0.417551398277283,0.000796466309111565,-0.884101986885071,-0.466975629329681,0.0172439813613892,-0.876194536685944,-0.481192648410797,-0.0271411500871181,-0.876194536685944,-0.481192648410797,-0.0271411500871181,-0.900074124336243,-0.429503887891769,0.0734344497323036,-0.87491774559021,-0.477767139673233,0.0791043341159821,-0.908652901649475,-0.417551398277283,0.000796466309111565,-0.985582292079926,-0.158176735043526,0.0600632205605507,-0.897467851638794,-0.412993907928467,0.154878452420235,-0.847784221172333,-0.458609938621521,0.266343206167221,-0.897467851638794,-0.412993907928467,0.154878452420235,-0.902978479862213,-0.32312074303627,0.283236116170883,-0.902978479862213,-0.32312074303627,0.283236116170883,-0.845972001552582,-0.416474580764771,0.332986891269684,-0.847784221172333,-0.458609938621521,0.266343206167221,-0.845972001552582,-0.416474580764771,0.332986891269684,-0.860646784305573,-0.400201410055161,0.31484255194664,-0.830054461956024,-0.425752431154251,0.36020040512085,-0.187359720468521,-0.867031514644623,0.46168452501297,-0.0831226706504822,-0.947884202003479,0.307580977678299,-0.0248570181429386,-0.882409632205963,0.4698246717453,-0.187359720468521,-0.867031514644623,0.46168452501297,-0.240062043070793,-0.729385316371918,0.640599012374878,-0.245125323534012,-0.8840691447258,0.397913604974747,0.0133547401055694,-0.934127688407898,0.356688976287842,0.0280215330421925,-0.971082389354706,0.237094193696976,-0.11535918712616,-0.964765965938568,0.236471563577652,0.0794781520962715,-0.935034155845642,0.345534652471542,-0.0831226706504822,-0.947884202003479,0.307580977678299,0.0280215330421925,-0.971082389354706,0.237094193696976,-0.230309322476387,-0.834010779857636,0.501381576061249,0.0133547401055694,-0.934127688407898,0.356688976287842,-0.11535918712616,-0.964765965938568,0.236471563577652,-0.508878111839294,-0.642900228500366,0.572470366954803,-0.461818367242813,-0.569500207901001,0.679994940757751, +-0.562232792377472,-0.55803370475769,0.610321640968323,-0.421766430139542,-0.448150038719177,0.788209676742554,-0.621662497520447,-0.45054167509079,0.640740036964417,-0.461818367242813,-0.569500207901001,0.679994940757751,-0.355412781238556,-0.700944662094116,0.61835116147995,-0.461818367242813,-0.569500207901001,0.679994940757751,-0.508878111839294,-0.642900228500366,0.572470366954803,-0.355412781238556,-0.700944662094116,0.61835116147995,-0.496228337287903,-0.726787090301514,0.474908262491226,-0.33849972486496,-0.784184694290161,0.520069360733032,-0.33849972486496,-0.784184694290161,0.520069360733032,-0.31830295920372,-0.846238672733307,0.427274167537689,-0.204492017626762,-0.789357602596283,0.57887601852417,-0.74137020111084,-0.211065664887428,0.637041091918945,-0.638000190258026,-0.165173903107643,0.752112448215485,-0.670338213443756,-0.0496103353798389,0.740395307540894,-0.559540629386902,-0.30947470664978,0.76885598897934,-0.421766430139542,-0.448150038719177,0.788209676742554,-0.429255992174149,-0.304186016321182,0.85041755437851,-0.485773950815201,-0.175980359315872,0.856185972690582,-0.638000190258026,-0.165173903107643,0.752112448215485,-0.559540629386902,-0.30947470664978,0.76885598897934,-0.912093222141266,0.0257614105939865,0.409172594547272,-0.81617796421051,0.0340377055108547,0.576797008514404,-0.864504337310791,0.16521942615509,0.474694401025772,-0.864504337310791,0.16521942615509,0.474694401025772,-0.856477737426758,0.293374717235565,0.424708157777786,-0.931698560714722,0.195349991321564,0.306228697299957,-0.71229475736618,0.0687990859150887,0.698500335216522,-0.796981990337372,-0.0808374062180519,0.598568975925446,-0.670338213443756,-0.0496103353798389,0.740395307540894,-0.71229475736618,0.0687990859150887,0.698500335216522,-0.81617796421051,0.0340377055108547,0.576797008514404,-0.796981990337372,-0.0808374062180519,0.598568975925446,-0.904667496681213,0.315384298563004,0.286547273397446,-0.931698560714722,0.195349991321564,0.306228697299957,-0.856477737426758,0.293374717235565,0.424708157777786, +-0.935433924198151,0.336147397756577,0.109399616718292,-0.931539058685303,0.325978964567184,0.161160409450531,-0.946791529655457,0.317356437444687,0.0535776130855083,-0.935433924198151,0.336147397756577,0.109399616718292,-0.898111879825592,0.357958078384399,0.255462139844894,-0.931539058685303,0.325978964567184,0.161160409450531,-0.904667496681213,0.315384298563004,0.286547273397446,-0.856556355953217,0.333289265632629,0.393991500139236,-0.898111879825592,0.357958078384399,0.255462139844894,-0.31830295920372,-0.846238672733307,0.427274167537689,-0.22806017100811,-0.868450582027435,0.44020676612854,-0.204492017626762,-0.789357602596283,0.57887601852417,-0.240062043070793,-0.729385316371918,0.640599012374878,-0.193102195858955,-0.788150250911713,0.584406197071075,-0.245125323534012,-0.8840691447258,0.397913604974747,-0.193102195858955,-0.788150250911713,0.584406197071075,-0.204492017626762,-0.789357602596283,0.57887601852417,-0.22806017100811,-0.868450582027435,0.44020676612854,-0.973407804965973,0.228985190391541,-0.00655555864796042,-0.947691798210144,0.313144117593765,0.0618131756782532,-0.938436806201935,0.343973100185394,0.0319183133542538,-0.946791529655457,0.317356437444687,0.0535776130855083,-0.973407804965973,0.228985190391541,-0.00655555864796042,-0.938436806201935,0.343973100185394,0.0319183133542538,-0.909922122955322,-0.278977364301682,0.306941896677017,-0.860646784305573,-0.400201410055161,0.31484255194664,-0.945751249790192,-0.268298715353012,0.183221772313118,-0.901951670646667,-0.183267995715141,0.39101904630661,-0.909922122955322,-0.278977364301682,0.306941896677017,-0.939859449863434,-0.201391190290451,0.275872588157654,-0.786965131759644,-0.107311755418777,0.607593536376953,-0.747290134429932,-0.055997796356678,0.662134051322937,-0.788596153259277,-0.0109866885468364,0.614813148975372,-0.586202621459961,0.0473357290029526,0.808780372142792,-0.641817212104797,0.111245356500149,0.758745670318604,-0.61540699005127,0.011033559218049,0.788132190704346,-0.747290134429932,-0.055997796356678,0.662134051322937, +-0.659739136695862,-0.156674206256866,0.734981179237366,-0.679345011711121,-0.031563077121973,0.73313981294632,-0.61540699005127,0.011033559218049,0.788132190704346,-0.679345011711121,-0.031563077121973,0.73313981294632,-0.583084046840668,-0.117145501077175,0.803921461105347,-0.586202621459961,0.0473357290029526,0.808780372142792,-0.491149574518204,0.0290989298373461,0.870589017868042,-0.564114451408386,0.138426467776299,0.814010322093964,-0.424647182226181,0.208214685320854,0.881090939044952,-0.564114451408386,0.138426467776299,0.814010322093964,-0.419893085956573,0.107097044587135,0.901232421398163,-0.424647182226181,0.208214685320854,0.881090939044952,-0.437147319316864,0.307760179042816,0.845095098018646,-0.552300095558167,0.241704493761063,0.797836780548096,-0.437147319316864,0.307760179042816,0.845095098018646,-0.391205668449402,0.390579551458359,0.833310008049011,-0.496110886335373,0.349229335784912,0.794929385185242,-0.496110886335373,0.349229335784912,0.794929385185242,-0.391205668449402,0.390579551458359,0.833310008049011,-0.407306104898453,0.326726704835892,0.852848887443542,-0.161895647644997,-0.741974830627441,0.650586724281311,0.0249655302613974,-0.705653250217438,0.708117246627808,0.0133547401055694,-0.934127688407898,0.356688976287842,-0.255362570285797,0.147216036915779,0.955571711063385,-0.407306104898453,0.326726704835892,0.852848887443542,-0.268640220165253,0.293113261461258,0.917560279369354,-0.000222532078623772,-0.181408226490021,0.98340779542923,-0.255362570285797,0.147216036915779,0.955571711063385,-0.100234031677246,0.17830066382885,0.978857457637787,0.0249655302613974,-0.705653250217438,0.708117246627808,-0.000222532078623772,-0.181408226490021,0.98340779542923,0.258479475975037,-0.644706308841705,0.719403982162476,-0.809113085269928,-0.166176706552505,0.563667595386505,-0.752646744251251,-0.250057578086853,0.609092652797699,-0.786965131759644,-0.107311755418777,0.607593536376953,-0.845319807529449,-0.104571245610714,0.523926675319672,-0.821337878704071,-0.223755598068237,0.52472597360611, +-0.809113085269928,-0.166176706552505,0.563667595386505,-0.845319807529449,-0.104571245610714,0.523926675319672,-0.89298951625824,-0.142765656113625,0.426834285259247,-0.821337878704071,-0.223755598068237,0.52472597360611,-0.901951670646667,-0.183267995715141,0.39101904630661,-0.939859449863434,-0.201391190290451,0.275872588157654,-0.89298951625824,-0.142765656113625,0.426834285259247,-0.921282112598419,-0.379481106996536,-0.0850483253598213,-0.855482399463654,-0.516571879386902,-0.0361000224947929,-0.879407942295074,-0.464226096868515,0.105525769293308,-0.87491774559021,-0.477767139673233,0.0791043341159821,-0.879407942295074,-0.464226096868515,0.105525769293308,-0.925198137760162,-0.367181688547134,0.0958434864878654,-0.922467708587646,-0.385115921497345,-0.0271854046732187,-0.890122354030609,-0.443630337715149,-0.104279391467571,-0.921282112598419,-0.379481106996536,-0.0850483253598213,-0.972794651985168,-0.176005840301514,-0.150640055537224,-0.922467708587646,-0.385115921497345,-0.0271854046732187,-0.980799674987793,-0.142287746071815,-0.133364528417587,-0.908652901649475,-0.417551398277283,0.000796466309111565,-0.876194536685944,-0.481192648410797,-0.0271411500871181,-0.87491774559021,-0.477767139673233,0.0791043341159821,-0.967908799648285,-0.250819057226181,-0.0155643885955215,-0.985582292079926,-0.158176735043526,0.0600632205605507,-0.908652901649475,-0.417551398277283,0.000796466309111565,-0.985582292079926,-0.158176735043526,0.0600632205605507,-0.95309042930603,-0.244332432746887,0.178662210702896,-0.897467851638794,-0.412993907928467,0.154878452420235,-0.902978479862213,-0.32312074303627,0.283236116170883,-0.897467851638794,-0.412993907928467,0.154878452420235,-0.95309042930603,-0.244332432746887,0.178662210702896,-0.869588136672974,-0.320752561092377,0.375411957502365,-0.845972001552582,-0.416474580764771,0.332986891269684,-0.902978479862213,-0.32312074303627,0.283236116170883,-0.919317424297333,-0.353955268859863,0.171962484717369,-0.860646784305573,-0.400201410055161,0.31484255194664,-0.845972001552582,-0.416474580764771,0.332986891269684, +-0.0248570181429386,-0.882409632205963,0.4698246717453,-0.0831226706504822,-0.947884202003479,0.307580977678299,0.0794781520962715,-0.935034155845642,0.345534652471542,-0.0248570181429386,-0.882409632205963,0.4698246717453,-0.159057646989822,-0.77085816860199,0.61682915687561,-0.187359720468521,-0.867031514644623,0.46168452501297,-0.159057646989822,-0.77085816860199,0.61682915687561,-0.240062043070793,-0.729385316371918,0.640599012374878,-0.187359720468521,-0.867031514644623,0.46168452501297,0.0133547401055694,-0.934127688407898,0.356688976287842,0.132750734686852,-0.955186009407043,0.264569163322449,0.0280215330421925,-0.971082389354706,0.237094193696976,0.0280215330421925,-0.971082389354706,0.237094193696976,0.132750734686852,-0.955186009407043,0.264569163322449,0.0794781520962715,-0.935034155845642,0.345534652471542,-0.421766430139542,-0.448150038719177,0.788209676742554,-0.461818367242813,-0.569500207901001,0.679994940757751,-0.265833467245102,-0.58505117893219,0.76619029045105,-0.355412781238556,-0.700944662094116,0.61835116147995,-0.265833467245102,-0.58505117893219,0.76619029045105,-0.461818367242813,-0.569500207901001,0.679994940757751,-0.33849972486496,-0.784184694290161,0.520069360733032,-0.204492017626762,-0.789357602596283,0.57887601852417,-0.355412781238556,-0.700944662094116,0.61835116147995,-0.638000190258026,-0.165173903107643,0.752112448215485,-0.533387899398804,-0.0554981790482998,0.844048142433167,-0.670338213443756,-0.0496103353798389,0.740395307540894,-0.421766430139542,-0.448150038719177,0.788209676742554,-0.315355479717255,-0.337088316679001,0.887086272239685,-0.429255992174149,-0.304186016321182,0.85041755437851,-0.559540629386902,-0.30947470664978,0.76885598897934,-0.429255992174149,-0.304186016321182,0.85041755437851,-0.485773950815201,-0.175980359315872,0.856185972690582,-0.485773950815201,-0.175980359315872,0.856185972690582,-0.533387899398804,-0.0554981790482998,0.844048142433167,-0.638000190258026,-0.165173903107643,0.752112448215485,-0.785117924213409,0.137828260660172,0.603815495967865, +-0.864504337310791,0.16521942615509,0.474694401025772,-0.81617796421051,0.0340377055108547,0.576797008514404,-0.856477737426758,0.293374717235565,0.424708157777786,-0.864504337310791,0.16521942615509,0.474694401025772,-0.797862589359283,0.265399694442749,0.541274547576904,-0.71229475736618,0.0687990859150887,0.698500335216522,-0.670338213443756,-0.0496103353798389,0.740395307540894,-0.639463245868683,0.0425189211964607,0.767644941806793,-0.71229475736618,0.0687990859150887,0.698500335216522,-0.785117924213409,0.137828260660172,0.603815495967865,-0.81617796421051,0.0340377055108547,0.576797008514404,-0.856477737426758,0.293374717235565,0.424708157777786,-0.856556355953217,0.333289265632629,0.393991500139236,-0.904667496681213,0.315384298563004,0.286547273397446,-0.931539058685303,0.325978964567184,0.161160409450531,-0.956552267074585,0.273353815078735,0.101416699588299,-0.946791529655457,0.317356437444687,0.0535776130855083,-0.898111879825592,0.357958078384399,0.255462139844894,-0.90650737285614,0.289069801568985,0.307706028223038,-0.931539058685303,0.325978964567184,0.161160409450531,-0.90650737285614,0.289069801568985,0.307706028223038,-0.898111879825592,0.357958078384399,0.255462139844894,-0.856556355953217,0.333289265632629,0.393991500139236,-0.240062043070793,-0.729385316371918,0.640599012374878,-0.117450304329395,-0.608814537525177,0.784570097923279,-0.193102195858955,-0.788150250911713,0.584406197071075,-0.193102195858955,-0.788150250911713,0.584406197071075,-0.0917210280895233,-0.691962897777557,0.716082751750946,-0.204492017626762,-0.789357602596283,0.57887601852417,-0.947691798210144,0.313144117593765,0.0618131756782532,-0.973407804965973,0.228985190391541,-0.00655555864796042,-0.989172875881195,0.145022228360176,-0.0224830806255341,-0.976025640964508,0.211822226643562,0.0500526316463947,-0.973407804965973,0.228985190391541,-0.00655555864796042,-0.946791529655457,0.317356437444687,0.0535776130855083,-0.919317424297333,-0.353955268859863,0.171962484717369,-0.945751249790192,-0.268298715353012,0.183221772313118, +-0.860646784305573,-0.400201410055161,0.31484255194664,-0.939859449863434,-0.201391190290451,0.275872588157654,-0.909922122955322,-0.278977364301682,0.306941896677017,-0.945751249790192,-0.268298715353012,0.183221772313118,-0.786965131759644,-0.107311755418777,0.607593536376953,-0.707186818122864,-0.199117928743362,0.678408920764923,-0.747290134429932,-0.055997796356678,0.662134051322937,-0.586202621459961,0.0473357290029526,0.808780372142792,-0.61540699005127,0.011033559218049,0.788132190704346,-0.528379261493683,-0.0590198896825314,0.846954524517059,-0.707186818122864,-0.199117928743362,0.678408920764923,-0.659739136695862,-0.156674206256866,0.734981179237366,-0.747290134429932,-0.055997796356678,0.662134051322937,-0.583084046840668,-0.117145501077175,0.803921461105347,-0.679345011711121,-0.031563077121973,0.73313981294632,-0.659739136695862,-0.156674206256866,0.734981179237366,-0.61540699005127,0.011033559218049,0.788132190704346,-0.583084046840668,-0.117145501077175,0.803921461105347,-0.528379261493683,-0.0590198896825314,0.846954524517059,-0.491149574518204,0.0290989298373461,0.870589017868042,-0.586202621459961,0.0473357290029526,0.808780372142792,-0.528379261493683,-0.0590198896825314,0.846954524517059,-0.419893085956573,0.107097044587135,0.901232421398163,-0.564114451408386,0.138426467776299,0.814010322093964,-0.491149574518204,0.0290989298373461,0.870589017868042,-0.419893085956573,0.107097044587135,0.901232421398163,-0.268716245889664,0.065463088452816,0.960992217063904,-0.424647182226181,0.208214685320854,0.881090939044952,-0.424647182226181,0.208214685320854,0.881090939044952,-0.349242955446243,0.316517025232315,0.881955862045288,-0.437147319316864,0.307760179042816,0.845095098018646,-0.437147319316864,0.307760179042816,0.845095098018646,-0.349242955446243,0.316517025232315,0.881955862045288,-0.391205668449402,0.390579551458359,0.833310008049011,-0.391205668449402,0.390579551458359,0.833310008049011,-0.37548840045929,0.390668332576752,0.840468049049377,-0.407306104898453,0.326726704835892,0.852848887443542, +0.21228401362896,-0.904967486858368,0.368740141391754,0.0133547401055694,-0.934127688407898,0.356688976287842,0.0249655302613974,-0.705653250217438,0.708117246627808,-0.407306104898453,0.326726704835892,0.852848887443542,-0.37548840045929,0.390668332576752,0.840468049049377,-0.268640220165253,0.293113261461258,0.917560279369354,-0.255362570285797,0.147216036915779,0.955571711063385,-0.268640220165253,0.293113261461258,0.917560279369354,-0.100234031677246,0.17830066382885,0.978857457637787,-0.000222532078623772,-0.181408226490021,0.98340779542923,-0.100234031677246,0.17830066382885,0.978857457637787,-0.0575255528092384,0.0805123373866081,0.995092213153839,0.258479475975037,-0.644706308841705,0.719403982162476,-0.000222532078623772,-0.181408226490021,0.98340779542923,0.134433314204216,-0.369357347488403,0.919512212276459,0.21228401362896,-0.904967486858368,0.368740141391754,0.0249655302613974,-0.705653250217438,0.708117246627808,0.258479475975037,-0.644706308841705,0.719403982162476,-0.752646744251251,-0.250057578086853,0.609092652797699,-0.809113085269928,-0.166176706552505,0.563667595386505,-0.821337878704071,-0.223755598068237,0.52472597360611,-0.707186818122864,-0.199117928743362,0.678408920764923,-0.786965131759644,-0.107311755418777,0.607593536376953,-0.752646744251251,-0.250057578086853,0.609092652797699,-0.874639987945557,-0.228994607925415,0.427277714014053,-0.821337878704071,-0.223755598068237,0.52472597360611,-0.89298951625824,-0.142765656113625,0.426834285259247,-0.939859449863434,-0.201391190290451,0.275872588157654,-0.874639987945557,-0.228994607925415,0.427277714014053,-0.89298951625824,-0.142765656113625,0.426834285259247,-0.890122354030609,-0.443630337715149,-0.104279391467571,-0.855482399463654,-0.516571879386902,-0.0361000224947929,-0.921282112598419,-0.379481106996536,-0.0850483253598213,-0.879407942295074,-0.464226096868515,0.105525769293308,-0.855482399463654,-0.516571879386902,-0.0361000224947929,-0.886423587799072,-0.462832659482956,0.00624919217079878,-0.879407942295074,-0.464226096868515,0.105525769293308, +-0.886423587799072,-0.462832659482956,0.00624919217079878,-0.925198137760162,-0.367181688547134,0.0958434864878654,-0.955056726932526,-0.292380452156067,0.0487876683473587,-0.87491774559021,-0.477767139673233,0.0791043341159821,-0.925198137760162,-0.367181688547134,0.0958434864878654,-0.922467708587646,-0.385115921497345,-0.0271854046732187,-0.904262363910675,-0.425751477479935,0.0323279947042465,-0.890122354030609,-0.443630337715149,-0.104279391467571,-0.922467708587646,-0.385115921497345,-0.0271854046732187,-0.972794651985168,-0.176005840301514,-0.150640055537224,-0.914900958538055,-0.397404700517654,-0.0708918124437332,-0.908652901649475,-0.417551398277283,0.000796466309111565,-0.87491774559021,-0.477767139673233,0.0791043341159821,-0.955056726932526,-0.292380452156067,0.0487876683473587,-0.955056726932526,-0.292380452156067,0.0487876683473587,-0.985582292079926,-0.158176735043526,0.0600632205605507,-0.967908799648285,-0.250819057226181,-0.0155643885955215,-0.955056726932526,-0.292380452156067,0.0487876683473587,-0.967908799648285,-0.250819057226181,-0.0155643885955215,-0.908652901649475,-0.417551398277283,0.000796466309111565,-0.985582292079926,-0.158176735043526,0.0600632205605507,-0.966801345348358,-0.173617571592331,0.187488555908203,-0.95309042930603,-0.244332432746887,0.178662210702896,-0.902978479862213,-0.32312074303627,0.283236116170883,-0.95309042930603,-0.244332432746887,0.178662210702896,-0.966801345348358,-0.173617571592331,0.187488555908203,-0.870681405067444,-0.358289659023285,0.336960524320602,-0.845972001552582,-0.416474580764771,0.332986891269684,-0.869588136672974,-0.320752561092377,0.375411957502365,-0.902612924575806,-0.321676522493362,0.286031484603882,-0.869588136672974,-0.320752561092377,0.375411957502365,-0.902978479862213,-0.32312074303627,0.283236116170883,-0.919317424297333,-0.353955268859863,0.171962484717369,-0.845972001552582,-0.416474580764771,0.332986891269684,-0.870681405067444,-0.358289659023285,0.336960524320602,-0.0248570181429386,-0.882409632205963,0.4698246717453,0.0794781520962715,-0.935034155845642,0.345534652471542, +0.0339960530400276,-0.905721426010132,0.422507911920547,-0.120726093649864,-0.841359615325928,0.526819884777069,-0.159057646989822,-0.77085816860199,0.61682915687561,-0.0248570181429386,-0.882409632205963,0.4698246717453,-0.159057646989822,-0.77085816860199,0.61682915687561,-0.311220496892929,-0.650453209877014,0.692858040332794,-0.240062043070793,-0.729385316371918,0.640599012374878,0.0133547401055694,-0.934127688407898,0.356688976287842,0.21228401362896,-0.904967486858368,0.368740141391754,0.132750734686852,-0.955186009407043,0.264569163322449,0.132750734686852,-0.955186009407043,0.264569163322449,0.103886775672436,-0.937629818916321,0.331749528646469,0.0794781520962715,-0.935034155845642,0.345534652471542,-0.265833467245102,-0.58505117893219,0.76619029045105,-0.221324145793915,-0.478553652763367,0.849706947803497,-0.421766430139542,-0.448150038719177,0.788209676742554,-0.160368695855141,-0.681132018566132,0.714381456375122,-0.265833467245102,-0.58505117893219,0.76619029045105,-0.355412781238556,-0.700944662094116,0.61835116147995,-0.160368695855141,-0.681132018566132,0.714381456375122,-0.355412781238556,-0.700944662094116,0.61835116147995,-0.204492017626762,-0.789357602596283,0.57887601852417,-0.541262090206146,0.0466440618038177,0.839559137821198,-0.670338213443756,-0.0496103353798389,0.740395307540894,-0.533387899398804,-0.0554981790482998,0.844048142433167,-0.421766430139542,-0.448150038719177,0.788209676742554,-0.221324145793915,-0.478553652763367,0.849706947803497,-0.315355479717255,-0.337088316679001,0.887086272239685,-0.429255992174149,-0.304186016321182,0.85041755437851,-0.315355479717255,-0.337088316679001,0.887086272239685,-0.333547294139862,-0.160275027155876,0.929009139537811,-0.485773950815201,-0.175980359315872,0.856185972690582,-0.429255992174149,-0.304186016321182,0.85041755437851,-0.333547294139862,-0.160275027155876,0.929009139537811,-0.485773950815201,-0.175980359315872,0.856185972690582,-0.332847476005554,-0.00625935615971684,0.942959845066071,-0.533387899398804,-0.0554981790482998,0.844048142433167, +-0.785117924213409,0.137828260660172,0.603815495967865,-0.797862589359283,0.265399694442749,0.541274547576904,-0.864504337310791,0.16521942615509,0.474694401025772,-0.856477737426758,0.293374717235565,0.424708157777786,-0.797862589359283,0.265399694442749,0.541274547576904,-0.817449927330017,0.312048941850662,0.484149694442749,-0.639463245868683,0.0425189211964607,0.767644941806793,-0.670338213443756,-0.0496103353798389,0.740395307540894,-0.541262090206146,0.0466440618038177,0.839559137821198,-0.639463245868683,0.0425189211964607,0.767644941806793,-0.609024703502655,0.124334946274757,0.783345103263855,-0.71229475736618,0.0687990859150887,0.698500335216522,-0.71229475736618,0.0687990859150887,0.698500335216522,-0.7224041223526,0.21569912135601,0.656967222690582,-0.785117924213409,0.137828260660172,0.603815495967865,-0.856477737426758,0.293374717235565,0.424708157777786,-0.817449927330017,0.312048941850662,0.484149694442749,-0.856556355953217,0.333289265632629,0.393991500139236,-0.931539058685303,0.325978964567184,0.161160409450531,-0.952524244785309,0.248371452093124,0.176093950867653,-0.956552267074585,0.273353815078735,0.101416699588299,-0.976025640964508,0.211822226643562,0.0500526316463947,-0.946791529655457,0.317356437444687,0.0535776130855083,-0.956552267074585,0.273353815078735,0.101416699588299,-0.952524244785309,0.248371452093124,0.176093950867653,-0.931539058685303,0.325978964567184,0.161160409450531,-0.90650737285614,0.289069801568985,0.307706028223038,-0.851010918617249,0.286840945482254,0.439889192581177,-0.90650737285614,0.289069801568985,0.307706028223038,-0.856556355953217,0.333289265632629,0.393991500139236,-0.240062043070793,-0.729385316371918,0.640599012374878,-0.311442196369171,-0.5627521276474,0.765711188316345,-0.117450304329395,-0.608814537525177,0.784570097923279,-0.0917210280895233,-0.691962897777557,0.716082751750946,-0.193102195858955,-0.788150250911713,0.584406197071075,-0.117450304329395,-0.608814537525177,0.784570097923279,-0.0917210280895233,-0.691962897777557,0.716082751750946,-0.160368695855141,-0.681132018566132,0.714381456375122, +-0.204492017626762,-0.789357602596283,0.57887601852417,-0.99073052406311,0.135765254497528,0.00454626651480794,-0.989172875881195,0.145022228360176,-0.0224830806255341,-0.973407804965973,0.228985190391541,-0.00655555864796042,-0.976025640964508,0.211822226643562,0.0500526316463947,-0.99073052406311,0.135765254497528,0.00454626651480794,-0.973407804965973,0.228985190391541,-0.00655555864796042,-0.919317424297333,-0.353955268859863,0.171962484717369,-0.936547458171844,-0.317928344011307,0.147649303078651,-0.945751249790192,-0.268298715353012,0.183221772313118,-0.939859449863434,-0.201391190290451,0.275872588157654,-0.945751249790192,-0.268298715353012,0.183221772313118,-0.936547458171844,-0.317928344011307,0.147649303078651,-0.707186818122864,-0.199117928743362,0.678408920764923,-0.606944262981415,-0.257777363061905,0.751777470111847,-0.659739136695862,-0.156674206256866,0.734981179237366,-0.543933987617493,-0.226032257080078,0.808112025260925,-0.583084046840668,-0.117145501077175,0.803921461105347,-0.659739136695862,-0.156674206256866,0.734981179237366,-0.583084046840668,-0.117145501077175,0.803921461105347,-0.485561192035675,-0.164276078343391,0.858628869056702,-0.528379261493683,-0.0590198896825314,0.846954524517059,-0.491149574518204,0.0290989298373461,0.870589017868042,-0.528379261493683,-0.0590198896825314,0.846954524517059,-0.410580158233643,-0.0835713595151901,0.907986581325531,-0.419893085956573,0.107097044587135,0.901232421398163,-0.491149574518204,0.0290989298373461,0.870589017868042,-0.330683946609497,0.00279602431692183,0.943737387657166,-0.419893085956573,0.107097044587135,0.901232421398163,-0.330683946609497,0.00279602431692183,0.943737387657166,-0.268716245889664,0.065463088452816,0.960992217063904,-0.262401670217514,0.239789396524429,0.934690475463867,-0.424647182226181,0.208214685320854,0.881090939044952,-0.268716245889664,0.065463088452816,0.960992217063904,-0.262401670217514,0.239789396524429,0.934690475463867,-0.349242955446243,0.316517025232315,0.881955862045288,-0.424647182226181,0.208214685320854,0.881090939044952, +-0.316746473312378,0.344269782304764,0.883826792240143,-0.391205668449402,0.390579551458359,0.833310008049011,-0.349242955446243,0.316517025232315,0.881955862045288,-0.37548840045929,0.390668332576752,0.840468049049377,-0.391205668449402,0.390579551458359,0.833310008049011,-0.371394574642181,0.404316991567612,0.835819244384766,-0.268640220165253,0.293113261461258,0.917560279369354,-0.37548840045929,0.390668332576752,0.840468049049377,-0.258713394403458,0.307821571826935,0.915594398975372,-0.268640220165253,0.293113261461258,0.917560279369354,-0.258713394403458,0.307821571826935,0.915594398975372,-0.100234031677246,0.17830066382885,0.978857457637787,-0.0575255528092384,0.0805123373866081,0.995092213153839,-0.100234031677246,0.17830066382885,0.978857457637787,-0.258713394403458,0.307821571826935,0.915594398975372,-0.000222532078623772,-0.181408226490021,0.98340779542923,-0.0575255528092384,0.0805123373866081,0.995092213153839,0.134433314204216,-0.369357347488403,0.919512212276459,0.187145814299583,-0.747763097286224,0.637045323848724,0.258479475975037,-0.644706308841705,0.719403982162476,0.134433314204216,-0.369357347488403,0.919512212276459,0.187145814299583,-0.747763097286224,0.637045323848724,0.21228401362896,-0.904967486858368,0.368740141391754,0.258479475975037,-0.644706308841705,0.719403982162476,-0.752646744251251,-0.250057578086853,0.609092652797699,-0.821337878704071,-0.223755598068237,0.52472597360611,-0.714942812919617,-0.344419896602631,0.608466506004334,-0.707186818122864,-0.199117928743362,0.678408920764923,-0.752646744251251,-0.250057578086853,0.609092652797699,-0.648642063140869,-0.305748224258423,0.696980118751526,-0.874639987945557,-0.228994607925415,0.427277714014053,-0.792150020599365,-0.327905476093292,0.514758348464966,-0.821337878704071,-0.223755598068237,0.52472597360611,-0.939859449863434,-0.201391190290451,0.275872588157654,-0.865722477436066,-0.340495824813843,0.36686110496521,-0.874639987945557,-0.228994607925415,0.427277714014053,-0.886423587799072,-0.462832659482956,0.00624919217079878, +-0.855482399463654,-0.516571879386902,-0.0361000224947929,-0.890122354030609,-0.443630337715149,-0.104279391467571,-0.925198137760162,-0.367181688547134,0.0958434864878654,-0.886423587799072,-0.462832659482956,0.00624919217079878,-0.976969838142395,-0.210535049438477,-0.0347117707133293,-0.955056726932526,-0.292380452156067,0.0487876683473587,-0.925198137760162,-0.367181688547134,0.0958434864878654,-0.987748503684998,-0.151689380407333,0.0366489291191101,-0.922467708587646,-0.385115921497345,-0.0271854046732187,-0.877952337265015,-0.471072256565094,0.0853830352425575,-0.904262363910675,-0.425751477479935,0.0323279947042465,-0.890122354030609,-0.443630337715149,-0.104279391467571,-0.904262363910675,-0.425751477479935,0.0323279947042465,-0.972106218338013,-0.224105924367905,-0.069180004298687,-0.914900958538055,-0.397404700517654,-0.0708918124437332,-0.877952337265015,-0.471072256565094,0.0853830352425575,-0.922467708587646,-0.385115921497345,-0.0271854046732187,-0.987748503684998,-0.151689380407333,0.0366489291191101,-0.985582292079926,-0.158176735043526,0.0600632205605507,-0.955056726932526,-0.292380452156067,0.0487876683473587,-0.966801345348358,-0.173617571592331,0.187488555908203,-0.985582292079926,-0.158176735043526,0.0600632205605507,-0.986225187778473,-0.142211183905602,0.0844738632440567,-0.902978479862213,-0.32312074303627,0.283236116170883,-0.966801345348358,-0.173617571592331,0.187488555908203,-0.902612924575806,-0.321676522493362,0.286031484603882,-0.869588136672974,-0.320752561092377,0.375411957502365,-0.838177680969238,-0.398348182439804,0.372527658939362,-0.870681405067444,-0.358289659023285,0.336960524320602,-0.902612924575806,-0.321676522493362,0.286031484603882,-0.838177680969238,-0.398348182439804,0.372527658939362,-0.869588136672974,-0.320752561092377,0.375411957502365,-0.870681405067444,-0.358289659023285,0.336960524320602,-0.902516543865204,-0.389200478792191,0.18435500562191,-0.919317424297333,-0.353955268859863,0.171962484717369,0.0794781520962715,-0.935034155845642,0.345534652471542,0.103886775672436,-0.937629818916321,0.331749528646469, +0.0339960530400276,-0.905721426010132,0.422507911920547,-0.0248570181429386,-0.882409632205963,0.4698246717453,0.0339960530400276,-0.905721426010132,0.422507911920547,-0.120726093649864,-0.841359615325928,0.526819884777069,-0.264339983463287,-0.75688761472702,0.59770005941391,-0.159057646989822,-0.77085816860199,0.61682915687561,-0.120726093649864,-0.841359615325928,0.526819884777069,-0.264339983463287,-0.75688761472702,0.59770005941391,-0.311220496892929,-0.650453209877014,0.692858040332794,-0.159057646989822,-0.77085816860199,0.61682915687561,-0.311442196369171,-0.5627521276474,0.765711188316345,-0.240062043070793,-0.729385316371918,0.640599012374878,-0.311220496892929,-0.650453209877014,0.692858040332794,0.132750734686852,-0.955186009407043,0.264569163322449,0.21228401362896,-0.904967486858368,0.368740141391754,0.235866621136665,-0.937104284763336,0.257298201322556,0.132750734686852,-0.955186009407043,0.264569163322449,0.235866621136665,-0.937104284763336,0.257298201322556,0.103886775672436,-0.937629818916321,0.331749528646469,-0.0545575730502605,-0.568345487117767,0.820979118347168,-0.221324145793915,-0.478553652763367,0.849706947803497,-0.265833467245102,-0.58505117893219,0.76619029045105,-0.160368695855141,-0.681132018566132,0.714381456375122,-0.0545575730502605,-0.568345487117767,0.820979118347168,-0.265833467245102,-0.58505117893219,0.76619029045105,-0.541262090206146,0.0466440618038177,0.839559137821198,-0.533387899398804,-0.0554981790482998,0.844048142433167,-0.332847476005554,-0.00625935615971684,0.942959845066071,-0.159406751394272,-0.372307956218719,0.914317309856415,-0.315355479717255,-0.337088316679001,0.887086272239685,-0.221324145793915,-0.478553652763367,0.849706947803497,-0.333547294139862,-0.160275027155876,0.929009139537811,-0.315355479717255,-0.337088316679001,0.887086272239685,-0.170054286718369,-0.184920772910118,0.96792858839035,-0.485773950815201,-0.175980359315872,0.856185972690582,-0.333547294139862,-0.160275027155876,0.929009139537811,-0.332847476005554,-0.00625935615971684,0.942959845066071, +-0.785117924213409,0.137828260660172,0.603815495967865,-0.7224041223526,0.21569912135601,0.656967222690582,-0.797862589359283,0.265399694442749,0.541274547576904,-0.797862589359283,0.265399694442749,0.541274547576904,-0.77959531545639,0.274822622537613,0.562764167785645,-0.817449927330017,0.312048941850662,0.484149694442749,-0.639463245868683,0.0425189211964607,0.767644941806793,-0.541262090206146,0.0466440618038177,0.839559137821198,-0.609024703502655,0.124334946274757,0.783345103263855,-0.71229475736618,0.0687990859150887,0.698500335216522,-0.609024703502655,0.124334946274757,0.783345103263855,-0.660376369953156,0.181795820593834,0.728596687316895,-0.71229475736618,0.0687990859150887,0.698500335216522,-0.660376369953156,0.181795820593834,0.728596687316895,-0.7224041223526,0.21569912135601,0.656967222690582,-0.856556355953217,0.333289265632629,0.393991500139236,-0.817449927330017,0.312048941850662,0.484149694442749,-0.851010918617249,0.286840945482254,0.439889192581177,-0.976025640964508,0.211822226643562,0.0500526316463947,-0.956552267074585,0.273353815078735,0.101416699588299,-0.952524244785309,0.248371452093124,0.176093950867653,-0.90650737285614,0.289069801568985,0.307706028223038,-0.939968168735504,0.226348981261253,0.255393445491791,-0.952524244785309,0.248371452093124,0.176093950867653,-0.90650737285614,0.289069801568985,0.307706028223038,-0.851010918617249,0.286840945482254,0.439889192581177,-0.873543322086334,0.251532018184662,0.416717648506165,-0.117450304329395,-0.608814537525177,0.784570097923279,-0.311442196369171,-0.5627521276474,0.765711188316345,-0.316868543624878,-0.54790735244751,0.774203896522522,-0.117450304329395,-0.608814537525177,0.784570097923279,-0.0545575730502605,-0.568345487117767,0.820979118347168,-0.0917210280895233,-0.691962897777557,0.716082751750946,-0.0917210280895233,-0.691962897777557,0.716082751750946,-0.0545575730502605,-0.568345487117767,0.820979118347168,-0.160368695855141,-0.681132018566132,0.714381456375122,-0.99073052406311,0.135765254497528,0.00454626651480794,-0.996621310710907,0.0806679129600525,0.015437563881278, +-0.989172875881195,0.145022228360176,-0.0224830806255341,-0.977718949317932,0.165586292743683,0.129021376371384,-0.99073052406311,0.135765254497528,0.00454626651480794,-0.976025640964508,0.211822226643562,0.0500526316463947,-0.919317424297333,-0.353955268859863,0.171962484717369,-0.894809484481812,-0.442018151283264,0.062735989689827,-0.936547458171844,-0.317928344011307,0.147649303078651,-0.865722477436066,-0.340495824813843,0.36686110496521,-0.939859449863434,-0.201391190290451,0.275872588157654,-0.936547458171844,-0.317928344011307,0.147649303078651,-0.707186818122864,-0.199117928743362,0.678408920764923,-0.648642063140869,-0.305748224258423,0.696980118751526,-0.606944262981415,-0.257777363061905,0.751777470111847,-0.659739136695862,-0.156674206256866,0.734981179237366,-0.606944262981415,-0.257777363061905,0.751777470111847,-0.543933987617493,-0.226032257080078,0.808112025260925,-0.583084046840668,-0.117145501077175,0.803921461105347,-0.543933987617493,-0.226032257080078,0.808112025260925,-0.485561192035675,-0.164276078343391,0.858628869056702,-0.485561192035675,-0.164276078343391,0.858628869056702,-0.410580158233643,-0.0835713595151901,0.907986581325531,-0.528379261493683,-0.0590198896825314,0.846954524517059,-0.410580158233643,-0.0835713595151901,0.907986581325531,-0.330683946609497,0.00279602431692183,0.943737387657166,-0.491149574518204,0.0290989298373461,0.870589017868042,-0.330683946609497,0.00279602431692183,0.943737387657166,-0.307492941617966,-0.000989729189313948,0.951549768447876,-0.268716245889664,0.065463088452816,0.960992217063904,-0.134237572550774,0.144600585103035,0.980342209339142,-0.262401670217514,0.239789396524429,0.934690475463867,-0.268716245889664,0.065463088452816,0.960992217063904,-0.349242955446243,0.316517025232315,0.881955862045288,-0.262401670217514,0.239789396524429,0.934690475463867,-0.316746473312378,0.344269782304764,0.883826792240143,-0.391205668449402,0.390579551458359,0.833310008049011,-0.316746473312378,0.344269782304764,0.883826792240143,-0.371394574642181,0.404316991567612,0.835819244384766, +-0.37548840045929,0.390668332576752,0.840468049049377,-0.371394574642181,0.404316991567612,0.835819244384766,-0.352701604366302,0.398748874664307,0.846522748470306,-0.37548840045929,0.390668332576752,0.840468049049377,-0.352701604366302,0.398748874664307,0.846522748470306,-0.258713394403458,0.307821571826935,0.915594398975372,-0.0575255528092384,0.0805123373866081,0.995092213153839,-0.258713394403458,0.307821571826935,0.915594398975372,-0.219009876251221,0.156062394380569,0.963160991668701,0.134433314204216,-0.369357347488403,0.919512212276459,-0.0575255528092384,0.0805123373866081,0.995092213153839,-0.0668829083442688,-0.266791701316834,0.961430609226227,0.134433314204216,-0.369357347488403,0.919512212276459,-0.0668829083442688,-0.266791701316834,0.961430609226227,0.187145814299583,-0.747763097286224,0.637045323848724,0.309207260608673,-0.892958760261536,0.327132225036621,0.21228401362896,-0.904967486858368,0.368740141391754,0.187145814299583,-0.747763097286224,0.637045323848724,-0.714942812919617,-0.344419896602631,0.608466506004334,-0.821337878704071,-0.223755598068237,0.52472597360611,-0.792150020599365,-0.327905476093292,0.514758348464966,-0.648642063140869,-0.305748224258423,0.696980118751526,-0.752646744251251,-0.250057578086853,0.609092652797699,-0.714942812919617,-0.344419896602631,0.608466506004334,-0.865722477436066,-0.340495824813843,0.36686110496521,-0.792150020599365,-0.327905476093292,0.514758348464966,-0.874639987945557,-0.228994607925415,0.427277714014053,-0.886423587799072,-0.462832659482956,0.00624919217079878,-0.890122354030609,-0.443630337715149,-0.104279391467571,-0.976969838142395,-0.210535049438477,-0.0347117707133293,-0.925198137760162,-0.367181688547134,0.0958434864878654,-0.976969838142395,-0.210535049438477,-0.0347117707133293,-0.987748503684998,-0.151689380407333,0.0366489291191101,-0.904262363910675,-0.425751477479935,0.0323279947042465,-0.877952337265015,-0.471072256565094,0.0853830352425575,-0.876016616821289,-0.481814712285995,0.0212000235915184,-0.929570436477661,-0.360879004001617,-0.0752665624022484, +-0.972106218338013,-0.224105924367905,-0.069180004298687,-0.904262363910675,-0.425751477479935,0.0323279947042465,-0.972106218338013,-0.224105924367905,-0.069180004298687,-0.976969838142395,-0.210535049438477,-0.0347117707133293,-0.890122354030609,-0.443630337715149,-0.104279391467571,-0.914900958538055,-0.397404700517654,-0.0708918124437332,-0.876016616821289,-0.481814712285995,0.0212000235915184,-0.877952337265015,-0.471072256565094,0.0853830352425575,-0.987748503684998,-0.151689380407333,0.0366489291191101,-0.994364559650421,-0.106013096868992,-0.000468091922812164,-0.985582292079926,-0.158176735043526,0.0600632205605507,-0.994364559650421,-0.106013096868992,-0.000468091922812164,-0.986225187778473,-0.142211183905602,0.0844738632440567,-0.985582292079926,-0.158176735043526,0.0600632205605507,-0.939115345478058,-0.313076287508011,0.141582489013672,-0.966801345348358,-0.173617571592331,0.187488555908203,-0.986225187778473,-0.142211183905602,0.0844738632440567,-0.902612924575806,-0.321676522493362,0.286031484603882,-0.966801345348358,-0.173617571592331,0.187488555908203,-0.939115345478058,-0.313076287508011,0.141582489013672,-0.850687563419342,-0.410945057868958,0.327802896499634,-0.870681405067444,-0.358289659023285,0.336960524320602,-0.838177680969238,-0.398348182439804,0.372527658939362,-0.902612924575806,-0.321676522493362,0.286031484603882,-0.842254877090454,-0.463426917791367,0.275394469499588,-0.838177680969238,-0.398348182439804,0.372527658939362,-0.870681405067444,-0.358289659023285,0.336960524320602,-0.850687563419342,-0.410945057868958,0.327802896499634,-0.902516543865204,-0.389200478792191,0.18435500562191,-0.902516543865204,-0.389200478792191,0.18435500562191,-0.894809484481812,-0.442018151283264,0.062735989689827,-0.919317424297333,-0.353955268859863,0.171962484717369,0.0339960530400276,-0.905721426010132,0.422507911920547,0.103886775672436,-0.937629818916321,0.331749528646469,-0.0516670271754265,-0.885850787162781,0.461084455251694,0.0339960530400276,-0.905721426010132,0.422507911920547,-0.0516670271754265,-0.885850787162781,0.461084455251694, +-0.120726093649864,-0.841359615325928,0.526819884777069,-0.120726093649864,-0.841359615325928,0.526819884777069,-0.233427867293358,-0.805611252784729,0.544519782066345,-0.264339983463287,-0.75688761472702,0.59770005941391,-0.381684064865112,-0.685339033603668,0.62018346786499,-0.311220496892929,-0.650453209877014,0.692858040332794,-0.264339983463287,-0.75688761472702,0.59770005941391,-0.311442196369171,-0.5627521276474,0.765711188316345,-0.311220496892929,-0.650453209877014,0.692858040332794,-0.476949721574783,-0.588280618190765,0.653027296066284,0.21228401362896,-0.904967486858368,0.368740141391754,0.309207260608673,-0.892958760261536,0.327132225036621,0.235866621136665,-0.937104284763336,0.257298201322556,0.185308039188385,-0.937187433242798,0.295534431934357,0.103886775672436,-0.937629818916321,0.331749528646469,0.235866621136665,-0.937104284763336,0.257298201322556,-0.000438769377069548,-0.435010224580765,0.900425314903259,-0.221324145793915,-0.478553652763367,0.849706947803497,-0.0545575730502605,-0.568345487117767,0.820979118347168,-0.541262090206146,0.0466440618038177,0.839559137821198,-0.332847476005554,-0.00625935615971684,0.942959845066071,-0.505686044692993,0.0685915276408196,0.859986424446106,-0.170054286718369,-0.184920772910118,0.96792858839035,-0.315355479717255,-0.337088316679001,0.887086272239685,-0.159406751394272,-0.372307956218719,0.914317309856415,-0.000438769377069548,-0.435010224580765,0.900425314903259,-0.159406751394272,-0.372307956218719,0.914317309856415,-0.221324145793915,-0.478553652763367,0.849706947803497,-0.333547294139862,-0.160275027155876,0.929009139537811,-0.170054286718369,-0.184920772910118,0.96792858839035,-0.14349602162838,-0.0420509576797485,0.988757073879242,-0.332847476005554,-0.00625935615971684,0.942959845066071,-0.333547294139862,-0.160275027155876,0.929009139537811,-0.14349602162838,-0.0420509576797485,0.988757073879242,-0.797862589359283,0.265399694442749,0.541274547576904,-0.7224041223526,0.21569912135601,0.656967222690582,-0.77959531545639,0.274822622537613,0.562764167785645, +-0.77959531545639,0.274822622537613,0.562764167785645,-0.842009246349335,0.245880663394928,0.480169773101807,-0.817449927330017,0.312048941850662,0.484149694442749,-0.609024703502655,0.124334946274757,0.783345103263855,-0.541262090206146,0.0466440618038177,0.839559137821198,-0.505686044692993,0.0685915276408196,0.859986424446106,-0.631421983242035,0.155574113130569,0.759672820568085,-0.660376369953156,0.181795820593834,0.728596687316895,-0.609024703502655,0.124334946274757,0.783345103263855,-0.713835060596466,0.211449533700943,0.667628943920136,-0.7224041223526,0.21569912135601,0.656967222690582,-0.660376369953156,0.181795820593834,0.728596687316895,-0.851010918617249,0.286840945482254,0.439889192581177,-0.817449927330017,0.312048941850662,0.484149694442749,-0.842009246349335,0.245880663394928,0.480169773101807,-0.977718949317932,0.165586292743683,0.129021376371384,-0.976025640964508,0.211822226643562,0.0500526316463947,-0.952524244785309,0.248371452093124,0.176093950867653,-0.90650737285614,0.289069801568985,0.307706028223038,-0.912084579467773,0.244884178042412,0.328835994005203,-0.939968168735504,0.226348981261253,0.255393445491791,-0.977718949317932,0.165586292743683,0.129021376371384,-0.952524244785309,0.248371452093124,0.176093950867653,-0.939968168735504,0.226348981261253,0.255393445491791,-0.842009246349335,0.245880663394928,0.480169773101807,-0.873543322086334,0.251532018184662,0.416717648506165,-0.851010918617249,0.286840945482254,0.439889192581177,-0.912084579467773,0.244884178042412,0.328835994005203,-0.90650737285614,0.289069801568985,0.307706028223038,-0.873543322086334,0.251532018184662,0.416717648506165,-0.316868543624878,-0.54790735244751,0.774203896522522,-0.311442196369171,-0.5627521276474,0.765711188316345,-0.476949721574783,-0.588280618190765,0.653027296066284,-0.102676451206207,-0.529469907283783,0.842092037200928,-0.117450304329395,-0.608814537525177,0.784570097923279,-0.316868543624878,-0.54790735244751,0.774203896522522,-0.102676451206207,-0.529469907283783,0.842092037200928,-0.0545575730502605,-0.568345487117767,0.820979118347168, +-0.117450304329395,-0.608814537525177,0.784570097923279,-0.996621310710907,0.0806679129600525,0.015437563881278,-0.99073052406311,0.135765254497528,0.00454626651480794,-0.977718949317932,0.165586292743683,0.129021376371384,-0.997194766998291,0.0435187071561813,-0.0608982443809509,-0.989172875881195,0.145022228360176,-0.0224830806255341,-0.996621310710907,0.0806679129600525,0.015437563881278,-0.936547458171844,-0.317928344011307,0.147649303078651,-0.894809484481812,-0.442018151283264,0.062735989689827,-0.887850999832153,-0.445970982313156,0.113271556794643,-0.865722477436066,-0.340495824813843,0.36686110496521,-0.936547458171844,-0.317928344011307,0.147649303078651,-0.865857660770416,-0.434330075979233,0.248289838433266,-0.648642063140869,-0.305748224258423,0.696980118751526,-0.557210743427277,-0.323591679334641,0.764725089073181,-0.606944262981415,-0.257777363061905,0.751777470111847,-0.543933987617493,-0.226032257080078,0.808112025260925,-0.606944262981415,-0.257777363061905,0.751777470111847,-0.541048347949982,-0.288172662258148,0.790077865123749,-0.543933987617493,-0.226032257080078,0.808112025260925,-0.492140918970108,-0.215332821011543,0.843462467193604,-0.485561192035675,-0.164276078343391,0.858628869056702,-0.485561192035675,-0.164276078343391,0.858628869056702,-0.487584918737412,-0.152450397610664,0.859662532806396,-0.410580158233643,-0.0835713595151901,0.907986581325531,-0.410580158233643,-0.0835713595151901,0.907986581325531,-0.374421834945679,-0.0617099590599537,0.92520272731781,-0.330683946609497,0.00279602431692183,0.943737387657166,-0.330683946609497,0.00279602431692183,0.943737387657166,-0.374421834945679,-0.0617099590599537,0.92520272731781,-0.307492941617966,-0.000989729189313948,0.951549768447876,-0.268716245889664,0.065463088452816,0.960992217063904,-0.307492941617966,-0.000989729189313948,0.951549768447876,-0.339309215545654,0.0911452621221542,0.93624871969223,-0.134237572550774,0.144600585103035,0.980342209339142,-0.162408545613289,0.203409120440483,0.965529978275299,-0.262401670217514,0.239789396524429,0.934690475463867, +-0.138717114925385,0.0922271385788918,0.98602819442749,-0.134237572550774,0.144600585103035,0.980342209339142,-0.268716245889664,0.065463088452816,0.960992217063904,-0.253228157758713,0.255748152732849,0.932988882064819,-0.316746473312378,0.344269782304764,0.883826792240143,-0.262401670217514,0.239789396524429,0.934690475463867,-0.371394574642181,0.404316991567612,0.835819244384766,-0.316746473312378,0.344269782304764,0.883826792240143,-0.321447730064392,0.406912297010422,0.85504013299942,-0.352701604366302,0.398748874664307,0.846522748470306,-0.371394574642181,0.404316991567612,0.835819244384766,-0.321447730064392,0.406912297010422,0.85504013299942,-0.258713394403458,0.307821571826935,0.915594398975372,-0.352701604366302,0.398748874664307,0.846522748470306,-0.296552807092667,0.294133901596069,0.90859317779541,-0.296552807092667,0.294133901596069,0.90859317779541,-0.219009876251221,0.156062394380569,0.963160991668701,-0.258713394403458,0.307821571826935,0.915594398975372,-0.0575255528092384,0.0805123373866081,0.995092213153839,-0.219009876251221,0.156062394380569,0.963160991668701,-0.0668829083442688,-0.266791701316834,0.961430609226227,0.197513982653618,-0.640914976596832,0.74176549911499,0.187145814299583,-0.747763097286224,0.637045323848724,-0.0668829083442688,-0.266791701316834,0.961430609226227,0.187145814299583,-0.747763097286224,0.637045323848724,0.197513982653618,-0.640914976596832,0.74176549911499,0.309207260608673,-0.892958760261536,0.327132225036621,-0.714942812919617,-0.344419896602631,0.608466506004334,-0.792150020599365,-0.327905476093292,0.514758348464966,-0.692276179790497,-0.445843786001205,0.567430138587952,-0.604587435722351,-0.38396367430687,0.697886645793915,-0.648642063140869,-0.305748224258423,0.696980118751526,-0.714942812919617,-0.344419896602631,0.608466506004334,-0.865722477436066,-0.340495824813843,0.36686110496521,-0.762725234031677,-0.436951041221619,0.476785033941269,-0.792150020599365,-0.327905476093292,0.514758348464966,-0.976969838142395,-0.210535049438477,-0.0347117707133293,-0.994364559650421,-0.106013096868992,-0.000468091922812164, +-0.987748503684998,-0.151689380407333,0.0366489291191101,-0.929570436477661,-0.360879004001617,-0.0752665624022484,-0.904262363910675,-0.425751477479935,0.0323279947042465,-0.876016616821289,-0.481814712285995,0.0212000235915184,-0.929570436477661,-0.360879004001617,-0.0752665624022484,-0.976133704185486,-0.187275826931,-0.109956547617912,-0.972106218338013,-0.224105924367905,-0.069180004298687,-0.972106218338013,-0.224105924367905,-0.069180004298687,-0.987002551555634,-0.135665148496628,-0.0861441567540169,-0.976969838142395,-0.210535049438477,-0.0347117707133293,-0.914900958538055,-0.397404700517654,-0.0708918124437332,-0.843604445457459,-0.519128143787384,-0.137249156832695,-0.876016616821289,-0.481814712285995,0.0212000235915184,-0.936378955841064,-0.349104523658752,0.0363366790115833,-0.986225187778473,-0.142211183905602,0.0844738632440567,-0.994364559650421,-0.106013096868992,-0.000468091922812164,-0.939115345478058,-0.313076287508011,0.141582489013672,-0.986225187778473,-0.142211183905602,0.0844738632440567,-0.936378955841064,-0.349104523658752,0.0363366790115833,-0.862689316272736,-0.4765664935112,0.169267490506172,-0.902612924575806,-0.321676522493362,0.286031484603882,-0.939115345478058,-0.313076287508011,0.141582489013672,-0.850687563419342,-0.410945057868958,0.327802896499634,-0.838177680969238,-0.398348182439804,0.372527658939362,-0.798438727855682,-0.515453994274139,0.311131179332733,-0.842254877090454,-0.463426917791367,0.275394469499588,-0.902612924575806,-0.321676522493362,0.286031484603882,-0.862689316272736,-0.4765664935112,0.169267490506172,-0.842254877090454,-0.463426917791367,0.275394469499588,-0.770755529403687,-0.569274723529816,0.286115437746048,-0.838177680969238,-0.398348182439804,0.372527658939362,-0.850687563419342,-0.410945057868958,0.327802896499634,-0.840569138526917,-0.487216085195541,0.236777603626251,-0.902516543865204,-0.389200478792191,0.18435500562191,-0.902516543865204,-0.389200478792191,0.18435500562191,-0.840569138526917,-0.487216085195541,0.236777603626251,-0.894809484481812,-0.442018151283264,0.062735989689827, +0.100459367036819,-0.923263072967529,0.370800614356995,-0.0516670271754265,-0.885850787162781,0.461084455251694,0.103886775672436,-0.937629818916321,0.331749528646469,-0.0516670271754265,-0.885850787162781,0.461084455251694,-0.233427867293358,-0.805611252784729,0.544519782066345,-0.120726093649864,-0.841359615325928,0.526819884777069,-0.390058010816574,-0.701454162597656,0.596503674983978,-0.264339983463287,-0.75688761472702,0.59770005941391,-0.233427867293358,-0.805611252784729,0.544519782066345,-0.381684064865112,-0.685339033603668,0.62018346786499,-0.476949721574783,-0.588280618190765,0.653027296066284,-0.311220496892929,-0.650453209877014,0.692858040332794,-0.381684064865112,-0.685339033603668,0.62018346786499,-0.264339983463287,-0.75688761472702,0.59770005941391,-0.390058010816574,-0.701454162597656,0.596503674983978,0.235866621136665,-0.937104284763336,0.257298201322556,0.309207260608673,-0.892958760261536,0.327132225036621,0.365962624549866,-0.896620392799377,0.249284759163857,0.100459367036819,-0.923263072967529,0.370800614356995,0.103886775672436,-0.937629818916321,0.331749528646469,0.185308039188385,-0.937187433242798,0.295534431934357,0.235866621136665,-0.937104284763336,0.257298201322556,0.258620977401733,-0.912637948989868,0.316554993391037,0.185308039188385,-0.937187433242798,0.295534431934357,-0.102676451206207,-0.529469907283783,0.842092037200928,-0.000438769377069548,-0.435010224580765,0.900425314903259,-0.0545575730502605,-0.568345487117767,0.820979118347168,-0.374320298433304,-0.0548553429543972,0.925675451755524,-0.505686044692993,0.0685915276408196,0.859986424446106,-0.332847476005554,-0.00625935615971684,0.942959845066071,-0.170054286718369,-0.184920772910118,0.96792858839035,-0.159406751394272,-0.372307956218719,0.914317309856415,0.0199526101350784,-0.266975700855255,0.963496625423431,0.0199526101350784,-0.266975700855255,0.963496625423431,-0.159406751394272,-0.372307956218719,0.914317309856415,-0.000438769377069548,-0.435010224580765,0.900425314903259,-0.14349602162838,-0.0420509576797485,0.988757073879242, +-0.170054286718369,-0.184920772910118,0.96792858839035,-0.0201004929840565,-0.108956411480904,0.993843257427216,-0.332847476005554,-0.00625935615971684,0.942959845066071,-0.14349602162838,-0.0420509576797485,0.988757073879242,-0.235546410083771,-0.0311324931681156,0.971364259719849,-0.713835060596466,0.211449533700943,0.667628943920136,-0.77959531545639,0.274822622537613,0.562764167785645,-0.7224041223526,0.21569912135601,0.656967222690582,-0.77959531545639,0.274822622537613,0.562764167785645,-0.82231217622757,0.177565827965736,0.54062283039093,-0.842009246349335,0.245880663394928,0.480169773101807,-0.609024703502655,0.124334946274757,0.783345103263855,-0.505686044692993,0.0685915276408196,0.859986424446106,-0.631421983242035,0.155574113130569,0.759672820568085,-0.631421983242035,0.155574113130569,0.759672820568085,-0.713835060596466,0.211449533700943,0.667628943920136,-0.660376369953156,0.181795820593834,0.728596687316895,-0.912084579467773,0.244884178042412,0.328835994005203,-0.906066536903381,0.269435584545136,0.326263338327408,-0.939968168735504,0.226348981261253,0.255393445491791,-0.956210970878601,0.216835767030716,0.196577414870262,-0.977718949317932,0.165586292743683,0.129021376371384,-0.939968168735504,0.226348981261253,0.255393445491791,-0.842009246349335,0.245880663394928,0.480169773101807,-0.84002411365509,0.271271735429764,0.469862759113312,-0.873543322086334,0.251532018184662,0.416717648506165,-0.873124241828918,0.279048204421997,0.399732440710068,-0.912084579467773,0.244884178042412,0.328835994005203,-0.873543322086334,0.251532018184662,0.416717648506165,-0.316868543624878,-0.54790735244751,0.774203896522522,-0.476949721574783,-0.588280618190765,0.653027296066284,-0.493057936429977,-0.495661467313766,0.714991927146912,-0.316868543624878,-0.54790735244751,0.774203896522522,-0.493057936429977,-0.495661467313766,0.714991927146912,-0.102676451206207,-0.529469907283783,0.842092037200928,-0.996621310710907,0.0806679129600525,0.015437563881278,-0.977718949317932,0.165586292743683,0.129021376371384,-0.982454717159271,0.15888038277626,0.0976708829402924, +-0.997194766998291,0.0435187071561813,-0.0608982443809509,-0.996621310710907,0.0806679129600525,0.015437563881278,-0.998908162117004,0.0373903438448906,-0.0280066728591919,-0.887850999832153,-0.445970982313156,0.113271556794643,-0.894809484481812,-0.442018151283264,0.062735989689827,-0.821174442768097,-0.548822999000549,0.156415045261383,-0.865857660770416,-0.434330075979233,0.248289838433266,-0.936547458171844,-0.317928344011307,0.147649303078651,-0.887850999832153,-0.445970982313156,0.113271556794643,-0.865857660770416,-0.434330075979233,0.248289838433266,-0.801552951335907,-0.504193782806396,0.321405202150345,-0.865722477436066,-0.340495824813843,0.36686110496521,-0.648642063140869,-0.305748224258423,0.696980118751526,-0.604587435722351,-0.38396367430687,0.697886645793915,-0.557210743427277,-0.323591679334641,0.764725089073181,-0.541048347949982,-0.288172662258148,0.790077865123749,-0.606944262981415,-0.257777363061905,0.751777470111847,-0.557210743427277,-0.323591679334641,0.764725089073181,-0.543933987617493,-0.226032257080078,0.808112025260925,-0.541048347949982,-0.288172662258148,0.790077865123749,-0.526192843914032,-0.263838142156601,0.808399856090546,-0.543933987617493,-0.226032257080078,0.808112025260925,-0.526192843914032,-0.263838142156601,0.808399856090546,-0.492140918970108,-0.215332821011543,0.843462467193604,-0.492140918970108,-0.215332821011543,0.843462467193604,-0.487584918737412,-0.152450397610664,0.859662532806396,-0.485561192035675,-0.164276078343391,0.858628869056702,-0.374421834945679,-0.0617099590599537,0.92520272731781,-0.410580158233643,-0.0835713595151901,0.907986581325531,-0.487584918737412,-0.152450397610664,0.859662532806396,-0.504676580429077,0.0121451439335942,0.86322295665741,-0.307492941617966,-0.000989729189313948,0.951549768447876,-0.374421834945679,-0.0617099590599537,0.92520272731781,-0.339309215545654,0.0911452621221542,0.93624871969223,-0.307492941617966,-0.000989729189313948,0.951549768447876,-0.504676580429077,0.0121451439335942,0.86322295665741,-0.268716245889664,0.065463088452816,0.960992217063904, +-0.339309215545654,0.0911452621221542,0.93624871969223,-0.138717114925385,0.0922271385788918,0.98602819442749,-0.153921470046043,0.155653700232506,0.975745856761932,-0.162408545613289,0.203409120440483,0.965529978275299,-0.134237572550774,0.144600585103035,0.980342209339142,-0.253228157758713,0.255748152732849,0.932988882064819,-0.262401670217514,0.239789396524429,0.934690475463867,-0.162408545613289,0.203409120440483,0.965529978275299,-0.138717114925385,0.0922271385788918,0.98602819442749,-0.153921470046043,0.155653700232506,0.975745856761932,-0.134237572550774,0.144600585103035,0.980342209339142,-0.316746473312378,0.344269782304764,0.883826792240143,-0.253228157758713,0.255748152732849,0.932988882064819,-0.289223611354828,0.285745799541473,0.913618624210358,-0.316746473312378,0.344269782304764,0.883826792240143,-0.289223611354828,0.285745799541473,0.913618624210358,-0.321447730064392,0.406912297010422,0.85504013299942,-0.352701604366302,0.398748874664307,0.846522748470306,-0.321447730064392,0.406912297010422,0.85504013299942,-0.258470416069031,0.407200694084167,0.876002550125122,-0.258470416069031,0.407200694084167,0.876002550125122,-0.296552807092667,0.294133901596069,0.90859317779541,-0.352701604366302,0.398748874664307,0.846522748470306,-0.128876179456711,-0.0509283281862736,0.990351915359497,-0.219009876251221,0.156062394380569,0.963160991668701,-0.296552807092667,0.294133901596069,0.90859317779541,-0.128876179456711,-0.0509283281862736,0.990351915359497,-0.0668829083442688,-0.266791701316834,0.961430609226227,-0.219009876251221,0.156062394380569,0.963160991668701,0.197513982653618,-0.640914976596832,0.74176549911499,-0.0668829083442688,-0.266791701316834,0.961430609226227,-0.128876179456711,-0.0509283281862736,0.990351915359497,0.460846751928329,-0.830316841602325,0.313359260559082,0.309207260608673,-0.892958760261536,0.327132225036621,0.197513982653618,-0.640914976596832,0.74176549911499,-0.762725234031677,-0.436951041221619,0.476785033941269,-0.692276179790497,-0.445843786001205,0.567430138587952,-0.792150020599365,-0.327905476093292,0.514758348464966, +-0.620180785655975,-0.4512879550457,0.641650080680847,-0.714942812919617,-0.344419896602631,0.608466506004334,-0.692276179790497,-0.445843786001205,0.567430138587952,-0.604587435722351,-0.38396367430687,0.697886645793915,-0.714942812919617,-0.344419896602631,0.608466506004334,-0.620180785655975,-0.4512879550457,0.641650080680847,-0.801552951335907,-0.504193782806396,0.321405202150345,-0.762725234031677,-0.436951041221619,0.476785033941269,-0.865722477436066,-0.340495824813843,0.36686110496521,-0.994364559650421,-0.106013096868992,-0.000468091922812164,-0.976969838142395,-0.210535049438477,-0.0347117707133293,-0.987002551555634,-0.135665148496628,-0.0861441567540169,-0.929570436477661,-0.360879004001617,-0.0752665624022484,-0.876016616821289,-0.481814712285995,0.0212000235915184,-0.843604445457459,-0.519128143787384,-0.137249156832695,-0.929570436477661,-0.360879004001617,-0.0752665624022484,-0.944114685058594,-0.249110206961632,-0.215850710868835,-0.976133704185486,-0.187275826931,-0.109956547617912,-0.976133704185486,-0.187275826931,-0.109956547617912,-0.987002551555634,-0.135665148496628,-0.0861441567540169,-0.972106218338013,-0.224105924367905,-0.069180004298687,-0.956882536411285,-0.29025998711586,-0.0111756958067417,-0.936378955841064,-0.349104523658752,0.0363366790115833,-0.994364559650421,-0.106013096868992,-0.000468091922812164,-0.939115345478058,-0.313076287508011,0.141582489013672,-0.936378955841064,-0.349104523658752,0.0363366790115833,-0.853805661201477,-0.519917666912079,0.0264856163412333,-0.853805661201477,-0.519917666912079,0.0264856163412333,-0.862689316272736,-0.4765664935112,0.169267490506172,-0.939115345478058,-0.313076287508011,0.141582489013672,-0.838177680969238,-0.398348182439804,0.372527658939362,-0.770755529403687,-0.569274723529816,0.286115437746048,-0.798438727855682,-0.515453994274139,0.311131179332733,-0.840569138526917,-0.487216085195541,0.236777603626251,-0.850687563419342,-0.410945057868958,0.327802896499634,-0.798438727855682,-0.515453994274139,0.311131179332733,-0.842254877090454,-0.463426917791367,0.275394469499588, +-0.862689316272736,-0.4765664935112,0.169267490506172,-0.758931159973145,-0.612459242343903,0.22117193043232,-0.770755529403687,-0.569274723529816,0.286115437746048,-0.842254877090454,-0.463426917791367,0.275394469499588,-0.758931159973145,-0.612459242343903,0.22117193043232,-0.840569138526917,-0.487216085195541,0.236777603626251,-0.806042492389679,-0.562117099761963,0.185256123542786,-0.894809484481812,-0.442018151283264,0.062735989689827,0.117369003593922,-0.880337238311768,0.459598481655121,-0.0516670271754265,-0.885850787162781,0.461084455251694,0.100459367036819,-0.923263072967529,0.370800614356995,-0.0500566922128201,-0.816359102725983,0.575371265411377,-0.233427867293358,-0.805611252784729,0.544519782066345,-0.0516670271754265,-0.885850787162781,0.461084455251694,-0.233427867293358,-0.805611252784729,0.544519782066345,-0.17642767727375,-0.736543595790863,0.65297532081604,-0.390058010816574,-0.701454162597656,0.596503674983978,-0.381684064865112,-0.685339033603668,0.62018346786499,-0.390058010816574,-0.701454162597656,0.596503674983978,-0.476949721574783,-0.588280618190765,0.653027296066284,0.460846751928329,-0.830316841602325,0.313359260559082,0.365962624549866,-0.896620392799377,0.249284759163857,0.309207260608673,-0.892958760261536,0.327132225036621,0.258620977401733,-0.912637948989868,0.316554993391037,0.235866621136665,-0.937104284763336,0.257298201322556,0.365962624549866,-0.896620392799377,0.249284759163857,0.185308039188385,-0.937187433242798,0.295534431934357,0.258620977401733,-0.912637948989868,0.316554993391037,0.100459367036819,-0.923263072967529,0.370800614356995,-0.186652407050133,-0.354673027992249,0.916170179843903,-0.000438769377069548,-0.435010224580765,0.900425314903259,-0.102676451206207,-0.529469907283783,0.842092037200928,-0.558000445365906,-0.0655887499451637,0.827244520187378,-0.505686044692993,0.0685915276408196,0.859986424446106,-0.374320298433304,-0.0548553429543972,0.925675451755524,-0.374320298433304,-0.0548553429543972,0.925675451755524,-0.332847476005554,-0.00625935615971684,0.942959845066071, +-0.235546410083771,-0.0311324931681156,0.971364259719849,-0.0201004929840565,-0.108956411480904,0.993843257427216,-0.170054286718369,-0.184920772910118,0.96792858839035,0.0199526101350784,-0.266975700855255,0.963496625423431,0.0199526101350784,-0.266975700855255,0.963496625423431,-0.000438769377069548,-0.435010224580765,0.900425314903259,0.0980935767292976,-0.288070291280746,0.95257180929184,-0.142824336886406,-0.159055307507515,0.976884067058563,-0.14349602162838,-0.0420509576797485,0.988757073879242,-0.0201004929840565,-0.108956411480904,0.993843257427216,-0.188328966498375,-0.180192723870277,0.965433895587921,-0.235546410083771,-0.0311324931681156,0.971364259719849,-0.14349602162838,-0.0420509576797485,0.988757073879242,-0.82231217622757,0.177565827965736,0.54062283039093,-0.77959531545639,0.274822622537613,0.562764167785645,-0.713835060596466,0.211449533700943,0.667628943920136,-0.820666253566742,0.235349714756012,0.520689308643341,-0.842009246349335,0.245880663394928,0.480169773101807,-0.82231217622757,0.177565827965736,0.54062283039093,-0.505686044692993,0.0685915276408196,0.859986424446106,-0.644224762916565,0.0739861279726028,0.761249184608459,-0.631421983242035,0.155574113130569,0.759672820568085,-0.631421983242035,0.155574113130569,0.759672820568085,-0.75888192653656,0.0905929356813431,0.64489609003067,-0.713835060596466,0.211449533700943,0.667628943920136,-0.873124241828918,0.279048204421997,0.399732440710068,-0.906066536903381,0.269435584545136,0.326263338327408,-0.912084579467773,0.244884178042412,0.328835994005203,-0.906066536903381,0.269435584545136,0.326263338327408,-0.956210970878601,0.216835767030716,0.196577414870262,-0.939968168735504,0.226348981261253,0.255393445491791,-0.982454717159271,0.15888038277626,0.0976708829402924,-0.977718949317932,0.165586292743683,0.129021376371384,-0.956210970878601,0.216835767030716,0.196577414870262,-0.84002411365509,0.271271735429764,0.469862759113312,-0.842009246349335,0.245880663394928,0.480169773101807,-0.835753083229065,0.270133882761002,0.478063076734543,-0.873543322086334,0.251532018184662,0.416717648506165, +-0.84002411365509,0.271271735429764,0.469862759113312,-0.830890119075775,0.29871991276741,0.469454973936081,-0.873124241828918,0.279048204421997,0.399732440710068,-0.873543322086334,0.251532018184662,0.416717648506165,-0.830890119075775,0.29871991276741,0.469454973936081,-0.493057936429977,-0.495661467313766,0.714991927146912,-0.476949721574783,-0.588280618190765,0.653027296066284,-0.540677189826965,-0.545491874217987,0.640395641326904,-0.186652407050133,-0.354673027992249,0.916170179843903,-0.102676451206207,-0.529469907283783,0.842092037200928,-0.493057936429977,-0.495661467313766,0.714991927146912,-0.996621310710907,0.0806679129600525,0.015437563881278,-0.982454717159271,0.15888038277626,0.0976708829402924,-0.998908162117004,0.0373903438448906,-0.0280066728591919,-0.806042492389679,-0.562117099761963,0.185256123542786,-0.821174442768097,-0.548822999000549,0.156415045261383,-0.894809484481812,-0.442018151283264,0.062735989689827,-0.865857660770416,-0.434330075979233,0.248289838433266,-0.887850999832153,-0.445970982313156,0.113271556794643,-0.821174442768097,-0.548822999000549,0.156415045261383,-0.801552951335907,-0.504193782806396,0.321405202150345,-0.865857660770416,-0.434330075979233,0.248289838433266,-0.821174442768097,-0.548822999000549,0.156415045261383,-0.557210743427277,-0.323591679334641,0.764725089073181,-0.604587435722351,-0.38396367430687,0.697886645793915,-0.574172496795654,-0.387785732746124,0.721074223518372,-0.526192843914032,-0.263838142156601,0.808399856090546,-0.541048347949982,-0.288172662258148,0.790077865123749,-0.557210743427277,-0.323591679334641,0.764725089073181,-0.526192843914032,-0.263838142156601,0.808399856090546,-0.502939522266388,-0.24634762108326,0.828471183776855,-0.492140918970108,-0.215332821011543,0.843462467193604,-0.492140918970108,-0.215332821011543,0.843462467193604,-0.499073058366776,-0.229532331228256,0.835608065128326,-0.487584918737412,-0.152450397610664,0.859662532806396,-0.487584918737412,-0.152450397610664,0.859662532806396,-0.504676580429077,0.0121451439335942,0.86322295665741, +-0.374421834945679,-0.0617099590599537,0.92520272731781,-0.504676580429077,0.0121451439335942,0.86322295665741,-0.523348212242126,0.164399549365044,0.836109578609467,-0.339309215545654,0.0911452621221542,0.93624871969223,-0.138717114925385,0.0922271385788918,0.98602819442749,-0.339309215545654,0.0911452621221542,0.93624871969223,-0.286839008331299,0.216267511248589,0.933247864246368,-0.153921470046043,0.155653700232506,0.975745856761932,-0.236724346876144,0.159873783588409,0.95833283662796,-0.162408545613289,0.203409120440483,0.965529978275299,-0.236724346876144,0.159873783588409,0.95833283662796,-0.253228157758713,0.255748152732849,0.932988882064819,-0.162408545613289,0.203409120440483,0.965529978275299,-0.286839008331299,0.216267511248589,0.933247864246368,-0.153921470046043,0.155653700232506,0.975745856761932,-0.138717114925385,0.0922271385788918,0.98602819442749,-0.236724346876144,0.159873783588409,0.95833283662796,-0.289223611354828,0.285745799541473,0.913618624210358,-0.253228157758713,0.255748152732849,0.932988882064819,-0.258470416069031,0.407200694084167,0.876002550125122,-0.170063838362694,0.292211562395096,0.941111385822296,-0.296552807092667,0.294133901596069,0.90859317779541,-0.128876179456711,-0.0509283281862736,0.990351915359497,-0.296552807092667,0.294133901596069,0.90859317779541,-0.170063838362694,0.292211562395096,0.941111385822296,-0.128876179456711,-0.0509283281862736,0.990351915359497,0.0460314340889454,-0.217143252491951,0.975053727626801,0.197513982653618,-0.640914976596832,0.74176549911499,0.364674866199493,-0.620351493358612,0.694389045238495,0.460846751928329,-0.830316841602325,0.313359260559082,0.197513982653618,-0.640914976596832,0.74176549911499,-0.762725234031677,-0.436951041221619,0.476785033941269,-0.694900810718536,-0.529169976711273,0.486920893192291,-0.692276179790497,-0.445843786001205,0.567430138587952,-0.692276179790497,-0.445843786001205,0.567430138587952,-0.604909718036652,-0.531020402908325,0.593381285667419,-0.620180785655975,-0.4512879550457,0.641650080680847,-0.597936034202576,-0.451835334300995,0.662055253982544, +-0.604587435722351,-0.38396367430687,0.697886645793915,-0.620180785655975,-0.4512879550457,0.641650080680847,-0.714508354663849,-0.591030836105347,0.374379724264145,-0.762725234031677,-0.436951041221619,0.476785033941269,-0.801552951335907,-0.504193782806396,0.321405202150345,-0.994364559650421,-0.106013096868992,-0.000468091922812164,-0.987002551555634,-0.135665148496628,-0.0861441567540169,-0.951450705528259,-0.297138184309006,-0.0803139880299568,-0.846534252166748,-0.485259592533112,-0.218866914510727,-0.929570436477661,-0.360879004001617,-0.0752665624022484,-0.843604445457459,-0.519128143787384,-0.137249156832695,-0.929570436477661,-0.360879004001617,-0.0752665624022484,-0.846534252166748,-0.485259592533112,-0.218866914510727,-0.944114685058594,-0.249110206961632,-0.215850710868835,-0.976133704185486,-0.187275826931,-0.109956547617912,-0.944114685058594,-0.249110206961632,-0.215850710868835,-0.953193485736847,-0.291497200727463,-0.0803206488490105,-0.987002551555634,-0.135665148496628,-0.0861441567540169,-0.976133704185486,-0.187275826931,-0.109956547617912,-0.951450705528259,-0.297138184309006,-0.0803139880299568,-0.956882536411285,-0.29025998711586,-0.0111756958067417,-0.831585884094238,-0.554932832717896,-0.0226776208728552,-0.936378955841064,-0.349104523658752,0.0363366790115833,-0.956882536411285,-0.29025998711586,-0.0111756958067417,-0.994364559650421,-0.106013096868992,-0.000468091922812164,-0.951450705528259,-0.297138184309006,-0.0803139880299568,-0.853805661201477,-0.519917666912079,0.0264856163412333,-0.936378955841064,-0.349104523658752,0.0363366790115833,-0.806213736534119,-0.590608239173889,-0.0346573181450367,-0.853805661201477,-0.519917666912079,0.0264856163412333,-0.752069592475891,-0.652712762355804,0.0914178192615509,-0.862689316272736,-0.4765664935112,0.169267490506172,-0.779333770275116,-0.596093118190765,0.193162485957146,-0.798438727855682,-0.515453994274139,0.311131179332733,-0.770755529403687,-0.569274723529816,0.286115437746048,-0.798915684223175,-0.546875,0.250322461128235,-0.840569138526917,-0.487216085195541,0.236777603626251, +-0.798438727855682,-0.515453994274139,0.311131179332733,-0.758931159973145,-0.612459242343903,0.22117193043232,-0.862689316272736,-0.4765664935112,0.169267490506172,-0.752069592475891,-0.652712762355804,0.0914178192615509,-0.758931159973145,-0.612459242343903,0.22117193043232,-0.740133225917816,-0.643048644065857,0.196700766682625,-0.770755529403687,-0.569274723529816,0.286115437746048,-0.798915684223175,-0.546875,0.250322461128235,-0.806042492389679,-0.562117099761963,0.185256123542786,-0.840569138526917,-0.487216085195541,0.236777603626251,0.117369003593922,-0.880337238311768,0.459598481655121,-0.0500566922128201,-0.816359102725983,0.575371265411377,-0.0516670271754265,-0.885850787162781,0.461084455251694,0.117369003593922,-0.880337238311768,0.459598481655121,0.100459367036819,-0.923263072967529,0.370800614356995,0.258620977401733,-0.912637948989868,0.316554993391037,-0.233427867293358,-0.805611252784729,0.544519782066345,-0.0500566922128201,-0.816359102725983,0.575371265411377,-0.17642767727375,-0.736543595790863,0.65297532081604,-0.390058010816574,-0.701454162597656,0.596503674983978,-0.17642767727375,-0.736543595790863,0.65297532081604,-0.301441580057144,-0.619108259677887,0.72514671087265,-0.540677189826965,-0.545491874217987,0.640395641326904,-0.476949721574783,-0.588280618190765,0.653027296066284,-0.390058010816574,-0.701454162597656,0.596503674983978,0.365962624549866,-0.896620392799377,0.249284759163857,0.460846751928329,-0.830316841602325,0.313359260559082,0.50460159778595,-0.830822467803955,0.234757825732231,0.258620977401733,-0.912637948989868,0.316554993391037,0.365962624549866,-0.896620392799377,0.249284759163857,0.366934537887573,-0.879171073436737,0.304001778364182,-0.186652407050133,-0.354673027992249,0.916170179843903,0.0980935767292976,-0.288070291280746,0.95257180929184,-0.000438769377069548,-0.435010224580765,0.900425314903259,-0.505686044692993,0.0685915276408196,0.859986424446106,-0.558000445365906,-0.0655887499451637,0.827244520187378,-0.644224762916565,0.0739861279726028,0.761249184608459, +-0.492930382490158,-0.207670852541924,0.844921469688416,-0.558000445365906,-0.0655887499451637,0.827244520187378,-0.374320298433304,-0.0548553429543972,0.925675451755524,-0.38810607790947,-0.245972901582718,0.888184070587158,-0.374320298433304,-0.0548553429543972,0.925675451755524,-0.235546410083771,-0.0311324931681156,0.971364259719849,-0.0637978911399841,-0.207985296845436,0.97604912519455,-0.0201004929840565,-0.108956411480904,0.993843257427216,0.0199526101350784,-0.266975700855255,0.963496625423431,0.0199526101350784,-0.266975700855255,0.963496625423431,0.0980935767292976,-0.288070291280746,0.95257180929184,-0.0637978911399841,-0.207985296845436,0.97604912519455,-0.188328966498375,-0.180192723870277,0.965433895587921,-0.14349602162838,-0.0420509576797485,0.988757073879242,-0.142824336886406,-0.159055307507515,0.976884067058563,-0.0637978911399841,-0.207985296845436,0.97604912519455,-0.142824336886406,-0.159055307507515,0.976884067058563,-0.0201004929840565,-0.108956411480904,0.993843257427216,-0.188328966498375,-0.180192723870277,0.965433895587921,-0.38810607790947,-0.245972901582718,0.888184070587158,-0.235546410083771,-0.0311324931681156,0.971364259719849,-0.75888192653656,0.0905929356813431,0.64489609003067,-0.82231217622757,0.177565827965736,0.54062283039093,-0.713835060596466,0.211449533700943,0.667628943920136,-0.842009246349335,0.245880663394928,0.480169773101807,-0.820666253566742,0.235349714756012,0.520689308643341,-0.835753083229065,0.270133882761002,0.478063076734543,-0.820666253566742,0.235349714756012,0.520689308643341,-0.82231217622757,0.177565827965736,0.54062283039093,-0.819181740283966,0.132764458656311,0.557955861091614,-0.644224762916565,0.0739861279726028,0.761249184608459,-0.75888192653656,0.0905929356813431,0.64489609003067,-0.631421983242035,0.155574113130569,0.759672820568085,-0.906066536903381,0.269435584545136,0.326263338327408,-0.873124241828918,0.279048204421997,0.399732440710068,-0.83003705739975,0.34397953748703,0.438994795084,-0.84002411365509,0.271271735429764,0.469862759113312, +-0.835753083229065,0.270133882761002,0.478063076734543,-0.80880069732666,0.301043659448624,0.505187034606934,-0.830890119075775,0.29871991276741,0.469454973936081,-0.84002411365509,0.271271735429764,0.469862759113312,-0.785675287246704,0.34459188580513,0.51378071308136,-0.778954327106476,0.382796823978424,0.496685475111008,-0.873124241828918,0.279048204421997,0.399732440710068,-0.830890119075775,0.29871991276741,0.469454973936081,-0.613130033016205,-0.377107530832291,0.694162309169769,-0.493057936429977,-0.495661467313766,0.714991927146912,-0.540677189826965,-0.545491874217987,0.640395641326904,-0.539523959159851,-0.32560595870018,0.77646279335022,-0.186652407050133,-0.354673027992249,0.916170179843903,-0.493057936429977,-0.495661467313766,0.714991927146912,-0.806042492389679,-0.562117099761963,0.185256123542786,-0.748091280460358,-0.617509305477142,0.242984667420387,-0.821174442768097,-0.548822999000549,0.156415045261383,-0.821174442768097,-0.548822999000549,0.156415045261383,-0.748091280460358,-0.617509305477142,0.242984667420387,-0.801552951335907,-0.504193782806396,0.321405202150345,-0.574172496795654,-0.387785732746124,0.721074223518372,-0.604587435722351,-0.38396367430687,0.697886645793915,-0.597936034202576,-0.451835334300995,0.662055253982544,-0.574172496795654,-0.387785732746124,0.721074223518372,-0.520337224006653,-0.298947989940643,0.799924433231354,-0.557210743427277,-0.323591679334641,0.764725089073181,-0.520337224006653,-0.298947989940643,0.799924433231354,-0.526192843914032,-0.263838142156601,0.808399856090546,-0.557210743427277,-0.323591679334641,0.764725089073181,-0.526192843914032,-0.263838142156601,0.808399856090546,-0.520337224006653,-0.298947989940643,0.799924433231354,-0.502939522266388,-0.24634762108326,0.828471183776855,-0.502939522266388,-0.24634762108326,0.828471183776855,-0.499073058366776,-0.229532331228256,0.835608065128326,-0.492140918970108,-0.215332821011543,0.843462467193604,-0.499073058366776,-0.229532331228256,0.835608065128326,-0.49248680472374,-0.234131425619125,0.838235676288605, +-0.487584918737412,-0.152450397610664,0.859662532806396,-0.504676580429077,0.0121451439335942,0.86322295665741,-0.487584918737412,-0.152450397610664,0.859662532806396,-0.509527385234833,-0.11929539591074,0.852144598960876,-0.504676580429077,0.0121451439335942,0.86322295665741,-0.492703646421433,0.0864859521389008,0.865888655185699,-0.523348212242126,0.164399549365044,0.836109578609467,-0.339309215545654,0.0911452621221542,0.93624871969223,-0.523348212242126,0.164399549365044,0.836109578609467,-0.434461623430252,0.266305267810822,0.860421121120453,-0.286839008331299,0.216267511248589,0.933247864246368,-0.339309215545654,0.0911452621221542,0.93624871969223,-0.434461623430252,0.266305267810822,0.860421121120453,-0.236724346876144,0.159873783588409,0.95833283662796,-0.153921470046043,0.155653700232506,0.975745856761932,-0.183176711201668,0.120957732200623,0.975610256195068,-0.286839008331299,0.216267511248589,0.933247864246368,-0.258424520492554,0.256875544786453,0.931252717971802,-0.153921470046043,0.155653700232506,0.975745856761932,-0.289223611354828,0.285745799541473,0.913618624210358,-0.236724346876144,0.159873783588409,0.95833283662796,-0.186008542776108,0.15044005215168,0.970962703227997,-0.128876179456711,-0.0509283281862736,0.990351915359497,-0.170063838362694,0.292211562395096,0.941111385822296,0.0460314340889454,-0.217143252491951,0.975053727626801,0.364674866199493,-0.620351493358612,0.694389045238495,0.197513982653618,-0.640914976596832,0.74176549911499,0.0460314340889454,-0.217143252491951,0.975053727626801,0.364674866199493,-0.620351493358612,0.694389045238495,0.555728256702423,-0.759969532489777,0.337064146995544,0.460846751928329,-0.830316841602325,0.313359260559082,-0.714508354663849,-0.591030836105347,0.374379724264145,-0.694900810718536,-0.529169976711273,0.486920893192291,-0.762725234031677,-0.436951041221619,0.476785033941269,-0.694900810718536,-0.529169976711273,0.486920893192291,-0.632843732833862,-0.56480073928833,0.529630780220032,-0.692276179790497,-0.445843786001205,0.567430138587952,-0.692276179790497,-0.445843786001205,0.567430138587952, +-0.632843732833862,-0.56480073928833,0.529630780220032,-0.604909718036652,-0.531020402908325,0.593381285667419,-0.604909718036652,-0.531020402908325,0.593381285667419,-0.60381406545639,-0.506373643875122,0.615624964237213,-0.620180785655975,-0.4512879550457,0.641650080680847,-0.597936034202576,-0.451835334300995,0.662055253982544,-0.620180785655975,-0.4512879550457,0.641650080680847,-0.60381406545639,-0.506373643875122,0.615624964237213,-0.714508354663849,-0.591030836105347,0.374379724264145,-0.801552951335907,-0.504193782806396,0.321405202150345,-0.748091280460358,-0.617509305477142,0.242984667420387,-0.944114685058594,-0.249110206961632,-0.215850710868835,-0.846534252166748,-0.485259592533112,-0.218866914510727,-0.889040887355804,-0.337670803070068,-0.309167742729187,-0.945879399776459,-0.251555293798447,-0.205017283558846,-0.953193485736847,-0.291497200727463,-0.0803206488490105,-0.944114685058594,-0.249110206961632,-0.215850710868835,-0.953193485736847,-0.291497200727463,-0.0803206488490105,-0.951450705528259,-0.297138184309006,-0.0803139880299568,-0.976133704185486,-0.187275826931,-0.109956547617912,-0.956882536411285,-0.29025998711586,-0.0111756958067417,-0.951450705528259,-0.297138184309006,-0.0803139880299568,-0.831585884094238,-0.554932832717896,-0.0226776208728552,-0.806213736534119,-0.590608239173889,-0.0346573181450367,-0.936378955841064,-0.349104523658752,0.0363366790115833,-0.831585884094238,-0.554932832717896,-0.0226776208728552,-0.853805661201477,-0.519917666912079,0.0264856163412333,-0.806213736534119,-0.590608239173889,-0.0346573181450367,-0.744383990764618,-0.667521357536316,-0.0175328627228737,-0.752069592475891,-0.652712762355804,0.0914178192615509,-0.853805661201477,-0.519917666912079,0.0264856163412333,-0.744383990764618,-0.667521357536316,-0.0175328627228737,-0.779333770275116,-0.596093118190765,0.193162485957146,-0.798915684223175,-0.546875,0.250322461128235,-0.798438727855682,-0.515453994274139,0.311131179332733,-0.770755529403687,-0.569274723529816,0.286115437746048,-0.740133225917816,-0.643048644065857,0.196700766682625, +-0.779333770275116,-0.596093118190765,0.193162485957146,-0.758931159973145,-0.612459242343903,0.22117193043232,-0.752069592475891,-0.652712762355804,0.0914178192615509,-0.721447288990021,-0.680855333805084,0.126292541623116,-0.758931159973145,-0.612459242343903,0.22117193043232,-0.721447288990021,-0.680855333805084,0.126292541623116,-0.740133225917816,-0.643048644065857,0.196700766682625,-0.806042492389679,-0.562117099761963,0.185256123542786,-0.798915684223175,-0.546875,0.250322461128235,-0.766883194446564,-0.574254274368286,0.286569654941559,-0.0500566922128201,-0.816359102725983,0.575371265411377,0.117369003593922,-0.880337238311768,0.459598481655121,0.162769645452499,-0.819616317749023,0.549304068088531,0.309752106666565,-0.869183897972107,0.385451525449753,0.117369003593922,-0.880337238311768,0.459598481655121,0.258620977401733,-0.912637948989868,0.316554993391037,-0.0500566922128201,-0.816359102725983,0.575371265411377,0.0390799157321453,-0.715532720088959,0.697485148906708,-0.17642767727375,-0.736543595790863,0.65297532081604,-0.108738772571087,-0.64336621761322,0.757796585559845,-0.301441580057144,-0.619108259677887,0.72514671087265,-0.17642767727375,-0.736543595790863,0.65297532081604,-0.390058010816574,-0.701454162597656,0.596503674983978,-0.301441580057144,-0.619108259677887,0.72514671087265,-0.454324901103973,-0.572576463222504,0.682455062866211,-0.540677189826965,-0.545491874217987,0.640395641326904,-0.390058010816574,-0.701454162597656,0.596503674983978,-0.454324901103973,-0.572576463222504,0.682455062866211,0.50460159778595,-0.830822467803955,0.234757825732231,0.460846751928329,-0.830316841602325,0.313359260559082,0.614892244338989,-0.745778739452362,0.256362229585648,0.50460159778595,-0.830822467803955,0.234757825732231,0.45979779958725,-0.836804926395416,0.297226071357727,0.365962624549866,-0.896620392799377,0.249284759163857,0.365962624549866,-0.896620392799377,0.249284759163857,0.45979779958725,-0.836804926395416,0.297226071357727,0.366934537887573,-0.879171073436737,0.304001778364182,0.309752106666565,-0.869183897972107,0.385451525449753, +0.258620977401733,-0.912637948989868,0.316554993391037,0.366934537887573,-0.879171073436737,0.304001778364182,-0.186652407050133,-0.354673027992249,0.916170179843903,-0.0637978911399841,-0.207985296845436,0.97604912519455,0.0980935767292976,-0.288070291280746,0.95257180929184,-0.644224762916565,0.0739861279726028,0.761249184608459,-0.558000445365906,-0.0655887499451637,0.827244520187378,-0.726919233798981,-0.0355543382465839,0.685801923274994,-0.492930382490158,-0.207670852541924,0.844921469688416,-0.631844401359558,-0.152502074837685,0.759944558143616,-0.558000445365906,-0.0655887499451637,0.827244520187378,-0.38810607790947,-0.245972901582718,0.888184070587158,-0.492930382490158,-0.207670852541924,0.844921469688416,-0.374320298433304,-0.0548553429543972,0.925675451755524,-0.188328966498375,-0.180192723870277,0.965433895587921,-0.142824336886406,-0.159055307507515,0.976884067058563,-0.230516955256462,-0.362032771110535,0.903213262557983,-0.0637978911399841,-0.207985296845436,0.97604912519455,-0.494659036397934,-0.204967439174652,0.84457129240036,-0.142824336886406,-0.159055307507515,0.976884067058563,-0.38810607790947,-0.245972901582718,0.888184070587158,-0.188328966498375,-0.180192723870277,0.965433895587921,-0.353304833173752,-0.410704016685486,0.840534269809723,-0.82231217622757,0.177565827965736,0.54062283039093,-0.75888192653656,0.0905929356813431,0.64489609003067,-0.819181740283966,0.132764458656311,0.557955861091614,-0.820666253566742,0.235349714756012,0.520689308643341,-0.780823171138763,0.30525541305542,0.545100092887878,-0.835753083229065,0.270133882761002,0.478063076734543,-0.820666253566742,0.235349714756012,0.520689308643341,-0.819181740283966,0.132764458656311,0.557955861091614,-0.707465887069702,0.261404991149902,0.656627237796783,-0.726919233798981,-0.0355543382465839,0.685801923274994,-0.75888192653656,0.0905929356813431,0.64489609003067,-0.644224762916565,0.0739861279726028,0.761249184608459,-0.778954327106476,0.382796823978424,0.496685475111008,-0.83003705739975,0.34397953748703,0.438994795084, +-0.873124241828918,0.279048204421997,0.399732440710068,-0.811087369918823,0.390369892120361,0.435601234436035,-0.906066536903381,0.269435584545136,0.326263338327408,-0.83003705739975,0.34397953748703,0.438994795084,-0.80880069732666,0.301043659448624,0.505187034606934,-0.835753083229065,0.270133882761002,0.478063076734543,-0.760539352893829,0.356308430433273,0.542792797088623,-0.84002411365509,0.271271735429764,0.469862759113312,-0.80880069732666,0.301043659448624,0.505187034606934,-0.785675287246704,0.34459188580513,0.51378071308136,-0.785675287246704,0.34459188580513,0.51378071308136,-0.762714803218842,0.378899872303009,0.524119138717651,-0.830890119075775,0.29871991276741,0.469454973936081,-0.778954327106476,0.382796823978424,0.496685475111008,-0.830890119075775,0.29871991276741,0.469454973936081,-0.762714803218842,0.378899872303009,0.524119138717651,-0.613130033016205,-0.377107530832291,0.694162309169769,-0.539523959159851,-0.32560595870018,0.77646279335022,-0.493057936429977,-0.495661467313766,0.714991927146912,-0.540677189826965,-0.545491874217987,0.640395641326904,-0.45221135020256,-0.447591036558151,0.771470665931702,-0.613130033016205,-0.377107530832291,0.694162309169769,-0.501235663890839,-0.265147298574448,0.823686540126801,-0.186652407050133,-0.354673027992249,0.916170179843903,-0.539523959159851,-0.32560595870018,0.77646279335022,-0.806042492389679,-0.562117099761963,0.185256123542786,-0.766883194446564,-0.574254274368286,0.286569654941559,-0.748091280460358,-0.617509305477142,0.242984667420387,-0.574172496795654,-0.387785732746124,0.721074223518372,-0.597936034202576,-0.451835334300995,0.662055253982544,-0.618659675121307,-0.420008629560471,0.663967490196228,-0.574172496795654,-0.387785732746124,0.721074223518372,-0.526377439498901,-0.350357472896576,0.774710476398468,-0.520337224006653,-0.298947989940643,0.799924433231354,-0.520337224006653,-0.298947989940643,0.799924433231354,-0.499073058366776,-0.229532331228256,0.835608065128326,-0.502939522266388,-0.24634762108326,0.828471183776855,-0.499073058366776,-0.229532331228256,0.835608065128326, +-0.4769307076931,-0.305882006883621,0.823998272418976,-0.49248680472374,-0.234131425619125,0.838235676288605,-0.487584918737412,-0.152450397610664,0.859662532806396,-0.49248680472374,-0.234131425619125,0.838235676288605,-0.509527385234833,-0.11929539591074,0.852144598960876,-0.470408588647842,-0.0322393104434013,0.881859540939331,-0.504676580429077,0.0121451439335942,0.86322295665741,-0.509527385234833,-0.11929539591074,0.852144598960876,-0.470408588647842,-0.0322393104434013,0.881859540939331,-0.492703646421433,0.0864859521389008,0.865888655185699,-0.504676580429077,0.0121451439335942,0.86322295665741,-0.492703646421433,0.0864859521389008,0.865888655185699,-0.43558207154274,0.228591978549957,0.87063992023468,-0.523348212242126,0.164399549365044,0.836109578609467,-0.523348212242126,0.164399549365044,0.836109578609467,-0.43558207154274,0.228591978549957,0.87063992023468,-0.434461623430252,0.266305267810822,0.860421121120453,-0.286839008331299,0.216267511248589,0.933247864246368,-0.434461623430252,0.266305267810822,0.860421121120453,-0.387099713087082,0.325969308614731,0.862495064735413,-0.258424520492554,0.256875544786453,0.931252717971802,-0.183176711201668,0.120957732200623,0.975610256195068,-0.153921470046043,0.155653700232506,0.975745856761932,-0.183176711201668,0.120957732200623,0.975610256195068,-0.186008542776108,0.15044005215168,0.970962703227997,-0.236724346876144,0.159873783588409,0.95833283662796,-0.286839008331299,0.216267511248589,0.933247864246368,-0.387099713087082,0.325969308614731,0.862495064735413,-0.258424520492554,0.256875544786453,0.931252717971802,0.0460314340889454,-0.217143252491951,0.975053727626801,-0.170063838362694,0.292211562395096,0.941111385822296,0.085183173418045,-0.0245090182870626,0.996063768863678,0.0460314340889454,-0.217143252491951,0.975053727626801,0.085183173418045,-0.0245090182870626,0.996063768863678,0.364674866199493,-0.620351493358612,0.694389045238495,0.555728256702423,-0.759969532489777,0.337064146995544,0.364674866199493,-0.620351493358612,0.694389045238495,0.496982485055923,-0.668016731739044,0.553860902786255, +0.460846751928329,-0.830316841602325,0.313359260559082,0.555728256702423,-0.759969532489777,0.337064146995544,0.614892244338989,-0.745778739452362,0.256362229585648,-0.694900810718536,-0.529169976711273,0.486920893192291,-0.714508354663849,-0.591030836105347,0.374379724264145,-0.63856428861618,-0.623410284519196,0.451215118169785,-0.694900810718536,-0.529169976711273,0.486920893192291,-0.63856428861618,-0.623410284519196,0.451215118169785,-0.632843732833862,-0.56480073928833,0.529630780220032,-0.632843732833862,-0.56480073928833,0.529630780220032,-0.628038883209229,-0.571669697761536,0.52797794342041,-0.604909718036652,-0.531020402908325,0.593381285667419,-0.628038883209229,-0.571669697761536,0.52797794342041,-0.60381406545639,-0.506373643875122,0.615624964237213,-0.604909718036652,-0.531020402908325,0.593381285667419,-0.597936034202576,-0.451835334300995,0.662055253982544,-0.60381406545639,-0.506373643875122,0.615624964237213,-0.653389155864716,-0.457302182912827,0.603288650512695,-0.720902025699615,-0.597240686416626,0.351572901010513,-0.714508354663849,-0.591030836105347,0.374379724264145,-0.748091280460358,-0.617509305477142,0.242984667420387,-0.920588433742523,-0.242459505796433,-0.306153893470764,-0.944114685058594,-0.249110206961632,-0.215850710868835,-0.889040887355804,-0.337670803070068,-0.309167742729187,-0.945879399776459,-0.251555293798447,-0.205017283558846,-0.910928666591644,-0.393385827541351,-0.124324165284634,-0.953193485736847,-0.291497200727463,-0.0803206488490105,-0.945879399776459,-0.251555293798447,-0.205017283558846,-0.944114685058594,-0.249110206961632,-0.215850710868835,-0.920588433742523,-0.242459505796433,-0.306153893470764,-0.844181656837463,-0.535824835300446,-0.0157768819481134,-0.951450705528259,-0.297138184309006,-0.0803139880299568,-0.953193485736847,-0.291497200727463,-0.0803206488490105,-0.844181656837463,-0.535824835300446,-0.0157768819481134,-0.831585884094238,-0.554932832717896,-0.0226776208728552,-0.951450705528259,-0.297138184309006,-0.0803139880299568,-0.806213736534119,-0.590608239173889,-0.0346573181450367, +-0.831585884094238,-0.554932832717896,-0.0226776208728552,-0.725398659706116,-0.687146365642548,-0.040328424423933,-0.744383990764618,-0.667521357536316,-0.0175328627228737,-0.806213736534119,-0.590608239173889,-0.0346573181450367,-0.725398659706116,-0.687146365642548,-0.040328424423933,-0.752069592475891,-0.652712762355804,0.0914178192615509,-0.744383990764618,-0.667521357536316,-0.0175328627228737,-0.752238690853119,-0.658779084682465,0.0121212583035231,-0.786814332008362,-0.564614236354828,0.249266520142555,-0.798915684223175,-0.546875,0.250322461128235,-0.779333770275116,-0.596093118190765,0.193162485957146,-0.795940279960632,-0.576265573501587,0.185463890433311,-0.779333770275116,-0.596093118190765,0.193162485957146,-0.740133225917816,-0.643048644065857,0.196700766682625,-0.752238690853119,-0.658779084682465,0.0121212583035231,-0.721447288990021,-0.680855333805084,0.126292541623116,-0.752069592475891,-0.652712762355804,0.0914178192615509,-0.821597754955292,-0.549091517925262,0.153217375278473,-0.740133225917816,-0.643048644065857,0.196700766682625,-0.721447288990021,-0.680855333805084,0.126292541623116,-0.798915684223175,-0.546875,0.250322461128235,-0.786814332008362,-0.564614236354828,0.249266520142555,-0.766883194446564,-0.574254274368286,0.286569654941559,0.309752106666565,-0.869183897972107,0.385451525449753,0.162769645452499,-0.819616317749023,0.549304068088531,0.117369003593922,-0.880337238311768,0.459598481655121,-0.0500566922128201,-0.816359102725983,0.575371265411377,0.162769645452499,-0.819616317749023,0.549304068088531,0.0390799157321453,-0.715532720088959,0.697485148906708,-0.17642767727375,-0.736543595790863,0.65297532081604,0.0390799157321453,-0.715532720088959,0.697485148906708,-0.108738772571087,-0.64336621761322,0.757796585559845,-0.301441580057144,-0.619108259677887,0.72514671087265,-0.108738772571087,-0.64336621761322,0.757796585559845,-0.173122435808182,-0.510749638080597,0.842118322849274,-0.454324901103973,-0.572576463222504,0.682455062866211,-0.301441580057144,-0.619108259677887,0.72514671087265, +-0.45221135020256,-0.447591036558151,0.771470665931702,-0.540677189826965,-0.545491874217987,0.640395641326904,-0.454324901103973,-0.572576463222504,0.682455062866211,-0.45221135020256,-0.447591036558151,0.771470665931702,0.614892244338989,-0.745778739452362,0.256362229585648,0.45979779958725,-0.836804926395416,0.297226071357727,0.50460159778595,-0.830822467803955,0.234757825732231,0.457902014255524,-0.811820685863495,0.362315893173218,0.366934537887573,-0.879171073436737,0.304001778364182,0.45979779958725,-0.836804926395416,0.297226071357727,0.309752106666565,-0.869183897972107,0.385451525449753,0.366934537887573,-0.879171073436737,0.304001778364182,0.457902014255524,-0.811820685863495,0.362315893173218,-0.501235663890839,-0.265147298574448,0.823686540126801,-0.0637978911399841,-0.207985296845436,0.97604912519455,-0.186652407050133,-0.354673027992249,0.916170179843903,-0.631844401359558,-0.152502074837685,0.759944558143616,-0.726919233798981,-0.0355543382465839,0.685801923274994,-0.558000445365906,-0.0655887499451637,0.827244520187378,-0.492930382490158,-0.207670852541924,0.844921469688416,-0.577232122421265,-0.247111320495605,0.7782923579216,-0.631844401359558,-0.152502074837685,0.759944558143616,-0.38810607790947,-0.245972901582718,0.888184070587158,-0.577232122421265,-0.247111320495605,0.7782923579216,-0.492930382490158,-0.207670852541924,0.844921469688416,-0.230516955256462,-0.362032771110535,0.903213262557983,-0.142824336886406,-0.159055307507515,0.976884067058563,-0.358674943447113,-0.362131834030151,0.860356152057648,-0.353304833173752,-0.410704016685486,0.840534269809723,-0.188328966498375,-0.180192723870277,0.965433895587921,-0.230516955256462,-0.362032771110535,0.903213262557983,-0.501235663890839,-0.265147298574448,0.823686540126801,-0.494659036397934,-0.204967439174652,0.84457129240036,-0.0637978911399841,-0.207985296845436,0.97604912519455,-0.494659036397934,-0.204967439174652,0.84457129240036,-0.358674943447113,-0.362131834030151,0.860356152057648,-0.142824336886406,-0.159055307507515,0.976884067058563, +-0.38810607790947,-0.245972901582718,0.888184070587158,-0.353304833173752,-0.410704016685486,0.840534269809723,-0.494538545608521,-0.389540731906891,0.776974558830261,-0.784753620624542,0.0130721488967538,0.619669854640961,-0.819181740283966,0.132764458656311,0.557955861091614,-0.75888192653656,0.0905929356813431,0.64489609003067,-0.780823171138763,0.30525541305542,0.545100092887878,-0.820666253566742,0.235349714756012,0.520689308643341,-0.68054187297821,0.359041213989258,0.638711214065552,-0.780823171138763,0.30525541305542,0.545100092887878,-0.760539352893829,0.356308430433273,0.542792797088623,-0.835753083229065,0.270133882761002,0.478063076734543,-0.819181740283966,0.132764458656311,0.557955861091614,-0.733391463756561,0.137780800461769,0.665697574615479,-0.707465887069702,0.261404991149902,0.656627237796783,-0.707465887069702,0.261404991149902,0.656627237796783,-0.68054187297821,0.359041213989258,0.638711214065552,-0.820666253566742,0.235349714756012,0.520689308643341,-0.784753620624542,0.0130721488967538,0.619669854640961,-0.75888192653656,0.0905929356813431,0.64489609003067,-0.726919233798981,-0.0355543382465839,0.685801923274994,-0.778954327106476,0.382796823978424,0.496685475111008,-0.731009006500244,0.444979727268219,0.517318785190582,-0.83003705739975,0.34397953748703,0.438994795084,-0.811087369918823,0.390369892120361,0.435601234436035,-0.83003705739975,0.34397953748703,0.438994795084,-0.731009006500244,0.444979727268219,0.517318785190582,-0.760539352893829,0.356308430433273,0.542792797088623,-0.785675287246704,0.34459188580513,0.51378071308136,-0.80880069732666,0.301043659448624,0.505187034606934,-0.685696303844452,0.439216434955597,0.580438911914825,-0.762714803218842,0.378899872303009,0.524119138717651,-0.785675287246704,0.34459188580513,0.51378071308136,-0.698471128940582,0.450913369655609,0.555711328983307,-0.778954327106476,0.382796823978424,0.496685475111008,-0.762714803218842,0.378899872303009,0.524119138717651,-0.501235663890839,-0.265147298574448,0.823686540126801,-0.539523959159851,-0.32560595870018,0.77646279335022, +-0.613130033016205,-0.377107530832291,0.694162309169769,-0.593381226062775,-0.27140411734581,0.757785260677338,-0.613130033016205,-0.377107530832291,0.694162309169769,-0.45221135020256,-0.447591036558151,0.771470665931702,-0.720902025699615,-0.597240686416626,0.351572901010513,-0.748091280460358,-0.617509305477142,0.242984667420387,-0.766883194446564,-0.574254274368286,0.286569654941559,-0.597936034202576,-0.451835334300995,0.662055253982544,-0.653389155864716,-0.457302182912827,0.603288650512695,-0.618659675121307,-0.420008629560471,0.663967490196228,-0.566566526889801,-0.412621229887009,0.713264286518097,-0.574172496795654,-0.387785732746124,0.721074223518372,-0.618659675121307,-0.420008629560471,0.663967490196228,-0.566566526889801,-0.412621229887009,0.713264286518097,-0.526377439498901,-0.350357472896576,0.774710476398468,-0.574172496795654,-0.387785732746124,0.721074223518372,-0.520337224006653,-0.298947989940643,0.799924433231354,-0.526377439498901,-0.350357472896576,0.774710476398468,-0.4769307076931,-0.305882006883621,0.823998272418976,-0.520337224006653,-0.298947989940643,0.799924433231354,-0.4769307076931,-0.305882006883621,0.823998272418976,-0.499073058366776,-0.229532331228256,0.835608065128326,-0.40010079741478,-0.312474608421326,0.861556053161621,-0.49248680472374,-0.234131425619125,0.838235676288605,-0.4769307076931,-0.305882006883621,0.823998272418976,-0.49248680472374,-0.234131425619125,0.838235676288605,-0.390744924545288,-0.180885970592499,0.902551174163818,-0.509527385234833,-0.11929539591074,0.852144598960876,-0.470408588647842,-0.0322393104434013,0.881859540939331,-0.509527385234833,-0.11929539591074,0.852144598960876,-0.390744924545288,-0.180885970592499,0.902551174163818,-0.470408588647842,-0.0322393104434013,0.881859540939331,-0.317623972892761,-0.0618817359209061,0.946195304393768,-0.492703646421433,0.0864859521389008,0.865888655185699,-0.378438204526901,0.0950650721788406,0.920731782913208,-0.43558207154274,0.228591978549957,0.87063992023468,-0.492703646421433,0.0864859521389008,0.865888655185699, +-0.434461623430252,0.266305267810822,0.860421121120453,-0.43558207154274,0.228591978549957,0.87063992023468,-0.40191313624382,0.323040187358856,0.856802642345428,-0.434461623430252,0.266305267810822,0.860421121120453,-0.40191313624382,0.323040187358856,0.856802642345428,-0.387099713087082,0.325969308614731,0.862495064735413,-0.183176711201668,0.120957732200623,0.975610256195068,-0.258424520492554,0.256875544786453,0.931252717971802,-0.15008307993412,0.175075009465218,0.973048627376556,-0.183176711201668,0.120957732200623,0.975610256195068,-0.15008307993412,0.175075009465218,0.973048627376556,-0.186008542776108,0.15044005215168,0.970962703227997,-0.344723641872406,0.350178092718124,0.870942533016205,-0.258424520492554,0.256875544786453,0.931252717971802,-0.387099713087082,0.325969308614731,0.862495064735413,0.364674866199493,-0.620351493358612,0.694389045238495,0.085183173418045,-0.0245090182870626,0.996063768863678,0.306534439325333,-0.433536976575851,0.847397327423096,0.364674866199493,-0.620351493358612,0.694389045238495,0.306534439325333,-0.433536976575851,0.847397327423096,0.496982485055923,-0.668016731739044,0.553860902786255,0.555728256702423,-0.759969532489777,0.337064146995544,0.496982485055923,-0.668016731739044,0.553860902786255,0.683156430721283,-0.660563468933105,0.311372846364975,0.614892244338989,-0.745778739452362,0.256362229585648,0.555728256702423,-0.759969532489777,0.337064146995544,0.683156430721283,-0.660563468933105,0.311372846364975,-0.714508354663849,-0.591030836105347,0.374379724264145,-0.658422529697418,-0.627770602703094,0.415191113948822,-0.63856428861618,-0.623410284519196,0.451215118169785,-0.632843732833862,-0.56480073928833,0.529630780220032,-0.63856428861618,-0.623410284519196,0.451215118169785,-0.628038883209229,-0.571669697761536,0.52797794342041,-0.628038883209229,-0.571669697761536,0.52797794342041,-0.653389155864716,-0.457302182912827,0.603288650512695,-0.60381406545639,-0.506373643875122,0.615624964237213,-0.658422529697418,-0.627770602703094,0.415191113948822,-0.714508354663849,-0.591030836105347,0.374379724264145, +-0.720902025699615,-0.597240686416626,0.351572901010513,-0.91212797164917,-0.20737598836422,-0.353578329086304,-0.920588433742523,-0.242459505796433,-0.306153893470764,-0.889040887355804,-0.337670803070068,-0.309167742729187,-0.945879399776459,-0.251555293798447,-0.205017283558846,-0.920588433742523,-0.242459505796433,-0.306153893470764,-0.910928666591644,-0.393385827541351,-0.124324165284634,-0.873591482639313,-0.486051619052887,0.0243236813694239,-0.953193485736847,-0.291497200727463,-0.0803206488490105,-0.910928666591644,-0.393385827541351,-0.124324165284634,-0.873591482639313,-0.486051619052887,0.0243236813694239,-0.844181656837463,-0.535824835300446,-0.0157768819481134,-0.953193485736847,-0.291497200727463,-0.0803206488490105,-0.844181656837463,-0.535824835300446,-0.0157768819481134,-0.75166380405426,-0.659386277198792,0.0145309614017606,-0.831585884094238,-0.554932832717896,-0.0226776208728552,-0.831585884094238,-0.554932832717896,-0.0226776208728552,-0.75166380405426,-0.659386277198792,0.0145309614017606,-0.725398659706116,-0.687146365642548,-0.040328424423933,-0.725398659706116,-0.687146365642548,-0.040328424423933,-0.752238690853119,-0.658779084682465,0.0121212583035231,-0.744383990764618,-0.667521357536316,-0.0175328627228737,-0.786814332008362,-0.564614236354828,0.249266520142555,-0.779333770275116,-0.596093118190765,0.193162485957146,-0.800595343112946,-0.563884913921356,0.202683463692665,-0.800595343112946,-0.563884913921356,0.202683463692665,-0.779333770275116,-0.596093118190765,0.193162485957146,-0.795940279960632,-0.576265573501587,0.185463890433311,-0.740133225917816,-0.643048644065857,0.196700766682625,-0.823086202144623,-0.510116100311279,0.249620676040649,-0.795940279960632,-0.576265573501587,0.185463890433311,-0.752238690853119,-0.658779084682465,0.0121212583035231,-0.821597754955292,-0.549091517925262,0.153217375278473,-0.721447288990021,-0.680855333805084,0.126292541623116,-0.821597754955292,-0.549091517925262,0.153217375278473,-0.823086202144623,-0.510116100311279,0.249620676040649,-0.740133225917816,-0.643048644065857,0.196700766682625, +-0.786814332008362,-0.564614236354828,0.249266520142555,-0.771788477897644,-0.530658900737762,0.350347727537155,-0.766883194446564,-0.574254274368286,0.286569654941559,0.416810870170593,-0.784584224224091,0.459016472101212,0.162769645452499,-0.819616317749023,0.549304068088531,0.309752106666565,-0.869183897972107,0.385451525449753,0.162769645452499,-0.819616317749023,0.549304068088531,0.275488018989563,-0.693823039531708,0.665368854999542,0.0390799157321453,-0.715532720088959,0.697485148906708,0.0390799157321453,-0.715532720088959,0.697485148906708,-0.00110557104926556,-0.585586607456207,0.810608983039856,-0.108738772571087,-0.64336621761322,0.757796585559845,-0.108738772571087,-0.64336621761322,0.757796585559845,-0.00110557104926556,-0.585586607456207,0.810608983039856,-0.173122435808182,-0.510749638080597,0.842118322849274,-0.301441580057144,-0.619108259677887,0.72514671087265,-0.173122435808182,-0.510749638080597,0.842118322849274,-0.45221135020256,-0.447591036558151,0.771470665931702,0.614892244338989,-0.745778739452362,0.256362229585648,0.555734694004059,-0.755917310714722,0.346045941114426,0.45979779958725,-0.836804926395416,0.297226071357727,0.457902014255524,-0.811820685863495,0.362315893173218,0.45979779958725,-0.836804926395416,0.297226071357727,0.555734694004059,-0.755917310714722,0.346045941114426,0.416810870170593,-0.784584224224091,0.459016472101212,0.309752106666565,-0.869183897972107,0.385451525449753,0.457902014255524,-0.811820685863495,0.362315893173218,-0.726919233798981,-0.0355543382465839,0.685801923274994,-0.631844401359558,-0.152502074837685,0.759944558143616,-0.682399451732636,-0.10272128880024,0.723725855350494,-0.682399451732636,-0.10272128880024,0.723725855350494,-0.631844401359558,-0.152502074837685,0.759944558143616,-0.577232122421265,-0.247111320495605,0.7782923579216,-0.38810607790947,-0.245972901582718,0.888184070587158,-0.494538545608521,-0.389540731906891,0.776974558830261,-0.577232122421265,-0.247111320495605,0.7782923579216,-0.230516955256462,-0.362032771110535,0.903213262557983, +-0.358674943447113,-0.362131834030151,0.860356152057648,-0.364372372627258,-0.491858065128326,0.790764391422272,-0.353304833173752,-0.410704016685486,0.840534269809723,-0.230516955256462,-0.362032771110535,0.903213262557983,-0.364372372627258,-0.491858065128326,0.790764391422272,-0.501235663890839,-0.265147298574448,0.823686540126801,-0.593381226062775,-0.27140411734581,0.757785260677338,-0.494659036397934,-0.204967439174652,0.84457129240036,-0.494659036397934,-0.204967439174652,0.84457129240036,-0.522564768791199,-0.35318323969841,0.776007413864136,-0.358674943447113,-0.362131834030151,0.860356152057648,-0.494538545608521,-0.389540731906891,0.776974558830261,-0.353304833173752,-0.410704016685486,0.840534269809723,-0.399892508983612,-0.456387519836426,0.794856131076813,-0.819181740283966,0.132764458656311,0.557955861091614,-0.784753620624542,0.0130721488967538,0.619669854640961,-0.733391463756561,0.137780800461769,0.665697574615479,-0.780823171138763,0.30525541305542,0.545100092887878,-0.68054187297821,0.359041213989258,0.638711214065552,-0.714385569095612,0.38433450460434,0.584756433963776,-0.714385569095612,0.38433450460434,0.584756433963776,-0.760539352893829,0.356308430433273,0.542792797088623,-0.780823171138763,0.30525541305542,0.545100092887878,-0.631379008293152,0.176397547125816,0.755145192146301,-0.707465887069702,0.261404991149902,0.656627237796783,-0.733391463756561,0.137780800461769,0.665697574615479,-0.68054187297821,0.359041213989258,0.638711214065552,-0.707465887069702,0.261404991149902,0.656627237796783,-0.579309463500977,0.377046525478363,0.722659170627594,-0.726919233798981,-0.0355543382465839,0.685801923274994,-0.682399451732636,-0.10272128880024,0.723725855350494,-0.784753620624542,0.0130721488967538,0.619669854640961,-0.677463173866272,0.482017248868942,0.555610358715057,-0.731009006500244,0.444979727268219,0.517318785190582,-0.778954327106476,0.382796823978424,0.496685475111008,-0.760539352893829,0.356308430433273,0.542792797088623,-0.685696303844452,0.439216434955597,0.580438911914825,-0.785675287246704,0.34459188580513,0.51378071308136, +-0.762714803218842,0.378899872303009,0.524119138717651,-0.685696303844452,0.439216434955597,0.580438911914825,-0.698471128940582,0.450913369655609,0.555711328983307,-0.778954327106476,0.382796823978424,0.496685475111008,-0.698471128940582,0.450913369655609,0.555711328983307,-0.677463173866272,0.482017248868942,0.555610358715057,-0.593381226062775,-0.27140411734581,0.757785260677338,-0.501235663890839,-0.265147298574448,0.823686540126801,-0.613130033016205,-0.377107530832291,0.694162309169769,-0.464986681938171,-0.329886078834534,0.821560978889465,-0.593381226062775,-0.27140411734581,0.757785260677338,-0.45221135020256,-0.447591036558151,0.771470665931702,-0.771788477897644,-0.530658900737762,0.350347727537155,-0.720902025699615,-0.597240686416626,0.351572901010513,-0.766883194446564,-0.574254274368286,0.286569654941559,-0.627573132514954,-0.447977781295776,0.636763453483582,-0.618659675121307,-0.420008629560471,0.663967490196228,-0.653389155864716,-0.457302182912827,0.603288650512695,-0.627573132514954,-0.447977781295776,0.636763453483582,-0.566566526889801,-0.412621229887009,0.713264286518097,-0.618659675121307,-0.420008629560471,0.663967490196228,-0.496645599603653,-0.389833480119705,0.775482356548309,-0.526377439498901,-0.350357472896576,0.774710476398468,-0.566566526889801,-0.412621229887009,0.713264286518097,-0.459717273712158,-0.355375468730927,0.813860058784485,-0.4769307076931,-0.305882006883621,0.823998272418976,-0.526377439498901,-0.350357472896576,0.774710476398468,-0.49248680472374,-0.234131425619125,0.838235676288605,-0.40010079741478,-0.312474608421326,0.861556053161621,-0.390744924545288,-0.180885970592499,0.902551174163818,-0.40010079741478,-0.312474608421326,0.861556053161621,-0.4769307076931,-0.305882006883621,0.823998272418976,-0.383299976587296,-0.391946256160736,0.836336731910706,-0.317623972892761,-0.0618817359209061,0.946195304393768,-0.470408588647842,-0.0322393104434013,0.881859540939331,-0.390744924545288,-0.180885970592499,0.902551174163818,-0.378438204526901,0.0950650721788406,0.920731782913208, +-0.492703646421433,0.0864859521389008,0.865888655185699,-0.317623972892761,-0.0618817359209061,0.946195304393768,-0.283735722303391,0.144951328635216,0.947883486747742,-0.43558207154274,0.228591978549957,0.87063992023468,-0.378438204526901,0.0950650721788406,0.920731782913208,-0.40191313624382,0.323040187358856,0.856802642345428,-0.43558207154274,0.228591978549957,0.87063992023468,-0.316372871398926,0.293816864490509,0.901986598968506,-0.344723641872406,0.350178092718124,0.870942533016205,-0.387099713087082,0.325969308614731,0.862495064735413,-0.40191313624382,0.323040187358856,0.856802642345428,-0.258424520492554,0.256875544786453,0.931252717971802,-0.222731307148933,0.354214578866959,0.908252537250519,-0.15008307993412,0.175075009465218,0.973048627376556,-0.344723641872406,0.350178092718124,0.870942533016205,-0.222731307148933,0.354214578866959,0.908252537250519,-0.258424520492554,0.256875544786453,0.931252717971802,0.683156430721283,-0.660563468933105,0.311372846364975,0.714718401432037,-0.635812103748322,0.291411072015762,0.614892244338989,-0.745778739452362,0.256362229585648,-0.63856428861618,-0.623410284519196,0.451215118169785,-0.658422529697418,-0.627770602703094,0.415191113948822,-0.628038883209229,-0.571669697761536,0.52797794342041,-0.628038883209229,-0.571669697761536,0.52797794342041,-0.701887249946594,-0.481283873319626,0.525090456008911,-0.653389155864716,-0.457302182912827,0.603288650512695,-0.658422529697418,-0.627770602703094,0.415191113948822,-0.720902025699615,-0.597240686416626,0.351572901010513,-0.720056056976318,-0.531495630741119,0.446129471063614,-0.91212797164917,-0.20737598836422,-0.353578329086304,-0.918716192245483,-0.299735337495804,-0.257136017084122,-0.920588433742523,-0.242459505796433,-0.306153893470764,-0.918716192245483,-0.299735337495804,-0.257136017084122,-0.910928666591644,-0.393385827541351,-0.124324165284634,-0.920588433742523,-0.242459505796433,-0.306153893470764,-0.873591482639313,-0.486051619052887,0.0243236813694239,-0.910928666591644,-0.393385827541351,-0.124324165284634, +-0.831705987453461,-0.554505884647369,0.0280758943408728,-0.873591482639313,-0.486051619052887,0.0243236813694239,-0.788037598133087,-0.611174285411835,0.0739092975854874,-0.844181656837463,-0.535824835300446,-0.0157768819481134,-0.75166380405426,-0.659386277198792,0.0145309614017606,-0.844181656837463,-0.535824835300446,-0.0157768819481134,-0.788037598133087,-0.611174285411835,0.0739092975854874,-0.725398659706116,-0.687146365642548,-0.040328424423933,-0.75166380405426,-0.659386277198792,0.0145309614017606,-0.762341260910034,-0.646538019180298,0.0287115089595318,-0.725398659706116,-0.687146365642548,-0.040328424423933,-0.762341260910034,-0.646538019180298,0.0287115089595318,-0.752238690853119,-0.658779084682465,0.0121212583035231,-0.734091937541962,-0.633768022060394,0.243817463517189,-0.786814332008362,-0.564614236354828,0.249266520142555,-0.800595343112946,-0.563884913921356,0.202683463692665,-0.800595343112946,-0.563884913921356,0.202683463692665,-0.795940279960632,-0.576265573501587,0.185463890433311,-0.826578617095947,-0.498530864715576,0.261217534542084,-0.823086202144623,-0.510116100311279,0.249620676040649,-0.826578617095947,-0.498530864715576,0.261217534542084,-0.795940279960632,-0.576265573501587,0.185463890433311,-0.821597754955292,-0.549091517925262,0.153217375278473,-0.752238690853119,-0.658779084682465,0.0121212583035231,-0.897485792636871,-0.436534851789474,0.0629006251692772,-0.821597754955292,-0.549091517925262,0.153217375278473,-0.889172434806824,-0.414977192878723,0.192785561084747,-0.823086202144623,-0.510116100311279,0.249620676040649,-0.786814332008362,-0.564614236354828,0.249266520142555,-0.742680251598358,-0.574352502822876,0.344303667545319,-0.771788477897644,-0.530658900737762,0.350347727537155,0.416810870170593,-0.784584224224091,0.459016472101212,0.275488018989563,-0.693823039531708,0.665368854999542,0.162769645452499,-0.819616317749023,0.549304068088531,0.152228683233261,-0.59786731004715,0.787007570266724,0.0390799157321453,-0.715532720088959,0.697485148906708,0.275488018989563,-0.693823039531708,0.665368854999542, +0.0390799157321453,-0.715532720088959,0.697485148906708,0.152228683233261,-0.59786731004715,0.787007570266724,-0.00110557104926556,-0.585586607456207,0.810608983039856,-0.00110557104926556,-0.585586607456207,0.810608983039856,0.037371639162302,-0.487762749195099,0.872175872325897,-0.173122435808182,-0.510749638080597,0.842118322849274,-0.45221135020256,-0.447591036558151,0.771470665931702,-0.173122435808182,-0.510749638080597,0.842118322849274,-0.271944135427475,-0.372416436672211,0.887328684329987,0.614892244338989,-0.745778739452362,0.256362229585648,0.6632399559021,-0.670752823352814,0.331968694925308,0.555734694004059,-0.755917310714722,0.346045941114426,0.555734694004059,-0.755917310714722,0.346045941114426,0.594188988208771,-0.699383914470673,0.397242456674576,0.457902014255524,-0.811820685863495,0.362315893173218,0.594188988208771,-0.699383914470673,0.397242456674576,0.416810870170593,-0.784584224224091,0.459016472101212,0.457902014255524,-0.811820685863495,0.362315893173218,-0.548067808151245,-0.113690249621868,0.828671216964722,-0.682399451732636,-0.10272128880024,0.723725855350494,-0.577232122421265,-0.247111320495605,0.7782923579216,-0.577232122421265,-0.247111320495605,0.7782923579216,-0.494538545608521,-0.389540731906891,0.776974558830261,-0.50686776638031,-0.302413374185562,0.807236671447754,-0.522564768791199,-0.35318323969841,0.776007413864136,-0.364372372627258,-0.491858065128326,0.790764391422272,-0.358674943447113,-0.362131834030151,0.860356152057648,-0.353304833173752,-0.410704016685486,0.840534269809723,-0.364372372627258,-0.491858065128326,0.790764391422272,-0.399892508983612,-0.456387519836426,0.794856131076813,-0.60769385099411,-0.145718067884445,0.780688345432281,-0.494659036397934,-0.204967439174652,0.84457129240036,-0.593381226062775,-0.27140411734581,0.757785260677338,-0.553639352321625,-0.215287074446678,0.804446935653687,-0.522564768791199,-0.35318323969841,0.776007413864136,-0.494659036397934,-0.204967439174652,0.84457129240036,-0.50686776638031,-0.302413374185562,0.807236671447754,-0.494538545608521,-0.389540731906891,0.776974558830261, +-0.399892508983612,-0.456387519836426,0.794856131076813,-0.784753620624542,0.0130721488967538,0.619669854640961,-0.676679909229279,0.0300192292779684,0.735664963722229,-0.733391463756561,0.137780800461769,0.665697574615479,-0.68054187297821,0.359041213989258,0.638711214065552,-0.631051957607269,0.442671030759811,0.637036621570587,-0.714385569095612,0.38433450460434,0.584756433963776,-0.631051957607269,0.442671030759811,0.637036621570587,-0.760539352893829,0.356308430433273,0.542792797088623,-0.714385569095612,0.38433450460434,0.584756433963776,-0.707465887069702,0.261404991149902,0.656627237796783,-0.631379008293152,0.176397547125816,0.755145192146301,-0.601071715354919,0.282114267349243,0.747746050357819,-0.676679909229279,0.0300192292779684,0.735664963722229,-0.631379008293152,0.176397547125816,0.755145192146301,-0.733391463756561,0.137780800461769,0.665697574615479,-0.579309463500977,0.377046525478363,0.722659170627594,-0.707465887069702,0.261404991149902,0.656627237796783,-0.601071715354919,0.282114267349243,0.747746050357819,-0.579309463500977,0.377046525478363,0.722659170627594,-0.577174782752991,0.436297655105591,0.6902996301651,-0.68054187297821,0.359041213989258,0.638711214065552,-0.784753620624542,0.0130721488967538,0.619669854640961,-0.682399451732636,-0.10272128880024,0.723725855350494,-0.676679909229279,0.0300192292779684,0.735664963722229,-0.631051957607269,0.442671030759811,0.637036621570587,-0.685696303844452,0.439216434955597,0.580438911914825,-0.760539352893829,0.356308430433273,0.542792797088623,-0.57852429151535,0.547211647033691,0.604870915412903,-0.698471128940582,0.450913369655609,0.555711328983307,-0.685696303844452,0.439216434955597,0.580438911914825,-0.677463173866272,0.482017248868942,0.555610358715057,-0.698471128940582,0.450913369655609,0.555711328983307,-0.57852429151535,0.547211647033691,0.604870915412903,-0.464986681938171,-0.329886078834534,0.821560978889465,-0.493840128183365,-0.203843966126442,0.845322072505951,-0.593381226062775,-0.27140411734581,0.757785260677338,-0.45221135020256,-0.447591036558151,0.771470665931702, +-0.271944135427475,-0.372416436672211,0.887328684329987,-0.464986681938171,-0.329886078834534,0.821560978889465,-0.771788477897644,-0.530658900737762,0.350347727537155,-0.765358567237854,-0.500748991966248,0.404322355985641,-0.720902025699615,-0.597240686416626,0.351572901010513,-0.653389155864716,-0.457302182912827,0.603288650512695,-0.679946899414063,-0.45920118689537,0.57166975736618,-0.627573132514954,-0.447977781295776,0.636763453483582,-0.54664158821106,-0.490731418132782,0.678502380847931,-0.566566526889801,-0.412621229887009,0.713264286518097,-0.627573132514954,-0.447977781295776,0.636763453483582,-0.526377439498901,-0.350357472896576,0.774710476398468,-0.496645599603653,-0.389833480119705,0.775482356548309,-0.459717273712158,-0.355375468730927,0.813860058784485,-0.496645599603653,-0.389833480119705,0.775482356548309,-0.566566526889801,-0.412621229887009,0.713264286518097,-0.456257194280624,-0.444031208753586,0.771145582199097,-0.383299976587296,-0.391946256160736,0.836336731910706,-0.4769307076931,-0.305882006883621,0.823998272418976,-0.459717273712158,-0.355375468730927,0.813860058784485,-0.299535185098648,-0.255392611026764,0.91926771402359,-0.390744924545288,-0.180885970592499,0.902551174163818,-0.40010079741478,-0.312474608421326,0.861556053161621,-0.22968415915966,-0.348241597414017,0.908830523490906,-0.40010079741478,-0.312474608421326,0.861556053161621,-0.383299976587296,-0.391946256160736,0.836336731910706,-0.238861963152885,-0.169863983988762,0.956081092357636,-0.317623972892761,-0.0618817359209061,0.946195304393768,-0.390744924545288,-0.180885970592499,0.902551174163818,-0.317623972892761,-0.0618817359209061,0.946195304393768,-0.265586793422699,0.0171879176050425,0.963933706283569,-0.378438204526901,0.0950650721788406,0.920731782913208,-0.43558207154274,0.228591978549957,0.87063992023468,-0.283735722303391,0.144951328635216,0.947883486747742,-0.316372871398926,0.293816864490509,0.901986598968506,-0.283735722303391,0.144951328635216,0.947883486747742,-0.378438204526901,0.0950650721788406,0.920731782913208, +-0.265586793422699,0.0171879176050425,0.963933706283569,-0.344723641872406,0.350178092718124,0.870942533016205,-0.40191313624382,0.323040187358856,0.856802642345428,-0.316372871398926,0.293816864490509,0.901986598968506,-0.287048310041428,0.375617951154709,0.88120049238205,-0.222731307148933,0.354214578866959,0.908252537250519,-0.344723641872406,0.350178092718124,0.870942533016205,0.683156430721283,-0.660563468933105,0.311372846364975,0.780604600906372,-0.532097578048706,0.327915459871292,0.714718401432037,-0.635812103748322,0.291411072015762,0.614892244338989,-0.745778739452362,0.256362229585648,0.714718401432037,-0.635812103748322,0.291411072015762,0.6632399559021,-0.670752823352814,0.331968694925308,-0.628038883209229,-0.571669697761536,0.52797794342041,-0.658422529697418,-0.627770602703094,0.415191113948822,-0.720056056976318,-0.531495630741119,0.446129471063614,-0.628038883209229,-0.571669697761536,0.52797794342041,-0.720056056976318,-0.531495630741119,0.446129471063614,-0.701887249946594,-0.481283873319626,0.525090456008911,-0.701887249946594,-0.481283873319626,0.525090456008911,-0.679946899414063,-0.45920118689537,0.57166975736618,-0.653389155864716,-0.457302182912827,0.603288650512695,-0.765358567237854,-0.500748991966248,0.404322355985641,-0.720056056976318,-0.531495630741119,0.446129471063614,-0.720902025699615,-0.597240686416626,0.351572901010513,-0.918716192245483,-0.299735337495804,-0.257136017084122,-0.91212797164917,-0.20737598836422,-0.353578329086304,-0.913932144641876,-0.214485228061676,-0.344563186168671,-0.85627806186676,-0.506259620189667,-0.102415263652802,-0.910928666591644,-0.393385827541351,-0.124324165284634,-0.918716192245483,-0.299735337495804,-0.257136017084122,-0.831705987453461,-0.554505884647369,0.0280758943408728,-0.910928666591644,-0.393385827541351,-0.124324165284634,-0.85627806186676,-0.506259620189667,-0.102415263652802,-0.873591482639313,-0.486051619052887,0.0243236813694239,-0.831705987453461,-0.554505884647369,0.0280758943408728,-0.788037598133087,-0.611174285411835,0.0739092975854874, +-0.75166380405426,-0.659386277198792,0.0145309614017606,-0.788037598133087,-0.611174285411835,0.0739092975854874,-0.810932278633118,-0.58038717508316,0.0744280964136124,-0.762341260910034,-0.646538019180298,0.0287115089595318,-0.75166380405426,-0.659386277198792,0.0145309614017606,-0.810932278633118,-0.58038717508316,0.0744280964136124,-0.829347968101501,-0.558140397071838,0.0257109999656677,-0.752238690853119,-0.658779084682465,0.0121212583035231,-0.762341260910034,-0.646538019180298,0.0287115089595318,-0.734091937541962,-0.633768022060394,0.243817463517189,-0.743267834186554,-0.617993950843811,0.256195396184921,-0.786814332008362,-0.564614236354828,0.249266520142555,-0.734091937541962,-0.633768022060394,0.243817463517189,-0.800595343112946,-0.563884913921356,0.202683463692665,-0.767191648483276,-0.574089705944061,0.286072880029678,-0.800595343112946,-0.563884913921356,0.202683463692665,-0.826578617095947,-0.498530864715576,0.261217534542084,-0.767191648483276,-0.574089705944061,0.286072880029678,-0.817855715751648,-0.50813364982605,0.270022362470627,-0.826578617095947,-0.498530864715576,0.261217534542084,-0.823086202144623,-0.510116100311279,0.249620676040649,-0.752238690853119,-0.658779084682465,0.0121212583035231,-0.829347968101501,-0.558140397071838,0.0257109999656677,-0.897485792636871,-0.436534851789474,0.0629006251692772,-0.821597754955292,-0.549091517925262,0.153217375278473,-0.897485792636871,-0.436534851789474,0.0629006251692772,-0.889172434806824,-0.414977192878723,0.192785561084747,-0.817855715751648,-0.50813364982605,0.270022362470627,-0.823086202144623,-0.510116100311279,0.249620676040649,-0.889172434806824,-0.414977192878723,0.192785561084747,-0.786814332008362,-0.564614236354828,0.249266520142555,-0.743267834186554,-0.617993950843811,0.256195396184921,-0.742680251598358,-0.574352502822876,0.344303667545319,-0.749107718467712,-0.512702882289886,0.419491618871689,-0.771788477897644,-0.530658900737762,0.350347727537155,-0.742680251598358,-0.574352502822876,0.344303667545319,0.275488018989563,-0.693823039531708,0.665368854999542, +0.416810870170593,-0.784584224224091,0.459016472101212,0.462355136871338,-0.662181675434113,0.589697360992432,0.348755180835724,-0.554955899715424,0.755244076251984,0.152228683233261,-0.59786731004715,0.787007570266724,0.275488018989563,-0.693823039531708,0.665368854999542,0.037371639162302,-0.487762749195099,0.872175872325897,-0.00110557104926556,-0.585586607456207,0.810608983039856,0.152228683233261,-0.59786731004715,0.787007570266724,-0.0967972502112389,-0.388627648353577,0.916296184062958,-0.173122435808182,-0.510749638080597,0.842118322849274,0.037371639162302,-0.487762749195099,0.872175872325897,-0.271944135427475,-0.372416436672211,0.887328684329987,-0.173122435808182,-0.510749638080597,0.842118322849274,-0.0967972502112389,-0.388627648353577,0.916296184062958,0.555734694004059,-0.755917310714722,0.346045941114426,0.6632399559021,-0.670752823352814,0.331968694925308,0.594188988208771,-0.699383914470673,0.397242456674576,0.572678685188293,-0.683138489723206,0.45316743850708,0.416810870170593,-0.784584224224091,0.459016472101212,0.594188988208771,-0.699383914470673,0.397242456674576,-0.548067808151245,-0.113690249621868,0.828671216964722,-0.676679909229279,0.0300192292779684,0.735664963722229,-0.682399451732636,-0.10272128880024,0.723725855350494,-0.50686776638031,-0.302413374185562,0.807236671447754,-0.548067808151245,-0.113690249621868,0.828671216964722,-0.577232122421265,-0.247111320495605,0.7782923579216,-0.364372372627258,-0.491858065128326,0.790764391422272,-0.522564768791199,-0.35318323969841,0.776007413864136,-0.416490495204926,-0.402503281831741,0.815185010433197,-0.399892508983612,-0.456387519836426,0.794856131076813,-0.364372372627258,-0.491858065128326,0.790764391422272,-0.276288002729416,-0.429793536663055,0.859617531299591,-0.553639352321625,-0.215287074446678,0.804446935653687,-0.494659036397934,-0.204967439174652,0.84457129240036,-0.60769385099411,-0.145718067884445,0.780688345432281,-0.60769385099411,-0.145718067884445,0.780688345432281,-0.593381226062775,-0.27140411734581,0.757785260677338,-0.493840128183365,-0.203843966126442,0.845322072505951, +-0.553639352321625,-0.215287074446678,0.804446935653687,-0.416490495204926,-0.402503281831741,0.815185010433197,-0.522564768791199,-0.35318323969841,0.776007413864136,-0.331889152526855,-0.293083101511002,0.896633565425873,-0.50686776638031,-0.302413374185562,0.807236671447754,-0.399892508983612,-0.456387519836426,0.794856131076813,-0.631051957607269,0.442671030759811,0.637036621570587,-0.68054187297821,0.359041213989258,0.638711214065552,-0.577174782752991,0.436297655105591,0.6902996301651,-0.631379008293152,0.176397547125816,0.755145192146301,-0.529776573181152,0.195684358477592,0.825254082679749,-0.601071715354919,0.282114267349243,0.747746050357819,-0.631379008293152,0.176397547125816,0.755145192146301,-0.676679909229279,0.0300192292779684,0.735664963722229,-0.547991991043091,0.0514636859297752,0.834898889064789,-0.504277408123016,0.315880626440048,0.80369371175766,-0.579309463500977,0.377046525478363,0.722659170627594,-0.601071715354919,0.282114267349243,0.747746050357819,-0.579309463500977,0.377046525478363,0.722659170627594,-0.50067675113678,0.451377749443054,0.738634407520294,-0.577174782752991,0.436297655105591,0.6902996301651,-0.631051957607269,0.442671030759811,0.637036621570587,-0.5713991522789,0.513698935508728,0.640012562274933,-0.685696303844452,0.439216434955597,0.580438911914825,-0.5713991522789,0.513698935508728,0.640012562274933,-0.57852429151535,0.547211647033691,0.604870915412903,-0.685696303844452,0.439216434955597,0.580438911914825,-0.3325574696064,-0.234743729233742,0.913400650024414,-0.493840128183365,-0.203843966126442,0.845322072505951,-0.464986681938171,-0.329886078834534,0.821560978889465,-0.271944135427475,-0.372416436672211,0.887328684329987,-0.3325574696064,-0.234743729233742,0.913400650024414,-0.464986681938171,-0.329886078834534,0.821560978889465,-0.765358567237854,-0.500748991966248,0.404322355985641,-0.771788477897644,-0.530658900737762,0.350347727537155,-0.749107718467712,-0.512702882289886,0.419491618871689,-0.627573132514954,-0.447977781295776,0.636763453483582,-0.679946899414063,-0.45920118689537,0.57166975736618, +-0.620460569858551,-0.529958963394165,0.578076064586639,-0.54664158821106,-0.490731418132782,0.678502380847931,-0.456257194280624,-0.444031208753586,0.771145582199097,-0.566566526889801,-0.412621229887009,0.713264286518097,-0.620460569858551,-0.529958963394165,0.578076064586639,-0.54664158821106,-0.490731418132782,0.678502380847931,-0.627573132514954,-0.447977781295776,0.636763453483582,-0.420413136482239,-0.41815596818924,0.805231809616089,-0.459717273712158,-0.355375468730927,0.813860058784485,-0.496645599603653,-0.389833480119705,0.775482356548309,-0.496645599603653,-0.389833480119705,0.775482356548309,-0.456257194280624,-0.444031208753586,0.771145582199097,-0.420413136482239,-0.41815596818924,0.805231809616089,-0.383299976587296,-0.391946256160736,0.836336731910706,-0.459717273712158,-0.355375468730927,0.813860058784485,-0.420413136482239,-0.41815596818924,0.805231809616089,-0.299535185098648,-0.255392611026764,0.91926771402359,-0.238861963152885,-0.169863983988762,0.956081092357636,-0.390744924545288,-0.180885970592499,0.902551174163818,-0.299535185098648,-0.255392611026764,0.91926771402359,-0.40010079741478,-0.312474608421326,0.861556053161621,-0.22968415915966,-0.348241597414017,0.908830523490906,-0.22968415915966,-0.348241597414017,0.908830523490906,-0.383299976587296,-0.391946256160736,0.836336731910706,-0.25197097659111,-0.444901674985886,0.859402716159821,-0.317623972892761,-0.0618817359209061,0.946195304393768,-0.238861963152885,-0.169863983988762,0.956081092357636,-0.105664402246475,-0.179700061678886,0.97803008556366,-0.317623972892761,-0.0618817359209061,0.946195304393768,-0.181261658668518,-0.120888881385326,0.975976407527924,-0.265586793422699,0.0171879176050425,0.963933706283569,-0.195349723100662,0.237663000822067,0.951501309871674,-0.316372871398926,0.293816864490509,0.901986598968506,-0.283735722303391,0.144951328635216,0.947883486747742,-0.148525774478912,-0.0547506734728813,0.987391710281372,-0.283735722303391,0.144951328635216,0.947883486747742,-0.265586793422699,0.0171879176050425,0.963933706283569, +-0.287048310041428,0.375617951154709,0.88120049238205,-0.344723641872406,0.350178092718124,0.870942533016205,-0.316372871398926,0.293816864490509,0.901986598968506,-0.287048310041428,0.375617951154709,0.88120049238205,-0.170585066080093,0.371656179428101,0.912563562393188,-0.222731307148933,0.354214578866959,0.908252537250519,0.731087446212769,-0.579987943172455,0.359339624643326,0.714718401432037,-0.635812103748322,0.291411072015762,0.780604600906372,-0.532097578048706,0.327915459871292,0.6632399559021,-0.670752823352814,0.331968694925308,0.714718401432037,-0.635812103748322,0.291411072015762,0.731087446212769,-0.579987943172455,0.359339624643326,-0.720056056976318,-0.531495630741119,0.446129471063614,-0.74715381860733,-0.475012958049774,0.464891076087952,-0.701887249946594,-0.481283873319626,0.525090456008911,-0.679946899414063,-0.45920118689537,0.57166975736618,-0.701887249946594,-0.481283873319626,0.525090456008911,-0.694767117500305,-0.511697113513947,0.505434989929199,-0.720056056976318,-0.531495630741119,0.446129471063614,-0.765358567237854,-0.500748991966248,0.404322355985641,-0.74715381860733,-0.475012958049774,0.464891076087952,-0.918716192245483,-0.299735337495804,-0.257136017084122,-0.913932144641876,-0.214485228061676,-0.344563186168671,-0.884692966938019,-0.418374985456467,-0.205622464418411,-0.918716192245483,-0.299735337495804,-0.257136017084122,-0.884692966938019,-0.418374985456467,-0.205622464418411,-0.85627806186676,-0.506259620189667,-0.102415263652802,-0.822572529315948,-0.566470801830292,0.0498522222042084,-0.831705987453461,-0.554505884647369,0.0280758943408728,-0.85627806186676,-0.506259620189667,-0.102415263652802,-0.788037598133087,-0.611174285411835,0.0739092975854874,-0.831705987453461,-0.554505884647369,0.0280758943408728,-0.822572529315948,-0.566470801830292,0.0498522222042084,-0.788037598133087,-0.611174285411835,0.0739092975854874,-0.822572529315948,-0.566470801830292,0.0498522222042084,-0.810932278633118,-0.58038717508316,0.0744280964136124,-0.888942778110504,-0.455443978309631,0.0484920255839825, +-0.762341260910034,-0.646538019180298,0.0287115089595318,-0.810932278633118,-0.58038717508316,0.0744280964136124,-0.829347968101501,-0.558140397071838,0.0257109999656677,-0.762341260910034,-0.646538019180298,0.0287115089595318,-0.888942778110504,-0.455443978309631,0.0484920255839825,-0.734091937541962,-0.633768022060394,0.243817463517189,-0.678632736206055,-0.693777203559875,0.241102948784828,-0.743267834186554,-0.617993950843811,0.256195396184921,-0.734091937541962,-0.633768022060394,0.243817463517189,-0.767191648483276,-0.574089705944061,0.286072880029678,-0.702935457229614,-0.658907115459442,0.267811506986618,-0.767191648483276,-0.574089705944061,0.286072880029678,-0.826578617095947,-0.498530864715576,0.261217534542084,-0.817855715751648,-0.50813364982605,0.270022362470627,-0.888942778110504,-0.455443978309631,0.0484920255839825,-0.897485792636871,-0.436534851789474,0.0629006251692772,-0.829347968101501,-0.558140397071838,0.0257109999656677,-0.889172434806824,-0.414977192878723,0.192785561084747,-0.897485792636871,-0.436534851789474,0.0629006251692772,-0.893689036369324,-0.438991904258728,0.0927686914801598,-0.864194989204407,-0.468484848737717,0.183545306324959,-0.817855715751648,-0.50813364982605,0.270022362470627,-0.889172434806824,-0.414977192878723,0.192785561084747,-0.676341891288757,-0.663127481937408,0.32066085934639,-0.742680251598358,-0.574352502822876,0.344303667545319,-0.743267834186554,-0.617993950843811,0.256195396184921,-0.654336869716644,-0.619376957416534,0.433837860822678,-0.749107718467712,-0.512702882289886,0.419491618871689,-0.742680251598358,-0.574352502822876,0.344303667545319,0.572678685188293,-0.683138489723206,0.45316743850708,0.462355136871338,-0.662181675434113,0.589697360992432,0.416810870170593,-0.784584224224091,0.459016472101212,0.275488018989563,-0.693823039531708,0.665368854999542,0.462355136871338,-0.662181675434113,0.589697360992432,0.348755180835724,-0.554955899715424,0.755244076251984,0.348755180835724,-0.554955899715424,0.755244076251984,0.204801753163338,-0.514702320098877,0.832548856735229, +0.152228683233261,-0.59786731004715,0.787007570266724,0.204801753163338,-0.514702320098877,0.832548856735229,0.037371639162302,-0.487762749195099,0.872175872325897,0.152228683233261,-0.59786731004715,0.787007570266724,0.0507775880396366,-0.361944079399109,0.930815756320953,-0.0967972502112389,-0.388627648353577,0.916296184062958,0.037371639162302,-0.487762749195099,0.872175872325897,-0.271944135427475,-0.372416436672211,0.887328684329987,-0.0967972502112389,-0.388627648353577,0.916296184062958,-0.173127815127373,-0.255814403295517,0.951097071170807,0.594188988208771,-0.699383914470673,0.397242456674576,0.6632399559021,-0.670752823352814,0.331968694925308,0.731087446212769,-0.579987943172455,0.359339624643326,0.572678685188293,-0.683138489723206,0.45316743850708,0.594188988208771,-0.699383914470673,0.397242456674576,0.678353726863861,-0.575127482414246,0.457235783338547,-0.676679909229279,0.0300192292779684,0.735664963722229,-0.548067808151245,-0.113690249621868,0.828671216964722,-0.547991991043091,0.0514636859297752,0.834898889064789,-0.331889152526855,-0.293083101511002,0.896633565425873,-0.548067808151245,-0.113690249621868,0.828671216964722,-0.50686776638031,-0.302413374185562,0.807236671447754,-0.364372372627258,-0.491858065128326,0.790764391422272,-0.416490495204926,-0.402503281831741,0.815185010433197,-0.276288002729416,-0.429793536663055,0.859617531299591,-0.399892508983612,-0.456387519836426,0.794856131076813,-0.276288002729416,-0.429793536663055,0.859617531299591,-0.331889152526855,-0.293083101511002,0.896633565425873,-0.553639352321625,-0.215287074446678,0.804446935653687,-0.60769385099411,-0.145718067884445,0.780688345432281,-0.535787582397461,-0.109192371368408,0.837262511253357,-0.60769385099411,-0.145718067884445,0.780688345432281,-0.493840128183365,-0.203843966126442,0.845322072505951,-0.555498480796814,-0.100304156541824,0.825445532798767,-0.370857894420624,-0.29189395904541,0.881624758243561,-0.416490495204926,-0.402503281831741,0.815185010433197,-0.553639352321625,-0.215287074446678,0.804446935653687, +-0.523857414722443,0.49890860915184,0.690408051013947,-0.631051957607269,0.442671030759811,0.637036621570587,-0.577174782752991,0.436297655105591,0.6902996301651,-0.529776573181152,0.195684358477592,0.825254082679749,-0.631379008293152,0.176397547125816,0.755145192146301,-0.547991991043091,0.0514636859297752,0.834898889064789,-0.504277408123016,0.315880626440048,0.80369371175766,-0.601071715354919,0.282114267349243,0.747746050357819,-0.529776573181152,0.195684358477592,0.825254082679749,-0.504277408123016,0.315880626440048,0.80369371175766,-0.477193474769592,0.399734497070313,0.782622873783112,-0.579309463500977,0.377046525478363,0.722659170627594,-0.477193474769592,0.399734497070313,0.782622873783112,-0.50067675113678,0.451377749443054,0.738634407520294,-0.579309463500977,0.377046525478363,0.722659170627594,-0.50067675113678,0.451377749443054,0.738634407520294,-0.523857414722443,0.49890860915184,0.690408051013947,-0.577174782752991,0.436297655105591,0.6902996301651,-0.523857414722443,0.49890860915184,0.690408051013947,-0.5713991522789,0.513698935508728,0.640012562274933,-0.631051957607269,0.442671030759811,0.637036621570587,-0.487113237380981,0.570039868354797,0.661645829677582,-0.57852429151535,0.547211647033691,0.604870915412903,-0.5713991522789,0.513698935508728,0.640012562274933,-0.3325574696064,-0.234743729233742,0.913400650024414,-0.43306827545166,-0.0791271924972534,0.897881209850311,-0.493840128183365,-0.203843966126442,0.845322072505951,-0.271944135427475,-0.372416436672211,0.887328684329987,-0.173127815127373,-0.255814403295517,0.951097071170807,-0.3325574696064,-0.234743729233742,0.913400650024414,-0.74715381860733,-0.475012958049774,0.464891076087952,-0.765358567237854,-0.500748991966248,0.404322355985641,-0.749107718467712,-0.512702882289886,0.419491618871689,-0.679946899414063,-0.45920118689537,0.57166975736618,-0.694767117500305,-0.511697113513947,0.505434989929199,-0.620460569858551,-0.529958963394165,0.578076064586639,-0.423127114772797,-0.509684443473816,0.74912291765213,-0.456257194280624,-0.444031208753586,0.771145582199097, +-0.54664158821106,-0.490731418132782,0.678502380847931,-0.50452446937561,-0.581920504570007,0.637827098369598,-0.54664158821106,-0.490731418132782,0.678502380847931,-0.620460569858551,-0.529958963394165,0.578076064586639,-0.371430814266205,-0.46820080280304,0.801764965057373,-0.420413136482239,-0.41815596818924,0.805231809616089,-0.456257194280624,-0.444031208753586,0.771145582199097,-0.420413136482239,-0.41815596818924,0.805231809616089,-0.357235282659531,-0.46213760972023,0.811672151088715,-0.383299976587296,-0.391946256160736,0.836336731910706,-0.299535185098648,-0.255392611026764,0.91926771402359,-0.146450400352478,-0.228753283619881,0.962405383586884,-0.238861963152885,-0.169863983988762,0.956081092357636,-0.299535185098648,-0.255392611026764,0.91926771402359,-0.22968415915966,-0.348241597414017,0.908830523490906,-0.146450400352478,-0.228753283619881,0.962405383586884,-0.383299976587296,-0.391946256160736,0.836336731910706,-0.357235282659531,-0.46213760972023,0.811672151088715,-0.25197097659111,-0.444901674985886,0.859402716159821,-0.22968415915966,-0.348241597414017,0.908830523490906,-0.25197097659111,-0.444901674985886,0.859402716159821,-0.0357704497873783,-0.389571070671082,0.920301496982574,-0.146450400352478,-0.228753283619881,0.962405383586884,-0.105664402246475,-0.179700061678886,0.97803008556366,-0.238861963152885,-0.169863983988762,0.956081092357636,-0.181261658668518,-0.120888881385326,0.975976407527924,-0.317623972892761,-0.0618817359209061,0.946195304393768,-0.105664402246475,-0.179700061678886,0.97803008556366,-0.181261658668518,-0.120888881385326,0.975976407527924,-0.148525774478912,-0.0547506734728813,0.987391710281372,-0.265586793422699,0.0171879176050425,0.963933706283569,-0.316372871398926,0.293816864490509,0.901986598968506,-0.195349723100662,0.237663000822067,0.951501309871674,-0.170585066080093,0.371656179428101,0.912563562393188,-0.115707516670227,0.102764457464218,0.987953007221222,-0.195349723100662,0.237663000822067,0.951501309871674,-0.283735722303391,0.144951328635216,0.947883486747742, +-0.115707516670227,0.102764457464218,0.987953007221222,-0.283735722303391,0.144951328635216,0.947883486747742,-0.148525774478912,-0.0547506734728813,0.987391710281372,-0.287048310041428,0.375617951154709,0.88120049238205,-0.316372871398926,0.293816864490509,0.901986598968506,-0.170585066080093,0.371656179428101,0.912563562393188,0.731087446212769,-0.579987943172455,0.359339624643326,0.780604600906372,-0.532097578048706,0.327915459871292,0.819913685321808,-0.419792413711548,0.389250367879868,-0.74715381860733,-0.475012958049774,0.464891076087952,-0.694767117500305,-0.511697113513947,0.505434989929199,-0.701887249946594,-0.481283873319626,0.525090456008911,-0.8734170794487,-0.357740044593811,-0.330400496721268,-0.884692966938019,-0.418374985456467,-0.205622464418411,-0.913932144641876,-0.214485228061676,-0.344563186168671,-0.85627806186676,-0.506259620189667,-0.102415263652802,-0.884692966938019,-0.418374985456467,-0.205622464418411,-0.838372349739075,-0.539483308792114,-0.0780353993177414,-0.85627806186676,-0.506259620189667,-0.102415263652802,-0.838372349739075,-0.539483308792114,-0.0780353993177414,-0.822572529315948,-0.566470801830292,0.0498522222042084,-0.865390479564667,-0.488686710596085,0.110835678875446,-0.810932278633118,-0.58038717508316,0.0744280964136124,-0.822572529315948,-0.566470801830292,0.0498522222042084,-0.888942778110504,-0.455443978309631,0.0484920255839825,-0.810932278633118,-0.58038717508316,0.0744280964136124,-0.893984436988831,-0.442797690629959,0.0687157586216927,-0.636615991592407,-0.734087586402893,0.236294999718666,-0.678632736206055,-0.693777203559875,0.241102948784828,-0.734091937541962,-0.633768022060394,0.243817463517189,-0.743267834186554,-0.617993950843811,0.256195396184921,-0.678632736206055,-0.693777203559875,0.241102948784828,-0.676341891288757,-0.663127481937408,0.32066085934639,-0.702935457229614,-0.658907115459442,0.267811506986618,-0.767191648483276,-0.574089705944061,0.286072880029678,-0.66113406419754,-0.704635739326477,0.257662653923035,-0.702935457229614,-0.658907115459442,0.267811506986618, +-0.636615991592407,-0.734087586402893,0.236294999718666,-0.734091937541962,-0.633768022060394,0.243817463517189,-0.767191648483276,-0.574089705944061,0.286072880029678,-0.817855715751648,-0.50813364982605,0.270022362470627,-0.72236967086792,-0.642044067382813,0.256829559803009,-0.888942778110504,-0.455443978309631,0.0484920255839825,-0.923260092735291,-0.381357848644257,0.046442374587059,-0.897485792636871,-0.436534851789474,0.0629006251692772,-0.897485792636871,-0.436534851789474,0.0629006251692772,-0.923260092735291,-0.381357848644257,0.046442374587059,-0.893689036369324,-0.438991904258728,0.0927686914801598,-0.893689036369324,-0.438991904258728,0.0927686914801598,-0.864194989204407,-0.468484848737717,0.183545306324959,-0.889172434806824,-0.414977192878723,0.192785561084747,-0.864194989204407,-0.468484848737717,0.183545306324959,-0.775129497051239,-0.620938897132874,0.11665802448988,-0.817855715751648,-0.50813364982605,0.270022362470627,-0.654336869716644,-0.619376957416534,0.433837860822678,-0.742680251598358,-0.574352502822876,0.344303667545319,-0.676341891288757,-0.663127481937408,0.32066085934639,-0.654336869716644,-0.619376957416534,0.433837860822678,-0.694767117500305,-0.511697113513947,0.505434989929199,-0.749107718467712,-0.512702882289886,0.419491618871689,0.572678685188293,-0.683138489723206,0.45316743850708,0.576134204864502,-0.562164962291718,0.59332937002182,0.462355136871338,-0.662181675434113,0.589697360992432,0.348755180835724,-0.554955899715424,0.755244076251984,0.462355136871338,-0.662181675434113,0.589697360992432,0.576134204864502,-0.562164962291718,0.59332937002182,0.348755180835724,-0.554955899715424,0.755244076251984,0.263305246829987,-0.390896707773209,0.881969392299652,0.204801753163338,-0.514702320098877,0.832548856735229,0.263305246829987,-0.390896707773209,0.881969392299652,0.037371639162302,-0.487762749195099,0.872175872325897,0.204801753163338,-0.514702320098877,0.832548856735229,-0.0967972502112389,-0.388627648353577,0.916296184062958,0.0507775880396366,-0.361944079399109,0.930815756320953, +-0.0601605251431465,-0.266809284687042,0.961869716644287,0.263305246829987,-0.390896707773209,0.881969392299652,0.0507775880396366,-0.361944079399109,0.930815756320953,0.037371639162302,-0.487762749195099,0.872175872325897,-0.0601605251431465,-0.266809284687042,0.961869716644287,-0.173127815127373,-0.255814403295517,0.951097071170807,-0.0967972502112389,-0.388627648353577,0.916296184062958,0.594188988208771,-0.699383914470673,0.397242456674576,0.731087446212769,-0.579987943172455,0.359339624643326,0.678353726863861,-0.575127482414246,0.457235783338547,0.572678685188293,-0.683138489723206,0.45316743850708,0.678353726863861,-0.575127482414246,0.457235783338547,0.576134204864502,-0.562164962291718,0.59332937002182,-0.334692895412445,-0.10985854268074,0.935901522636414,-0.547991991043091,0.0514636859297752,0.834898889064789,-0.548067808151245,-0.113690249621868,0.828671216964722,-0.331889152526855,-0.293083101511002,0.896633565425873,-0.334692895412445,-0.10985854268074,0.935901522636414,-0.548067808151245,-0.113690249621868,0.828671216964722,-0.370857894420624,-0.29189395904541,0.881624758243561,-0.276288002729416,-0.429793536663055,0.859617531299591,-0.416490495204926,-0.402503281831741,0.815185010433197,-0.152512535452843,-0.2858065366745,0.946073055267334,-0.331889152526855,-0.293083101511002,0.896633565425873,-0.276288002729416,-0.429793536663055,0.859617531299591,-0.60769385099411,-0.145718067884445,0.780688345432281,-0.555498480796814,-0.100304156541824,0.825445532798767,-0.535787582397461,-0.109192371368408,0.837262511253357,-0.553639352321625,-0.215287074446678,0.804446935653687,-0.535787582397461,-0.109192371368408,0.837262511253357,-0.370857894420624,-0.29189395904541,0.881624758243561,-0.555498480796814,-0.100304156541824,0.825445532798767,-0.493840128183365,-0.203843966126442,0.845322072505951,-0.43306827545166,-0.0791271924972534,0.897881209850311,-0.529776573181152,0.195684358477592,0.825254082679749,-0.547991991043091,0.0514636859297752,0.834898889064789,-0.413688629865646,0.0994167700409889,0.904973983764648, +-0.350718349218369,0.244014278054237,0.904131352901459,-0.504277408123016,0.315880626440048,0.80369371175766,-0.529776573181152,0.195684358477592,0.825254082679749,-0.361558437347412,0.355336248874664,0.861981213092804,-0.477193474769592,0.399734497070313,0.782622873783112,-0.504277408123016,0.315880626440048,0.80369371175766,-0.377598702907562,0.451328486204147,0.808530628681183,-0.50067675113678,0.451377749443054,0.738634407520294,-0.477193474769592,0.399734497070313,0.782622873783112,-0.420618027448654,0.507576584815979,0.751961648464203,-0.523857414722443,0.49890860915184,0.690408051013947,-0.50067675113678,0.451377749443054,0.738634407520294,-0.523857414722443,0.49890860915184,0.690408051013947,-0.487113237380981,0.570039868354797,0.661645829677582,-0.5713991522789,0.513698935508728,0.640012562274933,-0.3325574696064,-0.234743729233742,0.913400650024414,-0.245484337210655,-0.112975053489208,0.962794899940491,-0.43306827545166,-0.0791271924972534,0.897881209850311,-0.3325574696064,-0.234743729233742,0.913400650024414,-0.173127815127373,-0.255814403295517,0.951097071170807,-0.245484337210655,-0.112975053489208,0.962794899940491,-0.74715381860733,-0.475012958049774,0.464891076087952,-0.749107718467712,-0.512702882289886,0.419491618871689,-0.694767117500305,-0.511697113513947,0.505434989929199,-0.622179627418518,-0.596222519874573,0.507357060909271,-0.620460569858551,-0.529958963394165,0.578076064586639,-0.694767117500305,-0.511697113513947,0.505434989929199,-0.456257194280624,-0.444031208753586,0.771145582199097,-0.423127114772797,-0.509684443473816,0.74912291765213,-0.371430814266205,-0.46820080280304,0.801764965057373,-0.423127114772797,-0.509684443473816,0.74912291765213,-0.54664158821106,-0.490731418132782,0.678502380847931,-0.50452446937561,-0.581920504570007,0.637827098369598,-0.50452446937561,-0.581920504570007,0.637827098369598,-0.620460569858551,-0.529958963394165,0.578076064586639,-0.553600907325745,-0.6282759308815,0.546621561050415,-0.371430814266205,-0.46820080280304,0.801764965057373,-0.357235282659531,-0.46213760972023,0.811672151088715, +-0.420413136482239,-0.41815596818924,0.805231809616089,-0.030667407438159,-0.269868910312653,0.962408542633057,-0.146450400352478,-0.228753283619881,0.962405383586884,-0.22968415915966,-0.348241597414017,0.908830523490906,-0.25197097659111,-0.444901674985886,0.859402716159821,-0.357235282659531,-0.46213760972023,0.811672151088715,-0.286394089460373,-0.426803737878799,0.857797682285309,-0.0357704497873783,-0.389571070671082,0.920301496982574,-0.25197097659111,-0.444901674985886,0.859402716159821,-0.156197801232338,-0.387182533740997,0.908675849437714,-0.0357704497873783,-0.389571070671082,0.920301496982574,-0.030667407438159,-0.269868910312653,0.962408542633057,-0.22968415915966,-0.348241597414017,0.908830523490906,-0.146450400352478,-0.228753283619881,0.962405383586884,-0.030667407438159,-0.269868910312653,0.962408542633057,-0.105664402246475,-0.179700061678886,0.97803008556366,-0.0818108841776848,-0.193274155259132,0.977728009223938,-0.181261658668518,-0.120888881385326,0.975976407527924,-0.105664402246475,-0.179700061678886,0.97803008556366,-0.181261658668518,-0.120888881385326,0.975976407527924,-0.0818108841776848,-0.193274155259132,0.977728009223938,-0.148525774478912,-0.0547506734728813,0.987391710281372,-0.0762558132410049,0.213511079549789,0.973959982395172,-0.170585066080093,0.371656179428101,0.912563562393188,-0.195349723100662,0.237663000822067,0.951501309871674,-0.195349723100662,0.237663000822067,0.951501309871674,-0.115707516670227,0.102764457464218,0.987953007221222,-0.0762558132410049,0.213511079549789,0.973959982395172,0.0513606369495392,-0.059703666716814,0.996893882751465,-0.115707516670227,0.102764457464218,0.987953007221222,-0.148525774478912,-0.0547506734728813,0.987391710281372,0.834701478481293,-0.411269217729568,0.366239041090012,0.819913685321808,-0.419792413711548,0.389250367879868,0.780604600906372,-0.532097578048706,0.327915459871292,0.819913685321808,-0.419792413711548,0.389250367879868,0.678353726863861,-0.575127482414246,0.457235783338547,0.731087446212769,-0.579987943172455,0.359339624643326, +-0.847674012184143,-0.505112290382385,-0.162204325199127,-0.884692966938019,-0.418374985456467,-0.205622464418411,-0.8734170794487,-0.357740044593811,-0.330400496721268,-0.847674012184143,-0.505112290382385,-0.162204325199127,-0.838372349739075,-0.539483308792114,-0.0780353993177414,-0.884692966938019,-0.418374985456467,-0.205622464418411,-0.822572529315948,-0.566470801830292,0.0498522222042084,-0.838372349739075,-0.539483308792114,-0.0780353993177414,-0.805641293525696,-0.584452927112579,-0.0967301726341248,-0.810932278633118,-0.58038717508316,0.0744280964136124,-0.865390479564667,-0.488686710596085,0.110835678875446,-0.893984436988831,-0.442797690629959,0.0687157586216927,-0.822572529315948,-0.566470801830292,0.0498522222042084,-0.851115643978119,-0.524435818195343,0.0238552615046501,-0.865390479564667,-0.488686710596085,0.110835678875446,-0.888942778110504,-0.455443978309631,0.0484920255839825,-0.893984436988831,-0.442797690629959,0.0687157586216927,-0.92130309343338,-0.387558907270432,0.0316003002226353,-0.636615991592407,-0.734087586402893,0.236294999718666,-0.598373770713806,-0.764189183712006,0.240756243467331,-0.678632736206055,-0.693777203559875,0.241102948784828,-0.678632736206055,-0.693777203559875,0.241102948784828,-0.625397384166718,-0.723828136920929,0.291463226079941,-0.676341891288757,-0.663127481937408,0.32066085934639,-0.66113406419754,-0.704635739326477,0.257662653923035,-0.767191648483276,-0.574089705944061,0.286072880029678,-0.72236967086792,-0.642044067382813,0.256829559803009,-0.702935457229614,-0.658907115459442,0.267811506986618,-0.66113406419754,-0.704635739326477,0.257662653923035,-0.636615991592407,-0.734087586402893,0.236294999718666,-0.6983762383461,-0.690476059913635,0.188449621200562,-0.72236967086792,-0.642044067382813,0.256829559803009,-0.817855715751648,-0.50813364982605,0.270022362470627,-0.888942778110504,-0.455443978309631,0.0484920255839825,-0.92130309343338,-0.387558907270432,0.0316003002226353,-0.923260092735291,-0.381357848644257,0.046442374587059,-0.923260092735291,-0.381357848644257,0.046442374587059, +-0.872598111629486,-0.4880111515522,0.0204280279576778,-0.893689036369324,-0.438991904258728,0.0927686914801598,-0.893689036369324,-0.438991904258728,0.0927686914801598,-0.775129497051239,-0.620938897132874,0.11665802448988,-0.864194989204407,-0.468484848737717,0.183545306324959,-0.6983762383461,-0.690476059913635,0.188449621200562,-0.817855715751648,-0.50813364982605,0.270022362470627,-0.775129497051239,-0.620938897132874,0.11665802448988,-0.654336869716644,-0.619376957416534,0.433837860822678,-0.676341891288757,-0.663127481937408,0.32066085934639,-0.587914109230042,-0.714964330196381,0.378395140171051,-0.622179627418518,-0.596222519874573,0.507357060909271,-0.694767117500305,-0.511697113513947,0.505434989929199,-0.654336869716644,-0.619376957416534,0.433837860822678,0.348755180835724,-0.554955899715424,0.755244076251984,0.576134204864502,-0.562164962291718,0.59332937002182,0.501147270202637,-0.425717055797577,0.753403186798096,0.263305246829987,-0.390896707773209,0.881969392299652,0.348755180835724,-0.554955899715424,0.755244076251984,0.501147270202637,-0.425717055797577,0.753403186798096,0.0507775880396366,-0.361944079399109,0.930815756320953,0.145208850502968,-0.194618001580238,0.970071196556091,-0.0601605251431465,-0.266809284687042,0.961869716644287,0.263305246829987,-0.390896707773209,0.881969392299652,0.145208850502968,-0.194618001580238,0.970071196556091,0.0507775880396366,-0.361944079399109,0.930815756320953,-0.0601605251431465,-0.266809284687042,0.961869716644287,-0.0638425648212433,-0.109709732234478,0.991911172866821,-0.173127815127373,-0.255814403295517,0.951097071170807,0.726185083389282,-0.442039966583252,0.526550829410553,0.576134204864502,-0.562164962291718,0.59332937002182,0.678353726863861,-0.575127482414246,0.457235783338547,-0.547991991043091,0.0514636859297752,0.834898889064789,-0.334692895412445,-0.10985854268074,0.935901522636414,-0.413688629865646,0.0994167700409889,0.904973983764648,-0.331889152526855,-0.293083101511002,0.896633565425873,-0.152512535452843,-0.2858065366745,0.946073055267334, +-0.334692895412445,-0.10985854268074,0.935901522636414,-0.234522596001625,-0.312319934368134,0.920573353767395,-0.276288002729416,-0.429793536663055,0.859617531299591,-0.370857894420624,-0.29189395904541,0.881624758243561,-0.234522596001625,-0.312319934368134,0.920573353767395,-0.152512535452843,-0.2858065366745,0.946073055267334,-0.276288002729416,-0.429793536663055,0.859617531299591,-0.43306827545166,-0.0791271924972534,0.897881209850311,-0.535787582397461,-0.109192371368408,0.837262511253357,-0.555498480796814,-0.100304156541824,0.825445532798767,-0.370857894420624,-0.29189395904541,0.881624758243561,-0.535787582397461,-0.109192371368408,0.837262511253357,-0.38462820649147,-0.150681063532829,0.910689949989319,-0.350718349218369,0.244014278054237,0.904131352901459,-0.529776573181152,0.195684358477592,0.825254082679749,-0.413688629865646,0.0994167700409889,0.904973983764648,-0.504277408123016,0.315880626440048,0.80369371175766,-0.350718349218369,0.244014278054237,0.904131352901459,-0.361558437347412,0.355336248874664,0.861981213092804,-0.377598702907562,0.451328486204147,0.808530628681183,-0.477193474769592,0.399734497070313,0.782622873783112,-0.361558437347412,0.355336248874664,0.861981213092804,-0.420618027448654,0.507576584815979,0.751961648464203,-0.50067675113678,0.451377749443054,0.738634407520294,-0.377598702907562,0.451328486204147,0.808530628681183,-0.43511974811554,0.550462901592255,0.712503492832184,-0.523857414722443,0.49890860915184,0.690408051013947,-0.420618027448654,0.507576584815979,0.751961648464203,-0.487113237380981,0.570039868354797,0.661645829677582,-0.523857414722443,0.49890860915184,0.690408051013947,-0.43511974811554,0.550462901592255,0.712503492832184,-0.43306827545166,-0.0791271924972534,0.897881209850311,-0.245484337210655,-0.112975053489208,0.962794899940491,-0.302276909351349,0.00480207521468401,0.953207969665527,-0.245484337210655,-0.112975053489208,0.962794899940491,-0.173127815127373,-0.255814403295517,0.951097071170807,-0.0638425648212433,-0.109709732234478,0.991911172866821,-0.553600907325745,-0.6282759308815,0.546621561050415, +-0.620460569858551,-0.529958963394165,0.578076064586639,-0.622179627418518,-0.596222519874573,0.507357060909271,-0.423127114772797,-0.509684443473816,0.74912291765213,-0.357116848230362,-0.52024894952774,0.775763094425201,-0.371430814266205,-0.46820080280304,0.801764965057373,-0.378649085760117,-0.583744943141937,0.718238472938538,-0.423127114772797,-0.509684443473816,0.74912291765213,-0.50452446937561,-0.581920504570007,0.637827098369598,-0.47673287987709,-0.649887204170227,0.591922461986542,-0.50452446937561,-0.581920504570007,0.637827098369598,-0.553600907325745,-0.6282759308815,0.546621561050415,-0.371430814266205,-0.46820080280304,0.801764965057373,-0.374119222164154,-0.47988697886467,0.793563604354858,-0.357235282659531,-0.46213760972023,0.811672151088715,-0.286394089460373,-0.426803737878799,0.857797682285309,-0.357235282659531,-0.46213760972023,0.811672151088715,-0.363417774438858,-0.45724418759346,0.811698913574219,-0.156197801232338,-0.387182533740997,0.908675849437714,-0.25197097659111,-0.444901674985886,0.859402716159821,-0.286394089460373,-0.426803737878799,0.857797682285309,-0.0357704497873783,-0.389571070671082,0.920301496982574,-0.156197801232338,-0.387182533740997,0.908675849437714,-0.0308045893907547,-0.356787860393524,0.933677315711975,0.104095764458179,-0.304701924324036,0.946742117404938,-0.030667407438159,-0.269868910312653,0.962408542633057,-0.0357704497873783,-0.389571070671082,0.920301496982574,-0.030667407438159,-0.269868910312653,0.962408542633057,0.0648316517472267,-0.258780956268311,0.963757812976837,-0.105664402246475,-0.179700061678886,0.97803008556366,0.0648316517472267,-0.258780956268311,0.963757812976837,-0.0818108841776848,-0.193274155259132,0.977728009223938,-0.105664402246475,-0.179700061678886,0.97803008556366,0.00979139003902674,-0.196332931518555,0.980488359928131,-0.148525774478912,-0.0547506734728813,0.987391710281372,-0.0818108841776848,-0.193274155259132,0.977728009223938,0.00173809041734785,0.0180379059165716,0.999835789203644,-0.0762558132410049,0.213511079549789,0.973959982395172, +-0.115707516670227,0.102764457464218,0.987953007221222,0.0513606369495392,-0.059703666716814,0.996893882751465,0.00173809041734785,0.0180379059165716,0.999835789203644,-0.115707516670227,0.102764457464218,0.987953007221222,-0.148525774478912,-0.0547506734728813,0.987391710281372,0.00979139003902674,-0.196332931518555,0.980488359928131,0.0513606369495392,-0.059703666716814,0.996893882751465,0.834701478481293,-0.411269217729568,0.366239041090012,0.871392548084259,-0.301381886005402,0.387096762657166,0.819913685321808,-0.419792413711548,0.389250367879868,0.819913685321808,-0.419792413711548,0.389250367879868,0.726185083389282,-0.442039966583252,0.526550829410553,0.678353726863861,-0.575127482414246,0.457235783338547,-0.833587288856506,-0.487493574619293,-0.259773224592209,-0.847674012184143,-0.505112290382385,-0.162204325199127,-0.8734170794487,-0.357740044593811,-0.330400496721268,-0.847674012184143,-0.505112290382385,-0.162204325199127,-0.805641293525696,-0.584452927112579,-0.0967301726341248,-0.838372349739075,-0.539483308792114,-0.0780353993177414,-0.851115643978119,-0.524435818195343,0.0238552615046501,-0.822572529315948,-0.566470801830292,0.0498522222042084,-0.805641293525696,-0.584452927112579,-0.0967301726341248,-0.893984436988831,-0.442797690629959,0.0687157586216927,-0.865390479564667,-0.488686710596085,0.110835678875446,-0.894357442855835,-0.445552170276642,0.0400991961359978,-0.851115643978119,-0.524435818195343,0.0238552615046501,-0.894357442855835,-0.445552170276642,0.0400991961359978,-0.865390479564667,-0.488686710596085,0.110835678875446,-0.893984436988831,-0.442797690629959,0.0687157586216927,-0.894357442855835,-0.445552170276642,0.0400991961359978,-0.92130309343338,-0.387558907270432,0.0316003002226353,-0.636615991592407,-0.734087586402893,0.236294999718666,-0.603525221347809,-0.755610704421997,0.254577189683914,-0.598373770713806,-0.764189183712006,0.240756243467331,-0.678632736206055,-0.693777203559875,0.241102948784828,-0.598373770713806,-0.764189183712006,0.240756243467331,-0.625397384166718,-0.723828136920929,0.291463226079941, +-0.676341891288757,-0.663127481937408,0.32066085934639,-0.625397384166718,-0.723828136920929,0.291463226079941,-0.587914109230042,-0.714964330196381,0.378395140171051,-0.72236967086792,-0.642044067382813,0.256829559803009,-0.618807375431061,-0.759130299091339,0.201986134052277,-0.66113406419754,-0.704635739326477,0.257662653923035,-0.66113406419754,-0.704635739326477,0.257662653923035,-0.615061044692993,-0.760603070259094,0.207804620265961,-0.636615991592407,-0.734087586402893,0.236294999718666,-0.6983762383461,-0.690476059913635,0.188449621200562,-0.618807375431061,-0.759130299091339,0.201986134052277,-0.72236967086792,-0.642044067382813,0.256829559803009,-0.92130309343338,-0.387558907270432,0.0316003002226353,-0.872598111629486,-0.4880111515522,0.0204280279576778,-0.923260092735291,-0.381357848644257,0.046442374587059,-0.893689036369324,-0.438991904258728,0.0927686914801598,-0.872598111629486,-0.4880111515522,0.0204280279576778,-0.775129497051239,-0.620938897132874,0.11665802448988,-0.6983762383461,-0.690476059913635,0.188449621200562,-0.775129497051239,-0.620938897132874,0.11665802448988,-0.64911550283432,-0.750481128692627,0.124205328524113,-0.587914109230042,-0.714964330196381,0.378395140171051,-0.554613769054413,-0.683089196681976,0.475176304578781,-0.654336869716644,-0.619376957416534,0.433837860822678,-0.554613769054413,-0.683089196681976,0.475176304578781,-0.622179627418518,-0.596222519874573,0.507357060909271,-0.654336869716644,-0.619376957416534,0.433837860822678,0.645314753055573,-0.433315575122833,0.629131376743317,0.501147270202637,-0.425717055797577,0.753403186798096,0.576134204864502,-0.562164962291718,0.59332937002182,0.263305246829987,-0.390896707773209,0.881969392299652,0.501147270202637,-0.425717055797577,0.753403186798096,0.491076439619064,-0.256862103939056,0.832385540008545,-0.0638425648212433,-0.109709732234478,0.991911172866821,-0.0601605251431465,-0.266809284687042,0.961869716644287,0.145208850502968,-0.194618001580238,0.970071196556091,0.145208850502968,-0.194618001580238,0.970071196556091, +0.263305246829987,-0.390896707773209,0.881969392299652,0.313274800777435,-0.215121150016785,0.924976587295532,0.645314753055573,-0.433315575122833,0.629131376743317,0.576134204864502,-0.562164962291718,0.59332937002182,0.726185083389282,-0.442039966583252,0.526550829410553,-0.234313935041428,0.0887792780995369,0.968098700046539,-0.413688629865646,0.0994167700409889,0.904973983764648,-0.334692895412445,-0.10985854268074,0.935901522636414,-0.152512535452843,-0.2858065366745,0.946073055267334,-0.12494632601738,-0.235340684652328,0.963848054409027,-0.334692895412445,-0.10985854268074,0.935901522636414,-0.370857894420624,-0.29189395904541,0.881624758243561,-0.38462820649147,-0.150681063532829,0.910689949989319,-0.234522596001625,-0.312319934368134,0.920573353767395,-0.171224728226662,-0.187295243144035,0.967265427112579,-0.152512535452843,-0.2858065366745,0.946073055267334,-0.234522596001625,-0.312319934368134,0.920573353767395,-0.43306827545166,-0.0791271924972534,0.897881209850311,-0.38462820649147,-0.150681063532829,0.910689949989319,-0.535787582397461,-0.109192371368408,0.837262511253357,-0.413688629865646,0.0994167700409889,0.904973983764648,-0.234313935041428,0.0887792780995369,0.968098700046539,-0.350718349218369,0.244014278054237,0.904131352901459,-0.171518445014954,0.349855840206146,0.920968055725098,-0.361558437347412,0.355336248874664,0.861981213092804,-0.350718349218369,0.244014278054237,0.904131352901459,-0.377598702907562,0.451328486204147,0.808530628681183,-0.361558437347412,0.355336248874664,0.861981213092804,-0.255761116743088,0.431224644184113,0.865234911441803,-0.292185097932816,0.512604355812073,0.807381331920624,-0.420618027448654,0.507576584815979,0.751961648464203,-0.377598702907562,0.451328486204147,0.808530628681183,-0.339658260345459,0.564693689346313,0.752165615558624,-0.43511974811554,0.550462901592255,0.712503492832184,-0.420618027448654,0.507576584815979,0.751961648464203,-0.487113237380981,0.570039868354797,0.661645829677582,-0.43511974811554,0.550462901592255,0.712503492832184,-0.392163425683975,0.604910552501678,0.69303023815155, +-0.245484337210655,-0.112975053489208,0.962794899940491,-0.145898938179016,0.0358028300106525,0.988651275634766,-0.302276909351349,0.00480207521468401,0.953207969665527,-0.43306827545166,-0.0791271924972534,0.897881209850311,-0.302276909351349,0.00480207521468401,0.953207969665527,-0.340462893247604,-0.0286807380616665,0.939820408821106,-0.245484337210655,-0.112975053489208,0.962794899940491,-0.0638425648212433,-0.109709732234478,0.991911172866821,-0.145898938179016,0.0358028300106525,0.988651275634766,-0.553600907325745,-0.6282759308815,0.546621561050415,-0.622179627418518,-0.596222519874573,0.507357060909271,-0.554613769054413,-0.683089196681976,0.475176304578781,-0.423127114772797,-0.509684443473816,0.74912291765213,-0.378649085760117,-0.583744943141937,0.718238472938538,-0.357116848230362,-0.52024894952774,0.775763094425201,-0.371430814266205,-0.46820080280304,0.801764965057373,-0.357116848230362,-0.52024894952774,0.775763094425201,-0.374119222164154,-0.47988697886467,0.793563604354858,-0.402089446783066,-0.658522307872772,0.636138558387756,-0.378649085760117,-0.583744943141937,0.718238472938538,-0.50452446937561,-0.581920504570007,0.637827098369598,-0.402089446783066,-0.658522307872772,0.636138558387756,-0.50452446937561,-0.581920504570007,0.637827098369598,-0.47673287987709,-0.649887204170227,0.591922461986542,-0.553600907325745,-0.6282759308815,0.546621561050415,-0.462288647890091,-0.698408126831055,0.54636538028717,-0.47673287987709,-0.649887204170227,0.591922461986542,-0.363417774438858,-0.45724418759346,0.811698913574219,-0.357235282659531,-0.46213760972023,0.811672151088715,-0.374119222164154,-0.47988697886467,0.793563604354858,-0.363417774438858,-0.45724418759346,0.811698913574219,-0.313369750976563,-0.440095514059067,0.84149581193924,-0.286394089460373,-0.426803737878799,0.857797682285309,-0.286394089460373,-0.426803737878799,0.857797682285309,-0.246471405029297,-0.317728489637375,0.915587425231934,-0.156197801232338,-0.387182533740997,0.908675849437714,-0.157282888889313,-0.302425414323807,0.940106809139252, +-0.0308045893907547,-0.356787860393524,0.933677315711975,-0.156197801232338,-0.387182533740997,0.908675849437714,-0.0357704497873783,-0.389571070671082,0.920301496982574,-0.0308045893907547,-0.356787860393524,0.933677315711975,-0.0197731908410788,-0.314846187829971,0.948936700820923,-0.030667407438159,-0.269868910312653,0.962408542633057,0.104095764458179,-0.304701924324036,0.946742117404938,0.0648316517472267,-0.258780956268311,0.963757812976837,0.104095764458179,-0.304701924324036,0.946742117404938,-0.0357704497873783,-0.389571070671082,0.920301496982574,-0.0197731908410788,-0.314846187829971,0.948936700820923,0.00979139003902674,-0.196332931518555,0.980488359928131,-0.0818108841776848,-0.193274155259132,0.977728009223938,0.0648316517472267,-0.258780956268311,0.963757812976837,0.0513606369495392,-0.059703666716814,0.996893882751465,0.12407760322094,-0.0370609685778618,0.991580128669739,0.00173809041734785,0.0180379059165716,0.999835789203644,0.00979139003902674,-0.196332931518555,0.980488359928131,0.166765734553337,-0.216107621788979,0.962022125720978,0.0513606369495392,-0.059703666716814,0.996893882751465,0.871392548084259,-0.301381886005402,0.387096762657166,0.883562982082367,-0.268495827913284,0.383700847625732,0.819913685321808,-0.419792413711548,0.389250367879868,0.819913685321808,-0.419792413711548,0.389250367879868,0.820976614952087,-0.279739141464233,0.497738271951675,0.726185083389282,-0.442039966583252,0.526550829410553,-0.833587288856506,-0.487493574619293,-0.259773224592209,-0.783732295036316,-0.58032488822937,-0.221329033374786,-0.847674012184143,-0.505112290382385,-0.162204325199127,-0.833587288856506,-0.487493574619293,-0.259773224592209,-0.8734170794487,-0.357740044593811,-0.330400496721268,-0.789113402366638,-0.492156267166138,-0.367535203695297,-0.805641293525696,-0.584452927112579,-0.0967301726341248,-0.847674012184143,-0.505112290382385,-0.162204325199127,-0.783732295036316,-0.58032488822937,-0.221329033374786,-0.851115643978119,-0.524435818195343,0.0238552615046501,-0.805641293525696,-0.584452927112579,-0.0967301726341248, +-0.761422753334045,-0.64042055606842,-0.100482270121574,-0.851115643978119,-0.524435818195343,0.0238552615046501,-0.823562383651733,-0.566445827484131,-0.0297311898320913,-0.894357442855835,-0.445552170276642,0.0400991961359978,-0.894357442855835,-0.445552170276642,0.0400991961359978,-0.872598111629486,-0.4880111515522,0.0204280279576778,-0.92130309343338,-0.387558907270432,0.0316003002226353,-0.636615991592407,-0.734087586402893,0.236294999718666,-0.640411853790283,-0.718559920787811,0.271190226078033,-0.603525221347809,-0.755610704421997,0.254577189683914,-0.603525221347809,-0.755610704421997,0.254577189683914,-0.570673942565918,-0.761224389076233,0.308007508516312,-0.598373770713806,-0.764189183712006,0.240756243467331,-0.555925905704498,-0.773561179637909,0.304219186306,-0.625397384166718,-0.723828136920929,0.291463226079941,-0.598373770713806,-0.764189183712006,0.240756243467331,-0.587914109230042,-0.714964330196381,0.378395140171051,-0.625397384166718,-0.723828136920929,0.291463226079941,-0.555925905704498,-0.773561179637909,0.304219186306,-0.66113406419754,-0.704635739326477,0.257662653923035,-0.618807375431061,-0.759130299091339,0.201986134052277,-0.615061044692993,-0.760603070259094,0.207804620265961,-0.640411853790283,-0.718559920787811,0.271190226078033,-0.636615991592407,-0.734087586402893,0.236294999718666,-0.615061044692993,-0.760603070259094,0.207804620265961,-0.6983762383461,-0.690476059913635,0.188449621200562,-0.5965616106987,-0.792557239532471,0.12636137008667,-0.618807375431061,-0.759130299091339,0.201986134052277,-0.775129497051239,-0.620938897132874,0.11665802448988,-0.872598111629486,-0.4880111515522,0.0204280279576778,-0.750545561313629,-0.660529136657715,-0.0195608753710985,-0.621428072452545,-0.783156096935272,0.0222149733453989,-0.64911550283432,-0.750481128692627,0.124205328524113,-0.775129497051239,-0.620938897132874,0.11665802448988,-0.6983762383461,-0.690476059913635,0.188449621200562,-0.64911550283432,-0.750481128692627,0.124205328524113,-0.5965616106987,-0.792557239532471,0.12636137008667, +-0.587914109230042,-0.714964330196381,0.378395140171051,-0.519168138504028,-0.742781817913055,0.422775864601135,-0.554613769054413,-0.683089196681976,0.475176304578781,0.645314753055573,-0.433315575122833,0.629131376743317,0.706918597221375,-0.271609157323837,0.653065383434296,0.501147270202637,-0.425717055797577,0.753403186798096,0.491076439619064,-0.256862103939056,0.832385540008545,0.501147270202637,-0.425717055797577,0.753403186798096,0.706918597221375,-0.271609157323837,0.653065383434296,0.491076439619064,-0.256862103939056,0.832385540008545,0.313274800777435,-0.215121150016785,0.924976587295532,0.263305246829987,-0.390896707773209,0.881969392299652,0.144972771406174,-0.0634880214929581,0.987396597862244,-0.0638425648212433,-0.109709732234478,0.991911172866821,0.145208850502968,-0.194618001580238,0.970071196556091,0.145208850502968,-0.194618001580238,0.970071196556091,0.313274800777435,-0.215121150016785,0.924976587295532,0.309022545814514,-0.0746906474232674,0.948117196559906,0.645314753055573,-0.433315575122833,0.629131376743317,0.726185083389282,-0.442039966583252,0.526550829410553,0.706918597221375,-0.271609157323837,0.653065383434296,-0.124251581728458,-0.10856719315052,0.986293375492096,-0.234313935041428,0.0887792780995369,0.968098700046539,-0.334692895412445,-0.10985854268074,0.935901522636414,-0.12494632601738,-0.235340684652328,0.963848054409027,-0.152512535452843,-0.2858065366745,0.946073055267334,0.00719971535727382,-0.168947339057922,0.985598623752594,-0.12494632601738,-0.235340684652328,0.963848054409027,-0.124251581728458,-0.10856719315052,0.986293375492096,-0.334692895412445,-0.10985854268074,0.935901522636414,-0.171224728226662,-0.187295243144035,0.967265427112579,-0.234522596001625,-0.312319934368134,0.920573353767395,-0.38462820649147,-0.150681063532829,0.910689949989319,-0.152512535452843,-0.2858065366745,0.946073055267334,-0.171224728226662,-0.187295243144035,0.967265427112579,0.00719971535727382,-0.168947339057922,0.985598623752594,-0.43306827545166,-0.0791271924972534,0.897881209850311, +-0.340462893247604,-0.0286807380616665,0.939820408821106,-0.38462820649147,-0.150681063532829,0.910689949989319,-0.135216802358627,0.221956327557564,0.965635359287262,-0.350718349218369,0.244014278054237,0.904131352901459,-0.234313935041428,0.0887792780995369,0.968098700046539,-0.171518445014954,0.349855840206146,0.920968055725098,-0.255761116743088,0.431224644184113,0.865234911441803,-0.361558437347412,0.355336248874664,0.861981213092804,-0.135216802358627,0.221956327557564,0.965635359287262,-0.171518445014954,0.349855840206146,0.920968055725098,-0.350718349218369,0.244014278054237,0.904131352901459,-0.292185097932816,0.512604355812073,0.807381331920624,-0.377598702907562,0.451328486204147,0.808530628681183,-0.255761116743088,0.431224644184113,0.865234911441803,-0.339658260345459,0.564693689346313,0.752165615558624,-0.420618027448654,0.507576584815979,0.751961648464203,-0.292185097932816,0.512604355812073,0.807381331920624,-0.392163425683975,0.604910552501678,0.69303023815155,-0.43511974811554,0.550462901592255,0.712503492832184,-0.339658260345459,0.564693689346313,0.752165615558624,-0.172514498233795,0.00574505235999823,0.984990179538727,-0.302276909351349,0.00480207521468401,0.953207969665527,-0.145898938179016,0.0358028300106525,0.988651275634766,-0.172514498233795,0.00574505235999823,0.984990179538727,-0.340462893247604,-0.0286807380616665,0.939820408821106,-0.302276909351349,0.00480207521468401,0.953207969665527,-0.145898938179016,0.0358028300106525,0.988651275634766,-0.0638425648212433,-0.109709732234478,0.991911172866821,0.0443733222782612,0.0214340854436159,0.998784899711609,-0.554613769054413,-0.683089196681976,0.475176304578781,-0.462288647890091,-0.698408126831055,0.54636538028717,-0.553600907325745,-0.6282759308815,0.546621561050415,-0.378649085760117,-0.583744943141937,0.718238472938538,-0.29876172542572,-0.607123672962189,0.736302971839905,-0.357116848230362,-0.52024894952774,0.775763094425201,-0.374119222164154,-0.47988697886467,0.793563604354858,-0.357116848230362,-0.52024894952774,0.775763094425201, +-0.363907873630524,-0.506198525428772,0.781878471374512,-0.378649085760117,-0.583744943141937,0.718238472938538,-0.402089446783066,-0.658522307872772,0.636138558387756,-0.341806381940842,-0.633483827114105,0.69416606426239,-0.462288647890091,-0.698408126831055,0.54636538028717,-0.402089446783066,-0.658522307872772,0.636138558387756,-0.47673287987709,-0.649887204170227,0.591922461986542,-0.363417774438858,-0.45724418759346,0.811698913574219,-0.374119222164154,-0.47988697886467,0.793563604354858,-0.363907873630524,-0.506198525428772,0.781878471374512,-0.313369750976563,-0.440095514059067,0.84149581193924,-0.363417774438858,-0.45724418759346,0.811698913574219,-0.363907873630524,-0.506198525428772,0.781878471374512,-0.286394089460373,-0.426803737878799,0.857797682285309,-0.313369750976563,-0.440095514059067,0.84149581193924,-0.246471405029297,-0.317728489637375,0.915587425231934,-0.157282888889313,-0.302425414323807,0.940106809139252,-0.156197801232338,-0.387182533740997,0.908675849437714,-0.246471405029297,-0.317728489637375,0.915587425231934,-0.157282888889313,-0.302425414323807,0.940106809139252,-0.0197731908410788,-0.314846187829971,0.948936700820923,-0.0308045893907547,-0.356787860393524,0.933677315711975,0.0648316517472267,-0.258780956268311,0.963757812976837,0.104095764458179,-0.304701924324036,0.946742117404938,0.0301940031349659,-0.228997141122818,0.97295868396759,0.104095764458179,-0.304701924324036,0.946742117404938,-0.0197731908410788,-0.314846187829971,0.948936700820923,0.0717936754226685,-0.279247671365738,0.957531332969666,0.00979139003902674,-0.196332931518555,0.980488359928131,0.0648316517472267,-0.258780956268311,0.963757812976837,0.166765734553337,-0.216107621788979,0.962022125720978,0.0513606369495392,-0.059703666716814,0.996893882751465,0.0790323987603188,-0.132623955607414,0.988010466098785,0.12407760322094,-0.0370609685778618,0.991580128669739,0.12407760322094,-0.0370609685778618,0.991580128669739,0.0790323987603188,-0.132623955607414,0.988010466098785,0.00173809041734785,0.0180379059165716,0.999835789203644, +0.0513606369495392,-0.059703666716814,0.996893882751465,0.166765734553337,-0.216107621788979,0.962022125720978,0.0790323987603188,-0.132623955607414,0.988010466098785,0.883562982082367,-0.268495827913284,0.383700847625732,0.871392548084259,-0.301381886005402,0.387096762657166,0.910344481468201,-0.191994816064835,0.366620868444443,0.819913685321808,-0.419792413711548,0.389250367879868,0.883562982082367,-0.268495827913284,0.383700847625732,0.820976614952087,-0.279739141464233,0.497738271951675,0.820976614952087,-0.279739141464233,0.497738271951675,0.706918597221375,-0.271609157323837,0.653065383434296,0.726185083389282,-0.442039966583252,0.526550829410553,-0.833587288856506,-0.487493574619293,-0.259773224592209,-0.789113402366638,-0.492156267166138,-0.367535203695297,-0.783732295036316,-0.58032488822937,-0.221329033374786,-0.805641293525696,-0.584452927112579,-0.0967301726341248,-0.783732295036316,-0.58032488822937,-0.221329033374786,-0.757251501083374,-0.631178140640259,-0.167881339788437,-0.805641293525696,-0.584452927112579,-0.0967301726341248,-0.700837433338165,-0.688517034053802,-0.186470165848732,-0.761422753334045,-0.64042055606842,-0.100482270121574,-0.761422753334045,-0.64042055606842,-0.100482270121574,-0.823562383651733,-0.566445827484131,-0.0297311898320913,-0.851115643978119,-0.524435818195343,0.0238552615046501,-0.823562383651733,-0.566445827484131,-0.0297311898320913,-0.872598111629486,-0.4880111515522,0.0204280279576778,-0.894357442855835,-0.445552170276642,0.0400991961359978,-0.603525221347809,-0.755610704421997,0.254577189683914,-0.640411853790283,-0.718559920787811,0.271190226078033,-0.617806971073151,-0.699390053749084,0.359399408102036,-0.603525221347809,-0.755610704421997,0.254577189683914,-0.617806971073151,-0.699390053749084,0.359399408102036,-0.570673942565918,-0.761224389076233,0.308007508516312,-0.570673942565918,-0.761224389076233,0.308007508516312,-0.555925905704498,-0.773561179637909,0.304219186306,-0.598373770713806,-0.764189183712006,0.240756243467331,-0.587914109230042,-0.714964330196381,0.378395140171051, +-0.555925905704498,-0.773561179637909,0.304219186306,-0.506407201290131,-0.784738063812256,0.357404172420502,-0.618807375431061,-0.759130299091339,0.201986134052277,-0.612907111644745,-0.777989864349365,0.13811756670475,-0.615061044692993,-0.760603070259094,0.207804620265961,-0.615061044692993,-0.760603070259094,0.207804620265961,-0.697035312652588,-0.673354089260101,0.246446564793587,-0.640411853790283,-0.718559920787811,0.271190226078033,-0.618807375431061,-0.759130299091339,0.201986134052277,-0.5965616106987,-0.792557239532471,0.12636137008667,-0.612907111644745,-0.777989864349365,0.13811756670475,-0.823562383651733,-0.566445827484131,-0.0297311898320913,-0.750545561313629,-0.660529136657715,-0.0195608753710985,-0.872598111629486,-0.4880111515522,0.0204280279576778,-0.775129497051239,-0.620938897132874,0.11665802448988,-0.750545561313629,-0.660529136657715,-0.0195608753710985,-0.621428072452545,-0.783156096935272,0.0222149733453989,-0.621428072452545,-0.783156096935272,0.0222149733453989,-0.5965616106987,-0.792557239532471,0.12636137008667,-0.64911550283432,-0.750481128692627,0.124205328524113,-0.519168138504028,-0.742781817913055,0.422775864601135,-0.587914109230042,-0.714964330196381,0.378395140171051,-0.506407201290131,-0.784738063812256,0.357404172420502,-0.519168138504028,-0.742781817913055,0.422775864601135,-0.456402659416199,-0.738775253295898,0.495890736579895,-0.554613769054413,-0.683089196681976,0.475176304578781,0.491076439619064,-0.256862103939056,0.832385540008545,0.706918597221375,-0.271609157323837,0.653065383434296,0.627708733081818,-0.052860215306282,0.776651382446289,0.491076439619064,-0.256862103939056,0.832385540008545,0.443843275308609,-0.0941784903407097,0.891141653060913,0.313274800777435,-0.215121150016785,0.924976587295532,0.0443733222782612,0.0214340854436159,0.998784899711609,-0.0638425648212433,-0.109709732234478,0.991911172866821,0.144972771406174,-0.0634880214929581,0.987396597862244,0.144972771406174,-0.0634880214929581,0.987396597862244,0.145208850502968,-0.194618001580238,0.970071196556091, +0.309022545814514,-0.0746906474232674,0.948117196559906,0.443843275308609,-0.0941784903407097,0.891141653060913,0.309022545814514,-0.0746906474232674,0.948117196559906,0.313274800777435,-0.215121150016785,0.924976587295532,-0.234313935041428,0.0887792780995369,0.968098700046539,-0.124251581728458,-0.10856719315052,0.986293375492096,0.0239312332123518,0.0429672077298164,0.998789668083191,0.00719971535727382,-0.168947339057922,0.985598623752594,-0.124251581728458,-0.10856719315052,0.986293375492096,-0.12494632601738,-0.235340684652328,0.963848054409027,-0.171224728226662,-0.187295243144035,0.967265427112579,-0.38462820649147,-0.150681063532829,0.910689949989319,-0.340462893247604,-0.0286807380616665,0.939820408821106,-0.0433867573738098,-0.125287503004074,0.991171300411224,0.00719971535727382,-0.168947339057922,0.985598623752594,-0.171224728226662,-0.187295243144035,0.967265427112579,0.0239312332123518,0.0429672077298164,0.998789668083191,-0.135216802358627,0.221956327557564,0.965635359287262,-0.234313935041428,0.0887792780995369,0.968098700046539,-0.147817105054855,0.472872048616409,0.868643760681152,-0.255761116743088,0.431224644184113,0.865234911441803,-0.171518445014954,0.349855840206146,0.920968055725098,-0.135216802358627,0.221956327557564,0.965635359287262,-0.00230965577065945,0.303996235132217,0.952670395374298,-0.171518445014954,0.349855840206146,0.920968055725098,-0.147817105054855,0.472872048616409,0.868643760681152,-0.292185097932816,0.512604355812073,0.807381331920624,-0.255761116743088,0.431224644184113,0.865234911441803,-0.339658260345459,0.564693689346313,0.752165615558624,-0.292185097932816,0.512604355812073,0.807381331920624,-0.190843164920807,0.561412990093231,0.805229246616364,-0.392163425683975,0.604910552501678,0.69303023815155,-0.339658260345459,0.564693689346313,0.752165615558624,-0.26858925819397,0.619090855121613,0.737960815429688,-0.0445527620613575,0.0934887677431107,0.994622945785522,-0.172514498233795,0.00574505235999823,0.984990179538727,-0.145898938179016,0.0358028300106525,0.988651275634766, +-0.172514498233795,0.00574505235999823,0.984990179538727,-0.171224728226662,-0.187295243144035,0.967265427112579,-0.340462893247604,-0.0286807380616665,0.939820408821106,-0.145898938179016,0.0358028300106525,0.988651275634766,0.0443733222782612,0.0214340854436159,0.998784899711609,-0.00716648111119866,0.131815925240517,0.991248250007629,-0.462288647890091,-0.698408126831055,0.54636538028717,-0.554613769054413,-0.683089196681976,0.475176304578781,-0.456402659416199,-0.738775253295898,0.495890736579895,-0.378649085760117,-0.583744943141937,0.718238472938538,-0.341806381940842,-0.633483827114105,0.69416606426239,-0.29876172542572,-0.607123672962189,0.736302971839905,-0.337954699993134,-0.565578401088715,0.752268254756927,-0.357116848230362,-0.52024894952774,0.775763094425201,-0.29876172542572,-0.607123672962189,0.736302971839905,-0.363907873630524,-0.506198525428772,0.781878471374512,-0.357116848230362,-0.52024894952774,0.775763094425201,-0.337954699993134,-0.565578401088715,0.752268254756927,-0.357428908348084,-0.694320678710938,0.624630451202393,-0.341806381940842,-0.633483827114105,0.69416606426239,-0.402089446783066,-0.658522307872772,0.636138558387756,-0.402089446783066,-0.658522307872772,0.636138558387756,-0.462288647890091,-0.698408126831055,0.54636538028717,-0.399369597434998,-0.714460670948029,0.574499547481537,-0.29954332113266,-0.580465614795685,0.757187783718109,-0.313369750976563,-0.440095514059067,0.84149581193924,-0.363907873630524,-0.506198525428772,0.781878471374512,-0.313369750976563,-0.440095514059067,0.84149581193924,-0.259437322616577,-0.355473101139069,0.897959351539612,-0.246471405029297,-0.317728489637375,0.915587425231934,-0.157282888889313,-0.302425414323807,0.940106809139252,-0.246471405029297,-0.317728489637375,0.915587425231934,-0.239264696836472,-0.254193931818008,0.937090039253235,-0.157282888889313,-0.302425414323807,0.940106809139252,-0.239264696836472,-0.254193931818008,0.937090039253235,-0.0197731908410788,-0.314846187829971,0.948936700820923,0.104095764458179,-0.304701924324036,0.946742117404938, +0.0717936754226685,-0.279247671365738,0.957531332969666,0.0301940031349659,-0.228997141122818,0.97295868396759,0.0648316517472267,-0.258780956268311,0.963757812976837,0.0301940031349659,-0.228997141122818,0.97295868396759,0.118066646158695,-0.260304689407349,0.958280563354492,0.0717936754226685,-0.279247671365738,0.957531332969666,-0.0197731908410788,-0.314846187829971,0.948936700820923,-0.0978652164340019,-0.212386697530746,0.97227269411087,0.166765734553337,-0.216107621788979,0.962022125720978,0.0648316517472267,-0.258780956268311,0.963757812976837,0.118066646158695,-0.260304689407349,0.958280563354492,0.166765734553337,-0.216107621788979,0.962022125720978,0.0931530594825745,-0.173983111977577,0.980332732200623,0.0790323987603188,-0.132623955607414,0.988010466098785,0.910344481468201,-0.191994816064835,0.366620868444443,0.895018339157104,-0.143093004822731,0.422452837228775,0.883562982082367,-0.268495827913284,0.383700847625732,0.895018339157104,-0.143093004822731,0.422452837228775,0.820976614952087,-0.279739141464233,0.497738271951675,0.883562982082367,-0.268495827913284,0.383700847625732,0.820976614952087,-0.279739141464233,0.497738271951675,0.836142361164093,-0.113235332071781,0.53669685125351,0.706918597221375,-0.271609157323837,0.653065383434296,-0.690311074256897,-0.606592953205109,-0.394354432821274,-0.783732295036316,-0.58032488822937,-0.221329033374786,-0.789113402366638,-0.492156267166138,-0.367535203695297,-0.783732295036316,-0.58032488822937,-0.221329033374786,-0.679064214229584,-0.682795524597168,-0.269558757543564,-0.757251501083374,-0.631178140640259,-0.167881339788437,-0.757251501083374,-0.631178140640259,-0.167881339788437,-0.700837433338165,-0.688517034053802,-0.186470165848732,-0.805641293525696,-0.584452927112579,-0.0967301726341248,-0.700837433338165,-0.688517034053802,-0.186470165848732,-0.644364476203918,-0.747079908847809,-0.163296759128571,-0.761422753334045,-0.64042055606842,-0.100482270121574,-0.761422753334045,-0.64042055606842,-0.100482270121574,-0.690264284610748,-0.717340111732483,-0.0946478024125099, +-0.823562383651733,-0.566445827484131,-0.0297311898320913,-0.676129162311554,-0.648112118244171,0.35042816400528,-0.617806971073151,-0.699390053749084,0.359399408102036,-0.640411853790283,-0.718559920787811,0.271190226078033,-0.541696727275848,-0.735371708869934,0.40717676281929,-0.570673942565918,-0.761224389076233,0.308007508516312,-0.617806971073151,-0.699390053749084,0.359399408102036,-0.570673942565918,-0.761224389076233,0.308007508516312,-0.50964766740799,-0.793367683887482,0.332906633615494,-0.555925905704498,-0.773561179637909,0.304219186306,-0.50964766740799,-0.793367683887482,0.332906633615494,-0.506407201290131,-0.784738063812256,0.357404172420502,-0.555925905704498,-0.773561179637909,0.304219186306,-0.615061044692993,-0.760603070259094,0.207804620265961,-0.612907111644745,-0.777989864349365,0.13811756670475,-0.669961273670197,-0.718009531497955,0.188716888427734,-0.615061044692993,-0.760603070259094,0.207804620265961,-0.669961273670197,-0.718009531497955,0.188716888427734,-0.697035312652588,-0.673354089260101,0.246446564793587,-0.640411853790283,-0.718559920787811,0.271190226078033,-0.697035312652588,-0.673354089260101,0.246446564793587,-0.676129162311554,-0.648112118244171,0.35042816400528,-0.612907111644745,-0.777989864349365,0.13811756670475,-0.5965616106987,-0.792557239532471,0.12636137008667,-0.584328830242157,-0.808474659919739,0.070202149450779,-0.690264284610748,-0.717340111732483,-0.0946478024125099,-0.750545561313629,-0.660529136657715,-0.0195608753710985,-0.823562383651733,-0.566445827484131,-0.0297311898320913,-0.750545561313629,-0.660529136657715,-0.0195608753710985,-0.623326182365417,-0.778140723705292,-0.077209509909153,-0.621428072452545,-0.783156096935272,0.0222149733453989,-0.621428072452545,-0.783156096935272,0.0222149733453989,-0.584328830242157,-0.808474659919739,0.070202149450779,-0.5965616106987,-0.792557239532471,0.12636137008667,-0.519168138504028,-0.742781817913055,0.422775864601135,-0.506407201290131,-0.784738063812256,0.357404172420502,-0.460781067609787,-0.776402473449707,0.429976642131805, +-0.519168138504028,-0.742781817913055,0.422775864601135,-0.460781067609787,-0.776402473449707,0.429976642131805,-0.456402659416199,-0.738775253295898,0.495890736579895,0.762473106384277,-0.0615700595080853,0.644083619117737,0.627708733081818,-0.052860215306282,0.776651382446289,0.706918597221375,-0.271609157323837,0.653065383434296,0.491076439619064,-0.256862103939056,0.832385540008545,0.627708733081818,-0.052860215306282,0.776651382446289,0.443843275308609,-0.0941784903407097,0.891141653060913,0.0443733222782612,0.0214340854436159,0.998784899711609,0.144972771406174,-0.0634880214929581,0.987396597862244,0.276803344488144,0.0339333675801754,0.960327208042145,0.309022545814514,-0.0746906474232674,0.948117196559906,0.276803344488144,0.0339333675801754,0.960327208042145,0.144972771406174,-0.0634880214929581,0.987396597862244,0.443843275308609,-0.0941784903407097,0.891141653060913,0.487014919519424,0.045863289386034,0.872188627719879,0.309022545814514,-0.0746906474232674,0.948117196559906,0.00719971535727382,-0.168947339057922,0.985598623752594,0.0239312332123518,0.0429672077298164,0.998789668083191,-0.124251581728458,-0.10856719315052,0.986293375492096,0.0557468794286251,-0.030850263312459,0.997968196868896,0.00719971535727382,-0.168947339057922,0.985598623752594,-0.0433867573738098,-0.125287503004074,0.991171300411224,-0.171224728226662,-0.187295243144035,0.967265427112579,-0.172514498233795,0.00574505235999823,0.984990179538727,-0.0433867573738098,-0.125287503004074,0.991171300411224,0.107950896024704,0.193297192454338,0.975183427333832,-0.135216802358627,0.221956327557564,0.965635359287262,0.0239312332123518,0.0429672077298164,0.998789668083191,-0.147817105054855,0.472872048616409,0.868643760681152,-0.171518445014954,0.349855840206146,0.920968055725098,-0.0045491075143218,0.404240518808365,0.914641380310059,0.107950896024704,0.193297192454338,0.975183427333832,-0.00230965577065945,0.303996235132217,0.952670395374298,-0.135216802358627,0.221956327557564,0.965635359287262,-0.00230965577065945,0.303996235132217,0.952670395374298, +-0.0045491075143218,0.404240518808365,0.914641380310059,-0.171518445014954,0.349855840206146,0.920968055725098,-0.190843164920807,0.561412990093231,0.805229246616364,-0.292185097932816,0.512604355812073,0.807381331920624,-0.147817105054855,0.472872048616409,0.868643760681152,-0.26858925819397,0.619090855121613,0.737960815429688,-0.339658260345459,0.564693689346313,0.752165615558624,-0.190843164920807,0.561412990093231,0.805229246616364,-0.172514498233795,0.00574505235999823,0.984990179538727,-0.0445527620613575,0.0934887677431107,0.994622945785522,0.0557468794286251,-0.030850263312459,0.997968196868896,-0.0445527620613575,0.0934887677431107,0.994622945785522,-0.145898938179016,0.0358028300106525,0.988651275634766,-0.00716648111119866,0.131815925240517,0.991248250007629,0.0443733222782612,0.0214340854436159,0.998784899711609,0.149658665060997,0.137174725532532,0.979175806045532,-0.00716648111119866,0.131815925240517,0.991248250007629,-0.462288647890091,-0.698408126831055,0.54636538028717,-0.456402659416199,-0.738775253295898,0.495890736579895,-0.399369597434998,-0.714460670948029,0.574499547481537,-0.29876172542572,-0.607123672962189,0.736302971839905,-0.341806381940842,-0.633483827114105,0.69416606426239,-0.3182452917099,-0.652659773826599,0.687571883201599,-0.29954332113266,-0.580465614795685,0.757187783718109,-0.337954699993134,-0.565578401088715,0.752268254756927,-0.29876172542572,-0.607123672962189,0.736302971839905,-0.29954332113266,-0.580465614795685,0.757187783718109,-0.363907873630524,-0.506198525428772,0.781878471374512,-0.337954699993134,-0.565578401088715,0.752268254756927,-0.357428908348084,-0.694320678710938,0.624630451202393,-0.3182452917099,-0.652659773826599,0.687571883201599,-0.341806381940842,-0.633483827114105,0.69416606426239,-0.402089446783066,-0.658522307872772,0.636138558387756,-0.399369597434998,-0.714460670948029,0.574499547481537,-0.357428908348084,-0.694320678710938,0.624630451202393,-0.226855337619781,-0.515998005867004,0.826003968715668,-0.313369750976563,-0.440095514059067,0.84149581193924, +-0.29954332113266,-0.580465614795685,0.757187783718109,-0.226855337619781,-0.515998005867004,0.826003968715668,-0.259437322616577,-0.355473101139069,0.897959351539612,-0.313369750976563,-0.440095514059067,0.84149581193924,-0.259437322616577,-0.355473101139069,0.897959351539612,-0.239264696836472,-0.254193931818008,0.937090039253235,-0.246471405029297,-0.317728489637375,0.915587425231934,-0.0978652164340019,-0.212386697530746,0.97227269411087,-0.0197731908410788,-0.314846187829971,0.948936700820923,-0.239264696836472,-0.254193931818008,0.937090039253235,0.0301940031349659,-0.228997141122818,0.97295868396759,0.0717936754226685,-0.279247671365738,0.957531332969666,-0.0978652164340019,-0.212386697530746,0.97227269411087,0.0301940031349659,-0.228997141122818,0.97295868396759,-0.0967063754796982,-0.168901309370995,0.980877220630646,0.118066646158695,-0.260304689407349,0.958280563354492,0.166765734553337,-0.216107621788979,0.962022125720978,0.118066646158695,-0.260304689407349,0.958280563354492,0.0931530594825745,-0.173983111977577,0.980332732200623,0.895018339157104,-0.143093004822731,0.422452837228775,0.910344481468201,-0.191994816064835,0.366620868444443,0.912645161151886,-0.0448464751243591,0.406284928321838,0.895018339157104,-0.143093004822731,0.422452837228775,0.836142361164093,-0.113235332071781,0.53669685125351,0.820976614952087,-0.279739141464233,0.497738271951675,0.762473106384277,-0.0615700595080853,0.644083619117737,0.706918597221375,-0.271609157323837,0.653065383434296,0.836142361164093,-0.113235332071781,0.53669685125351,-0.690311074256897,-0.606592953205109,-0.394354432821274,-0.679064214229584,-0.682795524597168,-0.269558757543564,-0.783732295036316,-0.58032488822937,-0.221329033374786,-0.757251501083374,-0.631178140640259,-0.167881339788437,-0.679064214229584,-0.682795524597168,-0.269558757543564,-0.700837433338165,-0.688517034053802,-0.186470165848732,-0.658402442932129,-0.71470445394516,-0.236016154289246,-0.644364476203918,-0.747079908847809,-0.163296759128571,-0.700837433338165,-0.688517034053802,-0.186470165848732, +-0.690264284610748,-0.717340111732483,-0.0946478024125099,-0.761422753334045,-0.64042055606842,-0.100482270121574,-0.644364476203918,-0.747079908847809,-0.163296759128571,-0.676129162311554,-0.648112118244171,0.35042816400528,-0.614861667156219,-0.690432488918304,0.381114065647125,-0.617806971073151,-0.699390053749084,0.359399408102036,-0.541696727275848,-0.735371708869934,0.40717676281929,-0.528850317001343,-0.752353727817535,0.392786473035812,-0.570673942565918,-0.761224389076233,0.308007508516312,-0.617806971073151,-0.699390053749084,0.359399408102036,-0.550321936607361,-0.728766620159149,0.407485812902451,-0.541696727275848,-0.735371708869934,0.40717676281929,-0.570673942565918,-0.761224389076233,0.308007508516312,-0.528850317001343,-0.752353727817535,0.392786473035812,-0.50964766740799,-0.793367683887482,0.332906633615494,-0.50964766740799,-0.793367683887482,0.332906633615494,-0.462805956602097,-0.798093974590302,0.385819256305695,-0.506407201290131,-0.784738063812256,0.357404172420502,-0.669961273670197,-0.718009531497955,0.188716888427734,-0.612907111644745,-0.777989864349365,0.13811756670475,-0.727404236793518,-0.67886883020401,0.100099451839924,-0.697035312652588,-0.673354089260101,0.246446564793587,-0.669961273670197,-0.718009531497955,0.188716888427734,-0.740373849868774,-0.63999342918396,0.205559849739075,-0.697035312652588,-0.673354089260101,0.246446564793587,-0.665633976459503,-0.686978280544281,0.291534036397934,-0.676129162311554,-0.648112118244171,0.35042816400528,-0.612907111644745,-0.777989864349365,0.13811756670475,-0.584328830242157,-0.808474659919739,0.070202149450779,-0.667806506156921,-0.74246871471405,0.0526736378669739,-0.690264284610748,-0.717340111732483,-0.0946478024125099,-0.623326182365417,-0.778140723705292,-0.077209509909153,-0.750545561313629,-0.660529136657715,-0.0195608753710985,-0.612284719944,-0.787028312683105,-0.0754567161202431,-0.621428072452545,-0.783156096935272,0.0222149733453989,-0.623326182365417,-0.778140723705292,-0.077209509909153,-0.62214195728302,-0.782899856567383,-0.00264663528650999, +-0.584328830242157,-0.808474659919739,0.070202149450779,-0.621428072452545,-0.783156096935272,0.0222149733453989,-0.506407201290131,-0.784738063812256,0.357404172420502,-0.462805956602097,-0.798093974590302,0.385819256305695,-0.460781067609787,-0.776402473449707,0.429976642131805,-0.460781067609787,-0.776402473449707,0.429976642131805,-0.416835516691208,-0.784084916114807,0.459846496582031,-0.456402659416199,-0.738775253295898,0.495890736579895,0.762473106384277,-0.0615700595080853,0.644083619117737,0.735774099826813,0.135043144226074,0.663626134395599,0.627708733081818,-0.052860215306282,0.776651382446289,0.627708733081818,-0.052860215306282,0.776651382446289,0.487014919519424,0.045863289386034,0.872188627719879,0.443843275308609,-0.0941784903407097,0.891141653060913,0.0443733222782612,0.0214340854436159,0.998784899711609,0.276803344488144,0.0339333675801754,0.960327208042145,0.149658665060997,0.137174725532532,0.979175806045532,0.309022545814514,-0.0746906474232674,0.948117196559906,0.487014919519424,0.045863289386034,0.872188627719879,0.276803344488144,0.0339333675801754,0.960327208042145,0.0239312332123518,0.0429672077298164,0.998789668083191,0.00719971535727382,-0.168947339057922,0.985598623752594,0.0557468794286251,-0.030850263312459,0.997968196868896,-0.172514498233795,0.00574505235999823,0.984990179538727,0.0557468794286251,-0.030850263312459,0.997968196868896,-0.0433867573738098,-0.125287503004074,0.991171300411224,0.0239312332123518,0.0429672077298164,0.998789668083191,0.191861987113953,0.117176651954651,0.974401593208313,0.107950896024704,0.193297192454338,0.975183427333832,-0.147817105054855,0.472872048616409,0.868643760681152,-0.0045491075143218,0.404240518808365,0.914641380310059,-0.0245961304754019,0.509287178516388,0.860245048999786,0.107950896024704,0.193297192454338,0.975183427333832,0.171100243926048,0.306926637887955,0.936226844787598,-0.00230965577065945,0.303996235132217,0.952670395374298,-0.0045491075143218,0.404240518808365,0.914641380310059,-0.00230965577065945,0.303996235132217,0.952670395374298, +0.171100243926048,0.306926637887955,0.936226844787598,-0.190843164920807,0.561412990093231,0.805229246616364,-0.147817105054855,0.472872048616409,0.868643760681152,-0.0245961304754019,0.509287178516388,0.860245048999786,-0.26858925819397,0.619090855121613,0.737960815429688,-0.190843164920807,0.561412990093231,0.805229246616364,-0.128338530659676,0.619668841362,0.774299383163452,0.0557468794286251,-0.030850263312459,0.997968196868896,-0.0445527620613575,0.0934887677431107,0.994622945785522,0.191861987113953,0.117176651954651,0.974401593208313,-0.00716648111119866,0.131815925240517,0.991248250007629,0.0633585825562477,0.187948286533356,0.980133175849915,-0.0445527620613575,0.0934887677431107,0.994622945785522,0.149658665060997,0.137174725532532,0.979175806045532,0.120810188353062,0.236802756786346,0.964017271995544,-0.00716648111119866,0.131815925240517,0.991248250007629,-0.456402659416199,-0.738775253295898,0.495890736579895,-0.371543288230896,-0.761818110942841,0.530649304389954,-0.399369597434998,-0.714460670948029,0.574499547481537,-0.3182452917099,-0.652659773826599,0.687571883201599,-0.273383229970932,-0.682248830795288,0.678084135055542,-0.29876172542572,-0.607123672962189,0.736302971839905,-0.29954332113266,-0.580465614795685,0.757187783718109,-0.29876172542572,-0.607123672962189,0.736302971839905,-0.262520760297775,-0.659738898277283,0.704150021076202,-0.3182452917099,-0.652659773826599,0.687571883201599,-0.357428908348084,-0.694320678710938,0.624630451202393,-0.273383229970932,-0.682248830795288,0.678084135055542,-0.371543288230896,-0.761818110942841,0.530649304389954,-0.357428908348084,-0.694320678710938,0.624630451202393,-0.399369597434998,-0.714460670948029,0.574499547481537,-0.226855337619781,-0.515998005867004,0.826003968715668,-0.29954332113266,-0.580465614795685,0.757187783718109,-0.217045798897743,-0.625806629657745,0.74917083978653,-0.199668914079666,-0.431614428758621,0.87968248128891,-0.259437322616577,-0.355473101139069,0.897959351539612,-0.226855337619781,-0.515998005867004,0.826003968715668,-0.259437322616577,-0.355473101139069,0.897959351539612, +-0.24959222972393,-0.264903753995895,0.931412696838379,-0.239264696836472,-0.254193931818008,0.937090039253235,-0.0978652164340019,-0.212386697530746,0.97227269411087,-0.239264696836472,-0.254193931818008,0.937090039253235,-0.259002268314362,-0.169405236840248,0.950904607772827,0.0301940031349659,-0.228997141122818,0.97295868396759,-0.0978652164340019,-0.212386697530746,0.97227269411087,-0.158832520246506,-0.138287380337715,0.977572858333588,0.0301940031349659,-0.228997141122818,0.97295868396759,-0.226490527391434,-0.117226220667362,0.966933310031891,-0.0967063754796982,-0.168901309370995,0.980877220630646,0.0931530594825745,-0.173983111977577,0.980332732200623,0.118066646158695,-0.260304689407349,0.958280563354492,-0.0967063754796982,-0.168901309370995,0.980877220630646,0.895018339157104,-0.143093004822731,0.422452837228775,0.912645161151886,-0.0448464751243591,0.406284928321838,0.881872534751892,0.0332776866853237,0.470311880111694,0.895018339157104,-0.143093004822731,0.422452837228775,0.881872534751892,0.0332776866853237,0.470311880111694,0.836142361164093,-0.113235332071781,0.53669685125351,0.762473106384277,-0.0615700595080853,0.644083619117737,0.836142361164093,-0.113235332071781,0.53669685125351,0.821882724761963,0.0516080446541309,0.567314028739929,-0.679064214229584,-0.682795524597168,-0.269558757543564,-0.690311074256897,-0.606592953205109,-0.394354432821274,-0.618142366409302,-0.684585928916931,-0.386318504810333,-0.679064214229584,-0.682795524597168,-0.269558757543564,-0.658402442932129,-0.71470445394516,-0.236016154289246,-0.700837433338165,-0.688517034053802,-0.186470165848732,-0.644364476203918,-0.747079908847809,-0.163296759128571,-0.658402442932129,-0.71470445394516,-0.236016154289246,-0.637981593608856,-0.759463548660278,-0.127257540822029,-0.644364476203918,-0.747079908847809,-0.163296759128571,-0.637981593608856,-0.759463548660278,-0.127257540822029,-0.690264284610748,-0.717340111732483,-0.0946478024125099,-0.676129162311554,-0.648112118244171,0.35042816400528,-0.665633976459503,-0.686978280544281,0.291534036397934, +-0.614861667156219,-0.690432488918304,0.381114065647125,-0.614861667156219,-0.690432488918304,0.381114065647125,-0.550321936607361,-0.728766620159149,0.407485812902451,-0.617806971073151,-0.699390053749084,0.359399408102036,-0.468572914600372,-0.775320172309875,0.423459559679031,-0.528850317001343,-0.752353727817535,0.392786473035812,-0.541696727275848,-0.735371708869934,0.40717676281929,-0.541696727275848,-0.735371708869934,0.40717676281929,-0.550321936607361,-0.728766620159149,0.407485812902451,-0.460174113512039,-0.799338400363922,0.386390656232834,-0.528850317001343,-0.752353727817535,0.392786473035812,-0.46315398812294,-0.789117336273193,0.403462588787079,-0.50964766740799,-0.793367683887482,0.332906633615494,-0.50964766740799,-0.793367683887482,0.332906633615494,-0.46315398812294,-0.789117336273193,0.403462588787079,-0.462805956602097,-0.798093974590302,0.385819256305695,-0.667806506156921,-0.74246871471405,0.0526736378669739,-0.727404236793518,-0.67886883020401,0.100099451839924,-0.612907111644745,-0.777989864349365,0.13811756670475,-0.740373849868774,-0.63999342918396,0.205559849739075,-0.669961273670197,-0.718009531497955,0.188716888427734,-0.727404236793518,-0.67886883020401,0.100099451839924,-0.697035312652588,-0.673354089260101,0.246446564793587,-0.740373849868774,-0.63999342918396,0.205559849739075,-0.665633976459503,-0.686978280544281,0.291534036397934,-0.584328830242157,-0.808474659919739,0.070202149450779,-0.62214195728302,-0.782899856567383,-0.00264663528650999,-0.667806506156921,-0.74246871471405,0.0526736378669739,-0.637981593608856,-0.759463548660278,-0.127257540822029,-0.623326182365417,-0.778140723705292,-0.077209509909153,-0.690264284610748,-0.717340111732483,-0.0946478024125099,-0.62214195728302,-0.782899856567383,-0.00264663528650999,-0.621428072452545,-0.783156096935272,0.0222149733453989,-0.612284719944,-0.787028312683105,-0.0754567161202431,-0.637981593608856,-0.759463548660278,-0.127257540822029,-0.612284719944,-0.787028312683105,-0.0754567161202431,-0.623326182365417,-0.778140723705292,-0.077209509909153, +-0.462805956602097,-0.798093974590302,0.385819256305695,-0.419865489006042,-0.802262485027313,0.424367427825928,-0.460781067609787,-0.776402473449707,0.429976642131805,-0.460781067609787,-0.776402473449707,0.429976642131805,-0.419865489006042,-0.802262485027313,0.424367427825928,-0.416835516691208,-0.784084916114807,0.459846496582031,-0.371543288230896,-0.761818110942841,0.530649304389954,-0.456402659416199,-0.738775253295898,0.495890736579895,-0.416835516691208,-0.784084916114807,0.459846496582031,0.735774099826813,0.135043144226074,0.663626134395599,0.762473106384277,-0.0615700595080853,0.644083619117737,0.821882724761963,0.0516080446541309,0.567314028739929,0.735774099826813,0.135043144226074,0.663626134395599,0.624700963497162,0.0827643126249313,0.77646541595459,0.627708733081818,-0.052860215306282,0.776651382446289,0.627708733081818,-0.052860215306282,0.776651382446289,0.624700963497162,0.0827643126249313,0.77646541595459,0.487014919519424,0.045863289386034,0.872188627719879,0.149658665060997,0.137174725532532,0.979175806045532,0.276803344488144,0.0339333675801754,0.960327208042145,0.329406678676605,0.182467773556709,0.926389038562775,0.276803344488144,0.0339333675801754,0.960327208042145,0.487014919519424,0.045863289386034,0.872188627719879,0.480667680501938,0.140590757131577,0.865559160709381,0.0239312332123518,0.0429672077298164,0.998789668083191,0.0557468794286251,-0.030850263312459,0.997968196868896,0.191861987113953,0.117176651954651,0.974401593208313,0.107950896024704,0.193297192454338,0.975183427333832,0.191861987113953,0.117176651954651,0.974401593208313,0.291593253612518,0.189390793442726,0.937605679035187,-0.0245961304754019,0.509287178516388,0.860245048999786,-0.0045491075143218,0.404240518808365,0.914641380310059,0.0911461934447289,0.419932097196579,0.902966916561127,0.291593253612518,0.189390793442726,0.937605679035187,0.171100243926048,0.306926637887955,0.936226844787598,0.107950896024704,0.193297192454338,0.975183427333832,0.0911461934447289,0.419932097196579,0.902966916561127,-0.0045491075143218,0.404240518808365,0.914641380310059, +0.171100243926048,0.306926637887955,0.936226844787598,-0.0245961304754019,0.509287178516388,0.860245048999786,-0.0528794340789318,0.570555865764618,0.819554507732391,-0.190843164920807,0.561412990093231,0.805229246616364,-0.190843164920807,0.561412990093231,0.805229246616364,-0.0528794340789318,0.570555865764618,0.819554507732391,-0.128338530659676,0.619668841362,0.774299383163452,0.191861987113953,0.117176651954651,0.974401593208313,-0.0445527620613575,0.0934887677431107,0.994622945785522,0.0633585825562477,0.187948286533356,0.980133175849915,-0.00716648111119866,0.131815925240517,0.991248250007629,0.120810188353062,0.236802756786346,0.964017271995544,0.0633585825562477,0.187948286533356,0.980133175849915,0.263229429721832,0.288531124591827,0.920575857162476,0.120810188353062,0.236802756786346,0.964017271995544,0.149658665060997,0.137174725532532,0.979175806045532,-0.273383229970932,-0.682248830795288,0.678084135055542,-0.262520760297775,-0.659738898277283,0.704150021076202,-0.29876172542572,-0.607123672962189,0.736302971839905,-0.29954332113266,-0.580465614795685,0.757187783718109,-0.262520760297775,-0.659738898277283,0.704150021076202,-0.217045798897743,-0.625806629657745,0.74917083978653,-0.273383229970932,-0.682248830795288,0.678084135055542,-0.357428908348084,-0.694320678710938,0.624630451202393,-0.302791893482208,-0.745956897735596,0.593182384967804,-0.371543288230896,-0.761818110942841,0.530649304389954,-0.302791893482208,-0.745956897735596,0.593182384967804,-0.357428908348084,-0.694320678710938,0.624630451202393,-0.0473808720707893,-0.58104681968689,0.812489688396454,-0.226855337619781,-0.515998005867004,0.826003968715668,-0.217045798897743,-0.625806629657745,0.74917083978653,-0.207964897155762,-0.361314535140991,0.908956706523895,-0.259437322616577,-0.355473101139069,0.897959351539612,-0.199668914079666,-0.431614428758621,0.87968248128891,-0.144187495112419,-0.461759924888611,0.875207185745239,-0.199668914079666,-0.431614428758621,0.87968248128891,-0.226855337619781,-0.515998005867004,0.826003968715668,-0.207964897155762,-0.361314535140991,0.908956706523895, +-0.24959222972393,-0.264903753995895,0.931412696838379,-0.259437322616577,-0.355473101139069,0.897959351539612,-0.24959222972393,-0.264903753995895,0.931412696838379,-0.259002268314362,-0.169405236840248,0.950904607772827,-0.239264696836472,-0.254193931818008,0.937090039253235,-0.158832520246506,-0.138287380337715,0.977572858333588,-0.0978652164340019,-0.212386697530746,0.97227269411087,-0.259002268314362,-0.169405236840248,0.950904607772827,-0.158832520246506,-0.138287380337715,0.977572858333588,-0.226490527391434,-0.117226220667362,0.966933310031891,0.0301940031349659,-0.228997141122818,0.97295868396759,0.873599290847778,0.122305244207382,0.471026182174683,0.881872534751892,0.0332776866853237,0.470311880111694,0.912645161151886,-0.0448464751243591,0.406284928321838,0.836142361164093,-0.113235332071781,0.53669685125351,0.881872534751892,0.0332776866853237,0.470311880111694,0.821882724761963,0.0516080446541309,0.567314028739929,-0.690311074256897,-0.606592953205109,-0.394354432821274,-0.630820453166962,-0.675974369049072,-0.3809514939785,-0.618142366409302,-0.684585928916931,-0.386318504810333,-0.679064214229584,-0.682795524597168,-0.269558757543564,-0.618142366409302,-0.684585928916931,-0.386318504810333,-0.652366578578949,-0.698292911052704,-0.294626325368881,-0.679064214229584,-0.682795524597168,-0.269558757543564,-0.652366578578949,-0.698292911052704,-0.294626325368881,-0.658402442932129,-0.71470445394516,-0.236016154289246,-0.658402442932129,-0.71470445394516,-0.236016154289246,-0.743667900562286,-0.648899137973785,-0.160897195339203,-0.637981593608856,-0.759463548660278,-0.127257540822029,-0.531970024108887,-0.777824521064758,0.334659099578857,-0.614861667156219,-0.690432488918304,0.381114065647125,-0.665633976459503,-0.686978280544281,0.291534036397934,-0.614861667156219,-0.690432488918304,0.381114065647125,-0.531970024108887,-0.777824521064758,0.334659099578857,-0.550321936607361,-0.728766620159149,0.407485812902451,-0.468572914600372,-0.775320172309875,0.423459559679031,-0.46315398812294,-0.789117336273193,0.403462588787079, +-0.528850317001343,-0.752353727817535,0.392786473035812,-0.541696727275848,-0.735371708869934,0.40717676281929,-0.460174113512039,-0.799338400363922,0.386390656232834,-0.468572914600372,-0.775320172309875,0.423459559679031,-0.531970024108887,-0.777824521064758,0.334659099578857,-0.460174113512039,-0.799338400363922,0.386390656232834,-0.550321936607361,-0.728766620159149,0.407485812902451,-0.462805956602097,-0.798093974590302,0.385819256305695,-0.46315398812294,-0.789117336273193,0.403462588787079,-0.419865489006042,-0.802262485027313,0.424367427825928,-0.667806506156921,-0.74246871471405,0.0526736378669739,-0.718570828437805,-0.69534432888031,0.0123321861028671,-0.727404236793518,-0.67886883020401,0.100099451839924,-0.739990890026093,-0.648386597633362,0.178908213973045,-0.740373849868774,-0.63999342918396,0.205559849739075,-0.727404236793518,-0.67886883020401,0.100099451839924,-0.740373849868774,-0.63999342918396,0.205559849739075,-0.739990890026093,-0.648386597633362,0.178908213973045,-0.665633976459503,-0.686978280544281,0.291534036397934,-0.62214195728302,-0.782899856567383,-0.00264663528650999,-0.704720139503479,-0.708828091621399,0.0305309630930424,-0.667806506156921,-0.74246871471405,0.0526736378669739,-0.62214195728302,-0.782899856567383,-0.00264663528650999,-0.612284719944,-0.787028312683105,-0.0754567161202431,-0.686639547348022,-0.726171791553497,-0.0346500314772129,-0.637981593608856,-0.759463548660278,-0.127257540822029,-0.710938036441803,-0.700134634971619,-0.0661690309643745,-0.612284719944,-0.787028312683105,-0.0754567161202431,-0.419865489006042,-0.802262485027313,0.424367427825928,-0.343161702156067,-0.815247416496277,0.466488659381866,-0.416835516691208,-0.784084916114807,0.459846496582031,-0.371543288230896,-0.761818110942841,0.530649304389954,-0.416835516691208,-0.784084916114807,0.459846496582031,-0.343161702156067,-0.815247416496277,0.466488659381866,0.735774099826813,0.135043144226074,0.663626134395599,0.821882724761963,0.0516080446541309,0.567314028739929,0.81346994638443,0.172580942511559,0.5554119348526, +0.613718092441559,0.183481112122536,0.767909228801727,0.624700963497162,0.0827643126249313,0.77646541595459,0.735774099826813,0.135043144226074,0.663626134395599,0.613718092441559,0.183481112122536,0.767909228801727,0.487014919519424,0.045863289386034,0.872188627719879,0.624700963497162,0.0827643126249313,0.77646541595459,0.480667680501938,0.140590757131577,0.865559160709381,0.329406678676605,0.182467773556709,0.926389038562775,0.276803344488144,0.0339333675801754,0.960327208042145,0.149658665060997,0.137174725532532,0.979175806045532,0.329406678676605,0.182467773556709,0.926389038562775,0.263229429721832,0.288531124591827,0.920575857162476,0.613718092441559,0.183481112122536,0.767909228801727,0.480667680501938,0.140590757131577,0.865559160709381,0.487014919519424,0.045863289386034,0.872188627719879,0.291593253612518,0.189390793442726,0.937605679035187,0.191861987113953,0.117176651954651,0.974401593208313,0.354935973882675,0.193676203489304,0.914609134197235,0.146824821829796,0.478576898574829,0.865682661533356,-0.0245961304754019,0.509287178516388,0.860245048999786,0.0911461934447289,0.419932097196579,0.902966916561127,0.382415354251862,0.261632144451141,0.886175453662872,0.171100243926048,0.306926637887955,0.936226844787598,0.291593253612518,0.189390793442726,0.937605679035187,0.235382437705994,0.382276743650436,0.893565595149994,0.0911461934447289,0.419932097196579,0.902966916561127,0.171100243926048,0.306926637887955,0.936226844787598,-0.0245961304754019,0.509287178516388,0.860245048999786,0.0738944858312607,0.534472048282623,0.841949641704559,-0.0528794340789318,0.570555865764618,0.819554507732391,-0.0528794340789318,0.570555865764618,0.819554507732391,0.0254380498081446,0.606053113937378,0.795017242431641,-0.128338530659676,0.619668841362,0.774299383163452,0.191861987113953,0.117176651954651,0.974401593208313,0.0633585825562477,0.187948286533356,0.980133175849915,0.241844266653061,0.251681357622147,0.937106013298035,0.241844266653061,0.251681357622147,0.937106013298035,0.0633585825562477,0.187948286533356,0.980133175849915, +0.120810188353062,0.236802756786346,0.964017271995544,0.120810188353062,0.236802756786346,0.964017271995544,0.263229429721832,0.288531124591827,0.920575857162476,0.269461810588837,0.332709193229675,0.903711676597595,-0.273383229970932,-0.682248830795288,0.678084135055542,-0.244594275951386,-0.733045279979706,0.6346794962883,-0.262520760297775,-0.659738898277283,0.704150021076202,-0.226893663406372,-0.650931358337402,0.724436044692993,-0.217045798897743,-0.625806629657745,0.74917083978653,-0.262520760297775,-0.659738898277283,0.704150021076202,-0.302791893482208,-0.745956897735596,0.593182384967804,-0.244594275951386,-0.733045279979706,0.6346794962883,-0.273383229970932,-0.682248830795288,0.678084135055542,-0.371543288230896,-0.761818110942841,0.530649304389954,-0.279245764017105,-0.791422009468079,0.543758094310761,-0.302791893482208,-0.745956897735596,0.593182384967804,-0.226855337619781,-0.515998005867004,0.826003968715668,-0.0473808720707893,-0.58104681968689,0.812489688396454,-0.144187495112419,-0.461759924888611,0.875207185745239,-0.217045798897743,-0.625806629657745,0.74917083978653,-0.100703559815884,-0.607116281986237,0.788205862045288,-0.0473808720707893,-0.58104681968689,0.812489688396454,-0.207964897155762,-0.361314535140991,0.908956706523895,-0.199668914079666,-0.431614428758621,0.87968248128891,-0.144187495112419,-0.461759924888611,0.875207185745239,-0.213565900921822,-0.301465690135956,0.929251253604889,-0.24959222972393,-0.264903753995895,0.931412696838379,-0.207964897155762,-0.361314535140991,0.908956706523895,-0.24959222972393,-0.264903753995895,0.931412696838379,-0.250261634588242,-0.227919191122055,0.940968573093414,-0.259002268314362,-0.169405236840248,0.950904607772827,-0.259002268314362,-0.169405236840248,0.950904607772827,-0.295964300632477,-0.115398913621902,0.948202550411224,-0.158832520246506,-0.138287380337715,0.977572858333588,-0.158832520246506,-0.138287380337715,0.977572858333588,-0.295964300632477,-0.115398913621902,0.948202550411224,-0.226490527391434,-0.117226220667362,0.966933310031891, +0.881872534751892,0.0332776866853237,0.470311880111694,0.873599290847778,0.122305244207382,0.471026182174683,0.81346994638443,0.172580942511559,0.5554119348526,0.821882724761963,0.0516080446541309,0.567314028739929,0.881872534751892,0.0332776866853237,0.470311880111694,0.81346994638443,0.172580942511559,0.5554119348526,-0.630820453166962,-0.675974369049072,-0.3809514939785,-0.652366578578949,-0.698292911052704,-0.294626325368881,-0.618142366409302,-0.684585928916931,-0.386318504810333,-0.652366578578949,-0.698292911052704,-0.294626325368881,-0.757913947105408,-0.600733697414398,-0.254333138465881,-0.658402442932129,-0.71470445394516,-0.236016154289246,-0.757913947105408,-0.600733697414398,-0.254333138465881,-0.743667900562286,-0.648899137973785,-0.160897195339203,-0.658402442932129,-0.71470445394516,-0.236016154289246,-0.637981593608856,-0.759463548660278,-0.127257540822029,-0.743667900562286,-0.648899137973785,-0.160897195339203,-0.710938036441803,-0.700134634971619,-0.0661690309643745,-0.503360033035278,-0.837568640708923,0.212384775280952,-0.531970024108887,-0.777824521064758,0.334659099578857,-0.665633976459503,-0.686978280544281,0.291534036397934,-0.410474717617035,-0.806878209114075,0.424803406000137,-0.46315398812294,-0.789117336273193,0.403462588787079,-0.468572914600372,-0.775320172309875,0.423459559679031,-0.468572914600372,-0.775320172309875,0.423459559679031,-0.460174113512039,-0.799338400363922,0.386390656232834,-0.374387174844742,-0.85153067111969,0.367055058479309,-0.531970024108887,-0.777824521064758,0.334659099578857,-0.402223289012909,-0.865963935852051,0.297191500663757,-0.460174113512039,-0.799338400363922,0.386390656232834,-0.348112255334854,-0.838050305843353,0.420106381177902,-0.419865489006042,-0.802262485027313,0.424367427825928,-0.46315398812294,-0.789117336273193,0.403462588787079,-0.667806506156921,-0.74246871471405,0.0526736378669739,-0.695652544498444,-0.71466451883316,0.0729531347751617,-0.718570828437805,-0.69534432888031,0.0123321861028671,-0.727404236793518,-0.67886883020401,0.100099451839924, +-0.718570828437805,-0.69534432888031,0.0123321861028671,-0.716657280921936,-0.697135388851166,0.0201109126210213,-0.739990890026093,-0.648386597633362,0.178908213973045,-0.727404236793518,-0.67886883020401,0.100099451839924,-0.716657280921936,-0.697135388851166,0.0201109126210213,-0.665633976459503,-0.686978280544281,0.291534036397934,-0.739990890026093,-0.648386597633362,0.178908213973045,-0.633112967014313,-0.753964722156525,0.175228431820869,-0.704720139503479,-0.708828091621399,0.0305309630930424,-0.62214195728302,-0.782899856567383,-0.00264663528650999,-0.686639547348022,-0.726171791553497,-0.0346500314772129,-0.695652544498444,-0.71466451883316,0.0729531347751617,-0.667806506156921,-0.74246871471405,0.0526736378669739,-0.704720139503479,-0.708828091621399,0.0305309630930424,-0.612284719944,-0.787028312683105,-0.0754567161202431,-0.710938036441803,-0.700134634971619,-0.0661690309643745,-0.686639547348022,-0.726171791553497,-0.0346500314772129,-0.348112255334854,-0.838050305843353,0.420106381177902,-0.343161702156067,-0.815247416496277,0.466488659381866,-0.419865489006042,-0.802262485027313,0.424367427825928,-0.371543288230896,-0.761818110942841,0.530649304389954,-0.343161702156067,-0.815247416496277,0.466488659381866,-0.279245764017105,-0.791422009468079,0.543758094310761,0.81346994638443,0.172580942511559,0.5554119348526,0.708850145339966,0.307346731424332,0.634877383708954,0.735774099826813,0.135043144226074,0.663626134395599,0.613718092441559,0.183481112122536,0.767909228801727,0.735774099826813,0.135043144226074,0.663626134395599,0.630283653736115,0.302289426326752,0.715096771717072,0.480667680501938,0.140590757131577,0.865559160709381,0.481343299150467,0.286341041326523,0.828442752361298,0.329406678676605,0.182467773556709,0.926389038562775,0.481343299150467,0.286341041326523,0.828442752361298,0.263229429721832,0.288531124591827,0.920575857162476,0.329406678676605,0.182467773556709,0.926389038562775,0.481343299150467,0.286341041326523,0.828442752361298,0.480667680501938,0.140590757131577,0.865559160709381, +0.613718092441559,0.183481112122536,0.767909228801727,0.191861987113953,0.117176651954651,0.974401593208313,0.241844266653061,0.251681357622147,0.937106013298035,0.354935973882675,0.193676203489304,0.914609134197235,0.382415354251862,0.261632144451141,0.886175453662872,0.291593253612518,0.189390793442726,0.937605679035187,0.354935973882675,0.193676203489304,0.914609134197235,0.0738944858312607,0.534472048282623,0.841949641704559,-0.0245961304754019,0.509287178516388,0.860245048999786,0.146824821829796,0.478576898574829,0.865682661533356,0.146824821829796,0.478576898574829,0.865682661533356,0.0911461934447289,0.419932097196579,0.902966916561127,0.235382437705994,0.382276743650436,0.893565595149994,0.382415354251862,0.261632144451141,0.886175453662872,0.235382437705994,0.382276743650436,0.893565595149994,0.171100243926048,0.306926637887955,0.936226844787598,0.0738944858312607,0.534472048282623,0.841949641704559,0.0254380498081446,0.606053113937378,0.795017242431641,-0.0528794340789318,0.570555865764618,0.819554507732391,0.120810188353062,0.236802756786346,0.964017271995544,0.269461810588837,0.332709193229675,0.903711676597595,0.241844266653061,0.251681357622147,0.937106013298035,0.263229429721832,0.288531124591827,0.920575857162476,0.38157719373703,0.37938979268074,0.842889130115509,0.269461810588837,0.332709193229675,0.903711676597595,-0.244594275951386,-0.733045279979706,0.6346794962883,-0.220395430922508,-0.720907747745514,0.657052278518677,-0.262520760297775,-0.659738898277283,0.704150021076202,-0.100703559815884,-0.607116281986237,0.788205862045288,-0.217045798897743,-0.625806629657745,0.74917083978653,-0.226893663406372,-0.650931358337402,0.724436044692993,-0.262520760297775,-0.659738898277283,0.704150021076202,-0.220395430922508,-0.720907747745514,0.657052278518677,-0.226893663406372,-0.650931358337402,0.724436044692993,-0.302791893482208,-0.745956897735596,0.593182384967804,-0.279245764017105,-0.791422009468079,0.543758094310761,-0.244594275951386,-0.733045279979706,0.6346794962883,0.0131780868396163,-0.48501655459404,0.8744056224823, +-0.144187495112419,-0.461759924888611,0.875207185745239,-0.0473808720707893,-0.58104681968689,0.812489688396454,-0.00439899042248726,-0.581065595149994,0.813844740390778,-0.0473808720707893,-0.58104681968689,0.812489688396454,-0.100703559815884,-0.607116281986237,0.788205862045288,-0.143320977687836,-0.357584625482559,0.922817528247833,-0.207964897155762,-0.361314535140991,0.908956706523895,-0.144187495112419,-0.461759924888611,0.875207185745239,-0.191603660583496,-0.281927764415741,0.940108835697174,-0.24959222972393,-0.264903753995895,0.931412696838379,-0.213565900921822,-0.301465690135956,0.929251253604889,-0.143320977687836,-0.357584625482559,0.922817528247833,-0.213565900921822,-0.301465690135956,0.929251253604889,-0.207964897155762,-0.361314535140991,0.908956706523895,-0.24959222972393,-0.264903753995895,0.931412696838379,-0.191603660583496,-0.281927764415741,0.940108835697174,-0.250261634588242,-0.227919191122055,0.940968573093414,-0.295964300632477,-0.115398913621902,0.948202550411224,-0.259002268314362,-0.169405236840248,0.950904607772827,-0.250261634588242,-0.227919191122055,0.940968573093414,0.81346994638443,0.172580942511559,0.5554119348526,0.873599290847778,0.122305244207382,0.471026182174683,0.80103200674057,0.237050727009773,0.549685835838318,-0.630820453166962,-0.675974369049072,-0.3809514939785,-0.709980010986328,-0.648937225341797,-0.273512065410614,-0.652366578578949,-0.698292911052704,-0.294626325368881,-0.709980010986328,-0.648937225341797,-0.273512065410614,-0.757913947105408,-0.600733697414398,-0.254333138465881,-0.652366578578949,-0.698292911052704,-0.294626325368881,-0.757913947105408,-0.600733697414398,-0.254333138465881,-0.780374646186829,-0.599094212055206,-0.179168581962585,-0.743667900562286,-0.648899137973785,-0.160897195339203,-0.710938036441803,-0.700134634971619,-0.0661690309643745,-0.743667900562286,-0.648899137973785,-0.160897195339203,-0.762470602989197,-0.641696214675903,-0.0828515514731407,-0.503360033035278,-0.837568640708923,0.212384775280952,-0.402223289012909,-0.865963935852051,0.297191500663757, +-0.531970024108887,-0.777824521064758,0.334659099578857,-0.633112967014313,-0.753964722156525,0.175228431820869,-0.503360033035278,-0.837568640708923,0.212384775280952,-0.665633976459503,-0.686978280544281,0.291534036397934,-0.46315398812294,-0.789117336273193,0.403462588787079,-0.410474717617035,-0.806878209114075,0.424803406000137,-0.348112255334854,-0.838050305843353,0.420106381177902,-0.468572914600372,-0.775320172309875,0.423459559679031,-0.374387174844742,-0.85153067111969,0.367055058479309,-0.410474717617035,-0.806878209114075,0.424803406000137,-0.402223289012909,-0.865963935852051,0.297191500663757,-0.374387174844742,-0.85153067111969,0.367055058479309,-0.460174113512039,-0.799338400363922,0.386390656232834,-0.709570288658142,-0.70459258556366,0.0076970886439085,-0.718570828437805,-0.69534432888031,0.0123321861028671,-0.695652544498444,-0.71466451883316,0.0729531347751617,-0.718570828437805,-0.69534432888031,0.0123321861028671,-0.709570288658142,-0.70459258556366,0.0076970886439085,-0.716657280921936,-0.697135388851166,0.0201109126210213,-0.716657280921936,-0.697135388851166,0.0201109126210213,-0.633112967014313,-0.753964722156525,0.175228431820869,-0.739990890026093,-0.648386597633362,0.178908213973045,-0.704720139503479,-0.708828091621399,0.0305309630930424,-0.686639547348022,-0.726171791553497,-0.0346500314772129,-0.755197167396545,-0.655364990234375,0.013188986107707,-0.695652544498444,-0.71466451883316,0.0729531347751617,-0.704720139503479,-0.708828091621399,0.0305309630930424,-0.711193680763245,-0.697194516658783,0.0901288837194443,-0.710938036441803,-0.700134634971619,-0.0661690309643745,-0.755197167396545,-0.655364990234375,0.013188986107707,-0.686639547348022,-0.726171791553497,-0.0346500314772129,-0.287740290164948,-0.848941743373871,0.443286925554276,-0.343161702156067,-0.815247416496277,0.466488659381866,-0.348112255334854,-0.838050305843353,0.420106381177902,-0.343161702156067,-0.815247416496277,0.466488659381866,-0.266709297895432,-0.817863285541534,0.509868264198303,-0.279245764017105,-0.791422009468079,0.543758094310761, +0.708850145339966,0.307346731424332,0.634877383708954,0.81346994638443,0.172580942511559,0.5554119348526,0.80103200674057,0.237050727009773,0.549685835838318,0.630283653736115,0.302289426326752,0.715096771717072,0.735774099826813,0.135043144226074,0.663626134395599,0.708850145339966,0.307346731424332,0.634877383708954,0.481343299150467,0.286341041326523,0.828442752361298,0.613718092441559,0.183481112122536,0.767909228801727,0.630283653736115,0.302289426326752,0.715096771717072,0.38157719373703,0.37938979268074,0.842889130115509,0.263229429721832,0.288531124591827,0.920575857162476,0.481343299150467,0.286341041326523,0.828442752361298,0.241844266653061,0.251681357622147,0.937106013298035,0.389967381954193,0.267540454864502,0.881105780601501,0.354935973882675,0.193676203489304,0.914609134197235,0.389967381954193,0.267540454864502,0.881105780601501,0.382415354251862,0.261632144451141,0.886175453662872,0.354935973882675,0.193676203489304,0.914609134197235,0.205821335315704,0.471173793077469,0.857690334320068,0.0738944858312607,0.534472048282623,0.841949641704559,0.146824821829796,0.478576898574829,0.865682661533356,0.235382437705994,0.382276743650436,0.893565595149994,0.306338518857956,0.387407451868057,0.869524002075195,0.146824821829796,0.478576898574829,0.865682661533356,0.235382437705994,0.382276743650436,0.893565595149994,0.382415354251862,0.261632144451141,0.886175453662872,0.306338518857956,0.387407451868057,0.869524002075195,0.0738944858312607,0.534472048282623,0.841949641704559,0.137259855866432,0.526593565940857,0.838962912559509,0.0254380498081446,0.606053113937378,0.795017242431641,0.241844266653061,0.251681357622147,0.937106013298035,0.269461810588837,0.332709193229675,0.903711676597595,0.389967381954193,0.267540454864502,0.881105780601501,0.38157719373703,0.37938979268074,0.842889130115509,0.403528481721878,0.345081001520157,0.847398221492767,0.269461810588837,0.332709193229675,0.903711676597595,-0.244594275951386,-0.733045279979706,0.6346794962883,-0.218016415834427,-0.777295410633087,0.59015291929245,-0.220395430922508,-0.720907747745514,0.657052278518677, +-0.186128064990044,-0.664838671684265,0.723426401615143,-0.100703559815884,-0.607116281986237,0.788205862045288,-0.226893663406372,-0.650931358337402,0.724436044692993,-0.186128064990044,-0.664838671684265,0.723426401615143,-0.226893663406372,-0.650931358337402,0.724436044692993,-0.220395430922508,-0.720907747745514,0.657052278518677,-0.244594275951386,-0.733045279979706,0.6346794962883,-0.279245764017105,-0.791422009468079,0.543758094310761,-0.218016415834427,-0.777295410633087,0.59015291929245,0.0131780868396163,-0.48501655459404,0.8744056224823,-0.143320977687836,-0.357584625482559,0.922817528247833,-0.144187495112419,-0.461759924888611,0.875207185745239,0.0383730679750443,-0.512682557106018,0.857720196247101,0.0131780868396163,-0.48501655459404,0.8744056224823,-0.0473808720707893,-0.58104681968689,0.812489688396454,0.0383730679750443,-0.512682557106018,0.857720196247101,-0.0473808720707893,-0.58104681968689,0.812489688396454,-0.00439899042248726,-0.581065595149994,0.813844740390778,-0.00439899042248726,-0.581065595149994,0.813844740390778,-0.100703559815884,-0.607116281986237,0.788205862045288,-0.0384616144001484,-0.551816880702972,0.833077847957611,-0.213565900921822,-0.301465690135956,0.929251253604889,-0.143320977687836,-0.357584625482559,0.922817528247833,-0.191603660583496,-0.281927764415741,0.940108835697174,-0.191603660583496,-0.281927764415741,0.940108835697174,-0.191874027252197,-0.279459357261658,0.940790474414825,-0.250261634588242,-0.227919191122055,0.940968573093414,0.837062060832977,0.218554124236107,0.501558601856232,0.80103200674057,0.237050727009773,0.549685835838318,0.873599290847778,0.122305244207382,0.471026182174683,-0.709980010986328,-0.648937225341797,-0.273512065410614,-0.761716306209564,-0.5737264752388,-0.301041573286057,-0.757913947105408,-0.600733697414398,-0.254333138465881,-0.761238873004913,-0.592365801334381,-0.263852179050446,-0.780374646186829,-0.599094212055206,-0.179168581962585,-0.757913947105408,-0.600733697414398,-0.254333138465881,-0.780374646186829,-0.599094212055206,-0.179168581962585, +-0.762470602989197,-0.641696214675903,-0.0828515514731407,-0.743667900562286,-0.648899137973785,-0.160897195339203,-0.710938036441803,-0.700134634971619,-0.0661690309643745,-0.762470602989197,-0.641696214675903,-0.0828515514731407,-0.755197167396545,-0.655364990234375,0.013188986107707,-0.503360033035278,-0.837568640708923,0.212384775280952,-0.362180888652802,-0.903698325157166,0.228373005986214,-0.402223289012909,-0.865963935852051,0.297191500663757,-0.595211625099182,-0.800188541412354,0.0736288204789162,-0.503360033035278,-0.837568640708923,0.212384775280952,-0.633112967014313,-0.753964722156525,0.175228431820869,-0.314057379961014,-0.864005565643311,0.393525391817093,-0.348112255334854,-0.838050305843353,0.420106381177902,-0.410474717617035,-0.806878209114075,0.424803406000137,-0.374387174844742,-0.85153067111969,0.367055058479309,-0.314057379961014,-0.864005565643311,0.393525391817093,-0.410474717617035,-0.806878209114075,0.424803406000137,-0.402223289012909,-0.865963935852051,0.297191500663757,-0.295019954442978,-0.906160414218903,0.303045153617859,-0.374387174844742,-0.85153067111969,0.367055058479309,-0.709570288658142,-0.70459258556366,0.0076970886439085,-0.695652544498444,-0.71466451883316,0.0729531347751617,-0.687340140342712,-0.716734826564789,0.117705285549164,-0.709570288658142,-0.70459258556366,0.0076970886439085,-0.67938107252121,-0.7337446808815,-0.00774375209584832,-0.716657280921936,-0.697135388851166,0.0201109126210213,-0.633112967014313,-0.753964722156525,0.175228431820869,-0.716657280921936,-0.697135388851166,0.0201109126210213,-0.595211625099182,-0.800188541412354,0.0736288204789162,-0.711193680763245,-0.697194516658783,0.0901288837194443,-0.704720139503479,-0.708828091621399,0.0305309630930424,-0.755197167396545,-0.655364990234375,0.013188986107707,-0.711193680763245,-0.697194516658783,0.0901288837194443,-0.687340140342712,-0.716734826564789,0.117705285549164,-0.695652544498444,-0.71466451883316,0.0729531347751617,-0.343161702156067,-0.815247416496277,0.466488659381866,-0.287740290164948,-0.848941743373871,0.443286925554276, +-0.266709297895432,-0.817863285541534,0.509868264198303,-0.287740290164948,-0.848941743373871,0.443286925554276,-0.348112255334854,-0.838050305843353,0.420106381177902,-0.261199861764908,-0.879119217395782,0.398652613162994,-0.279245764017105,-0.791422009468079,0.543758094310761,-0.266709297895432,-0.817863285541534,0.509868264198303,-0.218016415834427,-0.777295410633087,0.59015291929245,0.708850145339966,0.307346731424332,0.634877383708954,0.80103200674057,0.237050727009773,0.549685835838318,0.762754619121552,0.323453634977341,0.559984803199768,0.630283653736115,0.302289426326752,0.715096771717072,0.708850145339966,0.307346731424332,0.634877383708954,0.611169397830963,0.398607611656189,0.683800935745239,0.630283653736115,0.302289426326752,0.715096771717072,0.518843591213226,0.386082649230957,0.762719690799713,0.481343299150467,0.286341041326523,0.828442752361298,0.481343299150467,0.286341041326523,0.828442752361298,0.518843591213226,0.386082649230957,0.762719690799713,0.38157719373703,0.37938979268074,0.842889130115509,0.382415354251862,0.261632144451141,0.886175453662872,0.389967381954193,0.267540454864502,0.881105780601501,0.495169043540955,0.27427214384079,0.824367821216583,0.172454953193665,0.488063037395477,0.855601370334625,0.0738944858312607,0.534472048282623,0.841949641704559,0.205821335315704,0.471173793077469,0.857690334320068,0.306338518857956,0.387407451868057,0.869524002075195,0.205821335315704,0.471173793077469,0.857690334320068,0.146824821829796,0.478576898574829,0.865682661533356,0.306338518857956,0.387407451868057,0.869524002075195,0.382415354251862,0.261632144451141,0.886175453662872,0.434280395507813,0.325515031814575,0.839904963970184,0.0738944858312607,0.534472048282623,0.841949641704559,0.172454953193665,0.488063037395477,0.855601370334625,0.137259855866432,0.526593565940857,0.838962912559509,0.159146755933762,0.566214203834534,0.808748245239258,0.0254380498081446,0.606053113937378,0.795017242431641,0.137259855866432,0.526593565940857,0.838962912559509,0.269461810588837,0.332709193229675,0.903711676597595, +0.403528481721878,0.345081001520157,0.847398221492767,0.389967381954193,0.267540454864502,0.881105780601501,0.38157719373703,0.37938979268074,0.842889130115509,0.460310786962509,0.393787264823914,0.795641541481018,0.403528481721878,0.345081001520157,0.847398221492767,-0.218016415834427,-0.777295410633087,0.59015291929245,-0.150573328137398,-0.800907254219055,0.57954728603363,-0.220395430922508,-0.720907747745514,0.657052278518677,-0.186128064990044,-0.664838671684265,0.723426401615143,-0.0960159078240395,-0.607208430767059,0.788719654083252,-0.100703559815884,-0.607116281986237,0.788205862045288,-0.220395430922508,-0.720907747745514,0.657052278518677,-0.117339417338371,-0.713104963302612,0.691167593002319,-0.186128064990044,-0.664838671684265,0.723426401615143,-0.0106217451393604,-0.426216453313828,0.904558777809143,-0.143320977687836,-0.357584625482559,0.922817528247833,0.0131780868396163,-0.48501655459404,0.8744056224823,0.0383730679750443,-0.512682557106018,0.857720196247101,0.0973838344216347,-0.466481178998947,0.879153907299042,0.0131780868396163,-0.48501655459404,0.8744056224823,-0.0960159078240395,-0.607208430767059,0.788719654083252,-0.0384616144001484,-0.551816880702972,0.833077847957611,-0.100703559815884,-0.607116281986237,0.788205862045288,-0.00439899042248726,-0.581065595149994,0.813844740390778,-0.0384616144001484,-0.551816880702972,0.833077847957611,0.033658504486084,-0.549572587013245,0.834767580032349,-0.191874027252197,-0.279459357261658,0.940790474414825,-0.191603660583496,-0.281927764415741,0.940108835697174,-0.143320977687836,-0.357584625482559,0.922817528247833,-0.191874027252197,-0.279459357261658,0.940790474414825,-0.144637927412987,-0.326926231384277,0.933915913105011,-0.250261634588242,-0.227919191122055,0.940968573093414,0.837062060832977,0.218554124236107,0.501558601856232,0.762754619121552,0.323453634977341,0.559984803199768,0.80103200674057,0.237050727009773,0.549685835838318,-0.761716306209564,-0.5737264752388,-0.301041573286057,-0.761238873004913,-0.592365801334381,-0.263852179050446, +-0.757913947105408,-0.600733697414398,-0.254333138465881,-0.714235723018646,-0.681455552577972,-0.159641265869141,-0.780374646186829,-0.599094212055206,-0.179168581962585,-0.761238873004913,-0.592365801334381,-0.263852179050446,-0.780374646186829,-0.599094212055206,-0.179168581962585,-0.714235723018646,-0.681455552577972,-0.159641265869141,-0.762470602989197,-0.641696214675903,-0.0828515514731407,-0.762470602989197,-0.641696214675903,-0.0828515514731407,-0.732101619243622,-0.679736375808716,-0.0445579439401627,-0.755197167396545,-0.655364990234375,0.013188986107707,-0.431696504354477,-0.888313829898834,0.156641528010368,-0.362180888652802,-0.903698325157166,0.228373005986214,-0.503360033035278,-0.837568640708923,0.212384775280952,-0.402223289012909,-0.865963935852051,0.297191500663757,-0.362180888652802,-0.903698325157166,0.228373005986214,-0.295019954442978,-0.906160414218903,0.303045153617859,-0.503360033035278,-0.837568640708923,0.212384775280952,-0.595211625099182,-0.800188541412354,0.0736288204789162,-0.452709138393402,-0.888577878475189,0.0740524679422379,-0.348112255334854,-0.838050305843353,0.420106381177902,-0.314057379961014,-0.864005565643311,0.393525391817093,-0.254201203584671,-0.885313749313354,0.389360070228577,-0.374387174844742,-0.85153067111969,0.367055058479309,-0.297171354293823,-0.886084496974945,0.355729341506958,-0.314057379961014,-0.864005565643311,0.393525391817093,-0.374387174844742,-0.85153067111969,0.367055058479309,-0.295019954442978,-0.906160414218903,0.303045153617859,-0.297171354293823,-0.886084496974945,0.355729341506958,-0.687340140342712,-0.716734826564789,0.117705285549164,-0.660932838916779,-0.749923050403595,0.0279850289225578,-0.709570288658142,-0.70459258556366,0.0076970886439085,-0.67938107252121,-0.7337446808815,-0.00774375209584832,-0.709570288658142,-0.70459258556366,0.0076970886439085,-0.660932838916779,-0.749923050403595,0.0279850289225578,-0.67938107252121,-0.7337446808815,-0.00774375209584832,-0.595211625099182,-0.800188541412354,0.0736288204789162,-0.716657280921936,-0.697135388851166,0.0201109126210213, +-0.732101619243622,-0.679736375808716,-0.0445579439401627,-0.711193680763245,-0.697194516658783,0.0901288837194443,-0.755197167396545,-0.655364990234375,0.013188986107707,-0.711193680763245,-0.697194516658783,0.0901288837194443,-0.646878838539124,-0.759715855121613,0.0661768615245819,-0.687340140342712,-0.716734826564789,0.117705285549164,-0.287740290164948,-0.848941743373871,0.443286925554276,-0.217328950762749,-0.862859785556793,0.456334322690964,-0.266709297895432,-0.817863285541534,0.509868264198303,-0.261199861764908,-0.879119217395782,0.398652613162994,-0.348112255334854,-0.838050305843353,0.420106381177902,-0.254201203584671,-0.885313749313354,0.389360070228577,-0.287740290164948,-0.848941743373871,0.443286925554276,-0.261199861764908,-0.879119217395782,0.398652613162994,-0.217328950762749,-0.862859785556793,0.456334322690964,-0.266709297895432,-0.817863285541534,0.509868264198303,-0.197711139917374,-0.822352647781372,0.533522486686707,-0.218016415834427,-0.777295410633087,0.59015291929245,0.762754619121552,0.323453634977341,0.559984803199768,0.667389810085297,0.41735777258873,0.616768300533295,0.708850145339966,0.307346731424332,0.634877383708954,0.667389810085297,0.41735777258873,0.616768300533295,0.611169397830963,0.398607611656189,0.683800935745239,0.708850145339966,0.307346731424332,0.634877383708954,0.630283653736115,0.302289426326752,0.715096771717072,0.611169397830963,0.398607611656189,0.683800935745239,0.518843591213226,0.386082649230957,0.762719690799713,0.38157719373703,0.37938979268074,0.842889130115509,0.518843591213226,0.386082649230957,0.762719690799713,0.460310786962509,0.393787264823914,0.795641541481018,0.495169043540955,0.27427214384079,0.824367821216583,0.389967381954193,0.267540454864502,0.881105780601501,0.403528481721878,0.345081001520157,0.847398221492767,0.495169043540955,0.27427214384079,0.824367821216583,0.434280395507813,0.325515031814575,0.839904963970184,0.382415354251862,0.261632144451141,0.886175453662872,0.172454953193665,0.488063037395477,0.855601370334625,0.205821335315704,0.471173793077469,0.857690334320068, +0.28825119137764,0.432080209255219,0.854527831077576,0.28825119137764,0.432080209255219,0.854527831077576,0.205821335315704,0.471173793077469,0.857690334320068,0.306338518857956,0.387407451868057,0.869524002075195,0.434280395507813,0.325515031814575,0.839904963970184,0.28825119137764,0.432080209255219,0.854527831077576,0.306338518857956,0.387407451868057,0.869524002075195,0.172454953193665,0.488063037395477,0.855601370334625,0.235718816518784,0.467425286769867,0.852027118206024,0.137259855866432,0.526593565940857,0.838962912559509,0.137259855866432,0.526593565940857,0.838962912559509,0.26116144657135,0.488227128982544,0.832723736763,0.159146755933762,0.566214203834534,0.808748245239258,0.403528481721878,0.345081001520157,0.847398221492767,0.460310786962509,0.393787264823914,0.795641541481018,0.542962431907654,0.324835330247879,0.774386048316956,-0.218016415834427,-0.777295410633087,0.59015291929245,-0.197711139917374,-0.822352647781372,0.533522486686707,-0.150573328137398,-0.800907254219055,0.57954728603363,-0.220395430922508,-0.720907747745514,0.657052278518677,-0.150573328137398,-0.800907254219055,0.57954728603363,-0.117339417338371,-0.713104963302612,0.691167593002319,-0.186128064990044,-0.664838671684265,0.723426401615143,-0.117339417338371,-0.713104963302612,0.691167593002319,-0.0960159078240395,-0.607208430767059,0.788719654083252,-0.144637927412987,-0.326926231384277,0.933915913105011,-0.143320977687836,-0.357584625482559,0.922817528247833,-0.0106217451393604,-0.426216453313828,0.904558777809143,0.0131780868396163,-0.48501655459404,0.8744056224823,0.0973838344216347,-0.466481178998947,0.879153907299042,-0.0106217451393604,-0.426216453313828,0.904558777809143,-0.0960159078240395,-0.607208430767059,0.788719654083252,-0.0159449353814125,-0.580554127693176,0.814065396785736,-0.0384616144001484,-0.551816880702972,0.833077847957611,-0.0384616144001484,-0.551816880702972,0.833077847957611,-0.0159449353814125,-0.580554127693176,0.814065396785736,0.033658504486084,-0.549572587013245,0.834767580032349,-0.144637927412987,-0.326926231384277,0.933915913105011, +-0.191874027252197,-0.279459357261658,0.940790474414825,-0.143320977687836,-0.357584625482559,0.922817528247833,0.814959943294525,0.278068631887436,0.508446574211121,0.762754619121552,0.323453634977341,0.559984803199768,0.837062060832977,0.218554124236107,0.501558601856232,-0.761716306209564,-0.5737264752388,-0.301041573286057,-0.657520592212677,-0.624908328056335,-0.420899271965027,-0.761238873004913,-0.592365801334381,-0.263852179050446,-0.665179848670959,-0.716683924198151,-0.209522798657417,-0.714235723018646,-0.681455552577972,-0.159641265869141,-0.761238873004913,-0.592365801334381,-0.263852179050446,-0.714235723018646,-0.681455552577972,-0.159641265869141,-0.684589385986328,-0.712614297866821,-0.153356552124023,-0.762470602989197,-0.641696214675903,-0.0828515514731407,-0.762470602989197,-0.641696214675903,-0.0828515514731407,-0.684589385986328,-0.712614297866821,-0.153356552124023,-0.732101619243622,-0.679736375808716,-0.0445579439401627,-0.431696504354477,-0.888313829898834,0.156641528010368,-0.34329017996788,-0.92890453338623,0.138880804181099,-0.362180888652802,-0.903698325157166,0.228373005986214,-0.503360033035278,-0.837568640708923,0.212384775280952,-0.452709138393402,-0.888577878475189,0.0740524679422379,-0.431696504354477,-0.888313829898834,0.156641528010368,-0.362180888652802,-0.903698325157166,0.228373005986214,-0.276779681444168,-0.926708042621613,0.254175335168839,-0.295019954442978,-0.906160414218903,0.303045153617859,-0.558099210262299,-0.829705595970154,0.0106630139052868,-0.452709138393402,-0.888577878475189,0.0740524679422379,-0.595211625099182,-0.800188541412354,0.0736288204789162,-0.314057379961014,-0.864005565643311,0.393525391817093,-0.252047657966614,-0.887182056903839,0.386496931314468,-0.254201203584671,-0.885313749313354,0.389360070228577,-0.297171354293823,-0.886084496974945,0.355729341506958,-0.252047657966614,-0.887182056903839,0.386496931314468,-0.314057379961014,-0.864005565643311,0.393525391817093,-0.256951987743378,-0.887827575206757,0.381756097078323,-0.297171354293823,-0.886084496974945,0.355729341506958, +-0.295019954442978,-0.906160414218903,0.303045153617859,-0.646878838539124,-0.759715855121613,0.0661768615245819,-0.660932838916779,-0.749923050403595,0.0279850289225578,-0.687340140342712,-0.716734826564789,0.117705285549164,-0.660932838916779,-0.749923050403595,0.0279850289225578,-0.558099210262299,-0.829705595970154,0.0106630139052868,-0.67938107252121,-0.7337446808815,-0.00774375209584832,-0.558099210262299,-0.829705595970154,0.0106630139052868,-0.595211625099182,-0.800188541412354,0.0736288204789162,-0.67938107252121,-0.7337446808815,-0.00774375209584832,-0.732101619243622,-0.679736375808716,-0.0445579439401627,-0.676376521587372,-0.736538171768188,0.00511151412501931,-0.711193680763245,-0.697194516658783,0.0901288837194443,-0.676376521587372,-0.736538171768188,0.00511151412501931,-0.646878838539124,-0.759715855121613,0.0661768615245819,-0.711193680763245,-0.697194516658783,0.0901288837194443,-0.266709297895432,-0.817863285541534,0.509868264198303,-0.217328950762749,-0.862859785556793,0.456334322690964,-0.197711139917374,-0.822352647781372,0.533522486686707,-0.261199861764908,-0.879119217395782,0.398652613162994,-0.254201203584671,-0.885313749313354,0.389360070228577,-0.240771278738976,-0.891764223575592,0.383126139640808,-0.217386826872826,-0.893159151077271,0.393712669610977,-0.217328950762749,-0.862859785556793,0.456334322690964,-0.261199861764908,-0.879119217395782,0.398652613162994,0.735222160816193,0.412756234407425,0.537662088871002,0.667389810085297,0.41735777258873,0.616768300533295,0.762754619121552,0.323453634977341,0.559984803199768,0.667389810085297,0.41735777258873,0.616768300533295,0.582319796085358,0.403102248907089,0.70598304271698,0.611169397830963,0.398607611656189,0.683800935745239,0.611169397830963,0.398607611656189,0.683800935745239,0.582319796085358,0.403102248907089,0.70598304271698,0.518843591213226,0.386082649230957,0.762719690799713,0.582319796085358,0.403102248907089,0.70598304271698,0.460310786962509,0.393787264823914,0.795641541481018,0.518843591213226,0.386082649230957,0.762719690799713, +0.542962431907654,0.324835330247879,0.774386048316956,0.495169043540955,0.27427214384079,0.824367821216583,0.403528481721878,0.345081001520157,0.847398221492767,0.434280395507813,0.325515031814575,0.839904963970184,0.495169043540955,0.27427214384079,0.824367821216583,0.560658752918243,0.26445797085762,0.784680545330048,0.172454953193665,0.488063037395477,0.855601370334625,0.28825119137764,0.432080209255219,0.854527831077576,0.235718816518784,0.467425286769867,0.852027118206024,0.434280395507813,0.325515031814575,0.839904963970184,0.378113329410553,0.406171917915344,0.831898212432861,0.28825119137764,0.432080209255219,0.854527831077576,0.137259855866432,0.526593565940857,0.838962912559509,0.235718816518784,0.467425286769867,0.852027118206024,0.26116144657135,0.488227128982544,0.832723736763,0.582319796085358,0.403102248907089,0.70598304271698,0.542962431907654,0.324835330247879,0.774386048316956,0.460310786962509,0.393787264823914,0.795641541481018,-0.150573328137398,-0.800907254219055,0.57954728603363,-0.197711139917374,-0.822352647781372,0.533522486686707,-0.148084342479706,-0.858177542686462,0.491530478000641,-0.214556634426117,-0.717136204242706,0.663084447383881,-0.117339417338371,-0.713104963302612,0.691167593002319,-0.150573328137398,-0.800907254219055,0.57954728603363,-0.0159449353814125,-0.580554127693176,0.814065396785736,-0.0960159078240395,-0.607208430767059,0.788719654083252,-0.117339417338371,-0.713104963302612,0.691167593002319,-0.0159449353814125,-0.580554127693176,0.814065396785736,-0.0555759146809578,-0.541666805744171,0.838753998279572,0.033658504486084,-0.549572587013245,0.834767580032349,0.814959943294525,0.278068631887436,0.508446574211121,0.735222160816193,0.412756234407425,0.537662088871002,0.762754619121552,0.323453634977341,0.559984803199768,-0.657520592212677,-0.624908328056335,-0.420899271965027,-0.616953611373901,-0.725585401058197,-0.304785072803497,-0.761238873004913,-0.592365801334381,-0.263852179050446,-0.665179848670959,-0.716683924198151,-0.209522798657417,-0.637812256813049,-0.744993805885315,-0.195396065711975, +-0.714235723018646,-0.681455552577972,-0.159641265869141,-0.665179848670959,-0.716683924198151,-0.209522798657417,-0.761238873004913,-0.592365801334381,-0.263852179050446,-0.616953611373901,-0.725585401058197,-0.304785072803497,-0.714235723018646,-0.681455552577972,-0.159641265869141,-0.637812256813049,-0.744993805885315,-0.195396065711975,-0.684589385986328,-0.712614297866821,-0.153356552124023,-0.732101619243622,-0.679736375808716,-0.0445579439401627,-0.684589385986328,-0.712614297866821,-0.153356552124023,-0.653418838977814,-0.748097717761993,-0.115730091929436,-0.431696504354477,-0.888313829898834,0.156641528010368,-0.452709138393402,-0.888577878475189,0.0740524679422379,-0.34329017996788,-0.92890453338623,0.138880804181099,-0.34329017996788,-0.92890453338623,0.138880804181099,-0.285450726747513,-0.93614000082016,0.205328151583672,-0.362180888652802,-0.903698325157166,0.228373005986214,-0.362180888652802,-0.903698325157166,0.228373005986214,-0.285450726747513,-0.93614000082016,0.205328151583672,-0.276779681444168,-0.926708042621613,0.254175335168839,-0.239879339933395,-0.925121486186981,0.294292509555817,-0.295019954442978,-0.906160414218903,0.303045153617859,-0.276779681444168,-0.926708042621613,0.254175335168839,-0.452709138393402,-0.888577878475189,0.0740524679422379,-0.558099210262299,-0.829705595970154,0.0106630139052868,-0.396437019109726,-0.916579484939575,-0.0521509572863579,-0.252047657966614,-0.887182056903839,0.386496931314468,-0.240771278738976,-0.891764223575592,0.383126139640808,-0.254201203584671,-0.885313749313354,0.389360070228577,-0.256951987743378,-0.887827575206757,0.381756097078323,-0.252047657966614,-0.887182056903839,0.386496931314468,-0.297171354293823,-0.886084496974945,0.355729341506958,-0.235510185360909,-0.917530715465546,0.320425033569336,-0.256951987743378,-0.887827575206757,0.381756097078323,-0.295019954442978,-0.906160414218903,0.303045153617859,-0.660932838916779,-0.749923050403595,0.0279850289225578,-0.646878838539124,-0.759715855121613,0.0661768615245819,-0.505403161048889,-0.861684679985046,-0.0454640835523605, +-0.660932838916779,-0.749923050403595,0.0279850289225578,-0.505403161048889,-0.861684679985046,-0.0454640835523605,-0.558099210262299,-0.829705595970154,0.0106630139052868,-0.676376521587372,-0.736538171768188,0.00511151412501931,-0.732101619243622,-0.679736375808716,-0.0445579439401627,-0.653418838977814,-0.748097717761993,-0.115730091929436,-0.676376521587372,-0.736538171768188,0.00511151412501931,-0.579706966876984,-0.81388396024704,-0.0391478911042213,-0.646878838539124,-0.759715855121613,0.0661768615245819,-0.217328950762749,-0.862859785556793,0.456334322690964,-0.148084342479706,-0.858177542686462,0.491530478000641,-0.197711139917374,-0.822352647781372,0.533522486686707,-0.261199861764908,-0.879119217395782,0.398652613162994,-0.240771278738976,-0.891764223575592,0.383126139640808,-0.217386826872826,-0.893159151077271,0.393712669610977,-0.217386826872826,-0.893159151077271,0.393712669610977,-0.161845564842224,-0.881264984607697,0.444047212600708,-0.217328950762749,-0.862859785556793,0.456334322690964,0.735222160816193,0.412756234407425,0.537662088871002,0.681593537330627,0.425904810428619,0.595008671283722,0.667389810085297,0.41735777258873,0.616768300533295,0.667389810085297,0.41735777258873,0.616768300533295,0.681593537330627,0.425904810428619,0.595008671283722,0.582319796085358,0.403102248907089,0.70598304271698,0.542962431907654,0.324835330247879,0.774386048316956,0.626458764076233,0.259833782911301,0.734871208667755,0.495169043540955,0.27427214384079,0.824367821216583,0.626458764076233,0.259833782911301,0.734871208667755,0.560658752918243,0.26445797085762,0.784680545330048,0.495169043540955,0.27427214384079,0.824367821216583,0.532677888870239,0.303108781576157,0.790176749229431,0.434280395507813,0.325515031814575,0.839904963970184,0.560658752918243,0.26445797085762,0.784680545330048,0.28825119137764,0.432080209255219,0.854527831077576,0.378113329410553,0.406171917915344,0.831898212432861,0.235718816518784,0.467425286769867,0.852027118206024,0.378113329410553,0.406171917915344,0.831898212432861,0.434280395507813,0.325515031814575,0.839904963970184, +0.532677888870239,0.303108781576157,0.790176749229431,0.235718816518784,0.467425286769867,0.852027118206024,0.378113329410553,0.406171917915344,0.831898212432861,0.26116144657135,0.488227128982544,0.832723736763,0.542962431907654,0.324835330247879,0.774386048316956,0.582319796085358,0.403102248907089,0.70598304271698,0.659278273582459,0.330886244773865,0.675178706645966,-0.150573328137398,-0.800907254219055,0.57954728603363,-0.148084342479706,-0.858177542686462,0.491530478000641,-0.21966028213501,-0.823373019695282,0.523264944553375,-0.214556634426117,-0.717136204242706,0.663084447383881,-0.098093755543232,-0.65090024471283,0.752798974514008,-0.117339417338371,-0.713104963302612,0.691167593002319,-0.2246363312006,-0.785763621330261,0.576293230056763,-0.214556634426117,-0.717136204242706,0.663084447383881,-0.150573328137398,-0.800907254219055,0.57954728603363,-0.117339417338371,-0.713104963302612,0.691167593002319,-0.098093755543232,-0.65090024471283,0.752798974514008,-0.0159449353814125,-0.580554127693176,0.814065396785736,-0.0159449353814125,-0.580554127693176,0.814065396785736,-0.098093755543232,-0.65090024471283,0.752798974514008,-0.0555759146809578,-0.541666805744171,0.838753998279572,0.735222160816193,0.412756234407425,0.537662088871002,0.814959943294525,0.278068631887436,0.508446574211121,0.780938863754272,0.389303296804428,0.488443702459335,-0.582149684429169,-0.705786645412445,-0.40369126200676,-0.616953611373901,-0.725585401058197,-0.304785072803497,-0.657520592212677,-0.624908328056335,-0.420899271965027,-0.598108530044556,-0.766183733940125,-0.235007464885712,-0.637812256813049,-0.744993805885315,-0.195396065711975,-0.665179848670959,-0.716683924198151,-0.209522798657417,-0.598108530044556,-0.766183733940125,-0.235007464885712,-0.665179848670959,-0.716683924198151,-0.209522798657417,-0.616953611373901,-0.725585401058197,-0.304785072803497,-0.637812256813049,-0.744993805885315,-0.195396065711975,-0.622220873832703,-0.757563471794128,-0.197328731417656,-0.684589385986328,-0.712614297866821,-0.153356552124023, +-0.622220873832703,-0.757563471794128,-0.197328731417656,-0.653418838977814,-0.748097717761993,-0.115730091929436,-0.684589385986328,-0.712614297866821,-0.153356552124023,-0.34329017996788,-0.92890453338623,0.138880804181099,-0.452709138393402,-0.888577878475189,0.0740524679422379,-0.329897522926331,-0.943935871124268,0.0123509578406811,-0.34329017996788,-0.92890453338623,0.138880804181099,-0.27416929602623,-0.955992221832275,0.104451037943363,-0.285450726747513,-0.93614000082016,0.205328151583672,-0.259862959384918,-0.933925449848175,0.245467558503151,-0.276779681444168,-0.926708042621613,0.254175335168839,-0.285450726747513,-0.93614000082016,0.205328151583672,-0.235510185360909,-0.917530715465546,0.320425033569336,-0.295019954442978,-0.906160414218903,0.303045153617859,-0.239879339933395,-0.925121486186981,0.294292509555817,-0.239879339933395,-0.925121486186981,0.294292509555817,-0.276779681444168,-0.926708042621613,0.254175335168839,-0.259862959384918,-0.933925449848175,0.245467558503151,-0.396437019109726,-0.916579484939575,-0.0521509572863579,-0.558099210262299,-0.829705595970154,0.0106630139052868,-0.505403161048889,-0.861684679985046,-0.0454640835523605,-0.396437019109726,-0.916579484939575,-0.0521509572863579,-0.329897522926331,-0.943935871124268,0.0123509578406811,-0.452709138393402,-0.888577878475189,0.0740524679422379,-0.252047657966614,-0.887182056903839,0.386496931314468,-0.256951987743378,-0.887827575206757,0.381756097078323,-0.240771278738976,-0.891764223575592,0.383126139640808,-0.235510185360909,-0.917530715465546,0.320425033569336,-0.252988368272781,-0.901774168014526,0.350428491830826,-0.256951987743378,-0.887827575206757,0.381756097078323,-0.505403161048889,-0.861684679985046,-0.0454640835523605,-0.646878838539124,-0.759715855121613,0.0661768615245819,-0.579706966876984,-0.81388396024704,-0.0391478911042213,-0.579706966876984,-0.81388396024704,-0.0391478911042213,-0.676376521587372,-0.736538171768188,0.00511151412501931,-0.653418838977814,-0.748097717761993,-0.115730091929436,-0.217328950762749,-0.862859785556793,0.456334322690964, +-0.161845564842224,-0.881264984607697,0.444047212600708,-0.148084342479706,-0.858177542686462,0.491530478000641,-0.234757617115974,-0.889137446880341,0.392840057611465,-0.217386826872826,-0.893159151077271,0.393712669610977,-0.240771278738976,-0.891764223575592,0.383126139640808,-0.196931809186935,-0.896381735801697,0.397136747837067,-0.161845564842224,-0.881264984607697,0.444047212600708,-0.217386826872826,-0.893159151077271,0.393712669610977,0.681593537330627,0.425904810428619,0.595008671283722,0.735222160816193,0.412756234407425,0.537662088871002,0.742519438266754,0.440693229436874,0.504434525966644,0.659278273582459,0.330886244773865,0.675178706645966,0.582319796085358,0.403102248907089,0.70598304271698,0.681593537330627,0.425904810428619,0.595008671283722,0.542962431907654,0.324835330247879,0.774386048316956,0.659278273582459,0.330886244773865,0.675178706645966,0.626458764076233,0.259833782911301,0.734871208667755,0.560658752918243,0.26445797085762,0.784680545330048,0.626458764076233,0.259833782911301,0.734871208667755,0.630542516708374,0.246360972523689,0.736017823219299,0.630542516708374,0.246360972523689,0.736017823219299,0.532677888870239,0.303108781576157,0.790176749229431,0.560658752918243,0.26445797085762,0.784680545330048,-0.254383265972137,-0.848644196987152,0.463780134916306,-0.21966028213501,-0.823373019695282,0.523264944553375,-0.148084342479706,-0.858177542686462,0.491530478000641,-0.21966028213501,-0.823373019695282,0.523264944553375,-0.2246363312006,-0.785763621330261,0.576293230056763,-0.150573328137398,-0.800907254219055,0.57954728603363,-0.318495690822601,-0.588527739048004,0.743098616600037,-0.098093755543232,-0.65090024471283,0.752798974514008,-0.214556634426117,-0.717136204242706,0.663084447383881,-0.214556634426117,-0.717136204242706,0.663084447383881,-0.2246363312006,-0.785763621330261,0.576293230056763,-0.431893169879913,-0.641911208629608,0.633575677871704,-0.318495690822601,-0.588527739048004,0.743098616600037,-0.0555759146809578,-0.541666805744171,0.838753998279572,-0.098093755543232,-0.65090024471283,0.752798974514008, +0.735222160816193,0.412756234407425,0.537662088871002,0.780938863754272,0.389303296804428,0.488443702459335,0.742519438266754,0.440693229436874,0.504434525966644,-0.616953611373901,-0.725585401058197,-0.304785072803497,-0.582149684429169,-0.705786645412445,-0.40369126200676,-0.567789196968079,-0.765899658203125,-0.301683515310287,-0.598108530044556,-0.766183733940125,-0.235007464885712,-0.580788373947144,-0.776205360889435,-0.245336398482323,-0.637812256813049,-0.744993805885315,-0.195396065711975,-0.616953611373901,-0.725585401058197,-0.304785072803497,-0.567789196968079,-0.765899658203125,-0.301683515310287,-0.598108530044556,-0.766183733940125,-0.235007464885712,-0.637812256813049,-0.744993805885315,-0.195396065711975,-0.580788373947144,-0.776205360889435,-0.245336398482323,-0.622220873832703,-0.757563471794128,-0.197328731417656,-0.533025860786438,-0.835380017757416,-0.134251803159714,-0.653418838977814,-0.748097717761993,-0.115730091929436,-0.622220873832703,-0.757563471794128,-0.197328731417656,-0.34329017996788,-0.92890453338623,0.138880804181099,-0.329897522926331,-0.943935871124268,0.0123509578406811,-0.27416929602623,-0.955992221832275,0.104451037943363,-0.252230674028397,-0.95018082857132,0.183128461241722,-0.285450726747513,-0.93614000082016,0.205328151583672,-0.27416929602623,-0.955992221832275,0.104451037943363,-0.252230674028397,-0.95018082857132,0.183128461241722,-0.259862959384918,-0.933925449848175,0.245467558503151,-0.285450726747513,-0.93614000082016,0.205328151583672,-0.252988368272781,-0.901774168014526,0.350428491830826,-0.235510185360909,-0.917530715465546,0.320425033569336,-0.239879339933395,-0.925121486186981,0.294292509555817,-0.237568706274033,-0.932630300521851,0.271591126918793,-0.239879339933395,-0.925121486186981,0.294292509555817,-0.259862959384918,-0.933925449848175,0.245467558503151,-0.505403161048889,-0.861684679985046,-0.0454640835523605,-0.338007718324661,-0.933366417884827,-0.120738551020622,-0.396437019109726,-0.916579484939575,-0.0521509572863579,-0.396437019109726,-0.916579484939575,-0.0521509572863579, +-0.326904118061066,-0.939688503742218,-0.100593492388725,-0.329897522926331,-0.943935871124268,0.0123509578406811,-0.234757617115974,-0.889137446880341,0.392840057611465,-0.240771278738976,-0.891764223575592,0.383126139640808,-0.256951987743378,-0.887827575206757,0.381756097078323,-0.234757617115974,-0.889137446880341,0.392840057611465,-0.256951987743378,-0.887827575206757,0.381756097078323,-0.252988368272781,-0.901774168014526,0.350428491830826,-0.505403161048889,-0.861684679985046,-0.0454640835523605,-0.579706966876984,-0.81388396024704,-0.0391478911042213,-0.41979718208313,-0.903632640838623,-0.0849602967500687,-0.579706966876984,-0.81388396024704,-0.0391478911042213,-0.653418838977814,-0.748097717761993,-0.115730091929436,-0.533025860786438,-0.835380017757416,-0.134251803159714,-0.148084342479706,-0.858177542686462,0.491530478000641,-0.161845564842224,-0.881264984607697,0.444047212600708,-0.254383265972137,-0.848644196987152,0.463780134916306,-0.196931809186935,-0.896381735801697,0.397136747837067,-0.217386826872826,-0.893159151077271,0.393712669610977,-0.234757617115974,-0.889137446880341,0.392840057611465,-0.161845564842224,-0.881264984607697,0.444047212600708,-0.196931809186935,-0.896381735801697,0.397136747837067,-0.30706325173378,-0.82574063539505,0.473143100738525,0.681593537330627,0.425904810428619,0.595008671283722,0.742519438266754,0.440693229436874,0.504434525966644,0.732710480690002,0.348797142505646,0.584359228610992,0.659278273582459,0.330886244773865,0.675178706645966,0.681593537330627,0.425904810428619,0.595008671283722,0.732710480690002,0.348797142505646,0.584359228610992,0.698213756084442,0.242079824209213,0.673717141151428,0.626458764076233,0.259833782911301,0.734871208667755,0.659278273582459,0.330886244773865,0.675178706645966,0.630542516708374,0.246360972523689,0.736017823219299,0.626458764076233,0.259833782911301,0.734871208667755,0.698213756084442,0.242079824209213,0.673717141151428,0.630542516708374,0.246360972523689,0.736017823219299,0.621749222278595,0.247022345662117,0.743241369724274, +0.532677888870239,0.303108781576157,0.790176749229431,-0.254383265972137,-0.848644196987152,0.463780134916306,-0.517929255962372,-0.67705637216568,0.522822856903076,-0.21966028213501,-0.823373019695282,0.523264944553375,-0.2246363312006,-0.785763621330261,0.576293230056763,-0.21966028213501,-0.823373019695282,0.523264944553375,-0.383850961923599,-0.722847819328308,0.57458621263504,-0.318495690822601,-0.588527739048004,0.743098616600037,-0.214556634426117,-0.717136204242706,0.663084447383881,-0.452228933572769,-0.559684455394745,0.694436550140381,-0.2246363312006,-0.785763621330261,0.576293230056763,-0.383850961923599,-0.722847819328308,0.57458621263504,-0.431893169879913,-0.641911208629608,0.633575677871704,-0.431893169879913,-0.641911208629608,0.633575677871704,-0.452228933572769,-0.559684455394745,0.694436550140381,-0.214556634426117,-0.717136204242706,0.663084447383881,-0.567789196968079,-0.765899658203125,-0.301683515310287,-0.582149684429169,-0.705786645412445,-0.40369126200676,-0.580812454223633,-0.728979885578156,-0.362277746200562,-0.598108530044556,-0.766183733940125,-0.235007464885712,-0.533327639102936,-0.796707928180695,-0.284285008907318,-0.580788373947144,-0.776205360889435,-0.245336398482323,-0.598108530044556,-0.766183733940125,-0.235007464885712,-0.567789196968079,-0.765899658203125,-0.301683515310287,-0.533327639102936,-0.796707928180695,-0.284285008907318,-0.580788373947144,-0.776205360889435,-0.245336398482323,-0.50120210647583,-0.836072504520416,-0.223112478852272,-0.622220873832703,-0.757563471794128,-0.197328731417656,-0.50120210647583,-0.836072504520416,-0.223112478852272,-0.533025860786438,-0.835380017757416,-0.134251803159714,-0.622220873832703,-0.757563471794128,-0.197328731417656,-0.329897522926331,-0.943935871124268,0.0123509578406811,-0.293484270572662,-0.955559551715851,-0.0277999900281429,-0.27416929602623,-0.955992221832275,0.104451037943363,-0.252230674028397,-0.95018082857132,0.183128461241722,-0.27416929602623,-0.955992221832275,0.104451037943363,-0.257853120565414,-0.963826417922974,0.0674557089805603, +-0.237568706274033,-0.932630300521851,0.271591126918793,-0.259862959384918,-0.933925449848175,0.245467558503151,-0.252230674028397,-0.95018082857132,0.183128461241722,-0.239879339933395,-0.925121486186981,0.294292509555817,-0.244937807321548,-0.924416542053223,0.292334467172623,-0.252988368272781,-0.901774168014526,0.350428491830826,-0.239879339933395,-0.925121486186981,0.294292509555817,-0.237568706274033,-0.932630300521851,0.271591126918793,-0.244937807321548,-0.924416542053223,0.292334467172623,-0.505403161048889,-0.861684679985046,-0.0454640835523605,-0.41979718208313,-0.903632640838623,-0.0849602967500687,-0.338007718324661,-0.933366417884827,-0.120738551020622,-0.338007718324661,-0.933366417884827,-0.120738551020622,-0.326904118061066,-0.939688503742218,-0.100593492388725,-0.396437019109726,-0.916579484939575,-0.0521509572863579,-0.293484270572662,-0.955559551715851,-0.0277999900281429,-0.329897522926331,-0.943935871124268,0.0123509578406811,-0.326904118061066,-0.939688503742218,-0.100593492388725,-0.241766586899757,-0.877228260040283,0.414752185344696,-0.234757617115974,-0.889137446880341,0.392840057611465,-0.252988368272781,-0.901774168014526,0.350428491830826,-0.533025860786438,-0.835380017757416,-0.134251803159714,-0.41979718208313,-0.903632640838623,-0.0849602967500687,-0.579706966876984,-0.81388396024704,-0.0391478911042213,-0.30706325173378,-0.82574063539505,0.473143100738525,-0.254383265972137,-0.848644196987152,0.463780134916306,-0.161845564842224,-0.881264984607697,0.444047212600708,-0.196931809186935,-0.896381735801697,0.397136747837067,-0.234757617115974,-0.889137446880341,0.392840057611465,-0.234680518507957,-0.882494807243347,0.407587826251984,-0.30706325173378,-0.82574063539505,0.473143100738525,-0.196931809186935,-0.896381735801697,0.397136747837067,-0.364509463310242,-0.832899391651154,0.416426837444305,0.781158328056335,0.359085083007813,0.51073431968689,0.732710480690002,0.348797142505646,0.584359228610992,0.742519438266754,0.440693229436874,0.504434525966644,0.659278273582459,0.330886244773865,0.675178706645966, +0.732710480690002,0.348797142505646,0.584359228610992,0.698213756084442,0.242079824209213,0.673717141151428,0.630542516708374,0.246360972523689,0.736017823219299,0.698213756084442,0.242079824209213,0.673717141151428,0.621749222278595,0.247022345662117,0.743241369724274,-0.471485018730164,-0.719122588634491,0.510455131530762,-0.517929255962372,-0.67705637216568,0.522822856903076,-0.254383265972137,-0.848644196987152,0.463780134916306,-0.517929255962372,-0.67705637216568,0.522822856903076,-0.383850961923599,-0.722847819328308,0.57458621263504,-0.21966028213501,-0.823373019695282,0.523264944553375,-0.383850961923599,-0.722847819328308,0.57458621263504,-0.627907693386078,-0.510827362537384,0.587185740470886,-0.431893169879913,-0.641911208629608,0.633575677871704,-0.431893169879913,-0.641911208629608,0.633575677871704,-0.657468378543854,-0.380891978740692,0.650120437145233,-0.452228933572769,-0.559684455394745,0.694436550140381,-0.580812454223633,-0.728979885578156,-0.362277746200562,-0.521465957164764,-0.806788504123688,-0.277786552906036,-0.567789196968079,-0.765899658203125,-0.301683515310287,-0.580788373947144,-0.776205360889435,-0.245336398482323,-0.533327639102936,-0.796707928180695,-0.284285008907318,-0.476642668247223,-0.834624588489532,-0.27606737613678,-0.533327639102936,-0.796707928180695,-0.284285008907318,-0.567789196968079,-0.765899658203125,-0.301683515310287,-0.521465957164764,-0.806788504123688,-0.277786552906036,-0.476642668247223,-0.834624588489532,-0.27606737613678,-0.50120210647583,-0.836072504520416,-0.223112478852272,-0.580788373947144,-0.776205360889435,-0.245336398482323,-0.365044951438904,-0.91734105348587,-0.158831551671028,-0.533025860786438,-0.835380017757416,-0.134251803159714,-0.50120210647583,-0.836072504520416,-0.223112478852272,-0.256580948829651,-0.966167271137238,0.0262084156274796,-0.27416929602623,-0.955992221832275,0.104451037943363,-0.293484270572662,-0.955559551715851,-0.0277999900281429,-0.257853120565414,-0.963826417922974,0.0674557089805603,-0.27416929602623,-0.955992221832275,0.104451037943363, +-0.256580948829651,-0.966167271137238,0.0262084156274796,-0.252230674028397,-0.95018082857132,0.183128461241722,-0.257853120565414,-0.963826417922974,0.0674557089805603,-0.227101817727089,-0.967415690422058,0.111944161355495,-0.237568706274033,-0.932630300521851,0.271591126918793,-0.252230674028397,-0.95018082857132,0.183128461241722,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.307917594909668,-0.893704891204834,0.326309859752655,-0.252988368272781,-0.901774168014526,0.350428491830826,-0.244937807321548,-0.924416542053223,0.292334467172623,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.244937807321548,-0.924416542053223,0.292334467172623,-0.237568706274033,-0.932630300521851,0.271591126918793,-0.338007718324661,-0.933366417884827,-0.120738551020622,-0.41979718208313,-0.903632640838623,-0.0849602967500687,-0.311340153217316,-0.94235622882843,-0.122604697942734,-0.326904118061066,-0.939688503742218,-0.100593492388725,-0.338007718324661,-0.933366417884827,-0.120738551020622,-0.302659898996353,-0.942037522792816,-0.14478325843811,-0.293484270572662,-0.955559551715851,-0.0277999900281429,-0.326904118061066,-0.939688503742218,-0.100593492388725,-0.290129452943802,-0.948603451251984,-0.126397117972374,-0.241766586899757,-0.877228260040283,0.414752185344696,-0.234680518507957,-0.882494807243347,0.407587826251984,-0.234757617115974,-0.889137446880341,0.392840057611465,-0.307917594909668,-0.893704891204834,0.326309859752655,-0.241766586899757,-0.877228260040283,0.414752185344696,-0.252988368272781,-0.901774168014526,0.350428491830826,-0.533025860786438,-0.835380017757416,-0.134251803159714,-0.365044951438904,-0.91734105348587,-0.158831551671028,-0.41979718208313,-0.903632640838623,-0.0849602967500687,-0.30706325173378,-0.82574063539505,0.473143100738525,-0.471485018730164,-0.719122588634491,0.510455131530762,-0.254383265972137,-0.848644196987152,0.463780134916306,-0.234680518507957,-0.882494807243347,0.407587826251984,-0.364509463310242,-0.832899391651154,0.416426837444305,-0.196931809186935,-0.896381735801697,0.397136747837067, +-0.541026592254639,-0.694334447383881,0.474541634321213,-0.30706325173378,-0.82574063539505,0.473143100738525,-0.364509463310242,-0.832899391651154,0.416426837444305,0.781158328056335,0.359085083007813,0.51073431968689,0.772097170352936,0.241830825805664,0.587693452835083,0.732710480690002,0.348797142505646,0.584359228610992,0.698213756084442,0.242079824209213,0.673717141151428,0.732710480690002,0.348797142505646,0.584359228610992,0.772097170352936,0.241830825805664,0.587693452835083,0.698213756084442,0.242079824209213,0.673717141151428,0.722396850585938,0.194176867604256,0.663654983043671,0.621749222278595,0.247022345662117,0.743241369724274,-0.71253901720047,-0.495047152042389,0.497208565473557,-0.517929255962372,-0.67705637216568,0.522822856903076,-0.471485018730164,-0.719122588634491,0.510455131530762,-0.517929255962372,-0.67705637216568,0.522822856903076,-0.627907693386078,-0.510827362537384,0.587185740470886,-0.383850961923599,-0.722847819328308,0.57458621263504,-0.657468378543854,-0.380891978740692,0.650120437145233,-0.431893169879913,-0.641911208629608,0.633575677871704,-0.627907693386078,-0.510827362537384,0.587185740470886,-0.521465957164764,-0.806788504123688,-0.277786552906036,-0.580812454223633,-0.728979885578156,-0.362277746200562,-0.546643137931824,-0.772394001483917,-0.323401868343353,-0.476642668247223,-0.834624588489532,-0.27606737613678,-0.533327639102936,-0.796707928180695,-0.284285008907318,-0.426425963640213,-0.86464524269104,-0.265611290931702,-0.521465957164764,-0.806788504123688,-0.277786552906036,-0.426425963640213,-0.86464524269104,-0.265611290931702,-0.533327639102936,-0.796707928180695,-0.284285008907318,-0.476642668247223,-0.834624588489532,-0.27606737613678,-0.403509855270386,-0.876212596893311,-0.263497948646545,-0.50120210647583,-0.836072504520416,-0.223112478852272,-0.403509855270386,-0.876212596893311,-0.263497948646545,-0.365044951438904,-0.91734105348587,-0.158831551671028,-0.50120210647583,-0.836072504520416,-0.223112478852272,-0.256580948829651,-0.966167271137238,0.0262084156274796, +-0.293484270572662,-0.955559551715851,-0.0277999900281429,-0.243744596838951,-0.967562437057495,-0.066417783498764,-0.257853120565414,-0.963826417922974,0.0674557089805603,-0.256580948829651,-0.966167271137238,0.0262084156274796,-0.24944868683815,-0.967811107635498,-0.0334193296730518,-0.227101817727089,-0.967415690422058,0.111944161355495,-0.257853120565414,-0.963826417922974,0.0674557089805603,-0.201942950487137,-0.979227662086487,0.0182250682264566,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.252230674028397,-0.95018082857132,0.183128461241722,-0.227101817727089,-0.967415690422058,0.111944161355495,-0.244937807321548,-0.924416542053223,0.292334467172623,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.307917594909668,-0.893704891204834,0.326309859752655,-0.365044951438904,-0.91734105348587,-0.158831551671028,-0.311340153217316,-0.94235622882843,-0.122604697942734,-0.41979718208313,-0.903632640838623,-0.0849602967500687,-0.338007718324661,-0.933366417884827,-0.120738551020622,-0.311340153217316,-0.94235622882843,-0.122604697942734,-0.306841999292374,-0.937256515026093,-0.165523812174797,-0.273841232061386,-0.94949072599411,-0.153225928544998,-0.302659898996353,-0.942037522792816,-0.14478325843811,-0.338007718324661,-0.933366417884827,-0.120738551020622,-0.326904118061066,-0.939688503742218,-0.100593492388725,-0.302659898996353,-0.942037522792816,-0.14478325843811,-0.290129452943802,-0.948603451251984,-0.126397117972374,-0.243744596838951,-0.967562437057495,-0.066417783498764,-0.293484270572662,-0.955559551715851,-0.0277999900281429,-0.290129452943802,-0.948603451251984,-0.126397117972374,-0.234680518507957,-0.882494807243347,0.407587826251984,-0.241766586899757,-0.877228260040283,0.414752185344696,-0.260004281997681,-0.854942560195923,0.448855102062225,-0.307917594909668,-0.893704891204834,0.326309859752655,-0.260004281997681,-0.854942560195923,0.448855102062225,-0.241766586899757,-0.877228260040283,0.414752185344696,-0.657951772212982,-0.586952745914459,0.471789985895157,-0.471485018730164,-0.719122588634491,0.510455131530762, +-0.30706325173378,-0.82574063539505,0.473143100738525,-0.364509463310242,-0.832899391651154,0.416426837444305,-0.234680518507957,-0.882494807243347,0.407587826251984,-0.393156290054321,-0.842051982879639,0.369291961193085,-0.541026592254639,-0.694334447383881,0.474541634321213,-0.657951772212982,-0.586952745914459,0.471789985895157,-0.30706325173378,-0.82574063539505,0.473143100738525,-0.541026592254639,-0.694334447383881,0.474541634321213,-0.364509463310242,-0.832899391651154,0.416426837444305,-0.734204649925232,-0.581247448921204,0.350848466157913,0.772097170352936,0.241830825805664,0.587693452835083,0.781158328056335,0.359085083007813,0.51073431968689,0.816799759864807,0.253669530153275,0.518159985542297,0.722396850585938,0.194176867604256,0.663654983043671,0.698213756084442,0.242079824209213,0.673717141151428,0.772097170352936,0.241830825805664,0.587693452835083,-0.71253901720047,-0.495047152042389,0.497208565473557,-0.786409258842468,-0.358934789896011,0.50271874666214,-0.517929255962372,-0.67705637216568,0.522822856903076,-0.657951772212982,-0.586952745914459,0.471789985895157,-0.71253901720047,-0.495047152042389,0.497208565473557,-0.471485018730164,-0.719122588634491,0.510455131530762,-0.786409258842468,-0.358934789896011,0.50271874666214,-0.627907693386078,-0.510827362537384,0.587185740470886,-0.517929255962372,-0.67705637216568,0.522822856903076,-0.657468378543854,-0.380891978740692,0.650120437145233,-0.627907693386078,-0.510827362537384,0.587185740470886,-0.791254043579102,-0.240793749690056,0.562081217765808,-0.546643137931824,-0.772394001483917,-0.323401868343353,-0.580812454223633,-0.728979885578156,-0.362277746200562,-0.55857127904892,-0.711980938911438,-0.425536215305328,-0.481907308101654,-0.829830050468445,-0.281331330537796,-0.521465957164764,-0.806788504123688,-0.277786552906036,-0.546643137931824,-0.772394001483917,-0.323401868343353,-0.403509855270386,-0.876212596893311,-0.263497948646545,-0.476642668247223,-0.834624588489532,-0.27606737613678,-0.426425963640213,-0.86464524269104,-0.265611290931702, +-0.426425963640213,-0.86464524269104,-0.265611290931702,-0.521465957164764,-0.806788504123688,-0.277786552906036,-0.420619547367096,-0.886059522628784,-0.194878369569778,-0.365044951438904,-0.91734105348587,-0.158831551671028,-0.403509855270386,-0.876212596893311,-0.263497948646545,-0.350115388631821,-0.909442782402039,-0.224349930882454,-0.24944868683815,-0.967811107635498,-0.0334193296730518,-0.256580948829651,-0.966167271137238,0.0262084156274796,-0.243744596838951,-0.967562437057495,-0.066417783498764,-0.201942950487137,-0.979227662086487,0.0182250682264566,-0.257853120565414,-0.963826417922974,0.0674557089805603,-0.24944868683815,-0.967811107635498,-0.0334193296730518,-0.227101817727089,-0.967415690422058,0.111944161355495,-0.201942950487137,-0.979227662086487,0.0182250682264566,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.448168069124222,-0.869995653629303,0.205554351210594,-0.307917594909668,-0.893704891204834,0.326309859752655,-0.365044951438904,-0.91734105348587,-0.158831551671028,-0.306841999292374,-0.937256515026093,-0.165523812174797,-0.311340153217316,-0.94235622882843,-0.122604697942734,-0.338007718324661,-0.933366417884827,-0.120738551020622,-0.306841999292374,-0.937256515026093,-0.165523812174797,-0.273841232061386,-0.94949072599411,-0.153225928544998,-0.302659898996353,-0.942037522792816,-0.14478325843811,-0.273841232061386,-0.94949072599411,-0.153225928544998,-0.305586844682693,-0.936235249042511,-0.173436239361763,-0.290129452943802,-0.948603451251984,-0.126397117972374,-0.302659898996353,-0.942037522792816,-0.14478325843811,-0.305586844682693,-0.936235249042511,-0.173436239361763,-0.290129452943802,-0.948603451251984,-0.126397117972374,-0.381386369466782,-0.924284517765045,0.0155690954998136,-0.243744596838951,-0.967562437057495,-0.066417783498764,-0.457542717456818,-0.801081895828247,0.385904520750046,-0.234680518507957,-0.882494807243347,0.407587826251984,-0.260004281997681,-0.854942560195923,0.448855102062225,-0.489385366439819,-0.79105007648468,0.367071777582169, +-0.260004281997681,-0.854942560195923,0.448855102062225,-0.307917594909668,-0.893704891204834,0.326309859752655,-0.234680518507957,-0.882494807243347,0.407587826251984,-0.457542717456818,-0.801081895828247,0.385904520750046,-0.393156290054321,-0.842051982879639,0.369291961193085,-0.364509463310242,-0.832899391651154,0.416426837444305,-0.393156290054321,-0.842051982879639,0.369291961193085,-0.675690829753876,-0.683897495269775,0.275183260440826,-0.838595509529114,-0.413104802370071,0.355108171701431,-0.657951772212982,-0.586952745914459,0.471789985895157,-0.541026592254639,-0.694334447383881,0.474541634321213,-0.675690829753876,-0.683897495269775,0.275183260440826,-0.734204649925232,-0.581247448921204,0.350848466157913,-0.364509463310242,-0.832899391651154,0.416426837444305,-0.541026592254639,-0.694334447383881,0.474541634321213,-0.734204649925232,-0.581247448921204,0.350848466157913,-0.838595509529114,-0.413104802370071,0.355108171701431,0.772097170352936,0.241830825805664,0.587693452835083,0.816799759864807,0.253669530153275,0.518159985542297,0.802916944026947,0.174946323037148,0.569840312004089,0.722396850585938,0.194176867604256,0.663654983043671,0.772097170352936,0.241830825805664,0.587693452835083,0.802916944026947,0.174946323037148,0.569840312004089,-0.71253901720047,-0.495047152042389,0.497208565473557,-0.865708470344543,-0.252748042345047,0.432049930095673,-0.786409258842468,-0.358934789896011,0.50271874666214,-0.657951772212982,-0.586952745914459,0.471789985895157,-0.865708470344543,-0.252748042345047,0.432049930095673,-0.71253901720047,-0.495047152042389,0.497208565473557,-0.786409258842468,-0.358934789896011,0.50271874666214,-0.791254043579102,-0.240793749690056,0.562081217765808,-0.627907693386078,-0.510827362537384,0.587185740470886,-0.481907308101654,-0.829830050468445,-0.281331330537796,-0.546643137931824,-0.772394001483917,-0.323401868343353,-0.55857127904892,-0.711980938911438,-0.425536215305328,-0.521465957164764,-0.806788504123688,-0.277786552906036,-0.481907308101654,-0.829830050468445,-0.281331330537796, +-0.420619547367096,-0.886059522628784,-0.194878369569778,-0.403509855270386,-0.876212596893311,-0.263497948646545,-0.426425963640213,-0.86464524269104,-0.265611290931702,-0.396338909864426,-0.883841574192047,-0.248474210500717,-0.420619547367096,-0.886059522628784,-0.194878369569778,-0.369131058454514,-0.91382622718811,-0.16930365562439,-0.426425963640213,-0.86464524269104,-0.265611290931702,-0.403509855270386,-0.876212596893311,-0.263497948646545,-0.396338909864426,-0.883841574192047,-0.248474210500717,-0.350115388631821,-0.909442782402039,-0.224349930882454,-0.365044951438904,-0.91734105348587,-0.158831551671028,-0.350115388631821,-0.909442782402039,-0.224349930882454,-0.306841999292374,-0.937256515026093,-0.165523812174797,-0.24944868683815,-0.967811107635498,-0.0334193296730518,-0.243744596838951,-0.967562437057495,-0.066417783498764,-0.41581466794014,-0.903566777706146,0.103272467851639,-0.201942950487137,-0.979227662086487,0.0182250682264566,-0.24944868683815,-0.967811107635498,-0.0334193296730518,-0.269016861915588,-0.961636066436768,-0.0537209399044514,-0.201942950487137,-0.979227662086487,0.0182250682264566,-0.221153423190117,-0.97458803653717,0.0356268510222435,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.666393578052521,-0.744541347026825,0.0397189147770405,-0.448168069124222,-0.869995653629303,0.205554351210594,-0.307917594909668,-0.893704891204834,0.326309859752655,-0.448168069124222,-0.869995653629303,0.205554351210594,-0.45294001698494,-0.851018667221069,0.265729904174805,-0.302740722894669,-0.932464599609375,-0.197123765945435,-0.273841232061386,-0.94949072599411,-0.153225928544998,-0.306841999292374,-0.937256515026093,-0.165523812174797,-0.305586844682693,-0.936235249042511,-0.173436239361763,-0.273841232061386,-0.94949072599411,-0.153225928544998,-0.236372604966164,-0.95268839597702,-0.191082984209061,-0.305586844682693,-0.936235249042511,-0.173436239361763,-0.381386369466782,-0.924284517765045,0.0155690954998136,-0.290129452943802,-0.948603451251984,-0.126397117972374, +-0.381386369466782,-0.924284517765045,0.0155690954998136,-0.41581466794014,-0.903566777706146,0.103272467851639,-0.243744596838951,-0.967562437057495,-0.066417783498764,-0.457542717456818,-0.801081895828247,0.385904520750046,-0.260004281997681,-0.854942560195923,0.448855102062225,-0.489385366439819,-0.79105007648468,0.367071777582169,-0.489385366439819,-0.79105007648468,0.367071777582169,-0.307917594909668,-0.893704891204834,0.326309859752655,-0.45294001698494,-0.851018667221069,0.265729904174805,-0.393156290054321,-0.842051982879639,0.369291961193085,-0.457542717456818,-0.801081895828247,0.385904520750046,-0.675690829753876,-0.683897495269775,0.275183260440826,-0.865708470344543,-0.252748042345047,0.432049930095673,-0.657951772212982,-0.586952745914459,0.471789985895157,-0.838595509529114,-0.413104802370071,0.355108171701431,-0.675690829753876,-0.683897495269775,0.275183260440826,-0.898162066936493,-0.401253759860992,0.179722592234612,-0.734204649925232,-0.581247448921204,0.350848466157913,-0.954511165618896,-0.233776167035103,0.185085967183113,-0.838595509529114,-0.413104802370071,0.355108171701431,-0.734204649925232,-0.581247448921204,0.350848466157913,-0.865708470344543,-0.252748042345047,0.432049930095673,-0.867402493953705,-0.104538455605507,0.486502319574356,-0.786409258842468,-0.358934789896011,0.50271874666214,-0.867402493953705,-0.104538455605507,0.486502319574356,-0.791254043579102,-0.240793749690056,0.562081217765808,-0.786409258842468,-0.358934789896011,0.50271874666214,-0.399493336677551,-0.825402736663818,-0.39889258146286,-0.481907308101654,-0.829830050468445,-0.281331330537796,-0.55857127904892,-0.711980938911438,-0.425536215305328,-0.481907308101654,-0.829830050468445,-0.281331330537796,-0.329436868429184,-0.905864834785461,-0.266233146190643,-0.420619547367096,-0.886059522628784,-0.194878369569778,-0.396338909864426,-0.883841574192047,-0.248474210500717,-0.426425963640213,-0.86464524269104,-0.265611290931702,-0.369131058454514,-0.91382622718811,-0.16930365562439,-0.329436868429184,-0.905864834785461,-0.266233146190643, +-0.369131058454514,-0.91382622718811,-0.16930365562439,-0.420619547367096,-0.886059522628784,-0.194878369569778,-0.332454144954681,-0.921439409255981,-0.201056063175201,-0.350115388631821,-0.909442782402039,-0.224349930882454,-0.396338909864426,-0.883841574192047,-0.248474210500717,-0.302740722894669,-0.932464599609375,-0.197123765945435,-0.306841999292374,-0.937256515026093,-0.165523812174797,-0.350115388631821,-0.909442782402039,-0.224349930882454,-0.24944868683815,-0.967811107635498,-0.0334193296730518,-0.41581466794014,-0.903566777706146,0.103272467851639,-0.269016861915588,-0.961636066436768,-0.0537209399044514,-0.269016861915588,-0.961636066436768,-0.0537209399044514,-0.221153423190117,-0.97458803653717,0.0356268510222435,-0.201942950487137,-0.979227662086487,0.0182250682264566,-0.446166515350342,-0.881011605262756,0.157332837581635,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.221153423190117,-0.97458803653717,0.0356268510222435,-0.666393578052521,-0.744541347026825,0.0397189147770405,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.665935039520264,-0.74410879611969,-0.0532204620540142,-0.666393578052521,-0.744541347026825,0.0397189147770405,-0.45294001698494,-0.851018667221069,0.265729904174805,-0.448168069124222,-0.869995653629303,0.205554351210594,-0.302740722894669,-0.932464599609375,-0.197123765945435,-0.210616782307625,-0.965521097183228,-0.153001353144646,-0.273841232061386,-0.94949072599411,-0.153225928544998,-0.273841232061386,-0.94949072599411,-0.153225928544998,-0.210616782307625,-0.965521097183228,-0.153001353144646,-0.236372604966164,-0.95268839597702,-0.191082984209061,-0.236372604966164,-0.95268839597702,-0.191082984209061,-0.446523159742355,-0.864768028259277,-0.229767963290215,-0.305586844682693,-0.936235249042511,-0.173436239361763,-0.305586844682693,-0.936235249042511,-0.173436239361763,-0.381260424852371,-0.913516759872437,-0.141871511936188,-0.381386369466782,-0.924284517765045,0.0155690954998136,-0.526185095310211,-0.806602954864502,0.269296795129776,-0.41581466794014,-0.903566777706146,0.103272467851639, +-0.381386369466782,-0.924284517765045,0.0155690954998136,-0.489385366439819,-0.79105007648468,0.367071777582169,-0.74510133266449,-0.622704327106476,0.23887899518013,-0.457542717456818,-0.801081895828247,0.385904520750046,-0.720759809017181,-0.683916866779327,0.112973034381866,-0.489385366439819,-0.79105007648468,0.367071777582169,-0.45294001698494,-0.851018667221069,0.265729904174805,-0.789424061775208,-0.578787803649902,0.204485058784485,-0.675690829753876,-0.683897495269775,0.275183260440826,-0.457542717456818,-0.801081895828247,0.385904520750046,-0.865708470344543,-0.252748042345047,0.432049930095673,-0.838595509529114,-0.413104802370071,0.355108171701431,-0.941262543201447,-0.149858400225639,0.3026003241539,-0.893838226795197,-0.430153906345367,0.126572996377945,-0.898162066936493,-0.401253759860992,0.179722592234612,-0.675690829753876,-0.683897495269775,0.275183260440826,-0.898162066936493,-0.401253759860992,0.179722592234612,-0.954511165618896,-0.233776167035103,0.185085967183113,-0.734204649925232,-0.581247448921204,0.350848466157913,-0.954511165618896,-0.233776167035103,0.185085967183113,-0.941262543201447,-0.149858400225639,0.3026003241539,-0.838595509529114,-0.413104802370071,0.355108171701431,-0.867402493953705,-0.104538455605507,0.486502319574356,-0.865708470344543,-0.252748042345047,0.432049930095673,-0.911705017089844,-0.0600197091698647,0.406437486410141,-0.329436868429184,-0.905864834785461,-0.266233146190643,-0.481907308101654,-0.829830050468445,-0.281331330537796,-0.399493336677551,-0.825402736663818,-0.39889258146286,-0.369131058454514,-0.91382622718811,-0.16930365562439,-0.332454144954681,-0.921439409255981,-0.201056063175201,-0.396338909864426,-0.883841574192047,-0.248474210500717,-0.329436868429184,-0.905864834785461,-0.266233146190643,-0.332454144954681,-0.921439409255981,-0.201056063175201,-0.369131058454514,-0.91382622718811,-0.16930365562439,-0.332454144954681,-0.921439409255981,-0.201056063175201,-0.281144976615906,-0.928028523921967,-0.244377717375755,-0.350115388631821,-0.909442782402039,-0.224349930882454, +-0.281144976615906,-0.928028523921967,-0.244377717375755,-0.302740722894669,-0.932464599609375,-0.197123765945435,-0.350115388631821,-0.909442782402039,-0.224349930882454,-0.474250853061676,-0.87492972612381,0.0978978350758553,-0.269016861915588,-0.961636066436768,-0.0537209399044514,-0.41581466794014,-0.903566777706146,0.103272467851639,-0.269016861915588,-0.961636066436768,-0.0537209399044514,-0.474250853061676,-0.87492972612381,0.0978978350758553,-0.221153423190117,-0.97458803653717,0.0356268510222435,-0.446166515350342,-0.881011605262756,0.157332837581635,-0.5944664478302,-0.741310894489288,0.311557024717331,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.474250853061676,-0.87492972612381,0.0978978350758553,-0.446166515350342,-0.881011605262756,0.157332837581635,-0.221153423190117,-0.97458803653717,0.0356268510222435,-0.590021014213562,-0.792514383792877,0.154259547591209,-0.665935039520264,-0.74410879611969,-0.0532204620540142,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.666393578052521,-0.744541347026825,0.0397189147770405,-0.665935039520264,-0.74410879611969,-0.0532204620540142,-0.854125738143921,-0.490967035293579,-0.171523973345757,-0.666393578052521,-0.744541347026825,0.0397189147770405,-0.720759809017181,-0.683916866779327,0.112973034381866,-0.45294001698494,-0.851018667221069,0.265729904174805,-0.224494010210037,-0.946878790855408,-0.230266511440277,-0.210616782307625,-0.965521097183228,-0.153001353144646,-0.302740722894669,-0.932464599609375,-0.197123765945435,-0.236372604966164,-0.95268839597702,-0.191082984209061,-0.210616782307625,-0.965521097183228,-0.153001353144646,-0.224494010210037,-0.946878790855408,-0.230266511440277,-0.446523159742355,-0.864768028259277,-0.229767963290215,-0.236372604966164,-0.95268839597702,-0.191082984209061,-0.477480411529541,-0.822925448417664,-0.307905793190002,-0.505068123340607,-0.840313911437988,-0.196922674775124,-0.305586844682693,-0.936235249042511,-0.173436239361763,-0.446523159742355,-0.864768028259277,-0.229767963290215,-0.305586844682693,-0.936235249042511,-0.173436239361763, +-0.505068123340607,-0.840313911437988,-0.196922674775124,-0.381260424852371,-0.913516759872437,-0.141871511936188,-0.381386369466782,-0.924284517765045,0.0155690954998136,-0.381260424852371,-0.913516759872437,-0.141871511936188,-0.457156330347061,-0.887830078601837,-0.0525900386273861,-0.41581466794014,-0.903566777706146,0.103272467851639,-0.526185095310211,-0.806602954864502,0.269296795129776,-0.587207794189453,-0.795363903045654,0.15027691423893,-0.526185095310211,-0.806602954864502,0.269296795129776,-0.381386369466782,-0.924284517765045,0.0155690954998136,-0.457156330347061,-0.887830078601837,-0.0525900386273861,-0.489385366439819,-0.79105007648468,0.367071777582169,-0.881601214408875,-0.471263378858566,0.0262675862759352,-0.74510133266449,-0.622704327106476,0.23887899518013,-0.789424061775208,-0.578787803649902,0.204485058784485,-0.457542717456818,-0.801081895828247,0.385904520750046,-0.74510133266449,-0.622704327106476,0.23887899518013,-0.720759809017181,-0.683916866779327,0.112973034381866,-0.881601214408875,-0.471263378858566,0.0262675862759352,-0.489385366439819,-0.79105007648468,0.367071777582169,-0.789424061775208,-0.578787803649902,0.204485058784485,-0.893838226795197,-0.430153906345367,0.126572996377945,-0.675690829753876,-0.683897495269775,0.275183260440826,-0.911705017089844,-0.0600197091698647,0.406437486410141,-0.865708470344543,-0.252748042345047,0.432049930095673,-0.941262543201447,-0.149858400225639,0.3026003241539,-0.893838226795197,-0.430153906345367,0.126572996377945,-0.986365437507629,-0.158507809042931,0.0442544706165791,-0.898162066936493,-0.401253759860992,0.179722592234612,-0.954511165618896,-0.233776167035103,0.185085967183113,-0.898162066936493,-0.401253759860992,0.179722592234612,-0.986365437507629,-0.158507809042931,0.0442544706165791,-0.954511165618896,-0.233776167035103,0.185085967183113,-0.968394935131073,-0.0828399285674095,0.235263049602509,-0.941262543201447,-0.149858400225639,0.3026003241539,-0.911705017089844,-0.0600197091698647,0.406437486410141,-0.879416227340698,0.011167086660862,0.475922554731369, +-0.867402493953705,-0.104538455605507,0.486502319574356,-0.235333934426308,-0.895576775074005,-0.377571195363998,-0.332454144954681,-0.921439409255981,-0.201056063175201,-0.329436868429184,-0.905864834785461,-0.266233146190643,-0.332454144954681,-0.921439409255981,-0.201056063175201,-0.235333934426308,-0.895576775074005,-0.377571195363998,-0.281144976615906,-0.928028523921967,-0.244377717375755,-0.281144976615906,-0.928028523921967,-0.244377717375755,-0.224494010210037,-0.946878790855408,-0.230266511440277,-0.302740722894669,-0.932464599609375,-0.197123765945435,-0.474250853061676,-0.87492972612381,0.0978978350758553,-0.41581466794014,-0.903566777706146,0.103272467851639,-0.627340614795685,-0.755789458751678,0.187685638666153,-0.446166515350342,-0.881011605262756,0.157332837581635,-0.646678149700165,-0.666333556175232,0.371223390102386,-0.5944664478302,-0.741310894489288,0.311557024717331,-0.62812328338623,-0.689685523509979,0.36027055978775,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.5944664478302,-0.741310894489288,0.311557024717331,-0.474250853061676,-0.87492972612381,0.0978978350758553,-0.646678149700165,-0.666333556175232,0.371223390102386,-0.446166515350342,-0.881011605262756,0.157332837581635,-0.590021014213562,-0.792514383792877,0.154259547591209,-0.841477692127228,-0.53117048740387,0.0988593846559525,-0.665935039520264,-0.74410879611969,-0.0532204620540142,-0.590021014213562,-0.792514383792877,0.154259547591209,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.567115426063538,-0.757932543754578,0.322363466024399,-0.92425811290741,-0.370016098022461,-0.0939942300319672,-0.854125738143921,-0.490967035293579,-0.171523973345757,-0.665935039520264,-0.74410879611969,-0.0532204620540142,-0.854125738143921,-0.490967035293579,-0.171523973345757,-0.879244983196259,-0.447865813970566,-0.162309482693672,-0.666393578052521,-0.744541347026825,0.0397189147770405,-0.720759809017181,-0.683916866779327,0.112973034381866,-0.666393578052521,-0.744541347026825,0.0397189147770405,-0.924081921577454,-0.363398879766464,-0.118379786610603, +-0.294881999492645,-0.915363430976868,-0.274142742156982,-0.236372604966164,-0.95268839597702,-0.191082984209061,-0.224494010210037,-0.946878790855408,-0.230266511440277,-0.477480411529541,-0.822925448417664,-0.307905793190002,-0.236372604966164,-0.95268839597702,-0.191082984209061,-0.294881999492645,-0.915363430976868,-0.274142742156982,-0.477480411529541,-0.822925448417664,-0.307905793190002,-0.707745730876923,-0.662271022796631,-0.245953306555748,-0.446523159742355,-0.864768028259277,-0.229767963290215,-0.505068123340607,-0.840313911437988,-0.196922674775124,-0.446523159742355,-0.864768028259277,-0.229767963290215,-0.643061459064484,-0.738559782505035,-0.202487498521805,-0.565801501274109,-0.818346261978149,-0.100885406136513,-0.381260424852371,-0.913516759872437,-0.141871511936188,-0.505068123340607,-0.840313911437988,-0.196922674775124,-0.381260424852371,-0.913516759872437,-0.141871511936188,-0.565801501274109,-0.818346261978149,-0.100885406136513,-0.457156330347061,-0.887830078601837,-0.0525900386273861,-0.526185095310211,-0.806602954864502,0.269296795129776,-0.457156330347061,-0.887830078601837,-0.0525900386273861,-0.587207794189453,-0.795363903045654,0.15027691423893,-0.587207794189453,-0.795363903045654,0.15027691423893,-0.627340614795685,-0.755789458751678,0.187685638666153,-0.41581466794014,-0.903566777706146,0.103272467851639,-0.74510133266449,-0.622704327106476,0.23887899518013,-0.881601214408875,-0.471263378858566,0.0262675862759352,-0.946942090988159,-0.320709496736526,0.0211178492754698,-0.789424061775208,-0.578787803649902,0.204485058784485,-0.74510133266449,-0.622704327106476,0.23887899518013,-0.946942090988159,-0.320709496736526,0.0211178492754698,-0.924081921577454,-0.363398879766464,-0.118379786610603,-0.881601214408875,-0.471263378858566,0.0262675862759352,-0.720759809017181,-0.683916866779327,0.112973034381866,-0.946942090988159,-0.320709496736526,0.0211178492754698,-0.893838226795197,-0.430153906345367,0.126572996377945,-0.789424061775208,-0.578787803649902,0.204485058784485,-0.911705017089844,-0.0600197091698647,0.406437486410141, +-0.941262543201447,-0.149858400225639,0.3026003241539,-0.933711588382721,-0.0335097685456276,0.356454282999039,-0.946942090988159,-0.320709496736526,0.0211178492754698,-0.986365437507629,-0.158507809042931,0.0442544706165791,-0.893838226795197,-0.430153906345367,0.126572996377945,-0.954511165618896,-0.233776167035103,0.185085967183113,-0.986365437507629,-0.158507809042931,0.0442544706165791,-0.994191765785217,-0.0185283571481705,0.106015548110008,-0.968394935131073,-0.0828399285674095,0.235263049602509,-0.954511165618896,-0.233776167035103,0.185085967183113,-0.994191765785217,-0.0185283571481705,0.106015548110008,-0.941262543201447,-0.149858400225639,0.3026003241539,-0.968394935131073,-0.0828399285674095,0.235263049602509,-0.933711588382721,-0.0335097685456276,0.356454282999039,-0.911705017089844,-0.0600197091698647,0.406437486410141,-0.933711588382721,-0.0335097685456276,0.356454282999039,-0.879416227340698,0.011167086660862,0.475922554731369,-0.235333934426308,-0.895576775074005,-0.377571195363998,-0.199730783700943,-0.920633256435394,-0.335472702980042,-0.281144976615906,-0.928028523921967,-0.244377717375755,-0.281144976615906,-0.928028523921967,-0.244377717375755,-0.199730783700943,-0.920633256435394,-0.335472702980042,-0.224494010210037,-0.946878790855408,-0.230266511440277,-0.474250853061676,-0.87492972612381,0.0978978350758553,-0.627340614795685,-0.755789458751678,0.187685638666153,-0.744615077972412,-0.534196794033051,0.400227606296539,-0.76542341709137,-0.284352213144302,0.577295958995819,-0.5944664478302,-0.741310894489288,0.311557024717331,-0.646678149700165,-0.666333556175232,0.371223390102386,-0.567115426063538,-0.757932543754578,0.322363466024399,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.62812328338623,-0.689685523509979,0.36027055978775,-0.62812328338623,-0.689685523509979,0.36027055978775,-0.5944664478302,-0.741310894489288,0.311557024717331,-0.742333948612213,-0.403676599264145,0.534775972366333,-0.744615077972412,-0.534196794033051,0.400227606296539,-0.646678149700165,-0.666333556175232,0.371223390102386, +-0.474250853061676,-0.87492972612381,0.0978978350758553,-0.841477692127228,-0.53117048740387,0.0988593846559525,-0.590021014213562,-0.792514383792877,0.154259547591209,-0.811598181724548,-0.426110416650772,0.399672538042068,-0.92425811290741,-0.370016098022461,-0.0939942300319672,-0.665935039520264,-0.74410879611969,-0.0532204620540142,-0.841477692127228,-0.53117048740387,0.0988593846559525,-0.590021014213562,-0.792514383792877,0.154259547591209,-0.567115426063538,-0.757932543754578,0.322363466024399,-0.811598181724548,-0.426110416650772,0.399672538042068,-0.92425811290741,-0.370016098022461,-0.0939942300319672,-0.957691669464111,-0.157811969518662,-0.240669950842857,-0.854125738143921,-0.490967035293579,-0.171523973345757,-0.854125738143921,-0.490967035293579,-0.171523973345757,-0.957691669464111,-0.157811969518662,-0.240669950842857,-0.879244983196259,-0.447865813970566,-0.162309482693672,-0.879244983196259,-0.447865813970566,-0.162309482693672,-0.924081921577454,-0.363398879766464,-0.118379786610603,-0.666393578052521,-0.744541347026825,0.0397189147770405,-0.224494010210037,-0.946878790855408,-0.230266511440277,-0.199730783700943,-0.920633256435394,-0.335472702980042,-0.294881999492645,-0.915363430976868,-0.274142742156982,-0.477480411529541,-0.822925448417664,-0.307905793190002,-0.294881999492645,-0.915363430976868,-0.274142742156982,-0.536337435245514,-0.78458559513092,-0.311074823141098,-0.707745730876923,-0.662271022796631,-0.245953306555748,-0.477480411529541,-0.822925448417664,-0.307905793190002,-0.76592892408371,-0.554009735584259,-0.326229900121689,-0.643061459064484,-0.738559782505035,-0.202487498521805,-0.446523159742355,-0.864768028259277,-0.229767963290215,-0.707745730876923,-0.662271022796631,-0.245953306555748,-0.643061459064484,-0.738559782505035,-0.202487498521805,-0.756761133670807,-0.646875381469727,-0.0941524878144264,-0.505068123340607,-0.840313911437988,-0.196922674775124,-0.565801501274109,-0.818346261978149,-0.100885406136513,-0.505068123340607,-0.840313911437988,-0.196922674775124,-0.756761133670807,-0.646875381469727,-0.0941524878144264, +-0.690796732902527,-0.722980976104736,0.00990983285009861,-0.457156330347061,-0.887830078601837,-0.0525900386273861,-0.565801501274109,-0.818346261978149,-0.100885406136513,-0.690796732902527,-0.722980976104736,0.00990983285009861,-0.587207794189453,-0.795363903045654,0.15027691423893,-0.457156330347061,-0.887830078601837,-0.0525900386273861,-0.587207794189453,-0.795363903045654,0.15027691423893,-0.810676872730255,-0.475563675165176,0.341528922319412,-0.627340614795685,-0.755789458751678,0.187685638666153,-0.881601214408875,-0.471263378858566,0.0262675862759352,-0.982637822628021,-0.128757625818253,-0.133582338690758,-0.946942090988159,-0.320709496736526,0.0211178492754698,-0.954736769199371,-0.206554159522057,-0.214039817452431,-0.881601214408875,-0.471263378858566,0.0262675862759352,-0.924081921577454,-0.363398879766464,-0.118379786610603,-0.986365437507629,-0.158507809042931,0.0442544706165791,-0.946942090988159,-0.320709496736526,0.0211178492754698,-0.993833065032959,-0.0781638771295547,-0.0786523520946503,-0.999920964241028,-0.000489404890686274,-0.0125618716701865,-0.994191765785217,-0.0185283571481705,0.106015548110008,-0.986365437507629,-0.158507809042931,0.0442544706165791,-0.968394935131073,-0.0828399285674095,0.235263049602509,-0.994191765785217,-0.0185283571481705,0.106015548110008,-0.971037864685059,0.0297016035765409,0.237072050571442,-0.933711588382721,-0.0335097685456276,0.356454282999039,-0.968394935131073,-0.0828399285674095,0.235263049602509,-0.971037864685059,0.0297016035765409,0.237072050571442,-0.933711588382721,-0.0335097685456276,0.356454282999039,-0.929628908634186,0.0584968887269497,0.363824188709259,-0.879416227340698,0.011167086660862,0.475922554731369,-0.744615077972412,-0.534196794033051,0.400227606296539,-0.627340614795685,-0.755789458751678,0.187685638666153,-0.810676872730255,-0.475563675165176,0.341528922319412,-0.76542341709137,-0.284352213144302,0.577295958995819,-0.742333948612213,-0.403676599264145,0.534775972366333,-0.5944664478302,-0.741310894489288,0.311557024717331,-0.744615077972412,-0.534196794033051,0.400227606296539, +-0.76542341709137,-0.284352213144302,0.577295958995819,-0.646678149700165,-0.666333556175232,0.371223390102386,-0.746097385883331,-0.323440611362457,0.582000613212585,-0.567115426063538,-0.757932543754578,0.322363466024399,-0.62812328338623,-0.689685523509979,0.36027055978775,-0.76359897851944,-0.174408867955208,0.62168961763382,-0.62812328338623,-0.689685523509979,0.36027055978775,-0.742333948612213,-0.403676599264145,0.534775972366333,-0.965941548347473,-0.126830339431763,0.225545793771744,-0.841477692127228,-0.53117048740387,0.0988593846559525,-0.811598181724548,-0.426110416650772,0.399672538042068,-0.92425811290741,-0.370016098022461,-0.0939942300319672,-0.841477692127228,-0.53117048740387,0.0988593846559525,-0.965941548347473,-0.126830339431763,0.225545793771744,-0.746097385883331,-0.323440611362457,0.582000613212585,-0.811598181724548,-0.426110416650772,0.399672538042068,-0.567115426063538,-0.757932543754578,0.322363466024399,-0.998408138751984,-0.0561364516615868,0.00545705668628216,-0.957691669464111,-0.157811969518662,-0.240669950842857,-0.92425811290741,-0.370016098022461,-0.0939942300319672,-0.879244983196259,-0.447865813970566,-0.162309482693672,-0.957691669464111,-0.157811969518662,-0.240669950842857,-0.924081921577454,-0.363398879766464,-0.118379786610603,-0.76592892408371,-0.554009735584259,-0.326229900121689,-0.477480411529541,-0.822925448417664,-0.307905793190002,-0.536337435245514,-0.78458559513092,-0.311074823141098,-0.707745730876923,-0.662271022796631,-0.245953306555748,-0.76592892408371,-0.554009735584259,-0.326229900121689,-0.911598145961761,-0.368657529354095,-0.181879952549934,-0.853631854057312,-0.506421148777008,-0.121860787272453,-0.643061459064484,-0.738559782505035,-0.202487498521805,-0.707745730876923,-0.662271022796631,-0.245953306555748,-0.643061459064484,-0.738559782505035,-0.202487498521805,-0.853631854057312,-0.506421148777008,-0.121860787272453,-0.756761133670807,-0.646875381469727,-0.0941524878144264,-0.756761133670807,-0.646875381469727,-0.0941524878144264,-0.690796732902527,-0.722980976104736,0.00990983285009861, +-0.565801501274109,-0.818346261978149,-0.100885406136513,-0.877813875675201,-0.458913207054138,0.13726282119751,-0.587207794189453,-0.795363903045654,0.15027691423893,-0.690796732902527,-0.722980976104736,0.00990983285009861,-0.810676872730255,-0.475563675165176,0.341528922319412,-0.587207794189453,-0.795363903045654,0.15027691423893,-0.877813875675201,-0.458913207054138,0.13726282119751,-0.954736769199371,-0.206554159522057,-0.214039817452431,-0.982637822628021,-0.128757625818253,-0.133582338690758,-0.881601214408875,-0.471263378858566,0.0262675862759352,-0.993833065032959,-0.0781638771295547,-0.0786523520946503,-0.946942090988159,-0.320709496736526,0.0211178492754698,-0.982637822628021,-0.128757625818253,-0.133582338690758,-0.954736769199371,-0.206554159522057,-0.214039817452431,-0.924081921577454,-0.363398879766464,-0.118379786610603,-0.965742409229279,-0.140724986791611,-0.218032106757164,-0.999920964241028,-0.000489404890686274,-0.0125618716701865,-0.986365437507629,-0.158507809042931,0.0442544706165791,-0.993833065032959,-0.0781638771295547,-0.0786523520946503,-0.999920964241028,-0.000489404890686274,-0.0125618716701865,-0.995711266994476,0.0878519043326378,0.0290000233799219,-0.994191765785217,-0.0185283571481705,0.106015548110008,-0.980184853076935,0.119219712913036,0.158190444111824,-0.971037864685059,0.0297016035765409,0.237072050571442,-0.994191765785217,-0.0185283571481705,0.106015548110008,-0.933711588382721,-0.0335097685456276,0.356454282999039,-0.971037864685059,0.0297016035765409,0.237072050571442,-0.929628908634186,0.0584968887269497,0.363824188709259,-0.929628908634186,0.0584968887269497,0.363824188709259,-0.857041656970978,0.0945139825344086,0.506504237651825,-0.879416227340698,0.011167086660862,0.475922554731369,-0.744615077972412,-0.534196794033051,0.400227606296539,-0.810676872730255,-0.475563675165176,0.341528922319412,-0.856876373291016,-0.149220556020737,0.493453085422516,-0.76542341709137,-0.284352213144302,0.577295958995819,-0.765871167182922,-0.0287587195634842,0.642350435256958,-0.742333948612213,-0.403676599264145,0.534775972366333, +-0.856876373291016,-0.149220556020737,0.493453085422516,-0.76542341709137,-0.284352213144302,0.577295958995819,-0.744615077972412,-0.534196794033051,0.400227606296539,-0.746097385883331,-0.323440611362457,0.582000613212585,-0.62812328338623,-0.689685523509979,0.36027055978775,-0.76359897851944,-0.174408867955208,0.62168961763382,-0.742333948612213,-0.403676599264145,0.534775972366333,-0.765871167182922,-0.0287587195634842,0.642350435256958,-0.76359897851944,-0.174408867955208,0.62168961763382,-0.965941548347473,-0.126830339431763,0.225545793771744,-0.811598181724548,-0.426110416650772,0.399672538042068,-0.852617025375366,0.0103230234235525,0.522434294223785,-0.965941548347473,-0.126830339431763,0.225545793771744,-0.998408138751984,-0.0561364516615868,0.00545705668628216,-0.92425811290741,-0.370016098022461,-0.0939942300319672,-0.746097385883331,-0.323440611362457,0.582000613212585,-0.852617025375366,0.0103230234235525,0.522434294223785,-0.811598181724548,-0.426110416650772,0.399672538042068,-0.988615870475769,0.0553314574062824,-0.139917880296707,-0.957691669464111,-0.157811969518662,-0.240669950842857,-0.998408138751984,-0.0561364516615868,0.00545705668628216,-0.957691669464111,-0.157811969518662,-0.240669950842857,-0.965715646743774,-0.0706975013017654,-0.249789983034134,-0.924081921577454,-0.363398879766464,-0.118379786610603,-0.916669130325317,-0.268224954605103,-0.296265035867691,-0.911598145961761,-0.368657529354095,-0.181879952549934,-0.76592892408371,-0.554009735584259,-0.326229900121689,-0.911598145961761,-0.368657529354095,-0.181879952549934,-0.853631854057312,-0.506421148777008,-0.121860787272453,-0.707745730876923,-0.662271022796631,-0.245953306555748,-0.853631854057312,-0.506421148777008,-0.121860787272453,-0.950708985328674,-0.309564679861069,0.0179443620145321,-0.756761133670807,-0.646875381469727,-0.0941524878144264,-0.756761133670807,-0.646875381469727,-0.0941524878144264,-0.877813875675201,-0.458913207054138,0.13726282119751,-0.690796732902527,-0.722980976104736,0.00990983285009861,-0.810676872730255,-0.475563675165176,0.341528922319412, +-0.877813875675201,-0.458913207054138,0.13726282119751,-0.938837587833405,-0.146886497735977,0.311461448669434,-0.954736769199371,-0.206554159522057,-0.214039817452431,-0.967163801193237,-0.0144888637587428,-0.253740280866623,-0.982637822628021,-0.128757625818253,-0.133582338690758,-0.982637822628021,-0.128757625818253,-0.133582338690758,-0.992233693599701,0.0444871559739113,-0.116159737110138,-0.993833065032959,-0.0781638771295547,-0.0786523520946503,-0.965742409229279,-0.140724986791611,-0.218032106757164,-0.924081921577454,-0.363398879766464,-0.118379786610603,-0.965715646743774,-0.0706975013017654,-0.249789983034134,-0.954736769199371,-0.206554159522057,-0.214039817452431,-0.965742409229279,-0.140724986791611,-0.218032106757164,-0.967163801193237,-0.0144888637587428,-0.253740280866623,-0.999920964241028,-0.000489404890686274,-0.0125618716701865,-0.993833065032959,-0.0781638771295547,-0.0786523520946503,-0.992233693599701,0.0444871559739113,-0.116159737110138,-0.995711266994476,0.0878519043326378,0.0290000233799219,-0.999920964241028,-0.000489404890686274,-0.0125618716701865,-0.992233693599701,0.0444871559739113,-0.116159737110138,-0.980184853076935,0.119219712913036,0.158190444111824,-0.994191765785217,-0.0185283571481705,0.106015548110008,-0.995711266994476,0.0878519043326378,0.0290000233799219,-0.971037864685059,0.0297016035765409,0.237072050571442,-0.980184853076935,0.119219712913036,0.158190444111824,-0.95205545425415,0.122731566429138,0.28022712469101,-0.929628908634186,0.0584968887269497,0.363824188709259,-0.971037864685059,0.0297016035765409,0.237072050571442,-0.95205545425415,0.122731566429138,0.28022712469101,-0.929628908634186,0.0584968887269497,0.363824188709259,-0.914390087127686,0.149247333407402,0.3763188123703,-0.857041656970978,0.0945139825344086,0.506504237651825,-0.856876373291016,-0.149220556020737,0.493453085422516,-0.810676872730255,-0.475563675165176,0.341528922319412,-0.938837587833405,-0.146886497735977,0.311461448669434,-0.765871167182922,-0.0287587195634842,0.642350435256958,-0.76542341709137,-0.284352213144302,0.577295958995819, +-0.797222077846527,0.0843545943498611,0.597763419151306,-0.856876373291016,-0.149220556020737,0.493453085422516,-0.797222077846527,0.0843545943498611,0.597763419151306,-0.76542341709137,-0.284352213144302,0.577295958995819,-0.746097385883331,-0.323440611362457,0.582000613212585,-0.76359897851944,-0.174408867955208,0.62168961763382,-0.7486732006073,0.0495447143912315,0.661085069179535,-0.73779171705246,0.0669326931238174,0.671701729297638,-0.76359897851944,-0.174408867955208,0.62168961763382,-0.765871167182922,-0.0287587195634842,0.642350435256958,-0.852617025375366,0.0103230234235525,0.522434294223785,-0.934860646724701,0.156113460659981,0.318847984075546,-0.965941548347473,-0.126830339431763,0.225545793771744,-0.965941548347473,-0.126830339431763,0.225545793771744,-0.934860646724701,0.156113460659981,0.318847984075546,-0.998408138751984,-0.0561364516615868,0.00545705668628216,-0.852617025375366,0.0103230234235525,0.522434294223785,-0.746097385883331,-0.323440611362457,0.582000613212585,-0.7486732006073,0.0495447143912315,0.661085069179535,-0.988615870475769,0.0553314574062824,-0.139917880296707,-0.954235076904297,-0.0250846520066261,-0.298003345727921,-0.957691669464111,-0.157811969518662,-0.240669950842857,-0.991992771625519,0.1145164296031,0.0532543249428272,-0.988615870475769,0.0553314574062824,-0.139917880296707,-0.998408138751984,-0.0561364516615868,0.00545705668628216,-0.946377336978912,0.00969440583139658,-0.322917640209198,-0.965715646743774,-0.0706975013017654,-0.249789983034134,-0.957691669464111,-0.157811969518662,-0.240669950842857,-0.916669130325317,-0.268224954605103,-0.296265035867691,-0.979825496673584,-0.136031597852707,-0.146414890885353,-0.911598145961761,-0.368657529354095,-0.181879952549934,-0.911598145961761,-0.368657529354095,-0.181879952549934,-0.972075998783112,-0.231835246086121,-0.036339595913887,-0.853631854057312,-0.506421148777008,-0.121860787272453,-0.972075998783112,-0.231835246086121,-0.036339595913887,-0.950708985328674,-0.309564679861069,0.0179443620145321,-0.853631854057312,-0.506421148777008,-0.121860787272453, +-0.877813875675201,-0.458913207054138,0.13726282119751,-0.756761133670807,-0.646875381469727,-0.0941524878144264,-0.950708985328674,-0.309564679861069,0.0179443620145321,-0.981078803539276,-0.106449268758297,0.161718413233757,-0.938837587833405,-0.146886497735977,0.311461448669434,-0.877813875675201,-0.458913207054138,0.13726282119751,-0.992233693599701,0.0444871559739113,-0.116159737110138,-0.982637822628021,-0.128757625818253,-0.133582338690758,-0.967163801193237,-0.0144888637587428,-0.253740280866623,-0.965715646743774,-0.0706975013017654,-0.249789983034134,-0.967163801193237,-0.0144888637587428,-0.253740280866623,-0.965742409229279,-0.140724986791611,-0.218032106757164,-0.995711266994476,0.0878519043326378,0.0290000233799219,-0.992233693599701,0.0444871559739113,-0.116159737110138,-0.977883517742157,0.179097816348076,-0.108017221093178,-0.980184853076935,0.119219712913036,0.158190444111824,-0.995711266994476,0.0878519043326378,0.0290000233799219,-0.976466298103333,0.210258275270462,0.048009529709816,-0.980184853076935,0.119219712913036,0.158190444111824,-0.919524848461151,0.299338340759277,0.25469708442688,-0.95205545425415,0.122731566429138,0.28022712469101,-0.929628908634186,0.0584968887269497,0.363824188709259,-0.95205545425415,0.122731566429138,0.28022712469101,-0.914390087127686,0.149247333407402,0.3763188123703,-0.860896348953247,0.182480692863464,0.474929600954056,-0.857041656970978,0.0945139825344086,0.506504237651825,-0.914390087127686,0.149247333407402,0.3763188123703,-0.938837587833405,-0.146886497735977,0.311461448669434,-0.900924146175385,0.110740505158901,0.419609427452087,-0.856876373291016,-0.149220556020737,0.493453085422516,-0.797222077846527,0.0843545943498611,0.597763419151306,-0.73779171705246,0.0669326931238174,0.671701729297638,-0.765871167182922,-0.0287587195634842,0.642350435256958,-0.856876373291016,-0.149220556020737,0.493453085422516,-0.900924146175385,0.110740505158901,0.419609427452087,-0.797222077846527,0.0843545943498611,0.597763419151306,-0.73779171705246,0.0669326931238174,0.671701729297638, +-0.7486732006073,0.0495447143912315,0.661085069179535,-0.76359897851944,-0.174408867955208,0.62168961763382,-0.783663213253021,0.220242440700531,0.580831408500671,-0.934860646724701,0.156113460659981,0.318847984075546,-0.852617025375366,0.0103230234235525,0.522434294223785,-0.998408138751984,-0.0561364516615868,0.00545705668628216,-0.934860646724701,0.156113460659981,0.318847984075546,-0.991992771625519,0.1145164296031,0.0532543249428272,-0.783663213253021,0.220242440700531,0.580831408500671,-0.852617025375366,0.0103230234235525,0.522434294223785,-0.7486732006073,0.0495447143912315,0.661085069179535,-0.954235076904297,-0.0250846520066261,-0.298003345727921,-0.988615870475769,0.0553314574062824,-0.139917880296707,-0.943975150585175,0.0733836218714714,-0.321753978729248,-0.954235076904297,-0.0250846520066261,-0.298003345727921,-0.946377336978912,0.00969440583139658,-0.322917640209198,-0.957691669464111,-0.157811969518662,-0.240669950842857,-0.988615870475769,0.0553314574062824,-0.139917880296707,-0.991992771625519,0.1145164296031,0.0532543249428272,-0.947458982467651,0.278553396463394,0.157255992293358,-0.965715646743774,-0.0706975013017654,-0.249789983034134,-0.946377336978912,0.00969440583139658,-0.322917640209198,-0.967163801193237,-0.0144888637587428,-0.253740280866623,-0.979825496673584,-0.136031597852707,-0.146414890885353,-0.972075998783112,-0.231835246086121,-0.036339595913887,-0.911598145961761,-0.368657529354095,-0.181879952549934,-0.998384952545166,-0.0410215109586716,0.0393010899424553,-0.950708985328674,-0.309564679861069,0.0179443620145321,-0.972075998783112,-0.231835246086121,-0.036339595913887,-0.877813875675201,-0.458913207054138,0.13726282119751,-0.950708985328674,-0.309564679861069,0.0179443620145321,-0.981078803539276,-0.106449268758297,0.161718413233757,-0.981078803539276,-0.106449268758297,0.161718413233757,-0.958231508731842,0.113330416381359,0.262580364942551,-0.938837587833405,-0.146886497735977,0.311461448669434,-0.96972393989563,0.078465573489666,-0.231254130601883,-0.992233693599701,0.0444871559739113,-0.116159737110138, +-0.967163801193237,-0.0144888637587428,-0.253740280866623,-0.96972393989563,0.078465573489666,-0.231254130601883,-0.977883517742157,0.179097816348076,-0.108017221093178,-0.992233693599701,0.0444871559739113,-0.116159737110138,-0.995711266994476,0.0878519043326378,0.0290000233799219,-0.977883517742157,0.179097816348076,-0.108017221093178,-0.976466298103333,0.210258275270462,0.048009529709816,-0.946133375167847,0.304288685321808,0.110633820295334,-0.980184853076935,0.119219712913036,0.158190444111824,-0.976466298103333,0.210258275270462,0.048009529709816,-0.946133375167847,0.304288685321808,0.110633820295334,-0.919524848461151,0.299338340759277,0.25469708442688,-0.980184853076935,0.119219712913036,0.158190444111824,-0.919524848461151,0.299338340759277,0.25469708442688,-0.914390087127686,0.149247333407402,0.3763188123703,-0.95205545425415,0.122731566429138,0.28022712469101,-0.851206243038177,0.370677620172501,0.371545344591141,-0.860896348953247,0.182480692863464,0.474929600954056,-0.914390087127686,0.149247333407402,0.3763188123703,-0.938837587833405,-0.146886497735977,0.311461448669434,-0.958231508731842,0.113330416381359,0.262580364942551,-0.900924146175385,0.110740505158901,0.419609427452087,-0.797222077846527,0.0843545943498611,0.597763419151306,-0.723052084445953,0.174380093812943,0.66842132806778,-0.73779171705246,0.0669326931238174,0.671701729297638,-0.900924146175385,0.110740505158901,0.419609427452087,-0.846858143806458,0.225539535284042,0.481625407934189,-0.797222077846527,0.0843545943498611,0.597763419151306,-0.73779171705246,0.0669326931238174,0.671701729297638,-0.714004874229431,0.164396211504936,0.680566489696503,-0.7486732006073,0.0495447143912315,0.661085069179535,-0.805758416652679,0.376645177602768,0.457046687602997,-0.934860646724701,0.156113460659981,0.318847984075546,-0.783663213253021,0.220242440700531,0.580831408500671,-0.947458982467651,0.278553396463394,0.157255992293358,-0.991992771625519,0.1145164296031,0.0532543249428272,-0.934860646724701,0.156113460659981,0.318847984075546,-0.714004874229431,0.164396211504936,0.680566489696503, +-0.783663213253021,0.220242440700531,0.580831408500671,-0.7486732006073,0.0495447143912315,0.661085069179535,-0.968706429004669,0.213432654738426,-0.126705378293991,-0.943975150585175,0.0733836218714714,-0.321753978729248,-0.988615870475769,0.0553314574062824,-0.139917880296707,-0.946377336978912,0.00969440583139658,-0.322917640209198,-0.954235076904297,-0.0250846520066261,-0.298003345727921,-0.943975150585175,0.0733836218714714,-0.321753978729248,-0.947458982467651,0.278553396463394,0.157255992293358,-0.968706429004669,0.213432654738426,-0.126705378293991,-0.988615870475769,0.0553314574062824,-0.139917880296707,-0.96972393989563,0.078465573489666,-0.231254130601883,-0.967163801193237,-0.0144888637587428,-0.253740280866623,-0.946377336978912,0.00969440583139658,-0.322917640209198,-0.979825496673584,-0.136031597852707,-0.146414890885353,-0.998384952545166,-0.0410215109586716,0.0393010899424553,-0.972075998783112,-0.231835246086121,-0.036339595913887,-0.998384952545166,-0.0410215109586716,0.0393010899424553,-0.981078803539276,-0.106449268758297,0.161718413233757,-0.950708985328674,-0.309564679861069,0.0179443620145321,-0.986731767654419,0.145620867609978,0.0717972069978714,-0.958231508731842,0.113330416381359,0.262580364942551,-0.981078803539276,-0.106449268758297,0.161718413233757,-0.96972393989563,0.078465573489666,-0.231254130601883,-0.95909970998764,0.163940116763115,-0.230762332677841,-0.977883517742157,0.179097816348076,-0.108017221093178,-0.926314771175385,0.368141919374466,-0.0800770297646523,-0.976466298103333,0.210258275270462,0.048009529709816,-0.977883517742157,0.179097816348076,-0.108017221093178,-0.946133375167847,0.304288685321808,0.110633820295334,-0.976466298103333,0.210258275270462,0.048009529709816,-0.91326105594635,0.406164050102234,0.0313821993768215,-0.946133375167847,0.304288685321808,0.110633820295334,-0.787798464298248,0.607570767402649,0.101149149239063,-0.919524848461151,0.299338340759277,0.25469708442688,-0.919524848461151,0.299338340759277,0.25469708442688,-0.851206243038177,0.370677620172501,0.371545344591141, +-0.914390087127686,0.149247333407402,0.3763188123703,-0.851206243038177,0.370677620172501,0.371545344591141,-0.799638450145721,0.407566636800766,0.440984815359116,-0.860896348953247,0.182480692863464,0.474929600954056,-0.914718985557556,0.23660346865654,0.327578693628311,-0.900924146175385,0.110740505158901,0.419609427452087,-0.958231508731842,0.113330416381359,0.262580364942551,-0.759675920009613,0.216420128941536,0.613232970237732,-0.723052084445953,0.174380093812943,0.66842132806778,-0.797222077846527,0.0843545943498611,0.597763419151306,-0.723052084445953,0.174380093812943,0.66842132806778,-0.714004874229431,0.164396211504936,0.680566489696503,-0.73779171705246,0.0669326931238174,0.671701729297638,-0.914718985557556,0.23660346865654,0.327578693628311,-0.846858143806458,0.225539535284042,0.481625407934189,-0.900924146175385,0.110740505158901,0.419609427452087,-0.759675920009613,0.216420128941536,0.613232970237732,-0.797222077846527,0.0843545943498611,0.597763419151306,-0.846858143806458,0.225539535284042,0.481625407934189,-0.947458982467651,0.278553396463394,0.157255992293358,-0.934860646724701,0.156113460659981,0.318847984075546,-0.805758416652679,0.376645177602768,0.457046687602997,-0.805758416652679,0.376645177602768,0.457046687602997,-0.783663213253021,0.220242440700531,0.580831408500671,-0.677552700042725,0.412069857120514,0.609196722507477,-0.707985043525696,0.262383311986923,0.65567672252655,-0.783663213253021,0.220242440700531,0.580831408500671,-0.714004874229431,0.164396211504936,0.680566489696503,-0.968706429004669,0.213432654738426,-0.126705378293991,-0.915789484977722,0.215053156018257,-0.339236497879028,-0.943975150585175,0.0733836218714714,-0.321753978729248,-0.936290085315704,0.114670880138874,-0.33198094367981,-0.946377336978912,0.00969440583139658,-0.322917640209198,-0.943975150585175,0.0733836218714714,-0.321753978729248,-0.947458982467651,0.278553396463394,0.157255992293358,-0.906528115272522,0.417439550161362,0.062856025993824,-0.968706429004669,0.213432654738426,-0.126705378293991,-0.96972393989563,0.078465573489666,-0.231254130601883, +-0.946377336978912,0.00969440583139658,-0.322917640209198,-0.936290085315704,0.114670880138874,-0.33198094367981,-0.998384952545166,-0.0410215109586716,0.0393010899424553,-0.979825496673584,-0.136031597852707,-0.146414890885353,-0.990936279296875,0.0366122238337994,-0.129246979951859,-0.998384952545166,-0.0410215109586716,0.0393010899424553,-0.986731767654419,0.145620867609978,0.0717972069978714,-0.981078803539276,-0.106449268758297,0.161718413233757,-0.986731767654419,0.145620867609978,0.0717972069978714,-0.941603720188141,0.253685981035233,0.221417605876923,-0.958231508731842,0.113330416381359,0.262580364942551,-0.95909970998764,0.163940116763115,-0.230762332677841,-0.96972393989563,0.078465573489666,-0.231254130601883,-0.936290085315704,0.114670880138874,-0.33198094367981,-0.911105155944824,0.309367835521698,-0.272357881069183,-0.977883517742157,0.179097816348076,-0.108017221093178,-0.95909970998764,0.163940116763115,-0.230762332677841,-0.926314771175385,0.368141919374466,-0.0800770297646523,-0.91326105594635,0.406164050102234,0.0313821993768215,-0.976466298103333,0.210258275270462,0.048009529709816,-0.883057773113251,0.414925366640091,-0.219193577766418,-0.926314771175385,0.368141919374466,-0.0800770297646523,-0.977883517742157,0.179097816348076,-0.108017221093178,-0.946133375167847,0.304288685321808,0.110633820295334,-0.91326105594635,0.406164050102234,0.0313821993768215,-0.83545708656311,0.54952609539032,0.0056879366748035,-0.83545708656311,0.54952609539032,0.0056879366748035,-0.787798464298248,0.607570767402649,0.101149149239063,-0.946133375167847,0.304288685321808,0.110633820295334,-0.787798464298248,0.607570767402649,0.101149149239063,-0.713986158370972,0.677233934402466,0.177701622247696,-0.919524848461151,0.299338340759277,0.25469708442688,-0.851206243038177,0.370677620172501,0.371545344591141,-0.919524848461151,0.299338340759277,0.25469708442688,-0.713986158370972,0.677233934402466,0.177701622247696,-0.851206243038177,0.370677620172501,0.371545344591141,-0.610756099224091,0.751059770584106,0.250770926475525, +-0.799638450145721,0.407566636800766,0.440984815359116,-0.958231508731842,0.113330416381359,0.262580364942551,-0.941603720188141,0.253685981035233,0.221417605876923,-0.914718985557556,0.23660346865654,0.327578693628311,-0.759675920009613,0.216420128941536,0.613232970237732,-0.69251275062561,0.303025364875793,0.654676675796509,-0.723052084445953,0.174380093812943,0.66842132806778,-0.69251275062561,0.303025364875793,0.654676675796509,-0.714004874229431,0.164396211504936,0.680566489696503,-0.723052084445953,0.174380093812943,0.66842132806778,-0.857322812080383,0.3732570707798,0.354509025812149,-0.846858143806458,0.225539535284042,0.481625407934189,-0.914718985557556,0.23660346865654,0.327578693628311,-0.754018425941467,0.352115660905838,0.55450040102005,-0.759675920009613,0.216420128941536,0.613232970237732,-0.846858143806458,0.225539535284042,0.481625407934189,-0.805758416652679,0.376645177602768,0.457046687602997,-0.787349104881287,0.502715170383453,0.356873512268066,-0.947458982467651,0.278553396463394,0.157255992293358,-0.707985043525696,0.262383311986923,0.65567672252655,-0.677552700042725,0.412069857120514,0.609196722507477,-0.783663213253021,0.220242440700531,0.580831408500671,-0.805758416652679,0.376645177602768,0.457046687602997,-0.677552700042725,0.412069857120514,0.609196722507477,-0.66203361749649,0.533566415309906,0.526325166225433,-0.707985043525696,0.262383311986923,0.65567672252655,-0.714004874229431,0.164396211504936,0.680566489696503,-0.69251275062561,0.303025364875793,0.654676675796509,-0.968706429004669,0.213432654738426,-0.126705378293991,-0.897819221019745,0.392978429794312,-0.198717147111893,-0.915789484977722,0.215053156018257,-0.339236497879028,-0.943975150585175,0.0733836218714714,-0.321753978729248,-0.915789484977722,0.215053156018257,-0.339236497879028,-0.912129640579224,0.167275711894035,-0.374216854572296,-0.936290085315704,0.114670880138874,-0.33198094367981,-0.943975150585175,0.0733836218714714,-0.321753978729248,-0.912129640579224,0.167275711894035,-0.374216854572296,-0.787349104881287,0.502715170383453,0.356873512268066, +-0.906528115272522,0.417439550161362,0.062856025993824,-0.947458982467651,0.278553396463394,0.157255992293358,-0.897819221019745,0.392978429794312,-0.198717147111893,-0.968706429004669,0.213432654738426,-0.126705378293991,-0.906528115272522,0.417439550161362,0.062856025993824,-0.986731767654419,0.145620867609978,0.0717972069978714,-0.998384952545166,-0.0410215109586716,0.0393010899424553,-0.990936279296875,0.0366122238337994,-0.129246979951859,-0.941603720188141,0.253685981035233,0.221417605876923,-0.986731767654419,0.145620867609978,0.0717972069978714,-0.952255070209503,0.283539950847626,0.113204583525658,-0.95909970998764,0.163940116763115,-0.230762332677841,-0.936290085315704,0.114670880138874,-0.33198094367981,-0.920766294002533,0.221691712737083,-0.321001678705215,-0.911105155944824,0.309367835521698,-0.272357881069183,-0.883057773113251,0.414925366640091,-0.219193577766418,-0.977883517742157,0.179097816348076,-0.108017221093178,-0.920766294002533,0.221691712737083,-0.321001678705215,-0.911105155944824,0.309367835521698,-0.272357881069183,-0.95909970998764,0.163940116763115,-0.230762332677841,-0.926314771175385,0.368141919374466,-0.0800770297646523,-0.745603621006012,0.645491778850555,-0.165576487779617,-0.91326105594635,0.406164050102234,0.0313821993768215,-0.883057773113251,0.414925366640091,-0.219193577766418,-0.823708236217499,0.527558088302612,-0.207814902067184,-0.926314771175385,0.368141919374466,-0.0800770297646523,-0.745603621006012,0.645491778850555,-0.165576487779617,-0.83545708656311,0.54952609539032,0.0056879366748035,-0.91326105594635,0.406164050102234,0.0313821993768215,-0.83545708656311,0.54952609539032,0.0056879366748035,-0.590250074863434,0.797932803630829,-0.122098051011562,-0.787798464298248,0.607570767402649,0.101149149239063,-0.528554499149323,0.84724086523056,-0.0530363954603672,-0.713986158370972,0.677233934402466,0.177701622247696,-0.787798464298248,0.607570767402649,0.101149149239063,-0.713986158370972,0.677233934402466,0.177701622247696,-0.610756099224091,0.751059770584106,0.250770926475525, +-0.851206243038177,0.370677620172501,0.371545344591141,-0.568931758403778,0.725353717803955,0.38752880692482,-0.799638450145721,0.407566636800766,0.440984815359116,-0.610756099224091,0.751059770584106,0.250770926475525,-0.941603720188141,0.253685981035233,0.221417605876923,-0.857322812080383,0.3732570707798,0.354509025812149,-0.914718985557556,0.23660346865654,0.327578693628311,-0.754018425941467,0.352115660905838,0.55450040102005,-0.69251275062561,0.303025364875793,0.654676675796509,-0.759675920009613,0.216420128941536,0.613232970237732,-0.754018425941467,0.352115660905838,0.55450040102005,-0.846858143806458,0.225539535284042,0.481625407934189,-0.857322812080383,0.3732570707798,0.354509025812149,-0.66203361749649,0.533566415309906,0.526325166225433,-0.787349104881287,0.502715170383453,0.356873512268066,-0.805758416652679,0.376645177602768,0.457046687602997,-0.707985043525696,0.262383311986923,0.65567672252655,-0.69251275062561,0.303025364875793,0.654676675796509,-0.677552700042725,0.412069857120514,0.609196722507477,-0.66203361749649,0.533566415309906,0.526325166225433,-0.677552700042725,0.412069857120514,0.609196722507477,-0.55937123298645,0.591677129268646,0.580535769462585,-0.897819221019745,0.392978429794312,-0.198717147111893,-0.868217527866364,0.346394151449203,-0.355259448289871,-0.915789484977722,0.215053156018257,-0.339236497879028,-0.868217527866364,0.346394151449203,-0.355259448289871,-0.912129640579224,0.167275711894035,-0.374216854572296,-0.915789484977722,0.215053156018257,-0.339236497879028,-0.912129640579224,0.167275711894035,-0.374216854572296,-0.920766294002533,0.221691712737083,-0.321001678705215,-0.936290085315704,0.114670880138874,-0.33198094367981,-0.783458650112152,0.602398753166199,0.152669861912727,-0.906528115272522,0.417439550161362,0.062856025993824,-0.787349104881287,0.502715170383453,0.356873512268066,-0.897819221019745,0.392978429794312,-0.198717147111893,-0.906528115272522,0.417439550161362,0.062856025993824,-0.783458650112152,0.602398753166199,0.152669861912727,-0.986731767654419,0.145620867609978,0.0717972069978714, +-0.990936279296875,0.0366122238337994,-0.129246979951859,-0.97693806886673,0.127876102924347,-0.170996144413948,-0.967175245285034,0.253346562385559,-0.0196840818971395,-0.952255070209503,0.283539950847626,0.113204583525658,-0.986731767654419,0.145620867609978,0.0717972069978714,-0.914097964763641,0.342038452625275,0.217794448137283,-0.941603720188141,0.253685981035233,0.221417605876923,-0.952255070209503,0.283539950847626,0.113204583525658,-0.883057773113251,0.414925366640091,-0.219193577766418,-0.911105155944824,0.309367835521698,-0.272357881069183,-0.742506086826324,0.557292282581329,-0.371631354093552,-0.920766294002533,0.221691712737083,-0.321001678705215,-0.799107074737549,0.450137734413147,-0.398501932621002,-0.911105155944824,0.309367835521698,-0.272357881069183,-0.745603621006012,0.645491778850555,-0.165576487779617,-0.926314771175385,0.368141919374466,-0.0800770297646523,-0.823708236217499,0.527558088302612,-0.207814902067184,-0.883057773113251,0.414925366640091,-0.219193577766418,-0.706040441989899,0.635149955749512,-0.313195139169693,-0.823708236217499,0.527558088302612,-0.207814902067184,-0.745603621006012,0.645491778850555,-0.165576487779617,-0.590250074863434,0.797932803630829,-0.122098051011562,-0.83545708656311,0.54952609539032,0.0056879366748035,-0.590250074863434,0.797932803630829,-0.122098051011562,-0.528554499149323,0.84724086523056,-0.0530363954603672,-0.787798464298248,0.607570767402649,0.101149149239063,-0.433887392282486,0.900958240032196,-0.00398132624104619,-0.713986158370972,0.677233934402466,0.177701622247696,-0.528554499149323,0.84724086523056,-0.0530363954603672,-0.713986158370972,0.677233934402466,0.177701622247696,-0.433887392282486,0.900958240032196,-0.00398132624104619,-0.610756099224091,0.751059770584106,0.250770926475525,-0.568931758403778,0.725353717803955,0.38752880692482,-0.610756099224091,0.751059770584106,0.250770926475525,-0.339081078767776,0.92830491065979,0.152557700872421,-0.941603720188141,0.253685981035233,0.221417605876923,-0.914097964763641,0.342038452625275,0.217794448137283, +-0.857322812080383,0.3732570707798,0.354509025812149,-0.665567815303802,0.446549445390701,0.598007559776306,-0.69251275062561,0.303025364875793,0.654676675796509,-0.754018425941467,0.352115660905838,0.55450040102005,-0.857322812080383,0.3732570707798,0.354509025812149,-0.707337260246277,0.557728886604309,0.434295207262039,-0.754018425941467,0.352115660905838,0.55450040102005,-0.583710372447968,0.659578680992126,0.473537743091583,-0.787349104881287,0.502715170383453,0.356873512268066,-0.66203361749649,0.533566415309906,0.526325166225433,-0.610395669937134,0.492058098316193,0.620721995830536,-0.677552700042725,0.412069857120514,0.609196722507477,-0.69251275062561,0.303025364875793,0.654676675796509,-0.610395669937134,0.492058098316193,0.620721995830536,-0.55937123298645,0.591677129268646,0.580535769462585,-0.677552700042725,0.412069857120514,0.609196722507477,-0.66203361749649,0.533566415309906,0.526325166225433,-0.55937123298645,0.591677129268646,0.580535769462585,-0.583710372447968,0.659578680992126,0.473537743091583,-0.897819221019745,0.392978429794312,-0.198717147111893,-0.835681259632111,0.516069650650024,-0.187906593084335,-0.868217527866364,0.346394151449203,-0.355259448289871,-0.912129640579224,0.167275711894035,-0.374216854572296,-0.868217527866364,0.346394151449203,-0.355259448289871,-0.920766294002533,0.221691712737083,-0.321001678705215,-0.783458650112152,0.602398753166199,0.152669861912727,-0.787349104881287,0.502715170383453,0.356873512268066,-0.583710372447968,0.659578680992126,0.473537743091583,-0.835681259632111,0.516069650650024,-0.187906593084335,-0.897819221019745,0.392978429794312,-0.198717147111893,-0.783458650112152,0.602398753166199,0.152669861912727,-0.97693806886673,0.127876102924347,-0.170996144413948,-0.967147886753082,0.215928986668587,-0.134162321686745,-0.986731767654419,0.145620867609978,0.0717972069978714,-0.967175245285034,0.253346562385559,-0.0196840818971395,-0.835668683052063,0.547427117824554,-0.0445113927125931,-0.952255070209503,0.283539950847626,0.113204583525658,-0.967175245285034,0.253346562385559,-0.0196840818971395, +-0.986731767654419,0.145620867609978,0.0717972069978714,-0.967147886753082,0.215928986668587,-0.134162321686745,-0.803223550319672,0.573752403259277,0.160124704241753,-0.914097964763641,0.342038452625275,0.217794448137283,-0.952255070209503,0.283539950847626,0.113204583525658,-0.799107074737549,0.450137734413147,-0.398501932621002,-0.742506086826324,0.557292282581329,-0.371631354093552,-0.911105155944824,0.309367835521698,-0.272357881069183,-0.706040441989899,0.635149955749512,-0.313195139169693,-0.883057773113251,0.414925366640091,-0.219193577766418,-0.742506086826324,0.557292282581329,-0.371631354093552,-0.868217527866364,0.346394151449203,-0.355259448289871,-0.799107074737549,0.450137734413147,-0.398501932621002,-0.920766294002533,0.221691712737083,-0.321001678705215,-0.745603621006012,0.645491778850555,-0.165576487779617,-0.823708236217499,0.527558088302612,-0.207814902067184,-0.667384266853333,0.688718438148499,-0.283310532569885,-0.667384266853333,0.688718438148499,-0.283310532569885,-0.823708236217499,0.527558088302612,-0.207814902067184,-0.706040441989899,0.635149955749512,-0.313195139169693,-0.745603621006012,0.645491778850555,-0.165576487779617,-0.49818029999733,0.81538850069046,-0.294886082410812,-0.590250074863434,0.797932803630829,-0.122098051011562,-0.528554499149323,0.84724086523056,-0.0530363954603672,-0.590250074863434,0.797932803630829,-0.122098051011562,-0.440791189670563,0.880657970905304,-0.17362217605114,-0.433887392282486,0.900958240032196,-0.00398132624104619,-0.528554499149323,0.84724086523056,-0.0530363954603672,-0.396602034568787,0.901278853416443,-0.174364924430847,-0.433887392282486,0.900958240032196,-0.00398132624104619,-0.372672230005264,0.925043165683746,0.073555625975132,-0.610756099224091,0.751059770584106,0.250770926475525,-0.339081078767776,0.92830491065979,0.152557700872421,-0.610756099224091,0.751059770584106,0.250770926475525,-0.372672230005264,0.925043165683746,0.073555625975132,-0.238525524735451,0.929032802581787,0.282848954200745,-0.568931758403778,0.725353717803955,0.38752880692482, +-0.339081078767776,0.92830491065979,0.152557700872421,-0.914097964763641,0.342038452625275,0.217794448137283,-0.804354727268219,0.525720298290253,0.276824146509171,-0.857322812080383,0.3732570707798,0.354509025812149,-0.665567815303802,0.446549445390701,0.598007559776306,-0.610395669937134,0.492058098316193,0.620721995830536,-0.69251275062561,0.303025364875793,0.654676675796509,-0.665567815303802,0.446549445390701,0.598007559776306,-0.754018425941467,0.352115660905838,0.55450040102005,-0.637187361717224,0.558236300945282,0.531379640102386,-0.668184697628021,0.647414088249207,0.366584211587906,-0.707337260246277,0.557728886604309,0.434295207262039,-0.857322812080383,0.3732570707798,0.354509025812149,-0.637187361717224,0.558236300945282,0.531379640102386,-0.754018425941467,0.352115660905838,0.55450040102005,-0.707337260246277,0.557728886604309,0.434295207262039,-0.493596076965332,0.657329261302948,0.569456696510315,-0.55937123298645,0.591677129268646,0.580535769462585,-0.610395669937134,0.492058098316193,0.620721995830536,-0.583710372447968,0.659578680992126,0.473537743091583,-0.55937123298645,0.591677129268646,0.580535769462585,-0.469987511634827,0.703194916248322,0.533505856990814,-0.798044621944427,0.522304356098175,-0.300537467002869,-0.868217527866364,0.346394151449203,-0.355259448289871,-0.835681259632111,0.516069650650024,-0.187906593084335,-0.583710372447968,0.659578680992126,0.473537743091583,-0.574722349643707,0.741485476493835,0.346256107091904,-0.783458650112152,0.602398753166199,0.152669861912727,-0.783458650112152,0.602398753166199,0.152669861912727,-0.723816633224487,0.689553022384644,-0.0246169827878475,-0.835681259632111,0.516069650650024,-0.187906593084335,-0.891240298748016,0.429434150457382,-0.145865246653557,-0.835668683052063,0.547427117824554,-0.0445113927125931,-0.967175245285034,0.253346562385559,-0.0196840818971395,-0.803223550319672,0.573752403259277,0.160124704241753,-0.952255070209503,0.283539950847626,0.113204583525658,-0.835668683052063,0.547427117824554,-0.0445113927125931,-0.891240298748016,0.429434150457382,-0.145865246653557, +-0.967175245285034,0.253346562385559,-0.0196840818971395,-0.967147886753082,0.215928986668587,-0.134162321686745,-0.804354727268219,0.525720298290253,0.276824146509171,-0.914097964763641,0.342038452625275,0.217794448137283,-0.803223550319672,0.573752403259277,0.160124704241753,-0.596021413803101,0.652240931987762,-0.468337565660477,-0.742506086826324,0.557292282581329,-0.371631354093552,-0.799107074737549,0.450137734413147,-0.398501932621002,-0.706040441989899,0.635149955749512,-0.313195139169693,-0.742506086826324,0.557292282581329,-0.371631354093552,-0.546685576438904,0.73097026348114,-0.408432573080063,-0.868217527866364,0.346394151449203,-0.355259448289871,-0.747909903526306,0.529259502887726,-0.400643199682236,-0.799107074737549,0.450137734413147,-0.398501932621002,-0.528114676475525,0.767176508903503,-0.364053547382355,-0.745603621006012,0.645491778850555,-0.165576487779617,-0.667384266853333,0.688718438148499,-0.283310532569885,-0.667384266853333,0.688718438148499,-0.283310532569885,-0.706040441989899,0.635149955749512,-0.313195139169693,-0.556500613689423,0.754737496376038,-0.347387701272964,-0.745603621006012,0.645491778850555,-0.165576487779617,-0.528114676475525,0.767176508903503,-0.364053547382355,-0.49818029999733,0.81538850069046,-0.294886082410812,-0.443254113197327,0.859657406806946,-0.253997832536697,-0.590250074863434,0.797932803630829,-0.122098051011562,-0.49818029999733,0.81538850069046,-0.294886082410812,-0.440791189670563,0.880657970905304,-0.17362217605114,-0.590250074863434,0.797932803630829,-0.122098051011562,-0.443254113197327,0.859657406806946,-0.253997832536697,-0.528554499149323,0.84724086523056,-0.0530363954603672,-0.440791189670563,0.880657970905304,-0.17362217605114,-0.396602034568787,0.901278853416443,-0.174364924430847,-0.433887392282486,0.900958240032196,-0.00398132624104619,-0.396602034568787,0.901278853416443,-0.174364924430847,-0.394140660762787,0.897870659828186,-0.196166500449181,-0.433887392282486,0.900958240032196,-0.00398132624104619,-0.323215454816818,0.944808065891266,-0.0535643324255943, +-0.372672230005264,0.925043165683746,0.073555625975132,-0.372672230005264,0.925043165683746,0.073555625975132,-0.240381315350533,0.96915203332901,0.0544161610305309,-0.339081078767776,0.92830491065979,0.152557700872421,-0.238525524735451,0.929032802581787,0.282848954200745,-0.339081078767776,0.92830491065979,0.152557700872421,-0.202017724514008,0.961330771446228,0.187167957425117,-0.857322812080383,0.3732570707798,0.354509025812149,-0.804354727268219,0.525720298290253,0.276824146509171,-0.668184697628021,0.647414088249207,0.366584211587906,-0.665567815303802,0.446549445390701,0.598007559776306,-0.563892841339111,0.614660978317261,0.551558315753937,-0.610395669937134,0.492058098316193,0.620721995830536,-0.563892841339111,0.614660978317261,0.551558315753937,-0.665567815303802,0.446549445390701,0.598007559776306,-0.637187361717224,0.558236300945282,0.531379640102386,-0.668184697628021,0.647414088249207,0.366584211587906,-0.506966054439545,0.750160157680511,0.424552738666534,-0.707337260246277,0.557728886604309,0.434295207262039,-0.506966054439545,0.750160157680511,0.424552738666534,-0.637187361717224,0.558236300945282,0.531379640102386,-0.707337260246277,0.557728886604309,0.434295207262039,-0.493596076965332,0.657329261302948,0.569456696510315,-0.469987511634827,0.703194916248322,0.533505856990814,-0.55937123298645,0.591677129268646,0.580535769462585,-0.610395669937134,0.492058098316193,0.620721995830536,-0.563892841339111,0.614660978317261,0.551558315753937,-0.493596076965332,0.657329261302948,0.569456696510315,-0.583710372447968,0.659578680992126,0.473537743091583,-0.469987511634827,0.703194916248322,0.533505856990814,-0.432329446077347,0.759739995002747,0.48568120598793,-0.798044621944427,0.522304356098175,-0.300537467002869,-0.747909903526306,0.529259502887726,-0.400643199682236,-0.868217527866364,0.346394151449203,-0.355259448289871,-0.798044621944427,0.522304356098175,-0.300537467002869,-0.835681259632111,0.516069650650024,-0.187906593084335,-0.723816633224487,0.689553022384644,-0.0246169827878475,-0.583710372447968,0.659578680992126,0.473537743091583, +-0.432329446077347,0.759739995002747,0.48568120598793,-0.574722349643707,0.741485476493835,0.346256107091904,-0.783458650112152,0.602398753166199,0.152669861912727,-0.574722349643707,0.741485476493835,0.346256107091904,-0.723816633224487,0.689553022384644,-0.0246169827878475,-0.891240298748016,0.429434150457382,-0.145865246653557,-0.636055409908295,0.744522571563721,-0.202779799699783,-0.835668683052063,0.547427117824554,-0.0445113927125931,-0.803223550319672,0.573752403259277,0.160124704241753,-0.835668683052063,0.547427117824554,-0.0445113927125931,-0.523095190525055,0.852266907691956,-0.00351565447635949,-0.804354727268219,0.525720298290253,0.276824146509171,-0.803223550319672,0.573752403259277,0.160124704241753,-0.56622987985611,0.770044982433319,0.293963104486465,-0.546685576438904,0.73097026348114,-0.408432573080063,-0.742506086826324,0.557292282581329,-0.371631354093552,-0.596021413803101,0.652240931987762,-0.468337565660477,-0.634672224521637,0.604299426078796,-0.481677502393723,-0.596021413803101,0.652240931987762,-0.468337565660477,-0.799107074737549,0.450137734413147,-0.398501932621002,-0.546685576438904,0.73097026348114,-0.408432573080063,-0.556500613689423,0.754737496376038,-0.347387701272964,-0.706040441989899,0.635149955749512,-0.313195139169693,-0.634672224521637,0.604299426078796,-0.481677502393723,-0.799107074737549,0.450137734413147,-0.398501932621002,-0.747909903526306,0.529259502887726,-0.400643199682236,-0.528114676475525,0.767176508903503,-0.364053547382355,-0.667384266853333,0.688718438148499,-0.283310532569885,-0.556500613689423,0.754737496376038,-0.347387701272964,-0.431520968675613,0.796570897102356,-0.42339614033699,-0.49818029999733,0.81538850069046,-0.294886082410812,-0.528114676475525,0.767176508903503,-0.364053547382355,-0.443254113197327,0.859657406806946,-0.253997832536697,-0.49818029999733,0.81538850069046,-0.294886082410812,-0.454751670360565,0.824473083019257,-0.33681583404541,-0.440791189670563,0.880657970905304,-0.17362217605114,-0.443254113197327,0.859657406806946,-0.253997832536697, +-0.410048365592957,0.877298295497894,-0.249415069818497,-0.410048365592957,0.877298295497894,-0.249415069818497,-0.396602034568787,0.901278853416443,-0.174364924430847,-0.440791189670563,0.880657970905304,-0.17362217605114,-0.410048365592957,0.877298295497894,-0.249415069818497,-0.394140660762787,0.897870659828186,-0.196166500449181,-0.396602034568787,0.901278853416443,-0.174364924430847,-0.433887392282486,0.900958240032196,-0.00398132624104619,-0.394140660762787,0.897870659828186,-0.196166500449181,-0.323215454816818,0.944808065891266,-0.0535643324255943,-0.372672230005264,0.925043165683746,0.073555625975132,-0.323215454816818,0.944808065891266,-0.0535643324255943,-0.240381315350533,0.96915203332901,0.0544161610305309,-0.339081078767776,0.92830491065979,0.152557700872421,-0.240381315350533,0.96915203332901,0.0544161610305309,-0.202017724514008,0.961330771446228,0.187167957425117,-0.804354727268219,0.525720298290253,0.276824146509171,-0.56622987985611,0.770044982433319,0.293963104486465,-0.668184697628021,0.647414088249207,0.366584211587906,-0.563892841339111,0.614660978317261,0.551558315753937,-0.637187361717224,0.558236300945282,0.531379640102386,-0.501810073852539,0.71179723739624,0.491458207368851,-0.506966054439545,0.750160157680511,0.424552738666534,-0.668184697628021,0.647414088249207,0.366584211587906,-0.410007059574127,0.827928900718689,0.382658898830414,-0.506966054439545,0.750160157680511,0.424552738666534,-0.501810073852539,0.71179723739624,0.491458207368851,-0.637187361717224,0.558236300945282,0.531379640102386,-0.469987511634827,0.703194916248322,0.533505856990814,-0.493596076965332,0.657329261302948,0.569456696510315,-0.409319877624512,0.743660390377045,0.528607845306396,-0.406525760889053,0.758037626743317,0.510015428066254,-0.493596076965332,0.657329261302948,0.569456696510315,-0.563892841339111,0.614660978317261,0.551558315753937,-0.432329446077347,0.759739995002747,0.48568120598793,-0.469987511634827,0.703194916248322,0.533505856990814,-0.409319877624512,0.743660390377045,0.528607845306396,-0.747909903526306,0.529259502887726,-0.400643199682236, +-0.798044621944427,0.522304356098175,-0.300537467002869,-0.678550660610199,0.679825007915497,-0.278220742940903,-0.678550660610199,0.679825007915497,-0.278220742940903,-0.798044621944427,0.522304356098175,-0.300537467002869,-0.723816633224487,0.689553022384644,-0.0246169827878475,-0.574722349643707,0.741485476493835,0.346256107091904,-0.432329446077347,0.759739995002747,0.48568120598793,-0.573148548603058,0.806720852851868,0.143882155418396,-0.574722349643707,0.741485476493835,0.346256107091904,-0.573148548603058,0.806720852851868,0.143882155418396,-0.723816633224487,0.689553022384644,-0.0246169827878475,-0.835668683052063,0.547427117824554,-0.0445113927125931,-0.636055409908295,0.744522571563721,-0.202779799699783,-0.561211585998535,0.813298285007477,-0.15358167886734,-0.523095190525055,0.852266907691956,-0.00351565447635949,-0.835668683052063,0.547427117824554,-0.0445113927125931,-0.561211585998535,0.813298285007477,-0.15358167886734,-0.803223550319672,0.573752403259277,0.160124704241753,-0.523095190525055,0.852266907691956,-0.00351565447635949,-0.505834758281708,0.844665825366974,0.175130441784859,-0.56622987985611,0.770044982433319,0.293963104486465,-0.803223550319672,0.573752403259277,0.160124704241753,-0.505834758281708,0.844665825366974,0.175130441784859,-0.546685576438904,0.73097026348114,-0.408432573080063,-0.596021413803101,0.652240931987762,-0.468337565660477,-0.483005523681641,0.718876361846924,-0.499922305345535,-0.634672224521637,0.604299426078796,-0.481677502393723,-0.505338966846466,0.695432305335999,-0.510887742042542,-0.596021413803101,0.652240931987762,-0.468337565660477,-0.455919474363327,0.783955514431,-0.421368092298508,-0.556500613689423,0.754737496376038,-0.347387701272964,-0.546685576438904,0.73097026348114,-0.408432573080063,-0.634672224521637,0.604299426078796,-0.481677502393723,-0.747909903526306,0.529259502887726,-0.400643199682236,-0.590304374694824,0.660568356513977,-0.463885813951492,-0.455919474363327,0.783955514431,-0.421368092298508,-0.528114676475525,0.767176508903503,-0.364053547382355, +-0.556500613689423,0.754737496376038,-0.347387701272964,-0.454751670360565,0.824473083019257,-0.33681583404541,-0.49818029999733,0.81538850069046,-0.294886082410812,-0.431520968675613,0.796570897102356,-0.42339614033699,-0.431520968675613,0.796570897102356,-0.42339614033699,-0.528114676475525,0.767176508903503,-0.364053547382355,-0.455919474363327,0.783955514431,-0.421368092298508,-0.454751670360565,0.824473083019257,-0.33681583404541,-0.410048365592957,0.877298295497894,-0.249415069818497,-0.443254113197327,0.859657406806946,-0.253997832536697,-0.410048365592957,0.877298295497894,-0.249415069818497,-0.454751670360565,0.824473083019257,-0.33681583404541,-0.394140660762787,0.897870659828186,-0.196166500449181,-0.399393081665039,0.908739805221558,-0.121148839592934,-0.323215454816818,0.944808065891266,-0.0535643324255943,-0.394140660762787,0.897870659828186,-0.196166500449181,-0.323215454816818,0.944808065891266,-0.0535643324255943,-0.316390931606293,0.947491466999054,-0.0464388728141785,-0.240381315350533,0.96915203332901,0.0544161610305309,-0.202017724514008,0.961330771446228,0.187167957425117,-0.240381315350533,0.96915203332901,0.0544161610305309,-0.182840242981911,0.954139173030853,0.237039655447006,-0.56622987985611,0.770044982433319,0.293963104486465,-0.410007059574127,0.827928900718689,0.382658898830414,-0.668184697628021,0.647414088249207,0.366584211587906,-0.406525760889053,0.758037626743317,0.510015428066254,-0.563892841339111,0.614660978317261,0.551558315753937,-0.501810073852539,0.71179723739624,0.491458207368851,-0.506966054439545,0.750160157680511,0.424552738666534,-0.410007059574127,0.827928900718689,0.382658898830414,-0.354759812355042,0.835328042507172,0.419967114925385,-0.501810073852539,0.71179723739624,0.491458207368851,-0.506966054439545,0.750160157680511,0.424552738666534,-0.393802404403687,0.803320348262787,0.446761637926102,-0.406525760889053,0.758037626743317,0.510015428066254,-0.409319877624512,0.743660390377045,0.528607845306396,-0.493596076965332,0.657329261302948,0.569456696510315,-0.432329446077347,0.759739995002747,0.48568120598793, +-0.409319877624512,0.743660390377045,0.528607845306396,-0.370791077613831,0.761286318302155,0.531937003135681,-0.747909903526306,0.529259502887726,-0.400643199682236,-0.678550660610199,0.679825007915497,-0.278220742940903,-0.590304374694824,0.660568356513977,-0.463885813951492,-0.678550660610199,0.679825007915497,-0.278220742940903,-0.723816633224487,0.689553022384644,-0.0246169827878475,-0.573148548603058,0.806720852851868,0.143882155418396,-0.45561358332634,0.813289165496826,0.361907422542572,-0.573148548603058,0.806720852851868,0.143882155418396,-0.432329446077347,0.759739995002747,0.48568120598793,-0.636055409908295,0.744522571563721,-0.202779799699783,-0.421336263418198,0.868117272853851,-0.262389004230499,-0.561211585998535,0.813298285007477,-0.15358167886734,-0.523095190525055,0.852266907691956,-0.00351565447635949,-0.561211585998535,0.813298285007477,-0.15358167886734,-0.38441926240921,0.905731022357941,-0.178530395030975,-0.523095190525055,0.852266907691956,-0.00351565447635949,-0.356597602367401,0.925941228866577,0.124382093548775,-0.505834758281708,0.844665825366974,0.175130441784859,-0.56622987985611,0.770044982433319,0.293963104486465,-0.505834758281708,0.844665825366974,0.175130441784859,-0.336761295795441,0.895962774753571,0.289555728435516,-0.596021413803101,0.652240931987762,-0.468337565660477,-0.505338966846466,0.695432305335999,-0.510887742042542,-0.483005523681641,0.718876361846924,-0.499922305345535,-0.483005523681641,0.718876361846924,-0.499922305345535,-0.467967212200165,0.7536381483078,-0.461558431386948,-0.546685576438904,0.73097026348114,-0.408432573080063,-0.505338966846466,0.695432305335999,-0.510887742042542,-0.634672224521637,0.604299426078796,-0.481677502393723,-0.590304374694824,0.660568356513977,-0.463885813951492,-0.455919474363327,0.783955514431,-0.421368092298508,-0.546685576438904,0.73097026348114,-0.408432573080063,-0.467967212200165,0.7536381483078,-0.461558431386948,-0.431520968675613,0.796570897102356,-0.42339614033699,-0.4743612408638,0.756360709667206,-0.450443983078003,-0.454751670360565,0.824473083019257,-0.33681583404541, +-0.431520968675613,0.796570897102356,-0.42339614033699,-0.455919474363327,0.783955514431,-0.421368092298508,-0.4743612408638,0.756360709667206,-0.450443983078003,-0.521186470985413,0.828027129173279,-0.20672582089901,-0.394140660762787,0.897870659828186,-0.196166500449181,-0.454751670360565,0.824473083019257,-0.33681583404541,-0.323215454816818,0.944808065891266,-0.0535643324255943,-0.399393081665039,0.908739805221558,-0.121148839592934,-0.316390931606293,0.947491466999054,-0.0464388728141785,-0.399393081665039,0.908739805221558,-0.121148839592934,-0.394140660762787,0.897870659828186,-0.196166500449181,-0.521186470985413,0.828027129173279,-0.20672582089901,-0.240381315350533,0.96915203332901,0.0544161610305309,-0.316390931606293,0.947491466999054,-0.0464388728141785,-0.334582597017288,0.940671503543854,0.0564928986132145,-0.182840242981911,0.954139173030853,0.237039655447006,-0.240381315350533,0.96915203332901,0.0544161610305309,-0.255771905183792,0.953871428966522,0.157193198800087,-0.56622987985611,0.770044982433319,0.293963104486465,-0.336761295795441,0.895962774753571,0.289555728435516,-0.410007059574127,0.827928900718689,0.382658898830414,-0.406525760889053,0.758037626743317,0.510015428066254,-0.501810073852539,0.71179723739624,0.491458207368851,-0.393802404403687,0.803320348262787,0.446761637926102,-0.354759812355042,0.835328042507172,0.419967114925385,-0.410007059574127,0.827928900718689,0.382658898830414,-0.295344829559326,0.864168405532837,0.407411724328995,-0.354759812355042,0.835328042507172,0.419967114925385,-0.393802404403687,0.803320348262787,0.446761637926102,-0.506966054439545,0.750160157680511,0.424552738666534,-0.406525760889053,0.758037626743317,0.510015428066254,-0.370791077613831,0.761286318302155,0.531937003135681,-0.409319877624512,0.743660390377045,0.528607845306396,-0.432329446077347,0.759739995002747,0.48568120598793,-0.370791077613831,0.761286318302155,0.531937003135681,-0.412567645311356,0.740730762481689,0.530194044113159,-0.537275016307831,0.740615844726563,-0.403513997793198,-0.590304374694824,0.660568356513977,-0.463885813951492, +-0.678550660610199,0.679825007915497,-0.278220742940903,-0.678550660610199,0.679825007915497,-0.278220742940903,-0.573148548603058,0.806720852851868,0.143882155418396,-0.594463467597961,0.779829382896423,-0.196160972118378,-0.573148548603058,0.806720852851868,0.143882155418396,-0.45561358332634,0.813289165496826,0.361907422542572,-0.557791769504547,0.827832996845245,-0.0596718564629555,-0.412567645311356,0.740730762481689,0.530194044113159,-0.45561358332634,0.813289165496826,0.361907422542572,-0.432329446077347,0.759739995002747,0.48568120598793,-0.38441926240921,0.905731022357941,-0.178530395030975,-0.561211585998535,0.813298285007477,-0.15358167886734,-0.421336263418198,0.868117272853851,-0.262389004230499,-0.523095190525055,0.852266907691956,-0.00351565447635949,-0.38441926240921,0.905731022357941,-0.178530395030975,-0.357662975788116,0.933301329612732,-0.0320269912481308,-0.523095190525055,0.852266907691956,-0.00351565447635949,-0.357662975788116,0.933301329612732,-0.0320269912481308,-0.356597602367401,0.925941228866577,0.124382093548775,-0.505834758281708,0.844665825366974,0.175130441784859,-0.356597602367401,0.925941228866577,0.124382093548775,-0.336761295795441,0.895962774753571,0.289555728435516,-0.505338966846466,0.695432305335999,-0.510887742042542,-0.510962605476379,0.683434903621674,-0.52137678861618,-0.483005523681641,0.718876361846924,-0.499922305345535,-0.483005523681641,0.718876361846924,-0.499922305345535,-0.505949437618256,0.676641345024109,-0.534949898719788,-0.467967212200165,0.7536381483078,-0.461558431386948,-0.590304374694824,0.660568356513977,-0.463885813951492,-0.537275016307831,0.740615844726563,-0.403513997793198,-0.505338966846466,0.695432305335999,-0.510887742042542,-0.467967212200165,0.7536381483078,-0.461558431386948,-0.4743612408638,0.756360709667206,-0.450443983078003,-0.455919474363327,0.783955514431,-0.421368092298508,-0.562945008277893,0.747036218643188,-0.353595316410065,-0.454751670360565,0.824473083019257,-0.33681583404541,-0.4743612408638,0.756360709667206,-0.450443983078003, +-0.521186470985413,0.828027129173279,-0.20672582089901,-0.454751670360565,0.824473083019257,-0.33681583404541,-0.650101482868195,0.713894188404083,-0.260236144065857,-0.42474228143692,0.905289173126221,0.00673671066761017,-0.316390931606293,0.947491466999054,-0.0464388728141785,-0.399393081665039,0.908739805221558,-0.121148839592934,-0.399393081665039,0.908739805221558,-0.121148839592934,-0.521186470985413,0.828027129173279,-0.20672582089901,-0.590341567993164,0.80204451084137,-0.0906712561845779,-0.334582597017288,0.940671503543854,0.0564928986132145,-0.316390931606293,0.947491466999054,-0.0464388728141785,-0.42474228143692,0.905289173126221,0.00673671066761017,-0.334582597017288,0.940671503543854,0.0564928986132145,-0.255771905183792,0.953871428966522,0.157193198800087,-0.240381315350533,0.96915203332901,0.0544161610305309,-0.182840242981911,0.954139173030853,0.237039655447006,-0.255771905183792,0.953871428966522,0.157193198800087,-0.365489274263382,0.890561699867249,0.270771861076355,-0.410007059574127,0.827928900718689,0.382658898830414,-0.336761295795441,0.895962774753571,0.289555728435516,-0.295344829559326,0.864168405532837,0.407411724328995,-0.406525760889053,0.758037626743317,0.510015428066254,-0.393802404403687,0.803320348262787,0.446761637926102,-0.338245034217834,0.810577750205994,0.478073120117188,-0.354759812355042,0.835328042507172,0.419967114925385,-0.295344829559326,0.864168405532837,0.407411724328995,-0.338245034217834,0.810577750205994,0.478073120117188,-0.354759812355042,0.835328042507172,0.419967114925385,-0.338245034217834,0.810577750205994,0.478073120117188,-0.393802404403687,0.803320348262787,0.446761637926102,-0.360495686531067,0.754141330718994,0.548920333385468,-0.370791077613831,0.761286318302155,0.531937003135681,-0.406525760889053,0.758037626743317,0.510015428066254,-0.412567645311356,0.740730762481689,0.530194044113159,-0.370791077613831,0.761286318302155,0.531937003135681,-0.412143766880035,0.709448337554932,0.571682095527649,-0.594463467597961,0.779829382896423,-0.196160972118378,-0.537275016307831,0.740615844726563,-0.403513997793198, +-0.678550660610199,0.679825007915497,-0.278220742940903,-0.573148548603058,0.806720852851868,0.143882155418396,-0.557791769504547,0.827832996845245,-0.0596718564629555,-0.594463467597961,0.779829382896423,-0.196160972118378,-0.486234426498413,0.771977484226227,0.409422516822815,-0.557791769504547,0.827832996845245,-0.0596718564629555,-0.45561358332634,0.813289165496826,0.361907422542572,-0.486234426498413,0.771977484226227,0.409422516822815,-0.45561358332634,0.813289165496826,0.361907422542572,-0.412567645311356,0.740730762481689,0.530194044113159,-0.38441926240921,0.905731022357941,-0.178530395030975,-0.421336263418198,0.868117272853851,-0.262389004230499,-0.370559513568878,0.887181878089905,-0.274943470954895,-0.38920196890831,0.904595494270325,-0.173864081501961,-0.357662975788116,0.933301329612732,-0.0320269912481308,-0.38441926240921,0.905731022357941,-0.178530395030975,-0.357662975788116,0.933301329612732,-0.0320269912481308,-0.402376711368561,0.904547929763794,0.14101730287075,-0.356597602367401,0.925941228866577,0.124382093548775,-0.352472394704819,0.906201362609863,0.233585461974144,-0.336761295795441,0.895962774753571,0.289555728435516,-0.356597602367401,0.925941228866577,0.124382093548775,-0.527087152004242,0.74372810125351,-0.41115403175354,-0.510962605476379,0.683434903621674,-0.52137678861618,-0.505338966846466,0.695432305335999,-0.510887742042542,-0.510962605476379,0.683434903621674,-0.52137678861618,-0.505949437618256,0.676641345024109,-0.534949898719788,-0.483005523681641,0.718876361846924,-0.499922305345535,-0.467967212200165,0.7536381483078,-0.461558431386948,-0.505949437618256,0.676641345024109,-0.534949898719788,-0.4743612408638,0.756360709667206,-0.450443983078003,-0.537275016307831,0.740615844726563,-0.403513997793198,-0.527087152004242,0.74372810125351,-0.41115403175354,-0.505338966846466,0.695432305335999,-0.510887742042542,-0.650101482868195,0.713894188404083,-0.260236144065857,-0.454751670360565,0.824473083019257,-0.33681583404541,-0.562945008277893,0.747036218643188,-0.353595316410065,-0.562945008277893,0.747036218643188,-0.353595316410065, +-0.4743612408638,0.756360709667206,-0.450443983078003,-0.622770428657532,0.673104882240295,-0.398856699466705,-0.743743181228638,0.658698499202728,-0.113851748406887,-0.521186470985413,0.828027129173279,-0.20672582089901,-0.650101482868195,0.713894188404083,-0.260236144065857,-0.50196760892868,0.864664614200592,-0.019581401720643,-0.42474228143692,0.905289173126221,0.00673671066761017,-0.399393081665039,0.908739805221558,-0.121148839592934,-0.590341567993164,0.80204451084137,-0.0906712561845779,-0.521186470985413,0.828027129173279,-0.20672582089901,-0.743743181228638,0.658698499202728,-0.113851748406887,-0.50196760892868,0.864664614200592,-0.019581401720643,-0.399393081665039,0.908739805221558,-0.121148839592934,-0.590341567993164,0.80204451084137,-0.0906712561845779,-0.334582597017288,0.940671503543854,0.0564928986132145,-0.42474228143692,0.905289173126221,0.00673671066761017,-0.483467608690262,0.866759955883026,0.122418120503426,-0.334582597017288,0.940671503543854,0.0564928986132145,-0.365489274263382,0.890561699867249,0.270771861076355,-0.255771905183792,0.953871428966522,0.157193198800087,-0.214483082294464,0.920911192893982,0.325452715158463,-0.182840242981911,0.954139173030853,0.237039655447006,-0.365489274263382,0.890561699867249,0.270771861076355,-0.295344829559326,0.864168405532837,0.407411724328995,-0.336761295795441,0.895962774753571,0.289555728435516,-0.338832646608353,0.869447946548462,0.359517246484756,-0.360495686531067,0.754141330718994,0.548920333385468,-0.406525760889053,0.758037626743317,0.510015428066254,-0.338245034217834,0.810577750205994,0.478073120117188,-0.354705095291138,0.804099023342133,0.477083891630173,-0.338245034217834,0.810577750205994,0.478073120117188,-0.295344829559326,0.864168405532837,0.407411724328995,-0.360495686531067,0.754141330718994,0.548920333385468,-0.412143766880035,0.709448337554932,0.571682095527649,-0.370791077613831,0.761286318302155,0.531937003135681,-0.412567645311356,0.740730762481689,0.530194044113159,-0.412143766880035,0.709448337554932,0.571682095527649,-0.496380627155304,0.688954472541809,0.528155148029327, +-0.594463467597961,0.779829382896423,-0.196160972118378,-0.557791769504547,0.827832996845245,-0.0596718564629555,-0.537275016307831,0.740615844726563,-0.403513997793198,-0.486234426498413,0.771977484226227,0.409422516822815,-0.691119074821472,0.687875092029572,0.221770718693733,-0.557791769504547,0.827832996845245,-0.0596718564629555,-0.486234426498413,0.771977484226227,0.409422516822815,-0.412567645311356,0.740730762481689,0.530194044113159,-0.496380627155304,0.688954472541809,0.528155148029327,-0.370559513568878,0.887181878089905,-0.274943470954895,-0.38920196890831,0.904595494270325,-0.173864081501961,-0.38441926240921,0.905731022357941,-0.178530395030975,-0.440184652805328,0.897694766521454,-0.0195330902934074,-0.357662975788116,0.933301329612732,-0.0320269912481308,-0.38920196890831,0.904595494270325,-0.173864081501961,-0.440184652805328,0.897694766521454,-0.0195330902934074,-0.402376711368561,0.904547929763794,0.14101730287075,-0.357662975788116,0.933301329612732,-0.0320269912481308,-0.402376711368561,0.904547929763794,0.14101730287075,-0.352472394704819,0.906201362609863,0.233585461974144,-0.356597602367401,0.925941228866577,0.124382093548775,-0.352472394704819,0.906201362609863,0.233585461974144,-0.338832646608353,0.869447946548462,0.359517246484756,-0.336761295795441,0.895962774753571,0.289555728435516,-0.527087152004242,0.74372810125351,-0.41115403175354,-0.638030290603638,0.697694361209869,-0.32579094171524,-0.510962605476379,0.683434903621674,-0.52137678861618,-0.510962605476379,0.683434903621674,-0.52137678861618,-0.630202114582062,0.564126014709473,-0.533485651016235,-0.505949437618256,0.676641345024109,-0.534949898719788,-0.554052531719208,0.662670612335205,-0.503878235816956,-0.4743612408638,0.756360709667206,-0.450443983078003,-0.505949437618256,0.676641345024109,-0.534949898719788,-0.537275016307831,0.740615844726563,-0.403513997793198,-0.557791769504547,0.827832996845245,-0.0596718564629555,-0.527087152004242,0.74372810125351,-0.41115403175354,-0.650101482868195,0.713894188404083,-0.260236144065857, +-0.562945008277893,0.747036218643188,-0.353595316410065,-0.744093775749207,0.615235924720764,-0.260401874780655,-0.554052531719208,0.662670612335205,-0.503878235816956,-0.622770428657532,0.673104882240295,-0.398856699466705,-0.4743612408638,0.756360709667206,-0.450443983078003,-0.744093775749207,0.615235924720764,-0.260401874780655,-0.562945008277893,0.747036218643188,-0.353595316410065,-0.622770428657532,0.673104882240295,-0.398856699466705,-0.743743181228638,0.658698499202728,-0.113851748406887,-0.650101482868195,0.713894188404083,-0.260236144065857,-0.863153576850891,0.484913676977158,-0.14079961180687,-0.42474228143692,0.905289173126221,0.00673671066761017,-0.50196760892868,0.864664614200592,-0.019581401720643,-0.607993245124817,0.789517343044281,0.0837044268846512,-0.727232575416565,0.68174946308136,0.0796884596347809,-0.590341567993164,0.80204451084137,-0.0906712561845779,-0.743743181228638,0.658698499202728,-0.113851748406887,-0.50196760892868,0.864664614200592,-0.019581401720643,-0.590341567993164,0.80204451084137,-0.0906712561845779,-0.638006210327148,0.76905369758606,0.0387859642505646,-0.607993245124817,0.789517343044281,0.0837044268846512,-0.483467608690262,0.866759955883026,0.122418120503426,-0.42474228143692,0.905289173126221,0.00673671066761017,-0.483467608690262,0.866759955883026,0.122418120503426,-0.365489274263382,0.890561699867249,0.270771861076355,-0.334582597017288,0.940671503543854,0.0564928986132145,-0.214483082294464,0.920911192893982,0.325452715158463,-0.365489274263382,0.890561699867249,0.270771861076355,-0.244275391101837,0.870165824890137,0.427949577569962,-0.295344829559326,0.864168405532837,0.407411724328995,-0.338832646608353,0.869447946548462,0.359517246484756,-0.354705095291138,0.804099023342133,0.477083891630173,-0.360495686531067,0.754141330718994,0.548920333385468,-0.338245034217834,0.810577750205994,0.478073120117188,-0.412866532802582,0.728958606719971,0.546040534973145,-0.354705095291138,0.804099023342133,0.477083891630173,-0.412866532802582,0.728958606719971,0.546040534973145, +-0.338245034217834,0.810577750205994,0.478073120117188,-0.41024461388588,0.689444839954376,0.596963167190552,-0.412143766880035,0.709448337554932,0.571682095527649,-0.360495686531067,0.754141330718994,0.548920333385468,-0.496380627155304,0.688954472541809,0.528155148029327,-0.412143766880035,0.709448337554932,0.571682095527649,-0.478623420000076,0.617849171161652,0.62384444475174,-0.486234426498413,0.771977484226227,0.409422516822815,-0.496380627155304,0.688954472541809,0.528155148029327,-0.691119074821472,0.687875092029572,0.221770718693733,-0.638030290603638,0.697694361209869,-0.32579094171524,-0.557791769504547,0.827832996845245,-0.0596718564629555,-0.691119074821472,0.687875092029572,0.221770718693733,-0.370559513568878,0.887181878089905,-0.274943470954895,-0.494522094726563,0.838943779468536,-0.227202832698822,-0.38920196890831,0.904595494270325,-0.173864081501961,-0.440184652805328,0.897694766521454,-0.0195330902934074,-0.38920196890831,0.904595494270325,-0.173864081501961,-0.542308926582336,0.833532869815826,-0.105469949543476,-0.440184652805328,0.897694766521454,-0.0195330902934074,-0.603893220424652,0.796293795108795,0.0350566320121288,-0.402376711368561,0.904547929763794,0.14101730287075,-0.402376711368561,0.904547929763794,0.14101730287075,-0.447266519069672,0.811517298221588,0.376021564006805,-0.352472394704819,0.906201362609863,0.233585461974144,-0.338832646608353,0.869447946548462,0.359517246484756,-0.352472394704819,0.906201362609863,0.233585461974144,-0.447266519069672,0.811517298221588,0.376021564006805,-0.638030290603638,0.697694361209869,-0.32579094171524,-0.527087152004242,0.74372810125351,-0.41115403175354,-0.557791769504547,0.827832996845245,-0.0596718564629555,-0.638030290603638,0.697694361209869,-0.32579094171524,-0.630202114582062,0.564126014709473,-0.533485651016235,-0.510962605476379,0.683434903621674,-0.52137678861618,-0.627736568450928,0.493151485919952,-0.602285802364349,-0.505949437618256,0.676641345024109,-0.534949898719788,-0.630202114582062,0.564126014709473,-0.533485651016235,-0.554052531719208,0.662670612335205,-0.503878235816956, +-0.505949437618256,0.676641345024109,-0.534949898719788,-0.627736568450928,0.493151485919952,-0.602285802364349,-0.863153576850891,0.484913676977158,-0.14079961180687,-0.650101482868195,0.713894188404083,-0.260236144065857,-0.744093775749207,0.615235924720764,-0.260401874780655,-0.554052531719208,0.662670612335205,-0.503878235816956,-0.678873360157013,0.519958853721619,-0.518433749675751,-0.622770428657532,0.673104882240295,-0.398856699466705,-0.744093775749207,0.615235924720764,-0.260401874780655,-0.622770428657532,0.673104882240295,-0.398856699466705,-0.785852015018463,0.512047588825226,-0.346761971712112,-0.903573036193848,0.409107267856598,-0.127227619290352,-0.743743181228638,0.658698499202728,-0.113851748406887,-0.863153576850891,0.484913676977158,-0.14079961180687,-0.607993245124817,0.789517343044281,0.0837044268846512,-0.50196760892868,0.864664614200592,-0.019581401720643,-0.638006210327148,0.76905369758606,0.0387859642505646,-0.727232575416565,0.68174946308136,0.0796884596347809,-0.638006210327148,0.76905369758606,0.0387859642505646,-0.590341567993164,0.80204451084137,-0.0906712561845779,-0.727232575416565,0.68174946308136,0.0796884596347809,-0.743743181228638,0.658698499202728,-0.113851748406887,-0.825754821300507,0.561627566814423,0.0519934110343456,-0.607993245124817,0.789517343044281,0.0837044268846512,-0.645187854766846,0.742967367172241,0.178134694695473,-0.483467608690262,0.866759955883026,0.122418120503426,-0.59125554561615,0.74979442358017,0.297026872634888,-0.365489274263382,0.890561699867249,0.270771861076355,-0.483467608690262,0.866759955883026,0.122418120503426,-0.393343806266785,0.781876862049103,0.483682930469513,-0.244275391101837,0.870165824890137,0.427949577569962,-0.365489274263382,0.890561699867249,0.270771861076355,-0.354705095291138,0.804099023342133,0.477083891630173,-0.338832646608353,0.869447946548462,0.359517246484756,-0.430502235889435,0.774951934814453,0.46272811293602,-0.360495686531067,0.754141330718994,0.548920333385468,-0.412866532802582,0.728958606719971,0.546040534973145, +-0.41024461388588,0.689444839954376,0.596963167190552,-0.412866532802582,0.728958606719971,0.546040534973145,-0.354705095291138,0.804099023342133,0.477083891630173,-0.484707087278366,0.6889808177948,0.538854658603668,-0.41024461388588,0.689444839954376,0.596963167190552,-0.478623420000076,0.617849171161652,0.62384444475174,-0.412143766880035,0.709448337554932,0.571682095527649,-0.496380627155304,0.688954472541809,0.528155148029327,-0.478623420000076,0.617849171161652,0.62384444475174,-0.601378679275513,0.5855553150177,0.543570101261139,-0.496380627155304,0.688954472541809,0.528155148029327,-0.601378679275513,0.5855553150177,0.543570101261139,-0.691119074821472,0.687875092029572,0.221770718693733,-0.638030290603638,0.697694361209869,-0.32579094171524,-0.691119074821472,0.687875092029572,0.221770718693733,-0.814192414283752,0.533007502555847,-0.23020350933075,-0.542308926582336,0.833532869815826,-0.105469949543476,-0.38920196890831,0.904595494270325,-0.173864081501961,-0.494522094726563,0.838943779468536,-0.227202832698822,-0.440184652805328,0.897694766521454,-0.0195330902934074,-0.542308926582336,0.833532869815826,-0.105469949543476,-0.603893220424652,0.796293795108795,0.0350566320121288,-0.510677397251129,0.824604988098145,0.2433822453022,-0.402376711368561,0.904547929763794,0.14101730287075,-0.603893220424652,0.796293795108795,0.0350566320121288,-0.447266519069672,0.811517298221588,0.376021564006805,-0.402376711368561,0.904547929763794,0.14101730287075,-0.510677397251129,0.824604988098145,0.2433822453022,-0.447266519069672,0.811517298221588,0.376021564006805,-0.430502235889435,0.774951934814453,0.46272811293602,-0.338832646608353,0.869447946548462,0.359517246484756,-0.814192414283752,0.533007502555847,-0.23020350933075,-0.630202114582062,0.564126014709473,-0.533485651016235,-0.638030290603638,0.697694361209869,-0.32579094171524,-0.627736568450928,0.493151485919952,-0.602285802364349,-0.630202114582062,0.564126014709473,-0.533485651016235,-0.696980059146881,0.475876659154892,-0.536432683467865,-0.627736568450928,0.493151485919952,-0.602285802364349, +-0.678873360157013,0.519958853721619,-0.518433749675751,-0.554052531719208,0.662670612335205,-0.503878235816956,-0.886763095855713,0.441516071557999,-0.136801794171333,-0.863153576850891,0.484913676977158,-0.14079961180687,-0.744093775749207,0.615235924720764,-0.260401874780655,-0.785852015018463,0.512047588825226,-0.346761971712112,-0.622770428657532,0.673104882240295,-0.398856699466705,-0.678873360157013,0.519958853721619,-0.518433749675751,-0.785852015018463,0.512047588825226,-0.346761971712112,-0.886763095855713,0.441516071557999,-0.136801794171333,-0.744093775749207,0.615235924720764,-0.260401874780655,-0.743743181228638,0.658698499202728,-0.113851748406887,-0.903573036193848,0.409107267856598,-0.127227619290352,-0.825754821300507,0.561627566814423,0.0519934110343456,-0.903573036193848,0.409107267856598,-0.127227619290352,-0.863153576850891,0.484913676977158,-0.14079961180687,-0.912617921829224,0.401735037565231,-0.075745977461338,-0.607993245124817,0.789517343044281,0.0837044268846512,-0.638006210327148,0.76905369758606,0.0387859642505646,-0.727232575416565,0.68174946308136,0.0796884596347809,-0.831534564495087,0.519193172454834,0.197454869747162,-0.727232575416565,0.68174946308136,0.0796884596347809,-0.825754821300507,0.561627566814423,0.0519934110343456,-0.607993245124817,0.789517343044281,0.0837044268846512,-0.756713509559631,0.625496089458466,0.19010303914547,-0.645187854766846,0.742967367172241,0.178134694695473,-0.59125554561615,0.74979442358017,0.297026872634888,-0.483467608690262,0.866759955883026,0.122418120503426,-0.645187854766846,0.742967367172241,0.178134694695473,-0.59125554561615,0.74979442358017,0.297026872634888,-0.527914762496948,0.751102924346924,0.396421790122986,-0.365489274263382,0.890561699867249,0.270771861076355,-0.393343806266785,0.781876862049103,0.483682930469513,-0.365489274263382,0.890561699867249,0.270771861076355,-0.527914762496948,0.751102924346924,0.396421790122986,-0.354705095291138,0.804099023342133,0.477083891630173,-0.430502235889435,0.774951934814453,0.46272811293602,-0.484707087278366,0.6889808177948,0.538854658603668, +-0.457095474004745,0.660814166069031,0.595305144786835,-0.41024461388588,0.689444839954376,0.596963167190552,-0.412866532802582,0.728958606719971,0.546040534973145,-0.412866532802582,0.728958606719971,0.546040534973145,-0.484707087278366,0.6889808177948,0.538854658603668,-0.591773986816406,0.604174196720123,0.533644914627075,-0.457095474004745,0.660814166069031,0.595305144786835,-0.478623420000076,0.617849171161652,0.62384444475174,-0.41024461388588,0.689444839954376,0.596963167190552,-0.478623420000076,0.617849171161652,0.62384444475174,-0.554703950881958,0.55096834897995,0.623487949371338,-0.601378679275513,0.5855553150177,0.543570101261139,-0.691119074821472,0.687875092029572,0.221770718693733,-0.601378679275513,0.5855553150177,0.543570101261139,-0.755474090576172,0.61356508731842,0.229775130748749,-0.691119074821472,0.687875092029572,0.221770718693733,-0.755474090576172,0.61356508731842,0.229775130748749,-0.814192414283752,0.533007502555847,-0.23020350933075,-0.542308926582336,0.833532869815826,-0.105469949543476,-0.494522094726563,0.838943779468536,-0.227202832698822,-0.697091162204742,0.714060544967651,-0.0646629333496094,-0.697091162204742,0.714060544967651,-0.0646629333496094,-0.603893220424652,0.796293795108795,0.0350566320121288,-0.542308926582336,0.833532869815826,-0.105469949543476,-0.642782986164093,0.730031371116638,0.232129484415054,-0.510677397251129,0.824604988098145,0.2433822453022,-0.603893220424652,0.796293795108795,0.0350566320121288,-0.447266519069672,0.811517298221588,0.376021564006805,-0.510677397251129,0.824604988098145,0.2433822453022,-0.54690021276474,0.690903007984161,0.472813934087753,-0.447266519069672,0.811517298221588,0.376021564006805,-0.514214158058167,0.68013995885849,0.522487580776215,-0.430502235889435,0.774951934814453,0.46272811293602,-0.814192414283752,0.533007502555847,-0.23020350933075,-0.696980059146881,0.475876659154892,-0.536432683467865,-0.630202114582062,0.564126014709473,-0.533485651016235,-0.627736568450928,0.493151485919952,-0.602285802364349,-0.696980059146881,0.475876659154892,-0.536432683467865, +-0.699134290218353,0.362130582332611,-0.616500198841095,-0.678873360157013,0.519958853721619,-0.518433749675751,-0.627736568450928,0.493151485919952,-0.602285802364349,-0.712019205093384,0.335706382989883,-0.616708755493164,-0.863153576850891,0.484913676977158,-0.14079961180687,-0.886763095855713,0.441516071557999,-0.136801794171333,-0.912617921829224,0.401735037565231,-0.075745977461338,-0.678873360157013,0.519958853721619,-0.518433749675751,-0.804954588413239,0.368667602539063,-0.464900195598602,-0.785852015018463,0.512047588825226,-0.346761971712112,-0.886763095855713,0.441516071557999,-0.136801794171333,-0.785852015018463,0.512047588825226,-0.346761971712112,-0.878041326999664,0.383594304323196,-0.286179512739182,-0.908555328845978,0.413253426551819,0.0612266510725021,-0.825754821300507,0.561627566814423,0.0519934110343456,-0.903573036193848,0.409107267856598,-0.127227619290352,-0.912617921829224,0.401735037565231,-0.075745977461338,-0.909762442111969,0.381525039672852,-0.163618206977844,-0.903573036193848,0.409107267856598,-0.127227619290352,-0.727232575416565,0.68174946308136,0.0796884596347809,-0.756713509559631,0.625496089458466,0.19010303914547,-0.607993245124817,0.789517343044281,0.0837044268846512,-0.831534564495087,0.519193172454834,0.197454869747162,-0.756713509559631,0.625496089458466,0.19010303914547,-0.727232575416565,0.68174946308136,0.0796884596347809,-0.831534564495087,0.519193172454834,0.197454869747162,-0.825754821300507,0.561627566814423,0.0519934110343456,-0.908555328845978,0.413253426551819,0.0612266510725021,-0.756713509559631,0.625496089458466,0.19010303914547,-0.747261881828308,0.574509859085083,0.333972990512848,-0.645187854766846,0.742967367172241,0.178134694695473,-0.645187854766846,0.742967367172241,0.178134694695473,-0.747261881828308,0.574509859085083,0.333972990512848,-0.59125554561615,0.74979442358017,0.297026872634888,-0.59125554561615,0.74979442358017,0.297026872634888,-0.692561268806458,0.592852056026459,0.410956561565399,-0.527914762496948,0.751102924346924,0.396421790122986, +-0.569938480854034,0.582862854003906,0.579172551631927,-0.393343806266785,0.781876862049103,0.483682930469513,-0.527914762496948,0.751102924346924,0.396421790122986,-0.484707087278366,0.6889808177948,0.538854658603668,-0.430502235889435,0.774951934814453,0.46272811293602,-0.514214158058167,0.68013995885849,0.522487580776215,-0.412866532802582,0.728958606719971,0.546040534973145,-0.591773986816406,0.604174196720123,0.533644914627075,-0.457095474004745,0.660814166069031,0.595305144786835,-0.594362735748291,0.535297274589539,0.600157916545868,-0.591773986816406,0.604174196720123,0.533644914627075,-0.484707087278366,0.6889808177948,0.538854658603668,-0.457095474004745,0.660814166069031,0.595305144786835,-0.514197111129761,0.581339240074158,0.630591750144959,-0.478623420000076,0.617849171161652,0.62384444475174,-0.531522333621979,0.523859798908234,0.665623545646667,-0.554703950881958,0.55096834897995,0.623487949371338,-0.478623420000076,0.617849171161652,0.62384444475174,-0.638404786586761,0.609480500221252,0.470077335834503,-0.601378679275513,0.5855553150177,0.543570101261139,-0.554703950881958,0.55096834897995,0.623487949371338,-0.755474090576172,0.61356508731842,0.229775130748749,-0.601378679275513,0.5855553150177,0.543570101261139,-0.638404786586761,0.609480500221252,0.470077335834503,-0.814192414283752,0.533007502555847,-0.23020350933075,-0.755474090576172,0.61356508731842,0.229775130748749,-0.783788502216339,0.576693952083588,-0.23043292760849,-0.759460151195526,0.648945569992065,-0.0457150898873806,-0.603893220424652,0.796293795108795,0.0350566320121288,-0.697091162204742,0.714060544967651,-0.0646629333496094,-0.642782986164093,0.730031371116638,0.232129484415054,-0.54690021276474,0.690903007984161,0.472813934087753,-0.510677397251129,0.824604988098145,0.2433822453022,-0.642782986164093,0.730031371116638,0.232129484415054,-0.603893220424652,0.796293795108795,0.0350566320121288,-0.716281175613403,0.697720587253571,0.0112787801772356,-0.537679851055145,0.64575320482254,0.542128205299377,-0.447266519069672,0.811517298221588,0.376021564006805, +-0.54690021276474,0.690903007984161,0.472813934087753,-0.537679851055145,0.64575320482254,0.542128205299377,-0.514214158058167,0.68013995885849,0.522487580776215,-0.447266519069672,0.811517298221588,0.376021564006805,-0.814192414283752,0.533007502555847,-0.23020350933075,-0.783788502216339,0.576693952083588,-0.23043292760849,-0.696980059146881,0.475876659154892,-0.536432683467865,-0.727375626564026,0.413124620914459,-0.547953069210052,-0.699134290218353,0.362130582332611,-0.616500198841095,-0.696980059146881,0.475876659154892,-0.536432683467865,-0.699134290218353,0.362130582332611,-0.616500198841095,-0.712019205093384,0.335706382989883,-0.616708755493164,-0.627736568450928,0.493151485919952,-0.602285802364349,-0.678873360157013,0.519958853721619,-0.518433749675751,-0.712019205093384,0.335706382989883,-0.616708755493164,-0.804954588413239,0.368667602539063,-0.464900195598602,-0.886763095855713,0.441516071557999,-0.136801794171333,-0.907455146312714,0.394051611423492,-0.145768478512764,-0.912617921829224,0.401735037565231,-0.075745977461338,-0.878041326999664,0.383594304323196,-0.286179512739182,-0.785852015018463,0.512047588825226,-0.346761971712112,-0.804954588413239,0.368667602539063,-0.464900195598602,-0.878041326999664,0.383594304323196,-0.286179512739182,-0.907455146312714,0.394051611423492,-0.145768478512764,-0.886763095855713,0.441516071557999,-0.136801794171333,-0.908555328845978,0.413253426551819,0.0612266510725021,-0.903573036193848,0.409107267856598,-0.127227619290352,-0.930223882198334,0.355122625827789,-0.0925821289420128,-0.913955330848694,0.401041299104691,-0.0620598830282688,-0.909762442111969,0.381525039672852,-0.163618206977844,-0.912617921829224,0.401735037565231,-0.075745977461338,-0.930223882198334,0.355122625827789,-0.0925821289420128,-0.903573036193848,0.409107267856598,-0.127227619290352,-0.909762442111969,0.381525039672852,-0.163618206977844,-0.831534564495087,0.519193172454834,0.197454869747162,-0.82671070098877,0.454509317874908,0.331618100404739,-0.756713509559631,0.625496089458466,0.19010303914547, +-0.908555328845978,0.413253426551819,0.0612266510725021,-0.879960179328918,0.391819655895233,0.268602520227432,-0.831534564495087,0.519193172454834,0.197454869747162,-0.756713509559631,0.625496089458466,0.19010303914547,-0.82671070098877,0.454509317874908,0.331618100404739,-0.747261881828308,0.574509859085083,0.333972990512848,-0.692561268806458,0.592852056026459,0.410956561565399,-0.59125554561615,0.74979442358017,0.297026872634888,-0.747261881828308,0.574509859085083,0.333972990512848,-0.569938480854034,0.582862854003906,0.579172551631927,-0.527914762496948,0.751102924346924,0.396421790122986,-0.692561268806458,0.592852056026459,0.410956561565399,-0.514214158058167,0.68013995885849,0.522487580776215,-0.594362735748291,0.535297274589539,0.600157916545868,-0.484707087278366,0.6889808177948,0.538854658603668,-0.457095474004745,0.660814166069031,0.595305144786835,-0.591773986816406,0.604174196720123,0.533644914627075,-0.514197111129761,0.581339240074158,0.630591750144959,-0.594362735748291,0.535297274589539,0.600157916545868,-0.684275329113007,0.467060655355453,0.560019254684448,-0.591773986816406,0.604174196720123,0.533644914627075,-0.531522333621979,0.523859798908234,0.665623545646667,-0.478623420000076,0.617849171161652,0.62384444475174,-0.514197111129761,0.581339240074158,0.630591750144959,-0.626756727695465,0.449592858552933,0.636429190635681,-0.554703950881958,0.55096834897995,0.623487949371338,-0.531522333621979,0.523859798908234,0.665623545646667,-0.626756727695465,0.449592858552933,0.636429190635681,-0.638404786586761,0.609480500221252,0.470077335834503,-0.554703950881958,0.55096834897995,0.623487949371338,-0.755474090576172,0.61356508731842,0.229775130748749,-0.638404786586761,0.609480500221252,0.470077335834503,-0.807212650775909,0.579784035682678,-0.110716037452221,-0.783788502216339,0.576693952083588,-0.23043292760849,-0.755474090576172,0.61356508731842,0.229775130748749,-0.807212650775909,0.579784035682678,-0.110716037452221,-0.716281175613403,0.697720587253571,0.0112787801772356,-0.603893220424652,0.796293795108795,0.0350566320121288, +-0.759460151195526,0.648945569992065,-0.0457150898873806,-0.826712250709534,0.562068462371826,0.0250152181833982,-0.759460151195526,0.648945569992065,-0.0457150898873806,-0.697091162204742,0.714060544967651,-0.0646629333496094,-0.642782986164093,0.730031371116638,0.232129484415054,-0.636188566684723,0.596156179904938,0.489756792783737,-0.54690021276474,0.690903007984161,0.472813934087753,-0.642782986164093,0.730031371116638,0.232129484415054,-0.716281175613403,0.697720587253571,0.0112787801772356,-0.731339931488037,0.616295576095581,0.292098462581635,-0.537679851055145,0.64575320482254,0.542128205299377,-0.54690021276474,0.690903007984161,0.472813934087753,-0.613558113574982,0.495958298444748,0.614468574523926,-0.537679851055145,0.64575320482254,0.542128205299377,-0.594362735748291,0.535297274589539,0.600157916545868,-0.514214158058167,0.68013995885849,0.522487580776215,-0.696980059146881,0.475876659154892,-0.536432683467865,-0.783788502216339,0.576693952083588,-0.23043292760849,-0.807212650775909,0.579784035682678,-0.110716037452221,-0.727375626564026,0.413124620914459,-0.547953069210052,-0.711876213550568,0.354425936937332,-0.606312036514282,-0.699134290218353,0.362130582332611,-0.616500198841095,-0.807212650775909,0.579784035682678,-0.110716037452221,-0.727375626564026,0.413124620914459,-0.547953069210052,-0.696980059146881,0.475876659154892,-0.536432683467865,-0.711876213550568,0.354425936937332,-0.606312036514282,-0.712019205093384,0.335706382989883,-0.616708755493164,-0.699134290218353,0.362130582332611,-0.616500198841095,-0.76868736743927,0.342073708772659,-0.540467500686646,-0.804954588413239,0.368667602539063,-0.464900195598602,-0.712019205093384,0.335706382989883,-0.616708755493164,-0.907455146312714,0.394051611423492,-0.145768478512764,-0.921993851661682,0.364946484565735,-0.129388064146042,-0.912617921829224,0.401735037565231,-0.075745977461338,-0.878041326999664,0.383594304323196,-0.286179512739182,-0.804954588413239,0.368667602539063,-0.464900195598602,-0.865217506885529,0.356070399284363,-0.35300475358963, +-0.878041326999664,0.383594304323196,-0.286179512739182,-0.865217506885529,0.356070399284363,-0.35300475358963,-0.907455146312714,0.394051611423492,-0.145768478512764,-0.908555328845978,0.413253426551819,0.0612266510725021,-0.930223882198334,0.355122625827789,-0.0925821289420128,-0.940869092941284,0.32989889383316,0.0770190358161926,-0.930223882198334,0.355122625827789,-0.0925821289420128,-0.909762442111969,0.381525039672852,-0.163618206977844,-0.913955330848694,0.401041299104691,-0.0620598830282688,-0.912617921829224,0.401735037565231,-0.075745977461338,-0.921993851661682,0.364946484565735,-0.129388064146042,-0.913955330848694,0.401041299104691,-0.0620598830282688,-0.831534564495087,0.519193172454834,0.197454869747162,-0.879960179328918,0.391819655895233,0.268602520227432,-0.82671070098877,0.454509317874908,0.331618100404739,-0.908555328845978,0.413253426551819,0.0612266510725021,-0.940869092941284,0.32989889383316,0.0770190358161926,-0.879960179328918,0.391819655895233,0.268602520227432,-0.82671070098877,0.454509317874908,0.331618100404739,-0.773263096809387,0.466952174901962,0.428975164890289,-0.747261881828308,0.574509859085083,0.333972990512848,-0.692561268806458,0.592852056026459,0.410956561565399,-0.747261881828308,0.574509859085083,0.333972990512848,-0.773263096809387,0.466952174901962,0.428975164890289,-0.692561268806458,0.592852056026459,0.410956561565399,-0.773263096809387,0.466952174901962,0.428975164890289,-0.569938480854034,0.582862854003906,0.579172551631927,-0.635455965995789,0.519675195217133,0.57108074426651,-0.514197111129761,0.581339240074158,0.630591750144959,-0.591773986816406,0.604174196720123,0.533644914627075,-0.594362735748291,0.535297274589539,0.600157916545868,-0.629818677902222,0.424934715032578,0.650199115276337,-0.684275329113007,0.467060655355453,0.560019254684448,-0.684275329113007,0.467060655355453,0.560019254684448,-0.721636056900024,0.524755477905273,0.451523095369339,-0.591773986816406,0.604174196720123,0.533644914627075,-0.538081586360931,0.501005470752716,0.677835881710052,-0.531522333621979,0.523859798908234,0.665623545646667, +-0.514197111129761,0.581339240074158,0.630591750144959,-0.626756727695465,0.449592858552933,0.636429190635681,-0.531522333621979,0.523859798908234,0.665623545646667,-0.623916983604431,0.369701713323593,0.688511490821838,-0.638404786586761,0.609480500221252,0.470077335834503,-0.626756727695465,0.449592858552933,0.636429190635681,-0.765925407409668,0.502938449382782,0.40051344037056,-0.807212650775909,0.579784035682678,-0.110716037452221,-0.638404786586761,0.609480500221252,0.470077335834503,-0.765925407409668,0.502938449382782,0.40051344037056,-0.759460151195526,0.648945569992065,-0.0457150898873806,-0.777280211448669,0.625272929668427,-0.0697779282927513,-0.716281175613403,0.697720587253571,0.0112787801772356,-0.826712250709534,0.562068462371826,0.0250152181833982,-0.837123095989227,0.539149165153503,-0.0924279913306236,-0.759460151195526,0.648945569992065,-0.0457150898873806,-0.731339931488037,0.616295576095581,0.292098462581635,-0.636188566684723,0.596156179904938,0.489756792783737,-0.642782986164093,0.730031371116638,0.232129484415054,-0.636188566684723,0.596156179904938,0.489756792783737,-0.613558113574982,0.495958298444748,0.614468574523926,-0.54690021276474,0.690903007984161,0.472813934087753,-0.731339931488037,0.616295576095581,0.292098462581635,-0.716281175613403,0.697720587253571,0.0112787801772356,-0.777280211448669,0.625272929668427,-0.0697779282927513,-0.594362735748291,0.535297274589539,0.600157916545868,-0.537679851055145,0.64575320482254,0.542128205299377,-0.613558113574982,0.495958298444748,0.614468574523926,-0.713283002376556,0.375688850879669,-0.591679871082306,-0.711876213550568,0.354425936937332,-0.606312036514282,-0.727375626564026,0.413124620914459,-0.547953069210052,-0.727375626564026,0.413124620914459,-0.547953069210052,-0.807212650775909,0.579784035682678,-0.110716037452221,-0.841287136077881,0.168122723698616,-0.513780772686005,-0.76868736743927,0.342073708772659,-0.540467500686646,-0.712019205093384,0.335706382989883,-0.616708755493164,-0.711876213550568,0.354425936937332,-0.606312036514282, +-0.76868736743927,0.342073708772659,-0.540467500686646,-0.865217506885529,0.356070399284363,-0.35300475358963,-0.804954588413239,0.368667602539063,-0.464900195598602,-0.907455146312714,0.394051611423492,-0.145768478512764,-0.920221149921417,0.268066257238388,-0.285190224647522,-0.921993851661682,0.364946484565735,-0.129388064146042,-0.865217506885529,0.356070399284363,-0.35300475358963,-0.920221149921417,0.268066257238388,-0.285190224647522,-0.907455146312714,0.394051611423492,-0.145768478512764,-0.913955330848694,0.401041299104691,-0.0620598830282688,-0.940869092941284,0.32989889383316,0.0770190358161926,-0.930223882198334,0.355122625827789,-0.0925821289420128,-0.9719517827034,0.205238476395607,-0.114833451807499,-0.913955330848694,0.401041299104691,-0.0620598830282688,-0.921993851661682,0.364946484565735,-0.129388064146042,-0.82671070098877,0.454509317874908,0.331618100404739,-0.879960179328918,0.391819655895233,0.268602520227432,-0.837619662284851,0.370210558176041,0.401668101549149,-0.879960179328918,0.391819655895233,0.268602520227432,-0.940869092941284,0.32989889383316,0.0770190358161926,-0.903753578662872,0.328458726406097,0.274488925933838,-0.82671070098877,0.454509317874908,0.331618100404739,-0.837619662284851,0.370210558176041,0.401668101549149,-0.773263096809387,0.466952174901962,0.428975164890289,-0.569938480854034,0.582862854003906,0.579172551631927,-0.773263096809387,0.466952174901962,0.428975164890289,-0.687473833560944,0.431083887815475,0.58441960811615,-0.538081586360931,0.501005470752716,0.677835881710052,-0.514197111129761,0.581339240074158,0.630591750144959,-0.635455965995789,0.519675195217133,0.57108074426651,-0.591773986816406,0.604174196720123,0.533644914627075,-0.721636056900024,0.524755477905273,0.451523095369339,-0.635455965995789,0.519675195217133,0.57108074426651,-0.594362735748291,0.535297274589539,0.600157916545868,-0.613558113574982,0.495958298444748,0.614468574523926,-0.629818677902222,0.424934715032578,0.650199115276337,-0.629818677902222,0.424934715032578,0.650199115276337,-0.670331180095673,0.388257473707199,0.632386028766632, +-0.684275329113007,0.467060655355453,0.560019254684448,-0.748320162296295,0.452922195196152,0.484642416238785,-0.721636056900024,0.524755477905273,0.451523095369339,-0.684275329113007,0.467060655355453,0.560019254684448,-0.623916983604431,0.369701713323593,0.688511490821838,-0.531522333621979,0.523859798908234,0.665623545646667,-0.538081586360931,0.501005470752716,0.677835881710052,-0.623916983604431,0.369701713323593,0.688511490821838,-0.734534561634064,0.260412245988846,0.626613438129425,-0.626756727695465,0.449592858552933,0.636429190635681,-0.626756727695465,0.449592858552933,0.636429190635681,-0.832204818725586,0.0117124086245894,0.554344415664673,-0.765925407409668,0.502938449382782,0.40051344037056,-0.765925407409668,0.502938449382782,0.40051344037056,-0.916919946670532,0.297927707433701,0.26551228761673,-0.807212650775909,0.579784035682678,-0.110716037452221,-0.759460151195526,0.648945569992065,-0.0457150898873806,-0.837123095989227,0.539149165153503,-0.0924279913306236,-0.777280211448669,0.625272929668427,-0.0697779282927513,-0.731339931488037,0.616295576095581,0.292098462581635,-0.613558113574982,0.495958298444748,0.614468574523926,-0.636188566684723,0.596156179904938,0.489756792783737,-0.731339931488037,0.616295576095581,0.292098462581635,-0.777280211448669,0.625272929668427,-0.0697779282927513,-0.814803779125214,0.573367893695831,0.0856967568397522,-0.76868736743927,0.342073708772659,-0.540467500686646,-0.711876213550568,0.354425936937332,-0.606312036514282,-0.713283002376556,0.375688850879669,-0.591679871082306,-0.713283002376556,0.375688850879669,-0.591679871082306,-0.727375626564026,0.413124620914459,-0.547953069210052,-0.820861876010895,-0.00331404758617282,-0.571117103099823,-0.910565853118896,-0.379725903272629,-0.163333669304848,-0.841287136077881,0.168122723698616,-0.513780772686005,-0.807212650775909,0.579784035682678,-0.110716037452221,-0.820861876010895,-0.00331404758617282,-0.571117103099823,-0.727375626564026,0.413124620914459,-0.547953069210052,-0.841287136077881,0.168122723698616,-0.513780772686005, +-0.852658867835999,0.309703350067139,-0.420780599117279,-0.865217506885529,0.356070399284363,-0.35300475358963,-0.76868736743927,0.342073708772659,-0.540467500686646,-0.921993851661682,0.364946484565735,-0.129388064146042,-0.920221149921417,0.268066257238388,-0.285190224647522,-0.967003703117371,-0.0359421595931053,-0.252214103937149,-0.852658867835999,0.309703350067139,-0.420780599117279,-0.920221149921417,0.268066257238388,-0.285190224647522,-0.865217506885529,0.356070399284363,-0.35300475358963,-0.984268188476563,0.176666036248207,-0.00226434180513024,-0.940869092941284,0.32989889383316,0.0770190358161926,-0.913955330848694,0.401041299104691,-0.0620598830282688,-0.984268188476563,0.176666036248207,-0.00226434180513024,-0.913955330848694,0.401041299104691,-0.0620598830282688,-0.9719517827034,0.205238476395607,-0.114833451807499,-0.9719517827034,0.205238476395607,-0.114833451807499,-0.921993851661682,0.364946484565735,-0.129388064146042,-0.967003703117371,-0.0359421595931053,-0.252214103937149,-0.860878348350525,0.315251529216766,0.399380505084991,-0.837619662284851,0.370210558176041,0.401668101549149,-0.879960179328918,0.391819655895233,0.268602520227432,-0.943506300449371,0.199307754635811,0.264711439609528,-0.903753578662872,0.328458726406097,0.274488925933838,-0.940869092941284,0.32989889383316,0.0770190358161926,-0.903753578662872,0.328458726406097,0.274488925933838,-0.860878348350525,0.315251529216766,0.399380505084991,-0.879960179328918,0.391819655895233,0.268602520227432,-0.837619662284851,0.370210558176041,0.401668101549149,-0.810965895652771,0.361705422401428,0.459894955158234,-0.773263096809387,0.466952174901962,0.428975164890289,-0.773263096809387,0.466952174901962,0.428975164890289,-0.810965895652771,0.361705422401428,0.459894955158234,-0.687473833560944,0.431083887815475,0.58441960811615,-0.599224627017975,0.397645026445389,0.694843947887421,-0.538081586360931,0.501005470752716,0.677835881710052,-0.635455965995789,0.519675195217133,0.57108074426651,-0.757172107696533,0.429725855588913,0.491961300373077, +-0.635455965995789,0.519675195217133,0.57108074426651,-0.721636056900024,0.524755477905273,0.451523095369339,-0.670331180095673,0.388257473707199,0.632386028766632,-0.629818677902222,0.424934715032578,0.650199115276337,-0.613558113574982,0.495958298444748,0.614468574523926,-0.748320162296295,0.452922195196152,0.484642416238785,-0.684275329113007,0.467060655355453,0.560019254684448,-0.670331180095673,0.388257473707199,0.632386028766632,-0.748320162296295,0.452922195196152,0.484642416238785,-0.757172107696533,0.429725855588913,0.491961300373077,-0.721636056900024,0.524755477905273,0.451523095369339,-0.599224627017975,0.397645026445389,0.694843947887421,-0.623916983604431,0.369701713323593,0.688511490821838,-0.538081586360931,0.501005470752716,0.677835881710052,-0.623916983604431,0.369701713323593,0.688511490821838,-0.741093337535858,-0.177979737520218,0.647382318973541,-0.734534561634064,0.260412245988846,0.626613438129425,-0.734534561634064,0.260412245988846,0.626613438129425,-0.832204818725586,0.0117124086245894,0.554344415664673,-0.626756727695465,0.449592858552933,0.636429190635681,-0.765925407409668,0.502938449382782,0.40051344037056,-0.832204818725586,0.0117124086245894,0.554344415664673,-0.916919946670532,0.297927707433701,0.26551228761673,-0.910565853118896,-0.379725903272629,-0.163333669304848,-0.807212650775909,0.579784035682678,-0.110716037452221,-0.916919946670532,0.297927707433701,0.26551228761673,-0.814803779125214,0.573367893695831,0.0856967568397522,-0.777280211448669,0.625272929668427,-0.0697779282927513,-0.837123095989227,0.539149165153503,-0.0924279913306236,-0.686486005783081,0.450773566961288,0.570561110973358,-0.613558113574982,0.495958298444748,0.614468574523926,-0.731339931488037,0.616295576095581,0.292098462581635,-0.731339931488037,0.616295576095581,0.292098462581635,-0.814803779125214,0.573367893695831,0.0856967568397522,-0.686486005783081,0.450773566961288,0.570561110973358,-0.852658867835999,0.309703350067139,-0.420780599117279,-0.76868736743927,0.342073708772659,-0.540467500686646,-0.713283002376556,0.375688850879669,-0.591679871082306, +-0.820861876010895,-0.00331404758617282,-0.571117103099823,-0.867374897003174,0.131990298628807,-0.479832500219345,-0.713283002376556,0.375688850879669,-0.591679871082306,-0.920221149921417,0.268066257238388,-0.285190224647522,-0.936037838459015,-0.186424568295479,-0.298461079597473,-0.967003703117371,-0.0359421595931053,-0.252214103937149,-0.852658867835999,0.309703350067139,-0.420780599117279,-0.936037838459015,-0.186424568295479,-0.298461079597473,-0.920221149921417,0.268066257238388,-0.285190224647522,-0.984268188476563,0.176666036248207,-0.00226434180513024,-0.991604447364807,0.0703159272670746,0.108518116176128,-0.940869092941284,0.32989889383316,0.0770190358161926,-0.84281188249588,0.310953408479691,0.439290285110474,-0.837619662284851,0.370210558176041,0.401668101549149,-0.860878348350525,0.315251529216766,0.399380505084991,-0.943506300449371,0.199307754635811,0.264711439609528,-0.860878348350525,0.315251529216766,0.399380505084991,-0.903753578662872,0.328458726406097,0.274488925933838,-0.943506300449371,0.199307754635811,0.264711439609528,-0.940869092941284,0.32989889383316,0.0770190358161926,-0.991604447364807,0.0703159272670746,0.108518116176128,-0.810965895652771,0.361705422401428,0.459894955158234,-0.837619662284851,0.370210558176041,0.401668101549149,-0.84281188249588,0.310953408479691,0.439290285110474,-0.669587969779968,0.393629103899002,0.629847526550293,-0.599224627017975,0.397645026445389,0.694843947887421,-0.635455965995789,0.519675195217133,0.57108074426651,-0.669587969779968,0.393629103899002,0.629847526550293,-0.635455965995789,0.519675195217133,0.57108074426651,-0.757172107696533,0.429725855588913,0.491961300373077,-0.670331180095673,0.388257473707199,0.632386028766632,-0.613558113574982,0.495958298444748,0.614468574523926,-0.686486005783081,0.450773566961288,0.570561110973358,-0.748320162296295,0.452922195196152,0.484642416238785,-0.670331180095673,0.388257473707199,0.632386028766632,-0.789606869220734,0.237437888979912,0.565812766551971,-0.789606869220734,0.237437888979912,0.565812766551971, +-0.757172107696533,0.429725855588913,0.491961300373077,-0.748320162296295,0.452922195196152,0.484642416238785,-0.599224627017975,0.397645026445389,0.694843947887421,-0.628655791282654,0.219621390104294,0.746028363704681,-0.623916983604431,0.369701713323593,0.688511490821838,-0.623916983604431,0.369701713323593,0.688511490821838,-0.628655791282654,0.219621390104294,0.746028363704681,-0.741093337535858,-0.177979737520218,0.647382318973541,-0.741093337535858,-0.177979737520218,0.647382318973541,-0.765731811523438,-0.174125760793686,0.619140386581421,-0.734534561634064,0.260412245988846,0.626613438129425,-0.765731811523438,-0.174125760793686,0.619140386581421,-0.832204818725586,0.0117124086245894,0.554344415664673,-0.734534561634064,0.260412245988846,0.626613438129425,-0.916919946670532,0.297927707433701,0.26551228761673,-0.832204818725586,0.0117124086245894,0.554344415664673,-0.897202432155609,-0.398109018802643,0.191146120429039,-0.910565853118896,-0.379725903272629,-0.163333669304848,-0.916919946670532,0.297927707433701,0.26551228761673,-0.897202432155609,-0.398109018802643,0.191146120429039,-0.88364577293396,0.459642916917801,-0.0888729020953178,-0.814803779125214,0.573367893695831,0.0856967568397522,-0.837123095989227,0.539149165153503,-0.0924279913306236,-0.814803779125214,0.573367893695831,0.0856967568397522,-0.848453640937805,0.441597938537598,0.291749149560928,-0.686486005783081,0.450773566961288,0.570561110973358,-0.852658867835999,0.309703350067139,-0.420780599117279,-0.713283002376556,0.375688850879669,-0.591679871082306,-0.867374897003174,0.131990298628807,-0.479832500219345,-0.867374897003174,0.131990298628807,-0.479832500219345,-0.936037838459015,-0.186424568295479,-0.298461079597473,-0.852658867835999,0.309703350067139,-0.420780599117279,-0.84281188249588,0.310953408479691,0.439290285110474,-0.860878348350525,0.315251529216766,0.399380505084991,-0.864578425884247,0.22791063785553,0.447840124368668,-0.885355532169342,0.161656454205513,0.43590435385704,-0.860878348350525,0.315251529216766,0.399380505084991, +-0.943506300449371,0.199307754635811,0.264711439609528,-0.835808515548706,0.270195215940475,0.477931559085846,-0.810965895652771,0.361705422401428,0.459894955158234,-0.84281188249588,0.310953408479691,0.439290285110474,-0.669587969779968,0.393629103899002,0.629847526550293,-0.722520768642426,0.178012147545815,0.668038308620453,-0.599224627017975,0.397645026445389,0.694843947887421,-0.669587969779968,0.393629103899002,0.629847526550293,-0.757172107696533,0.429725855588913,0.491961300373077,-0.722520768642426,0.178012147545815,0.668038308620453,-0.670331180095673,0.388257473707199,0.632386028766632,-0.686486005783081,0.450773566961288,0.570561110973358,-0.713029801845551,0.200144454836845,0.671960175037384,-0.778876483440399,-0.0179379098117352,0.626920640468597,-0.789606869220734,0.237437888979912,0.565812766551971,-0.670331180095673,0.388257473707199,0.632386028766632,-0.722520768642426,0.178012147545815,0.668038308620453,-0.757172107696533,0.429725855588913,0.491961300373077,-0.789606869220734,0.237437888979912,0.565812766551971,-0.722520768642426,0.178012147545815,0.668038308620453,-0.628655791282654,0.219621390104294,0.746028363704681,-0.599224627017975,0.397645026445389,0.694843947887421,-0.741093337535858,-0.177979737520218,0.647382318973541,-0.628655791282654,0.219621390104294,0.746028363704681,-0.667150020599365,-0.197761848568916,0.71819281578064,-0.848453640937805,0.441597938537598,0.291749149560928,-0.814803779125214,0.573367893695831,0.0856967568397522,-0.88364577293396,0.459642916917801,-0.0888729020953178,-0.889898777008057,0.440375208854675,-0.118952594697475,-0.88364577293396,0.459642916917801,-0.0888729020953178,-0.837123095989227,0.539149165153503,-0.0924279913306236,-0.82858282327652,0.278506189584732,0.485679596662521,-0.686486005783081,0.450773566961288,0.570561110973358,-0.848453640937805,0.441597938537598,0.291749149560928,-0.885355532169342,0.161656454205513,0.43590435385704,-0.864578425884247,0.22791063785553,0.447840124368668,-0.860878348350525,0.315251529216766,0.399380505084991,-0.835808515548706,0.270195215940475,0.477931559085846, +-0.84281188249588,0.310953408479691,0.439290285110474,-0.864578425884247,0.22791063785553,0.447840124368668,-0.713029801845551,0.200144454836845,0.671960175037384,-0.686486005783081,0.450773566961288,0.570561110973358,-0.713410079479218,0.308832466602325,0.629021763801575,-0.778876483440399,-0.0179379098117352,0.626920640468597,-0.670331180095673,0.388257473707199,0.632386028766632,-0.713029801845551,0.200144454836845,0.671960175037384,-0.778876483440399,-0.0179379098117352,0.626920640468597,-0.702633321285248,-0.391317784786224,0.594286680221558,-0.789606869220734,0.237437888979912,0.565812766551971,-0.789606869220734,0.237437888979912,0.565812766551971,-0.745780527591705,-0.176506251096725,0.642383635044098,-0.722520768642426,0.178012147545815,0.668038308620453,-0.722520768642426,0.178012147545815,0.668038308620453,-0.667150020599365,-0.197761848568916,0.71819281578064,-0.628655791282654,0.219621390104294,0.746028363704681,-0.949942231178284,0.293792009353638,0.106282070279121,-0.848453640937805,0.441597938537598,0.291749149560928,-0.88364577293396,0.459642916917801,-0.0888729020953178,-0.933716356754303,0.321175456047058,-0.158177345991135,-0.88364577293396,0.459642916917801,-0.0888729020953178,-0.889898777008057,0.440375208854675,-0.118952594697475,-0.713410079479218,0.308832466602325,0.629021763801575,-0.686486005783081,0.450773566961288,0.570561110973358,-0.82858282327652,0.278506189584732,0.485679596662521,-0.82858282327652,0.278506189584732,0.485679596662521,-0.848453640937805,0.441597938537598,0.291749149560928,-0.949942231178284,0.293792009353638,0.106282070279121,-0.713029801845551,0.200144454836845,0.671960175037384,-0.713410079479218,0.308832466602325,0.629021763801575,-0.813506364822388,0.0852747336030006,0.575269877910614,-0.778876483440399,-0.0179379098117352,0.626920640468597,-0.713029801845551,0.200144454836845,0.671960175037384,-0.719047248363495,-0.409671664237976,0.561373353004456,-0.789606869220734,0.237437888979912,0.565812766551971,-0.702633321285248,-0.391317784786224,0.594286680221558,-0.745780527591705,-0.176506251096725,0.642383635044098, +-0.667200982570648,-0.338361233472824,0.663591980934143,-0.722520768642426,0.178012147545815,0.668038308620453,-0.745780527591705,-0.176506251096725,0.642383635044098,-0.667150020599365,-0.197761848568916,0.71819281578064,-0.722520768642426,0.178012147545815,0.668038308620453,-0.667200982570648,-0.338361233472824,0.663591980934143,-0.933716356754303,0.321175456047058,-0.158177345991135,-0.949942231178284,0.293792009353638,0.106282070279121,-0.88364577293396,0.459642916917801,-0.0888729020953178,-0.933716356754303,0.321175456047058,-0.158177345991135,-0.889898777008057,0.440375208854675,-0.118952594697475,-0.929311275482178,0.354592204093933,-0.103173717856407,-0.813506364822388,0.0852747336030006,0.575269877910614,-0.713410079479218,0.308832466602325,0.629021763801575,-0.82858282327652,0.278506189584732,0.485679596662521,-0.958584785461426,-0.0112978862598538,0.284583061933517,-0.82858282327652,0.278506189584732,0.485679596662521,-0.949942231178284,0.293792009353638,0.106282070279121,-0.749906182289124,-0.230599239468575,0.62005215883255,-0.713029801845551,0.200144454836845,0.671960175037384,-0.813506364822388,0.0852747336030006,0.575269877910614,-0.719047248363495,-0.409671664237976,0.561373353004456,-0.713029801845551,0.200144454836845,0.671960175037384,-0.749906182289124,-0.230599239468575,0.62005215883255,-0.949942231178284,0.293792009353638,0.106282070279121,-0.933716356754303,0.321175456047058,-0.158177345991135,-0.996174931526184,0.0787942782044411,-0.0377738326787949,-0.998259961605072,-0.013540924526751,-0.0573895014822483,-0.933716356754303,0.321175456047058,-0.158177345991135,-0.929311275482178,0.354592204093933,-0.103173717856407,-0.813506364822388,0.0852747336030006,0.575269877910614,-0.82858282327652,0.278506189584732,0.485679596662521,-0.958584785461426,-0.0112978862598538,0.284583061933517,-0.958584785461426,-0.0112978862598538,0.284583061933517,-0.949942231178284,0.293792009353638,0.106282070279121,-0.996174931526184,0.0787942782044411,-0.0377738326787949,-0.817351520061493,-0.382236450910568,0.431081920862198, +-0.749906182289124,-0.230599239468575,0.62005215883255,-0.813506364822388,0.0852747336030006,0.575269877910614,-0.998259961605072,-0.013540924526751,-0.0573895014822483,-0.996174931526184,0.0787942782044411,-0.0377738326787949,-0.933716356754303,0.321175456047058,-0.158177345991135,-0.817351520061493,-0.382236450910568,0.431081920862198,-0.813506364822388,0.0852747336030006,0.575269877910614,-0.958584785461426,-0.0112978862598538,0.284583061933517,-0.933851182460785,-0.357451200485229,0.0122708939015865,-0.958584785461426,-0.0112978862598538,0.284583061933517,-0.996174931526184,0.0787942782044411,-0.0377738326787949,-0.998259961605072,-0.013540924526751,-0.0573895014822483,-0.933851182460785,-0.357451200485229,0.0122708939015865,-0.996174931526184,0.0787942782044411,-0.0377738326787949,-0.81661194562912,-0.534337103366852,0.218239933252335,-0.817351520061493,-0.382236450910568,0.431081920862198,-0.958584785461426,-0.0112978862598538,0.284583061933517,-0.933851182460785,-0.357451200485229,0.0122708939015865,-0.81661194562912,-0.534337103366852,0.218239933252335,-0.958584785461426,-0.0112978862598538,0.284583061933517,-0.727229475975037,0.615613043308258,-0.3035748898983,-0.762988388538361,0.592454969882965,-0.258545219898224,-0.900277554988861,0.108949683606625,-0.421461969614029,-0.727229475975037,0.615613043308258,-0.3035748898983,-0.441150099039078,0.873744785785675,-0.20483286678791,-0.762988388538361,0.592454969882965,-0.258545219898224,-0.900277554988861,0.108949683606625,-0.421461969614029,-0.762988388538361,0.592454969882965,-0.258545219898224,-0.728179275989532,0.354772955179214,-0.586422145366669,-0.917006254196167,0.183092817664146,-0.354367733001709,-0.727229475975037,0.615613043308258,-0.3035748898983,-0.900277554988861,0.108949683606625,-0.421461969614029,-0.473748475313187,0.844521284103394,-0.249691903591156,-0.441150099039078,0.873744785785675,-0.20483286678791,-0.727229475975037,0.615613043308258,-0.3035748898983,-0.578603863716125,0.75402307510376,-0.31091246008873,-0.762988388538361,0.592454969882965,-0.258545219898224, +-0.441150099039078,0.873744785785675,-0.20483286678791,-0.578603863716125,0.75402307510376,-0.31091246008873,-0.728179275989532,0.354772955179214,-0.586422145366669,-0.762988388538361,0.592454969882965,-0.258545219898224,-0.900277554988861,0.108949683606625,-0.421461969614029,-0.728179275989532,0.354772955179214,-0.586422145366669,-0.656364560127258,-0.0588199160993099,-0.752147376537323,-0.727229475975037,0.615613043308258,-0.3035748898983,-0.917006254196167,0.183092817664146,-0.354367733001709,-0.735695421695709,0.60833078622818,-0.29780176281929,-0.900277554988861,0.108949683606625,-0.421461969614029,-0.918505549430847,-0.083750881254673,-0.386436581611633,-0.917006254196167,0.183092817664146,-0.354367733001709,-0.473748475313187,0.844521284103394,-0.249691903591156,-0.339173465967178,0.918960392475128,-0.201179340481758,-0.441150099039078,0.873744785785675,-0.20483286678791,-0.727229475975037,0.615613043308258,-0.3035748898983,-0.735695421695709,0.60833078622818,-0.29780176281929,-0.473748475313187,0.844521284103394,-0.249691903591156,-0.578603863716125,0.75402307510376,-0.31091246008873,-0.441150099039078,0.873744785785675,-0.20483286678791,-0.269837915897369,0.867399930953979,-0.418096661567688,-0.578603863716125,0.75402307510376,-0.31091246008873,-0.364044457674026,0.649729013442993,-0.667325735092163,-0.728179275989532,0.354772955179214,-0.586422145366669,-0.656364560127258,-0.0588199160993099,-0.752147376537323,-0.728179275989532,0.354772955179214,-0.586422145366669,-0.302628666162491,0.263132125139236,-0.91606616973877,-0.804544985294342,-0.109206512570381,-0.583764672279358,-0.900277554988861,0.108949683606625,-0.421461969614029,-0.656364560127258,-0.0588199160993099,-0.752147376537323,-0.95863664150238,0.15307129919529,-0.239968463778496,-0.735695421695709,0.60833078622818,-0.29780176281929,-0.917006254196167,0.183092817664146,-0.354367733001709,-0.900277554988861,0.108949683606625,-0.421461969614029,-0.804544985294342,-0.109206512570381,-0.583764672279358,-0.918505549430847,-0.083750881254673,-0.386436581611633, +-0.917006254196167,0.183092817664146,-0.354367733001709,-0.918505549430847,-0.083750881254673,-0.386436581611633,-0.96400374174118,-0.113720640540123,-0.24034196138382,-0.339173465967178,0.918960392475128,-0.201179340481758,-0.473748475313187,0.844521284103394,-0.249691903591156,-0.392055362462997,0.897831201553345,-0.200478687882423,-0.276721894741058,0.903372943401337,-0.327631294727325,-0.441150099039078,0.873744785785675,-0.20483286678791,-0.339173465967178,0.918960392475128,-0.201179340481758,-0.473748475313187,0.844521284103394,-0.249691903591156,-0.735695421695709,0.60833078622818,-0.29780176281929,-0.523724734783173,0.819525301456451,-0.232573688030243,-0.269837915897369,0.867399930953979,-0.418096661567688,-0.441150099039078,0.873744785785675,-0.20483286678791,-0.188104838132858,0.85315328836441,-0.48656553030014,-0.578603863716125,0.75402307510376,-0.31091246008873,-0.269837915897369,0.867399930953979,-0.418096661567688,-0.364044457674026,0.649729013442993,-0.667325735092163,-0.364044457674026,0.649729013442993,-0.667325735092163,-0.302628666162491,0.263132125139236,-0.91606616973877,-0.728179275989532,0.354772955179214,-0.586422145366669,-0.185217201709747,-0.0621964111924171,-0.980727314949036,-0.656364560127258,-0.0588199160993099,-0.752147376537323,-0.302628666162491,0.263132125139236,-0.91606616973877,-0.804544985294342,-0.109206512570381,-0.583764672279358,-0.656364560127258,-0.0588199160993099,-0.752147376537323,-0.40799942612648,-0.220836162567139,-0.885871171951294,-0.735695421695709,0.60833078622818,-0.29780176281929,-0.95863664150238,0.15307129919529,-0.239968463778496,-0.796666145324707,0.555633783340454,-0.237894952297211,-0.95863664150238,0.15307129919529,-0.239968463778496,-0.917006254196167,0.183092817664146,-0.354367733001709,-0.96400374174118,-0.113720640540123,-0.24034196138382,-0.869265019893646,-0.0546680651605129,-0.491314232349396,-0.918505549430847,-0.083750881254673,-0.386436581611633,-0.804544985294342,-0.109206512570381,-0.583764672279358,-0.918505549430847,-0.083750881254673,-0.386436581611633, +-0.94764655828476,-0.182803601026535,-0.261818081140518,-0.96400374174118,-0.113720640540123,-0.24034196138382,-0.392055362462997,0.897831201553345,-0.200478687882423,-0.473748475313187,0.844521284103394,-0.249691903591156,-0.523724734783173,0.819525301456451,-0.232573688030243,-0.352585256099701,0.905519664287567,-0.236045822501183,-0.339173465967178,0.918960392475128,-0.201179340481758,-0.392055362462997,0.897831201553345,-0.200478687882423,-0.188104838132858,0.85315328836441,-0.48656553030014,-0.441150099039078,0.873744785785675,-0.20483286678791,-0.276721894741058,0.903372943401337,-0.327631294727325,-0.298611104488373,0.931466937065125,-0.207847490906715,-0.276721894741058,0.903372943401337,-0.327631294727325,-0.339173465967178,0.918960392475128,-0.201179340481758,-0.735695421695709,0.60833078622818,-0.29780176281929,-0.796666145324707,0.555633783340454,-0.237894952297211,-0.523724734783173,0.819525301456451,-0.232573688030243,-0.269837915897369,0.867399930953979,-0.418096661567688,-0.188104838132858,0.85315328836441,-0.48656553030014,-0.0453643575310707,0.628917753696442,-0.776147127151489,-0.364044457674026,0.649729013442993,-0.667325735092163,-0.269837915897369,0.867399930953979,-0.418096661567688,-0.0453643575310707,0.628917753696442,-0.776147127151489,-0.364044457674026,0.649729013442993,-0.667325735092163,-0.0453643575310707,0.628917753696442,-0.776147127151489,-0.302628666162491,0.263132125139236,-0.91606616973877,-0.185217201709747,-0.0621964111924171,-0.980727314949036,-0.40799942612648,-0.220836162567139,-0.885871171951294,-0.656364560127258,-0.0588199160993099,-0.752147376537323,-0.185217201709747,-0.0621964111924171,-0.980727314949036,-0.302628666162491,0.263132125139236,-0.91606616973877,0.0265411362051964,0.242837220430374,-0.969703853130341,-0.69983047246933,-0.173471421003342,-0.692924797534943,-0.804544985294342,-0.109206512570381,-0.583764672279358,-0.40799942612648,-0.220836162567139,-0.885871171951294,-0.970442831516266,0.0718526318669319,-0.230386316776276,-0.796666145324707,0.555633783340454,-0.237894952297211, +-0.95863664150238,0.15307129919529,-0.239968463778496,-0.96400374174118,-0.113720640540123,-0.24034196138382,-0.974326074123383,-0.121942616999149,-0.189257934689522,-0.95863664150238,0.15307129919529,-0.239968463778496,-0.869265019893646,-0.0546680651605129,-0.491314232349396,-0.895065128803253,-0.160690397024155,-0.415977120399475,-0.918505549430847,-0.083750881254673,-0.386436581611633,-0.869265019893646,-0.0546680651605129,-0.491314232349396,-0.804544985294342,-0.109206512570381,-0.583764672279358,-0.69983047246933,-0.173471421003342,-0.692924797534943,-0.918505549430847,-0.083750881254673,-0.386436581611633,-0.895065128803253,-0.160690397024155,-0.415977120399475,-0.94764655828476,-0.182803601026535,-0.261818081140518,-0.96400374174118,-0.113720640540123,-0.24034196138382,-0.94764655828476,-0.182803601026535,-0.261818081140518,-0.9665207862854,-0.184753239154816,-0.178055167198181,-0.522837519645691,0.826265096664429,-0.209587067365646,-0.392055362462997,0.897831201553345,-0.200478687882423,-0.523724734783173,0.819525301456451,-0.232573688030243,-0.30954647064209,0.926657795906067,-0.213275134563446,-0.339173465967178,0.918960392475128,-0.201179340481758,-0.352585256099701,0.905519664287567,-0.236045822501183,-0.352585256099701,0.905519664287567,-0.236045822501183,-0.392055362462997,0.897831201553345,-0.200478687882423,-0.522837519645691,0.826265096664429,-0.209587067365646,-0.188104838132858,0.85315328836441,-0.48656553030014,-0.276721894741058,0.903372943401337,-0.327631294727325,-0.176612392067909,0.778865158557892,-0.601811408996582,-0.266368687152863,0.891575157642365,-0.366253137588501,-0.276721894741058,0.903372943401337,-0.327631294727325,-0.298611104488373,0.931466937065125,-0.207847490906715,-0.298611104488373,0.931466937065125,-0.207847490906715,-0.339173465967178,0.918960392475128,-0.201179340481758,-0.30954647064209,0.926657795906067,-0.213275134563446,-0.522837519645691,0.826265096664429,-0.209587067365646,-0.523724734783173,0.819525301456451,-0.232573688030243,-0.796666145324707,0.555633783340454,-0.237894952297211, +-0.0260311365127563,0.581226706504822,-0.813325166702271,-0.0453643575310707,0.628917753696442,-0.776147127151489,-0.188104838132858,0.85315328836441,-0.48656553030014,0.0265411362051964,0.242837220430374,-0.969703853130341,-0.302628666162491,0.263132125139236,-0.91606616973877,-0.0453643575310707,0.628917753696442,-0.776147127151489,-0.185217201709747,-0.0621964111924171,-0.980727314949036,0.0381488539278507,-0.18679478764534,-0.981657922267914,-0.40799942612648,-0.220836162567139,-0.885871171951294,-0.185217201709747,-0.0621964111924171,-0.980727314949036,0.0265411362051964,0.242837220430374,-0.969703853130341,0.0973868444561958,-0.0351294167339802,-0.994626402854919,-0.40799942612648,-0.220836162567139,-0.885871171951294,-0.450974225997925,-0.372351229190826,-0.811157584190369,-0.69983047246933,-0.173471421003342,-0.692924797534943,-0.790275990962982,0.545872330665588,-0.278365015983582,-0.796666145324707,0.555633783340454,-0.237894952297211,-0.970442831516266,0.0718526318669319,-0.230386316776276,-0.970442831516266,0.0718526318669319,-0.230386316776276,-0.95863664150238,0.15307129919529,-0.239968463778496,-0.974326074123383,-0.121942616999149,-0.189257934689522,-0.974326074123383,-0.121942616999149,-0.189257934689522,-0.96400374174118,-0.113720640540123,-0.24034196138382,-0.971687853336334,-0.160109266638756,-0.173745930194855,-0.895065128803253,-0.160690397024155,-0.415977120399475,-0.869265019893646,-0.0546680651605129,-0.491314232349396,-0.69983047246933,-0.173471421003342,-0.692924797534943,-0.934815645217896,-0.246881604194641,-0.255282491445541,-0.94764655828476,-0.182803601026535,-0.261818081140518,-0.895065128803253,-0.160690397024155,-0.415977120399475,-0.9665207862854,-0.184753239154816,-0.178055167198181,-0.94764655828476,-0.182803601026535,-0.261818081140518,-0.943045556545258,-0.214603692293167,-0.25418496131897,-0.96400374174118,-0.113720640540123,-0.24034196138382,-0.9665207862854,-0.184753239154816,-0.178055167198181,-0.971687853336334,-0.160109266638756,-0.173745930194855,-0.352585256099701,0.905519664287567,-0.236045822501183, +-0.301889687776566,0.920383453369141,-0.248509168624878,-0.30954647064209,0.926657795906067,-0.213275134563446,-0.534130156040192,0.785982012748718,-0.311347216367722,-0.352585256099701,0.905519664287567,-0.236045822501183,-0.522837519645691,0.826265096664429,-0.209587067365646,-0.211024418473244,0.730502843856812,-0.649487674236298,-0.176612392067909,0.778865158557892,-0.601811408996582,-0.276721894741058,0.903372943401337,-0.327631294727325,-0.0260311365127563,0.581226706504822,-0.813325166702271,-0.188104838132858,0.85315328836441,-0.48656553030014,-0.176612392067909,0.778865158557892,-0.601811408996582,-0.266368687152863,0.891575157642365,-0.366253137588501,-0.211024418473244,0.730502843856812,-0.649487674236298,-0.276721894741058,0.903372943401337,-0.327631294727325,-0.318404197692871,0.90509033203125,-0.281833559274673,-0.266368687152863,0.891575157642365,-0.366253137588501,-0.298611104488373,0.931466937065125,-0.207847490906715,-0.298611104488373,0.931466937065125,-0.207847490906715,-0.30954647064209,0.926657795906067,-0.213275134563446,-0.351115047931671,0.916348516941071,-0.192414954304695,-0.790275990962982,0.545872330665588,-0.278365015983582,-0.522837519645691,0.826265096664429,-0.209587067365646,-0.796666145324707,0.555633783340454,-0.237894952297211,-0.0260311365127563,0.581226706504822,-0.813325166702271,0.0265411362051964,0.242837220430374,-0.969703853130341,-0.0453643575310707,0.628917753696442,-0.776147127151489,-0.185217201709747,-0.0621964111924171,-0.980727314949036,0.0973868444561958,-0.0351294167339802,-0.994626402854919,0.0381488539278507,-0.18679478764534,-0.981657922267914,0.0381488539278507,-0.18679478764534,-0.981657922267914,-0.106994241476059,-0.337112158536911,-0.935364902019501,-0.40799942612648,-0.220836162567139,-0.885871171951294,0.0265411362051964,0.242837220430374,-0.969703853130341,0.0923024415969849,0.195654094219208,-0.976319432258606,0.0973868444561958,-0.0351294167339802,-0.994626402854919,-0.40799942612648,-0.220836162567139,-0.885871171951294,-0.106994241476059,-0.337112158536911,-0.935364902019501, +-0.450974225997925,-0.372351229190826,-0.811157584190369,-0.723795831203461,-0.294899553060532,-0.62382185459137,-0.69983047246933,-0.173471421003342,-0.692924797534943,-0.450974225997925,-0.372351229190826,-0.811157584190369,-0.790275990962982,0.545872330665588,-0.278365015983582,-0.970442831516266,0.0718526318669319,-0.230386316776276,-0.850480139255524,0.420519709587097,-0.315985143184662,-0.970442831516266,0.0718526318669319,-0.230386316776276,-0.974326074123383,-0.121942616999149,-0.189257934689522,-0.964191734790802,-0.119980581104755,-0.23651410639286,-0.974326074123383,-0.121942616999149,-0.189257934689522,-0.971687853336334,-0.160109266638756,-0.173745930194855,-0.944844782352448,-0.13604348897934,-0.29792645573616,-0.723795831203461,-0.294899553060532,-0.62382185459137,-0.895065128803253,-0.160690397024155,-0.415977120399475,-0.69983047246933,-0.173471421003342,-0.692924797534943,-0.943045556545258,-0.214603692293167,-0.25418496131897,-0.94764655828476,-0.182803601026535,-0.261818081140518,-0.934815645217896,-0.246881604194641,-0.255282491445541,-0.87534499168396,-0.304551243782043,-0.375525832176209,-0.934815645217896,-0.246881604194641,-0.255282491445541,-0.895065128803253,-0.160690397024155,-0.415977120399475,-0.971687853336334,-0.160109266638756,-0.173745930194855,-0.9665207862854,-0.184753239154816,-0.178055167198181,-0.943045556545258,-0.214603692293167,-0.25418496131897,-0.352585256099701,0.905519664287567,-0.236045822501183,-0.383803814649582,0.877656280994415,-0.287078350782394,-0.301889687776566,0.920383453369141,-0.248509168624878,-0.308616638183594,0.912248134613037,-0.269367814064026,-0.30954647064209,0.926657795906067,-0.213275134563446,-0.301889687776566,0.920383453369141,-0.248509168624878,-0.383803814649582,0.877656280994415,-0.287078350782394,-0.352585256099701,0.905519664287567,-0.236045822501183,-0.534130156040192,0.785982012748718,-0.311347216367722,-0.534130156040192,0.785982012748718,-0.311347216367722,-0.522837519645691,0.826265096664429,-0.209587067365646,-0.790275990962982,0.545872330665588,-0.278365015983582, +-0.211024418473244,0.730502843856812,-0.649487674236298,-0.0415350683033466,0.489696055650711,-0.870903313159943,-0.176612392067909,0.778865158557892,-0.601811408996582,-0.0260311365127563,0.581226706504822,-0.813325166702271,-0.176612392067909,0.778865158557892,-0.601811408996582,-0.0415350683033466,0.489696055650711,-0.870903313159943,-0.211024418473244,0.730502843856812,-0.649487674236298,-0.266368687152863,0.891575157642365,-0.366253137588501,-0.173810318112373,0.720240771770477,-0.671597421169281,-0.321108132600784,0.800213575363159,-0.50650542974472,-0.266368687152863,0.891575157642365,-0.366253137588501,-0.318404197692871,0.90509033203125,-0.281833559274673,-0.298611104488373,0.931466937065125,-0.207847490906715,-0.368516743183136,0.902912735939026,-0.221232548356056,-0.318404197692871,0.90509033203125,-0.281833559274673,-0.431344211101532,0.85815966129303,-0.278395473957062,-0.351115047931671,0.916348516941071,-0.192414954304695,-0.30954647064209,0.926657795906067,-0.213275134563446,-0.298611104488373,0.931466937065125,-0.207847490906715,-0.351115047931671,0.916348516941071,-0.192414954304695,-0.368516743183136,0.902912735939026,-0.221232548356056,0.0265411362051964,0.242837220430374,-0.969703853130341,-0.0260311365127563,0.581226706504822,-0.813325166702271,0.0923024415969849,0.195654094219208,-0.976319432258606,0.148372292518616,-0.0698744505643845,-0.986459791660309,0.0381488539278507,-0.18679478764534,-0.981657922267914,0.0973868444561958,-0.0351294167339802,-0.994626402854919,0.0381488539278507,-0.18679478764534,-0.981657922267914,0.0442315526306629,-0.220388308167458,-0.974408745765686,-0.106994241476059,-0.337112158536911,-0.935364902019501,0.148372292518616,-0.0698744505643845,-0.986459791660309,0.0973868444561958,-0.0351294167339802,-0.994626402854919,0.0923024415969849,0.195654094219208,-0.976319432258606,-0.106994241476059,-0.337112158536911,-0.935364902019501,-0.272214591503143,-0.442319363355637,-0.854548275470734,-0.450974225997925,-0.372351229190826,-0.811157584190369,-0.723795831203461,-0.294899553060532,-0.62382185459137, +-0.450974225997925,-0.372351229190826,-0.811157584190369,-0.714279651641846,-0.402138501405716,-0.572790563106537,-0.946422755718231,-0.0203635469079018,-0.322287380695343,-0.850480139255524,0.420519709587097,-0.315985143184662,-0.970442831516266,0.0718526318669319,-0.230386316776276,-0.790275990962982,0.545872330665588,-0.278365015983582,-0.850480139255524,0.420519709587097,-0.315985143184662,-0.534130156040192,0.785982012748718,-0.311347216367722,-0.974326074123383,-0.121942616999149,-0.189257934689522,-0.956592500209808,-0.0798420980572701,-0.280278265476227,-0.964191734790802,-0.119980581104755,-0.23651410639286,-0.946422755718231,-0.0203635469079018,-0.322287380695343,-0.970442831516266,0.0718526318669319,-0.230386316776276,-0.964191734790802,-0.119980581104755,-0.23651410639286,-0.943045556545258,-0.214603692293167,-0.25418496131897,-0.944844782352448,-0.13604348897934,-0.29792645573616,-0.971687853336334,-0.160109266638756,-0.173745930194855,-0.974326074123383,-0.121942616999149,-0.189257934689522,-0.944844782352448,-0.13604348897934,-0.29792645573616,-0.956592500209808,-0.0798420980572701,-0.280278265476227,-0.723795831203461,-0.294899553060532,-0.62382185459137,-0.87534499168396,-0.304551243782043,-0.375525832176209,-0.895065128803253,-0.160690397024155,-0.415977120399475,-0.908722102642059,-0.284203112125397,-0.305700331926346,-0.943045556545258,-0.214603692293167,-0.25418496131897,-0.934815645217896,-0.246881604194641,-0.255282491445541,-0.87534499168396,-0.304551243782043,-0.375525832176209,-0.89637964963913,-0.312963306903839,-0.313938409090042,-0.934815645217896,-0.246881604194641,-0.255282491445541,-0.360265552997589,0.8890780210495,-0.282398402690887,-0.301889687776566,0.920383453369141,-0.248509168624878,-0.383803814649582,0.877656280994415,-0.287078350782394,-0.308616638183594,0.912248134613037,-0.269367814064026,-0.353105634450912,0.886752843856812,-0.298304617404938,-0.30954647064209,0.926657795906067,-0.213275134563446,-0.300924122333527,0.911423623561859,-0.28062716126442,-0.308616638183594,0.912248134613037,-0.269367814064026, +-0.301889687776566,0.920383453369141,-0.248509168624878,-0.567496657371521,0.749085605144501,-0.341786831617355,-0.383803814649582,0.877656280994415,-0.287078350782394,-0.534130156040192,0.785982012748718,-0.311347216367722,-0.0415350683033466,0.489696055650711,-0.870903313159943,-0.211024418473244,0.730502843856812,-0.649487674236298,-0.0122371762990952,0.356119722127914,-0.934360146522522,-0.0260311365127563,0.581226706504822,-0.813325166702271,-0.0415350683033466,0.489696055650711,-0.870903313159943,0.0923024415969849,0.195654094219208,-0.976319432258606,-0.321108132600784,0.800213575363159,-0.50650542974472,-0.173810318112373,0.720240771770477,-0.671597421169281,-0.266368687152863,0.891575157642365,-0.366253137588501,-0.211024418473244,0.730502843856812,-0.649487674236298,-0.173810318112373,0.720240771770477,-0.671597421169281,-0.115307189524174,0.558972775936127,-0.821129500865936,-0.321108132600784,0.800213575363159,-0.50650542974472,-0.318404197692871,0.90509033203125,-0.281833559274673,-0.476258754730225,0.826980173587799,-0.298799872398376,-0.476258754730225,0.826980173587799,-0.298799872398376,-0.318404197692871,0.90509033203125,-0.281833559274673,-0.368516743183136,0.902912735939026,-0.221232548356056,-0.351115047931671,0.916348516941071,-0.192414954304695,-0.431344211101532,0.85815966129303,-0.278395473957062,-0.421072989702225,0.885109007358551,-0.19819039106369,-0.439404398202896,0.876352369785309,-0.197307243943214,-0.431344211101532,0.85815966129303,-0.278395473957062,-0.30954647064209,0.926657795906067,-0.213275134563446,-0.548002541065216,0.810268104076386,-0.207746878266335,-0.368516743183136,0.902912735939026,-0.221232548356056,-0.351115047931671,0.916348516941071,-0.192414954304695,0.0381488539278507,-0.18679478764534,-0.981657922267914,0.148372292518616,-0.0698744505643845,-0.986459791660309,0.137138873338699,-0.158431947231293,-0.977799654006958,0.0381488539278507,-0.18679478764534,-0.981657922267914,0.137138873338699,-0.158431947231293,-0.977799654006958,0.0442315526306629,-0.220388308167458,-0.974408745765686, +-0.106994241476059,-0.337112158536911,-0.935364902019501,0.0442315526306629,-0.220388308167458,-0.974408745765686,-0.0361489094793797,-0.393801271915436,-0.918484449386597,0.105267755687237,0.155848547816277,-0.982155740261078,0.148372292518616,-0.0698744505643845,-0.986459791660309,0.0923024415969849,0.195654094219208,-0.976319432258606,-0.106994241476059,-0.337112158536911,-0.935364902019501,-0.0361489094793797,-0.393801271915436,-0.918484449386597,-0.272214591503143,-0.442319363355637,-0.854548275470734,-0.272214591503143,-0.442319363355637,-0.854548275470734,-0.587894320487976,-0.439601600170136,-0.679065942764282,-0.450974225997925,-0.372351229190826,-0.811157584190369,-0.714279651641846,-0.402138501405716,-0.572790563106537,-0.450974225997925,-0.372351229190826,-0.811157584190369,-0.587894320487976,-0.439601600170136,-0.679065942764282,-0.723795831203461,-0.294899553060532,-0.62382185459137,-0.714279651641846,-0.402138501405716,-0.572790563106537,-0.87534499168396,-0.304551243782043,-0.375525832176209,-0.829263627529144,0.31349840760231,-0.462645143270493,-0.850480139255524,0.420519709587097,-0.315985143184662,-0.946422755718231,-0.0203635469079018,-0.322287380695343,-0.567496657371521,0.749085605144501,-0.341786831617355,-0.534130156040192,0.785982012748718,-0.311347216367722,-0.850480139255524,0.420519709587097,-0.315985143184662,-0.925936758518219,-0.0668980479240417,-0.371706366539001,-0.964191734790802,-0.119980581104755,-0.23651410639286,-0.956592500209808,-0.0798420980572701,-0.280278265476227,-0.946422755718231,-0.0203635469079018,-0.322287380695343,-0.964191734790802,-0.119980581104755,-0.23651410639286,-0.925936758518219,-0.0668980479240417,-0.371706366539001,-0.943045556545258,-0.214603692293167,-0.25418496131897,-0.923972487449646,-0.189295262098312,-0.332328170537949,-0.944844782352448,-0.13604348897934,-0.29792645573616,-0.944844782352448,-0.13604348897934,-0.29792645573616,-0.932337045669556,-0.0715851858258247,-0.354433357715607,-0.956592500209808,-0.0798420980572701,-0.280278265476227,-0.903593122959137,-0.248860701918602,-0.348694324493408, +-0.943045556545258,-0.214603692293167,-0.25418496131897,-0.908722102642059,-0.284203112125397,-0.305700331926346,-0.89637964963913,-0.312963306903839,-0.313938409090042,-0.908722102642059,-0.284203112125397,-0.305700331926346,-0.934815645217896,-0.246881604194641,-0.255282491445541,-0.87534499168396,-0.304551243782043,-0.375525832176209,-0.823608815670013,-0.350922107696533,-0.445558249950409,-0.89637964963913,-0.312963306903839,-0.313938409090042,-0.360265552997589,0.8890780210495,-0.282398402690887,-0.300924122333527,0.911423623561859,-0.28062716126442,-0.301889687776566,0.920383453369141,-0.248509168624878,-0.360265552997589,0.8890780210495,-0.282398402690887,-0.383803814649582,0.877656280994415,-0.287078350782394,-0.567496657371521,0.749085605144501,-0.341786831617355,-0.353105634450912,0.886752843856812,-0.298304617404938,-0.308616638183594,0.912248134613037,-0.269367814064026,-0.431679725646973,0.805270612239838,-0.40643784403801,-0.353105634450912,0.886752843856812,-0.298304617404938,-0.439404398202896,0.876352369785309,-0.197307243943214,-0.30954647064209,0.926657795906067,-0.213275134563446,-0.300924122333527,0.911423623561859,-0.28062716126442,-0.361775696277618,0.864647686481476,-0.348572254180908,-0.308616638183594,0.912248134613037,-0.269367814064026,-0.115307189524174,0.558972775936127,-0.821129500865936,-0.0122371762990952,0.356119722127914,-0.934360146522522,-0.211024418473244,0.730502843856812,-0.649487674236298,-0.0122371762990952,0.356119722127914,-0.934360146522522,0.105267755687237,0.155848547816277,-0.982155740261078,-0.0415350683033466,0.489696055650711,-0.870903313159943,0.105267755687237,0.155848547816277,-0.982155740261078,0.0923024415969849,0.195654094219208,-0.976319432258606,-0.0415350683033466,0.489696055650711,-0.870903313159943,-0.21016263961792,0.466132044792175,-0.859390735626221,-0.173810318112373,0.720240771770477,-0.671597421169281,-0.321108132600784,0.800213575363159,-0.50650542974472,-0.0427386127412319,0.435839980840683,-0.899008810520172,-0.115307189524174,0.558972775936127,-0.821129500865936, +-0.173810318112373,0.720240771770477,-0.671597421169281,-0.541250288486481,0.70224541425705,-0.46249258518219,-0.321108132600784,0.800213575363159,-0.50650542974472,-0.476258754730225,0.826980173587799,-0.298799872398376,-0.476258754730225,0.826980173587799,-0.298799872398376,-0.368516743183136,0.902912735939026,-0.221232548356056,-0.548002541065216,0.810268104076386,-0.207746878266335,-0.431344211101532,0.85815966129303,-0.278395473957062,-0.58705347776413,0.777002811431885,-0.227232933044434,-0.421072989702225,0.885109007358551,-0.19819039106369,-0.351115047931671,0.916348516941071,-0.192414954304695,-0.421072989702225,0.885109007358551,-0.19819039106369,-0.548002541065216,0.810268104076386,-0.207746878266335,-0.62337189912796,0.699528574943542,-0.349381029605865,-0.431344211101532,0.85815966129303,-0.278395473957062,-0.439404398202896,0.876352369785309,-0.197307243943214,0.148372292518616,-0.0698744505643845,-0.986459791660309,0.101252317428589,-0.121194891631603,-0.987451076507568,0.137138873338699,-0.158431947231293,-0.977799654006958,0.137138873338699,-0.158431947231293,-0.977799654006958,0.101252317428589,-0.121194891631603,-0.987451076507568,0.0442315526306629,-0.220388308167458,-0.974408745765686,-0.0361489094793797,-0.393801271915436,-0.918484449386597,0.0442315526306629,-0.220388308167458,-0.974408745765686,-0.0325545594096184,-0.327232211828232,-0.944382965564728,0.105267755687237,0.155848547816277,-0.982155740261078,0.117520771920681,0.0527806840837002,-0.991666793823242,0.148372292518616,-0.0698744505643845,-0.986459791660309,-0.175149470567703,-0.443146109580994,-0.879172384738922,-0.272214591503143,-0.442319363355637,-0.854548275470734,-0.0361489094793797,-0.393801271915436,-0.918484449386597,-0.613220632076263,-0.393814295530319,-0.684741258621216,-0.587894320487976,-0.439601600170136,-0.679065942764282,-0.272214591503143,-0.442319363355637,-0.854548275470734,-0.714279651641846,-0.402138501405716,-0.572790563106537,-0.587894320487976,-0.439601600170136,-0.679065942764282,-0.823608815670013,-0.350922107696533,-0.445558249950409, +-0.87534499168396,-0.304551243782043,-0.375525832176209,-0.714279651641846,-0.402138501405716,-0.572790563106537,-0.823608815670013,-0.350922107696533,-0.445558249950409,-0.829263627529144,0.31349840760231,-0.462645143270493,-0.567496657371521,0.749085605144501,-0.341786831617355,-0.850480139255524,0.420519709587097,-0.315985143184662,-0.829263627529144,0.31349840760231,-0.462645143270493,-0.946422755718231,-0.0203635469079018,-0.322287380695343,-0.88332188129425,-0.0517509989440441,-0.465901553630829,-0.925936758518219,-0.0668980479240417,-0.371706366539001,-0.956592500209808,-0.0798420980572701,-0.280278265476227,-0.932337045669556,-0.0715851858258247,-0.354433357715607,-0.88332188129425,-0.0517509989440441,-0.465901553630829,-0.946422755718231,-0.0203635469079018,-0.322287380695343,-0.925936758518219,-0.0668980479240417,-0.371706366539001,-0.903593122959137,-0.248860701918602,-0.348694324493408,-0.923972487449646,-0.189295262098312,-0.332328170537949,-0.943045556545258,-0.214603692293167,-0.25418496131897,-0.926119208335876,-0.175545170903206,-0.33389675617218,-0.944844782352448,-0.13604348897934,-0.29792645573616,-0.923972487449646,-0.189295262098312,-0.332328170537949,-0.926119208335876,-0.175545170903206,-0.33389675617218,-0.932337045669556,-0.0715851858258247,-0.354433357715607,-0.944844782352448,-0.13604348897934,-0.29792645573616,-0.908722102642059,-0.284203112125397,-0.305700331926346,-0.9004807472229,-0.247728645801544,-0.357442021369934,-0.903593122959137,-0.248860701918602,-0.348694324493408,-0.908722102642059,-0.284203112125397,-0.305700331926346,-0.89637964963913,-0.312963306903839,-0.313938409090042,-0.878435909748077,-0.325867921113968,-0.349514335393906,-0.89637964963913,-0.312963306903839,-0.313938409090042,-0.823608815670013,-0.350922107696533,-0.445558249950409,-0.878435909748077,-0.325867921113968,-0.349514335393906,-0.40640789270401,0.854654788970947,-0.323105961084366,-0.300924122333527,0.911423623561859,-0.28062716126442,-0.360265552997589,0.8890780210495,-0.282398402690887,-0.40640789270401,0.854654788970947,-0.323105961084366, +-0.360265552997589,0.8890780210495,-0.282398402690887,-0.567496657371521,0.749085605144501,-0.341786831617355,-0.431679725646973,0.805270612239838,-0.40643784403801,-0.308616638183594,0.912248134613037,-0.269367814064026,-0.361775696277618,0.864647686481476,-0.348572254180908,-0.353105634450912,0.886752843856812,-0.298304617404938,-0.431679725646973,0.805270612239838,-0.40643784403801,-0.463763147592545,0.72066742181778,-0.515327095985413,-0.476967722177505,0.789977610111237,-0.385275274515152,-0.439404398202896,0.876352369785309,-0.197307243943214,-0.353105634450912,0.886752843856812,-0.298304617404938,-0.272978097200394,0.891688883304596,-0.361073017120361,-0.361775696277618,0.864647686481476,-0.348572254180908,-0.300924122333527,0.911423623561859,-0.28062716126442,-0.0427386127412319,0.435839980840683,-0.899008810520172,-0.0122371762990952,0.356119722127914,-0.934360146522522,-0.115307189524174,0.558972775936127,-0.821129500865936,0.105267755687237,0.155848547816277,-0.982155740261078,-0.0122371762990952,0.356119722127914,-0.934360146522522,0.117520771920681,0.0527806840837002,-0.991666793823242,-0.0427386127412319,0.435839980840683,-0.899008810520172,-0.173810318112373,0.720240771770477,-0.671597421169281,-0.21016263961792,0.466132044792175,-0.859390735626221,-0.321108132600784,0.800213575363159,-0.50650542974472,-0.455377697944641,0.49023300409317,-0.74317067861557,-0.21016263961792,0.466132044792175,-0.859390735626221,-0.321108132600784,0.800213575363159,-0.50650542974472,-0.541250288486481,0.70224541425705,-0.46249258518219,-0.455377697944641,0.49023300409317,-0.74317067861557,-0.653796255588531,0.693831264972687,-0.301908016204834,-0.541250288486481,0.70224541425705,-0.46249258518219,-0.476258754730225,0.826980173587799,-0.298799872398376,-0.548002541065216,0.810268104076386,-0.207746878266335,-0.647831082344055,0.709459662437439,-0.277455806732178,-0.476258754730225,0.826980173587799,-0.298799872398376,-0.431344211101532,0.85815966129303,-0.278395473957062,-0.68428635597229,0.692443311214447,-0.2286356985569, +-0.58705347776413,0.777002811431885,-0.227232933044434,-0.548002541065216,0.810268104076386,-0.207746878266335,-0.421072989702225,0.885109007358551,-0.19819039106369,-0.58705347776413,0.777002811431885,-0.227232933044434,-0.62337189912796,0.699528574943542,-0.349381029605865,-0.68428635597229,0.692443311214447,-0.2286356985569,-0.431344211101532,0.85815966129303,-0.278395473957062,-0.476967722177505,0.789977610111237,-0.385275274515152,-0.62337189912796,0.699528574943542,-0.349381029605865,-0.439404398202896,0.876352369785309,-0.197307243943214,0.148372292518616,-0.0698744505643845,-0.986459791660309,0.120210736989975,-0.066102959215641,-0.990545153617859,0.101252317428589,-0.121194891631603,-0.987451076507568,0.0442315526306629,-0.220388308167458,-0.974408745765686,0.101252317428589,-0.121194891631603,-0.987451076507568,0.0908749550580978,-0.121524170041084,-0.988419711589813,0.0442315526306629,-0.220388308167458,-0.974408745765686,0.0814965218305588,-0.250438928604126,-0.964696109294891,-0.0325545594096184,-0.327232211828232,-0.944382965564728,-0.0361489094793797,-0.393801271915436,-0.918484449386597,-0.0325545594096184,-0.327232211828232,-0.944382965564728,-0.0771493464708328,-0.434578657150269,-0.897323429584503,0.148372292518616,-0.0698744505643845,-0.986459791660309,0.117520771920681,0.0527806840837002,-0.991666793823242,0.120210736989975,-0.066102959215641,-0.990545153617859,-0.272214591503143,-0.442319363355637,-0.854548275470734,-0.175149470567703,-0.443146109580994,-0.879172384738922,-0.428776532411575,-0.473996579647064,-0.769075930118561,-0.175149470567703,-0.443146109580994,-0.879172384738922,-0.0361489094793797,-0.393801271915436,-0.918484449386597,-0.0691801905632019,-0.421378672122955,-0.904242217540741,-0.613220632076263,-0.393814295530319,-0.684741258621216,-0.823608815670013,-0.350922107696533,-0.445558249950409,-0.587894320487976,-0.439601600170136,-0.679065942764282,-0.272214591503143,-0.442319363355637,-0.854548275470734,-0.428776532411575,-0.473996579647064,-0.769075930118561,-0.613220632076263,-0.393814295530319,-0.684741258621216, +-0.829263627529144,0.31349840760231,-0.462645143270493,-0.584432303905487,0.691794991493225,-0.424097299575806,-0.567496657371521,0.749085605144501,-0.341786831617355,-0.829263627529144,0.31349840760231,-0.462645143270493,-0.88332188129425,-0.0517509989440441,-0.465901553630829,-0.802346050739288,0.0724842250347137,-0.592441260814667,-0.925936758518219,-0.0668980479240417,-0.371706366539001,-0.932337045669556,-0.0715851858258247,-0.354433357715607,-0.912245094776154,-0.0584693104028702,-0.405450463294983,-0.88332188129425,-0.0517509989440441,-0.465901553630829,-0.925936758518219,-0.0668980479240417,-0.371706366539001,-0.898573696613312,-0.1072768419981,-0.425507485866547,-0.923972487449646,-0.189295262098312,-0.332328170537949,-0.903593122959137,-0.248860701918602,-0.348694324493408,-0.91685825586319,-0.246387884020805,-0.314107626676559,-0.923972487449646,-0.189295262098312,-0.332328170537949,-0.91685825586319,-0.246387884020805,-0.314107626676559,-0.926119208335876,-0.175545170903206,-0.33389675617218,-0.922027111053467,-0.150661796331406,-0.356604754924774,-0.932337045669556,-0.0715851858258247,-0.354433357715607,-0.926119208335876,-0.175545170903206,-0.33389675617218,-0.9004807472229,-0.247728645801544,-0.357442021369934,-0.908722102642059,-0.284203112125397,-0.305700331926346,-0.881194472312927,-0.279593974351883,-0.38121297955513,-0.907223999500275,-0.26954111456871,-0.322942793369293,-0.903593122959137,-0.248860701918602,-0.348694324493408,-0.9004807472229,-0.247728645801544,-0.357442021369934,-0.878435909748077,-0.325867921113968,-0.349514335393906,-0.881194472312927,-0.279593974351883,-0.38121297955513,-0.908722102642059,-0.284203112125397,-0.305700331926346,-0.823608815670013,-0.350922107696533,-0.445558249950409,-0.739505589008331,-0.401579171419144,-0.540245771408081,-0.878435909748077,-0.325867921113968,-0.349514335393906,-0.37522754073143,0.828287780284882,-0.416105210781097,-0.300924122333527,0.911423623561859,-0.28062716126442,-0.40640789270401,0.854654788970947,-0.323105961084366,-0.40640789270401,0.854654788970947,-0.323105961084366, +-0.567496657371521,0.749085605144501,-0.341786831617355,-0.584432303905487,0.691794991493225,-0.424097299575806,-0.431679725646973,0.805270612239838,-0.40643784403801,-0.361775696277618,0.864647686481476,-0.348572254180908,-0.497073411941528,0.710340023040771,-0.498332172632217,-0.463763147592545,0.72066742181778,-0.515327095985413,-0.431679725646973,0.805270612239838,-0.40643784403801,-0.601991653442383,0.619755327701569,-0.503496944904327,-0.476967722177505,0.789977610111237,-0.385275274515152,-0.353105634450912,0.886752843856812,-0.298304617404938,-0.463763147592545,0.72066742181778,-0.515327095985413,-0.272978097200394,0.891688883304596,-0.361073017120361,-0.29808634519577,0.819161653518677,-0.490019083023071,-0.361775696277618,0.864647686481476,-0.348572254180908,-0.250310122966766,0.871160209178925,-0.422403365373611,-0.272978097200394,0.891688883304596,-0.361073017120361,-0.300924122333527,0.911423623561859,-0.28062716126442,-0.0427386127412319,0.435839980840683,-0.899008810520172,-0.0357716791331768,0.147108227014542,-0.988473296165466,-0.0122371762990952,0.356119722127914,-0.934360146522522,0.117520771920681,0.0527806840837002,-0.991666793823242,-0.0122371762990952,0.356119722127914,-0.934360146522522,-0.0357716791331768,0.147108227014542,-0.988473296165466,-0.0427386127412319,0.435839980840683,-0.899008810520172,-0.21016263961792,0.466132044792175,-0.859390735626221,-0.0357716791331768,0.147108227014542,-0.988473296165466,-0.229759976267815,0.160164654254913,-0.959977865219116,-0.21016263961792,0.466132044792175,-0.859390735626221,-0.455377697944641,0.49023300409317,-0.74317067861557,-0.455377697944641,0.49023300409317,-0.74317067861557,-0.541250288486481,0.70224541425705,-0.46249258518219,-0.685827016830444,0.597008109092712,-0.416199952363968,-0.653796255588531,0.693831264972687,-0.301908016204834,-0.685827016830444,0.597008109092712,-0.416199952363968,-0.541250288486481,0.70224541425705,-0.46249258518219,-0.653796255588531,0.693831264972687,-0.301908016204834,-0.476258754730225,0.826980173587799,-0.298799872398376, +-0.647831082344055,0.709459662437439,-0.277455806732178,-0.548002541065216,0.810268104076386,-0.207746878266335,-0.717522859573364,0.62845116853714,-0.30034938454628,-0.647831082344055,0.709459662437439,-0.277455806732178,-0.735773146152496,0.650034129619598,-0.189982488751411,-0.58705347776413,0.777002811431885,-0.227232933044434,-0.68428635597229,0.692443311214447,-0.2286356985569,-0.548002541065216,0.810268104076386,-0.207746878266335,-0.58705347776413,0.777002811431885,-0.227232933044434,-0.735773146152496,0.650034129619598,-0.189982488751411,-0.769899725914001,0.600138127803802,-0.21699883043766,-0.68428635597229,0.692443311214447,-0.2286356985569,-0.62337189912796,0.699528574943542,-0.349381029605865,-0.476967722177505,0.789977610111237,-0.385275274515152,-0.53262585401535,0.587222039699554,-0.609491407871246,-0.62337189912796,0.699528574943542,-0.349381029605865,0.101252317428589,-0.121194891631603,-0.987451076507568,0.120210736989975,-0.066102959215641,-0.990545153617859,0.0908749550580978,-0.121524170041084,-0.988419711589813,0.0814965218305588,-0.250438928604126,-0.964696109294891,0.0442315526306629,-0.220388308167458,-0.974408745765686,0.0908749550580978,-0.121524170041084,-0.988419711589813,-0.0191392283886671,-0.374295592308044,-0.927111864089966,-0.0325545594096184,-0.327232211828232,-0.944382965564728,0.0814965218305588,-0.250438928604126,-0.964696109294891,-0.0191392283886671,-0.374295592308044,-0.927111864089966,-0.0771493464708328,-0.434578657150269,-0.897323429584503,-0.0325545594096184,-0.327232211828232,-0.944382965564728,-0.0361489094793797,-0.393801271915436,-0.918484449386597,-0.0771493464708328,-0.434578657150269,-0.897323429584503,-0.0691801905632019,-0.421378672122955,-0.904242217540741,0.117520771920681,0.0527806840837002,-0.991666793823242,0.0160935837775469,-0.0435999818146229,-0.998919367790222,0.120210736989975,-0.066102959215641,-0.990545153617859,-0.552089393138886,-0.461103886365891,-0.694680035114288,-0.428776532411575,-0.473996579647064,-0.769075930118561,-0.175149470567703,-0.443146109580994,-0.879172384738922, +-0.0691801905632019,-0.421378672122955,-0.904242217540741,-0.0603448152542114,-0.405180960893631,-0.912242710590363,-0.175149470567703,-0.443146109580994,-0.879172384738922,-0.823608815670013,-0.350922107696533,-0.445558249950409,-0.613220632076263,-0.393814295530319,-0.684741258621216,-0.739505589008331,-0.401579171419144,-0.540245771408081,-0.739505589008331,-0.401579171419144,-0.540245771408081,-0.613220632076263,-0.393814295530319,-0.684741258621216,-0.428776532411575,-0.473996579647064,-0.769075930118561,-0.555691003799438,0.544975876808167,-0.627860307693481,-0.584432303905487,0.691794991493225,-0.424097299575806,-0.829263627529144,0.31349840760231,-0.462645143270493,-0.802346050739288,0.0724842250347137,-0.592441260814667,-0.88332188129425,-0.0517509989440441,-0.465901553630829,-0.839659631252289,-0.118208669126034,-0.530092775821686,-0.829263627529144,0.31349840760231,-0.462645143270493,-0.802346050739288,0.0724842250347137,-0.592441260814667,-0.555691003799438,0.544975876808167,-0.627860307693481,-0.922027111053467,-0.150661796331406,-0.356604754924774,-0.912245094776154,-0.0584693104028702,-0.405450463294983,-0.932337045669556,-0.0715851858258247,-0.354433357715607,-0.925936758518219,-0.0668980479240417,-0.371706366539001,-0.912245094776154,-0.0584693104028702,-0.405450463294983,-0.898573696613312,-0.1072768419981,-0.425507485866547,-0.871962010860443,-0.171745046973228,-0.458460181951523,-0.88332188129425,-0.0517509989440441,-0.465901553630829,-0.898573696613312,-0.1072768419981,-0.425507485866547,-0.907223999500275,-0.26954111456871,-0.322942793369293,-0.91685825586319,-0.246387884020805,-0.314107626676559,-0.903593122959137,-0.248860701918602,-0.348694324493408,-0.91685825586319,-0.246387884020805,-0.314107626676559,-0.920257866382599,-0.252414882183075,-0.299018114805222,-0.926119208335876,-0.175545170903206,-0.33389675617218,-0.920257866382599,-0.252414882183075,-0.299018114805222,-0.922027111053467,-0.150661796331406,-0.356604754924774,-0.926119208335876,-0.175545170903206,-0.33389675617218,-0.9004807472229,-0.247728645801544,-0.357442021369934, +-0.881194472312927,-0.279593974351883,-0.38121297955513,-0.881256937980652,-0.284857094287872,-0.377150535583496,-0.919393479824066,-0.262272208929062,-0.293136119842529,-0.907223999500275,-0.26954111456871,-0.322942793369293,-0.9004807472229,-0.247728645801544,-0.357442021369934,-0.878435909748077,-0.325867921113968,-0.349514335393906,-0.79746276140213,-0.35950243473053,-0.484573036432266,-0.881194472312927,-0.279593974351883,-0.38121297955513,-0.739505589008331,-0.401579171419144,-0.540245771408081,-0.79746276140213,-0.35950243473053,-0.484573036432266,-0.878435909748077,-0.325867921113968,-0.349514335393906,-0.250310122966766,0.871160209178925,-0.422403365373611,-0.300924122333527,0.911423623561859,-0.28062716126442,-0.37522754073143,0.828287780284882,-0.416105210781097,-0.37522754073143,0.828287780284882,-0.416105210781097,-0.40640789270401,0.854654788970947,-0.323105961084366,-0.584432303905487,0.691794991493225,-0.424097299575806,-0.361775696277618,0.864647686481476,-0.348572254180908,-0.29808634519577,0.819161653518677,-0.490019083023071,-0.497073411941528,0.710340023040771,-0.498332172632217,-0.431679725646973,0.805270612239838,-0.40643784403801,-0.497073411941528,0.710340023040771,-0.498332172632217,-0.601991653442383,0.619755327701569,-0.503496944904327,-0.601991653442383,0.619755327701569,-0.503496944904327,-0.556533396244049,0.570259988307953,-0.60421347618103,-0.463763147592545,0.72066742181778,-0.515327095985413,-0.476967722177505,0.789977610111237,-0.385275274515152,-0.463763147592545,0.72066742181778,-0.515327095985413,-0.53262585401535,0.587222039699554,-0.609491407871246,-0.250310122966766,0.871160209178925,-0.422403365373611,-0.29808634519577,0.819161653518677,-0.490019083023071,-0.272978097200394,0.891688883304596,-0.361073017120361,0.117520771920681,0.0527806840837002,-0.991666793823242,-0.0357716791331768,0.147108227014542,-0.988473296165466,0.0160935837775469,-0.0435999818146229,-0.998919367790222,-0.229759976267815,0.160164654254913,-0.959977865219116,-0.0357716791331768,0.147108227014542,-0.988473296165466, +-0.21016263961792,0.466132044792175,-0.859390735626221,-0.367021948099136,0.186683297157288,-0.911287069320679,-0.229759976267815,0.160164654254913,-0.959977865219116,-0.455377697944641,0.49023300409317,-0.74317067861557,-0.587179243564606,0.447957247495651,-0.674206674098969,-0.455377697944641,0.49023300409317,-0.74317067861557,-0.685827016830444,0.597008109092712,-0.416199952363968,-0.685827016830444,0.597008109092712,-0.416199952363968,-0.653796255588531,0.693831264972687,-0.301908016204834,-0.734530746936798,0.615843296051025,-0.284958600997925,-0.653796255588531,0.693831264972687,-0.301908016204834,-0.647831082344055,0.709459662437439,-0.277455806732178,-0.734530746936798,0.615843296051025,-0.284958600997925,-0.735773146152496,0.650034129619598,-0.189982488751411,-0.717522859573364,0.62845116853714,-0.30034938454628,-0.548002541065216,0.810268104076386,-0.207746878266335,-0.717522859573364,0.62845116853714,-0.30034938454628,-0.734530746936798,0.615843296051025,-0.284958600997925,-0.647831082344055,0.709459662437439,-0.277455806732178,-0.803810834884644,0.57330721616745,-0.158766582608223,-0.735773146152496,0.650034129619598,-0.189982488751411,-0.68428635597229,0.692443311214447,-0.2286356985569,-0.769899725914001,0.600138127803802,-0.21699883043766,-0.803810834884644,0.57330721616745,-0.158766582608223,-0.68428635597229,0.692443311214447,-0.2286356985569,-0.731699883937836,0.543190062046051,-0.411776214838028,-0.769899725914001,0.600138127803802,-0.21699883043766,-0.62337189912796,0.699528574943542,-0.349381029605865,-0.53262585401535,0.587222039699554,-0.609491407871246,-0.601587772369385,0.510481894016266,-0.614410579204559,-0.62337189912796,0.699528574943542,-0.349381029605865,0.120210736989975,-0.066102959215641,-0.990545153617859,0.08088069409132,-0.0906920954585075,-0.992589116096497,0.0908749550580978,-0.121524170041084,-0.988419711589813,0.0814965218305588,-0.250438928604126,-0.964696109294891,0.0908749550580978,-0.121524170041084,-0.988419711589813,0.120011225342751,-0.167125761508942,-0.978604197502136, +-0.0191392283886671,-0.374295592308044,-0.927111864089966,0.0814965218305588,-0.250438928604126,-0.964696109294891,0.117415480315685,-0.34429994225502,-0.931488633155823,-0.0191392283886671,-0.374295592308044,-0.927111864089966,-0.0204259287565947,-0.434171169996262,-0.900598764419556,-0.0771493464708328,-0.434578657150269,-0.897323429584503,-0.0691801905632019,-0.421378672122955,-0.904242217540741,-0.0771493464708328,-0.434578657150269,-0.897323429584503,-0.103691838681698,-0.448131859302521,-0.887933373451233,0.08088069409132,-0.0906920954585075,-0.992589116096497,0.120210736989975,-0.066102959215641,-0.990545153617859,0.0160935837775469,-0.0435999818146229,-0.998919367790222,-0.739505589008331,-0.401579171419144,-0.540245771408081,-0.428776532411575,-0.473996579647064,-0.769075930118561,-0.552089393138886,-0.461103886365891,-0.694680035114288,-0.552089393138886,-0.461103886365891,-0.694680035114288,-0.175149470567703,-0.443146109580994,-0.879172384738922,-0.332746028900146,-0.429208636283875,-0.839678406715393,-0.0198753848671913,-0.422312498092651,-0.906232297420502,-0.0603448152542114,-0.405180960893631,-0.912242710590363,-0.0691801905632019,-0.421378672122955,-0.904242217540741,-0.0603448152542114,-0.405180960893631,-0.912242710590363,-0.332746028900146,-0.429208636283875,-0.839678406715393,-0.175149470567703,-0.443146109580994,-0.879172384738922,-0.555691003799438,0.544975876808167,-0.627860307693481,-0.37522754073143,0.828287780284882,-0.416105210781097,-0.584432303905487,0.691794991493225,-0.424097299575806,-0.871962010860443,-0.171745046973228,-0.458460181951523,-0.839659631252289,-0.118208669126034,-0.530092775821686,-0.88332188129425,-0.0517509989440441,-0.465901553630829,-0.754949927330017,-0.177209496498108,-0.631385207176209,-0.802346050739288,0.0724842250347137,-0.592441260814667,-0.839659631252289,-0.118208669126034,-0.530092775821686,-0.802346050739288,0.0724842250347137,-0.592441260814667,-0.576978027820587,0.386297702789307,-0.719632029533386,-0.555691003799438,0.544975876808167,-0.627860307693481, +-0.898573696613312,-0.1072768419981,-0.425507485866547,-0.912245094776154,-0.0584693104028702,-0.405450463294983,-0.922027111053467,-0.150661796331406,-0.356604754924774,-0.901649653911591,-0.21311354637146,-0.376311600208282,-0.871962010860443,-0.171745046973228,-0.458460181951523,-0.898573696613312,-0.1072768419981,-0.425507485866547,-0.917134463787079,-0.307646125555038,-0.253412932157516,-0.91685825586319,-0.246387884020805,-0.314107626676559,-0.907223999500275,-0.26954111456871,-0.322942793369293,-0.920257866382599,-0.252414882183075,-0.299018114805222,-0.91685825586319,-0.246387884020805,-0.314107626676559,-0.921562671661377,-0.313015997409821,-0.229658797383308,-0.922027111053467,-0.150661796331406,-0.356604754924774,-0.920257866382599,-0.252414882183075,-0.299018114805222,-0.901649653911591,-0.21311354637146,-0.376311600208282,-0.881256937980652,-0.284857094287872,-0.377150535583496,-0.881194472312927,-0.279593974351883,-0.38121297955513,-0.831610143184662,-0.314193308353424,-0.457937806844711,-0.9004807472229,-0.247728645801544,-0.357442021369934,-0.881256937980652,-0.284857094287872,-0.377150535583496,-0.910325288772583,-0.272279232740402,-0.311723798513412,-0.907223999500275,-0.26954111456871,-0.322942793369293,-0.919393479824066,-0.262272208929062,-0.293136119842529,-0.925158441066742,-0.284383118152618,-0.251411885023117,-0.919393479824066,-0.262272208929062,-0.293136119842529,-0.9004807472229,-0.247728645801544,-0.357442021369934,-0.910325288772583,-0.272279232740402,-0.311723798513412,-0.79746276140213,-0.35950243473053,-0.484573036432266,-0.831610143184662,-0.314193308353424,-0.457937806844711,-0.881194472312927,-0.279593974351883,-0.38121297955513,-0.739505589008331,-0.401579171419144,-0.540245771408081,-0.552089393138886,-0.461103886365891,-0.694680035114288,-0.79746276140213,-0.35950243473053,-0.484573036432266,-0.250310122966766,0.871160209178925,-0.422403365373611,-0.37522754073143,0.828287780284882,-0.416105210781097,-0.259120166301727,0.77203631401062,-0.580358922481537,-0.497073411941528,0.710340023040771,-0.498332172632217, +-0.29808634519577,0.819161653518677,-0.490019083023071,-0.327786386013031,0.720034003257751,-0.611642837524414,-0.601991653442383,0.619755327701569,-0.503496944904327,-0.497073411941528,0.710340023040771,-0.498332172632217,-0.638662815093994,0.600870549678802,-0.480691403150558,-0.601991653442383,0.619755327701569,-0.503496944904327,-0.591039001941681,0.488680094480515,-0.641766726970673,-0.556533396244049,0.570259988307953,-0.60421347618103,-0.556533396244049,0.570259988307953,-0.60421347618103,-0.53262585401535,0.587222039699554,-0.609491407871246,-0.463763147592545,0.72066742181778,-0.515327095985413,-0.29808634519577,0.819161653518677,-0.490019083023071,-0.250310122966766,0.871160209178925,-0.422403365373611,-0.184233993291855,0.814928352832794,-0.549499273300171,0.0160935837775469,-0.0435999818146229,-0.998919367790222,-0.0357716791331768,0.147108227014542,-0.988473296165466,-0.16675241291523,-0.0232095215469599,-0.985725522041321,-0.16675241291523,-0.0232095215469599,-0.985725522041321,-0.0357716791331768,0.147108227014542,-0.988473296165466,-0.229759976267815,0.160164654254913,-0.959977865219116,-0.367021948099136,0.186683297157288,-0.911287069320679,-0.281787812709808,0.0211014375090599,-0.959244608879089,-0.229759976267815,0.160164654254913,-0.959977865219116,-0.367021948099136,0.186683297157288,-0.911287069320679,-0.455377697944641,0.49023300409317,-0.74317067861557,-0.587179243564606,0.447957247495651,-0.674206674098969,-0.587179243564606,0.447957247495651,-0.674206674098969,-0.685827016830444,0.597008109092712,-0.416199952363968,-0.754153907299042,0.537223339080811,-0.377680867910385,-0.734530746936798,0.615843296051025,-0.284958600997925,-0.754153907299042,0.537223339080811,-0.377680867910385,-0.685827016830444,0.597008109092712,-0.416199952363968,-0.735773146152496,0.650034129619598,-0.189982488751411,-0.805281579494476,0.535852611064911,-0.253738760948181,-0.717522859573364,0.62845116853714,-0.30034938454628,-0.717522859573364,0.62845116853714,-0.30034938454628,-0.771262109279633,0.563304126262665,-0.296383321285248, +-0.734530746936798,0.615843296051025,-0.284958600997925,-0.803810834884644,0.57330721616745,-0.158766582608223,-0.805281579494476,0.535852611064911,-0.253738760948181,-0.735773146152496,0.650034129619598,-0.189982488751411,-0.836332559585571,0.514738917350769,-0.188657477498055,-0.803810834884644,0.57330721616745,-0.158766582608223,-0.769899725914001,0.600138127803802,-0.21699883043766,-0.836332559585571,0.514738917350769,-0.188657477498055,-0.769899725914001,0.600138127803802,-0.21699883043766,-0.731699883937836,0.543190062046051,-0.411776214838028,-0.62337189912796,0.699528574943542,-0.349381029605865,-0.601587772369385,0.510481894016266,-0.614410579204559,-0.731699883937836,0.543190062046051,-0.411776214838028,-0.53262585401535,0.587222039699554,-0.609491407871246,-0.591039001941681,0.488680094480515,-0.641766726970673,-0.601587772369385,0.510481894016266,-0.614410579204559,0.08088069409132,-0.0906920954585075,-0.992589116096497,0.120011225342751,-0.167125761508942,-0.978604197502136,0.0908749550580978,-0.121524170041084,-0.988419711589813,0.132063671946526,-0.243081837892532,-0.960973620414734,0.0814965218305588,-0.250438928604126,-0.964696109294891,0.120011225342751,-0.167125761508942,-0.978604197502136,0.117415480315685,-0.34429994225502,-0.931488633155823,0.0814965218305588,-0.250438928604126,-0.964696109294891,0.132063671946526,-0.243081837892532,-0.960973620414734,-0.0191392283886671,-0.374295592308044,-0.927111864089966,0.117415480315685,-0.34429994225502,-0.931488633155823,-0.0204259287565947,-0.434171169996262,-0.900598764419556,-0.0204259287565947,-0.434171169996262,-0.900598764419556,-0.103691838681698,-0.448131859302521,-0.887933373451233,-0.0771493464708328,-0.434578657150269,-0.897323429584503,-0.0691801905632019,-0.421378672122955,-0.904242217540741,-0.103691838681698,-0.448131859302521,-0.887933373451233,-0.0198753848671913,-0.422312498092651,-0.906232297420502,0.0160935837775469,-0.0435999818146229,-0.998919367790222,-0.0457413606345654,-0.124709159135818,-0.991138398647308,0.08088069409132,-0.0906920954585075,-0.992589116096497, +-0.622480630874634,-0.404241025447845,-0.670154452323914,-0.552089393138886,-0.461103886365891,-0.694680035114288,-0.332746028900146,-0.429208636283875,-0.839678406715393,-0.0603448152542114,-0.405180960893631,-0.912242710590363,-0.0198753848671913,-0.422312498092651,-0.906232297420502,0.118969440460205,-0.429752558469772,-0.895074844360352,-0.0603448152542114,-0.405180960893631,-0.912242710590363,-0.237265780568123,-0.422650098800659,-0.874683797359467,-0.332746028900146,-0.429208636283875,-0.839678406715393,-0.37522754073143,0.828287780284882,-0.416105210781097,-0.555691003799438,0.544975876808167,-0.627860307693481,-0.259120166301727,0.77203631401062,-0.580358922481537,-0.799695193767548,-0.201871022582054,-0.565451622009277,-0.839659631252289,-0.118208669126034,-0.530092775821686,-0.871962010860443,-0.171745046973228,-0.458460181951523,-0.68766987323761,-0.0698718056082726,-0.722653388977051,-0.802346050739288,0.0724842250347137,-0.592441260814667,-0.754949927330017,-0.177209496498108,-0.631385207176209,-0.799695193767548,-0.201871022582054,-0.565451622009277,-0.754949927330017,-0.177209496498108,-0.631385207176209,-0.839659631252289,-0.118208669126034,-0.530092775821686,-0.68766987323761,-0.0698718056082726,-0.722653388977051,-0.576978027820587,0.386297702789307,-0.719632029533386,-0.802346050739288,0.0724842250347137,-0.592441260814667,-0.555691003799438,0.544975876808167,-0.627860307693481,-0.576978027820587,0.386297702789307,-0.719632029533386,-0.402054518461227,0.638614177703857,-0.656143248081207,-0.922027111053467,-0.150661796331406,-0.356604754924774,-0.901649653911591,-0.21311354637146,-0.376311600208282,-0.898573696613312,-0.1072768419981,-0.425507485866547,-0.901649653911591,-0.21311354637146,-0.376311600208282,-0.871136486530304,-0.287363171577454,-0.398175239562988,-0.871962010860443,-0.171745046973228,-0.458460181951523,-0.921562671661377,-0.313015997409821,-0.229658797383308,-0.91685825586319,-0.246387884020805,-0.314107626676559,-0.917134463787079,-0.307646125555038,-0.253412932157516,-0.907223999500275,-0.26954111456871,-0.322942793369293, +-0.925158441066742,-0.284383118152618,-0.251411885023117,-0.917134463787079,-0.307646125555038,-0.253412932157516,-0.920257866382599,-0.252414882183075,-0.299018114805222,-0.921562671661377,-0.313015997409821,-0.229658797383308,-0.914576292037964,-0.319050490856171,-0.248509287834167,-0.920257866382599,-0.252414882183075,-0.299018114805222,-0.871136486530304,-0.287363171577454,-0.398175239562988,-0.901649653911591,-0.21311354637146,-0.376311600208282,-0.881256937980652,-0.284857094287872,-0.377150535583496,-0.831610143184662,-0.314193308353424,-0.457937806844711,-0.853242158889771,-0.327356934547424,-0.405974447727203,-0.894239664077759,-0.322667419910431,-0.310195177793503,-0.910325288772583,-0.272279232740402,-0.311723798513412,-0.881256937980652,-0.284857094287872,-0.377150535583496,-0.908293604850769,-0.320447742938995,-0.268915623426437,-0.925158441066742,-0.284383118152618,-0.251411885023117,-0.919393479824066,-0.262272208929062,-0.293136119842529,-0.908293604850769,-0.320447742938995,-0.268915623426437,-0.919393479824066,-0.262272208929062,-0.293136119842529,-0.910325288772583,-0.272279232740402,-0.311723798513412,-0.734917819499969,-0.356831640005112,-0.576686084270477,-0.831610143184662,-0.314193308353424,-0.457937806844711,-0.79746276140213,-0.35950243473053,-0.484573036432266,-0.622480630874634,-0.404241025447845,-0.670154452323914,-0.79746276140213,-0.35950243473053,-0.484573036432266,-0.552089393138886,-0.461103886365891,-0.694680035114288,-0.184233993291855,0.814928352832794,-0.549499273300171,-0.250310122966766,0.871160209178925,-0.422403365373611,-0.259120166301727,0.77203631401062,-0.580358922481537,-0.327786386013031,0.720034003257751,-0.611642837524414,-0.29808634519577,0.819161653518677,-0.490019083023071,-0.19462613761425,0.758795380592346,-0.621570646762848,-0.327786386013031,0.720034003257751,-0.611642837524414,-0.462572365999222,0.598784148693085,-0.653822779655457,-0.497073411941528,0.710340023040771,-0.498332172632217,-0.638662815093994,0.600870549678802,-0.480691403150558,-0.497073411941528,0.710340023040771,-0.498332172632217, +-0.589502811431885,0.582712888717651,-0.55940318107605,-0.601991653442383,0.619755327701569,-0.503496944904327,-0.638662815093994,0.600870549678802,-0.480691403150558,-0.666379511356354,0.58831775188446,-0.458061546087265,-0.601991653442383,0.619755327701569,-0.503496944904327,-0.672526180744171,0.563249588012695,-0.480060815811157,-0.591039001941681,0.488680094480515,-0.641766726970673,-0.556533396244049,0.570259988307953,-0.60421347618103,-0.591039001941681,0.488680094480515,-0.641766726970673,-0.53262585401535,0.587222039699554,-0.609491407871246,-0.29808634519577,0.819161653518677,-0.490019083023071,-0.184233993291855,0.814928352832794,-0.549499273300171,-0.19462613761425,0.758795380592346,-0.621570646762848,0.0160935837775469,-0.0435999818146229,-0.998919367790222,-0.16675241291523,-0.0232095215469599,-0.985725522041321,-0.149738848209381,-0.089905634522438,-0.984629452228546,-0.229759976267815,0.160164654254913,-0.959977865219116,-0.281787812709808,0.0211014375090599,-0.959244608879089,-0.16675241291523,-0.0232095215469599,-0.985725522041321,-0.281787812709808,0.0211014375090599,-0.959244608879089,-0.367021948099136,0.186683297157288,-0.911287069320679,-0.338722854852676,0.0743032470345497,-0.937947630882263,-0.367021948099136,0.186683297157288,-0.911287069320679,-0.587179243564606,0.447957247495651,-0.674206674098969,-0.355637580156326,0.277702063322067,-0.892414331436157,-0.587179243564606,0.447957247495651,-0.674206674098969,-0.754153907299042,0.537223339080811,-0.377680867910385,-0.534051954746246,0.461471974849701,-0.708400964736938,-0.754153907299042,0.537223339080811,-0.377680867910385,-0.734530746936798,0.615843296051025,-0.284958600997925,-0.771262109279633,0.563304126262665,-0.296383321285248,-0.805281579494476,0.535852611064911,-0.253738760948181,-0.771262109279633,0.563304126262665,-0.296383321285248,-0.717522859573364,0.62845116853714,-0.30034938454628,-0.805281579494476,0.535852611064911,-0.253738760948181,-0.803810834884644,0.57330721616745,-0.158766582608223,-0.857784152030945,0.497700393199921,-0.128454327583313, +-0.857784152030945,0.497700393199921,-0.128454327583313,-0.803810834884644,0.57330721616745,-0.158766582608223,-0.836332559585571,0.514738917350769,-0.188657477498055,-0.820412039756775,0.417721509933472,-0.390426278114319,-0.836332559585571,0.514738917350769,-0.188657477498055,-0.731699883937836,0.543190062046051,-0.411776214838028,-0.731699883937836,0.543190062046051,-0.411776214838028,-0.601587772369385,0.510481894016266,-0.614410579204559,-0.666458904743195,0.440133988857269,-0.601759552955627,-0.591039001941681,0.488680094480515,-0.641766726970673,-0.666458904743195,0.440133988857269,-0.601759552955627,-0.601587772369385,0.510481894016266,-0.614410579204559,0.08088069409132,-0.0906920954585075,-0.992589116096497,-0.0457413606345654,-0.124709159135818,-0.991138398647308,0.120011225342751,-0.167125761508942,-0.978604197502136,0.132063671946526,-0.243081837892532,-0.960973620414734,0.120011225342751,-0.167125761508942,-0.978604197502136,-0.00371605227701366,-0.205950155854225,-0.978555381298065,0.119021728634834,-0.309260100126266,-0.943499863147736,0.117415480315685,-0.34429994225502,-0.931488633155823,0.132063671946526,-0.243081837892532,-0.960973620414734,0.117415480315685,-0.34429994225502,-0.931488633155823,0.107406906783581,-0.407997310161591,-0.906643152236938,-0.0204259287565947,-0.434171169996262,-0.900598764419556,-0.0198753848671913,-0.422312498092651,-0.906232297420502,-0.103691838681698,-0.448131859302521,-0.887933373451233,-0.0204259287565947,-0.434171169996262,-0.900598764419556,0.0160935837775469,-0.0435999818146229,-0.998919367790222,-0.149738848209381,-0.089905634522438,-0.984629452228546,-0.0457413606345654,-0.124709159135818,-0.991138398647308,-0.622480630874634,-0.404241025447845,-0.670154452323914,-0.332746028900146,-0.429208636283875,-0.839678406715393,-0.49848747253418,-0.417386680841446,-0.7598015666008,-0.0198753848671913,-0.422312498092651,-0.906232297420502,0.107406906783581,-0.407997310161591,-0.906643152236938,0.118969440460205,-0.429752558469772,-0.895074844360352,-0.0603448152542114,-0.405180960893631,-0.912242710590363, +0.118969440460205,-0.429752558469772,-0.895074844360352,0.039346519857645,-0.396467000246048,-0.917205393314362,-0.115243703126907,-0.416214913129807,-0.901933431625366,-0.237265780568123,-0.422650098800659,-0.874683797359467,-0.0603448152542114,-0.405180960893631,-0.912242710590363,-0.332746028900146,-0.429208636283875,-0.839678406715393,-0.237265780568123,-0.422650098800659,-0.874683797359467,-0.49848747253418,-0.417386680841446,-0.7598015666008,-0.555691003799438,0.544975876808167,-0.627860307693481,-0.402054518461227,0.638614177703857,-0.656143248081207,-0.259120166301727,0.77203631401062,-0.580358922481537,-0.799695193767548,-0.201871022582054,-0.565451622009277,-0.871962010860443,-0.171745046973228,-0.458460181951523,-0.788079857826233,-0.302864104509354,-0.535913527011871,-0.63086861371994,-0.24763511121273,-0.735310554504395,-0.68766987323761,-0.0698718056082726,-0.722653388977051,-0.754949927330017,-0.177209496498108,-0.631385207176209,-0.691847085952759,-0.287439048290253,-0.66236412525177,-0.754949927330017,-0.177209496498108,-0.631385207176209,-0.799695193767548,-0.201871022582054,-0.565451622009277,-0.576978027820587,0.386297702789307,-0.719632029533386,-0.68766987323761,-0.0698718056082726,-0.722653388977051,-0.518446564674377,0.258040636777878,-0.815247237682343,-0.576978027820587,0.386297702789307,-0.719632029533386,-0.245718538761139,0.730199635028839,-0.637519180774689,-0.402054518461227,0.638614177703857,-0.656143248081207,-0.788079857826233,-0.302864104509354,-0.535913527011871,-0.871962010860443,-0.171745046973228,-0.458460181951523,-0.871136486530304,-0.287363171577454,-0.398175239562988,-0.921562671661377,-0.313015997409821,-0.229658797383308,-0.917134463787079,-0.307646125555038,-0.253412932157516,-0.925141632556915,-0.319294303655624,-0.205338791012764,-0.936747372150421,-0.266808331012726,-0.226533964276314,-0.917134463787079,-0.307646125555038,-0.253412932157516,-0.925158441066742,-0.284383118152618,-0.251411885023117,-0.914576292037964,-0.319050490856171,-0.248509287834167,-0.921562671661377,-0.313015997409821,-0.229658797383308, +-0.918595850467682,-0.315971493721008,-0.237367987632751,-0.914576292037964,-0.319050490856171,-0.248509287834167,-0.883304297924042,-0.313327342271805,-0.348710983991623,-0.920257866382599,-0.252414882183075,-0.299018114805222,-0.883304297924042,-0.313327342271805,-0.348710983991623,-0.871136486530304,-0.287363171577454,-0.398175239562988,-0.920257866382599,-0.252414882183075,-0.299018114805222,-0.831610143184662,-0.314193308353424,-0.457937806844711,-0.731837749481201,-0.374587088823318,-0.569295942783356,-0.853242158889771,-0.327356934547424,-0.405974447727203,-0.881256937980652,-0.284857094287872,-0.377150535583496,-0.853242158889771,-0.327356934547424,-0.405974447727203,-0.894239664077759,-0.322667419910431,-0.310195177793503,-0.894239664077759,-0.322667419910431,-0.310195177793503,-0.908293604850769,-0.320447742938995,-0.268915623426437,-0.910325288772583,-0.272279232740402,-0.311723798513412,-0.920707881450653,-0.272950559854507,-0.278917521238327,-0.925158441066742,-0.284383118152618,-0.251411885023117,-0.908293604850769,-0.320447742938995,-0.268915623426437,-0.731837749481201,-0.374587088823318,-0.569295942783356,-0.831610143184662,-0.314193308353424,-0.457937806844711,-0.734917819499969,-0.356831640005112,-0.576686084270477,-0.734917819499969,-0.356831640005112,-0.576686084270477,-0.79746276140213,-0.35950243473053,-0.484573036432266,-0.622480630874634,-0.404241025447845,-0.670154452323914,-0.245718538761139,0.730199635028839,-0.637519180774689,-0.184233993291855,0.814928352832794,-0.549499273300171,-0.259120166301727,0.77203631401062,-0.580358922481537,-0.327786386013031,0.720034003257751,-0.611642837524414,-0.19462613761425,0.758795380592346,-0.621570646762848,-0.170995727181435,0.650521695613861,-0.739987730979919,-0.323574125766754,0.64555561542511,-0.691778540611267,-0.462572365999222,0.598784148693085,-0.653822779655457,-0.327786386013031,0.720034003257751,-0.611642837524414,-0.589502811431885,0.582712888717651,-0.55940318107605,-0.497073411941528,0.710340023040771,-0.498332172632217,-0.462572365999222,0.598784148693085,-0.653822779655457, +-0.589502811431885,0.582712888717651,-0.55940318107605,-0.627085149288177,0.534085094928741,-0.567024946212769,-0.638662815093994,0.600870549678802,-0.480691403150558,-0.627085149288177,0.534085094928741,-0.567024946212769,-0.666379511356354,0.58831775188446,-0.458061546087265,-0.638662815093994,0.600870549678802,-0.480691403150558,-0.601991653442383,0.619755327701569,-0.503496944904327,-0.666379511356354,0.58831775188446,-0.458061546087265,-0.672526180744171,0.563249588012695,-0.480060815811157,-0.672526180744171,0.563249588012695,-0.480060815811157,-0.708585977554321,0.433911085128784,-0.556441307067871,-0.591039001941681,0.488680094480515,-0.641766726970673,-0.0865553542971611,0.725452482700348,-0.682807922363281,-0.19462613761425,0.758795380592346,-0.621570646762848,-0.184233993291855,0.814928352832794,-0.549499273300171,-0.16675241291523,-0.0232095215469599,-0.985725522041321,-0.29905503988266,-0.121795162558556,-0.946431159973145,-0.149738848209381,-0.089905634522438,-0.984629452228546,-0.352554589509964,-0.0426361374557018,-0.934819400310516,-0.16675241291523,-0.0232095215469599,-0.985725522041321,-0.281787812709808,0.0211014375090599,-0.959244608879089,-0.299923956394196,0.17846854031086,-0.937120318412781,-0.338722854852676,0.0743032470345497,-0.937947630882263,-0.367021948099136,0.186683297157288,-0.911287069320679,-0.281787812709808,0.0211014375090599,-0.959244608879089,-0.338722854852676,0.0743032470345497,-0.937947630882263,-0.352554589509964,-0.0426361374557018,-0.934819400310516,-0.355637580156326,0.277702063322067,-0.892414331436157,-0.587179243564606,0.447957247495651,-0.674206674098969,-0.36027866601944,0.358511179685593,-0.861202001571655,-0.299923956394196,0.17846854031086,-0.937120318412781,-0.367021948099136,0.186683297157288,-0.911287069320679,-0.355637580156326,0.277702063322067,-0.892414331436157,-0.737044930458069,0.503186821937561,-0.451184689998627,-0.534051954746246,0.461471974849701,-0.708400964736938,-0.754153907299042,0.537223339080811,-0.377680867910385,-0.587179243564606,0.447957247495651,-0.674206674098969, +-0.534051954746246,0.461471974849701,-0.708400964736938,-0.36027866601944,0.358511179685593,-0.861202001571655,-0.754153907299042,0.537223339080811,-0.377680867910385,-0.771262109279633,0.563304126262665,-0.296383321285248,-0.817205905914307,0.495219588279724,-0.294842302799225,-0.805281579494476,0.535852611064911,-0.253738760948181,-0.817205905914307,0.495219588279724,-0.294842302799225,-0.771262109279633,0.563304126262665,-0.296383321285248,-0.857784152030945,0.497700393199921,-0.128454327583313,-0.854615569114685,0.456080496311188,-0.248239129781723,-0.805281579494476,0.535852611064911,-0.253738760948181,-0.898675978183746,0.39695006608963,-0.186579212546349,-0.857784152030945,0.497700393199921,-0.128454327583313,-0.836332559585571,0.514738917350769,-0.188657477498055,-0.820412039756775,0.417721509933472,-0.390426278114319,-0.898675978183746,0.39695006608963,-0.186579212546349,-0.836332559585571,0.514738917350769,-0.188657477498055,-0.820412039756775,0.417721509933472,-0.390426278114319,-0.731699883937836,0.543190062046051,-0.411776214838028,-0.666458904743195,0.440133988857269,-0.601759552955627,-0.591039001941681,0.488680094480515,-0.641766726970673,-0.708585977554321,0.433911085128784,-0.556441307067871,-0.666458904743195,0.440133988857269,-0.601759552955627,-0.0457413606345654,-0.124709159135818,-0.991138398647308,-0.00371605227701366,-0.205950155854225,-0.978555381298065,0.120011225342751,-0.167125761508942,-0.978604197502136,-0.00371605227701366,-0.205950155854225,-0.978555381298065,0.0247213244438171,-0.262019962072372,-0.964745700359344,0.132063671946526,-0.243081837892532,-0.960973620414734,0.107406906783581,-0.407997310161591,-0.906643152236938,0.117415480315685,-0.34429994225502,-0.931488633155823,0.119021728634834,-0.309260100126266,-0.943499863147736,0.119021728634834,-0.309260100126266,-0.943499863147736,0.132063671946526,-0.243081837892532,-0.960973620414734,0.0247213244438171,-0.262019962072372,-0.964745700359344,-0.0198753848671913,-0.422312498092651,-0.906232297420502,-0.0204259287565947,-0.434171169996262,-0.900598764419556, +0.107406906783581,-0.407997310161591,-0.906643152236938,-0.0457413606345654,-0.124709159135818,-0.991138398647308,-0.149738848209381,-0.089905634522438,-0.984629452228546,-0.207381024956703,-0.135784566402435,-0.968790769577026,-0.622480630874634,-0.404241025447845,-0.670154452323914,-0.49848747253418,-0.417386680841446,-0.7598015666008,-0.638264060020447,-0.41109699010849,-0.650859475135803,0.0939826816320419,-0.446191757917404,-0.889988780021667,0.118969440460205,-0.429752558469772,-0.895074844360352,0.107406906783581,-0.407997310161591,-0.906643152236938,0.118969440460205,-0.429752558469772,-0.895074844360352,0.166920006275177,-0.360196053981781,-0.91782158613205,0.039346519857645,-0.396467000246048,-0.917205393314362,-0.0603448152542114,-0.405180960893631,-0.912242710590363,0.039346519857645,-0.396467000246048,-0.917205393314362,-0.115243703126907,-0.416214913129807,-0.901933431625366,-0.330398231744766,-0.355373799800873,-0.874383449554443,-0.237265780568123,-0.422650098800659,-0.874683797359467,-0.115243703126907,-0.416214913129807,-0.901933431625366,-0.330398231744766,-0.355373799800873,-0.874383449554443,-0.49848747253418,-0.417386680841446,-0.7598015666008,-0.237265780568123,-0.422650098800659,-0.874683797359467,-0.245718538761139,0.730199635028839,-0.637519180774689,-0.259120166301727,0.77203631401062,-0.580358922481537,-0.402054518461227,0.638614177703857,-0.656143248081207,-0.691847085952759,-0.287439048290253,-0.66236412525177,-0.799695193767548,-0.201871022582054,-0.565451622009277,-0.788079857826233,-0.302864104509354,-0.535913527011871,-0.68766987323761,-0.0698718056082726,-0.722653388977051,-0.63086861371994,-0.24763511121273,-0.735310554504395,-0.625221312046051,-0.192640766501427,-0.756298661231995,-0.754949927330017,-0.177209496498108,-0.631385207176209,-0.691847085952759,-0.287439048290253,-0.66236412525177,-0.63086861371994,-0.24763511121273,-0.735310554504395,-0.68766987323761,-0.0698718056082726,-0.722653388977051,-0.52955824136734,0.0485978834331036,-0.846880257129669,-0.518446564674377,0.258040636777878,-0.815247237682343, +-0.576978027820587,0.386297702789307,-0.719632029533386,-0.518446564674377,0.258040636777878,-0.815247237682343,-0.287284791469574,0.594404578208923,-0.751099526882172,-0.287284791469574,0.594404578208923,-0.751099526882172,-0.245718538761139,0.730199635028839,-0.637519180774689,-0.576978027820587,0.386297702789307,-0.719632029533386,-0.788079857826233,-0.302864104509354,-0.535913527011871,-0.871136486530304,-0.287363171577454,-0.398175239562988,-0.825256288051605,-0.316268563270569,-0.46789538860321,-0.925141632556915,-0.319294303655624,-0.205338791012764,-0.917134463787079,-0.307646125555038,-0.253412932157516,-0.936747372150421,-0.266808331012726,-0.226533964276314,-0.918595850467682,-0.315971493721008,-0.237367987632751,-0.921562671661377,-0.313015997409821,-0.229658797383308,-0.925141632556915,-0.319294303655624,-0.205338791012764,-0.936747372150421,-0.266808331012726,-0.226533964276314,-0.925158441066742,-0.284383118152618,-0.251411885023117,-0.920707881450653,-0.272950559854507,-0.278917521238327,-0.918595850467682,-0.315971493721008,-0.237367987632751,-0.885138690471649,-0.26771467924118,-0.380602419376373,-0.914576292037964,-0.319050490856171,-0.248509287834167,-0.883304297924042,-0.313327342271805,-0.348710983991623,-0.914576292037964,-0.319050490856171,-0.248509287834167,-0.885138690471649,-0.26771467924118,-0.380602419376373,-0.825256288051605,-0.316268563270569,-0.46789538860321,-0.871136486530304,-0.287363171577454,-0.398175239562988,-0.883304297924042,-0.313327342271805,-0.348710983991623,-0.786971151828766,-0.323583900928497,-0.52532821893692,-0.853242158889771,-0.327356934547424,-0.405974447727203,-0.731837749481201,-0.374587088823318,-0.569295942783356,-0.91009134054184,-0.26798877120018,-0.316094279289246,-0.894239664077759,-0.322667419910431,-0.310195177793503,-0.853242158889771,-0.327356934547424,-0.405974447727203,-0.908293604850769,-0.320447742938995,-0.268915623426437,-0.894239664077759,-0.322667419910431,-0.310195177793503,-0.919060051441193,-0.314328789710999,-0.237751916050911,-0.942643225193024,-0.269812494516373,-0.196532100439072, +-0.920707881450653,-0.272950559854507,-0.278917521238327,-0.908293604850769,-0.320447742938995,-0.268915623426437,-0.731837749481201,-0.374587088823318,-0.569295942783356,-0.734917819499969,-0.356831640005112,-0.576686084270477,-0.638264060020447,-0.41109699010849,-0.650859475135803,-0.622480630874634,-0.404241025447845,-0.670154452323914,-0.638264060020447,-0.41109699010849,-0.650859475135803,-0.734917819499969,-0.356831640005112,-0.576686084270477,-0.245718538761139,0.730199635028839,-0.637519180774689,-0.0865553542971611,0.725452482700348,-0.682807922363281,-0.184233993291855,0.814928352832794,-0.549499273300171,-0.0865553542971611,0.725452482700348,-0.682807922363281,-0.170995727181435,0.650521695613861,-0.739987730979919,-0.19462613761425,0.758795380592346,-0.621570646762848,-0.323574125766754,0.64555561542511,-0.691778540611267,-0.327786386013031,0.720034003257751,-0.611642837524414,-0.170995727181435,0.650521695613861,-0.739987730979919,-0.323574125766754,0.64555561542511,-0.691778540611267,-0.298863232135773,0.526999235153198,-0.795583128929138,-0.462572365999222,0.598784148693085,-0.653822779655457,-0.462572365999222,0.598784148693085,-0.653822779655457,-0.552266120910645,0.497051656246185,-0.669284403324127,-0.589502811431885,0.582712888717651,-0.55940318107605,-0.589502811431885,0.582712888717651,-0.55940318107605,-0.552266120910645,0.497051656246185,-0.669284403324127,-0.627085149288177,0.534085094928741,-0.567024946212769,-0.705592632293701,0.550780296325684,-0.445847392082214,-0.666379511356354,0.58831775188446,-0.458061546087265,-0.627085149288177,0.534085094928741,-0.567024946212769,-0.666379511356354,0.58831775188446,-0.458061546087265,-0.705592632293701,0.550780296325684,-0.445847392082214,-0.672526180744171,0.563249588012695,-0.480060815811157,-0.771284639835358,0.501649677753448,-0.391749382019043,-0.708585977554321,0.433911085128784,-0.556441307067871,-0.672526180744171,0.563249588012695,-0.480060815811157,-0.16675241291523,-0.0232095215469599,-0.985725522041321,-0.352554589509964,-0.0426361374557018,-0.934819400310516, +-0.29905503988266,-0.121795162558556,-0.946431159973145,-0.29905503988266,-0.121795162558556,-0.946431159973145,-0.207381024956703,-0.135784566402435,-0.968790769577026,-0.149738848209381,-0.089905634522438,-0.984629452228546,-0.321187198162079,0.162314876914024,-0.93300187587738,-0.338722854852676,0.0743032470345497,-0.937947630882263,-0.299923956394196,0.17846854031086,-0.937120318412781,-0.352554589509964,-0.0426361374557018,-0.934819400310516,-0.338722854852676,0.0743032470345497,-0.937947630882263,-0.356533288955688,-0.0258095394819975,-0.933926045894623,-0.355637580156326,0.277702063322067,-0.892414331436157,-0.36027866601944,0.358511179685593,-0.861202001571655,-0.270260781049728,0.327082604169846,-0.905525207519531,-0.325182735919952,0.26327246427536,-0.908264100551605,-0.299923956394196,0.17846854031086,-0.937120318412781,-0.355637580156326,0.277702063322067,-0.892414331436157,-0.624813914299011,0.36167848110199,-0.691950917243958,-0.534051954746246,0.461471974849701,-0.708400964736938,-0.737044930458069,0.503186821937561,-0.451184689998627,-0.817205905914307,0.495219588279724,-0.294842302799225,-0.737044930458069,0.503186821937561,-0.451184689998627,-0.754153907299042,0.537223339080811,-0.377680867910385,-0.534051954746246,0.461471974849701,-0.708400964736938,-0.276637583971024,0.370983213186264,-0.886477828025818,-0.36027866601944,0.358511179685593,-0.861202001571655,-0.854615569114685,0.456080496311188,-0.248239129781723,-0.817205905914307,0.495219588279724,-0.294842302799225,-0.805281579494476,0.535852611064911,-0.253738760948181,-0.854615569114685,0.456080496311188,-0.248239129781723,-0.857784152030945,0.497700393199921,-0.128454327583313,-0.898675978183746,0.39695006608963,-0.186579212546349,-0.887513101100922,0.228008985519409,-0.400415122509003,-0.898675978183746,0.39695006608963,-0.186579212546349,-0.820412039756775,0.417721509933472,-0.390426278114319,-0.820412039756775,0.417721509933472,-0.390426278114319,-0.666458904743195,0.440133988857269,-0.601759552955627,-0.765058159828186,0.335626214742661,-0.549582481384277, +-0.708585977554321,0.433911085128784,-0.556441307067871,-0.765058159828186,0.335626214742661,-0.549582481384277,-0.666458904743195,0.440133988857269,-0.601759552955627,-0.00371605227701366,-0.205950155854225,-0.978555381298065,-0.0457413606345654,-0.124709159135818,-0.991138398647308,-0.163576707243919,-0.202172264456749,-0.965592563152313,-0.00371605227701366,-0.205950155854225,-0.978555381298065,-0.119859270751476,-0.260959327220917,-0.957879900932312,0.0247213244438171,-0.262019962072372,-0.964745700359344,0.107406906783581,-0.407997310161591,-0.906643152236938,0.119021728634834,-0.309260100126266,-0.943499863147736,0.081245057284832,-0.379483073949814,-0.921624481678009,0.0247213244438171,-0.262019962072372,-0.964745700359344,0.0413393639028072,-0.326312303543091,-0.944357573986053,0.119021728634834,-0.309260100126266,-0.943499863147736,-0.163576707243919,-0.202172264456749,-0.965592563152313,-0.0457413606345654,-0.124709159135818,-0.991138398647308,-0.207381024956703,-0.135784566402435,-0.968790769577026,-0.731837749481201,-0.374587088823318,-0.569295942783356,-0.638264060020447,-0.41109699010849,-0.650859475135803,-0.49848747253418,-0.417386680841446,-0.7598015666008,0.0939826816320419,-0.446191757917404,-0.889988780021667,0.153616309165955,-0.398828774690628,-0.90406721830368,0.118969440460205,-0.429752558469772,-0.895074844360352,0.107406906783581,-0.407997310161591,-0.906643152236938,0.081245057284832,-0.379483073949814,-0.921624481678009,0.0939826816320419,-0.446191757917404,-0.889988780021667,0.153616309165955,-0.398828774690628,-0.90406721830368,0.166920006275177,-0.360196053981781,-0.91782158613205,0.118969440460205,-0.429752558469772,-0.895074844360352,0.166920006275177,-0.360196053981781,-0.91782158613205,0.00122136948630214,-0.294912487268448,-0.955523431301117,0.039346519857645,-0.396467000246048,-0.917205393314362,-0.11836002022028,-0.335502326488495,-0.934574246406555,-0.115243703126907,-0.416214913129807,-0.901933431625366,0.039346519857645,-0.396467000246048,-0.917205393314362,-0.11836002022028,-0.335502326488495,-0.934574246406555, +-0.330398231744766,-0.355373799800873,-0.874383449554443,-0.115243703126907,-0.416214913129807,-0.901933431625366,-0.49848747253418,-0.417386680841446,-0.7598015666008,-0.330398231744766,-0.355373799800873,-0.874383449554443,-0.604844570159912,-0.339946448802948,-0.720138370990753,-0.691847085952759,-0.287439048290253,-0.66236412525177,-0.788079857826233,-0.302864104509354,-0.535913527011871,-0.657176077365875,-0.375792860984802,-0.653375148773193,-0.63086861371994,-0.24763511121273,-0.735310554504395,-0.537398278713226,-0.159633949398994,-0.828082084655762,-0.625221312046051,-0.192640766501427,-0.756298661231995,-0.68766987323761,-0.0698718056082726,-0.722653388977051,-0.625221312046051,-0.192640766501427,-0.756298661231995,-0.52955824136734,0.0485978834331036,-0.846880257129669,-0.59831029176712,-0.359159499406815,-0.716260492801666,-0.63086861371994,-0.24763511121273,-0.735310554504395,-0.691847085952759,-0.287439048290253,-0.66236412525177,-0.307637572288513,0.456017583608627,-0.835108935832977,-0.518446564674377,0.258040636777878,-0.815247237682343,-0.52955824136734,0.0485978834331036,-0.846880257129669,-0.307637572288513,0.456017583608627,-0.835108935832977,-0.287284791469574,0.594404578208923,-0.751099526882172,-0.518446564674377,0.258040636777878,-0.815247237682343,-0.287284791469574,0.594404578208923,-0.751099526882172,-0.0936264917254448,0.715043485164642,-0.692781865596771,-0.245718538761139,0.730199635028839,-0.637519180774689,-0.726775884628296,-0.347711354494095,-0.592362642288208,-0.788079857826233,-0.302864104509354,-0.535913527011871,-0.825256288051605,-0.316268563270569,-0.46789538860321,-0.935909390449524,-0.219194501638412,-0.275730550289154,-0.925141632556915,-0.319294303655624,-0.205338791012764,-0.936747372150421,-0.266808331012726,-0.226533964276314,-0.918595850467682,-0.315971493721008,-0.237367987632751,-0.925141632556915,-0.319294303655624,-0.205338791012764,-0.935909390449524,-0.219194501638412,-0.275730550289154,-0.920707881450653,-0.272950559854507,-0.278917521238327,-0.927226543426514,-0.216824367642403,-0.30534902215004, +-0.936747372150421,-0.266808331012726,-0.226533964276314,-0.918595850467682,-0.315971493721008,-0.237367987632751,-0.935909390449524,-0.219194501638412,-0.275730550289154,-0.885138690471649,-0.26771467924118,-0.380602419376373,-0.883304297924042,-0.313327342271805,-0.348710983991623,-0.885138690471649,-0.26771467924118,-0.380602419376373,-0.820645213127136,-0.27064049243927,-0.503284215927124,-0.825256288051605,-0.316268563270569,-0.46789538860321,-0.883304297924042,-0.313327342271805,-0.348710983991623,-0.820645213127136,-0.27064049243927,-0.503284215927124,-0.869036734104156,-0.214371383190155,-0.445892244577408,-0.853242158889771,-0.327356934547424,-0.405974447727203,-0.786971151828766,-0.323583900928497,-0.52532821893692,-0.731837749481201,-0.374587088823318,-0.569295942783356,-0.604844570159912,-0.339946448802948,-0.720138370990753,-0.786971151828766,-0.323583900928497,-0.52532821893692,-0.91009134054184,-0.26798877120018,-0.316094279289246,-0.919060051441193,-0.314328789710999,-0.237751916050911,-0.894239664077759,-0.322667419910431,-0.310195177793503,-0.869036734104156,-0.214371383190155,-0.445892244577408,-0.91009134054184,-0.26798877120018,-0.316094279289246,-0.853242158889771,-0.327356934547424,-0.405974447727203,-0.908293604850769,-0.320447742938995,-0.268915623426437,-0.919060051441193,-0.314328789710999,-0.237751916050911,-0.893909633159637,-0.322609305381775,-0.311205238103867,-0.920707881450653,-0.272950559854507,-0.278917521238327,-0.942643225193024,-0.269812494516373,-0.196532100439072,-0.883548498153687,-0.292759418487549,-0.365559577941895,-0.942643225193024,-0.269812494516373,-0.196532100439072,-0.908293604850769,-0.320447742938995,-0.268915623426437,-0.893909633159637,-0.322609305381775,-0.311205238103867,-0.245718538761139,0.730199635028839,-0.637519180774689,-0.0936264917254448,0.715043485164642,-0.692781865596771,-0.0865553542971611,0.725452482700348,-0.682807922363281,-0.170995727181435,0.650521695613861,-0.739987730979919,-0.0865553542971611,0.725452482700348,-0.682807922363281,-0.0391145683825016,0.598443567752838,-0.80020946264267, +-0.323574125766754,0.64555561542511,-0.691778540611267,-0.170995727181435,0.650521695613861,-0.739987730979919,-0.298863232135773,0.526999235153198,-0.795583128929138,-0.298863232135773,0.526999235153198,-0.795583128929138,-0.449630111455917,0.451734840869904,-0.77056360244751,-0.462572365999222,0.598784148693085,-0.653822779655457,-0.462572365999222,0.598784148693085,-0.653822779655457,-0.449630111455917,0.451734840869904,-0.77056360244751,-0.552266120910645,0.497051656246185,-0.669284403324127,-0.55151379108429,0.429112106561661,-0.715328693389893,-0.627085149288177,0.534085094928741,-0.567024946212769,-0.552266120910645,0.497051656246185,-0.669284403324127,-0.603837430477142,0.479582935571671,-0.63669490814209,-0.705592632293701,0.550780296325684,-0.445847392082214,-0.627085149288177,0.534085094928741,-0.567024946212769,-0.771284639835358,0.501649677753448,-0.391749382019043,-0.672526180744171,0.563249588012695,-0.480060815811157,-0.705592632293701,0.550780296325684,-0.445847392082214,-0.855507731437683,0.349959224462509,-0.381621450185776,-0.708585977554321,0.433911085128784,-0.556441307067871,-0.771284639835358,0.501649677753448,-0.391749382019043,-0.29905503988266,-0.121795162558556,-0.946431159973145,-0.352554589509964,-0.0426361374557018,-0.934819400310516,-0.372647404670715,-0.179480403661728,-0.910450756549835,-0.291634052991867,-0.247162386775017,-0.924045562744141,-0.207381024956703,-0.135784566402435,-0.968790769577026,-0.29905503988266,-0.121795162558556,-0.946431159973145,-0.321187198162079,0.162314876914024,-0.93300187587738,-0.378685563802719,0.0496931932866573,-0.9241903424263,-0.338722854852676,0.0743032470345497,-0.937947630882263,-0.321187198162079,0.162314876914024,-0.93300187587738,-0.299923956394196,0.17846854031086,-0.937120318412781,-0.325182735919952,0.26327246427536,-0.908264100551605,-0.378685563802719,0.0496931932866573,-0.9241903424263,-0.356533288955688,-0.0258095394819975,-0.933926045894623,-0.338722854852676,0.0743032470345497,-0.937947630882263,-0.372647404670715,-0.179480403661728,-0.910450756549835, +-0.352554589509964,-0.0426361374557018,-0.934819400310516,-0.356533288955688,-0.0258095394819975,-0.933926045894623,-0.270260781049728,0.327082604169846,-0.905525207519531,-0.36027866601944,0.358511179685593,-0.861202001571655,-0.276637583971024,0.370983213186264,-0.886477828025818,-0.270260781049728,0.327082604169846,-0.905525207519531,-0.325182735919952,0.26327246427536,-0.908264100551605,-0.355637580156326,0.277702063322067,-0.892414331436157,-0.624813914299011,0.36167848110199,-0.691950917243958,-0.276637583971024,0.370983213186264,-0.886477828025818,-0.534051954746246,0.461471974849701,-0.708400964736938,-0.824592769145966,0.450975984334946,-0.341566115617752,-0.624813914299011,0.36167848110199,-0.691950917243958,-0.737044930458069,0.503186821937561,-0.451184689998627,-0.824592769145966,0.450975984334946,-0.341566115617752,-0.737044930458069,0.503186821937561,-0.451184689998627,-0.817205905914307,0.495219588279724,-0.294842302799225,-0.817205905914307,0.495219588279724,-0.294842302799225,-0.854615569114685,0.456080496311188,-0.248239129781723,-0.837306439876556,0.463930636644363,-0.289285629987717,-0.919801354408264,0.307293623685837,-0.243999987840652,-0.854615569114685,0.456080496311188,-0.248239129781723,-0.898675978183746,0.39695006608963,-0.186579212546349,-0.887513101100922,0.228008985519409,-0.400415122509003,-0.93317449092865,0.282540291547775,-0.222162708640099,-0.898675978183746,0.39695006608963,-0.186579212546349,-0.887513101100922,0.228008985519409,-0.400415122509003,-0.820412039756775,0.417721509933472,-0.390426278114319,-0.765058159828186,0.335626214742661,-0.549582481384277,-0.708585977554321,0.433911085128784,-0.556441307067871,-0.808762609958649,0.288814425468445,-0.512336850166321,-0.765058159828186,0.335626214742661,-0.549582481384277,-0.00371605227701366,-0.205950155854225,-0.978555381298065,-0.163576707243919,-0.202172264456749,-0.965592563152313,-0.119859270751476,-0.260959327220917,-0.957879900932312,-0.119859270751476,-0.260959327220917,-0.957879900932312,-0.066212885081768,-0.320741981267929,-0.944849371910095, +0.0247213244438171,-0.262019962072372,-0.964745700359344,0.081245057284832,-0.379483073949814,-0.921624481678009,0.119021728634834,-0.309260100126266,-0.943499863147736,0.0413393639028072,-0.326312303543091,-0.944357573986053,0.0413393639028072,-0.326312303543091,-0.944357573986053,0.0247213244438171,-0.262019962072372,-0.964745700359344,-0.066212885081768,-0.320741981267929,-0.944849371910095,-0.291634052991867,-0.247162386775017,-0.924045562744141,-0.163576707243919,-0.202172264456749,-0.965592563152313,-0.207381024956703,-0.135784566402435,-0.968790769577026,-0.49848747253418,-0.417386680841446,-0.7598015666008,-0.604844570159912,-0.339946448802948,-0.720138370990753,-0.731837749481201,-0.374587088823318,-0.569295942783356,0.0153336795046926,-0.460174649953842,-0.887695789337158,0.153616309165955,-0.398828774690628,-0.90406721830368,0.0939826816320419,-0.446191757917404,-0.889988780021667,0.0939826816320419,-0.446191757917404,-0.889988780021667,0.081245057284832,-0.379483073949814,-0.921624481678009,-0.0245537273585796,-0.419715851545334,-0.90732330083847,0.153616309165955,-0.398828774690628,-0.90406721830368,0.150765225291252,-0.252522945404053,-0.955772817134857,0.166920006275177,-0.360196053981781,-0.91782158613205,0.166920006275177,-0.360196053981781,-0.91782158613205,0.142031759023666,-0.281582325696945,-0.948966979980469,0.00122136948630214,-0.294912487268448,-0.955523431301117,0.039346519857645,-0.396467000246048,-0.917205393314362,0.00122136948630214,-0.294912487268448,-0.955523431301117,-0.11836002022028,-0.335502326488495,-0.934574246406555,-0.11836002022028,-0.335502326488495,-0.934574246406555,-0.194888725876808,-0.289258897304535,-0.937202036380768,-0.330398231744766,-0.355373799800873,-0.874383449554443,-0.441172420978546,-0.27358466386795,-0.854703545570374,-0.604844570159912,-0.339946448802948,-0.720138370990753,-0.330398231744766,-0.355373799800873,-0.874383449554443,-0.726775884628296,-0.347711354494095,-0.592362642288208,-0.657176077365875,-0.375792860984802,-0.653375148773193,-0.788079857826233,-0.302864104509354,-0.535913527011871, +-0.657176077365875,-0.375792860984802,-0.653375148773193,-0.59831029176712,-0.359159499406815,-0.716260492801666,-0.691847085952759,-0.287439048290253,-0.66236412525177,-0.537398278713226,-0.159633949398994,-0.828082084655762,-0.63086861371994,-0.24763511121273,-0.735310554504395,-0.540938377380371,-0.306918770074844,-0.783062160015106,-0.625221312046051,-0.192640766501427,-0.756298661231995,-0.537398278713226,-0.159633949398994,-0.828082084655762,-0.52955824136734,0.0485978834331036,-0.846880257129669,-0.59831029176712,-0.359159499406815,-0.716260492801666,-0.540938377380371,-0.306918770074844,-0.783062160015106,-0.63086861371994,-0.24763511121273,-0.735310554504395,-0.307637572288513,0.456017583608627,-0.835108935832977,-0.52955824136734,0.0485978834331036,-0.846880257129669,-0.308033972978592,0.3783118724823,-0.872923254966736,-0.307637572288513,0.456017583608627,-0.835108935832977,-0.0935413539409637,0.646535038948059,-0.757127642631531,-0.287284791469574,0.594404578208923,-0.751099526882172,-0.287284791469574,0.594404578208923,-0.751099526882172,-0.0935413539409637,0.646535038948059,-0.757127642631531,-0.0936264917254448,0.715043485164642,-0.692781865596771,-0.726775884628296,-0.347711354494095,-0.592362642288208,-0.825256288051605,-0.316268563270569,-0.46789538860321,-0.772392570972443,-0.259115666151047,-0.579886674880981,-0.935909390449524,-0.219194501638412,-0.275730550289154,-0.936747372150421,-0.266808331012726,-0.226533964276314,-0.927226543426514,-0.216824367642403,-0.30534902215004,-0.883548498153687,-0.292759418487549,-0.365559577941895,-0.927226543426514,-0.216824367642403,-0.30534902215004,-0.920707881450653,-0.272950559854507,-0.278917521238327,-0.935909390449524,-0.219194501638412,-0.275730550289154,-0.869345009326935,-0.227877080440521,-0.438532948493958,-0.885138690471649,-0.26771467924118,-0.380602419376373,-0.791765868663788,-0.228105559945107,-0.566634356975555,-0.820645213127136,-0.27064049243927,-0.503284215927124,-0.885138690471649,-0.26771467924118,-0.380602419376373,-0.825256288051605,-0.316268563270569,-0.46789538860321, +-0.820645213127136,-0.27064049243927,-0.503284215927124,-0.772392570972443,-0.259115666151047,-0.579886674880981,-0.786971151828766,-0.323583900928497,-0.52532821893692,-0.708158612251282,-0.258495688438416,-0.657032191753387,-0.869036734104156,-0.214371383190155,-0.445892244577408,-0.786971151828766,-0.323583900928497,-0.52532821893692,-0.604844570159912,-0.339946448802948,-0.720138370990753,-0.708158612251282,-0.258495688438416,-0.657032191753387,-0.919060051441193,-0.314328789710999,-0.237751916050911,-0.91009134054184,-0.26798877120018,-0.316094279289246,-0.946984827518463,-0.231841638684273,-0.222416669130325,-0.91009134054184,-0.26798877120018,-0.316094279289246,-0.869036734104156,-0.214371383190155,-0.445892244577408,-0.951723277568817,-0.151373192667961,-0.267037332057953,-0.950120210647583,-0.231974214315414,-0.208469271659851,-0.893909633159637,-0.322609305381775,-0.311205238103867,-0.919060051441193,-0.314328789710999,-0.237751916050911,-0.883548498153687,-0.292759418487549,-0.365559577941895,-0.942643225193024,-0.269812494516373,-0.196532100439072,-0.947317242622375,-0.229885801672935,-0.223030120134354,-0.893909633159637,-0.322609305381775,-0.311205238103867,-0.921006619930267,-0.240540325641632,-0.306409925222397,-0.942643225193024,-0.269812494516373,-0.196532100439072,-0.0865553542971611,0.725452482700348,-0.682807922363281,-0.0936264917254448,0.715043485164642,-0.692781865596771,-0.0111999306827784,0.634685873985291,-0.772689044475555,-0.0111999306827784,0.634685873985291,-0.772689044475555,-0.0391145683825016,0.598443567752838,-0.80020946264267,-0.0865553542971611,0.725452482700348,-0.682807922363281,-0.0391145683825016,0.598443567752838,-0.80020946264267,-0.0260032657533884,0.496308326721191,-0.867756724357605,-0.170995727181435,0.650521695613861,-0.739987730979919,-0.127872914075851,0.516778528690338,-0.846515417098999,-0.298863232135773,0.526999235153198,-0.795583128929138,-0.170995727181435,0.650521695613861,-0.739987730979919,-0.298863232135773,0.526999235153198,-0.795583128929138,-0.316981166601181,0.367413580417633,-0.874374091625214, +-0.449630111455917,0.451734840869904,-0.77056360244751,-0.449630111455917,0.451734840869904,-0.77056360244751,-0.502891540527344,0.387832880020142,-0.772454261779785,-0.552266120910645,0.497051656246185,-0.669284403324127,-0.543114185333252,0.421452075242996,-0.726226508617401,-0.627085149288177,0.534085094928741,-0.567024946212769,-0.55151379108429,0.429112106561661,-0.715328693389893,-0.552266120910645,0.497051656246185,-0.669284403324127,-0.502891540527344,0.387832880020142,-0.772454261779785,-0.55151379108429,0.429112106561661,-0.715328693389893,-0.603837430477142,0.479582935571671,-0.63669490814209,-0.70468544960022,0.403835147619247,-0.583382725715637,-0.705592632293701,0.550780296325684,-0.445847392082214,-0.603837430477142,0.479582935571671,-0.63669490814209,-0.627085149288177,0.534085094928741,-0.567024946212769,-0.543114185333252,0.421452075242996,-0.726226508617401,-0.827836632728577,0.395495116710663,-0.397831648588181,-0.771284639835358,0.501649677753448,-0.391749382019043,-0.705592632293701,0.550780296325684,-0.445847392082214,-0.708585977554321,0.433911085128784,-0.556441307067871,-0.855507731437683,0.349959224462509,-0.381621450185776,-0.808762609958649,0.288814425468445,-0.512336850166321,-0.827836632728577,0.395495116710663,-0.397831648588181,-0.855507731437683,0.349959224462509,-0.381621450185776,-0.771284639835358,0.501649677753448,-0.391749382019043,-0.29905503988266,-0.121795162558556,-0.946431159973145,-0.372647404670715,-0.179480403661728,-0.910450756549835,-0.291634052991867,-0.247162386775017,-0.924045562744141,-0.321187198162079,0.162314876914024,-0.93300187587738,-0.466011255979538,0.125832453370094,-0.875785171985626,-0.378685563802719,0.0496931932866573,-0.9241903424263,-0.325182735919952,0.26327246427536,-0.908264100551605,-0.410067945718765,0.190987855195999,-0.891833961009979,-0.321187198162079,0.162314876914024,-0.93300187587738,-0.378685563802719,0.0496931932866573,-0.9241903424263,-0.403432548046112,-0.147508949041367,-0.903041064739227,-0.356533288955688,-0.0258095394819975,-0.933926045894623, +-0.403432548046112,-0.147508949041367,-0.903041064739227,-0.372647404670715,-0.179480403661728,-0.910450756549835,-0.356533288955688,-0.0258095394819975,-0.933926045894623,-0.270260781049728,0.327082604169846,-0.905525207519531,-0.276637583971024,0.370983213186264,-0.886477828025818,-0.206938251852989,0.293891906738281,-0.933168768882751,-0.270260781049728,0.327082604169846,-0.905525207519531,-0.362066149711609,0.396450936794281,-0.843643665313721,-0.325182735919952,0.26327246427536,-0.908264100551605,-0.624813914299011,0.36167848110199,-0.691950917243958,-0.286887228488922,0.265083938837051,-0.920557498931885,-0.276637583971024,0.370983213186264,-0.886477828025818,-0.824592769145966,0.450975984334946,-0.341566115617752,-0.861400067806244,0.313744962215424,-0.399441957473755,-0.624813914299011,0.36167848110199,-0.691950917243958,-0.837306439876556,0.463930636644363,-0.289285629987717,-0.824592769145966,0.450975984334946,-0.341566115617752,-0.817205905914307,0.495219588279724,-0.294842302799225,-0.854615569114685,0.456080496311188,-0.248239129781723,-0.879276216030121,0.387515097856522,-0.276957094669342,-0.837306439876556,0.463930636644363,-0.289285629987717,-0.854615569114685,0.456080496311188,-0.248239129781723,-0.919801354408264,0.307293623685837,-0.243999987840652,-0.879276216030121,0.387515097856522,-0.276957094669342,-0.919801354408264,0.307293623685837,-0.243999987840652,-0.898675978183746,0.39695006608963,-0.186579212546349,-0.93317449092865,0.282540291547775,-0.222162708640099,-0.887513101100922,0.228008985519409,-0.400415122509003,-0.95622980594635,0.171099498867989,-0.237380310893059,-0.93317449092865,0.282540291547775,-0.222162708640099,-0.887513101100922,0.228008985519409,-0.400415122509003,-0.765058159828186,0.335626214742661,-0.549582481384277,-0.808762609958649,0.288814425468445,-0.512336850166321,-0.163576707243919,-0.202172264456749,-0.965592563152313,-0.211627751588821,-0.276292592287064,-0.937483847141266,-0.119859270751476,-0.260959327220917,-0.957879900932312,-0.119859270751476,-0.260959327220917,-0.957879900932312, +-0.170781970024109,-0.296841263771057,-0.939531087875366,-0.066212885081768,-0.320741981267929,-0.944849371910095,-0.0245537273585796,-0.419715851545334,-0.90732330083847,0.081245057284832,-0.379483073949814,-0.921624481678009,0.0413393639028072,-0.326312303543091,-0.944357573986053,-0.066212885081768,-0.320741981267929,-0.944849371910095,-0.0245537273585796,-0.419715851545334,-0.90732330083847,0.0413393639028072,-0.326312303543091,-0.944357573986053,-0.163576707243919,-0.202172264456749,-0.965592563152313,-0.291634052991867,-0.247162386775017,-0.924045562744141,-0.211627751588821,-0.276292592287064,-0.937483847141266,0.00507656438276172,-0.418460726737976,-0.908220648765564,0.153616309165955,-0.398828774690628,-0.90406721830368,0.0153336795046926,-0.460174649953842,-0.887695789337158,0.0153336795046926,-0.460174649953842,-0.887695789337158,0.0939826816320419,-0.446191757917404,-0.889988780021667,-0.0245537273585796,-0.419715851545334,-0.90732330083847,0.150765225291252,-0.252522945404053,-0.955772817134857,0.153616309165955,-0.398828774690628,-0.90406721830368,-0.0220023430883884,-0.268658131361008,-0.962984204292297,0.166920006275177,-0.360196053981781,-0.91782158613205,0.150765225291252,-0.252522945404053,-0.955772817134857,0.142031759023666,-0.281582325696945,-0.948966979980469,0.00122136948630214,-0.294912487268448,-0.955523431301117,0.142031759023666,-0.281582325696945,-0.948966979980469,0.0513524003326893,-0.265273094177246,-0.962804794311523,-0.11836002022028,-0.335502326488495,-0.934574246406555,0.00122136948630214,-0.294912487268448,-0.955523431301117,-0.194888725876808,-0.289258897304535,-0.937202036380768,-0.194888725876808,-0.289258897304535,-0.937202036380768,-0.441172420978546,-0.27358466386795,-0.854703545570374,-0.330398231744766,-0.355373799800873,-0.874383449554443,-0.441172420978546,-0.27358466386795,-0.854703545570374,-0.708158612251282,-0.258495688438416,-0.657032191753387,-0.604844570159912,-0.339946448802948,-0.720138370990753,-0.620311677455902,-0.351682931184769,-0.701093792915344,-0.657176077365875,-0.375792860984802,-0.653375148773193, +-0.726775884628296,-0.347711354494095,-0.592362642288208,-0.657176077365875,-0.375792860984802,-0.653375148773193,-0.585437655448914,-0.409654825925827,-0.699603796005249,-0.59831029176712,-0.359159499406815,-0.716260492801666,-0.537398278713226,-0.159633949398994,-0.828082084655762,-0.540938377380371,-0.306918770074844,-0.783062160015106,-0.480337142944336,-0.233257189393044,-0.845498204231262,-0.52955824136734,0.0485978834331036,-0.846880257129669,-0.537398278713226,-0.159633949398994,-0.828082084655762,-0.398372083902359,0.213821679353714,-0.891952812671661,-0.59831029176712,-0.359159499406815,-0.716260492801666,-0.536610782146454,-0.398898363113403,-0.743591845035553,-0.540938377380371,-0.306918770074844,-0.783062160015106,-0.52955824136734,0.0485978834331036,-0.846880257129669,-0.398372083902359,0.213821679353714,-0.891952812671661,-0.308033972978592,0.3783118724823,-0.872923254966736,-0.307637572288513,0.456017583608627,-0.835108935832977,-0.308033972978592,0.3783118724823,-0.872923254966736,-0.109968408942223,0.565733850002289,-0.81722217798233,-0.0935413539409637,0.646535038948059,-0.757127642631531,-0.307637572288513,0.456017583608627,-0.835108935832977,-0.109968408942223,0.565733850002289,-0.81722217798233,-0.0935413539409637,0.646535038948059,-0.757127642631531,-0.0111999306827784,0.634685873985291,-0.772689044475555,-0.0936264917254448,0.715043485164642,-0.692781865596771,-0.703449904918671,-0.256338357925415,-0.662909269332886,-0.726775884628296,-0.347711354494095,-0.592362642288208,-0.772392570972443,-0.259115666151047,-0.579886674880981,-0.869345009326935,-0.227877080440521,-0.438532948493958,-0.935909390449524,-0.219194501638412,-0.275730550289154,-0.927226543426514,-0.216824367642403,-0.30534902215004,-0.869345009326935,-0.227877080440521,-0.438532948493958,-0.927226543426514,-0.216824367642403,-0.30534902215004,-0.883548498153687,-0.292759418487549,-0.365559577941895,-0.869345009326935,-0.227877080440521,-0.438532948493958,-0.791765868663788,-0.228105559945107,-0.566634356975555,-0.885138690471649,-0.26771467924118,-0.380602419376373, +-0.791765868663788,-0.228105559945107,-0.566634356975555,-0.761748373508453,-0.217664420604706,-0.610214233398438,-0.820645213127136,-0.27064049243927,-0.503284215927124,-0.761748373508453,-0.217664420604706,-0.610214233398438,-0.772392570972443,-0.259115666151047,-0.579886674880981,-0.820645213127136,-0.27064049243927,-0.503284215927124,-0.708158612251282,-0.258495688438416,-0.657032191753387,-0.695348143577576,-0.112719848752022,-0.709778130054474,-0.869036734104156,-0.214371383190155,-0.445892244577408,-0.946984827518463,-0.231841638684273,-0.222416669130325,-0.91009134054184,-0.26798877120018,-0.316094279289246,-0.951723277568817,-0.151373192667961,-0.267037332057953,-0.950120210647583,-0.231974214315414,-0.208469271659851,-0.919060051441193,-0.314328789710999,-0.237751916050911,-0.946984827518463,-0.231841638684273,-0.222416669130325,-0.869036734104156,-0.214371383190155,-0.445892244577408,-0.918430328369141,-0.0780628025531769,-0.387803792953491,-0.951723277568817,-0.151373192667961,-0.267037332057953,-0.950120210647583,-0.231974214315414,-0.208469271659851,-0.91323447227478,-0.135544985532761,-0.384226888418198,-0.893909633159637,-0.322609305381775,-0.311205238103867,-0.942643225193024,-0.269812494516373,-0.196532100439072,-0.921006619930267,-0.240540325641632,-0.306409925222397,-0.947317242622375,-0.229885801672935,-0.223030120134354,-0.864408254623413,-0.326377093791962,-0.382460713386536,-0.883548498153687,-0.292759418487549,-0.365559577941895,-0.947317242622375,-0.229885801672935,-0.223030120134354,-0.893909633159637,-0.322609305381775,-0.311205238103867,-0.91323447227478,-0.135544985532761,-0.384226888418198,-0.921006619930267,-0.240540325641632,-0.306409925222397,-0.0111999306827784,0.634685873985291,-0.772689044475555,0.0528155565261841,0.450483798980713,-0.891220927238464,-0.0391145683825016,0.598443567752838,-0.80020946264267,0.0528155565261841,0.450483798980713,-0.891220927238464,-0.0260032657533884,0.496308326721191,-0.867756724357605,-0.0391145683825016,0.598443567752838,-0.80020946264267,-0.170995727181435,0.650521695613861,-0.739987730979919, +-0.0260032657533884,0.496308326721191,-0.867756724357605,-0.127872914075851,0.516778528690338,-0.846515417098999,-0.127872914075851,0.516778528690338,-0.846515417098999,-0.138142704963684,0.378583580255508,-0.915199935436249,-0.298863232135773,0.526999235153198,-0.795583128929138,-0.138142704963684,0.378583580255508,-0.915199935436249,-0.316981166601181,0.367413580417633,-0.874374091625214,-0.298863232135773,0.526999235153198,-0.795583128929138,-0.316981166601181,0.367413580417633,-0.874374091625214,-0.408923387527466,0.312061250209808,-0.857554256916046,-0.449630111455917,0.451734840869904,-0.77056360244751,-0.449630111455917,0.451734840869904,-0.77056360244751,-0.408923387527466,0.312061250209808,-0.857554256916046,-0.502891540527344,0.387832880020142,-0.772454261779785,-0.55151379108429,0.429112106561661,-0.715328693389893,-0.459452629089355,0.305283814668655,-0.834089279174805,-0.543114185333252,0.421452075242996,-0.726226508617401,-0.459452629089355,0.305283814668655,-0.834089279174805,-0.55151379108429,0.429112106561661,-0.715328693389893,-0.502891540527344,0.387832880020142,-0.772454261779785,-0.603837430477142,0.479582935571671,-0.63669490814209,-0.587468981742859,0.313221454620361,-0.746171772480011,-0.70468544960022,0.403835147619247,-0.583382725715637,-0.70468544960022,0.403835147619247,-0.583382725715637,-0.827836632728577,0.395495116710663,-0.397831648588181,-0.705592632293701,0.550780296325684,-0.445847392082214,-0.603837430477142,0.479582935571671,-0.63669490814209,-0.543114185333252,0.421452075242996,-0.726226508617401,-0.587468981742859,0.313221454620361,-0.746171772480011,-0.901128768920898,0.0775044932961464,-0.426567554473877,-0.808762609958649,0.288814425468445,-0.512336850166321,-0.855507731437683,0.349959224462509,-0.381621450185776,-0.892825067043304,0.251589298248291,-0.37358546257019,-0.855507731437683,0.349959224462509,-0.381621450185776,-0.827836632728577,0.395495116710663,-0.397831648588181,-0.291634052991867,-0.247162386775017,-0.924045562744141,-0.372647404670715,-0.179480403661728,-0.910450756549835, +-0.373873323202133,-0.285002589225769,-0.882605314254761,-0.321187198162079,0.162314876914024,-0.93300187587738,-0.410067945718765,0.190987855195999,-0.891833961009979,-0.466011255979538,0.125832453370094,-0.875785171985626,-0.378685563802719,0.0496931932866573,-0.9241903424263,-0.466011255979538,0.125832453370094,-0.875785171985626,-0.511252045631409,0.0462703518569469,-0.858184337615967,-0.425833851099014,0.305626541376114,-0.851620674133301,-0.410067945718765,0.190987855195999,-0.891833961009979,-0.325182735919952,0.26327246427536,-0.908264100551605,-0.378685563802719,0.0496931932866573,-0.9241903424263,-0.513704061508179,-0.0825687423348427,-0.853985011577606,-0.403432548046112,-0.147508949041367,-0.903041064739227,-0.403432548046112,-0.147508949041367,-0.903041064739227,-0.373873323202133,-0.285002589225769,-0.882605314254761,-0.372647404670715,-0.179480403661728,-0.910450756549835,-0.206938251852989,0.293891906738281,-0.933168768882751,-0.276637583971024,0.370983213186264,-0.886477828025818,-0.286887228488922,0.265083938837051,-0.920557498931885,-0.270260781049728,0.327082604169846,-0.905525207519531,-0.206938251852989,0.293891906738281,-0.933168768882751,-0.254304528236389,0.376440495252609,-0.89085441827774,-0.270260781049728,0.327082604169846,-0.905525207519531,-0.254304528236389,0.376440495252609,-0.89085441827774,-0.362066149711609,0.396450936794281,-0.843643665313721,-0.325182735919952,0.26327246427536,-0.908264100551605,-0.362066149711609,0.396450936794281,-0.843643665313721,-0.425833851099014,0.305626541376114,-0.851620674133301,-0.512191236019135,0.28931799530983,-0.808674871921539,-0.286887228488922,0.265083938837051,-0.920557498931885,-0.624813914299011,0.36167848110199,-0.691950917243958,-0.879276216030121,0.387515097856522,-0.276957094669342,-0.861400067806244,0.313744962215424,-0.399441957473755,-0.824592769145966,0.450975984334946,-0.341566115617752,-0.861400067806244,0.313744962215424,-0.399441957473755,-0.773576498031616,0.326829165220261,-0.542919814586639,-0.624813914299011,0.36167848110199,-0.691950917243958, +-0.879276216030121,0.387515097856522,-0.276957094669342,-0.824592769145966,0.450975984334946,-0.341566115617752,-0.837306439876556,0.463930636644363,-0.289285629987717,-0.915606617927551,0.298152804374695,-0.26975804567337,-0.879276216030121,0.387515097856522,-0.276957094669342,-0.919801354408264,0.307293623685837,-0.243999987840652,-0.93317449092865,0.282540291547775,-0.222162708640099,-0.95622980594635,0.171099498867989,-0.237380310893059,-0.919801354408264,0.307293623685837,-0.243999987840652,-0.949812173843384,-0.0815585032105446,-0.302001446485519,-0.95622980594635,0.171099498867989,-0.237380310893059,-0.887513101100922,0.228008985519409,-0.400415122509003,-0.901128768920898,0.0775044932961464,-0.426567554473877,-0.887513101100922,0.228008985519409,-0.400415122509003,-0.808762609958649,0.288814425468445,-0.512336850166321,-0.211627751588821,-0.276292592287064,-0.937483847141266,-0.22276671230793,-0.281813234090805,-0.933250308036804,-0.119859270751476,-0.260959327220917,-0.957879900932312,-0.170781970024109,-0.296841263771057,-0.939531087875366,-0.119859270751476,-0.260959327220917,-0.957879900932312,-0.22276671230793,-0.281813234090805,-0.933250308036804,-0.170781970024109,-0.296841263771057,-0.939531087875366,-0.162300661206245,-0.367526561021805,-0.915741562843323,-0.066212885081768,-0.320741981267929,-0.944849371910095,-0.148747339844704,-0.406046837568283,-0.901665151119232,-0.0245537273585796,-0.419715851545334,-0.90732330083847,-0.066212885081768,-0.320741981267929,-0.944849371910095,-0.291634052991867,-0.247162386775017,-0.924045562744141,-0.282263547182083,-0.300830990076065,-0.910948932170868,-0.211627751588821,-0.276292592287064,-0.937483847141266,0.00507656438276172,-0.418460726737976,-0.908220648765564,-0.0220023430883884,-0.268658131361008,-0.962984204292297,0.153616309165955,-0.398828774690628,-0.90406721830368,-0.181554704904556,-0.376886129379272,-0.90829211473465,0.00507656438276172,-0.418460726737976,-0.908220648765564,0.0153336795046926,-0.460174649953842,-0.887695789337158,-0.0245537273585796,-0.419715851545334,-0.90732330083847, +-0.107224196195602,-0.432995140552521,-0.894996166229248,0.0153336795046926,-0.460174649953842,-0.887695789337158,-0.00410875398665667,-0.219404086470604,-0.975625336170197,0.150765225291252,-0.252522945404053,-0.955772817134857,-0.0220023430883884,-0.268658131361008,-0.962984204292297,0.142031759023666,-0.281582325696945,-0.948966979980469,0.150765225291252,-0.252522945404053,-0.955772817134857,0.0513524003326893,-0.265273094177246,-0.962804794311523,0.00122136948630214,-0.294912487268448,-0.955523431301117,0.0513524003326893,-0.265273094177246,-0.962804794311523,-0.194888725876808,-0.289258897304535,-0.937202036380768,-0.214989140629768,-0.306070059537888,-0.927416145801544,-0.441172420978546,-0.27358466386795,-0.854703545570374,-0.194888725876808,-0.289258897304535,-0.937202036380768,-0.441172420978546,-0.27358466386795,-0.854703545570374,-0.695348143577576,-0.112719848752022,-0.709778130054474,-0.708158612251282,-0.258495688438416,-0.657032191753387,-0.620311677455902,-0.351682931184769,-0.701093792915344,-0.585437655448914,-0.409654825925827,-0.699603796005249,-0.657176077365875,-0.375792860984802,-0.653375148773193,-0.620311677455902,-0.351682931184769,-0.701093792915344,-0.726775884628296,-0.347711354494095,-0.592362642288208,-0.703449904918671,-0.256338357925415,-0.662909269332886,-0.59831029176712,-0.359159499406815,-0.716260492801666,-0.585437655448914,-0.409654825925827,-0.699603796005249,-0.536610782146454,-0.398898363113403,-0.743591845035553,-0.455771833658218,-0.314112991094589,-0.832829535007477,-0.480337142944336,-0.233257189393044,-0.845498204231262,-0.540938377380371,-0.306918770074844,-0.783062160015106,-0.480337142944336,-0.233257189393044,-0.845498204231262,-0.357608050107956,0.0390422008931637,-0.933055222034454,-0.537398278713226,-0.159633949398994,-0.828082084655762,-0.357608050107956,0.0390422008931637,-0.933055222034454,-0.398372083902359,0.213821679353714,-0.891952812671661,-0.537398278713226,-0.159633949398994,-0.828082084655762,-0.540938377380371,-0.306918770074844,-0.783062160015106, +-0.536610782146454,-0.398898363113403,-0.743591845035553,-0.482302874326706,-0.364739239215851,-0.796460330486298,-0.398372083902359,0.213821679353714,-0.891952812671661,-0.219289317727089,0.479563027620316,-0.849665462970734,-0.308033972978592,0.3783118724823,-0.872923254966736,-0.219289317727089,0.479563027620316,-0.849665462970734,-0.109968408942223,0.565733850002289,-0.81722217798233,-0.308033972978592,0.3783118724823,-0.872923254966736,-0.0935413539409637,0.646535038948059,-0.757127642631531,-0.109968408942223,0.565733850002289,-0.81722217798233,0.00153441622387618,0.583904922008514,-0.811820507049561,0.00153441622387618,0.583904922008514,-0.811820507049561,-0.0111999306827784,0.634685873985291,-0.772689044475555,-0.0935413539409637,0.646535038948059,-0.757127642631531,-0.703449904918671,-0.256338357925415,-0.662909269332886,-0.772392570972443,-0.259115666151047,-0.579886674880981,-0.72879296541214,-0.234539583325386,-0.64331316947937,-0.869345009326935,-0.227877080440521,-0.438532948493958,-0.883548498153687,-0.292759418487549,-0.365559577941895,-0.819686412811279,-0.348336696624756,-0.454725801944733,-0.869345009326935,-0.227877080440521,-0.438532948493958,-0.786183178424835,-0.321406424045563,-0.527838706970215,-0.791765868663788,-0.228105559945107,-0.566634356975555,-0.791765868663788,-0.228105559945107,-0.566634356975555,-0.755571603775024,-0.275546580553055,-0.594294130802155,-0.761748373508453,-0.217664420604706,-0.610214233398438,-0.72879296541214,-0.234539583325386,-0.64331316947937,-0.772392570972443,-0.259115666151047,-0.579886674880981,-0.761748373508453,-0.217664420604706,-0.610214233398438,-0.869036734104156,-0.214371383190155,-0.445892244577408,-0.695348143577576,-0.112719848752022,-0.709778130054474,-0.918430328369141,-0.0780628025531769,-0.387803792953491,-0.951723277568817,-0.151373192667961,-0.267037332057953,-0.970241963863373,-0.157043695449829,-0.184303238987923,-0.946984827518463,-0.231841638684273,-0.222416669130325,-0.970241963863373,-0.157043695449829,-0.184303238987923,-0.950120210647583,-0.231974214315414,-0.208469271659851, +-0.946984827518463,-0.231841638684273,-0.222416669130325,-0.918430328369141,-0.0780628025531769,-0.387803792953491,-0.959607183933258,-0.133039996027946,-0.2478998452425,-0.951723277568817,-0.151373192667961,-0.267037332057953,-0.91323447227478,-0.135544985532761,-0.384226888418198,-0.950120210647583,-0.231974214315414,-0.208469271659851,-0.969045400619507,-0.0876475945115089,-0.230800330638886,-0.877556204795837,-0.307225197553635,-0.368113607168198,-0.947317242622375,-0.229885801672935,-0.223030120134354,-0.921006619930267,-0.240540325641632,-0.306409925222397,-0.819686412811279,-0.348336696624756,-0.454725801944733,-0.883548498153687,-0.292759418487549,-0.365559577941895,-0.864408254623413,-0.326377093791962,-0.382460713386536,-0.947317242622375,-0.229885801672935,-0.223030120134354,-0.877556204795837,-0.307225197553635,-0.368113607168198,-0.864408254623413,-0.326377093791962,-0.382460713386536,-0.920426726341248,-0.120375908911228,-0.371919512748718,-0.921006619930267,-0.240540325641632,-0.306409925222397,-0.91323447227478,-0.135544985532761,-0.384226888418198,0.00153441622387618,0.583904922008514,-0.811820507049561,0.0528155565261841,0.450483798980713,-0.891220927238464,-0.0111999306827784,0.634685873985291,-0.772689044475555,0.0528155565261841,0.450483798980713,-0.891220927238464,0.0899290964007378,0.29490339756012,-0.951285779476166,-0.0260032657533884,0.496308326721191,-0.867756724357605,-0.127872914075851,0.516778528690338,-0.846515417098999,-0.0260032657533884,0.496308326721191,-0.867756724357605,-0.0225108247250319,0.382572919130325,-0.923650979995728,-0.138142704963684,0.378583580255508,-0.915199935436249,-0.127872914075851,0.516778528690338,-0.846515417098999,-0.0225108247250319,0.382572919130325,-0.923650979995728,-0.138142704963684,0.378583580255508,-0.915199935436249,-0.234388694167137,0.258083373308182,-0.937259197235107,-0.316981166601181,0.367413580417633,-0.874374091625214,-0.316981166601181,0.367413580417633,-0.874374091625214,-0.323908805847168,0.233416542410851,-0.916842222213745,-0.408923387527466,0.312061250209808,-0.857554256916046, +-0.408923387527466,0.312061250209808,-0.857554256916046,-0.459452629089355,0.305283814668655,-0.834089279174805,-0.502891540527344,0.387832880020142,-0.772454261779785,-0.459452629089355,0.305283814668655,-0.834089279174805,-0.587468981742859,0.313221454620361,-0.746171772480011,-0.543114185333252,0.421452075242996,-0.726226508617401,-0.70468544960022,0.403835147619247,-0.583382725715637,-0.587468981742859,0.313221454620361,-0.746171772480011,-0.785137355327606,0.259488791227341,-0.562338590621948,-0.70468544960022,0.403835147619247,-0.583382725715637,-0.785137355327606,0.259488791227341,-0.562338590621948,-0.827836632728577,0.395495116710663,-0.397831648588181,-0.892825067043304,0.251589298248291,-0.37358546257019,-0.901128768920898,0.0775044932961464,-0.426567554473877,-0.855507731437683,0.349959224462509,-0.381621450185776,-0.785137355327606,0.259488791227341,-0.562338590621948,-0.892825067043304,0.251589298248291,-0.37358546257019,-0.827836632728577,0.395495116710663,-0.397831648588181,-0.373873323202133,-0.285002589225769,-0.882605314254761,-0.37423112988472,-0.305149972438812,-0.875690877437592,-0.291634052991867,-0.247162386775017,-0.924045562744141,-0.466011255979538,0.125832453370094,-0.875785171985626,-0.410067945718765,0.190987855195999,-0.891833961009979,-0.484062790870667,0.228775411844254,-0.844597458839417,-0.511252045631409,0.0462703518569469,-0.858184337615967,-0.466011255979538,0.125832453370094,-0.875785171985626,-0.567556262016296,0.0908717587590218,-0.818304359912872,-0.378685563802719,0.0496931932866573,-0.9241903424263,-0.511252045631409,0.0462703518569469,-0.858184337615967,-0.513704061508179,-0.0825687423348427,-0.853985011577606,-0.484062790870667,0.228775411844254,-0.844597458839417,-0.410067945718765,0.190987855195999,-0.891833961009979,-0.425833851099014,0.305626541376114,-0.851620674133301,-0.542384743690491,-0.219101473689079,-0.811056852340698,-0.403432548046112,-0.147508949041367,-0.903041064739227,-0.513704061508179,-0.0825687423348427,-0.853985011577606,-0.373873323202133,-0.285002589225769,-0.882605314254761, +-0.403432548046112,-0.147508949041367,-0.903041064739227,-0.457796484231949,-0.253508269786835,-0.852147817611694,-0.206938251852989,0.293891906738281,-0.933168768882751,-0.286887228488922,0.265083938837051,-0.920557498931885,-0.125817522406578,0.229355692863464,-0.965176582336426,-0.206938251852989,0.293891906738281,-0.933168768882751,-0.131957665085793,0.262721687555313,-0.955805599689484,-0.254304528236389,0.376440495252609,-0.89085441827774,-0.254304528236389,0.376440495252609,-0.89085441827774,-0.314200818538666,0.457831770181656,-0.831665635108948,-0.362066149711609,0.396450936794281,-0.843643665313721,-0.386983603239059,0.425527423620224,-0.818028092384338,-0.425833851099014,0.305626541376114,-0.851620674133301,-0.362066149711609,0.396450936794281,-0.843643665313721,-0.302016198635101,0.192121744155884,-0.933742702007294,-0.286887228488922,0.265083938837051,-0.920557498931885,-0.512191236019135,0.28931799530983,-0.808674871921539,-0.512191236019135,0.28931799530983,-0.808674871921539,-0.624813914299011,0.36167848110199,-0.691950917243958,-0.773576498031616,0.326829165220261,-0.542919814586639,-0.861400067806244,0.313744962215424,-0.399441957473755,-0.879276216030121,0.387515097856522,-0.276957094669342,-0.938324928283691,0.231022760272026,-0.257244318723679,-0.861400067806244,0.313744962215424,-0.399441957473755,-0.512191236019135,0.28931799530983,-0.808674871921539,-0.773576498031616,0.326829165220261,-0.542919814586639,-0.879276216030121,0.387515097856522,-0.276957094669342,-0.915606617927551,0.298152804374695,-0.26975804567337,-0.938324928283691,0.231022760272026,-0.257244318723679,-0.915606617927551,0.298152804374695,-0.26975804567337,-0.919801354408264,0.307293623685837,-0.243999987840652,-0.93982458114624,0.202914670109749,-0.274873226881027,-0.95622980594635,0.171099498867989,-0.237380310893059,-0.948862433433533,0.193628698587418,-0.24933448433876,-0.919801354408264,0.307293623685837,-0.243999987840652,-0.949812173843384,-0.0815585032105446,-0.302001446485519,-0.959616541862488,0.0164229515939951,-0.28083136677742, +-0.95622980594635,0.171099498867989,-0.237380310893059,-0.949812173843384,-0.0815585032105446,-0.302001446485519,-0.887513101100922,0.228008985519409,-0.400415122509003,-0.911614656448364,-0.11439111083746,-0.394807904958725,-0.911614656448364,-0.11439111083746,-0.394807904958725,-0.887513101100922,0.228008985519409,-0.400415122509003,-0.901128768920898,0.0775044932961464,-0.426567554473877,-0.282263547182083,-0.300830990076065,-0.910948932170868,-0.22276671230793,-0.281813234090805,-0.933250308036804,-0.211627751588821,-0.276292592287064,-0.937483847141266,-0.22276671230793,-0.281813234090805,-0.933250308036804,-0.298591941595078,-0.268830686807632,-0.915736079216003,-0.170781970024109,-0.296841263771057,-0.939531087875366,-0.162300661206245,-0.367526561021805,-0.915741562843323,-0.170781970024109,-0.296841263771057,-0.939531087875366,-0.288108736276627,-0.35255840420723,-0.890334665775299,-0.162300661206245,-0.367526561021805,-0.915741562843323,-0.148747339844704,-0.406046837568283,-0.901665151119232,-0.066212885081768,-0.320741981267929,-0.944849371910095,-0.0245537273585796,-0.419715851545334,-0.90732330083847,-0.148747339844704,-0.406046837568283,-0.901665151119232,-0.21900562942028,-0.399651408195496,-0.89012086391449,-0.291634052991867,-0.247162386775017,-0.924045562744141,-0.375721991062164,-0.284176170825958,-0.882086634635925,-0.282263547182083,-0.300830990076065,-0.910948932170868,-0.0220023430883884,-0.268658131361008,-0.962984204292297,0.00507656438276172,-0.418460726737976,-0.908220648765564,-0.181554704904556,-0.376886129379272,-0.90829211473465,-0.181554704904556,-0.376886129379272,-0.90829211473465,0.0153336795046926,-0.460174649953842,-0.887695789337158,-0.107224196195602,-0.432995140552521,-0.894996166229248,-0.21900562942028,-0.399651408195496,-0.89012086391449,-0.107224196195602,-0.432995140552521,-0.894996166229248,-0.0245537273585796,-0.419715851545334,-0.90732330083847,0.0918355733156204,-0.230178147554398,-0.968805491924286,0.150765225291252,-0.252522945404053,-0.955772817134857,-0.00410875398665667,-0.219404086470604,-0.975625336170197, +-0.00410875398665667,-0.219404086470604,-0.975625336170197,-0.0220023430883884,-0.268658131361008,-0.962984204292297,-0.169338315725327,-0.239793062210083,-0.955941259860992,0.0918355733156204,-0.230178147554398,-0.968805491924286,0.0513524003326893,-0.265273094177246,-0.962804794311523,0.150765225291252,-0.252522945404053,-0.955772817134857,-0.0933457314968109,-0.336520612239838,-0.937038064002991,-0.194888725876808,-0.289258897304535,-0.937202036380768,0.0513524003326893,-0.265273094177246,-0.962804794311523,-0.323456257581711,-0.219111889600754,-0.920524775981903,-0.441172420978546,-0.27358466386795,-0.854703545570374,-0.214989140629768,-0.306070059537888,-0.927416145801544,-0.214989140629768,-0.306070059537888,-0.927416145801544,-0.194888725876808,-0.289258897304535,-0.937202036380768,-0.0933457314968109,-0.336520612239838,-0.937038064002991,-0.323456257581711,-0.219111889600754,-0.920524775981903,-0.695348143577576,-0.112719848752022,-0.709778130054474,-0.441172420978546,-0.27358466386795,-0.854703545570374,-0.620311677455902,-0.351682931184769,-0.701093792915344,-0.529803276062012,-0.39433890581131,-0.750869572162628,-0.585437655448914,-0.409654825925827,-0.699603796005249,-0.620311677455902,-0.351682931184769,-0.701093792915344,-0.703449904918671,-0.256338357925415,-0.662909269332886,-0.624857425689697,-0.253599256277084,-0.738403975963593,-0.585437655448914,-0.409654825925827,-0.699603796005249,-0.529803276062012,-0.39433890581131,-0.750869572162628,-0.536610782146454,-0.398898363113403,-0.743591845035553,-0.433773368597031,-0.325704216957092,-0.840093612670898,-0.480337142944336,-0.233257189393044,-0.845498204231262,-0.455771833658218,-0.314112991094589,-0.832829535007477,-0.540938377380371,-0.306918770074844,-0.783062160015106,-0.482302874326706,-0.364739239215851,-0.796460330486298,-0.455771833658218,-0.314112991094589,-0.832829535007477,-0.341922372579575,-0.152353152632713,-0.927295804023743,-0.357608050107956,0.0390422008931637,-0.933055222034454,-0.480337142944336,-0.233257189393044,-0.845498204231262, +-0.357608050107956,0.0390422008931637,-0.933055222034454,-0.169748738408089,0.384181439876556,-0.907518565654755,-0.398372083902359,0.213821679353714,-0.891952812671661,-0.482302874326706,-0.364739239215851,-0.796460330486298,-0.536610782146454,-0.398898363113403,-0.743591845035553,-0.479420155286789,-0.417449176311493,-0.771940648555756,-0.219289317727089,0.479563027620316,-0.849665462970734,-0.398372083902359,0.213821679353714,-0.891952812671661,-0.169748738408089,0.384181439876556,-0.907518565654755,-0.219289317727089,0.479563027620316,-0.849665462970734,-0.0415656194090843,0.515590369701386,-0.855826318264008,-0.109968408942223,0.565733850002289,-0.81722217798233,0.00153441622387618,0.583904922008514,-0.811820507049561,-0.109968408942223,0.565733850002289,-0.81722217798233,-0.0415656194090843,0.515590369701386,-0.855826318264008,-0.703449904918671,-0.256338357925415,-0.662909269332886,-0.72879296541214,-0.234539583325386,-0.64331316947937,-0.671473562717438,-0.208146393299103,-0.71119487285614,-0.869345009326935,-0.227877080440521,-0.438532948493958,-0.819686412811279,-0.348336696624756,-0.454725801944733,-0.786183178424835,-0.321406424045563,-0.527838706970215,-0.755571603775024,-0.275546580553055,-0.594294130802155,-0.791765868663788,-0.228105559945107,-0.566634356975555,-0.786183178424835,-0.321406424045563,-0.527838706970215,-0.761748373508453,-0.217664420604706,-0.610214233398438,-0.755571603775024,-0.275546580553055,-0.594294130802155,-0.72879296541214,-0.234539583325386,-0.64331316947937,-0.872847735881805,-0.142802432179451,-0.466630697250366,-0.918430328369141,-0.0780628025531769,-0.387803792953491,-0.695348143577576,-0.112719848752022,-0.709778130054474,-0.978363335132599,-0.0683197528123856,-0.195288300514221,-0.970241963863373,-0.157043695449829,-0.184303238987923,-0.951723277568817,-0.151373192667961,-0.267037332057953,-0.950120210647583,-0.231974214315414,-0.208469271659851,-0.970241963863373,-0.157043695449829,-0.184303238987923,-0.969045400619507,-0.0876475945115089,-0.230800330638886,-0.872847735881805,-0.142802432179451,-0.466630697250366, +-0.959607183933258,-0.133039996027946,-0.2478998452425,-0.918430328369141,-0.0780628025531769,-0.387803792953491,-0.978363335132599,-0.0683197528123856,-0.195288300514221,-0.951723277568817,-0.151373192667961,-0.267037332057953,-0.959607183933258,-0.133039996027946,-0.2478998452425,-0.939945042133331,0.032684963196516,-0.339757114648819,-0.91323447227478,-0.135544985532761,-0.384226888418198,-0.969045400619507,-0.0876475945115089,-0.230800330638886,-0.909499704837799,-0.239239662885666,-0.339962601661682,-0.877556204795837,-0.307225197553635,-0.368113607168198,-0.921006619930267,-0.240540325641632,-0.306409925222397,-0.819686412811279,-0.348336696624756,-0.454725801944733,-0.864408254623413,-0.326377093791962,-0.382460713386536,-0.81941294670105,-0.359069228172302,-0.446801453828812,-0.877556204795837,-0.307225197553635,-0.368113607168198,-0.893088161945343,-0.249644339084625,-0.374260693788528,-0.864408254623413,-0.326377093791962,-0.382460713386536,-0.920426726341248,-0.120375908911228,-0.371919512748718,-0.909499704837799,-0.239239662885666,-0.339962601661682,-0.921006619930267,-0.240540325641632,-0.306409925222397,-0.91323447227478,-0.135544985532761,-0.384226888418198,-0.915042281150818,0.0237774178385735,-0.40265628695488,-0.920426726341248,-0.120375908911228,-0.371919512748718,-0.0415656194090843,0.515590369701386,-0.855826318264008,0.0528155565261841,0.450483798980713,-0.891220927238464,0.00153441622387618,0.583904922008514,-0.811820507049561,0.120711542665958,0.193958535790443,-0.973554670810699,0.0899290964007378,0.29490339756012,-0.951285779476166,0.0528155565261841,0.450483798980713,-0.891220927238464,0.0899290964007378,0.29490339756012,-0.951285779476166,-0.0225108247250319,0.382572919130325,-0.923650979995728,-0.0260032657533884,0.496308326721191,-0.867756724357605,-0.138142704963684,0.378583580255508,-0.915199935436249,-0.0225108247250319,0.382572919130325,-0.923650979995728,0.0287211183458567,0.197573333978653,-0.979867219924927,-0.138142704963684,0.378583580255508,-0.915199935436249,-0.141543656587601,0.219176098704338,-0.965363740921021, +-0.234388694167137,0.258083373308182,-0.937259197235107,-0.323908805847168,0.233416542410851,-0.916842222213745,-0.316981166601181,0.367413580417633,-0.874374091625214,-0.234388694167137,0.258083373308182,-0.937259197235107,-0.408923387527466,0.312061250209808,-0.857554256916046,-0.323908805847168,0.233416542410851,-0.916842222213745,-0.344174087047577,0.258138239383698,-0.902722954750061,-0.408923387527466,0.312061250209808,-0.857554256916046,-0.344174087047577,0.258138239383698,-0.902722954750061,-0.459452629089355,0.305283814668655,-0.834089279174805,-0.51471734046936,0.149308383464813,-0.844258785247803,-0.587468981742859,0.313221454620361,-0.746171772480011,-0.459452629089355,0.305283814668655,-0.834089279174805,-0.633381247520447,0.0502744130790234,-0.772204995155334,-0.785137355327606,0.259488791227341,-0.562338590621948,-0.587468981742859,0.313221454620361,-0.746171772480011,-0.892825067043304,0.251589298248291,-0.37358546257019,-0.855538666248322,-8.30153803690337e-005,-0.51773875951767,-0.901128768920898,0.0775044932961464,-0.426567554473877,-0.785137355327606,0.259488791227341,-0.562338590621948,-0.855538666248322,-8.30153803690337e-005,-0.51773875951767,-0.892825067043304,0.251589298248291,-0.37358546257019,-0.373873323202133,-0.285002589225769,-0.882605314254761,-0.467706888914108,-0.281977295875549,-0.837698578834534,-0.37423112988472,-0.305149972438812,-0.875690877437592,-0.37423112988472,-0.305149972438812,-0.875690877437592,-0.375721991062164,-0.284176170825958,-0.882086634635925,-0.291634052991867,-0.247162386775017,-0.924045562744141,-0.466011255979538,0.125832453370094,-0.875785171985626,-0.484062790870667,0.228775411844254,-0.844597458839417,-0.568050265312195,0.187350988388062,-0.801385283470154,-0.466011255979538,0.125832453370094,-0.875785171985626,-0.568050265312195,0.187350988388062,-0.801385283470154,-0.567556262016296,0.0908717587590218,-0.818304359912872,-0.511252045631409,0.0462703518569469,-0.858184337615967,-0.567556262016296,0.0908717587590218,-0.818304359912872,-0.612705647945404,-0.0234951861202717,-0.789961755275726, +-0.612705647945404,-0.0234951861202717,-0.789961755275726,-0.513704061508179,-0.0825687423348427,-0.853985011577606,-0.511252045631409,0.0462703518569469,-0.858184337615967,-0.431786060333252,0.363605946302414,-0.825440108776093,-0.484062790870667,0.228775411844254,-0.844597458839417,-0.425833851099014,0.305626541376114,-0.851620674133301,-0.542384743690491,-0.219101473689079,-0.811056852340698,-0.457796484231949,-0.253508269786835,-0.852147817611694,-0.403432548046112,-0.147508949041367,-0.903041064739227,-0.619634807109833,-0.162312850356102,-0.767923951148987,-0.542384743690491,-0.219101473689079,-0.811056852340698,-0.513704061508179,-0.0825687423348427,-0.853985011577606,-0.373873323202133,-0.285002589225769,-0.882605314254761,-0.457796484231949,-0.253508269786835,-0.852147817611694,-0.467706888914108,-0.281977295875549,-0.837698578834534,-0.302016198635101,0.192121744155884,-0.933742702007294,-0.125817522406578,0.229355692863464,-0.965176582336426,-0.286887228488922,0.265083938837051,-0.920557498931885,-0.206938251852989,0.293891906738281,-0.933168768882751,-0.125817522406578,0.229355692863464,-0.965176582336426,-0.131957665085793,0.262721687555313,-0.955805599689484,-0.228384792804718,0.328399479389191,-0.9165118932724,-0.254304528236389,0.376440495252609,-0.89085441827774,-0.131957665085793,0.262721687555313,-0.955805599689484,-0.254304528236389,0.376440495252609,-0.89085441827774,-0.228384792804718,0.328399479389191,-0.9165118932724,-0.314200818538666,0.457831770181656,-0.831665635108948,-0.386983603239059,0.425527423620224,-0.818028092384338,-0.362066149711609,0.396450936794281,-0.843643665313721,-0.314200818538666,0.457831770181656,-0.831665635108948,-0.386983603239059,0.425527423620224,-0.818028092384338,-0.431786060333252,0.363605946302414,-0.825440108776093,-0.425833851099014,0.305626541376114,-0.851620674133301,-0.512191236019135,0.28931799530983,-0.808674871921539,-0.701673865318298,0.19036240875721,-0.686597228050232,-0.302016198635101,0.192121744155884,-0.933742702007294,-0.938324928283691,0.231022760272026,-0.257244318723679, +-0.701673865318298,0.19036240875721,-0.686597228050232,-0.861400067806244,0.313744962215424,-0.399441957473755,-0.512191236019135,0.28931799530983,-0.808674871921539,-0.861400067806244,0.313744962215424,-0.399441957473755,-0.701673865318298,0.19036240875721,-0.686597228050232,-0.93982458114624,0.202914670109749,-0.274873226881027,-0.938324928283691,0.231022760272026,-0.257244318723679,-0.915606617927551,0.298152804374695,-0.26975804567337,-0.948862433433533,0.193628698587418,-0.24933448433876,-0.93982458114624,0.202914670109749,-0.274873226881027,-0.919801354408264,0.307293623685837,-0.243999987840652,-0.95622980594635,0.171099498867989,-0.237380310893059,-0.959616541862488,0.0164229515939951,-0.28083136677742,-0.948862433433533,0.193628698587418,-0.24933448433876,-0.949812173843384,-0.0815585032105446,-0.302001446485519,-0.850956976413727,-0.475750148296356,-0.222562059760094,-0.959616541862488,0.0164229515939951,-0.28083136677742,-0.949812173843384,-0.0815585032105446,-0.302001446485519,-0.911614656448364,-0.11439111083746,-0.394807904958725,-0.815312206745148,-0.520652890205383,-0.253350436687469,-0.757820844650269,-0.561291396617889,-0.332655042409897,-0.911614656448364,-0.11439111083746,-0.394807904958725,-0.901128768920898,0.0775044932961464,-0.426567554473877,-0.22276671230793,-0.281813234090805,-0.933250308036804,-0.282263547182083,-0.300830990076065,-0.910948932170868,-0.383544743061066,-0.24897226691246,-0.889329016208649,-0.383544743061066,-0.24897226691246,-0.889329016208649,-0.298591941595078,-0.268830686807632,-0.915736079216003,-0.22276671230793,-0.281813234090805,-0.933250308036804,-0.298591941595078,-0.268830686807632,-0.915736079216003,-0.288108736276627,-0.35255840420723,-0.890334665775299,-0.170781970024109,-0.296841263771057,-0.939531087875366,-0.292497545480728,-0.386238187551498,-0.87479430437088,-0.162300661206245,-0.367526561021805,-0.915741562843323,-0.288108736276627,-0.35255840420723,-0.890334665775299,-0.148747339844704,-0.406046837568283,-0.901665151119232,-0.162300661206245,-0.367526561021805,-0.915741562843323, +-0.292497545480728,-0.386238187551498,-0.87479430437088,-0.292497545480728,-0.386238187551498,-0.87479430437088,-0.21900562942028,-0.399651408195496,-0.89012086391449,-0.148747339844704,-0.406046837568283,-0.901665151119232,-0.383544743061066,-0.24897226691246,-0.889329016208649,-0.282263547182083,-0.300830990076065,-0.910948932170868,-0.375721991062164,-0.284176170825958,-0.882086634635925,-0.181554704904556,-0.376886129379272,-0.90829211473465,-0.26678678393364,-0.228634163737297,-0.936243116855621,-0.0220023430883884,-0.268658131361008,-0.962984204292297,-0.181554704904556,-0.376886129379272,-0.90829211473465,-0.107224196195602,-0.432995140552521,-0.894996166229248,-0.315705806016922,-0.372178971767426,-0.8728187084198,-0.315705806016922,-0.372178971767426,-0.8728187084198,-0.107224196195602,-0.432995140552521,-0.894996166229248,-0.21900562942028,-0.399651408195496,-0.89012086391449,0.0918355733156204,-0.230178147554398,-0.968805491924286,-0.00410875398665667,-0.219404086470604,-0.975625336170197,0.0463563427329063,-0.208436787128448,-0.97693657875061,-0.0220023430883884,-0.268658131361008,-0.962984204292297,-0.26678678393364,-0.228634163737297,-0.936243116855621,-0.169338315725327,-0.239793062210083,-0.955941259860992,-0.0364181399345398,-0.279557079076767,-0.95943808555603,-0.00410875398665667,-0.219404086470604,-0.975625336170197,-0.169338315725327,-0.239793062210083,-0.955941259860992,0.0513524003326893,-0.265273094177246,-0.962804794311523,0.0918355733156204,-0.230178147554398,-0.968805491924286,0.0527092404663563,-0.286954522132874,-0.956492960453033,-0.0933457314968109,-0.336520612239838,-0.937038064002991,0.0513524003326893,-0.265273094177246,-0.962804794311523,0.0527092404663563,-0.286954522132874,-0.956492960453033,-0.323456257581711,-0.219111889600754,-0.920524775981903,-0.214989140629768,-0.306070059537888,-0.927416145801544,-0.281603962182999,-0.392421096563339,-0.875616788864136,-0.0933457314968109,-0.336520612239838,-0.937038064002991,-0.281603962182999,-0.392421096563339,-0.875616788864136,-0.214989140629768,-0.306070059537888,-0.927416145801544, +-0.55579137802124,-0.218890324234962,-0.801986753940582,-0.695348143577576,-0.112719848752022,-0.709778130054474,-0.323456257581711,-0.219111889600754,-0.920524775981903,-0.558707892894745,-0.311118632555008,-0.768798172473907,-0.529803276062012,-0.39433890581131,-0.750869572162628,-0.620311677455902,-0.351682931184769,-0.701093792915344,-0.703449904918671,-0.256338357925415,-0.662909269332886,-0.671473562717438,-0.208146393299103,-0.71119487285614,-0.624857425689697,-0.253599256277084,-0.738403975963593,-0.620311677455902,-0.351682931184769,-0.701093792915344,-0.624857425689697,-0.253599256277084,-0.738403975963593,-0.558707892894745,-0.311118632555008,-0.768798172473907,-0.479420155286789,-0.417449176311493,-0.771940648555756,-0.536610782146454,-0.398898363113403,-0.743591845035553,-0.529803276062012,-0.39433890581131,-0.750869572162628,-0.341922372579575,-0.152353152632713,-0.927295804023743,-0.480337142944336,-0.233257189393044,-0.845498204231262,-0.433773368597031,-0.325704216957092,-0.840093612670898,-0.433773368597031,-0.325704216957092,-0.840093612670898,-0.455771833658218,-0.314112991094589,-0.832829535007477,-0.379805773496628,-0.382855653762817,-0.842121720314026,-0.482302874326706,-0.364739239215851,-0.796460330486298,-0.404653638601303,-0.357931286096573,-0.841510832309723,-0.455771833658218,-0.314112991094589,-0.832829535007477,-0.341922372579575,-0.152353152632713,-0.927295804023743,-0.0941809341311455,0.21168877184391,-0.972788631916046,-0.357608050107956,0.0390422008931637,-0.933055222034454,-0.0941809341311455,0.21168877184391,-0.972788631916046,-0.169748738408089,0.384181439876556,-0.907518565654755,-0.357608050107956,0.0390422008931637,-0.933055222034454,-0.401436358690262,-0.413082420825958,-0.817442119121552,-0.482302874326706,-0.364739239215851,-0.796460330486298,-0.479420155286789,-0.417449176311493,-0.771940648555756,-0.219289317727089,0.479563027620316,-0.849665462970734,-0.169748738408089,0.384181439876556,-0.907518565654755,-0.0415656194090843,0.515590369701386,-0.855826318264008,-0.72879296541214,-0.234539583325386,-0.64331316947937, +-0.661698579788208,-0.297342211008072,-0.68828958272934,-0.671473562717438,-0.208146393299103,-0.71119487285614,-0.786183178424835,-0.321406424045563,-0.527838706970215,-0.819686412811279,-0.348336696624756,-0.454725801944733,-0.781034469604492,-0.376808911561966,-0.497996002435684,-0.786183178424835,-0.321406424045563,-0.527838706970215,-0.736175715923309,-0.400543570518494,-0.545536398887634,-0.755571603775024,-0.275546580553055,-0.594294130802155,-0.755571603775024,-0.275546580553055,-0.594294130802155,-0.733417093753815,-0.334760934114456,-0.591636955738068,-0.72879296541214,-0.234539583325386,-0.64331316947937,-0.55579137802124,-0.218890324234962,-0.801986753940582,-0.872847735881805,-0.142802432179451,-0.466630697250366,-0.695348143577576,-0.112719848752022,-0.709778130054474,-0.978363335132599,-0.0683197528123856,-0.195288300514221,-0.969045400619507,-0.0876475945115089,-0.230800330638886,-0.970241963863373,-0.157043695449829,-0.184303238987923,-0.872847735881805,-0.142802432179451,-0.466630697250366,-0.892801880836487,-0.282649397850037,-0.350733518600464,-0.959607183933258,-0.133039996027946,-0.2478998452425,-0.978363335132599,-0.0683197528123856,-0.195288300514221,-0.959607183933258,-0.133039996027946,-0.2478998452425,-0.944738626480103,-0.0790024101734161,-0.318162560462952,-0.91323447227478,-0.135544985532761,-0.384226888418198,-0.939945042133331,0.032684963196516,-0.339757114648819,-0.915042281150818,0.0237774178385735,-0.40265628695488,-0.978363335132599,-0.0683197528123856,-0.195288300514221,-0.939945042133331,0.032684963196516,-0.339757114648819,-0.969045400619507,-0.0876475945115089,-0.230800330638886,-0.909499704837799,-0.239239662885666,-0.339962601661682,-0.893088161945343,-0.249644339084625,-0.374260693788528,-0.877556204795837,-0.307225197553635,-0.368113607168198,-0.841214120388031,-0.313652157783508,-0.440432816743851,-0.81941294670105,-0.359069228172302,-0.446801453828812,-0.864408254623413,-0.326377093791962,-0.382460713386536,-0.781034469604492,-0.376808911561966,-0.497996002435684,-0.819686412811279,-0.348336696624756,-0.454725801944733, +-0.81941294670105,-0.359069228172302,-0.446801453828812,-0.841214120388031,-0.313652157783508,-0.440432816743851,-0.864408254623413,-0.326377093791962,-0.382460713386536,-0.893088161945343,-0.249644339084625,-0.374260693788528,-0.909499704837799,-0.239239662885666,-0.339962601661682,-0.920426726341248,-0.120375908911228,-0.371919512748718,-0.942461371421814,-0.0794298052787781,-0.324741989374161,-0.953864932060242,0.00901734456419945,-0.300100594758987,-0.920426726341248,-0.120375908911228,-0.371919512748718,-0.915042281150818,0.0237774178385735,-0.40265628695488,0.0255121402442455,0.360666155815125,-0.932345986366272,0.0528155565261841,0.450483798980713,-0.891220927238464,-0.0415656194090843,0.515590369701386,-0.855826318264008,0.120711542665958,0.193958535790443,-0.973554670810699,0.166296094655991,0.0984353125095367,-0.981150329113007,0.0899290964007378,0.29490339756012,-0.951285779476166,0.0255121402442455,0.360666155815125,-0.932345986366272,0.120711542665958,0.193958535790443,-0.973554670810699,0.0528155565261841,0.450483798980713,-0.891220927238464,0.0287211183458567,0.197573333978653,-0.979867219924927,-0.0225108247250319,0.382572919130325,-0.923650979995728,0.0899290964007378,0.29490339756012,-0.951285779476166,0.0287211183458567,0.197573333978653,-0.979867219924927,-0.141543656587601,0.219176098704338,-0.965363740921021,-0.138142704963684,0.378583580255508,-0.915199935436249,-0.141543656587601,0.219176098704338,-0.965363740921021,-0.247409641742706,0.232769653201103,-0.940535306930542,-0.234388694167137,0.258083373308182,-0.937259197235107,-0.323908805847168,0.233416542410851,-0.916842222213745,-0.234388694167137,0.258083373308182,-0.937259197235107,-0.247409641742706,0.232769653201103,-0.940535306930542,-0.344174087047577,0.258138239383698,-0.902722954750061,-0.323908805847168,0.233416542410851,-0.916842222213745,-0.247409641742706,0.232769653201103,-0.940535306930542,-0.344174087047577,0.258138239383698,-0.902722954750061,-0.364479631185532,0.214819878339767,-0.906094312667847,-0.459452629089355,0.305283814668655,-0.834089279174805, +-0.51471734046936,0.149308383464813,-0.844258785247803,-0.633381247520447,0.0502744130790234,-0.772204995155334,-0.587468981742859,0.313221454620361,-0.746171772480011,-0.481747806072235,0.114774145185947,-0.86876106262207,-0.51471734046936,0.149308383464813,-0.844258785247803,-0.459452629089355,0.305283814668655,-0.834089279174805,-0.633381247520447,0.0502744130790234,-0.772204995155334,-0.855538666248322,-8.30153803690337e-005,-0.51773875951767,-0.785137355327606,0.259488791227341,-0.562338590621948,-0.855538666248322,-8.30153803690337e-005,-0.51773875951767,-0.759353220462799,-0.544919013977051,-0.355592161417007,-0.901128768920898,0.0775044932961464,-0.426567554473877,-0.37423112988472,-0.305149972438812,-0.875690877437592,-0.467706888914108,-0.281977295875549,-0.837698578834534,-0.375721991062164,-0.284176170825958,-0.882086634635925,-0.54130756855011,0.297010213136673,-0.786619901657104,-0.568050265312195,0.187350988388062,-0.801385283470154,-0.484062790870667,0.228775411844254,-0.844597458839417,-0.567556262016296,0.0908717587590218,-0.818304359912872,-0.568050265312195,0.187350988388062,-0.801385283470154,-0.688138365745544,0.117142379283905,-0.716060817241669,-0.612705647945404,-0.0234951861202717,-0.789961755275726,-0.567556262016296,0.0908717587590218,-0.818304359912872,-0.688138365745544,0.117142379283905,-0.716060817241669,-0.513704061508179,-0.0825687423348427,-0.853985011577606,-0.612705647945404,-0.0234951861202717,-0.789961755275726,-0.619634807109833,-0.162312850356102,-0.767923951148987,-0.54130756855011,0.297010213136673,-0.786619901657104,-0.484062790870667,0.228775411844254,-0.844597458839417,-0.431786060333252,0.363605946302414,-0.825440108776093,-0.542384743690491,-0.219101473689079,-0.811056852340698,-0.467706888914108,-0.281977295875549,-0.837698578834534,-0.457796484231949,-0.253508269786835,-0.852147817611694,-0.619634807109833,-0.162312850356102,-0.767923951148987,-0.611398339271545,-0.249871894717216,-0.750836849212646,-0.542384743690491,-0.219101473689079,-0.811056852340698,-0.302016198635101,0.192121744155884,-0.933742702007294, +-0.181886538863182,0.396313339471817,-0.899918258190155,-0.125817522406578,0.229355692863464,-0.965176582336426,-0.115232050418854,0.254101604223251,-0.960288405418396,-0.131957665085793,0.262721687555313,-0.955805599689484,-0.125817522406578,0.229355692863464,-0.965176582336426,-0.115232050418854,0.254101604223251,-0.960288405418396,-0.228384792804718,0.328399479389191,-0.9165118932724,-0.131957665085793,0.262721687555313,-0.955805599689484,-0.330387651920319,0.398757487535477,-0.855474293231964,-0.314200818538666,0.457831770181656,-0.831665635108948,-0.228384792804718,0.328399479389191,-0.9165118932724,-0.386983603239059,0.425527423620224,-0.818028092384338,-0.314200818538666,0.457831770181656,-0.831665635108948,-0.364594429731369,0.488851338624954,-0.792524516582489,-0.386983603239059,0.425527423620224,-0.818028092384338,-0.364594429731369,0.488851338624954,-0.792524516582489,-0.431786060333252,0.363605946302414,-0.825440108776093,-0.701673865318298,0.19036240875721,-0.686597228050232,-0.689438819885254,0.313934087753296,-0.652778148651123,-0.302016198635101,0.192121744155884,-0.933742702007294,-0.701673865318298,0.19036240875721,-0.686597228050232,-0.938324928283691,0.231022760272026,-0.257244318723679,-0.689438819885254,0.313934087753296,-0.652778148651123,-0.940951883792877,0.260915130376816,-0.21571446955204,-0.938324928283691,0.231022760272026,-0.257244318723679,-0.93982458114624,0.202914670109749,-0.274873226881027,-0.948862433433533,0.193628698587418,-0.24933448433876,-0.959616541862488,0.0164229515939951,-0.28083136677742,-0.93982458114624,0.202914670109749,-0.274873226881027,-0.815312206745148,-0.520652890205383,-0.253350436687469,-0.850956976413727,-0.475750148296356,-0.222562059760094,-0.949812173843384,-0.0815585032105446,-0.302001446485519,-0.872026205062866,-0.385271638631821,-0.301887333393097,-0.959616541862488,0.0164229515939951,-0.28083136677742,-0.850956976413727,-0.475750148296356,-0.222562059760094,-0.757820844650269,-0.561291396617889,-0.332655042409897,-0.815312206745148,-0.520652890205383,-0.253350436687469, +-0.911614656448364,-0.11439111083746,-0.394807904958725,-0.757820844650269,-0.561291396617889,-0.332655042409897,-0.901128768920898,0.0775044932961464,-0.426567554473877,-0.759353220462799,-0.544919013977051,-0.355592161417007,-0.437761574983597,-0.225656762719154,-0.870312392711639,-0.298591941595078,-0.268830686807632,-0.915736079216003,-0.383544743061066,-0.24897226691246,-0.889329016208649,-0.298591941595078,-0.268830686807632,-0.915736079216003,-0.440258145332336,-0.329571008682251,-0.835197925567627,-0.288108736276627,-0.35255840420723,-0.890334665775299,-0.376372933387756,-0.336426138877869,-0.86322695016861,-0.292497545480728,-0.386238187551498,-0.87479430437088,-0.288108736276627,-0.35255840420723,-0.890334665775299,-0.21900562942028,-0.399651408195496,-0.89012086391449,-0.292497545480728,-0.386238187551498,-0.87479430437088,-0.333235144615173,-0.331664741039276,-0.882583022117615,-0.383544743061066,-0.24897226691246,-0.889329016208649,-0.375721991062164,-0.284176170825958,-0.882086634635925,-0.522602498531342,-0.266758650541306,-0.80976927280426,-0.181554704904556,-0.376886129379272,-0.90829211473465,-0.378736466169357,-0.28886091709137,-0.879271268844604,-0.26678678393364,-0.228634163737297,-0.936243116855621,-0.181554704904556,-0.376886129379272,-0.90829211473465,-0.315705806016922,-0.372178971767426,-0.8728187084198,-0.378736466169357,-0.28886091709137,-0.879271268844604,-0.315705806016922,-0.372178971767426,-0.8728187084198,-0.21900562942028,-0.399651408195496,-0.89012086391449,-0.405952602624893,-0.299545586109161,-0.863408803939819,0.0463563427329063,-0.208436787128448,-0.97693657875061,-0.00410875398665667,-0.219404086470604,-0.975625336170197,-0.0364181399345398,-0.279557079076767,-0.95943808555603,0.0527092404663563,-0.286954522132874,-0.956492960453033,0.0918355733156204,-0.230178147554398,-0.968805491924286,0.0463563427329063,-0.208436787128448,-0.97693657875061,-0.270963132381439,-0.316726595163345,-0.908990144729614,-0.169338315725327,-0.239793062210083,-0.955941259860992,-0.26678678393364,-0.228634163737297,-0.936243116855621, +-0.0364181399345398,-0.279557079076767,-0.95943808555603,-0.169338315725327,-0.239793062210083,-0.955941259860992,-0.150404050946236,-0.375380605459213,-0.914586186408997,-0.0713118836283684,-0.384293675422668,-0.920452535152435,-0.0933457314968109,-0.336520612239838,-0.937038064002991,0.0527092404663563,-0.286954522132874,-0.956492960453033,-0.55579137802124,-0.218890324234962,-0.801986753940582,-0.323456257581711,-0.219111889600754,-0.920524775981903,-0.281603962182999,-0.392421096563339,-0.875616788864136,-0.0933457314968109,-0.336520612239838,-0.937038064002991,-0.0713118836283684,-0.384293675422668,-0.920452535152435,-0.281603962182999,-0.392421096563339,-0.875616788864136,-0.529803276062012,-0.39433890581131,-0.750869572162628,-0.558707892894745,-0.311118632555008,-0.768798172473907,-0.484600633382797,-0.35612890124321,-0.798958241939545,-0.612074136734009,-0.280522614717484,-0.739372789859772,-0.624857425689697,-0.253599256277084,-0.738403975963593,-0.671473562717438,-0.208146393299103,-0.71119487285614,-0.612074136734009,-0.280522614717484,-0.739372789859772,-0.558707892894745,-0.311118632555008,-0.768798172473907,-0.624857425689697,-0.253599256277084,-0.738403975963593,-0.479420155286789,-0.417449176311493,-0.771940648555756,-0.529803276062012,-0.39433890581131,-0.750869572162628,-0.465031772851944,-0.411953121423721,-0.783607006072998,-0.433773368597031,-0.325704216957092,-0.840093612670898,-0.355441510677338,-0.279048383235931,-0.892072439193726,-0.341922372579575,-0.152353152632713,-0.927295804023743,-0.321511268615723,-0.408934265375137,-0.854050993919373,-0.379805773496628,-0.382855653762817,-0.842121720314026,-0.455771833658218,-0.314112991094589,-0.832829535007477,-0.433773368597031,-0.325704216957092,-0.840093612670898,-0.379805773496628,-0.382855653762817,-0.842121720314026,-0.320718675851822,-0.361272245645523,-0.875569403171539,-0.404653638601303,-0.357931286096573,-0.841510832309723,-0.482302874326706,-0.364739239215851,-0.796460330486298,-0.401436358690262,-0.413082420825958,-0.817442119121552, +-0.321511268615723,-0.408934265375137,-0.854050993919373,-0.455771833658218,-0.314112991094589,-0.832829535007477,-0.404653638601303,-0.357931286096573,-0.841510832309723,-0.0941809341311455,0.21168877184391,-0.972788631916046,-0.341922372579575,-0.152353152632713,-0.927295804023743,-0.195151299238205,-0.0405297726392746,-0.979935348033905,0.0255121402442455,0.360666155815125,-0.932345986366272,-0.169748738408089,0.384181439876556,-0.907518565654755,-0.0941809341311455,0.21168877184391,-0.972788631916046,-0.401436358690262,-0.413082420825958,-0.817442119121552,-0.479420155286789,-0.417449176311493,-0.771940648555756,-0.465031772851944,-0.411953121423721,-0.783607006072998,-0.169748738408089,0.384181439876556,-0.907518565654755,0.0255121402442455,0.360666155815125,-0.932345986366272,-0.0415656194090843,0.515590369701386,-0.855826318264008,-0.677470326423645,-0.377763688564301,-0.63113260269165,-0.661698579788208,-0.297342211008072,-0.68828958272934,-0.72879296541214,-0.234539583325386,-0.64331316947937,-0.612074136734009,-0.280522614717484,-0.739372789859772,-0.671473562717438,-0.208146393299103,-0.71119487285614,-0.661698579788208,-0.297342211008072,-0.68828958272934,-0.786183178424835,-0.321406424045563,-0.527838706970215,-0.781034469604492,-0.376808911561966,-0.497996002435684,-0.736175715923309,-0.400543570518494,-0.545536398887634,-0.755571603775024,-0.275546580553055,-0.594294130802155,-0.736175715923309,-0.400543570518494,-0.545536398887634,-0.733417093753815,-0.334760934114456,-0.591636955738068,-0.677470326423645,-0.377763688564301,-0.63113260269165,-0.72879296541214,-0.234539583325386,-0.64331316947937,-0.733417093753815,-0.334760934114456,-0.591636955738068,-0.686579167842865,-0.397617310285568,-0.608694791793823,-0.872847735881805,-0.142802432179451,-0.466630697250366,-0.55579137802124,-0.218890324234962,-0.801986753940582,-0.686579167842865,-0.397617310285568,-0.608694791793823,-0.892801880836487,-0.282649397850037,-0.350733518600464,-0.872847735881805,-0.142802432179451,-0.466630697250366,-0.959607183933258,-0.133039996027946,-0.2478998452425, +-0.892801880836487,-0.282649397850037,-0.350733518600464,-0.885612308979034,-0.240249693393707,-0.397455334663391,-0.944738626480103,-0.0790024101734161,-0.318162560462952,-0.959607183933258,-0.133039996027946,-0.2478998452425,-0.885612308979034,-0.240249693393707,-0.397455334663391,-0.939945042133331,0.032684963196516,-0.339757114648819,-0.978363335132599,-0.0683197528123856,-0.195288300514221,-0.944738626480103,-0.0790024101734161,-0.318162560462952,-0.939945042133331,0.032684963196516,-0.339757114648819,-0.926927208900452,0.0708386078476906,-0.368493795394897,-0.915042281150818,0.0237774178385735,-0.40265628695488,-0.942461371421814,-0.0794298052787781,-0.324741989374161,-0.893088161945343,-0.249644339084625,-0.374260693788528,-0.909499704837799,-0.239239662885666,-0.339962601661682,-0.7835733294487,-0.293935090303421,-0.547370970249176,-0.81941294670105,-0.359069228172302,-0.446801453828812,-0.841214120388031,-0.313652157783508,-0.440432816743851,-0.81941294670105,-0.359069228172302,-0.446801453828812,-0.7835733294487,-0.293935090303421,-0.547370970249176,-0.781034469604492,-0.376808911561966,-0.497996002435684,-0.841214120388031,-0.313652157783508,-0.440432816743851,-0.893088161945343,-0.249644339084625,-0.374260693788528,-0.785047471523285,-0.191522836685181,-0.589083433151245,-0.920426726341248,-0.120375908911228,-0.371919512748718,-0.953864932060242,0.00901734456419945,-0.300100594758987,-0.942461371421814,-0.0794298052787781,-0.324741989374161,-0.915042281150818,0.0237774178385735,-0.40265628695488,-0.926927208900452,0.0708386078476906,-0.368493795394897,-0.953864932060242,0.00901734456419945,-0.300100594758987,0.15589627623558,0.042690422385931,-0.986850440502167,0.166296094655991,0.0984353125095367,-0.981150329113007,0.120711542665958,0.193958535790443,-0.973554670810699,0.0287211183458567,0.197573333978653,-0.979867219924927,0.0899290964007378,0.29490339756012,-0.951285779476166,0.166296094655991,0.0984353125095367,-0.981150329113007,0.0931055322289467,0.162509068846703,-0.982304453849792,0.120711542665958,0.193958535790443,-0.973554670810699, +0.0255121402442455,0.360666155815125,-0.932345986366272,0.0287211183458567,0.197573333978653,-0.979867219924927,-0.0231192894279957,0.166160255670547,-0.985827684402466,-0.141543656587601,0.219176098704338,-0.965363740921021,-0.247409641742706,0.232769653201103,-0.940535306930542,-0.141543656587601,0.219176098704338,-0.965363740921021,-0.153882533311844,0.222355082631111,-0.962745189666748,-0.344174087047577,0.258138239383698,-0.902722954750061,-0.247409641742706,0.232769653201103,-0.940535306930542,-0.224310472607613,0.249642997980118,-0.941999554634094,-0.344174087047577,0.258138239383698,-0.902722954750061,-0.224310472607613,0.249642997980118,-0.941999554634094,-0.364479631185532,0.214819878339767,-0.906094312667847,-0.481747806072235,0.114774145185947,-0.86876106262207,-0.459452629089355,0.305283814668655,-0.834089279174805,-0.364479631185532,0.214819878339767,-0.906094312667847,-0.51471734046936,0.149308383464813,-0.844258785247803,-0.519978702068329,-0.485186666250229,-0.703004896640778,-0.633381247520447,0.0502744130790234,-0.772204995155334,-0.481747806072235,0.114774145185947,-0.86876106262207,-0.519978702068329,-0.485186666250229,-0.703004896640778,-0.51471734046936,0.149308383464813,-0.844258785247803,-0.633381247520447,0.0502744130790234,-0.772204995155334,-0.659293711185455,-0.434320062398911,-0.613757014274597,-0.855538666248322,-8.30153803690337e-005,-0.51773875951767,-0.659293711185455,-0.434320062398911,-0.613757014274597,-0.759353220462799,-0.544919013977051,-0.355592161417007,-0.855538666248322,-8.30153803690337e-005,-0.51773875951767,-0.522602498531342,-0.266758650541306,-0.80976927280426,-0.375721991062164,-0.284176170825958,-0.882086634635925,-0.467706888914108,-0.281977295875549,-0.837698578834534,-0.695344924926758,0.231574133038521,-0.680344521999359,-0.568050265312195,0.187350988388062,-0.801385283470154,-0.54130756855011,0.297010213136673,-0.786619901657104,-0.695344924926758,0.231574133038521,-0.680344521999359,-0.688138365745544,0.117142379283905,-0.716060817241669,-0.568050265312195,0.187350988388062,-0.801385283470154, +-0.612705647945404,-0.0234951861202717,-0.789961755275726,-0.688138365745544,0.117142379283905,-0.716060817241669,-0.767533600330353,0.0266404096037149,-0.640454769134521,-0.619634807109833,-0.162312850356102,-0.767923951148987,-0.612705647945404,-0.0234951861202717,-0.789961755275726,-0.68336009979248,-0.108444057404995,-0.721982479095459,-0.484771013259888,0.424848824739456,-0.76452624797821,-0.54130756855011,0.297010213136673,-0.786619901657104,-0.431786060333252,0.363605946302414,-0.825440108776093,-0.522602498531342,-0.266758650541306,-0.80976927280426,-0.467706888914108,-0.281977295875549,-0.837698578834534,-0.542384743690491,-0.219101473689079,-0.811056852340698,-0.619634807109833,-0.162312850356102,-0.767923951148987,-0.712136447429657,-0.203407406806946,-0.671927750110626,-0.611398339271545,-0.249871894717216,-0.750836849212646,-0.522602498531342,-0.266758650541306,-0.80976927280426,-0.542384743690491,-0.219101473689079,-0.811056852340698,-0.611398339271545,-0.249871894717216,-0.750836849212646,-0.689438819885254,0.313934087753296,-0.652778148651123,-0.181886538863182,0.396313339471817,-0.899918258190155,-0.302016198635101,0.192121744155884,-0.933742702007294,-0.181886538863182,0.396313339471817,-0.899918258190155,-0.0855274796485901,0.323590308427811,-0.942323863506317,-0.125817522406578,0.229355692863464,-0.965176582336426,-0.115232050418854,0.254101604223251,-0.960288405418396,-0.125817522406578,0.229355692863464,-0.965176582336426,-0.0855274796485901,0.323590308427811,-0.942323863506317,-0.228384792804718,0.328399479389191,-0.9165118932724,-0.115232050418854,0.254101604223251,-0.960288405418396,-0.238658770918846,0.249162405729294,-0.938594698905945,-0.330387651920319,0.398757487535477,-0.855474293231964,-0.314837038516998,0.478343576192856,-0.819795668125153,-0.314200818538666,0.457831770181656,-0.831665635108948,-0.330387651920319,0.398757487535477,-0.855474293231964,-0.228384792804718,0.328399479389191,-0.9165118932724,-0.338877618312836,0.31237131357193,-0.88746041059494,-0.314837038516998,0.478343576192856,-0.819795668125153, +-0.364594429731369,0.488851338624954,-0.792524516582489,-0.314200818538666,0.457831770181656,-0.831665635108948,-0.484771013259888,0.424848824739456,-0.76452624797821,-0.431786060333252,0.363605946302414,-0.825440108776093,-0.364594429731369,0.488851338624954,-0.792524516582489,-0.938324928283691,0.231022760272026,-0.257244318723679,-0.93914932012558,0.303015470504761,-0.16180257499218,-0.689438819885254,0.313934087753296,-0.652778148651123,-0.938324928283691,0.231022760272026,-0.257244318723679,-0.940951883792877,0.260915130376816,-0.21571446955204,-0.93914932012558,0.303015470504761,-0.16180257499218,-0.937365531921387,0.13921982049942,-0.319317370653152,-0.940951883792877,0.260915130376816,-0.21571446955204,-0.93982458114624,0.202914670109749,-0.274873226881027,-0.93982458114624,0.202914670109749,-0.274873226881027,-0.959616541862488,0.0164229515939951,-0.28083136677742,-0.937365531921387,0.13921982049942,-0.319317370653152,-0.857192933559418,-0.349070131778717,-0.378642529249191,-0.959616541862488,0.0164229515939951,-0.28083136677742,-0.872026205062866,-0.385271638631821,-0.301887333393097,-0.440258145332336,-0.329571008682251,-0.835197925567627,-0.298591941595078,-0.268830686807632,-0.915736079216003,-0.437761574983597,-0.225656762719154,-0.870312392711639,-0.437761574983597,-0.225656762719154,-0.870312392711639,-0.383544743061066,-0.24897226691246,-0.889329016208649,-0.500646829605103,-0.158343181014061,-0.851046442985535,-0.288108736276627,-0.35255840420723,-0.890334665775299,-0.440258145332336,-0.329571008682251,-0.835197925567627,-0.376372933387756,-0.336426138877869,-0.86322695016861,-0.376372933387756,-0.336426138877869,-0.86322695016861,-0.392122954130173,-0.294570952653885,-0.871474266052246,-0.292497545480728,-0.386238187551498,-0.87479430437088,-0.392122954130173,-0.294570952653885,-0.871474266052246,-0.333235144615173,-0.331664741039276,-0.882583022117615,-0.292497545480728,-0.386238187551498,-0.87479430437088,-0.333235144615173,-0.331664741039276,-0.882583022117615,-0.405952602624893,-0.299545586109161,-0.863408803939819, +-0.21900562942028,-0.399651408195496,-0.89012086391449,-0.522940456867218,-0.240865737199783,-0.817628800868988,-0.383544743061066,-0.24897226691246,-0.889329016208649,-0.522602498531342,-0.266758650541306,-0.80976927280426,-0.378736466169357,-0.28886091709137,-0.879271268844604,-0.412333905696869,-0.259233385324478,-0.87337201833725,-0.26678678393364,-0.228634163737297,-0.936243116855621,-0.378736466169357,-0.28886091709137,-0.879271268844604,-0.315705806016922,-0.372178971767426,-0.8728187084198,-0.405952602624893,-0.299545586109161,-0.863408803939819,-0.0364181399345398,-0.279557079076767,-0.95943808555603,0.0527092404663563,-0.286954522132874,-0.956492960453033,0.0463563427329063,-0.208436787128448,-0.97693657875061,-0.270963132381439,-0.316726595163345,-0.908990144729614,-0.150404050946236,-0.375380605459213,-0.914586186408997,-0.169338315725327,-0.239793062210083,-0.955941259860992,-0.270963132381439,-0.316726595163345,-0.908990144729614,-0.26678678393364,-0.228634163737297,-0.936243116855621,-0.412333905696869,-0.259233385324478,-0.87337201833725,-0.0364181399345398,-0.279557079076767,-0.95943808555603,-0.150404050946236,-0.375380605459213,-0.914586186408997,-0.0801679342985153,-0.356312602758408,-0.930921196937561,0.0326130464673042,-0.34137436747551,-0.939361393451691,-0.0713118836283684,-0.384293675422668,-0.920452535152435,0.0527092404663563,-0.286954522132874,-0.956492960453033,-0.686579167842865,-0.397617310285568,-0.608694791793823,-0.55579137802124,-0.218890324234962,-0.801986753940582,-0.281603962182999,-0.392421096563339,-0.875616788864136,-0.281603962182999,-0.392421096563339,-0.875616788864136,-0.0713118836283684,-0.384293675422668,-0.920452535152435,-0.273004144430161,-0.468324780464172,-0.840321719646454,-0.558707892894745,-0.311118632555008,-0.768798172473907,-0.546520531177521,-0.34550803899765,-0.762849450111389,-0.484600633382797,-0.35612890124321,-0.798958241939545,-0.465031772851944,-0.411953121423721,-0.783607006072998,-0.529803276062012,-0.39433890581131,-0.750869572162628,-0.484600633382797,-0.35612890124321,-0.798958241939545, +-0.558707892894745,-0.311118632555008,-0.768798172473907,-0.612074136734009,-0.280522614717484,-0.739372789859772,-0.546520531177521,-0.34550803899765,-0.762849450111389,-0.320718675851822,-0.361272245645523,-0.875569403171539,-0.355441510677338,-0.279048383235931,-0.892072439193726,-0.433773368597031,-0.325704216957092,-0.840093612670898,-0.341922372579575,-0.152353152632713,-0.927295804023743,-0.355441510677338,-0.279048383235931,-0.892072439193726,-0.195151299238205,-0.0405297726392746,-0.979935348033905,-0.321511268615723,-0.408934265375137,-0.854050993919373,-0.204029604792595,-0.377666294574738,-0.903183221817017,-0.379805773496628,-0.382855653762817,-0.842121720314026,-0.320718675851822,-0.361272245645523,-0.875569403171539,-0.379805773496628,-0.382855653762817,-0.842121720314026,-0.204029604792595,-0.377666294574738,-0.903183221817017,-0.401436358690262,-0.413082420825958,-0.817442119121552,-0.320888936519623,-0.406474649906158,-0.855458080768585,-0.404653638601303,-0.357931286096573,-0.841510832309723,-0.321511268615723,-0.408934265375137,-0.854050993919373,-0.404653638601303,-0.357931286096573,-0.841510832309723,-0.320888936519623,-0.406474649906158,-0.855458080768585,-0.0941809341311455,0.21168877184391,-0.972788631916046,-0.195151299238205,-0.0405297726392746,-0.979935348033905,0.0252595748752356,0.18456906080246,-0.982494831085205,0.0255121402442455,0.360666155815125,-0.932345986366272,-0.0941809341311455,0.21168877184391,-0.972788631916046,0.0653253495693207,0.271906346082687,-0.960103869438171,-0.401436358690262,-0.413082420825958,-0.817442119121552,-0.465031772851944,-0.411953121423721,-0.783607006072998,-0.417733281850815,-0.385603249073029,-0.822683930397034,-0.611979722976685,-0.37159675359726,-0.698137998580933,-0.661698579788208,-0.297342211008072,-0.68828958272934,-0.677470326423645,-0.377763688564301,-0.63113260269165,-0.612074136734009,-0.280522614717484,-0.739372789859772,-0.661698579788208,-0.297342211008072,-0.68828958272934,-0.611979722976685,-0.37159675359726,-0.698137998580933,-0.781034469604492,-0.376808911561966,-0.497996002435684, +-0.72732001543045,-0.375844180583954,-0.574235618114471,-0.736175715923309,-0.400543570518494,-0.545536398887634,-0.677470326423645,-0.377763688564301,-0.63113260269165,-0.733417093753815,-0.334760934114456,-0.591636955738068,-0.736175715923309,-0.400543570518494,-0.545536398887634,-0.686579167842865,-0.397617310285568,-0.608694791793823,-0.725380480289459,-0.427630811929703,-0.539402365684509,-0.892801880836487,-0.282649397850037,-0.350733518600464,-0.725380480289459,-0.427630811929703,-0.539402365684509,-0.885612308979034,-0.240249693393707,-0.397455334663391,-0.892801880836487,-0.282649397850037,-0.350733518600464,-0.944738626480103,-0.0790024101734161,-0.318162560462952,-0.885612308979034,-0.240249693393707,-0.397455334663391,-0.857552707195282,-0.0828394144773483,-0.507681846618652,-0.939945042133331,0.032684963196516,-0.339757114648819,-0.944738626480103,-0.0790024101734161,-0.318162560462952,-0.918603420257568,0.0567133538424969,-0.391089886426926,-0.926927208900452,0.0708386078476906,-0.368493795394897,-0.939945042133331,0.032684963196516,-0.339757114648819,-0.918603420257568,0.0567133538424969,-0.391089886426926,-0.861968278884888,-0.0664295554161072,-0.502590954303741,-0.893088161945343,-0.249644339084625,-0.374260693788528,-0.942461371421814,-0.0794298052787781,-0.324741989374161,-0.785047471523285,-0.191522836685181,-0.589083433151245,-0.7835733294487,-0.293935090303421,-0.547370970249176,-0.841214120388031,-0.313652157783508,-0.440432816743851,-0.716176211833954,-0.2941033244133,-0.632925510406494,-0.781034469604492,-0.376808911561966,-0.497996002435684,-0.7835733294487,-0.293935090303421,-0.547370970249176,-0.893088161945343,-0.249644339084625,-0.374260693788528,-0.861968278884888,-0.0664295554161072,-0.502590954303741,-0.785047471523285,-0.191522836685181,-0.589083433151245,-0.942461371421814,-0.0794298052787781,-0.324741989374161,-0.953864932060242,0.00901734456419945,-0.300100594758987,-0.899882256984711,0.0611213594675064,-0.431828647851944,-0.951150417327881,0.0848149061203003,-0.296848833560944, +-0.953864932060242,0.00901734456419945,-0.300100594758987,-0.926927208900452,0.0708386078476906,-0.368493795394897,0.15589627623558,0.042690422385931,-0.986850440502167,0.194640666246414,0.0822518989443779,-0.977419853210449,0.166296094655991,0.0984353125095367,-0.981150329113007,0.108368642628193,0.0333712324500084,-0.993550479412079,0.15589627623558,0.042690422385931,-0.986850440502167,0.120711542665958,0.193958535790443,-0.973554670810699,0.0287211183458567,0.197573333978653,-0.979867219924927,0.166296094655991,0.0984353125095367,-0.981150329113007,0.131345391273499,0.0953184068202972,-0.98674350976944,0.0931055322289467,0.162509068846703,-0.982304453849792,0.108368642628193,0.0333712324500084,-0.993550479412079,0.120711542665958,0.193958535790443,-0.973554670810699,0.0931055322289467,0.162509068846703,-0.982304453849792,0.0255121402442455,0.360666155815125,-0.932345986366272,0.0653253495693207,0.271906346082687,-0.960103869438171,0.0287211183458567,0.197573333978653,-0.979867219924927,0.131345391273499,0.0953184068202972,-0.98674350976944,-0.0231192894279957,0.166160255670547,-0.985827684402466,-0.141543656587601,0.219176098704338,-0.965363740921021,-0.0231192894279957,0.166160255670547,-0.985827684402466,-0.153882533311844,0.222355082631111,-0.962745189666748,-0.153882533311844,0.222355082631111,-0.962745189666748,-0.101454392075539,0.183892011642456,-0.977696597576141,-0.247409641742706,0.232769653201103,-0.940535306930542,-0.224310472607613,0.249642997980118,-0.941999554634094,-0.247409641742706,0.232769653201103,-0.940535306930542,-0.101454392075539,0.183892011642456,-0.977696597576141,-0.179966792464256,-0.16630756855011,-0.969512045383453,-0.364479631185532,0.214819878339767,-0.906094312667847,-0.224310472607613,0.249642997980118,-0.941999554634094,-0.481747806072235,0.114774145185947,-0.86876106262207,-0.364479631185532,0.214819878339767,-0.906094312667847,-0.300439089536667,-0.398137241601944,-0.8667311668396,-0.659293711185455,-0.434320062398911,-0.613757014274597,-0.633381247520447,0.0502744130790234,-0.772204995155334, +-0.519978702068329,-0.485186666250229,-0.703004896640778,-0.422091066837311,-0.666740715503693,-0.614244043827057,-0.519978702068329,-0.485186666250229,-0.703004896640778,-0.481747806072235,0.114774145185947,-0.86876106262207,-0.659293711185455,-0.434320062398911,-0.613757014274597,-0.340051501989365,-0.877816677093506,-0.337346583604813,-0.759353220462799,-0.544919013977051,-0.355592161417007,-0.695344924926758,0.231574133038521,-0.680344521999359,-0.54130756855011,0.297010213136673,-0.786619901657104,-0.632832050323486,0.36867767572403,-0.680881917476654,-0.688138365745544,0.117142379283905,-0.716060817241669,-0.695344924926758,0.231574133038521,-0.680344521999359,-0.812371432781219,0.152749836444855,-0.562778830528259,-0.767533600330353,0.0266404096037149,-0.640454769134521,-0.688138365745544,0.117142379283905,-0.716060817241669,-0.812371432781219,0.152749836444855,-0.562778830528259,-0.68336009979248,-0.108444057404995,-0.721982479095459,-0.612705647945404,-0.0234951861202717,-0.789961755275726,-0.767533600330353,0.0266404096037149,-0.640454769134521,-0.68336009979248,-0.108444057404995,-0.721982479095459,-0.712136447429657,-0.203407406806946,-0.671927750110626,-0.619634807109833,-0.162312850356102,-0.767923951148987,-0.484771013259888,0.424848824739456,-0.76452624797821,-0.632832050323486,0.36867767572403,-0.680881917476654,-0.54130756855011,0.297010213136673,-0.786619901657104,-0.712136447429657,-0.203407406806946,-0.671927750110626,-0.683844387531281,-0.237955421209335,-0.689734697341919,-0.611398339271545,-0.249871894717216,-0.750836849212646,-0.612530052661896,-0.245720714330673,-0.751284301280975,-0.522602498531342,-0.266758650541306,-0.80976927280426,-0.611398339271545,-0.249871894717216,-0.750836849212646,-0.689438819885254,0.313934087753296,-0.652778148651123,-0.644588768482208,0.541783213615417,-0.53942197561264,-0.181886538863182,0.396313339471817,-0.899918258190155,-0.283896058797836,0.345176696777344,-0.894570231437683,-0.0855274796485901,0.323590308427811,-0.942323863506317,-0.181886538863182,0.396313339471817,-0.899918258190155, +-0.164933785796165,0.0953185632824898,-0.981687903404236,-0.115232050418854,0.254101604223251,-0.960288405418396,-0.0855274796485901,0.323590308427811,-0.942323863506317,-0.238658770918846,0.249162405729294,-0.938594698905945,-0.115232050418854,0.254101604223251,-0.960288405418396,-0.193061023950577,-0.108744323253632,-0.975142061710358,-0.228384792804718,0.328399479389191,-0.9165118932724,-0.238658770918846,0.249162405729294,-0.938594698905945,-0.338877618312836,0.31237131357193,-0.88746041059494,-0.330387651920319,0.398757487535477,-0.855474293231964,-0.31983807682991,0.377885848283768,-0.868853092193604,-0.314837038516998,0.478343576192856,-0.819795668125153,-0.342988699674606,0.312997877597809,-0.885658502578735,-0.330387651920319,0.398757487535477,-0.855474293231964,-0.338877618312836,0.31237131357193,-0.88746041059494,-0.314837038516998,0.478343576192856,-0.819795668125153,-0.342201977968216,0.57621955871582,-0.742205262184143,-0.364594429731369,0.488851338624954,-0.792524516582489,-0.364594429731369,0.488851338624954,-0.792524516582489,-0.411800593137741,0.531272113323212,-0.740385055541992,-0.484771013259888,0.424848824739456,-0.76452624797821,-0.644588768482208,0.541783213615417,-0.53942197561264,-0.689438819885254,0.313934087753296,-0.652778148651123,-0.93914932012558,0.303015470504761,-0.16180257499218,-0.940951883792877,0.260915130376816,-0.21571446955204,-0.644588768482208,0.541783213615417,-0.53942197561264,-0.93914932012558,0.303015470504761,-0.16180257499218,-0.937365531921387,0.13921982049942,-0.319317370653152,-0.762374818325043,-0.28863787651062,-0.579199969768524,-0.940951883792877,0.260915130376816,-0.21571446955204,-0.857192933559418,-0.349070131778717,-0.378642529249191,-0.937365531921387,0.13921982049942,-0.319317370653152,-0.959616541862488,0.0164229515939951,-0.28083136677742,-0.440258145332336,-0.329571008682251,-0.835197925567627,-0.437761574983597,-0.225656762719154,-0.870312392711639,-0.508554756641388,-0.322577029466629,-0.798320710659027,-0.522940456867218,-0.240865737199783,-0.817628800868988, +-0.500646829605103,-0.158343181014061,-0.851046442985535,-0.383544743061066,-0.24897226691246,-0.889329016208649,-0.514056086540222,-0.197783499956131,-0.834642350673676,-0.437761574983597,-0.225656762719154,-0.870312392711639,-0.500646829605103,-0.158343181014061,-0.851046442985535,-0.440258145332336,-0.329571008682251,-0.835197925567627,-0.419867157936096,-0.335006356239319,-0.84349399805069,-0.376372933387756,-0.336426138877869,-0.86322695016861,-0.376372933387756,-0.336426138877869,-0.86322695016861,-0.419867157936096,-0.335006356239319,-0.84349399805069,-0.392122954130173,-0.294570952653885,-0.871474266052246,-0.333235144615173,-0.331664741039276,-0.882583022117615,-0.392122954130173,-0.294570952653885,-0.871474266052246,-0.405952602624893,-0.299545586109161,-0.863408803939819,-0.612530052661896,-0.245720714330673,-0.751284301280975,-0.522940456867218,-0.240865737199783,-0.817628800868988,-0.522602498531342,-0.266758650541306,-0.80976927280426,-0.378736466169357,-0.28886091709137,-0.879271268844604,-0.405952602624893,-0.299545586109161,-0.863408803939819,-0.412333905696869,-0.259233385324478,-0.87337201833725,-0.0364181399345398,-0.279557079076767,-0.95943808555603,0.0326130464673042,-0.34137436747551,-0.939361393451691,0.0527092404663563,-0.286954522132874,-0.956492960453033,-0.270963132381439,-0.316726595163345,-0.908990144729614,-0.0810816064476967,-0.432158917188644,-0.898144960403442,-0.150404050946236,-0.375380605459213,-0.914586186408997,-0.320262908935547,-0.34529635310173,-0.882157623767853,-0.270963132381439,-0.316726595163345,-0.908990144729614,-0.412333905696869,-0.259233385324478,-0.87337201833725,-0.0164644978940487,-0.415471345186234,-0.909457147121429,-0.0801679342985153,-0.356312602758408,-0.930921196937561,-0.150404050946236,-0.375380605459213,-0.914586186408997,-0.0801679342985153,-0.356312602758408,-0.930921196937561,-0.0481764264404774,-0.291733354330063,-0.955285608768463,-0.0364181399345398,-0.279557079076767,-0.95943808555603,-0.0377987250685692,-0.319107562303543,-0.946964383125305,-0.0713118836283684,-0.384293675422668,-0.920452535152435, +0.0326130464673042,-0.34137436747551,-0.939361393451691,-0.686579167842865,-0.397617310285568,-0.608694791793823,-0.281603962182999,-0.392421096563339,-0.875616788864136,-0.466873705387115,-0.517709374427795,-0.716941952705383,-0.273004144430161,-0.468324780464172,-0.840321719646454,-0.0713118836283684,-0.384293675422668,-0.920452535152435,-0.254744678735733,-0.366667717695236,-0.894795954227448,-0.273004144430161,-0.468324780464172,-0.840321719646454,-0.466873705387115,-0.517709374427795,-0.716941952705383,-0.281603962182999,-0.392421096563339,-0.875616788864136,-0.484600633382797,-0.35612890124321,-0.798958241939545,-0.546520531177521,-0.34550803899765,-0.762849450111389,-0.468044459819794,-0.361269891262054,-0.806485176086426,-0.417733281850815,-0.385603249073029,-0.822683930397034,-0.465031772851944,-0.411953121423721,-0.783607006072998,-0.484600633382797,-0.35612890124321,-0.798958241939545,-0.611979722976685,-0.37159675359726,-0.698137998580933,-0.546520531177521,-0.34550803899765,-0.762849450111389,-0.612074136734009,-0.280522614717484,-0.739372789859772,-0.320718675851822,-0.361272245645523,-0.875569403171539,-0.159890562295914,-0.166754469275475,-0.972948014736176,-0.355441510677338,-0.279048383235931,-0.892072439193726,-0.159890562295914,-0.166754469275475,-0.972948014736176,-0.195151299238205,-0.0405297726392746,-0.979935348033905,-0.355441510677338,-0.279048383235931,-0.892072439193726,-0.19080676138401,-0.506123781204224,-0.841089367866516,-0.204029604792595,-0.377666294574738,-0.903183221817017,-0.321511268615723,-0.408934265375137,-0.854050993919373,-0.204029604792595,-0.377666294574738,-0.903183221817017,-0.159890562295914,-0.166754469275475,-0.972948014736176,-0.320718675851822,-0.361272245645523,-0.875569403171539,-0.401436358690262,-0.413082420825958,-0.817442119121552,-0.264031618833542,-0.428376942873001,-0.864164590835571,-0.320888936519623,-0.406474649906158,-0.855458080768585,-0.244801342487335,-0.467659682035446,-0.849333047866821,-0.321511268615723,-0.408934265375137,-0.854050993919373,-0.320888936519623,-0.406474649906158,-0.855458080768585, +-0.159890562295914,-0.166754469275475,-0.972948014736176,0.0252595748752356,0.18456906080246,-0.982494831085205,-0.195151299238205,-0.0405297726392746,-0.979935348033905,0.0252595748752356,0.18456906080246,-0.982494831085205,0.0653253495693207,0.271906346082687,-0.960103869438171,-0.0941809341311455,0.21168877184391,-0.972788631916046,-0.322284519672394,-0.404185056686401,-0.856018126010895,-0.401436358690262,-0.413082420825958,-0.817442119121552,-0.417733281850815,-0.385603249073029,-0.822683930397034,-0.611979722976685,-0.37159675359726,-0.698137998580933,-0.677470326423645,-0.377763688564301,-0.63113260269165,-0.617714941501617,-0.394058883190155,-0.680548071861267,-0.716176211833954,-0.2941033244133,-0.632925510406494,-0.72732001543045,-0.375844180583954,-0.574235618114471,-0.781034469604492,-0.376808911561966,-0.497996002435684,-0.736175715923309,-0.400543570518494,-0.545536398887634,-0.72732001543045,-0.375844180583954,-0.574235618114471,-0.675247371196747,-0.397136390209198,-0.621549367904663,-0.675247371196747,-0.397136390209198,-0.621549367904663,-0.677470326423645,-0.377763688564301,-0.63113260269165,-0.736175715923309,-0.400543570518494,-0.545536398887634,-0.686579167842865,-0.397617310285568,-0.608694791793823,-0.466873705387115,-0.517709374427795,-0.716941952705383,-0.725380480289459,-0.427630811929703,-0.539402365684509,-0.725380480289459,-0.427630811929703,-0.539402365684509,-0.692781388759613,-0.2418113052845,-0.679397583007813,-0.885612308979034,-0.240249693393707,-0.397455334663391,-0.857552707195282,-0.0828394144773483,-0.507681846618652,-0.885612308979034,-0.240249693393707,-0.397455334663391,-0.692781388759613,-0.2418113052845,-0.679397583007813,-0.944738626480103,-0.0790024101734161,-0.318162560462952,-0.857552707195282,-0.0828394144773483,-0.507681846618652,-0.918603420257568,0.0567133538424969,-0.391089886426926,-0.926927208900452,0.0708386078476906,-0.368493795394897,-0.918603420257568,0.0567133538424969,-0.391089886426926,-0.951150417327881,0.0848149061203003,-0.296848833560944,-0.861968278884888,-0.0664295554161072,-0.502590954303741, +-0.942461371421814,-0.0794298052787781,-0.324741989374161,-0.899882256984711,0.0611213594675064,-0.431828647851944,-0.662489831447601,-0.148764252662659,-0.734150111675262,-0.7835733294487,-0.293935090303421,-0.547370970249176,-0.785047471523285,-0.191522836685181,-0.589083433151245,-0.716176211833954,-0.2941033244133,-0.632925510406494,-0.7835733294487,-0.293935090303421,-0.547370970249176,-0.662489831447601,-0.148764252662659,-0.734150111675262,-0.759994506835938,-0.048678070306778,-0.648103773593903,-0.785047471523285,-0.191522836685181,-0.589083433151245,-0.861968278884888,-0.0664295554161072,-0.502590954303741,-0.953864932060242,0.00901734456419945,-0.300100594758987,-0.930936694145203,0.0944055989384651,-0.35276660323143,-0.899882256984711,0.0611213594675064,-0.431828647851944,-0.951150417327881,0.0848149061203003,-0.296848833560944,-0.930936694145203,0.0944055989384651,-0.35276660323143,-0.953864932060242,0.00901734456419945,-0.300100594758987,0.138947993516922,0.0195860378444195,-0.990105926990509,0.194640666246414,0.0822518989443779,-0.977419853210449,0.15589627623558,0.042690422385931,-0.986850440502167,0.131345391273499,0.0953184068202972,-0.98674350976944,0.166296094655991,0.0984353125095367,-0.981150329113007,0.194640666246414,0.0822518989443779,-0.977419853210449,0.108368642628193,0.0333712324500084,-0.993550479412079,0.138947993516922,0.0195860378444195,-0.990105926990509,0.15589627623558,0.042690422385931,-0.986850440502167,0.122733540832996,-0.00124290073290467,-0.992438852787018,0.108368642628193,0.0333712324500084,-0.993550479412079,0.0931055322289467,0.162509068846703,-0.982304453849792,0.0653253495693207,0.271906346082687,-0.960103869438171,0.12447976320982,0.229076698422432,-0.965416252613068,0.0931055322289467,0.162509068846703,-0.982304453849792,-0.0231192894279957,0.166160255670547,-0.985827684402466,0.131345391273499,0.0953184068202972,-0.98674350976944,0.129056483507156,0.0935076251626015,-0.987218618392944,-0.0231192894279957,0.166160255670547,-0.985827684402466,-0.0109696900472045,0.138890355825424,-0.990246951580048, +-0.153882533311844,0.222355082631111,-0.962745189666748,-0.101454392075539,0.183892011642456,-0.977696597576141,-0.153882533311844,0.222355082631111,-0.962745189666748,-0.0109696900472045,0.138890355825424,-0.990246951580048,-0.224310472607613,0.249642997980118,-0.941999554634094,-0.101454392075539,0.183892011642456,-0.977696597576141,0.0122800199314952,-0.219115883111954,-0.975621402263641,-0.179966792464256,-0.16630756855011,-0.969512045383453,-0.298933833837509,-0.34359472990036,-0.890270233154297,-0.364479631185532,0.214819878339767,-0.906094312667847,-0.179966792464256,-0.16630756855011,-0.969512045383453,-0.224310472607613,0.249642997980118,-0.941999554634094,0.0122800199314952,-0.219115883111954,-0.975621402263641,-0.300439089536667,-0.398137241601944,-0.8667311668396,-0.364479631185532,0.214819878339767,-0.906094312667847,-0.298933833837509,-0.34359472990036,-0.890270233154297,-0.422091066837311,-0.666740715503693,-0.614244043827057,-0.481747806072235,0.114774145185947,-0.86876106262207,-0.300439089536667,-0.398137241601944,-0.8667311668396,-0.659293711185455,-0.434320062398911,-0.613757014274597,-0.519978702068329,-0.485186666250229,-0.703004896640778,-0.340051501989365,-0.877816677093506,-0.337346583604813,-0.695344924926758,0.231574133038521,-0.680344521999359,-0.632832050323486,0.36867767572403,-0.680881917476654,-0.770202279090881,0.313256144523621,-0.555570721626282,-0.812371432781219,0.152749836444855,-0.562778830528259,-0.695344924926758,0.231574133038521,-0.680344521999359,-0.770202279090881,0.313256144523621,-0.555570721626282,-0.864938855171204,0.091694675385952,-0.49342954158783,-0.767533600330353,0.0266404096037149,-0.640454769134521,-0.812371432781219,0.152749836444855,-0.562778830528259,-0.781826138496399,-0.0754482075572014,-0.618914604187012,-0.68336009979248,-0.108444057404995,-0.721982479095459,-0.767533600330353,0.0266404096037149,-0.640454769134521,-0.68336009979248,-0.108444057404995,-0.721982479095459,-0.781826138496399,-0.0754482075572014,-0.618914604187012,-0.712136447429657,-0.203407406806946,-0.671927750110626, +-0.52253133058548,0.498782128095627,-0.691503703594208,-0.632832050323486,0.36867767572403,-0.680881917476654,-0.484771013259888,0.424848824739456,-0.76452624797821,-0.712136447429657,-0.203407406806946,-0.671927750110626,-0.773737370967865,-0.221209809184074,-0.593630015850067,-0.683844387531281,-0.237955421209335,-0.689734697341919,-0.683844387531281,-0.237955421209335,-0.689734697341919,-0.612530052661896,-0.245720714330673,-0.751284301280975,-0.611398339271545,-0.249871894717216,-0.750836849212646,-0.644588768482208,0.541783213615417,-0.53942197561264,-0.283896058797836,0.345176696777344,-0.894570231437683,-0.181886538863182,0.396313339471817,-0.899918258190155,-0.164933785796165,0.0953185632824898,-0.981687903404236,-0.0855274796485901,0.323590308427811,-0.942323863506317,-0.283896058797836,0.345176696777344,-0.894570231437683,-0.164933785796165,0.0953185632824898,-0.981687903404236,-0.193061023950577,-0.108744323253632,-0.975142061710358,-0.115232050418854,0.254101604223251,-0.960288405418396,-0.230264604091644,-0.0299121607095003,-0.972668170928955,-0.238658770918846,0.249162405729294,-0.938594698905945,-0.193061023950577,-0.108744323253632,-0.975142061710358,-0.338877618312836,0.31237131357193,-0.88746041059494,-0.238658770918846,0.249162405729294,-0.938594698905945,-0.356453716754913,0.22632072865963,-0.906487464904785,-0.31983807682991,0.377885848283768,-0.868853092193604,-0.330387651920319,0.398757487535477,-0.855474293231964,-0.342988699674606,0.312997877597809,-0.885658502578735,-0.274271726608276,0.409582704305649,-0.870067179203033,-0.314837038516998,0.478343576192856,-0.819795668125153,-0.31983807682991,0.377885848283768,-0.868853092193604,-0.338877618312836,0.31237131357193,-0.88746041059494,-0.356453716754913,0.22632072865963,-0.906487464904785,-0.342988699674606,0.312997877597809,-0.885658502578735,-0.342201977968216,0.57621955871582,-0.742205262184143,-0.314837038516998,0.478343576192856,-0.819795668125153,-0.278348684310913,0.543727219104767,-0.791759133338928,-0.342201977968216,0.57621955871582,-0.742205262184143, +-0.411800593137741,0.531272113323212,-0.740385055541992,-0.364594429731369,0.488851338624954,-0.792524516582489,-0.52253133058548,0.498782128095627,-0.691503703594208,-0.484771013259888,0.424848824739456,-0.76452624797821,-0.411800593137741,0.531272113323212,-0.740385055541992,-0.762374818325043,-0.28863787651062,-0.579199969768524,-0.644588768482208,0.541783213615417,-0.53942197561264,-0.940951883792877,0.260915130376816,-0.21571446955204,-0.762374818325043,-0.28863787651062,-0.579199969768524,-0.937365531921387,0.13921982049942,-0.319317370653152,-0.857192933559418,-0.349070131778717,-0.378642529249191,-0.514056086540222,-0.197783499956131,-0.834642350673676,-0.508554756641388,-0.322577029466629,-0.798320710659027,-0.437761574983597,-0.225656762719154,-0.870312392711639,-0.440258145332336,-0.329571008682251,-0.835197925567627,-0.508554756641388,-0.322577029466629,-0.798320710659027,-0.449890613555908,-0.399316608905792,-0.798839509487152,-0.522940456867218,-0.240865737199783,-0.817628800868988,-0.595977425575256,-0.179554313421249,-0.782669246196747,-0.500646829605103,-0.158343181014061,-0.851046442985535,-0.514056086540222,-0.197783499956131,-0.834642350673676,-0.500646829605103,-0.158343181014061,-0.851046442985535,-0.54980456829071,-0.20352777838707,-0.810118019580841,-0.440258145332336,-0.329571008682251,-0.835197925567627,-0.449890613555908,-0.399316608905792,-0.798839509487152,-0.419867157936096,-0.335006356239319,-0.84349399805069,-0.419867157936096,-0.335006356239319,-0.84349399805069,-0.2832270860672,-0.333959609270096,-0.899029076099396,-0.392122954130173,-0.294570952653885,-0.871474266052246,-0.392122954130173,-0.294570952653885,-0.871474266052246,-0.345568418502808,-0.305597066879272,-0.88723886013031,-0.405952602624893,-0.299545586109161,-0.863408803939819,-0.612530052661896,-0.245720714330673,-0.751284301280975,-0.595977425575256,-0.179554313421249,-0.782669246196747,-0.522940456867218,-0.240865737199783,-0.817628800868988,-0.412333905696869,-0.259233385324478,-0.87337201833725,-0.405952602624893,-0.299545586109161,-0.863408803939819, +-0.320262908935547,-0.34529635310173,-0.882157623767853,-0.0413120128214359,-0.310537606477737,-0.949662923812866,0.0326130464673042,-0.34137436747551,-0.939361393451691,-0.0364181399345398,-0.279557079076767,-0.95943808555603,-0.320262908935547,-0.34529635310173,-0.882157623767853,-0.0810816064476967,-0.432158917188644,-0.898144960403442,-0.270963132381439,-0.316726595163345,-0.908990144729614,-0.0164644978940487,-0.415471345186234,-0.909457147121429,-0.150404050946236,-0.375380605459213,-0.914586186408997,-0.0810816064476967,-0.432158917188644,-0.898144960403442,-0.0164644978940487,-0.415471345186234,-0.909457147121429,0.0349652245640755,-0.351396948099136,-0.93557333946228,-0.0801679342985153,-0.356312602758408,-0.930921196937561,-0.0801679342985153,-0.356312602758408,-0.930921196937561,0.0349652245640755,-0.351396948099136,-0.93557333946228,-0.0481764264404774,-0.291733354330063,-0.955285608768463,-0.0413120128214359,-0.310537606477737,-0.949662923812866,-0.0364181399345398,-0.279557079076767,-0.95943808555603,-0.0481764264404774,-0.291733354330063,-0.955285608768463,-0.0377987250685692,-0.319107562303543,-0.946964383125305,-0.254744678735733,-0.366667717695236,-0.894795954227448,-0.0713118836283684,-0.384293675422668,-0.920452535152435,-0.0413120128214359,-0.310537606477737,-0.949662923812866,-0.0377987250685692,-0.319107562303543,-0.946964383125305,0.0326130464673042,-0.34137436747551,-0.939361393451691,-0.273004144430161,-0.468324780464172,-0.840321719646454,-0.254744678735733,-0.366667717695236,-0.894795954227448,-0.388722628355026,-0.497172772884369,-0.775702118873596,-0.273004144430161,-0.468324780464172,-0.840321719646454,-0.388722628355026,-0.497172772884369,-0.775702118873596,-0.466873705387115,-0.517709374427795,-0.716941952705383,-0.468044459819794,-0.361269891262054,-0.806485176086426,-0.546520531177521,-0.34550803899765,-0.762849450111389,-0.470683395862579,-0.338735222816467,-0.814687311649323,-0.484600633382797,-0.35612890124321,-0.798958241939545,-0.468044459819794,-0.361269891262054,-0.806485176086426, +-0.389995962381363,-0.354316920042038,-0.849919140338898,-0.417733281850815,-0.385603249073029,-0.822683930397034,-0.484600633382797,-0.35612890124321,-0.798958241939545,-0.389995962381363,-0.354316920042038,-0.849919140338898,-0.5619957447052,-0.356004148721695,-0.746606767177582,-0.546520531177521,-0.34550803899765,-0.762849450111389,-0.611979722976685,-0.37159675359726,-0.698137998580933,-0.19080676138401,-0.506123781204224,-0.841089367866516,-0.178575158119202,-0.452206969261169,-0.873853385448456,-0.204029604792595,-0.377666294574738,-0.903183221817017,-0.244801342487335,-0.467659682035446,-0.849333047866821,-0.19080676138401,-0.506123781204224,-0.841089367866516,-0.321511268615723,-0.408934265375137,-0.854050993919373,-0.159890562295914,-0.166754469275475,-0.972948014736176,-0.204029604792595,-0.377666294574738,-0.903183221817017,0.0716335400938988,0.0460454262793064,-0.996367573738098,-0.264031618833542,-0.428376942873001,-0.864164590835571,-0.401436358690262,-0.413082420825958,-0.817442119121552,-0.322284519672394,-0.404185056686401,-0.856018126010895,-0.264031618833542,-0.428376942873001,-0.864164590835571,-0.24965050816536,-0.435869127511978,-0.864692211151123,-0.320888936519623,-0.406474649906158,-0.855458080768585,-0.320888936519623,-0.406474649906158,-0.855458080768585,-0.24965050816536,-0.435869127511978,-0.864692211151123,-0.244801342487335,-0.467659682035446,-0.849333047866821,0.0716335400938988,0.0460454262793064,-0.996367573738098,0.0252595748752356,0.18456906080246,-0.982494831085205,-0.159890562295914,-0.166754469275475,-0.972948014736176,0.0252595748752356,0.18456906080246,-0.982494831085205,0.12447976320982,0.229076698422432,-0.965416252613068,0.0653253495693207,0.271906346082687,-0.960103869438171,-0.341091722249985,-0.342934340238571,-0.875244140625,-0.322284519672394,-0.404185056686401,-0.856018126010895,-0.417733281850815,-0.385603249073029,-0.822683930397034,-0.675247371196747,-0.397136390209198,-0.621549367904663,-0.617714941501617,-0.394058883190155,-0.680548071861267,-0.677470326423645,-0.377763688564301,-0.63113260269165, +-0.5619957447052,-0.356004148721695,-0.746606767177582,-0.611979722976685,-0.37159675359726,-0.698137998580933,-0.617714941501617,-0.394058883190155,-0.680548071861267,-0.716176211833954,-0.2941033244133,-0.632925510406494,-0.641013562679291,-0.336829513311386,-0.689671993255615,-0.72732001543045,-0.375844180583954,-0.574235618114471,-0.675247371196747,-0.397136390209198,-0.621549367904663,-0.72732001543045,-0.375844180583954,-0.574235618114471,-0.641013562679291,-0.336829513311386,-0.689671993255615,-0.502432942390442,-0.446883291006088,-0.740173161029816,-0.725380480289459,-0.427630811929703,-0.539402365684509,-0.466873705387115,-0.517709374427795,-0.716941952705383,-0.692781388759613,-0.2418113052845,-0.679397583007813,-0.725380480289459,-0.427630811929703,-0.539402365684509,-0.502432942390442,-0.446883291006088,-0.740173161029816,-0.692781388759613,-0.2418113052845,-0.679397583007813,-0.772338330745697,-0.058863390237093,-0.632478058338165,-0.857552707195282,-0.0828394144773483,-0.507681846618652,-0.857552707195282,-0.0828394144773483,-0.507681846618652,-0.86978679895401,0.0514388866722584,-0.490739077329636,-0.918603420257568,0.0567133538424969,-0.391089886426926,-0.910437524318695,0.187431320548058,-0.368745028972626,-0.951150417327881,0.0848149061203003,-0.296848833560944,-0.918603420257568,0.0567133538424969,-0.391089886426926,-0.861968278884888,-0.0664295554161072,-0.502590954303741,-0.899882256984711,0.0611213594675064,-0.431828647851944,-0.800420999526978,0.0686246901750565,-0.595497071743011,-0.662489831447601,-0.148764252662659,-0.734150111675262,-0.785047471523285,-0.191522836685181,-0.589083433151245,-0.724294066429138,-0.0223079156130552,-0.689130127429962,-0.716176211833954,-0.2941033244133,-0.632925510406494,-0.662489831447601,-0.148764252662659,-0.734150111675262,-0.596965670585632,-0.219040662050247,-0.771785616874695,-0.724294066429138,-0.0223079156130552,-0.689130127429962,-0.785047471523285,-0.191522836685181,-0.589083433151245,-0.759994506835938,-0.048678070306778,-0.648103773593903,-0.759994506835938,-0.048678070306778,-0.648103773593903, +-0.861968278884888,-0.0664295554161072,-0.502590954303741,-0.800420999526978,0.0686246901750565,-0.595497071743011,-0.899882256984711,0.0611213594675064,-0.431828647851944,-0.930936694145203,0.0944055989384651,-0.35276660323143,-0.829302966594696,0.20382285118103,-0.520300567150116,-0.880540788173676,0.267255216836929,-0.39143642783165,-0.930936694145203,0.0944055989384651,-0.35276660323143,-0.951150417327881,0.0848149061203003,-0.296848833560944,0.138947993516922,0.0195860378444195,-0.990105926990509,0.193073749542236,0.0709658712148666,-0.978614449501038,0.194640666246414,0.0822518989443779,-0.977419853210449,0.131345391273499,0.0953184068202972,-0.98674350976944,0.194640666246414,0.0822518989443779,-0.977419853210449,0.129056483507156,0.0935076251626015,-0.987218618392944,0.138947993516922,0.0195860378444195,-0.990105926990509,0.108368642628193,0.0333712324500084,-0.993550479412079,0.122733540832996,-0.00124290073290467,-0.992438852787018,0.177434310317039,0.128450736403465,-0.975713789463043,0.122733540832996,-0.00124290073290467,-0.992438852787018,0.0931055322289467,0.162509068846703,-0.982304453849792,0.0931055322289467,0.162509068846703,-0.982304453849792,0.12447976320982,0.229076698422432,-0.965416252613068,0.177434310317039,0.128450736403465,-0.975713789463043,-0.0109696900472045,0.138890355825424,-0.990246951580048,-0.0231192894279957,0.166160255670547,-0.985827684402466,0.129056483507156,0.0935076251626015,-0.987218618392944,-0.101454392075539,0.183892011642456,-0.977696597576141,-0.0109696900472045,0.138890355825424,-0.990246951580048,0.086953230202198,-0.249041989445686,-0.964581310749054,0.0122800199314952,-0.219115883111954,-0.975621402263641,-0.101454392075539,0.183892011642456,-0.977696597576141,0.086953230202198,-0.249041989445686,-0.964581310749054,-0.298933833837509,-0.34359472990036,-0.890270233154297,-0.179966792464256,-0.16630756855011,-0.969512045383453,-0.135134726762772,-0.766969919204712,-0.627292394638062,-0.179966792464256,-0.16630756855011,-0.969512045383453,0.0122800199314952,-0.219115883111954,-0.975621402263641, +0.0224629174917936,-0.761556148529053,-0.647709429264069,-0.300439089536667,-0.398137241601944,-0.8667311668396,-0.298933833837509,-0.34359472990036,-0.890270233154297,-0.0975367203354836,-0.909852921962738,-0.403303980827332,-0.422091066837311,-0.666740715503693,-0.614244043827057,-0.300439089536667,-0.398137241601944,-0.8667311668396,-0.131664723157883,-0.940042853355408,-0.314616680145264,-0.632832050323486,0.36867767572403,-0.680881917476654,-0.647423267364502,0.462016522884369,-0.606121838092804,-0.770202279090881,0.313256144523621,-0.555570721626282,-0.812371432781219,0.152749836444855,-0.562778830528259,-0.770202279090881,0.313256144523621,-0.555570721626282,-0.888289213180542,0.174162968993187,-0.424981594085693,-0.767533600330353,0.0266404096037149,-0.640454769134521,-0.864938855171204,0.091694675385952,-0.49342954158783,-0.865983545780182,-0.00982970278710127,-0.499975770711899,-0.812371432781219,0.152749836444855,-0.562778830528259,-0.888289213180542,0.174162968993187,-0.424981594085693,-0.864938855171204,0.091694675385952,-0.49342954158783,-0.865983545780182,-0.00982970278710127,-0.499975770711899,-0.781826138496399,-0.0754482075572014,-0.618914604187012,-0.767533600330353,0.0266404096037149,-0.640454769134521,-0.839598834514618,-0.150059267878532,-0.522068917751312,-0.712136447429657,-0.203407406806946,-0.671927750110626,-0.781826138496399,-0.0754482075572014,-0.618914604187012,-0.632832050323486,0.36867767572403,-0.680881917476654,-0.52253133058548,0.498782128095627,-0.691503703594208,-0.647423267364502,0.462016522884369,-0.606121838092804,-0.773737370967865,-0.221209809184074,-0.593630015850067,-0.712136447429657,-0.203407406806946,-0.671927750110626,-0.839598834514618,-0.150059267878532,-0.522068917751312,-0.773737370967865,-0.221209809184074,-0.593630015850067,-0.786470770835876,-0.190541192889214,-0.587501168251038,-0.683844387531281,-0.237955421209335,-0.689734697341919,-0.683844387531281,-0.237955421209335,-0.689734697341919,-0.720656991004944,-0.193176999688149,-0.665834784507751,-0.612530052661896,-0.245720714330673,-0.751284301280975, +-0.644588768482208,0.541783213615417,-0.53942197561264,-0.762374818325043,-0.28863787651062,-0.579199969768524,-0.283896058797836,0.345176696777344,-0.894570231437683,-0.230264604091644,-0.0299121607095003,-0.972668170928955,-0.356453716754913,0.22632072865963,-0.906487464904785,-0.238658770918846,0.249162405729294,-0.938594698905945,-0.342988699674606,0.312997877597809,-0.885658502578735,-0.318371951580048,0.309995859861374,-0.895846903324127,-0.31983807682991,0.377885848283768,-0.868853092193604,-0.274271726608276,0.409582704305649,-0.870067179203033,-0.278348684310913,0.543727219104767,-0.791759133338928,-0.314837038516998,0.478343576192856,-0.819795668125153,-0.31983807682991,0.377885848283768,-0.868853092193604,-0.318371951580048,0.309995859861374,-0.895846903324127,-0.274271726608276,0.409582704305649,-0.870067179203033,-0.342988699674606,0.312997877597809,-0.885658502578735,-0.356453716754913,0.22632072865963,-0.906487464904785,-0.349861145019531,0.0458319336175919,-0.935679733753204,-0.342201977968216,0.57621955871582,-0.742205262184143,-0.278348684310913,0.543727219104767,-0.791759133338928,-0.326850950717926,0.654034674167633,-0.682207405567169,-0.416753530502319,0.586041808128357,-0.694889426231384,-0.411800593137741,0.531272113323212,-0.740385055541992,-0.342201977968216,0.57621955871582,-0.742205262184143,-0.416753530502319,0.586041808128357,-0.694889426231384,-0.52253133058548,0.498782128095627,-0.691503703594208,-0.411800593137741,0.531272113323212,-0.740385055541992,-0.508554756641388,-0.322577029466629,-0.798320710659027,-0.514056086540222,-0.197783499956131,-0.834642350673676,-0.462596118450165,-0.373524248600006,-0.804042458534241,-0.508554756641388,-0.322577029466629,-0.798320710659027,-0.445047408342361,-0.45111358165741,-0.77358204126358,-0.449890613555908,-0.399316608905792,-0.798839509487152,-0.500646829605103,-0.158343181014061,-0.851046442985535,-0.595977425575256,-0.179554313421249,-0.782669246196747,-0.54980456829071,-0.20352777838707,-0.810118019580841,-0.462596118450165,-0.373524248600006,-0.804042458534241, +-0.514056086540222,-0.197783499956131,-0.834642350673676,-0.54980456829071,-0.20352777838707,-0.810118019580841,-0.275473415851593,-0.406819939613342,-0.870983242988586,-0.419867157936096,-0.335006356239319,-0.84349399805069,-0.449890613555908,-0.399316608905792,-0.798839509487152,-0.419867157936096,-0.335006356239319,-0.84349399805069,-0.275473415851593,-0.406819939613342,-0.870983242988586,-0.2832270860672,-0.333959609270096,-0.899029076099396,-0.2832270860672,-0.333959609270096,-0.899029076099396,-0.345568418502808,-0.305597066879272,-0.88723886013031,-0.392122954130173,-0.294570952653885,-0.871474266052246,-0.345568418502808,-0.305597066879272,-0.88723886013031,-0.320262908935547,-0.34529635310173,-0.882157623767853,-0.405952602624893,-0.299545586109161,-0.863408803939819,-0.612530052661896,-0.245720714330673,-0.751284301280975,-0.667959094047546,-0.258080363273621,-0.698015034198761,-0.595977425575256,-0.179554313421249,-0.782669246196747,-0.0810816064476967,-0.432158917188644,-0.898144960403442,-0.320262908935547,-0.34529635310173,-0.882157623767853,-0.140359401702881,-0.429708749055862,-0.891991913318634,-0.0164644978940487,-0.415471345186234,-0.909457147121429,-0.0810816064476967,-0.432158917188644,-0.898144960403442,0.0526674501597881,-0.469965755939484,-0.881111919879913,0.102121971547604,-0.432875245809555,-0.895650565624237,0.0349652245640755,-0.351396948099136,-0.93557333946228,-0.0164644978940487,-0.415471345186234,-0.909457147121429,0.0349652245640755,-0.351396948099136,-0.93557333946228,-0.0285044610500336,-0.299947917461395,-0.953529596328735,-0.0481764264404774,-0.291733354330063,-0.955285608768463,-0.0413120128214359,-0.310537606477737,-0.949662923812866,-0.0481764264404774,-0.291733354330063,-0.955285608768463,-0.0285044610500336,-0.299947917461395,-0.953529596328735,-0.254744678735733,-0.366667717695236,-0.894795954227448,-0.0377987250685692,-0.319107562303543,-0.946964383125305,-0.144043818116188,-0.199689090251923,-0.969213902950287,-0.0377987250685692,-0.319107562303543,-0.946964383125305,-0.0413120128214359,-0.310537606477737,-0.949662923812866, +0.0324667915701866,-0.308944672346115,-0.950525522232056,-0.254744678735733,-0.366667717695236,-0.894795954227448,-0.373894512653351,-0.354451060295105,-0.857068955898285,-0.388722628355026,-0.497172772884369,-0.775702118873596,-0.502432942390442,-0.446883291006088,-0.740173161029816,-0.466873705387115,-0.517709374427795,-0.716941952705383,-0.388722628355026,-0.497172772884369,-0.775702118873596,-0.5619957447052,-0.356004148721695,-0.746606767177582,-0.470683395862579,-0.338735222816467,-0.814687311649323,-0.546520531177521,-0.34550803899765,-0.762849450111389,-0.468044459819794,-0.361269891262054,-0.806485176086426,-0.470683395862579,-0.338735222816467,-0.814687311649323,-0.386344701051712,-0.360655069351196,-0.848920226097107,-0.386344701051712,-0.360655069351196,-0.848920226097107,-0.389995962381363,-0.354316920042038,-0.849919140338898,-0.468044459819794,-0.361269891262054,-0.806485176086426,-0.417733281850815,-0.385603249073029,-0.822683930397034,-0.389995962381363,-0.354316920042038,-0.849919140338898,-0.341091722249985,-0.342934340238571,-0.875244140625,-0.19080676138401,-0.506123781204224,-0.841089367866516,-0.0440878681838512,-0.364459037780762,-0.930175125598907,-0.178575158119202,-0.452206969261169,-0.873853385448456,-0.0485636405646801,-0.22188925743103,-0.973861753940582,-0.204029604792595,-0.377666294574738,-0.903183221817017,-0.178575158119202,-0.452206969261169,-0.873853385448456,-0.146691545844078,-0.515169203281403,-0.844441890716553,-0.19080676138401,-0.506123781204224,-0.841089367866516,-0.244801342487335,-0.467659682035446,-0.849333047866821,-0.0485636405646801,-0.22188925743103,-0.973861753940582,0.0716335400938988,0.0460454262793064,-0.996367573738098,-0.204029604792595,-0.377666294574738,-0.903183221817017,-0.264031618833542,-0.428376942873001,-0.864164590835571,-0.322284519672394,-0.404185056686401,-0.856018126010895,-0.22501577436924,-0.398930311203003,-0.888944506645203,-0.264031618833542,-0.428376942873001,-0.864164590835571,-0.146342292428017,-0.450124770402908,-0.88089245557785,-0.24965050816536,-0.435869127511978,-0.864692211151123, +-0.146342292428017,-0.450124770402908,-0.88089245557785,-0.244801342487335,-0.467659682035446,-0.849333047866821,-0.24965050816536,-0.435869127511978,-0.864692211151123,0.12447976320982,0.229076698422432,-0.965416252613068,0.0252595748752356,0.18456906080246,-0.982494831085205,0.0716335400938988,0.0460454262793064,-0.996367573738098,-0.204784870147705,-0.296622067689896,-0.932779967784882,-0.322284519672394,-0.404185056686401,-0.856018126010895,-0.341091722249985,-0.342934340238571,-0.875244140625,-0.641013562679291,-0.336829513311386,-0.689671993255615,-0.617714941501617,-0.394058883190155,-0.680548071861267,-0.675247371196747,-0.397136390209198,-0.621549367904663,-0.5619957447052,-0.356004148721695,-0.746606767177582,-0.617714941501617,-0.394058883190155,-0.680548071861267,-0.641013562679291,-0.336829513311386,-0.689671993255615,-0.716176211833954,-0.2941033244133,-0.632925510406494,-0.596965670585632,-0.219040662050247,-0.771785616874695,-0.641013562679291,-0.336829513311386,-0.689671993255615,-0.400371819734573,-0.190955832600594,-0.896235585212708,-0.692781388759613,-0.2418113052845,-0.679397583007813,-0.502432942390442,-0.446883291006088,-0.740173161029816,-0.692781388759613,-0.2418113052845,-0.679397583007813,-0.603766977787018,-0.170708507299423,-0.77866804599762,-0.772338330745697,-0.058863390237093,-0.632478058338165,-0.857552707195282,-0.0828394144773483,-0.507681846618652,-0.772338330745697,-0.058863390237093,-0.632478058338165,-0.86978679895401,0.0514388866722584,-0.490739077329636,-0.918603420257568,0.0567133538424969,-0.391089886426926,-0.86978679895401,0.0514388866722584,-0.490739077329636,-0.910437524318695,0.187431320548058,-0.368745028972626,-0.880540788173676,0.267255216836929,-0.39143642783165,-0.951150417327881,0.0848149061203003,-0.296848833560944,-0.910437524318695,0.187431320548058,-0.368745028972626,-0.899882256984711,0.0611213594675064,-0.431828647851944,-0.823623180389404,0.155752882361412,-0.545330822467804,-0.800420999526978,0.0686246901750565,-0.595497071743011,-0.65686446428299,-0.0788591355085373,-0.749873399734497, +-0.662489831447601,-0.148764252662659,-0.734150111675262,-0.724294066429138,-0.0223079156130552,-0.689130127429962,-0.596965670585632,-0.219040662050247,-0.771785616874695,-0.662489831447601,-0.148764252662659,-0.734150111675262,-0.557266473770142,-0.105129763484001,-0.823651432991028,-0.759994506835938,-0.048678070306778,-0.648103773593903,-0.800420999526978,0.0686246901750565,-0.595497071743011,-0.724294066429138,-0.0223079156130552,-0.689130127429962,-0.829302966594696,0.20382285118103,-0.520300567150116,-0.930936694145203,0.0944055989384651,-0.35276660323143,-0.880540788173676,0.267255216836929,-0.39143642783165,-0.829302966594696,0.20382285118103,-0.520300567150116,-0.823623180389404,0.155752882361412,-0.545330822467804,-0.899882256984711,0.0611213594675064,-0.431828647851944,0.193073749542236,0.0709658712148666,-0.978614449501038,0.138947993516922,0.0195860378444195,-0.990105926990509,0.166628435254097,0.00462835328653455,-0.986008882522583,0.193073749542236,0.0709658712148666,-0.978614449501038,0.200829371809959,0.0272610150277615,-0.97924679517746,0.194640666246414,0.0822518989443779,-0.977419853210449,0.129056483507156,0.0935076251626015,-0.987218618392944,0.194640666246414,0.0822518989443779,-0.977419853210449,0.218870893120766,-0.0266100205481052,-0.975390911102295,0.138947993516922,0.0195860378444195,-0.990105926990509,0.122733540832996,-0.00124290073290467,-0.992438852787018,0.166628435254097,0.00462835328653455,-0.986008882522583,0.177434310317039,0.128450736403465,-0.975713789463043,0.217150941491127,-0.019330907613039,-0.975946545600891,0.122733540832996,-0.00124290073290467,-0.992438852787018,0.12447976320982,0.229076698422432,-0.965416252613068,0.0716335400938988,0.0460454262793064,-0.996367573738098,0.177434310317039,0.128450736403465,-0.975713789463043,-0.0109696900472045,0.138890355825424,-0.990246951580048,0.129056483507156,0.0935076251626015,-0.987218618392944,0.086953230202198,-0.249041989445686,-0.964581310749054,0.0122800199314952,-0.219115883111954,-0.975621402263641,0.086953230202198,-0.249041989445686,-0.964581310749054, +0.0621635727584362,-0.858838558197021,-0.508460283279419,-0.135134726762772,-0.766969919204712,-0.627292394638062,-0.179966792464256,-0.16630756855011,-0.969512045383453,0.0224629174917936,-0.761556148529053,-0.647709429264069,-0.298933833837509,-0.34359472990036,-0.890270233154297,-0.135134726762772,-0.766969919204712,-0.627292394638062,-0.0975367203354836,-0.909852921962738,-0.403303980827332,0.0224629174917936,-0.761556148529053,-0.647709429264069,0.0122800199314952,-0.219115883111954,-0.975621402263641,0.0621635727584362,-0.858838558197021,-0.508460283279419,-0.0975367203354836,-0.909852921962738,-0.403303980827332,-0.131664723157883,-0.940042853355408,-0.314616680145264,-0.300439089536667,-0.398137241601944,-0.8667311668396,-0.704134881496429,0.519202530384064,-0.484378755092621,-0.770202279090881,0.313256144523621,-0.555570721626282,-0.647423267364502,0.462016522884369,-0.606121838092804,-0.888289213180542,0.174162968993187,-0.424981594085693,-0.770202279090881,0.313256144523621,-0.555570721626282,-0.843243300914764,0.348182439804077,-0.409523606300354,-0.865983545780182,-0.00982970278710127,-0.499975770711899,-0.864938855171204,0.091694675385952,-0.49342954158783,-0.90817791223526,0.0787967666983604,-0.411100506782532,-0.864938855171204,0.091694675385952,-0.49342954158783,-0.888289213180542,0.174162968993187,-0.424981594085693,-0.90817791223526,0.0787967666983604,-0.411100506782532,-0.839598834514618,-0.150059267878532,-0.522068917751312,-0.781826138496399,-0.0754482075572014,-0.618914604187012,-0.865983545780182,-0.00982970278710127,-0.499975770711899,-0.520459890365601,0.61777251958847,-0.589473128318787,-0.647423267364502,0.462016522884369,-0.606121838092804,-0.52253133058548,0.498782128095627,-0.691503703594208,-0.839598834514618,-0.150059267878532,-0.522068917751312,-0.861806094646454,-0.209738418459892,-0.461843997240067,-0.773737370967865,-0.221209809184074,-0.593630015850067,-0.773737370967865,-0.221209809184074,-0.593630015850067,-0.861806094646454,-0.209738418459892,-0.461843997240067,-0.786470770835876,-0.190541192889214,-0.587501168251038, +-0.683844387531281,-0.237955421209335,-0.689734697341919,-0.786470770835876,-0.190541192889214,-0.587501168251038,-0.720656991004944,-0.193176999688149,-0.665834784507751,-0.720656991004944,-0.193176999688149,-0.665834784507751,-0.667959094047546,-0.258080363273621,-0.698015034198761,-0.612530052661896,-0.245720714330673,-0.751284301280975,-0.342988699674606,0.312997877597809,-0.885658502578735,-0.351827353239059,0.247008845210075,-0.902886509895325,-0.318371951580048,0.309995859861374,-0.895846903324127,-0.276531517505646,0.460387170314789,-0.843548357486725,-0.278348684310913,0.543727219104767,-0.791759133338928,-0.274271726608276,0.409582704305649,-0.870067179203033,-0.318371951580048,0.309995859861374,-0.895846903324127,-0.306641757488251,0.318955034017563,-0.896793365478516,-0.274271726608276,0.409582704305649,-0.870067179203033,-0.351827353239059,0.247008845210075,-0.902886509895325,-0.342988699674606,0.312997877597809,-0.885658502578735,-0.349861145019531,0.0458319336175919,-0.935679733753204,-0.326850950717926,0.654034674167633,-0.682207405567169,-0.278348684310913,0.543727219104767,-0.791759133338928,-0.299390196800232,0.603561401367188,-0.738971650600433,-0.342201977968216,0.57621955871582,-0.742205262184143,-0.326850950717926,0.654034674167633,-0.682207405567169,-0.382738053798676,0.661181569099426,-0.645252168178558,-0.416753530502319,0.586041808128357,-0.694889426231384,-0.342201977968216,0.57621955871582,-0.742205262184143,-0.382738053798676,0.661181569099426,-0.645252168178558,-0.520459890365601,0.61777251958847,-0.589473128318787,-0.52253133058548,0.498782128095627,-0.691503703594208,-0.416753530502319,0.586041808128357,-0.694889426231384,-0.445047408342361,-0.45111358165741,-0.77358204126358,-0.508554756641388,-0.322577029466629,-0.798320710659027,-0.462596118450165,-0.373524248600006,-0.804042458534241,-0.445047408342361,-0.45111358165741,-0.77358204126358,-0.288917899131775,-0.514691650867462,-0.807229042053223,-0.449890613555908,-0.399316608905792,-0.798839509487152,-0.54980456829071,-0.20352777838707,-0.810118019580841, +-0.595977425575256,-0.179554313421249,-0.782669246196747,-0.667959094047546,-0.258080363273621,-0.698015034198761,-0.420771986246109,-0.44057422876358,-0.792997598648071,-0.462596118450165,-0.373524248600006,-0.804042458534241,-0.54980456829071,-0.20352777838707,-0.810118019580841,-0.275473415851593,-0.406819939613342,-0.870983242988586,-0.449890613555908,-0.399316608905792,-0.798839509487152,-0.288917899131775,-0.514691650867462,-0.807229042053223,-0.0636266842484474,-0.41273632645607,-0.908625483512878,-0.2832270860672,-0.333959609270096,-0.899029076099396,-0.275473415851593,-0.406819939613342,-0.870983242988586,-0.2832270860672,-0.333959609270096,-0.899029076099396,-0.140494927763939,-0.423880100250244,-0.894755125045776,-0.345568418502808,-0.305597066879272,-0.88723886013031,-0.345568418502808,-0.305597066879272,-0.88723886013031,-0.218141451478004,-0.411404103040695,-0.884963750839233,-0.320262908935547,-0.34529635310173,-0.882157623767853,-0.218141451478004,-0.411404103040695,-0.884963750839233,-0.140359401702881,-0.429708749055862,-0.891991913318634,-0.320262908935547,-0.34529635310173,-0.882157623767853,-0.0810816064476967,-0.432158917188644,-0.898144960403442,-0.140359401702881,-0.429708749055862,-0.891991913318634,-0.0314796641469002,-0.48737296462059,-0.872626185417175,-0.0314796641469002,-0.48737296462059,-0.872626185417175,0.0526674501597881,-0.469965755939484,-0.881111919879913,-0.0810816064476967,-0.432158917188644,-0.898144960403442,0.0526674501597881,-0.469965755939484,-0.881111919879913,0.102121971547604,-0.432875245809555,-0.895650565624237,-0.0164644978940487,-0.415471345186234,-0.909457147121429,0.102121971547604,-0.432875245809555,-0.895650565624237,0.143722042441368,-0.385757982730865,-0.911336719989777,0.0349652245640755,-0.351396948099136,-0.93557333946228,0.0324667915701866,-0.308944672346115,-0.950525522232056,-0.0285044610500336,-0.299947917461395,-0.953529596328735,0.0349652245640755,-0.351396948099136,-0.93557333946228,0.0324667915701866,-0.308944672346115,-0.950525522232056,-0.0413120128214359,-0.310537606477737,-0.949662923812866, +-0.0285044610500336,-0.299947917461395,-0.953529596328735,-0.0377987250685692,-0.319107562303543,-0.946964383125305,-0.0154617121443152,-0.192800477147102,-0.981116116046906,-0.144043818116188,-0.199689090251923,-0.969213902950287,-0.144043818116188,-0.199689090251923,-0.969213902950287,-0.265234917402267,-0.220446556806564,-0.938644587993622,-0.254744678735733,-0.366667717695236,-0.894795954227448,-0.0377987250685692,-0.319107562303543,-0.946964383125305,0.0324667915701866,-0.308944672346115,-0.950525522232056,-0.0154617121443152,-0.192800477147102,-0.981116116046906,-0.28833481669426,-0.15749354660511,-0.94448858499527,-0.373894512653351,-0.354451060295105,-0.857068955898285,-0.254744678735733,-0.366667717695236,-0.894795954227448,-0.373894512653351,-0.354451060295105,-0.857068955898285,-0.502432942390442,-0.446883291006088,-0.740173161029816,-0.388722628355026,-0.497172772884369,-0.775702118873596,-0.5619957447052,-0.356004148721695,-0.746606767177582,-0.518859505653381,-0.264353483915329,-0.812958717346191,-0.470683395862579,-0.338735222816467,-0.814687311649323,-0.470683395862579,-0.338735222816467,-0.814687311649323,-0.325855165719986,-0.298347681760788,-0.897110342979431,-0.386344701051712,-0.360655069351196,-0.848920226097107,-0.386344701051712,-0.360655069351196,-0.848920226097107,-0.265516757965088,-0.35413321852684,-0.896710872650146,-0.389995962381363,-0.354316920042038,-0.849919140338898,-0.389995962381363,-0.354316920042038,-0.849919140338898,-0.263016551733017,-0.32181903719902,-0.90953540802002,-0.341091722249985,-0.342934340238571,-0.875244140625,-0.0222223624587059,-0.477812319993973,-0.878180801868439,-0.0440878681838512,-0.364459037780762,-0.930175125598907,-0.19080676138401,-0.506123781204224,-0.841089367866516,-0.0485636405646801,-0.22188925743103,-0.973861753940582,-0.178575158119202,-0.452206969261169,-0.873853385448456,-0.0440878681838512,-0.364459037780762,-0.930175125598907,-0.146691545844078,-0.515169203281403,-0.844441890716553,-0.114777162671089,-0.583899617195129,-0.80367112159729,-0.19080676138401,-0.506123781204224,-0.841089367866516, +-0.146342292428017,-0.450124770402908,-0.88089245557785,-0.146691545844078,-0.515169203281403,-0.844441890716553,-0.244801342487335,-0.467659682035446,-0.849333047866821,0.0942559093236923,0.0348977632820606,-0.994936108589172,0.0716335400938988,0.0460454262793064,-0.996367573738098,-0.0485636405646801,-0.22188925743103,-0.973861753940582,-0.22501577436924,-0.398930311203003,-0.888944506645203,-0.322284519672394,-0.404185056686401,-0.856018126010895,-0.204784870147705,-0.296622067689896,-0.932779967784882,-0.264031618833542,-0.428376942873001,-0.864164590835571,-0.22501577436924,-0.398930311203003,-0.888944506645203,-0.125269755721092,-0.387642979621887,-0.913258075714111,-0.146342292428017,-0.450124770402908,-0.88089245557785,-0.264031618833542,-0.428376942873001,-0.864164590835571,-0.125269755721092,-0.387642979621887,-0.913258075714111,-0.263016551733017,-0.32181903719902,-0.90953540802002,-0.204784870147705,-0.296622067689896,-0.932779967784882,-0.341091722249985,-0.342934340238571,-0.875244140625,-0.641013562679291,-0.336829513311386,-0.689671993255615,-0.571921050548553,-0.293924391269684,-0.765842378139496,-0.5619957447052,-0.356004148721695,-0.746606767177582,-0.596965670585632,-0.219040662050247,-0.771785616874695,-0.571921050548553,-0.293924391269684,-0.765842378139496,-0.641013562679291,-0.336829513311386,-0.689671993255615,-0.692781388759613,-0.2418113052845,-0.679397583007813,-0.400371819734573,-0.190955832600594,-0.896235585212708,-0.603766977787018,-0.170708507299423,-0.77866804599762,-0.373894512653351,-0.354451060295105,-0.857068955898285,-0.400371819734573,-0.190955832600594,-0.896235585212708,-0.502432942390442,-0.446883291006088,-0.740173161029816,-0.603766977787018,-0.170708507299423,-0.77866804599762,-0.697298526763916,-0.17324760556221,-0.695528507232666,-0.772338330745697,-0.058863390237093,-0.632478058338165,-0.799167394638062,0.129582270979881,-0.58697509765625,-0.86978679895401,0.0514388866722584,-0.490739077329636,-0.772338330745697,-0.058863390237093,-0.632478058338165,-0.910437524318695,0.187431320548058,-0.368745028972626, +-0.86978679895401,0.0514388866722584,-0.490739077329636,-0.799167394638062,0.129582270979881,-0.58697509765625,-0.880540788173676,0.267255216836929,-0.39143642783165,-0.910437524318695,0.187431320548058,-0.368745028972626,-0.86150336265564,0.372870594263077,-0.344643831253052,-0.81542980670929,0.128665640950203,-0.564375162124634,-0.800420999526978,0.0686246901750565,-0.595497071743011,-0.823623180389404,0.155752882361412,-0.545330822467804,-0.65686446428299,-0.0788591355085373,-0.749873399734497,-0.572504580020905,-0.109878256917,-0.812505483627319,-0.662489831447601,-0.148764252662659,-0.734150111675262,-0.724294066429138,-0.0223079156130552,-0.689130127429962,-0.769016623497009,0.0258189346641302,-0.638706982135773,-0.65686446428299,-0.0788591355085373,-0.749873399734497,-0.572504580020905,-0.109878256917,-0.812505483627319,-0.557266473770142,-0.105129763484001,-0.823651432991028,-0.662489831447601,-0.148764252662659,-0.734150111675262,-0.557266473770142,-0.105129763484001,-0.823651432991028,-0.500515401363373,-0.144361302256584,-0.853606462478638,-0.596965670585632,-0.219040662050247,-0.771785616874695,-0.81542980670929,0.128665640950203,-0.564375162124634,-0.724294066429138,-0.0223079156130552,-0.689130127429962,-0.800420999526978,0.0686246901750565,-0.595497071743011,-0.829302966594696,0.20382285118103,-0.520300567150116,-0.880540788173676,0.267255216836929,-0.39143642783165,-0.828288674354553,0.274377077817917,-0.488523334264755,-0.829302966594696,0.20382285118103,-0.520300567150116,-0.813234448432922,0.213219940662384,-0.541467308998108,-0.823623180389404,0.155752882361412,-0.545330822467804,0.193073749542236,0.0709658712148666,-0.978614449501038,0.166628435254097,0.00462835328653455,-0.986008882522583,0.268094033002853,-0.280555307865143,-0.921636700630188,0.200829371809959,0.0272610150277615,-0.97924679517746,0.193073749542236,0.0709658712148666,-0.978614449501038,0.268094033002853,-0.280555307865143,-0.921636700630188,0.210640445351601,0.0624849386513233,-0.975564479827881,0.194640666246414,0.0822518989443779,-0.977419853210449, +0.200829371809959,0.0272610150277615,-0.97924679517746,0.218870893120766,-0.0266100205481052,-0.975390911102295,0.194640666246414,0.0822518989443779,-0.977419853210449,0.210640445351601,0.0624849386513233,-0.975564479827881,0.122116506099701,-0.257380098104477,-0.958562970161438,0.129056483507156,0.0935076251626015,-0.987218618392944,0.218870893120766,-0.0266100205481052,-0.975390911102295,0.228898495435715,-0.277976989746094,-0.93291699886322,0.166628435254097,0.00462835328653455,-0.986008882522583,0.122733540832996,-0.00124290073290467,-0.992438852787018,0.223087131977081,0.105007097125053,-0.969126164913177,0.217150941491127,-0.019330907613039,-0.975946545600891,0.177434310317039,0.128450736403465,-0.975713789463043,0.196610108017921,-0.0717840865254402,-0.977850377559662,0.122733540832996,-0.00124290073290467,-0.992438852787018,0.217150941491127,-0.019330907613039,-0.975946545600891,0.223087131977081,0.105007097125053,-0.969126164913177,0.177434310317039,0.128450736403465,-0.975713789463043,0.0716335400938988,0.0460454262793064,-0.996367573738098,0.086953230202198,-0.249041989445686,-0.964581310749054,0.129056483507156,0.0935076251626015,-0.987218618392944,0.122116506099701,-0.257380098104477,-0.958562970161438,0.00572602171450853,-0.780423045158386,-0.625225484371185,0.0621635727584362,-0.858838558197021,-0.508460283279419,0.086953230202198,-0.249041989445686,-0.964581310749054,-0.135134726762772,-0.766969919204712,-0.627292394638062,0.0224629174917936,-0.761556148529053,-0.647709429264069,-0.0171088427305222,-0.982673048973084,-0.184555768966675,-0.0171088427305222,-0.982673048973084,-0.184555768966675,-0.0975367203354836,-0.909852921962738,-0.403303980827332,-0.135134726762772,-0.766969919204712,-0.627292394638062,0.0224629174917936,-0.761556148529053,-0.647709429264069,0.0621635727584362,-0.858838558197021,-0.508460283279419,-0.0171088427305222,-0.982673048973084,-0.184555768966675,-0.843243300914764,0.348182439804077,-0.409523606300354,-0.770202279090881,0.313256144523621,-0.555570721626282,-0.704134881496429,0.519202530384064,-0.484378755092621, +-0.704134881496429,0.519202530384064,-0.484378755092621,-0.647423267364502,0.462016522884369,-0.606121838092804,-0.520459890365601,0.61777251958847,-0.589473128318787,-0.843243300914764,0.348182439804077,-0.409523606300354,-0.935714721679688,0.200165763497353,-0.290467381477356,-0.888289213180542,0.174162968993187,-0.424981594085693,-0.865983545780182,-0.00982970278710127,-0.499975770711899,-0.90817791223526,0.0787967666983604,-0.411100506782532,-0.905496656894684,-0.0314723514020443,-0.423184514045715,-0.940976023674011,0.117897182703018,-0.317276418209076,-0.90817791223526,0.0787967666983604,-0.411100506782532,-0.888289213180542,0.174162968993187,-0.424981594085693,-0.905496656894684,-0.0314723514020443,-0.423184514045715,-0.839598834514618,-0.150059267878532,-0.522068917751312,-0.865983545780182,-0.00982970278710127,-0.499975770711899,-0.839598834514618,-0.150059267878532,-0.522068917751312,-0.900045454502106,-0.165011122822762,-0.403347820043564,-0.861806094646454,-0.209738418459892,-0.461843997240067,-0.861806094646454,-0.209738418459892,-0.461843997240067,-0.827447950839996,-0.276551961898804,-0.488721579313278,-0.786470770835876,-0.190541192889214,-0.587501168251038,-0.720656991004944,-0.193176999688149,-0.665834784507751,-0.786470770835876,-0.190541192889214,-0.587501168251038,-0.733160793781281,-0.228178858757019,-0.640632152557373,-0.667959094047546,-0.258080363273621,-0.698015034198761,-0.720656991004944,-0.193176999688149,-0.665834784507751,-0.733160793781281,-0.228178858757019,-0.640632152557373,-0.318371951580048,0.309995859861374,-0.895846903324127,-0.351827353239059,0.247008845210075,-0.902886509895325,-0.339164316654205,0.24343267083168,-0.908684730529785,-0.276531517505646,0.460387170314789,-0.843548357486725,-0.299390196800232,0.603561401367188,-0.738971650600433,-0.278348684310913,0.543727219104767,-0.791759133338928,-0.276531517505646,0.460387170314789,-0.843548357486725,-0.274271726608276,0.409582704305649,-0.870067179203033,-0.306641757488251,0.318955034017563,-0.896793365478516,-0.318371951580048,0.309995859861374,-0.895846903324127, +-0.339164316654205,0.24343267083168,-0.908684730529785,-0.306641757488251,0.318955034017563,-0.896793365478516,-0.326850950717926,0.654034674167633,-0.682207405567169,-0.299390196800232,0.603561401367188,-0.738971650600433,-0.337864845991135,0.704746961593628,-0.623842000961304,-0.382738053798676,0.661181569099426,-0.645252168178558,-0.326850950717926,0.654034674167633,-0.682207405567169,-0.380788147449493,0.733650207519531,-0.562812268733978,-0.416753530502319,0.586041808128357,-0.694889426231384,-0.382738053798676,0.661181569099426,-0.645252168178558,-0.520459890365601,0.61777251958847,-0.589473128318787,-0.445047408342361,-0.45111358165741,-0.77358204126358,-0.462596118450165,-0.373524248600006,-0.804042458534241,-0.320356875658035,-0.542375266551971,-0.776659786701202,-0.445047408342361,-0.45111358165741,-0.77358204126358,-0.320356875658035,-0.542375266551971,-0.776659786701202,-0.288917899131775,-0.514691650867462,-0.807229042053223,-0.54980456829071,-0.20352777838707,-0.810118019580841,-0.667959094047546,-0.258080363273621,-0.698015034198761,-0.476451873779297,-0.475863575935364,-0.73928838968277,-0.420771986246109,-0.44057422876358,-0.792997598648071,-0.26153638958931,-0.598311245441437,-0.75737851858139,-0.462596118450165,-0.373524248600006,-0.804042458534241,-0.420771986246109,-0.44057422876358,-0.792997598648071,-0.54980456829071,-0.20352777838707,-0.810118019580841,-0.476451873779297,-0.475863575935364,-0.73928838968277,-0.288917899131775,-0.514691650867462,-0.807229042053223,-0.0958615466952324,-0.491611450910568,-0.865522146224976,-0.275473415851593,-0.406819939613342,-0.870983242988586,-0.2832270860672,-0.333959609270096,-0.899029076099396,-0.0636266842484474,-0.41273632645607,-0.908625483512878,-0.140494927763939,-0.423880100250244,-0.894755125045776,-0.0636266842484474,-0.41273632645607,-0.908625483512878,-0.275473415851593,-0.406819939613342,-0.870983242988586,-0.0958615466952324,-0.491611450910568,-0.865522146224976,-0.218141451478004,-0.411404103040695,-0.884963750839233,-0.345568418502808,-0.305597066879272,-0.88723886013031, +-0.140494927763939,-0.423880100250244,-0.894755125045776,-0.218141451478004,-0.411404103040695,-0.884963750839233,-0.0314796641469002,-0.48737296462059,-0.872626185417175,-0.140359401702881,-0.429708749055862,-0.891991913318634,-0.0314796641469002,-0.48737296462059,-0.872626185417175,0.104125693440437,-0.526333689689636,-0.843878269195557,0.0526674501597881,-0.469965755939484,-0.881111919879913,0.114675775170326,-0.457287669181824,-0.881894171237946,0.102121971547604,-0.432875245809555,-0.895650565624237,0.0526674501597881,-0.469965755939484,-0.881111919879913,0.163971468806267,-0.391687959432602,-0.905369400978088,0.143722042441368,-0.385757982730865,-0.911336719989777,0.102121971547604,-0.432875245809555,-0.895650565624237,0.0349652245640755,-0.351396948099136,-0.93557333946228,0.143722042441368,-0.385757982730865,-0.911336719989777,0.0324667915701866,-0.308944672346115,-0.950525522232056,-0.0254711881279945,-0.191700100898743,-0.98112291097641,-0.144043818116188,-0.199689090251923,-0.969213902950287,-0.0154617121443152,-0.192800477147102,-0.981116116046906,-0.144043818116188,-0.199689090251923,-0.969213902950287,-0.25286078453064,-0.165869474411011,-0.95317816734314,-0.265234917402267,-0.220446556806564,-0.938644587993622,-0.28833481669426,-0.15749354660511,-0.94448858499527,-0.254744678735733,-0.366667717695236,-0.894795954227448,-0.265234917402267,-0.220446556806564,-0.938644587993622,0.0752171501517296,-0.190575927495956,-0.978786528110504,-0.0154617121443152,-0.192800477147102,-0.981116116046906,0.0324667915701866,-0.308944672346115,-0.950525522232056,-0.373894512653351,-0.354451060295105,-0.857068955898285,-0.28833481669426,-0.15749354660511,-0.94448858499527,-0.400371819734573,-0.190955832600594,-0.896235585212708,-0.518859505653381,-0.264353483915329,-0.812958717346191,-0.5619957447052,-0.356004148721695,-0.746606767177582,-0.571921050548553,-0.293924391269684,-0.765842378139496,-0.518859505653381,-0.264353483915329,-0.812958717346191,-0.401483088731766,-0.235938102006912,-0.884954512119293,-0.470683395862579,-0.338735222816467,-0.814687311649323, +-0.470683395862579,-0.338735222816467,-0.814687311649323,-0.401483088731766,-0.235938102006912,-0.884954512119293,-0.325855165719986,-0.298347681760788,-0.897110342979431,-0.325855165719986,-0.298347681760788,-0.897110342979431,-0.265516757965088,-0.35413321852684,-0.896710872650146,-0.386344701051712,-0.360655069351196,-0.848920226097107,-0.263016551733017,-0.32181903719902,-0.90953540802002,-0.389995962381363,-0.354316920042038,-0.849919140338898,-0.265516757965088,-0.35413321852684,-0.896710872650146,-0.0222223624587059,-0.477812319993973,-0.878180801868439,0.164749816060066,-0.180806919932365,-0.969621598720551,-0.0440878681838512,-0.364459037780762,-0.930175125598907,-0.114777162671089,-0.583899617195129,-0.80367112159729,-0.0222223624587059,-0.477812319993973,-0.878180801868439,-0.19080676138401,-0.506123781204224,-0.841089367866516,-0.0485636405646801,-0.22188925743103,-0.973861753940582,-0.0440878681838512,-0.364459037780762,-0.930175125598907,0.142449393868446,-0.0454128347337246,-0.988759696483612,-0.146691545844078,-0.515169203281403,-0.844441890716553,-0.0339294895529747,-0.575830817222595,-0.816864490509033,-0.114777162671089,-0.583899617195129,-0.80367112159729,-0.146691545844078,-0.515169203281403,-0.844441890716553,-0.146342292428017,-0.450124770402908,-0.88089245557785,-0.028219148516655,-0.467500180006027,-0.883542358875275,0.223087131977081,0.105007097125053,-0.969126164913177,0.0716335400938988,0.0460454262793064,-0.996367573738098,0.0942559093236923,0.0348977632820606,-0.994936108589172,0.142449393868446,-0.0454128347337246,-0.988759696483612,0.0942559093236923,0.0348977632820606,-0.994936108589172,-0.0485636405646801,-0.22188925743103,-0.973861753940582,-0.22501577436924,-0.398930311203003,-0.888944506645203,-0.204784870147705,-0.296622067689896,-0.932779967784882,-0.125269755721092,-0.387642979621887,-0.913258075714111,-0.146342292428017,-0.450124770402908,-0.88089245557785,-0.125269755721092,-0.387642979621887,-0.913258075714111,-0.0316658467054367,-0.43362021446228,-0.900539100170136,-0.177796214818954,-0.277152329683304,-0.944232523441315, +-0.204784870147705,-0.296622067689896,-0.932779967784882,-0.263016551733017,-0.32181903719902,-0.90953540802002,-0.596965670585632,-0.219040662050247,-0.771785616874695,-0.518859505653381,-0.264353483915329,-0.812958717346191,-0.571921050548553,-0.293924391269684,-0.765842378139496,-0.603766977787018,-0.170708507299423,-0.77866804599762,-0.400371819734573,-0.190955832600594,-0.896235585212708,-0.37008997797966,-0.129758477210999,-0.919889152050018,-0.697298526763916,-0.17324760556221,-0.695528507232666,-0.603766977787018,-0.170708507299423,-0.77866804599762,-0.60977703332901,-0.300599038600922,-0.733356654644012,-0.636663794517517,-0.0796984061598778,-0.767011880874634,-0.772338330745697,-0.058863390237093,-0.632478058338165,-0.697298526763916,-0.17324760556221,-0.695528507232666,-0.799167394638062,0.129582270979881,-0.58697509765625,-0.772338330745697,-0.058863390237093,-0.632478058338165,-0.636663794517517,-0.0796984061598778,-0.767011880874634,-0.910437524318695,0.187431320548058,-0.368745028972626,-0.799167394638062,0.129582270979881,-0.58697509765625,-0.816636979579926,0.319690138101578,-0.480522722005844,-0.910437524318695,0.187431320548058,-0.368745028972626,-0.816636979579926,0.319690138101578,-0.480522722005844,-0.86150336265564,0.372870594263077,-0.344643831253052,-0.880540788173676,0.267255216836929,-0.39143642783165,-0.86150336265564,0.372870594263077,-0.344643831253052,-0.812943398952484,0.369720995426178,-0.449921458959579,-0.813234448432922,0.213219940662384,-0.541467308998108,-0.81542980670929,0.128665640950203,-0.564375162124634,-0.823623180389404,0.155752882361412,-0.545330822467804,-0.572504580020905,-0.109878256917,-0.812505483627319,-0.65686446428299,-0.0788591355085373,-0.749873399734497,-0.560523331165314,-0.108100160956383,-0.821052849292755,-0.724294066429138,-0.0223079156130552,-0.689130127429962,-0.81542980670929,0.128665640950203,-0.564375162124634,-0.769016623497009,0.0258189346641302,-0.638706982135773,-0.65686446428299,-0.0788591355085373,-0.749873399734497,-0.769016623497009,0.0258189346641302,-0.638706982135773, +-0.688580811023712,-0.0323025733232498,-0.724439680576324,-0.557266473770142,-0.105129763484001,-0.823651432991028,-0.572504580020905,-0.109878256917,-0.812505483627319,-0.537034928798676,-0.101543515920639,-0.837425947189331,-0.557266473770142,-0.105129763484001,-0.823651432991028,-0.537034928798676,-0.101543515920639,-0.837425947189331,-0.500515401363373,-0.144361302256584,-0.853606462478638,-0.500515401363373,-0.144361302256584,-0.853606462478638,-0.518859505653381,-0.264353483915329,-0.812958717346191,-0.596965670585632,-0.219040662050247,-0.771785616874695,-0.828288674354553,0.274377077817917,-0.488523334264755,-0.880540788173676,0.267255216836929,-0.39143642783165,-0.812943398952484,0.369720995426178,-0.449921458959579,-0.829302966594696,0.20382285118103,-0.520300567150116,-0.828288674354553,0.274377077817917,-0.488523334264755,-0.813234448432922,0.213219940662384,-0.541467308998108,0.305595815181732,-0.377114504575729,-0.874297142028809,0.268094033002853,-0.280555307865143,-0.921636700630188,0.166628435254097,0.00462835328653455,-0.986008882522583,0.268094033002853,-0.280555307865143,-0.921636700630188,0.209985747933388,-0.464636713266373,-0.860243320465088,0.200829371809959,0.0272610150277615,-0.97924679517746,0.210640445351601,0.0624849386513233,-0.975564479827881,0.200829371809959,0.0272610150277615,-0.97924679517746,0.184106051921844,-0.283181399106979,-0.941229581832886,0.218870893120766,-0.0266100205481052,-0.975390911102295,0.210640445351601,0.0624849386513233,-0.975564479827881,0.184106051921844,-0.283181399106979,-0.941229581832886,0.122116506099701,-0.257380098104477,-0.958562970161438,0.218870893120766,-0.0266100205481052,-0.975390911102295,0.145729184150696,-0.562732815742493,-0.813691973686218,0.228898495435715,-0.277976989746094,-0.93291699886322,0.305595815181732,-0.377114504575729,-0.874297142028809,0.166628435254097,0.00462835328653455,-0.986008882522583,0.177179425954819,-0.20524138212204,-0.962540030479431,0.228898495435715,-0.277976989746094,-0.93291699886322,0.122733540832996,-0.00124290073290467,-0.992438852787018, +0.217150941491127,-0.019330907613039,-0.975946545600891,0.223087131977081,0.105007097125053,-0.969126164913177,0.262039810419083,0.00340650184080005,-0.965050995349884,0.196610108017921,-0.0717840865254402,-0.977850377559662,0.177179425954819,-0.20524138212204,-0.962540030479431,0.122733540832996,-0.00124290073290467,-0.992438852787018,0.231036499142647,-0.253220528364182,-0.939415454864502,0.196610108017921,-0.0717840865254402,-0.977850377559662,0.217150941491127,-0.019330907613039,-0.975946545600891,0.086953230202198,-0.249041989445686,-0.964581310749054,0.122116506099701,-0.257380098104477,-0.958562970161438,0.00572602171450853,-0.780423045158386,-0.625225484371185,0.00572602171450853,-0.780423045158386,-0.625225484371185,-0.0221181455999613,-0.995086193084717,-0.0965097770094872,0.0621635727584362,-0.858838558197021,-0.508460283279419,-0.0171088427305222,-0.982673048973084,-0.184555768966675,0.0621635727584362,-0.858838558197021,-0.508460283279419,-0.00657857768237591,-0.998406529426575,-0.0560448952019215,-0.704134881496429,0.519202530384064,-0.484378755092621,-0.692715883255005,0.60691112279892,-0.389619529247284,-0.843243300914764,0.348182439804077,-0.409523606300354,-0.520459890365601,0.61777251958847,-0.589473128318787,-0.54902458190918,0.701668798923492,-0.454128563404083,-0.704134881496429,0.519202530384064,-0.484378755092621,-0.843243300914764,0.348182439804077,-0.409523606300354,-0.878351867198944,0.379420846700668,-0.290753781795502,-0.935714721679688,0.200165763497353,-0.290467381477356,-0.940976023674011,0.117897182703018,-0.317276418209076,-0.888289213180542,0.174162968993187,-0.424981594085693,-0.935714721679688,0.200165763497353,-0.290467381477356,-0.905496656894684,-0.0314723514020443,-0.423184514045715,-0.90817791223526,0.0787967666983604,-0.411100506782532,-0.949361085891724,0.0508943870663643,-0.310037285089493,-0.90817791223526,0.0787967666983604,-0.411100506782532,-0.940976023674011,0.117897182703018,-0.317276418209076,-0.949361085891724,0.0508943870663643,-0.310037285089493,-0.905496656894684,-0.0314723514020443,-0.423184514045715, +-0.900045454502106,-0.165011122822762,-0.403347820043564,-0.839598834514618,-0.150059267878532,-0.522068917751312,-0.91520357131958,-0.205419704318047,-0.346705943346024,-0.861806094646454,-0.209738418459892,-0.461843997240067,-0.900045454502106,-0.165011122822762,-0.403347820043564,-0.827447950839996,-0.276551961898804,-0.488721579313278,-0.861806094646454,-0.209738418459892,-0.461843997240067,-0.862965404987335,-0.324420243501663,-0.387352675199509,-0.827447950839996,-0.276551961898804,-0.488721579313278,-0.703814625740051,-0.352215647697449,-0.616918921470642,-0.786470770835876,-0.190541192889214,-0.587501168251038,-0.733160793781281,-0.228178858757019,-0.640632152557373,-0.786470770835876,-0.190541192889214,-0.587501168251038,-0.703814625740051,-0.352215647697449,-0.616918921470642,-0.614548861980438,-0.399672776460648,-0.680140554904938,-0.667959094047546,-0.258080363273621,-0.698015034198761,-0.733160793781281,-0.228178858757019,-0.640632152557373,-0.410217106342316,0.142689943313599,-0.900756001472473,-0.339164316654205,0.24343267083168,-0.908684730529785,-0.351827353239059,0.247008845210075,-0.902886509895325,-0.276531517505646,0.460387170314789,-0.843548357486725,-0.342951983213425,0.505471587181091,-0.791758954524994,-0.299390196800232,0.603561401367188,-0.738971650600433,-0.306641757488251,0.318955034017563,-0.896793365478516,-0.358998328447342,0.414975374937058,-0.836011648178101,-0.276531517505646,0.460387170314789,-0.843548357486725,-0.339164316654205,0.24343267083168,-0.908684730529785,-0.345351785421371,0.279068619012833,-0.896020472049713,-0.306641757488251,0.318955034017563,-0.896793365478516,-0.299390196800232,0.603561401367188,-0.738971650600433,-0.358223855495453,0.58810156583786,-0.725129067897797,-0.337864845991135,0.704746961593628,-0.623842000961304,-0.326850950717926,0.654034674167633,-0.682207405567169,-0.337864845991135,0.704746961593628,-0.623842000961304,-0.380788147449493,0.733650207519531,-0.562812268733978,-0.382738053798676,0.661181569099426,-0.645252168178558,-0.380788147449493,0.733650207519531,-0.562812268733978, +-0.444404244422913,0.720345079898834,-0.532548248767853,-0.382738053798676,0.661181569099426,-0.645252168178558,-0.444404244422913,0.720345079898834,-0.532548248767853,-0.520459890365601,0.61777251958847,-0.589473128318787,-0.26153638958931,-0.598311245441437,-0.75737851858139,-0.320356875658035,-0.542375266551971,-0.776659786701202,-0.462596118450165,-0.373524248600006,-0.804042458534241,-0.288917899131775,-0.514691650867462,-0.807229042053223,-0.320356875658035,-0.542375266551971,-0.776659786701202,-0.0985093414783478,-0.608029425144196,-0.787779152393341,-0.476451873779297,-0.475863575935364,-0.73928838968277,-0.667959094047546,-0.258080363273621,-0.698015034198761,-0.466401338577271,-0.567849338054657,-0.678245365619659,-0.254825979471207,-0.66647332906723,-0.700626134872437,-0.26153638958931,-0.598311245441437,-0.75737851858139,-0.420771986246109,-0.44057422876358,-0.792997598648071,-0.420771986246109,-0.44057422876358,-0.792997598648071,-0.476451873779297,-0.475863575935364,-0.73928838968277,-0.254825979471207,-0.66647332906723,-0.700626134872437,-0.0985093414783478,-0.608029425144196,-0.787779152393341,-0.0958615466952324,-0.491611450910568,-0.865522146224976,-0.288917899131775,-0.514691650867462,-0.807229042053223,-0.140494927763939,-0.423880100250244,-0.894755125045776,-0.0636266842484474,-0.41273632645607,-0.908625483512878,0.050019983202219,-0.467829436063766,-0.882402122020721,-0.0958615466952324,-0.491611450910568,-0.865522146224976,0.0310928989201784,-0.509135842323303,-0.860124289989471,-0.0636266842484474,-0.41273632645607,-0.908625483512878,-0.140494927763939,-0.423880100250244,-0.894755125045776,-0.0314796641469002,-0.48737296462059,-0.872626185417175,-0.218141451478004,-0.411404103040695,-0.884963750839233,0.104125693440437,-0.526333689689636,-0.843878269195557,-0.0314796641469002,-0.48737296462059,-0.872626185417175,0.0292371269315481,-0.529263138771057,-0.847953736782074,0.0526674501597881,-0.469965755939484,-0.881111919879913,0.104125693440437,-0.526333689689636,-0.843878269195557,0.119341820478439,-0.471734315156937,-0.873627007007599, +0.116906128823757,-0.417220324277878,-0.901254713535309,0.102121971547604,-0.432875245809555,-0.895650565624237,0.114675775170326,-0.457287669181824,-0.881894171237946,0.114675775170326,-0.457287669181824,-0.881894171237946,0.0526674501597881,-0.469965755939484,-0.881111919879913,0.119341820478439,-0.471734315156937,-0.873627007007599,0.143722042441368,-0.385757982730865,-0.911336719989777,0.163971468806267,-0.391687959432602,-0.905369400978088,0.127108246088028,-0.30937796831131,-0.942405760288239,0.116906128823757,-0.417220324277878,-0.901254713535309,0.163971468806267,-0.391687959432602,-0.905369400978088,0.102121971547604,-0.432875245809555,-0.895650565624237,0.127108246088028,-0.30937796831131,-0.942405760288239,0.0324667915701866,-0.308944672346115,-0.950525522232056,0.143722042441368,-0.385757982730865,-0.911336719989777,-0.211466237902641,-0.275720089673996,-0.937688887119293,-0.144043818116188,-0.199689090251923,-0.969213902950287,-0.0254711881279945,-0.191700100898743,-0.98112291097641,-0.0254711881279945,-0.191700100898743,-0.98112291097641,-0.0154617121443152,-0.192800477147102,-0.981116116046906,0.0752171501517296,-0.190575927495956,-0.978786528110504,-0.211466237902641,-0.275720089673996,-0.937688887119293,-0.25286078453064,-0.165869474411011,-0.95317816734314,-0.144043818116188,-0.199689090251923,-0.969213902950287,-0.25286078453064,-0.165869474411011,-0.95317816734314,-0.28833481669426,-0.15749354660511,-0.94448858499527,-0.265234917402267,-0.220446556806564,-0.938644587993622,0.0752171501517296,-0.190575927495956,-0.978786528110504,0.0324667915701866,-0.308944672346115,-0.950525522232056,0.075593613088131,-0.202224150300026,-0.976417422294617,-0.37008997797966,-0.129758477210999,-0.919889152050018,-0.400371819734573,-0.190955832600594,-0.896235585212708,-0.28833481669426,-0.15749354660511,-0.94448858499527,-0.518859505653381,-0.264353483915329,-0.812958717346191,-0.500515401363373,-0.144361302256584,-0.853606462478638,-0.401483088731766,-0.235938102006912,-0.884954512119293,-0.264258623123169,-0.203980058431625,-0.942634284496307, +-0.325855165719986,-0.298347681760788,-0.897110342979431,-0.401483088731766,-0.235938102006912,-0.884954512119293,-0.179085209965706,-0.241630986332893,-0.95369952917099,-0.265516757965088,-0.35413321852684,-0.896710872650146,-0.325855165719986,-0.298347681760788,-0.897110342979431,-0.263016551733017,-0.32181903719902,-0.90953540802002,-0.265516757965088,-0.35413321852684,-0.896710872650146,-0.225107133388519,-0.379763424396515,-0.897277176380157,0.164749816060066,-0.180806919932365,-0.969621598720551,-0.0222223624587059,-0.477812319993973,-0.878180801868439,0.138996049761772,-0.364224582910538,-0.920880258083344,0.142449393868446,-0.0454128347337246,-0.988759696483612,-0.0440878681838512,-0.364459037780762,-0.930175125598907,0.164749816060066,-0.180806919932365,-0.969621598720551,-0.114777162671089,-0.583899617195129,-0.80367112159729,0.0410522893071175,-0.602549910545349,-0.797024548053741,-0.0222223624587059,-0.477812319993973,-0.878180801868439,-0.146691545844078,-0.515169203281403,-0.844441890716553,-0.028219148516655,-0.467500180006027,-0.883542358875275,-0.0339294895529747,-0.575830817222595,-0.816864490509033,-0.114777162671089,-0.583899617195129,-0.80367112159729,-0.0339294895529747,-0.575830817222595,-0.816864490509033,0.0410522893071175,-0.602549910545349,-0.797024548053741,-0.028219148516655,-0.467500180006027,-0.883542358875275,-0.146342292428017,-0.450124770402908,-0.88089245557785,-0.0316658467054367,-0.43362021446228,-0.900539100170136,0.142449393868446,-0.0454128347337246,-0.988759696483612,0.223087131977081,0.105007097125053,-0.969126164913177,0.0942559093236923,0.0348977632820606,-0.994936108589172,-0.204784870147705,-0.296622067689896,-0.932779967784882,-0.129671335220337,-0.304223269224167,-0.943733751773834,-0.125269755721092,-0.387642979621887,-0.913258075714111,-0.0316658467054367,-0.43362021446228,-0.900539100170136,-0.125269755721092,-0.387642979621887,-0.913258075714111,0.00213934388011694,-0.376257479190826,-0.926512598991394,-0.193125218153,-0.307903707027435,-0.931610345840454,-0.204784870147705,-0.296622067689896,-0.932779967784882, +-0.177796214818954,-0.277152329683304,-0.944232523441315,-0.263016551733017,-0.32181903719902,-0.90953540802002,-0.225107133388519,-0.379763424396515,-0.897277176380157,-0.177796214818954,-0.277152329683304,-0.944232523441315,-0.603766977787018,-0.170708507299423,-0.77866804599762,-0.37008997797966,-0.129758477210999,-0.919889152050018,-0.505805611610413,-0.31720906496048,-0.802208781242371,-0.603766977787018,-0.170708507299423,-0.77866804599762,-0.505805611610413,-0.31720906496048,-0.802208781242371,-0.60977703332901,-0.300599038600922,-0.733356654644012,-0.636663794517517,-0.0796984061598778,-0.767011880874634,-0.697298526763916,-0.17324760556221,-0.695528507232666,-0.60977703332901,-0.300599038600922,-0.733356654644012,-0.799167394638062,0.129582270979881,-0.58697509765625,-0.636663794517517,-0.0796984061598778,-0.767011880874634,-0.672991573810577,0.199409082531929,-0.712262749671936,-0.799167394638062,0.129582270979881,-0.58697509765625,-0.672991573810577,0.199409082531929,-0.712262749671936,-0.816636979579926,0.319690138101578,-0.480522722005844,-0.816636979579926,0.319690138101578,-0.480522722005844,-0.841853857040405,0.429552733898163,-0.326751321554184,-0.86150336265564,0.372870594263077,-0.344643831253052,-0.86150336265564,0.372870594263077,-0.344643831253052,-0.84525740146637,0.389383792877197,-0.365950882434845,-0.812943398952484,0.369720995426178,-0.449921458959579,-0.81542980670929,0.128665640950203,-0.564375162124634,-0.813234448432922,0.213219940662384,-0.541467308998108,-0.86156153678894,0.209455698728561,-0.462428271770477,-0.65686446428299,-0.0788591355085373,-0.749873399734497,-0.688580811023712,-0.0323025733232498,-0.724439680576324,-0.560523331165314,-0.108100160956383,-0.821052849292755,-0.572504580020905,-0.109878256917,-0.812505483627319,-0.560523331165314,-0.108100160956383,-0.821052849292755,-0.537034928798676,-0.101543515920639,-0.837425947189331,-0.769016623497009,0.0258189346641302,-0.638706982135773,-0.81542980670929,0.128665640950203,-0.564375162124634,-0.811066389083862,0.104645632207394,-0.575517654418945, +-0.688580811023712,-0.0323025733232498,-0.724439680576324,-0.769016623497009,0.0258189346641302,-0.638706982135773,-0.736994028091431,0.0916115269064903,-0.669661819934845,-0.483783841133118,-0.0556909218430519,-0.873413801193237,-0.500515401363373,-0.144361302256584,-0.853606462478638,-0.537034928798676,-0.101543515920639,-0.837425947189331,-0.860347092151642,0.300953418016434,-0.411375433206558,-0.828288674354553,0.274377077817917,-0.488523334264755,-0.812943398952484,0.369720995426178,-0.449921458959579,-0.86156153678894,0.209455698728561,-0.462428271770477,-0.813234448432922,0.213219940662384,-0.541467308998108,-0.828288674354553,0.274377077817917,-0.488523334264755,0.305595815181732,-0.377114504575729,-0.874297142028809,0.222991123795509,-0.701775014400482,-0.676599383354187,0.268094033002853,-0.280555307865143,-0.921636700630188,0.268094033002853,-0.280555307865143,-0.921636700630188,0.333616733551025,-0.758487343788147,-0.5598184466362,0.209985747933388,-0.464636713266373,-0.860243320465088,0.184106051921844,-0.283181399106979,-0.941229581832886,0.200829371809959,0.0272610150277615,-0.97924679517746,0.209985747933388,-0.464636713266373,-0.860243320465088,0.218870893120766,-0.0266100205481052,-0.975390911102295,0.184106051921844,-0.283181399106979,-0.941229581832886,0.145729184150696,-0.562732815742493,-0.813691973686218,0.00572602171450853,-0.780423045158386,-0.625225484371185,0.122116506099701,-0.257380098104477,-0.958562970161438,0.145729184150696,-0.562732815742493,-0.813691973686218,0.228898495435715,-0.277976989746094,-0.93291699886322,0.227752178907394,-0.768937289714813,-0.597381174564362,0.305595815181732,-0.377114504575729,-0.874297142028809,0.177179425954819,-0.20524138212204,-0.962540030479431,0.165429159998894,-0.606055200099945,-0.77802962064743,0.228898495435715,-0.277976989746094,-0.93291699886322,0.142449393868446,-0.0454128347337246,-0.988759696483612,0.262039810419083,0.00340650184080005,-0.965050995349884,0.223087131977081,0.105007097125053,-0.969126164913177,0.217150941491127,-0.019330907613039,-0.975946545600891, +0.262039810419083,0.00340650184080005,-0.965050995349884,0.231036499142647,-0.253220528364182,-0.939415454864502,0.202091038227081,-0.322533398866653,-0.924733102321625,0.177179425954819,-0.20524138212204,-0.962540030479431,0.196610108017921,-0.0717840865254402,-0.977850377559662,0.202091038227081,-0.322533398866653,-0.924733102321625,0.196610108017921,-0.0717840865254402,-0.977850377559662,0.231036499142647,-0.253220528364182,-0.939415454864502,0.0235619340091944,-0.945497214794159,-0.324776351451874,-0.0221181455999613,-0.995086193084717,-0.0965097770094872,0.00572602171450853,-0.780423045158386,-0.625225484371185,-0.0221181455999613,-0.995086193084717,-0.0965097770094872,-0.00657857768237591,-0.998406529426575,-0.0560448952019215,0.0621635727584362,-0.858838558197021,-0.508460283279419,-0.704134881496429,0.519202530384064,-0.484378755092621,-0.54902458190918,0.701668798923492,-0.454128563404083,-0.692715883255005,0.60691112279892,-0.389619529247284,-0.843243300914764,0.348182439804077,-0.409523606300354,-0.692715883255005,0.60691112279892,-0.389619529247284,-0.878351867198944,0.379420846700668,-0.290753781795502,-0.520459890365601,0.61777251958847,-0.589473128318787,-0.444404244422913,0.720345079898834,-0.532548248767853,-0.54902458190918,0.701668798923492,-0.454128563404083,-0.967147886753082,0.215928986668587,-0.134162321686745,-0.935714721679688,0.200165763497353,-0.290467381477356,-0.878351867198944,0.379420846700668,-0.290753781795502,-0.97693806886673,0.127876102924347,-0.170996144413948,-0.940976023674011,0.117897182703018,-0.317276418209076,-0.935714721679688,0.200165763497353,-0.290467381477356,-0.905496656894684,-0.0314723514020443,-0.423184514045715,-0.949361085891724,0.0508943870663643,-0.310037285089493,-0.944760799407959,-0.0957520082592964,-0.313462048768997,-0.97693806886673,0.127876102924347,-0.170996144413948,-0.949361085891724,0.0508943870663643,-0.310037285089493,-0.940976023674011,0.117897182703018,-0.317276418209076,-0.900045454502106,-0.165011122822762,-0.403347820043564,-0.905496656894684,-0.0314723514020443,-0.423184514045715, +-0.944760799407959,-0.0957520082592964,-0.313462048768997,-0.91520357131958,-0.205419704318047,-0.346705943346024,-0.862965404987335,-0.324420243501663,-0.387352675199509,-0.861806094646454,-0.209738418459892,-0.461843997240067,-0.900045454502106,-0.165011122822762,-0.403347820043564,-0.944760799407959,-0.0957520082592964,-0.313462048768997,-0.91520357131958,-0.205419704318047,-0.346705943346024,-0.827447950839996,-0.276551961898804,-0.488721579313278,-0.862965404987335,-0.324420243501663,-0.387352675199509,-0.63053959608078,-0.553556203842163,-0.544054388999939,-0.827447950839996,-0.276551961898804,-0.488721579313278,-0.63053959608078,-0.553556203842163,-0.544054388999939,-0.703814625740051,-0.352215647697449,-0.616918921470642,-0.733160793781281,-0.228178858757019,-0.640632152557373,-0.703814625740051,-0.352215647697449,-0.616918921470642,-0.508400201797485,-0.494659185409546,-0.704869747161865,-0.667959094047546,-0.258080363273621,-0.698015034198761,-0.614548861980438,-0.399672776460648,-0.680140554904938,-0.466401338577271,-0.567849338054657,-0.678245365619659,-0.508400201797485,-0.494659185409546,-0.704869747161865,-0.614548861980438,-0.399672776460648,-0.680140554904938,-0.733160793781281,-0.228178858757019,-0.640632152557373,-0.339164316654205,0.24343267083168,-0.908684730529785,-0.410217106342316,0.142689943313599,-0.900756001472473,-0.330556750297546,0.160165667533875,-0.93009626865387,-0.276531517505646,0.460387170314789,-0.843548357486725,-0.358998328447342,0.414975374937058,-0.836011648178101,-0.342951983213425,0.505471587181091,-0.791758954524994,-0.299390196800232,0.603561401367188,-0.738971650600433,-0.342951983213425,0.505471587181091,-0.791758954524994,-0.358223855495453,0.58810156583786,-0.725129067897797,-0.306641757488251,0.318955034017563,-0.896793365478516,-0.345351785421371,0.279068619012833,-0.896020472049713,-0.358998328447342,0.414975374937058,-0.836011648178101,-0.330556750297546,0.160165667533875,-0.93009626865387,-0.345351785421371,0.279068619012833,-0.896020472049713,-0.339164316654205,0.24343267083168,-0.908684730529785, +-0.392333775758743,0.678701102733612,-0.620837330818176,-0.337864845991135,0.704746961593628,-0.623842000961304,-0.358223855495453,0.58810156583786,-0.725129067897797,-0.337864845991135,0.704746961593628,-0.623842000961304,-0.357723504304886,0.769096255302429,-0.529645919799805,-0.380788147449493,0.733650207519531,-0.562812268733978,-0.444404244422913,0.720345079898834,-0.532548248767853,-0.380788147449493,0.733650207519531,-0.562812268733978,-0.423252791166306,0.777546107769012,-0.465058088302612,-0.26153638958931,-0.598311245441437,-0.75737851858139,-0.0985093414783478,-0.608029425144196,-0.787779152393341,-0.320356875658035,-0.542375266551971,-0.776659786701202,-0.476451873779297,-0.475863575935364,-0.73928838968277,-0.466401338577271,-0.567849338054657,-0.678245365619659,-0.265296518802643,-0.721285820007324,-0.639815926551819,-0.254825979471207,-0.66647332906723,-0.700626134872437,-0.0652386173605919,-0.704942882061005,-0.706257224082947,-0.26153638958931,-0.598311245441437,-0.75737851858139,-0.254825979471207,-0.66647332906723,-0.700626134872437,-0.476451873779297,-0.475863575935364,-0.73928838968277,-0.265296518802643,-0.721285820007324,-0.639815926551819,-0.0985093414783478,-0.608029425144196,-0.787779152393341,0.0310928989201784,-0.509135842323303,-0.860124289989471,-0.0958615466952324,-0.491611450910568,-0.865522146224976,0.0310928989201784,-0.509135842323303,-0.860124289989471,0.050019983202219,-0.467829436063766,-0.882402122020721,-0.0636266842484474,-0.41273632645607,-0.908625483512878,-0.140494927763939,-0.423880100250244,-0.894755125045776,0.050019983202219,-0.467829436063766,-0.882402122020721,0.0292371269315481,-0.529263138771057,-0.847953736782074,0.0292371269315481,-0.529263138771057,-0.847953736782074,-0.0314796641469002,-0.48737296462059,-0.872626185417175,-0.140494927763939,-0.423880100250244,-0.894755125045776,0.104125693440437,-0.526333689689636,-0.843878269195557,0.0292371269315481,-0.529263138771057,-0.847953736782074,0.136575683951378,-0.539555132389069,-0.830799102783203,0.119341820478439,-0.471734315156937,-0.873627007007599, +0.104125693440437,-0.526333689689636,-0.843878269195557,0.0903154015541077,-0.455438703298569,-0.885674059391022,0.116906128823757,-0.417220324277878,-0.901254713535309,0.114675775170326,-0.457287669181824,-0.881894171237946,0.0949413627386093,-0.446588814258575,-0.889687836170197,0.119341820478439,-0.471734315156937,-0.873627007007599,0.0903154015541077,-0.455438703298569,-0.885674059391022,0.114675775170326,-0.457287669181824,-0.881894171237946,0.127108246088028,-0.30937796831131,-0.942405760288239,0.163971468806267,-0.391687959432602,-0.905369400978088,0.111229635775089,-0.317976832389832,-0.941551208496094,0.116906128823757,-0.417220324277878,-0.901254713535309,0.111229635775089,-0.317976832389832,-0.941551208496094,0.163971468806267,-0.391687959432602,-0.905369400978088,0.127108246088028,-0.30937796831131,-0.942405760288239,0.075593613088131,-0.202224150300026,-0.976417422294617,0.0324667915701866,-0.308944672346115,-0.950525522232056,-0.211466237902641,-0.275720089673996,-0.937688887119293,-0.0254711881279945,-0.191700100898743,-0.98112291097641,-0.146759957075119,-0.332683950662613,-0.931548595428467,-0.0254711881279945,-0.191700100898743,-0.98112291097641,0.0752171501517296,-0.190575927495956,-0.978786528110504,0.0145459175109863,-0.205700099468231,-0.978506922721863,-0.211466237902641,-0.275720089673996,-0.937688887119293,-0.359327375888824,-0.356497138738632,-0.86243462562561,-0.25286078453064,-0.165869474411011,-0.95317816734314,-0.30338516831398,-0.201418668031693,-0.931336581707001,-0.28833481669426,-0.15749354660511,-0.94448858499527,-0.25286078453064,-0.165869474411011,-0.95317816734314,0.0752171501517296,-0.190575927495956,-0.978786528110504,0.075593613088131,-0.202224150300026,-0.976417422294617,0.0461997836828232,-0.10961377620697,-0.992899954319,-0.37008997797966,-0.129758477210999,-0.919889152050018,-0.28833481669426,-0.15749354660511,-0.94448858499527,-0.30338516831398,-0.201418668031693,-0.931336581707001,-0.357620388269424,-0.0874688252806664,-0.929761648178101,-0.401483088731766,-0.235938102006912,-0.884954512119293, +-0.500515401363373,-0.144361302256584,-0.853606462478638,-0.264258623123169,-0.203980058431625,-0.942634284496307,-0.179085209965706,-0.241630986332893,-0.95369952917099,-0.325855165719986,-0.298347681760788,-0.897110342979431,-0.401483088731766,-0.235938102006912,-0.884954512119293,-0.357620388269424,-0.0874688252806664,-0.929761648178101,-0.264258623123169,-0.203980058431625,-0.942634284496307,-0.179085209965706,-0.241630986332893,-0.95369952917099,-0.141315266489983,-0.255377560853958,-0.956458151340485,-0.265516757965088,-0.35413321852684,-0.896710872650146,-0.228193864226341,-0.386210143566132,-0.893738746643066,-0.225107133388519,-0.379763424396515,-0.897277176380157,-0.265516757965088,-0.35413321852684,-0.896710872650146,0.138996049761772,-0.364224582910538,-0.920880258083344,-0.0222223624587059,-0.477812319993973,-0.878180801868439,0.0410522893071175,-0.602549910545349,-0.797024548053741,0.248754546046257,-0.048444639891386,-0.967354238033295,0.164749816060066,-0.180806919932365,-0.969621598720551,0.138996049761772,-0.364224582910538,-0.920880258083344,0.142449393868446,-0.0454128347337246,-0.988759696483612,0.164749816060066,-0.180806919932365,-0.969621598720551,0.262039810419083,0.00340650184080005,-0.965050995349884,-0.00714215915650129,-0.502908766269684,-0.864309966564178,-0.0339294895529747,-0.575830817222595,-0.816864490509033,-0.028219148516655,-0.467500180006027,-0.883542358875275,0.00247414619661868,-0.626404464244843,-0.779494166374207,0.0410522893071175,-0.602549910545349,-0.797024548053741,-0.0339294895529747,-0.575830817222595,-0.816864490509033,-0.0316658467054367,-0.43362021446228,-0.900539100170136,-0.0312504433095455,-0.45983624458313,-0.887453615665436,-0.028219148516655,-0.467500180006027,-0.883542358875275,-0.129671335220337,-0.304223269224167,-0.943733751773834,-0.204784870147705,-0.296622067689896,-0.932779967784882,-0.193125218153,-0.307903707027435,-0.931610345840454,0.00213934388011694,-0.376257479190826,-0.926512598991394,-0.125269755721092,-0.387642979621887,-0.913258075714111,-0.129671335220337,-0.304223269224167,-0.943733751773834, +-0.0316658467054367,-0.43362021446228,-0.900539100170136,0.00213934388011694,-0.376257479190826,-0.926512598991394,0.125851094722748,-0.39662104845047,-0.909314632415771,-0.193125218153,-0.307903707027435,-0.931610345840454,-0.177796214818954,-0.277152329683304,-0.944232523441315,-0.225107133388519,-0.379763424396515,-0.897277176380157,-0.37008997797966,-0.129758477210999,-0.919889152050018,-0.30338516831398,-0.201418668031693,-0.931336581707001,-0.505805611610413,-0.31720906496048,-0.802208781242371,-0.60977703332901,-0.300599038600922,-0.733356654644012,-0.505805611610413,-0.31720906496048,-0.802208781242371,-0.500619292259216,-0.350020706653595,-0.791748404502869,-0.636663794517517,-0.0796984061598778,-0.767011880874634,-0.60977703332901,-0.300599038600922,-0.733356654644012,-0.452487021684647,-0.168919622898102,-0.875626385211945,-0.672991573810577,0.199409082531929,-0.712262749671936,-0.636663794517517,-0.0796984061598778,-0.767011880874634,-0.406203329563141,0.104205772280693,-0.907821476459503,-0.816636979579926,0.319690138101578,-0.480522722005844,-0.672991573810577,0.199409082531929,-0.712262749671936,-0.596774756908417,0.339052796363831,-0.727257192134857,-0.816636979579926,0.319690138101578,-0.480522722005844,-0.752498388290405,0.426195621490479,-0.502098917961121,-0.841853857040405,0.429552733898163,-0.326751321554184,-0.86150336265564,0.372870594263077,-0.344643831253052,-0.841853857040405,0.429552733898163,-0.326751321554184,-0.84525740146637,0.389383792877197,-0.365950882434845,-0.860347092151642,0.300953418016434,-0.411375433206558,-0.812943398952484,0.369720995426178,-0.449921458959579,-0.84525740146637,0.389383792877197,-0.365950882434845,-0.815672636032104,0.196902856230736,-0.543973565101624,-0.81542980670929,0.128665640950203,-0.564375162124634,-0.86156153678894,0.209455698728561,-0.462428271770477,-0.585933148860931,0.0192318242043257,-0.810131072998047,-0.560523331165314,-0.108100160956383,-0.821052849292755,-0.688580811023712,-0.0323025733232498,-0.724439680576324,-0.491758435964584,-0.0798335745930672,-0.86706405878067, +-0.537034928798676,-0.101543515920639,-0.837425947189331,-0.560523331165314,-0.108100160956383,-0.821052849292755,-0.811066389083862,0.104645632207394,-0.575517654418945,-0.81542980670929,0.128665640950203,-0.564375162124634,-0.815672636032104,0.196902856230736,-0.543973565101624,-0.736994028091431,0.0916115269064903,-0.669661819934845,-0.769016623497009,0.0258189346641302,-0.638706982135773,-0.811066389083862,0.104645632207394,-0.575517654418945,-0.585933148860931,0.0192318242043257,-0.810131072998047,-0.688580811023712,-0.0323025733232498,-0.724439680576324,-0.736994028091431,0.0916115269064903,-0.669661819934845,-0.357620388269424,-0.0874688252806664,-0.929761648178101,-0.500515401363373,-0.144361302256584,-0.853606462478638,-0.483783841133118,-0.0556909218430519,-0.873413801193237,-0.483783841133118,-0.0556909218430519,-0.873413801193237,-0.537034928798676,-0.101543515920639,-0.837425947189331,-0.491758435964584,-0.0798335745930672,-0.86706405878067,-0.860347092151642,0.300953418016434,-0.411375433206558,-0.86156153678894,0.209455698728561,-0.462428271770477,-0.828288674354553,0.274377077817917,-0.488523334264755,0.222991123795509,-0.701775014400482,-0.676599383354187,0.305595815181732,-0.377114504575729,-0.874297142028809,0.227752178907394,-0.768937289714813,-0.597381174564362,0.222991123795509,-0.701775014400482,-0.676599383354187,0.311217993497849,-0.76454621553421,-0.564457535743713,0.268094033002853,-0.280555307865143,-0.921636700630188,0.311217993497849,-0.76454621553421,-0.564457535743713,0.333616733551025,-0.758487343788147,-0.5598184466362,0.268094033002853,-0.280555307865143,-0.921636700630188,0.128731489181519,-0.89167720079422,-0.433981388807297,0.209985747933388,-0.464636713266373,-0.860243320465088,0.333616733551025,-0.758487343788147,-0.5598184466362,0.184106051921844,-0.283181399106979,-0.941229581832886,0.209985747933388,-0.464636713266373,-0.860243320465088,0.128731489181519,-0.89167720079422,-0.433981388807297,0.128731489181519,-0.89167720079422,-0.433981388807297,0.145729184150696,-0.562732815742493,-0.813691973686218, +0.184106051921844,-0.283181399106979,-0.941229581832886,0.00572602171450853,-0.780423045158386,-0.625225484371185,0.145729184150696,-0.562732815742493,-0.813691973686218,0.0235619340091944,-0.945497214794159,-0.324776351451874,0.165429159998894,-0.606055200099945,-0.77802962064743,0.227752178907394,-0.768937289714813,-0.597381174564362,0.228898495435715,-0.277976989746094,-0.93291699886322,0.202091038227081,-0.322533398866653,-0.924733102321625,0.165429159998894,-0.606055200099945,-0.77802962064743,0.177179425954819,-0.20524138212204,-0.962540030479431,0.262039810419083,0.00340650184080005,-0.965050995349884,0.274691104888916,-0.121319152414799,-0.95384818315506,0.231036499142647,-0.253220528364182,-0.939415454864502,0.202091038227081,-0.322533398866653,-0.924733102321625,0.231036499142647,-0.253220528364182,-0.939415454864502,0.131250098347664,-0.727537393569946,-0.673396408557892,-0.0221181455999613,-0.995086193084717,-0.0965097770094872,0.0235619340091944,-0.945497214794159,-0.324776351451874,-0.00522640813142061,-0.999719798564911,-0.0230856947600842,-0.54902458190918,0.701668798923492,-0.454128563404083,-0.515515387058258,0.75642716884613,-0.402568787336349,-0.692715883255005,0.60691112279892,-0.389619529247284,-0.692715883255005,0.60691112279892,-0.389619529247284,-0.677653789520264,0.673244059085846,-0.295850694179535,-0.878351867198944,0.379420846700668,-0.290753781795502,-0.444404244422913,0.720345079898834,-0.532548248767853,-0.423252791166306,0.777546107769012,-0.465058088302612,-0.54902458190918,0.701668798923492,-0.454128563404083,-0.97693806886673,0.127876102924347,-0.170996144413948,-0.935714721679688,0.200165763497353,-0.290467381477356,-0.967147886753082,0.215928986668587,-0.134162321686745,-0.878351867198944,0.379420846700668,-0.290753781795502,-0.891240298748016,0.429434150457382,-0.145865246653557,-0.967147886753082,0.215928986668587,-0.134162321686745,-0.990936279296875,0.0366122238337994,-0.129246979951859,-0.944760799407959,-0.0957520082592964,-0.313462048768997,-0.949361085891724,0.0508943870663643,-0.310037285089493, +-0.990936279296875,0.0366122238337994,-0.129246979951859,-0.949361085891724,0.0508943870663643,-0.310037285089493,-0.97693806886673,0.127876102924347,-0.170996144413948,-0.862965404987335,-0.324420243501663,-0.387352675199509,-0.91520357131958,-0.205419704318047,-0.346705943346024,-0.851740956306458,-0.361335724592209,-0.379438698291779,-0.91520357131958,-0.205419704318047,-0.346705943346024,-0.944760799407959,-0.0957520082592964,-0.313462048768997,-0.917388021945953,-0.219320863485336,-0.332110643386841,-0.700347900390625,-0.540658831596375,-0.466047942638397,-0.63053959608078,-0.553556203842163,-0.544054388999939,-0.862965404987335,-0.324420243501663,-0.387352675199509,-0.364754229784012,-0.635624408721924,-0.680393755435944,-0.703814625740051,-0.352215647697449,-0.616918921470642,-0.63053959608078,-0.553556203842163,-0.544054388999939,-0.364754229784012,-0.635624408721924,-0.680393755435944,-0.508400201797485,-0.494659185409546,-0.704869747161865,-0.703814625740051,-0.352215647697449,-0.616918921470642,-0.466401338577271,-0.567849338054657,-0.678245365619659,-0.614548861980438,-0.399672776460648,-0.680140554904938,-0.37019008398056,-0.632234632968903,-0.68061625957489,-0.508400201797485,-0.494659185409546,-0.704869747161865,-0.37019008398056,-0.632234632968903,-0.68061625957489,-0.614548861980438,-0.399672776460648,-0.680140554904938,-0.358998328447342,0.414975374937058,-0.836011648178101,-0.358223855495453,0.58810156583786,-0.725129067897797,-0.342951983213425,0.505471587181091,-0.791758954524994,-0.345351785421371,0.279068619012833,-0.896020472049713,-0.532766938209534,0.421120762825012,-0.734041213989258,-0.358998328447342,0.414975374937058,-0.836011648178101,-0.345351785421371,0.279068619012833,-0.896020472049713,-0.330556750297546,0.160165667533875,-0.93009626865387,-0.391239613294601,0.182156473398209,-0.902081191539764,-0.384153306484222,0.763704001903534,-0.518827795982361,-0.337864845991135,0.704746961593628,-0.623842000961304,-0.392333775758743,0.678701102733612,-0.620837330818176,-0.428337424993515,0.558383405208588,-0.710446953773499, +-0.392333775758743,0.678701102733612,-0.620837330818176,-0.358223855495453,0.58810156583786,-0.725129067897797,-0.384153306484222,0.763704001903534,-0.518827795982361,-0.357723504304886,0.769096255302429,-0.529645919799805,-0.337864845991135,0.704746961593628,-0.623842000961304,-0.380788147449493,0.733650207519531,-0.562812268733978,-0.357723504304886,0.769096255302429,-0.529645919799805,-0.423252791166306,0.777546107769012,-0.465058088302612,-0.26153638958931,-0.598311245441437,-0.75737851858139,-0.0652386173605919,-0.704942882061005,-0.706257224082947,-0.0985093414783478,-0.608029425144196,-0.787779152393341,-0.265296518802643,-0.721285820007324,-0.639815926551819,-0.466401338577271,-0.567849338054657,-0.678245365619659,-0.172873601317406,-0.772076070308685,-0.611566126346588,-0.254825979471207,-0.66647332906723,-0.700626134872437,-0.123556740581989,-0.753576874732971,-0.645643353462219,-0.0652386173605919,-0.704942882061005,-0.706257224082947,-0.254825979471207,-0.66647332906723,-0.700626134872437,-0.265296518802643,-0.721285820007324,-0.639815926551819,-0.123556740581989,-0.753576874732971,-0.645643353462219,0.0252189952880144,-0.623008072376251,-0.78180867433548,0.0310928989201784,-0.509135842323303,-0.860124289989471,-0.0985093414783478,-0.608029425144196,-0.787779152393341,0.0890004187822342,-0.54825896024704,-0.831559360027313,0.050019983202219,-0.467829436063766,-0.882402122020721,0.0310928989201784,-0.509135842323303,-0.860124289989471,0.0292371269315481,-0.529263138771057,-0.847953736782074,0.050019983202219,-0.467829436063766,-0.882402122020721,0.136575683951378,-0.539555132389069,-0.830799102783203,0.124196819961071,-0.535040676593781,-0.835647344589233,0.104125693440437,-0.526333689689636,-0.843878269195557,0.136575683951378,-0.539555132389069,-0.830799102783203,0.124196819961071,-0.535040676593781,-0.835647344589233,0.0903154015541077,-0.455438703298569,-0.885674059391022,0.104125693440437,-0.526333689689636,-0.843878269195557,0.0903154015541077,-0.455438703298569,-0.885674059391022,0.0949413627386093,-0.446588814258575,-0.889687836170197, +0.114675775170326,-0.457287669181824,-0.881894171237946,0.0949413627386093,-0.446588814258575,-0.889687836170197,0.0958903953433037,-0.353924781084061,-0.930345237255096,0.116906128823757,-0.417220324277878,-0.901254713535309,0.127108246088028,-0.30937796831131,-0.942405760288239,0.111229635775089,-0.317976832389832,-0.941551208496094,0.0446647368371487,-0.194432035088539,-0.979898571968079,0.0726591572165489,-0.233515232801437,-0.969634532928467,0.111229635775089,-0.317976832389832,-0.941551208496094,0.116906128823757,-0.417220324277878,-0.901254713535309,0.075593613088131,-0.202224150300026,-0.976417422294617,0.127108246088028,-0.30937796831131,-0.942405760288239,0.0446647368371487,-0.194432035088539,-0.979898571968079,-0.0254711881279945,-0.191700100898743,-0.98112291097641,0.0145459175109863,-0.205700099468231,-0.978506922721863,-0.146759957075119,-0.332683950662613,-0.931548595428467,-0.281129986047745,-0.395428270101547,-0.874415397644043,-0.211466237902641,-0.275720089673996,-0.937688887119293,-0.146759957075119,-0.332683950662613,-0.931548595428467,0.0145459175109863,-0.205700099468231,-0.978506922721863,0.0752171501517296,-0.190575927495956,-0.978786528110504,0.0461997836828232,-0.10961377620697,-0.992899954319,-0.211466237902641,-0.275720089673996,-0.937688887119293,-0.281129986047745,-0.395428270101547,-0.874415397644043,-0.359327375888824,-0.356497138738632,-0.86243462562561,-0.30338516831398,-0.201418668031693,-0.931336581707001,-0.25286078453064,-0.165869474411011,-0.95317816734314,-0.359327375888824,-0.356497138738632,-0.86243462562561,0.0461997836828232,-0.10961377620697,-0.992899954319,0.075593613088131,-0.202224150300026,-0.976417422294617,-0.0161028299480677,-0.0856969133019447,-0.996191084384918,-0.179085209965706,-0.241630986332893,-0.95369952917099,-0.264258623123169,-0.203980058431625,-0.942634284496307,-0.136633306741714,-0.186983734369278,-0.972814619541168,-0.357620388269424,-0.0874688252806664,-0.929761648178101,-0.222266003489494,-0.0728878304362297,-0.972257733345032,-0.264258623123169,-0.203980058431625,-0.942634284496307, +-0.141315266489983,-0.255377560853958,-0.956458151340485,-0.179085209965706,-0.241630986332893,-0.95369952917099,-0.0518389903008938,-0.170377090573311,-0.984014391899109,-0.141315266489983,-0.255377560853958,-0.956458151340485,-0.228193864226341,-0.386210143566132,-0.893738746643066,-0.265516757965088,-0.35413321852684,-0.896710872650146,-0.217474862933159,-0.374802857637405,-0.901236593723297,-0.225107133388519,-0.379763424396515,-0.897277176380157,-0.228193864226341,-0.386210143566132,-0.893738746643066,0.138996049761772,-0.364224582910538,-0.920880258083344,0.0410522893071175,-0.602549910545349,-0.797024548053741,0.162005737423897,-0.351618885993958,-0.922018527984619,0.248754546046257,-0.048444639891386,-0.967354238033295,0.262039810419083,0.00340650184080005,-0.965050995349884,0.164749816060066,-0.180806919932365,-0.969621598720551,0.138996049761772,-0.364224582910538,-0.920880258083344,0.162005737423897,-0.351618885993958,-0.922018527984619,0.248754546046257,-0.048444639891386,-0.967354238033295,0.00247414619661868,-0.626404464244843,-0.779494166374207,-0.0339294895529747,-0.575830817222595,-0.816864490509033,-0.00714215915650129,-0.502908766269684,-0.864309966564178,-0.00714215915650129,-0.502908766269684,-0.864309966564178,-0.028219148516655,-0.467500180006027,-0.883542358875275,-0.0312504433095455,-0.45983624458313,-0.887453615665436,0.0410522893071175,-0.602549910545349,-0.797024548053741,0.00247414619661868,-0.626404464244843,-0.779494166374207,0.0436556898057461,-0.636094391345978,-0.770375192165375,-0.127369657158852,-0.466418564319611,-0.875345945358276,-0.0312504433095455,-0.45983624458313,-0.887453615665436,-0.0316658467054367,-0.43362021446228,-0.900539100170136,-0.129671335220337,-0.304223269224167,-0.943733751773834,-0.193125218153,-0.307903707027435,-0.931610345840454,-0.217474862933159,-0.374802857637405,-0.901236593723297,-0.129671335220337,-0.304223269224167,-0.943733751773834,0.0710292756557465,-0.318096905946732,-0.945393621921539,0.00213934388011694,-0.376257479190826,-0.926512598991394, +0.125851094722748,-0.39662104845047,-0.909314632415771,0.00213934388011694,-0.376257479190826,-0.926512598991394,0.0710292756557465,-0.318096905946732,-0.945393621921539,-0.0403476618230343,-0.388832867145538,-0.920424342155457,-0.0316658467054367,-0.43362021446228,-0.900539100170136,0.125851094722748,-0.39662104845047,-0.909314632415771,-0.193125218153,-0.307903707027435,-0.931610345840454,-0.225107133388519,-0.379763424396515,-0.897277176380157,-0.217474862933159,-0.374802857637405,-0.901236593723297,-0.30338516831398,-0.201418668031693,-0.931336581707001,-0.359327375888824,-0.356497138738632,-0.86243462562561,-0.505805611610413,-0.31720906496048,-0.802208781242371,-0.505805611610413,-0.31720906496048,-0.802208781242371,-0.359327375888824,-0.356497138738632,-0.86243462562561,-0.500619292259216,-0.350020706653595,-0.791748404502869,-0.452487021684647,-0.168919622898102,-0.875626385211945,-0.60977703332901,-0.300599038600922,-0.733356654644012,-0.500619292259216,-0.350020706653595,-0.791748404502869,-0.406203329563141,0.104205772280693,-0.907821476459503,-0.636663794517517,-0.0796984061598778,-0.767011880874634,-0.452487021684647,-0.168919622898102,-0.875626385211945,-0.672991573810577,0.199409082531929,-0.712262749671936,-0.406203329563141,0.104205772280693,-0.907821476459503,-0.596774756908417,0.339052796363831,-0.727257192134857,-0.752498388290405,0.426195621490479,-0.502098917961121,-0.816636979579926,0.319690138101578,-0.480522722005844,-0.596774756908417,0.339052796363831,-0.727257192134857,-0.77251261472702,0.486399739980698,-0.408214956521988,-0.841853857040405,0.429552733898163,-0.326751321554184,-0.752498388290405,0.426195621490479,-0.502098917961121,-0.841853857040405,0.429552733898163,-0.326751321554184,-0.843512058258057,0.4429851770401,-0.303729325532913,-0.84525740146637,0.389383792877197,-0.365950882434845,-0.84525740146637,0.389383792877197,-0.365950882434845,-0.861380398273468,0.352451980113983,-0.365788519382477,-0.860347092151642,0.300953418016434,-0.411375433206558,-0.839927494525909,0.281056016683578,-0.464251190423965, +-0.815672636032104,0.196902856230736,-0.543973565101624,-0.86156153678894,0.209455698728561,-0.462428271770477,-0.560523331165314,-0.108100160956383,-0.821052849292755,-0.585933148860931,0.0192318242043257,-0.810131072998047,-0.436853408813477,-0.0104751959443092,-0.899471521377563,-0.560523331165314,-0.108100160956383,-0.821052849292755,-0.436853408813477,-0.0104751959443092,-0.899471521377563,-0.491758435964584,-0.0798335745930672,-0.86706405878067,-0.815672636032104,0.196902856230736,-0.543973565101624,-0.736994028091431,0.0916115269064903,-0.669661819934845,-0.811066389083862,0.104645632207394,-0.575517654418945,-0.585933148860931,0.0192318242043257,-0.810131072998047,-0.736994028091431,0.0916115269064903,-0.669661819934845,-0.593649387359619,0.134959742426872,-0.793325960636139,-0.483783841133118,-0.0556909218430519,-0.873413801193237,-0.420646727085114,-0.0272613242268562,-0.906814754009247,-0.357620388269424,-0.0874688252806664,-0.929761648178101,-0.483783841133118,-0.0556909218430519,-0.873413801193237,-0.491758435964584,-0.0798335745930672,-0.86706405878067,-0.420646727085114,-0.0272613242268562,-0.906814754009247,-0.839927494525909,0.281056016683578,-0.464251190423965,-0.86156153678894,0.209455698728561,-0.462428271770477,-0.860347092151642,0.300953418016434,-0.411375433206558,0.227752178907394,-0.768937289714813,-0.597381174564362,0.160131052136421,-0.925731837749481,-0.342605412006378,0.222991123795509,-0.701775014400482,-0.676599383354187,0.222991123795509,-0.701775014400482,-0.676599383354187,0.160131052136421,-0.925731837749481,-0.342605412006378,0.311217993497849,-0.76454621553421,-0.564457535743713,0.311217993497849,-0.76454621553421,-0.564457535743713,0.18714414536953,-0.961242854595184,-0.202458009123802,0.333616733551025,-0.758487343788147,-0.5598184466362,0.128731489181519,-0.89167720079422,-0.433981388807297,0.333616733551025,-0.758487343788147,-0.5598184466362,0.18714414536953,-0.961242854595184,-0.202458009123802,0.128731489181519,-0.89167720079422,-0.433981388807297,0.0235619340091944,-0.945497214794159,-0.324776351451874, +0.145729184150696,-0.562732815742493,-0.813691973686218,0.165429159998894,-0.606055200099945,-0.77802962064743,0.0698400065302849,-0.93700236082077,-0.342270046472549,0.227752178907394,-0.768937289714813,-0.597381174564362,0.131250098347664,-0.727537393569946,-0.673396408557892,0.165429159998894,-0.606055200099945,-0.77802962064743,0.202091038227081,-0.322533398866653,-0.924733102321625,0.253287672996521,0.0104240877553821,-0.967334747314453,0.274691104888916,-0.121319152414799,-0.95384818315506,0.262039810419083,0.00340650184080005,-0.965050995349884,0.354120463132858,-0.438968628644943,-0.825775444507599,0.231036499142647,-0.253220528364182,-0.939415454864502,0.274691104888916,-0.121319152414799,-0.95384818315506,0.131250098347664,-0.727537393569946,-0.673396408557892,0.231036499142647,-0.253220528364182,-0.939415454864502,0.227951779961586,-0.695764601230621,-0.681138336658478,0.128731489181519,-0.89167720079422,-0.433981388807297,-0.00522640813142061,-0.999719798564911,-0.0230856947600842,0.0235619340091944,-0.945497214794159,-0.324776351451874,-0.515515387058258,0.75642716884613,-0.402568787336349,-0.54902458190918,0.701668798923492,-0.454128563404083,-0.423252791166306,0.777546107769012,-0.465058088302612,-0.692715883255005,0.60691112279892,-0.389619529247284,-0.515515387058258,0.75642716884613,-0.402568787336349,-0.501685559749603,0.79159814119339,-0.348832070827484,-0.692715883255005,0.60691112279892,-0.389619529247284,-0.501685559749603,0.79159814119339,-0.348832070827484,-0.677653789520264,0.673244059085846,-0.295850694179535,-0.891240298748016,0.429434150457382,-0.145865246653557,-0.878351867198944,0.379420846700668,-0.290753781795502,-0.677653789520264,0.673244059085846,-0.295850694179535,-0.979825496673584,-0.136031597852707,-0.146414890885353,-0.944760799407959,-0.0957520082592964,-0.313462048768997,-0.990936279296875,0.0366122238337994,-0.129246979951859,-0.91520357131958,-0.205419704318047,-0.346705943346024,-0.917388021945953,-0.219320863485336,-0.332110643386841,-0.851740956306458,-0.361335724592209,-0.379438698291779, +-0.862965404987335,-0.324420243501663,-0.387352675199509,-0.851740956306458,-0.361335724592209,-0.379438698291779,-0.700347900390625,-0.540658831596375,-0.466047942638397,-0.916669130325317,-0.268224954605103,-0.296265035867691,-0.917388021945953,-0.219320863485336,-0.332110643386841,-0.944760799407959,-0.0957520082592964,-0.313462048768997,-0.63053959608078,-0.553556203842163,-0.544054388999939,-0.700347900390625,-0.540658831596375,-0.466047942638397,-0.376746267080307,-0.760267198085785,-0.529202997684479,-0.364754229784012,-0.635624408721924,-0.680393755435944,-0.63053959608078,-0.553556203842163,-0.544054388999939,-0.261591553688049,-0.734129548072815,-0.626596748828888,-0.364754229784012,-0.635624408721924,-0.680393755435944,-0.220756128430367,-0.698548376560211,-0.680659055709839,-0.508400201797485,-0.494659185409546,-0.704869747161865,-0.466401338577271,-0.567849338054657,-0.678245365619659,-0.37019008398056,-0.632234632968903,-0.68061625957489,-0.172873601317406,-0.772076070308685,-0.611566126346588,-0.37019008398056,-0.632234632968903,-0.68061625957489,-0.508400201797485,-0.494659185409546,-0.704869747161865,-0.220756128430367,-0.698548376560211,-0.680659055709839,-0.428337424993515,0.558383405208588,-0.710446953773499,-0.358223855495453,0.58810156583786,-0.725129067897797,-0.358998328447342,0.414975374937058,-0.836011648178101,-0.345351785421371,0.279068619012833,-0.896020472049713,-0.472766548395157,0.302701979875565,-0.827564597129822,-0.532766938209534,0.421120762825012,-0.734041213989258,-0.358998328447342,0.414975374937058,-0.836011648178101,-0.532766938209534,0.421120762825012,-0.734041213989258,-0.428337424993515,0.558383405208588,-0.710446953773499,-0.391239613294601,0.182156473398209,-0.902081191539764,-0.415062338113785,0.24864037334919,-0.87515777349472,-0.345351785421371,0.279068619012833,-0.896020472049713,-0.384153306484222,0.763704001903534,-0.518827795982361,-0.392333775758743,0.678701102733612,-0.620837330818176,-0.53892582654953,0.683855295181274,-0.491834044456482,-0.428337424993515,0.558383405208588,-0.710446953773499, +-0.53892582654953,0.683855295181274,-0.491834044456482,-0.392333775758743,0.678701102733612,-0.620837330818176,-0.384153306484222,0.763704001903534,-0.518827795982361,-0.37638732790947,0.815989971160889,-0.43874004483223,-0.357723504304886,0.769096255302429,-0.529645919799805,-0.37638732790947,0.815989971160889,-0.43874004483223,-0.423252791166306,0.777546107769012,-0.465058088302612,-0.357723504304886,0.769096255302429,-0.529645919799805,-0.0652386173605919,-0.704942882061005,-0.706257224082947,0.0252189952880144,-0.623008072376251,-0.78180867433548,-0.0985093414783478,-0.608029425144196,-0.787779152393341,-0.265296518802643,-0.721285820007324,-0.639815926551819,-0.172873601317406,-0.772076070308685,-0.611566126346588,-0.119069054722786,-0.78232616186142,-0.611382186412811,-0.0652386173605919,-0.704942882061005,-0.706257224082947,-0.123556740581989,-0.753576874732971,-0.645643353462219,1.95874818018638e-005,-0.692333459854126,-0.7215775847435,-0.119069054722786,-0.78232616186142,-0.611382186412811,-0.123556740581989,-0.753576874732971,-0.645643353462219,-0.265296518802643,-0.721285820007324,-0.639815926551819,0.0890004187822342,-0.54825896024704,-0.831559360027313,0.0310928989201784,-0.509135842323303,-0.860124289989471,0.0252189952880144,-0.623008072376251,-0.78180867433548,0.136575683951378,-0.539555132389069,-0.830799102783203,0.050019983202219,-0.467829436063766,-0.882402122020721,0.0890004187822342,-0.54825896024704,-0.831559360027313,0.136575683951378,-0.539555132389069,-0.830799102783203,0.103286951780319,-0.599865078926086,-0.793406248092651,0.124196819961071,-0.535040676593781,-0.835647344589233,0.0903154015541077,-0.455438703298569,-0.885674059391022,0.124196819961071,-0.535040676593781,-0.835647344589233,0.0353857055306435,-0.485466241836548,-0.873538911342621,0.0903154015541077,-0.455438703298569,-0.885674059391022,-0.0205107424408197,-0.430645138025284,-0.902288198471069,0.0949413627386093,-0.446588814258575,-0.889687836170197,0.0958903953433037,-0.353924781084061,-0.930345237255096,0.0949413627386093,-0.446588814258575,-0.889687836170197, +-0.00913565885275602,-0.261105537414551,-0.965266942977905,0.0726591572165489,-0.233515232801437,-0.969634532928467,0.116906128823757,-0.417220324277878,-0.901254713535309,0.0958903953433037,-0.353924781084061,-0.930345237255096,0.0726591572165489,-0.233515232801437,-0.969634532928467,0.0446647368371487,-0.194432035088539,-0.979898571968079,0.111229635775089,-0.317976832389832,-0.941551208496094,0.075593613088131,-0.202224150300026,-0.976417422294617,0.0446647368371487,-0.194432035088539,-0.979898571968079,-0.0161028299480677,-0.0856969133019447,-0.996191084384918,0.0145459175109863,-0.205700099468231,-0.978506922721863,-0.209853872656822,-0.235933378338814,-0.948839664459229,-0.146759957075119,-0.332683950662613,-0.931548595428467,-0.281129986047745,-0.395428270101547,-0.874415397644043,-0.146759957075119,-0.332683950662613,-0.931548595428467,-0.260690838098526,-0.260020434856415,-0.929747045040131,-0.0918252021074295,-0.124073207378387,-0.988015115261078,0.0145459175109863,-0.205700099468231,-0.978506922721863,0.0461997836828232,-0.10961377620697,-0.992899954319,-0.336104512214661,-0.296909630298615,-0.893799901008606,-0.359327375888824,-0.356497138738632,-0.86243462562561,-0.281129986047745,-0.395428270101547,-0.874415397644043,0.0461997836828232,-0.10961377620697,-0.992899954319,-0.0161028299480677,-0.0856969133019447,-0.996191084384918,-0.0501484125852585,0.00828037690371275,-0.998707413673401,-0.264258623123169,-0.203980058431625,-0.942634284496307,-0.222266003489494,-0.0728878304362297,-0.972257733345032,-0.136633306741714,-0.186983734369278,-0.972814619541168,-0.179085209965706,-0.241630986332893,-0.95369952917099,-0.136633306741714,-0.186983734369278,-0.972814619541168,-0.0518389903008938,-0.170377090573311,-0.984014391899109,-0.343909412622452,-0.0038625702727586,-0.938994824886322,-0.222266003489494,-0.0728878304362297,-0.972257733345032,-0.357620388269424,-0.0874688252806664,-0.929761648178101,0.0349362604320049,-0.16810816526413,-0.985149264335632,-0.141315266489983,-0.255377560853958,-0.956458151340485, +-0.0518389903008938,-0.170377090573311,-0.984014391899109,-0.102551937103271,-0.31008592247963,-0.94516122341156,-0.228193864226341,-0.386210143566132,-0.893738746643066,-0.141315266489983,-0.255377560853958,-0.956458151340485,-0.102551937103271,-0.31008592247963,-0.94516122341156,-0.217474862933159,-0.374802857637405,-0.901236593723297,-0.228193864226341,-0.386210143566132,-0.893738746643066,0.0410522893071175,-0.602549910545349,-0.797024548053741,0.0436556898057461,-0.636094391345978,-0.770375192165375,0.162005737423897,-0.351618885993958,-0.922018527984619,0.253287672996521,0.0104240877553821,-0.967334747314453,0.262039810419083,0.00340650184080005,-0.965050995349884,0.248754546046257,-0.048444639891386,-0.967354238033295,0.248754546046257,-0.048444639891386,-0.967354238033295,0.162005737423897,-0.351618885993958,-0.922018527984619,0.245493248105049,-0.0379306599497795,-0.9686558842659,-0.00368131720460951,-0.615144848823547,-0.788405418395996,0.00247414619661868,-0.626404464244843,-0.779494166374207,-0.00714215915650129,-0.502908766269684,-0.864309966564178,-0.0168171636760235,-0.477083504199982,-0.878696978092194,-0.00714215915650129,-0.502908766269684,-0.864309966564178,-0.0312504433095455,-0.45983624458313,-0.887453615665436,-0.00368131720460951,-0.615144848823547,-0.788405418395996,0.0436556898057461,-0.636094391345978,-0.770375192165375,0.00247414619661868,-0.626404464244843,-0.779494166374207,-0.0312504433095455,-0.45983624458313,-0.887453615665436,-0.127369657158852,-0.466418564319611,-0.875345945358276,-0.107303790748119,-0.523965537548065,-0.844953179359436,-0.0403476618230343,-0.388832867145538,-0.920424342155457,-0.127369657158852,-0.466418564319611,-0.875345945358276,-0.0316658467054367,-0.43362021446228,-0.900539100170136,-0.129671335220337,-0.304223269224167,-0.943733751773834,-0.217474862933159,-0.374802857637405,-0.901236593723297,0.00314530031755567,-0.284404307603836,-0.958699107170105,-0.129671335220337,-0.304223269224167,-0.943733751773834,0.00314530031755567,-0.284404307603836,-0.958699107170105, +0.0710292756557465,-0.318096905946732,-0.945393621921539,0.0710292756557465,-0.318096905946732,-0.945393621921539,0.259190291166306,-0.334127008914948,-0.906189501285553,0.125851094722748,-0.39662104845047,-0.909314632415771,0.125851094722748,-0.39662104845047,-0.909314632415771,0.180786103010178,-0.328919172286987,-0.926891803741455,-0.0403476618230343,-0.388832867145538,-0.920424342155457,-0.359327375888824,-0.356497138738632,-0.86243462562561,-0.336104512214661,-0.296909630298615,-0.893799901008606,-0.500619292259216,-0.350020706653595,-0.791748404502869,-0.452487021684647,-0.168919622898102,-0.875626385211945,-0.500619292259216,-0.350020706653595,-0.791748404502869,-0.357756108045578,-0.165802121162415,-0.918977737426758,-0.222426131367683,0.0358351692557335,-0.974290728569031,-0.406203329563141,0.104205772280693,-0.907821476459503,-0.452487021684647,-0.168919622898102,-0.875626385211945,-0.596774756908417,0.339052796363831,-0.727257192134857,-0.406203329563141,0.104205772280693,-0.907821476459503,-0.336818188428879,0.264939486980438,-0.903526723384857,-0.752498388290405,0.426195621490479,-0.502098917961121,-0.596774756908417,0.339052796363831,-0.727257192134857,-0.56493878364563,0.442820519208908,-0.69624274969101,-0.841853857040405,0.429552733898163,-0.326751321554184,-0.77251261472702,0.486399739980698,-0.408214956521988,-0.805289745330811,0.512339293956757,-0.298356682062149,-0.77251261472702,0.486399739980698,-0.408214956521988,-0.752498388290405,0.426195621490479,-0.502098917961121,-0.56493878364563,0.442820519208908,-0.69624274969101,-0.841853857040405,0.429552733898163,-0.326751321554184,-0.805289745330811,0.512339293956757,-0.298356682062149,-0.843512058258057,0.4429851770401,-0.303729325532913,-0.843512058258057,0.4429851770401,-0.303729325532913,-0.861380398273468,0.352451980113983,-0.365788519382477,-0.84525740146637,0.389383792877197,-0.365950882434845,-0.860347092151642,0.300953418016434,-0.411375433206558,-0.861380398273468,0.352451980113983,-0.365788519382477,-0.839927494525909,0.281056016683578,-0.464251190423965, +-0.839927494525909,0.281056016683578,-0.464251190423965,-0.696861386299133,0.366097658872604,-0.616730511188507,-0.815672636032104,0.196902856230736,-0.543973565101624,-0.585933148860931,0.0192318242043257,-0.810131072998047,-0.448448926210403,0.127977058291435,-0.884598970413208,-0.436853408813477,-0.0104751959443092,-0.899471521377563,-0.420646727085114,-0.0272613242268562,-0.906814754009247,-0.491758435964584,-0.0798335745930672,-0.86706405878067,-0.436853408813477,-0.0104751959443092,-0.899471521377563,-0.667500674724579,0.243331789970398,-0.70372748374939,-0.736994028091431,0.0916115269064903,-0.669661819934845,-0.815672636032104,0.196902856230736,-0.543973565101624,-0.593649387359619,0.134959742426872,-0.793325960636139,-0.736994028091431,0.0916115269064903,-0.669661819934845,-0.667500674724579,0.243331789970398,-0.70372748374939,-0.585933148860931,0.0192318242043257,-0.810131072998047,-0.593649387359619,0.134959742426872,-0.793325960636139,-0.448448926210403,0.127977058291435,-0.884598970413208,-0.420646727085114,-0.0272613242268562,-0.906814754009247,-0.343909412622452,-0.0038625702727586,-0.938994824886322,-0.357620388269424,-0.0874688252806664,-0.929761648178101,0.227752178907394,-0.768937289714813,-0.597381174564362,0.0599019415676594,-0.964753031730652,-0.256248295307159,0.160131052136421,-0.925731837749481,-0.342605412006378,0.18714414536953,-0.961242854595184,-0.202458009123802,0.311217993497849,-0.76454621553421,-0.564457535743713,0.160131052136421,-0.925731837749481,-0.342605412006378,0.128731489181519,-0.89167720079422,-0.433981388807297,0.18714414536953,-0.961242854595184,-0.202458009123802,0.0460121817886829,-0.995894312858582,-0.0779569521546364,0.131250098347664,-0.727537393569946,-0.673396408557892,0.0698400065302849,-0.93700236082077,-0.342270046472549,0.165429159998894,-0.606055200099945,-0.77802962064743,0.0698400065302849,-0.93700236082077,-0.342270046472549,0.0599019415676594,-0.964753031730652,-0.256248295307159,0.227752178907394,-0.768937289714813,-0.597381174564362,0.207055926322937,-0.114383794367313,-0.971619307994843, +0.274691104888916,-0.121319152414799,-0.95384818315506,0.253287672996521,0.0104240877553821,-0.967334747314453,0.231036499142647,-0.253220528364182,-0.939415454864502,0.354120463132858,-0.438968628644943,-0.825775444507599,0.227951779961586,-0.695764601230621,-0.681138336658478,0.274691104888916,-0.121319152414799,-0.95384818315506,0.360367298126221,-0.346794337034225,-0.865949749946594,0.354120463132858,-0.438968628644943,-0.825775444507599,0.131250098347664,-0.727537393569946,-0.673396408557892,0.227951779961586,-0.695764601230621,-0.681138336658478,0.0724783018231392,-0.933188915252686,-0.352001756429672,0.0460121817886829,-0.995894312858582,-0.0779569521546364,-0.00522640813142061,-0.999719798564911,-0.0230856947600842,0.128731489181519,-0.89167720079422,-0.433981388807297,-0.515515387058258,0.75642716884613,-0.402568787336349,-0.423252791166306,0.777546107769012,-0.465058088302612,-0.416987061500549,0.82144170999527,-0.389043867588043,-0.515515387058258,0.75642716884613,-0.402568787336349,-0.416987061500549,0.82144170999527,-0.389043867588043,-0.501685559749603,0.79159814119339,-0.348832070827484,-0.458349913358688,0.83390212059021,-0.307445019483566,-0.677653789520264,0.673244059085846,-0.295850694179535,-0.501685559749603,0.79159814119339,-0.348832070827484,-0.677653789520264,0.673244059085846,-0.295850694179535,-0.636055409908295,0.744522571563721,-0.202779799699783,-0.891240298748016,0.429434150457382,-0.145865246653557,-0.944760799407959,-0.0957520082592964,-0.313462048768997,-0.979825496673584,-0.136031597852707,-0.146414890885353,-0.916669130325317,-0.268224954605103,-0.296265035867691,-0.807643473148346,-0.458443731069565,-0.370865702629089,-0.851740956306458,-0.361335724592209,-0.379438698291779,-0.917388021945953,-0.219320863485336,-0.332110643386841,-0.700347900390625,-0.540658831596375,-0.466047942638397,-0.851740956306458,-0.361335724592209,-0.379438698291779,-0.613446891307831,-0.646662890911102,-0.45333194732666,-0.916669130325317,-0.268224954605103,-0.296265035867691,-0.807643473148346,-0.458443731069565,-0.370865702629089, +-0.917388021945953,-0.219320863485336,-0.332110643386841,-0.700347900390625,-0.540658831596375,-0.466047942638397,-0.613446891307831,-0.646662890911102,-0.45333194732666,-0.376746267080307,-0.760267198085785,-0.529202997684479,-0.63053959608078,-0.553556203842163,-0.544054388999939,-0.376746267080307,-0.760267198085785,-0.529202997684479,-0.261591553688049,-0.734129548072815,-0.626596748828888,-0.158912613987923,-0.737124562263489,-0.656805872917175,-0.364754229784012,-0.635624408721924,-0.680393755435944,-0.261591553688049,-0.734129548072815,-0.626596748828888,-0.364754229784012,-0.635624408721924,-0.680393755435944,-0.158912613987923,-0.737124562263489,-0.656805872917175,-0.220756128430367,-0.698548376560211,-0.680659055709839,-0.37019008398056,-0.632234632968903,-0.68061625957489,-0.220756128430367,-0.698548376560211,-0.680659055709839,-0.172873601317406,-0.772076070308685,-0.611566126346588,-0.415062338113785,0.24864037334919,-0.87515777349472,-0.472766548395157,0.302701979875565,-0.827564597129822,-0.345351785421371,0.279068619012833,-0.896020472049713,-0.532766938209534,0.421120762825012,-0.734041213989258,-0.472766548395157,0.302701979875565,-0.827564597129822,-0.6918004155159,0.364239245653152,-0.623491585254669,-0.532766938209534,0.421120762825012,-0.734041213989258,-0.638454139232636,0.527773439884186,-0.560206472873688,-0.428337424993515,0.558383405208588,-0.710446953773499,-0.415062338113785,0.24864037334919,-0.87515777349472,-0.391239613294601,0.182156473398209,-0.902081191539764,-0.543102622032166,0.197408646345139,-0.816130638122559,-0.384153306484222,0.763704001903534,-0.518827795982361,-0.53892582654953,0.683855295181274,-0.491834044456482,-0.491849213838577,0.771722555160522,-0.403148233890533,-0.638454139232636,0.527773439884186,-0.560206472873688,-0.53892582654953,0.683855295181274,-0.491834044456482,-0.428337424993515,0.558383405208588,-0.710446953773499,-0.384153306484222,0.763704001903534,-0.518827795982361,-0.491849213838577,0.771722555160522,-0.403148233890533,-0.37638732790947,0.815989971160889,-0.43874004483223, +-0.37638732790947,0.815989971160889,-0.43874004483223,-0.416987061500549,0.82144170999527,-0.389043867588043,-0.423252791166306,0.777546107769012,-0.465058088302612,1.95874818018638e-005,-0.692333459854126,-0.7215775847435,0.0252189952880144,-0.623008072376251,-0.78180867433548,-0.0652386173605919,-0.704942882061005,-0.706257224082947,-0.119069054722786,-0.78232616186142,-0.611382186412811,-0.172873601317406,-0.772076070308685,-0.611566126346588,-0.0742841139435768,-0.802858531475067,-0.591523408889771,-0.119069054722786,-0.78232616186142,-0.611382186412811,1.95874818018638e-005,-0.692333459854126,-0.7215775847435,-0.123556740581989,-0.753576874732971,-0.645643353462219,1.95874818018638e-005,-0.692333459854126,-0.7215775847435,0.0890004187822342,-0.54825896024704,-0.831559360027313,0.0252189952880144,-0.623008072376251,-0.78180867433548,0.103286951780319,-0.599865078926086,-0.793406248092651,0.136575683951378,-0.539555132389069,-0.830799102783203,0.0890004187822342,-0.54825896024704,-0.831559360027313,0.0346068479120731,-0.594395697116852,-0.803427696228027,0.124196819961071,-0.535040676593781,-0.835647344589233,0.103286951780319,-0.599865078926086,-0.793406248092651,0.0346068479120731,-0.594395697116852,-0.803427696228027,0.0353857055306435,-0.485466241836548,-0.873538911342621,0.124196819961071,-0.535040676593781,-0.835647344589233,0.0353857055306435,-0.485466241836548,-0.873538911342621,-0.0762206539511681,-0.385050594806671,-0.919742584228516,0.0903154015541077,-0.455438703298569,-0.885674059391022,0.0903154015541077,-0.455438703298569,-0.885674059391022,-0.0762206539511681,-0.385050594806671,-0.919742584228516,-0.0205107424408197,-0.430645138025284,-0.902288198471069,-0.0205107424408197,-0.430645138025284,-0.902288198471069,-0.0445641949772835,-0.424226880073547,-0.90445864200592,0.0949413627386093,-0.446588814258575,-0.889687836170197,-0.0445641949772835,-0.424226880073547,-0.90445864200592,-0.00913565885275602,-0.261105537414551,-0.965266942977905,0.0949413627386093,-0.446588814258575,-0.889687836170197,0.0958903953433037,-0.353924781084061,-0.930345237255096, +-0.00913565885275602,-0.261105537414551,-0.965266942977905,0.0440123155713081,-0.18331503868103,-0.982068419456482,0.0726591572165489,-0.233515232801437,-0.969634532928467,0.0958903953433037,-0.353924781084061,-0.930345237255096,0.0440123155713081,-0.18331503868103,-0.982068419456482,0.0446647368371487,-0.194432035088539,-0.979898571968079,0.0726591572165489,-0.233515232801437,-0.969634532928467,-0.0235273726284504,-0.071629673242569,-0.997153699398041,-0.0161028299480677,-0.0856969133019447,-0.996191084384918,0.0446647368371487,-0.194432035088539,-0.979898571968079,-0.0235273726284504,-0.071629673242569,-0.997153699398041,0.0145459175109863,-0.205700099468231,-0.978506922721863,-0.0918252021074295,-0.124073207378387,-0.988015115261078,-0.209853872656822,-0.235933378338814,-0.948839664459229,-0.209853872656822,-0.235933378338814,-0.948839664459229,-0.260690838098526,-0.260020434856415,-0.929747045040131,-0.146759957075119,-0.332683950662613,-0.931548595428467,-0.336104512214661,-0.296909630298615,-0.893799901008606,-0.281129986047745,-0.395428270101547,-0.874415397644043,-0.260690838098526,-0.260020434856415,-0.929747045040131,-0.0918252021074295,-0.124073207378387,-0.988015115261078,0.0461997836828232,-0.10961377620697,-0.992899954319,-0.0807472914457321,-0.0311971306800842,-0.996246218681335,-0.0161028299480677,-0.0856969133019447,-0.996191084384918,-0.0774524360895157,-0.00953382160514593,-0.996950447559357,-0.0501484125852585,0.00828037690371275,-0.998707413673401,-0.0807472914457321,-0.0311971306800842,-0.996246218681335,0.0461997836828232,-0.10961377620697,-0.992899954319,-0.0501484125852585,0.00828037690371275,-0.998707413673401,-0.0479654297232628,-0.114630021154881,-0.992249548435211,-0.136633306741714,-0.186983734369278,-0.972814619541168,-0.222266003489494,-0.0728878304362297,-0.972257733345032,-0.0479654297232628,-0.114630021154881,-0.992249548435211,-0.0518389903008938,-0.170377090573311,-0.984014391899109,-0.136633306741714,-0.186983734369278,-0.972814619541168,-0.222266003489494,-0.0728878304362297,-0.972257733345032, +-0.343909412622452,-0.0038625702727586,-0.938994824886322,-0.268105000257492,0.0368161015212536,-0.962685883045197,-0.102551937103271,-0.31008592247963,-0.94516122341156,-0.141315266489983,-0.255377560853958,-0.956458151340485,0.0349362604320049,-0.16810816526413,-0.985149264335632,0.0349362604320049,-0.16810816526413,-0.985149264335632,-0.0518389903008938,-0.170377090573311,-0.984014391899109,0.00432160310447216,-0.152928665280342,-0.988227725028992,-0.102551937103271,-0.31008592247963,-0.94516122341156,0.00314530031755567,-0.284404307603836,-0.958699107170105,-0.217474862933159,-0.374802857637405,-0.901236593723297,0.0850290358066559,-0.508052468299866,-0.857118785381317,0.162005737423897,-0.351618885993958,-0.922018527984619,0.0436556898057461,-0.636094391345978,-0.770375192165375,0.248754546046257,-0.048444639891386,-0.967354238033295,0.245493248105049,-0.0379306599497795,-0.9686558842659,0.253287672996521,0.0104240877553821,-0.967334747314453,0.192894548177719,-0.0978220999240875,-0.976331114768982,0.245493248105049,-0.0379306599497795,-0.9686558842659,0.162005737423897,-0.351618885993958,-0.922018527984619,-0.00714215915650129,-0.502908766269684,-0.864309966564178,-0.0168171636760235,-0.477083504199982,-0.878696978092194,-0.00368131720460951,-0.615144848823547,-0.788405418395996,-0.0168171636760235,-0.477083504199982,-0.878696978092194,-0.0312504433095455,-0.45983624458313,-0.887453615665436,0.00798038486391306,-0.489377975463867,-0.872035205364227,0.0850290358066559,-0.508052468299866,-0.857118785381317,0.0436556898057461,-0.636094391345978,-0.770375192165375,-0.00368131720460951,-0.615144848823547,-0.788405418395996,-0.154155656695366,-0.460174471139908,-0.874342858791351,-0.107303790748119,-0.523965537548065,-0.844953179359436,-0.127369657158852,-0.466418564319611,-0.875345945358276,-0.107303790748119,-0.523965537548065,-0.844953179359436,0.00798038486391306,-0.489377975463867,-0.872035205364227,-0.0312504433095455,-0.45983624458313,-0.887453615665436,-0.154155656695366,-0.460174471139908,-0.874342858791351, +-0.127369657158852,-0.466418564319611,-0.875345945358276,-0.0403476618230343,-0.388832867145538,-0.920424342155457,0.21125303208828,-0.18296192586422,-0.96015465259552,0.0710292756557465,-0.318096905946732,-0.945393621921539,0.00314530031755567,-0.284404307603836,-0.958699107170105,0.0710292756557465,-0.318096905946732,-0.945393621921539,0.21125303208828,-0.18296192586422,-0.96015465259552,0.259190291166306,-0.334127008914948,-0.906189501285553,0.125851094722748,-0.39662104845047,-0.909314632415771,0.259190291166306,-0.334127008914948,-0.906189501285553,0.180786103010178,-0.328919172286987,-0.926891803741455,-0.0403476618230343,-0.388832867145538,-0.920424342155457,0.180786103010178,-0.328919172286987,-0.926891803741455,-0.00484907813370228,-0.279107809066772,-0.96024751663208,-0.357756108045578,-0.165802121162415,-0.918977737426758,-0.500619292259216,-0.350020706653595,-0.791748404502869,-0.336104512214661,-0.296909630298615,-0.893799901008606,-0.452487021684647,-0.168919622898102,-0.875626385211945,-0.357756108045578,-0.165802121162415,-0.918977737426758,-0.222426131367683,0.0358351692557335,-0.974290728569031,-0.222426131367683,0.0358351692557335,-0.974290728569031,-0.198394417762756,0.160096436738968,-0.966958463191986,-0.406203329563141,0.104205772280693,-0.907821476459503,-0.406203329563141,0.104205772280693,-0.907821476459503,-0.198394417762756,0.160096436738968,-0.966958463191986,-0.336818188428879,0.264939486980438,-0.903526723384857,-0.56493878364563,0.442820519208908,-0.69624274969101,-0.596774756908417,0.339052796363831,-0.727257192134857,-0.336818188428879,0.264939486980438,-0.903526723384857,-0.740895748138428,0.543273985385895,-0.394875586032867,-0.805289745330811,0.512339293956757,-0.298356682062149,-0.77251261472702,0.486399739980698,-0.408214956521988,-0.620287358760834,0.454585462808609,-0.639214754104614,-0.77251261472702,0.486399739980698,-0.408214956521988,-0.56493878364563,0.442820519208908,-0.69624274969101,-0.745936155319214,0.568122208118439,-0.34758648276329,-0.843512058258057,0.4429851770401,-0.303729325532913, +-0.805289745330811,0.512339293956757,-0.298356682062149,-0.843512058258057,0.4429851770401,-0.303729325532913,-0.78896164894104,0.473239958286285,-0.391897082328796,-0.861380398273468,0.352451980113983,-0.365788519382477,-0.861380398273468,0.352451980113983,-0.365788519382477,-0.765846371650696,0.404948532581329,-0.499495655298233,-0.839927494525909,0.281056016683578,-0.464251190423965,-0.765846371650696,0.404948532581329,-0.499495655298233,-0.696861386299133,0.366097658872604,-0.616730511188507,-0.839927494525909,0.281056016683578,-0.464251190423965,-0.815672636032104,0.196902856230736,-0.543973565101624,-0.696861386299133,0.366097658872604,-0.616730511188507,-0.667500674724579,0.243331789970398,-0.70372748374939,-0.364416807889938,0.0821376815438271,-0.927606463432312,-0.436853408813477,-0.0104751959443092,-0.899471521377563,-0.448448926210403,0.127977058291435,-0.884598970413208,-0.420646727085114,-0.0272613242268562,-0.906814754009247,-0.436853408813477,-0.0104751959443092,-0.899471521377563,-0.343909412622452,-0.0038625702727586,-0.938994824886322,-0.667500674724579,0.243331789970398,-0.70372748374939,-0.476109117269516,0.260746896266937,-0.83983987569809,-0.593649387359619,0.134959742426872,-0.793325960636139,-0.593649387359619,0.134959742426872,-0.793325960636139,-0.476109117269516,0.260746896266937,-0.83983987569809,-0.448448926210403,0.127977058291435,-0.884598970413208,0.0356921218335629,-0.967829644680023,-0.249061778187752,0.0698400065302849,-0.93700236082077,-0.342270046472549,0.131250098347664,-0.727537393569946,-0.673396408557892,0.274691104888916,-0.121319152414799,-0.95384818315506,0.207055926322937,-0.114383794367313,-0.971619307994843,0.225348249077797,-0.298948049545288,-0.927279949188232,0.156255632638931,0.0143201807513833,-0.987612783908844,0.207055926322937,-0.114383794367313,-0.971619307994843,0.253287672996521,0.0104240877553821,-0.967334747314453,0.354120463132858,-0.438968628644943,-0.825775444507599,0.264453381299973,-0.548283815383911,-0.793378353118896,0.227951779961586,-0.695764601230621,-0.681138336658478, +0.225348249077797,-0.298948049545288,-0.927279949188232,0.360367298126221,-0.346794337034225,-0.865949749946594,0.274691104888916,-0.121319152414799,-0.95384818315506,0.354120463132858,-0.438968628644943,-0.825775444507599,0.360367298126221,-0.346794337034225,-0.865949749946594,0.264453381299973,-0.548283815383911,-0.793378353118896,0.0922555103898048,-0.958398580551147,-0.270112901926041,0.0724783018231392,-0.933188915252686,-0.352001756429672,0.227951779961586,-0.695764601230621,-0.681138336658478,0.0724783018231392,-0.933188915252686,-0.352001756429672,0.0356921218335629,-0.967829644680023,-0.249061778187752,0.131250098347664,-0.727537393569946,-0.673396408557892,-0.501685559749603,0.79159814119339,-0.348832070827484,-0.416987061500549,0.82144170999527,-0.389043867588043,-0.395497590303421,0.847208499908447,-0.354710102081299,-0.636055409908295,0.744522571563721,-0.202779799699783,-0.677653789520264,0.673244059085846,-0.295850694179535,-0.458349913358688,0.83390212059021,-0.307445019483566,-0.458349913358688,0.83390212059021,-0.307445019483566,-0.501685559749603,0.79159814119339,-0.348832070827484,-0.395497590303421,0.847208499908447,-0.354710102081299,-0.807643473148346,-0.458443731069565,-0.370865702629089,-0.613446891307831,-0.646662890911102,-0.45333194732666,-0.851740956306458,-0.361335724592209,-0.379438698291779,-0.76592892408371,-0.554009735584259,-0.326229900121689,-0.807643473148346,-0.458443731069565,-0.370865702629089,-0.916669130325317,-0.268224954605103,-0.296265035867691,-0.613446891307831,-0.646662890911102,-0.45333194732666,-0.336979657411575,-0.843842208385468,-0.417582184076309,-0.376746267080307,-0.760267198085785,-0.529202997684479,-0.376746267080307,-0.760267198085785,-0.529202997684479,-0.180528402328491,-0.789637327194214,-0.586414694786072,-0.261591553688049,-0.734129548072815,-0.626596748828888,-0.158912613987923,-0.737124562263489,-0.656805872917175,-0.261591553688049,-0.734129548072815,-0.626596748828888,-0.165895760059357,-0.760679185390472,-0.627571105957031,-0.172873601317406,-0.772076070308685,-0.611566126346588, +-0.220756128430367,-0.698548376560211,-0.680659055709839,-0.158912613987923,-0.737124562263489,-0.656805872917175,-0.472766548395157,0.302701979875565,-0.827564597129822,-0.415062338113785,0.24864037334919,-0.87515777349472,-0.543102622032166,0.197408646345139,-0.816130638122559,-0.6918004155159,0.364239245653152,-0.623491585254669,-0.472766548395157,0.302701979875565,-0.827564597129822,-0.543102622032166,0.197408646345139,-0.816130638122559,-0.532766938209534,0.421120762825012,-0.734041213989258,-0.6918004155159,0.364239245653152,-0.623491585254669,-0.781006991863251,0.445297122001648,-0.437879472970963,-0.532766938209534,0.421120762825012,-0.734041213989258,-0.781006991863251,0.445297122001648,-0.437879472970963,-0.638454139232636,0.527773439884186,-0.560206472873688,-0.650209128856659,0.668861865997314,-0.360349625349045,-0.491849213838577,0.771722555160522,-0.403148233890533,-0.53892582654953,0.683855295181274,-0.491834044456482,-0.638454139232636,0.527773439884186,-0.560206472873688,-0.730272591114044,0.565440654754639,-0.383377939462662,-0.53892582654953,0.683855295181274,-0.491834044456482,-0.491849213838577,0.771722555160522,-0.403148233890533,-0.43793585896492,0.81645804643631,-0.376308798789978,-0.37638732790947,0.815989971160889,-0.43874004483223,-0.37638732790947,0.815989971160889,-0.43874004483223,-0.395497590303421,0.847208499908447,-0.354710102081299,-0.416987061500549,0.82144170999527,-0.389043867588043,-0.172873601317406,-0.772076070308685,-0.611566126346588,-0.11772446334362,-0.781207859516144,-0.61307018995285,-0.0742841139435768,-0.802858531475067,-0.591523408889771,-0.119069054722786,-0.78232616186142,-0.611382186412811,-0.0742841139435768,-0.802858531475067,-0.591523408889771,-0.0190428737550974,-0.725783348083496,-0.687659680843353,1.95874818018638e-005,-0.692333459854126,-0.7215775847435,-0.119069054722786,-0.78232616186142,-0.611382186412811,-0.0190428737550974,-0.725783348083496,-0.687659680843353,0.103286951780319,-0.599865078926086,-0.793406248092651,0.0890004187822342,-0.54825896024704,-0.831559360027313, +1.95874818018638e-005,-0.692333459854126,-0.7215775847435,0.0346068479120731,-0.594395697116852,-0.803427696228027,0.103286951780319,-0.599865078926086,-0.793406248092651,-0.0190428737550974,-0.725783348083496,-0.687659680843353,-0.0697716623544693,-0.517069816589355,-0.853094696998596,0.0353857055306435,-0.485466241836548,-0.873538911342621,0.0346068479120731,-0.594395697116852,-0.803427696228027,-0.0844644755125046,-0.43591833114624,-0.896013855934143,-0.0762206539511681,-0.385050594806671,-0.919742584228516,0.0353857055306435,-0.485466241836548,-0.873538911342621,-0.0762206539511681,-0.385050594806671,-0.919742584228516,-0.172403454780579,-0.390802562236786,-0.904184758663177,-0.0205107424408197,-0.430645138025284,-0.902288198471069,-0.0205107424408197,-0.430645138025284,-0.902288198471069,-0.172403454780579,-0.390802562236786,-0.904184758663177,-0.0445641949772835,-0.424226880073547,-0.90445864200592,-0.196496665477753,-0.292964220046997,-0.93571400642395,-0.00913565885275602,-0.261105537414551,-0.965266942977905,-0.0445641949772835,-0.424226880073547,-0.90445864200592,-0.00913565885275602,-0.261105537414551,-0.965266942977905,-0.0207536909729242,-0.0509313195943832,-0.998486459255219,0.0440123155713081,-0.18331503868103,-0.982068419456482,0.00483225425705314,-0.052587766200304,-0.998604536056519,0.0726591572165489,-0.233515232801437,-0.969634532928467,0.0440123155713081,-0.18331503868103,-0.982068419456482,-0.0235273726284504,-0.071629673242569,-0.997153699398041,0.0726591572165489,-0.233515232801437,-0.969634532928467,0.00483225425705314,-0.052587766200304,-0.998604536056519,-0.0161028299480677,-0.0856969133019447,-0.996191084384918,-0.0235273726284504,-0.071629673242569,-0.997153699398041,-0.0774524360895157,-0.00953382160514593,-0.996950447559357,-0.0918252021074295,-0.124073207378387,-0.988015115261078,-0.228459894657135,-0.0705416426062584,-0.970994293689728,-0.209853872656822,-0.235933378338814,-0.948839664459229,-0.260690838098526,-0.260020434856415,-0.929747045040131,-0.209853872656822,-0.235933378338814,-0.948839664459229, +-0.24300554394722,-0.0982362851500511,-0.965037703514099,-0.22448356449604,-0.103824622929096,-0.968931078910828,-0.336104512214661,-0.296909630298615,-0.893799901008606,-0.260690838098526,-0.260020434856415,-0.929747045040131,-0.0918252021074295,-0.124073207378387,-0.988015115261078,-0.0807472914457321,-0.0311971306800842,-0.996246218681335,-0.228459894657135,-0.0705416426062584,-0.970994293689728,-0.0774524360895157,-0.00953382160514593,-0.996950447559357,-0.0590034462511539,0.0316192954778671,-0.997756838798523,-0.0501484125852585,0.00828037690371275,-0.998707413673401,-0.0807472914457321,-0.0311971306800842,-0.996246218681335,-0.0501484125852585,0.00828037690371275,-0.998707413673401,-0.13115182518959,0.0322523191571236,-0.990837454795837,-0.0617220811545849,-0.0147126754745841,-0.997984886169434,-0.0479654297232628,-0.114630021154881,-0.992249548435211,-0.222266003489494,-0.0728878304362297,-0.972257733345032,-0.0162550061941147,-0.162318706512451,-0.986604452133179,-0.0518389903008938,-0.170377090573311,-0.984014391899109,-0.0479654297232628,-0.114630021154881,-0.992249548435211,-0.268105000257492,0.0368161015212536,-0.962685883045197,-0.343909412622452,-0.0038625702727586,-0.938994824886322,-0.436853408813477,-0.0104751959443092,-0.899471521377563,-0.222266003489494,-0.0728878304362297,-0.972257733345032,-0.268105000257492,0.0368161015212536,-0.962685883045197,-0.0617220811545849,-0.0147126754745841,-0.997984886169434,0.157662287354469,-0.209822177886963,-0.964944005012512,-0.102551937103271,-0.31008592247963,-0.94516122341156,0.0349362604320049,-0.16810816526413,-0.985149264335632,0.00432160310447216,-0.152928665280342,-0.988227725028992,-0.0518389903008938,-0.170377090573311,-0.984014391899109,-0.0410114526748657,-0.165336534380913,-0.985384106636047,0.00432160310447216,-0.152928665280342,-0.988227725028992,0.145618036389351,-0.149821028113365,-0.977930963039398,0.0349362604320049,-0.16810816526413,-0.985149264335632,0.00314530031755567,-0.284404307603836,-0.958699107170105,-0.102551937103271,-0.31008592247963,-0.94516122341156, +0.157662287354469,-0.209822177886963,-0.964944005012512,0.192894548177719,-0.0978220999240875,-0.976331114768982,0.162005737423897,-0.351618885993958,-0.922018527984619,0.0850290358066559,-0.508052468299866,-0.857118785381317,0.245493248105049,-0.0379306599497795,-0.9686558842659,0.192894548177719,-0.0978220999240875,-0.976331114768982,0.253287672996521,0.0104240877553821,-0.967334747314453,-0.0706677138805389,-0.649297475814819,-0.757244169712067,-0.00368131720460951,-0.615144848823547,-0.788405418395996,-0.0168171636760235,-0.477083504199982,-0.878696978092194,0.00798038486391306,-0.489377975463867,-0.872035205364227,0.0311318524181843,-0.384950011968613,-0.922412037849426,-0.0168171636760235,-0.477083504199982,-0.878696978092194,-0.00368131720460951,-0.615144848823547,-0.788405418395996,0.0178347583860159,-0.663947761058807,-0.747566103935242,0.0850290358066559,-0.508052468299866,-0.857118785381317,-0.0364278592169285,-0.450729846954346,-0.891916751861572,-0.107303790748119,-0.523965537548065,-0.844953179359436,-0.154155656695366,-0.460174471139908,-0.874342858791351,-0.107303790748119,-0.523965537548065,-0.844953179359436,-0.0364278592169285,-0.450729846954346,-0.891916751861572,0.00798038486391306,-0.489377975463867,-0.872035205364227,-0.154155656695366,-0.460174471139908,-0.874342858791351,-0.0403476618230343,-0.388832867145538,-0.920424342155457,-0.00484907813370228,-0.279107809066772,-0.96024751663208,0.255548238754272,-0.137595534324646,-0.956954777240753,0.21125303208828,-0.18296192586422,-0.96015465259552,0.00314530031755567,-0.284404307603836,-0.958699107170105,0.21125303208828,-0.18296192586422,-0.96015465259552,0.232817798852921,-0.195092514157295,-0.952751100063324,0.259190291166306,-0.334127008914948,-0.906189501285553,0.180786103010178,-0.328919172286987,-0.926891803741455,0.259190291166306,-0.334127008914948,-0.906189501285553,0.266075164079666,-0.340619385242462,-0.901766240596771,-0.00484907813370228,-0.279107809066772,-0.96024751663208,0.180786103010178,-0.328919172286987,-0.926891803741455,0.178832039237022,-0.218865305185318,-0.95922726392746, +-0.245287284255028,-0.0627002194523811,-0.967420637607574,-0.357756108045578,-0.165802121162415,-0.918977737426758,-0.336104512214661,-0.296909630298615,-0.893799901008606,-0.245287284255028,-0.0627002194523811,-0.967420637607574,-0.222426131367683,0.0358351692557335,-0.974290728569031,-0.357756108045578,-0.165802121162415,-0.918977737426758,-0.131395816802979,0.119277805089951,-0.984127938747406,-0.198394417762756,0.160096436738968,-0.966958463191986,-0.222426131367683,0.0358351692557335,-0.974290728569031,-0.218779012560844,0.208562731742859,-0.953224658966064,-0.336818188428879,0.264939486980438,-0.903526723384857,-0.198394417762756,0.160096436738968,-0.966958463191986,-0.56493878364563,0.442820519208908,-0.69624274969101,-0.336818188428879,0.264939486980438,-0.903526723384857,-0.411449491977692,0.310043662786484,-0.857077658176422,-0.740895748138428,0.543273985385895,-0.394875586032867,-0.691554725170136,0.633775353431702,-0.346526652574539,-0.805289745330811,0.512339293956757,-0.298356682062149,-0.77251261472702,0.486399739980698,-0.408214956521988,-0.656635820865631,0.442559510469437,-0.610712945461273,-0.740895748138428,0.543273985385895,-0.394875586032867,-0.656635820865631,0.442559510469437,-0.610712945461273,-0.77251261472702,0.486399739980698,-0.408214956521988,-0.620287358760834,0.454585462808609,-0.639214754104614,-0.411449491977692,0.310043662786484,-0.857077658176422,-0.620287358760834,0.454585462808609,-0.639214754104614,-0.56493878364563,0.442820519208908,-0.69624274969101,-0.843512058258057,0.4429851770401,-0.303729325532913,-0.745936155319214,0.568122208118439,-0.34758648276329,-0.78896164894104,0.473239958286285,-0.391897082328796,-0.745936155319214,0.568122208118439,-0.34758648276329,-0.805289745330811,0.512339293956757,-0.298356682062149,-0.691554725170136,0.633775353431702,-0.346526652574539,-0.861380398273468,0.352451980113983,-0.365788519382477,-0.78896164894104,0.473239958286285,-0.391897082328796,-0.765846371650696,0.404948532581329,-0.499495655298233,-0.765846371650696,0.404948532581329,-0.499495655298233, +-0.647131741046906,0.495435118675232,-0.5794517993927,-0.696861386299133,0.366097658872604,-0.616730511188507,-0.667500674724579,0.243331789970398,-0.70372748374939,-0.696861386299133,0.366097658872604,-0.616730511188507,-0.578205645084381,0.364303976297379,-0.730041563510895,-0.268105000257492,0.0368161015212536,-0.962685883045197,-0.436853408813477,-0.0104751959443092,-0.899471521377563,-0.364416807889938,0.0821376815438271,-0.927606463432312,-0.364416807889938,0.0821376815438271,-0.927606463432312,-0.448448926210403,0.127977058291435,-0.884598970413208,-0.326035231351852,0.158533245325089,-0.931970059871674,-0.667500674724579,0.243331789970398,-0.70372748374939,-0.578205645084381,0.364303976297379,-0.730041563510895,-0.476109117269516,0.260746896266937,-0.83983987569809,-0.324995100498199,0.235001936554909,-0.916052460670471,-0.448448926210403,0.127977058291435,-0.884598970413208,-0.476109117269516,0.260746896266937,-0.83983987569809,0.225348249077797,-0.298948049545288,-0.927279949188232,0.207055926322937,-0.114383794367313,-0.971619307994843,0.191930636763573,-0.313331037759781,-0.930046319961548,0.207055926322937,-0.114383794367313,-0.971619307994843,0.156255632638931,0.0143201807513833,-0.987612783908844,0.131335824728012,-0.0654750689864159,-0.989173293113709,0.156255632638931,0.0143201807513833,-0.987612783908844,0.253287672996521,0.0104240877553821,-0.967334747314453,0.192894548177719,-0.0978220999240875,-0.976331114768982,0.186527162790298,-0.904004335403442,-0.384686559438705,0.227951779961586,-0.695764601230621,-0.681138336658478,0.264453381299973,-0.548283815383911,-0.793378353118896,0.225348249077797,-0.298948049545288,-0.927279949188232,0.264453381299973,-0.548283815383911,-0.793378353118896,0.360367298126221,-0.346794337034225,-0.865949749946594,0.0922555103898048,-0.958398580551147,-0.270112901926041,0.227951779961586,-0.695764601230621,-0.681138336658478,0.186527162790298,-0.904004335403442,-0.384686559438705,-0.458349913358688,0.83390212059021,-0.307445019483566,-0.421336263418198,0.868117272853851,-0.262389004230499, +-0.636055409908295,0.744522571563721,-0.202779799699783,-0.458349913358688,0.83390212059021,-0.307445019483566,-0.395497590303421,0.847208499908447,-0.354710102081299,-0.374173998832703,0.861294269561768,-0.34375262260437,-0.613446891307831,-0.646662890911102,-0.45333194732666,-0.807643473148346,-0.458443731069565,-0.370865702629089,-0.577492356300354,-0.741622805595398,-0.341318279504776,-0.76592892408371,-0.554009735584259,-0.326229900121689,-0.577492356300354,-0.741622805595398,-0.341318279504776,-0.807643473148346,-0.458443731069565,-0.370865702629089,-0.613446891307831,-0.646662890911102,-0.45333194732666,-0.577492356300354,-0.741622805595398,-0.341318279504776,-0.336979657411575,-0.843842208385468,-0.417582184076309,-0.336979657411575,-0.843842208385468,-0.417582184076309,-0.20031726360321,-0.855889916419983,-0.476786464452744,-0.376746267080307,-0.760267198085785,-0.529202997684479,-0.376746267080307,-0.760267198085785,-0.529202997684479,-0.20031726360321,-0.855889916419983,-0.476786464452744,-0.180528402328491,-0.789637327194214,-0.586414694786072,-0.261591553688049,-0.734129548072815,-0.626596748828888,-0.180528402328491,-0.789637327194214,-0.586414694786072,-0.165895760059357,-0.760679185390472,-0.627571105957031,-0.158912613987923,-0.737124562263489,-0.656805872917175,-0.165895760059357,-0.760679185390472,-0.627571105957031,-0.172873601317406,-0.772076070308685,-0.611566126346588,-0.759771525859833,0.234358474612236,-0.606484293937683,-0.6918004155159,0.364239245653152,-0.623491585254669,-0.543102622032166,0.197408646345139,-0.816130638122559,-0.781006991863251,0.445297122001648,-0.437879472970963,-0.6918004155159,0.364239245653152,-0.623491585254669,-0.81091433763504,0.393605291843414,-0.433004379272461,-0.781006991863251,0.445297122001648,-0.437879472970963,-0.730272591114044,0.565440654754639,-0.383377939462662,-0.638454139232636,0.527773439884186,-0.560206472873688,-0.650209128856659,0.668861865997314,-0.360349625349045,-0.534122109413147,0.737633466720581,-0.413049966096878,-0.491849213838577,0.771722555160522,-0.403148233890533, +-0.650209128856659,0.668861865997314,-0.360349625349045,-0.53892582654953,0.683855295181274,-0.491834044456482,-0.730272591114044,0.565440654754639,-0.383377939462662,-0.43793585896492,0.81645804643631,-0.376308798789978,-0.491849213838577,0.771722555160522,-0.403148233890533,-0.534122109413147,0.737633466720581,-0.413049966096878,-0.43793585896492,0.81645804643631,-0.376308798789978,-0.395497590303421,0.847208499908447,-0.354710102081299,-0.37638732790947,0.815989971160889,-0.43874004483223,-0.172873601317406,-0.772076070308685,-0.611566126346588,-0.169687449932098,-0.798129558563232,-0.578096091747284,-0.11772446334362,-0.781207859516144,-0.61307018995285,-0.0742841139435768,-0.802858531475067,-0.591523408889771,-0.11772446334362,-0.781207859516144,-0.61307018995285,-0.0623642988502979,-0.740146517753601,-0.669547379016876,-0.0623642988502979,-0.740146517753601,-0.669547379016876,-0.0190428737550974,-0.725783348083496,-0.687659680843353,-0.0742841139435768,-0.802858531475067,-0.591523408889771,1.95874818018638e-005,-0.692333459854126,-0.7215775847435,-0.0190428737550974,-0.725783348083496,-0.687659680843353,0.103286951780319,-0.599865078926086,-0.793406248092651,-0.0852414071559906,-0.606246769428253,-0.790695011615753,0.0346068479120731,-0.594395697116852,-0.803427696228027,-0.0190428737550974,-0.725783348083496,-0.687659680843353,-0.0844644755125046,-0.43591833114624,-0.896013855934143,0.0353857055306435,-0.485466241836548,-0.873538911342621,-0.0697716623544693,-0.517069816589355,-0.853094696998596,-0.0852414071559906,-0.606246769428253,-0.790695011615753,-0.0697716623544693,-0.517069816589355,-0.853094696998596,0.0346068479120731,-0.594395697116852,-0.803427696228027,-0.0844644755125046,-0.43591833114624,-0.896013855934143,-0.203402057290077,-0.340582638978958,-0.917949318885803,-0.0762206539511681,-0.385050594806671,-0.919742584228516,-0.172403454780579,-0.390802562236786,-0.904184758663177,-0.0762206539511681,-0.385050594806671,-0.919742584228516,-0.239040344953537,-0.324421375989914,-0.915210545063019,-0.196496665477753,-0.292964220046997,-0.93571400642395, +-0.0445641949772835,-0.424226880073547,-0.90445864200592,-0.172403454780579,-0.390802562236786,-0.904184758663177,-0.196496665477753,-0.292964220046997,-0.93571400642395,-0.164280071854591,-0.126669004559517,-0.978246867656708,-0.00913565885275602,-0.261105537414551,-0.965266942977905,-0.0751438811421394,-0.0452516637742519,-0.996145367622375,-0.0207536909729242,-0.0509313195943832,-0.998486459255219,-0.00913565885275602,-0.261105537414551,-0.965266942977905,0.00483225425705314,-0.052587766200304,-0.998604536056519,0.0440123155713081,-0.18331503868103,-0.982068419456482,-0.0207536909729242,-0.0509313195943832,-0.998486459255219,0.00483225425705314,-0.052587766200304,-0.998604536056519,-0.0444696955382824,-0.00987185910344124,-0.998961925506592,-0.0235273726284504,-0.071629673242569,-0.997153699398041,-0.0235273726284504,-0.071629673242569,-0.997153699398041,-0.0444696955382824,-0.00987185910344124,-0.998961925506592,-0.0774524360895157,-0.00953382160514593,-0.996950447559357,-0.228459894657135,-0.0705416426062584,-0.970994293689728,-0.24300554394722,-0.0982362851500511,-0.965037703514099,-0.209853872656822,-0.235933378338814,-0.948839664459229,-0.260690838098526,-0.260020434856415,-0.929747045040131,-0.24300554394722,-0.0982362851500511,-0.965037703514099,-0.182025730609894,-0.00693915178999305,-0.983269214630127,-0.22448356449604,-0.103824622929096,-0.968931078910828,-0.245287284255028,-0.0627002194523811,-0.967420637607574,-0.336104512214661,-0.296909630298615,-0.893799901008606,-0.22448356449604,-0.103824622929096,-0.968931078910828,-0.260690838098526,-0.260020434856415,-0.929747045040131,-0.182025730609894,-0.00693915178999305,-0.983269214630127,-0.13115182518959,0.0322523191571236,-0.990837454795837,-0.228459894657135,-0.0705416426062584,-0.970994293689728,-0.0807472914457321,-0.0311971306800842,-0.996246218681335,-0.0590034462511539,0.0316192954778671,-0.997756838798523,-0.0774524360895157,-0.00953382160514593,-0.996950447559357,0.0573054999113083,-0.00874202977865934,-0.998318374156952,-0.0590034462511539,0.0316192954778671,-0.997756838798523, +-0.13115182518959,0.0322523191571236,-0.990837454795837,-0.0501484125852585,0.00828037690371275,-0.998707413673401,-0.0617220811545849,-0.0147126754745841,-0.997984886169434,0.0184726789593697,-0.0227924231439829,-0.999569475650787,-0.0479654297232628,-0.114630021154881,-0.992249548435211,-0.0162550061941147,-0.162318706512451,-0.986604452133179,-0.0410114526748657,-0.165336534380913,-0.985384106636047,-0.0518389903008938,-0.170377090573311,-0.984014391899109,-0.0479654297232628,-0.114630021154881,-0.992249548435211,0.0167144797742367,-0.0701036006212235,-0.997399628162384,-0.0162550061941147,-0.162318706512451,-0.986604452133179,-0.0813260823488235,0.0236025582998991,-0.996407985687256,-0.0617220811545849,-0.0147126754745841,-0.997984886169434,-0.268105000257492,0.0368161015212536,-0.962685883045197,0.157662287354469,-0.209822177886963,-0.964944005012512,0.0349362604320049,-0.16810816526413,-0.985149264335632,0.203319996595383,-0.190209403634071,-0.960458874702454,0.00432160310447216,-0.152928665280342,-0.988227725028992,-0.0410114526748657,-0.165336534380913,-0.985384106636047,-0.0162550061941147,-0.162318706512451,-0.986604452133179,0.145618036389351,-0.149821028113365,-0.977930963039398,0.00432160310447216,-0.152928665280342,-0.988227725028992,0.0658976137638092,-0.113201797008514,-0.991384267807007,0.0349362604320049,-0.16810816526413,-0.985149264335632,0.145618036389351,-0.149821028113365,-0.977930963039398,0.203319996595383,-0.190209403634071,-0.960458874702454,0.255548238754272,-0.137595534324646,-0.956954777240753,0.00314530031755567,-0.284404307603836,-0.958699107170105,0.157662287354469,-0.209822177886963,-0.964944005012512,0.192894548177719,-0.0978220999240875,-0.976331114768982,0.0850290358066559,-0.508052468299866,-0.857118785381317,0.146075040102005,-0.16620035469532,-0.975212514400482,-0.0706677138805389,-0.649297475814819,-0.757244169712067,0.0178347583860159,-0.663947761058807,-0.747566103935242,-0.00368131720460951,-0.615144848823547,-0.788405418395996,-0.0706677138805389,-0.649297475814819,-0.757244169712067, +-0.0168171636760235,-0.477083504199982,-0.878696978092194,-0.0834152027964592,-0.564619362354279,-0.821125268936157,0.00798038486391306,-0.489377975463867,-0.872035205364227,0.122175946831703,-0.457560032606125,-0.880744993686676,0.0311318524181843,-0.384950011968613,-0.922412037849426,-0.0834152027964592,-0.564619362354279,-0.821125268936157,-0.0168171636760235,-0.477083504199982,-0.878696978092194,0.0311318524181843,-0.384950011968613,-0.922412037849426,0.0850290358066559,-0.508052468299866,-0.857118785381317,0.0178347583860159,-0.663947761058807,-0.747566103935242,0.0391580164432526,-0.42451611161232,-0.904573142528534,-0.154155656695366,-0.460174471139908,-0.874342858791351,-0.00484907813370228,-0.279107809066772,-0.96024751663208,-0.0364278592169285,-0.450729846954346,-0.891916751861572,0.112181447446346,-0.433447062969208,-0.894169330596924,0.00798038486391306,-0.489377975463867,-0.872035205364227,-0.0364278592169285,-0.450729846954346,-0.891916751861572,0.21125303208828,-0.18296192586422,-0.96015465259552,0.255548238754272,-0.137595534324646,-0.956954777240753,0.265062838792801,-0.0669997856020927,-0.961900532245636,0.21125303208828,-0.18296192586422,-0.96015465259552,0.263653069734573,-0.0711859986186028,-0.961987257003784,0.232817798852921,-0.195092514157295,-0.952751100063324,0.201704472303391,-0.345803797245026,-0.916370511054993,0.259190291166306,-0.334127008914948,-0.906189501285553,0.232817798852921,-0.195092514157295,-0.952751100063324,0.266075164079666,-0.340619385242462,-0.901766240596771,0.259190291166306,-0.334127008914948,-0.906189501285553,0.201704472303391,-0.345803797245026,-0.916370511054993,0.180786103010178,-0.328919172286987,-0.926891803741455,0.266075164079666,-0.340619385242462,-0.901766240596771,0.178832039237022,-0.218865305185318,-0.95922726392746,0.0953719988465309,-0.138965174555779,-0.985694050788879,-0.00484907813370228,-0.279107809066772,-0.96024751663208,0.178832039237022,-0.218865305185318,-0.95922726392746,-0.245287284255028,-0.0627002194523811,-0.967420637607574,-0.160243883728981,0.0723292678594589,-0.984423875808716, +-0.222426131367683,0.0358351692557335,-0.974290728569031,-0.114033095538616,0.164611279964447,-0.979744613170624,-0.198394417762756,0.160096436738968,-0.966958463191986,-0.131395816802979,0.119277805089951,-0.984127938747406,-0.222426131367683,0.0358351692557335,-0.974290728569031,-0.160243883728981,0.0723292678594589,-0.984423875808716,-0.131395816802979,0.119277805089951,-0.984127938747406,-0.411449491977692,0.310043662786484,-0.857077658176422,-0.336818188428879,0.264939486980438,-0.903526723384857,-0.218779012560844,0.208562731742859,-0.953224658966064,-0.198394417762756,0.160096436738968,-0.966958463191986,-0.114033095538616,0.164611279964447,-0.979744613170624,-0.218779012560844,0.208562731742859,-0.953224658966064,-0.740895748138428,0.543273985385895,-0.394875586032867,-0.606659531593323,0.593234717845917,-0.529184997081757,-0.691554725170136,0.633775353431702,-0.346526652574539,-0.740895748138428,0.543273985385895,-0.394875586032867,-0.656635820865631,0.442559510469437,-0.610712945461273,-0.606659531593323,0.593234717845917,-0.529184997081757,-0.656635820865631,0.442559510469437,-0.610712945461273,-0.620287358760834,0.454585462808609,-0.639214754104614,-0.411449491977692,0.310043662786484,-0.857077658176422,-0.745936155319214,0.568122208118439,-0.34758648276329,-0.66919994354248,0.575269222259521,-0.470358073711395,-0.78896164894104,0.473239958286285,-0.391897082328796,-0.633764266967773,0.662909746170044,-0.398614317178726,-0.745936155319214,0.568122208118439,-0.34758648276329,-0.691554725170136,0.633775353431702,-0.346526652574539,-0.78896164894104,0.473239958286285,-0.391897082328796,-0.714402079582214,0.493717908859253,-0.495855093002319,-0.765846371650696,0.404948532581329,-0.499495655298233,-0.714402079582214,0.493717908859253,-0.495855093002319,-0.647131741046906,0.495435118675232,-0.5794517993927,-0.765846371650696,0.404948532581329,-0.499495655298233,-0.553396463394165,0.483470737934113,-0.678239047527313,-0.696861386299133,0.366097658872604,-0.616730511188507,-0.647131741046906,0.495435118675232,-0.5794517993927, +-0.553396463394165,0.483470737934113,-0.678239047527313,-0.578205645084381,0.364303976297379,-0.730041563510895,-0.696861386299133,0.366097658872604,-0.616730511188507,-0.283211201429367,0.1460250467062,-0.947875499725342,-0.268105000257492,0.0368161015212536,-0.962685883045197,-0.364416807889938,0.0821376815438271,-0.927606463432312,-0.324995100498199,0.235001936554909,-0.916052460670471,-0.326035231351852,0.158533245325089,-0.931970059871674,-0.448448926210403,0.127977058291435,-0.884598970413208,-0.283211201429367,0.1460250467062,-0.947875499725342,-0.364416807889938,0.0821376815438271,-0.927606463432312,-0.326035231351852,0.158533245325089,-0.931970059871674,-0.476109117269516,0.260746896266937,-0.83983987569809,-0.578205645084381,0.364303976297379,-0.730041563510895,-0.459699004888535,0.394094407558441,-0.795843183994293,-0.324995100498199,0.235001936554909,-0.916052460670471,-0.476109117269516,0.260746896266937,-0.83983987569809,-0.343940824270248,0.322828650474548,-0.881751775741577,0.191930636763573,-0.313331037759781,-0.930046319961548,0.207055926322937,-0.114383794367313,-0.971619307994843,0.142517536878586,-0.206394657492638,-0.968034029006958,0.191930636763573,-0.313331037759781,-0.930046319961548,0.141881495714188,-0.673281848430634,-0.725645244121552,0.225348249077797,-0.298948049545288,-0.927279949188232,0.0831990912556648,0.0253259371966124,-0.996211051940918,0.131335824728012,-0.0654750689864159,-0.989173293113709,0.156255632638931,0.0143201807513833,-0.987612783908844,0.131335824728012,-0.0654750689864159,-0.989173293113709,0.142517536878586,-0.206394657492638,-0.968034029006958,0.207055926322937,-0.114383794367313,-0.971619307994843,0.192894548177719,-0.0978220999240875,-0.976331114768982,0.146075040102005,-0.16620035469532,-0.975212514400482,0.156255632638931,0.0143201807513833,-0.987612783908844,0.0728467330336571,-0.881653606891632,-0.466240465641022,0.186527162790298,-0.904004335403442,-0.384686559438705,0.264453381299973,-0.548283815383911,-0.793378353118896,0.264453381299973,-0.548283815383911,-0.793378353118896, +0.225348249077797,-0.298948049545288,-0.927279949188232,0.122711107134819,-0.699450731277466,-0.70406711101532,-0.458349913358688,0.83390212059021,-0.307445019483566,-0.374173998832703,0.861294269561768,-0.34375262260437,-0.421336263418198,0.868117272853851,-0.262389004230499,-0.395497590303421,0.847208499908447,-0.354710102081299,-0.427302569150925,0.814997375011444,-0.391397058963776,-0.374173998832703,0.861294269561768,-0.34375262260437,-0.536337435245514,-0.78458559513092,-0.311074823141098,-0.577492356300354,-0.741622805595398,-0.341318279504776,-0.76592892408371,-0.554009735584259,-0.326229900121689,-0.577492356300354,-0.741622805595398,-0.341318279504776,-0.294881999492645,-0.915363430976868,-0.274142742156982,-0.336979657411575,-0.843842208385468,-0.417582184076309,-0.199730783700943,-0.920633256435394,-0.335472702980042,-0.20031726360321,-0.855889916419983,-0.476786464452744,-0.336979657411575,-0.843842208385468,-0.417582184076309,-0.20031726360321,-0.855889916419983,-0.476786464452744,-0.157773688435555,-0.858623385429382,-0.487722456455231,-0.180528402328491,-0.789637327194214,-0.586414694786072,-0.165895760059357,-0.760679185390472,-0.627571105957031,-0.180528402328491,-0.789637327194214,-0.586414694786072,-0.222239792346954,-0.767781734466553,-0.600933015346527,-0.172873601317406,-0.772076070308685,-0.611566126346588,-0.165895760059357,-0.760679185390472,-0.627571105957031,-0.169687449932098,-0.798129558563232,-0.578096091747284,-0.759771525859833,0.234358474612236,-0.606484293937683,-0.81091433763504,0.393605291843414,-0.433004379272461,-0.6918004155159,0.364239245653152,-0.623491585254669,-0.781006991863251,0.445297122001648,-0.437879472970963,-0.81091433763504,0.393605291843414,-0.433004379272461,-0.799996376037598,0.417932242155075,-0.430509328842163,-0.781006991863251,0.445297122001648,-0.437879472970963,-0.761210083961487,0.522965848445892,-0.383491516113281,-0.730272591114044,0.565440654754639,-0.383377939462662,-0.629960119724274,0.597659707069397,-0.49593648314476,-0.534122109413147,0.737633466720581,-0.413049966096878, +-0.650209128856659,0.668861865997314,-0.360349625349045,-0.730272591114044,0.565440654754639,-0.383377939462662,-0.761210083961487,0.522965848445892,-0.383491516113281,-0.650209128856659,0.668861865997314,-0.360349625349045,-0.43793585896492,0.81645804643631,-0.376308798789978,-0.534122109413147,0.737633466720581,-0.413049966096878,-0.427302569150925,0.814997375011444,-0.391397058963776,-0.43793585896492,0.81645804643631,-0.376308798789978,-0.427302569150925,0.814997375011444,-0.391397058963776,-0.395497590303421,0.847208499908447,-0.354710102081299,-0.11772446334362,-0.781207859516144,-0.61307018995285,-0.169687449932098,-0.798129558563232,-0.578096091747284,-0.246167242527008,-0.743577599525452,-0.621686398983002,-0.11772446334362,-0.781207859516144,-0.61307018995285,-0.200573816895485,-0.636238574981689,-0.744963407516479,-0.0623642988502979,-0.740146517753601,-0.669547379016876,-0.0852414071559906,-0.606246769428253,-0.790695011615753,-0.0190428737550974,-0.725783348083496,-0.687659680843353,-0.0623642988502979,-0.740146517753601,-0.669547379016876,-0.0844644755125046,-0.43591833114624,-0.896013855934143,-0.0697716623544693,-0.517069816589355,-0.853094696998596,-0.191542193293571,-0.445947498083115,-0.874323904514313,-0.160797119140625,-0.497621297836304,-0.852359771728516,-0.0697716623544693,-0.517069816589355,-0.853094696998596,-0.0852414071559906,-0.606246769428253,-0.790695011615753,-0.0844644755125046,-0.43591833114624,-0.896013855934143,-0.191542193293571,-0.445947498083115,-0.874323904514313,-0.203402057290077,-0.340582638978958,-0.917949318885803,-0.239040344953537,-0.324421375989914,-0.915210545063019,-0.0762206539511681,-0.385050594806671,-0.919742584228516,-0.203402057290077,-0.340582638978958,-0.917949318885803,-0.298151820898056,-0.308402717113495,-0.903323352336884,-0.172403454780579,-0.390802562236786,-0.904184758663177,-0.239040344953537,-0.324421375989914,-0.915210545063019,-0.196496665477753,-0.292964220046997,-0.93571400642395,-0.172403454780579,-0.390802562236786,-0.904184758663177,-0.298151820898056,-0.308402717113495,-0.903323352336884, +-0.164280071854591,-0.126669004559517,-0.978246867656708,-0.196496665477753,-0.292964220046997,-0.93571400642395,-0.350218594074249,-0.156738519668579,-0.923460841178894,-0.164280071854591,-0.126669004559517,-0.978246867656708,-0.0751438811421394,-0.0452516637742519,-0.996145367622375,-0.00913565885275602,-0.261105537414551,-0.965266942977905,-0.143133521080017,-0.042386882007122,-0.988795280456543,-0.0207536909729242,-0.0509313195943832,-0.998486459255219,-0.0751438811421394,-0.0452516637742519,-0.996145367622375,0.00483225425705314,-0.052587766200304,-0.998604536056519,-0.0207536909729242,-0.0509313195943832,-0.998486459255219,-0.0254548210650682,-0.0492482110857964,-0.998462080955505,-0.0254548210650682,-0.0492482110857964,-0.998462080955505,-0.0444696955382824,-0.00987185910344124,-0.998961925506592,0.00483225425705314,-0.052587766200304,-0.998604536056519,0.0467745400965214,-0.075939767062664,-0.996014654636383,-0.0774524360895157,-0.00953382160514593,-0.996950447559357,-0.0444696955382824,-0.00987185910344124,-0.998961925506592,-0.2515889108181,0.0456525459885597,-0.966756820678711,-0.24300554394722,-0.0982362851500511,-0.965037703514099,-0.228459894657135,-0.0705416426062584,-0.970994293689728,-0.147148311138153,0.106895342469215,-0.983321249485016,-0.182025730609894,-0.00693915178999305,-0.983269214630127,-0.24300554394722,-0.0982362851500511,-0.965037703514099,-0.22448356449604,-0.103824622929096,-0.968931078910828,-0.160243883728981,0.0723292678594589,-0.984423875808716,-0.245287284255028,-0.0627002194523811,-0.967420637607574,-0.160243883728981,0.0723292678594589,-0.984423875808716,-0.22448356449604,-0.103824622929096,-0.968931078910828,-0.182025730609894,-0.00693915178999305,-0.983269214630127,-0.13115182518959,0.0322523191571236,-0.990837454795837,-0.248890444636345,0.0163014866411686,-0.96839439868927,-0.228459894657135,-0.0705416426062584,-0.970994293689728,0.0573054999113083,-0.00874202977865934,-0.998318374156952,-0.0774524360895157,-0.00953382160514593,-0.996950447559357,0.0467745400965214,-0.075939767062664,-0.996014654636383, +0.0573054999113083,-0.00874202977865934,-0.998318374156952,0.0493968948721886,-0.0242191702127457,-0.998485505580902,-0.0590034462511539,0.0316192954778671,-0.997756838798523,-0.13115182518959,0.0322523191571236,-0.990837454795837,-0.0590034462511539,0.0316192954778671,-0.997756838798523,-0.0902249440550804,-0.0188603047281504,-0.995742797851563,0.0184726789593697,-0.0227924231439829,-0.999569475650787,-0.0617220811545849,-0.0147126754745841,-0.997984886169434,0.082203134894371,0.00789925642311573,-0.996584236621857,-0.0479654297232628,-0.114630021154881,-0.992249548435211,0.0184726789593697,-0.0227924231439829,-0.999569475650787,0.0167144797742367,-0.0701036006212235,-0.997399628162384,0.0658976137638092,-0.113201797008514,-0.991384267807007,-0.0162550061941147,-0.162318706512451,-0.986604452133179,0.0167144797742367,-0.0701036006212235,-0.997399628162384,-0.0813260823488235,0.0236025582998991,-0.996407985687256,0.0203995238989592,-0.0629357621073723,-0.997808992862701,-0.0617220811545849,-0.0147126754745841,-0.997984886169434,-0.268105000257492,0.0368161015212536,-0.962685883045197,-0.170834884047508,0.130070745944977,-0.976676464080811,-0.0813260823488235,0.0236025582998991,-0.996407985687256,0.321150422096252,-0.202797129750252,-0.925059795379639,0.157662287354469,-0.209822177886963,-0.964944005012512,0.203319996595383,-0.190209403634071,-0.960458874702454,0.00432160310447216,-0.152928665280342,-0.988227725028992,-0.0162550061941147,-0.162318706512451,-0.986604452133179,0.0658976137638092,-0.113201797008514,-0.991384267807007,0.145618036389351,-0.149821028113365,-0.977930963039398,0.0658976137638092,-0.113201797008514,-0.991384267807007,0.174687162041664,-0.10637478530407,-0.978860914707184,0.236573576927185,-0.171604290604591,-0.956339240074158,0.203319996595383,-0.190209403634071,-0.960458874702454,0.145618036389351,-0.149821028113365,-0.977930963039398,0.255548238754272,-0.137595534324646,-0.956954777240753,0.157662287354469,-0.209822177886963,-0.964944005012512,0.321150422096252,-0.202797129750252,-0.925059795379639, +0.0850290358066559,-0.508052468299866,-0.857118785381317,0.0391580164432526,-0.42451611161232,-0.904573142528534,0.146075040102005,-0.16620035469532,-0.975212514400482,-0.00722312880679965,-0.500436365604401,-0.865743100643158,0.0178347583860159,-0.663947761058807,-0.747566103935242,-0.0706677138805389,-0.649297475814819,-0.757244169712067,-0.0706677138805389,-0.649297475814819,-0.757244169712067,-0.0834152027964592,-0.564619362354279,-0.821125268936157,-0.0926814898848534,-0.711661398410797,-0.696382105350494,0.00798038486391306,-0.489377975463867,-0.872035205364227,0.112181447446346,-0.433447062969208,-0.894169330596924,0.122175946831703,-0.457560032606125,-0.880744993686676,0.122175946831703,-0.457560032606125,-0.880744993686676,0.100057810544968,-0.396382659673691,-0.912616610527039,0.0311318524181843,-0.384950011968613,-0.922412037849426,-0.0834152027964592,-0.564619362354279,-0.821125268936157,0.0311318524181843,-0.384950011968613,-0.922412037849426,-0.0018912460654974,-0.491617769002914,-0.870809018611908,-0.00722312880679965,-0.500436365604401,-0.865743100643158,0.0391580164432526,-0.42451611161232,-0.904573142528534,0.0178347583860159,-0.663947761058807,-0.747566103935242,0.0919434279203415,-0.218961834907532,-0.971391797065735,-0.0364278592169285,-0.450729846954346,-0.891916751861572,-0.00484907813370228,-0.279107809066772,-0.96024751663208,0.112181447446346,-0.433447062969208,-0.894169330596924,-0.0364278592169285,-0.450729846954346,-0.891916751861572,0.0919434279203415,-0.218961834907532,-0.971391797065735,0.265062838792801,-0.0669997856020927,-0.961900532245636,0.255548238754272,-0.137595534324646,-0.956954777240753,0.273538738489151,-0.0910723283886909,-0.957539737224579,0.263653069734573,-0.0711859986186028,-0.961987257003784,0.21125303208828,-0.18296192586422,-0.96015465259552,0.265062838792801,-0.0669997856020927,-0.961900532245636,0.263653069734573,-0.0711859986186028,-0.961987257003784,0.137686893343925,-0.0114949056878686,-0.990409076213837,0.232817798852921,-0.195092514157295,-0.952751100063324, +0.201704472303391,-0.345803797245026,-0.916370511054993,0.232817798852921,-0.195092514157295,-0.952751100063324,0.0651300996541977,-0.215705081820488,-0.974283993244171,0.201704472303391,-0.345803797245026,-0.916370511054993,0.131823047995567,-0.363414436578751,-0.922254025936127,0.266075164079666,-0.340619385242462,-0.901766240596771,0.189078643918037,-0.27040496468544,-0.943996965885162,0.178832039237022,-0.218865305185318,-0.95922726392746,0.266075164079666,-0.340619385242462,-0.901766240596771,0.0919434279203415,-0.218961834907532,-0.971391797065735,-0.00484907813370228,-0.279107809066772,-0.96024751663208,0.0953719988465309,-0.138965174555779,-0.985694050788879,0.150959089398384,-0.174802199006081,-0.972962200641632,0.0953719988465309,-0.138965174555779,-0.985694050788879,0.178832039237022,-0.218865305185318,-0.95922726392746,-0.10939610004425,0.165668532252312,-0.980095088481903,-0.114033095538616,0.164611279964447,-0.979744613170624,-0.131395816802979,0.119277805089951,-0.984127938747406,-0.10939610004425,0.165668532252312,-0.980095088481903,-0.131395816802979,0.119277805089951,-0.984127938747406,-0.160243883728981,0.0723292678594589,-0.984423875808716,-0.426770925521851,0.4008749127388,-0.810657620429993,-0.411449491977692,0.310043662786484,-0.857077658176422,-0.218779012560844,0.208562731742859,-0.953224658966064,-0.114033095538616,0.164611279964447,-0.979744613170624,-0.142204597592354,0.225137546658516,-0.963893592357636,-0.218779012560844,0.208562731742859,-0.953224658966064,-0.606659531593323,0.593234717845917,-0.529184997081757,-0.558854937553406,0.74226576089859,-0.369760096073151,-0.691554725170136,0.633775353431702,-0.346526652574539,-0.606659531593323,0.593234717845917,-0.529184997081757,-0.656635820865631,0.442559510469437,-0.610712945461273,-0.426770925521851,0.4008749127388,-0.810657620429993,-0.426770925521851,0.4008749127388,-0.810657620429993,-0.656635820865631,0.442559510469437,-0.610712945461273,-0.411449491977692,0.310043662786484,-0.857077658176422,-0.745936155319214,0.568122208118439,-0.34758648276329, +-0.633764266967773,0.662909746170044,-0.398614317178726,-0.66919994354248,0.575269222259521,-0.470358073711395,-0.78896164894104,0.473239958286285,-0.391897082328796,-0.66919994354248,0.575269222259521,-0.470358073711395,-0.714402079582214,0.493717908859253,-0.495855093002319,-0.589568078517914,0.729704320430756,-0.346324682235718,-0.633764266967773,0.662909746170044,-0.398614317178726,-0.691554725170136,0.633775353431702,-0.346526652574539,-0.714402079582214,0.493717908859253,-0.495855093002319,-0.66919994354248,0.575269222259521,-0.470358073711395,-0.647131741046906,0.495435118675232,-0.5794517993927,-0.553396463394165,0.483470737934113,-0.678239047527313,-0.647131741046906,0.495435118675232,-0.5794517993927,-0.580258965492249,0.566474258899689,-0.585155010223389,-0.553396463394165,0.483470737934113,-0.678239047527313,-0.459699004888535,0.394094407558441,-0.795843183994293,-0.578205645084381,0.364303976297379,-0.730041563510895,-0.268105000257492,0.0368161015212536,-0.962685883045197,-0.283211201429367,0.1460250467062,-0.947875499725342,-0.170834884047508,0.130070745944977,-0.976676464080811,-0.324995100498199,0.235001936554909,-0.916052460670471,-0.216944545507431,0.245095402002335,-0.944914400577545,-0.326035231351852,0.158533245325089,-0.931970059871674,-0.326035231351852,0.158533245325089,-0.931970059871674,-0.216944545507431,0.245095402002335,-0.944914400577545,-0.283211201429367,0.1460250467062,-0.947875499725342,-0.343940824270248,0.322828650474548,-0.881751775741577,-0.476109117269516,0.260746896266937,-0.83983987569809,-0.459699004888535,0.394094407558441,-0.795843183994293,-0.324995100498199,0.235001936554909,-0.916052460670471,-0.343940824270248,0.322828650474548,-0.881751775741577,-0.238716408610344,0.3423812687397,-0.908729553222656,0.141851052641869,-0.444758206605911,-0.88434624671936,0.191930636763573,-0.313331037759781,-0.930046319961548,0.142517536878586,-0.206394657492638,-0.968034029006958,0.141881495714188,-0.673281848430634,-0.725645244121552,0.191930636763573,-0.313331037759781,-0.930046319961548, +0.200125440955162,-0.677185416221619,-0.708074569702148,0.122711107134819,-0.699450731277466,-0.70406711101532,0.225348249077797,-0.298948049545288,-0.927279949188232,0.141881495714188,-0.673281848430634,-0.725645244121552,0.0870144739747047,-0.0954918339848518,-0.991619765758514,0.131335824728012,-0.0654750689864159,-0.989173293113709,0.0831990912556648,0.0253259371966124,-0.996211051940918,0.0831990912556648,0.0253259371966124,-0.996211051940918,0.156255632638931,0.0143201807513833,-0.987612783908844,0.0628653913736343,-0.102683618664742,-0.992725491523743,0.0870144739747047,-0.0954918339848518,-0.991619765758514,0.142517536878586,-0.206394657492638,-0.968034029006958,0.131335824728012,-0.0654750689864159,-0.989173293113709,0.0628653913736343,-0.102683618664742,-0.992725491523743,0.156255632638931,0.0143201807513833,-0.987612783908844,0.146075040102005,-0.16620035469532,-0.975212514400482,0.264453381299973,-0.548283815383911,-0.793378353118896,0.122711107134819,-0.699450731277466,-0.70406711101532,0.0728467330336571,-0.881653606891632,-0.466240465641022,-0.421336263418198,0.868117272853851,-0.262389004230499,-0.374173998832703,0.861294269561768,-0.34375262260437,-0.370559513568878,0.887181878089905,-0.274943470954895,-0.435238867998123,0.814061880111694,-0.384538978338242,-0.374173998832703,0.861294269561768,-0.34375262260437,-0.427302569150925,0.814997375011444,-0.391397058963776,-0.577492356300354,-0.741622805595398,-0.341318279504776,-0.536337435245514,-0.78458559513092,-0.311074823141098,-0.294881999492645,-0.915363430976868,-0.274142742156982,-0.294881999492645,-0.915363430976868,-0.274142742156982,-0.199730783700943,-0.920633256435394,-0.335472702980042,-0.336979657411575,-0.843842208385468,-0.417582184076309,-0.20031726360321,-0.855889916419983,-0.476786464452744,-0.199730783700943,-0.920633256435394,-0.335472702980042,-0.157773688435555,-0.858623385429382,-0.487722456455231,-0.225884765386581,-0.783402144908905,-0.579013764858246,-0.180528402328491,-0.789637327194214,-0.586414694786072,-0.157773688435555,-0.858623385429382,-0.487722456455231, +-0.225884765386581,-0.783402144908905,-0.579013764858246,-0.222239792346954,-0.767781734466553,-0.600933015346527,-0.180528402328491,-0.789637327194214,-0.586414694786072,-0.222239792346954,-0.767781734466553,-0.600933015346527,-0.169687449932098,-0.798129558563232,-0.578096091747284,-0.165895760059357,-0.760679185390472,-0.627571105957031,-0.759771525859833,0.234358474612236,-0.606484293937683,-0.840643644332886,0.291518151760101,-0.45643761754036,-0.81091433763504,0.393605291843414,-0.433004379272461,-0.799996376037598,0.417932242155075,-0.430509328842163,-0.81091433763504,0.393605291843414,-0.433004379272461,-0.840643644332886,0.291518151760101,-0.45643761754036,-0.761210083961487,0.522965848445892,-0.383491516113281,-0.781006991863251,0.445297122001648,-0.437879472970963,-0.799996376037598,0.417932242155075,-0.430509328842163,-0.534122109413147,0.737633466720581,-0.413049966096878,-0.629960119724274,0.597659707069397,-0.49593648314476,-0.530039548873901,0.704517364501953,-0.471924990415573,-0.629960119724274,0.597659707069397,-0.49593648314476,-0.650209128856659,0.668861865997314,-0.360349625349045,-0.761210083961487,0.522965848445892,-0.383491516113281,-0.427302569150925,0.814997375011444,-0.391397058963776,-0.534122109413147,0.737633466720581,-0.413049966096878,-0.435238867998123,0.814061880111694,-0.384538978338242,-0.303867101669312,-0.746460556983948,-0.591997683048248,-0.246167242527008,-0.743577599525452,-0.621686398983002,-0.169687449932098,-0.798129558563232,-0.578096091747284,-0.11772446334362,-0.781207859516144,-0.61307018995285,-0.246167242527008,-0.743577599525452,-0.621686398983002,-0.200573816895485,-0.636238574981689,-0.744963407516479,-0.200573816895485,-0.636238574981689,-0.744963407516479,-0.0852414071559906,-0.606246769428253,-0.790695011615753,-0.0623642988502979,-0.740146517753601,-0.669547379016876,-0.191542193293571,-0.445947498083115,-0.874323904514313,-0.0697716623544693,-0.517069816589355,-0.853094696998596,-0.160797119140625,-0.497621297836304,-0.852359771728516,-0.160797119140625,-0.497621297836304,-0.852359771728516, +-0.0852414071559906,-0.606246769428253,-0.790695011615753,-0.169943541288376,-0.498243600130081,-0.850219011306763,-0.191542193293571,-0.445947498083115,-0.874323904514313,-0.189662843942642,-0.407565414905548,-0.89326274394989,-0.203402057290077,-0.340582638978958,-0.917949318885803,-0.254730850458145,-0.260599046945572,-0.93123584985733,-0.239040344953537,-0.324421375989914,-0.915210545063019,-0.203402057290077,-0.340582638978958,-0.917949318885803,-0.298151820898056,-0.308402717113495,-0.903323352336884,-0.239040344953537,-0.324421375989914,-0.915210545063019,-0.339684456586838,-0.249061316251755,-0.906963527202606,-0.350218594074249,-0.156738519668579,-0.923460841178894,-0.196496665477753,-0.292964220046997,-0.93571400642395,-0.298151820898056,-0.308402717113495,-0.903323352336884,-0.164280071854591,-0.126669004559517,-0.978246867656708,-0.350218594074249,-0.156738519668579,-0.923460841178894,-0.228182479739189,-0.0286078918725252,-0.973197937011719,-0.228182479739189,-0.0286078918725252,-0.973197937011719,-0.0751438811421394,-0.0452516637742519,-0.996145367622375,-0.164280071854591,-0.126669004559517,-0.978246867656708,-0.0254548210650682,-0.0492482110857964,-0.998462080955505,-0.0207536909729242,-0.0509313195943832,-0.998486459255219,-0.143133521080017,-0.042386882007122,-0.988795280456543,-0.228182479739189,-0.0286078918725252,-0.973197937011719,-0.143133521080017,-0.042386882007122,-0.988795280456543,-0.0751438811421394,-0.0452516637742519,-0.996145367622375,-0.0254548210650682,-0.0492482110857964,-0.998462080955505,0.0467745400965214,-0.075939767062664,-0.996014654636383,-0.0444696955382824,-0.00987185910344124,-0.998961925506592,-0.2515889108181,0.0456525459885597,-0.966756820678711,-0.147148311138153,0.106895342469215,-0.983321249485016,-0.24300554394722,-0.0982362851500511,-0.965037703514099,-0.2515889108181,0.0456525459885597,-0.966756820678711,-0.228459894657135,-0.0705416426062584,-0.970994293689728,-0.248890444636345,0.0163014866411686,-0.96839439868927,-0.136039167642593,0.187416315078735,-0.972814679145813, +-0.182025730609894,-0.00693915178999305,-0.983269214630127,-0.147148311138153,0.106895342469215,-0.983321249485016,-0.160243883728981,0.0723292678594589,-0.984423875808716,-0.182025730609894,-0.00693915178999305,-0.983269214630127,-0.136039167642593,0.187416315078735,-0.972814679145813,-0.13115182518959,0.0322523191571236,-0.990837454795837,-0.0902249440550804,-0.0188603047281504,-0.995742797851563,-0.248890444636345,0.0163014866411686,-0.96839439868927,0.0467745400965214,-0.075939767062664,-0.996014654636383,0.157605201005936,-0.0702711418271065,-0.98499870300293,0.0573054999113083,-0.00874202977865934,-0.998318374156952,0.0493968948721886,-0.0242191702127457,-0.998485505580902,0.0573054999113083,-0.00874202977865934,-0.998318374156952,0.138881623744965,0.0239541567862034,-0.990019202232361,-0.0590034462511539,0.0316192954778671,-0.997756838798523,0.0493968948721886,-0.0242191702127457,-0.998485505580902,-0.0902249440550804,-0.0188603047281504,-0.995742797851563,-0.0617220811545849,-0.0147126754745841,-0.997984886169434,0.0203995238989592,-0.0629357621073723,-0.997808992862701,0.082203134894371,0.00789925642311573,-0.996584236621857,0.0184726789593697,-0.0227924231439829,-0.999569475650787,0.082203134894371,0.00789925642311573,-0.996584236621857,0.0628633126616478,0.0335288681089878,-0.997458755970001,0.0628633126616478,0.0335288681089878,-0.997458755970001,0.0167144797742367,-0.0701036006212235,-0.997399628162384,0.0184726789593697,-0.0227924231439829,-0.999569475650787,0.0658976137638092,-0.113201797008514,-0.991384267807007,0.0167144797742367,-0.0701036006212235,-0.997399628162384,0.0619631744921207,0.0327636711299419,-0.997540473937988,0.0203995238989592,-0.0629357621073723,-0.997808992862701,-0.0813260823488235,0.0236025582998991,-0.996407985687256,-0.0882399082183838,0.0313623063266277,-0.99560534954071,-0.0813260823488235,0.0236025582998991,-0.996407985687256,-0.170834884047508,0.130070745944977,-0.976676464080811,-0.0882399082183838,0.0313623063266277,-0.99560534954071,0.321150422096252,-0.202797129750252,-0.925059795379639, +0.203319996595383,-0.190209403634071,-0.960458874702454,0.342177033424377,-0.26922419667244,-0.900240540504456,0.156251639127731,-0.011892119422555,-0.987645626068115,0.174687162041664,-0.10637478530407,-0.978860914707184,0.0658976137638092,-0.113201797008514,-0.991384267807007,0.194986119866371,-0.0757842734456062,-0.977873742580414,0.145618036389351,-0.149821028113365,-0.977930963039398,0.174687162041664,-0.10637478530407,-0.978860914707184,0.236573576927185,-0.171604290604591,-0.956339240074158,0.342177033424377,-0.26922419667244,-0.900240540504456,0.203319996595383,-0.190209403634071,-0.960458874702454,0.236573576927185,-0.171604290604591,-0.956339240074158,0.145618036389351,-0.149821028113365,-0.977930963039398,0.194986119866371,-0.0757842734456062,-0.977873742580414,0.255548238754272,-0.137595534324646,-0.956954777240753,0.321150422096252,-0.202797129750252,-0.925059795379639,0.359996169805527,-0.199858352541924,-0.911295354366302,0.0628653913736343,-0.102683618664742,-0.992725491523743,0.146075040102005,-0.16620035469532,-0.975212514400482,0.0391580164432526,-0.42451611161232,-0.904573142528534,0.000445014040451497,-0.585236072540283,-0.810862720012665,-0.00722312880679965,-0.500436365604401,-0.865743100643158,-0.0706677138805389,-0.649297475814819,-0.757244169712067,-0.00349421938881278,-0.693794131278992,-0.720164775848389,-0.0926814898848534,-0.711661398410797,-0.696382105350494,-0.0834152027964592,-0.564619362354279,-0.821125268936157,0.000445014040451497,-0.585236072540283,-0.810862720012665,-0.0706677138805389,-0.649297475814819,-0.757244169712067,-0.0926814898848534,-0.711661398410797,-0.696382105350494,0.112181447446346,-0.433447062969208,-0.894169330596924,0.189054071903229,-0.390826463699341,-0.900840222835541,0.122175946831703,-0.457560032606125,-0.880744993686676,0.100057810544968,-0.396382659673691,-0.912616610527039,0.122175946831703,-0.457560032606125,-0.880744993686676,0.12663097679615,-0.415861338376999,-0.900568664073944,0.100057810544968,-0.396382659673691,-0.912616610527039,0.0602031350135803,-0.330446273088455,-0.941902756690979, +0.0311318524181843,-0.384950011968613,-0.922412037849426,0.0683420524001122,-0.541300117969513,-0.838047385215759,-0.0018912460654974,-0.491617769002914,-0.870809018611908,0.0311318524181843,-0.384950011968613,-0.922412037849426,-0.0834152027964592,-0.564619362354279,-0.821125268936157,-0.0018912460654974,-0.491617769002914,-0.870809018611908,-0.00349421938881278,-0.693794131278992,-0.720164775848389,-0.00722312880679965,-0.500436365604401,-0.865743100643158,0.0628653913736343,-0.102683618664742,-0.992725491523743,0.0391580164432526,-0.42451611161232,-0.904573142528534,0.0919434279203415,-0.218961834907532,-0.971391797065735,0.194426283240318,-0.224393129348755,-0.954906344413757,0.112181447446346,-0.433447062969208,-0.894169330596924,0.255548238754272,-0.137595534324646,-0.956954777240753,0.359996169805527,-0.199858352541924,-0.911295354366302,0.273538738489151,-0.0910723283886909,-0.957539737224579,0.263653069734573,-0.0711859986186028,-0.961987257003784,0.265062838792801,-0.0669997856020927,-0.961900532245636,0.273538738489151,-0.0910723283886909,-0.957539737224579,0.137686893343925,-0.0114949056878686,-0.990409076213837,0.263653069734573,-0.0711859986186028,-0.961987257003784,0.199768230319023,-0.0270943455398083,-0.979468464851379,0.0651300996541977,-0.215705081820488,-0.974283993244171,0.232817798852921,-0.195092514157295,-0.952751100063324,0.137686893343925,-0.0114949056878686,-0.990409076213837,0.201704472303391,-0.345803797245026,-0.916370511054993,0.0651300996541977,-0.215705081820488,-0.974283993244171,0.00122933427337557,-0.38062909245491,-0.924726963043213,0.201704472303391,-0.345803797245026,-0.916370511054993,0.00122933427337557,-0.38062909245491,-0.924726963043213,0.131823047995567,-0.363414436578751,-0.922254025936127,0.131823047995567,-0.363414436578751,-0.922254025936127,0.189078643918037,-0.27040496468544,-0.943996965885162,0.266075164079666,-0.340619385242462,-0.901766240596771,0.150959089398384,-0.174802199006081,-0.972962200641632,0.178832039237022,-0.218865305185318,-0.95922726392746,0.189078643918037,-0.27040496468544,-0.943996965885162, +0.0953719988465309,-0.138965174555779,-0.985694050788879,0.150959089398384,-0.174802199006081,-0.972962200641632,0.0919434279203415,-0.218961834907532,-0.971391797065735,-0.10939610004425,0.165668532252312,-0.980095088481903,-0.142204597592354,0.225137546658516,-0.963893592357636,-0.114033095538616,0.164611279964447,-0.979744613170624,-0.136039167642593,0.187416315078735,-0.972814679145813,-0.10939610004425,0.165668532252312,-0.980095088481903,-0.160243883728981,0.0723292678594589,-0.984423875808716,-0.243293061852455,0.290073841810226,-0.925562262535095,-0.426770925521851,0.4008749127388,-0.810657620429993,-0.218779012560844,0.208562731742859,-0.953224658966064,-0.218779012560844,0.208562731742859,-0.953224658966064,-0.142204597592354,0.225137546658516,-0.963893592357636,-0.243293061852455,0.290073841810226,-0.925562262535095,-0.606659531593323,0.593234717845917,-0.529184997081757,-0.427101492881775,0.660764932632446,-0.617230892181396,-0.558854937553406,0.74226576089859,-0.369760096073151,-0.589568078517914,0.729704320430756,-0.346324682235718,-0.691554725170136,0.633775353431702,-0.346526652574539,-0.558854937553406,0.74226576089859,-0.369760096073151,-0.427101492881775,0.660764932632446,-0.617230892181396,-0.606659531593323,0.593234717845917,-0.529184997081757,-0.426770925521851,0.4008749127388,-0.810657620429993,-0.531361937522888,0.661099910736084,-0.529718160629272,-0.66919994354248,0.575269222259521,-0.470358073711395,-0.633764266967773,0.662909746170044,-0.398614317178726,-0.498420923948288,0.762529969215393,-0.412461638450623,-0.633764266967773,0.662909746170044,-0.398614317178726,-0.589568078517914,0.729704320430756,-0.346324682235718,-0.66919994354248,0.575269222259521,-0.470358073711395,-0.580258965492249,0.566474258899689,-0.585155010223389,-0.647131741046906,0.495435118675232,-0.5794517993927,-0.553396463394165,0.483470737934113,-0.678239047527313,-0.580258965492249,0.566474258899689,-0.585155010223389,-0.478213369846344,0.578553795814514,-0.660747528076172,-0.459699004888535,0.394094407558441,-0.795843183994293, +-0.553396463394165,0.483470737934113,-0.678239047527313,-0.393543601036072,0.489563018083572,-0.778107523918152,-0.170834884047508,0.130070745944977,-0.976676464080811,-0.283211201429367,0.1460250467062,-0.947875499725342,-0.194980442523956,0.216197326779366,-0.95668238401413,-0.324995100498199,0.235001936554909,-0.916052460670471,-0.238716408610344,0.3423812687397,-0.908729553222656,-0.216944545507431,0.245095402002335,-0.944914400577545,-0.194980442523956,0.216197326779366,-0.95668238401413,-0.283211201429367,0.1460250467062,-0.947875499725342,-0.216944545507431,0.245095402002335,-0.944914400577545,-0.333043068647385,0.417030781507492,-0.845675826072693,-0.343940824270248,0.322828650474548,-0.881751775741577,-0.459699004888535,0.394094407558441,-0.795843183994293,-0.343940824270248,0.322828650474548,-0.881751775741577,-0.333043068647385,0.417030781507492,-0.845675826072693,-0.238716408610344,0.3423812687397,-0.908729553222656,0.141851052641869,-0.444758206605911,-0.88434624671936,0.200125440955162,-0.677185416221619,-0.708074569702148,0.191930636763573,-0.313331037759781,-0.930046319961548,0.142517536878586,-0.206394657492638,-0.968034029006958,0.0959679335355759,-0.234750226140022,-0.967306792736053,0.141851052641869,-0.444758206605911,-0.88434624671936,0.0870144739747047,-0.0954918339848518,-0.991619765758514,0.0831990912556648,0.0253259371966124,-0.996211051940918,0.0796829611063004,0.0123391980305314,-0.996743857860565,0.0628653913736343,-0.102683618664742,-0.992725491523743,0.116414532065392,-0.193508639931679,-0.974167287349701,0.0831990912556648,0.0253259371966124,-0.996211051940918,0.142517536878586,-0.206394657492638,-0.968034029006958,0.0870144739747047,-0.0954918339848518,-0.991619765758514,0.0959679335355759,-0.234750226140022,-0.967306792736053,-0.435238867998123,0.814061880111694,-0.384538978338242,-0.370559513568878,0.887181878089905,-0.274943470954895,-0.374173998832703,0.861294269561768,-0.34375262260437,-0.157773688435555,-0.858623385429382,-0.487722456455231,-0.199730783700943,-0.920633256435394,-0.335472702980042, +-0.235333934426308,-0.895576775074005,-0.377571195363998,-0.235333934426308,-0.895576775074005,-0.377571195363998,-0.225884765386581,-0.783402144908905,-0.579013764858246,-0.157773688435555,-0.858623385429382,-0.487722456455231,-0.222239792346954,-0.767781734466553,-0.600933015346527,-0.225884765386581,-0.783402144908905,-0.579013764858246,-0.302855789661407,-0.719336092472076,-0.625167012214661,-0.222239792346954,-0.767781734466553,-0.600933015346527,-0.303867101669312,-0.746460556983948,-0.591997683048248,-0.169687449932098,-0.798129558563232,-0.578096091747284,-0.799996376037598,0.417932242155075,-0.430509328842163,-0.840643644332886,0.291518151760101,-0.45643761754036,-0.849173545837402,0.241268157958984,-0.469780653715134,-0.761210083961487,0.522965848445892,-0.383491516113281,-0.799996376037598,0.417932242155075,-0.430509328842163,-0.711746335029602,0.456856489181519,-0.53357207775116,-0.655719816684723,0.598467826843262,-0.460290759801865,-0.530039548873901,0.704517364501953,-0.471924990415573,-0.629960119724274,0.597659707069397,-0.49593648314476,-0.534122109413147,0.737633466720581,-0.413049966096878,-0.530039548873901,0.704517364501953,-0.471924990415573,-0.435238867998123,0.814061880111694,-0.384538978338242,-0.761210083961487,0.522965848445892,-0.383491516113281,-0.711746335029602,0.456856489181519,-0.53357207775116,-0.629960119724274,0.597659707069397,-0.49593648314476,-0.246167242527008,-0.743577599525452,-0.621686398983002,-0.303867101669312,-0.746460556983948,-0.591997683048248,-0.333204537630081,-0.64449280500412,-0.68818861246109,-0.246167242527008,-0.743577599525452,-0.621686398983002,-0.333204537630081,-0.64449280500412,-0.68818861246109,-0.200573816895485,-0.636238574981689,-0.744963407516479,-0.200573816895485,-0.636238574981689,-0.744963407516479,-0.169943541288376,-0.498243600130081,-0.850219011306763,-0.0852414071559906,-0.606246769428253,-0.790695011615753,-0.191542193293571,-0.445947498083115,-0.874323904514313,-0.160797119140625,-0.497621297836304,-0.852359771728516,-0.189662843942642,-0.407565414905548,-0.89326274394989, +-0.160797119140625,-0.497621297836304,-0.852359771728516,-0.169943541288376,-0.498243600130081,-0.850219011306763,-0.189662843942642,-0.407565414905548,-0.89326274394989,-0.203402057290077,-0.340582638978958,-0.917949318885803,-0.189662843942642,-0.407565414905548,-0.89326274394989,-0.199785277247429,-0.324241876602173,-0.924636662006378,-0.239040344953537,-0.324421375989914,-0.915210545063019,-0.254730850458145,-0.260599046945572,-0.93123584985733,-0.339684456586838,-0.249061316251755,-0.906963527202606,-0.203402057290077,-0.340582638978958,-0.917949318885803,-0.21876335144043,-0.257966697216034,-0.941060960292816,-0.254730850458145,-0.260599046945572,-0.93123584985733,-0.298151820898056,-0.308402717113495,-0.903323352336884,-0.339684456586838,-0.249061316251755,-0.906963527202606,-0.350218594074249,-0.156738519668579,-0.923460841178894,-0.350218594074249,-0.156738519668579,-0.923460841178894,-0.401432752609253,-0.0305752791464329,-0.915377914905548,-0.228182479739189,-0.0286078918725252,-0.973197937011719,-0.0254548210650682,-0.0492482110857964,-0.998462080955505,-0.143133521080017,-0.042386882007122,-0.988795280456543,-0.134542554616928,-0.160345897078514,-0.97784835100174,-0.228182479739189,-0.0286078918725252,-0.973197937011719,-0.301725566387177,-0.0198103506118059,-0.953188955783844,-0.143133521080017,-0.042386882007122,-0.988795280456543,-0.0254548210650682,-0.0492482110857964,-0.998462080955505,0.0302328895777464,-0.170521482825279,-0.984889984130859,0.0467745400965214,-0.075939767062664,-0.996014654636383,-0.2515889108181,0.0456525459885597,-0.966756820678711,-0.134717956185341,0.189552634954453,-0.97258460521698,-0.147148311138153,0.106895342469215,-0.983321249485016,-0.2515889108181,0.0456525459885597,-0.966756820678711,-0.248890444636345,0.0163014866411686,-0.96839439868927,-0.224940776824951,0.116155341267586,-0.967424154281616,-0.136039167642593,0.187416315078735,-0.972814679145813,-0.147148311138153,0.106895342469215,-0.983321249485016,-0.0916893929243088,0.22381928563118,-0.970308125019073,-0.112296335399151,0.090812936425209,-0.989516258239746, +-0.248890444636345,0.0163014866411686,-0.96839439868927,-0.0902249440550804,-0.0188603047281504,-0.995742797851563,0.0467745400965214,-0.075939767062664,-0.996014654636383,0.125146970152855,-0.147026941180229,-0.981183588504791,0.157605201005936,-0.0702711418271065,-0.98499870300293,0.138881623744965,0.0239541567862034,-0.990019202232361,0.0573054999113083,-0.00874202977865934,-0.998318374156952,0.157605201005936,-0.0702711418271065,-0.98499870300293,0.138881623744965,0.0239541567862034,-0.990019202232361,0.0593034103512764,0.0568324029445648,-0.996620833873749,0.0493968948721886,-0.0242191702127457,-0.998485505580902,-0.00602553272619843,-0.112938426434994,-0.993583559989929,-0.0902249440550804,-0.0188603047281504,-0.995742797851563,0.0493968948721886,-0.0242191702127457,-0.998485505580902,0.082203134894371,0.00789925642311573,-0.996584236621857,0.0203995238989592,-0.0629357621073723,-0.997808992862701,0.0475360043346882,-0.065895214676857,-0.996693551540375,0.0628633126616478,0.0335288681089878,-0.997458755970001,0.082203134894371,0.00789925642311573,-0.996584236621857,0.0852484926581383,0.04768380895257,-0.995217978954315,0.0619631744921207,0.0327636711299419,-0.997540473937988,0.0167144797742367,-0.0701036006212235,-0.997399628162384,0.0628633126616478,0.0335288681089878,-0.997458755970001,0.156251639127731,-0.011892119422555,-0.987645626068115,0.0658976137638092,-0.113201797008514,-0.991384267807007,0.0619631744921207,0.0327636711299419,-0.997540473937988,0.0203995238989592,-0.0629357621073723,-0.997808992862701,-0.0882399082183838,0.0313623063266277,-0.99560534954071,-0.0901547148823738,-0.11613742262125,-0.98913300037384,-0.170834884047508,0.130070745944977,-0.976676464080811,-0.160241693258286,0.18693707883358,-0.969214677810669,-0.0882399082183838,0.0313623063266277,-0.99560534954071,0.321150422096252,-0.202797129750252,-0.925059795379639,0.342177033424377,-0.26922419667244,-0.900240540504456,0.359996169805527,-0.199858352541924,-0.911295354366302,0.174687162041664,-0.10637478530407,-0.978860914707184,0.156251639127731,-0.011892119422555,-0.987645626068115, +0.194986119866371,-0.0757842734456062,-0.977873742580414,0.336532026529312,-0.261102020740509,-0.904749572277069,0.342177033424377,-0.26922419667244,-0.900240540504456,0.236573576927185,-0.171604290604591,-0.956339240074158,0.223113626241684,-0.11917807161808,-0.967479646205902,0.236573576927185,-0.171604290604591,-0.956339240074158,0.194986119866371,-0.0757842734456062,-0.977873742580414,0.000445014040451497,-0.585236072540283,-0.810862720012665,0.116414532065392,-0.193508639931679,-0.974167287349701,-0.00722312880679965,-0.500436365604401,-0.865743100643158,-0.0126893641427159,-0.68892377614975,-0.724722623825073,-0.0926814898848534,-0.711661398410797,-0.696382105350494,-0.00349421938881278,-0.693794131278992,-0.720164775848389,0.000445014040451497,-0.585236072540283,-0.810862720012665,-0.0926814898848534,-0.711661398410797,-0.696382105350494,-0.0126893641427159,-0.68892377614975,-0.724722623825073,0.189054071903229,-0.390826463699341,-0.900840222835541,0.112181447446346,-0.433447062969208,-0.894169330596924,0.194426283240318,-0.224393129348755,-0.954906344413757,0.191376388072968,-0.384473264217377,-0.903080999851227,0.122175946831703,-0.457560032606125,-0.880744993686676,0.189054071903229,-0.390826463699341,-0.900840222835541,0.191376388072968,-0.384473264217377,-0.903080999851227,0.12663097679615,-0.415861338376999,-0.900568664073944,0.122175946831703,-0.457560032606125,-0.880744993686676,0.100057810544968,-0.396382659673691,-0.912616610527039,0.12663097679615,-0.415861338376999,-0.900568664073944,0.0602031350135803,-0.330446273088455,-0.941902756690979,0.0491982698440552,-0.386663824319839,-0.920907437801361,0.0311318524181843,-0.384950011968613,-0.922412037849426,0.0602031350135803,-0.330446273088455,-0.941902756690979,0.0683420524001122,-0.541300117969513,-0.838047385215759,-0.00349421938881278,-0.693794131278992,-0.720164775848389,-0.0018912460654974,-0.491617769002914,-0.870809018611908,0.0491982698440552,-0.386663824319839,-0.920907437801361,0.0683420524001122,-0.541300117969513,-0.838047385215759,0.0311318524181843,-0.384950011968613,-0.922412037849426, +0.0628653913736343,-0.102683618664742,-0.992725491523743,-0.00722312880679965,-0.500436365604401,-0.865743100643158,0.116414532065392,-0.193508639931679,-0.974167287349701,0.0919434279203415,-0.218961834907532,-0.971391797065735,0.150959089398384,-0.174802199006081,-0.972962200641632,0.194426283240318,-0.224393129348755,-0.954906344413757,0.30599445104599,-0.262167602777481,-0.915224254131317,0.273538738489151,-0.0910723283886909,-0.957539737224579,0.359996169805527,-0.199858352541924,-0.911295354366302,0.199768230319023,-0.0270943455398083,-0.979468464851379,0.263653069734573,-0.0711859986186028,-0.961987257003784,0.273538738489151,-0.0910723283886909,-0.957539737224579,0.199768230319023,-0.0270943455398083,-0.979468464851379,0.180231630802155,0.0018807944143191,-0.983622372150421,0.137686893343925,-0.0114949056878686,-0.990409076213837,0.0651300996541977,-0.215705081820488,-0.974283993244171,0.137686893343925,-0.0114949056878686,-0.990409076213837,0.0967889279127121,-0.102636590600014,-0.989998757839203,0.0151032572612166,-0.293993681669235,-0.955687999725342,0.00122933427337557,-0.38062909245491,-0.924726963043213,0.0651300996541977,-0.215705081820488,-0.974283993244171,0.0605537928640842,-0.300075352191925,-0.951991558074951,0.131823047995567,-0.363414436578751,-0.922254025936127,0.00122933427337557,-0.38062909245491,-0.924726963043213,0.0605537928640842,-0.300075352191925,-0.951991558074951,0.189078643918037,-0.27040496468544,-0.943996965885162,0.131823047995567,-0.363414436578751,-0.922254025936127,0.189078643918037,-0.27040496468544,-0.943996965885162,0.0605537928640842,-0.300075352191925,-0.951991558074951,0.150959089398384,-0.174802199006081,-0.972962200641632,-0.10939610004425,0.165668532252312,-0.980095088481903,-0.105508998036385,0.208710476756096,-0.972269356250763,-0.142204597592354,0.225137546658516,-0.963893592357636,-0.10939610004425,0.165668532252312,-0.980095088481903,-0.136039167642593,0.187416315078735,-0.972814679145813,-0.105508998036385,0.208710476756096,-0.972269356250763,-0.243293061852455,0.290073841810226,-0.925562262535095, +-0.292733699083328,0.469024986028671,-0.833260118961334,-0.426770925521851,0.4008749127388,-0.810657620429993,-0.203810825943947,0.216321840882301,-0.954811990261078,-0.243293061852455,0.290073841810226,-0.925562262535095,-0.142204597592354,0.225137546658516,-0.963893592357636,-0.424770772457123,0.779301404953003,-0.460715740919113,-0.558854937553406,0.74226576089859,-0.369760096073151,-0.427101492881775,0.660764932632446,-0.617230892181396,-0.589568078517914,0.729704320430756,-0.346324682235718,-0.558854937553406,0.74226576089859,-0.369760096073151,-0.4887655377388,0.814206898212433,-0.313329190015793,-0.427101492881775,0.660764932632446,-0.617230892181396,-0.426770925521851,0.4008749127388,-0.810657620429993,-0.292733699083328,0.469024986028671,-0.833260118961334,-0.66919994354248,0.575269222259521,-0.470358073711395,-0.531361937522888,0.661099910736084,-0.529718160629272,-0.580258965492249,0.566474258899689,-0.585155010223389,-0.531361937522888,0.661099910736084,-0.529718160629272,-0.633764266967773,0.662909746170044,-0.398614317178726,-0.498420923948288,0.762529969215393,-0.412461638450623,-0.498420923948288,0.762529969215393,-0.412461638450623,-0.589568078517914,0.729704320430756,-0.346324682235718,-0.4887655377388,0.814206898212433,-0.313329190015793,-0.531361937522888,0.661099910736084,-0.529718160629272,-0.478213369846344,0.578553795814514,-0.660747528076172,-0.580258965492249,0.566474258899689,-0.585155010223389,-0.478213369846344,0.578553795814514,-0.660747528076172,-0.393543601036072,0.489563018083572,-0.778107523918152,-0.553396463394165,0.483470737934113,-0.678239047527313,-0.459699004888535,0.394094407558441,-0.795843183994293,-0.393543601036072,0.489563018083572,-0.778107523918152,-0.333043068647385,0.417030781507492,-0.845675826072693,-0.160241693258286,0.18693707883358,-0.969214677810669,-0.170834884047508,0.130070745944977,-0.976676464080811,-0.194980442523956,0.216197326779366,-0.95668238401413,-0.238716408610344,0.3423812687397,-0.908729553222656,-0.190691411495209,0.345014065504074,-0.919022262096405, +-0.216944545507431,0.245095402002335,-0.944914400577545,-0.187278464436531,0.277397722005844,-0.942325413227081,-0.194980442523956,0.216197326779366,-0.95668238401413,-0.216944545507431,0.245095402002335,-0.944914400577545,-0.234531119465828,0.42688524723053,-0.873363614082336,-0.238716408610344,0.3423812687397,-0.908729553222656,-0.333043068647385,0.417030781507492,-0.845675826072693,0.0948396474123001,-0.401841223239899,-0.910784780979156,0.141851052641869,-0.444758206605911,-0.88434624671936,0.0959679335355759,-0.234750226140022,-0.967306792736053,0.0796829611063004,0.0123391980305314,-0.996743857860565,0.0831990912556648,0.0253259371966124,-0.996211051940918,0.0524433739483356,-0.210433959960938,-0.976200342178345,0.105448715388775,-0.0967698320746422,-0.98970502614975,0.0870144739747047,-0.0954918339848518,-0.991619765758514,0.0796829611063004,0.0123391980305314,-0.996743857860565,0.0364673621952534,-0.342085719108582,-0.938960790634155,0.0831990912556648,0.0253259371966124,-0.996211051940918,0.116414532065392,-0.193508639931679,-0.974167287349701,0.105448715388775,-0.0967698320746422,-0.98970502614975,0.0959679335355759,-0.234750226140022,-0.967306792736053,0.0870144739747047,-0.0954918339848518,-0.991619765758514,-0.435238867998123,0.814061880111694,-0.384538978338242,-0.494522094726563,0.838943779468536,-0.227202832698822,-0.370559513568878,0.887181878089905,-0.274943470954895,-0.235333934426308,-0.895576775074005,-0.377571195363998,-0.288713335990906,-0.779119074344635,-0.556433320045471,-0.225884765386581,-0.783402144908905,-0.579013764858246,-0.225884765386581,-0.783402144908905,-0.579013764858246,-0.288713335990906,-0.779119074344635,-0.556433320045471,-0.302855789661407,-0.719336092472076,-0.625167012214661,-0.334797412157059,-0.744083523750305,-0.578143894672394,-0.222239792346954,-0.767781734466553,-0.600933015346527,-0.302855789661407,-0.719336092472076,-0.625167012214661,-0.303867101669312,-0.746460556983948,-0.591997683048248,-0.222239792346954,-0.767781734466553,-0.600933015346527,-0.334797412157059,-0.744083523750305,-0.578143894672394, +-0.849173545837402,0.241268157958984,-0.469780653715134,-0.74772721529007,0.352107733488083,-0.562960028648376,-0.799996376037598,0.417932242155075,-0.430509328842163,-0.799996376037598,0.417932242155075,-0.430509328842163,-0.74772721529007,0.352107733488083,-0.562960028648376,-0.711746335029602,0.456856489181519,-0.53357207775116,-0.594754338264465,0.744075238704681,-0.304333925247192,-0.530039548873901,0.704517364501953,-0.471924990415573,-0.655719816684723,0.598467826843262,-0.460290759801865,-0.655719816684723,0.598467826843262,-0.460290759801865,-0.629960119724274,0.597659707069397,-0.49593648314476,-0.700127422809601,0.433573722839355,-0.567305207252502,-0.594754338264465,0.744075238704681,-0.304333925247192,-0.435238867998123,0.814061880111694,-0.384538978338242,-0.530039548873901,0.704517364501953,-0.471924990415573,-0.711746335029602,0.456856489181519,-0.53357207775116,-0.700127422809601,0.433573722839355,-0.567305207252502,-0.629960119724274,0.597659707069397,-0.49593648314476,-0.303867101669312,-0.746460556983948,-0.591997683048248,-0.387987226247787,-0.665322661399841,-0.637817800045013,-0.333204537630081,-0.64449280500412,-0.68818861246109,-0.25814101099968,-0.540419280529022,-0.800818383693695,-0.200573816895485,-0.636238574981689,-0.744963407516479,-0.333204537630081,-0.64449280500412,-0.68818861246109,-0.25814101099968,-0.540419280529022,-0.800818383693695,-0.169943541288376,-0.498243600130081,-0.850219011306763,-0.200573816895485,-0.636238574981689,-0.744963407516479,-0.189662843942642,-0.407565414905548,-0.89326274394989,-0.169943541288376,-0.498243600130081,-0.850219011306763,-0.220593020319939,-0.443751603364944,-0.86857533454895,-0.207848146557808,-0.289344847202301,-0.934386789798737,-0.199785277247429,-0.324241876602173,-0.924636662006378,-0.189662843942642,-0.407565414905548,-0.89326274394989,-0.203402057290077,-0.340582638978958,-0.917949318885803,-0.199785277247429,-0.324241876602173,-0.924636662006378,-0.21876335144043,-0.257966697216034,-0.941060960292816,-0.242983594536781,-0.180361583828926,-0.953115224838257, +-0.339684456586838,-0.249061316251755,-0.906963527202606,-0.254730850458145,-0.260599046945572,-0.93123584985733,-0.21876335144043,-0.257966697216034,-0.941060960292816,-0.242983594536781,-0.180361583828926,-0.953115224838257,-0.254730850458145,-0.260599046945572,-0.93123584985733,-0.344839632511139,-0.114120595157146,-0.931698441505432,-0.350218594074249,-0.156738519668579,-0.923460841178894,-0.339684456586838,-0.249061316251755,-0.906963527202606,-0.401432752609253,-0.0305752791464329,-0.915377914905548,-0.350218594074249,-0.156738519668579,-0.923460841178894,-0.404624253511429,-0.0540775768458843,-0.912882626056671,-0.301725566387177,-0.0198103506118059,-0.953188955783844,-0.228182479739189,-0.0286078918725252,-0.973197937011719,-0.401432752609253,-0.0305752791464329,-0.915377914905548,-0.134542554616928,-0.160345897078514,-0.97784835100174,-0.143133521080017,-0.042386882007122,-0.988795280456543,-0.30757001042366,-0.0710304751992226,-0.948870539665222,-0.0254548210650682,-0.0492482110857964,-0.998462080955505,-0.134542554616928,-0.160345897078514,-0.97784835100174,0.0302328895777464,-0.170521482825279,-0.984889984130859,-0.301725566387177,-0.0198103506118059,-0.953188955783844,-0.365319103002548,-0.0458358079195023,-0.929753184318542,-0.143133521080017,-0.042386882007122,-0.988795280456543,0.125146970152855,-0.147026941180229,-0.981183588504791,0.0467745400965214,-0.075939767062664,-0.996014654636383,0.0302328895777464,-0.170521482825279,-0.984889984130859,-0.2515889108181,0.0456525459885597,-0.966756820678711,-0.224940776824951,0.116155341267586,-0.967424154281616,-0.134717956185341,0.189552634954453,-0.97258460521698,-0.147148311138153,0.106895342469215,-0.983321249485016,-0.134717956185341,0.189552634954453,-0.97258460521698,-0.0916893929243088,0.22381928563118,-0.970308125019073,-0.248890444636345,0.0163014866411686,-0.96839439868927,-0.112296335399151,0.090812936425209,-0.989516258239746,-0.224940776824951,0.116155341267586,-0.967424154281616,-0.136039167642593,0.187416315078735,-0.972814679145813,-0.0916893929243088,0.22381928563118,-0.970308125019073, +-0.143028378486633,0.214149504899979,-0.966272592544556,-0.112296335399151,0.090812936425209,-0.989516258239746,-0.0902249440550804,-0.0188603047281504,-0.995742797851563,-0.0101125156506896,-0.041262187063694,-0.999097108840942,0.157605201005936,-0.0702711418271065,-0.98499870300293,0.125146970152855,-0.147026941180229,-0.981183588504791,0.123632527887821,-0.0629393234848976,-0.990330040454865,0.123632527887821,-0.0629393234848976,-0.990330040454865,0.138881623744965,0.0239541567862034,-0.990019202232361,0.157605201005936,-0.0702711418271065,-0.98499870300293,0.0467387810349464,0.0630889758467674,-0.996912717819214,0.0593034103512764,0.0568324029445648,-0.996620833873749,0.138881623744965,0.0239541567862034,-0.990019202232361,0.0206686109304428,-0.081759050488472,-0.996437728404999,0.0493968948721886,-0.0242191702127457,-0.998485505580902,0.0593034103512764,0.0568324029445648,-0.996620833873749,-0.0101125156506896,-0.041262187063694,-0.999097108840942,-0.0902249440550804,-0.0188603047281504,-0.995742797851563,-0.00602553272619843,-0.112938426434994,-0.993583559989929,-0.00602553272619843,-0.112938426434994,-0.993583559989929,0.0493968948721886,-0.0242191702127457,-0.998485505580902,0.0190103780478239,-0.143487051129341,-0.989469587802887,-0.0395806021988392,-0.189762115478516,-0.981031954288483,0.0475360043346882,-0.065895214676857,-0.996693551540375,0.0203995238989592,-0.0629357621073723,-0.997808992862701,0.082203134894371,0.00789925642311573,-0.996584236621857,0.0475360043346882,-0.065895214676857,-0.996693551540375,0.0852484926581383,0.04768380895257,-0.995217978954315,0.0852484926581383,0.04768380895257,-0.995217978954315,0.0619631744921207,0.0327636711299419,-0.997540473937988,0.0628633126616478,0.0335288681089878,-0.997458755970001,0.0619631744921207,0.0327636711299419,-0.997540473937988,0.127894386649132,0.0270813573151827,-0.991417944431305,0.156251639127731,-0.011892119422555,-0.987645626068115,-0.0901547148823738,-0.11613742262125,-0.98913300037384,-0.0882399082183838,0.0313623063266277,-0.99560534954071, +-0.0877998098731041,0.0248996168375015,-0.995826840400696,0.0203995238989592,-0.0629357621073723,-0.997808992862701,-0.0901547148823738,-0.11613742262125,-0.98913300037384,-0.0395806021988392,-0.189762115478516,-0.981031954288483,-0.0877998098731041,0.0248996168375015,-0.995826840400696,-0.0882399082183838,0.0313623063266277,-0.99560534954071,-0.160241693258286,0.18693707883358,-0.969214677810669,0.30599445104599,-0.262167602777481,-0.915224254131317,0.359996169805527,-0.199858352541924,-0.911295354366302,0.342177033424377,-0.26922419667244,-0.900240540504456,0.194986119866371,-0.0757842734456062,-0.977873742580414,0.156251639127731,-0.011892119422555,-0.987645626068115,0.164056897163391,0.0175847243517637,-0.986293971538544,0.30599445104599,-0.262167602777481,-0.915224254131317,0.342177033424377,-0.26922419667244,-0.900240540504456,0.336532026529312,-0.261102020740509,-0.904749572277069,0.223113626241684,-0.11917807161808,-0.967479646205902,0.336532026529312,-0.261102020740509,-0.904749572277069,0.236573576927185,-0.171604290604591,-0.956339240074158,0.194986119866371,-0.0757842734456062,-0.977873742580414,0.121602244675159,-0.0288799051195383,-0.992158591747284,0.223113626241684,-0.11917807161808,-0.967479646205902,0.000445014040451497,-0.585236072540283,-0.810862720012665,0.0364673621952534,-0.342085719108582,-0.938960790634155,0.116414532065392,-0.193508639931679,-0.974167287349701,0.0311826728284359,-0.625264823436737,-0.779789328575134,-0.0126893641427159,-0.68892377614975,-0.724722623825073,-0.00349421938881278,-0.693794131278992,-0.720164775848389,0.000445014040451497,-0.585236072540283,-0.810862720012665,-0.0126893641427159,-0.68892377614975,-0.724722623825073,0.0364673621952534,-0.342085719108582,-0.938960790634155,0.219788774847984,-0.240773782134056,-0.945368051528931,0.189054071903229,-0.390826463699341,-0.900840222835541,0.194426283240318,-0.224393129348755,-0.954906344413757,0.191376388072968,-0.384473264217377,-0.903080999851227,0.189054071903229,-0.390826463699341,-0.900840222835541,0.219788774847984,-0.240773782134056,-0.945368051528931, +0.191376388072968,-0.384473264217377,-0.903080999851227,0.189302518963814,-0.337667763233185,-0.922033071517944,0.12663097679615,-0.415861338376999,-0.900568664073944,0.0602031350135803,-0.330446273088455,-0.941902756690979,0.12663097679615,-0.415861338376999,-0.900568664073944,0.189302518963814,-0.337667763233185,-0.922033071517944,0.0759743377566338,-0.260848462581635,-0.962385535240173,0.0491982698440552,-0.386663824319839,-0.920907437801361,0.0602031350135803,-0.330446273088455,-0.941902756690979,0.11298880726099,-0.708490550518036,-0.696616470813751,-0.00349421938881278,-0.693794131278992,-0.720164775848389,0.0683420524001122,-0.541300117969513,-0.838047385215759,0.126996800303459,-0.603143632411957,-0.787457644939423,0.0683420524001122,-0.541300117969513,-0.838047385215759,0.0491982698440552,-0.386663824319839,-0.920907437801361,0.150959089398384,-0.174802199006081,-0.972962200641632,0.181501194834709,-0.175054237246513,-0.96768444776535,0.194426283240318,-0.224393129348755,-0.954906344413757,0.30599445104599,-0.262167602777481,-0.915224254131317,0.165363967418671,-0.174880489706993,-0.97060364484787,0.273538738489151,-0.0910723283886909,-0.957539737224579,0.273538738489151,-0.0910723283886909,-0.957539737224579,0.165363967418671,-0.174880489706993,-0.97060364484787,0.199768230319023,-0.0270943455398083,-0.979468464851379,0.199768230319023,-0.0270943455398083,-0.979468464851379,0.165363967418671,-0.174880489706993,-0.97060364484787,0.180231630802155,0.0018807944143191,-0.983622372150421,0.166398614645004,0.0658273175358772,-0.983858823776245,0.137686893343925,-0.0114949056878686,-0.990409076213837,0.180231630802155,0.0018807944143191,-0.983622372150421,0.166398614645004,0.0658273175358772,-0.983858823776245,0.0967889279127121,-0.102636590600014,-0.989998757839203,0.137686893343925,-0.0114949056878686,-0.990409076213837,0.0651300996541977,-0.215705081820488,-0.974283993244171,0.0967889279127121,-0.102636590600014,-0.989998757839203,0.0151032572612166,-0.293993681669235,-0.955687999725342,-2.74218177764851e-006,-0.383664518594742,-0.923472464084625, +0.00122933427337557,-0.38062909245491,-0.924726963043213,0.0151032572612166,-0.293993681669235,-0.955687999725342,0.0352594070136547,-0.370639443397522,-0.928107261657715,0.0605537928640842,-0.300075352191925,-0.951991558074951,0.00122933427337557,-0.38062909245491,-0.924726963043213,0.0605537928640842,-0.300075352191925,-0.951991558074951,0.0352594070136547,-0.370639443397522,-0.928107261657715,0.150959089398384,-0.174802199006081,-0.972962200641632,-0.105508998036385,0.208710476756096,-0.972269356250763,-0.105194076895714,0.18419124186039,-0.977244973182678,-0.142204597592354,0.225137546658516,-0.963893592357636,-0.161024048924446,0.208880096673965,-0.964593350887299,-0.105508998036385,0.208710476756096,-0.972269356250763,-0.136039167642593,0.187416315078735,-0.972814679145813,-0.243293061852455,0.290073841810226,-0.925562262535095,-0.218119904398918,0.316949903964996,-0.923020243644714,-0.292733699083328,0.469024986028671,-0.833260118961334,-0.243293061852455,0.290073841810226,-0.925562262535095,-0.203810825943947,0.216321840882301,-0.954811990261078,-0.218119904398918,0.316949903964996,-0.923020243644714,-0.142204597592354,0.225137546658516,-0.963893592357636,-0.192791745066643,0.192377790808678,-0.962196469306946,-0.203810825943947,0.216321840882301,-0.954811990261078,-0.424770772457123,0.779301404953003,-0.460715740919113,-0.4887655377388,0.814206898212433,-0.313329190015793,-0.558854937553406,0.74226576089859,-0.369760096073151,-0.424770772457123,0.779301404953003,-0.460715740919113,-0.427101492881775,0.660764932632446,-0.617230892181396,-0.315758436918259,0.579250454902649,-0.751508712768555,-0.315758436918259,0.579250454902649,-0.751508712768555,-0.427101492881775,0.660764932632446,-0.617230892181396,-0.292733699083328,0.469024986028671,-0.833260118961334,-0.531361937522888,0.661099910736084,-0.529718160629272,-0.498420923948288,0.762529969215393,-0.412461638450623,-0.418160825967789,0.764148414134979,-0.491140067577362,-0.498420923948288,0.762529969215393,-0.412461638450623,-0.4887655377388,0.814206898212433,-0.313329190015793, +-0.406635671854019,0.855895519256592,-0.319515496492386,-0.478213369846344,0.578553795814514,-0.660747528076172,-0.531361937522888,0.661099910736084,-0.529718160629272,-0.369819402694702,0.681725084781647,-0.63125616312027,-0.37139618396759,0.561201751232147,-0.739673793315887,-0.393543601036072,0.489563018083572,-0.778107523918152,-0.478213369846344,0.578553795814514,-0.660747528076172,-0.393543601036072,0.489563018083572,-0.778107523918152,-0.234531119465828,0.42688524723053,-0.873363614082336,-0.333043068647385,0.417030781507492,-0.845675826072693,-0.160241693258286,0.18693707883358,-0.969214677810669,-0.194980442523956,0.216197326779366,-0.95668238401413,-0.187278464436531,0.277397722005844,-0.942325413227081,-0.234531119465828,0.42688524723053,-0.873363614082336,-0.190691411495209,0.345014065504074,-0.919022262096405,-0.238716408610344,0.3423812687397,-0.908729553222656,-0.190691411495209,0.345014065504074,-0.919022262096405,-0.187278464436531,0.277397722005844,-0.942325413227081,-0.216944545507431,0.245095402002335,-0.944914400577545,0.0948396474123001,-0.401841223239899,-0.910784780979156,0.0959679335355759,-0.234750226140022,-0.967306792736053,0.0842657908797264,-0.38159367442131,-0.920481085777283,0.0364673621952534,-0.342085719108582,-0.938960790634155,0.0524433739483356,-0.210433959960938,-0.976200342178345,0.0831990912556648,0.0253259371966124,-0.996211051940918,0.138233199715614,-0.154509603977203,-0.978273093700409,0.0796829611063004,0.0123391980305314,-0.996743857860565,0.0524433739483356,-0.210433959960938,-0.976200342178345,0.105448715388775,-0.0967698320746422,-0.98970502614975,0.0796829611063004,0.0123391980305314,-0.996743857860565,0.138233199715614,-0.154509603977203,-0.978273093700409,0.0959679335355759,-0.234750226140022,-0.967306792736053,0.105448715388775,-0.0967698320746422,-0.98970502614975,0.0837242007255554,-0.20459870994091,-0.975258588790894,-0.594754338264465,0.744075238704681,-0.304333925247192,-0.494522094726563,0.838943779468536,-0.227202832698822,-0.435238867998123,0.814061880111694,-0.384538978338242, +-0.288713335990906,-0.779119074344635,-0.556433320045471,-0.235333934426308,-0.895576775074005,-0.377571195363998,-0.329436868429184,-0.905864834785461,-0.266233146190643,-0.288713335990906,-0.779119074344635,-0.556433320045471,-0.369729578495026,-0.672889709472656,-0.640717804431915,-0.302855789661407,-0.719336092472076,-0.625167012214661,-0.334797412157059,-0.744083523750305,-0.578143894672394,-0.302855789661407,-0.719336092472076,-0.625167012214661,-0.396530598402023,-0.688705742359161,-0.606998920440674,-0.395239055156708,-0.716373920440674,-0.574973285198212,-0.303867101669312,-0.746460556983948,-0.591997683048248,-0.334797412157059,-0.744083523750305,-0.578143894672394,-0.849173545837402,0.241268157958984,-0.469780653715134,-0.850143909454346,0.121064767241478,-0.512443780899048,-0.74772721529007,0.352107733488083,-0.562960028648376,-0.700127422809601,0.433573722839355,-0.567305207252502,-0.711746335029602,0.456856489181519,-0.53357207775116,-0.74772721529007,0.352107733488083,-0.562960028648376,-0.655719816684723,0.598467826843262,-0.460290759801865,-0.782090604305267,0.597028851509094,-0.178580030798912,-0.594754338264465,0.744075238704681,-0.304333925247192,-0.798590183258057,0.469512134790421,-0.376579225063324,-0.655719816684723,0.598467826843262,-0.460290759801865,-0.700127422809601,0.433573722839355,-0.567305207252502,-0.395239055156708,-0.716373920440674,-0.574973285198212,-0.387987226247787,-0.665322661399841,-0.637817800045013,-0.303867101669312,-0.746460556983948,-0.591997683048248,-0.387987226247787,-0.665322661399841,-0.637817800045013,-0.333944708108902,-0.59163910150528,-0.733787477016449,-0.333204537630081,-0.64449280500412,-0.68818861246109,-0.333204537630081,-0.64449280500412,-0.68818861246109,-0.333944708108902,-0.59163910150528,-0.733787477016449,-0.25814101099968,-0.540419280529022,-0.800818383693695,-0.25814101099968,-0.540419280529022,-0.800818383693695,-0.220593020319939,-0.443751603364944,-0.86857533454895,-0.169943541288376,-0.498243600130081,-0.850219011306763,-0.189662843942642,-0.407565414905548,-0.89326274394989, +-0.220593020319939,-0.443751603364944,-0.86857533454895,-0.207848146557808,-0.289344847202301,-0.934386789798737,-0.207848146557808,-0.289344847202301,-0.934386789798737,-0.189118325710297,-0.264220237731934,-0.945738732814789,-0.199785277247429,-0.324241876602173,-0.924636662006378,-0.189118325710297,-0.264220237731934,-0.945738732814789,-0.21876335144043,-0.257966697216034,-0.941060960292816,-0.199785277247429,-0.324241876602173,-0.924636662006378,-0.242983594536781,-0.180361583828926,-0.953115224838257,-0.344839632511139,-0.114120595157146,-0.931698441505432,-0.339684456586838,-0.249061316251755,-0.906963527202606,-0.211405783891678,-0.193077832460403,-0.958137989044189,-0.242983594536781,-0.180361583828926,-0.953115224838257,-0.21876335144043,-0.257966697216034,-0.941060960292816,-0.344839632511139,-0.114120595157146,-0.931698441505432,-0.404624253511429,-0.0540775768458843,-0.912882626056671,-0.350218594074249,-0.156738519668579,-0.923460841178894,-0.401432752609253,-0.0305752791464329,-0.915377914905548,-0.404624253511429,-0.0540775768458843,-0.912882626056671,-0.436503171920776,0.0294902771711349,-0.899219214916229,-0.301725566387177,-0.0198103506118059,-0.953188955783844,-0.401432752609253,-0.0305752791464329,-0.915377914905548,-0.45162957906723,-0.0015536256833002,-0.892204165458679,-0.30757001042366,-0.0710304751992226,-0.948870539665222,-0.143133521080017,-0.042386882007122,-0.988795280456543,-0.365319103002548,-0.0458358079195023,-0.929753184318542,-0.134542554616928,-0.160345897078514,-0.97784835100174,-0.30757001042366,-0.0710304751992226,-0.948870539665222,-0.215931609272957,-0.0866412073373795,-0.972556829452515,0.0302328895777464,-0.170521482825279,-0.984889984130859,-0.134542554616928,-0.160345897078514,-0.97784835100174,-0.0156853441148996,-0.159185528755188,-0.987124025821686,-0.365319103002548,-0.0458358079195023,-0.929753184318542,-0.301725566387177,-0.0198103506118059,-0.953188955783844,-0.45162957906723,-0.0015536256833002,-0.892204165458679,-0.0156853441148996,-0.159185528755188,-0.987124025821686, +0.125146970152855,-0.147026941180229,-0.981183588504791,0.0302328895777464,-0.170521482825279,-0.984889984130859,-0.224940776824951,0.116155341267586,-0.967424154281616,-0.132265210151672,0.230017706751823,-0.964156448841095,-0.134717956185341,0.189552634954453,-0.97258460521698,-0.0916893929243088,0.22381928563118,-0.970308125019073,-0.134717956185341,0.189552634954453,-0.97258460521698,-0.103670813143253,0.238385453820229,-0.96562135219574,-0.112296335399151,0.090812936425209,-0.989516258239746,-0.132265210151672,0.230017706751823,-0.964156448841095,-0.224940776824951,0.116155341267586,-0.967424154281616,-0.143028378486633,0.214149504899979,-0.966272592544556,-0.0916893929243088,0.22381928563118,-0.970308125019073,-0.103670813143253,0.238385453820229,-0.96562135219574,-0.161024048924446,0.208880096673965,-0.964593350887299,-0.136039167642593,0.187416315078735,-0.972814679145813,-0.143028378486633,0.214149504899979,-0.966272592544556,-0.112296335399151,0.090812936425209,-0.989516258239746,-0.0101125156506896,-0.041262187063694,-0.999097108840942,0.0520155765116215,0.0441797599196434,-0.997668504714966,-0.0156853441148996,-0.159185528755188,-0.987124025821686,0.123632527887821,-0.0629393234848976,-0.990330040454865,0.125146970152855,-0.147026941180229,-0.981183588504791,0.0467387810349464,0.0630889758467674,-0.996912717819214,0.138881623744965,0.0239541567862034,-0.990019202232361,0.123632527887821,-0.0629393234848976,-0.990330040454865,-0.0479524545371532,0.0857889652252197,-0.995158672332764,0.0593034103512764,0.0568324029445648,-0.996620833873749,0.0467387810349464,0.0630889758467674,-0.996912717819214,0.0206686109304428,-0.081759050488472,-0.996437728404999,0.0190103780478239,-0.143487051129341,-0.989469587802887,0.0493968948721886,-0.0242191702127457,-0.998485505580902,0.0206686109304428,-0.081759050488472,-0.996437728404999,0.0593034103512764,0.0568324029445648,-0.996620833873749,-0.099189504981041,-0.0185407921671867,-0.994895756244659,-0.0101125156506896,-0.041262187063694,-0.999097108840942,-0.00602553272619843,-0.112938426434994,-0.993583559989929, +0.02940115891397,-0.0989354625344276,-0.99465936422348,-0.00602553272619843,-0.112938426434994,-0.993583559989929,0.0190103780478239,-0.143487051129341,-0.989469587802887,0.02940115891397,-0.0989354625344276,-0.99465936422348,0.0678945705294609,-0.137903437018394,-0.988115847110748,0.0475360043346882,-0.065895214676857,-0.996693551540375,-0.0395806021988392,-0.189762115478516,-0.981031954288483,0.0678945705294609,-0.137903437018394,-0.988115847110748,0.0852484926581383,0.04768380895257,-0.995217978954315,0.0475360043346882,-0.065895214676857,-0.996693551540375,0.0619631744921207,0.0327636711299419,-0.997540473937988,0.0852484926581383,0.04768380895257,-0.995217978954315,0.127894386649132,0.0270813573151827,-0.991417944431305,0.164056897163391,0.0175847243517637,-0.986293971538544,0.156251639127731,-0.011892119422555,-0.987645626068115,0.127894386649132,0.0270813573151827,-0.991417944431305,-0.0877998098731041,0.0248996168375015,-0.995826840400696,-0.0237608775496483,-0.127393871545792,-0.991567492485046,-0.0901547148823738,-0.11613742262125,-0.98913300037384,-0.0395806021988392,-0.189762115478516,-0.981031954288483,-0.0901547148823738,-0.11613742262125,-0.98913300037384,-0.0237608775496483,-0.127393871545792,-0.991567492485046,-0.0877998098731041,0.0248996168375015,-0.995826840400696,-0.160241693258286,0.18693707883358,-0.969214677810669,-0.067043274641037,0.192003682255745,-0.979101479053497,0.194986119866371,-0.0757842734456062,-0.977873742580414,0.164056897163391,0.0175847243517637,-0.986293971538544,0.121602244675159,-0.0288799051195383,-0.992158591747284,0.297214239835739,-0.315257459878922,-0.901263773441315,0.30599445104599,-0.262167602777481,-0.915224254131317,0.336532026529312,-0.261102020740509,-0.904749572277069,0.255576372146606,-0.23143082857132,-0.938680112361908,0.336532026529312,-0.261102020740509,-0.904749572277069,0.223113626241684,-0.11917807161808,-0.967479646205902,0.201302587985992,-0.117223046720028,-0.972489595413208,0.223113626241684,-0.11917807161808,-0.967479646205902,0.121602244675159,-0.0288799051195383,-0.992158591747284, +-0.0126893641427159,-0.68892377614975,-0.724722623825073,0.0311826728284359,-0.625264823436737,-0.779789328575134,0.0364673621952534,-0.342085719108582,-0.938960790634155,0.11298880726099,-0.708490550518036,-0.696616470813751,0.0311826728284359,-0.625264823436737,-0.779789328575134,-0.00349421938881278,-0.693794131278992,-0.720164775848389,0.219788774847984,-0.240773782134056,-0.945368051528931,0.194426283240318,-0.224393129348755,-0.954906344413757,0.181501194834709,-0.175054237246513,-0.96768444776535,0.219788774847984,-0.240773782134056,-0.945368051528931,0.218527972698212,-0.268132418394089,-0.938269913196564,0.191376388072968,-0.384473264217377,-0.903080999851227,0.191376388072968,-0.384473264217377,-0.903080999851227,0.218527972698212,-0.268132418394089,-0.938269913196564,0.189302518963814,-0.337667763233185,-0.922033071517944,0.0602031350135803,-0.330446273088455,-0.941902756690979,0.189302518963814,-0.337667763233185,-0.922033071517944,0.12470918148756,-0.254560112953186,-0.958982110023499,0.0889653041958809,-0.469005644321442,-0.878702759742737,0.0491982698440552,-0.386663824319839,-0.920907437801361,0.0759743377566338,-0.260848462581635,-0.962385535240173,0.0759743377566338,-0.260848462581635,-0.962385535240173,0.0602031350135803,-0.330446273088455,-0.941902756690979,0.12470918148756,-0.254560112953186,-0.958982110023499,0.126996800303459,-0.603143632411957,-0.787457644939423,0.11298880726099,-0.708490550518036,-0.696616470813751,0.0683420524001122,-0.541300117969513,-0.838047385215759,0.0889653041958809,-0.469005644321442,-0.878702759742737,0.126996800303459,-0.603143632411957,-0.787457644939423,0.0491982698440552,-0.386663824319839,-0.920907437801361,0.124767802655697,-0.256885468959808,-0.95835417509079,0.181501194834709,-0.175054237246513,-0.96768444776535,0.150959089398384,-0.174802199006081,-0.972962200641632,0.30599445104599,-0.262167602777481,-0.915224254131317,0.258647322654724,-0.256218314170837,-0.931371867656708,0.165363967418671,-0.174880489706993,-0.97060364484787,0.19019815325737,-0.16799284517765,-0.967265725135803, +0.180231630802155,0.0018807944143191,-0.983622372150421,0.165363967418671,-0.174880489706993,-0.97060364484787,0.180231630802155,0.0018807944143191,-0.983622372150421,0.18333488702774,0.0715155899524689,-0.980445683002472,0.166398614645004,0.0658273175358772,-0.983858823776245,0.0967889279127121,-0.102636590600014,-0.989998757839203,0.166398614645004,0.0658273175358772,-0.983858823776245,0.224675416946411,-0.0986150950193405,-0.96943074464798,0.13140606880188,-0.265536695718765,-0.95510345697403,0.0151032572612166,-0.293993681669235,-0.955687999725342,0.0967889279127121,-0.102636590600014,-0.989998757839203,0.0352594070136547,-0.370639443397522,-0.928107261657715,0.00122933427337557,-0.38062909245491,-0.924726963043213,-2.74218177764851e-006,-0.383664518594742,-0.923472464084625,0.13140606880188,-0.265536695718765,-0.95510345697403,-2.74218177764851e-006,-0.383664518594742,-0.923472464084625,0.0151032572612166,-0.293993681669235,-0.955687999725342,0.150959089398384,-0.174802199006081,-0.972962200641632,0.0352594070136547,-0.370639443397522,-0.928107261657715,0.124767802655697,-0.256885468959808,-0.95835417509079,-0.105759255588055,0.169364005327225,-0.979862630367279,-0.105194076895714,0.18419124186039,-0.977244973182678,-0.105508998036385,0.208710476756096,-0.972269356250763,-0.192791745066643,0.192377790808678,-0.962196469306946,-0.142204597592354,0.225137546658516,-0.963893592357636,-0.105194076895714,0.18419124186039,-0.977244973182678,-0.147346392273903,0.216344371438026,-0.96513420343399,-0.105508998036385,0.208710476756096,-0.972269356250763,-0.161024048924446,0.208880096673965,-0.964593350887299,-0.315758436918259,0.579250454902649,-0.751508712768555,-0.292733699083328,0.469024986028671,-0.833260118961334,-0.218119904398918,0.316949903964996,-0.923020243644714,-0.203810825943947,0.216321840882301,-0.954811990261078,-0.158472031354904,0.142510294914246,-0.977024734020233,-0.218119904398918,0.316949903964996,-0.923020243644714,-0.192791745066643,0.192377790808678,-0.962196469306946,-0.224791973829269,0.133383005857468,-0.965234398841858, +-0.203810825943947,0.216321840882301,-0.954811990261078,-0.424770772457123,0.779301404953003,-0.460715740919113,-0.401730746030808,0.84296578168869,-0.357800096273422,-0.4887655377388,0.814206898212433,-0.313329190015793,-0.315758436918259,0.579250454902649,-0.751508712768555,-0.301576495170593,0.634988725185394,-0.711224913597107,-0.424770772457123,0.779301404953003,-0.460715740919113,-0.418160825967789,0.764148414134979,-0.491140067577362,-0.498420923948288,0.762529969215393,-0.412461638450623,-0.378557771444321,0.833404898643494,-0.402653902769089,-0.369819402694702,0.681725084781647,-0.63125616312027,-0.531361937522888,0.661099910736084,-0.529718160629272,-0.418160825967789,0.764148414134979,-0.491140067577362,-0.4887655377388,0.814206898212433,-0.313329190015793,-0.401730746030808,0.84296578168869,-0.357800096273422,-0.406635671854019,0.855895519256592,-0.319515496492386,-0.378557771444321,0.833404898643494,-0.402653902769089,-0.498420923948288,0.762529969215393,-0.412461638450623,-0.406635671854019,0.855895519256592,-0.319515496492386,-0.37139618396759,0.561201751232147,-0.739673793315887,-0.478213369846344,0.578553795814514,-0.660747528076172,-0.369819402694702,0.681725084781647,-0.63125616312027,-0.37139618396759,0.561201751232147,-0.739673793315887,-0.269945323467255,0.492198556661606,-0.827568709850311,-0.393543601036072,0.489563018083572,-0.778107523918152,-0.234531119465828,0.42688524723053,-0.873363614082336,-0.393543601036072,0.489563018083572,-0.778107523918152,-0.269945323467255,0.492198556661606,-0.827568709850311,-0.17532005906105,0.313220888376236,-0.933357119560242,-0.160241693258286,0.18693707883358,-0.969214677810669,-0.187278464436531,0.277397722005844,-0.942325413227081,-0.234531119465828,0.42688524723053,-0.873363614082336,-0.146766126155853,0.423330903053284,-0.894008100032806,-0.190691411495209,0.345014065504074,-0.919022262096405,-0.17532005906105,0.313220888376236,-0.933357119560242,-0.187278464436531,0.277397722005844,-0.942325413227081,-0.190691411495209,0.345014065504074,-0.919022262096405, +0.0959679335355759,-0.234750226140022,-0.967306792736053,0.0837242007255554,-0.20459870994091,-0.975258588790894,0.0842657908797264,-0.38159367442131,-0.920481085777283,0.0364673621952534,-0.342085719108582,-0.938960790634155,0.0311826728284359,-0.625264823436737,-0.779789328575134,0.0524433739483356,-0.210433959960938,-0.976200342178345,0.138233199715614,-0.154509603977203,-0.978273093700409,0.0524433739483356,-0.210433959960938,-0.976200342178345,0.127959370613098,-0.57174950838089,-0.810388028621674,0.105448715388775,-0.0967698320746422,-0.98970502614975,0.138233199715614,-0.154509603977203,-0.978273093700409,0.115136742591858,-0.0487506836652756,-0.992152631282806,0.105448715388775,-0.0967698320746422,-0.98970502614975,0.115136742591858,-0.0487506836652756,-0.992152631282806,0.0837242007255554,-0.20459870994091,-0.975258588790894,-0.594754338264465,0.744075238704681,-0.304333925247192,-0.697091162204742,0.714060544967651,-0.0646629333496094,-0.494522094726563,0.838943779468536,-0.227202832698822,-0.399493336677551,-0.825402736663818,-0.39889258146286,-0.288713335990906,-0.779119074344635,-0.556433320045471,-0.329436868429184,-0.905864834785461,-0.266233146190643,-0.288713335990906,-0.779119074344635,-0.556433320045471,-0.456147879362106,-0.695713400840759,-0.554898023605347,-0.369729578495026,-0.672889709472656,-0.640717804431915,-0.302855789661407,-0.719336092472076,-0.625167012214661,-0.369729578495026,-0.672889709472656,-0.640717804431915,-0.396530598402023,-0.688705742359161,-0.606998920440674,-0.396530598402023,-0.688705742359161,-0.606998920440674,-0.409255385398865,-0.724496483802795,-0.55463033914566,-0.334797412157059,-0.744083523750305,-0.578143894672394,-0.334797412157059,-0.744083523750305,-0.578143894672394,-0.409255385398865,-0.724496483802795,-0.55463033914566,-0.395239055156708,-0.716373920440674,-0.574973285198212,-0.850143909454346,0.121064767241478,-0.512443780899048,-0.813594281673431,0.385205745697021,-0.435523688793182,-0.74772721529007,0.352107733488083,-0.562960028648376,-0.700127422809601,0.433573722839355,-0.567305207252502, +-0.74772721529007,0.352107733488083,-0.562960028648376,-0.803357422351837,0.427955508232117,-0.414090305566788,-0.798590183258057,0.469512134790421,-0.376579225063324,-0.782090604305267,0.597028851509094,-0.178580030798912,-0.655719816684723,0.598467826843262,-0.460290759801865,-0.594754338264465,0.744075238704681,-0.304333925247192,-0.782090604305267,0.597028851509094,-0.178580030798912,-0.697091162204742,0.714060544967651,-0.0646629333496094,-0.798590183258057,0.469512134790421,-0.376579225063324,-0.700127422809601,0.433573722839355,-0.567305207252502,-0.803357422351837,0.427955508232117,-0.414090305566788,-0.387987226247787,-0.665322661399841,-0.637817800045013,-0.395239055156708,-0.716373920440674,-0.574973285198212,-0.405410468578339,-0.68100917339325,-0.609810352325439,-0.333944708108902,-0.59163910150528,-0.733787477016449,-0.387987226247787,-0.665322661399841,-0.637817800045013,-0.405410468578339,-0.68100917339325,-0.609810352325439,-0.25814101099968,-0.540419280529022,-0.800818383693695,-0.333944708108902,-0.59163910150528,-0.733787477016449,-0.220593020319939,-0.443751603364944,-0.86857533454895,-0.207848146557808,-0.289344847202301,-0.934386789798737,-0.220593020319939,-0.443751603364944,-0.86857533454895,-0.335564792156219,-0.310365200042725,-0.889420926570892,-0.207848146557808,-0.289344847202301,-0.934386789798737,-0.211405783891678,-0.193077832460403,-0.958137989044189,-0.189118325710297,-0.264220237731934,-0.945738732814789,-0.189118325710297,-0.264220237731934,-0.945738732814789,-0.211405783891678,-0.193077832460403,-0.958137989044189,-0.21876335144043,-0.257966697216034,-0.941060960292816,-0.242983594536781,-0.180361583828926,-0.953115224838257,-0.185722827911377,-0.0727532729506493,-0.979905068874359,-0.344839632511139,-0.114120595157146,-0.931698441505432,-0.211405783891678,-0.193077832460403,-0.958137989044189,-0.185722827911377,-0.0727532729506493,-0.979905068874359,-0.242983594536781,-0.180361583828926,-0.953115224838257,-0.404624253511429,-0.0540775768458843,-0.912882626056671,-0.344839632511139,-0.114120595157146,-0.931698441505432, +-0.258718281984329,0.00179080211091787,-0.965951085090637,-0.404624253511429,-0.0540775768458843,-0.912882626056671,-0.258718281984329,0.00179080211091787,-0.965951085090637,-0.436503171920776,0.0294902771711349,-0.899219214916229,-0.436503171920776,0.0294902771711349,-0.899219214916229,-0.45162957906723,-0.0015536256833002,-0.892204165458679,-0.401432752609253,-0.0305752791464329,-0.915377914905548,-0.30757001042366,-0.0710304751992226,-0.948870539665222,-0.365319103002548,-0.0458358079195023,-0.929753184318542,-0.470697611570358,0.0247064139693975,-0.881948411464691,-0.215931609272957,-0.0866412073373795,-0.972556829452515,-0.30757001042366,-0.0710304751992226,-0.948870539665222,-0.348955899477005,0.0464586392045021,-0.935986757278442,-0.215931609272957,-0.0866412073373795,-0.972556829452515,-0.0156853441148996,-0.159185528755188,-0.987124025821686,-0.134542554616928,-0.160345897078514,-0.97784835100174,-0.470697611570358,0.0247064139693975,-0.881948411464691,-0.365319103002548,-0.0458358079195023,-0.929753184318542,-0.45162957906723,-0.0015536256833002,-0.892204165458679,-0.103670813143253,0.238385453820229,-0.96562135219574,-0.134717956185341,0.189552634954453,-0.97258460521698,-0.132265210151672,0.230017706751823,-0.964156448841095,-0.112296335399151,0.090812936425209,-0.989516258239746,-0.071506068110466,0.183812990784645,-0.980356872081757,-0.132265210151672,0.230017706751823,-0.964156448841095,-0.143028378486633,0.214149504899979,-0.966272592544556,-0.103670813143253,0.238385453820229,-0.96562135219574,-0.127928629517555,0.216184452176094,-0.967935144901276,-0.143028378486633,0.214149504899979,-0.966272592544556,-0.147346392273903,0.216344371438026,-0.96513420343399,-0.161024048924446,0.208880096673965,-0.964593350887299,-0.0101125156506896,-0.041262187063694,-0.999097108840942,0.02940115891397,-0.0989354625344276,-0.99465936422348,0.0520155765116215,0.0441797599196434,-0.997668504714966,0.0520155765116215,0.0441797599196434,-0.997668504714966,0.0462311170995235,0.104563765227795,-0.993443012237549,-0.112296335399151,0.090812936425209,-0.989516258239746, +-0.0395497009158134,-0.0228999368846416,-0.998955130577087,0.123632527887821,-0.0629393234848976,-0.990330040454865,-0.0156853441148996,-0.159185528755188,-0.987124025821686,-0.0395497009158134,-0.0228999368846416,-0.998955130577087,0.0467387810349464,0.0630889758467674,-0.996912717819214,0.123632527887821,-0.0629393234848976,-0.990330040454865,-0.099189504981041,-0.0185407921671867,-0.994895756244659,0.0593034103512764,0.0568324029445648,-0.996620833873749,-0.0479524545371532,0.0857889652252197,-0.995158672332764,-0.0479524545371532,0.0857889652252197,-0.995158672332764,0.0467387810349464,0.0630889758467674,-0.996912717819214,-0.0695839077234268,0.0894111469388008,-0.993561089038849,0.0206686109304428,-0.081759050488472,-0.996437728404999,0.02940115891397,-0.0989354625344276,-0.99465936422348,0.0190103780478239,-0.143487051129341,-0.989469587802887,-0.0490301102399826,-0.0214664470404387,-0.998566567897797,0.0206686109304428,-0.081759050488472,-0.996437728404999,-0.099189504981041,-0.0185407921671867,-0.994895756244659,0.0433649569749832,-0.221180886030197,-0.974268019199371,0.0678945705294609,-0.137903437018394,-0.988115847110748,-0.0395806021988392,-0.189762115478516,-0.981031954288483,0.0852484926581383,0.04768380895257,-0.995217978954315,0.0678945705294609,-0.137903437018394,-0.988115847110748,0.127894386649132,0.0270813573151827,-0.991417944431305,0.164056897163391,0.0175847243517637,-0.986293971538544,0.127894386649132,0.0270813573151827,-0.991417944431305,0.163514569401741,-0.0149432085454464,-0.98642772436142,-0.0877998098731041,0.0248996168375015,-0.995826840400696,0.0645886734127998,0.0815169438719749,-0.994576930999756,-0.0237608775496483,-0.127393871545792,-0.991567492485046,-0.0395806021988392,-0.189762115478516,-0.981031954288483,-0.0237608775496483,-0.127393871545792,-0.991567492485046,0.0433649569749832,-0.221180886030197,-0.974268019199371,-0.067043274641037,0.192003682255745,-0.979101479053497,-0.160241693258286,0.18693707883358,-0.969214677810669,-0.17532005906105,0.313220888376236,-0.933357119560242, +-0.0877998098731041,0.0248996168375015,-0.995826840400696,-0.067043274641037,0.192003682255745,-0.979101479053497,0.0645886734127998,0.0815169438719749,-0.994576930999756,0.164056897163391,0.0175847243517637,-0.986293971538544,0.163514569401741,-0.0149432085454464,-0.98642772436142,0.121602244675159,-0.0288799051195383,-0.992158591747284,0.30599445104599,-0.262167602777481,-0.915224254131317,0.297214239835739,-0.315257459878922,-0.901263773441315,0.258647322654724,-0.256218314170837,-0.931371867656708,0.255576372146606,-0.23143082857132,-0.938680112361908,0.297214239835739,-0.315257459878922,-0.901263773441315,0.336532026529312,-0.261102020740509,-0.904749572277069,0.255576372146606,-0.23143082857132,-0.938680112361908,0.223113626241684,-0.11917807161808,-0.967479646205902,0.201302587985992,-0.117223046720028,-0.972489595413208,0.201302587985992,-0.117223046720028,-0.972489595413208,0.121602244675159,-0.0288799051195383,-0.992158591747284,0.163699015974998,-0.116666130721569,-0.979587435722351,0.127959370613098,-0.57174950838089,-0.810388028621674,0.0311826728284359,-0.625264823436737,-0.779789328575134,0.11298880726099,-0.708490550518036,-0.696616470813751,0.219788774847984,-0.240773782134056,-0.945368051528931,0.181501194834709,-0.175054237246513,-0.96768444776535,0.218527972698212,-0.268132418394089,-0.938269913196564,0.218527972698212,-0.268132418394089,-0.938269913196564,0.280963540077209,-0.263755589723587,-0.922763466835022,0.189302518963814,-0.337667763233185,-0.922033071517944,0.280963540077209,-0.263755589723587,-0.922763466835022,0.12470918148756,-0.254560112953186,-0.958982110023499,0.189302518963814,-0.337667763233185,-0.922033071517944,0.0889653041958809,-0.469005644321442,-0.878702759742737,0.0759743377566338,-0.260848462581635,-0.962385535240173,0.0875017121434212,-0.513224601745605,-0.853782057762146,0.12470918148756,-0.254560112953186,-0.958982110023499,0.173526376485825,-0.147217467427254,-0.973763585090637,0.0759743377566338,-0.260848462581635,-0.962385535240173,0.178986579179764,-0.610258638858795,-0.771717667579651, +0.11298880726099,-0.708490550518036,-0.696616470813751,0.126996800303459,-0.603143632411957,-0.787457644939423,0.15455861389637,-0.665079534053802,-0.730602979660034,0.126996800303459,-0.603143632411957,-0.787457644939423,0.0889653041958809,-0.469005644321442,-0.878702759742737,0.124767802655697,-0.256885468959808,-0.95835417509079,0.113374941051006,-0.336371541023254,-0.934879779815674,0.181501194834709,-0.175054237246513,-0.96768444776535,0.165363967418671,-0.174880489706993,-0.97060364484787,0.258647322654724,-0.256218314170837,-0.931371867656708,0.174083575606346,-0.161216720938683,-0.971444249153137,0.19019815325737,-0.16799284517765,-0.967265725135803,0.282154619693756,-0.189542219042778,-0.940458655357361,0.180231630802155,0.0018807944143191,-0.983622372150421,0.19019815325737,-0.16799284517765,-0.967265725135803,0.165363967418671,-0.174880489706993,-0.97060364484787,0.167007371783257,-0.235988944768906,-0.957297086715698,0.180231630802155,0.0018807944143191,-0.983622372150421,0.218406438827515,-0.0481206811964512,-0.974670648574829,0.18333488702774,0.0715155899524689,-0.980445683002472,0.183729469776154,0.0450949296355248,-0.981941878795624,0.166398614645004,0.0658273175358772,-0.983858823776245,0.18333488702774,0.0715155899524689,-0.980445683002472,0.183729469776154,0.0450949296355248,-0.981941878795624,0.224675416946411,-0.0986150950193405,-0.96943074464798,0.166398614645004,0.0658273175358772,-0.983858823776245,0.224675416946411,-0.0986150950193405,-0.96943074464798,0.13140606880188,-0.265536695718765,-0.95510345697403,0.0967889279127121,-0.102636590600014,-0.989998757839203,0.135395973920822,-0.383274108171463,-0.913656771183014,0.0352594070136547,-0.370639443397522,-0.928107261657715,-2.74218177764851e-006,-0.383664518594742,-0.923472464084625,0.13140606880188,-0.265536695718765,-0.95510345697403,0.135395973920822,-0.383274108171463,-0.913656771183014,-2.74218177764851e-006,-0.383664518594742,-0.923472464084625,0.124767802655697,-0.256885468959808,-0.95835417509079,0.0352594070136547,-0.370639443397522,-0.928107261657715, +0.113374941051006,-0.336371541023254,-0.934879779815674,-0.105194076895714,0.18419124186039,-0.977244973182678,-0.105759255588055,0.169364005327225,-0.979862630367279,-0.123818516731262,0.129360795021057,-0.983836710453033,-0.147346392273903,0.216344371438026,-0.96513420343399,-0.105759255588055,0.169364005327225,-0.979862630367279,-0.105508998036385,0.208710476756096,-0.972269356250763,-0.197802856564522,0.121516495943069,-0.972680628299713,-0.192791745066643,0.192377790808678,-0.962196469306946,-0.105194076895714,0.18419124186039,-0.977244973182678,-0.315758436918259,0.579250454902649,-0.751508712768555,-0.218119904398918,0.316949903964996,-0.923020243644714,-0.301576495170593,0.634988725185394,-0.711224913597107,-0.203810825943947,0.216321840882301,-0.954811990261078,-0.224791973829269,0.133383005857468,-0.965234398841858,-0.158472031354904,0.142510294914246,-0.977024734020233,-0.101109839975834,0.206593975424767,-0.973188400268555,-0.218119904398918,0.316949903964996,-0.923020243644714,-0.158472031354904,0.142510294914246,-0.977024734020233,-0.224791973829269,0.133383005857468,-0.965234398841858,-0.192791745066643,0.192377790808678,-0.962196469306946,-0.197802856564522,0.121516495943069,-0.972680628299713,-0.401730746030808,0.84296578168869,-0.357800096273422,-0.424770772457123,0.779301404953003,-0.460715740919113,-0.301576495170593,0.634988725185394,-0.711224913597107,-0.300212740898132,0.799461960792542,-0.520319819450378,-0.418160825967789,0.764148414134979,-0.491140067577362,-0.378557771444321,0.833404898643494,-0.402653902769089,-0.300212740898132,0.799461960792542,-0.520319819450378,-0.369819402694702,0.681725084781647,-0.63125616312027,-0.418160825967789,0.764148414134979,-0.491140067577362,-0.401730746030808,0.84296578168869,-0.357800096273422,-0.346794605255127,0.886809706687927,-0.305453658103943,-0.406635671854019,0.855895519256592,-0.319515496492386,-0.378557771444321,0.833404898643494,-0.402653902769089,-0.406635671854019,0.855895519256592,-0.319515496492386,-0.317880719900131,0.879152297973633,-0.355025231838226, +-0.254042267799377,0.584669888019562,-0.770469725131989,-0.37139618396759,0.561201751232147,-0.739673793315887,-0.369819402694702,0.681725084781647,-0.63125616312027,-0.254042267799377,0.584669888019562,-0.770469725131989,-0.269945323467255,0.492198556661606,-0.827568709850311,-0.37139618396759,0.561201751232147,-0.739673793315887,-0.234531119465828,0.42688524723053,-0.873363614082336,-0.269945323467255,0.492198556661606,-0.827568709850311,-0.144059970974922,0.501402258872986,-0.853136837482452,-0.234531119465828,0.42688524723053,-0.873363614082336,-0.144059970974922,0.501402258872986,-0.853136837482452,-0.146766126155853,0.423330903053284,-0.894008100032806,-0.17532005906105,0.313220888376236,-0.933357119560242,-0.190691411495209,0.345014065504074,-0.919022262096405,-0.146766126155853,0.423330903053284,-0.894008100032806,0.0842657908797264,-0.38159367442131,-0.920481085777283,0.0837242007255554,-0.20459870994091,-0.975258588790894,0.0919713452458382,-0.196463525295258,-0.976188123226166,0.127959370613098,-0.57174950838089,-0.810388028621674,0.0524433739483356,-0.210433959960938,-0.976200342178345,0.0311826728284359,-0.625264823436737,-0.779789328575134,0.178986579179764,-0.610258638858795,-0.771717667579651,0.138233199715614,-0.154509603977203,-0.978273093700409,0.127959370613098,-0.57174950838089,-0.810388028621674,0.115136742591858,-0.0487506836652756,-0.992152631282806,0.138233199715614,-0.154509603977203,-0.978273093700409,0.161467954516411,0.065901018679142,-0.984675109386444,0.0837242007255554,-0.20459870994091,-0.975258588790894,0.115136742591858,-0.0487506836652756,-0.992152631282806,0.0919713452458382,-0.196463525295258,-0.976188123226166,-0.456147879362106,-0.695713400840759,-0.554898023605347,-0.288713335990906,-0.779119074344635,-0.556433320045471,-0.399493336677551,-0.825402736663818,-0.39889258146286,-0.456147879362106,-0.695713400840759,-0.554898023605347,-0.470216661691666,-0.627006590366364,-0.621094882488251,-0.369729578495026,-0.672889709472656,-0.640717804431915,-0.369729578495026,-0.672889709472656,-0.640717804431915, +-0.470216661691666,-0.627006590366364,-0.621094882488251,-0.396530598402023,-0.688705742359161,-0.606998920440674,-0.46735543012619,-0.687389254570007,-0.555944919586182,-0.409255385398865,-0.724496483802795,-0.55463033914566,-0.396530598402023,-0.688705742359161,-0.606998920440674,-0.395239055156708,-0.716373920440674,-0.574973285198212,-0.409255385398865,-0.724496483802795,-0.55463033914566,-0.442909896373749,-0.715986728668213,-0.539623618125916,-0.90730082988739,0.3603236079216,-0.21673022210598,-0.813594281673431,0.385205745697021,-0.435523688793182,-0.850143909454346,0.121064767241478,-0.512443780899048,-0.803357422351837,0.427955508232117,-0.414090305566788,-0.74772721529007,0.352107733488083,-0.562960028648376,-0.813594281673431,0.385205745697021,-0.435523688793182,-0.878110945224762,0.460698336362839,-0.129143670201302,-0.782090604305267,0.597028851509094,-0.178580030798912,-0.798590183258057,0.469512134790421,-0.376579225063324,-0.826712250709534,0.562068462371826,0.0250152181833982,-0.697091162204742,0.714060544967651,-0.0646629333496094,-0.782090604305267,0.597028851509094,-0.178580030798912,-0.798590183258057,0.469512134790421,-0.376579225063324,-0.803357422351837,0.427955508232117,-0.414090305566788,-0.878110945224762,0.460698336362839,-0.129143670201302,-0.395239055156708,-0.716373920440674,-0.574973285198212,-0.442909896373749,-0.715986728668213,-0.539623618125916,-0.405410468578339,-0.68100917339325,-0.609810352325439,-0.417997807264328,-0.627880156040192,-0.656539559364319,-0.333944708108902,-0.59163910150528,-0.733787477016449,-0.405410468578339,-0.68100917339325,-0.609810352325439,-0.352198898792267,-0.489720672369003,-0.797577321529388,-0.220593020319939,-0.443751603364944,-0.86857533454895,-0.333944708108902,-0.59163910150528,-0.733787477016449,-0.352198898792267,-0.489720672369003,-0.797577321529388,-0.335564792156219,-0.310365200042725,-0.889420926570892,-0.220593020319939,-0.443751603364944,-0.86857533454895,-0.321030408143997,-0.177257984876633,-0.930332720279694,-0.207848146557808,-0.289344847202301,-0.934386789798737, +-0.335564792156219,-0.310365200042725,-0.889420926570892,-0.211405783891678,-0.193077832460403,-0.958137989044189,-0.207848146557808,-0.289344847202301,-0.934386789798737,-0.321030408143997,-0.177257984876633,-0.930332720279694,-0.185722827911377,-0.0727532729506493,-0.979905068874359,-0.258718281984329,0.00179080211091787,-0.965951085090637,-0.344839632511139,-0.114120595157146,-0.931698441505432,-0.203949555754662,-0.101085275411606,-0.973748445510864,-0.185722827911377,-0.0727532729506493,-0.979905068874359,-0.211405783891678,-0.193077832460403,-0.958137989044189,-0.258542835712433,0.051242507994175,-0.964639663696289,-0.436503171920776,0.0294902771711349,-0.899219214916229,-0.258718281984329,0.00179080211091787,-0.965951085090637,-0.45162957906723,-0.0015536256833002,-0.892204165458679,-0.436503171920776,0.0294902771711349,-0.899219214916229,-0.545814394950867,0.0651776269078255,-0.835367202758789,-0.348955899477005,0.0464586392045021,-0.935986757278442,-0.30757001042366,-0.0710304751992226,-0.948870539665222,-0.470697611570358,0.0247064139693975,-0.881948411464691,-0.215931609272957,-0.0866412073373795,-0.972556829452515,-0.348955899477005,0.0464586392045021,-0.935986757278442,-0.179897546768188,0.0478736124932766,-0.982519686222076,-0.215931609272957,-0.0866412073373795,-0.972556829452515,-0.0395497009158134,-0.0228999368846416,-0.998955130577087,-0.0156853441148996,-0.159185528755188,-0.987124025821686,-0.470697611570358,0.0247064139693975,-0.881948411464691,-0.45162957906723,-0.0015536256833002,-0.892204165458679,-0.545814394950867,0.0651776269078255,-0.835367202758789,-0.103670813143253,0.238385453820229,-0.96562135219574,-0.132265210151672,0.230017706751823,-0.964156448841095,-0.081613227725029,0.193947643041611,-0.977611005306244,-0.071506068110466,0.183812990784645,-0.980356872081757,-0.112296335399151,0.090812936425209,-0.989516258239746,0.0462311170995235,0.104563765227795,-0.993443012237549,-0.071506068110466,0.183812990784645,-0.980356872081757,-0.081613227725029,0.193947643041611,-0.977611005306244, +-0.132265210151672,0.230017706751823,-0.964156448841095,-0.127928629517555,0.216184452176094,-0.967935144901276,-0.103670813143253,0.238385453820229,-0.96562135219574,-0.081613227725029,0.193947643041611,-0.977611005306244,-0.147346392273903,0.216344371438026,-0.96513420343399,-0.143028378486633,0.214149504899979,-0.966272592544556,-0.127928629517555,0.216184452176094,-0.967935144901276,0.0520155765116215,0.0441797599196434,-0.997668504714966,0.02940115891397,-0.0989354625344276,-0.99465936422348,0.0444735288619995,0.0130248935893178,-0.998925626277924,0.0462311170995235,0.104563765227795,-0.993443012237549,0.0520155765116215,0.0441797599196434,-0.997668504714966,0.0784993097186089,0.093907967209816,-0.992481291294098,-0.0695839077234268,0.0894111469388008,-0.993561089038849,0.0467387810349464,0.0630889758467674,-0.996912717819214,-0.0395497009158134,-0.0228999368846416,-0.998955130577087,-0.0479524545371532,0.0857889652252197,-0.995158672332764,-0.21675717830658,0.080500602722168,-0.972900748252869,-0.099189504981041,-0.0185407921671867,-0.994895756244659,-0.0479524545371532,0.0857889652252197,-0.995158672332764,-0.0695839077234268,0.0894111469388008,-0.993561089038849,-0.182093650102615,0.122520454227924,-0.975618004798889,-0.0490301102399826,-0.0214664470404387,-0.998566567897797,0.02940115891397,-0.0989354625344276,-0.99465936422348,0.0206686109304428,-0.081759050488472,-0.996437728404999,-0.0490301102399826,-0.0214664470404387,-0.998566567897797,-0.099189504981041,-0.0185407921671867,-0.994895756244659,-0.198037981987,0.025371577590704,-0.979865908622742,0.0678945705294609,-0.137903437018394,-0.988115847110748,0.0433649569749832,-0.221180886030197,-0.974268019199371,0.146844774484634,-0.120697386562824,-0.981768131256104,0.0678945705294609,-0.137903437018394,-0.988115847110748,0.18929535150528,-0.127887591719627,-0.973556220531464,0.127894386649132,0.0270813573151827,-0.991417944431305,0.127894386649132,0.0270813573151827,-0.991417944431305,0.18929535150528,-0.127887591719627,-0.973556220531464,0.163514569401741,-0.0149432085454464,-0.98642772436142, +0.146844774484634,-0.120697386562824,-0.981768131256104,-0.0237608775496483,-0.127393871545792,-0.991567492485046,0.0645886734127998,0.0815169438719749,-0.994576930999756,0.146844774484634,-0.120697386562824,-0.981768131256104,0.0433649569749832,-0.221180886030197,-0.974268019199371,-0.0237608775496483,-0.127393871545792,-0.991567492485046,-0.17532005906105,0.313220888376236,-0.933357119560242,-0.024742403998971,0.296238124370575,-0.954793512821198,-0.067043274641037,0.192003682255745,-0.979101479053497,-0.067043274641037,0.192003682255745,-0.979101479053497,0.038669478148222,0.200694337487221,-0.978890359401703,0.0645886734127998,0.0815169438719749,-0.994576930999756,0.121602244675159,-0.0288799051195383,-0.992158591747284,0.163514569401741,-0.0149432085454464,-0.98642772436142,0.0444004088640213,-0.02158791013062,-0.998780488967896,0.255576372146606,-0.23143082857132,-0.938680112361908,0.258647322654724,-0.256218314170837,-0.931371867656708,0.297214239835739,-0.315257459878922,-0.901263773441315,0.255576372146606,-0.23143082857132,-0.938680112361908,0.201302587985992,-0.117223046720028,-0.972489595413208,0.294915109872818,-0.20293690264225,-0.933724462985992,0.121602244675159,-0.0288799051195383,-0.992158591747284,0.0654614567756653,-0.0246040243655443,-0.997551560401917,0.163699015974998,-0.116666130721569,-0.979587435722351,0.266565561294556,-0.14500480890274,-0.95284640789032,0.201302587985992,-0.117223046720028,-0.972489595413208,0.163699015974998,-0.116666130721569,-0.979587435722351,0.178986579179764,-0.610258638858795,-0.771717667579651,0.127959370613098,-0.57174950838089,-0.810388028621674,0.11298880726099,-0.708490550518036,-0.696616470813751,0.218527972698212,-0.268132418394089,-0.938269913196564,0.181501194834709,-0.175054237246513,-0.96768444776535,0.210872441530228,-0.308566808700562,-0.92753392457962,0.210872441530228,-0.308566808700562,-0.92753392457962,0.280963540077209,-0.263755589723587,-0.922763466835022,0.218527972698212,-0.268132418394089,-0.938269913196564,0.12470918148756,-0.254560112953186,-0.958982110023499, +0.280963540077209,-0.263755589723587,-0.922763466835022,0.173526376485825,-0.147217467427254,-0.973763585090637,0.133050665259361,-0.258500725030899,-0.95680445432663,0.0875017121434212,-0.513224601745605,-0.853782057762146,0.0759743377566338,-0.260848462581635,-0.962385535240173,0.0889653041958809,-0.469005644321442,-0.878702759742737,0.0875017121434212,-0.513224601745605,-0.853782057762146,0.15455861389637,-0.665079534053802,-0.730602979660034,0.173538848757744,-0.0438672862946987,-0.98384952545166,0.0759743377566338,-0.260848462581635,-0.962385535240173,0.173526376485825,-0.147217467427254,-0.973763585090637,0.15455861389637,-0.665079534053802,-0.730602979660034,0.178986579179764,-0.610258638858795,-0.771717667579651,0.126996800303459,-0.603143632411957,-0.787457644939423,0.181501194834709,-0.175054237246513,-0.96768444776535,0.113374941051006,-0.336371541023254,-0.934879779815674,0.210872441530228,-0.308566808700562,-0.92753392457962,0.174083575606346,-0.161216720938683,-0.971444249153137,0.258647322654724,-0.256218314170837,-0.931371867656708,0.288809478282928,-0.208569824695587,-0.934391558170319,0.165363967418671,-0.174880489706993,-0.97060364484787,0.174083575606346,-0.161216720938683,-0.971444249153137,0.167007371783257,-0.235988944768906,-0.957297086715698,0.19019815325737,-0.16799284517765,-0.967265725135803,0.167007371783257,-0.235988944768906,-0.957297086715698,0.282154619693756,-0.189542219042778,-0.940458655357361,0.282154619693756,-0.189542219042778,-0.940458655357361,0.218406438827515,-0.0481206811964512,-0.974670648574829,0.180231630802155,0.0018807944143191,-0.983622372150421,0.218406438827515,-0.0481206811964512,-0.974670648574829,0.118776977062225,0.0539676286280155,-0.991453170776367,0.18333488702774,0.0715155899524689,-0.980445683002472,0.183729469776154,0.0450949296355248,-0.981941878795624,0.18333488702774,0.0715155899524689,-0.980445683002472,0.118776977062225,0.0539676286280155,-0.991453170776367,0.224675416946411,-0.0986150950193405,-0.96943074464798,0.183729469776154,0.0450949296355248,-0.981941878795624, +0.242228031158447,-0.126434564590454,-0.961945831775665,0.251980423927307,-0.282243013381958,-0.925659000873566,0.13140606880188,-0.265536695718765,-0.95510345697403,0.224675416946411,-0.0986150950193405,-0.96943074464798,0.113374941051006,-0.336371541023254,-0.934879779815674,0.0352594070136547,-0.370639443397522,-0.928107261657715,0.135395973920822,-0.383274108171463,-0.913656771183014,0.251980423927307,-0.282243013381958,-0.925659000873566,0.135395973920822,-0.383274108171463,-0.913656771183014,0.13140606880188,-0.265536695718765,-0.95510345697403,-0.123818516731262,0.129360795021057,-0.983836710453033,-0.105759255588055,0.169364005327225,-0.979862630367279,-0.220294862985611,0.175422713160515,-0.959529519081116,-0.105194076895714,0.18419124186039,-0.977244973182678,-0.123818516731262,0.129360795021057,-0.983836710453033,-0.197802856564522,0.121516495943069,-0.972680628299713,-0.171391665935516,0.2453703135252,-0.954158365726471,-0.105759255588055,0.169364005327225,-0.979862630367279,-0.147346392273903,0.216344371438026,-0.96513420343399,-0.115657836198807,0.404553443193436,-0.907171249389648,-0.301576495170593,0.634988725185394,-0.711224913597107,-0.218119904398918,0.316949903964996,-0.923020243644714,-0.19674351811409,0.0997316017746925,-0.975369393825531,-0.158472031354904,0.142510294914246,-0.977024734020233,-0.224791973829269,0.133383005857468,-0.965234398841858,-0.115657836198807,0.404553443193436,-0.907171249389648,-0.218119904398918,0.316949903964996,-0.923020243644714,-0.101109839975834,0.206593975424767,-0.973188400268555,-0.101109839975834,0.206593975424767,-0.973188400268555,-0.158472031354904,0.142510294914246,-0.977024734020233,-0.0630249530076981,0.135019347071648,-0.988836348056793,-0.224791973829269,0.133383005857468,-0.965234398841858,-0.197802856564522,0.121516495943069,-0.972680628299713,-0.19674351811409,0.0997316017746925,-0.975369393825531,-0.250747919082642,0.76234245300293,-0.596623241901398,-0.401730746030808,0.84296578168869,-0.357800096273422,-0.301576495170593,0.634988725185394,-0.711224913597107, +-0.245727062225342,0.876851618289948,-0.413218289613724,-0.300212740898132,0.799461960792542,-0.520319819450378,-0.378557771444321,0.833404898643494,-0.402653902769089,-0.21731261909008,0.701985120773315,-0.678227066993713,-0.369819402694702,0.681725084781647,-0.63125616312027,-0.300212740898132,0.799461960792542,-0.520319819450378,-0.250747919082642,0.76234245300293,-0.596623241901398,-0.346794605255127,0.886809706687927,-0.305453658103943,-0.401730746030808,0.84296578168869,-0.357800096273422,-0.406635671854019,0.855895519256592,-0.319515496492386,-0.346794605255127,0.886809706687927,-0.305453658103943,-0.322711199522018,0.899563670158386,-0.294351071119308,-0.322711199522018,0.899563670158386,-0.294351071119308,-0.317880719900131,0.879152297973633,-0.355025231838226,-0.406635671854019,0.855895519256592,-0.319515496492386,-0.245727062225342,0.876851618289948,-0.413218289613724,-0.378557771444321,0.833404898643494,-0.402653902769089,-0.317880719900131,0.879152297973633,-0.355025231838226,-0.21731261909008,0.701985120773315,-0.678227066993713,-0.254042267799377,0.584669888019562,-0.770469725131989,-0.369819402694702,0.681725084781647,-0.63125616312027,-0.269945323467255,0.492198556661606,-0.827568709850311,-0.254042267799377,0.584669888019562,-0.770469725131989,-0.144059970974922,0.501402258872986,-0.853136837482452,-0.0411270670592785,0.464413553476334,-0.884662926197052,-0.146766126155853,0.423330903053284,-0.894008100032806,-0.144059970974922,0.501402258872986,-0.853136837482452,-0.0561862401664257,0.397222965955734,-0.916000485420227,-0.17532005906105,0.313220888376236,-0.933357119560242,-0.146766126155853,0.423330903053284,-0.894008100032806,0.084542416036129,-0.492398649454117,-0.866254031658173,0.0842657908797264,-0.38159367442131,-0.920481085777283,0.0919713452458382,-0.196463525295258,-0.976188123226166,0.166455715894699,-0.206497728824615,-0.964184165000916,0.138233199715614,-0.154509603977203,-0.978273093700409,0.178986579179764,-0.610258638858795,-0.771717667579651,0.166455715894699,-0.206497728824615,-0.964184165000916, +0.161467954516411,0.065901018679142,-0.984675109386444,0.138233199715614,-0.154509603977203,-0.978273093700409,0.139867320656776,0.0103175556287169,-0.990116477012634,0.115136742591858,-0.0487506836652756,-0.992152631282806,0.161467954516411,0.065901018679142,-0.984675109386444,0.139867320656776,0.0103175556287169,-0.990116477012634,0.0919713452458382,-0.196463525295258,-0.976188123226166,0.115136742591858,-0.0487506836652756,-0.992152631282806,-0.456147879362106,-0.695713400840759,-0.554898023605347,-0.399493336677551,-0.825402736663818,-0.39889258146286,-0.55857127904892,-0.711980938911438,-0.425536215305328,-0.564465641975403,-0.59893798828125,-0.568024158477783,-0.470216661691666,-0.627006590366364,-0.621094882488251,-0.456147879362106,-0.695713400840759,-0.554898023605347,-0.470216661691666,-0.627006590366364,-0.621094882488251,-0.46735543012619,-0.687389254570007,-0.555944919586182,-0.396530598402023,-0.688705742359161,-0.606998920440674,-0.46735543012619,-0.687389254570007,-0.555944919586182,-0.442909896373749,-0.715986728668213,-0.539623618125916,-0.409255385398865,-0.724496483802795,-0.55463033914566,-0.90730082988739,0.3603236079216,-0.21673022210598,-0.870820581912994,0.453672081232071,-0.189348936080933,-0.813594281673431,0.385205745697021,-0.435523688793182,-0.96758097410202,0.198888629674912,-0.155660644173622,-0.90730082988739,0.3603236079216,-0.21673022210598,-0.850143909454346,0.121064767241478,-0.512443780899048,-0.803357422351837,0.427955508232117,-0.414090305566788,-0.813594281673431,0.385205745697021,-0.435523688793182,-0.870820581912994,0.453672081232071,-0.189348936080933,-0.782090604305267,0.597028851509094,-0.178580030798912,-0.878110945224762,0.460698336362839,-0.129143670201302,-0.826712250709534,0.562068462371826,0.0250152181833982,-0.803357422351837,0.427955508232117,-0.414090305566788,-0.870820581912994,0.453672081232071,-0.189348936080933,-0.878110945224762,0.460698336362839,-0.129143670201302,-0.405410468578339,-0.68100917339325,-0.609810352325439,-0.442909896373749,-0.715986728668213,-0.539623618125916, +-0.426988989114761,-0.709749758243561,-0.560299456119537,-0.417997807264328,-0.627880156040192,-0.656539559364319,-0.352198898792267,-0.489720672369003,-0.797577321529388,-0.333944708108902,-0.59163910150528,-0.733787477016449,-0.417997807264328,-0.627880156040192,-0.656539559364319,-0.405410468578339,-0.68100917339325,-0.609810352325439,-0.44008332490921,-0.682134211063385,-0.583968639373779,-0.418989360332489,-0.390768766403198,-0.819602072238922,-0.335564792156219,-0.310365200042725,-0.889420926570892,-0.352198898792267,-0.489720672369003,-0.797577321529388,-0.321030408143997,-0.177257984876633,-0.930332720279694,-0.335564792156219,-0.310365200042725,-0.889420926570892,-0.403247982263565,-0.216481655836105,-0.889115691184998,-0.203949555754662,-0.101085275411606,-0.973748445510864,-0.211405783891678,-0.193077832460403,-0.958137989044189,-0.321030408143997,-0.177257984876633,-0.930332720279694,-0.185722827911377,-0.0727532729506493,-0.979905068874359,-0.124741531908512,-0.00255780038423836,-0.992185950279236,-0.258718281984329,0.00179080211091787,-0.965951085090637,-0.203949555754662,-0.101085275411606,-0.973748445510864,-0.124741531908512,-0.00255780038423836,-0.992185950279236,-0.185722827911377,-0.0727532729506493,-0.979905068874359,-0.258542835712433,0.051242507994175,-0.964639663696289,-0.387504160404205,0.0708313062787056,-0.919142723083496,-0.436503171920776,0.0294902771711349,-0.899219214916229,-0.258718281984329,0.00179080211091787,-0.965951085090637,-0.104600243270397,0.0391309186816216,-0.993744134902954,-0.258542835712433,0.051242507994175,-0.964639663696289,-0.436503171920776,0.0294902771711349,-0.899219214916229,-0.387504160404205,0.0708313062787056,-0.919142723083496,-0.545814394950867,0.0651776269078255,-0.835367202758789,-0.470697611570358,0.0247064139693975,-0.881948411464691,-0.564496397972107,0.0603567771613598,-0.823225796222687,-0.348955899477005,0.0464586392045021,-0.935986757278442,-0.348955899477005,0.0464586392045021,-0.935986757278442,-0.182093650102615,0.122520454227924,-0.975618004798889, +-0.179897546768188,0.0478736124932766,-0.982519686222076,-0.215931609272957,-0.0866412073373795,-0.972556829452515,-0.179897546768188,0.0478736124932766,-0.982519686222076,-0.0395497009158134,-0.0228999368846416,-0.998955130577087,-0.470697611570358,0.0247064139693975,-0.881948411464691,-0.545814394950867,0.0651776269078255,-0.835367202758789,-0.564496397972107,0.0603567771613598,-0.823225796222687,0.0462311170995235,0.104563765227795,-0.993443012237549,0.0167599190026522,0.124225698411465,-0.992112278938293,-0.071506068110466,0.183812990784645,-0.980356872081757,0.0167599190026522,0.124225698411465,-0.992112278938293,-0.081613227725029,0.193947643041611,-0.977611005306244,-0.071506068110466,0.183812990784645,-0.980356872081757,-0.0302844028919935,0.185534790158272,-0.982170879840851,-0.127928629517555,0.216184452176094,-0.967935144901276,-0.081613227725029,0.193947643041611,-0.977611005306244,-0.147346392273903,0.216344371438026,-0.96513420343399,-0.127928629517555,0.216184452176094,-0.967935144901276,-0.178530335426331,0.324895173311234,-0.928746402263641,-0.0490301102399826,-0.0214664470404387,-0.998566567897797,0.0444735288619995,0.0130248935893178,-0.998925626277924,0.02940115891397,-0.0989354625344276,-0.99465936422348,0.0520155765116215,0.0441797599196434,-0.997668504714966,0.0444735288619995,0.0130248935893178,-0.998925626277924,0.0784993097186089,0.093907967209816,-0.992481291294098,0.0784993097186089,0.093907967209816,-0.992481291294098,0.0614481344819069,0.124429121613503,-0.990323901176453,0.0462311170995235,0.104563765227795,-0.993443012237549,-0.0695839077234268,0.0894111469388008,-0.993561089038849,-0.0395497009158134,-0.0228999368846416,-0.998955130577087,-0.179897546768188,0.0478736124932766,-0.982519686222076,-0.0479524545371532,0.0857889652252197,-0.995158672332764,-0.182093650102615,0.122520454227924,-0.975618004798889,-0.21675717830658,0.080500602722168,-0.972900748252869,-0.21675717830658,0.080500602722168,-0.972900748252869,-0.198037981987,0.025371577590704,-0.979865908622742,-0.099189504981041,-0.0185407921671867,-0.994895756244659, +-0.182093650102615,0.122520454227924,-0.975618004798889,-0.0695839077234268,0.0894111469388008,-0.993561089038849,-0.179897546768188,0.0478736124932766,-0.982519686222076,-0.198037981987,0.025371577590704,-0.979865908622742,-0.127594411373138,0.122388735413551,-0.98424619436264,-0.0490301102399826,-0.0214664470404387,-0.998566567897797,0.18929535150528,-0.127887591719627,-0.973556220531464,0.0678945705294609,-0.137903437018394,-0.988115847110748,0.146844774484634,-0.120697386562824,-0.981768131256104,0.18929535150528,-0.127887591719627,-0.973556220531464,0.265537351369858,-0.125651463866234,-0.955877363681793,0.163514569401741,-0.0149432085454464,-0.98642772436142,0.0645886734127998,0.0815169438719749,-0.994576930999756,0.178070828318596,0.0481442846357822,-0.982839047908783,0.146844774484634,-0.120697386562824,-0.981768131256104,-0.17532005906105,0.313220888376236,-0.933357119560242,-0.0561862401664257,0.397222965955734,-0.916000485420227,-0.024742403998971,0.296238124370575,-0.954793512821198,-0.024742403998971,0.296238124370575,-0.954793512821198,0.038669478148222,0.200694337487221,-0.978890359401703,-0.067043274641037,0.192003682255745,-0.979101479053497,0.101026028394699,0.153552621603012,-0.982962489128113,0.0645886734127998,0.0815169438719749,-0.994576930999756,0.038669478148222,0.200694337487221,-0.978890359401703,0.163514569401741,-0.0149432085454464,-0.98642772436142,0.143717899918556,-0.0578650161623955,-0.987925469875336,0.0444004088640213,-0.02158791013062,-0.998780488967896,0.121602244675159,-0.0288799051195383,-0.992158591747284,0.0444004088640213,-0.02158791013062,-0.998780488967896,0.0654614567756653,-0.0246040243655443,-0.997551560401917,0.258647322654724,-0.256218314170837,-0.931371867656708,0.255576372146606,-0.23143082857132,-0.938680112361908,0.294915109872818,-0.20293690264225,-0.933724462985992,0.266565561294556,-0.14500480890274,-0.95284640789032,0.294915109872818,-0.20293690264225,-0.933724462985992,0.201302587985992,-0.117223046720028,-0.972489595413208,0.182302892208099,-0.0465999990701675,-0.982137441635132, +0.163699015974998,-0.116666130721569,-0.979587435722351,0.0654614567756653,-0.0246040243655443,-0.997551560401917,0.266565561294556,-0.14500480890274,-0.95284640789032,0.163699015974998,-0.116666130721569,-0.979587435722351,0.258545160293579,-0.220851272344589,-0.940414249897003,0.210872441530228,-0.308566808700562,-0.92753392457962,0.239617824554443,-0.362864226102829,-0.900506973266602,0.280963540077209,-0.263755589723587,-0.922763466835022,0.280963540077209,-0.263755589723587,-0.922763466835022,0.241542533040047,-0.10760198533535,-0.964405953884125,0.173526376485825,-0.147217467427254,-0.973763585090637,0.165814936161041,-0.508576273918152,-0.844899713993073,0.0875017121434212,-0.513224601745605,-0.853782057762146,0.133050665259361,-0.258500725030899,-0.95680445432663,0.133050665259361,-0.258500725030899,-0.95680445432663,0.0759743377566338,-0.260848462581635,-0.962385535240173,0.173538848757744,-0.0438672862946987,-0.98384952545166,0.15455861389637,-0.665079534053802,-0.730602979660034,0.0875017121434212,-0.513224601745605,-0.853782057762146,0.121013857424259,-0.710319340229034,-0.693398773670197,0.173538848757744,-0.0438672862946987,-0.98384952545166,0.173526376485825,-0.147217467427254,-0.973763585090637,0.241542533040047,-0.10760198533535,-0.964405953884125,0.178986579179764,-0.610258638858795,-0.771717667579651,0.15455861389637,-0.665079534053802,-0.730602979660034,0.191241279244423,-0.715605199337006,-0.67181533575058,0.113374941051006,-0.336371541023254,-0.934879779815674,0.200142547488213,-0.380230665206909,-0.902976989746094,0.210872441530228,-0.308566808700562,-0.92753392457962,0.258647322654724,-0.256218314170837,-0.931371867656708,0.294915109872818,-0.20293690264225,-0.933724462985992,0.288809478282928,-0.208569824695587,-0.934391558170319,0.195552080869675,-0.143145054578781,-0.970190048217773,0.174083575606346,-0.161216720938683,-0.971444249153137,0.288809478282928,-0.208569824695587,-0.934391558170319,0.222239121794701,-0.167364597320557,-0.960520029067993,0.167007371783257,-0.235988944768906,-0.957297086715698, +0.174083575606346,-0.161216720938683,-0.971444249153137,0.167007371783257,-0.235988944768906,-0.957297086715698,0.222239121794701,-0.167364597320557,-0.960520029067993,0.282154619693756,-0.189542219042778,-0.940458655357361,0.282154619693756,-0.189542219042778,-0.940458655357361,0.285258054733276,-0.223806604743004,-0.931954026222229,0.218406438827515,-0.0481206811964512,-0.974670648574829,0.218406438827515,-0.0481206811964512,-0.974670648574829,0.217453703284264,-0.0799211338162422,-0.972792983055115,0.118776977062225,0.0539676286280155,-0.991453170776367,0.101622238755226,-0.0291670989245176,-0.99439537525177,0.183729469776154,0.0450949296355248,-0.981941878795624,0.118776977062225,0.0539676286280155,-0.991453170776367,0.101622238755226,-0.0291670989245176,-0.99439537525177,0.242228031158447,-0.126434564590454,-0.961945831775665,0.183729469776154,0.0450949296355248,-0.981941878795624,0.224675416946411,-0.0986150950193405,-0.96943074464798,0.242228031158447,-0.126434564590454,-0.961945831775665,0.251980423927307,-0.282243013381958,-0.925659000873566,0.113374941051006,-0.336371541023254,-0.934879779815674,0.135395973920822,-0.383274108171463,-0.913656771183014,0.200142547488213,-0.380230665206909,-0.902976989746094,0.135395973920822,-0.383274108171463,-0.913656771183014,0.251980423927307,-0.282243013381958,-0.925659000873566,0.233667075634003,-0.366636544466019,-0.900542736053467,-0.171391665935516,0.2453703135252,-0.954158365726471,-0.220294862985611,0.175422713160515,-0.959529519081116,-0.105759255588055,0.169364005327225,-0.979862630367279,-0.123818516731262,0.129360795021057,-0.983836710453033,-0.220294862985611,0.175422713160515,-0.959529519081116,-0.197802856564522,0.121516495943069,-0.972680628299713,-0.171391665935516,0.2453703135252,-0.954158365726471,-0.147346392273903,0.216344371438026,-0.96513420343399,-0.199393436312675,0.309881150722504,-0.929632067680359,-0.301576495170593,0.634988725185394,-0.711224913597107,-0.115657836198807,0.404553443193436,-0.907171249389648,-0.250747919082642,0.76234245300293,-0.596623241901398, +-0.19674351811409,0.0997316017746925,-0.975369393825531,-0.0842681974172592,0.127077102661133,-0.988306701183319,-0.158472031354904,0.142510294914246,-0.977024734020233,-0.115657836198807,0.404553443193436,-0.907171249389648,-0.101109839975834,0.206593975424767,-0.973188400268555,-0.0353532619774342,0.275779277086258,-0.960570573806763,-0.158472031354904,0.142510294914246,-0.977024734020233,-0.0842681974172592,0.127077102661133,-0.988306701183319,-0.0630249530076981,0.135019347071648,-0.988836348056793,-0.0353532619774342,0.275779277086258,-0.960570573806763,-0.101109839975834,0.206593975424767,-0.973188400268555,-0.0630249530076981,0.135019347071648,-0.988836348056793,-0.197802856564522,0.121516495943069,-0.972680628299713,-0.220294862985611,0.175422713160515,-0.959529519081116,-0.19674351811409,0.0997316017746925,-0.975369393825531,-0.162860408425331,0.80255538225174,-0.573917388916016,-0.300212740898132,0.799461960792542,-0.520319819450378,-0.245727062225342,0.876851618289948,-0.413218289613724,-0.162860408425331,0.80255538225174,-0.573917388916016,-0.21731261909008,0.701985120773315,-0.678227066993713,-0.300212740898132,0.799461960792542,-0.520319819450378,-0.263100177049637,0.870439410209656,-0.416069120168686,-0.346794605255127,0.886809706687927,-0.305453658103943,-0.250747919082642,0.76234245300293,-0.596623241901398,-0.263100177049637,0.870439410209656,-0.416069120168686,-0.322711199522018,0.899563670158386,-0.294351071119308,-0.346794605255127,0.886809706687927,-0.305453658103943,-0.250952631235123,0.916077375411987,-0.312769711017609,-0.317880719900131,0.879152297973633,-0.355025231838226,-0.322711199522018,0.899563670158386,-0.294351071119308,-0.250952631235123,0.916077375411987,-0.312769711017609,-0.245727062225342,0.876851618289948,-0.413218289613724,-0.317880719900131,0.879152297973633,-0.355025231838226,-0.254042267799377,0.584669888019562,-0.770469725131989,-0.21731261909008,0.701985120773315,-0.678227066993713,-0.122001305222511,0.609246253967285,-0.783539712429047,-0.254042267799377,0.584669888019562,-0.770469725131989, +-0.122001305222511,0.609246253967285,-0.783539712429047,-0.144059970974922,0.501402258872986,-0.853136837482452,-0.0561862401664257,0.397222965955734,-0.916000485420227,-0.146766126155853,0.423330903053284,-0.894008100032806,-0.0411270670592785,0.464413553476334,-0.884662926197052,-0.0411270670592785,0.464413553476334,-0.884662926197052,-0.144059970974922,0.501402258872986,-0.853136837482452,-0.0512070097029209,0.541606783866882,-0.839070796966553,0.0811764746904373,-0.484127789735794,-0.871223568916321,0.084542416036129,-0.492398649454117,-0.866254031658173,0.0919713452458382,-0.196463525295258,-0.976188123226166,0.166455715894699,-0.206497728824615,-0.964184165000916,0.178986579179764,-0.610258638858795,-0.771717667579651,0.220004484057426,-0.491466462612152,-0.842649757862091,0.166455715894699,-0.206497728824615,-0.964184165000916,0.200776875019073,-0.145579308271408,-0.968759596347809,0.161467954516411,0.065901018679142,-0.984675109386444,0.16813850402832,0.0930387675762177,-0.98136293888092,0.139867320656776,0.0103175556287169,-0.990116477012634,0.161467954516411,0.065901018679142,-0.984675109386444,0.141456112265587,-0.133855685591698,-0.980853080749512,0.0919713452458382,-0.196463525295258,-0.976188123226166,0.139867320656776,0.0103175556287169,-0.990116477012634,-0.564465641975403,-0.59893798828125,-0.568024158477783,-0.456147879362106,-0.695713400840759,-0.554898023605347,-0.55857127904892,-0.711980938911438,-0.425536215305328,-0.520097553730011,-0.639993131160736,-0.565603375434875,-0.470216661691666,-0.627006590366364,-0.621094882488251,-0.564465641975403,-0.59893798828125,-0.568024158477783,-0.46735543012619,-0.687389254570007,-0.555944919586182,-0.470216661691666,-0.627006590366364,-0.621094882488251,-0.520097553730011,-0.639993131160736,-0.565603375434875,-0.496748417615891,-0.704900443553925,-0.506316304206848,-0.442909896373749,-0.715986728668213,-0.539623618125916,-0.46735543012619,-0.687389254570007,-0.555944919586182,-0.90730082988739,0.3603236079216,-0.21673022210598,-0.889898777008057,0.440375208854675,-0.118952594697475, +-0.870820581912994,0.453672081232071,-0.189348936080933,-0.96758097410202,0.198888629674912,-0.155660644173622,-0.929311275482178,0.354592204093933,-0.103173717856407,-0.90730082988739,0.3603236079216,-0.21673022210598,-0.878110945224762,0.460698336362839,-0.129143670201302,-0.837123095989227,0.539149165153503,-0.0924279913306236,-0.826712250709534,0.562068462371826,0.0250152181833982,-0.870820581912994,0.453672081232071,-0.189348936080933,-0.889898777008057,0.440375208854675,-0.118952594697475,-0.878110945224762,0.460698336362839,-0.129143670201302,-0.426988989114761,-0.709749758243561,-0.560299456119537,-0.442909896373749,-0.715986728668213,-0.539623618125916,-0.4670050740242,-0.702592968940735,-0.536907076835632,-0.44008332490921,-0.682134211063385,-0.583968639373779,-0.405410468578339,-0.68100917339325,-0.609810352325439,-0.426988989114761,-0.709749758243561,-0.560299456119537,-0.352198898792267,-0.489720672369003,-0.797577321529388,-0.417997807264328,-0.627880156040192,-0.656539559364319,-0.459941327571869,-0.541432619094849,-0.703778743743896,-0.477685540914536,-0.654130399227142,-0.586455345153809,-0.417997807264328,-0.627880156040192,-0.656539559364319,-0.44008332490921,-0.682134211063385,-0.583968639373779,-0.418989360332489,-0.390768766403198,-0.819602072238922,-0.444957852363586,-0.310373038053513,-0.84004819393158,-0.335564792156219,-0.310365200042725,-0.889420926570892,-0.459941327571869,-0.541432619094849,-0.703778743743896,-0.418989360332489,-0.390768766403198,-0.819602072238922,-0.352198898792267,-0.489720672369003,-0.797577321529388,-0.444957852363586,-0.310373038053513,-0.84004819393158,-0.403247982263565,-0.216481655836105,-0.889115691184998,-0.335564792156219,-0.310365200042725,-0.889420926570892,-0.403247982263565,-0.216481655836105,-0.889115691184998,-0.364683598279953,-0.0654229298233986,-0.928830206394196,-0.321030408143997,-0.177257984876633,-0.930332720279694,-0.203949555754662,-0.101085275411606,-0.973748445510864,-0.321030408143997,-0.177257984876633,-0.930332720279694,-0.269545018672943,-0.0442703738808632,-0.961969614028931, +-0.124741531908512,-0.00255780038423836,-0.992185950279236,-0.104600243270397,0.0391309186816216,-0.993744134902954,-0.258718281984329,0.00179080211091787,-0.965951085090637,-0.269545018672943,-0.0442703738808632,-0.961969614028931,-0.124741531908512,-0.00255780038423836,-0.992185950279236,-0.203949555754662,-0.101085275411606,-0.973748445510864,-0.150679782032967,0.0575953610241413,-0.986903369426727,-0.387504160404205,0.0708313062787056,-0.919142723083496,-0.258542835712433,0.051242507994175,-0.964639663696289,-0.104600243270397,0.0391309186816216,-0.993744134902954,-0.150679782032967,0.0575953610241413,-0.986903369426727,-0.258542835712433,0.051242507994175,-0.964639663696289,-0.387504160404205,0.0708313062787056,-0.919142723083496,-0.523484289646149,0.0645486786961555,-0.849586665630341,-0.545814394950867,0.0651776269078255,-0.835367202758789,-0.451224476099014,0.117001079022884,-0.884707391262054,-0.348955899477005,0.0464586392045021,-0.935986757278442,-0.564496397972107,0.0603567771613598,-0.823225796222687,-0.348955899477005,0.0464586392045021,-0.935986757278442,-0.292013615369797,0.154694765806198,-0.943820655345917,-0.182093650102615,0.122520454227924,-0.975618004798889,-0.564496397972107,0.0603567771613598,-0.823225796222687,-0.545814394950867,0.0651776269078255,-0.835367202758789,-0.523484289646149,0.0645486786961555,-0.849586665630341,0.0379013866186142,0.0925152450799942,-0.994989633560181,0.0167599190026522,0.124225698411465,-0.992112278938293,0.0462311170995235,0.104563765227795,-0.993443012237549,-0.0302844028919935,0.185534790158272,-0.982170879840851,-0.081613227725029,0.193947643041611,-0.977611005306244,0.0167599190026522,0.124225698411465,-0.992112278938293,-0.127928629517555,0.216184452176094,-0.967935144901276,-0.0302844028919935,0.185534790158272,-0.982170879840851,-0.0640701875090599,0.292058050632477,-0.954252064228058,-0.178530335426331,0.324895173311234,-0.928746402263641,-0.127928629517555,0.216184452176094,-0.967935144901276,-0.0640701875090599,0.292058050632477,-0.954252064228058,-0.178530335426331,0.324895173311234,-0.928746402263641, +-0.199393436312675,0.309881150722504,-0.929632067680359,-0.147346392273903,0.216344371438026,-0.96513420343399,-0.0490301102399826,-0.0214664470404387,-0.998566567897797,0.00285456888377666,0.14740914106369,-0.989071428775787,0.0444735288619995,0.0130248935893178,-0.998925626277924,0.0784993097186089,0.093907967209816,-0.992481291294098,0.0444735288619995,0.0130248935893178,-0.998925626277924,0.00285456888377666,0.14740914106369,-0.989071428775787,0.0784993097186089,0.093907967209816,-0.992481291294098,0.00285456888377666,0.14740914106369,-0.989071428775787,0.0614481344819069,0.124429121613503,-0.990323901176453,0.0379013866186142,0.0925152450799942,-0.994989633560181,0.0462311170995235,0.104563765227795,-0.993443012237549,0.0614481344819069,0.124429121613503,-0.990323901176453,-0.35209247469902,0.22889232635498,-0.907545626163483,-0.21675717830658,0.080500602722168,-0.972900748252869,-0.182093650102615,0.122520454227924,-0.975618004798889,-0.28907322883606,0.207608565688133,-0.934524059295654,-0.198037981987,0.025371577590704,-0.979865908622742,-0.21675717830658,0.080500602722168,-0.972900748252869,-0.28907322883606,0.207608565688133,-0.934524059295654,-0.127594411373138,0.122388735413551,-0.98424619436264,-0.198037981987,0.025371577590704,-0.979865908622742,-0.127594411373138,0.122388735413551,-0.98424619436264,0.00285456888377666,0.14740914106369,-0.989071428775787,-0.0490301102399826,-0.0214664470404387,-0.998566567897797,0.18929535150528,-0.127887591719627,-0.973556220531464,0.146844774484634,-0.120697386562824,-0.981768131256104,0.26262241601944,-0.103201523423195,-0.959363758563995,0.18929535150528,-0.127887591719627,-0.973556220531464,0.26262241601944,-0.103201523423195,-0.959363758563995,0.265537351369858,-0.125651463866234,-0.955877363681793,0.163514569401741,-0.0149432085454464,-0.98642772436142,0.265537351369858,-0.125651463866234,-0.955877363681793,0.143717899918556,-0.0578650161623955,-0.987925469875336,0.101026028394699,0.153552621603012,-0.982962489128113,0.178070828318596,0.0481442846357822,-0.982839047908783, +0.0645886734127998,0.0815169438719749,-0.994576930999756,0.146844774484634,-0.120697386562824,-0.981768131256104,0.178070828318596,0.0481442846357822,-0.982839047908783,0.26262241601944,-0.103201523423195,-0.959363758563995,-0.0561862401664257,0.397222965955734,-0.916000485420227,0.0235846135765314,0.388312369585037,-0.921225905418396,-0.024742403998971,0.296238124370575,-0.954793512821198,0.038669478148222,0.200694337487221,-0.978890359401703,-0.024742403998971,0.296238124370575,-0.954793512821198,0.113912150263786,0.286160886287689,-0.951386332511902,0.101026028394699,0.153552621603012,-0.982962489128113,0.038669478148222,0.200694337487221,-0.978890359401703,0.113912150263786,0.286160886287689,-0.951386332511902,0.0444004088640213,-0.02158791013062,-0.998780488967896,0.143717899918556,-0.0578650161623955,-0.987925469875336,0.0198185760527849,-0.0215288996696472,-0.999571740627289,0.0198185760527849,-0.0215288996696472,-0.999571740627289,0.0654614567756653,-0.0246040243655443,-0.997551560401917,0.0444004088640213,-0.02158791013062,-0.998780488967896,0.266565561294556,-0.14500480890274,-0.95284640789032,0.258545160293579,-0.220851272344589,-0.940414249897003,0.294915109872818,-0.20293690264225,-0.933724462985992,0.192796885967255,-0.160707667469978,-0.967988789081573,0.163699015974998,-0.116666130721569,-0.979587435722351,0.182302892208099,-0.0465999990701675,-0.982137441635132,0.182302892208099,-0.0465999990701675,-0.982137441635132,0.0654614567756653,-0.0246040243655443,-0.997551560401917,0.1409682482481,-0.029871741309762,-0.989563345909119,0.163699015974998,-0.116666130721569,-0.979587435722351,0.192796885967255,-0.160707667469978,-0.967988789081573,0.258545160293579,-0.220851272344589,-0.940414249897003,0.157663688063622,-0.355442583560944,-0.921304881572723,0.239617824554443,-0.362864226102829,-0.900506973266602,0.210872441530228,-0.308566808700562,-0.92753392457962,0.239617824554443,-0.362864226102829,-0.900506973266602,0.311656415462494,-0.281438410282135,-0.907558560371399,0.280963540077209,-0.263755589723587,-0.922763466835022, +0.280963540077209,-0.263755589723587,-0.922763466835022,0.311656415462494,-0.281438410282135,-0.907558560371399,0.241542533040047,-0.10760198533535,-0.964405953884125,0.165814936161041,-0.508576273918152,-0.844899713993073,0.121013857424259,-0.710319340229034,-0.693398773670197,0.0875017121434212,-0.513224601745605,-0.853782057762146,0.133050665259361,-0.258500725030899,-0.95680445432663,0.240824460983276,-0.146756038069725,-0.959409296512604,0.165814936161041,-0.508576273918152,-0.844899713993073,0.133050665259361,-0.258500725030899,-0.95680445432663,0.173538848757744,-0.0438672862946987,-0.98384952545166,0.240824460983276,-0.146756038069725,-0.959409296512604,0.15455861389637,-0.665079534053802,-0.730602979660034,0.121013857424259,-0.710319340229034,-0.693398773670197,0.191241279244423,-0.715605199337006,-0.67181533575058,0.241542533040047,-0.10760198533535,-0.964405953884125,0.162594005465508,-0.103433564305305,-0.981256663799286,0.173538848757744,-0.0438672862946987,-0.98384952545166,0.191241279244423,-0.715605199337006,-0.67181533575058,0.220004484057426,-0.491466462612152,-0.842649757862091,0.178986579179764,-0.610258638858795,-0.771717667579651,0.18590871989727,-0.343163996934891,-0.920693397521973,0.210872441530228,-0.308566808700562,-0.92753392457962,0.200142547488213,-0.380230665206909,-0.902976989746094,0.258545160293579,-0.220851272344589,-0.940414249897003,0.288809478282928,-0.208569824695587,-0.934391558170319,0.294915109872818,-0.20293690264225,-0.933724462985992,0.195552080869675,-0.143145054578781,-0.970190048217773,0.222239121794701,-0.167364597320557,-0.960520029067993,0.174083575606346,-0.161216720938683,-0.971444249153137,0.195552080869675,-0.143145054578781,-0.970190048217773,0.288809478282928,-0.208569824695587,-0.934391558170319,0.249771565198898,-0.261931657791138,-0.932204842567444,0.222239121794701,-0.167364597320557,-0.960520029067993,0.290238499641418,-0.190686911344528,-0.937763333320618,0.282154619693756,-0.189542219042778,-0.940458655357361,0.285258054733276,-0.223806604743004,-0.931954026222229, +0.282154619693756,-0.189542219042778,-0.940458655357361,0.290238499641418,-0.190686911344528,-0.937763333320618,0.218406438827515,-0.0481206811964512,-0.974670648574829,0.285258054733276,-0.223806604743004,-0.931954026222229,0.217453703284264,-0.0799211338162422,-0.972792983055115,0.118776977062225,0.0539676286280155,-0.991453170776367,0.217453703284264,-0.0799211338162422,-0.972792983055115,0.234608188271523,0.158929109573364,-0.959010183811188,0.14093579351902,0.0887687429785728,-0.986030995845795,0.101622238755226,-0.0291670989245176,-0.99439537525177,0.118776977062225,0.0539676286280155,-0.991453170776367,0.242228031158447,-0.126434564590454,-0.961945831775665,0.101622238755226,-0.0291670989245176,-0.99439537525177,0.158744737505913,-0.182402223348618,-0.970324397087097,0.202514111995697,-0.28090026974678,-0.938127338886261,0.251980423927307,-0.282243013381958,-0.925659000873566,0.242228031158447,-0.126434564590454,-0.961945831775665,0.135395973920822,-0.383274108171463,-0.913656771183014,0.233667075634003,-0.366636544466019,-0.900542736053467,0.200142547488213,-0.380230665206909,-0.902976989746094,0.202514111995697,-0.28090026974678,-0.938127338886261,0.233667075634003,-0.366636544466019,-0.900542736053467,0.251980423927307,-0.282243013381958,-0.925659000873566,-0.171391665935516,0.2453703135252,-0.954158365726471,-0.265224009752274,0.348677784204483,-0.898932635784149,-0.220294862985611,0.175422713160515,-0.959529519081116,-0.199393436312675,0.309881150722504,-0.929632067680359,-0.265224009752274,0.348677784204483,-0.898932635784149,-0.171391665935516,0.2453703135252,-0.954158365726471,-0.250747919082642,0.76234245300293,-0.596623241901398,-0.115657836198807,0.404553443193436,-0.907171249389648,-0.130935952067375,0.57843029499054,-0.805154621601105,-0.19674351811409,0.0997316017746925,-0.975369393825531,-0.14343324303627,0.191897854208946,-0.970876932144165,-0.0842681974172592,0.127077102661133,-0.988306701183319,-0.0353532619774342,0.275779277086258,-0.960570573806763,-0.130935952067375,0.57843029499054,-0.805154621601105, +-0.115657836198807,0.404553443193436,-0.907171249389648,-0.0630249530076981,0.135019347071648,-0.988836348056793,-0.0842681974172592,0.127077102661133,-0.988306701183319,0.00948064774274826,0.169032394886017,-0.985564827919006,-0.0630249530076981,0.135019347071648,-0.988836348056793,-0.0387486629188061,0.233272522687912,-0.971638977527618,-0.0353532619774342,0.275779277086258,-0.960570573806763,-0.220294862985611,0.175422713160515,-0.959529519081116,-0.14343324303627,0.191897854208946,-0.970876932144165,-0.19674351811409,0.0997316017746925,-0.975369393825531,-0.167120099067688,0.865740716457367,-0.471766650676727,-0.162860408425331,0.80255538225174,-0.573917388916016,-0.245727062225342,0.876851618289948,-0.413218289613724,-0.0856938734650612,0.714721024036407,-0.694139957427979,-0.21731261909008,0.701985120773315,-0.678227066993713,-0.162860408425331,0.80255538225174,-0.573917388916016,-0.250747919082642,0.76234245300293,-0.596623241901398,-0.130935952067375,0.57843029499054,-0.805154621601105,-0.263100177049637,0.870439410209656,-0.416069120168686,-0.263100177049637,0.870439410209656,-0.416069120168686,-0.250952631235123,0.916077375411987,-0.312769711017609,-0.322711199522018,0.899563670158386,-0.294351071119308,-0.245727062225342,0.876851618289948,-0.413218289613724,-0.250952631235123,0.916077375411987,-0.312769711017609,-0.201134786009789,0.906689882278442,-0.370753556489944,-0.122001305222511,0.609246253967285,-0.783539712429047,-0.21731261909008,0.701985120773315,-0.678227066993713,-0.0856938734650612,0.714721024036407,-0.694139957427979,-0.144059970974922,0.501402258872986,-0.853136837482452,-0.122001305222511,0.609246253967285,-0.783539712429047,-0.0512070097029209,0.541606783866882,-0.839070796966553,-0.0561862401664257,0.397222965955734,-0.916000485420227,-0.0411270670592785,0.464413553476334,-0.884662926197052,0.0235846135765314,0.388312369585037,-0.921225905418396,-0.0512070097029209,0.541606783866882,-0.839070796966553,0.0188634041696787,0.497215628623962,-0.867421865463257,-0.0411270670592785,0.464413553476334,-0.884662926197052, +0.0811764746904373,-0.484127789735794,-0.871223568916321,0.0919713452458382,-0.196463525295258,-0.976188123226166,0.141456112265587,-0.133855685591698,-0.980853080749512,0.166455715894699,-0.206497728824615,-0.964184165000916,0.220004484057426,-0.491466462612152,-0.842649757862091,0.200776875019073,-0.145579308271408,-0.968759596347809,0.162827610969543,-0.0908621773123741,-0.982461810112,0.161467954516411,0.065901018679142,-0.984675109386444,0.200776875019073,-0.145579308271408,-0.968759596347809,0.139867320656776,0.0103175556287169,-0.990116477012634,0.16813850402832,0.0930387675762177,-0.98136293888092,0.170298680663109,0.0733908265829086,-0.982655584812164,0.16813850402832,0.0930387675762177,-0.98136293888092,0.161467954516411,0.065901018679142,-0.984675109386444,0.162827610969543,-0.0908621773123741,-0.982461810112,0.139867320656776,0.0103175556287169,-0.990116477012634,0.170298680663109,0.0733908265829086,-0.982655584812164,0.141456112265587,-0.133855685591698,-0.980853080749512,-0.595865964889526,-0.604948341846466,-0.528186559677124,-0.564465641975403,-0.59893798828125,-0.568024158477783,-0.55857127904892,-0.711980938911438,-0.425536215305328,-0.564465641975403,-0.59893798828125,-0.568024158477783,-0.566350996494293,-0.599438011646271,-0.565615057945251,-0.520097553730011,-0.639993131160736,-0.565603375434875,-0.520097553730011,-0.639993131160736,-0.565603375434875,-0.496748417615891,-0.704900443553925,-0.506316304206848,-0.46735543012619,-0.687389254570007,-0.555944919586182,-0.4670050740242,-0.702592968940735,-0.536907076835632,-0.442909896373749,-0.715986728668213,-0.539623618125916,-0.496748417615891,-0.704900443553925,-0.506316304206848,-0.90730082988739,0.3603236079216,-0.21673022210598,-0.929311275482178,0.354592204093933,-0.103173717856407,-0.889898777008057,0.440375208854675,-0.118952594697475,-0.96758097410202,0.198888629674912,-0.155660644173622,-0.998259961605072,-0.013540924526751,-0.0573895014822483,-0.929311275482178,0.354592204093933,-0.103173717856407,-0.878110945224762,0.460698336362839,-0.129143670201302, +-0.889898777008057,0.440375208854675,-0.118952594697475,-0.837123095989227,0.539149165153503,-0.0924279913306236,-0.44008332490921,-0.682134211063385,-0.583968639373779,-0.426988989114761,-0.709749758243561,-0.560299456119537,-0.4670050740242,-0.702592968940735,-0.536907076835632,-0.477685540914536,-0.654130399227142,-0.586455345153809,-0.459941327571869,-0.541432619094849,-0.703778743743896,-0.417997807264328,-0.627880156040192,-0.656539559364319,-0.4670050740242,-0.702592968940735,-0.536907076835632,-0.477685540914536,-0.654130399227142,-0.586455345153809,-0.44008332490921,-0.682134211063385,-0.583968639373779,-0.508320689201355,-0.418764710426331,-0.75249320268631,-0.444957852363586,-0.310373038053513,-0.84004819393158,-0.418989360332489,-0.390768766403198,-0.819602072238922,-0.459941327571869,-0.541432619094849,-0.703778743743896,-0.508320689201355,-0.418764710426331,-0.75249320268631,-0.418989360332489,-0.390768766403198,-0.819602072238922,-0.403247982263565,-0.216481655836105,-0.889115691184998,-0.444957852363586,-0.310373038053513,-0.84004819393158,-0.479222148656845,-0.336443960666656,-0.810648798942566,-0.364683598279953,-0.0654229298233986,-0.928830206394196,-0.403247982263565,-0.216481655836105,-0.889115691184998,-0.430403918027878,-0.101413153111935,-0.896921217441559,-0.269545018672943,-0.0442703738808632,-0.961969614028931,-0.321030408143997,-0.177257984876633,-0.930332720279694,-0.364683598279953,-0.0654229298233986,-0.928830206394196,-0.124741531908512,-0.00255780038423836,-0.992185950279236,-0.160651355981827,0.0384636558592319,-0.986261427402496,-0.104600243270397,0.0391309186816216,-0.993744134902954,-0.160651355981827,0.0384636558592319,-0.986261427402496,-0.124741531908512,-0.00255780038423836,-0.992185950279236,-0.269545018672943,-0.0442703738808632,-0.961969614028931,-0.304524898529053,0.0748658403754234,-0.949557542800903,-0.387504160404205,0.0708313062787056,-0.919142723083496,-0.150679782032967,0.0575953610241413,-0.986903369426727,-0.128720209002495,0.0476660765707493,-0.990534663200378, +-0.150679782032967,0.0575953610241413,-0.986903369426727,-0.104600243270397,0.0391309186816216,-0.993744134902954,-0.304524898529053,0.0748658403754234,-0.949557542800903,-0.523484289646149,0.0645486786961555,-0.849586665630341,-0.387504160404205,0.0708313062787056,-0.919142723083496,-0.451224476099014,0.117001079022884,-0.884707391262054,-0.292013615369797,0.154694765806198,-0.943820655345917,-0.348955899477005,0.0464586392045021,-0.935986757278442,-0.451224476099014,0.117001079022884,-0.884707391262054,-0.564496397972107,0.0603567771613598,-0.823225796222687,-0.536470651626587,0.189121037721634,-0.822455048561096,-0.292013615369797,0.154694765806198,-0.943820655345917,-0.35209247469902,0.22889232635498,-0.907545626163483,-0.182093650102615,0.122520454227924,-0.975618004798889,-0.523484289646149,0.0645486786961555,-0.849586665630341,-0.569336116313934,0.06810162961483,-0.819279193878174,-0.564496397972107,0.0603567771613598,-0.823225796222687,0.0379013866186142,0.0925152450799942,-0.994989633560181,-0.0114165330305696,0.203702300786972,-0.978966236114502,0.0167599190026522,0.124225698411465,-0.992112278938293,0.0757496133446693,0.216496795415878,-0.973340153694153,-0.0302844028919935,0.185534790158272,-0.982170879840851,0.0167599190026522,0.124225698411465,-0.992112278938293,-0.0302844028919935,0.185534790158272,-0.982170879840851,0.0757496133446693,0.216496795415878,-0.973340153694153,-0.0640701875090599,0.292058050632477,-0.954252064228058,-0.178530335426331,0.324895173311234,-0.928746402263641,-0.0640701875090599,0.292058050632477,-0.954252064228058,-0.158266440033913,0.314194649457932,-0.936073362827301,-0.178530335426331,0.324895173311234,-0.928746402263641,-0.205120444297791,0.358060300350189,-0.910888731479645,-0.199393436312675,0.309881150722504,-0.929632067680359,0.00285456888377666,0.14740914106369,-0.989071428775787,0.00796609837561846,0.195799648761749,-0.980611503124237,0.0614481344819069,0.124429121613503,-0.990323901176453,0.00796609837561846,0.195799648761749,-0.980611503124237,0.0379013866186142,0.0925152450799942,-0.994989633560181, +0.0614481344819069,0.124429121613503,-0.990323901176453,-0.28907322883606,0.207608565688133,-0.934524059295654,-0.21675717830658,0.080500602722168,-0.972900748252869,-0.35209247469902,0.22889232635498,-0.907545626163483,-0.28907322883606,0.207608565688133,-0.934524059295654,-0.132206097245216,0.239773318171501,-0.961784899234772,-0.127594411373138,0.122388735413551,-0.98424619436264,-0.132206097245216,0.239773318171501,-0.961784899234772,0.00285456888377666,0.14740914106369,-0.989071428775787,-0.127594411373138,0.122388735413551,-0.98424619436264,0.265537351369858,-0.125651463866234,-0.955877363681793,0.26262241601944,-0.103201523423195,-0.959363758563995,0.230132073163986,-0.0406345911324024,-0.972310662269592,0.265537351369858,-0.125651463866234,-0.955877363681793,0.230132073163986,-0.0406345911324024,-0.972310662269592,0.143717899918556,-0.0578650161623955,-0.987925469875336,0.101026028394699,0.153552621603012,-0.982962489128113,0.205496713519096,0.19682951271534,-0.958660066127777,0.178070828318596,0.0481442846357822,-0.982839047908783,0.26262241601944,-0.103201523423195,-0.959363758563995,0.178070828318596,0.0481442846357822,-0.982839047908783,0.25105482339859,0.0280708204954863,-0.967565715312958,0.0235846135765314,0.388312369585037,-0.921225905418396,0.113912150263786,0.286160886287689,-0.951386332511902,-0.024742403998971,0.296238124370575,-0.954793512821198,0.205496713519096,0.19682951271534,-0.958660066127777,0.101026028394699,0.153552621603012,-0.982962489128113,0.113912150263786,0.286160886287689,-0.951386332511902,0.0898675993084908,0.0356727354228497,-0.995314598083496,0.0198185760527849,-0.0215288996696472,-0.999571740627289,0.143717899918556,-0.0578650161623955,-0.987925469875336,0.0654614567756653,-0.0246040243655443,-0.997551560401917,0.0198185760527849,-0.0215288996696472,-0.999571740627289,0.0898675993084908,0.0356727354228497,-0.995314598083496,0.192796885967255,-0.160707667469978,-0.967988789081573,0.182302892208099,-0.0465999990701675,-0.982137441635132,0.303346335887909,-0.0609222799539566,-0.950930774211884, +0.1409682482481,-0.029871741309762,-0.989563345909119,0.0654614567756653,-0.0246040243655443,-0.997551560401917,0.0898675993084908,0.0356727354228497,-0.995314598083496,0.1409682482481,-0.029871741309762,-0.989563345909119,0.25115579366684,-0.0866629406809807,-0.964059233665466,0.182302892208099,-0.0465999990701675,-0.982137441635132,0.258545160293579,-0.220851272344589,-0.940414249897003,0.192796885967255,-0.160707667469978,-0.967988789081573,0.255816012620926,-0.266281813383102,-0.929328799247742,0.157663688063622,-0.355442583560944,-0.921304881572723,0.0753905475139618,-0.379170775413513,-0.922250330448151,0.239617824554443,-0.362864226102829,-0.900506973266602,0.157663688063622,-0.355442583560944,-0.921304881572723,0.210872441530228,-0.308566808700562,-0.92753392457962,0.18590871989727,-0.343163996934891,-0.920693397521973,0.239617824554443,-0.362864226102829,-0.900506973266602,0.128855884075165,-0.309597134590149,-0.942096412181854,0.311656415462494,-0.281438410282135,-0.907558560371399,0.311656415462494,-0.281438410282135,-0.907558560371399,0.128855884075165,-0.309597134590149,-0.942096412181854,0.241542533040047,-0.10760198533535,-0.964405953884125,0.1517733335495,-0.690122842788696,-0.707598149776459,0.121013857424259,-0.710319340229034,-0.693398773670197,0.165814936161041,-0.508576273918152,-0.844899713993073,0.240824460983276,-0.146756038069725,-0.959409296512604,0.291290432214737,-0.280019044876099,-0.914734423160553,0.165814936161041,-0.508576273918152,-0.844899713993073,0.162594005465508,-0.103433564305305,-0.981256663799286,0.240824460983276,-0.146756038069725,-0.959409296512604,0.173538848757744,-0.0438672862946987,-0.98384952545166,0.108007617294788,-0.71850061416626,-0.687088847160339,0.191241279244423,-0.715605199337006,-0.67181533575058,0.121013857424259,-0.710319340229034,-0.693398773670197,0.241542533040047,-0.10760198533535,-0.964405953884125,0.128855884075165,-0.309597134590149,-0.942096412181854,0.162594005465508,-0.103433564305305,-0.981256663799286,0.220004484057426,-0.491466462612152,-0.842649757862091, +0.191241279244423,-0.715605199337006,-0.67181533575058,0.184473931789398,-0.491105169057846,-0.851343035697937,0.18590871989727,-0.343163996934891,-0.920693397521973,0.200142547488213,-0.380230665206909,-0.902976989746094,0.233667075634003,-0.366636544466019,-0.900542736053467,0.249771565198898,-0.261931657791138,-0.932204842567444,0.288809478282928,-0.208569824695587,-0.934391558170319,0.258545160293579,-0.220851272344589,-0.940414249897003,0.195552080869675,-0.143145054578781,-0.970190048217773,0.290238499641418,-0.190686911344528,-0.937763333320618,0.222239121794701,-0.167364597320557,-0.960520029067993,0.283008813858032,-0.195317268371582,-0.939019203186035,0.195552080869675,-0.143145054578781,-0.970190048217773,0.249771565198898,-0.261931657791138,-0.932204842567444,0.285258054733276,-0.223806604743004,-0.931954026222229,0.290238499641418,-0.190686911344528,-0.937763333320618,0.196958392858505,-0.197753414511681,-0.960260808467865,0.217453703284264,-0.0799211338162422,-0.972792983055115,0.285258054733276,-0.223806604743004,-0.931954026222229,0.239583387970924,-0.279888153076172,-0.929657101631165,0.217453703284264,-0.0799211338162422,-0.972792983055115,0.247343927621841,-0.0139910727739334,-0.968826651573181,0.234608188271523,0.158929109573364,-0.959010183811188,0.118776977062225,0.0539676286280155,-0.991453170776367,0.234608188271523,0.158929109573364,-0.959010183811188,0.14093579351902,0.0887687429785728,-0.986030995845795,0.14093579351902,0.0887687429785728,-0.986030995845795,0.185141518712044,-0.082526683807373,-0.979240477085114,0.101622238755226,-0.0291670989245176,-0.99439537525177,0.185141518712044,-0.082526683807373,-0.979240477085114,0.158744737505913,-0.182402223348618,-0.970324397087097,0.101622238755226,-0.0291670989245176,-0.99439537525177,0.202514111995697,-0.28090026974678,-0.938127338886261,0.242228031158447,-0.126434564590454,-0.961945831775665,0.158744737505913,-0.182402223348618,-0.970324397087097,0.202514111995697,-0.28090026974678,-0.938127338886261,0.18590871989727,-0.343163996934891,-0.920693397521973, +0.233667075634003,-0.366636544466019,-0.900542736053467,-0.265224009752274,0.348677784204483,-0.898932635784149,-0.264690071344376,0.303596019744873,-0.915296912193298,-0.220294862985611,0.175422713160515,-0.959529519081116,-0.199393436312675,0.309881150722504,-0.929632067680359,-0.205120444297791,0.358060300350189,-0.910888731479645,-0.265224009752274,0.348677784204483,-0.898932635784149,-0.0842681974172592,0.127077102661133,-0.988306701183319,-0.14343324303627,0.191897854208946,-0.970876932144165,-0.0102444905787706,0.240444630384445,-0.970608770847321,-0.0353532619774342,0.275779277086258,-0.960570573806763,-0.161818757653236,0.620502114295959,-0.767327606678009,-0.130935952067375,0.57843029499054,-0.805154621601105,-0.0842681974172592,0.127077102661133,-0.988306701183319,-0.0102444905787706,0.240444630384445,-0.970608770847321,0.00948064774274826,0.169032394886017,-0.985564827919006,-0.0630249530076981,0.135019347071648,-0.988836348056793,0.00948064774274826,0.169032394886017,-0.985564827919006,-0.0387486629188061,0.233272522687912,-0.971638977527618,-0.0387486629188061,0.233272522687912,-0.971638977527618,-0.161818757653236,0.620502114295959,-0.767327606678009,-0.0353532619774342,0.275779277086258,-0.960570573806763,-0.220294862985611,0.175422713160515,-0.959529519081116,-0.186458796262741,0.310052663087845,-0.932255506515503,-0.14343324303627,0.191897854208946,-0.970876932144165,-0.167120099067688,0.865740716457367,-0.471766650676727,-0.136306703090668,0.829452753067017,-0.541690349578857,-0.162860408425331,0.80255538225174,-0.573917388916016,-0.245727062225342,0.876851618289948,-0.413218289613724,-0.180956140160561,0.882824301719666,-0.433446705341339,-0.167120099067688,0.865740716457367,-0.471766650676727,-0.162860408425331,0.80255538225174,-0.573917388916016,-0.0892985761165619,0.756637454032898,-0.647707879543304,-0.0856938734650612,0.714721024036407,-0.694139957427979,-0.130935952067375,0.57843029499054,-0.805154621601105,-0.161818757653236,0.620502114295959,-0.767327606678009,-0.263100177049637,0.870439410209656,-0.416069120168686, +-0.250952631235123,0.916077375411987,-0.312769711017609,-0.263100177049637,0.870439410209656,-0.416069120168686,-0.232733979821205,0.902731537818909,-0.361815601587296,-0.201134786009789,0.906689882278442,-0.370753556489944,-0.250952631235123,0.916077375411987,-0.312769711017609,-0.221861138939857,0.923572957515717,-0.312714874744415,-0.245727062225342,0.876851618289948,-0.413218289613724,-0.201134786009789,0.906689882278442,-0.370753556489944,-0.180956140160561,0.882824301719666,-0.433446705341339,-0.0461646467447281,0.627815902233124,-0.776991546154022,-0.122001305222511,0.609246253967285,-0.783539712429047,-0.0856938734650612,0.714721024036407,-0.694139957427979,-0.0461646467447281,0.627815902233124,-0.776991546154022,-0.0512070097029209,0.541606783866882,-0.839070796966553,-0.122001305222511,0.609246253967285,-0.783539712429047,0.0188634041696787,0.497215628623962,-0.867421865463257,0.0235846135765314,0.388312369585037,-0.921225905418396,-0.0411270670592785,0.464413553476334,-0.884662926197052,-0.0461646467447281,0.627815902233124,-0.776991546154022,0.0188634041696787,0.497215628623962,-0.867421865463257,-0.0512070097029209,0.541606783866882,-0.839070796966553,0.117043107748032,-0.406934291124344,-0.905927896499634,0.0811764746904373,-0.484127789735794,-0.871223568916321,0.141456112265587,-0.133855685591698,-0.980853080749512,0.220004484057426,-0.491466462612152,-0.842649757862091,0.184473931789398,-0.491105169057846,-0.851343035697937,0.200776875019073,-0.145579308271408,-0.968759596347809,0.162827610969543,-0.0908621773123741,-0.982461810112,0.200776875019073,-0.145579308271408,-0.968759596347809,0.184473931789398,-0.491105169057846,-0.851343035697937,0.170298680663109,0.0733908265829086,-0.982655584812164,0.16813850402832,0.0930387675762177,-0.98136293888092,0.162767052650452,0.0616535618901253,-0.984736323356628,0.119929768145084,-0.184649989008904,-0.975459456443787,0.16813850402832,0.0930387675762177,-0.98136293888092,0.162827610969543,-0.0908621773123741,-0.982461810112,0.141456112265587,-0.133855685591698,-0.980853080749512, +0.170298680663109,0.0733908265829086,-0.982655584812164,0.178094565868378,0.0613820552825928,-0.982096970081329,-0.564465641975403,-0.59893798828125,-0.568024158477783,-0.595865964889526,-0.604948341846466,-0.528186559677124,-0.60069328546524,-0.581222236156464,-0.548951983451843,-0.607711732387543,-0.628022134304047,-0.48608073592186,-0.595865964889526,-0.604948341846466,-0.528186559677124,-0.55857127904892,-0.711980938911438,-0.425536215305328,-0.564465641975403,-0.59893798828125,-0.568024158477783,-0.60069328546524,-0.581222236156464,-0.548951983451843,-0.566350996494293,-0.599438011646271,-0.565615057945251,-0.508258581161499,-0.688708305358887,-0.517062723636627,-0.520097553730011,-0.639993131160736,-0.565603375434875,-0.566350996494293,-0.599438011646271,-0.565615057945251,-0.472578227519989,-0.710325717926025,-0.521638751029968,-0.496748417615891,-0.704900443553925,-0.506316304206848,-0.520097553730011,-0.639993131160736,-0.565603375434875,-0.4670050740242,-0.702592968940735,-0.536907076835632,-0.496748417615891,-0.704900443553925,-0.506316304206848,-0.480734914541245,-0.7093306183815,-0.515503525733948,-0.477685540914536,-0.654130399227142,-0.586455345153809,-0.55243843793869,-0.556738257408142,-0.620366096496582,-0.459941327571869,-0.541432619094849,-0.703778743743896,-0.4670050740242,-0.702592968940735,-0.536907076835632,-0.480734914541245,-0.7093306183815,-0.515503525733948,-0.477685540914536,-0.654130399227142,-0.586455345153809,-0.508320689201355,-0.418764710426331,-0.75249320268631,-0.479222148656845,-0.336443960666656,-0.810648798942566,-0.444957852363586,-0.310373038053513,-0.84004819393158,-0.459941327571869,-0.541432619094849,-0.703778743743896,-0.55243843793869,-0.556738257408142,-0.620366096496582,-0.508320689201355,-0.418764710426331,-0.75249320268631,-0.479222148656845,-0.336443960666656,-0.810648798942566,-0.443491458892822,-0.250171989202499,-0.860656261444092,-0.403247982263565,-0.216481655836105,-0.889115691184998,-0.403247982263565,-0.216481655836105,-0.889115691184998,-0.443491458892822,-0.250171989202499,-0.860656261444092, +-0.430403918027878,-0.101413153111935,-0.896921217441559,-0.364683598279953,-0.0654229298233986,-0.928830206394196,-0.430403918027878,-0.101413153111935,-0.896921217441559,-0.371778696775436,0.0268321577459574,-0.92793345451355,-0.373894453048706,0.0381467454135418,-0.926686346530914,-0.269545018672943,-0.0442703738808632,-0.961969614028931,-0.364683598279953,-0.0654229298233986,-0.928830206394196,-0.160651355981827,0.0384636558592319,-0.986261427402496,-0.128720209002495,0.0476660765707493,-0.990534663200378,-0.104600243270397,0.0391309186816216,-0.993744134902954,-0.160651355981827,0.0384636558592319,-0.986261427402496,-0.269545018672943,-0.0442703738808632,-0.961969614028931,-0.325884222984314,0.0435770563781261,-0.944404780864716,-0.209818542003632,0.160573855042458,-0.964464664459229,-0.304524898529053,0.0748658403754234,-0.949557542800903,-0.150679782032967,0.0575953610241413,-0.986903369426727,-0.150679782032967,0.0575953610241413,-0.986903369426727,-0.128720209002495,0.0476660765707493,-0.990534663200378,-0.179790511727333,0.116608709096909,-0.976769030094147,-0.418135285377502,0.107333399355412,-0.90202122926712,-0.523484289646149,0.0645486786961555,-0.849586665630341,-0.304524898529053,0.0748658403754234,-0.949557542800903,-0.451224476099014,0.117001079022884,-0.884707391262054,-0.405536472797394,0.258375823497772,-0.876802146434784,-0.292013615369797,0.154694765806198,-0.943820655345917,-0.536470651626587,0.189121037721634,-0.822455048561096,-0.564496397972107,0.0603567771613598,-0.823225796222687,-0.569336116313934,0.06810162961483,-0.819279193878174,-0.451224476099014,0.117001079022884,-0.884707391262054,-0.536470651626587,0.189121037721634,-0.822455048561096,-0.405536472797394,0.258375823497772,-0.876802146434784,-0.35209247469902,0.22889232635498,-0.907545626163483,-0.292013615369797,0.154694765806198,-0.943820655345917,-0.405536472797394,0.258375823497772,-0.876802146434784,-0.418135285377502,0.107333399355412,-0.90202122926712,-0.569336116313934,0.06810162961483,-0.819279193878174,-0.523484289646149,0.0645486786961555,-0.849586665630341, +0.00796609837561846,0.195799648761749,-0.980611503124237,-0.0114165330305696,0.203702300786972,-0.978966236114502,0.0379013866186142,0.0925152450799942,-0.994989633560181,-0.0114165330305696,0.203702300786972,-0.978966236114502,0.103234194219112,0.183164149522781,-0.977646946907043,0.0167599190026522,0.124225698411465,-0.992112278938293,0.0757496133446693,0.216496795415878,-0.973340153694153,0.0167599190026522,0.124225698411465,-0.992112278938293,0.103234194219112,0.183164149522781,-0.977646946907043,0.0353268198668957,0.251206159591675,-0.967288672924042,-0.0640701875090599,0.292058050632477,-0.954252064228058,0.0757496133446693,0.216496795415878,-0.973340153694153,-0.0743647664785385,0.220299571752548,-0.972593367099762,-0.158266440033913,0.314194649457932,-0.936073362827301,-0.0640701875090599,0.292058050632477,-0.954252064228058,-0.158266440033913,0.314194649457932,-0.936073362827301,-0.205120444297791,0.358060300350189,-0.910888731479645,-0.178530335426331,0.324895173311234,-0.928746402263641,-0.0445683747529984,0.290933728218079,-0.955704510211945,0.00796609837561846,0.195799648761749,-0.980611503124237,0.00285456888377666,0.14740914106369,-0.989071428775787,-0.35209247469902,0.22889232635498,-0.907545626163483,-0.430423080921173,0.30589097738266,-0.849215269088745,-0.28907322883606,0.207608565688133,-0.934524059295654,-0.28907322883606,0.207608565688133,-0.934524059295654,-0.182844817638397,0.351407587528229,-0.918194055557251,-0.132206097245216,0.239773318171501,-0.961784899234772,-0.132206097245216,0.239773318171501,-0.961784899234772,-0.0445683747529984,0.290933728218079,-0.955704510211945,0.00285456888377666,0.14740914106369,-0.989071428775787,0.230132073163986,-0.0406345911324024,-0.972310662269592,0.26262241601944,-0.103201523423195,-0.959363758563995,0.25105482339859,0.0280708204954863,-0.967565715312958,0.0898675993084908,0.0356727354228497,-0.995314598083496,0.143717899918556,-0.0578650161623955,-0.987925469875336,0.230132073163986,-0.0406345911324024,-0.972310662269592,0.178070828318596,0.0481442846357822,-0.982839047908783, +0.205496713519096,0.19682951271534,-0.958660066127777,0.25105482339859,0.0280708204954863,-0.967565715312958,0.154081135988235,0.395024120807648,-0.905657112598419,0.113912150263786,0.286160886287689,-0.951386332511902,0.0235846135765314,0.388312369585037,-0.921225905418396,0.205496713519096,0.19682951271534,-0.958660066127777,0.113912150263786,0.286160886287689,-0.951386332511902,0.244292229413986,0.357290357351303,-0.901479244232178,0.182302892208099,-0.0465999990701675,-0.982137441635132,0.291310727596283,-0.020640604197979,-0.956405758857727,0.303346335887909,-0.0609222799539566,-0.950930774211884,0.192796885967255,-0.160707667469978,-0.967988789081573,0.303346335887909,-0.0609222799539566,-0.950930774211884,0.312344968318939,-0.169178798794746,-0.934782922267914,0.0898675993084908,0.0356727354228497,-0.995314598083496,0.132335677742958,0.0798664540052414,-0.987982034683228,0.1409682482481,-0.029871741309762,-0.989563345909119,0.1409682482481,-0.029871741309762,-0.989563345909119,0.209673032164574,-0.0838211178779602,-0.974172055721283,0.25115579366684,-0.0866629406809807,-0.964059233665466,0.182302892208099,-0.0465999990701675,-0.982137441635132,0.25115579366684,-0.0866629406809807,-0.964059233665466,0.291310727596283,-0.020640604197979,-0.956405758857727,0.192796885967255,-0.160707667469978,-0.967988789081573,0.312344968318939,-0.169178798794746,-0.934782922267914,0.255816012620926,-0.266281813383102,-0.929328799247742,0.249771565198898,-0.261931657791138,-0.932204842567444,0.258545160293579,-0.220851272344589,-0.940414249897003,0.255816012620926,-0.266281813383102,-0.929328799247742,0.157663688063622,-0.355442583560944,-0.921304881572723,0.14417576789856,-0.306128829717636,-0.941009223461151,0.0753905475139618,-0.379170775413513,-0.922250330448151,0.239617824554443,-0.362864226102829,-0.900506973266602,0.0753905475139618,-0.379170775413513,-0.922250330448151,0.128855884075165,-0.309597134590149,-0.942096412181854,0.18590871989727,-0.343163996934891,-0.920693397521973,0.14417576789856,-0.306128829717636,-0.941009223461151, +0.157663688063622,-0.355442583560944,-0.921304881572723,0.1517733335495,-0.690122842788696,-0.707598149776459,0.108007617294788,-0.71850061416626,-0.687088847160339,0.121013857424259,-0.710319340229034,-0.693398773670197,0.165814936161041,-0.508576273918152,-0.844899713993073,0.235721468925476,-0.503295361995697,-0.831341683864594,0.1517733335495,-0.690122842788696,-0.707598149776459,0.291290432214737,-0.280019044876099,-0.914734423160553,0.240824460983276,-0.146756038069725,-0.959409296512604,0.230433955788612,-0.165697336196899,-0.958876669406891,0.165814936161041,-0.508576273918152,-0.844899713993073,0.291290432214737,-0.280019044876099,-0.914734423160553,0.235721468925476,-0.503295361995697,-0.831341683864594,0.210006952285767,-0.165226668119431,-0.963637471199036,0.240824460983276,-0.146756038069725,-0.959409296512604,0.162594005465508,-0.103433564305305,-0.981256663799286,0.108007617294788,-0.71850061416626,-0.687088847160339,0.184473931789398,-0.491105169057846,-0.851343035697937,0.191241279244423,-0.715605199337006,-0.67181533575058,0.128855884075165,-0.309597134590149,-0.942096412181854,0.0567963421344757,-0.311954617500305,-0.948397815227509,0.162594005465508,-0.103433564305305,-0.981256663799286,0.195552080869675,-0.143145054578781,-0.970190048217773,0.196958392858505,-0.197753414511681,-0.960260808467865,0.290238499641418,-0.190686911344528,-0.937763333320618,0.195552080869675,-0.143145054578781,-0.970190048217773,0.283008813858032,-0.195317268371582,-0.939019203186035,0.140836209058762,-0.107257127761841,-0.984205782413483,0.249771565198898,-0.261931657791138,-0.932204842567444,0.255816012620926,-0.266281813383102,-0.929328799247742,0.283008813858032,-0.195317268371582,-0.939019203186035,0.210984006524086,-0.289029359817505,-0.933781385421753,0.285258054733276,-0.223806604743004,-0.931954026222229,0.196958392858505,-0.197753414511681,-0.960260808467865,0.285258054733276,-0.223806604743004,-0.931954026222229,0.210984006524086,-0.289029359817505,-0.933781385421753,0.239583387970924,-0.279888153076172,-0.929657101631165, +0.239583387970924,-0.279888153076172,-0.929657101631165,0.17161950469017,-0.304840117692947,-0.936813294887543,0.217453703284264,-0.0799211338162422,-0.972792983055115,0.217453703284264,-0.0799211338162422,-0.972792983055115,0.17161950469017,-0.304840117692947,-0.936813294887543,0.247343927621841,-0.0139910727739334,-0.968826651573181,0.247343927621841,-0.0139910727739334,-0.968826651573181,0.309636771678925,0.17242993414402,-0.935089766979218,0.234608188271523,0.158929109573364,-0.959010183811188,0.14093579351902,0.0887687429785728,-0.986030995845795,0.234608188271523,0.158929109573364,-0.959010183811188,0.313572883605957,0.12318380177021,-0.941540062427521,0.185141518712044,-0.082526683807373,-0.979240477085114,0.14093579351902,0.0887687429785728,-0.986030995845795,0.313572883605957,0.12318380177021,-0.941540062427521,0.185141518712044,-0.082526683807373,-0.979240477085114,0.260173827409744,-0.239460632205009,-0.935397267341614,0.158744737505913,-0.182402223348618,-0.970324397087097,0.260173827409744,-0.239460632205009,-0.935397267341614,0.202514111995697,-0.28090026974678,-0.938127338886261,0.158744737505913,-0.182402223348618,-0.970324397087097,0.18590871989727,-0.343163996934891,-0.920693397521973,0.202514111995697,-0.28090026974678,-0.938127338886261,0.14417576789856,-0.306128829717636,-0.941009223461151,-0.264690071344376,0.303596019744873,-0.915296912193298,-0.265224009752274,0.348677784204483,-0.898932635784149,-0.249696716666222,0.470051527023315,-0.846583127975464,-0.186458796262741,0.310052663087845,-0.932255506515503,-0.220294862985611,0.175422713160515,-0.959529519081116,-0.264690071344376,0.303596019744873,-0.915296912193298,-0.265224009752274,0.348677784204483,-0.898932635784149,-0.205120444297791,0.358060300350189,-0.910888731479645,-0.24129618704319,0.466776669025421,-0.850820541381836,-0.14343324303627,0.191897854208946,-0.970876932144165,-0.0731359645724297,0.335758447647095,-0.939104557037354,-0.0102444905787706,0.240444630384445,-0.970608770847321,-0.0102444905787706,0.240444630384445,-0.970608770847321, +0.078516848385334,0.309287309646606,-0.947721660137177,0.00948064774274826,0.169032394886017,-0.985564827919006,-0.0387486629188061,0.233272522687912,-0.971638977527618,0.00948064774274826,0.169032394886017,-0.985564827919006,-0.0131569914519787,0.182900503277779,-0.983043313026428,-0.0387486629188061,0.233272522687912,-0.971638977527618,-0.110248237848282,0.381530463695526,-0.917757987976074,-0.161818757653236,0.620502114295959,-0.767327606678009,-0.186458796262741,0.310052663087845,-0.932255506515503,-0.0731359645724297,0.335758447647095,-0.939104557037354,-0.14343324303627,0.191897854208946,-0.970876932144165,-0.167120099067688,0.865740716457367,-0.471766650676727,-0.180956140160561,0.882824301719666,-0.433446705341339,-0.136306703090668,0.829452753067017,-0.541690349578857,-0.162860408425331,0.80255538225174,-0.573917388916016,-0.136306703090668,0.829452753067017,-0.541690349578857,-0.0892985761165619,0.756637454032898,-0.647707879543304,-0.0856938734650612,0.714721024036407,-0.694139957427979,-0.0892985761165619,0.756637454032898,-0.647707879543304,-0.0677753686904907,0.694757759571075,-0.716043293476105,-0.263100177049637,0.870439410209656,-0.416069120168686,-0.161818757653236,0.620502114295959,-0.767327606678009,-0.232733979821205,0.902731537818909,-0.361815601587296,-0.250952631235123,0.916077375411987,-0.312769711017609,-0.232733979821205,0.902731537818909,-0.361815601587296,-0.221861138939857,0.923572957515717,-0.312714874744415,-0.201134786009789,0.906689882278442,-0.370753556489944,-0.221861138939857,0.923572957515717,-0.312714874744415,-0.165754482150078,0.933537185192108,-0.317858040332794,-0.169128283858299,0.861721754074097,-0.478362947702408,-0.180956140160561,0.882824301719666,-0.433446705341339,-0.201134786009789,0.906689882278442,-0.370753556489944,-0.0856938734650612,0.714721024036407,-0.694139957427979,-0.0677753686904907,0.694757759571075,-0.716043293476105,-0.0461646467447281,0.627815902233124,-0.776991546154022,0.154081135988235,0.395024120807648,-0.905657112598419,0.0235846135765314,0.388312369585037,-0.921225905418396, +0.0188634041696787,0.497215628623962,-0.867421865463257,-0.0156828816980124,0.591728270053864,-0.805984795093536,0.0188634041696787,0.497215628623962,-0.867421865463257,-0.0461646467447281,0.627815902233124,-0.776991546154022,0.167896181344986,-0.491339564323425,-0.854632198810577,0.117043107748032,-0.406934291124344,-0.905927896499634,0.141456112265587,-0.133855685591698,-0.980853080749512,0.184473931789398,-0.491105169057846,-0.851343035697937,0.0896670818328857,-0.50087434053421,-0.860862672328949,0.162827610969543,-0.0908621773123741,-0.982461810112,0.16813850402832,0.0930387675762177,-0.98136293888092,0.119929768145084,-0.184649989008904,-0.975459456443787,0.162767052650452,0.0616535618901253,-0.984736323356628,0.178094565868378,0.0613820552825928,-0.982096970081329,0.170298680663109,0.0733908265829086,-0.982655584812164,0.162767052650452,0.0616535618901253,-0.984736323356628,0.119929768145084,-0.184649989008904,-0.975459456443787,0.162827610969543,-0.0908621773123741,-0.982461810112,0.0896670818328857,-0.50087434053421,-0.860862672328949,0.141456112265587,-0.133855685591698,-0.980853080749512,0.178094565868378,0.0613820552825928,-0.982096970081329,0.216990604996681,-0.211177453398705,-0.953057765960693,-0.595865964889526,-0.604948341846466,-0.528186559677124,-0.599853873252869,-0.608361661434174,-0.51968377828598,-0.60069328546524,-0.581222236156464,-0.548951983451843,-0.599853873252869,-0.608361661434174,-0.51968377828598,-0.595865964889526,-0.604948341846466,-0.528186559677124,-0.607711732387543,-0.628022134304047,-0.48608073592186,-0.55857127904892,-0.711980938911438,-0.425536215305328,-0.580812454223633,-0.728979885578156,-0.362277746200562,-0.607711732387543,-0.628022134304047,-0.48608073592186,-0.60069328546524,-0.581222236156464,-0.548951983451843,-0.599853873252869,-0.608361661434174,-0.51968377828598,-0.566350996494293,-0.599438011646271,-0.565615057945251,-0.520097553730011,-0.639993131160736,-0.565603375434875,-0.508258581161499,-0.688708305358887,-0.517062723636627,-0.472578227519989,-0.710325717926025,-0.521638751029968, +-0.599853873252869,-0.608361661434174,-0.51968377828598,-0.508258581161499,-0.688708305358887,-0.517062723636627,-0.566350996494293,-0.599438011646271,-0.565615057945251,-0.472578227519989,-0.710325717926025,-0.521638751029968,-0.480734914541245,-0.7093306183815,-0.515503525733948,-0.496748417615891,-0.704900443553925,-0.506316304206848,-0.515371382236481,-0.654721438884735,-0.552930474281311,-0.55243843793869,-0.556738257408142,-0.620366096496582,-0.477685540914536,-0.654130399227142,-0.586455345153809,-0.515371382236481,-0.654721438884735,-0.552930474281311,-0.477685540914536,-0.654130399227142,-0.586455345153809,-0.480734914541245,-0.7093306183815,-0.515503525733948,-0.508320689201355,-0.418764710426331,-0.75249320268631,-0.557384729385376,-0.390330791473389,-0.732778251171112,-0.479222148656845,-0.336443960666656,-0.810648798942566,-0.568155169487,-0.463473439216614,-0.67999404668808,-0.508320689201355,-0.418764710426331,-0.75249320268631,-0.55243843793869,-0.556738257408142,-0.620366096496582,-0.443491458892822,-0.250171989202499,-0.860656261444092,-0.479222148656845,-0.336443960666656,-0.810648798942566,-0.522809684276581,-0.308404862880707,-0.794705092906952,-0.430403918027878,-0.101413153111935,-0.896921217441559,-0.443491458892822,-0.250171989202499,-0.860656261444092,-0.522809684276581,-0.308404862880707,-0.794705092906952,-0.371778696775436,0.0268321577459574,-0.92793345451355,-0.430403918027878,-0.101413153111935,-0.896921217441559,-0.402865350246429,0.0212525073438883,-0.915012419223785,-0.371778696775436,0.0268321577459574,-0.92793345451355,-0.373894453048706,0.0381467454135418,-0.926686346530914,-0.364683598279953,-0.0654229298233986,-0.928830206394196,-0.325884222984314,0.0435770563781261,-0.944404780864716,-0.269545018672943,-0.0442703738808632,-0.961969614028931,-0.373894453048706,0.0381467454135418,-0.926686346530914,-0.160651355981827,0.0384636558592319,-0.986261427402496,-0.307648956775665,0.0791756063699722,-0.948199987411499,-0.128720209002495,0.0476660765707493,-0.990534663200378,-0.160651355981827,0.0384636558592319,-0.986261427402496, +-0.325884222984314,0.0435770563781261,-0.944404780864716,-0.307648956775665,0.0791756063699722,-0.948199987411499,-0.418135285377502,0.107333399355412,-0.90202122926712,-0.304524898529053,0.0748658403754234,-0.949557542800903,-0.209818542003632,0.160573855042458,-0.964464664459229,-0.179790511727333,0.116608709096909,-0.976769030094147,-0.209818542003632,0.160573855042458,-0.964464664459229,-0.150679782032967,0.0575953610241413,-0.986903369426727,-0.307648956775665,0.0791756063699722,-0.948199987411499,-0.179790511727333,0.116608709096909,-0.976769030094147,-0.128720209002495,0.0476660765707493,-0.990534663200378,-0.536470651626587,0.189121037721634,-0.822455048561096,-0.569336116313934,0.06810162961483,-0.819279193878174,-0.532815098762512,0.170692518353462,-0.828837692737579,-0.405536472797394,0.258375823497772,-0.876802146434784,-0.536470651626587,0.189121037721634,-0.822455048561096,-0.433412045240402,0.327434569597244,-0.839607357978821,-0.405536472797394,0.258375823497772,-0.876802146434784,-0.433412045240402,0.327434569597244,-0.839607357978821,-0.35209247469902,0.22889232635498,-0.907545626163483,-0.532815098762512,0.170692518353462,-0.828837692737579,-0.569336116313934,0.06810162961483,-0.819279193878174,-0.418135285377502,0.107333399355412,-0.90202122926712,0.00796609837561846,0.195799648761749,-0.980611503124237,-0.0789343193173409,0.346102476119995,-0.93487024307251,-0.0114165330305696,0.203702300786972,-0.978966236114502,0.0476257130503654,0.255216211080551,-0.965710282325745,0.103234194219112,0.183164149522781,-0.977646946907043,-0.0114165330305696,0.203702300786972,-0.978966236114502,0.0757496133446693,0.216496795415878,-0.973340153694153,0.103234194219112,0.183164149522781,-0.977646946907043,0.126176208257675,0.197150468826294,-0.972219705581665,0.0353268198668957,0.251206159591675,-0.967288672924042,-0.0743647664785385,0.220299571752548,-0.972593367099762,-0.0640701875090599,0.292058050632477,-0.954252064228058,0.0353268198668957,0.251206159591675,-0.967288672924042,0.0757496133446693,0.216496795415878,-0.973340153694153, +0.126176208257675,0.197150468826294,-0.972219705581665,-0.158266440033913,0.314194649457932,-0.936073362827301,-0.0743647664785385,0.220299571752548,-0.972593367099762,-0.100152716040611,0.218561753630638,-0.970669806003571,-0.158266440033913,0.314194649457932,-0.936073362827301,-0.100152716040611,0.218561753630638,-0.970669806003571,-0.205120444297791,0.358060300350189,-0.910888731479645,-0.0445683747529984,0.290933728218079,-0.955704510211945,-0.0789343193173409,0.346102476119995,-0.93487024307251,0.00796609837561846,0.195799648761749,-0.980611503124237,-0.430423080921173,0.30589097738266,-0.849215269088745,-0.35209247469902,0.22889232635498,-0.907545626163483,-0.464508533477783,0.316672146320343,-0.827012956142426,-0.307180672883987,0.377396523952484,-0.873619973659515,-0.28907322883606,0.207608565688133,-0.934524059295654,-0.430423080921173,0.30589097738266,-0.849215269088745,-0.182844817638397,0.351407587528229,-0.918194055557251,-0.28907322883606,0.207608565688133,-0.934524059295654,-0.307180672883987,0.377396523952484,-0.873619973659515,-0.132206097245216,0.239773318171501,-0.961784899234772,-0.182844817638397,0.351407587528229,-0.918194055557251,-0.0445683747529984,0.290933728218079,-0.955704510211945,0.230132073163986,-0.0406345911324024,-0.972310662269592,0.25105482339859,0.0280708204954863,-0.967565715312958,0.21365749835968,0.211509227752686,-0.953736960887909,0.230132073163986,-0.0406345911324024,-0.972310662269592,0.21365749835968,0.211509227752686,-0.953736960887909,0.0898675993084908,0.0356727354228497,-0.995314598083496,0.21365749835968,0.211509227752686,-0.953736960887909,0.25105482339859,0.0280708204954863,-0.967565715312958,0.205496713519096,0.19682951271534,-0.958660066127777,0.113912150263786,0.286160886287689,-0.951386332511902,0.154081135988235,0.395024120807648,-0.905657112598419,0.244292229413986,0.357290357351303,-0.901479244232178,0.249543130397797,0.343333125114441,-0.905455946922302,0.205496713519096,0.19682951271534,-0.958660066127777,0.244292229413986,0.357290357351303,-0.901479244232178, +0.303346335887909,-0.0609222799539566,-0.950930774211884,0.291310727596283,-0.020640604197979,-0.956405758857727,0.324541479349136,-0.0907768905162811,-0.941505312919617,0.379781633615494,-0.121652387082577,-0.917042255401611,0.312344968318939,-0.169178798794746,-0.934782922267914,0.303346335887909,-0.0609222799539566,-0.950930774211884,0.0898675993084908,0.0356727354228497,-0.995314598083496,0.12570196390152,0.255946844816208,-0.958483219146729,0.132335677742958,0.0798664540052414,-0.987982034683228,0.209673032164574,-0.0838211178779602,-0.974172055721283,0.1409682482481,-0.029871741309762,-0.989563345909119,0.132335677742958,0.0798664540052414,-0.987982034683228,0.292626708745956,-0.108480118215084,-0.950053453445435,0.25115579366684,-0.0866629406809807,-0.964059233665466,0.209673032164574,-0.0838211178779602,-0.974172055721283,0.324541479349136,-0.0907768905162811,-0.941505312919617,0.291310727596283,-0.020640604197979,-0.956405758857727,0.25115579366684,-0.0866629406809807,-0.964059233665466,0.312344968318939,-0.169178798794746,-0.934782922267914,0.283008813858032,-0.195317268371582,-0.939019203186035,0.255816012620926,-0.266281813383102,-0.929328799247742,0.14417576789856,-0.306128829717636,-0.941009223461151,0.0614541359245777,-0.388991385698318,-0.91918933391571,0.0753905475139618,-0.379170775413513,-0.922250330448151,0.128855884075165,-0.309597134590149,-0.942096412181854,0.0753905475139618,-0.379170775413513,-0.922250330448151,0.0614541359245777,-0.388991385698318,-0.91918933391571,0.113790825009346,-0.702507376670837,-0.702520370483398,0.108007617294788,-0.71850061416626,-0.687088847160339,0.1517733335495,-0.690122842788696,-0.707598149776459,0.1517733335495,-0.690122842788696,-0.707598149776459,0.235721468925476,-0.503295361995697,-0.831341683864594,0.305929660797119,-0.489715456962585,-0.816446959972382,0.210006952285767,-0.165226668119431,-0.963637471199036,0.230433955788612,-0.165697336196899,-0.958876669406891,0.240824460983276,-0.146756038069725,-0.959409296512604,0.258488923311234,-0.317893654108047,-0.912209928035736, +0.291290432214737,-0.280019044876099,-0.914734423160553,0.230433955788612,-0.165697336196899,-0.958876669406891,0.235721468925476,-0.503295361995697,-0.831341683864594,0.291290432214737,-0.280019044876099,-0.914734423160553,0.305929660797119,-0.489715456962585,-0.816446959972382,0.162594005465508,-0.103433564305305,-0.981256663799286,0.209030464291573,-0.341909229755402,-0.916190028190613,0.210006952285767,-0.165226668119431,-0.963637471199036,0.184473931789398,-0.491105169057846,-0.851343035697937,0.108007617294788,-0.71850061416626,-0.687088847160339,0.0896670818328857,-0.50087434053421,-0.860862672328949,0.0567963421344757,-0.311954617500305,-0.948397815227509,0.128855884075165,-0.309597134590149,-0.942096412181854,0.0614541359245777,-0.388991385698318,-0.91918933391571,0.162594005465508,-0.103433564305305,-0.981256663799286,0.0567963421344757,-0.311954617500305,-0.948397815227509,0.209030464291573,-0.341909229755402,-0.916190028190613,0.195552080869675,-0.143145054578781,-0.970190048217773,0.140836209058762,-0.107257127761841,-0.984205782413483,0.196958392858505,-0.197753414511681,-0.960260808467865,0.283008813858032,-0.195317268371582,-0.939019203186035,0.276727467775345,-0.0811169371008873,-0.957518577575684,0.140836209058762,-0.107257127761841,-0.984205782413483,0.210984006524086,-0.289029359817505,-0.933781385421753,0.196958392858505,-0.197753414511681,-0.960260808467865,0.136690735816956,-0.218618050217628,-0.96618926525116,0.190712779760361,-0.288211405277252,-0.938383042812347,0.239583387970924,-0.279888153076172,-0.929657101631165,0.210984006524086,-0.289029359817505,-0.933781385421753,0.239583387970924,-0.279888153076172,-0.929657101631165,0.190712779760361,-0.288211405277252,-0.938383042812347,0.17161950469017,-0.304840117692947,-0.936813294887543,0.146642759442329,-0.183286741375923,-0.97206062078476,0.247343927621841,-0.0139910727739334,-0.968826651573181,0.17161950469017,-0.304840117692947,-0.936813294887543,0.309636771678925,0.17242993414402,-0.935089766979218,0.247343927621841,-0.0139910727739334,-0.968826651573181, +0.239714294672012,0.0482093840837479,-0.969645738601685,0.309636771678925,0.17242993414402,-0.935089766979218,0.313572883605957,0.12318380177021,-0.941540062427521,0.234608188271523,0.158929109573364,-0.959010183811188,0.185141518712044,-0.082526683807373,-0.979240477085114,0.313572883605957,0.12318380177021,-0.941540062427521,0.349281460046768,-0.0874019786715508,-0.932932615280151,0.185141518712044,-0.082526683807373,-0.979240477085114,0.349281460046768,-0.0874019786715508,-0.932932615280151,0.260173827409744,-0.239460632205009,-0.935397267341614,0.260173827409744,-0.239460632205009,-0.935397267341614,0.14417576789856,-0.306128829717636,-0.941009223461151,0.202514111995697,-0.28090026974678,-0.938127338886261,-0.265224009752274,0.348677784204483,-0.898932635784149,-0.24129618704319,0.466776669025421,-0.850820541381836,-0.249696716666222,0.470051527023315,-0.846583127975464,-0.186458796262741,0.310052663087845,-0.932255506515503,-0.264690071344376,0.303596019744873,-0.915296912193298,-0.249696716666222,0.470051527023315,-0.846583127975464,-0.205120444297791,0.358060300350189,-0.910888731479645,-0.0549623258411884,0.35416054725647,-0.933568060398102,-0.24129618704319,0.466776669025421,-0.850820541381836,-0.0731359645724297,0.335758447647095,-0.939104557037354,0.0357264578342438,0.351837515830994,-0.935379028320313,-0.0102444905787706,0.240444630384445,-0.970608770847321,-0.0102444905787706,0.240444630384445,-0.970608770847321,0.0357264578342438,0.351837515830994,-0.935379028320313,0.078516848385334,0.309287309646606,-0.947721660137177,0.0409058220684528,0.253252863883972,-0.966534852981567,0.00948064774274826,0.169032394886017,-0.985564827919006,0.078516848385334,0.309287309646606,-0.947721660137177,0.0409058220684528,0.253252863883972,-0.966534852981567,-0.0131569914519787,0.182900503277779,-0.983043313026428,0.00948064774274826,0.169032394886017,-0.985564827919006,-0.0387486629188061,0.233272522687912,-0.971638977527618,-0.0131569914519787,0.182900503277779,-0.983043313026428,-0.110248237848282,0.381530463695526,-0.917757987976074, +-0.162926182150841,0.723179757595062,-0.671167612075806,-0.161818757653236,0.620502114295959,-0.767327606678009,-0.110248237848282,0.381530463695526,-0.917757987976074,-0.186458796262741,0.310052663087845,-0.932255506515503,-0.136923179030418,0.468431830406189,-0.872824907302856,-0.0731359645724297,0.335758447647095,-0.939104557037354,-0.136306703090668,0.829452753067017,-0.541690349578857,-0.180956140160561,0.882824301719666,-0.433446705341339,-0.169128283858299,0.861721754074097,-0.478362947702408,-0.108799606561661,0.785006642341614,-0.609858274459839,-0.0892985761165619,0.756637454032898,-0.647707879543304,-0.136306703090668,0.829452753067017,-0.541690349578857,-0.0434112437069416,0.68660044670105,-0.725737631320953,-0.0677753686904907,0.694757759571075,-0.716043293476105,-0.0892985761165619,0.756637454032898,-0.647707879543304,-0.162926182150841,0.723179757595062,-0.671167612075806,-0.232733979821205,0.902731537818909,-0.361815601587296,-0.161818757653236,0.620502114295959,-0.767327606678009,-0.182685762643814,0.90216988325119,-0.390788078308105,-0.221861138939857,0.923572957515717,-0.312714874744415,-0.232733979821205,0.902731537818909,-0.361815601587296,-0.221861138939857,0.923572957515717,-0.312714874744415,-0.182685762643814,0.90216988325119,-0.390788078308105,-0.165754482150078,0.933537185192108,-0.317858040332794,-0.201134786009789,0.906689882278442,-0.370753556489944,-0.165754482150078,0.933537185192108,-0.317858040332794,-0.13749735057354,0.899484395980835,-0.414755612611771,-0.201134786009789,0.906689882278442,-0.370753556489944,-0.13749735057354,0.899484395980835,-0.414755612611771,-0.169128283858299,0.861721754074097,-0.478362947702408,-0.0156828816980124,0.591728270053864,-0.805984795093536,-0.0461646467447281,0.627815902233124,-0.776991546154022,-0.0677753686904907,0.694757759571075,-0.716043293476105,0.117639452219009,0.444786876440048,-0.887876927852631,0.154081135988235,0.395024120807648,-0.905657112598419,0.0188634041696787,0.497215628623962,-0.867421865463257,0.0188634041696787,0.497215628623962,-0.867421865463257, +-0.0156828816980124,0.591728270053864,-0.805984795093536,0.117639452219009,0.444786876440048,-0.887876927852631,0.216990604996681,-0.211177453398705,-0.953057765960693,0.167896181344986,-0.491339564323425,-0.854632198810577,0.141456112265587,-0.133855685591698,-0.980853080749512,0.119929768145084,-0.184649989008904,-0.975459456443787,0.100035578012466,-0.192615076899529,-0.976161956787109,0.162767052650452,0.0616535618901253,-0.984736323356628,0.144894301891327,-0.0228342954069376,-0.98918354511261,0.178094565868378,0.0613820552825928,-0.982096970081329,0.162767052650452,0.0616535618901253,-0.984736323356628,0.0882231146097183,-0.552458703517914,-0.828858196735382,0.119929768145084,-0.184649989008904,-0.975459456443787,0.0896670818328857,-0.50087434053421,-0.860862672328949,0.164365291595459,-0.0135819036513567,-0.986306011676788,0.216990604996681,-0.211177453398705,-0.953057765960693,0.178094565868378,0.0613820552825928,-0.982096970081329,-0.599853873252869,-0.608361661434174,-0.51968377828598,-0.607711732387543,-0.628022134304047,-0.48608073592186,-0.586689412593842,-0.657892405986786,-0.472200125455856,-0.580812454223633,-0.728979885578156,-0.362277746200562,-0.612328946590424,-0.650970935821533,-0.448653608560562,-0.607711732387543,-0.628022134304047,-0.48608073592186,-0.472578227519989,-0.710325717926025,-0.521638751029968,-0.508258581161499,-0.688708305358887,-0.517062723636627,-0.392205953598022,-0.746313333511353,-0.537764549255371,-0.568624377250671,-0.7177814245224,-0.401816040277481,-0.508258581161499,-0.688708305358887,-0.517062723636627,-0.599853873252869,-0.608361661434174,-0.51968377828598,-0.472578227519989,-0.710325717926025,-0.521638751029968,-0.427335977554321,-0.717525541782379,-0.550037205219269,-0.480734914541245,-0.7093306183815,-0.515503525733948,-0.55243843793869,-0.556738257408142,-0.620366096496582,-0.515371382236481,-0.654721438884735,-0.552930474281311,-0.576275169849396,-0.529509305953979,-0.622516512870789,-0.480734914541245,-0.7093306183815,-0.515503525733948,-0.427335977554321,-0.717525541782379,-0.550037205219269, +-0.515371382236481,-0.654721438884735,-0.552930474281311,-0.568155169487,-0.463473439216614,-0.67999404668808,-0.557384729385376,-0.390330791473389,-0.732778251171112,-0.508320689201355,-0.418764710426331,-0.75249320268631,-0.557384729385376,-0.390330791473389,-0.732778251171112,-0.522809684276581,-0.308404862880707,-0.794705092906952,-0.479222148656845,-0.336443960666656,-0.810648798942566,-0.55243843793869,-0.556738257408142,-0.620366096496582,-0.641312956809998,-0.436628967523575,-0.630930006504059,-0.568155169487,-0.463473439216614,-0.67999404668808,-0.565968930721283,-0.181814298033714,-0.804128468036652,-0.430403918027878,-0.101413153111935,-0.896921217441559,-0.522809684276581,-0.308404862880707,-0.794705092906952,-0.500027298927307,-0.020368529483676,-0.865769863128662,-0.402865350246429,0.0212525073438883,-0.915012419223785,-0.430403918027878,-0.101413153111935,-0.896921217441559,-0.371778696775436,0.0268321577459574,-0.92793345451355,-0.402865350246429,0.0212525073438883,-0.915012419223785,-0.349121659994125,0.0823694244027138,-0.933450162410736,-0.371778696775436,0.0268321577459574,-0.92793345451355,-0.347929745912552,0.122919909656048,-0.92942750453949,-0.373894453048706,0.0381467454135418,-0.926686346530914,-0.373894453048706,0.0381467454135418,-0.926686346530914,-0.425377279520035,0.11681279540062,-0.897445738315582,-0.325884222984314,0.0435770563781261,-0.944404780864716,-0.307648956775665,0.0791756063699722,-0.948199987411499,-0.325884222984314,0.0435770563781261,-0.944404780864716,-0.425377279520035,0.11681279540062,-0.897445738315582,-0.418135285377502,0.107333399355412,-0.90202122926712,-0.209818542003632,0.160573855042458,-0.964464664459229,-0.413708835840225,0.147726595401764,-0.898343861103058,-0.179790511727333,0.116608709096909,-0.976769030094147,-0.205834597349167,0.253509312868118,-0.945179879665375,-0.209818542003632,0.160573855042458,-0.964464664459229,-0.179790511727333,0.116608709096909,-0.976769030094147,-0.307648956775665,0.0791756063699722,-0.948199987411499,-0.347180724143982,0.139625310897827,-0.927345752716064, +-0.536470651626587,0.189121037721634,-0.822455048561096,-0.532815098762512,0.170692518353462,-0.828837692737579,-0.440823763608933,0.264568120241165,-0.857716739177704,-0.536470651626587,0.189121037721634,-0.822455048561096,-0.440823763608933,0.264568120241165,-0.857716739177704,-0.433412045240402,0.327434569597244,-0.839607357978821,-0.35209247469902,0.22889232635498,-0.907545626163483,-0.433412045240402,0.327434569597244,-0.839607357978821,-0.464508533477783,0.316672146320343,-0.827012956142426,-0.532815098762512,0.170692518353462,-0.828837692737579,-0.418135285377502,0.107333399355412,-0.90202122926712,-0.413708835840225,0.147726595401764,-0.898343861103058,-0.121284916996956,0.355485886335373,-0.926779210567474,-0.0114165330305696,0.203702300786972,-0.978966236114502,-0.0789343193173409,0.346102476119995,-0.93487024307251,0.0476257130503654,0.255216211080551,-0.965710282325745,0.126176208257675,0.197150468826294,-0.972219705581665,0.103234194219112,0.183164149522781,-0.977646946907043,-0.0697667300701141,0.31633073091507,-0.946080029010773,0.0476257130503654,0.255216211080551,-0.965710282325745,-0.0114165330305696,0.203702300786972,-0.978966236114502,0.0353268198668957,0.251206159591675,-0.967288672924042,0.0573345869779587,0.157160013914108,-0.985907375812531,-0.0743647664785385,0.220299571752548,-0.972593367099762,0.0353268198668957,0.251206159591675,-0.967288672924042,0.126176208257675,0.197150468826294,-0.972219705581665,0.0573345869779587,0.157160013914108,-0.985907375812531,-0.0743647664785385,0.220299571752548,-0.972593367099762,-0.0141257233917713,0.178844287991524,-0.983775913715363,-0.100152716040611,0.218561753630638,-0.970669806003571,-0.205120444297791,0.358060300350189,-0.910888731479645,-0.100152716040611,0.218561753630638,-0.970669806003571,-0.0549623258411884,0.35416054725647,-0.933568060398102,-0.0445683747529984,0.290933728218079,-0.955704510211945,-0.105681605637074,0.416204959154129,-0.903108358383179,-0.0789343193173409,0.346102476119995,-0.93487024307251,-0.430423080921173,0.30589097738266,-0.849215269088745, +-0.464508533477783,0.316672146320343,-0.827012956142426,-0.37657368183136,0.344022035598755,-0.860140144824982,-0.430423080921173,0.30589097738266,-0.849215269088745,-0.37657368183136,0.344022035598755,-0.860140144824982,-0.307180672883987,0.377396523952484,-0.873619973659515,-0.182844817638397,0.351407587528229,-0.918194055557251,-0.307180672883987,0.377396523952484,-0.873619973659515,-0.193781271576881,0.439527779817581,-0.877076983451843,-0.0445683747529984,0.290933728218079,-0.955704510211945,-0.182844817638397,0.351407587528229,-0.918194055557251,-0.105681605637074,0.416204959154129,-0.903108358383179,0.12570196390152,0.255946844816208,-0.958483219146729,0.0898675993084908,0.0356727354228497,-0.995314598083496,0.21365749835968,0.211509227752686,-0.953736960887909,0.21365749835968,0.211509227752686,-0.953736960887909,0.205496713519096,0.19682951271534,-0.958660066127777,0.249543130397797,0.343333125114441,-0.905455946922302,0.244292229413986,0.357290357351303,-0.901479244232178,0.154081135988235,0.395024120807648,-0.905657112598419,0.21073853969574,0.364380389451981,-0.907092094421387,0.249543130397797,0.343333125114441,-0.905455946922302,0.244292229413986,0.357290357351303,-0.901479244232178,0.236797660589218,0.356060951948166,-0.903962016105652,0.379781633615494,-0.121652387082577,-0.917042255401611,0.303346335887909,-0.0609222799539566,-0.950930774211884,0.324541479349136,-0.0907768905162811,-0.941505312919617,0.312344968318939,-0.169178798794746,-0.934782922267914,0.379781633615494,-0.121652387082577,-0.917042255401611,0.283008813858032,-0.195317268371582,-0.939019203186035,0.20355686545372,0.294853687286377,-0.933609008789063,0.132335677742958,0.0798664540052414,-0.987982034683228,0.12570196390152,0.255946844816208,-0.958483219146729,0.276734888553619,0.0848634392023087,-0.957191646099091,0.209673032164574,-0.0838211178779602,-0.974172055721283,0.132335677742958,0.0798664540052414,-0.987982034683228,0.324541479349136,-0.0907768905162811,-0.941505312919617,0.25115579366684,-0.0866629406809807,-0.964059233665466, +0.292626708745956,-0.108480118215084,-0.950053453445435,0.276734888553619,0.0848634392023087,-0.957191646099091,0.292626708745956,-0.108480118215084,-0.950053453445435,0.209673032164574,-0.0838211178779602,-0.974172055721283,0.0614541359245777,-0.388991385698318,-0.91918933391571,0.14417576789856,-0.306128829717636,-0.941009223461151,0.28316941857338,-0.291367322206497,-0.913739562034607,0.113790825009346,-0.702507376670837,-0.702520370483398,0.0896670818328857,-0.50087434053421,-0.860862672328949,0.108007617294788,-0.71850061416626,-0.687088847160339,0.1517733335495,-0.690122842788696,-0.707598149776459,0.245824873447418,-0.654888689517975,-0.714626312255859,0.113790825009346,-0.702507376670837,-0.702520370483398,0.1517733335495,-0.690122842788696,-0.707598149776459,0.305929660797119,-0.489715456962585,-0.816446959972382,0.245824873447418,-0.654888689517975,-0.714626312255859,0.141222402453423,-0.281442850828171,-0.949129104614258,0.230433955788612,-0.165697336196899,-0.958876669406891,0.210006952285767,-0.165226668119431,-0.963637471199036,0.305929660797119,-0.489715456962585,-0.816446959972382,0.291290432214737,-0.280019044876099,-0.914734423160553,0.258488923311234,-0.317893654108047,-0.912209928035736,0.258488923311234,-0.317893654108047,-0.912209928035736,0.230433955788612,-0.165697336196899,-0.958876669406891,0.0209509804844856,-0.282879412174225,-0.958926558494568,0.209030464291573,-0.341909229755402,-0.916190028190613,0.141222402453423,-0.281442850828171,-0.949129104614258,0.210006952285767,-0.165226668119431,-0.963637471199036,0.0567963421344757,-0.311954617500305,-0.948397815227509,0.0614541359245777,-0.388991385698318,-0.91918933391571,0.209030464291573,-0.341909229755402,-0.916190028190613,0.196958392858505,-0.197753414511681,-0.960260808467865,0.140836209058762,-0.107257127761841,-0.984205782413483,0.136690735816956,-0.218618050217628,-0.96618926525116,0.379781633615494,-0.121652387082577,-0.917042255401611,0.276727467775345,-0.0811169371008873,-0.957518577575684,0.283008813858032,-0.195317268371582,-0.939019203186035, +0.201977998018265,0.0147587107494473,-0.979278802871704,0.140836209058762,-0.107257127761841,-0.984205782413483,0.276727467775345,-0.0811169371008873,-0.957518577575684,0.190712779760361,-0.288211405277252,-0.938383042812347,0.210984006524086,-0.289029359817505,-0.933781385421753,0.136690735816956,-0.218618050217628,-0.96618926525116,0.17161950469017,-0.304840117692947,-0.936813294887543,0.190712779760361,-0.288211405277252,-0.938383042812347,0.152910679578781,-0.329393893480301,-0.931728422641754,0.146642759442329,-0.183286741375923,-0.97206062078476,0.239714294672012,0.0482093840837479,-0.969645738601685,0.247343927621841,-0.0139910727739334,-0.968826651573181,0.159360319375992,-0.342944145202637,-0.925739407539368,0.146642759442329,-0.183286741375923,-0.97206062078476,0.17161950469017,-0.304840117692947,-0.936813294887543,0.337253570556641,0.0779368281364441,-0.938182175159454,0.309636771678925,0.17242993414402,-0.935089766979218,0.239714294672012,0.0482093840837479,-0.969645738601685,0.337253570556641,0.0779368281364441,-0.938182175159454,0.313572883605957,0.12318380177021,-0.941540062427521,0.309636771678925,0.17242993414402,-0.935089766979218,0.337253570556641,0.0779368281364441,-0.938182175159454,0.349281460046768,-0.0874019786715508,-0.932932615280151,0.313572883605957,0.12318380177021,-0.941540062427521,0.260173827409744,-0.239460632205009,-0.935397267341614,0.349281460046768,-0.0874019786715508,-0.932932615280151,0.398825585842133,-0.205615982413292,-0.893677830696106,0.14417576789856,-0.306128829717636,-0.941009223461151,0.260173827409744,-0.239460632205009,-0.935397267341614,0.347421288490295,-0.252218931913376,-0.903152227401733,-0.24129618704319,0.466776669025421,-0.850820541381836,-0.236592754721642,0.596383631229401,-0.767039954662323,-0.249696716666222,0.470051527023315,-0.846583127975464,-0.136923179030418,0.468431830406189,-0.872824907302856,-0.186458796262741,0.310052663087845,-0.932255506515503,-0.249696716666222,0.470051527023315,-0.846583127975464,-0.24129618704319,0.466776669025421,-0.850820541381836, +-0.0549623258411884,0.35416054725647,-0.933568060398102,-0.124915987253189,0.520010054111481,-0.844976544380188,0.0357264578342438,0.351837515830994,-0.935379028320313,-0.0731359645724297,0.335758447647095,-0.939104557037354,-0.0425931662321091,0.442556411027908,-0.895728528499603,0.0357264578342438,0.351837515830994,-0.935379028320313,0.00298696779645979,0.341891288757324,-0.939734697341919,0.078516848385334,0.309287309646606,-0.947721660137177,0.0177049394696951,0.290162295103073,-0.95681357383728,0.0409058220684528,0.253252863883972,-0.966534852981567,0.078516848385334,0.309287309646606,-0.947721660137177,0.0277534034103155,0.212163135409355,-0.976840019226074,-0.0131569914519787,0.182900503277779,-0.983043313026428,0.0409058220684528,0.253252863883972,-0.966534852981567,-0.0131569914519787,0.182900503277779,-0.983043313026428,-0.0566795095801353,0.408536553382874,-0.910980343818665,-0.110248237848282,0.381530463695526,-0.917757987976074,-0.110248237848282,0.381530463695526,-0.917757987976074,-0.0566795095801353,0.408536553382874,-0.910980343818665,-0.162926182150841,0.723179757595062,-0.671167612075806,-0.0731359645724297,0.335758447647095,-0.939104557037354,-0.136923179030418,0.468431830406189,-0.872824907302856,-0.0425931662321091,0.442556411027908,-0.895728528499603,-0.108799606561661,0.785006642341614,-0.609858274459839,-0.136306703090668,0.829452753067017,-0.541690349578857,-0.169128283858299,0.861721754074097,-0.478362947702408,-0.0434112437069416,0.68660044670105,-0.725737631320953,-0.0892985761165619,0.756637454032898,-0.647707879543304,-0.108799606561661,0.785006642341614,-0.609858274459839,-0.0434112437069416,0.68660044670105,-0.725737631320953,-0.0156828816980124,0.591728270053864,-0.805984795093536,-0.0677753686904907,0.694757759571075,-0.716043293476105,-0.181518375873566,0.829385280609131,-0.528366327285767,-0.232733979821205,0.902731537818909,-0.361815601587296,-0.162926182150841,0.723179757595062,-0.671167612075806,-0.182685762643814,0.90216988325119,-0.390788078308105,-0.232733979821205,0.902731537818909,-0.361815601587296, +-0.181518375873566,0.829385280609131,-0.528366327285767,-0.182685762643814,0.90216988325119,-0.390788078308105,-0.179586604237556,0.918919205665588,-0.351192235946655,-0.165754482150078,0.933537185192108,-0.317858040332794,-0.165754482150078,0.933537185192108,-0.317858040332794,-0.0724611133337021,0.9237020611763,-0.376196175813675,-0.13749735057354,0.899484395980835,-0.414755612611771,-0.0945821031928062,0.840175628662109,-0.534002780914307,-0.169128283858299,0.861721754074097,-0.478362947702408,-0.13749735057354,0.899484395980835,-0.414755612611771,0.154081135988235,0.395024120807648,-0.905657112598419,0.117639452219009,0.444786876440048,-0.887876927852631,0.21073853969574,0.364380389451981,-0.907092094421387,0.0719211921095848,0.511388897895813,-0.856334388256073,0.117639452219009,0.444786876440048,-0.887876927852631,-0.0156828816980124,0.591728270053864,-0.805984795093536,0.167896181344986,-0.491339564323425,-0.854632198810577,0.216990604996681,-0.211177453398705,-0.953057765960693,0.219833821058273,-0.499458253383636,-0.837982356548309,0.119929768145084,-0.184649989008904,-0.975459456443787,0.0907649546861649,-0.466830432415009,-0.879676580429077,0.100035578012466,-0.192615076899529,-0.976161956787109,0.144894301891327,-0.0228342954069376,-0.98918354511261,0.162767052650452,0.0616535618901253,-0.984736323356628,0.100035578012466,-0.192615076899529,-0.976161956787109,0.164365291595459,-0.0135819036513567,-0.986306011676788,0.178094565868378,0.0613820552825928,-0.982096970081329,0.144894301891327,-0.0228342954069376,-0.98918354511261,0.0907649546861649,-0.466830432415009,-0.879676580429077,0.119929768145084,-0.184649989008904,-0.975459456443787,0.0882231146097183,-0.552458703517914,-0.828858196735382,0.0896670818328857,-0.50087434053421,-0.860862672328949,0.113790825009346,-0.702507376670837,-0.702520370483398,0.0882231146097183,-0.552458703517914,-0.828858196735382,0.216990604996681,-0.211177453398705,-0.953057765960693,0.164365291595459,-0.0135819036513567,-0.986306011676788,0.176001712679863,-0.21756748855114,-0.960045695304871, +-0.612328946590424,-0.650970935821533,-0.448653608560562,-0.586689412593842,-0.657892405986786,-0.472200125455856,-0.607711732387543,-0.628022134304047,-0.48608073592186,-0.568624377250671,-0.7177814245224,-0.401816040277481,-0.599853873252869,-0.608361661434174,-0.51968377828598,-0.586689412593842,-0.657892405986786,-0.472200125455856,-0.612328946590424,-0.650970935821533,-0.448653608560562,-0.580812454223633,-0.728979885578156,-0.362277746200562,-0.582149684429169,-0.705786645412445,-0.40369126200676,-0.47293758392334,-0.790754914283752,-0.388634353876114,-0.392205953598022,-0.746313333511353,-0.537764549255371,-0.508258581161499,-0.688708305358887,-0.517062723636627,-0.472578227519989,-0.710325717926025,-0.521638751029968,-0.392205953598022,-0.746313333511353,-0.537764549255371,-0.427335977554321,-0.717525541782379,-0.550037205219269,-0.47293758392334,-0.790754914283752,-0.388634353876114,-0.508258581161499,-0.688708305358887,-0.517062723636627,-0.568624377250671,-0.7177814245224,-0.401816040277481,-0.464652925729752,-0.633020222187042,-0.61917918920517,-0.576275169849396,-0.529509305953979,-0.622516512870789,-0.515371382236481,-0.654721438884735,-0.552930474281311,-0.55243843793869,-0.556738257408142,-0.620366096496582,-0.576275169849396,-0.529509305953979,-0.622516512870789,-0.641312956809998,-0.436628967523575,-0.630930006504059,-0.427335977554321,-0.717525541782379,-0.550037205219269,-0.464652925729752,-0.633020222187042,-0.61917918920517,-0.515371382236481,-0.654721438884735,-0.552930474281311,-0.568155169487,-0.463473439216614,-0.67999404668808,-0.641312956809998,-0.436628967523575,-0.630930006504059,-0.557384729385376,-0.390330791473389,-0.732778251171112,-0.522809684276581,-0.308404862880707,-0.794705092906952,-0.557384729385376,-0.390330791473389,-0.732778251171112,-0.608957707881927,-0.392789870500565,-0.689120054244995,-0.565968930721283,-0.181814298033714,-0.804128468036652,-0.500027298927307,-0.020368529483676,-0.865769863128662,-0.430403918027878,-0.101413153111935,-0.896921217441559,-0.664524137973785,-0.361330419778824,-0.654100775718689, +-0.565968930721283,-0.181814298033714,-0.804128468036652,-0.522809684276581,-0.308404862880707,-0.794705092906952,-0.419830054044724,0.0689003765583038,-0.904983580112457,-0.402865350246429,0.0212525073438883,-0.915012419223785,-0.500027298927307,-0.020368529483676,-0.865769863128662,-0.349121659994125,0.0823694244027138,-0.933450162410736,-0.402865350246429,0.0212525073438883,-0.915012419223785,-0.419830054044724,0.0689003765583038,-0.904983580112457,-0.349121659994125,0.0823694244027138,-0.933450162410736,-0.347929745912552,0.122919909656048,-0.92942750453949,-0.371778696775436,0.0268321577459574,-0.92793345451355,-0.373894453048706,0.0381467454135418,-0.926686346530914,-0.347929745912552,0.122919909656048,-0.92942750453949,-0.425377279520035,0.11681279540062,-0.897445738315582,-0.464676141738892,0.0867270529270172,-0.881223201751709,-0.307648956775665,0.0791756063699722,-0.948199987411499,-0.425377279520035,0.11681279540062,-0.897445738315582,-0.413708835840225,0.147726595401764,-0.898343861103058,-0.209818542003632,0.160573855042458,-0.964464664459229,-0.269870609045029,0.193161681294441,-0.943323016166687,-0.347180724143982,0.139625310897827,-0.927345752716064,-0.205834597349167,0.253509312868118,-0.945179879665375,-0.179790511727333,0.116608709096909,-0.976769030094147,-0.205834597349167,0.253509312868118,-0.945179879665375,-0.269870609045029,0.193161681294441,-0.943323016166687,-0.209818542003632,0.160573855042458,-0.964464664459229,-0.347180724143982,0.139625310897827,-0.927345752716064,-0.307648956775665,0.0791756063699722,-0.948199987411499,-0.464676141738892,0.0867270529270172,-0.881223201751709,-0.383603483438492,0.106398463249207,-0.917348146438599,-0.440823763608933,0.264568120241165,-0.857716739177704,-0.532815098762512,0.170692518353462,-0.828837692737579,-0.440823763608933,0.264568120241165,-0.857716739177704,-0.383487701416016,0.30272963643074,-0.872520387172699,-0.433412045240402,0.327434569597244,-0.839607357978821,-0.383487701416016,0.30272963643074,-0.872520387172699,-0.464508533477783,0.316672146320343,-0.827012956142426, +-0.433412045240402,0.327434569597244,-0.839607357978821,-0.383603483438492,0.106398463249207,-0.917348146438599,-0.532815098762512,0.170692518353462,-0.828837692737579,-0.413708835840225,0.147726595401764,-0.898343861103058,-0.0697667300701141,0.31633073091507,-0.946080029010773,-0.0114165330305696,0.203702300786972,-0.978966236114502,-0.121284916996956,0.355485886335373,-0.926779210567474,-0.0789343193173409,0.346102476119995,-0.93487024307251,-0.154478460550308,0.419829308986664,-0.894359886646271,-0.121284916996956,0.355485886335373,-0.926779210567474,0.0476257130503654,0.255216211080551,-0.965710282325745,0.0820537209510803,0.175892859697342,-0.980983555316925,0.126176208257675,0.197150468826294,-0.972219705581665,-0.0990727096796036,0.406161665916443,-0.908414661884308,0.0476257130503654,0.255216211080551,-0.965710282325745,-0.0697667300701141,0.31633073091507,-0.946080029010773,0.0573345869779587,0.157160013914108,-0.985907375812531,-0.0141257233917713,0.178844287991524,-0.983775913715363,-0.0743647664785385,0.220299571752548,-0.972593367099762,0.0573345869779587,0.157160013914108,-0.985907375812531,0.126176208257675,0.197150468826294,-0.972219705581665,0.0820537209510803,0.175892859697342,-0.980983555316925,-0.100152716040611,0.218561753630638,-0.970669806003571,-0.0141257233917713,0.178844287991524,-0.983775913715363,0.00392824551090598,0.285216242074966,-0.958455085754395,-0.100152716040611,0.218561753630638,-0.970669806003571,0.00392824551090598,0.285216242074966,-0.958455085754395,-0.0549623258411884,0.35416054725647,-0.933568060398102,-0.105681605637074,0.416204959154129,-0.903108358383179,-0.109095923602581,0.409264117479324,-0.905870258808136,-0.0789343193173409,0.346102476119995,-0.93487024307251,-0.37657368183136,0.344022035598755,-0.860140144824982,-0.464508533477783,0.316672146320343,-0.827012956142426,-0.383487701416016,0.30272963643074,-0.872520387172699,-0.37657368183136,0.344022035598755,-0.860140144824982,-0.243367597460747,0.415459662675858,-0.876450419425964,-0.307180672883987,0.377396523952484,-0.873619973659515, +-0.243367597460747,0.415459662675858,-0.876450419425964,-0.193781271576881,0.439527779817581,-0.877076983451843,-0.307180672883987,0.377396523952484,-0.873619973659515,-0.105681605637074,0.416204959154129,-0.903108358383179,-0.182844817638397,0.351407587528229,-0.918194055557251,-0.193781271576881,0.439527779817581,-0.877076983451843,0.21365749835968,0.211509227752686,-0.953736960887909,0.145933017134666,0.30651667714119,-0.940612018108368,0.12570196390152,0.255946844816208,-0.958483219146729,0.21365749835968,0.211509227752686,-0.953736960887909,0.249543130397797,0.343333125114441,-0.905455946922302,0.236797660589218,0.356060951948166,-0.903962016105652,0.236797660589218,0.356060951948166,-0.903962016105652,0.244292229413986,0.357290357351303,-0.901479244232178,0.21073853969574,0.364380389451981,-0.907092094421387,0.324541479349136,-0.0907768905162811,-0.941505312919617,0.314336985349655,-0.145356297492981,-0.93811708688736,0.379781633615494,-0.121652387082577,-0.917042255401611,0.276734888553619,0.0848634392023087,-0.957191646099091,0.132335677742958,0.0798664540052414,-0.987982034683228,0.20355686545372,0.294853687286377,-0.933609008789063,0.20355686545372,0.294853687286377,-0.933609008789063,0.12570196390152,0.255946844816208,-0.958483219146729,0.140983119606972,0.301708579063416,-0.942918658256531,0.324541479349136,-0.0907768905162811,-0.941505312919617,0.292626708745956,-0.108480118215084,-0.950053453445435,0.314336985349655,-0.145356297492981,-0.93811708688736,0.433716982603073,0.128476217389107,-0.891842663288116,0.292626708745956,-0.108480118215084,-0.950053453445435,0.276734888553619,0.0848634392023087,-0.957191646099091,0.28316941857338,-0.291367322206497,-0.913739562034607,0.14417576789856,-0.306128829717636,-0.941009223461151,0.347421288490295,-0.252218931913376,-0.903152227401733,0.28316941857338,-0.291367322206497,-0.913739562034607,0.209030464291573,-0.341909229755402,-0.916190028190613,0.0614541359245777,-0.388991385698318,-0.91918933391571,0.161399260163307,-0.650695264339447,-0.741987645626068,0.113790825009346,-0.702507376670837,-0.702520370483398, +0.245824873447418,-0.654888689517975,-0.714626312255859,0.305929660797119,-0.489715456962585,-0.816446959972382,0.302126944065094,-0.524687528610229,-0.795878231525421,0.245824873447418,-0.654888689517975,-0.714626312255859,0.141222402453423,-0.281442850828171,-0.949129104614258,0.0209509804844856,-0.282879412174225,-0.958926558494568,0.230433955788612,-0.165697336196899,-0.958876669406891,0.305929660797119,-0.489715456962585,-0.816446959972382,0.258488923311234,-0.317893654108047,-0.912209928035736,0.302126944065094,-0.524687528610229,-0.795878231525421,0.258488923311234,-0.317893654108047,-0.912209928035736,0.0209509804844856,-0.282879412174225,-0.958926558494568,0.0624802559614182,-0.370503753423691,-0.926727116107941,0.209030464291573,-0.341909229755402,-0.916190028190613,0.296961337327957,-0.346627652645111,-0.8897545337677,0.141222402453423,-0.281442850828171,-0.949129104614258,0.16492223739624,-0.140444800257683,-0.976256012916565,0.136690735816956,-0.218618050217628,-0.96618926525116,0.140836209058762,-0.107257127761841,-0.984205782413483,0.379781633615494,-0.121652387082577,-0.917042255401611,0.314336985349655,-0.145356297492981,-0.93811708688736,0.276727467775345,-0.0811169371008873,-0.957518577575684,0.16891773045063,-0.0266935732215643,-0.985268592834473,0.140836209058762,-0.107257127761841,-0.984205782413483,0.201977998018265,0.0147587107494473,-0.979278802871704,0.201977998018265,0.0147587107494473,-0.979278802871704,0.276727467775345,-0.0811169371008873,-0.957518577575684,0.325111150741577,-0.0594854652881622,-0.943803012371063,0.190712779760361,-0.288211405277252,-0.938383042812347,0.136690735816956,-0.218618050217628,-0.96618926525116,0.16492223739624,-0.140444800257683,-0.976256012916565,0.152910679578781,-0.329393893480301,-0.931728422641754,0.190712779760361,-0.288211405277252,-0.938383042812347,0.183495938777924,-0.24727138876915,-0.951412618160248,0.152910679578781,-0.329393893480301,-0.931728422641754,0.197154998779297,-0.325084179639816,-0.92490541934967,0.17161950469017,-0.304840117692947,-0.936813294887543, +0.219916179776192,-0.193346664309502,-0.956166207790375,0.239714294672012,0.0482093840837479,-0.969645738601685,0.146642759442329,-0.183286741375923,-0.97206062078476,0.219916179776192,-0.193346664309502,-0.956166207790375,0.146642759442329,-0.183286741375923,-0.97206062078476,0.159360319375992,-0.342944145202637,-0.925739407539368,0.197154998779297,-0.325084179639816,-0.92490541934967,0.159360319375992,-0.342944145202637,-0.925739407539368,0.17161950469017,-0.304840117692947,-0.936813294887543,0.30807363986969,-0.0241822469979525,-0.95105504989624,0.337253570556641,0.0779368281364441,-0.938182175159454,0.239714294672012,0.0482093840837479,-0.969645738601685,0.349281460046768,-0.0874019786715508,-0.932932615280151,0.337253570556641,0.0779368281364441,-0.938182175159454,0.398825585842133,-0.205615982413292,-0.893677830696106,0.347421288490295,-0.252218931913376,-0.903152227401733,0.260173827409744,-0.239460632205009,-0.935397267341614,0.398825585842133,-0.205615982413292,-0.893677830696106,-0.124915987253189,0.520010054111481,-0.844976544380188,-0.236592754721642,0.596383631229401,-0.767039954662323,-0.24129618704319,0.466776669025421,-0.850820541381836,-0.249696716666222,0.470051527023315,-0.846583127975464,-0.236592754721642,0.596383631229401,-0.767039954662323,-0.215158700942993,0.586328983306885,-0.780976891517639,-0.136923179030418,0.468431830406189,-0.872824907302856,-0.249696716666222,0.470051527023315,-0.846583127975464,-0.215158700942993,0.586328983306885,-0.780976891517639,0.0528507232666016,0.440501600503922,-0.896194756031036,-0.124915987253189,0.520010054111481,-0.844976544380188,-0.0549623258411884,0.35416054725647,-0.933568060398102,-0.0425931662321091,0.442556411027908,-0.895728528499603,0.00298696779645979,0.341891288757324,-0.939734697341919,0.0357264578342438,0.351837515830994,-0.935379028320313,0.078516848385334,0.309287309646606,-0.947721660137177,0.00298696779645979,0.341891288757324,-0.939734697341919,0.0177049394696951,0.290162295103073,-0.95681357383728,0.0177049394696951,0.290162295103073,-0.95681357383728, +0.027322543784976,0.262719929218292,-0.964485168457031,0.0409058220684528,0.253252863883972,-0.966534852981567,0.0277534034103155,0.212163135409355,-0.976840019226074,0.0335786305367947,0.288045853376389,-0.957027673721313,-0.0131569914519787,0.182900503277779,-0.983043313026428,0.0277534034103155,0.212163135409355,-0.976840019226074,0.0409058220684528,0.253252863883972,-0.966534852981567,0.0817417576909065,0.239845469594002,-0.967363595962524,-0.0566795095801353,0.408536553382874,-0.910980343818665,-0.0131569914519787,0.182900503277779,-0.983043313026428,0.0335786305367947,0.288045853376389,-0.957027673721313,-0.0848575159907341,0.569467484951019,-0.817622065544128,-0.162926182150841,0.723179757595062,-0.671167612075806,-0.0566795095801353,0.408536553382874,-0.910980343818665,-0.136923179030418,0.468431830406189,-0.872824907302856,-0.165270790457726,0.555269658565521,-0.815083503723145,-0.0425931662321091,0.442556411027908,-0.895728528499603,-0.0945821031928062,0.840175628662109,-0.534002780914307,-0.108799606561661,0.785006642341614,-0.609858274459839,-0.169128283858299,0.861721754074097,-0.478362947702408,-0.00504830339923501,0.767121016979218,-0.641482412815094,-0.0434112437069416,0.68660044670105,-0.725737631320953,-0.108799606561661,0.785006642341614,-0.609858274459839,0.0719211921095848,0.511388897895813,-0.856334388256073,-0.0156828816980124,0.591728270053864,-0.805984795093536,-0.0434112437069416,0.68660044670105,-0.725737631320953,-0.181518375873566,0.829385280609131,-0.528366327285767,-0.162926182150841,0.723179757595062,-0.671167612075806,-0.0848575159907341,0.569467484951019,-0.817622065544128,-0.182685762643814,0.90216988325119,-0.390788078308105,-0.181518375873566,0.829385280609131,-0.528366327285767,-0.0498189516365528,0.650014579296112,-0.758286774158478,-0.182685762643814,0.90216988325119,-0.390788078308105,-0.121650196611881,0.739583134651184,-0.661980271339417,-0.179586604237556,0.918919205665588,-0.351192235946655,-0.179586604237556,0.918919205665588,-0.351192235946655,-0.107819393277168,0.924157083034515,-0.366481244564056, +-0.165754482150078,0.933537185192108,-0.317858040332794,-0.165754482150078,0.933537185192108,-0.317858040332794,-0.107819393277168,0.924157083034515,-0.366481244564056,-0.0724611133337021,0.9237020611763,-0.376196175813675,-0.0724611133337021,0.9237020611763,-0.376196175813675,-0.0316842421889305,0.886411309242249,-0.461812436580658,-0.13749735057354,0.899484395980835,-0.414755612611771,-0.0945821031928062,0.840175628662109,-0.534002780914307,-0.13749735057354,0.899484395980835,-0.414755612611771,-0.0316842421889305,0.886411309242249,-0.461812436580658,0.139899477362633,0.343817323446274,-0.928556740283966,0.21073853969574,0.364380389451981,-0.907092094421387,0.117639452219009,0.444786876440048,-0.887876927852631,0.139899477362633,0.343817323446274,-0.928556740283966,0.117639452219009,0.444786876440048,-0.887876927852631,0.0719211921095848,0.511388897895813,-0.856334388256073,0.216990604996681,-0.211177453398705,-0.953057765960693,0.188089981675148,-0.608807981014252,-0.770697712898254,0.219833821058273,-0.499458253383636,-0.837982356548309,0.0907649546861649,-0.466830432415009,-0.879676580429077,0.120566882193089,-0.466432332992554,-0.876301527023315,0.100035578012466,-0.192615076899529,-0.976161956787109,0.100035578012466,-0.192615076899529,-0.976161956787109,0.0701852962374687,-0.249252736568451,-0.96589183807373,0.144894301891327,-0.0228342954069376,-0.98918354511261,0.144894301891327,-0.0228342954069376,-0.98918354511261,0.0938257724046707,-0.139961630105972,-0.985701441764832,0.164365291595459,-0.0135819036513567,-0.986306011676788,0.0907649546861649,-0.466830432415009,-0.879676580429077,0.0882231146097183,-0.552458703517914,-0.828858196735382,0.161399260163307,-0.650695264339447,-0.741987645626068,0.161399260163307,-0.650695264339447,-0.741987645626068,0.0882231146097183,-0.552458703517914,-0.828858196735382,0.113790825009346,-0.702507376670837,-0.702520370483398,0.176001712679863,-0.21756748855114,-0.960045695304871,0.117946736514568,-0.372373521327972,-0.920557677745819,0.216990604996681,-0.211177453398705,-0.953057765960693, +-0.612328946590424,-0.650970935821533,-0.448653608560562,-0.588227868080139,-0.64176070690155,-0.492068082094193,-0.586689412593842,-0.657892405986786,-0.472200125455856,-0.568624377250671,-0.7177814245224,-0.401816040277481,-0.586689412593842,-0.657892405986786,-0.472200125455856,-0.527731001377106,-0.784909963607788,-0.324678719043732,-0.612328946590424,-0.650970935821533,-0.448653608560562,-0.582149684429169,-0.705786645412445,-0.40369126200676,-0.588227868080139,-0.64176070690155,-0.492068082094193,-0.427772760391235,-0.757200419902802,-0.493617117404938,-0.392205953598022,-0.746313333511353,-0.537764549255371,-0.47293758392334,-0.790754914283752,-0.388634353876114,-0.392205953598022,-0.746313333511353,-0.537764549255371,-0.414899080991745,-0.677139461040497,-0.607734084129334,-0.427335977554321,-0.717525541782379,-0.550037205219269,-0.47293758392334,-0.790754914283752,-0.388634353876114,-0.568624377250671,-0.7177814245224,-0.401816040277481,-0.527731001377106,-0.784909963607788,-0.324678719043732,-0.45529368519783,-0.56896311044693,-0.684827327728271,-0.576275169849396,-0.529509305953979,-0.622516512870789,-0.464652925729752,-0.633020222187042,-0.61917918920517,-0.641312956809998,-0.436628967523575,-0.630930006504059,-0.576275169849396,-0.529509305953979,-0.622516512870789,-0.700233936309814,-0.405507653951645,-0.587567746639252,-0.414899080991745,-0.677139461040497,-0.607734084129334,-0.464652925729752,-0.633020222187042,-0.61917918920517,-0.427335977554321,-0.717525541782379,-0.550037205219269,-0.641312956809998,-0.436628967523575,-0.630930006504059,-0.608957707881927,-0.392789870500565,-0.689120054244995,-0.557384729385376,-0.390330791473389,-0.732778251171112,-0.664524137973785,-0.361330419778824,-0.654100775718689,-0.522809684276581,-0.308404862880707,-0.794705092906952,-0.608957707881927,-0.392789870500565,-0.689120054244995,-0.565968930721283,-0.181814298033714,-0.804128468036652,-0.675307929515839,-0.139233782887459,-0.724274098873138,-0.500027298927307,-0.020368529483676,-0.865769863128662,-0.664524137973785,-0.361330419778824,-0.654100775718689, +-0.693203032016754,-0.276615470647812,-0.665547370910645,-0.565968930721283,-0.181814298033714,-0.804128468036652,-0.500027298927307,-0.020368529483676,-0.865769863128662,-0.519901692867279,0.0361686982214451,-0.85345995426178,-0.419830054044724,0.0689003765583038,-0.904983580112457,-0.378666311502457,0.103722639381886,-0.91970282793045,-0.349121659994125,0.0823694244027138,-0.933450162410736,-0.419830054044724,0.0689003765583038,-0.904983580112457,-0.287255883216858,0.119601152837276,-0.950357556343079,-0.347929745912552,0.122919909656048,-0.92942750453949,-0.349121659994125,0.0823694244027138,-0.933450162410736,-0.347929745912552,0.122919909656048,-0.92942750453949,-0.392987102270126,0.114464700222015,-0.912391841411591,-0.425377279520035,0.11681279540062,-0.897445738315582,-0.464676141738892,0.0867270529270172,-0.881223201751709,-0.425377279520035,0.11681279540062,-0.897445738315582,-0.504636406898499,0.0799822136759758,-0.859618961811066,-0.353757053613663,-0.0133998282253742,-0.935241341590881,-0.413708835840225,0.147726595401764,-0.898343861103058,-0.269870609045029,0.193161681294441,-0.943323016166687,-0.301571577787399,0.241530492901802,-0.922343492507935,-0.205834597349167,0.253509312868118,-0.945179879665375,-0.347180724143982,0.139625310897827,-0.927345752716064,-0.225054726004601,0.267115205526352,-0.937016427516937,-0.269870609045029,0.193161681294441,-0.943323016166687,-0.205834597349167,0.253509312868118,-0.945179879665375,-0.347180724143982,0.139625310897827,-0.927345752716064,-0.464676141738892,0.0867270529270172,-0.881223201751709,-0.452805399894714,0.113697819411755,-0.884330093860626,-0.440823763608933,0.264568120241165,-0.857716739177704,-0.383603483438492,0.106398463249207,-0.917348146438599,-0.264297991991043,0.185808911919594,-0.946372807025909,-0.440823763608933,0.264568120241165,-0.857716739177704,-0.264297991991043,0.185808911919594,-0.946372807025909,-0.383487701416016,0.30272963643074,-0.872520387172699,-0.383603483438492,0.106398463249207,-0.917348146438599,-0.413708835840225,0.147726595401764,-0.898343861103058, +-0.353757053613663,-0.0133998282253742,-0.935241341590881,-0.0697667300701141,0.31633073091507,-0.946080029010773,-0.121284916996956,0.355485886335373,-0.926779210567474,-0.0990727096796036,0.406161665916443,-0.908414661884308,-0.0789343193173409,0.346102476119995,-0.93487024307251,-0.109095923602581,0.409264117479324,-0.905870258808136,-0.154478460550308,0.419829308986664,-0.894359886646271,-0.154478460550308,0.419829308986664,-0.894359886646271,-0.0990727096796036,0.406161665916443,-0.908414661884308,-0.121284916996956,0.355485886335373,-0.926779210567474,0.0476257130503654,0.255216211080551,-0.965710282325745,0.0145114464685321,0.29774209856987,-0.954536020755768,0.0820537209510803,0.175892859697342,-0.980983555316925,0.0476257130503654,0.255216211080551,-0.965710282325745,-0.0990727096796036,0.406161665916443,-0.908414661884308,0.0145114464685321,0.29774209856987,-0.954536020755768,0.0573345869779587,0.157160013914108,-0.985907375812531,0.0820537209510803,0.175892859697342,-0.980983555316925,-0.0141257233917713,0.178844287991524,-0.983775913715363,0.00392824551090598,0.285216242074966,-0.958455085754395,-0.0141257233917713,0.178844287991524,-0.983775913715363,-0.0570322759449482,0.321554005146027,-0.94517195224762,0.194215431809425,0.403068363666534,-0.894324421882629,-0.0549623258411884,0.35416054725647,-0.933568060398102,0.00392824551090598,0.285216242074966,-0.958455085754395,-0.105681605637074,0.416204959154129,-0.903108358383179,-0.140770807862282,0.439647167921066,-0.88707035779953,-0.109095923602581,0.409264117479324,-0.905870258808136,-0.37657368183136,0.344022035598755,-0.860140144824982,-0.383487701416016,0.30272963643074,-0.872520387172699,-0.260393768548965,0.232583001255989,-0.937069952487946,-0.37657368183136,0.344022035598755,-0.860140144824982,-0.236349701881409,0.278305292129517,-0.930959105491638,-0.243367597460747,0.415459662675858,-0.876450419425964,-0.243367597460747,0.415459662675858,-0.876450419425964,-0.140770807862282,0.439647167921066,-0.88707035779953,-0.193781271576881,0.439527779817581,-0.877076983451843, +-0.105681605637074,0.416204959154129,-0.903108358383179,-0.193781271576881,0.439527779817581,-0.877076983451843,-0.140770807862282,0.439647167921066,-0.88707035779953,0.21365749835968,0.211509227752686,-0.953736960887909,0.236797660589218,0.356060951948166,-0.903962016105652,0.145933017134666,0.30651667714119,-0.940612018108368,0.12570196390152,0.255946844816208,-0.958483219146729,0.145933017134666,0.30651667714119,-0.940612018108368,0.140983119606972,0.301708579063416,-0.942918658256531,0.236797660589218,0.356060951948166,-0.903962016105652,0.21073853969574,0.364380389451981,-0.907092094421387,0.139899477362633,0.343817323446274,-0.928556740283966,0.20355686545372,0.294853687286377,-0.933609008789063,0.363920360803604,0.296147286891937,-0.883096098899841,0.276734888553619,0.0848634392023087,-0.957191646099091,0.20355686545372,0.294853687286377,-0.933609008789063,0.140983119606972,0.301708579063416,-0.942918658256531,0.167476877570152,0.29023677110672,-0.942185640335083,0.292626708745956,-0.108480118215084,-0.950053453445435,0.334597855806351,-0.174845203757286,-0.925998508930206,0.314336985349655,-0.145356297492981,-0.93811708688736,0.452615916728973,-0.0783129706978798,-0.888260006904602,0.292626708745956,-0.108480118215084,-0.950053453445435,0.433716982603073,0.128476217389107,-0.891842663288116,0.433716982603073,0.128476217389107,-0.891842663288116,0.276734888553619,0.0848634392023087,-0.957191646099091,0.363920360803604,0.296147286891937,-0.883096098899841,0.347421288490295,-0.252218931913376,-0.903152227401733,0.449225246906281,-0.229957297444344,-0.86331695318222,0.28316941857338,-0.291367322206497,-0.913739562034607,0.28316941857338,-0.291367322206497,-0.913739562034607,0.401124596595764,-0.316324502229691,-0.859673023223877,0.209030464291573,-0.341909229755402,-0.916190028190613,0.304047852754593,-0.62558114528656,-0.71847265958786,0.161399260163307,-0.650695264339447,-0.741987645626068,0.245824873447418,-0.654888689517975,-0.714626312255859,0.245824873447418,-0.654888689517975,-0.714626312255859,0.302126944065094,-0.524687528610229,-0.795878231525421, +0.304047852754593,-0.62558114528656,-0.71847265958786,0.141222402453423,-0.281442850828171,-0.949129104614258,-0.0480092763900757,-0.253747254610062,-0.966078341007233,0.0209509804844856,-0.282879412174225,-0.958926558494568,0.187914669513702,-0.438550055027008,-0.878841161727905,0.302126944065094,-0.524687528610229,-0.795878231525421,0.258488923311234,-0.317893654108047,-0.912209928035736,0.0209509804844856,-0.282879412174225,-0.958926558494568,0.00703422352671623,-0.264834880828857,-0.964268088340759,0.0624802559614182,-0.370503753423691,-0.926727116107941,0.187914669513702,-0.438550055027008,-0.878841161727905,0.258488923311234,-0.317893654108047,-0.912209928035736,0.0624802559614182,-0.370503753423691,-0.926727116107941,0.209030464291573,-0.341909229755402,-0.916190028190613,0.401124596595764,-0.316324502229691,-0.859673023223877,0.296961337327957,-0.346627652645111,-0.8897545337677,0.137848630547524,-0.277114301919937,-0.950897097587585,0.141222402453423,-0.281442850828171,-0.949129104614258,0.296961337327957,-0.346627652645111,-0.8897545337677,0.16492223739624,-0.140444800257683,-0.976256012916565,0.140836209058762,-0.107257127761841,-0.984205782413483,0.16891773045063,-0.0266935732215643,-0.985268592834473,0.325111150741577,-0.0594854652881622,-0.943803012371063,0.276727467775345,-0.0811169371008873,-0.957518577575684,0.314336985349655,-0.145356297492981,-0.93811708688736,0.249140277504921,0.0712746381759644,-0.965841054916382,0.16891773045063,-0.0266935732215643,-0.985268592834473,0.201977998018265,0.0147587107494473,-0.979278802871704,0.325111150741577,-0.0594854652881622,-0.943803012371063,0.317920714616776,0.038457453250885,-0.947336971759796,0.201977998018265,0.0147587107494473,-0.979278802871704,0.16492223739624,-0.140444800257683,-0.976256012916565,0.204232007265091,-0.124635003507137,-0.970955848693848,0.190712779760361,-0.288211405277252,-0.938383042812347,0.183495938777924,-0.24727138876915,-0.951412618160248,0.190712779760361,-0.288211405277252,-0.938383042812347,0.204232007265091,-0.124635003507137,-0.970955848693848, +0.183495938777924,-0.24727138876915,-0.951412618160248,0.17227666079998,-0.203979104757309,-0.963697671890259,0.152910679578781,-0.329393893480301,-0.931728422641754,0.152910679578781,-0.329393893480301,-0.931728422641754,0.17227666079998,-0.203979104757309,-0.963697671890259,0.197154998779297,-0.325084179639816,-0.92490541934967,0.239714294672012,0.0482093840837479,-0.969645738601685,0.219916179776192,-0.193346664309502,-0.956166207790375,0.279588162899017,-0.0248070824891329,-0.959799468517303,0.298101633787155,-0.358290374279022,-0.884739100933075,0.219916179776192,-0.193346664309502,-0.956166207790375,0.159360319375992,-0.342944145202637,-0.925739407539368,0.197154998779297,-0.325084179639816,-0.92490541934967,0.298101633787155,-0.358290374279022,-0.884739100933075,0.159360319375992,-0.342944145202637,-0.925739407539368,0.30807363986969,-0.0241822469979525,-0.95105504989624,0.398825585842133,-0.205615982413292,-0.893677830696106,0.337253570556641,0.0779368281364441,-0.938182175159454,0.30807363986969,-0.0241822469979525,-0.95105504989624,0.239714294672012,0.0482093840837479,-0.969645738601685,0.279588162899017,-0.0248070824891329,-0.959799468517303,0.347421288490295,-0.252218931913376,-0.903152227401733,0.398825585842133,-0.205615982413292,-0.893677830696106,0.449225246906281,-0.229957297444344,-0.86331695318222,-0.236592754721642,0.596383631229401,-0.767039954662323,-0.124915987253189,0.520010054111481,-0.844976544380188,-0.0931684449315071,0.52529639005661,-0.845803260803223,-0.24716117978096,0.637320280075073,-0.7298863530159,-0.215158700942993,0.586328983306885,-0.780976891517639,-0.236592754721642,0.596383631229401,-0.767039954662323,-0.165270790457726,0.555269658565521,-0.815083503723145,-0.136923179030418,0.468431830406189,-0.872824907302856,-0.215158700942993,0.586328983306885,-0.780976891517639,0.0528507232666016,0.440501600503922,-0.896194756031036,0.123962238430977,0.467680960893631,-0.875161528587341,-0.124915987253189,0.520010054111481,-0.844976544380188,-0.0549623258411884,0.35416054725647,-0.933568060398102, +0.194215431809425,0.403068363666534,-0.894324421882629,0.0528507232666016,0.440501600503922,-0.896194756031036,-0.070062980055809,0.438966780900955,-0.895767390727997,0.00298696779645979,0.341891288757324,-0.939734697341919,-0.0425931662321091,0.442556411027908,-0.895728528499603,0.0177049394696951,0.290162295103073,-0.95681357383728,0.00298696779645979,0.341891288757324,-0.939734697341919,-0.00897338055074215,0.322204172611237,-0.946627616882324,0.0177049394696951,0.290162295103073,-0.95681357383728,-0.00897338055074215,0.322204172611237,-0.946627616882324,0.027322543784976,0.262719929218292,-0.964485168457031,0.0409058220684528,0.253252863883972,-0.966534852981567,0.027322543784976,0.262719929218292,-0.964485168457031,0.0646988451480865,0.262118428945541,-0.962864398956299,0.0335786305367947,0.288045853376389,-0.957027673721313,0.0277534034103155,0.212163135409355,-0.976840019226074,0.0817417576909065,0.239845469594002,-0.967363595962524,0.0817417576909065,0.239845469594002,-0.967363595962524,0.0409058220684528,0.253252863883972,-0.966534852981567,0.0646988451480865,0.262118428945541,-0.962864398956299,-0.0848575159907341,0.569467484951019,-0.817622065544128,-0.0566795095801353,0.408536553382874,-0.910980343818665,0.0335786305367947,0.288045853376389,-0.957027673721313,-0.0968413650989532,0.522681057453156,-0.84701007604599,-0.0425931662321091,0.442556411027908,-0.895728528499603,-0.165270790457726,0.555269658565521,-0.815083503723145,-0.00504830339923501,0.767121016979218,-0.641482412815094,-0.108799606561661,0.785006642341614,-0.609858274459839,-0.0945821031928062,0.840175628662109,-0.534002780914307,-0.00504830339923501,0.767121016979218,-0.641482412815094,0.0106599824503064,0.70032924413681,-0.713740229606628,-0.0434112437069416,0.68660044670105,-0.725737631320953,-0.0434112437069416,0.68660044670105,-0.725737631320953,0.0534641183912754,0.612035751342773,-0.789020776748657,0.0719211921095848,0.511388897895813,-0.856334388256073,-0.0848575159907341,0.569467484951019,-0.817622065544128,-0.0498189516365528,0.650014579296112,-0.758286774158478, +-0.181518375873566,0.829385280609131,-0.528366327285767,-0.0498189516365528,0.650014579296112,-0.758286774158478,-0.121650196611881,0.739583134651184,-0.661980271339417,-0.182685762643814,0.90216988325119,-0.390788078308105,-0.174440875649452,0.756146907806396,-0.630723536014557,-0.179586604237556,0.918919205665588,-0.351192235946655,-0.121650196611881,0.739583134651184,-0.661980271339417,-0.107819393277168,0.924157083034515,-0.366481244564056,-0.179586604237556,0.918919205665588,-0.351192235946655,-0.174440875649452,0.756146907806396,-0.630723536014557,-0.0147653203457594,0.909152805805206,-0.416200697422028,-0.0724611133337021,0.9237020611763,-0.376196175813675,-0.107819393277168,0.924157083034515,-0.366481244564056,-0.0100112436339259,0.889629423618317,-0.456573367118835,-0.0316842421889305,0.886411309242249,-0.461812436580658,-0.0724611133337021,0.9237020611763,-0.376196175813675,-0.0945821031928062,0.840175628662109,-0.534002780914307,-0.0316842421889305,0.886411309242249,-0.461812436580658,0.010392876341939,0.833797872066498,-0.551971912384033,0.0719211921095848,0.511388897895813,-0.856334388256073,0.130036816000938,0.334672957658768,-0.93331903219223,0.139899477362633,0.343817323446274,-0.928556740283966,0.117946736514568,-0.372373521327972,-0.920557677745819,0.188089981675148,-0.608807981014252,-0.770697712898254,0.216990604996681,-0.211177453398705,-0.953057765960693,0.0907649546861649,-0.466830432415009,-0.879676580429077,0.161399260163307,-0.650695264339447,-0.741987645626068,0.120566882193089,-0.466432332992554,-0.876301527023315,0.100035578012466,-0.192615076899529,-0.976161956787109,0.120566882193089,-0.466432332992554,-0.876301527023315,0.0701852962374687,-0.249252736568451,-0.96589183807373,0.0938257724046707,-0.139961630105972,-0.985701441764832,0.144894301891327,-0.0228342954069376,-0.98918354511261,0.0701852962374687,-0.249252736568451,-0.96589183807373,0.0938257724046707,-0.139961630105972,-0.985701441764832,0.0668484568595886,-0.200863599777222,-0.977335691452026,0.164365291595459,-0.0135819036513567,-0.986306011676788, +0.117946736514568,-0.372373521327972,-0.920557677745819,0.176001712679863,-0.21756748855114,-0.960045695304871,0.126468554139137,-0.451952517032623,-0.88303142786026,-0.602417349815369,-0.644375681877136,-0.471034228801727,-0.586689412593842,-0.657892405986786,-0.472200125455856,-0.588227868080139,-0.64176070690155,-0.492068082094193,-0.563545167446136,-0.742355346679688,-0.362388253211975,-0.527731001377106,-0.784909963607788,-0.324678719043732,-0.586689412593842,-0.657892405986786,-0.472200125455856,-0.582149684429169,-0.705786645412445,-0.40369126200676,-0.657520592212677,-0.624908328056335,-0.420899271965027,-0.588227868080139,-0.64176070690155,-0.492068082094193,-0.427772760391235,-0.757200419902802,-0.493617117404938,-0.414899080991745,-0.677139461040497,-0.607734084129334,-0.392205953598022,-0.746313333511353,-0.537764549255371,-0.427772760391235,-0.757200419902802,-0.493617117404938,-0.47293758392334,-0.790754914283752,-0.388634353876114,-0.518419921398163,-0.77582836151123,-0.359626233577728,-0.47293758392334,-0.790754914283752,-0.388634353876114,-0.527731001377106,-0.784909963607788,-0.324678719043732,-0.518419921398163,-0.77582836151123,-0.359626233577728,-0.45529368519783,-0.56896311044693,-0.684827327728271,-0.55091404914856,-0.457742214202881,-0.697829186916351,-0.576275169849396,-0.529509305953979,-0.622516512870789,-0.45529368519783,-0.56896311044693,-0.684827327728271,-0.464652925729752,-0.633020222187042,-0.61917918920517,-0.414899080991745,-0.677139461040497,-0.607734084129334,-0.628354966640472,-0.381684601306915,-0.677854597568512,-0.700233936309814,-0.405507653951645,-0.587567746639252,-0.576275169849396,-0.529509305953979,-0.622516512870789,-0.72555273771286,-0.378881841897964,-0.574475109577179,-0.641312956809998,-0.436628967523575,-0.630930006504059,-0.700233936309814,-0.405507653951645,-0.587567746639252,-0.641312956809998,-0.436628967523575,-0.630930006504059,-0.697608470916748,-0.38596174120903,-0.603635549545288,-0.608957707881927,-0.392789870500565,-0.689120054244995,-0.608957707881927,-0.392789870500565,-0.689120054244995, +-0.697608470916748,-0.38596174120903,-0.603635549545288,-0.664524137973785,-0.361330419778824,-0.654100775718689,-0.565968930721283,-0.181814298033714,-0.804128468036652,-0.693203032016754,-0.276615470647812,-0.665547370910645,-0.675307929515839,-0.139233782887459,-0.724274098873138,-0.675307929515839,-0.139233782887459,-0.724274098873138,-0.635342061519623,-0.0242390260100365,-0.771850287914276,-0.500027298927307,-0.020368529483676,-0.865769863128662,-0.664524137973785,-0.361330419778824,-0.654100775718689,-0.688072383403778,-0.387955248355865,-0.613226771354675,-0.693203032016754,-0.276615470647812,-0.665547370910645,-0.635342061519623,-0.0242390260100365,-0.771850287914276,-0.519901692867279,0.0361686982214451,-0.85345995426178,-0.500027298927307,-0.020368529483676,-0.865769863128662,-0.419830054044724,0.0689003765583038,-0.904983580112457,-0.519901692867279,0.0361686982214451,-0.85345995426178,-0.491725116968155,0.0920320227742195,-0.865873217582703,-0.378666311502457,0.103722639381886,-0.91970282793045,-0.269335895776749,0.090817391872406,-0.958754539489746,-0.349121659994125,0.0823694244027138,-0.933450162410736,-0.419830054044724,0.0689003765583038,-0.904983580112457,-0.491725116968155,0.0920320227742195,-0.865873217582703,-0.378666311502457,0.103722639381886,-0.91970282793045,-0.287255883216858,0.119601152837276,-0.950357556343079,-0.261917978525162,0.101482272148132,-0.959739685058594,-0.347929745912552,0.122919909656048,-0.92942750453949,-0.269335895776749,0.090817391872406,-0.958754539489746,-0.287255883216858,0.119601152837276,-0.950357556343079,-0.349121659994125,0.0823694244027138,-0.933450162410736,-0.392987102270126,0.114464700222015,-0.912391841411591,-0.347929745912552,0.122919909656048,-0.92942750453949,-0.261917978525162,0.101482272148132,-0.959739685058594,-0.392987102270126,0.114464700222015,-0.912391841411591,-0.504636406898499,0.0799822136759758,-0.859618961811066,-0.425377279520035,0.11681279540062,-0.897445738315582,-0.452805399894714,0.113697819411755,-0.884330093860626,-0.464676141738892,0.0867270529270172,-0.881223201751709, +-0.504636406898499,0.0799822136759758,-0.859618961811066,-0.307123780250549,0.0907030776143074,-0.94733726978302,-0.353757053613663,-0.0133998282253742,-0.935241341590881,-0.269870609045029,0.193161681294441,-0.943323016166687,-0.301571577787399,0.241530492901802,-0.922343492507935,-0.225054726004601,0.267115205526352,-0.937016427516937,-0.205834597349167,0.253509312868118,-0.945179879665375,-0.347180724143982,0.139625310897827,-0.927345752716064,-0.452805399894714,0.113697819411755,-0.884330093860626,-0.301571577787399,0.241530492901802,-0.922343492507935,-0.307123780250549,0.0907030776143074,-0.94733726978302,-0.269870609045029,0.193161681294441,-0.943323016166687,-0.225054726004601,0.267115205526352,-0.937016427516937,-0.383603483438492,0.106398463249207,-0.917348146438599,-0.157876878976822,0.0799566805362701,-0.984216272830963,-0.264297991991043,0.185808911919594,-0.946372807025909,-0.260393768548965,0.232583001255989,-0.937069952487946,-0.383487701416016,0.30272963643074,-0.872520387172699,-0.264297991991043,0.185808911919594,-0.946372807025909,-0.383603483438492,0.106398463249207,-0.917348146438599,-0.353757053613663,-0.0133998282253742,-0.935241341590881,-0.255299121141434,-0.00552257942035794,-0.966846287250519,-0.0245419591665268,0.357384532690048,-0.933634757995605,-0.154478460550308,0.419829308986664,-0.894359886646271,-0.109095923602581,0.409264117479324,-0.905870258808136,-0.0990727096796036,0.406161665916443,-0.908414661884308,-0.154478460550308,0.419829308986664,-0.894359886646271,-0.0951241627335548,0.462966054677963,-0.881256878376007,0.0145114464685321,0.29774209856987,-0.954536020755768,0.0145196048542857,0.262432843446732,-0.964840948581696,0.0820537209510803,0.175892859697342,-0.980983555316925,-0.0990727096796036,0.406161665916443,-0.908414661884308,-0.0451208129525185,0.377859175205231,-0.924762904644012,0.0145114464685321,0.29774209856987,-0.954536020755768,0.0145196048542857,0.262432843446732,-0.964840948581696,-0.0141257233917713,0.178844287991524,-0.983775913715363,0.0820537209510803,0.175892859697342,-0.980983555316925, +0.0145196048542857,0.262432843446732,-0.964840948581696,-0.0570322759449482,0.321554005146027,-0.94517195224762,-0.0141257233917713,0.178844287991524,-0.983775913715363,0.00392824551090598,0.285216242074966,-0.958455085754395,-0.0570322759449482,0.321554005146027,-0.94517195224762,0.0406738184392452,0.440189927816391,-0.896982967853546,0.194215431809425,0.403068363666534,-0.894324421882629,0.00392824551090598,0.285216242074966,-0.958455085754395,0.0406738184392452,0.440189927816391,-0.896982967853546,-0.0841872021555901,0.343136876821518,-0.935504913330078,-0.109095923602581,0.409264117479324,-0.905870258808136,-0.140770807862282,0.439647167921066,-0.88707035779953,-0.260393768548965,0.232583001255989,-0.937069952487946,-0.244526267051697,0.245386093854904,-0.938079118728638,-0.37657368183136,0.344022035598755,-0.860140144824982,-0.37657368183136,0.344022035598755,-0.860140144824982,-0.244526267051697,0.245386093854904,-0.938079118728638,-0.236349701881409,0.278305292129517,-0.930959105491638,-0.236349701881409,0.278305292129517,-0.930959105491638,-0.132777109742165,0.316558986902237,-0.939234018325806,-0.243367597460747,0.415459662675858,-0.876450419425964,-0.243367597460747,0.415459662675858,-0.876450419425964,-0.132777109742165,0.316558986902237,-0.939234018325806,-0.140770807862282,0.439647167921066,-0.88707035779953,0.145933017134666,0.30651667714119,-0.940612018108368,0.236797660589218,0.356060951948166,-0.903962016105652,0.139899477362633,0.343817323446274,-0.928556740283966,0.140983119606972,0.301708579063416,-0.942918658256531,0.145933017134666,0.30651667714119,-0.940612018108368,0.130036816000938,0.334672957658768,-0.93331903219223,0.20355686545372,0.294853687286377,-0.933609008789063,0.269432067871094,0.303406089544296,-0.913975358009338,0.363920360803604,0.296147286891937,-0.883096098899841,0.167476877570152,0.29023677110672,-0.942185640335083,0.140983119606972,0.301708579063416,-0.942918658256531,0.141822919249535,0.305421411991119,-0.941596448421478,0.20355686545372,0.294853687286377,-0.933609008789063, +0.167476877570152,0.29023677110672,-0.942185640335083,0.269432067871094,0.303406089544296,-0.913975358009338,0.292626708745956,-0.108480118215084,-0.950053453445435,0.452615916728973,-0.0783129706978798,-0.888260006904602,0.334597855806351,-0.174845203757286,-0.925998508930206,0.314336985349655,-0.145356297492981,-0.93811708688736,0.334597855806351,-0.174845203757286,-0.925998508930206,0.452615916728973,-0.0783129706978798,-0.888260006904602,0.452615916728973,-0.0783129706978798,-0.888260006904602,0.433716982603073,0.128476217389107,-0.891842663288116,0.459824174642563,0.137587830424309,-0.877286314964294,0.433716982603073,0.128476217389107,-0.891842663288116,0.363920360803604,0.296147286891937,-0.883096098899841,0.440338939428329,0.248387739062309,-0.86278909444809,0.449225246906281,-0.229957297444344,-0.86331695318222,0.455318361520767,-0.210963740944862,-0.864973664283752,0.28316941857338,-0.291367322206497,-0.913739562034607,0.28316941857338,-0.291367322206497,-0.913739562034607,0.455318361520767,-0.210963740944862,-0.864973664283752,0.401124596595764,-0.316324502229691,-0.859673023223877,0.253593415021896,-0.593144118785858,-0.764113962650299,0.161399260163307,-0.650695264339447,-0.741987645626068,0.304047852754593,-0.62558114528656,-0.71847265958786,0.302126944065094,-0.524687528610229,-0.795878231525421,0.253593415021896,-0.593144118785858,-0.764113962650299,0.304047852754593,-0.62558114528656,-0.71847265958786,0.141222402453423,-0.281442850828171,-0.949129104614258,0.137848630547524,-0.277114301919937,-0.950897097587585,-0.0480092763900757,-0.253747254610062,-0.966078341007233,0.0209509804844856,-0.282879412174225,-0.958926558494568,-0.0480092763900757,-0.253747254610062,-0.966078341007233,0.00703422352671623,-0.264834880828857,-0.964268088340759,0.187914669513702,-0.438550055027008,-0.878841161727905,0.155984699726105,-0.495822191238403,-0.854300320148468,0.302126944065094,-0.524687528610229,-0.795878231525421,0.0624802559614182,-0.370503753423691,-0.926727116107941,0.00703422352671623,-0.264834880828857,-0.964268088340759, +0.0920508056879044,-0.381034255027771,-0.919967114925385,0.187914669513702,-0.438550055027008,-0.878841161727905,0.0624802559614182,-0.370503753423691,-0.926727116107941,0.106472484767437,-0.445661067962646,-0.888847410678864,0.401124596595764,-0.316324502229691,-0.859673023223877,0.324017822742462,-0.243246182799339,-0.914244830608368,0.296961337327957,-0.346627652645111,-0.8897545337677,0.137848630547524,-0.277114301919937,-0.950897097587585,0.296961337327957,-0.346627652645111,-0.8897545337677,0.324017822742462,-0.243246182799339,-0.914244830608368,0.221163719892502,-0.0454236194491386,-0.97417825460434,0.16492223739624,-0.140444800257683,-0.976256012916565,0.16891773045063,-0.0266935732215643,-0.985268592834473,0.314336985349655,-0.145356297492981,-0.93811708688736,0.452615916728973,-0.0783129706978798,-0.888260006904602,0.325111150741577,-0.0594854652881622,-0.943803012371063,0.249140277504921,0.0712746381759644,-0.965841054916382,0.221163719892502,-0.0454236194491386,-0.97417825460434,0.16891773045063,-0.0266935732215643,-0.985268592834473,0.249140277504921,0.0712746381759644,-0.965841054916382,0.201977998018265,0.0147587107494473,-0.979278802871704,0.317920714616776,0.038457453250885,-0.947336971759796,0.325111150741577,-0.0594854652881622,-0.943803012371063,0.425077110528946,-0.00797369703650475,-0.905121922492981,0.317920714616776,0.038457453250885,-0.947336971759796,0.16492223739624,-0.140444800257683,-0.976256012916565,0.221163719892502,-0.0454236194491386,-0.97417825460434,0.204232007265091,-0.124635003507137,-0.970955848693848,0.183495938777924,-0.24727138876915,-0.951412618160248,0.204232007265091,-0.124635003507137,-0.970955848693848,0.17227666079998,-0.203979104757309,-0.963697671890259,0.197154998779297,-0.325084179639816,-0.92490541934967,0.17227666079998,-0.203979104757309,-0.963697671890259,0.304702877998352,-0.189924612641335,-0.93331915140152,0.32835391163826,-0.179560393095016,-0.927330374717712,0.279588162899017,-0.0248070824891329,-0.959799468517303,0.219916179776192,-0.193346664309502,-0.956166207790375, +0.32835391163826,-0.179560393095016,-0.927330374717712,0.219916179776192,-0.193346664309502,-0.956166207790375,0.298101633787155,-0.358290374279022,-0.884739100933075,0.353241562843323,-0.326659113168716,-0.876649379730225,0.298101633787155,-0.358290374279022,-0.884739100933075,0.197154998779297,-0.325084179639816,-0.92490541934967,0.398825585842133,-0.205615982413292,-0.893677830696106,0.30807363986969,-0.0241822469979525,-0.95105504989624,0.353662431240082,-0.266442120075226,-0.896622240543365,0.279588162899017,-0.0248070824891329,-0.959799468517303,0.339726805686951,0.0291937235742807,-0.940070927143097,0.30807363986969,-0.0241822469979525,-0.95105504989624,0.398825585842133,-0.205615982413292,-0.893677830696106,0.416732311248779,-0.289520770311356,-0.861691236495972,0.449225246906281,-0.229957297444344,-0.86331695318222,0.123962238430977,0.467680960893631,-0.875161528587341,-0.0931684449315071,0.52529639005661,-0.845803260803223,-0.124915987253189,0.520010054111481,-0.844976544380188,-0.236592754721642,0.596383631229401,-0.767039954662323,-0.0931684449315071,0.52529639005661,-0.845803260803223,-0.179237887263298,0.585007190704346,-0.790974199771881,-0.165270790457726,0.555269658565521,-0.815083503723145,-0.215158700942993,0.586328983306885,-0.780976891517639,-0.24716117978096,0.637320280075073,-0.7298863530159,-0.236592754721642,0.596383631229401,-0.767039954662323,-0.179237887263298,0.585007190704346,-0.790974199771881,-0.24716117978096,0.637320280075073,-0.7298863530159,0.0528507232666016,0.440501600503922,-0.896194756031036,0.194215431809425,0.403068363666534,-0.894324421882629,0.123962238430977,0.467680960893631,-0.875161528587341,-0.070062980055809,0.438966780900955,-0.895767390727997,-0.0435863435268402,0.401030480861664,-0.915027141571045,0.00298696779645979,0.341891288757324,-0.939734697341919,-0.070062980055809,0.438966780900955,-0.895767390727997,-0.0425931662321091,0.442556411027908,-0.895728528499603,-0.0968413650989532,0.522681057453156,-0.84701007604599,0.00298696779645979,0.341891288757324,-0.939734697341919, +-0.0435863435268402,0.401030480861664,-0.915027141571045,-0.00897338055074215,0.322204172611237,-0.946627616882324,-0.00897338055074215,0.322204172611237,-0.946627616882324,0.0662237629294395,0.287186592817307,-0.955582618713379,0.027322543784976,0.262719929218292,-0.964485168457031,0.104380451142788,0.33340510725975,-0.936987519264221,0.0646988451480865,0.262118428945541,-0.962864398956299,0.027322543784976,0.262719929218292,-0.964485168457031,0.0335786305367947,0.288045853376389,-0.957027673721313,0.0817417576909065,0.239845469594002,-0.967363595962524,0.10244295746088,0.23100084066391,-0.967545330524445,0.0817417576909065,0.239845469594002,-0.967363595962524,0.0646988451480865,0.262118428945541,-0.962864398956299,0.100989632308483,0.229675710201263,-0.968013465404511,-0.0848575159907341,0.569467484951019,-0.817622065544128,0.0335786305367947,0.288045853376389,-0.957027673721313,-0.0498189516365528,0.650014579296112,-0.758286774158478,-0.0968413650989532,0.522681057453156,-0.84701007604599,-0.165270790457726,0.555269658565521,-0.815083503723145,-0.198775202035904,0.582856774330139,-0.787887215614319,-0.0945821031928062,0.840175628662109,-0.534002780914307,0.010392876341939,0.833797872066498,-0.551971912384033,-0.00504830339923501,0.767121016979218,-0.641482412815094,0.0444591343402863,0.68870621919632,-0.723676025867462,0.0106599824503064,0.70032924413681,-0.713740229606628,-0.00504830339923501,0.767121016979218,-0.641482412815094,-0.0434112437069416,0.68660044670105,-0.725737631320953,0.0106599824503064,0.70032924413681,-0.713740229606628,0.0534641183912754,0.612035751342773,-0.789020776748657,0.0719211921095848,0.511388897895813,-0.856334388256073,0.0534641183912754,0.612035751342773,-0.789020776748657,0.110530100762844,0.457979947328568,-0.88206422328949,-0.0498189516365528,0.650014579296112,-0.758286774158478,0.0204038340598345,0.366715759038925,-0.930109202861786,-0.121650196611881,0.739583134651184,-0.661980271339417,-0.174440875649452,0.756146907806396,-0.630723536014557,-0.121650196611881,0.739583134651184,-0.661980271339417, +-0.141058996319771,0.356983631849289,-0.923398554325104,-0.174440875649452,0.756146907806396,-0.630723536014557,-0.0654170215129852,0.722762107849121,-0.687993824481964,-0.107819393277168,0.924157083034515,-0.366481244564056,-0.0147653203457594,0.909152805805206,-0.416200697422028,-0.0100112436339259,0.889629423618317,-0.456573367118835,-0.0724611133337021,0.9237020611763,-0.376196175813675,-0.0147653203457594,0.909152805805206,-0.416200697422028,-0.107819393277168,0.924157083034515,-0.366481244564056,-0.0160555951297283,0.873244524002075,-0.487017571926117,-0.0316842421889305,0.886411309242249,-0.461812436580658,-0.0100112436339259,0.889629423618317,-0.456573367118835,0.0271701570600271,0.859563887119293,-0.510305464267731,-0.0316842421889305,0.886411309242249,-0.461812436580658,0.0271701570600271,0.859563887119293,-0.510305464267731,0.010392876341939,0.833797872066498,-0.551971912384033,0.0719211921095848,0.511388897895813,-0.856334388256073,0.110530100762844,0.457979947328568,-0.88206422328949,0.130036816000938,0.334672957658768,-0.93331903219223,0.145933017134666,0.30651667714119,-0.940612018108368,0.139899477362633,0.343817323446274,-0.928556740283966,0.130036816000938,0.334672957658768,-0.93331903219223,0.188089981675148,-0.608807981014252,-0.770697712898254,0.117946736514568,-0.372373521327972,-0.920557677745819,0.126468554139137,-0.451952517032623,-0.88303142786026,0.161399260163307,-0.650695264339447,-0.741987645626068,0.253593415021896,-0.593144118785858,-0.764113962650299,0.120566882193089,-0.466432332992554,-0.876301527023315,0.0701852962374687,-0.249252736568451,-0.96589183807373,0.120566882193089,-0.466432332992554,-0.876301527023315,0.050261415541172,-0.394939035177231,-0.917331397533417,-0.00160907942336053,-0.325759261846542,-0.945451319217682,0.0938257724046707,-0.139961630105972,-0.985701441764832,0.0701852962374687,-0.249252736568451,-0.96589183807373,0.0938257724046707,-0.139961630105972,-0.985701441764832,-0.00160907942336053,-0.325759261846542,-0.945451319217682,0.0668484568595886,-0.200863599777222,-0.977335691452026, +-0.602417349815369,-0.644375681877136,-0.471034228801727,-0.563545167446136,-0.742355346679688,-0.362388253211975,-0.586689412593842,-0.657892405986786,-0.472200125455856,-0.588227868080139,-0.64176070690155,-0.492068082094193,-0.657520592212677,-0.624908328056335,-0.420899271965027,-0.602417349815369,-0.644375681877136,-0.471034228801727,-0.563545167446136,-0.742355346679688,-0.362388253211975,-0.560084164142609,-0.785816431045532,-0.26229390501976,-0.527731001377106,-0.784909963607788,-0.324678719043732,-0.427772760391235,-0.757200419902802,-0.493617117404938,-0.536486208438873,-0.652712106704712,-0.534929215908051,-0.414899080991745,-0.677139461040497,-0.607734084129334,-0.427772760391235,-0.757200419902802,-0.493617117404938,-0.518419921398163,-0.77582836151123,-0.359626233577728,-0.536486208438873,-0.652712106704712,-0.534929215908051,-0.518419921398163,-0.77582836151123,-0.359626233577728,-0.527731001377106,-0.784909963607788,-0.324678719043732,-0.560084164142609,-0.785816431045532,-0.26229390501976,-0.45529368519783,-0.56896311044693,-0.684827327728271,-0.508223235607147,-0.555270671844482,-0.658318638801575,-0.55091404914856,-0.457742214202881,-0.697829186916351,-0.628354966640472,-0.381684601306915,-0.677854597568512,-0.576275169849396,-0.529509305953979,-0.622516512870789,-0.55091404914856,-0.457742214202881,-0.697829186916351,-0.45529368519783,-0.56896311044693,-0.684827327728271,-0.414899080991745,-0.677139461040497,-0.607734084129334,-0.508223235607147,-0.555270671844482,-0.658318638801575,-0.700233936309814,-0.405507653951645,-0.587567746639252,-0.628354966640472,-0.381684601306915,-0.677854597568512,-0.671601831912994,-0.382815182209015,-0.634352684020996,-0.641312956809998,-0.436628967523575,-0.630930006504059,-0.72555273771286,-0.378881841897964,-0.574475109577179,-0.697608470916748,-0.38596174120903,-0.603635549545288,-0.700233936309814,-0.405507653951645,-0.587567746639252,-0.731258690357208,-0.388316214084625,-0.560777187347412,-0.72555273771286,-0.378881841897964,-0.574475109577179,-0.664524137973785,-0.361330419778824,-0.654100775718689, +-0.697608470916748,-0.38596174120903,-0.603635549545288,-0.731258690357208,-0.388316214084625,-0.560777187347412,-0.703787565231323,-0.273494839668274,-0.655654966831207,-0.675307929515839,-0.139233782887459,-0.724274098873138,-0.693203032016754,-0.276615470647812,-0.665547370910645,-0.675307929515839,-0.139233782887459,-0.724274098873138,-0.725734353065491,-0.0865817591547966,-0.682505011558533,-0.635342061519623,-0.0242390260100365,-0.771850287914276,-0.664524137973785,-0.361330419778824,-0.654100775718689,-0.731258690357208,-0.388316214084625,-0.560777187347412,-0.688072383403778,-0.387955248355865,-0.613226771354675,-0.693203032016754,-0.276615470647812,-0.665547370910645,-0.688072383403778,-0.387955248355865,-0.613226771354675,-0.703787565231323,-0.273494839668274,-0.655654966831207,-0.635342061519623,-0.0242390260100365,-0.771850287914276,-0.655881285667419,0.0282430443912745,-0.754335403442383,-0.519901692867279,0.0361686982214451,-0.85345995426178,-0.519901692867279,0.0361686982214451,-0.85345995426178,-0.655881285667419,0.0282430443912745,-0.754335403442383,-0.491725116968155,0.0920320227742195,-0.865873217582703,-0.269335895776749,0.090817391872406,-0.958754539489746,-0.378666311502457,0.103722639381886,-0.91970282793045,-0.296909362077713,0.113608904182911,-0.948123276233673,-0.491725116968155,0.0920320227742195,-0.865873217582703,-0.459610283374786,0.143222585320473,-0.876496195793152,-0.378666311502457,0.103722639381886,-0.91970282793045,-0.269335895776749,0.090817391872406,-0.958754539489746,-0.261917978525162,0.101482272148132,-0.959739685058594,-0.287255883216858,0.119601152837276,-0.950357556343079,-0.392987102270126,0.114464700222015,-0.912391841411591,-0.261917978525162,0.101482272148132,-0.959739685058594,-0.402165412902832,0.100747056305408,-0.910007059574127,-0.392987102270126,0.114464700222015,-0.912391841411591,-0.402165412902832,0.100747056305408,-0.910007059574127,-0.504636406898499,0.0799822136759758,-0.859618961811066,-0.504636406898499,0.0799822136759758,-0.859618961811066,-0.402165412902832,0.100747056305408,-0.910007059574127, +-0.452805399894714,0.113697819411755,-0.884330093860626,-0.307123780250549,0.0907030776143074,-0.94733726978302,-0.388790845870972,-0.0868829935789108,-0.917220175266266,-0.353757053613663,-0.0133998282253742,-0.935241341590881,-0.310242801904678,0.219418734312058,-0.92498904466629,-0.225054726004601,0.267115205526352,-0.937016427516937,-0.301571577787399,0.241530492901802,-0.922343492507935,-0.452805399894714,0.113697819411755,-0.884330093860626,-0.405413806438446,0.222496375441551,-0.886642456054688,-0.301571577787399,0.241530492901802,-0.922343492507935,-0.307123780250549,0.0907030776143074,-0.94733726978302,-0.225054726004601,0.267115205526352,-0.937016427516937,-0.310242801904678,0.219418734312058,-0.92498904466629,-0.383603483438492,0.106398463249207,-0.917348146438599,-0.255299121141434,-0.00552257942035794,-0.966846287250519,-0.157876878976822,0.0799566805362701,-0.984216272830963,-0.264297991991043,0.185808911919594,-0.946372807025909,-0.157876878976822,0.0799566805362701,-0.984216272830963,-0.130666002631187,0.164203286170959,-0.977733790874481,-0.264297991991043,0.185808911919594,-0.946372807025909,-0.130666002631187,0.164203286170959,-0.977733790874481,-0.260393768548965,0.232583001255989,-0.937069952487946,-0.353214919567108,-0.0264602527022362,-0.935167908668518,-0.255299121141434,-0.00552257942035794,-0.966846287250519,-0.353757053613663,-0.0133998282253742,-0.935241341590881,-0.0245419591665268,0.357384532690048,-0.933634757995605,-0.0951241627335548,0.462966054677963,-0.881256878376007,-0.154478460550308,0.419829308986664,-0.894359886646271,-0.0245419591665268,0.357384532690048,-0.933634757995605,-0.109095923602581,0.409264117479324,-0.905870258808136,-0.0305710602551699,0.300641804933548,-0.953247010707855,-0.0990727096796036,0.406161665916443,-0.908414661884308,-0.0951241627335548,0.462966054677963,-0.881256878376007,-0.11736436933279,0.497905105352402,-0.859253168106079,0.0145114464685321,0.29774209856987,-0.954536020755768,-0.0451208129525185,0.377859175205231,-0.924762904644012,0.0145196048542857,0.262432843446732,-0.964840948581696, +-0.0990727096796036,0.406161665916443,-0.908414661884308,-0.11736436933279,0.497905105352402,-0.859253168106079,-0.0451208129525185,0.377859175205231,-0.924762904644012,-0.0570322759449482,0.321554005146027,-0.94517195224762,0.0145196048542857,0.262432843446732,-0.964840948581696,-0.0451208129525185,0.377859175205231,-0.924762904644012,0.0406738184392452,0.440189927816391,-0.896982967853546,-0.0570322759449482,0.321554005146027,-0.94517195224762,-0.0807149261236191,0.436692237854004,-0.895982623100281,0.0406738184392452,0.440189927816391,-0.896982967853546,0.173882141709328,0.445852994918823,-0.878054678440094,0.194215431809425,0.403068363666534,-0.894324421882629,-0.109095923602581,0.409264117479324,-0.905870258808136,-0.0841872021555901,0.343136876821518,-0.935504913330078,-0.0305710602551699,0.300641804933548,-0.953247010707855,-0.0841872021555901,0.343136876821518,-0.935504913330078,-0.140770807862282,0.439647167921066,-0.88707035779953,-0.132777109742165,0.316558986902237,-0.939234018325806,-0.260393768548965,0.232583001255989,-0.937069952487946,-0.130666002631187,0.164203286170959,-0.977733790874481,-0.244526267051697,0.245386093854904,-0.938079118728638,-0.244526267051697,0.245386093854904,-0.938079118728638,-0.190238773822784,0.174626007676125,-0.966082215309143,-0.236349701881409,0.278305292129517,-0.930959105491638,-0.236349701881409,0.278305292129517,-0.930959105491638,-0.133321329951286,0.177687868475914,-0.97501403093338,-0.132777109742165,0.316558986902237,-0.939234018325806,0.140983119606972,0.301708579063416,-0.942918658256531,0.130036816000938,0.334672957658768,-0.93331903219223,0.141822919249535,0.305421411991119,-0.941596448421478,0.363920360803604,0.296147286891937,-0.883096098899841,0.269432067871094,0.303406089544296,-0.913975358009338,0.365761399269104,0.317207455635071,-0.874984502792358,0.141822919249535,0.305421411991119,-0.941596448421478,0.209674939513206,0.267203450202942,-0.940552294254303,0.167476877570152,0.29023677110672,-0.942185640335083,0.269432067871094,0.303406089544296,-0.913975358009338, +0.167476877570152,0.29023677110672,-0.942185640335083,0.209674939513206,0.267203450202942,-0.940552294254303,0.433716982603073,0.128476217389107,-0.891842663288116,0.440338939428329,0.248387739062309,-0.86278909444809,0.459824174642563,0.137587830424309,-0.877286314964294,0.425077110528946,-0.00797369703650475,-0.905121922492981,0.452615916728973,-0.0783129706978798,-0.888260006904602,0.459824174642563,0.137587830424309,-0.877286314964294,0.365761399269104,0.317207455635071,-0.874984502792358,0.440338939428329,0.248387739062309,-0.86278909444809,0.363920360803604,0.296147286891937,-0.883096098899841,0.449225246906281,-0.229957297444344,-0.86331695318222,0.429924875497818,-0.163720920681953,-0.887896358966827,0.455318361520767,-0.210963740944862,-0.864973664283752,0.401124596595764,-0.316324502229691,-0.859673023223877,0.455318361520767,-0.210963740944862,-0.864973664283752,0.450361490249634,-0.181678354740143,-0.874166548252106,0.302126944065094,-0.524687528610229,-0.795878231525421,0.171756580471992,-0.579462647438049,-0.796694755554199,0.253593415021896,-0.593144118785858,-0.764113962650299,-0.0480092763900757,-0.253747254610062,-0.966078341007233,0.137848630547524,-0.277114301919937,-0.950897097587585,0.0650540366768837,-0.146417230367661,-0.987081468105316,0.0650540366768837,-0.146417230367661,-0.987081468105316,0.00703422352671623,-0.264834880828857,-0.964268088340759,-0.0480092763900757,-0.253747254610062,-0.966078341007233,0.187914669513702,-0.438550055027008,-0.878841161727905,0.106472484767437,-0.445661067962646,-0.888847410678864,0.155984699726105,-0.495822191238403,-0.854300320148468,0.171756580471992,-0.579462647438049,-0.796694755554199,0.302126944065094,-0.524687528610229,-0.795878231525421,0.155984699726105,-0.495822191238403,-0.854300320148468,0.00703422352671623,-0.264834880828857,-0.964268088340759,0.21996508538723,-0.267088234424591,-0.938231945037842,0.0920508056879044,-0.381034255027771,-0.919967114925385,0.106472484767437,-0.445661067962646,-0.888847410678864,0.0624802559614182,-0.370503753423691,-0.926727116107941, +0.0920508056879044,-0.381034255027771,-0.919967114925385,0.450361490249634,-0.181678354740143,-0.874166548252106,0.324017822742462,-0.243246182799339,-0.914244830608368,0.401124596595764,-0.316324502229691,-0.859673023223877,0.0650540366768837,-0.146417230367661,-0.987081468105316,0.137848630547524,-0.277114301919937,-0.950897097587585,0.324017822742462,-0.243246182799339,-0.914244830608368,0.325111150741577,-0.0594854652881622,-0.943803012371063,0.452615916728973,-0.0783129706978798,-0.888260006904602,0.425077110528946,-0.00797369703650475,-0.905121922492981,0.219945192337036,0.00857431069016457,-0.975474536418915,0.221163719892502,-0.0454236194491386,-0.97417825460434,0.249140277504921,0.0712746381759644,-0.965841054916382,0.249140277504921,0.0712746381759644,-0.965841054916382,0.317920714616776,0.038457453250885,-0.947336971759796,0.272455602884293,0.0959574356675148,-0.957371413707733,0.339203029870987,0.0532316155731678,-0.939205825328827,0.317920714616776,0.038457453250885,-0.947336971759796,0.425077110528946,-0.00797369703650475,-0.905121922492981,0.221163719892502,-0.0454236194491386,-0.97417825460434,0.219945192337036,0.00857431069016457,-0.975474536418915,0.204232007265091,-0.124635003507137,-0.970955848693848,0.17227666079998,-0.203979104757309,-0.963697671890259,0.204232007265091,-0.124635003507137,-0.970955848693848,0.216509759426117,-0.0910604149103165,-0.972024381160736,0.304702877998352,-0.189924612641335,-0.93331915140152,0.17227666079998,-0.203979104757309,-0.963697671890259,0.216509759426117,-0.0910604149103165,-0.972024381160736,0.197154998779297,-0.325084179639816,-0.92490541934967,0.304702877998352,-0.189924612641335,-0.93331915140152,0.353241562843323,-0.326659113168716,-0.876649379730225,0.279588162899017,-0.0248070824891329,-0.959799468517303,0.32835391163826,-0.179560393095016,-0.927330374717712,0.339726805686951,0.0291937235742807,-0.940070927143097,0.324336737394333,-0.351022839546204,-0.878401100635529,0.32835391163826,-0.179560393095016,-0.927330374717712,0.298101633787155,-0.358290374279022,-0.884739100933075, +0.324336737394333,-0.351022839546204,-0.878401100635529,0.298101633787155,-0.358290374279022,-0.884739100933075,0.353241562843323,-0.326659113168716,-0.876649379730225,0.273343145847321,-0.233351171016693,-0.933183073997498,0.353662431240082,-0.266442120075226,-0.896622240543365,0.30807363986969,-0.0241822469979525,-0.95105504989624,0.353662431240082,-0.266442120075226,-0.896622240543365,0.416732311248779,-0.289520770311356,-0.861691236495972,0.398825585842133,-0.205615982413292,-0.893677830696106,0.315313518047333,0.0011128302430734,-0.948986887931824,0.30807363986969,-0.0241822469979525,-0.95105504989624,0.339726805686951,0.0291937235742807,-0.940070927143097,0.416732311248779,-0.289520770311356,-0.861691236495972,0.429924875497818,-0.163720920681953,-0.887896358966827,0.449225246906281,-0.229957297444344,-0.86331695318222,0.123962238430977,0.467680960893631,-0.875161528587341,0.0558261796832085,0.38692182302475,-0.920421004295349,-0.0931684449315071,0.52529639005661,-0.845803260803223,-0.0931684449315071,0.52529639005661,-0.845803260803223,-0.055801760405302,0.438394874334335,-0.897048473358154,-0.179237887263298,0.585007190704346,-0.790974199771881,-0.198775202035904,0.582856774330139,-0.787887215614319,-0.165270790457726,0.555269658565521,-0.815083503723145,-0.24716117978096,0.637320280075073,-0.7298863530159,-0.24716117978096,0.637320280075073,-0.7298863530159,-0.179237887263298,0.585007190704346,-0.790974199771881,-0.150852486491203,0.554701089859009,-0.818260371685028,0.173882141709328,0.445852994918823,-0.878054678440094,0.123962238430977,0.467680960893631,-0.875161528587341,0.194215431809425,0.403068363666534,-0.894324421882629,-0.0753840878605843,0.542583227157593,-0.836612582206726,-0.0435863435268402,0.401030480861664,-0.915027141571045,-0.070062980055809,0.438966780900955,-0.895767390727997,-0.0968413650989532,0.522681057453156,-0.84701007604599,-0.124870277941227,0.539734542369843,-0.832522571086884,-0.070062980055809,0.438966780900955,-0.895767390727997,-0.00897338055074215,0.322204172611237,-0.946627616882324, +-0.0435863435268402,0.401030480861664,-0.915027141571045,0.0784225314855576,0.526538610458374,-0.846526324748993,-0.00897338055074215,0.322204172611237,-0.946627616882324,0.123878173530102,0.424399942159653,-0.896960854530334,0.0662237629294395,0.287186592817307,-0.955582618713379,0.104380451142788,0.33340510725975,-0.936987519264221,0.027322543784976,0.262719929218292,-0.964485168457031,0.0662237629294395,0.287186592817307,-0.955582618713379,0.0646988451480865,0.262118428945541,-0.962864398956299,0.104380451142788,0.33340510725975,-0.936987519264221,0.00969237647950649,0.23728634417057,-0.971391379833221,0.100989632308483,0.229675710201263,-0.968013465404511,0.10244295746088,0.23100084066391,-0.967545330524445,0.0817417576909065,0.239845469594002,-0.967363595962524,0.10244295746088,0.23100084066391,-0.967545330524445,0.0204038340598345,0.366715759038925,-0.930109202861786,0.0335786305367947,0.288045853376389,-0.957027673721313,0.100989632308483,0.229675710201263,-0.968013465404511,0.0646988451480865,0.262118428945541,-0.962864398956299,0.00969237647950649,0.23728634417057,-0.971391379833221,0.0335786305367947,0.288045853376389,-0.957027673721313,0.0204038340598345,0.366715759038925,-0.930109202861786,-0.0498189516365528,0.650014579296112,-0.758286774158478,-0.198775202035904,0.582856774330139,-0.787887215614319,-0.124870277941227,0.539734542369843,-0.832522571086884,-0.0968413650989532,0.522681057453156,-0.84701007604599,-0.00504830339923501,0.767121016979218,-0.641482412815094,0.010392876341939,0.833797872066498,-0.551971912384033,0.0254786722362041,0.822645008563995,-0.567984044551849,0.0444591343402863,0.68870621919632,-0.723676025867462,0.0534641183912754,0.612035751342773,-0.789020776748657,0.0106599824503064,0.70032924413681,-0.713740229606628,0.0288990698754787,0.773347735404968,-0.633322954177856,0.0444591343402863,0.68870621919632,-0.723676025867462,-0.00504830339923501,0.767121016979218,-0.641482412815094,0.0534641183912754,0.612035751342773,-0.789020776748657,0.0871452614665031,0.556772470474243,-0.826081097126007, +0.110530100762844,0.457979947328568,-0.88206422328949,-0.141058996319771,0.356983631849289,-0.923398554325104,-0.121650196611881,0.739583134651184,-0.661980271339417,0.0204038340598345,0.366715759038925,-0.930109202861786,-0.141058996319771,0.356983631849289,-0.923398554325104,-0.134664952754974,0.357339203357697,-0.924215316772461,-0.174440875649452,0.756146907806396,-0.630723536014557,-0.174440875649452,0.756146907806396,-0.630723536014557,-0.134664952754974,0.357339203357697,-0.924215316772461,-0.0654170215129852,0.722762107849121,-0.687993824481964,-0.0654170215129852,0.722762107849121,-0.687993824481964,-0.0417020283639431,0.796465516090393,-0.603244125843048,-0.107819393277168,0.924157083034515,-0.366481244564056,-0.0100112436339259,0.889629423618317,-0.456573367118835,-0.0147653203457594,0.909152805805206,-0.416200697422028,0.00565204070881009,0.865212380886078,-0.50137335062027,-0.0417020283639431,0.796465516090393,-0.603244125843048,-0.0160555951297283,0.873244524002075,-0.487017571926117,-0.107819393277168,0.924157083034515,-0.366481244564056,-0.0160555951297283,0.873244524002075,-0.487017571926117,0.0344090089201927,0.925024390220642,-0.378346085548401,-0.0147653203457594,0.909152805805206,-0.416200697422028,-0.0100112436339259,0.889629423618317,-0.456573367118835,0.00565204070881009,0.865212380886078,-0.50137335062027,0.0271701570600271,0.859563887119293,-0.510305464267731,0.0254786722362041,0.822645008563995,-0.567984044551849,0.010392876341939,0.833797872066498,-0.551971912384033,0.0271701570600271,0.859563887119293,-0.510305464267731,0.130036816000938,0.334672957658768,-0.93331903219223,0.110530100762844,0.457979947328568,-0.88206422328949,0.141822919249535,0.305421411991119,-0.941596448421478,0.1451755464077,-0.518858075141907,-0.842442989349365,0.120566882193089,-0.466432332992554,-0.876301527023315,0.253593415021896,-0.593144118785858,-0.764113962650299,0.1451755464077,-0.518858075141907,-0.842442989349365,0.050261415541172,-0.394939035177231,-0.917331397533417,0.120566882193089,-0.466432332992554,-0.876301527023315, +-0.00160907942336053,-0.325759261846542,-0.945451319217682,0.0701852962374687,-0.249252736568451,-0.96589183807373,0.050261415541172,-0.394939035177231,-0.917331397533417,0.0668484568595886,-0.200863599777222,-0.977335691452026,-0.00160907942336053,-0.325759261846542,-0.945451319217682,0.0323366522789001,-0.370839953422546,-0.928133547306061,-0.652514576911926,-0.695918917655945,-0.299869209527969,-0.563545167446136,-0.742355346679688,-0.362388253211975,-0.602417349815369,-0.644375681877136,-0.471034228801727,-0.602417349815369,-0.644375681877136,-0.471034228801727,-0.657520592212677,-0.624908328056335,-0.420899271965027,-0.692531585693359,-0.610645532608032,-0.384072959423065,-0.563545167446136,-0.742355346679688,-0.362388253211975,-0.642361581325531,-0.74725204706192,-0.170252189040184,-0.560084164142609,-0.785816431045532,-0.26229390501976,-0.536486208438873,-0.652712106704712,-0.534929215908051,-0.508223235607147,-0.555270671844482,-0.658318638801575,-0.414899080991745,-0.677139461040497,-0.607734084129334,-0.536486208438873,-0.652712106704712,-0.534929215908051,-0.518419921398163,-0.77582836151123,-0.359626233577728,-0.608028650283813,-0.641145706176758,-0.468223392963409,-0.518419921398163,-0.77582836151123,-0.359626233577728,-0.560084164142609,-0.785816431045532,-0.26229390501976,-0.633125364780426,-0.69863373041153,-0.333261102437973,-0.623194634914398,-0.48720121383667,-0.611770570278168,-0.55091404914856,-0.457742214202881,-0.697829186916351,-0.508223235607147,-0.555270671844482,-0.658318638801575,-0.628354966640472,-0.381684601306915,-0.677854597568512,-0.55091404914856,-0.457742214202881,-0.697829186916351,-0.628464937210083,-0.37168088555336,-0.68328982591629,-0.628354966640472,-0.381684601306915,-0.677854597568512,-0.650914907455444,-0.349278479814529,-0.674028277397156,-0.671601831912994,-0.382815182209015,-0.634352684020996,-0.671601831912994,-0.382815182209015,-0.634352684020996,-0.731258690357208,-0.388316214084625,-0.560777187347412,-0.700233936309814,-0.405507653951645,-0.587567746639252,-0.72555273771286,-0.378881841897964,-0.574475109577179, +-0.731258690357208,-0.388316214084625,-0.560777187347412,-0.697608470916748,-0.38596174120903,-0.603635549545288,-0.728745341300964,-0.172560915350914,-0.662686049938202,-0.675307929515839,-0.139233782887459,-0.724274098873138,-0.703787565231323,-0.273494839668274,-0.655654966831207,-0.675307929515839,-0.139233782887459,-0.724274098873138,-0.728745341300964,-0.172560915350914,-0.662686049938202,-0.725734353065491,-0.0865817591547966,-0.682505011558533,-0.741044282913208,-0.0148943923413754,-0.671290814876556,-0.635342061519623,-0.0242390260100365,-0.771850287914276,-0.725734353065491,-0.0865817591547966,-0.682505011558533,-0.731258690357208,-0.388316214084625,-0.560777187347412,-0.650965988636017,-0.434290140867233,-0.622603535652161,-0.688072383403778,-0.387955248355865,-0.613226771354675,-0.703787565231323,-0.273494839668274,-0.655654966831207,-0.688072383403778,-0.387955248355865,-0.613226771354675,-0.651236534118652,-0.374021679162979,-0.660301983356476,-0.635342061519623,-0.0242390260100365,-0.771850287914276,-0.741044282913208,-0.0148943923413754,-0.671290814876556,-0.655881285667419,0.0282430443912745,-0.754335403442383,-0.655881285667419,0.0282430443912745,-0.754335403442383,-0.591789722442627,0.139567837119102,-0.793917894363403,-0.491725116968155,0.0920320227742195,-0.865873217582703,-0.296909362077713,0.113608904182911,-0.948123276233673,-0.378666311502457,0.103722639381886,-0.91970282793045,-0.377723217010498,0.181055203080177,-0.908044099807739,-0.269335895776749,0.090817391872406,-0.958754539489746,-0.296909362077713,0.113608904182911,-0.948123276233673,-0.243057683110237,0.112700842320919,-0.963442444801331,-0.459610283374786,0.143222585320473,-0.876496195793152,-0.491725116968155,0.0920320227742195,-0.865873217582703,-0.591789722442627,0.139567837119102,-0.793917894363403,-0.378666311502457,0.103722639381886,-0.91970282793045,-0.459610283374786,0.143222585320473,-0.876496195793152,-0.377723217010498,0.181055203080177,-0.908044099807739,-0.261917978525162,0.101482272148132,-0.959739685058594,-0.269335895776749,0.090817391872406,-0.958754539489746, +-0.243057683110237,0.112700842320919,-0.963442444801331,-0.402165412902832,0.100747056305408,-0.910007059574127,-0.261917978525162,0.101482272148132,-0.959739685058594,-0.243057683110237,0.112700842320919,-0.963442444801331,-0.402165412902832,0.100747056305408,-0.910007059574127,-0.405413806438446,0.222496375441551,-0.886642456054688,-0.452805399894714,0.113697819411755,-0.884330093860626,-0.403455168008804,0.0487758703529835,-0.913698375225067,-0.388790845870972,-0.0868829935789108,-0.917220175266266,-0.307123780250549,0.0907030776143074,-0.94733726978302,-0.353757053613663,-0.0133998282253742,-0.935241341590881,-0.388790845870972,-0.0868829935789108,-0.917220175266266,-0.353214919567108,-0.0264602527022362,-0.935167908668518,-0.310242801904678,0.219418734312058,-0.92498904466629,-0.301571577787399,0.241530492901802,-0.922343492507935,-0.405413806438446,0.222496375441551,-0.886642456054688,-0.310242801904678,0.219418734312058,-0.92498904466629,-0.403455168008804,0.0487758703529835,-0.913698375225067,-0.307123780250549,0.0907030776143074,-0.94733726978302,-0.157876878976822,0.0799566805362701,-0.984216272830963,-0.255299121141434,-0.00552257942035794,-0.966846287250519,-0.210870236158371,0.115756496787071,-0.970635890960693,-0.130666002631187,0.164203286170959,-0.977733790874481,-0.157876878976822,0.0799566805362701,-0.984216272830963,-0.118243224918842,0.166249886155128,-0.978968560695648,-0.353214919567108,-0.0264602527022362,-0.935167908668518,-0.210870236158371,0.115756496787071,-0.970635890960693,-0.255299121141434,-0.00552257942035794,-0.966846287250519,-0.0245419591665268,0.357384532690048,-0.933634757995605,0.0465085469186306,0.406972110271454,-0.912255764007568,-0.0951241627335548,0.462966054677963,-0.881256878376007,-0.00265071261674166,0.242577582597733,-0.970128297805786,-0.0245419591665268,0.357384532690048,-0.933634757995605,-0.0305710602551699,0.300641804933548,-0.953247010707855,-0.0264466032385826,0.4625603556633,-0.886193215847015,-0.11736436933279,0.497905105352402,-0.859253168106079,-0.0951241627335548,0.462966054677963,-0.881256878376007, +-0.11736436933279,0.497905105352402,-0.859253168106079,-0.0807149261236191,0.436692237854004,-0.895982623100281,-0.0451208129525185,0.377859175205231,-0.924762904644012,-0.0807149261236191,0.436692237854004,-0.895982623100281,-0.0570322759449482,0.321554005146027,-0.94517195224762,-0.0451208129525185,0.377859175205231,-0.924762904644012,-0.0413205511868,0.510039329528809,-0.859157919883728,0.0406738184392452,0.440189927816391,-0.896982967853546,-0.0807149261236191,0.436692237854004,-0.895982623100281,0.0300922878086567,0.509351432323456,-0.860032200813293,0.173882141709328,0.445852994918823,-0.878054678440094,0.0406738184392452,0.440189927816391,-0.896982967853546,-0.0305710602551699,0.300641804933548,-0.953247010707855,-0.0841872021555901,0.343136876821518,-0.935504913330078,-0.00265071261674166,0.242577582597733,-0.970128297805786,-0.0841872021555901,0.343136876821518,-0.935504913330078,-0.132777109742165,0.316558986902237,-0.939234018325806,-0.00265071261674166,0.242577582597733,-0.970128297805786,-0.244526267051697,0.245386093854904,-0.938079118728638,-0.130666002631187,0.164203286170959,-0.977733790874481,-0.190238773822784,0.174626007676125,-0.966082215309143,-0.236349701881409,0.278305292129517,-0.930959105491638,-0.190238773822784,0.174626007676125,-0.966082215309143,-0.133321329951286,0.177687868475914,-0.97501403093338,-0.132777109742165,0.316558986902237,-0.939234018325806,-0.133321329951286,0.177687868475914,-0.97501403093338,-0.00265071261674166,0.242577582597733,-0.970128297805786,0.365761399269104,0.317207455635071,-0.874984502792358,0.269432067871094,0.303406089544296,-0.913975358009338,0.316013216972351,0.23134645819664,-0.920116364955902,0.209674939513206,0.267203450202942,-0.940552294254303,0.141822919249535,0.305421411991119,-0.941596448421478,0.146759331226349,0.419404089450836,-0.895858108997345,0.269432067871094,0.303406089544296,-0.913975358009338,0.209674939513206,0.267203450202942,-0.940552294254303,0.316013216972351,0.23134645819664,-0.920116364955902,0.395082414150238,0.178695127367973,-0.901098132133484, +0.459824174642563,0.137587830424309,-0.877286314964294,0.440338939428329,0.248387739062309,-0.86278909444809,0.339203029870987,0.0532316155731678,-0.939205825328827,0.425077110528946,-0.00797369703650475,-0.905121922492981,0.459824174642563,0.137587830424309,-0.877286314964294,0.440338939428329,0.248387739062309,-0.86278909444809,0.365761399269104,0.317207455635071,-0.874984502792358,0.316013216972351,0.23134645819664,-0.920116364955902,0.455318361520767,-0.210963740944862,-0.864973664283752,0.429924875497818,-0.163720920681953,-0.887896358966827,0.450361490249634,-0.181678354740143,-0.874166548252106,0.136067122220993,-0.570418000221252,-0.810005486011505,0.253593415021896,-0.593144118785858,-0.764113962650299,0.171756580471992,-0.579462647438049,-0.796694755554199,0.00703422352671623,-0.264834880828857,-0.964268088340759,0.0650540366768837,-0.146417230367661,-0.987081468105316,0.0798433050513268,-0.0858551263809204,-0.99310314655304,0.106472484767437,-0.445661067962646,-0.888847410678864,0.162654638290405,-0.40591037273407,-0.899322032928467,0.155984699726105,-0.495822191238403,-0.854300320148468,0.179484590888023,-0.475493907928467,-0.861214637756348,0.171756580471992,-0.579462647438049,-0.796694755554199,0.155984699726105,-0.495822191238403,-0.854300320148468,0.00703422352671623,-0.264834880828857,-0.964268088340759,0.185037270188332,-0.104624509811401,-0.97714626789093,0.21996508538723,-0.267088234424591,-0.938231945037842,0.162654638290405,-0.40591037273407,-0.899322032928467,0.0920508056879044,-0.381034255027771,-0.919967114925385,0.21996508538723,-0.267088234424591,-0.938231945037842,0.162654638290405,-0.40591037273407,-0.899322032928467,0.106472484767437,-0.445661067962646,-0.888847410678864,0.0920508056879044,-0.381034255027771,-0.919967114925385,0.450361490249634,-0.181678354740143,-0.874166548252106,0.251138806343079,-0.06365005671978,-0.96585601568222,0.324017822742462,-0.243246182799339,-0.914244830608368,0.0650540366768837,-0.146417230367661,-0.987081468105316,0.324017822742462,-0.243246182799339,-0.914244830608368, +0.251138806343079,-0.06365005671978,-0.96585601568222,0.219945192337036,0.00857431069016457,-0.975474536418915,0.249140277504921,0.0712746381759644,-0.965841054916382,0.218125775456429,0.120024919509888,-0.968511760234833,0.339203029870987,0.0532316155731678,-0.939205825328827,0.272455602884293,0.0959574356675148,-0.957371413707733,0.317920714616776,0.038457453250885,-0.947336971759796,0.272455602884293,0.0959574356675148,-0.957371413707733,0.218125775456429,0.120024919509888,-0.968511760234833,0.249140277504921,0.0712746381759644,-0.965841054916382,0.204232007265091,-0.124635003507137,-0.970955848693848,0.219945192337036,0.00857431069016457,-0.975474536418915,0.216509759426117,-0.0910604149103165,-0.972024381160736,0.304702877998352,-0.189924612641335,-0.93331915140152,0.216509759426117,-0.0910604149103165,-0.972024381160736,0.280791252851486,-0.0434698425233364,-0.958783864974976,0.353241562843323,-0.326659113168716,-0.876649379730225,0.304702877998352,-0.189924612641335,-0.93331915140152,0.43651008605957,-0.176880329847336,-0.882140696048737,0.306644201278687,-0.172547340393066,-0.93605375289917,0.339726805686951,0.0291937235742807,-0.940070927143097,0.32835391163826,-0.179560393095016,-0.927330374717712,0.306644201278687,-0.172547340393066,-0.93605375289917,0.32835391163826,-0.179560393095016,-0.927330374717712,0.324336737394333,-0.351022839546204,-0.878401100635529,0.324336737394333,-0.351022839546204,-0.878401100635529,0.353241562843323,-0.326659113168716,-0.876649379730225,0.354892551898956,-0.269676476716995,-0.895168006420136,0.273343145847321,-0.233351171016693,-0.933183073997498,0.24901095032692,-0.287741720676422,-0.924769282341003,0.353662431240082,-0.266442120075226,-0.896622240543365,0.315313518047333,0.0011128302430734,-0.948986887931824,0.273343145847321,-0.233351171016693,-0.933183073997498,0.30807363986969,-0.0241822469979525,-0.95105504989624,0.353662431240082,-0.266442120075226,-0.896622240543365,0.24901095032692,-0.287741720676422,-0.924769282341003,0.416732311248779,-0.289520770311356,-0.861691236495972, +0.339726805686951,0.0291937235742807,-0.940070927143097,0.295066863298416,0.0225954838097095,-0.955209374427795,0.315313518047333,0.0011128302430734,-0.948986887931824,0.429924875497818,-0.163720920681953,-0.887896358966827,0.416732311248779,-0.289520770311356,-0.861691236495972,0.24901095032692,-0.287741720676422,-0.924769282341003,0.123962238430977,0.467680960893631,-0.875161528587341,0.140776127576828,0.382344275712967,-0.913233160972595,0.0558261796832085,0.38692182302475,-0.920421004295349,-0.0931684449315071,0.52529639005661,-0.845803260803223,0.0558261796832085,0.38692182302475,-0.920421004295349,-0.055801760405302,0.438394874334335,-0.897048473358154,-0.122576169669628,0.487183928489685,-0.864654183387756,-0.179237887263298,0.585007190704346,-0.790974199771881,-0.055801760405302,0.438394874334335,-0.897048473358154,-0.190784946084023,0.628465235233307,-0.754077255725861,-0.198775202035904,0.582856774330139,-0.787887215614319,-0.24716117978096,0.637320280075073,-0.7298863530159,-0.122576169669628,0.487183928489685,-0.864654183387756,-0.150852486491203,0.554701089859009,-0.818260371685028,-0.179237887263298,0.585007190704346,-0.790974199771881,-0.150852486491203,0.554701089859009,-0.818260371685028,-0.158188968896866,0.655032992362976,-0.73885577917099,-0.24716117978096,0.637320280075073,-0.7298863530159,0.123962238430977,0.467680960893631,-0.875161528587341,0.173882141709328,0.445852994918823,-0.878054678440094,0.140776127576828,0.382344275712967,-0.913233160972595,-0.0435863435268402,0.401030480861664,-0.915027141571045,-0.0753840878605843,0.542583227157593,-0.836612582206726,0.0784225314855576,0.526538610458374,-0.846526324748993,-0.0753840878605843,0.542583227157593,-0.836612582206726,-0.070062980055809,0.438966780900955,-0.895767390727997,-0.124870277941227,0.539734542369843,-0.832522571086884,0.123878173530102,0.424399942159653,-0.896960854530334,-0.00897338055074215,0.322204172611237,-0.946627616882324,0.0784225314855576,0.526538610458374,-0.846526324748993,0.0662237629294395,0.287186592817307,-0.955582618713379, +0.123878173530102,0.424399942159653,-0.896960854530334,0.104380451142788,0.33340510725975,-0.936987519264221,0.00969237647950649,0.23728634417057,-0.971391379833221,0.104380451142788,0.33340510725975,-0.936987519264221,-0.0490369684994221,0.366032779216766,-0.929309070110321,0.10244295746088,0.23100084066391,-0.967545330524445,0.100989632308483,0.229675710201263,-0.968013465404511,0.00969237647950649,0.23728634417057,-0.971391379833221,0.0204038340598345,0.366715759038925,-0.930109202861786,0.10244295746088,0.23100084066391,-0.967545330524445,0.00969237647950649,0.23728634417057,-0.971391379833221,-0.198775202035904,0.582856774330139,-0.787887215614319,-0.190784946084023,0.628465235233307,-0.754077255725861,-0.124870277941227,0.539734542369843,-0.832522571086884,0.0288990698754787,0.773347735404968,-0.633322954177856,-0.00504830339923501,0.767121016979218,-0.641482412815094,0.0254786722362041,0.822645008563995,-0.567984044551849,0.0534641183912754,0.612035751342773,-0.789020776748657,0.0444591343402863,0.68870621919632,-0.723676025867462,0.0871452614665031,0.556772470474243,-0.826081097126007,0.0288990698754787,0.773347735404968,-0.633322954177856,0.028319900855422,0.747097074985504,-0.664111256599426,0.0444591343402863,0.68870621919632,-0.723676025867462,0.146759331226349,0.419404089450836,-0.895858108997345,0.110530100762844,0.457979947328568,-0.88206422328949,0.0871452614665031,0.556772470474243,-0.826081097126007,0.0204038340598345,0.366715759038925,-0.930109202861786,0.00969237647950649,0.23728634417057,-0.971391379833221,-0.141058996319771,0.356983631849289,-0.923398554325104,-0.141058996319771,0.356983631849289,-0.923398554325104,-0.135996371507645,0.224747985601425,-0.964879930019379,-0.134664952754974,0.357339203357697,-0.924215316772461,-0.134664952754974,0.357339203357697,-0.924215316772461,0.0117416139692068,0.353190153837204,-0.93547785282135,-0.0654170215129852,0.722762107849121,-0.687993824481964,0.0248224977403879,0.52640974521637,-0.849868535995483,-0.0417020283639431,0.796465516090393,-0.603244125843048, +-0.0654170215129852,0.722762107849121,-0.687993824481964,0.00565204070881009,0.865212380886078,-0.50137335062027,-0.0147653203457594,0.909152805805206,-0.416200697422028,0.051359448581934,0.86378675699234,-0.501232981681824,-0.0160555951297283,0.873244524002075,-0.487017571926117,-0.0417020283639431,0.796465516090393,-0.603244125843048,0.0938742309808731,0.577090561389923,-0.811266899108887,-0.0160555951297283,0.873244524002075,-0.487017571926117,0.0397892072796822,0.896503269672394,-0.441246628761292,0.0344090089201927,0.925024390220642,-0.378346085548401,0.0587253086268902,0.893588483333588,-0.445029050111771,-0.0147653203457594,0.909152805805206,-0.416200697422028,0.0344090089201927,0.925024390220642,-0.378346085548401,0.0271701570600271,0.859563887119293,-0.510305464267731,0.00565204070881009,0.865212380886078,-0.50137335062027,0.0254786722362041,0.822645008563995,-0.567984044551849,0.146759331226349,0.419404089450836,-0.895858108997345,0.141822919249535,0.305421411991119,-0.941596448421478,0.110530100762844,0.457979947328568,-0.88206422328949,0.136067122220993,-0.570418000221252,-0.810005486011505,0.1451755464077,-0.518858075141907,-0.842442989349365,0.253593415021896,-0.593144118785858,-0.764113962650299,0.050261415541172,-0.394939035177231,-0.917331397533417,0.1451755464077,-0.518858075141907,-0.842442989349365,0.0384762585163116,-0.425168365240097,-0.904296040534973,-0.00160907942336053,-0.325759261846542,-0.945451319217682,0.050261415541172,-0.394939035177231,-0.917331397533417,0.0384762585163116,-0.425168365240097,-0.904296040534973,0.0323366522789001,-0.370839953422546,-0.928133547306061,-0.00160907942336053,-0.325759261846542,-0.945451319217682,0.0351591259241104,-0.332751035690308,-0.942359030246735,-0.652514576911926,-0.695918917655945,-0.299869209527969,-0.642361581325531,-0.74725204706192,-0.170252189040184,-0.563545167446136,-0.742355346679688,-0.362388253211975,-0.652514576911926,-0.695918917655945,-0.299869209527969,-0.602417349815369,-0.644375681877136,-0.471034228801727,-0.692531585693359,-0.610645532608032,-0.384072959423065, +-0.692531585693359,-0.610645532608032,-0.384072959423065,-0.657520592212677,-0.624908328056335,-0.420899271965027,-0.761716306209564,-0.5737264752388,-0.301041573286057,-0.691266298294067,-0.703360736370087,-0.16563369333744,-0.560084164142609,-0.785816431045532,-0.26229390501976,-0.642361581325531,-0.74725204706192,-0.170252189040184,-0.536486208438873,-0.652712106704712,-0.534929215908051,-0.623194634914398,-0.48720121383667,-0.611770570278168,-0.508223235607147,-0.555270671844482,-0.658318638801575,-0.608028650283813,-0.641145706176758,-0.468223392963409,-0.518419921398163,-0.77582836151123,-0.359626233577728,-0.633125364780426,-0.69863373041153,-0.333261102437973,-0.536486208438873,-0.652712106704712,-0.534929215908051,-0.608028650283813,-0.641145706176758,-0.468223392963409,-0.623194634914398,-0.48720121383667,-0.611770570278168,-0.691266298294067,-0.703360736370087,-0.16563369333744,-0.633125364780426,-0.69863373041153,-0.333261102437973,-0.560084164142609,-0.785816431045532,-0.26229390501976,-0.623194634914398,-0.48720121383667,-0.611770570278168,-0.628464937210083,-0.37168088555336,-0.68328982591629,-0.55091404914856,-0.457742214202881,-0.697829186916351,-0.628354966640472,-0.381684601306915,-0.677854597568512,-0.628464937210083,-0.37168088555336,-0.68328982591629,-0.650914907455444,-0.349278479814529,-0.674028277397156,-0.671601831912994,-0.382815182209015,-0.634352684020996,-0.650914907455444,-0.349278479814529,-0.674028277397156,-0.64395010471344,-0.426861703395844,-0.634915113449097,-0.650965988636017,-0.434290140867233,-0.622603535652161,-0.731258690357208,-0.388316214084625,-0.560777187347412,-0.671601831912994,-0.382815182209015,-0.634352684020996,-0.718609213829041,-0.221456795930862,-0.659209787845612,-0.728745341300964,-0.172560915350914,-0.662686049938202,-0.703787565231323,-0.273494839668274,-0.655654966831207,-0.768902182579041,-0.0854398906230927,-0.633631825447083,-0.725734353065491,-0.0865817591547966,-0.682505011558533,-0.728745341300964,-0.172560915350914,-0.662686049938202,-0.768902182579041,-0.0854398906230927,-0.633631825447083, +-0.741044282913208,-0.0148943923413754,-0.671290814876556,-0.725734353065491,-0.0865817591547966,-0.682505011558533,-0.650965988636017,-0.434290140867233,-0.622603535652161,-0.651236534118652,-0.374021679162979,-0.660301983356476,-0.688072383403778,-0.387955248355865,-0.613226771354675,-0.718609213829041,-0.221456795930862,-0.659209787845612,-0.703787565231323,-0.273494839668274,-0.655654966831207,-0.651236534118652,-0.374021679162979,-0.660301983356476,-0.785987198352814,-0.00913459062576294,-0.618175148963928,-0.655881285667419,0.0282430443912745,-0.754335403442383,-0.741044282913208,-0.0148943923413754,-0.671290814876556,-0.655881285667419,0.0282430443912745,-0.754335403442383,-0.729910314083099,0.0196501463651657,-0.683260321617126,-0.591789722442627,0.139567837119102,-0.793917894363403,-0.258421897888184,0.215101644396782,-0.941779851913452,-0.296909362077713,0.113608904182911,-0.948123276233673,-0.377723217010498,0.181055203080177,-0.908044099807739,-0.258421897888184,0.215101644396782,-0.941779851913452,-0.243057683110237,0.112700842320919,-0.963442444801331,-0.296909362077713,0.113608904182911,-0.948123276233673,-0.459610283374786,0.143222585320473,-0.876496195793152,-0.591789722442627,0.139567837119102,-0.793917894363403,-0.49924436211586,0.223975032567978,-0.837012588977814,-0.49924436211586,0.223975032567978,-0.837012588977814,-0.377723217010498,0.181055203080177,-0.908044099807739,-0.459610283374786,0.143222585320473,-0.876496195793152,-0.402165412902832,0.100747056305408,-0.910007059574127,-0.243057683110237,0.112700842320919,-0.963442444801331,-0.341366797685623,0.199767112731934,-0.918456137180328,-0.405413806438446,0.222496375441551,-0.886642456054688,-0.402165412902832,0.100747056305408,-0.910007059574127,-0.341366797685623,0.199767112731934,-0.918456137180328,-0.403455168008804,0.0487758703529835,-0.913698375225067,-0.48523360490799,-0.00376474647782743,-0.87437641620636,-0.388790845870972,-0.0868829935789108,-0.917220175266266,-0.353214919567108,-0.0264602527022362,-0.935167908668518,-0.388790845870972,-0.0868829935789108,-0.917220175266266, +-0.48523360490799,-0.00376474647782743,-0.87437641620636,-0.310242801904678,0.219418734312058,-0.92498904466629,-0.405413806438446,0.222496375441551,-0.886642456054688,-0.381569027900696,0.205083891749382,-0.90130215883255,-0.310242801904678,0.219418734312058,-0.92498904466629,-0.381569027900696,0.205083891749382,-0.90130215883255,-0.403455168008804,0.0487758703529835,-0.913698375225067,-0.210870236158371,0.115756496787071,-0.970635890960693,-0.118243224918842,0.166249886155128,-0.978968560695648,-0.157876878976822,0.0799566805362701,-0.984216272830963,-0.128864362835884,0.181378453969955,-0.974933743476868,-0.130666002631187,0.164203286170959,-0.977733790874481,-0.118243224918842,0.166249886155128,-0.978968560695648,-0.210870236158371,0.115756496787071,-0.970635890960693,-0.353214919567108,-0.0264602527022362,-0.935167908668518,-0.343194842338562,0.147305995225906,-0.927641153335571,0.0465085469186306,0.406972110271454,-0.912255764007568,-0.0245419591665268,0.357384532690048,-0.933634757995605,0.0841120108962059,0.350667804479599,-0.932714939117432,0.0465085469186306,0.406972110271454,-0.912255764007568,0.0667138248682022,0.481915801763535,-0.873674035072327,-0.0951241627335548,0.462966054677963,-0.881256878376007,-0.00265071261674166,0.242577582597733,-0.970128297805786,0.0841120108962059,0.350667804479599,-0.932714939117432,-0.0245419591665268,0.357384532690048,-0.933634757995605,-0.0944075062870979,0.477216958999634,-0.87369966506958,-0.11736436933279,0.497905105352402,-0.859253168106079,-0.0264466032385826,0.4625603556633,-0.886193215847015,-0.0264466032385826,0.4625603556633,-0.886193215847015,-0.0951241627335548,0.462966054677963,-0.881256878376007,0.0667138248682022,0.481915801763535,-0.873674035072327,-0.11736436933279,0.497905105352402,-0.859253168106079,-0.111527033150196,0.521691560745239,-0.845812976360321,-0.0807149261236191,0.436692237854004,-0.895982623100281,-0.0413205511868,0.510039329528809,-0.859157919883728,0.0300922878086567,0.509351432323456,-0.860032200813293,0.0406738184392452,0.440189927816391,-0.896982967853546, +-0.111527033150196,0.521691560745239,-0.845812976360321,-0.0413205511868,0.510039329528809,-0.859157919883728,-0.0807149261236191,0.436692237854004,-0.895982623100281,0.0560904256999493,0.478363424539566,-0.876368761062622,0.173882141709328,0.445852994918823,-0.878054678440094,0.0300922878086567,0.509351432323456,-0.860032200813293,-0.190238773822784,0.174626007676125,-0.966082215309143,-0.130666002631187,0.164203286170959,-0.977733790874481,-0.128864362835884,0.181378453969955,-0.974933743476868,-0.153391793370247,0.185495108366013,-0.970598995685577,-0.133321329951286,0.177687868475914,-0.97501403093338,-0.190238773822784,0.174626007676125,-0.966082215309143,-0.00265071261674166,0.242577582597733,-0.970128297805786,-0.133321329951286,0.177687868475914,-0.97501403093338,-0.042314276099205,0.172892019152641,-0.98403137922287,0.259589105844498,0.379739314317703,-0.887925326824188,0.209674939513206,0.267203450202942,-0.940552294254303,0.146759331226349,0.419404089450836,-0.895858108997345,0.316013216972351,0.23134645819664,-0.920116364955902,0.209674939513206,0.267203450202942,-0.940552294254303,0.311076670885086,0.245819509029388,-0.918043553829193,0.395082414150238,0.178695127367973,-0.901098132133484,0.340565204620361,0.155842304229736,-0.927215397357941,0.459824174642563,0.137587830424309,-0.877286314964294,0.440338939428329,0.248387739062309,-0.86278909444809,0.363515496253967,0.190605387091637,-0.911880433559418,0.395082414150238,0.178695127367973,-0.901098132133484,0.340565204620361,0.155842304229736,-0.927215397357941,0.339203029870987,0.0532316155731678,-0.939205825328827,0.459824174642563,0.137587830424309,-0.877286314964294,0.440338939428329,0.248387739062309,-0.86278909444809,0.316013216972351,0.23134645819664,-0.920116364955902,0.363515496253967,0.190605387091637,-0.911880433559418,0.251138806343079,-0.06365005671978,-0.96585601568222,0.450361490249634,-0.181678354740143,-0.874166548252106,0.429924875497818,-0.163720920681953,-0.887896358966827,0.136067122220993,-0.570418000221252,-0.810005486011505,0.171756580471992,-0.579462647438049,-0.796694755554199, +0.135532602667809,-0.583601057529449,-0.800650060176849,0.148978143930435,0.0524243228137493,-0.987449765205383,0.0798433050513268,-0.0858551263809204,-0.99310314655304,0.0650540366768837,-0.146417230367661,-0.987081468105316,0.0798433050513268,-0.0858551263809204,-0.99310314655304,0.185037270188332,-0.104624509811401,-0.97714626789093,0.00703422352671623,-0.264834880828857,-0.964268088340759,0.179484590888023,-0.475493907928467,-0.861214637756348,0.155984699726105,-0.495822191238403,-0.854300320148468,0.162654638290405,-0.40591037273407,-0.899322032928467,0.179484590888023,-0.475493907928467,-0.861214637756348,0.135532602667809,-0.583601057529449,-0.800650060176849,0.171756580471992,-0.579462647438049,-0.796694755554199,0.185037270188332,-0.104624509811401,-0.97714626789093,0.270680695772171,-0.149580150842667,-0.950977206230164,0.21996508538723,-0.267088234424591,-0.938231945037842,0.162654638290405,-0.40591037273407,-0.899322032928467,0.21996508538723,-0.267088234424591,-0.938231945037842,0.300399273633957,-0.346344381570816,-0.888710141181946,0.0650540366768837,-0.146417230367661,-0.987081468105316,0.251138806343079,-0.06365005671978,-0.96585601568222,0.148978143930435,0.0524243228137493,-0.987449765205383,0.189921692013741,0.0748946219682693,-0.978938460350037,0.219945192337036,0.00857431069016457,-0.975474536418915,0.218125775456429,0.120024919509888,-0.968511760234833,0.272455602884293,0.0959574356675148,-0.957371413707733,0.339203029870987,0.0532316155731678,-0.939205825328827,0.250142753124237,0.118455670773983,-0.960935354232788,0.164265379309654,0.102102123200893,-0.98111766576767,0.218125775456429,0.120024919509888,-0.968511760234833,0.272455602884293,0.0959574356675148,-0.957371413707733,0.219945192337036,0.00857431069016457,-0.975474536418915,0.280791252851486,-0.0434698425233364,-0.958783864974976,0.216509759426117,-0.0910604149103165,-0.972024381160736,0.442906260490417,-0.0844922959804535,-0.892577767372131,0.304702877998352,-0.189924612641335,-0.93331915140152,0.280791252851486,-0.0434698425233364,-0.958783864974976, +0.442906260490417,-0.0844922959804535,-0.892577767372131,0.43651008605957,-0.176880329847336,-0.882140696048737,0.304702877998352,-0.189924612641335,-0.93331915140152,0.43651008605957,-0.176880329847336,-0.882140696048737,0.354892551898956,-0.269676476716995,-0.895168006420136,0.353241562843323,-0.326659113168716,-0.876649379730225,0.339726805686951,0.0291937235742807,-0.940070927143097,0.306644201278687,-0.172547340393066,-0.93605375289917,0.295066863298416,0.0225954838097095,-0.955209374427795,0.306644201278687,-0.172547340393066,-0.93605375289917,0.324336737394333,-0.351022839546204,-0.878401100635529,0.2367954403162,-0.212295830249786,-0.948081374168396,0.354892551898956,-0.269676476716995,-0.895168006420136,0.2367954403162,-0.212295830249786,-0.948081374168396,0.324336737394333,-0.351022839546204,-0.878401100635529,0.273343145847321,-0.233351171016693,-0.933183073997498,0.277680784463882,-0.203016042709351,-0.938977003097534,0.24901095032692,-0.287741720676422,-0.924769282341003,0.277680784463882,-0.203016042709351,-0.938977003097534,0.273343145847321,-0.233351171016693,-0.933183073997498,0.315313518047333,0.0011128302430734,-0.948986887931824,0.273255467414856,0.0116297481581569,-0.961871027946472,0.315313518047333,0.0011128302430734,-0.948986887931824,0.295066863298416,0.0225954838097095,-0.955209374427795,0.429924875497818,-0.163720920681953,-0.887896358966827,0.24901095032692,-0.287741720676422,-0.924769282341003,0.251751840114594,-0.119446843862534,-0.96039229631424,0.0558261796832085,0.38692182302475,-0.920421004295349,0.140776127576828,0.382344275712967,-0.913233160972595,0.0769273936748505,0.361984401941299,-0.929004490375519,0.0558261796832085,0.38692182302475,-0.920421004295349,0.0769273936748505,0.361984401941299,-0.929004490375519,-0.055801760405302,0.438394874334335,-0.897048473358154,-0.122576169669628,0.487183928489685,-0.864654183387756,-0.055801760405302,0.438394874334335,-0.897048473358154,-0.0617020204663277,0.421302378177643,-0.904818832874298,-0.190784946084023,0.628465235233307,-0.754077255725861, +-0.24716117978096,0.637320280075073,-0.7298863530159,-0.158188968896866,0.655032992362976,-0.73885577917099,-0.122576169669628,0.487183928489685,-0.864654183387756,-0.0617020204663277,0.421302378177643,-0.904818832874298,-0.150852486491203,0.554701089859009,-0.818260371685028,-0.150852486491203,0.554701089859009,-0.818260371685028,0.0165555197745562,0.519998371601105,-0.854006707668304,-0.158188968896866,0.655032992362976,-0.73885577917099,0.0560904256999493,0.478363424539566,-0.876368761062622,0.140776127576828,0.382344275712967,-0.913233160972595,0.173882141709328,0.445852994918823,-0.878054678440094,-0.0753840878605843,0.542583227157593,-0.836612582206726,-0.0330772809684277,0.586258292198181,-0.809448540210724,0.0784225314855576,0.526538610458374,-0.846526324748993,-0.0753840878605843,0.542583227157593,-0.836612582206726,-0.124870277941227,0.539734542369843,-0.832522571086884,-0.190784946084023,0.628465235233307,-0.754077255725861,0.184381723403931,0.493020862340927,-0.850255072116852,0.123878173530102,0.424399942159653,-0.896960854530334,0.0784225314855576,0.526538610458374,-0.846526324748993,0.184381723403931,0.493020862340927,-0.850255072116852,0.104380451142788,0.33340510725975,-0.936987519264221,0.123878173530102,0.424399942159653,-0.896960854530334,0.104380451142788,0.33340510725975,-0.936987519264221,0.107410214841366,0.460148304700851,-0.881320834159851,-0.0490369684994221,0.366032779216766,-0.929309070110321,-0.0490369684994221,0.366032779216766,-0.929309070110321,-0.135996371507645,0.224747985601425,-0.964879930019379,0.00969237647950649,0.23728634417057,-0.971391379833221,0.0288990698754787,0.773347735404968,-0.633322954177856,0.0254786722362041,0.822645008563995,-0.567984044551849,0.028319900855422,0.747097074985504,-0.664111256599426,0.0444591343402863,0.68870621919632,-0.723676025867462,0.077311635017395,0.623962104320526,-0.777620792388916,0.0871452614665031,0.556772470474243,-0.826081097126007,0.0444591343402863,0.68870621919632,-0.723676025867462,0.028319900855422,0.747097074985504,-0.664111256599426, +0.077311635017395,0.623962104320526,-0.777620792388916,0.0871452614665031,0.556772470474243,-0.826081097126007,0.149256482720375,0.507818639278412,-0.848435401916504,0.146759331226349,0.419404089450836,-0.895858108997345,-0.135996371507645,0.224747985601425,-0.964879930019379,-0.141058996319771,0.356983631849289,-0.923398554325104,0.00969237647950649,0.23728634417057,-0.971391379833221,-0.135996371507645,0.224747985601425,-0.964879930019379,-0.0520661100745201,0.270327210426331,-0.961359560489655,-0.134664952754974,0.357339203357697,-0.924215316772461,0.0117416139692068,0.353190153837204,-0.93547785282135,-0.134664952754974,0.357339203357697,-0.924215316772461,-0.0520661100745201,0.270327210426331,-0.961359560489655,0.0248224977403879,0.52640974521637,-0.849868535995483,-0.0654170215129852,0.722762107849121,-0.687993824481964,0.0117416139692068,0.353190153837204,-0.93547785282135,-0.0417020283639431,0.796465516090393,-0.603244125843048,0.0248224977403879,0.52640974521637,-0.849868535995483,0.0938742309808731,0.577090561389923,-0.811266899108887,-0.0147653203457594,0.909152805805206,-0.416200697422028,0.0587253086268902,0.893588483333588,-0.445029050111771,0.051359448581934,0.86378675699234,-0.501232981681824,0.051359448581934,0.86378675699234,-0.501232981681824,0.0254786722362041,0.822645008563995,-0.567984044551849,0.00565204070881009,0.865212380886078,-0.50137335062027,0.14376375079155,0.631109893321991,-0.762254595756531,-0.0160555951297283,0.873244524002075,-0.487017571926117,0.0938742309808731,0.577090561389923,-0.811266899108887,0.0397892072796822,0.896503269672394,-0.441246628761292,-0.0160555951297283,0.873244524002075,-0.487017571926117,0.14376375079155,0.631109893321991,-0.762254595756531,0.041690893471241,0.912496328353882,-0.406954914331436,0.0344090089201927,0.925024390220642,-0.378346085548401,0.0397892072796822,0.896503269672394,-0.441246628761292,0.0344090089201927,0.925024390220642,-0.378346085548401,0.130615413188934,0.905993640422821,-0.402635097503662,0.0587253086268902,0.893588483333588,-0.445029050111771, +0.136067122220993,-0.570418000221252,-0.810005486011505,0.0384762585163116,-0.425168365240097,-0.904296040534973,0.1451755464077,-0.518858075141907,-0.842442989349365,-0.00160907942336053,-0.325759261846542,-0.945451319217682,0.0384762585163116,-0.425168365240097,-0.904296040534973,0.0351591259241104,-0.332751035690308,-0.942359030246735,-0.642361581325531,-0.74725204706192,-0.170252189040184,-0.652514576911926,-0.695918917655945,-0.299869209527969,-0.707461059093475,-0.697520315647125,-0.113860070705414,-0.652514576911926,-0.695918917655945,-0.299869209527969,-0.692531585693359,-0.610645532608032,-0.384072959423065,-0.721313536167145,-0.648110806941986,-0.244251906871796,-0.721313536167145,-0.648110806941986,-0.244251906871796,-0.692531585693359,-0.610645532608032,-0.384072959423065,-0.761716306209564,-0.5737264752388,-0.301041573286057,-0.691266298294067,-0.703360736370087,-0.16563369333744,-0.642361581325531,-0.74725204706192,-0.170252189040184,-0.732737362384796,-0.67966103553772,-0.0340100862085819,-0.696937918663025,-0.500852227210999,-0.513249039649963,-0.608028650283813,-0.641145706176758,-0.468223392963409,-0.633125364780426,-0.69863373041153,-0.333261102437973,-0.608028650283813,-0.641145706176758,-0.468223392963409,-0.696937918663025,-0.500852227210999,-0.513249039649963,-0.623194634914398,-0.48720121383667,-0.611770570278168,-0.691266298294067,-0.703360736370087,-0.16563369333744,-0.764569163322449,-0.547679662704468,-0.339824676513672,-0.633125364780426,-0.69863373041153,-0.333261102437973,-0.680112481117249,-0.365087151527405,-0.635734379291534,-0.628464937210083,-0.37168088555336,-0.68328982591629,-0.623194634914398,-0.48720121383667,-0.611770570278168,-0.628464937210083,-0.37168088555336,-0.68328982591629,-0.680112481117249,-0.365087151527405,-0.635734379291534,-0.650914907455444,-0.349278479814529,-0.674028277397156,-0.714335501194,-0.350056111812592,-0.605958223342896,-0.64395010471344,-0.426861703395844,-0.634915113449097,-0.650914907455444,-0.349278479814529,-0.674028277397156,-0.671601831912994,-0.382815182209015,-0.634352684020996, +-0.64395010471344,-0.426861703395844,-0.634915113449097,-0.650965988636017,-0.434290140867233,-0.622603535652161,-0.718609213829041,-0.221456795930862,-0.659209787845612,-0.768902182579041,-0.0854398906230927,-0.633631825447083,-0.728745341300964,-0.172560915350914,-0.662686049938202,-0.785987198352814,-0.00913459062576294,-0.618175148963928,-0.741044282913208,-0.0148943923413754,-0.671290814876556,-0.768902182579041,-0.0854398906230927,-0.633631825447083,-0.64395010471344,-0.426861703395844,-0.634915113449097,-0.651236534118652,-0.374021679162979,-0.660301983356476,-0.650965988636017,-0.434290140867233,-0.622603535652161,-0.651236534118652,-0.374021679162979,-0.660301983356476,-0.728525221347809,-0.341461420059204,-0.593847572803497,-0.718609213829041,-0.221456795930862,-0.659209787845612,-0.785987198352814,-0.00913459062576294,-0.618175148963928,-0.729910314083099,0.0196501463651657,-0.683260321617126,-0.655881285667419,0.0282430443912745,-0.754335403442383,-0.591789722442627,0.139567837119102,-0.793917894363403,-0.729910314083099,0.0196501463651657,-0.683260321617126,-0.661129117012024,0.173904687166214,-0.729839205741882,-0.374589622020721,0.281421601772308,-0.883450269699097,-0.258421897888184,0.215101644396782,-0.941779851913452,-0.377723217010498,0.181055203080177,-0.908044099807739,-0.258421897888184,0.215101644396782,-0.941779851913452,-0.24082750082016,0.20011867582798,-0.949712872505188,-0.243057683110237,0.112700842320919,-0.963442444801331,-0.49924436211586,0.223975032567978,-0.837012588977814,-0.591789722442627,0.139567837119102,-0.793917894363403,-0.620463609695435,0.249555051326752,-0.743469595909119,-0.374589622020721,0.281421601772308,-0.883450269699097,-0.377723217010498,0.181055203080177,-0.908044099807739,-0.49924436211586,0.223975032567978,-0.837012588977814,-0.341366797685623,0.199767112731934,-0.918456137180328,-0.243057683110237,0.112700842320919,-0.963442444801331,-0.24082750082016,0.20011867582798,-0.949712872505188,-0.341366797685623,0.199767112731934,-0.918456137180328,-0.381569027900696,0.205083891749382,-0.90130215883255, +-0.405413806438446,0.222496375441551,-0.886642456054688,-0.479574471712112,0.079840324819088,-0.873861372470856,-0.48523360490799,-0.00376474647782743,-0.87437641620636,-0.403455168008804,0.0487758703529835,-0.913698375225067,-0.353214919567108,-0.0264602527022362,-0.935167908668518,-0.48523360490799,-0.00376474647782743,-0.87437641620636,-0.465259581804276,0.167678162455559,-0.869147539138794,-0.381569027900696,0.205083891749382,-0.90130215883255,-0.359495788812637,0.172736093401909,-0.917019546031952,-0.403455168008804,0.0487758703529835,-0.913698375225067,-0.210870236158371,0.115756496787071,-0.970635890960693,-0.181752011179924,0.254600763320923,-0.949812889099121,-0.118243224918842,0.166249886155128,-0.978968560695648,-0.182185262441635,0.238073125481606,-0.954007148742676,-0.128864362835884,0.181378453969955,-0.974933743476868,-0.118243224918842,0.166249886155128,-0.978968560695648,-0.343194842338562,0.147305995225906,-0.927641153335571,-0.353214919567108,-0.0264602527022362,-0.935167908668518,-0.465259581804276,0.167678162455559,-0.869147539138794,-0.32205519080162,0.307143956422806,-0.895512640476227,-0.210870236158371,0.115756496787071,-0.970635890960693,-0.343194842338562,0.147305995225906,-0.927641153335571,0.0998399928212166,0.442542552947998,-0.891172230243683,0.0465085469186306,0.406972110271454,-0.912255764007568,0.0841120108962059,0.350667804479599,-0.932714939117432,0.0998399928212166,0.442542552947998,-0.891172230243683,0.0667138248682022,0.481915801763535,-0.873674035072327,0.0465085469186306,0.406972110271454,-0.912255764007568,0.0841120108962059,0.350667804479599,-0.932714939117432,-0.00265071261674166,0.242577582597733,-0.970128297805786,-0.0256708655506372,0.32865646481514,-0.944100499153137,-0.0944075062870979,0.477216958999634,-0.87369966506958,-0.125513896346092,0.510312020778656,-0.850780665874481,-0.11736436933279,0.497905105352402,-0.859253168106079,-0.0944075062870979,0.477216958999634,-0.87369966506958,-0.0264466032385826,0.4625603556633,-0.886193215847015,0.00931580178439617,0.345167279243469,-0.938494920730591, +-0.0264466032385826,0.4625603556633,-0.886193215847015,0.0667138248682022,0.481915801763535,-0.873674035072327,0.0429381728172302,0.408539175987244,-0.911730170249939,-0.11736436933279,0.497905105352402,-0.859253168106079,-0.125513896346092,0.510312020778656,-0.850780665874481,-0.111527033150196,0.521691560745239,-0.845812976360321,-0.0443988405168056,0.57828813791275,-0.814623415470123,0.0300922878086567,0.509351432323456,-0.860032200813293,-0.0413205511868,0.510039329528809,-0.859157919883728,-0.111527033150196,0.521691560745239,-0.845812976360321,-0.0443988405168056,0.57828813791275,-0.814623415470123,-0.0413205511868,0.510039329528809,-0.859157919883728,0.0560904256999493,0.478363424539566,-0.876368761062622,0.0300922878086567,0.509351432323456,-0.860032200813293,0.0464046820998192,0.593250930309296,-0.8036789894104,-0.202258467674255,0.196689873933792,-0.95937716960907,-0.190238773822784,0.174626007676125,-0.966082215309143,-0.128864362835884,0.181378453969955,-0.974933743476868,-0.133321329951286,0.177687868475914,-0.97501403093338,-0.153391793370247,0.185495108366013,-0.970598995685577,-0.042314276099205,0.172892019152641,-0.98403137922287,-0.202258467674255,0.196689873933792,-0.95937716960907,-0.153391793370247,0.185495108366013,-0.970598995685577,-0.190238773822784,0.174626007676125,-0.966082215309143,-0.00265071261674166,0.242577582597733,-0.970128297805786,-0.042314276099205,0.172892019152641,-0.98403137922287,-0.0256708655506372,0.32865646481514,-0.944100499153137,0.311076670885086,0.245819509029388,-0.918043553829193,0.209674939513206,0.267203450202942,-0.940552294254303,0.259589105844498,0.379739314317703,-0.887925326824188,0.146759331226349,0.419404089450836,-0.895858108997345,0.149256482720375,0.507818639278412,-0.848435401916504,0.259589105844498,0.379739314317703,-0.887925326824188,0.316013216972351,0.23134645819664,-0.920116364955902,0.311076670885086,0.245819509029388,-0.918043553829193,0.363515496253967,0.190605387091637,-0.911880433559418,0.395082414150238,0.178695127367973,-0.901098132133484, +0.276177227497101,0.139958202838898,-0.950861573219299,0.340565204620361,0.155842304229736,-0.927215397357941,0.395082414150238,0.178695127367973,-0.901098132133484,0.363515496253967,0.190605387091637,-0.911880433559418,0.329387843608856,0.164050623774529,-0.929833829402924,0.250142753124237,0.118455670773983,-0.960935354232788,0.339203029870987,0.0532316155731678,-0.939205825328827,0.340565204620361,0.155842304229736,-0.927215397357941,0.429924875497818,-0.163720920681953,-0.887896358966827,0.251751840114594,-0.119446843862534,-0.96039229631424,0.251138806343079,-0.06365005671978,-0.96585601568222,0.0842905640602112,-0.524884521961212,-0.846989512443542,0.136067122220993,-0.570418000221252,-0.810005486011505,0.135532602667809,-0.583601057529449,-0.800650060176849,0.148978143930435,0.0524243228137493,-0.987449765205383,0.174376010894775,0.0569445937871933,-0.983031034469604,0.0798433050513268,-0.0858551263809204,-0.99310314655304,0.0798433050513268,-0.0858551263809204,-0.99310314655304,0.174376010894775,0.0569445937871933,-0.983031034469604,0.185037270188332,-0.104624509811401,-0.97714626789093,0.300399273633957,-0.346344381570816,-0.888710141181946,0.179484590888023,-0.475493907928467,-0.861214637756348,0.162654638290405,-0.40591037273407,-0.899322032928467,0.179484590888023,-0.475493907928467,-0.861214637756348,0.247142925858498,-0.480599373579025,-0.841394364833832,0.135532602667809,-0.583601057529449,-0.800650060176849,0.185037270188332,-0.104624509811401,-0.97714626789093,0.243842989206314,0.0343636274337769,-0.969205558300018,0.270680695772171,-0.149580150842667,-0.950977206230164,0.270680695772171,-0.149580150842667,-0.950977206230164,0.301906436681747,-0.300343364477158,-0.904790699481964,0.21996508538723,-0.267088234424591,-0.938231945037842,0.301906436681747,-0.300343364477158,-0.904790699481964,0.300399273633957,-0.346344381570816,-0.888710141181946,0.21996508538723,-0.267088234424591,-0.938231945037842,0.1971605271101,-0.0840769410133362,-0.976759254932404,0.148978143930435,0.0524243228137493,-0.987449765205383, +0.251138806343079,-0.06365005671978,-0.96585601568222,0.189921692013741,0.0748946219682693,-0.978938460350037,0.280791252851486,-0.0434698425233364,-0.958783864974976,0.219945192337036,0.00857431069016457,-0.975474536418915,0.189921692013741,0.0748946219682693,-0.978938460350037,0.218125775456429,0.120024919509888,-0.968511760234833,0.164265379309654,0.102102123200893,-0.98111766576767,0.250142753124237,0.118455670773983,-0.960935354232788,0.164265379309654,0.102102123200893,-0.98111766576767,0.272455602884293,0.0959574356675148,-0.957371413707733,0.416562587022781,0.0665255561470985,-0.906669616699219,0.442906260490417,-0.0844922959804535,-0.892577767372131,0.280791252851486,-0.0434698425233364,-0.958783864974976,0.547742009162903,-0.0451459661126137,-0.835428237915039,0.43651008605957,-0.176880329847336,-0.882140696048737,0.442906260490417,-0.0844922959804535,-0.892577767372131,0.43651008605957,-0.176880329847336,-0.882140696048737,0.420082032680511,-0.0486825406551361,-0.906179368495941,0.354892551898956,-0.269676476716995,-0.895168006420136,0.306644201278687,-0.172547340393066,-0.93605375289917,0.118938446044922,-0.224728524684906,-0.96713525056839,0.295066863298416,0.0225954838097095,-0.955209374427795,0.306644201278687,-0.172547340393066,-0.93605375289917,0.2367954403162,-0.212295830249786,-0.948081374168396,0.118938446044922,-0.224728524684906,-0.96713525056839,0.2367954403162,-0.212295830249786,-0.948081374168396,0.354892551898956,-0.269676476716995,-0.895168006420136,0.420082032680511,-0.0486825406551361,-0.906179368495941,0.277680784463882,-0.203016042709351,-0.938977003097534,0.257441401481628,-0.331933945417404,-0.907493054866791,0.24901095032692,-0.287741720676422,-0.924769282341003,0.315313518047333,0.0011128302430734,-0.948986887931824,0.273255467414856,0.0116297481581569,-0.961871027946472,0.277680784463882,-0.203016042709351,-0.938977003097534,0.273255467414856,0.0116297481581569,-0.961871027946472,0.295066863298416,0.0225954838097095,-0.955209374427795,0.109108649194241,-0.0782552808523178,-0.990944683551788, +0.1971605271101,-0.0840769410133362,-0.976759254932404,0.251751840114594,-0.119446843862534,-0.96039229631424,0.24901095032692,-0.287741720676422,-0.924769282341003,0.0560904256999493,0.478363424539566,-0.876368761062622,0.0769273936748505,0.361984401941299,-0.929004490375519,0.140776127576828,0.382344275712967,-0.913233160972595,-0.055801760405302,0.438394874334335,-0.897048473358154,0.0769273936748505,0.361984401941299,-0.929004490375519,0.0560904256999493,0.478363424539566,-0.876368761062622,-0.055801760405302,0.438394874334335,-0.897048473358154,0.0421671755611897,0.441522121429443,-0.896258890628815,-0.0617020204663277,0.421302378177643,-0.904818832874298,-0.190784946084023,0.628465235233307,-0.754077255725861,-0.158188968896866,0.655032992362976,-0.73885577917099,-0.203289449214935,0.687106251716614,-0.697537302970886,-0.0617020204663277,0.421302378177643,-0.904818832874298,0.0165555197745562,0.519998371601105,-0.854006707668304,-0.150852486491203,0.554701089859009,-0.818260371685028,0.0644592642784119,0.579304277896881,-0.812558531761169,-0.158188968896866,0.655032992362976,-0.73885577917099,0.0165555197745562,0.519998371601105,-0.854006707668304,-0.0753840878605843,0.542583227157593,-0.836612582206726,-0.0976949036121368,0.619888067245483,-0.778584837913513,-0.0330772809684277,0.586258292198181,-0.809448540210724,-0.0330772809684277,0.586258292198181,-0.809448540210724,0.0326701775193214,0.51486337184906,-0.856649398803711,0.0784225314855576,0.526538610458374,-0.846526324748993,-0.190784946084023,0.628465235233307,-0.754077255725861,-0.0976949036121368,0.619888067245483,-0.778584837913513,-0.0753840878605843,0.542583227157593,-0.836612582206726,0.184381723403931,0.493020862340927,-0.850255072116852,0.0784225314855576,0.526538610458374,-0.846526324748993,0.0326701775193214,0.51486337184906,-0.856649398803711,0.104380451142788,0.33340510725975,-0.936987519264221,0.184381723403931,0.493020862340927,-0.850255072116852,0.107410214841366,0.460148304700851,-0.881320834159851,-0.0490369684994221,0.366032779216766,-0.929309070110321, +0.107410214841366,0.460148304700851,-0.881320834159851,-0.103525370359421,0.469133138656616,-0.877038478851318,-0.135996371507645,0.224747985601425,-0.964879930019379,-0.0490369684994221,0.366032779216766,-0.929309070110321,-0.134978428483009,0.393247842788696,-0.909470617771149,0.0254786722362041,0.822645008563995,-0.567984044551849,0.0783103406429291,0.798951148986816,-0.596275448799133,0.028319900855422,0.747097074985504,-0.664111256599426,0.0871452614665031,0.556772470474243,-0.826081097126007,0.077311635017395,0.623962104320526,-0.777620792388916,0.149256482720375,0.507818639278412,-0.848435401916504,0.0809670984745026,0.690223693847656,-0.719051778316498,0.077311635017395,0.623962104320526,-0.777620792388916,0.028319900855422,0.747097074985504,-0.664111256599426,-0.135996371507645,0.224747985601425,-0.964879930019379,-0.134978428483009,0.393247842788696,-0.909470617771149,-0.0520661100745201,0.270327210426331,-0.961359560489655,-0.0520661100745201,0.270327210426331,-0.961359560489655,0.081113189458847,0.261198848485947,-0.961870968341827,0.0117416139692068,0.353190153837204,-0.93547785282135,0.0248224977403879,0.52640974521637,-0.849868535995483,0.0117416139692068,0.353190153837204,-0.93547785282135,0.132264003157616,0.2801713347435,-0.950794458389282,0.132264003157616,0.2801713347435,-0.950794458389282,0.0938742309808731,0.577090561389923,-0.811266899108887,0.0248224977403879,0.52640974521637,-0.849868535995483,0.0587253086268902,0.893588483333588,-0.445029050111771,0.150669768452644,0.868620932102203,-0.472012996673584,0.051359448581934,0.86378675699234,-0.501232981681824,0.0783103406429291,0.798951148986816,-0.596275448799133,0.0254786722362041,0.822645008563995,-0.567984044551849,0.051359448581934,0.86378675699234,-0.501232981681824,0.14376375079155,0.631109893321991,-0.762254595756531,0.0938742309808731,0.577090561389923,-0.811266899108887,0.141405865550041,0.303388297557831,-0.942316174507141,0.0449777655303478,0.775016069412231,-0.630338728427887,0.0397892072796822,0.896503269672394,-0.441246628761292, +0.14376375079155,0.631109893321991,-0.762254595756531,0.041690893471241,0.912496328353882,-0.406954914331436,0.145574554800987,0.894787490367889,-0.422093868255615,0.0344090089201927,0.925024390220642,-0.378346085548401,0.041690893471241,0.912496328353882,-0.406954914331436,0.0397892072796822,0.896503269672394,-0.441246628761292,0.0449777655303478,0.775016069412231,-0.630338728427887,0.0344090089201927,0.925024390220642,-0.378346085548401,0.145574554800987,0.894787490367889,-0.422093868255615,0.130615413188934,0.905993640422821,-0.402635097503662,0.0587253086268902,0.893588483333588,-0.445029050111771,0.130615413188934,0.905993640422821,-0.402635097503662,0.150669768452644,0.868620932102203,-0.472012996673584,0.0842905640602112,-0.524884521961212,-0.846989512443542,0.0384762585163116,-0.425168365240097,-0.904296040534973,0.136067122220993,-0.570418000221252,-0.810005486011505,0.0526083260774612,-0.359533786773682,-0.931647837162018,0.0351591259241104,-0.332751035690308,-0.942359030246735,0.0384762585163116,-0.425168365240097,-0.904296040534973,-0.652514576911926,-0.695918917655945,-0.299869209527969,-0.721313536167145,-0.648110806941986,-0.244251906871796,-0.707461059093475,-0.697520315647125,-0.113860070705414,-0.642361581325531,-0.74725204706192,-0.170252189040184,-0.707461059093475,-0.697520315647125,-0.113860070705414,-0.732737362384796,-0.67966103553772,-0.0340100862085819,-0.709980010986328,-0.648937225341797,-0.273512065410614,-0.721313536167145,-0.648110806941986,-0.244251906871796,-0.761716306209564,-0.5737264752388,-0.301041573286057,-0.691266298294067,-0.703360736370087,-0.16563369333744,-0.732737362384796,-0.67966103553772,-0.0340100862085819,-0.807731986045837,-0.572676241397858,-0.140038445591927,-0.696937918663025,-0.500852227210999,-0.513249039649963,-0.633125364780426,-0.69863373041153,-0.333261102437973,-0.764569163322449,-0.547679662704468,-0.339824676513672,-0.623194634914398,-0.48720121383667,-0.611770570278168,-0.696937918663025,-0.500852227210999,-0.513249039649963,-0.680112481117249,-0.365087151527405,-0.635734379291534, +-0.807731986045837,-0.572676241397858,-0.140038445591927,-0.764569163322449,-0.547679662704468,-0.339824676513672,-0.691266298294067,-0.703360736370087,-0.16563369333744,-0.680112481117249,-0.365087151527405,-0.635734379291534,-0.714335501194,-0.350056111812592,-0.605958223342896,-0.650914907455444,-0.349278479814529,-0.674028277397156,-0.714335501194,-0.350056111812592,-0.605958223342896,-0.728525221347809,-0.341461420059204,-0.593847572803497,-0.64395010471344,-0.426861703395844,-0.634915113449097,-0.814932405948639,-0.177214056253433,-0.551797211170197,-0.768902182579041,-0.0854398906230927,-0.633631825447083,-0.718609213829041,-0.221456795930862,-0.659209787845612,-0.820508658885956,-0.0288491025567055,-0.57090550661087,-0.785987198352814,-0.00913459062576294,-0.618175148963928,-0.768902182579041,-0.0854398906230927,-0.633631825447083,-0.64395010471344,-0.426861703395844,-0.634915113449097,-0.728525221347809,-0.341461420059204,-0.593847572803497,-0.651236534118652,-0.374021679162979,-0.660301983356476,-0.814932405948639,-0.177214056253433,-0.551797211170197,-0.718609213829041,-0.221456795930862,-0.659209787845612,-0.728525221347809,-0.341461420059204,-0.593847572803497,-0.785987198352814,-0.00913459062576294,-0.618175148963928,-0.790190577507019,-0.0503391101956367,-0.610790193080902,-0.729910314083099,0.0196501463651657,-0.683260321617126,-0.661129117012024,0.173904687166214,-0.729839205741882,-0.729910314083099,0.0196501463651657,-0.683260321617126,-0.703299880027771,0.218025088310242,-0.676634550094604,-0.661129117012024,0.173904687166214,-0.729839205741882,-0.620463609695435,0.249555051326752,-0.743469595909119,-0.591789722442627,0.139567837119102,-0.793917894363403,-0.374589622020721,0.281421601772308,-0.883450269699097,-0.316776245832443,0.27074271440506,-0.909038543701172,-0.258421897888184,0.215101644396782,-0.941779851913452,-0.24082750082016,0.20011867582798,-0.949712872505188,-0.258421897888184,0.215101644396782,-0.941779851913452,-0.311618268489838,0.227317720651627,-0.922616183757782,-0.567294359207153,0.28742989897728,-0.771725952625275, +-0.49924436211586,0.223975032567978,-0.837012588977814,-0.620463609695435,0.249555051326752,-0.743469595909119,-0.374589622020721,0.281421601772308,-0.883450269699097,-0.49924436211586,0.223975032567978,-0.837012588977814,-0.476696103811264,0.279724627733231,-0.833375573158264,-0.341366797685623,0.199767112731934,-0.918456137180328,-0.24082750082016,0.20011867582798,-0.949712872505188,-0.359495788812637,0.172736093401909,-0.917019546031952,-0.341366797685623,0.199767112731934,-0.918456137180328,-0.359495788812637,0.172736093401909,-0.917019546031952,-0.381569027900696,0.205083891749382,-0.90130215883255,-0.479574471712112,0.079840324819088,-0.873861372470856,-0.517184615135193,0.199350565671921,-0.832333624362946,-0.48523360490799,-0.00376474647782743,-0.87437641620636,-0.403455168008804,0.0487758703529835,-0.913698375225067,-0.359495788812637,0.172736093401909,-0.917019546031952,-0.479574471712112,0.079840324819088,-0.873861372470856,-0.48523360490799,-0.00376474647782743,-0.87437641620636,-0.517184615135193,0.199350565671921,-0.832333624362946,-0.465259581804276,0.167678162455559,-0.869147539138794,-0.32205519080162,0.307143956422806,-0.895512640476227,-0.181752011179924,0.254600763320923,-0.949812889099121,-0.210870236158371,0.115756496787071,-0.970635890960693,-0.181752011179924,0.254600763320923,-0.949812889099121,-0.182185262441635,0.238073125481606,-0.954007148742676,-0.118243224918842,0.166249886155128,-0.978968560695648,-0.182185262441635,0.238073125481606,-0.954007148742676,-0.202258467674255,0.196689873933792,-0.95937716960907,-0.128864362835884,0.181378453969955,-0.974933743476868,-0.343194842338562,0.147305995225906,-0.927641153335571,-0.465259581804276,0.167678162455559,-0.869147539138794,-0.32205519080162,0.307143956422806,-0.895512640476227,0.0841120108962059,0.350667804479599,-0.932714939117432,-0.0256708655506372,0.32865646481514,-0.944100499153137,0.0998399928212166,0.442542552947998,-0.891172230243683,0.0998399928212166,0.442542552947998,-0.891172230243683,0.104696698486805,0.46525052189827,-0.878965556621552, +0.0667138248682022,0.481915801763535,-0.873674035072327,-0.0944075062870979,0.477216958999634,-0.87369966506958,-0.0203989129513502,0.434973776340485,-0.900211930274963,-0.125513896346092,0.510312020778656,-0.850780665874481,0.00931580178439617,0.345167279243469,-0.938494920730591,-0.0264466032385826,0.4625603556633,-0.886193215847015,-0.00485835550352931,0.318666756153107,-0.947854340076447,-0.0944075062870979,0.477216958999634,-0.87369966506958,0.00931580178439617,0.345167279243469,-0.938494920730591,-0.0203989129513502,0.434973776340485,-0.900211930274963,0.104696698486805,0.46525052189827,-0.878965556621552,0.0429381728172302,0.408539175987244,-0.911730170249939,0.0667138248682022,0.481915801763535,-0.873674035072327,-0.0264466032385826,0.4625603556633,-0.886193215847015,0.0429381728172302,0.408539175987244,-0.911730170249939,-0.00485835550352931,0.318666756153107,-0.947854340076447,-0.125513896346092,0.510312020778656,-0.850780665874481,-0.0899261832237244,0.545823335647583,-0.833060622215271,-0.111527033150196,0.521691560745239,-0.845812976360321,0.0464046820998192,0.593250930309296,-0.8036789894104,0.0300922878086567,0.509351432323456,-0.860032200813293,-0.0443988405168056,0.57828813791275,-0.814623415470123,-0.0899261832237244,0.545823335647583,-0.833060622215271,-0.0443988405168056,0.57828813791275,-0.814623415470123,-0.111527033150196,0.521691560745239,-0.845812976360321,0.0464046820998192,0.593250930309296,-0.8036789894104,0.0172331593930721,0.613473832607269,-0.789526879787445,0.0560904256999493,0.478363424539566,-0.876368761062622,-0.0256708655506372,0.32865646481514,-0.944100499153137,-0.042314276099205,0.172892019152641,-0.98403137922287,-0.153391793370247,0.185495108366013,-0.970598995685577,-0.202258467674255,0.196689873933792,-0.95937716960907,-0.179479107260704,0.308446735143662,-0.934156179428101,-0.153391793370247,0.185495108366013,-0.970598995685577,0.245772704482079,0.327036470174789,-0.912492632865906,0.311076670885086,0.245819509029388,-0.918043553829193,0.259589105844498,0.379739314317703,-0.887925326824188, +0.217794239521027,0.459868609905243,-0.860863745212555,0.259589105844498,0.379739314317703,-0.887925326824188,0.149256482720375,0.507818639278412,-0.848435401916504,0.311076670885086,0.245819509029388,-0.918043553829193,0.329387843608856,0.164050623774529,-0.929833829402924,0.363515496253967,0.190605387091637,-0.911880433559418,0.329387843608856,0.164050623774529,-0.929833829402924,0.276177227497101,0.139958202838898,-0.950861573219299,0.395082414150238,0.178695127367973,-0.901098132133484,0.340565204620361,0.155842304229736,-0.927215397357941,0.276177227497101,0.139958202838898,-0.950861573219299,0.250142753124237,0.118455670773983,-0.960935354232788,0.1971605271101,-0.0840769410133362,-0.976759254932404,0.251138806343079,-0.06365005671978,-0.96585601568222,0.251751840114594,-0.119446843862534,-0.96039229631424,0.152692213654518,-0.4775250852108,-0.865248382091522,0.0842905640602112,-0.524884521961212,-0.846989512443542,0.135532602667809,-0.583601057529449,-0.800650060176849,0.243842989206314,0.0343636274337769,-0.969205558300018,0.174376010894775,0.0569445937871933,-0.983031034469604,0.148978143930435,0.0524243228137493,-0.987449765205383,0.243842989206314,0.0343636274337769,-0.969205558300018,0.185037270188332,-0.104624509811401,-0.97714626789093,0.174376010894775,0.0569445937871933,-0.983031034469604,0.300399273633957,-0.346344381570816,-0.888710141181946,0.317352145910263,-0.338530242443085,-0.8858243227005,0.179484590888023,-0.475493907928467,-0.861214637756348,0.247142925858498,-0.480599373579025,-0.841394364833832,0.179484590888023,-0.475493907928467,-0.861214637756348,0.317352145910263,-0.338530242443085,-0.8858243227005,0.152692213654518,-0.4775250852108,-0.865248382091522,0.135532602667809,-0.583601057529449,-0.800650060176849,0.247142925858498,-0.480599373579025,-0.841394364833832,0.27032345533371,-0.165014952421188,-0.948522627353668,0.270680695772171,-0.149580150842667,-0.950977206230164,0.243842989206314,0.0343636274337769,-0.969205558300018,0.27032345533371,-0.165014952421188,-0.948522627353668,0.301906436681747,-0.300343364477158,-0.904790699481964, +0.270680695772171,-0.149580150842667,-0.950977206230164,0.30616706609726,-0.345672696828842,-0.887001693248749,0.300399273633957,-0.346344381570816,-0.888710141181946,0.301906436681747,-0.300343364477158,-0.904790699481964,0.256005078554153,-0.00341094797477126,-0.966669380664825,0.148978143930435,0.0524243228137493,-0.987449765205383,0.1971605271101,-0.0840769410133362,-0.976759254932404,0.189921692013741,0.0748946219682693,-0.978938460350037,0.416562587022781,0.0665255561470985,-0.906669616699219,0.280791252851486,-0.0434698425233364,-0.958783864974976,0.189921692013741,0.0748946219682693,-0.978938460350037,0.164265379309654,0.102102123200893,-0.98111766576767,0.126733064651489,0.0901472717523575,-0.987832009792328,0.250142753124237,0.118455670773983,-0.960935354232788,0.126733064651489,0.0901472717523575,-0.987832009792328,0.164265379309654,0.102102123200893,-0.98111766576767,0.582524716854095,-0.00388929131440818,-0.812803566455841,0.442906260490417,-0.0844922959804535,-0.892577767372131,0.416562587022781,0.0665255561470985,-0.906669616699219,0.43651008605957,-0.176880329847336,-0.882140696048737,0.547742009162903,-0.0451459661126137,-0.835428237915039,0.420082032680511,-0.0486825406551361,-0.906179368495941,0.547742009162903,-0.0451459661126137,-0.835428237915039,0.442906260490417,-0.0844922959804535,-0.892577767372131,0.582524716854095,-0.00388929131440818,-0.812803566455841,0.109108649194241,-0.0782552808523178,-0.990944683551788,0.295066863298416,0.0225954838097095,-0.955209374427795,0.118938446044922,-0.224728524684906,-0.96713525056839,0.277680784463882,-0.203016042709351,-0.938977003097534,0.303817391395569,-0.190586134791374,-0.933472990989685,0.257441401481628,-0.331933945417404,-0.907493054866791,0.24901095032692,-0.287741720676422,-0.924769282341003,0.257441401481628,-0.331933945417404,-0.907493054866791,0.219698071479797,-0.282016217708588,-0.933916211128235,0.303817391395569,-0.190586134791374,-0.933472990989685,0.277680784463882,-0.203016042709351,-0.938977003097534,0.273255467414856,0.0116297481581569,-0.961871027946472, +0.1971605271101,-0.0840769410133362,-0.976759254932404,0.24901095032692,-0.287741720676422,-0.924769282341003,0.219698071479797,-0.282016217708588,-0.933916211128235,0.0421671755611897,0.441522121429443,-0.896258890628815,-0.055801760405302,0.438394874334335,-0.897048473358154,0.0560904256999493,0.478363424539566,-0.876368761062622,0.0165555197745562,0.519998371601105,-0.854006707668304,-0.0617020204663277,0.421302378177643,-0.904818832874298,0.0421671755611897,0.441522121429443,-0.896258890628815,-0.158188968896866,0.655032992362976,-0.73885577917099,-0.231650456786156,0.651767194271088,-0.722175478935242,-0.203289449214935,0.687106251716614,-0.697537302970886,-0.190784946084023,0.628465235233307,-0.754077255725861,-0.203289449214935,0.687106251716614,-0.697537302970886,-0.154093876481056,0.615286469459534,-0.773096024990082,0.0644592642784119,0.579304277896881,-0.812558531761169,-0.0585561767220497,0.592913091182709,-0.803134620189667,-0.158188968896866,0.655032992362976,-0.73885577917099,0.0644592642784119,0.579304277896881,-0.812558531761169,0.0165555197745562,0.519998371601105,-0.854006707668304,0.162710919976234,0.545769035816193,-0.821986138820648,-0.154093876481056,0.615286469459534,-0.773096024990082,-0.0330772809684277,0.586258292198181,-0.809448540210724,-0.0976949036121368,0.619888067245483,-0.778584837913513,-0.0330772809684277,0.586258292198181,-0.809448540210724,-0.141215786337852,0.507035434246063,-0.850278198719025,0.0326701775193214,0.51486337184906,-0.856649398803711,-0.190784946084023,0.628465235233307,-0.754077255725861,-0.154093876481056,0.615286469459534,-0.773096024990082,-0.0976949036121368,0.619888067245483,-0.778584837913513,0.113827288150787,0.46597158908844,-0.877447247505188,0.184381723403931,0.493020862340927,-0.850255072116852,0.0326701775193214,0.51486337184906,-0.856649398803711,0.107410214841366,0.460148304700851,-0.881320834159851,0.184381723403931,0.493020862340927,-0.850255072116852,0.113827288150787,0.46597158908844,-0.877447247505188,0.107410214841366,0.460148304700851,-0.881320834159851, +-0.0219970885664225,0.485970467329025,-0.87369829416275,-0.103525370359421,0.469133138656616,-0.877038478851318,-0.134978428483009,0.393247842788696,-0.909470617771149,-0.0490369684994221,0.366032779216766,-0.929309070110321,-0.103525370359421,0.469133138656616,-0.877038478851318,0.0809670984745026,0.690223693847656,-0.719051778316498,0.028319900855422,0.747097074985504,-0.664111256599426,0.0783103406429291,0.798951148986816,-0.596275448799133,0.125209182500839,0.576091349124908,-0.807738363742828,0.149256482720375,0.507818639278412,-0.848435401916504,0.077311635017395,0.623962104320526,-0.777620792388916,0.125209182500839,0.576091349124908,-0.807738363742828,0.077311635017395,0.623962104320526,-0.777620792388916,0.0809670984745026,0.690223693847656,-0.719051778316498,-0.0520661100745201,0.270327210426331,-0.961359560489655,-0.134978428483009,0.393247842788696,-0.909470617771149,-0.0499275103211403,0.325404942035675,-0.944255650043488,-0.0520661100745201,0.270327210426331,-0.961359560489655,0.00891067180782557,0.246738001704216,-0.969041228294373,0.081113189458847,0.261198848485947,-0.961870968341827,0.0117416139692068,0.353190153837204,-0.93547785282135,0.081113189458847,0.261198848485947,-0.961870968341827,0.132264003157616,0.2801713347435,-0.950794458389282,0.132264003157616,0.2801713347435,-0.950794458389282,0.141405865550041,0.303388297557831,-0.942316174507141,0.0938742309808731,0.577090561389923,-0.811266899108887,0.150669768452644,0.868620932102203,-0.472012996673584,0.14184333384037,0.841224908828735,-0.521748006343842,0.051359448581934,0.86378675699234,-0.501232981681824,0.051359448581934,0.86378675699234,-0.501232981681824,0.14184333384037,0.841224908828735,-0.521748006343842,0.0783103406429291,0.798951148986816,-0.596275448799133,0.141405865550041,0.303388297557831,-0.942316174507141,0.146435469388962,0.166684910655022,-0.975075721740723,0.14376375079155,0.631109893321991,-0.762254595756531,0.0449777655303478,0.775016069412231,-0.630338728427887,0.14376375079155,0.631109893321991,-0.762254595756531,0.127315700054169,0.455343872308731,-0.881165444850922, +0.041690893471241,0.912496328353882,-0.406954914331436,0.068872444331646,0.739230394363403,-0.669921517372131,0.145574554800987,0.894787490367889,-0.422093868255615,0.0449777655303478,0.775016069412231,-0.630338728427887,0.068872444331646,0.739230394363403,-0.669921517372131,0.041690893471241,0.912496328353882,-0.406954914331436,0.130615413188934,0.905993640422821,-0.402635097503662,0.145574554800987,0.894787490367889,-0.422093868255615,0.206630825996399,0.885350465774536,-0.416483044624329,0.130615413188934,0.905993640422821,-0.402635097503662,0.206630825996399,0.885350465774536,-0.416483044624329,0.150669768452644,0.868620932102203,-0.472012996673584,0.0842905640602112,-0.524884521961212,-0.846989512443542,0.0526083260774612,-0.359533786773682,-0.931647837162018,0.0384762585163116,-0.425168365240097,-0.904296040534973,0.0526083260774612,-0.359533786773682,-0.931647837162018,0.145978778600693,-0.310242980718613,-0.939382433891296,0.0351591259241104,-0.332751035690308,-0.942359030246735,-0.707461059093475,-0.697520315647125,-0.113860070705414,-0.721313536167145,-0.648110806941986,-0.244251906871796,-0.753858625888824,-0.645930826663971,-0.120292723178864,-0.707461059093475,-0.697520315647125,-0.113860070705414,-0.753858625888824,-0.645930826663971,-0.120292723178864,-0.732737362384796,-0.67966103553772,-0.0340100862085819,-0.709980010986328,-0.648937225341797,-0.273512065410614,-0.686670422554016,-0.670660972595215,-0.280530393123627,-0.721313536167145,-0.648110806941986,-0.244251906871796,-0.732737362384796,-0.67966103553772,-0.0340100862085819,-0.753858625888824,-0.645930826663971,-0.120292723178864,-0.807731986045837,-0.572676241397858,-0.140038445591927,-0.796301066875458,-0.355096608400345,-0.48970502614975,-0.696937918663025,-0.500852227210999,-0.513249039649963,-0.764569163322449,-0.547679662704468,-0.339824676513672,-0.738112688064575,-0.345472067594528,-0.579515755176544,-0.680112481117249,-0.365087151527405,-0.635734379291534,-0.696937918663025,-0.500852227210999,-0.513249039649963,-0.807731986045837,-0.572676241397858,-0.140038445591927, +-0.841010451316834,-0.418781876564026,-0.342524528503418,-0.764569163322449,-0.547679662704468,-0.339824676513672,-0.714335501194,-0.350056111812592,-0.605958223342896,-0.680112481117249,-0.365087151527405,-0.635734379291534,-0.738112688064575,-0.345472067594528,-0.579515755176544,-0.728525221347809,-0.341461420059204,-0.593847572803497,-0.714335501194,-0.350056111812592,-0.605958223342896,-0.769528567790985,-0.325080960988998,-0.549679934978485,-0.820508658885956,-0.0288491025567055,-0.57090550661087,-0.768902182579041,-0.0854398906230927,-0.633631825447083,-0.814932405948639,-0.177214056253433,-0.551797211170197,-0.820508658885956,-0.0288491025567055,-0.57090550661087,-0.79567152261734,-0.0332467146217823,-0.604815125465393,-0.785987198352814,-0.00913459062576294,-0.618175148963928,-0.728525221347809,-0.341461420059204,-0.593847572803497,-0.81019252538681,-0.284150660037994,-0.512685418128967,-0.814932405948639,-0.177214056253433,-0.551797211170197,-0.785987198352814,-0.00913459062576294,-0.618175148963928,-0.79567152261734,-0.0332467146217823,-0.604815125465393,-0.790190577507019,-0.0503391101956367,-0.610790193080902,-0.790190577507019,-0.0503391101956367,-0.610790193080902,-0.765288531780243,-0.0774822980165482,-0.639006972312927,-0.729910314083099,0.0196501463651657,-0.683260321617126,-0.703299880027771,0.218025088310242,-0.676634550094604,-0.729910314083099,0.0196501463651657,-0.683260321617126,-0.725067019462585,0.0398560464382172,-0.687523901462555,-0.661129117012024,0.173904687166214,-0.729839205741882,-0.703299880027771,0.218025088310242,-0.676634550094604,-0.620463609695435,0.249555051326752,-0.743469595909119,-0.38342347741127,0.296858817338943,-0.87456339597702,-0.316776245832443,0.27074271440506,-0.909038543701172,-0.374589622020721,0.281421601772308,-0.883450269699097,-0.311618268489838,0.227317720651627,-0.922616183757782,-0.258421897888184,0.215101644396782,-0.941779851913452,-0.316776245832443,0.27074271440506,-0.909038543701172,-0.24082750082016,0.20011867582798,-0.949712872505188,-0.311618268489838,0.227317720651627,-0.922616183757782, +-0.359495788812637,0.172736093401909,-0.917019546031952,-0.567294359207153,0.28742989897728,-0.771725952625275,-0.476696103811264,0.279724627733231,-0.833375573158264,-0.49924436211586,0.223975032567978,-0.837012588977814,-0.626412272453308,0.258413285017014,-0.735411584377289,-0.567294359207153,0.28742989897728,-0.771725952625275,-0.620463609695435,0.249555051326752,-0.743469595909119,-0.374589622020721,0.281421601772308,-0.883450269699097,-0.476696103811264,0.279724627733231,-0.833375573158264,-0.477742105722427,0.331003367900848,-0.813756227493286,-0.442097932100296,0.211761683225632,-0.871611297130585,-0.517184615135193,0.199350565671921,-0.832333624362946,-0.479574471712112,0.079840324819088,-0.873861372470856,-0.442097932100296,0.211761683225632,-0.871611297130585,-0.479574471712112,0.079840324819088,-0.873861372470856,-0.359495788812637,0.172736093401909,-0.917019546031952,-0.488095015287399,0.365400373935699,-0.792619526386261,-0.465259581804276,0.167678162455559,-0.869147539138794,-0.517184615135193,0.199350565671921,-0.832333624362946,-0.32205519080162,0.307143956422806,-0.895512640476227,-0.249936982989311,0.290754944086075,-0.923576176166534,-0.181752011179924,0.254600763320923,-0.949812889099121,-0.182185262441635,0.238073125481606,-0.954007148742676,-0.181752011179924,0.254600763320923,-0.949812889099121,-0.249936982989311,0.290754944086075,-0.923576176166534,-0.249936982989311,0.290754944086075,-0.923576176166534,-0.202258467674255,0.196689873933792,-0.95937716960907,-0.182185262441635,0.238073125481606,-0.954007148742676,-0.32205519080162,0.307143956422806,-0.895512640476227,-0.465259581804276,0.167678162455559,-0.869147539138794,-0.488095015287399,0.365400373935699,-0.792619526386261,-0.000542218796908855,0.447522521018982,-0.894272446632385,0.0998399928212166,0.442542552947998,-0.891172230243683,-0.0256708655506372,0.32865646481514,-0.944100499153137,0.104696698486805,0.46525052189827,-0.878965556621552,0.0998399928212166,0.442542552947998,-0.891172230243683,0.000166903089848347,0.474847018718719,-0.880068242549896, +0.013543919660151,0.511228442192078,-0.859338045120239,-0.125513896346092,0.510312020778656,-0.850780665874481,-0.0203989129513502,0.434973776340485,-0.900211930274963,0.00931580178439617,0.345167279243469,-0.938494920730591,-0.00485835550352931,0.318666756153107,-0.947854340076447,-0.0160595346242189,0.282653510570526,-0.959087610244751,0.105422720313072,0.385569334030151,-0.916636347770691,-0.0203989129513502,0.434973776340485,-0.900211930274963,0.00931580178439617,0.345167279243469,-0.938494920730591,-0.00986569561064243,0.402109563350677,-0.915538311004639,0.0429381728172302,0.408539175987244,-0.911730170249939,0.104696698486805,0.46525052189827,-0.878965556621552,-0.00485835550352931,0.318666756153107,-0.947854340076447,0.0429381728172302,0.408539175987244,-0.911730170249939,-0.0699270665645599,0.332696467638016,-0.940437734127045,0.013543919660151,0.511228442192078,-0.859338045120239,-0.0899261832237244,0.545823335647583,-0.833060622215271,-0.125513896346092,0.510312020778656,-0.850780665874481,0.0899718105792999,0.689556300640106,-0.718621611595154,0.0464046820998192,0.593250930309296,-0.8036789894104,-0.0443988405168056,0.57828813791275,-0.814623415470123,0.000189732090802863,0.579126834869385,-0.815237402915955,-0.0443988405168056,0.57828813791275,-0.814623415470123,-0.0899261832237244,0.545823335647583,-0.833060622215271,0.0464046820998192,0.593250930309296,-0.8036789894104,0.0144402859732509,0.706797480583191,-0.707268416881561,0.0172331593930721,0.613473832607269,-0.789526879787445,0.0115436622872949,0.594660758972168,-0.803893804550171,0.0560904256999493,0.478363424539566,-0.876368761062622,0.0172331593930721,0.613473832607269,-0.789526879787445,-0.179479107260704,0.308446735143662,-0.934156179428101,-0.0256708655506372,0.32865646481514,-0.944100499153137,-0.153391793370247,0.185495108366013,-0.970598995685577,-0.179479107260704,0.308446735143662,-0.934156179428101,-0.202258467674255,0.196689873933792,-0.95937716960907,-0.273185729980469,0.292153924703598,-0.916523575782776,0.311076670885086,0.245819509029388,-0.918043553829193, +0.245772704482079,0.327036470174789,-0.912492632865906,0.21723809838295,0.234925359487534,-0.947426855564117,0.245772704482079,0.327036470174789,-0.912492632865906,0.259589105844498,0.379739314317703,-0.887925326824188,0.282828271389008,0.458768546581268,-0.842341661453247,0.259589105844498,0.379739314317703,-0.887925326824188,0.217794239521027,0.459868609905243,-0.860863745212555,0.282828271389008,0.458768546581268,-0.842341661453247,0.217794239521027,0.459868609905243,-0.860863745212555,0.149256482720375,0.507818639278412,-0.848435401916504,0.125209182500839,0.576091349124908,-0.807738363742828,0.21723809838295,0.234925359487534,-0.947426855564117,0.329387843608856,0.164050623774529,-0.929833829402924,0.311076670885086,0.245819509029388,-0.918043553829193,0.200206086039543,0.1592066437006,-0.96673196554184,0.276177227497101,0.139958202838898,-0.950861573219299,0.329387843608856,0.164050623774529,-0.929833829402924,0.253347367048264,0.0762910544872284,-0.964362323284149,0.250142753124237,0.118455670773983,-0.960935354232788,0.276177227497101,0.139958202838898,-0.950861573219299,0.152692213654518,-0.4775250852108,-0.865248382091522,0.0526083260774612,-0.359533786773682,-0.931647837162018,0.0842905640602112,-0.524884521961212,-0.846989512443542,0.243842989206314,0.0343636274337769,-0.969205558300018,0.148978143930435,0.0524243228137493,-0.987449765205383,0.256005078554153,-0.00341094797477126,-0.966669380664825,0.30616706609726,-0.345672696828842,-0.887001693248749,0.317352145910263,-0.338530242443085,-0.8858243227005,0.300399273633957,-0.346344381570816,-0.888710141181946,0.243842989206314,0.0343636274337769,-0.969205558300018,0.245440110564232,-0.0114840241149068,-0.969343721866608,0.27032345533371,-0.165014952421188,-0.948522627353668,0.27032345533371,-0.165014952421188,-0.948522627353668,0.238248690962791,-0.261111497879028,-0.935445487499237,0.301906436681747,-0.300343364477158,-0.904790699481964,0.238248690962791,-0.261111497879028,-0.935445487499237,0.30616706609726,-0.345672696828842,-0.887001693248749,0.301906436681747,-0.300343364477158,-0.904790699481964, +0.256005078554153,-0.00341094797477126,-0.966669380664825,0.1971605271101,-0.0840769410133362,-0.976759254932404,0.27166748046875,-0.23736771941185,-0.932659208774567,0.189921692013741,0.0748946219682693,-0.978938460350037,0.285416543483734,0.128252550959587,-0.949783444404602,0.416562587022781,0.0665255561470985,-0.906669616699219,0.285416543483734,0.128252550959587,-0.949783444404602,0.189921692013741,0.0748946219682693,-0.978938460350037,0.126733064651489,0.0901472717523575,-0.987832009792328,0.285416543483734,0.128252550959587,-0.949783444404602,0.126733064651489,0.0901472717523575,-0.987832009792328,0.250142753124237,0.118455670773983,-0.960935354232788,0.257441401481628,-0.331933945417404,-0.907493054866791,0.303817391395569,-0.190586134791374,-0.933472990989685,0.26255190372467,-0.235285311937332,-0.935792326927185,0.257441401481628,-0.331933945417404,-0.907493054866791,0.27166748046875,-0.23736771941185,-0.932659208774567,0.219698071479797,-0.282016217708588,-0.933916211128235,0.219698071479797,-0.282016217708588,-0.933916211128235,0.27166748046875,-0.23736771941185,-0.932659208774567,0.1971605271101,-0.0840769410133362,-0.976759254932404,0.0421671755611897,0.441522121429443,-0.896258890628815,0.0560904256999493,0.478363424539566,-0.876368761062622,0.0115436622872949,0.594660758972168,-0.803893804550171,0.162710919976234,0.545769035816193,-0.821986138820648,0.0165555197745562,0.519998371601105,-0.854006707668304,0.0421671755611897,0.441522121429443,-0.896258890628815,-0.158188968896866,0.655032992362976,-0.73885577917099,-0.197384193539619,0.626472651958466,-0.754036664962769,-0.231650456786156,0.651767194271088,-0.722175478935242,-0.154093876481056,0.615286469459534,-0.773096024990082,-0.203289449214935,0.687106251716614,-0.697537302970886,-0.231650456786156,0.651767194271088,-0.722175478935242,-0.0061349319294095,0.594694137573242,-0.803928554058075,-0.0585561767220497,0.592913091182709,-0.803134620189667,0.0644592642784119,0.579304277896881,-0.812558531761169,-0.158188968896866,0.655032992362976,-0.73885577917099, +-0.0585561767220497,0.592913091182709,-0.803134620189667,-0.197384193539619,0.626472651958466,-0.754036664962769,0.162710919976234,0.545769035816193,-0.821986138820648,0.0947261080145836,0.629671037197113,-0.77106499671936,0.0644592642784119,0.579304277896881,-0.812558531761169,-0.154093876481056,0.615286469459534,-0.773096024990082,-0.141215786337852,0.507035434246063,-0.850278198719025,-0.0330772809684277,0.586258292198181,-0.809448540210724,0.0326701775193214,0.51486337184906,-0.856649398803711,-0.141215786337852,0.507035434246063,-0.850278198719025,-0.0545643195509911,0.47191846370697,-0.879952013492584,0.113827288150787,0.46597158908844,-0.877447247505188,0.0326701775193214,0.51486337184906,-0.856649398803711,-0.0545643195509911,0.47191846370697,-0.879952013492584,0.107410214841366,0.460148304700851,-0.881320834159851,0.113827288150787,0.46597158908844,-0.877447247505188,0.0941384360194206,0.449193030595779,-0.888461291790009,0.107410214841366,0.460148304700851,-0.881320834159851,0.0941384360194206,0.449193030595779,-0.888461291790009,-0.0219970885664225,0.485970467329025,-0.87369829416275,-0.191522747278214,0.501959383487701,-0.843419015407562,-0.103525370359421,0.469133138656616,-0.877038478851318,-0.0219970885664225,0.485970467329025,-0.87369829416275,-0.134978428483009,0.393247842788696,-0.909470617771149,-0.103525370359421,0.469133138656616,-0.877038478851318,-0.207767322659492,0.468985825777054,-0.858420014381409,0.0809670984745026,0.690223693847656,-0.719051778316498,0.0783103406429291,0.798951148986816,-0.596275448799133,0.193561151623726,0.654367566108704,-0.730983674526215,0.193561151623726,0.654367566108704,-0.730983674526215,0.125209182500839,0.576091349124908,-0.807738363742828,0.0809670984745026,0.690223693847656,-0.719051778316498,-0.134978428483009,0.393247842788696,-0.909470617771149,-0.177309766411781,0.391728729009628,-0.902834236621857,-0.0499275103211403,0.325404942035675,-0.944255650043488,-0.0520661100745201,0.270327210426331,-0.961359560489655,-0.0499275103211403,0.325404942035675,-0.944255650043488, +0.00891067180782557,0.246738001704216,-0.969041228294373,0.0836164504289627,0.212129175662994,-0.973657727241516,0.081113189458847,0.261198848485947,-0.961870968341827,0.00891067180782557,0.246738001704216,-0.969041228294373,0.132264003157616,0.2801713347435,-0.950794458389282,0.081113189458847,0.261198848485947,-0.961870968341827,0.0836164504289627,0.212129175662994,-0.973657727241516,0.0836164504289627,0.212129175662994,-0.973657727241516,0.141405865550041,0.303388297557831,-0.942316174507141,0.132264003157616,0.2801713347435,-0.950794458389282,0.14184333384037,0.841224908828735,-0.521748006343842,0.150669768452644,0.868620932102203,-0.472012996673584,0.17836457490921,0.830098927021027,-0.528319656848907,0.14184333384037,0.841224908828735,-0.521748006343842,0.177611023187637,0.79032039642334,-0.586385369300842,0.0783103406429291,0.798951148986816,-0.596275448799133,0.141405865550041,0.303388297557831,-0.942316174507141,0.047809362411499,0.140526458621025,-0.988921880722046,0.146435469388962,0.166684910655022,-0.975075721740723,0.127315700054169,0.455343872308731,-0.881165444850922,0.14376375079155,0.631109893321991,-0.762254595756531,0.146435469388962,0.166684910655022,-0.975075721740723,0.0822190269827843,0.34711366891861,-0.93421196937561,0.0449777655303478,0.775016069412231,-0.630338728427887,0.127315700054169,0.455343872308731,-0.881165444850922,0.068872444331646,0.739230394363403,-0.669921517372131,0.182423129677773,0.732101857662201,-0.656314313411713,0.145574554800987,0.894787490367889,-0.422093868255615,0.0449777655303478,0.775016069412231,-0.630338728427887,0.0822190269827843,0.34711366891861,-0.93421196937561,0.068872444331646,0.739230394363403,-0.669921517372131,0.145574554800987,0.894787490367889,-0.422093868255615,0.18874517083168,0.856211006641388,-0.480913549661636,0.206630825996399,0.885350465774536,-0.416483044624329,0.206630825996399,0.885350465774536,-0.416483044624329,0.17630472779274,0.862239241600037,-0.474826335906982,0.150669768452644,0.868620932102203,-0.472012996673584,0.0526083260774612,-0.359533786773682,-0.931647837162018, +0.152692213654518,-0.4775250852108,-0.865248382091522,0.145978778600693,-0.310242980718613,-0.939382433891296,-0.686670422554016,-0.670660972595215,-0.280530393123627,-0.753858625888824,-0.645930826663971,-0.120292723178864,-0.721313536167145,-0.648110806941986,-0.244251906871796,-0.686670422554016,-0.670660972595215,-0.280530393123627,-0.709980010986328,-0.648937225341797,-0.273512065410614,-0.630820453166962,-0.675974369049072,-0.3809514939785,-0.807731986045837,-0.572676241397858,-0.140038445591927,-0.753858625888824,-0.645930826663971,-0.120292723178864,-0.847623586654663,-0.5107461810112,-0.143779441714287,-0.796301066875458,-0.355096608400345,-0.48970502614975,-0.738112688064575,-0.345472067594528,-0.579515755176544,-0.696937918663025,-0.500852227210999,-0.513249039649963,-0.796301066875458,-0.355096608400345,-0.48970502614975,-0.764569163322449,-0.547679662704468,-0.339824676513672,-0.841010451316834,-0.418781876564026,-0.342524528503418,-0.867249131202698,-0.427464753389359,-0.255250215530396,-0.841010451316834,-0.418781876564026,-0.342524528503418,-0.807731986045837,-0.572676241397858,-0.140038445591927,-0.777840971946716,-0.308122664690018,-0.547744274139404,-0.714335501194,-0.350056111812592,-0.605958223342896,-0.738112688064575,-0.345472067594528,-0.579515755176544,-0.769528567790985,-0.325080960988998,-0.549679934978485,-0.714335501194,-0.350056111812592,-0.605958223342896,-0.777840971946716,-0.308122664690018,-0.547744274139404,-0.728525221347809,-0.341461420059204,-0.593847572803497,-0.769528567790985,-0.325080960988998,-0.549679934978485,-0.81019252538681,-0.284150660037994,-0.512685418128967,-0.814932405948639,-0.177214056253433,-0.551797211170197,-0.829710245132446,-0.105257369577885,-0.548180282115936,-0.820508658885956,-0.0288491025567055,-0.57090550661087,-0.820508658885956,-0.0288491025567055,-0.57090550661087,-0.79373174905777,-0.0558961443603039,-0.605694115161896,-0.79567152261734,-0.0332467146217823,-0.604815125465393,-0.81019252538681,-0.284150660037994,-0.512685418128967,-0.805203318595886,-0.242186084389687,-0.541288733482361, +-0.814932405948639,-0.177214056253433,-0.551797211170197,-0.79567152261734,-0.0332467146217823,-0.604815125465393,-0.765288531780243,-0.0774822980165482,-0.639006972312927,-0.790190577507019,-0.0503391101956367,-0.610790193080902,-0.765288531780243,-0.0774822980165482,-0.639006972312927,-0.727667272090912,-0.0976634845137596,-0.678941786289215,-0.729910314083099,0.0196501463651657,-0.683260321617126,-0.725067019462585,0.0398560464382172,-0.687523901462555,-0.729910314083099,0.0196501463651657,-0.683260321617126,-0.727667272090912,-0.0976634845137596,-0.678941786289215,-0.703299880027771,0.218025088310242,-0.676634550094604,-0.725067019462585,0.0398560464382172,-0.687523901462555,-0.746069014072418,0.192800581455231,-0.637345135211945,-0.689162313938141,0.254996597766876,-0.678256452083588,-0.620463609695435,0.249555051326752,-0.743469595909119,-0.703299880027771,0.218025088310242,-0.676634550094604,-0.38342347741127,0.296858817338943,-0.87456339597702,-0.399067163467407,0.263866394758224,-0.878134250640869,-0.316776245832443,0.27074271440506,-0.909038543701172,-0.477742105722427,0.331003367900848,-0.813756227493286,-0.38342347741127,0.296858817338943,-0.87456339597702,-0.374589622020721,0.281421601772308,-0.883450269699097,-0.316776245832443,0.27074271440506,-0.909038543701172,-0.399067163467407,0.263866394758224,-0.878134250640869,-0.311618268489838,0.227317720651627,-0.922616183757782,-0.442097932100296,0.211761683225632,-0.871611297130585,-0.359495788812637,0.172736093401909,-0.917019546031952,-0.311618268489838,0.227317720651627,-0.922616183757782,-0.476696103811264,0.279724627733231,-0.833375573158264,-0.567294359207153,0.28742989897728,-0.771725952625275,-0.477742105722427,0.331003367900848,-0.813756227493286,-0.626412272453308,0.258413285017014,-0.735411584377289,-0.570963501930237,0.311317831277847,-0.759658932685852,-0.567294359207153,0.28742989897728,-0.771725952625275,-0.620463609695435,0.249555051326752,-0.743469595909119,-0.689162313938141,0.254996597766876,-0.678256452083588,-0.626412272453308,0.258413285017014,-0.735411584377289, +-0.442097932100296,0.211761683225632,-0.871611297130585,-0.475117683410645,0.360979676246643,-0.80246913433075,-0.517184615135193,0.199350565671921,-0.832333624362946,-0.475117683410645,0.360979676246643,-0.80246913433075,-0.488095015287399,0.365400373935699,-0.792619526386261,-0.517184615135193,0.199350565671921,-0.832333624362946,-0.328802525997162,0.341832786798477,-0.8803631067276,-0.249936982989311,0.290754944086075,-0.923576176166534,-0.32205519080162,0.307143956422806,-0.895512640476227,-0.249936982989311,0.290754944086075,-0.923576176166534,-0.273185729980469,0.292153924703598,-0.916523575782776,-0.202258467674255,0.196689873933792,-0.95937716960907,-0.488095015287399,0.365400373935699,-0.792619526386261,-0.408066272735596,0.372742533683777,-0.833393514156342,-0.32205519080162,0.307143956422806,-0.895512640476227,0.000166903089848347,0.474847018718719,-0.880068242549896,0.0998399928212166,0.442542552947998,-0.891172230243683,-0.000542218796908855,0.447522521018982,-0.894272446632385,-0.090704120695591,0.432263106107712,-0.897174060344696,-0.000542218796908855,0.447522521018982,-0.894272446632385,-0.0256708655506372,0.32865646481514,-0.944100499153137,0.000166903089848347,0.474847018718719,-0.880068242549896,-0.00986569561064243,0.402109563350677,-0.915538311004639,0.104696698486805,0.46525052189827,-0.878965556621552,-0.0203989129513502,0.434973776340485,-0.900211930274963,0.143232017755508,0.448651492595673,-0.88215434551239,0.013543919660151,0.511228442192078,-0.859338045120239,-0.00485835550352931,0.318666756153107,-0.947854340076447,-0.0699270665645599,0.332696467638016,-0.940437734127045,-0.0160595346242189,0.282653510570526,-0.959087610244751,0.0831344351172447,0.375404179096222,-0.923125267028809,0.00931580178439617,0.345167279243469,-0.938494920730591,-0.0160595346242189,0.282653510570526,-0.959087610244751,-0.0203989129513502,0.434973776340485,-0.900211930274963,0.105422720313072,0.385569334030151,-0.916636347770691,0.143232017755508,0.448651492595673,-0.88215434551239,0.0831344351172447,0.375404179096222,-0.923125267028809, +0.105422720313072,0.385569334030151,-0.916636347770691,0.00931580178439617,0.345167279243469,-0.938494920730591,-0.00986569561064243,0.402109563350677,-0.915538311004639,-0.0699270665645599,0.332696467638016,-0.940437734127045,0.0429381728172302,0.408539175987244,-0.911730170249939,0.013543919660151,0.511228442192078,-0.859338045120239,0.000189732090802863,0.579126834869385,-0.815237402915955,-0.0899261832237244,0.545823335647583,-0.833060622215271,0.0464046820998192,0.593250930309296,-0.8036789894104,0.0899718105792999,0.689556300640106,-0.718621611595154,0.0144402859732509,0.706797480583191,-0.707268416881561,0.0899718105792999,0.689556300640106,-0.718621611595154,-0.0443988405168056,0.57828813791275,-0.814623415470123,0.0609245635569096,0.627946496009827,-0.775868058204651,0.0609245635569096,0.627946496009827,-0.775868058204651,-0.0443988405168056,0.57828813791275,-0.814623415470123,0.000189732090802863,0.579126834869385,-0.815237402915955,0.0172331593930721,0.613473832607269,-0.789526879787445,0.0144402859732509,0.706797480583191,-0.707268416881561,0.0115436622872949,0.594660758972168,-0.803893804550171,-0.179479107260704,0.308446735143662,-0.934156179428101,-0.090704120695591,0.432263106107712,-0.897174060344696,-0.0256708655506372,0.32865646481514,-0.944100499153137,-0.179479107260704,0.308446735143662,-0.934156179428101,-0.273185729980469,0.292153924703598,-0.916523575782776,-0.275782346725464,0.37946355342865,-0.883148550987244,0.245772704482079,0.327036470174789,-0.912492632865906,0.172625318169594,0.2958764731884,-0.939498543739319,0.21723809838295,0.234925359487534,-0.947426855564117,0.199226588010788,0.412119477987289,-0.889081656932831,0.245772704482079,0.327036470174789,-0.912492632865906,0.282828271389008,0.458768546581268,-0.842341661453247,0.282828271389008,0.458768546581268,-0.842341661453247,0.217794239521027,0.459868609905243,-0.860863745212555,0.213938504457474,0.528550863265991,-0.821501135826111,0.217794239521027,0.459868609905243,-0.860863745212555,0.125209182500839,0.576091349124908,-0.807738363742828, +0.213938504457474,0.528550863265991,-0.821501135826111,0.329387843608856,0.164050623774529,-0.929833829402924,0.21723809838295,0.234925359487534,-0.947426855564117,0.200206086039543,0.1592066437006,-0.96673196554184,0.200206086039543,0.1592066437006,-0.96673196554184,0.164219051599503,0.0938690081238747,-0.981947243213654,0.276177227497101,0.139958202838898,-0.950861573219299,0.164219051599503,0.0938690081238747,-0.981947243213654,0.253347367048264,0.0762910544872284,-0.964362323284149,0.276177227497101,0.139958202838898,-0.950861573219299,0.243842989206314,0.0343636274337769,-0.969205558300018,0.256005078554153,-0.00341094797477126,-0.966669380664825,0.245440110564232,-0.0114840241149068,-0.969343721866608,0.27032345533371,-0.165014952421188,-0.948522627353668,0.245440110564232,-0.0114840241149068,-0.969343721866608,0.238248690962791,-0.261111497879028,-0.935445487499237,0.26255190372467,-0.235285311937332,-0.935792326927185,0.256005078554153,-0.00341094797477126,-0.966669380664825,0.27166748046875,-0.23736771941185,-0.932659208774567,0.27166748046875,-0.23736771941185,-0.932659208774567,0.257441401481628,-0.331933945417404,-0.907493054866791,0.26255190372467,-0.235285311937332,-0.935792326927185,0.0115436622872949,0.594660758972168,-0.803893804550171,0.118106588721275,0.552553534507751,-0.825066804885864,0.0421671755611897,0.441522121429443,-0.896258890628815,0.118106588721275,0.552553534507751,-0.825066804885864,0.162710919976234,0.545769035816193,-0.821986138820648,0.0421671755611897,0.441522121429443,-0.896258890628815,-0.197384193539619,0.626472651958466,-0.754036664962769,-0.227369546890259,0.642778098583221,-0.731532096862793,-0.231650456786156,0.651767194271088,-0.722175478935242,-0.154093876481056,0.615286469459534,-0.773096024990082,-0.231650456786156,0.651767194271088,-0.722175478935242,-0.232771098613739,0.586548566818237,-0.775743663311005,-0.0061349319294095,0.594694137573242,-0.803928554058075,-0.102209933102131,0.619033217430115,-0.778685331344604,-0.0585561767220497,0.592913091182709,-0.803134620189667, +-0.0061349319294095,0.594694137573242,-0.803928554058075,0.0644592642784119,0.579304277896881,-0.812558531761169,0.0947261080145836,0.629671037197113,-0.77106499671936,-0.0585561767220497,0.592913091182709,-0.803134620189667,-0.102209933102131,0.619033217430115,-0.778685331344604,-0.197384193539619,0.626472651958466,-0.754036664962769,0.118106588721275,0.552553534507751,-0.825066804885864,0.0947261080145836,0.629671037197113,-0.77106499671936,0.162710919976234,0.545769035816193,-0.821986138820648,-0.154093876481056,0.615286469459534,-0.773096024990082,-0.232771098613739,0.586548566818237,-0.775743663311005,-0.141215786337852,0.507035434246063,-0.850278198719025,-0.141215786337852,0.507035434246063,-0.850278198719025,-0.163795679807663,0.577560067176819,-0.799746930599213,-0.0545643195509911,0.47191846370697,-0.879952013492584,0.100423559546471,0.472816050052643,-0.875419855117798,0.113827288150787,0.46597158908844,-0.877447247505188,-0.0545643195509911,0.47191846370697,-0.879952013492584,0.0941384360194206,0.449193030595779,-0.888461291790009,0.113827288150787,0.46597158908844,-0.877447247505188,0.100423559546471,0.472816050052643,-0.875419855117798,0.168424054980278,0.489645481109619,-0.855500161647797,-0.0219970885664225,0.485970467329025,-0.87369829416275,0.0941384360194206,0.449193030595779,-0.888461291790009,-0.191522747278214,0.501959383487701,-0.843419015407562,-0.207767322659492,0.468985825777054,-0.858420014381409,-0.103525370359421,0.469133138656616,-0.877038478851318,-0.104390777647495,0.543756425380707,-0.832725286483765,-0.191522747278214,0.501959383487701,-0.843419015407562,-0.0219970885664225,0.485970467329025,-0.87369829416275,-0.134978428483009,0.393247842788696,-0.909470617771149,-0.207767322659492,0.468985825777054,-0.858420014381409,-0.177309766411781,0.391728729009628,-0.902834236621857,0.177611023187637,0.79032039642334,-0.586385369300842,0.193561151623726,0.654367566108704,-0.730983674526215,0.0783103406429291,0.798951148986816,-0.596275448799133,0.193561151623726,0.654367566108704,-0.730983674526215, +0.213938504457474,0.528550863265991,-0.821501135826111,0.125209182500839,0.576091349124908,-0.807738363742828,-0.0499275103211403,0.325404942035675,-0.944255650043488,-0.177309766411781,0.391728729009628,-0.902834236621857,-0.147074237465858,0.288875013589859,-0.946002244949341,0.00891067180782557,0.246738001704216,-0.969041228294373,-0.0499275103211403,0.325404942035675,-0.944255650043488,-0.147074237465858,0.288875013589859,-0.946002244949341,0.0836164504289627,0.212129175662994,-0.973657727241516,0.00891067180782557,0.246738001704216,-0.969041228294373,-0.00885651540011168,0.136994689702988,-0.990532159805298,0.0836164504289627,0.212129175662994,-0.973657727241516,0.047809362411499,0.140526458621025,-0.988921880722046,0.141405865550041,0.303388297557831,-0.942316174507141,0.17630472779274,0.862239241600037,-0.474826335906982,0.17836457490921,0.830098927021027,-0.528319656848907,0.150669768452644,0.868620932102203,-0.472012996673584,0.177611023187637,0.79032039642334,-0.586385369300842,0.14184333384037,0.841224908828735,-0.521748006343842,0.17836457490921,0.830098927021027,-0.528319656848907,0.047809362411499,0.140526458621025,-0.988921880722046,0.0944378674030304,0.10203941911459,-0.990287482738495,0.146435469388962,0.166684910655022,-0.975075721740723,0.0822190269827843,0.34711366891861,-0.93421196937561,0.127315700054169,0.455343872308731,-0.881165444850922,0.146435469388962,0.166684910655022,-0.975075721740723,0.068872444331646,0.739230394363403,-0.669921517372131,0.100923277437687,0.395509660243988,-0.912900030612946,0.182423129677773,0.732101857662201,-0.656314313411713,0.145574554800987,0.894787490367889,-0.422093868255615,0.182423129677773,0.732101857662201,-0.656314313411713,0.18874517083168,0.856211006641388,-0.480913549661636,0.0822190269827843,0.34711366891861,-0.93421196937561,0.0686880797147751,0.522159814834595,-0.850076973438263,0.068872444331646,0.739230394363403,-0.669921517372131,0.206630825996399,0.885350465774536,-0.416483044624329,0.18874517083168,0.856211006641388,-0.480913549661636,0.177875220775604,0.89197963476181,-0.415611118078232, +0.206630825996399,0.885350465774536,-0.416483044624329,0.177875220775604,0.89197963476181,-0.415611118078232,0.17630472779274,0.862239241600037,-0.474826335906982,-0.686670422554016,-0.670660972595215,-0.280530393123627,-0.693663775920868,-0.635250210762024,-0.339540213346481,-0.753858625888824,-0.645930826663971,-0.120292723178864,-0.686670422554016,-0.670660972595215,-0.280530393123627,-0.630820453166962,-0.675974369049072,-0.3809514939785,-0.693663775920868,-0.635250210762024,-0.339540213346481,-0.753858625888824,-0.645930826663971,-0.120292723178864,-0.798101961612701,-0.544626832008362,-0.257710516452789,-0.847623586654663,-0.5107461810112,-0.143779441714287,-0.807731986045837,-0.572676241397858,-0.140038445591927,-0.847623586654663,-0.5107461810112,-0.143779441714287,-0.867249131202698,-0.427464753389359,-0.255250215530396,-0.777840971946716,-0.308122664690018,-0.547744274139404,-0.738112688064575,-0.345472067594528,-0.579515755176544,-0.796301066875458,-0.355096608400345,-0.48970502614975,-0.796301066875458,-0.355096608400345,-0.48970502614975,-0.841010451316834,-0.418781876564026,-0.342524528503418,-0.870096385478973,-0.304673939943314,-0.387435078620911,-0.867249131202698,-0.427464753389359,-0.255250215530396,-0.870096385478973,-0.304673939943314,-0.387435078620911,-0.841010451316834,-0.418781876564026,-0.342524528503418,-0.777840971946716,-0.308122664690018,-0.547744274139404,-0.75252091884613,-0.294357568025589,-0.589122891426086,-0.769528567790985,-0.325080960988998,-0.549679934978485,-0.769528567790985,-0.325080960988998,-0.549679934978485,-0.805203318595886,-0.242186084389687,-0.541288733482361,-0.81019252538681,-0.284150660037994,-0.512685418128967,-0.814932405948639,-0.177214056253433,-0.551797211170197,-0.818038702011108,-0.183057993650436,-0.545254349708557,-0.829710245132446,-0.105257369577885,-0.548180282115936,-0.820508658885956,-0.0288491025567055,-0.57090550661087,-0.829710245132446,-0.105257369577885,-0.548180282115936,-0.79373174905777,-0.0558961443603039,-0.605694115161896,-0.79373174905777,-0.0558961443603039,-0.605694115161896, +-0.712943255901337,-0.142153367400169,-0.686661601066589,-0.79567152261734,-0.0332467146217823,-0.604815125465393,-0.814932405948639,-0.177214056253433,-0.551797211170197,-0.805203318595886,-0.242186084389687,-0.541288733482361,-0.818038702011108,-0.183057993650436,-0.545254349708557,-0.79567152261734,-0.0332467146217823,-0.604815125465393,-0.712943255901337,-0.142153367400169,-0.686661601066589,-0.765288531780243,-0.0774822980165482,-0.639006972312927,-0.727667272090912,-0.0976634845137596,-0.678941786289215,-0.765288531780243,-0.0774822980165482,-0.639006972312927,-0.712943255901337,-0.142153367400169,-0.686661601066589,-0.695921719074249,-0.0971602499485016,-0.711514353752136,-0.725067019462585,0.0398560464382172,-0.687523901462555,-0.727667272090912,-0.0976634845137596,-0.678941786289215,-0.738291025161743,0.0475987456738949,-0.672800540924072,-0.746069014072418,0.192800581455231,-0.637345135211945,-0.725067019462585,0.0398560464382172,-0.687523901462555,-0.703299880027771,0.218025088310242,-0.676634550094604,-0.746069014072418,0.192800581455231,-0.637345135211945,-0.718827784061432,0.25707334280014,-0.645910024642944,-0.689162313938141,0.254996597766876,-0.678256452083588,-0.703299880027771,0.218025088310242,-0.676634550094604,-0.703520119190216,0.243869692087173,-0.66752302646637,-0.421706914901733,0.319080859422684,-0.848734676837921,-0.399067163467407,0.263866394758224,-0.878134250640869,-0.38342347741127,0.296858817338943,-0.87456339597702,-0.421706914901733,0.319080859422684,-0.848734676837921,-0.38342347741127,0.296858817338943,-0.87456339597702,-0.477742105722427,0.331003367900848,-0.813756227493286,-0.442097932100296,0.211761683225632,-0.871611297130585,-0.311618268489838,0.227317720651627,-0.922616183757782,-0.399067163467407,0.263866394758224,-0.878134250640869,-0.477742105722427,0.331003367900848,-0.813756227493286,-0.567294359207153,0.28742989897728,-0.771725952625275,-0.570963501930237,0.311317831277847,-0.759658932685852,-0.570963501930237,0.311317831277847,-0.759658932685852,-0.626412272453308,0.258413285017014,-0.735411584377289, +-0.556669414043427,0.319189578294754,-0.766966104507446,-0.689162313938141,0.254996597766876,-0.678256452083588,-0.702823102474213,0.188360124826431,-0.685973763465881,-0.626412272453308,0.258413285017014,-0.735411584377289,-0.475117683410645,0.360979676246643,-0.80246913433075,-0.442097932100296,0.211761683225632,-0.871611297130585,-0.411911010742188,0.332760065793991,-0.848292350769043,-0.475117683410645,0.360979676246643,-0.80246913433075,-0.499605894088745,0.390831291675568,-0.773074865341187,-0.488095015287399,0.365400373935699,-0.792619526386261,-0.249936982989311,0.290754944086075,-0.923576176166534,-0.328802525997162,0.341832786798477,-0.8803631067276,-0.273185729980469,0.292153924703598,-0.916523575782776,-0.32205519080162,0.307143956422806,-0.895512640476227,-0.408066272735596,0.372742533683777,-0.833393514156342,-0.328802525997162,0.341832786798477,-0.8803631067276,-0.488095015287399,0.365400373935699,-0.792619526386261,-0.512341499328613,0.352308183908463,-0.783188939094543,-0.408066272735596,0.372742533683777,-0.833393514156342,0.000166903089848347,0.474847018718719,-0.880068242549896,-0.000542218796908855,0.447522521018982,-0.894272446632385,-0.090704120695591,0.432263106107712,-0.897174060344696,-0.10098260641098,0.464570611715317,-0.87975937128067,-0.00986569561064243,0.402109563350677,-0.915538311004639,0.000166903089848347,0.474847018718719,-0.880068242549896,0.013543919660151,0.511228442192078,-0.859338045120239,0.143232017755508,0.448651492595673,-0.88215434551239,0.173985287547112,0.513520836830139,-0.840253114700317,-0.0522592402994633,0.363512814044952,-0.930122196674347,-0.0160595346242189,0.282653510570526,-0.959087610244751,-0.0699270665645599,0.332696467638016,-0.940437734127045,-0.0522592402994633,0.363512814044952,-0.930122196674347,0.0831344351172447,0.375404179096222,-0.923125267028809,-0.0160595346242189,0.282653510570526,-0.959087610244751,0.119144432246685,0.45666840672493,-0.881622612476349,0.143232017755508,0.448651492595673,-0.88215434551239,0.105422720313072,0.385569334030151,-0.916636347770691, +0.119144432246685,0.45666840672493,-0.881622612476349,0.105422720313072,0.385569334030151,-0.916636347770691,0.0831344351172447,0.375404179096222,-0.923125267028809,-0.10098260641098,0.464570611715317,-0.87975937128067,-0.0699270665645599,0.332696467638016,-0.940437734127045,-0.00986569561064243,0.402109563350677,-0.915538311004639,0.013543919660151,0.511228442192078,-0.859338045120239,0.173985287547112,0.513520836830139,-0.840253114700317,0.000189732090802863,0.579126834869385,-0.815237402915955,0.0144402859732509,0.706797480583191,-0.707268416881561,0.0899718105792999,0.689556300640106,-0.718621611595154,0.132480964064598,0.729244709014893,-0.671305298805237,0.126794546842575,0.669864535331726,-0.73157674074173,0.0899718105792999,0.689556300640106,-0.718621611595154,0.0609245635569096,0.627946496009827,-0.775868058204651,0.000189732090802863,0.579126834869385,-0.815237402915955,0.173985287547112,0.513520836830139,-0.840253114700317,0.0609245635569096,0.627946496009827,-0.775868058204651,0.00892639439553022,0.689608931541443,-0.724126875400543,0.0115436622872949,0.594660758972168,-0.803893804550171,0.0144402859732509,0.706797480583191,-0.707268416881561,-0.090704120695591,0.432263106107712,-0.897174060344696,-0.179479107260704,0.308446735143662,-0.934156179428101,-0.1608776897192,0.404969990253448,-0.900065302848816,-0.275782346725464,0.37946355342865,-0.883148550987244,-0.273185729980469,0.292153924703598,-0.916523575782776,-0.328802525997162,0.341832786798477,-0.8803631067276,-0.275782346725464,0.37946355342865,-0.883148550987244,-0.1608776897192,0.404969990253448,-0.900065302848816,-0.179479107260704,0.308446735143662,-0.934156179428101,0.172625318169594,0.2958764731884,-0.939498543739319,0.245772704482079,0.327036470174789,-0.912492632865906,0.199226588010788,0.412119477987289,-0.889081656932831,0.204466566443443,0.191781029105186,-0.959902822971344,0.21723809838295,0.234925359487534,-0.947426855564117,0.172625318169594,0.2958764731884,-0.939498543739319,0.199226588010788,0.412119477987289,-0.889081656932831, +0.282828271389008,0.458768546581268,-0.842341661453247,0.221735417842865,0.569914638996124,-0.791220843791962,0.193561151623726,0.654367566108704,-0.730983674526215,0.282828271389008,0.458768546581268,-0.842341661453247,0.213938504457474,0.528550863265991,-0.821501135826111,0.204466566443443,0.191781029105186,-0.959902822971344,0.200206086039543,0.1592066437006,-0.96673196554184,0.21723809838295,0.234925359487534,-0.947426855564117,0.204466566443443,0.191781029105186,-0.959902822971344,0.164219051599503,0.0938690081238747,-0.981947243213654,0.200206086039543,0.1592066437006,-0.96673196554184,0.164219051599503,0.0938690081238747,-0.981947243213654,0.239401906728745,0.0726002082228661,-0.968202352523804,0.253347367048264,0.0762910544872284,-0.964362323284149,0.245440110564232,-0.0114840241149068,-0.969343721866608,0.256005078554153,-0.00341094797477126,-0.966669380664825,0.241034537553787,-0.0202513504773378,-0.970305144786835,0.256005078554153,-0.00341094797477126,-0.966669380664825,0.26255190372467,-0.235285311937332,-0.935792326927185,0.241034537553787,-0.0202513504773378,-0.970305144786835,0.0947261080145836,0.629671037197113,-0.77106499671936,0.118106588721275,0.552553534507751,-0.825066804885864,0.0115436622872949,0.594660758972168,-0.803893804550171,-0.197384193539619,0.626472651958466,-0.754036664962769,-0.102209933102131,0.619033217430115,-0.778685331344604,-0.227369546890259,0.642778098583221,-0.731532096862793,-0.227369546890259,0.642778098583221,-0.731532096862793,-0.232771098613739,0.586548566818237,-0.775743663311005,-0.231650456786156,0.651767194271088,-0.722175478935242,-0.102209933102131,0.619033217430115,-0.778685331344604,-0.0061349319294095,0.594694137573242,-0.803928554058075,-0.0185254402458668,0.662168383598328,-0.749125957489014,0.0947261080145836,0.629671037197113,-0.77106499671936,-0.00577066466212273,0.697141826152802,-0.716909885406494,-0.0061349319294095,0.594694137573242,-0.803928554058075,-0.163795679807663,0.577560067176819,-0.799746930599213,-0.141215786337852,0.507035434246063,-0.850278198719025, +-0.232771098613739,0.586548566818237,-0.775743663311005,-0.0545643195509911,0.47191846370697,-0.879952013492584,-0.163795679807663,0.577560067176819,-0.799746930599213,0.0191322211176157,0.621550977230072,-0.783139944076538,-0.0545643195509911,0.47191846370697,-0.879952013492584,0.0191322211176157,0.621550977230072,-0.783139944076538,0.100423559546471,0.472816050052643,-0.875419855117798,0.168424054980278,0.489645481109619,-0.855500161647797,0.0941384360194206,0.449193030595779,-0.888461291790009,0.100423559546471,0.472816050052643,-0.875419855117798,0.0765428468585014,0.52233225107193,-0.849299728870392,-0.0219970885664225,0.485970467329025,-0.87369829416275,0.168424054980278,0.489645481109619,-0.855500161647797,-0.207767322659492,0.468985825777054,-0.858420014381409,-0.191522747278214,0.501959383487701,-0.843419015407562,-0.261485397815704,0.5299391746521,-0.806715369224548,-0.104390777647495,0.543756425380707,-0.832725286483765,-0.261485397815704,0.5299391746521,-0.806715369224548,-0.191522747278214,0.501959383487701,-0.843419015407562,0.0765428468585014,0.52233225107193,-0.849299728870392,-0.104390777647495,0.543756425380707,-0.832725286483765,-0.0219970885664225,0.485970467329025,-0.87369829416275,-0.283706665039063,0.496326565742493,-0.820469558238983,-0.177309766411781,0.391728729009628,-0.902834236621857,-0.207767322659492,0.468985825777054,-0.858420014381409,0.192640990018845,0.736088693141937,-0.648893475532532,0.193561151623726,0.654367566108704,-0.730983674526215,0.177611023187637,0.79032039642334,-0.586385369300842,-0.177309766411781,0.391728729009628,-0.902834236621857,-0.242587357759476,0.410811275243759,-0.87885457277298,-0.147074237465858,0.288875013589859,-0.946002244949341,0.00891067180782557,0.246738001704216,-0.969041228294373,-0.147074237465858,0.288875013589859,-0.946002244949341,-0.11418167501688,0.255842745304108,-0.959951519966125,0.00891067180782557,0.246738001704216,-0.969041228294373,-0.11418167501688,0.255842745304108,-0.959951519966125,-0.00885651540011168,0.136994689702988,-0.990532159805298, +0.0836164504289627,0.212129175662994,-0.973657727241516,-0.00885651540011168,0.136994689702988,-0.990532159805298,0.0352520309388638,0.116362802684307,-0.992580950260162,0.0836164504289627,0.212129175662994,-0.973657727241516,0.0352520309388638,0.116362802684307,-0.992580950260162,0.047809362411499,0.140526458621025,-0.988921880722046,0.202644973993301,0.81710410118103,-0.539699673652649,0.17836457490921,0.830098927021027,-0.528319656848907,0.17630472779274,0.862239241600037,-0.474826335906982,0.192640990018845,0.736088693141937,-0.648893475532532,0.177611023187637,0.79032039642334,-0.586385369300842,0.17836457490921,0.830098927021027,-0.528319656848907,0.091634601354599,0.121697753667831,-0.988328099250793,0.0944378674030304,0.10203941911459,-0.990287482738495,0.047809362411499,0.140526458621025,-0.988921880722046,0.146435469388962,0.166684910655022,-0.975075721740723,0.0944378674030304,0.10203941911459,-0.990287482738495,0.152076542377472,0.125689521431923,-0.980344176292419,0.0822190269827843,0.34711366891861,-0.93421196937561,0.146435469388962,0.166684910655022,-0.975075721740723,0.152076542377472,0.125689521431923,-0.980344176292419,0.100923277437687,0.395509660243988,-0.912900030612946,0.068872444331646,0.739230394363403,-0.669921517372131,0.0686880797147751,0.522159814834595,-0.850076973438263,0.100923277437687,0.395509660243988,-0.912900030612946,0.173349484801292,0.477961778640747,-0.86110532283783,0.182423129677773,0.732101857662201,-0.656314313411713,0.175961375236511,0.674975156784058,-0.716551423072815,0.18874517083168,0.856211006641388,-0.480913549661636,0.182423129677773,0.732101857662201,-0.656314313411713,0.100923277437687,0.395509660243988,-0.912900030612946,0.0686880797147751,0.522159814834595,-0.850076973438263,0.0822190269827843,0.34711366891861,-0.93421196937561,0.17630472779274,0.862239241600037,-0.474826335906982,0.177875220775604,0.89197963476181,-0.415611118078232,0.250257730484009,0.838468015193939,-0.484089136123657,-0.753858625888824,-0.645930826663971,-0.120292723178864,-0.693663775920868,-0.635250210762024,-0.339540213346481, +-0.798101961612701,-0.544626832008362,-0.257710516452789,-0.690311074256897,-0.606592953205109,-0.394354432821274,-0.693663775920868,-0.635250210762024,-0.339540213346481,-0.630820453166962,-0.675974369049072,-0.3809514939785,-0.883689761161804,-0.36662220954895,-0.290999174118042,-0.847623586654663,-0.5107461810112,-0.143779441714287,-0.798101961612701,-0.544626832008362,-0.257710516452789,-0.883689761161804,-0.36662220954895,-0.290999174118042,-0.867249131202698,-0.427464753389359,-0.255250215530396,-0.847623586654663,-0.5107461810112,-0.143779441714287,-0.82432222366333,-0.31792277097702,-0.468420684337616,-0.777840971946716,-0.308122664690018,-0.547744274139404,-0.796301066875458,-0.355096608400345,-0.48970502614975,-0.796301066875458,-0.355096608400345,-0.48970502614975,-0.870096385478973,-0.304673939943314,-0.387435078620911,-0.82432222366333,-0.31792277097702,-0.468420684337616,-0.883689761161804,-0.36662220954895,-0.290999174118042,-0.870096385478973,-0.304673939943314,-0.387435078620911,-0.867249131202698,-0.427464753389359,-0.255250215530396,-0.777840971946716,-0.308122664690018,-0.547744274139404,-0.82432222366333,-0.31792277097702,-0.468420684337616,-0.75252091884613,-0.294357568025589,-0.589122891426086,-0.769528567790985,-0.325080960988998,-0.549679934978485,-0.75252091884613,-0.294357568025589,-0.589122891426086,-0.805203318595886,-0.242186084389687,-0.541288733482361,-0.818038702011108,-0.183057993650436,-0.545254349708557,-0.763284504413605,-0.169174134731293,-0.623519718647003,-0.829710245132446,-0.105257369577885,-0.548180282115936,-0.79373174905777,-0.0558961443603039,-0.605694115161896,-0.829710245132446,-0.105257369577885,-0.548180282115936,-0.763284504413605,-0.169174134731293,-0.623519718647003,-0.725561141967773,-0.137823164463043,-0.674214839935303,-0.712943255901337,-0.142153367400169,-0.686661601066589,-0.79373174905777,-0.0558961443603039,-0.605694115161896,-0.763284504413605,-0.169174134731293,-0.623519718647003,-0.818038702011108,-0.183057993650436,-0.545254349708557,-0.805203318595886,-0.242186084389687,-0.541288733482361, +-0.695921719074249,-0.0971602499485016,-0.711514353752136,-0.727667272090912,-0.0976634845137596,-0.678941786289215,-0.712943255901337,-0.142153367400169,-0.686661601066589,-0.738291025161743,0.0475987456738949,-0.672800540924072,-0.725067019462585,0.0398560464382172,-0.687523901462555,-0.695921719074249,-0.0971602499485016,-0.711514353752136,-0.738291025161743,0.0475987456738949,-0.672800540924072,-0.775044560432434,0.181498140096664,-0.605280339717865,-0.746069014072418,0.192800581455231,-0.637345135211945,-0.757837653160095,0.184449255466461,-0.625827670097351,-0.718827784061432,0.25707334280014,-0.645910024642944,-0.746069014072418,0.192800581455231,-0.637345135211945,-0.703299880027771,0.218025088310242,-0.676634550094604,-0.718827784061432,0.25707334280014,-0.645910024642944,-0.703520119190216,0.243869692087173,-0.66752302646637,-0.689162313938141,0.254996597766876,-0.678256452083588,-0.703520119190216,0.243869692087173,-0.66752302646637,-0.702823102474213,0.188360124826431,-0.685973763465881,-0.411911010742188,0.332760065793991,-0.848292350769043,-0.399067163467407,0.263866394758224,-0.878134250640869,-0.421706914901733,0.319080859422684,-0.848734676837921,-0.435689777135849,0.359636515378952,-0.825127780437469,-0.421706914901733,0.319080859422684,-0.848734676837921,-0.477742105722427,0.331003367900848,-0.813756227493286,-0.411911010742188,0.332760065793991,-0.848292350769043,-0.442097932100296,0.211761683225632,-0.871611297130585,-0.399067163467407,0.263866394758224,-0.878134250640869,-0.477742105722427,0.331003367900848,-0.813756227493286,-0.570963501930237,0.311317831277847,-0.759658932685852,-0.547768294811249,0.35235008597374,-0.758814334869385,-0.626412272453308,0.258413285017014,-0.735411584377289,-0.629925072193146,0.284901201725006,-0.722513318061829,-0.556669414043427,0.319189578294754,-0.766966104507446,-0.556669414043427,0.319189578294754,-0.766966104507446,-0.547768294811249,0.35235008597374,-0.758814334869385,-0.570963501930237,0.311317831277847,-0.759658932685852,-0.702823102474213,0.188360124826431,-0.685973763465881, +-0.683735251426697,0.210387542843819,-0.698743879795074,-0.626412272453308,0.258413285017014,-0.735411584377289,-0.411911010742188,0.332760065793991,-0.848292350769043,-0.409879148006439,0.366364985704422,-0.835329711437225,-0.475117683410645,0.360979676246643,-0.80246913433075,-0.409879148006439,0.366364985704422,-0.835329711437225,-0.499605894088745,0.390831291675568,-0.773074865341187,-0.475117683410645,0.360979676246643,-0.80246913433075,-0.512341499328613,0.352308183908463,-0.783188939094543,-0.488095015287399,0.365400373935699,-0.792619526386261,-0.499605894088745,0.390831291675568,-0.773074865341187,-0.328802525997162,0.341832786798477,-0.8803631067276,-0.408066272735596,0.372742533683777,-0.833393514156342,-0.400920838117599,0.353004425764084,-0.845369875431061,-0.408066272735596,0.372742533683777,-0.833393514156342,-0.512341499328613,0.352308183908463,-0.783188939094543,-0.400920838117599,0.353004425764084,-0.845369875431061,-0.090704120695591,0.432263106107712,-0.897174060344696,-0.108760438859463,0.505052745342255,-0.856208324432373,0.000166903089848347,0.474847018718719,-0.880068242549896,-0.10098260641098,0.464570611715317,-0.87975937128067,0.000166903089848347,0.474847018718719,-0.880068242549896,-0.113893084228039,0.537850737571716,-0.8353111743927,0.173985287547112,0.513520836830139,-0.840253114700317,0.143232017755508,0.448651492595673,-0.88215434551239,0.144328445196152,0.511066496372223,-0.847337126731873,-0.0699270665645599,0.332696467638016,-0.940437734127045,-0.10098260641098,0.464570611715317,-0.87975937128067,-0.0522592402994633,0.363512814044952,-0.930122196674347,-0.0522592402994633,0.363512814044952,-0.930122196674347,-0.0118128536269069,0.475162535905838,-0.879818677902222,0.0831344351172447,0.375404179096222,-0.923125267028809,0.119144432246685,0.45666840672493,-0.881622612476349,0.144328445196152,0.511066496372223,-0.847337126731873,0.143232017755508,0.448651492595673,-0.88215434551239,-0.0118128536269069,0.475162535905838,-0.879818677902222,0.119144432246685,0.45666840672493,-0.881622612476349, +0.0831344351172447,0.375404179096222,-0.923125267028809,0.196437999606133,0.68328070640564,-0.703234970569611,0.132480964064598,0.729244709014893,-0.671305298805237,0.0899718105792999,0.689556300640106,-0.718621611595154,0.0963072404265404,0.753993153572083,-0.649783909320831,0.0144402859732509,0.706797480583191,-0.707268416881561,0.132480964064598,0.729244709014893,-0.671305298805237,0.126794546842575,0.669864535331726,-0.73157674074173,0.196437999606133,0.68328070640564,-0.703234970569611,0.0899718105792999,0.689556300640106,-0.718621611595154,0.126794546842575,0.669864535331726,-0.73157674074173,0.0609245635569096,0.627946496009827,-0.775868058204651,0.213268578052521,0.573152780532837,-0.79120934009552,0.0609245635569096,0.627946496009827,-0.775868058204651,0.173985287547112,0.513520836830139,-0.840253114700317,0.213268578052521,0.573152780532837,-0.79120934009552,0.0115436622872949,0.594660758972168,-0.803893804550171,0.00892639439553022,0.689608931541443,-0.724126875400543,0.0947261080145836,0.629671037197113,-0.77106499671936,0.00892639439553022,0.689608931541443,-0.724126875400543,0.0144402859732509,0.706797480583191,-0.707268416881561,-0.028890173882246,0.73968517780304,-0.672332525253296,-0.140308171510696,0.475975513458252,-0.868193984031677,-0.090704120695591,0.432263106107712,-0.897174060344696,-0.1608776897192,0.404969990253448,-0.900065302848816,-0.328802525997162,0.341832786798477,-0.8803631067276,-0.400920838117599,0.353004425764084,-0.845369875431061,-0.275782346725464,0.37946355342865,-0.883148550987244,-0.275782346725464,0.37946355342865,-0.883148550987244,-0.199861660599709,0.482755899429321,-0.852644085884094,-0.1608776897192,0.404969990253448,-0.900065302848816,0.254775822162628,0.423622101545334,-0.869271814823151,0.172625318169594,0.2958764731884,-0.939498543739319,0.199226588010788,0.412119477987289,-0.889081656932831,0.36321285367012,0.328751146793365,-0.871779203414917,0.204466566443443,0.191781029105186,-0.959902822971344,0.172625318169594,0.2958764731884,-0.939498543739319,0.193561151623726,0.654367566108704,-0.730983674526215, +0.221735417842865,0.569914638996124,-0.791220843791962,0.282828271389008,0.458768546581268,-0.842341661453247,0.221735417842865,0.569914638996124,-0.791220843791962,0.20548190176487,0.578993797302246,-0.789014160633087,0.199226588010788,0.412119477987289,-0.889081656932831,0.164219051599503,0.0938690081238747,-0.981947243213654,0.204466566443443,0.191781029105186,-0.959902822971344,0.239401906728745,0.0726002082228661,-0.968202352523804,-0.227369546890259,0.642778098583221,-0.731532096862793,-0.102209933102131,0.619033217430115,-0.778685331344604,-0.153938114643097,0.730575084686279,-0.665254056453705,-0.227369546890259,0.642778098583221,-0.731532096862793,-0.222060516476631,0.692457497119904,-0.686433970928192,-0.232771098613739,0.586548566818237,-0.775743663311005,-0.0061349319294095,0.594694137573242,-0.803928554058075,-0.00577066466212273,0.697141826152802,-0.716909885406494,-0.0185254402458668,0.662168383598328,-0.749125957489014,-0.102209933102131,0.619033217430115,-0.778685331344604,-0.0185254402458668,0.662168383598328,-0.749125957489014,-0.0237952452152967,0.676969587802887,-0.73562616109848,0.0947261080145836,0.629671037197113,-0.77106499671936,0.00892639439553022,0.689608931541443,-0.724126875400543,-0.00577066466212273,0.697141826152802,-0.716909885406494,-0.163795679807663,0.577560067176819,-0.799746930599213,-0.232771098613739,0.586548566818237,-0.775743663311005,-0.222060516476631,0.692457497119904,-0.686433970928192,-0.10848131030798,0.704144060611725,-0.70172131061554,0.0191322211176157,0.621550977230072,-0.783139944076538,-0.163795679807663,0.577560067176819,-0.799746930599213,0.100423559546471,0.472816050052643,-0.875419855117798,0.0191322211176157,0.621550977230072,-0.783139944076538,0.187496498227119,0.582322239875793,-0.791040897369385,0.187496498227119,0.582322239875793,-0.791040897369385,0.168424054980278,0.489645481109619,-0.855500161647797,0.100423559546471,0.472816050052643,-0.875419855117798,0.0765428468585014,0.52233225107193,-0.849299728870392,0.168424054980278,0.489645481109619,-0.855500161647797, +0.123859591782093,0.561368584632874,-0.818244516849518,-0.261485397815704,0.5299391746521,-0.806715369224548,-0.283706665039063,0.496326565742493,-0.820469558238983,-0.207767322659492,0.468985825777054,-0.858420014381409,-0.261485397815704,0.5299391746521,-0.806715369224548,-0.104390777647495,0.543756425380707,-0.832725286483765,-0.153365835547447,0.59484875202179,-0.789071500301361,0.0765428468585014,0.52233225107193,-0.849299728870392,0.123859591782093,0.561368584632874,-0.818244516849518,-0.104390777647495,0.543756425380707,-0.832725286483765,-0.177309766411781,0.391728729009628,-0.902834236621857,-0.283706665039063,0.496326565742493,-0.820469558238983,-0.242587357759476,0.410811275243759,-0.87885457277298,0.193561151623726,0.654367566108704,-0.730983674526215,0.192640990018845,0.736088693141937,-0.648893475532532,0.221735417842865,0.569914638996124,-0.791220843791962,-0.11418167501688,0.255842745304108,-0.959951519966125,-0.147074237465858,0.288875013589859,-0.946002244949341,-0.242587357759476,0.410811275243759,-0.87885457277298,-0.11418167501688,0.255842745304108,-0.959951519966125,0.0113578243181109,0.244866386055946,-0.969490230083466,-0.00885651540011168,0.136994689702988,-0.990532159805298,0.0352520309388638,0.116362802684307,-0.992580950260162,-0.00885651540011168,0.136994689702988,-0.990532159805298,0.0342131070792675,0.0798976495862007,-0.99621570110321,0.091634601354599,0.121697753667831,-0.988328099250793,0.047809362411499,0.140526458621025,-0.988921880722046,0.0352520309388638,0.116362802684307,-0.992580950260162,0.202644973993301,0.81710410118103,-0.539699673652649,0.192640990018845,0.736088693141937,-0.648893475532532,0.17836457490921,0.830098927021027,-0.528319656848907,0.17630472779274,0.862239241600037,-0.474826335906982,0.250257730484009,0.838468015193939,-0.484089136123657,0.202644973993301,0.81710410118103,-0.539699673652649,0.0944378674030304,0.10203941911459,-0.990287482738495,0.091634601354599,0.121697753667831,-0.988328099250793,0.152076542377472,0.125689521431923,-0.980344176292419,0.152076542377472,0.125689521431923,-0.980344176292419, +0.156739458441734,0.188722044229507,-0.969441413879395,0.0822190269827843,0.34711366891861,-0.93421196937561,0.100923277437687,0.395509660243988,-0.912900030612946,0.146451845765114,0.234289839863777,-0.961072325706482,0.173349484801292,0.477961778640747,-0.86110532283783,0.175961375236511,0.674975156784058,-0.716551423072815,0.182423129677773,0.732101857662201,-0.656314313411713,0.173349484801292,0.477961778640747,-0.86110532283783,0.156739458441734,0.188722044229507,-0.969441413879395,0.100923277437687,0.395509660243988,-0.912900030612946,0.0822190269827843,0.34711366891861,-0.93421196937561,-0.693663775920868,-0.635250210762024,-0.339540213346481,-0.7420454621315,-0.538324415683746,-0.399468600749969,-0.798101961612701,-0.544626832008362,-0.257710516452789,-0.693663775920868,-0.635250210762024,-0.339540213346481,-0.690311074256897,-0.606592953205109,-0.394354432821274,-0.7420454621315,-0.538324415683746,-0.399468600749969,-0.846559703350067,-0.388193577528,-0.364200919866562,-0.883689761161804,-0.36662220954895,-0.290999174118042,-0.798101961612701,-0.544626832008362,-0.257710516452789,-0.870096385478973,-0.304673939943314,-0.387435078620911,-0.880413830280304,-0.283951222896576,-0.379793494939804,-0.82432222366333,-0.31792277097702,-0.468420684337616,-0.883689761161804,-0.36662220954895,-0.290999174118042,-0.880413830280304,-0.283951222896576,-0.379793494939804,-0.870096385478973,-0.304673939943314,-0.387435078620911,-0.82432222366333,-0.31792277097702,-0.468420684337616,-0.756942629814148,-0.370904088020325,-0.538022041320801,-0.75252091884613,-0.294357568025589,-0.589122891426086,-0.75252091884613,-0.294357568025589,-0.589122891426086,-0.763284504413605,-0.169174134731293,-0.623519718647003,-0.805203318595886,-0.242186084389687,-0.541288733482361,-0.79373174905777,-0.0558961443603039,-0.605694115161896,-0.763284504413605,-0.169174134731293,-0.623519718647003,-0.725561141967773,-0.137823164463043,-0.674214839935303,-0.70928293466568,-0.19743686914444,-0.676709830760956,-0.712943255901337,-0.142153367400169,-0.686661601066589, +-0.725561141967773,-0.137823164463043,-0.674214839935303,-0.695921719074249,-0.0971602499485016,-0.711514353752136,-0.712943255901337,-0.142153367400169,-0.686661601066589,-0.68532931804657,-0.15769462287426,-0.710954248905182,-0.695921719074249,-0.0971602499485016,-0.711514353752136,-0.68532931804657,-0.15769462287426,-0.710954248905182,-0.738291025161743,0.0475987456738949,-0.672800540924072,-0.738291025161743,0.0475987456738949,-0.672800540924072,-0.779447257518768,0.108426921069622,-0.617013335227966,-0.775044560432434,0.181498140096664,-0.605280339717865,-0.775044560432434,0.181498140096664,-0.605280339717865,-0.757837653160095,0.184449255466461,-0.625827670097351,-0.746069014072418,0.192800581455231,-0.637345135211945,-0.757837653160095,0.184449255466461,-0.625827670097351,-0.70058798789978,0.169666528701782,-0.693101406097412,-0.718827784061432,0.25707334280014,-0.645910024642944,-0.70058798789978,0.169666528701782,-0.693101406097412,-0.703520119190216,0.243869692087173,-0.66752302646637,-0.718827784061432,0.25707334280014,-0.645910024642944,-0.704219877719879,0.169435188174248,-0.68946784734726,-0.702823102474213,0.188360124826431,-0.685973763465881,-0.703520119190216,0.243869692087173,-0.66752302646637,-0.425890266895294,0.357384622097015,-0.831200063228607,-0.411911010742188,0.332760065793991,-0.848292350769043,-0.421706914901733,0.319080859422684,-0.848734676837921,-0.421706914901733,0.319080859422684,-0.848734676837921,-0.435689777135849,0.359636515378952,-0.825127780437469,-0.425890266895294,0.357384622097015,-0.831200063228607,-0.477742105722427,0.331003367900848,-0.813756227493286,-0.492968916893005,0.356569766998291,-0.793624341487885,-0.435689777135849,0.359636515378952,-0.825127780437469,-0.492968916893005,0.356569766998291,-0.793624341487885,-0.477742105722427,0.331003367900848,-0.813756227493286,-0.547768294811249,0.35235008597374,-0.758814334869385,-0.626412272453308,0.258413285017014,-0.735411584377289,-0.683735251426697,0.210387542843819,-0.698743879795074,-0.629925072193146,0.284901201725006,-0.722513318061829, +-0.556669414043427,0.319189578294754,-0.766966104507446,-0.629925072193146,0.284901201725006,-0.722513318061829,-0.595624446868896,0.338547229766846,-0.728434681892395,-0.556669414043427,0.319189578294754,-0.766966104507446,-0.492968916893005,0.356569766998291,-0.793624341487885,-0.547768294811249,0.35235008597374,-0.758814334869385,-0.683735251426697,0.210387542843819,-0.698743879795074,-0.702823102474213,0.188360124826431,-0.685973763465881,-0.698779404163361,0.163927614688873,-0.696300864219666,-0.194652527570724,0.328888565301895,-0.924090147018433,-0.409879148006439,0.366364985704422,-0.835329711437225,-0.411911010742188,0.332760065793991,-0.848292350769043,-0.499605894088745,0.390831291675568,-0.773074865341187,-0.409879148006439,0.366364985704422,-0.835329711437225,-0.503917336463928,0.303893655538559,-0.808526933193207,-0.499605894088745,0.390831291675568,-0.773074865341187,-0.503917336463928,0.303893655538559,-0.808526933193207,-0.512341499328613,0.352308183908463,-0.783188939094543,-0.512341499328613,0.352308183908463,-0.783188939094543,-0.500807702541351,0.31035840511322,-0.808003187179565,-0.400920838117599,0.353004425764084,-0.845369875431061,-0.108760438859463,0.505052745342255,-0.856208324432373,-0.090704120695591,0.432263106107712,-0.897174060344696,-0.140308171510696,0.475975513458252,-0.868193984031677,0.000166903089848347,0.474847018718719,-0.880068242549896,-0.108760438859463,0.505052745342255,-0.856208324432373,-0.113893084228039,0.537850737571716,-0.8353111743927,-0.10098260641098,0.464570611715317,-0.87975937128067,-0.113893084228039,0.537850737571716,-0.8353111743927,-0.181970506906509,0.574167251586914,-0.798259675502777,0.144328445196152,0.511066496372223,-0.847337126731873,0.192460641264915,0.518997192382813,-0.832826912403107,0.173985287547112,0.513520836830139,-0.840253114700317,-0.10098260641098,0.464570611715317,-0.87975937128067,-0.0118128536269069,0.475162535905838,-0.879818677902222,-0.0522592402994633,0.363512814044952,-0.930122196674347,0.030130036175251,0.555299043655396,-0.831104695796967, +0.144328445196152,0.511066496372223,-0.847337126731873,0.119144432246685,0.45666840672493,-0.881622612476349,-0.0118128536269069,0.475162535905838,-0.879818677902222,0.030130036175251,0.555299043655396,-0.831104695796967,0.119144432246685,0.45666840672493,-0.881622612476349,0.196437999606133,0.68328070640564,-0.703234970569611,0.0963072404265404,0.753993153572083,-0.649783909320831,0.132480964064598,0.729244709014893,-0.671305298805237,0.0963072404265404,0.753993153572083,-0.649783909320831,-0.0472328327596188,0.752724230289459,-0.656639277935028,0.0144402859732509,0.706797480583191,-0.707268416881561,0.126794546842575,0.669864535331726,-0.73157674074173,0.213268578052521,0.573152780532837,-0.79120934009552,0.196437999606133,0.68328070640564,-0.703234970569611,0.234946221113205,0.526634216308594,-0.816980123519897,0.213268578052521,0.573152780532837,-0.79120934009552,0.173985287547112,0.513520836830139,-0.840253114700317,0.0144402859732509,0.706797480583191,-0.707268416881561,-0.0472328327596188,0.752724230289459,-0.656639277935028,-0.028890173882246,0.73968517780304,-0.672332525253296,-0.028890173882246,0.73968517780304,-0.672332525253296,-0.00577066466212273,0.697141826152802,-0.716909885406494,0.00892639439553022,0.689608931541443,-0.724126875400543,-0.140308171510696,0.475975513458252,-0.868193984031677,-0.1608776897192,0.404969990253448,-0.900065302848816,-0.199861660599709,0.482755899429321,-0.852644085884094,-0.400920838117599,0.353004425764084,-0.845369875431061,-0.347426950931549,0.43937161564827,-0.828400254249573,-0.275782346725464,0.37946355342865,-0.883148550987244,-0.284984797239304,0.451306611299515,-0.84563934803009,-0.199861660599709,0.482755899429321,-0.852644085884094,-0.275782346725464,0.37946355342865,-0.883148550987244,0.36321285367012,0.328751146793365,-0.871779203414917,0.172625318169594,0.2958764731884,-0.939498543739319,0.254775822162628,0.423622101545334,-0.869271814823151,0.20548190176487,0.578993797302246,-0.789014160633087,0.254775822162628,0.423622101545334,-0.869271814823151,0.199226588010788,0.412119477987289,-0.889081656932831, +0.221735417842865,0.569914638996124,-0.791220843791962,0.192640990018845,0.736088693141937,-0.648893475532532,0.20548190176487,0.578993797302246,-0.789014160633087,-0.0237952452152967,0.676969587802887,-0.73562616109848,-0.153938114643097,0.730575084686279,-0.665254056453705,-0.102209933102131,0.619033217430115,-0.778685331344604,-0.227369546890259,0.642778098583221,-0.731532096862793,-0.153938114643097,0.730575084686279,-0.665254056453705,-0.222060516476631,0.692457497119904,-0.686433970928192,-0.0789862051606178,0.765419185161591,-0.638666152954102,-0.0185254402458668,0.662168383598328,-0.749125957489014,-0.00577066466212273,0.697141826152802,-0.716909885406494,-0.0185254402458668,0.662168383598328,-0.749125957489014,0.0319755971431732,0.700545907020569,-0.71289050579071,-0.0237952452152967,0.676969587802887,-0.73562616109848,-0.10848131030798,0.704144060611725,-0.70172131061554,-0.163795679807663,0.577560067176819,-0.799746930599213,-0.222060516476631,0.692457497119904,-0.686433970928192,0.0191322211176157,0.621550977230072,-0.783139944076538,-0.10848131030798,0.704144060611725,-0.70172131061554,-0.0526753850281239,0.69577556848526,-0.716324985027313,0.0191322211176157,0.621550977230072,-0.783139944076538,0.0878538638353348,0.624370157718658,-0.776172339916229,0.187496498227119,0.582322239875793,-0.791040897369385,0.187496498227119,0.582322239875793,-0.791040897369385,0.123859591782093,0.561368584632874,-0.818244516849518,0.168424054980278,0.489645481109619,-0.855500161647797,-0.261485397815704,0.5299391746521,-0.806715369224548,-0.299798876047134,0.576254665851593,-0.760296761989594,-0.283706665039063,0.496326565742493,-0.820469558238983,-0.0551715046167374,0.535344898700714,-0.842829644680023,-0.153365835547447,0.59484875202179,-0.789071500301361,-0.104390777647495,0.543756425380707,-0.832725286483765,-0.261485397815704,0.5299391746521,-0.806715369224548,-0.153365835547447,0.59484875202179,-0.789071500301361,-0.299798876047134,0.576254665851593,-0.760296761989594,-0.0551715046167374,0.535344898700714,-0.842829644680023, +-0.104390777647495,0.543756425380707,-0.832725286483765,0.123859591782093,0.561368584632874,-0.818244516849518,-0.242587357759476,0.410811275243759,-0.87885457277298,-0.283706665039063,0.496326565742493,-0.820469558238983,-0.175064921379089,0.538675963878632,-0.824123978614807,-0.242587357759476,0.410811275243759,-0.87885457277298,-0.135333344340324,0.410462290048599,-0.901779055595398,-0.11418167501688,0.255842745304108,-0.959951519966125,-0.11418167501688,0.255842745304108,-0.959951519966125,-0.135333344340324,0.410462290048599,-0.901779055595398,0.0113578243181109,0.244866386055946,-0.969490230083466,-0.00885651540011168,0.136994689702988,-0.990532159805298,0.0113578243181109,0.244866386055946,-0.969490230083466,0.0342131070792675,0.0798976495862007,-0.99621570110321,0.0352520309388638,0.116362802684307,-0.992580950260162,0.0342131070792675,0.0798976495862007,-0.99621570110321,0.091634601354599,0.121697753667831,-0.988328099250793,0.192640990018845,0.736088693141937,-0.648893475532532,0.202644973993301,0.81710410118103,-0.539699673652649,0.240720227360725,0.718276262283325,-0.652788519859314,0.202644973993301,0.81710410118103,-0.539699673652649,0.250257730484009,0.838468015193939,-0.484089136123657,0.340025782585144,0.744259536266327,-0.574856638908386,0.152076542377472,0.125689521431923,-0.980344176292419,0.091634601354599,0.121697753667831,-0.988328099250793,0.197514608502388,0.178280025720596,-0.963952362537384,0.197514608502388,0.178280025720596,-0.963952362537384,0.156739458441734,0.188722044229507,-0.969441413879395,0.152076542377472,0.125689521431923,-0.980344176292419,0.100923277437687,0.395509660243988,-0.912900030612946,0.156739458441734,0.188722044229507,-0.969441413879395,0.146451845765114,0.234289839863777,-0.961072325706482,-0.798101961612701,-0.544626832008362,-0.257710516452789,-0.7420454621315,-0.538324415683746,-0.399468600749969,-0.846559703350067,-0.388193577528,-0.364200919866562,-0.690311074256897,-0.606592953205109,-0.394354432821274,-0.789113402366638,-0.492156267166138,-0.367535203695297, +-0.7420454621315,-0.538324415683746,-0.399468600749969,-0.846559703350067,-0.388193577528,-0.364200919866562,-0.891567528247833,-0.340815246105194,-0.298248529434204,-0.883689761161804,-0.36662220954895,-0.290999174118042,-0.820509374141693,-0.414645910263062,-0.393488258123398,-0.82432222366333,-0.31792277097702,-0.468420684337616,-0.880413830280304,-0.283951222896576,-0.379793494939804,-0.883689761161804,-0.36662220954895,-0.290999174118042,-0.891567528247833,-0.340815246105194,-0.298248529434204,-0.880413830280304,-0.283951222896576,-0.379793494939804,-0.82432222366333,-0.31792277097702,-0.468420684337616,-0.820509374141693,-0.414645910263062,-0.393488258123398,-0.756942629814148,-0.370904088020325,-0.538022041320801,-0.75252091884613,-0.294357568025589,-0.589122891426086,-0.756942629814148,-0.370904088020325,-0.538022041320801,-0.737694561481476,-0.225827306509018,-0.636245787143707,-0.75252091884613,-0.294357568025589,-0.589122891426086,-0.737694561481476,-0.225827306509018,-0.636245787143707,-0.763284504413605,-0.169174134731293,-0.623519718647003,-0.763284504413605,-0.169174134731293,-0.623519718647003,-0.737694561481476,-0.225827306509018,-0.636245787143707,-0.725561141967773,-0.137823164463043,-0.674214839935303,-0.70928293466568,-0.19743686914444,-0.676709830760956,-0.68532931804657,-0.15769462287426,-0.710954248905182,-0.712943255901337,-0.142153367400169,-0.686661601066589,-0.745153844356537,-0.145193263888359,-0.650895178318024,-0.70928293466568,-0.19743686914444,-0.676709830760956,-0.725561141967773,-0.137823164463043,-0.674214839935303,-0.734108746051788,-0.0661826431751251,-0.675798773765564,-0.738291025161743,0.0475987456738949,-0.672800540924072,-0.68532931804657,-0.15769462287426,-0.710954248905182,-0.738291025161743,0.0475987456738949,-0.672800540924072,-0.734108746051788,-0.0661826431751251,-0.675798773765564,-0.779447257518768,0.108426921069622,-0.617013335227966,-0.779447257518768,0.108426921069622,-0.617013335227966,-0.79049414396286,0.181858256459236,-0.584847331047058,-0.775044560432434,0.181498140096664,-0.605280339717865, +-0.775044560432434,0.181498140096664,-0.605280339717865,-0.79049414396286,0.181858256459236,-0.584847331047058,-0.757837653160095,0.184449255466461,-0.625827670097351,-0.757837653160095,0.184449255466461,-0.625827670097351,-0.735735058784485,0.0877425745129585,-0.671561598777771,-0.70058798789978,0.169666528701782,-0.693101406097412,-0.70058798789978,0.169666528701782,-0.693101406097412,-0.704219877719879,0.169435188174248,-0.68946784734726,-0.703520119190216,0.243869692087173,-0.66752302646637,-0.704219877719879,0.169435188174248,-0.68946784734726,-0.698779404163361,0.163927614688873,-0.696300864219666,-0.702823102474213,0.188360124826431,-0.685973763465881,-0.411911010742188,0.332760065793991,-0.848292350769043,-0.425890266895294,0.357384622097015,-0.831200063228607,-0.433912724256516,0.322796761989594,-0.841143190860748,-0.425890266895294,0.357384622097015,-0.831200063228607,-0.435689777135849,0.359636515378952,-0.825127780437469,-0.434005737304688,0.353943169116974,-0.828470408916473,-0.434005737304688,0.353943169116974,-0.828470408916473,-0.435689777135849,0.359636515378952,-0.825127780437469,-0.492968916893005,0.356569766998291,-0.793624341487885,-0.629925072193146,0.284901201725006,-0.722513318061829,-0.683735251426697,0.210387542843819,-0.698743879795074,-0.681041538715363,0.285800606012344,-0.674166321754456,-0.629925072193146,0.284901201725006,-0.722513318061829,-0.647421658039093,0.329180151224136,-0.687375843524933,-0.595624446868896,0.338547229766846,-0.728434681892395,-0.595624446868896,0.338547229766846,-0.728434681892395,-0.528681755065918,0.363993018865585,-0.766814529895782,-0.556669414043427,0.319189578294754,-0.766966104507446,-0.492968916893005,0.356569766998291,-0.793624341487885,-0.556669414043427,0.319189578294754,-0.766966104507446,-0.528681755065918,0.363993018865585,-0.766814529895782,-0.698779404163361,0.163927614688873,-0.696300864219666,-0.702824115753174,0.254463851451874,-0.664293766021729,-0.683735251426697,0.210387542843819,-0.698743879795074,-0.433912724256516,0.322796761989594,-0.841143190860748, +-0.409879148006439,0.366364985704422,-0.835329711437225,-0.194652527570724,0.328888565301895,-0.924090147018433,-0.411911010742188,0.332760065793991,-0.848292350769043,-0.433912724256516,0.322796761989594,-0.841143190860748,-0.194652527570724,0.328888565301895,-0.924090147018433,-0.433912724256516,0.322796761989594,-0.841143190860748,-0.503917336463928,0.303893655538559,-0.808526933193207,-0.409879148006439,0.366364985704422,-0.835329711437225,-0.512341499328613,0.352308183908463,-0.783188939094543,-0.503917336463928,0.303893655538559,-0.808526933193207,-0.500807702541351,0.31035840511322,-0.808003187179565,-0.500807702541351,0.31035840511322,-0.808003187179565,-0.444730937480927,0.403617650270462,-0.799566805362701,-0.400920838117599,0.353004425764084,-0.845369875431061,-0.108760438859463,0.505052745342255,-0.856208324432373,-0.140308171510696,0.475975513458252,-0.868193984031677,-0.189015328884125,0.52315354347229,-0.831013560295105,-0.108760438859463,0.505052745342255,-0.856208324432373,-0.193297654390335,0.557567894458771,-0.807312726974487,-0.113893084228039,0.537850737571716,-0.8353111743927,-0.113893084228039,0.537850737571716,-0.8353111743927,-0.193297654390335,0.557567894458771,-0.807312726974487,-0.181970506906509,0.574167251586914,-0.798259675502777,-0.13763453066349,0.537259221076965,-0.832111299037933,-0.10098260641098,0.464570611715317,-0.87975937128067,-0.181970506906509,0.574167251586914,-0.798259675502777,0.144328445196152,0.511066496372223,-0.847337126731873,0.111001014709473,0.553773403167725,-0.825235486030579,0.192460641264915,0.518997192382813,-0.832826912403107,0.234946221113205,0.526634216308594,-0.816980123519897,0.173985287547112,0.513520836830139,-0.840253114700317,0.192460641264915,0.518997192382813,-0.832826912403107,-0.065565437078476,0.536236345767975,-0.841517508029938,-0.0118128536269069,0.475162535905838,-0.879818677902222,-0.10098260641098,0.464570611715317,-0.87975937128067,0.030130036175251,0.555299043655396,-0.831104695796967,0.0357764810323715,0.597838580608368,-0.800817728042603, +0.144328445196152,0.511066496372223,-0.847337126731873,-0.065565437078476,0.536236345767975,-0.841517508029938,0.030130036175251,0.555299043655396,-0.831104695796967,-0.0118128536269069,0.475162535905838,-0.879818677902222,0.0963072404265404,0.753993153572083,-0.649783909320831,0.196437999606133,0.68328070640564,-0.703234970569611,0.257662415504456,0.683752119541168,-0.682709991931915,-0.0472328327596188,0.752724230289459,-0.656639277935028,0.0963072404265404,0.753993153572083,-0.649783909320831,0.0175048280507326,0.783534646034241,-0.621101319789886,0.213268578052521,0.573152780532837,-0.79120934009552,0.318044990301132,0.587348818778992,-0.744223475456238,0.196437999606133,0.68328070640564,-0.703234970569611,0.302150517702103,0.528000295162201,-0.793675363063812,0.213268578052521,0.573152780532837,-0.79120934009552,0.234946221113205,0.526634216308594,-0.816980123519897,-0.028890173882246,0.73968517780304,-0.672332525253296,-0.0472328327596188,0.752724230289459,-0.656639277935028,-0.0236832834780216,0.788905739784241,-0.614057540893555,-0.028890173882246,0.73968517780304,-0.672332525253296,-0.0267524030059576,0.773729920387268,-0.632950484752655,-0.00577066466212273,0.697141826152802,-0.716909885406494,-0.199861660599709,0.482755899429321,-0.852644085884094,-0.189015328884125,0.52315354347229,-0.831013560295105,-0.140308171510696,0.475975513458252,-0.868193984031677,-0.444730937480927,0.403617650270462,-0.799566805362701,-0.347426950931549,0.43937161564827,-0.828400254249573,-0.400920838117599,0.353004425764084,-0.845369875431061,-0.284984797239304,0.451306611299515,-0.84563934803009,-0.275782346725464,0.37946355342865,-0.883148550987244,-0.347426950931549,0.43937161564827,-0.828400254249573,-0.284984797239304,0.451306611299515,-0.84563934803009,-0.293038487434387,0.505175352096558,-0.811742663383484,-0.199861660599709,0.482755899429321,-0.852644085884094,0.36321285367012,0.328751146793365,-0.871779203414917,0.254775822162628,0.423622101545334,-0.869271814823151,0.419792085886002,0.448674082756042,-0.788965165615082, +0.254775822162628,0.423622101545334,-0.869271814823151,0.20548190176487,0.578993797302246,-0.789014160633087,0.367902219295502,0.592130362987518,-0.716958463191986,0.192640990018845,0.736088693141937,-0.648893475532532,0.240720227360725,0.718276262283325,-0.652788519859314,0.20548190176487,0.578993797302246,-0.789014160633087,-0.000924502848647535,0.733806788921356,-0.679357469081879,-0.153938114643097,0.730575084686279,-0.665254056453705,-0.0237952452152967,0.676969587802887,-0.73562616109848,-0.153938114643097,0.730575084686279,-0.665254056453705,-0.185352727770805,0.759799838066101,-0.623176038265228,-0.222060516476631,0.692457497119904,-0.686433970928192,-0.0789862051606178,0.765419185161591,-0.638666152954102,-0.0496615245938301,0.735869526863098,-0.675299644470215,-0.0185254402458668,0.662168383598328,-0.749125957489014,-0.0789862051606178,0.765419185161591,-0.638666152954102,-0.00577066466212273,0.697141826152802,-0.716909885406494,-0.0267524030059576,0.773729920387268,-0.632950484752655,-0.0496615245938301,0.735869526863098,-0.675299644470215,0.0319755971431732,0.700545907020569,-0.71289050579071,-0.0185254402458668,0.662168383598328,-0.749125957489014,-0.000924502848647535,0.733806788921356,-0.679357469081879,-0.0237952452152967,0.676969587802887,-0.73562616109848,0.0319755971431732,0.700545907020569,-0.71289050579071,-0.10848131030798,0.704144060611725,-0.70172131061554,-0.222060516476631,0.692457497119904,-0.686433970928192,-0.185352727770805,0.759799838066101,-0.623176038265228,-0.185352727770805,0.759799838066101,-0.623176038265228,-0.0526753850281239,0.69577556848526,-0.716324985027313,-0.10848131030798,0.704144060611725,-0.70172131061554,0.0191322211176157,0.621550977230072,-0.783139944076538,-0.0526753850281239,0.69577556848526,-0.716324985027313,0.0878538638353348,0.624370157718658,-0.776172339916229,0.123859591782093,0.561368584632874,-0.818244516849518,0.187496498227119,0.582322239875793,-0.791040897369385,0.0878538638353348,0.624370157718658,-0.776172339916229,-0.252743899822235,0.617192327976227,-0.745113432407379, +-0.283706665039063,0.496326565742493,-0.820469558238983,-0.299798876047134,0.576254665851593,-0.760296761989594,-0.0551715046167374,0.535344898700714,-0.842829644680023,-0.054433673620224,0.509739279747009,-0.858604967594147,-0.153365835547447,0.59484875202179,-0.789071500301361,-0.226147800683975,0.692058622837067,-0.685501158237457,-0.299798876047134,0.576254665851593,-0.760296761989594,-0.153365835547447,0.59484875202179,-0.789071500301361,0.123859591782093,0.561368584632874,-0.818244516849518,-0.00441746646538377,0.529853463172913,-0.848077595233917,-0.0551715046167374,0.535344898700714,-0.842829644680023,-0.252743899822235,0.617192327976227,-0.745113432407379,-0.175064921379089,0.538675963878632,-0.824123978614807,-0.283706665039063,0.496326565742493,-0.820469558238983,-0.175064921379089,0.538675963878632,-0.824123978614807,-0.135333344340324,0.410462290048599,-0.901779055595398,-0.242587357759476,0.410811275243759,-0.87885457277298,0.0162067245692015,0.455644339323044,-0.890014290809631,0.0113578243181109,0.244866386055946,-0.969490230083466,-0.135333344340324,0.410462290048599,-0.901779055595398,0.0342131070792675,0.0798976495862007,-0.99621570110321,0.0113578243181109,0.244866386055946,-0.969490230083466,0.169387087225914,0.176924243569374,-0.969538927078247,0.0342131070792675,0.0798976495862007,-0.99621570110321,0.169387087225914,0.176924243569374,-0.969538927078247,0.091634601354599,0.121697753667831,-0.988328099250793,0.202644973993301,0.81710410118103,-0.539699673652649,0.340025782585144,0.744259536266327,-0.574856638908386,0.240720227360725,0.718276262283325,-0.652788519859314,0.169387087225914,0.176924243569374,-0.969538927078247,0.197514608502388,0.178280025720596,-0.963952362537384,0.091634601354599,0.121697753667831,-0.988328099250793,0.197514608502388,0.178280025720596,-0.963952362537384,0.238100737333298,0.299225687980652,-0.923997819423676,0.156739458441734,0.188722044229507,-0.969441413879395,-0.7420454621315,-0.538324415683746,-0.399468600749969,-0.789113402366638,-0.492156267166138,-0.367535203695297, +-0.846559703350067,-0.388193577528,-0.364200919866562,-0.846559703350067,-0.388193577528,-0.364200919866562,-0.906086802482605,-0.223912730813026,-0.358984172344208,-0.891567528247833,-0.340815246105194,-0.298248529434204,-0.880413830280304,-0.283951222896576,-0.379793494939804,-0.891567528247833,-0.340815246105194,-0.298248529434204,-0.820509374141693,-0.414645910263062,-0.393488258123398,-0.756942629814148,-0.370904088020325,-0.538022041320801,-0.820509374141693,-0.414645910263062,-0.393488258123398,-0.765066206455231,-0.422592401504517,-0.485890120267868,-0.756942629814148,-0.370904088020325,-0.538022041320801,-0.765066206455231,-0.422592401504517,-0.485890120267868,-0.737694561481476,-0.225827306509018,-0.636245787143707,-0.725561141967773,-0.137823164463043,-0.674214839935303,-0.737694561481476,-0.225827306509018,-0.636245787143707,-0.745153844356537,-0.145193263888359,-0.650895178318024,-0.755851864814758,-0.17317470908165,-0.631425619125366,-0.68532931804657,-0.15769462287426,-0.710954248905182,-0.70928293466568,-0.19743686914444,-0.676709830760956,-0.745153844356537,-0.145193263888359,-0.650895178318024,-0.815799176692963,-0.139035061001778,-0.561374127864838,-0.70928293466568,-0.19743686914444,-0.676709830760956,-0.734108746051788,-0.0661826431751251,-0.675798773765564,-0.68532931804657,-0.15769462287426,-0.710954248905182,-0.755851864814758,-0.17317470908165,-0.631425619125366,-0.734108746051788,-0.0661826431751251,-0.675798773765564,-0.794372260570526,-0.0208813846111298,-0.607072174549103,-0.779447257518768,0.108426921069622,-0.617013335227966,-0.845979332923889,0.110041297972202,-0.521737217903137,-0.79049414396286,0.181858256459236,-0.584847331047058,-0.779447257518768,0.108426921069622,-0.617013335227966,-0.757837653160095,0.184449255466461,-0.625827670097351,-0.79049414396286,0.181858256459236,-0.584847331047058,-0.792487502098084,0.0941091850399971,-0.602583587169647,-0.792487502098084,0.0941091850399971,-0.602583587169647,-0.735735058784485,0.0877425745129585,-0.671561598777771,-0.757837653160095,0.184449255466461,-0.625827670097351, +-0.735735058784485,0.0877425745129585,-0.671561598777771,-0.762371063232422,0.103349521756172,-0.638834118843079,-0.70058798789978,0.169666528701782,-0.693101406097412,-0.698779404163361,0.163927614688873,-0.696300864219666,-0.704219877719879,0.169435188174248,-0.68946784734726,-0.70058798789978,0.169666528701782,-0.693101406097412,-0.434005737304688,0.353943169116974,-0.828470408916473,-0.433912724256516,0.322796761989594,-0.841143190860748,-0.425890266895294,0.357384622097015,-0.831200063228607,-0.492968916893005,0.356569766998291,-0.793624341487885,-0.460711747407913,0.360573261976242,-0.811006426811218,-0.434005737304688,0.353943169116974,-0.828470408916473,-0.702824115753174,0.254463851451874,-0.664293766021729,-0.681041538715363,0.285800606012344,-0.674166321754456,-0.683735251426697,0.210387542843819,-0.698743879795074,-0.629925072193146,0.284901201725006,-0.722513318061829,-0.681041538715363,0.285800606012344,-0.674166321754456,-0.647421658039093,0.329180151224136,-0.687375843524933,-0.637044727802277,0.376206994056702,-0.672786831855774,-0.595624446868896,0.338547229766846,-0.728434681892395,-0.647421658039093,0.329180151224136,-0.687375843524933,-0.528681755065918,0.363993018865585,-0.766814529895782,-0.595624446868896,0.338547229766846,-0.728434681892395,-0.61349231004715,0.382108777761459,-0.691100537776947,-0.492968916893005,0.356569766998291,-0.793624341487885,-0.528681755065918,0.363993018865585,-0.766814529895782,-0.460711747407913,0.360573261976242,-0.811006426811218,-0.704845011234283,0.224617093801498,-0.672859966754913,-0.702824115753174,0.254463851451874,-0.664293766021729,-0.698779404163361,0.163927614688873,-0.696300864219666,-0.500807702541351,0.31035840511322,-0.808003187179565,-0.503917336463928,0.303893655538559,-0.808526933193207,-0.433912724256516,0.322796761989594,-0.841143190860748,-0.433912724256516,0.322796761989594,-0.841143190860748,-0.444730937480927,0.403617650270462,-0.799566805362701,-0.500807702541351,0.31035840511322,-0.808003187179565,-0.108760438859463,0.505052745342255,-0.856208324432373, +-0.189015328884125,0.52315354347229,-0.831013560295105,-0.193297654390335,0.557567894458771,-0.807312726974487,-0.181970506906509,0.574167251586914,-0.798259675502777,-0.193297654390335,0.557567894458771,-0.807312726974487,-0.246386915445328,0.622882544994354,-0.742503046989441,-0.065565437078476,0.536236345767975,-0.841517508029938,-0.10098260641098,0.464570611715317,-0.87975937128067,-0.13763453066349,0.537259221076965,-0.832111299037933,-0.13763453066349,0.537259221076965,-0.832111299037933,-0.181970506906509,0.574167251586914,-0.798259675502777,-0.184655800461769,0.601204574108124,-0.77746719121933,0.111001014709473,0.553773403167725,-0.825235486030579,0.144328445196152,0.511066496372223,-0.847337126731873,0.0357764810323715,0.597838580608368,-0.800817728042603,0.111001014709473,0.553773403167725,-0.825235486030579,0.12888665497303,0.583809554576874,-0.801595032215118,0.192460641264915,0.518997192382813,-0.832826912403107,0.192460641264915,0.518997192382813,-0.832826912403107,0.12888665497303,0.583809554576874,-0.801595032215118,0.234946221113205,0.526634216308594,-0.816980123519897,-0.0795047655701637,0.609339356422424,-0.788913488388062,0.0357764810323715,0.597838580608368,-0.800817728042603,0.030130036175251,0.555299043655396,-0.831104695796967,-0.0795047655701637,0.609339356422424,-0.788913488388062,0.030130036175251,0.555299043655396,-0.831104695796967,-0.065565437078476,0.536236345767975,-0.841517508029938,0.196437999606133,0.68328070640564,-0.703234970569611,0.318044990301132,0.587348818778992,-0.744223475456238,0.257662415504456,0.683752119541168,-0.682709991931915,0.0963072404265404,0.753993153572083,-0.649783909320831,0.0123489005491138,0.809582471847534,-0.586876213550568,0.0175048280507326,0.783534646034241,-0.621101319789886,-0.0472328327596188,0.752724230289459,-0.656639277935028,0.0175048280507326,0.783534646034241,-0.621101319789886,-0.0236832834780216,0.788905739784241,-0.614057540893555,0.302150517702103,0.528000295162201,-0.793675363063812,0.318044990301132,0.587348818778992,-0.744223475456238, +0.213268578052521,0.573152780532837,-0.79120934009552,-0.028890173882246,0.73968517780304,-0.672332525253296,-0.0236832834780216,0.788905739784241,-0.614057540893555,-0.0267524030059576,0.773729920387268,-0.632950484752655,-0.199861660599709,0.482755899429321,-0.852644085884094,-0.255412578582764,0.549964010715485,-0.795175433158875,-0.189015328884125,0.52315354347229,-0.831013560295105,-0.347426950931549,0.43937161564827,-0.828400254249573,-0.444730937480927,0.403617650270462,-0.799566805362701,-0.359753042459488,0.494587600231171,-0.791176795959473,-0.284984797239304,0.451306611299515,-0.84563934803009,-0.347426950931549,0.43937161564827,-0.828400254249573,-0.293038487434387,0.505175352096558,-0.811742663383484,-0.199861660599709,0.482755899429321,-0.852644085884094,-0.293038487434387,0.505175352096558,-0.811742663383484,-0.255412578582764,0.549964010715485,-0.795175433158875,0.367902219295502,0.592130362987518,-0.716958463191986,0.419792085886002,0.448674082756042,-0.788965165615082,0.254775822162628,0.423622101545334,-0.869271814823151,0.20548190176487,0.578993797302246,-0.789014160633087,0.240720227360725,0.718276262283325,-0.652788519859314,0.367902219295502,0.592130362987518,-0.716958463191986,-0.000924502848647535,0.733806788921356,-0.679357469081879,-0.17828768491745,0.78554105758667,-0.592569470405579,-0.153938114643097,0.730575084686279,-0.665254056453705,-0.153938114643097,0.730575084686279,-0.665254056453705,-0.17828768491745,0.78554105758667,-0.592569470405579,-0.185352727770805,0.759799838066101,-0.623176038265228,-0.0789862051606178,0.765419185161591,-0.638666152954102,-0.117022641003132,0.820951044559479,-0.558878302574158,-0.0496615245938301,0.735869526863098,-0.675299644470215,-0.0457579381763935,0.81168007850647,-0.582307040691376,-0.0789862051606178,0.765419185161591,-0.638666152954102,-0.0267524030059576,0.773729920387268,-0.632950484752655,-0.0496615245938301,0.735869526863098,-0.675299644470215,-0.0136970579624176,0.766302108764648,-0.642334222793579,0.0319755971431732,0.700545907020569,-0.71289050579071, +-0.182037860155106,0.763865947723389,-0.619169473648071,-0.0526753850281239,0.69577556848526,-0.716324985027313,-0.185352727770805,0.759799838066101,-0.623176038265228,0.0878538638353348,0.624370157718658,-0.776172339916229,-0.0526753850281239,0.69577556848526,-0.716324985027313,-0.0410168468952179,0.590993106365204,-0.805633068084717,0.123859591782093,0.561368584632874,-0.818244516849518,0.0878538638353348,0.624370157718658,-0.776172339916229,-0.00441746646538377,0.529853463172913,-0.848077595233917,-0.252743899822235,0.617192327976227,-0.745113432407379,-0.299798876047134,0.576254665851593,-0.760296761989594,-0.226147800683975,0.692058622837067,-0.685501158237457,-0.00441746646538377,0.529853463172913,-0.848077595233917,-0.054433673620224,0.509739279747009,-0.858604967594147,-0.0551715046167374,0.535344898700714,-0.842829644680023,-0.0234360788017511,0.566917240619659,-0.82344126701355,-0.153365835547447,0.59484875202179,-0.789071500301361,-0.054433673620224,0.509739279747009,-0.858604967594147,-0.226147800683975,0.692058622837067,-0.685501158237457,-0.153365835547447,0.59484875202179,-0.789071500301361,-0.113665774464607,0.678315401077271,-0.725925743579865,-0.252743899822235,0.617192327976227,-0.745113432407379,-0.053034245967865,0.658267021179199,-0.750913918018341,-0.175064921379089,0.538675963878632,-0.824123978614807,0.0162067245692015,0.455644339323044,-0.890014290809631,-0.135333344340324,0.410462290048599,-0.901779055595398,-0.175064921379089,0.538675963878632,-0.824123978614807,0.205736085772514,0.398208141326904,-0.893925487995148,0.0113578243181109,0.244866386055946,-0.969490230083466,0.0162067245692015,0.455644339323044,-0.890014290809631,0.0113578243181109,0.244866386055946,-0.969490230083466,0.205736085772514,0.398208141326904,-0.893925487995148,0.169387087225914,0.176924243569374,-0.969538927078247,0.240720227360725,0.718276262283325,-0.652788519859314,0.340025782585144,0.744259536266327,-0.574856638908386,0.367902219295502,0.592130362987518,-0.716958463191986,0.310127109289169,0.297833174467087,-0.902837991714478, +0.197514608502388,0.178280025720596,-0.963952362537384,0.169387087225914,0.176924243569374,-0.969538927078247,0.310127109289169,0.297833174467087,-0.902837991714478,0.238100737333298,0.299225687980652,-0.923997819423676,0.197514608502388,0.178280025720596,-0.963952362537384,-0.8734170794487,-0.357740044593811,-0.330400496721268,-0.846559703350067,-0.388193577528,-0.364200919866562,-0.789113402366638,-0.492156267166138,-0.367535203695297,-0.8734170794487,-0.357740044593811,-0.330400496721268,-0.906086802482605,-0.223912730813026,-0.358984172344208,-0.846559703350067,-0.388193577528,-0.364200919866562,-0.906086802482605,-0.223912730813026,-0.358984172344208,-0.912551164627075,-0.288118869066238,-0.290237456560135,-0.891567528247833,-0.340815246105194,-0.298248529434204,-0.820509374141693,-0.414645910263062,-0.393488258123398,-0.891567528247833,-0.340815246105194,-0.298248529434204,-0.81332939863205,-0.510489761829376,-0.279097586870193,-0.81332939863205,-0.510489761829376,-0.279097586870193,-0.765066206455231,-0.422592401504517,-0.485890120267868,-0.820509374141693,-0.414645910263062,-0.393488258123398,-0.737694561481476,-0.225827306509018,-0.636245787143707,-0.765066206455231,-0.422592401504517,-0.485890120267868,-0.791286289691925,-0.299149036407471,-0.533268809318542,-0.737694561481476,-0.225827306509018,-0.636245787143707,-0.813054323196411,-0.144118160009384,-0.564067780971527,-0.745153844356537,-0.145193263888359,-0.650895178318024,-0.815799176692963,-0.139035061001778,-0.561374127864838,-0.755851864814758,-0.17317470908165,-0.631425619125366,-0.70928293466568,-0.19743686914444,-0.676709830760956,-0.813054323196411,-0.144118160009384,-0.564067780971527,-0.815799176692963,-0.139035061001778,-0.561374127864838,-0.745153844356537,-0.145193263888359,-0.650895178318024,-0.734108746051788,-0.0661826431751251,-0.675798773765564,-0.755851864814758,-0.17317470908165,-0.631425619125366,-0.794372260570526,-0.0208813846111298,-0.607072174549103,-0.845979332923889,0.110041297972202,-0.521737217903137,-0.779447257518768,0.108426921069622,-0.617013335227966, +-0.794372260570526,-0.0208813846111298,-0.607072174549103,-0.79049414396286,0.181858256459236,-0.584847331047058,-0.845979332923889,0.110041297972202,-0.521737217903137,-0.847610533237457,0.133390322327614,-0.513578832149506,-0.79049414396286,0.181858256459236,-0.584847331047058,-0.847610533237457,0.133390322327614,-0.513578832149506,-0.792487502098084,0.0941091850399971,-0.602583587169647,-0.792487502098084,0.0941091850399971,-0.602583587169647,-0.762371063232422,0.103349521756172,-0.638834118843079,-0.735735058784485,0.0877425745129585,-0.671561598777771,-0.704845011234283,0.224617093801498,-0.672859966754913,-0.70058798789978,0.169666528701782,-0.693101406097412,-0.762371063232422,0.103349521756172,-0.638834118843079,-0.704845011234283,0.224617093801498,-0.672859966754913,-0.698779404163361,0.163927614688873,-0.696300864219666,-0.70058798789978,0.169666528701782,-0.693101406097412,-0.44541996717453,0.377889543771744,-0.811665177345276,-0.433912724256516,0.322796761989594,-0.841143190860748,-0.434005737304688,0.353943169116974,-0.828470408916473,-0.460711747407913,0.360573261976242,-0.811006426811218,-0.44541996717453,0.377889543771744,-0.811665177345276,-0.434005737304688,0.353943169116974,-0.828470408916473,-0.681041538715363,0.285800606012344,-0.674166321754456,-0.702824115753174,0.254463851451874,-0.664293766021729,-0.694827735424042,0.312641859054565,-0.647664487361908,-0.681041538715363,0.285800606012344,-0.674166321754456,-0.694827735424042,0.312641859054565,-0.647664487361908,-0.647421658039093,0.329180151224136,-0.687375843524933,-0.61349231004715,0.382108777761459,-0.691100537776947,-0.595624446868896,0.338547229766846,-0.728434681892395,-0.637044727802277,0.376206994056702,-0.672786831855774,-0.637044727802277,0.376206994056702,-0.672786831855774,-0.647421658039093,0.329180151224136,-0.687375843524933,-0.660042643547058,0.386395692825317,-0.644237458705902,-0.61349231004715,0.382108777761459,-0.691100537776947,-0.574111223220825,0.363190203905106,-0.733818113803864,-0.528681755065918,0.363993018865585,-0.766814529895782, +-0.483724594116211,0.32953354716301,-0.810813188552856,-0.460711747407913,0.360573261976242,-0.811006426811218,-0.528681755065918,0.363993018865585,-0.766814529895782,-0.704845011234283,0.224617093801498,-0.672859966754913,-0.73599773645401,0.304514795541763,-0.604630410671234,-0.702824115753174,0.254463851451874,-0.664293766021729,-0.44541996717453,0.377889543771744,-0.811665177345276,-0.444730937480927,0.403617650270462,-0.799566805362701,-0.433912724256516,0.322796761989594,-0.841143190860748,-0.25134003162384,0.567117094993591,-0.78435081243515,-0.193297654390335,0.557567894458771,-0.807312726974487,-0.189015328884125,0.52315354347229,-0.831013560295105,-0.246386915445328,0.622882544994354,-0.742503046989441,-0.193297654390335,0.557567894458771,-0.807312726974487,-0.25134003162384,0.567117094993591,-0.78435081243515,-0.246386915445328,0.622882544994354,-0.742503046989441,-0.222252160310745,0.616325318813324,-0.755478024482727,-0.181970506906509,0.574167251586914,-0.798259675502777,-0.065565437078476,0.536236345767975,-0.841517508029938,-0.13763453066349,0.537259221076965,-0.832111299037933,-0.0795047655701637,0.609339356422424,-0.788913488388062,-0.184655800461769,0.601204574108124,-0.77746719121933,-0.181970506906509,0.574167251586914,-0.798259675502777,-0.222252160310745,0.616325318813324,-0.755478024482727,-0.0795047655701637,0.609339356422424,-0.788913488388062,-0.13763453066349,0.537259221076965,-0.832111299037933,-0.184655800461769,0.601204574108124,-0.77746719121933,0.111001014709473,0.553773403167725,-0.825235486030579,0.0357764810323715,0.597838580608368,-0.800817728042603,0.12888665497303,0.583809554576874,-0.801595032215118,0.0175048280507326,0.783534646034241,-0.621101319789886,0.0123489005491138,0.809582471847534,-0.586876213550568,-0.0236832834780216,0.788905739784241,-0.614057540893555,-0.0457579381763935,0.81168007850647,-0.582307040691376,-0.0267524030059576,0.773729920387268,-0.632950484752655,-0.0236832834780216,0.788905739784241,-0.614057540893555,-0.189015328884125,0.52315354347229,-0.831013560295105, +-0.255412578582764,0.549964010715485,-0.795175433158875,-0.25134003162384,0.567117094993591,-0.78435081243515,-0.444730937480927,0.403617650270462,-0.799566805362701,-0.396927893161774,0.518134415149689,-0.757617831230164,-0.359753042459488,0.494587600231171,-0.791176795959473,-0.293038487434387,0.505175352096558,-0.811742663383484,-0.347426950931549,0.43937161564827,-0.828400254249573,-0.359753042459488,0.494587600231171,-0.791176795959473,-0.346021384000778,0.555974841117859,-0.755751967430115,-0.255412578582764,0.549964010715485,-0.795175433158875,-0.293038487434387,0.505175352096558,-0.811742663383484,-0.182037860155106,0.763865947723389,-0.619169473648071,-0.185352727770805,0.759799838066101,-0.623176038265228,-0.17828768491745,0.78554105758667,-0.592569470405579,-0.0789862051606178,0.765419185161591,-0.638666152954102,-0.127886220812798,0.813219428062439,-0.567731559276581,-0.117022641003132,0.820951044559479,-0.558878302574158,-0.0136970579624176,0.766302108764648,-0.642334222793579,-0.0496615245938301,0.735869526863098,-0.675299644470215,-0.117022641003132,0.820951044559479,-0.558878302574158,-0.0789862051606178,0.765419185161591,-0.638666152954102,-0.0457579381763935,0.81168007850647,-0.582307040691376,-0.127886220812798,0.813219428062439,-0.567731559276581,-0.0526753850281239,0.69577556848526,-0.716324985027313,-0.182037860155106,0.763865947723389,-0.619169473648071,-0.0988701209425926,0.706082224845886,-0.701193571090698,-0.0526753850281239,0.69577556848526,-0.716324985027313,-0.0988701209425926,0.706082224845886,-0.701193571090698,-0.0410168468952179,0.590993106365204,-0.805633068084717,0.0878538638353348,0.624370157718658,-0.776172339916229,-0.0410168468952179,0.590993106365204,-0.805633068084717,-0.00441746646538377,0.529853463172913,-0.848077595233917,-0.226147800683975,0.692058622837067,-0.685501158237457,-0.138675853610039,0.753877758979797,-0.642212688922882,-0.252743899822235,0.617192327976227,-0.745113432407379,-0.00441746646538377,0.529853463172913,-0.848077595233917,-0.0253894720226526,0.52639764547348,-0.849859297275543, +-0.054433673620224,0.509739279747009,-0.858604967594147,-0.0234360788017511,0.566917240619659,-0.82344126701355,-0.113665774464607,0.678315401077271,-0.725925743579865,-0.153365835547447,0.59484875202179,-0.789071500301361,-0.0253894720226526,0.52639764547348,-0.849859297275543,-0.0234360788017511,0.566917240619659,-0.82344126701355,-0.054433673620224,0.509739279747009,-0.858604967594147,-0.113665774464607,0.678315401077271,-0.725925743579865,-0.144774824380875,0.773405373096466,-0.61715829372406,-0.226147800683975,0.692058622837067,-0.685501158237457,-0.252743899822235,0.617192327976227,-0.745113432407379,-0.138675853610039,0.753877758979797,-0.642212688922882,-0.053034245967865,0.658267021179199,-0.750913918018341,-0.175064921379089,0.538675963878632,-0.824123978614807,-0.053034245967865,0.658267021179199,-0.750913918018341,0.0554115697741508,0.556580662727356,-0.8289435505867,-0.175064921379089,0.538675963878632,-0.824123978614807,0.0554115697741508,0.556580662727356,-0.8289435505867,0.0162067245692015,0.455644339323044,-0.890014290809631,0.0554115697741508,0.556580662727356,-0.8289435505867,0.205736085772514,0.398208141326904,-0.893925487995148,0.0162067245692015,0.455644339323044,-0.890014290809631,0.310127109289169,0.297833174467087,-0.902837991714478,0.169387087225914,0.176924243569374,-0.969538927078247,0.205736085772514,0.398208141326904,-0.893925487995148,0.313081413507462,0.308113813400269,-0.898357272148132,0.238100737333298,0.299225687980652,-0.923997819423676,0.310127109289169,0.297833174467087,-0.902837991714478,-0.8734170794487,-0.357740044593811,-0.330400496721268,-0.913932144641876,-0.214485228061676,-0.344563186168671,-0.906086802482605,-0.223912730813026,-0.358984172344208,-0.912551164627075,-0.288118869066238,-0.290237456560135,-0.906086802482605,-0.223912730813026,-0.358984172344208,-0.900428891181946,-0.250772714614868,-0.355444461107254,-0.858407437801361,-0.458044797182083,-0.230936199426651,-0.891567528247833,-0.340815246105194,-0.298248529434204,-0.912551164627075,-0.288118869066238,-0.290237456560135, +-0.858407437801361,-0.458044797182083,-0.230936199426651,-0.81332939863205,-0.510489761829376,-0.279097586870193,-0.891567528247833,-0.340815246105194,-0.298248529434204,-0.81332939863205,-0.510489761829376,-0.279097586870193,-0.808460533618927,-0.457832098007202,-0.369839429855347,-0.765066206455231,-0.422592401504517,-0.485890120267868,-0.765066206455231,-0.422592401504517,-0.485890120267868,-0.808460533618927,-0.457832098007202,-0.369839429855347,-0.791286289691925,-0.299149036407471,-0.533268809318542,-0.791286289691925,-0.299149036407471,-0.533268809318542,-0.813054323196411,-0.144118160009384,-0.564067780971527,-0.737694561481476,-0.225827306509018,-0.636245787143707,-0.815799176692963,-0.139035061001778,-0.561374127864838,-0.847608625888824,-0.0910590887069702,-0.522749900817871,-0.755851864814758,-0.17317470908165,-0.631425619125366,-0.89376300573349,-0.145941317081451,-0.424132883548737,-0.815799176692963,-0.139035061001778,-0.561374127864838,-0.813054323196411,-0.144118160009384,-0.564067780971527,-0.755851864814758,-0.17317470908165,-0.631425619125366,-0.847608625888824,-0.0910590887069702,-0.522749900817871,-0.794372260570526,-0.0208813846111298,-0.607072174549103,-0.845979332923889,0.110041297972202,-0.521737217903137,-0.794372260570526,-0.0208813846111298,-0.607072174549103,-0.847608625888824,-0.0910590887069702,-0.522749900817871,-0.845979332923889,0.110041297972202,-0.521737217903137,-0.911019384860992,0.127175897359848,-0.39226222038269,-0.847610533237457,0.133390322327614,-0.513578832149506,-0.792487502098084,0.0941091850399971,-0.602583587169647,-0.847610533237457,0.133390322327614,-0.513578832149506,-0.868871450424194,0.0874944776296616,-0.487244367599487,-0.762371063232422,0.103349521756172,-0.638834118843079,-0.792487502098084,0.0941091850399971,-0.602583587169647,-0.868871450424194,0.0874944776296616,-0.487244367599487,-0.80781614780426,0.222444370388985,-0.545849204063416,-0.704845011234283,0.224617093801498,-0.672859966754913,-0.762371063232422,0.103349521756172,-0.638834118843079,-0.460711747407913,0.360573261976242,-0.811006426811218, +-0.437039107084274,0.420083850622177,-0.795315206050873,-0.44541996717453,0.377889543771744,-0.811665177345276,-0.694827735424042,0.312641859054565,-0.647664487361908,-0.702824115753174,0.254463851451874,-0.664293766021729,-0.73599773645401,0.304514795541763,-0.604630410671234,-0.694827735424042,0.312641859054565,-0.647664487361908,-0.660042643547058,0.386395692825317,-0.644237458705902,-0.647421658039093,0.329180151224136,-0.687375843524933,-0.61349231004715,0.382108777761459,-0.691100537776947,-0.637044727802277,0.376206994056702,-0.672786831855774,-0.655564188957214,0.423979640007019,-0.624881207942963,-0.660042643547058,0.386395692825317,-0.644237458705902,-0.655564188957214,0.423979640007019,-0.624881207942963,-0.637044727802277,0.376206994056702,-0.672786831855774,-0.688945174217224,0.352700918912888,-0.633211255073547,-0.574111223220825,0.363190203905106,-0.733818113803864,-0.61349231004715,0.382108777761459,-0.691100537776947,-0.483724594116211,0.32953354716301,-0.810813188552856,-0.528681755065918,0.363993018865585,-0.766814529895782,-0.574111223220825,0.363190203905106,-0.733818113803864,-0.483724594116211,0.32953354716301,-0.810813188552856,-0.437039107084274,0.420083850622177,-0.795315206050873,-0.460711747407913,0.360573261976242,-0.811006426811218,-0.704845011234283,0.224617093801498,-0.672859966754913,-0.80781614780426,0.222444370388985,-0.545849204063416,-0.73599773645401,0.304514795541763,-0.604630410671234,-0.444730937480927,0.403617650270462,-0.799566805362701,-0.44541996717453,0.377889543771744,-0.811665177345276,-0.421821713447571,0.490732192993164,-0.762396335601807,-0.246386915445328,0.622882544994354,-0.742503046989441,-0.25134003162384,0.567117094993591,-0.78435081243515,-0.303250461816788,0.599584341049194,-0.740633249282837,-0.246386915445328,0.622882544994354,-0.742503046989441,-0.260678023099899,0.674859881401062,-0.690370142459869,-0.222252160310745,0.616325318813324,-0.755478024482727,0.0123489005491138,0.809582471847534,-0.586876213550568,-0.0457579381763935,0.81168007850647,-0.582307040691376, +-0.0236832834780216,0.788905739784241,-0.614057540893555,-0.25134003162384,0.567117094993591,-0.78435081243515,-0.255412578582764,0.549964010715485,-0.795175433158875,-0.303250461816788,0.599584341049194,-0.740633249282837,-0.421821713447571,0.490732192993164,-0.762396335601807,-0.396927893161774,0.518134415149689,-0.757617831230164,-0.444730937480927,0.403617650270462,-0.799566805362701,-0.396927893161774,0.518134415149689,-0.757617831230164,-0.346021384000778,0.555974841117859,-0.755751967430115,-0.359753042459488,0.494587600231171,-0.791176795959473,-0.346021384000778,0.555974841117859,-0.755751967430115,-0.293038487434387,0.505175352096558,-0.811742663383484,-0.359753042459488,0.494587600231171,-0.791176795959473,-0.346021384000778,0.555974841117859,-0.755751967430115,-0.303250461816788,0.599584341049194,-0.740633249282837,-0.255412578582764,0.549964010715485,-0.795175433158875,-0.182037860155106,0.763865947723389,-0.619169473648071,-0.17828768491745,0.78554105758667,-0.592569470405579,-0.205419987440109,0.820598483085632,-0.533311069011688,-0.205419987440109,0.820598483085632,-0.533311069011688,-0.0988701209425926,0.706082224845886,-0.701193571090698,-0.182037860155106,0.763865947723389,-0.619169473648071,-0.0314392186701298,0.603459775447845,-0.796773314476013,-0.0410168468952179,0.590993106365204,-0.805633068084717,-0.0988701209425926,0.706082224845886,-0.701193571090698,-0.0253894720226526,0.52639764547348,-0.849859297275543,-0.00441746646538377,0.529853463172913,-0.848077595233917,-0.0410168468952179,0.590993106365204,-0.805633068084717,-0.138675853610039,0.753877758979797,-0.642212688922882,-0.226147800683975,0.692058622837067,-0.685501158237457,-0.144774824380875,0.773405373096466,-0.61715829372406,-0.038858275860548,0.578387200832367,-0.814836263656616,-0.113665774464607,0.678315401077271,-0.725925743579865,-0.0234360788017511,0.566917240619659,-0.82344126701355,-0.00692914519459009,0.559181928634644,-0.829015910625458,-0.0234360788017511,0.566917240619659,-0.82344126701355,-0.0253894720226526,0.52639764547348,-0.849859297275543, +-0.113665774464607,0.678315401077271,-0.725925743579865,-0.0609583966434002,0.707962691783905,-0.703614056110382,-0.144774824380875,0.773405373096466,-0.61715829372406,-0.138675853610039,0.753877758979797,-0.642212688922882,0.0201575104147196,0.743012845516205,-0.668973386287689,-0.053034245967865,0.658267021179199,-0.750913918018341,-0.053034245967865,0.658267021179199,-0.750913918018341,0.106472216546535,0.649674892425537,-0.752719104290009,0.0554115697741508,0.556580662727356,-0.8289435505867,0.0554115697741508,0.556580662727356,-0.8289435505867,0.196163162589073,0.556411445140839,-0.807419419288635,0.205736085772514,0.398208141326904,-0.893925487995148,0.205736085772514,0.398208141326904,-0.893925487995148,0.271462172269821,0.4182488322258,-0.866819500923157,0.310127109289169,0.297833174467087,-0.902837991714478,0.257648348808289,0.278692722320557,-0.925174355506897,0.313081413507462,0.308113813400269,-0.898357272148132,0.310127109289169,0.297833174467087,-0.902837991714478,-0.906086802482605,-0.223912730813026,-0.358984172344208,-0.913932144641876,-0.214485228061676,-0.344563186168671,-0.900428891181946,-0.250772714614868,-0.355444461107254,-0.912551164627075,-0.288118869066238,-0.290237456560135,-0.900428891181946,-0.250772714614868,-0.355444461107254,-0.858407437801361,-0.458044797182083,-0.230936199426651,-0.81332939863205,-0.510489761829376,-0.279097586870193,-0.858407437801361,-0.458044797182083,-0.230936199426651,-0.842874228954315,-0.495026141405106,-0.210978761315346,-0.808460533618927,-0.457832098007202,-0.369839429855347,-0.81332939863205,-0.510489761829376,-0.279097586870193,-0.842874228954315,-0.495026141405106,-0.210978761315346,-0.808460533618927,-0.457832098007202,-0.369839429855347,-0.867043197154999,-0.309623450040817,-0.390345185995102,-0.791286289691925,-0.299149036407471,-0.533268809318542,-0.791286289691925,-0.299149036407471,-0.533268809318542,-0.867043197154999,-0.309623450040817,-0.390345185995102,-0.813054323196411,-0.144118160009384,-0.564067780971527,-0.899018049240112,-0.0988885909318924,-0.426599621772766, +-0.847608625888824,-0.0910590887069702,-0.522749900817871,-0.815799176692963,-0.139035061001778,-0.561374127864838,-0.89376300573349,-0.145941317081451,-0.424132883548737,-0.899018049240112,-0.0988885909318924,-0.426599621772766,-0.815799176692963,-0.139035061001778,-0.561374127864838,-0.813054323196411,-0.144118160009384,-0.564067780971527,-0.867043197154999,-0.309623450040817,-0.390345185995102,-0.89376300573349,-0.145941317081451,-0.424132883548737,-0.911968231201172,-0.0478923879563808,-0.407455712556839,-0.845979332923889,0.110041297972202,-0.521737217903137,-0.847608625888824,-0.0910590887069702,-0.522749900817871,-0.917859017848969,0.0773092731833458,-0.389304429292679,-0.911019384860992,0.127175897359848,-0.39226222038269,-0.845979332923889,0.110041297972202,-0.521737217903137,-0.847610533237457,0.133390322327614,-0.513578832149506,-0.911019384860992,0.127175897359848,-0.39226222038269,-0.868871450424194,0.0874944776296616,-0.487244367599487,-0.762371063232422,0.103349521756172,-0.638834118843079,-0.868871450424194,0.0874944776296616,-0.487244367599487,-0.80781614780426,0.222444370388985,-0.545849204063416,-0.437039107084274,0.420083850622177,-0.795315206050873,-0.413443833589554,0.459569722414017,-0.786040544509888,-0.44541996717453,0.377889543771744,-0.811665177345276,-0.694827735424042,0.312641859054565,-0.647664487361908,-0.73599773645401,0.304514795541763,-0.604630410671234,-0.713854253292084,0.375834584236145,-0.590897977352142,-0.713854253292084,0.375834584236145,-0.590897977352142,-0.660042643547058,0.386395692825317,-0.644237458705902,-0.694827735424042,0.312641859054565,-0.647664487361908,-0.655564188957214,0.423979640007019,-0.624881207942963,-0.688945174217224,0.352700918912888,-0.633211255073547,-0.61349231004715,0.382108777761459,-0.691100537776947,-0.660042643547058,0.386395692825317,-0.644237458705902,-0.64971798658371,0.468453615903854,-0.598679900169373,-0.655564188957214,0.423979640007019,-0.624881207942963,-0.688945174217224,0.352700918912888,-0.633211255073547,-0.65223228931427,0.152535423636436,-0.742513179779053, +-0.574111223220825,0.363190203905106,-0.733818113803864,-0.524270951747894,0.192931845784187,-0.829407691955566,-0.483724594116211,0.32953354716301,-0.810813188552856,-0.574111223220825,0.363190203905106,-0.733818113803864,-0.483724594116211,0.32953354716301,-0.810813188552856,-0.419901162385941,0.383508920669556,-0.822559297084808,-0.437039107084274,0.420083850622177,-0.795315206050873,-0.80781614780426,0.222444370388985,-0.545849204063416,-0.837796866893768,0.28616937994957,-0.464976698160172,-0.73599773645401,0.304514795541763,-0.604630410671234,-0.421821713447571,0.490732192993164,-0.762396335601807,-0.44541996717453,0.377889543771744,-0.811665177345276,-0.413443833589554,0.459569722414017,-0.786040544509888,-0.246386915445328,0.622882544994354,-0.742503046989441,-0.303250461816788,0.599584341049194,-0.740633249282837,-0.260459840297699,0.65387099981308,-0.710361301898956,-0.260459840297699,0.65387099981308,-0.710361301898956,-0.260678023099899,0.674859881401062,-0.690370142459869,-0.246386915445328,0.622882544994354,-0.742503046989441,-0.396927893161774,0.518134415149689,-0.757617831230164,-0.421821713447571,0.490732192993164,-0.762396335601807,-0.343929499387741,0.539937496185303,-0.768231689929962,-0.396927893161774,0.518134415149689,-0.757617831230164,-0.343929499387741,0.539937496185303,-0.768231689929962,-0.346021384000778,0.555974841117859,-0.755751967430115,-0.314276725053787,0.589070081710815,-0.744463801383972,-0.303250461816788,0.599584341049194,-0.740633249282837,-0.346021384000778,0.555974841117859,-0.755751967430115,-0.148892104625702,0.778871357440948,-0.609253942966461,-0.0988701209425926,0.706082224845886,-0.701193571090698,-0.205419987440109,0.820598483085632,-0.533311069011688,-0.0314392186701298,0.603459775447845,-0.796773314476013,-0.0253894720226526,0.52639764547348,-0.849859297275543,-0.0410168468952179,0.590993106365204,-0.805633068084717,-0.0988701209425926,0.706082224845886,-0.701193571090698,-0.0599652007222176,0.625780820846558,-0.777690410614014,-0.0314392186701298,0.603459775447845,-0.796773314476013, +-0.138675853610039,0.753877758979797,-0.642212688922882,-0.144774824380875,0.773405373096466,-0.61715829372406,-0.0480109117925167,0.786734402179718,-0.615421652793884,-0.113665774464607,0.678315401077271,-0.725925743579865,-0.038858275860548,0.578387200832367,-0.814836263656616,-0.0609583966434002,0.707962691783905,-0.703614056110382,-0.038858275860548,0.578387200832367,-0.814836263656616,-0.0234360788017511,0.566917240619659,-0.82344126701355,-0.00692914519459009,0.559181928634644,-0.829015910625458,-0.0253894720226526,0.52639764547348,-0.849859297275543,-0.0314392186701298,0.603459775447845,-0.796773314476013,-0.00692914519459009,0.559181928634644,-0.829015910625458,-0.0609583966434002,0.707962691783905,-0.703614056110382,-0.0480109117925167,0.786734402179718,-0.615421652793884,-0.144774824380875,0.773405373096466,-0.61715829372406,-0.138675853610039,0.753877758979797,-0.642212688922882,-0.0480109117925167,0.786734402179718,-0.615421652793884,0.0201575104147196,0.743012845516205,-0.668973386287689,-0.053034245967865,0.658267021179199,-0.750913918018341,0.0201575104147196,0.743012845516205,-0.668973386287689,0.106472216546535,0.649674892425537,-0.752719104290009,0.0554115697741508,0.556580662727356,-0.8289435505867,0.106472216546535,0.649674892425537,-0.752719104290009,0.196163162589073,0.556411445140839,-0.807419419288635,0.205736085772514,0.398208141326904,-0.893925487995148,0.196163162589073,0.556411445140839,-0.807419419288635,0.271462172269821,0.4182488322258,-0.866819500923157,0.310127109289169,0.297833174467087,-0.902837991714478,0.271462172269821,0.4182488322258,-0.866819500923157,0.257648348808289,0.278692722320557,-0.925174355506897,-0.900428891181946,-0.250772714614868,-0.355444461107254,-0.913932144641876,-0.214485228061676,-0.344563186168671,-0.91212797164917,-0.20737598836422,-0.353578329086304,-0.900428891181946,-0.250772714614868,-0.355444461107254,-0.860810339450836,-0.409131795167923,-0.302682250738144,-0.858407437801361,-0.458044797182083,-0.230936199426651,-0.858407437801361,-0.458044797182083,-0.230936199426651, +-0.817789971828461,-0.53257155418396,-0.218144342303276,-0.842874228954315,-0.495026141405106,-0.210978761315346,-0.808460533618927,-0.457832098007202,-0.369839429855347,-0.842874228954315,-0.495026141405106,-0.210978761315346,-0.867043197154999,-0.309623450040817,-0.390345185995102,-0.899018049240112,-0.0988885909318924,-0.426599621772766,-0.911968231201172,-0.0478923879563808,-0.407455712556839,-0.847608625888824,-0.0910590887069702,-0.522749900817871,-0.89376300573349,-0.145941317081451,-0.424132883548737,-0.902292191982269,-0.205826565623283,-0.378819346427917,-0.899018049240112,-0.0988885909318924,-0.426599621772766,-0.883600115776062,-0.375029176473618,-0.280363917350769,-0.89376300573349,-0.145941317081451,-0.424132883548737,-0.867043197154999,-0.309623450040817,-0.390345185995102,-0.917859017848969,0.0773092731833458,-0.389304429292679,-0.845979332923889,0.110041297972202,-0.521737217903137,-0.911968231201172,-0.0478923879563808,-0.407455712556839,-0.917859017848969,0.0773092731833458,-0.389304429292679,-0.90349417924881,0.142289087176323,-0.404291868209839,-0.911019384860992,0.127175897359848,-0.39226222038269,-0.917885839939117,0.153783693909645,-0.365836083889008,-0.868871450424194,0.0874944776296616,-0.487244367599487,-0.911019384860992,0.127175897359848,-0.39226222038269,-0.80781614780426,0.222444370388985,-0.545849204063416,-0.868871450424194,0.0874944776296616,-0.487244367599487,-0.917885839939117,0.153783693909645,-0.365836083889008,-0.413443833589554,0.459569722414017,-0.786040544509888,-0.437039107084274,0.420083850622177,-0.795315206050873,-0.375834852457047,0.351081639528275,-0.857606947422028,-0.713854253292084,0.375834584236145,-0.590897977352142,-0.73599773645401,0.304514795541763,-0.604630410671234,-0.770831823348999,0.359171003103256,-0.526131510734558,-0.660042643547058,0.386395692825317,-0.644237458705902,-0.713854253292084,0.375834584236145,-0.590897977352142,-0.64971798658371,0.468453615903854,-0.598679900169373,-0.688945174217224,0.352700918912888,-0.633211255073547,-0.655564188957214,0.423979640007019,-0.624881207942963, +-0.667014062404633,0.439234584569931,-0.601801514625549,-0.655564188957214,0.423979640007019,-0.624881207942963,-0.64971798658371,0.468453615903854,-0.598679900169373,-0.667014062404633,0.439234584569931,-0.601801514625549,-0.705054044723511,0.0624270401895046,-0.706400394439697,-0.65223228931427,0.152535423636436,-0.742513179779053,-0.688945174217224,0.352700918912888,-0.633211255073547,-0.65223228931427,0.152535423636436,-0.742513179779053,-0.544348120689392,0.1297817081213,-0.828759133815765,-0.574111223220825,0.363190203905106,-0.733818113803864,-0.524270951747894,0.192931845784187,-0.829407691955566,-0.483485728502274,0.027915358543396,-0.874906957149506,-0.483724594116211,0.32953354716301,-0.810813188552856,-0.524270951747894,0.192931845784187,-0.829407691955566,-0.574111223220825,0.363190203905106,-0.733818113803864,-0.544348120689392,0.1297817081213,-0.828759133815765,-0.419901162385941,0.383508920669556,-0.822559297084808,-0.483724594116211,0.32953354716301,-0.810813188552856,-0.358846664428711,0.190031319856644,-0.913847386837006,-0.375834852457047,0.351081639528275,-0.857606947422028,-0.437039107084274,0.420083850622177,-0.795315206050873,-0.419901162385941,0.383508920669556,-0.822559297084808,-0.80781614780426,0.222444370388985,-0.545849204063416,-0.917885839939117,0.153783693909645,-0.365836083889008,-0.837796866893768,0.28616937994957,-0.464976698160172,-0.837796866893768,0.28616937994957,-0.464976698160172,-0.770831823348999,0.359171003103256,-0.526131510734558,-0.73599773645401,0.304514795541763,-0.604630410671234,-0.421821713447571,0.490732192993164,-0.762396335601807,-0.413443833589554,0.459569722414017,-0.786040544509888,-0.341947317123413,0.486260503530502,-0.804128468036652,-0.314276725053787,0.589070081710815,-0.744463801383972,-0.260459840297699,0.65387099981308,-0.710361301898956,-0.303250461816788,0.599584341049194,-0.740633249282837,-0.343929499387741,0.539937496185303,-0.768231689929962,-0.421821713447571,0.490732192993164,-0.762396335601807,-0.341947317123413,0.486260503530502,-0.804128468036652, +-0.346021384000778,0.555974841117859,-0.755751967430115,-0.343929499387741,0.539937496185303,-0.768231689929962,-0.314276725053787,0.589070081710815,-0.744463801383972,-0.0998120605945587,0.713394284248352,-0.69361799955368,-0.0988701209425926,0.706082224845886,-0.701193571090698,-0.148892104625702,0.778871357440948,-0.609253942966461,-0.0988701209425926,0.706082224845886,-0.701193571090698,-0.0998120605945587,0.713394284248352,-0.69361799955368,-0.0599652007222176,0.625780820846558,-0.777690410614014,-0.00692914519459009,0.559181928634644,-0.829015910625458,-0.0314392186701298,0.603459775447845,-0.796773314476013,-0.0599652007222176,0.625780820846558,-0.777690410614014,-0.038858275860548,0.578387200832367,-0.814836263656616,-0.0369736813008785,0.612265825271606,-0.789786875247955,-0.0609583966434002,0.707962691783905,-0.703614056110382,-0.0363954193890095,0.558412313461304,-0.828764677047729,-0.038858275860548,0.578387200832367,-0.814836263656616,-0.00692914519459009,0.559181928634644,-0.829015910625458,-0.0609583966434002,0.707962691783905,-0.703614056110382,-0.0120418844744563,0.732812345027924,-0.680324077606201,-0.0480109117925167,0.786734402179718,-0.615421652793884,-0.0480109117925167,0.786734402179718,-0.615421652793884,-0.0120418844744563,0.732812345027924,-0.680324077606201,0.0201575104147196,0.743012845516205,-0.668973386287689,0.106472216546535,0.649674892425537,-0.752719104290009,0.0201575104147196,0.743012845516205,-0.668973386287689,0.104745335876942,0.681301593780518,-0.724469721317291,0.106472216546535,0.649674892425537,-0.752719104290009,0.104745335876942,0.681301593780518,-0.724469721317291,0.196163162589073,0.556411445140839,-0.807419419288635,0.196163162589073,0.556411445140839,-0.807419419288635,0.139465749263763,0.564831137657166,-0.813335657119751,0.271462172269821,0.4182488322258,-0.866819500923157,0.0315150693058968,0.272475212812424,-0.961646497249603,0.257648348808289,0.278692722320557,-0.925174355506897,0.271462172269821,0.4182488322258,-0.866819500923157,-0.860810339450836,-0.409131795167923,-0.302682250738144, +-0.900428891181946,-0.250772714614868,-0.355444461107254,-0.91212797164917,-0.20737598836422,-0.353578329086304,-0.858407437801361,-0.458044797182083,-0.230936199426651,-0.860810339450836,-0.409131795167923,-0.302682250738144,-0.817789971828461,-0.53257155418396,-0.218144342303276,-0.842874228954315,-0.495026141405106,-0.210978761315346,-0.817789971828461,-0.53257155418396,-0.218144342303276,-0.883600115776062,-0.375029176473618,-0.280363917350769,-0.883600115776062,-0.375029176473618,-0.280363917350769,-0.867043197154999,-0.309623450040817,-0.390345185995102,-0.842874228954315,-0.495026141405106,-0.210978761315346,-0.941373288631439,-0.0472518093883991,-0.334041237831116,-0.911968231201172,-0.0478923879563808,-0.407455712556839,-0.899018049240112,-0.0988885909318924,-0.426599621772766,-0.89376300573349,-0.145941317081451,-0.424132883548737,-0.883600115776062,-0.375029176473618,-0.280363917350769,-0.902292191982269,-0.205826565623283,-0.378819346427917,-0.902292191982269,-0.205826565623283,-0.378819346427917,-0.907903552055359,-0.0381278283894062,-0.417441099882126,-0.899018049240112,-0.0988885909318924,-0.426599621772766,-0.951934039592743,-0.0334640592336655,-0.304469406604767,-0.917859017848969,0.0773092731833458,-0.389304429292679,-0.911968231201172,-0.0478923879563808,-0.407455712556839,-0.917859017848969,0.0773092731833458,-0.389304429292679,-0.958980798721313,-0.025816697627306,-0.282292723655701,-0.90349417924881,0.142289087176323,-0.404291868209839,-0.911019384860992,0.127175897359848,-0.39226222038269,-0.90349417924881,0.142289087176323,-0.404291868209839,-0.910080194473267,0.149950832128525,-0.386352986097336,-0.911019384860992,0.127175897359848,-0.39226222038269,-0.94759213924408,0.12071330845356,-0.295799404382706,-0.917885839939117,0.153783693909645,-0.365836083889008,-0.413443833589554,0.459569722414017,-0.786040544509888,-0.375834852457047,0.351081639528275,-0.857606947422028,-0.372130990028381,0.403654366731644,-0.835811972618103,-0.770831823348999,0.359171003103256,-0.526131510734558,-0.696538507938385,0.368663132190704,-0.615565955638886, +-0.713854253292084,0.375834584236145,-0.590897977352142,-0.713854253292084,0.375834584236145,-0.590897977352142,-0.696538507938385,0.368663132190704,-0.615565955638886,-0.64971798658371,0.468453615903854,-0.598679900169373,-0.710224986076355,0.283907234668732,-0.644187092781067,-0.688945174217224,0.352700918912888,-0.633211255073547,-0.667014062404633,0.439234584569931,-0.601801514625549,-0.667014062404633,0.439234584569931,-0.601801514625549,-0.64971798658371,0.468453615903854,-0.598679900169373,-0.654076099395752,0.430163443088531,-0.622208714485168,-0.705054044723511,0.0624270401895046,-0.706400394439697,-0.575585305690765,-0.189037844538689,-0.795591652393341,-0.65223228931427,0.152535423636436,-0.742513179779053,-0.710224986076355,0.283907234668732,-0.644187092781067,-0.705054044723511,0.0624270401895046,-0.706400394439697,-0.688945174217224,0.352700918912888,-0.633211255073547,-0.65223228931427,0.152535423636436,-0.742513179779053,-0.505552411079407,-0.165300637483597,-0.846813082695007,-0.544348120689392,0.1297817081213,-0.828759133815765,-0.524270951747894,0.192931845784187,-0.829407691955566,-0.455881804227829,-0.117612548172474,-0.882235169410706,-0.483485728502274,0.027915358543396,-0.874906957149506,-0.483485728502274,0.027915358543396,-0.874906957149506,-0.405616492033005,0.0533341132104397,-0.912485837936401,-0.483724594116211,0.32953354716301,-0.810813188552856,-0.524270951747894,0.192931845784187,-0.829407691955566,-0.544348120689392,0.1297817081213,-0.828759133815765,-0.455881804227829,-0.117612548172474,-0.882235169410706,-0.483724594116211,0.32953354716301,-0.810813188552856,-0.405616492033005,0.0533341132104397,-0.912485837936401,-0.358846664428711,0.190031319856644,-0.913847386837006,-0.358846664428711,0.190031319856644,-0.913847386837006,-0.375834852457047,0.351081639528275,-0.857606947422028,-0.419901162385941,0.383508920669556,-0.822559297084808,-0.917885839939117,0.153783693909645,-0.365836083889008,-0.902193665504456,0.212860852479935,-0.375149071216583,-0.837796866893768,0.28616937994957,-0.464976698160172, +-0.837796866893768,0.28616937994957,-0.464976698160172,-0.847385883331299,0.322486340999603,-0.421828895807266,-0.770831823348999,0.359171003103256,-0.526131510734558,-0.354063183069229,0.398241758346558,-0.846193015575409,-0.341947317123413,0.486260503530502,-0.804128468036652,-0.413443833589554,0.459569722414017,-0.786040544509888,-0.254652887582779,0.421563982963562,-0.870307743549347,-0.343929499387741,0.539937496185303,-0.768231689929962,-0.341947317123413,0.486260503530502,-0.804128468036652,-0.343929499387741,0.539937496185303,-0.768231689929962,-0.229525774717331,0.473694860935211,-0.850253462791443,-0.314276725053787,0.589070081710815,-0.744463801383972,-0.0998120605945587,0.713394284248352,-0.69361799955368,-0.0896875858306885,0.667133033275604,-0.739519774913788,-0.0599652007222176,0.625780820846558,-0.777690410614014,-0.0363954193890095,0.558412313461304,-0.828764677047729,-0.00692914519459009,0.559181928634644,-0.829015910625458,-0.0599652007222176,0.625780820846558,-0.777690410614014,-0.0369736813008785,0.612265825271606,-0.789786875247955,-0.038858275860548,0.578387200832367,-0.814836263656616,0.00432480406016111,0.57669985294342,-0.816944539546967,-0.0663641169667244,0.619469821453094,-0.782210230827332,-0.0609583966434002,0.707962691783905,-0.703614056110382,-0.0369736813008785,0.612265825271606,-0.789786875247955,-0.0363954193890095,0.558412313461304,-0.828764677047729,0.00432480406016111,0.57669985294342,-0.816944539546967,-0.038858275860548,0.578387200832367,-0.814836263656616,-0.0609583966434002,0.707962691783905,-0.703614056110382,-0.0663641169667244,0.619469821453094,-0.782210230827332,-0.0120418844744563,0.732812345027924,-0.680324077606201,0.0201575104147196,0.743012845516205,-0.668973386287689,-0.0120418844744563,0.732812345027924,-0.680324077606201,0.104745335876942,0.681301593780518,-0.724469721317291,0.104745335876942,0.681301593780518,-0.724469721317291,0.139465749263763,0.564831137657166,-0.813335657119751,0.196163162589073,0.556411445140839,-0.807419419288635,0.0315150693058968,0.272475212812424,-0.961646497249603, +0.271462172269821,0.4182488322258,-0.866819500923157,0.139465749263763,0.564831137657166,-0.813335657119751,-0.860810339450836,-0.409131795167923,-0.302682250738144,-0.91212797164917,-0.20737598836422,-0.353578329086304,-0.889040887355804,-0.337670803070068,-0.309167742729187,-0.860810339450836,-0.409131795167923,-0.302682250738144,-0.808610618114471,-0.535207331180573,-0.244339540600777,-0.817789971828461,-0.53257155418396,-0.218144342303276,-0.831749737262726,-0.474136501550674,-0.288767635822296,-0.883600115776062,-0.375029176473618,-0.280363917350769,-0.817789971828461,-0.53257155418396,-0.218144342303276,-0.941373288631439,-0.0472518093883991,-0.334041237831116,-0.951934039592743,-0.0334640592336655,-0.304469406604767,-0.911968231201172,-0.0478923879563808,-0.407455712556839,-0.941373288631439,-0.0472518093883991,-0.334041237831116,-0.899018049240112,-0.0988885909318924,-0.426599621772766,-0.907903552055359,-0.0381278283894062,-0.417441099882126,-0.831749737262726,-0.474136501550674,-0.288767635822296,-0.902292191982269,-0.205826565623283,-0.378819346427917,-0.883600115776062,-0.375029176473618,-0.280363917350769,-0.907903552055359,-0.0381278283894062,-0.417441099882126,-0.902292191982269,-0.205826565623283,-0.378819346427917,-0.881802797317505,-0.294987231492996,-0.367975890636444,-0.974850058555603,-0.0037487824447453,-0.222829520702362,-0.917859017848969,0.0773092731833458,-0.389304429292679,-0.951934039592743,-0.0334640592336655,-0.304469406604767,-0.917859017848969,0.0773092731833458,-0.389304429292679,-0.974850058555603,-0.0037487824447453,-0.222829520702362,-0.958980798721313,-0.025816697627306,-0.282292723655701,-0.913110256195068,0.0655995607376099,-0.402400612831116,-0.90349417924881,0.142289087176323,-0.404291868209839,-0.958980798721313,-0.025816697627306,-0.282292723655701,-0.90349417924881,0.142289087176323,-0.404291868209839,-0.904012382030487,0.22012734413147,-0.366476982831955,-0.910080194473267,0.149950832128525,-0.386352986097336,-0.910080194473267,0.149950832128525,-0.386352986097336,-0.94759213924408,0.12071330845356,-0.295799404382706, +-0.911019384860992,0.127175897359848,-0.39226222038269,-0.917885839939117,0.153783693909645,-0.365836083889008,-0.94759213924408,0.12071330845356,-0.295799404382706,-0.902193665504456,0.212860852479935,-0.375149071216583,-0.372130990028381,0.403654366731644,-0.835811972618103,-0.375834852457047,0.351081639528275,-0.857606947422028,-0.28678160905838,0.194575324654579,-0.93802809715271,-0.372130990028381,0.403654366731644,-0.835811972618103,-0.354063183069229,0.398241758346558,-0.846193015575409,-0.413443833589554,0.459569722414017,-0.786040544509888,-0.770831823348999,0.359171003103256,-0.526131510734558,-0.793820559978485,0.358805328607559,-0.491027027368546,-0.696538507938385,0.368663132190704,-0.615565955638886,-0.654076099395752,0.430163443088531,-0.622208714485168,-0.64971798658371,0.468453615903854,-0.598679900169373,-0.696538507938385,0.368663132190704,-0.615565955638886,-0.680899083614349,0.269147306680679,-0.68112850189209,-0.710224986076355,0.283907234668732,-0.644187092781067,-0.667014062404633,0.439234584569931,-0.601801514625549,-0.667014062404633,0.439234584569931,-0.601801514625549,-0.654076099395752,0.430163443088531,-0.622208714485168,-0.680899083614349,0.269147306680679,-0.68112850189209,-0.705054044723511,0.0624270401895046,-0.706400394439697,-0.572319269180298,-0.312183052301407,-0.758282423019409,-0.575585305690765,-0.189037844538689,-0.795591652393341,-0.505552411079407,-0.165300637483597,-0.846813082695007,-0.65223228931427,0.152535423636436,-0.742513179779053,-0.575585305690765,-0.189037844538689,-0.795591652393341,-0.710224986076355,0.283907234668732,-0.644187092781067,-0.691551744937897,-0.00112881348468363,-0.722325921058655,-0.705054044723511,0.0624270401895046,-0.706400394439697,-0.505552411079407,-0.165300637483597,-0.846813082695007,-0.455881804227829,-0.117612548172474,-0.882235169410706,-0.544348120689392,0.1297817081213,-0.828759133815765,-0.455881804227829,-0.117612548172474,-0.882235169410706,-0.379041582345963,-0.205357626080513,-0.902305722236633,-0.483485728502274,0.027915358543396,-0.874906957149506, +-0.483485728502274,0.027915358543396,-0.874906957149506,-0.379041582345963,-0.205357626080513,-0.902305722236633,-0.405616492033005,0.0533341132104397,-0.912485837936401,-0.358846664428711,0.190031319856644,-0.913847386837006,-0.405616492033005,0.0533341132104397,-0.912485837936401,-0.261964023113251,-0.115215755999088,-0.958175420761108,-0.358846664428711,0.190031319856644,-0.913847386837006,-0.258762925863266,0.0591350421309471,-0.964128971099854,-0.375834852457047,0.351081639528275,-0.857606947422028,-0.837796866893768,0.28616937994957,-0.464976698160172,-0.902193665504456,0.212860852479935,-0.375149071216583,-0.847385883331299,0.322486340999603,-0.421828895807266,-0.793820559978485,0.358805328607559,-0.491027027368546,-0.770831823348999,0.359171003103256,-0.526131510734558,-0.847385883331299,0.322486340999603,-0.421828895807266,-0.341947317123413,0.486260503530502,-0.804128468036652,-0.354063183069229,0.398241758346558,-0.846193015575409,-0.206821739673615,0.323643118143082,-0.923298299312592,-0.254652887582779,0.421563982963562,-0.870307743549347,-0.219464972615242,0.346631556749344,-0.911965787410736,-0.343929499387741,0.539937496185303,-0.768231689929962,-0.341947317123413,0.486260503530502,-0.804128468036652,-0.206821739673615,0.323643118143082,-0.923298299312592,-0.254652887582779,0.421563982963562,-0.870307743549347,-0.343929499387741,0.539937496185303,-0.768231689929962,-0.219464972615242,0.346631556749344,-0.911965787410736,-0.229525774717331,0.473694860935211,-0.850253462791443,-0.0896875858306885,0.667133033275604,-0.739519774913788,-0.0363954193890095,0.558412313461304,-0.828764677047729,-0.0599652007222176,0.625780820846558,-0.777690410614014,-0.0663641169667244,0.619469821453094,-0.782210230827332,-0.0369736813008785,0.612265825271606,-0.789786875247955,0.00432480406016111,0.57669985294342,-0.816944539546967,0.00432480406016111,0.57669985294342,-0.816944539546967,-0.0363954193890095,0.558412313461304,-0.828764677047729,0.0607711300253868,0.629403114318848,-0.774698972702026,-0.0769268795847893,0.613376796245575,-0.786035001277924, +-0.0120418844744563,0.732812345027924,-0.680324077606201,-0.0663641169667244,0.619469821453094,-0.782210230827332,-0.0769268795847893,0.613376796245575,-0.786035001277924,0.104745335876942,0.681301593780518,-0.724469721317291,-0.0120418844744563,0.732812345027924,-0.680324077606201,0.104745335876942,0.681301593780518,-0.724469721317291,-0.0769268795847893,0.613376796245575,-0.786035001277924,0.139465749263763,0.564831137657166,-0.813335657119751,0.0315150693058968,0.272475212812424,-0.961646497249603,0.139465749263763,0.564831137657166,-0.813335657119751,-0.159213542938232,0.440611034631729,-0.883466362953186,-0.860810339450836,-0.409131795167923,-0.302682250738144,-0.889040887355804,-0.337670803070068,-0.309167742729187,-0.808610618114471,-0.535207331180573,-0.244339540600777,-0.817789971828461,-0.53257155418396,-0.218144342303276,-0.808610618114471,-0.535207331180573,-0.244339540600777,-0.831749737262726,-0.474136501550674,-0.288767635822296,-0.970711410045624,-0.0148824779316783,-0.239786937832832,-0.951934039592743,-0.0334640592336655,-0.304469406604767,-0.941373288631439,-0.0472518093883991,-0.334041237831116,-0.941373288631439,-0.0472518093883991,-0.334041237831116,-0.907903552055359,-0.0381278283894062,-0.417441099882126,-0.943991899490356,0.0707800462841988,-0.322287738323212,-0.881802797317505,-0.294987231492996,-0.367975890636444,-0.902292191982269,-0.205826565623283,-0.378819346427917,-0.831749737262726,-0.474136501550674,-0.288767635822296,-0.907903552055359,-0.0381278283894062,-0.417441099882126,-0.881802797317505,-0.294987231492996,-0.367975890636444,-0.904104948043823,-0.0829316154122353,-0.419185429811478,-0.951934039592743,-0.0334640592336655,-0.304469406604767,-0.970711410045624,-0.0148824779316783,-0.239786937832832,-0.974850058555603,-0.0037487824447453,-0.222829520702362,-0.974850058555603,-0.0037487824447453,-0.222829520702362,-0.990545988082886,-0.0318255871534348,-0.133437752723694,-0.958980798721313,-0.025816697627306,-0.282292723655701,-0.90349417924881,0.142289087176323,-0.404291868209839, +-0.913110256195068,0.0655995607376099,-0.402400612831116,-0.923758566379547,0.184713184833527,-0.335486382246017,-0.958980798721313,-0.025816697627306,-0.282292723655701,-0.92721164226532,-0.100016199052334,-0.36093658208847,-0.913110256195068,0.0655995607376099,-0.402400612831116,-0.923758566379547,0.184713184833527,-0.335486382246017,-0.904012382030487,0.22012734413147,-0.366476982831955,-0.90349417924881,0.142289087176323,-0.404291868209839,-0.910080194473267,0.149950832128525,-0.386352986097336,-0.904012382030487,0.22012734413147,-0.366476982831955,-0.902193665504456,0.212860852479935,-0.375149071216583,-0.910080194473267,0.149950832128525,-0.386352986097336,-0.902193665504456,0.212860852479935,-0.375149071216583,-0.94759213924408,0.12071330845356,-0.295799404382706,-0.258762925863266,0.0591350421309471,-0.964128971099854,-0.28678160905838,0.194575324654579,-0.93802809715271,-0.375834852457047,0.351081639528275,-0.857606947422028,-0.28678160905838,0.194575324654579,-0.93802809715271,-0.300589680671692,0.280695348978043,-0.911512911319733,-0.372130990028381,0.403654366731644,-0.835811972618103,-0.372130990028381,0.403654366731644,-0.835811972618103,-0.300589680671692,0.280695348978043,-0.911512911319733,-0.354063183069229,0.398241758346558,-0.846193015575409,-0.757979393005371,0.243807956576347,-0.604999780654907,-0.696538507938385,0.368663132190704,-0.615565955638886,-0.793820559978485,0.358805328607559,-0.491027027368546,-0.654076099395752,0.430163443088531,-0.622208714485168,-0.696538507938385,0.368663132190704,-0.615565955638886,-0.656483232975006,0.132868766784668,-0.742546617984772,-0.680899083614349,0.269147306680679,-0.68112850189209,-0.691551744937897,-0.00112881348468363,-0.722325921058655,-0.710224986076355,0.283907234668732,-0.644187092781067,-0.680899083614349,0.269147306680679,-0.68112850189209,-0.654076099395752,0.430163443088531,-0.622208714485168,-0.656483232975006,0.132868766784668,-0.742546617984772,-0.691551744937897,-0.00112881348468363,-0.722325921058655,-0.572319269180298,-0.312183052301407,-0.758282423019409, +-0.705054044723511,0.0624270401895046,-0.706400394439697,-0.575585305690765,-0.189037844538689,-0.795591652393341,-0.572319269180298,-0.312183052301407,-0.758282423019409,-0.477010816335678,-0.379943609237671,-0.792529761791229,-0.505552411079407,-0.165300637483597,-0.846813082695007,-0.575585305690765,-0.189037844538689,-0.795591652393341,-0.438927561044693,-0.345933943986893,-0.829259991645813,-0.505552411079407,-0.165300637483597,-0.846813082695007,-0.392400830984116,-0.338783711194992,-0.855129837989807,-0.455881804227829,-0.117612548172474,-0.882235169410706,-0.379041582345963,-0.205357626080513,-0.902305722236633,-0.455881804227829,-0.117612548172474,-0.882235169410706,-0.392400830984116,-0.338783711194992,-0.855129837989807,-0.379041582345963,-0.205357626080513,-0.902305722236633,-0.261964023113251,-0.115215755999088,-0.958175420761108,-0.405616492033005,0.0533341132104397,-0.912485837936401,-0.258762925863266,0.0591350421309471,-0.964128971099854,-0.358846664428711,0.190031319856644,-0.913847386837006,-0.261964023113251,-0.115215755999088,-0.958175420761108,-0.847385883331299,0.322486340999603,-0.421828895807266,-0.902193665504456,0.212860852479935,-0.375149071216583,-0.904012382030487,0.22012734413147,-0.366476982831955,-0.793820559978485,0.358805328607559,-0.491027027368546,-0.847385883331299,0.322486340999603,-0.421828895807266,-0.844969749450684,0.310602188110352,-0.435376018285751,-0.354063183069229,0.398241758346558,-0.846193015575409,-0.198397010564804,0.202959597110748,-0.958877444267273,-0.206821739673615,0.323643118143082,-0.923298299312592,-0.219464972615242,0.346631556749344,-0.911965787410736,-0.254652887582779,0.421563982963562,-0.870307743549347,-0.107182562351227,0.1931242197752,-0.975302398204803,-0.206821739673615,0.323643118143082,-0.923298299312592,-0.107182562351227,0.1931242197752,-0.975302398204803,-0.254652887582779,0.421563982963562,-0.870307743549347,-0.0363954193890095,0.558412313461304,-0.828764677047729,-0.0896875858306885,0.667133033275604,-0.739519774913788,0.0607711300253868,0.629403114318848,-0.774698972702026, +-0.0769268795847893,0.613376796245575,-0.786035001277924,-0.159213542938232,0.440611034631729,-0.883466362953186,0.139465749263763,0.564831137657166,-0.813335657119751,-0.808610618114471,-0.535207331180573,-0.244339540600777,-0.889040887355804,-0.337670803070068,-0.309167742729187,-0.846534252166748,-0.485259592533112,-0.218866914510727,-0.808610618114471,-0.535207331180573,-0.244339540600777,-0.813815414905548,-0.527757287025452,-0.243262425065041,-0.831749737262726,-0.474136501550674,-0.288767635822296,-0.941373288631439,-0.0472518093883991,-0.334041237831116,-0.943991899490356,0.0707800462841988,-0.322287738323212,-0.970711410045624,-0.0148824779316783,-0.239786937832832,-0.943991899490356,0.0707800462841988,-0.322287738323212,-0.907903552055359,-0.0381278283894062,-0.417441099882126,-0.87582391500473,0.143990889191628,-0.460650682449341,-0.881802797317505,-0.294987231492996,-0.367975890636444,-0.831749737262726,-0.474136501550674,-0.288767635822296,-0.813815414905548,-0.527757287025452,-0.243262425065041,-0.881802797317505,-0.294987231492996,-0.367975890636444,-0.898461222648621,-0.35691037774086,-0.255699664354324,-0.904104948043823,-0.0829316154122353,-0.419185429811478,-0.907903552055359,-0.0381278283894062,-0.417441099882126,-0.904104948043823,-0.0829316154122353,-0.419185429811478,-0.87582391500473,0.143990889191628,-0.460650682449341,-0.974850058555603,-0.0037487824447453,-0.222829520702362,-0.970711410045624,-0.0148824779316783,-0.239786937832832,-0.98353523015976,0.0268317051231861,-0.178713113069534,-0.98353523015976,0.0268317051231861,-0.178713113069534,-0.990545988082886,-0.0318255871534348,-0.133437752723694,-0.974850058555603,-0.0037487824447453,-0.222829520702362,-0.958980798721313,-0.025816697627306,-0.282292723655701,-0.990545988082886,-0.0318255871534348,-0.133437752723694,-0.976670145988464,-0.0332744270563126,-0.212151288986206,-0.923758566379547,0.184713184833527,-0.335486382246017,-0.913110256195068,0.0655995607376099,-0.402400612831116,-0.894983470439911,0.231383591890335,-0.381400167942047, +-0.958980798721313,-0.025816697627306,-0.282292723655701,-0.923019707202911,-0.100292220711708,-0.371451139450073,-0.92721164226532,-0.100016199052334,-0.36093658208847,-0.92721164226532,-0.100016199052334,-0.36093658208847,-0.929136872291565,-0.11247531324625,-0.352212846279144,-0.913110256195068,0.0655995607376099,-0.402400612831116,-0.904012382030487,0.22012734413147,-0.366476982831955,-0.923758566379547,0.184713184833527,-0.335486382246017,-0.941220700740814,0.195432156324387,-0.275517255067825,-0.145131692290306,-0.0475148558616638,-0.98827075958252,-0.28678160905838,0.194575324654579,-0.93802809715271,-0.258762925863266,0.0591350421309471,-0.964128971099854,-0.28678160905838,0.194575324654579,-0.93802809715271,-0.202110096812248,0.106068722903728,-0.973601996898651,-0.300589680671692,0.280695348978043,-0.911512911319733,-0.198397010564804,0.202959597110748,-0.958877444267273,-0.354063183069229,0.398241758346558,-0.846193015575409,-0.300589680671692,0.280695348978043,-0.911512911319733,-0.696538507938385,0.368663132190704,-0.615565955638886,-0.757979393005371,0.243807956576347,-0.604999780654907,-0.668437480926514,-0.117287322878838,-0.734462320804596,-0.757979393005371,0.243807956576347,-0.604999780654907,-0.793820559978485,0.358805328607559,-0.491027027368546,-0.828456044197083,0.278541266918182,-0.48587566614151,-0.656483232975006,0.132868766784668,-0.742546617984772,-0.696538507938385,0.368663132190704,-0.615565955638886,-0.668437480926514,-0.117287322878838,-0.734462320804596,-0.638988018035889,-0.0996287316083908,-0.762737393379211,-0.691551744937897,-0.00112881348468363,-0.722325921058655,-0.680899083614349,0.269147306680679,-0.68112850189209,-0.680899083614349,0.269147306680679,-0.68112850189209,-0.656483232975006,0.132868766784668,-0.742546617984772,-0.638988018035889,-0.0996287316083908,-0.762737393379211,-0.638988018035889,-0.0996287316083908,-0.762737393379211,-0.572319269180298,-0.312183052301407,-0.758282423019409,-0.691551744937897,-0.00112881348468363,-0.722325921058655,-0.477010816335678,-0.379943609237671,-0.792529761791229, +-0.572319269180298,-0.312183052301407,-0.758282423019409,-0.480113178491592,-0.392829775810242,-0.784331560134888,-0.477010816335678,-0.379943609237671,-0.792529761791229,-0.438927561044693,-0.345933943986893,-0.829259991645813,-0.575585305690765,-0.189037844538689,-0.795591652393341,-0.505552411079407,-0.165300637483597,-0.846813082695007,-0.438927561044693,-0.345933943986893,-0.829259991645813,-0.392400830984116,-0.338783711194992,-0.855129837989807,-0.379041582345963,-0.205357626080513,-0.902305722236633,-0.392400830984116,-0.338783711194992,-0.855129837989807,-0.313256859779358,-0.280223816633224,-0.907383382320404,-0.379041582345963,-0.205357626080513,-0.902305722236633,-0.313256859779358,-0.280223816633224,-0.907383382320404,-0.261964023113251,-0.115215755999088,-0.958175420761108,-0.258762925863266,0.0591350421309471,-0.964128971099854,-0.261964023113251,-0.115215755999088,-0.958175420761108,-0.180353656411171,-0.11139740049839,-0.977273285388947,-0.874298095703125,0.30182272195816,-0.380139112472534,-0.847385883331299,0.322486340999603,-0.421828895807266,-0.904012382030487,0.22012734413147,-0.366476982831955,-0.86325991153717,0.305421441793442,-0.401870489120483,-0.844969749450684,0.310602188110352,-0.435376018285751,-0.847385883331299,0.322486340999603,-0.421828895807266,-0.828456044197083,0.278541266918182,-0.48587566614151,-0.793820559978485,0.358805328607559,-0.491027027368546,-0.844969749450684,0.310602188110352,-0.435376018285751,-0.065084807574749,0.13703216612339,-0.988426089286804,-0.206821739673615,0.323643118143082,-0.923298299312592,-0.198397010564804,0.202959597110748,-0.958877444267273,-0.206821739673615,0.323643118143082,-0.923298299312592,-0.065084807574749,0.13703216612339,-0.988426089286804,-0.107182562351227,0.1931242197752,-0.975302398204803,-0.808610618114471,-0.535207331180573,-0.244339540600777,-0.846534252166748,-0.485259592533112,-0.218866914510727,-0.813815414905548,-0.527757287025452,-0.243262425065041,-0.970711410045624,-0.0148824779316783,-0.239786937832832,-0.943991899490356,0.0707800462841988,-0.322287738323212, +-0.98353523015976,0.0268317051231861,-0.178713113069534,-0.943991899490356,0.0707800462841988,-0.322287738323212,-0.87582391500473,0.143990889191628,-0.460650682449341,-0.915834009647369,0.143309891223907,-0.375113636255264,-0.881802797317505,-0.294987231492996,-0.367975890636444,-0.813815414905548,-0.527757287025452,-0.243262425065041,-0.898461222648621,-0.35691037774086,-0.255699664354324,-0.946024298667908,-0.142518937587738,-0.291077703237534,-0.904104948043823,-0.0829316154122353,-0.419185429811478,-0.898461222648621,-0.35691037774086,-0.255699664354324,-0.904104948043823,-0.0829316154122353,-0.419185429811478,-0.899539887905121,0.0846157819032669,-0.428565084934235,-0.87582391500473,0.143990889191628,-0.460650682449341,-0.98353523015976,0.0268317051231861,-0.178713113069534,-0.976670145988464,-0.0332744270563126,-0.212151288986206,-0.990545988082886,-0.0318255871534348,-0.133437752723694,-0.976670145988464,-0.0332744270563126,-0.212151288986206,-0.923019707202911,-0.100292220711708,-0.371451139450073,-0.958980798721313,-0.025816697627306,-0.282292723655701,-0.948483884334564,0.0338040739297867,-0.315016686916351,-0.894983470439911,0.231383591890335,-0.381400167942047,-0.913110256195068,0.0655995607376099,-0.402400612831116,-0.923758566379547,0.184713184833527,-0.335486382246017,-0.894983470439911,0.231383591890335,-0.381400167942047,-0.907695651054382,0.244793117046356,-0.340829521417618,-0.92721164226532,-0.100016199052334,-0.36093658208847,-0.923019707202911,-0.100292220711708,-0.371451139450073,-0.929136872291565,-0.11247531324625,-0.352212846279144,-0.913110256195068,0.0655995607376099,-0.402400612831116,-0.929136872291565,-0.11247531324625,-0.352212846279144,-0.948483884334564,0.0338040739297867,-0.315016686916351,-0.923758566379547,0.184713184833527,-0.335486382246017,-0.907695651054382,0.244793117046356,-0.340829521417618,-0.941220700740814,0.195432156324387,-0.275517255067825,-0.900937855243683,0.272800743579865,-0.337476998567581,-0.904012382030487,0.22012734413147,-0.366476982831955,-0.941220700740814,0.195432156324387,-0.275517255067825, +-0.202110096812248,0.106068722903728,-0.973601996898651,-0.28678160905838,0.194575324654579,-0.93802809715271,-0.145131692290306,-0.0475148558616638,-0.98827075958252,-0.145131692290306,-0.0475148558616638,-0.98827075958252,-0.258762925863266,0.0591350421309471,-0.964128971099854,-0.180353656411171,-0.11139740049839,-0.977273285388947,-0.202110096812248,0.106068722903728,-0.973601996898651,-0.206594437360764,0.123608827590942,-0.970587193965912,-0.300589680671692,0.280695348978043,-0.911512911319733,-0.206594437360764,0.123608827590942,-0.970587193965912,-0.198397010564804,0.202959597110748,-0.958877444267273,-0.300589680671692,0.280695348978043,-0.911512911319733,-0.757979393005371,0.243807956576347,-0.604999780654907,-0.736861944198608,-0.0856052190065384,-0.67060124874115,-0.668437480926514,-0.117287322878838,-0.734462320804596,-0.828456044197083,0.278541266918182,-0.48587566614151,-0.814673483371735,0.110870771110058,-0.569222807884216,-0.757979393005371,0.243807956576347,-0.604999780654907,-0.668437480926514,-0.117287322878838,-0.734462320804596,-0.524634420871735,-0.346149295568466,-0.777778387069702,-0.656483232975006,0.132868766784668,-0.742546617984772,-0.524634420871735,-0.346149295568466,-0.777778387069702,-0.638988018035889,-0.0996287316083908,-0.762737393379211,-0.656483232975006,0.132868766784668,-0.742546617984772,-0.638988018035889,-0.0996287316083908,-0.762737393379211,-0.524634420871735,-0.346149295568466,-0.777778387069702,-0.572319269180298,-0.312183052301407,-0.758282423019409,-0.524634420871735,-0.346149295568466,-0.777778387069702,-0.480113178491592,-0.392829775810242,-0.784331560134888,-0.572319269180298,-0.312183052301407,-0.758282423019409,-0.477010816335678,-0.379943609237671,-0.792529761791229,-0.480113178491592,-0.392829775810242,-0.784331560134888,-0.50025600194931,-0.3215691447258,-0.803950905799866,-0.477010816335678,-0.379943609237671,-0.792529761791229,-0.468147188425064,-0.348619073629379,-0.81197464466095,-0.438927561044693,-0.345933943986893,-0.829259991645813,-0.438927561044693,-0.345933943986893,-0.829259991645813, +-0.468147188425064,-0.348619073629379,-0.81197464466095,-0.392400830984116,-0.338783711194992,-0.855129837989807,-0.369965434074402,-0.289717644453049,-0.88271689414978,-0.313256859779358,-0.280223816633224,-0.907383382320404,-0.392400830984116,-0.338783711194992,-0.855129837989807,-0.288088142871857,-0.154532089829445,-0.945052921772003,-0.261964023113251,-0.115215755999088,-0.958175420761108,-0.313256859779358,-0.280223816633224,-0.907383382320404,-0.261964023113251,-0.115215755999088,-0.958175420761108,-0.177460074424744,-0.136321231722832,-0.974640667438507,-0.180353656411171,-0.11139740049839,-0.977273285388947,-0.847385883331299,0.322486340999603,-0.421828895807266,-0.874298095703125,0.30182272195816,-0.380139112472534,-0.86325991153717,0.305421441793442,-0.401870489120483,-0.904012382030487,0.22012734413147,-0.366476982831955,-0.900937855243683,0.272800743579865,-0.337476998567581,-0.874298095703125,0.30182272195816,-0.380139112472534,-0.86325991153717,0.305421441793442,-0.401870489120483,-0.865774989128113,0.171927228569984,-0.469972997903824,-0.844969749450684,0.310602188110352,-0.435376018285751,-0.865774989128113,0.171927228569984,-0.469972997903824,-0.828456044197083,0.278541266918182,-0.48587566614151,-0.844969749450684,0.310602188110352,-0.435376018285751,-0.065084807574749,0.13703216612339,-0.988426089286804,-0.198397010564804,0.202959597110748,-0.958877444267273,-0.0545725673437119,0.00571138085797429,-0.998493432998657,-0.843604445457459,-0.519128143787384,-0.137249156832695,-0.813815414905548,-0.527757287025452,-0.243262425065041,-0.846534252166748,-0.485259592533112,-0.218866914510727,-0.943991899490356,0.0707800462841988,-0.322287738323212,-0.915834009647369,0.143309891223907,-0.375113636255264,-0.98353523015976,0.0268317051231861,-0.178713113069534,-0.87582391500473,0.143990889191628,-0.460650682449341,-0.875528037548065,0.229273289442062,-0.425304919481277,-0.915834009647369,0.143309891223907,-0.375113636255264,-0.843604445457459,-0.519128143787384,-0.137249156832695,-0.898461222648621,-0.35691037774086,-0.255699664354324, +-0.813815414905548,-0.527757287025452,-0.243262425065041,-0.946024298667908,-0.142518937587738,-0.291077703237534,-0.899539887905121,0.0846157819032669,-0.428565084934235,-0.904104948043823,-0.0829316154122353,-0.419185429811478,-0.914900958538055,-0.397404700517654,-0.0708918124437332,-0.946024298667908,-0.142518937587738,-0.291077703237534,-0.898461222648621,-0.35691037774086,-0.255699664354324,-0.899539887905121,0.0846157819032669,-0.428565084934235,-0.875528037548065,0.229273289442062,-0.425304919481277,-0.87582391500473,0.143990889191628,-0.460650682449341,-0.915834009647369,0.143309891223907,-0.375113636255264,-0.976670145988464,-0.0332744270563126,-0.212151288986206,-0.98353523015976,0.0268317051231861,-0.178713113069534,-0.923019707202911,-0.100292220711708,-0.371451139450073,-0.976670145988464,-0.0332744270563126,-0.212151288986206,-0.915834009647369,0.143309891223907,-0.375113636255264,-0.894983470439911,0.231383591890335,-0.381400167942047,-0.948483884334564,0.0338040739297867,-0.315016686916351,-0.928602933883667,0.149490982294083,-0.339630603790283,-0.882625043392181,0.276546746492386,-0.380124717950821,-0.907695651054382,0.244793117046356,-0.340829521417618,-0.894983470439911,0.231383591890335,-0.381400167942047,-0.923019707202911,-0.100292220711708,-0.371451139450073,-0.925453782081604,0.00727254478260875,-0.378790646791458,-0.929136872291565,-0.11247531324625,-0.352212846279144,-0.948483884334564,0.0338040739297867,-0.315016686916351,-0.929136872291565,-0.11247531324625,-0.352212846279144,-0.951904475688934,-0.051935039460659,-0.301961064338684,-0.907695651054382,0.244793117046356,-0.340829521417618,-0.939214050769806,0.206540316343308,-0.274258881807327,-0.941220700740814,0.195432156324387,-0.275517255067825,-0.900937855243683,0.272800743579865,-0.337476998567581,-0.941220700740814,0.195432156324387,-0.275517255067825,-0.926438689231873,0.253528654575348,-0.278270334005356,-0.202110096812248,0.106068722903728,-0.973601996898651,-0.145131692290306,-0.0475148558616638,-0.98827075958252,-0.0545725673437119,0.00571138085797429,-0.998493432998657, +-0.180353656411171,-0.11139740049839,-0.977273285388947,-0.177460074424744,-0.136321231722832,-0.974640667438507,-0.145131692290306,-0.0475148558616638,-0.98827075958252,-0.206594437360764,0.123608827590942,-0.970587193965912,-0.202110096812248,0.106068722903728,-0.973601996898651,-0.0545725673437119,0.00571138085797429,-0.998493432998657,-0.198397010564804,0.202959597110748,-0.958877444267273,-0.206594437360764,0.123608827590942,-0.970587193965912,-0.0545725673437119,0.00571138085797429,-0.998493432998657,-0.757979393005371,0.243807956576347,-0.604999780654907,-0.814673483371735,0.110870771110058,-0.569222807884216,-0.736861944198608,-0.0856052190065384,-0.67060124874115,-0.651539862155914,-0.439385950565338,-0.618413805961609,-0.668437480926514,-0.117287322878838,-0.734462320804596,-0.736861944198608,-0.0856052190065384,-0.67060124874115,-0.865774989128113,0.171927228569984,-0.469972997903824,-0.814673483371735,0.110870771110058,-0.569222807884216,-0.828456044197083,0.278541266918182,-0.48587566614151,-0.668437480926514,-0.117287322878838,-0.734462320804596,-0.539468467235565,-0.466611444950104,-0.700890421867371,-0.524634420871735,-0.346149295568466,-0.777778387069702,-0.490408420562744,-0.424411982297897,-0.761166155338287,-0.480113178491592,-0.392829775810242,-0.784331560134888,-0.524634420871735,-0.346149295568466,-0.777778387069702,-0.50025600194931,-0.3215691447258,-0.803950905799866,-0.480113178491592,-0.392829775810242,-0.784331560134888,-0.515124320983887,-0.325760632753372,-0.792796790599823,-0.50025600194931,-0.3215691447258,-0.803950905799866,-0.468147188425064,-0.348619073629379,-0.81197464466095,-0.477010816335678,-0.379943609237671,-0.792529761791229,-0.492640435695648,-0.285323739051819,-0.822128713130951,-0.392400830984116,-0.338783711194992,-0.855129837989807,-0.468147188425064,-0.348619073629379,-0.81197464466095,-0.369965434074402,-0.289717644453049,-0.88271689414978,-0.288088142871857,-0.154532089829445,-0.945052921772003,-0.313256859779358,-0.280223816633224,-0.907383382320404,-0.492640435695648,-0.285323739051819,-0.822128713130951, +-0.369965434074402,-0.289717644453049,-0.88271689414978,-0.392400830984116,-0.338783711194992,-0.855129837989807,-0.288088142871857,-0.154532089829445,-0.945052921772003,-0.177460074424744,-0.136321231722832,-0.974640667438507,-0.261964023113251,-0.115215755999088,-0.958175420761108,-0.86325991153717,0.305421441793442,-0.401870489120483,-0.874298095703125,0.30182272195816,-0.380139112472534,-0.900937855243683,0.272800743579865,-0.337476998567581,-0.865774989128113,0.171927228569984,-0.469972997903824,-0.86325991153717,0.305421441793442,-0.401870489120483,-0.90145617723465,0.103526793420315,-0.420308023691177,-0.906524777412415,0.194949969649315,-0.374442577362061,-0.915834009647369,0.143309891223907,-0.375113636255264,-0.875528037548065,0.229273289442062,-0.425304919481277,-0.914900958538055,-0.397404700517654,-0.0708918124437332,-0.898461222648621,-0.35691037774086,-0.255699664354324,-0.843604445457459,-0.519128143787384,-0.137249156832695,-0.899539887905121,0.0846157819032669,-0.428565084934235,-0.946024298667908,-0.142518937587738,-0.291077703237534,-0.946074843406677,0.0518309473991394,-0.319774746894836,-0.946024298667908,-0.142518937587738,-0.291077703237534,-0.914900958538055,-0.397404700517654,-0.0708918124437332,-0.972794651985168,-0.176005840301514,-0.150640055537224,-0.899539887905121,0.0846157819032669,-0.428565084934235,-0.946074843406677,0.0518309473991394,-0.319774746894836,-0.875528037548065,0.229273289442062,-0.425304919481277,-0.923019707202911,-0.100292220711708,-0.371451139450073,-0.915834009647369,0.143309891223907,-0.375113636255264,-0.925453782081604,0.00727254478260875,-0.378790646791458,-0.943149328231812,-0.0632070079445839,-0.326303660869598,-0.928602933883667,0.149490982294083,-0.339630603790283,-0.948483884334564,0.0338040739297867,-0.315016686916351,-0.894983470439911,0.231383591890335,-0.381400167942047,-0.928602933883667,0.149490982294083,-0.339630603790283,-0.882625043392181,0.276546746492386,-0.380124717950821,-0.907695651054382,0.244793117046356,-0.340829521417618,-0.882625043392181,0.276546746492386,-0.380124717950821, +-0.891354024410248,0.278587698936462,-0.357598721981049,-0.925453782081604,0.00727254478260875,-0.378790646791458,-0.951904475688934,-0.051935039460659,-0.301961064338684,-0.929136872291565,-0.11247531324625,-0.352212846279144,-0.943149328231812,-0.0632070079445839,-0.326303660869598,-0.948483884334564,0.0338040739297867,-0.315016686916351,-0.951904475688934,-0.051935039460659,-0.301961064338684,-0.912846386432648,0.274099767208099,-0.302622944116592,-0.939214050769806,0.206540316343308,-0.274258881807327,-0.907695651054382,0.244793117046356,-0.340829521417618,-0.939214050769806,0.206540316343308,-0.274258881807327,-0.926438689231873,0.253528654575348,-0.278270334005356,-0.941220700740814,0.195432156324387,-0.275517255067825,-0.900937855243683,0.272800743579865,-0.337476998567581,-0.926438689231873,0.253528654575348,-0.278270334005356,-0.915552973747253,0.240327462553978,-0.322498649358749,-0.145131692290306,-0.0475148558616638,-0.98827075958252,-0.0781166553497314,-0.0826037153601646,-0.993516147136688,-0.0545725673437119,0.00571138085797429,-0.998493432998657,-0.173845887184143,-0.0601277649402618,-0.98293548822403,-0.145131692290306,-0.0475148558616638,-0.98827075958252,-0.177460074424744,-0.136321231722832,-0.974640667438507,-0.761183977127075,-0.211970195174217,-0.612917125225067,-0.736861944198608,-0.0856052190065384,-0.67060124874115,-0.814673483371735,0.110870771110058,-0.569222807884216,-0.539468467235565,-0.466611444950104,-0.700890421867371,-0.668437480926514,-0.117287322878838,-0.734462320804596,-0.651539862155914,-0.439385950565338,-0.618413805961609,-0.761183977127075,-0.211970195174217,-0.612917125225067,-0.651539862155914,-0.439385950565338,-0.618413805961609,-0.736861944198608,-0.0856052190065384,-0.67060124874115,-0.83041125535965,-0.089213915169239,-0.549961686134338,-0.814673483371735,0.110870771110058,-0.569222807884216,-0.865774989128113,0.171927228569984,-0.469972997903824,-0.490408420562744,-0.424411982297897,-0.761166155338287,-0.524634420871735,-0.346149295568466,-0.777778387069702,-0.539468467235565,-0.466611444950104,-0.700890421867371, +-0.490408420562744,-0.424411982297897,-0.761166155338287,-0.515124320983887,-0.325760632753372,-0.792796790599823,-0.480113178491592,-0.392829775810242,-0.784331560134888,-0.50025600194931,-0.3215691447258,-0.803950905799866,-0.515124320983887,-0.325760632753372,-0.792796790599823,-0.461210131645203,-0.29778003692627,-0.835830271244049,-0.50025600194931,-0.3215691447258,-0.803950905799866,-0.505829274654388,-0.270112872123718,-0.819253087043762,-0.468147188425064,-0.348619073629379,-0.81197464466095,-0.492640435695648,-0.285323739051819,-0.822128713130951,-0.468147188425064,-0.348619073629379,-0.81197464466095,-0.505829274654388,-0.270112872123718,-0.819253087043762,-0.430242091417313,-0.183879971504211,-0.883787155151367,-0.288088142871857,-0.154532089829445,-0.945052921772003,-0.369965434074402,-0.289717644453049,-0.88271689414978,-0.492640435695648,-0.285323739051819,-0.822128713130951,-0.430242091417313,-0.183879971504211,-0.883787155151367,-0.369965434074402,-0.289717644453049,-0.88271689414978,-0.288088142871857,-0.154532089829445,-0.945052921772003,-0.173845887184143,-0.0601277649402618,-0.98293548822403,-0.177460074424744,-0.136321231722832,-0.974640667438507,-0.86325991153717,0.305421441793442,-0.401870489120483,-0.900937855243683,0.272800743579865,-0.337476998567581,-0.915552973747253,0.240327462553978,-0.322498649358749,-0.86325991153717,0.305421441793442,-0.401870489120483,-0.915552973747253,0.240327462553978,-0.322498649358749,-0.90145617723465,0.103526793420315,-0.420308023691177,-0.834166169166565,-0.163955450057983,-0.526578783988953,-0.865774989128113,0.171927228569984,-0.469972997903824,-0.90145617723465,0.103526793420315,-0.420308023691177,-0.906524777412415,0.194949969649315,-0.374442577362061,-0.925453782081604,0.00727254478260875,-0.378790646791458,-0.915834009647369,0.143309891223907,-0.375113636255264,-0.906524777412415,0.194949969649315,-0.374442577362061,-0.875528037548065,0.229273289442062,-0.425304919481277,-0.93140834569931,0.181078225374222,-0.315735667943954,-0.946024298667908,-0.142518937587738,-0.291077703237534, +-0.972794651985168,-0.176005840301514,-0.150640055537224,-0.946074843406677,0.0518309473991394,-0.319774746894836,-0.946074843406677,0.0518309473991394,-0.319774746894836,-0.93140834569931,0.181078225374222,-0.315735667943954,-0.875528037548065,0.229273289442062,-0.425304919481277,-0.943149328231812,-0.0632070079445839,-0.326303660869598,-0.954406797885895,-0.0321029238402843,-0.296777546405792,-0.928602933883667,0.149490982294083,-0.339630603790283,-0.882625043392181,0.276546746492386,-0.380124717950821,-0.928602933883667,0.149490982294083,-0.339630603790283,-0.91489964723587,0.232955232262611,-0.329682350158691,-0.882625043392181,0.276546746492386,-0.380124717950821,-0.91489964723587,0.232955232262611,-0.329682350158691,-0.891354024410248,0.278587698936462,-0.357598721981049,-0.912846386432648,0.274099767208099,-0.302622944116592,-0.907695651054382,0.244793117046356,-0.340829521417618,-0.891354024410248,0.278587698936462,-0.357598721981049,-0.945158541202545,0.0876575261354446,-0.314629077911377,-0.951904475688934,-0.051935039460659,-0.301961064338684,-0.925453782081604,0.00727254478260875,-0.378790646791458,-0.943149328231812,-0.0632070079445839,-0.326303660869598,-0.951904475688934,-0.051935039460659,-0.301961064338684,-0.936345636844635,-0.0770668834447861,-0.342516452074051,-0.912846386432648,0.274099767208099,-0.302622944116592,-0.935769200325012,0.269946306943893,-0.226858749985695,-0.939214050769806,0.206540316343308,-0.274258881807327,-0.926438689231873,0.253528654575348,-0.278270334005356,-0.939214050769806,0.206540316343308,-0.274258881807327,-0.935769200325012,0.269946306943893,-0.226858749985695,-0.915552973747253,0.240327462553978,-0.322498649358749,-0.926438689231873,0.253528654575348,-0.278270334005356,-0.956617951393127,0.218567237257957,-0.192640483379364,-0.0781166553497314,-0.0826037153601646,-0.993516147136688,-0.145131692290306,-0.0475148558616638,-0.98827075958252,-0.173845887184143,-0.0601277649402618,-0.98293548822403,-0.0781166553497314,-0.0826037153601646,-0.993516147136688,-0.0641650334000587,-0.0242605712264776,-0.997644305229187, +-0.0545725673437119,0.00571138085797429,-0.998493432998657,-0.83041125535965,-0.089213915169239,-0.549961686134338,-0.761183977127075,-0.211970195174217,-0.612917125225067,-0.814673483371735,0.110870771110058,-0.569222807884216,-0.539468467235565,-0.466611444950104,-0.700890421867371,-0.651539862155914,-0.439385950565338,-0.618413805961609,-0.596347332000732,-0.436161160469055,-0.673893988132477,-0.716608643531799,-0.370482534170151,-0.590943932533264,-0.651539862155914,-0.439385950565338,-0.618413805961609,-0.761183977127075,-0.211970195174217,-0.612917125225067,-0.83041125535965,-0.089213915169239,-0.549961686134338,-0.865774989128113,0.171927228569984,-0.469972997903824,-0.834166169166565,-0.163955450057983,-0.526578783988953,-0.490408420562744,-0.424411982297897,-0.761166155338287,-0.539468467235565,-0.466611444950104,-0.700890421867371,-0.596347332000732,-0.436161160469055,-0.673893988132477,-0.490408420562744,-0.424411982297897,-0.761166155338287,-0.596347332000732,-0.436161160469055,-0.673893988132477,-0.515124320983887,-0.325760632753372,-0.792796790599823,-0.489817231893539,-0.344928950071335,-0.800689041614532,-0.461210131645203,-0.29778003692627,-0.835830271244049,-0.515124320983887,-0.325760632753372,-0.792796790599823,-0.50025600194931,-0.3215691447258,-0.803950905799866,-0.461210131645203,-0.29778003692627,-0.835830271244049,-0.505829274654388,-0.270112872123718,-0.819253087043762,-0.492640435695648,-0.285323739051819,-0.822128713130951,-0.505829274654388,-0.270112872123718,-0.819253087043762,-0.497741252183914,-0.191141813993454,-0.846001386642456,-0.430242091417313,-0.183879971504211,-0.883787155151367,-0.379343450069427,-0.0774554759263992,-0.922008216381073,-0.288088142871857,-0.154532089829445,-0.945052921772003,-0.430242091417313,-0.183879971504211,-0.883787155151367,-0.492640435695648,-0.285323739051819,-0.822128713130951,-0.527946770191193,-0.185734629631042,-0.828718721866608,-0.288088142871857,-0.154532089829445,-0.945052921772003,-0.272528171539307,-0.0557329766452312,-0.960532188415527,-0.173845887184143,-0.0601277649402618,-0.98293548822403, +-0.90145617723465,0.103526793420315,-0.420308023691177,-0.915552973747253,0.240327462553978,-0.322498649358749,-0.930592954158783,-0.00247162161394954,-0.366047263145447,-0.834166169166565,-0.163955450057983,-0.526578783988953,-0.90145617723465,0.103526793420315,-0.420308023691177,-0.852191805839539,-0.266166746616364,-0.450471132993698,-0.945158541202545,0.0876575261354446,-0.314629077911377,-0.925453782081604,0.00727254478260875,-0.378790646791458,-0.906524777412415,0.194949969649315,-0.374442577362061,-0.906524777412415,0.194949969649315,-0.374442577362061,-0.93140834569931,0.181078225374222,-0.315735667943954,-0.928783655166626,0.184098944067955,-0.321665018796921,-0.946074843406677,0.0518309473991394,-0.319774746894836,-0.972794651985168,-0.176005840301514,-0.150640055537224,-0.97564959526062,0.00685996934771538,-0.219227507710457,-0.946074843406677,0.0518309473991394,-0.319774746894836,-0.97564959526062,0.00685996934771538,-0.219227507710457,-0.93140834569931,0.181078225374222,-0.315735667943954,-0.936345636844635,-0.0770668834447861,-0.342516452074051,-0.954406797885895,-0.0321029238402843,-0.296777546405792,-0.943149328231812,-0.0632070079445839,-0.326303660869598,-0.958469569683075,0.11726663261652,-0.259970188140869,-0.928602933883667,0.149490982294083,-0.339630603790283,-0.954406797885895,-0.0321029238402843,-0.296777546405792,-0.958469569683075,0.11726663261652,-0.259970188140869,-0.91489964723587,0.232955232262611,-0.329682350158691,-0.928602933883667,0.149490982294083,-0.339630603790283,-0.891354024410248,0.278587698936462,-0.357598721981049,-0.91489964723587,0.232955232262611,-0.329682350158691,-0.93499231338501,0.277161538600922,-0.221293330192566,-0.891354024410248,0.278587698936462,-0.357598721981049,-0.912942409515381,0.330910891294479,-0.238818004727364,-0.912846386432648,0.274099767208099,-0.302622944116592,-0.945158541202545,0.0876575261354446,-0.314629077911377,-0.933069705963135,0.111693397164345,-0.341914236545563,-0.951904475688934,-0.051935039460659,-0.301961064338684,-0.936345636844635,-0.0770668834447861,-0.342516452074051, +-0.951904475688934,-0.051935039460659,-0.301961064338684,-0.935402035713196,0.0512750223278999,-0.34984827041626,-0.912846386432648,0.274099767208099,-0.302622944116592,-0.916629135608673,0.351815164089203,-0.189781606197357,-0.935769200325012,0.269946306943893,-0.226858749985695,-0.926438689231873,0.253528654575348,-0.278270334005356,-0.935769200325012,0.269946306943893,-0.226858749985695,-0.956617951393127,0.218567237257957,-0.192640483379364,-0.915552973747253,0.240327462553978,-0.322498649358749,-0.956617951393127,0.218567237257957,-0.192640483379364,-0.959703743457794,-0.034484013915062,-0.278889656066895,-0.0641650334000587,-0.0242605712264776,-0.997644305229187,-0.0781166553497314,-0.0826037153601646,-0.993516147136688,-0.173845887184143,-0.0601277649402618,-0.98293548822403,-0.0545725673437119,0.00571138085797429,-0.998493432998657,-0.0641650334000587,-0.0242605712264776,-0.997644305229187,0.0156728252768517,0.000189313519513235,-0.999877095222473,-0.716608643531799,-0.370482534170151,-0.590943932533264,-0.761183977127075,-0.211970195174217,-0.612917125225067,-0.83041125535965,-0.089213915169239,-0.549961686134338,-0.667440891265869,-0.485422015190125,-0.564701676368713,-0.596347332000732,-0.436161160469055,-0.673893988132477,-0.651539862155914,-0.439385950565338,-0.618413805961609,-0.651539862155914,-0.439385950565338,-0.618413805961609,-0.716608643531799,-0.370482534170151,-0.590943932533264,-0.667440891265869,-0.485422015190125,-0.564701676368713,-0.83041125535965,-0.089213915169239,-0.549961686134338,-0.834166169166565,-0.163955450057983,-0.526578783988953,-0.716608643531799,-0.370482534170151,-0.590943932533264,-0.515124320983887,-0.325760632753372,-0.792796790599823,-0.596347332000732,-0.436161160469055,-0.673893988132477,-0.565490663051605,-0.375778377056122,-0.734173536300659,-0.423091441392899,-0.29644501209259,-0.856220662593842,-0.461210131645203,-0.29778003692627,-0.835830271244049,-0.489817231893539,-0.344928950071335,-0.800689041614532,-0.515124320983887,-0.325760632753372,-0.792796790599823, +-0.565490663051605,-0.375778377056122,-0.734173536300659,-0.489817231893539,-0.344928950071335,-0.800689041614532,-0.505829274654388,-0.270112872123718,-0.819253087043762,-0.461210131645203,-0.29778003692627,-0.835830271244049,-0.418773263692856,-0.235235705971718,-0.877093493938446,-0.505829274654388,-0.270112872123718,-0.819253087043762,-0.418773263692856,-0.235235705971718,-0.877093493938446,-0.497741252183914,-0.191141813993454,-0.846001386642456,-0.527946770191193,-0.185734629631042,-0.828718721866608,-0.492640435695648,-0.285323739051819,-0.822128713130951,-0.497741252183914,-0.191141813993454,-0.846001386642456,-0.379343450069427,-0.0774554759263992,-0.922008216381073,-0.430242091417313,-0.183879971504211,-0.883787155151367,-0.483433306217194,-0.0884010940790176,-0.870906054973602,-0.379343450069427,-0.0774554759263992,-0.922008216381073,-0.272528171539307,-0.0557329766452312,-0.960532188415527,-0.288088142871857,-0.154532089829445,-0.945052921772003,-0.430242091417313,-0.183879971504211,-0.883787155151367,-0.527946770191193,-0.185734629631042,-0.828718721866608,-0.483433306217194,-0.0884010940790176,-0.870906054973602,-0.272528171539307,-0.0557329766452312,-0.960532188415527,-0.211143046617508,-0.0302731581032276,-0.976986229419708,-0.173845887184143,-0.0601277649402618,-0.98293548822403,-0.930592954158783,-0.00247162161394954,-0.366047263145447,-0.915552973747253,0.240327462553978,-0.322498649358749,-0.959703743457794,-0.034484013915062,-0.278889656066895,-0.90145617723465,0.103526793420315,-0.420308023691177,-0.930592954158783,-0.00247162161394954,-0.366047263145447,-0.852191805839539,-0.266166746616364,-0.450471132993698,-0.720797181129456,-0.435431003570557,-0.539306104183197,-0.834166169166565,-0.163955450057983,-0.526578783988953,-0.852191805839539,-0.266166746616364,-0.450471132993698,-0.933069705963135,0.111693397164345,-0.341914236545563,-0.945158541202545,0.0876575261354446,-0.314629077911377,-0.906524777412415,0.194949969649315,-0.374442577362061,-0.928783655166626,0.184098944067955,-0.321665018796921, +-0.93140834569931,0.181078225374222,-0.315735667943954,-0.973963141441345,0.0716409087181091,-0.215088814496994,-0.933069705963135,0.111693397164345,-0.341914236545563,-0.906524777412415,0.194949969649315,-0.374442577362061,-0.928783655166626,0.184098944067955,-0.321665018796921,-0.97564959526062,0.00685996934771538,-0.219227507710457,-0.973963141441345,0.0716409087181091,-0.215088814496994,-0.93140834569931,0.181078225374222,-0.315735667943954,-0.91489964723587,0.232955232262611,-0.329682350158691,-0.958469569683075,0.11726663261652,-0.259970188140869,-0.961704611778259,0.195084795355797,-0.192525506019592,-0.91489964723587,0.232955232262611,-0.329682350158691,-0.961704611778259,0.195084795355797,-0.192525506019592,-0.93499231338501,0.277161538600922,-0.221293330192566,-0.912942409515381,0.330910891294479,-0.238818004727364,-0.891354024410248,0.278587698936462,-0.357598721981049,-0.93499231338501,0.277161538600922,-0.221293330192566,-0.916629135608673,0.351815164089203,-0.189781606197357,-0.912846386432648,0.274099767208099,-0.302622944116592,-0.912942409515381,0.330910891294479,-0.238818004727364,-0.933069705963135,0.111693397164345,-0.341914236545563,-0.935402035713196,0.0512750223278999,-0.34984827041626,-0.951904475688934,-0.051935039460659,-0.301961064338684,-0.935769200325012,0.269946306943893,-0.226858749985695,-0.916629135608673,0.351815164089203,-0.189781606197357,-0.956617951393127,0.218567237257957,-0.192640483379364,-0.95603334903717,-0.20709316432476,-0.207635849714279,-0.959703743457794,-0.034484013915062,-0.278889656066895,-0.956617951393127,0.218567237257957,-0.192640483379364,-0.173845887184143,-0.0601277649402618,-0.98293548822403,-0.132847771048546,-0.0543941855430603,-0.989642679691315,-0.0641650334000587,-0.0242605712264776,-0.997644305229187,0.0156728252768517,0.000189313519513235,-0.999877095222473,-0.0641650334000587,-0.0242605712264776,-0.997644305229187,0.0129480706527829,-0.0121295489370823,-0.999842584133148,-0.596347332000732,-0.436161160469055,-0.673893988132477,-0.667440891265869,-0.485422015190125,-0.564701676368713, +-0.655301570892334,-0.400747001171112,-0.640298008918762,-0.720797181129456,-0.435431003570557,-0.539306104183197,-0.667440891265869,-0.485422015190125,-0.564701676368713,-0.716608643531799,-0.370482534170151,-0.590943932533264,-0.720797181129456,-0.435431003570557,-0.539306104183197,-0.716608643531799,-0.370482534170151,-0.590943932533264,-0.834166169166565,-0.163955450057983,-0.526578783988953,-0.596347332000732,-0.436161160469055,-0.673893988132477,-0.655301570892334,-0.400747001171112,-0.640298008918762,-0.565490663051605,-0.375778377056122,-0.734173536300659,-0.423091441392899,-0.29644501209259,-0.856220662593842,-0.418773263692856,-0.235235705971718,-0.877093493938446,-0.461210131645203,-0.29778003692627,-0.835830271244049,-0.537806868553162,-0.285934507846832,-0.793098390102386,-0.423091441392899,-0.29644501209259,-0.856220662593842,-0.489817231893539,-0.344928950071335,-0.800689041614532,-0.537806868553162,-0.285934507846832,-0.793098390102386,-0.489817231893539,-0.344928950071335,-0.800689041614532,-0.565490663051605,-0.375778377056122,-0.734173536300659,-0.497741252183914,-0.191141813993454,-0.846001386642456,-0.418773263692856,-0.235235705971718,-0.877093493938446,-0.396707832813263,-0.126184731721878,-0.909230530261993,-0.527946770191193,-0.185734629631042,-0.828718721866608,-0.497741252183914,-0.191141813993454,-0.846001386642456,-0.502751588821411,-0.106878019869328,-0.857798218727112,-0.483433306217194,-0.0884010940790176,-0.870906054973602,-0.47982069849968,-0.0646617412567139,-0.874980449676514,-0.379343450069427,-0.0774554759263992,-0.922008216381073,-0.379343450069427,-0.0774554759263992,-0.922008216381073,-0.287274837493896,-0.071620486676693,-0.955166816711426,-0.272528171539307,-0.0557329766452312,-0.960532188415527,-0.527946770191193,-0.185734629631042,-0.828718721866608,-0.502751588821411,-0.106878019869328,-0.857798218727112,-0.483433306217194,-0.0884010940790176,-0.870906054973602,-0.272528171539307,-0.0557329766452312,-0.960532188415527,-0.287274837493896,-0.071620486676693,-0.955166816711426, +-0.211143046617508,-0.0302731581032276,-0.976986229419708,-0.211143046617508,-0.0302731581032276,-0.976986229419708,-0.132847771048546,-0.0543941855430603,-0.989642679691315,-0.173845887184143,-0.0601277649402618,-0.98293548822403,-0.930592954158783,-0.00247162161394954,-0.366047263145447,-0.959703743457794,-0.034484013915062,-0.278889656066895,-0.859296500682831,-0.361571758985519,-0.361766546964645,-0.852191805839539,-0.266166746616364,-0.450471132993698,-0.930592954158783,-0.00247162161394954,-0.366047263145447,-0.859296500682831,-0.361571758985519,-0.361766546964645,-0.720797181129456,-0.435431003570557,-0.539306104183197,-0.852191805839539,-0.266166746616364,-0.450471132993698,-0.735081553459167,-0.505674600601196,-0.451606124639511,-0.935402035713196,0.0512750223278999,-0.34984827041626,-0.933069705963135,0.111693397164345,-0.341914236545563,-0.928783655166626,0.184098944067955,-0.321665018796921,-0.95306134223938,0.264068216085434,-0.148127973079681,-0.93499231338501,0.277161538600922,-0.221293330192566,-0.961704611778259,0.195084795355797,-0.192525506019592,-0.93499231338501,0.277161538600922,-0.221293330192566,-0.930444478988647,0.328266233205795,-0.162832155823708,-0.912942409515381,0.330910891294479,-0.238818004727364,-0.912942409515381,0.330910891294479,-0.238818004727364,-0.916016221046448,0.361430257558823,-0.174018278717995,-0.916629135608673,0.351815164089203,-0.189781606197357,-0.916629135608673,0.351815164089203,-0.189781606197357,-0.975065052509308,0.163202583789825,-0.150375872850418,-0.956617951393127,0.218567237257957,-0.192640483379364,-0.95603334903717,-0.20709316432476,-0.207635849714279,-0.830860555171967,-0.464425921440125,-0.306560188531876,-0.959703743457794,-0.034484013915062,-0.278889656066895,-0.956617951393127,0.218567237257957,-0.192640483379364,-0.975065052509308,0.163202583789825,-0.150375872850418,-0.95603334903717,-0.20709316432476,-0.207635849714279,-0.132847771048546,-0.0543941855430603,-0.989642679691315,-0.0202357582747936,-0.0470818541944027,-0.998686015605927,-0.0641650334000587,-0.0242605712264776,-0.997644305229187, +0.0129480706527829,-0.0121295489370823,-0.999842584133148,-0.0641650334000587,-0.0242605712264776,-0.997644305229187,-0.0202357582747936,-0.0470818541944027,-0.998686015605927,-0.655301570892334,-0.400747001171112,-0.640298008918762,-0.667440891265869,-0.485422015190125,-0.564701676368713,-0.676117658615112,-0.443172216415405,-0.588611304759979,-0.720797181129456,-0.435431003570557,-0.539306104183197,-0.735081553459167,-0.505674600601196,-0.451606124639511,-0.667440891265869,-0.485422015190125,-0.564701676368713,-0.565490663051605,-0.375778377056122,-0.734173536300659,-0.655301570892334,-0.400747001171112,-0.640298008918762,-0.617992222309113,-0.418422490358353,-0.66558849811554,-0.446731120347977,-0.136687502264977,-0.884164988994598,-0.418773263692856,-0.235235705971718,-0.877093493938446,-0.423091441392899,-0.29644501209259,-0.856220662593842,-0.537806868553162,-0.285934507846832,-0.793098390102386,-0.446731120347977,-0.136687502264977,-0.884164988994598,-0.423091441392899,-0.29644501209259,-0.856220662593842,-0.592383861541748,-0.393450886011124,-0.703048765659332,-0.537806868553162,-0.285934507846832,-0.793098390102386,-0.565490663051605,-0.375778377056122,-0.734173536300659,-0.418773263692856,-0.235235705971718,-0.877093493938446,-0.446731120347977,-0.136687502264977,-0.884164988994598,-0.396707832813263,-0.126184731721878,-0.909230530261993,-0.497741252183914,-0.191141813993454,-0.846001386642456,-0.396707832813263,-0.126184731721878,-0.909230530261993,-0.418180793523788,-0.0967193692922592,-0.903199911117554,-0.502751588821411,-0.106878019869328,-0.857798218727112,-0.497741252183914,-0.191141813993454,-0.846001386642456,-0.418180793523788,-0.0967193692922592,-0.903199911117554,-0.483433306217194,-0.0884010940790176,-0.870906054973602,-0.466706424951553,-0.0583355389535427,-0.8824862241745,-0.47982069849968,-0.0646617412567139,-0.874980449676514,-0.399282872676849,-0.0814958363771439,-0.913198471069336,-0.379343450069427,-0.0774554759263992,-0.922008216381073,-0.47982069849968,-0.0646617412567139,-0.874980449676514, +-0.379343450069427,-0.0774554759263992,-0.922008216381073,-0.399282872676849,-0.0814958363771439,-0.913198471069336,-0.287274837493896,-0.071620486676693,-0.955166816711426,-0.466706424951553,-0.0583355389535427,-0.8824862241745,-0.483433306217194,-0.0884010940790176,-0.870906054973602,-0.502751588821411,-0.106878019869328,-0.857798218727112,-0.287274837493896,-0.071620486676693,-0.955166816711426,-0.191463097929955,-0.0815607234835625,-0.978105127811432,-0.211143046617508,-0.0302731581032276,-0.976986229419708,-0.132847771048546,-0.0543941855430603,-0.989642679691315,-0.211143046617508,-0.0302731581032276,-0.976986229419708,-0.191463097929955,-0.0815607234835625,-0.978105127811432,-0.830860555171967,-0.464425921440125,-0.306560188531876,-0.859296500682831,-0.361571758985519,-0.361766546964645,-0.959703743457794,-0.034484013915062,-0.278889656066895,-0.852191805839539,-0.266166746616364,-0.450471132993698,-0.859296500682831,-0.361571758985519,-0.361766546964645,-0.735081553459167,-0.505674600601196,-0.451606124639511,-0.93499231338501,0.277161538600922,-0.221293330192566,-0.95306134223938,0.264068216085434,-0.148127973079681,-0.93945974111557,0.306444674730301,-0.153319731354713,-0.968857109546661,0.224325031042099,-0.10485265403986,-0.95306134223938,0.264068216085434,-0.148127973079681,-0.961704611778259,0.195084795355797,-0.192525506019592,-0.93499231338501,0.277161538600922,-0.221293330192566,-0.93945974111557,0.306444674730301,-0.153319731354713,-0.930444478988647,0.328266233205795,-0.162832155823708,-0.912942409515381,0.330910891294479,-0.238818004727364,-0.930444478988647,0.328266233205795,-0.162832155823708,-0.916016221046448,0.361430257558823,-0.174018278717995,-0.916016221046448,0.361430257558823,-0.174018278717995,-0.912759602069855,0.390766352415085,-0.119044318795204,-0.916629135608673,0.351815164089203,-0.189781606197357,-0.899240255355835,0.401741325855255,-0.173119962215424,-0.975065052509308,0.163202583789825,-0.150375872850418,-0.916629135608673,0.351815164089203,-0.189781606197357,-0.830860555171967,-0.464425921440125,-0.306560188531876, +-0.95603334903717,-0.20709316432476,-0.207635849714279,-0.803587377071381,-0.535553872585297,-0.259671598672867,-0.95603334903717,-0.20709316432476,-0.207635849714279,-0.975065052509308,0.163202583789825,-0.150375872850418,-0.928093910217285,-0.330938309431076,-0.170650079846382,-0.0202357582747936,-0.0470818541944027,-0.998686015605927,-0.132847771048546,-0.0543941855430603,-0.989642679691315,-0.0554291680455208,-0.0619947761297226,-0.996536076068878,0.0129480706527829,-0.0121295489370823,-0.999842584133148,-0.0202357582747936,-0.0470818541944027,-0.998686015605927,0.0474197342991829,-0.0293086655437946,-0.99844491481781,-0.676117658615112,-0.443172216415405,-0.588611304759979,-0.667440891265869,-0.485422015190125,-0.564701676368713,-0.664238512516022,-0.534101903438568,-0.522993624210358,-0.655301570892334,-0.400747001171112,-0.640298008918762,-0.676117658615112,-0.443172216415405,-0.588611304759979,-0.668703079223633,-0.423613905906677,-0.611054241657257,-0.664238512516022,-0.534101903438568,-0.522993624210358,-0.667440891265869,-0.485422015190125,-0.564701676368713,-0.735081553459167,-0.505674600601196,-0.451606124639511,-0.617992222309113,-0.418422490358353,-0.66558849811554,-0.655301570892334,-0.400747001171112,-0.640298008918762,-0.668703079223633,-0.423613905906677,-0.611054241657257,-0.592383861541748,-0.393450886011124,-0.703048765659332,-0.565490663051605,-0.375778377056122,-0.734173536300659,-0.617992222309113,-0.418422490358353,-0.66558849811554,-0.446731120347977,-0.136687502264977,-0.884164988994598,-0.537806868553162,-0.285934507846832,-0.793098390102386,-0.625765800476074,-0.0512856468558311,-0.77832305431366,-0.592383861541748,-0.393450886011124,-0.703048765659332,-0.699539184570313,-0.200838223099709,-0.685790598392487,-0.537806868553162,-0.285934507846832,-0.793098390102386,-0.440370321273804,-0.0671809613704681,-0.895299136638641,-0.396707832813263,-0.126184731721878,-0.909230530261993,-0.446731120347977,-0.136687502264977,-0.884164988994598,-0.440370321273804,-0.0671809613704681,-0.895299136638641, +-0.418180793523788,-0.0967193692922592,-0.903199911117554,-0.396707832813263,-0.126184731721878,-0.909230530261993,-0.466706424951553,-0.0583355389535427,-0.8824862241745,-0.502751588821411,-0.106878019869328,-0.857798218727112,-0.418180793523788,-0.0967193692922592,-0.903199911117554,-0.466706424951553,-0.0583355389535427,-0.8824862241745,-0.437687188386917,-0.00901878718286753,-0.899082064628601,-0.47982069849968,-0.0646617412567139,-0.874980449676514,-0.47982069849968,-0.0646617412567139,-0.874980449676514,-0.420687556266785,-0.0388934202492237,-0.906371474266052,-0.399282872676849,-0.0814958363771439,-0.913198471069336,-0.420687556266785,-0.0388934202492237,-0.906371474266052,-0.287274837493896,-0.071620486676693,-0.955166816711426,-0.399282872676849,-0.0814958363771439,-0.913198471069336,-0.287274837493896,-0.071620486676693,-0.955166816711426,-0.267932027578354,-0.0495925098657608,-0.962160527706146,-0.191463097929955,-0.0815607234835625,-0.978105127811432,-0.132847771048546,-0.0543941855430603,-0.989642679691315,-0.191463097929955,-0.0815607234835625,-0.978105127811432,-0.175986438989639,-0.0689345896244049,-0.981975913047791,-0.830860555171967,-0.464425921440125,-0.306560188531876,-0.700033009052277,-0.593832731246948,-0.396631211042404,-0.859296500682831,-0.361571758985519,-0.361766546964645,-0.859296500682831,-0.361571758985519,-0.361766546964645,-0.700033009052277,-0.593832731246948,-0.396631211042404,-0.735081553459167,-0.505674600601196,-0.451606124639511,-0.95306134223938,0.264068216085434,-0.148127973079681,-0.943793594837189,0.308408051729202,-0.118903286755085,-0.93945974111557,0.306444674730301,-0.153319731354713,-0.943793594837189,0.308408051729202,-0.118903286755085,-0.95306134223938,0.264068216085434,-0.148127973079681,-0.968857109546661,0.224325031042099,-0.10485265403986,-0.93945974111557,0.306444674730301,-0.153319731354713,-0.943793594837189,0.308408051729202,-0.118903286755085,-0.930444478988647,0.328266233205795,-0.162832155823708,-0.930444478988647,0.328266233205795,-0.162832155823708,-0.943793594837189,0.308408051729202,-0.118903286755085, +-0.916016221046448,0.361430257558823,-0.174018278717995,-0.916016221046448,0.361430257558823,-0.174018278717995,-0.943793594837189,0.308408051729202,-0.118903286755085,-0.912759602069855,0.390766352415085,-0.119044318795204,-0.916629135608673,0.351815164089203,-0.189781606197357,-0.912759602069855,0.390766352415085,-0.119044318795204,-0.899240255355835,0.401741325855255,-0.173119962215424,-0.975065052509308,0.163202583789825,-0.150375872850418,-0.899240255355835,0.401741325855255,-0.173119962215424,-0.964875400066376,0.246169313788414,-0.0917389541864395,-0.803587377071381,-0.535553872585297,-0.259671598672867,-0.95603334903717,-0.20709316432476,-0.207635849714279,-0.777340769767761,-0.595834195613861,-0.201799213886261,-0.830860555171967,-0.464425921440125,-0.306560188531876,-0.803587377071381,-0.535553872585297,-0.259671598672867,-0.686582982540131,-0.666155755519867,-0.291273355484009,-0.951499462127686,-0.271264344453812,-0.14513535797596,-0.928093910217285,-0.330938309431076,-0.170650079846382,-0.975065052509308,0.163202583789825,-0.150375872850418,-0.95603334903717,-0.20709316432476,-0.207635849714279,-0.928093910217285,-0.330938309431076,-0.170650079846382,-0.777340769767761,-0.595834195613861,-0.201799213886261,-0.132847771048546,-0.0543941855430603,-0.989642679691315,-0.175986438989639,-0.0689345896244049,-0.981975913047791,-0.0554291680455208,-0.0619947761297226,-0.996536076068878,0.0474197342991829,-0.0293086655437946,-0.99844491481781,-0.0202357582747936,-0.0470818541944027,-0.998686015605927,-0.0554291680455208,-0.0619947761297226,-0.996536076068878,-0.676117658615112,-0.443172216415405,-0.588611304759979,-0.664238512516022,-0.534101903438568,-0.522993624210358,-0.715420007705688,-0.437380582094193,-0.544859886169434,-0.731525361537933,-0.367746561765671,-0.574136674404144,-0.668703079223633,-0.423613905906677,-0.611054241657257,-0.676117658615112,-0.443172216415405,-0.588611304759979,-0.664238512516022,-0.534101903438568,-0.522993624210358,-0.735081553459167,-0.505674600601196,-0.451606124639511,-0.700033009052277,-0.593832731246948,-0.396631211042404, +-0.692880034446716,-0.37613981962204,-0.615171551704407,-0.617992222309113,-0.418422490358353,-0.66558849811554,-0.668703079223633,-0.423613905906677,-0.611054241657257,-0.592383861541748,-0.393450886011124,-0.703048765659332,-0.617992222309113,-0.418422490358353,-0.66558849811554,-0.692880034446716,-0.37613981962204,-0.615171551704407,-0.537806868553162,-0.285934507846832,-0.793098390102386,-0.699539184570313,-0.200838223099709,-0.685790598392487,-0.625765800476074,-0.0512856468558311,-0.77832305431366,-0.525749206542969,-0.0138699049130082,-0.850526511669159,-0.446731120347977,-0.136687502264977,-0.884164988994598,-0.625765800476074,-0.0512856468558311,-0.77832305431366,-0.692880034446716,-0.37613981962204,-0.615171551704407,-0.699539184570313,-0.200838223099709,-0.685790598392487,-0.592383861541748,-0.393450886011124,-0.703048765659332,-0.446731120347977,-0.136687502264977,-0.884164988994598,-0.525749206542969,-0.0138699049130082,-0.850526511669159,-0.440370321273804,-0.0671809613704681,-0.895299136638641,-0.440370321273804,-0.0671809613704681,-0.895299136638641,-0.41014039516449,-0.0158174000680447,-0.911885201931,-0.418180793523788,-0.0967193692922592,-0.903199911117554,-0.466706424951553,-0.0583355389535427,-0.8824862241745,-0.418180793523788,-0.0967193692922592,-0.903199911117554,-0.437687188386917,-0.00901878718286753,-0.899082064628601,-0.47982069849968,-0.0646617412567139,-0.874980449676514,-0.437687188386917,-0.00901878718286753,-0.899082064628601,-0.513599336147308,0.0164402145892382,-0.857872545719147,-0.513599336147308,0.0164402145892382,-0.857872545719147,-0.420687556266785,-0.0388934202492237,-0.906371474266052,-0.47982069849968,-0.0646617412567139,-0.874980449676514,-0.287274837493896,-0.071620486676693,-0.955166816711426,-0.420687556266785,-0.0388934202492237,-0.906371474266052,-0.267932027578354,-0.0495925098657608,-0.962160527706146,-0.175986438989639,-0.0689345896244049,-0.981975913047791,-0.191463097929955,-0.0815607234835625,-0.978105127811432,-0.267932027578354,-0.0495925098657608,-0.962160527706146, +-0.830860555171967,-0.464425921440125,-0.306560188531876,-0.686582982540131,-0.666155755519867,-0.291273355484009,-0.700033009052277,-0.593832731246948,-0.396631211042404,-0.912759602069855,0.390766352415085,-0.119044318795204,-0.964875400066376,0.246169313788414,-0.0917389541864395,-0.899240255355835,0.401741325855255,-0.173119962215424,-0.975065052509308,0.163202583789825,-0.150375872850418,-0.964875400066376,0.246169313788414,-0.0917389541864395,-0.951499462127686,-0.271264344453812,-0.14513535797596,-0.777340769767761,-0.595834195613861,-0.201799213886261,-0.686582982540131,-0.666155755519867,-0.291273355484009,-0.803587377071381,-0.535553872585297,-0.259671598672867,-0.951499462127686,-0.271264344453812,-0.14513535797596,-0.743415176868439,-0.641542613506317,-0.189094290137291,-0.928093910217285,-0.330938309431076,-0.170650079846382,-0.743415176868439,-0.641542613506317,-0.189094290137291,-0.777340769767761,-0.595834195613861,-0.201799213886261,-0.928093910217285,-0.330938309431076,-0.170650079846382,-0.175986438989639,-0.0689345896244049,-0.981975913047791,-0.146573007106781,0.033428966999054,-0.988634824752808,-0.0554291680455208,-0.0619947761297226,-0.996536076068878,-0.0489822737872601,0.090268611907959,-0.994712114334106,0.0474197342991829,-0.0293086655437946,-0.99844491481781,-0.0554291680455208,-0.0619947761297226,-0.996536076068878,-0.660839676856995,-0.564261972904205,-0.494872748851776,-0.715420007705688,-0.437380582094193,-0.544859886169434,-0.664238512516022,-0.534101903438568,-0.522993624210358,-0.676117658615112,-0.443172216415405,-0.588611304759979,-0.715420007705688,-0.437380582094193,-0.544859886169434,-0.731525361537933,-0.367746561765671,-0.574136674404144,-0.731525361537933,-0.367746561765671,-0.574136674404144,-0.692880034446716,-0.37613981962204,-0.615171551704407,-0.668703079223633,-0.423613905906677,-0.611054241657257,-0.637454092502594,-0.604701161384583,-0.477481663227081,-0.664238512516022,-0.534101903438568,-0.522993624210358,-0.700033009052277,-0.593832731246948,-0.396631211042404, +-0.771136343479156,0.00291554909199476,-0.636663258075714,-0.625765800476074,-0.0512856468558311,-0.77832305431366,-0.699539184570313,-0.200838223099709,-0.685790598392487,-0.625765800476074,-0.0512856468558311,-0.77832305431366,-0.667049527168274,0.110784746706486,-0.7367302775383,-0.525749206542969,-0.0138699049130082,-0.850526511669159,-0.699539184570313,-0.200838223099709,-0.685790598392487,-0.692880034446716,-0.37613981962204,-0.615171551704407,-0.805217266082764,-0.158234566450119,-0.571477830410004,-0.562655866146088,0.0238757766783237,-0.826346278190613,-0.440370321273804,-0.0671809613704681,-0.895299136638641,-0.525749206542969,-0.0138699049130082,-0.850526511669159,-0.440370321273804,-0.0671809613704681,-0.895299136638641,-0.535962343215942,0.019419314339757,-0.844018399715424,-0.41014039516449,-0.0158174000680447,-0.911885201931,-0.437687188386917,-0.00901878718286753,-0.899082064628601,-0.418180793523788,-0.0967193692922592,-0.903199911117554,-0.41014039516449,-0.0158174000680447,-0.911885201931,-0.513599336147308,0.0164402145892382,-0.857872545719147,-0.437687188386917,-0.00901878718286753,-0.899082064628601,-0.502587080001831,0.137257292866707,-0.853561103343964,-0.420687556266785,-0.0388934202492237,-0.906371474266052,-0.513599336147308,0.0164402145892382,-0.857872545719147,-0.486666768789291,0.109243951737881,-0.866730153560638,-0.267932027578354,-0.0495925098657608,-0.962160527706146,-0.420687556266785,-0.0388934202492237,-0.906371474266052,-0.346534341573715,0.130071923136711,-0.928975284099579,-0.175986438989639,-0.0689345896244049,-0.981975913047791,-0.267932027578354,-0.0495925098657608,-0.962160527706146,-0.233264341950417,0.0704409033060074,-0.969858646392822,-0.658357381820679,-0.640338242053986,-0.395641684532166,-0.700033009052277,-0.593832731246948,-0.396631211042404,-0.686582982540131,-0.666155755519867,-0.291273355484009,-0.912759602069855,0.390766352415085,-0.119044318795204,-0.910906970500946,0.410561859607697,0.0410783030092716,-0.964875400066376,0.246169313788414,-0.0917389541864395, +-0.951499462127686,-0.271264344453812,-0.14513535797596,-0.964875400066376,0.246169313788414,-0.0917389541864395,-0.949697852134705,-0.310903966426849,-0.0375859886407852,-0.686582982540131,-0.666155755519867,-0.291273355484009,-0.777340769767761,-0.595834195613861,-0.201799213886261,-0.678314745426178,-0.677683472633362,-0.283961296081543,-0.742208003997803,-0.659801721572876,-0.117425762116909,-0.743415176868439,-0.641542613506317,-0.189094290137291,-0.951499462127686,-0.271264344453812,-0.14513535797596,-0.743415176868439,-0.641542613506317,-0.189094290137291,-0.678314745426178,-0.677683472633362,-0.283961296081543,-0.777340769767761,-0.595834195613861,-0.201799213886261,-0.146573007106781,0.033428966999054,-0.988634824752808,-0.175986438989639,-0.0689345896244049,-0.981975913047791,-0.233264341950417,0.0704409033060074,-0.969858646392822,-0.146573007106781,0.033428966999054,-0.988634824752808,-0.0489822737872601,0.090268611907959,-0.994712114334106,-0.0554291680455208,-0.0619947761297226,-0.996536076068878,-0.660839676856995,-0.564261972904205,-0.494872748851776,-0.718928813934326,-0.553545951843262,-0.420390397310257,-0.715420007705688,-0.437380582094193,-0.544859886169434,-0.660839676856995,-0.564261972904205,-0.494872748851776,-0.664238512516022,-0.534101903438568,-0.522993624210358,-0.637454092502594,-0.604701161384583,-0.477481663227081,-0.83162122964859,-0.238723441958427,-0.501415133476257,-0.731525361537933,-0.367746561765671,-0.574136674404144,-0.715420007705688,-0.437380582094193,-0.544859886169434,-0.815173268318176,-0.255874842405319,-0.519634902477264,-0.692880034446716,-0.37613981962204,-0.615171551704407,-0.731525361537933,-0.367746561765671,-0.574136674404144,-0.637454092502594,-0.604701161384583,-0.477481663227081,-0.700033009052277,-0.593832731246948,-0.396631211042404,-0.658357381820679,-0.640338242053986,-0.395641684532166,-0.625765800476074,-0.0512856468558311,-0.77832305431366,-0.771136343479156,0.00291554909199476,-0.636663258075714,-0.667049527168274,0.110784746706486,-0.7367302775383,-0.699539184570313,-0.200838223099709,-0.685790598392487, +-0.805217266082764,-0.158234566450119,-0.571477830410004,-0.771136343479156,0.00291554909199476,-0.636663258075714,-0.562655866146088,0.0238757766783237,-0.826346278190613,-0.525749206542969,-0.0138699049130082,-0.850526511669159,-0.667049527168274,0.110784746706486,-0.7367302775383,-0.815173268318176,-0.255874842405319,-0.519634902477264,-0.805217266082764,-0.158234566450119,-0.571477830410004,-0.692880034446716,-0.37613981962204,-0.615171551704407,-0.562655866146088,0.0238757766783237,-0.826346278190613,-0.535962343215942,0.019419314339757,-0.844018399715424,-0.440370321273804,-0.0671809613704681,-0.895299136638641,-0.535962343215942,0.019419314339757,-0.844018399715424,-0.4401775598526,0.17878982424736,-0.879930555820465,-0.41014039516449,-0.0158174000680447,-0.911885201931,-0.41014039516449,-0.0158174000680447,-0.911885201931,-0.401563763618469,0.146028608083725,-0.904113948345184,-0.437687188386917,-0.00901878718286753,-0.899082064628601,-0.502587080001831,0.137257292866707,-0.853561103343964,-0.437687188386917,-0.00901878718286753,-0.899082064628601,-0.401563763618469,0.146028608083725,-0.904113948345184,-0.502587080001831,0.137257292866707,-0.853561103343964,-0.486666768789291,0.109243951737881,-0.866730153560638,-0.513599336147308,0.0164402145892382,-0.857872545719147,-0.420687556266785,-0.0388934202492237,-0.906371474266052,-0.486666768789291,0.109243951737881,-0.866730153560638,-0.346534341573715,0.130071923136711,-0.928975284099579,-0.267932027578354,-0.0495925098657608,-0.962160527706146,-0.346534341573715,0.130071923136711,-0.928975284099579,-0.233264341950417,0.0704409033060074,-0.969858646392822,-0.678314745426178,-0.677683472633362,-0.283961296081543,-0.658357381820679,-0.640338242053986,-0.395641684532166,-0.686582982540131,-0.666155755519867,-0.291273355484009,-0.910906970500946,0.410561859607697,0.0410783030092716,-0.995173454284668,0.0915359258651733,0.0353678464889526,-0.964875400066376,0.246169313788414,-0.0917389541864395,-0.964875400066376,0.246169313788414,-0.0917389541864395,-0.995173454284668,0.0915359258651733,0.0353678464889526, +-0.949697852134705,-0.310903966426849,-0.0375859886407852,-0.951499462127686,-0.271264344453812,-0.14513535797596,-0.949697852134705,-0.310903966426849,-0.0375859886407852,-0.742208003997803,-0.659801721572876,-0.117425762116909,-0.69582462310791,-0.687487661838531,-0.207818776369095,-0.743415176868439,-0.641542613506317,-0.189094290137291,-0.742208003997803,-0.659801721572876,-0.117425762116909,-0.69582462310791,-0.687487661838531,-0.207818776369095,-0.678314745426178,-0.677683472633362,-0.283961296081543,-0.743415176868439,-0.641542613506317,-0.189094290137291,-0.146573007106781,0.033428966999054,-0.988634824752808,-0.233264341950417,0.0704409033060074,-0.969858646392822,-0.174511209130287,0.157514810562134,-0.971974730491638,-0.0489822737872601,0.090268611907959,-0.994712114334106,-0.146573007106781,0.033428966999054,-0.988634824752808,-0.174511209130287,0.157514810562134,-0.971974730491638,-0.718928813934326,-0.553545951843262,-0.420390397310257,-0.660839676856995,-0.564261972904205,-0.494872748851776,-0.658357381820679,-0.640338242053986,-0.395641684532166,-0.715420007705688,-0.437380582094193,-0.544859886169434,-0.718928813934326,-0.553545951843262,-0.420390397310257,-0.821667611598969,-0.372095495462418,-0.431748926639557,-0.660839676856995,-0.564261972904205,-0.494872748851776,-0.637454092502594,-0.604701161384583,-0.477481663227081,-0.658357381820679,-0.640338242053986,-0.395641684532166,-0.83162122964859,-0.238723441958427,-0.501415133476257,-0.841001570224762,-0.177722543478012,-0.511009693145752,-0.731525361537933,-0.367746561765671,-0.574136674404144,-0.715420007705688,-0.437380582094193,-0.544859886169434,-0.821667611598969,-0.372095495462418,-0.431748926639557,-0.83162122964859,-0.238723441958427,-0.501415133476257,-0.815173268318176,-0.255874842405319,-0.519634902477264,-0.731525361537933,-0.367746561765671,-0.574136674404144,-0.845006108283997,-0.187635406851768,-0.500756919384003,-0.79922354221344,0.150905609130859,-0.581780970096588,-0.667049527168274,0.110784746706486,-0.7367302775383,-0.771136343479156,0.00291554909199476,-0.636663258075714, +-0.771136343479156,0.00291554909199476,-0.636663258075714,-0.805217266082764,-0.158234566450119,-0.571477830410004,-0.878177165985107,-0.0461959950625896,-0.476099461317062,-0.667049527168274,0.110784746706486,-0.7367302775383,-0.595268130302429,0.188736036419868,-0.781046986579895,-0.562655866146088,0.0238757766783237,-0.826346278190613,-0.815173268318176,-0.255874842405319,-0.519634902477264,-0.878177165985107,-0.0461959950625896,-0.476099461317062,-0.805217266082764,-0.158234566450119,-0.571477830410004,-0.535962343215942,0.019419314339757,-0.844018399715424,-0.562655866146088,0.0238757766783237,-0.826346278190613,-0.595268130302429,0.188736036419868,-0.781046986579895,-0.4401775598526,0.17878982424736,-0.879930555820465,-0.535962343215942,0.019419314339757,-0.844018399715424,-0.595268130302429,0.188736036419868,-0.781046986579895,-0.41014039516449,-0.0158174000680447,-0.911885201931,-0.4401775598526,0.17878982424736,-0.879930555820465,-0.401563763618469,0.146028608083725,-0.904113948345184,-0.502023994922638,0.175762549042702,-0.846805334091187,-0.502587080001831,0.137257292866707,-0.853561103343964,-0.401563763618469,0.146028608083725,-0.904113948345184,-0.489525496959686,0.17905704677105,-0.853406846523285,-0.486666768789291,0.109243951737881,-0.866730153560638,-0.502587080001831,0.137257292866707,-0.853561103343964,-0.489525496959686,0.17905704677105,-0.853406846523285,-0.346534341573715,0.130071923136711,-0.928975284099579,-0.486666768789291,0.109243951737881,-0.866730153560638,-0.244621127843857,0.179009318351746,-0.95295125246048,-0.233264341950417,0.0704409033060074,-0.969858646392822,-0.346534341573715,0.130071923136711,-0.928975284099579,-0.678314745426178,-0.677683472633362,-0.283961296081543,-0.718928813934326,-0.553545951843262,-0.420390397310257,-0.658357381820679,-0.640338242053986,-0.395641684532166,-0.949697852134705,-0.310903966426849,-0.0375859886407852,-0.995173454284668,0.0915359258651733,0.0353678464889526,-0.899925231933594,-0.435737490653992,-0.0163418315351009,-0.716764032840729,-0.695402920246124,-0.0516131147742271, +-0.742208003997803,-0.659801721572876,-0.117425762116909,-0.949697852134705,-0.310903966426849,-0.0375859886407852,-0.69582462310791,-0.687487661838531,-0.207818776369095,-0.742208003997803,-0.659801721572876,-0.117425762116909,-0.701009750366211,-0.70132577419281,-0.129334270954132,-0.69582462310791,-0.687487661838531,-0.207818776369095,-0.774828851222992,-0.539997756481171,-0.328698188066483,-0.678314745426178,-0.677683472633362,-0.283961296081543,-0.174511209130287,0.157514810562134,-0.971974730491638,-0.233264341950417,0.0704409033060074,-0.969858646392822,-0.244621127843857,0.179009318351746,-0.95295125246048,-0.174511209130287,0.157514810562134,-0.971974730491638,-0.139783024787903,0.140303432941437,-0.980191588401794,-0.0489822737872601,0.090268611907959,-0.994712114334106,-0.774828851222992,-0.539997756481171,-0.328698188066483,-0.821667611598969,-0.372095495462418,-0.431748926639557,-0.718928813934326,-0.553545951843262,-0.420390397310257,-0.89211905002594,-0.0504215359687805,-0.448977887630463,-0.841001570224762,-0.177722543478012,-0.511009693145752,-0.83162122964859,-0.238723441958427,-0.501415133476257,-0.788944363594055,-0.273462474346161,-0.550258934497833,-0.731525361537933,-0.367746561765671,-0.574136674404144,-0.841001570224762,-0.177722543478012,-0.511009693145752,-0.909833967685699,-0.18671789765358,-0.37059211730957,-0.83162122964859,-0.238723441958427,-0.501415133476257,-0.821667611598969,-0.372095495462418,-0.431748926639557,-0.845006108283997,-0.187635406851768,-0.500756919384003,-0.731525361537933,-0.367746561765671,-0.574136674404144,-0.788944363594055,-0.273462474346161,-0.550258934497833,-0.815173268318176,-0.255874842405319,-0.519634902477264,-0.845006108283997,-0.187635406851768,-0.500756919384003,-0.878177165985107,-0.0461959950625896,-0.476099461317062,-0.667049527168274,0.110784746706486,-0.7367302775383,-0.79922354221344,0.150905609130859,-0.581780970096588,-0.757472932338715,0.273748248815537,-0.592702686786652,-0.79922354221344,0.150905609130859,-0.581780970096588,-0.771136343479156,0.00291554909199476,-0.636663258075714, +-0.858910381793976,0.0510268323123455,-0.509577333927155,-0.771136343479156,0.00291554909199476,-0.636663258075714,-0.878177165985107,-0.0461959950625896,-0.476099461317062,-0.858910381793976,0.0510268323123455,-0.509577333927155,-0.667049527168274,0.110784746706486,-0.7367302775383,-0.697226703166962,0.282845050096512,-0.658690690994263,-0.595268130302429,0.188736036419868,-0.781046986579895,-0.4401775598526,0.17878982424736,-0.879930555820465,-0.595268130302429,0.188736036419868,-0.781046986579895,-0.501987159252167,0.300836324691772,-0.810867547988892,-0.401563763618469,0.146028608083725,-0.904113948345184,-0.4401775598526,0.17878982424736,-0.879930555820465,-0.416060656309128,0.229061543941498,-0.880013763904572,-0.489525496959686,0.17905704677105,-0.853406846523285,-0.502587080001831,0.137257292866707,-0.853561103343964,-0.502023994922638,0.175762549042702,-0.846805334091187,-0.502023994922638,0.175762549042702,-0.846805334091187,-0.401563763618469,0.146028608083725,-0.904113948345184,-0.416060656309128,0.229061543941498,-0.880013763904572,-0.372621417045593,0.17216420173645,-0.911873161792755,-0.346534341573715,0.130071923136711,-0.928975284099579,-0.489525496959686,0.17905704677105,-0.853406846523285,-0.298156261444092,0.169600158929825,-0.939328730106354,-0.244621127843857,0.179009318351746,-0.95295125246048,-0.346534341573715,0.130071923136711,-0.928975284099579,-0.774828851222992,-0.539997756481171,-0.328698188066483,-0.718928813934326,-0.553545951843262,-0.420390397310257,-0.678314745426178,-0.677683472633362,-0.283961296081543,-0.899925231933594,-0.435737490653992,-0.0163418315351009,-0.995173454284668,0.0915359258651733,0.0353678464889526,-0.913361012935638,-0.406753957271576,0.0179593674838543,-0.949697852134705,-0.310903966426849,-0.0375859886407852,-0.899925231933594,-0.435737490653992,-0.0163418315351009,-0.716764032840729,-0.695402920246124,-0.0516131147742271,-0.701009750366211,-0.70132577419281,-0.129334270954132,-0.742208003997803,-0.659801721572876,-0.117425762116909,-0.716764032840729,-0.695402920246124,-0.0516131147742271, +-0.81787371635437,-0.528833329677582,-0.226754665374756,-0.69582462310791,-0.687487661838531,-0.207818776369095,-0.701009750366211,-0.70132577419281,-0.129334270954132,-0.81787371635437,-0.528833329677582,-0.226754665374756,-0.774828851222992,-0.539997756481171,-0.328698188066483,-0.69582462310791,-0.687487661838531,-0.207818776369095,-0.139783024787903,0.140303432941437,-0.980191588401794,-0.174511209130287,0.157514810562134,-0.971974730491638,-0.244621127843857,0.179009318351746,-0.95295125246048,-0.863240301609039,-0.374654144048691,-0.338305056095123,-0.821667611598969,-0.372095495462418,-0.431748926639557,-0.774828851222992,-0.539997756481171,-0.328698188066483,-0.89211905002594,-0.0504215359687805,-0.448977887630463,-0.902798652648926,0.0213811658322811,-0.429531574249268,-0.841001570224762,-0.177722543478012,-0.511009693145752,-0.909833967685699,-0.18671789765358,-0.37059211730957,-0.89211905002594,-0.0504215359687805,-0.448977887630463,-0.83162122964859,-0.238723441958427,-0.501415133476257,-0.788944363594055,-0.273462474346161,-0.550258934497833,-0.841001570224762,-0.177722543478012,-0.511009693145752,-0.8845055103302,-0.032131090760231,-0.465421825647354,-0.909833967685699,-0.18671789765358,-0.37059211730957,-0.821667611598969,-0.372095495462418,-0.431748926639557,-0.863240301609039,-0.374654144048691,-0.338305056095123,-0.845006108283997,-0.187635406851768,-0.500756919384003,-0.788944363594055,-0.273462474346161,-0.550258934497833,-0.8845055103302,-0.032131090760231,-0.465421825647354,-0.918268918991089,0.0102590406313539,-0.395824193954468,-0.878177165985107,-0.0461959950625896,-0.476099461317062,-0.845006108283997,-0.187635406851768,-0.500756919384003,-0.79922354221344,0.150905609130859,-0.581780970096588,-0.84331339597702,0.246394410729408,-0.477611035108566,-0.757472932338715,0.273748248815537,-0.592702686786652,-0.757472932338715,0.273748248815537,-0.592702686786652,-0.697226703166962,0.282845050096512,-0.658690690994263,-0.667049527168274,0.110784746706486,-0.7367302775383,-0.79922354221344,0.150905609130859,-0.581780970096588, +-0.858910381793976,0.0510268323123455,-0.509577333927155,-0.899256110191345,0.126894548535347,-0.418612062931061,-0.858910381793976,0.0510268323123455,-0.509577333927155,-0.878177165985107,-0.0461959950625896,-0.476099461317062,-0.919443249702454,0.0427346415817738,-0.390893548727036,-0.595268130302429,0.188736036419868,-0.781046986579895,-0.697226703166962,0.282845050096512,-0.658690690994263,-0.614823281764984,0.318796813488007,-0.721360325813293,-0.501987159252167,0.300836324691772,-0.810867547988892,-0.595268130302429,0.188736036419868,-0.781046986579895,-0.614823281764984,0.318796813488007,-0.721360325813293,-0.501987159252167,0.300836324691772,-0.810867547988892,-0.407247483730316,0.289228856563568,-0.86631178855896,-0.4401775598526,0.17878982424736,-0.879930555820465,-0.407247483730316,0.289228856563568,-0.86631178855896,-0.416060656309128,0.229061543941498,-0.880013763904572,-0.4401775598526,0.17878982424736,-0.879930555820465,-0.489525496959686,0.17905704677105,-0.853406846523285,-0.502023994922638,0.175762549042702,-0.846805334091187,-0.483417302370071,0.145877957344055,-0.863149583339691,-0.512140035629272,0.18994303047657,-0.83763599395752,-0.502023994922638,0.175762549042702,-0.846805334091187,-0.416060656309128,0.229061543941498,-0.880013763904572,-0.372621417045593,0.17216420173645,-0.911873161792755,-0.298156261444092,0.169600158929825,-0.939328730106354,-0.346534341573715,0.130071923136711,-0.928975284099579,-0.372621417045593,0.17216420173645,-0.911873161792755,-0.489525496959686,0.17905704677105,-0.853406846523285,-0.404892683029175,0.177033931016922,-0.897062301635742,-0.217693939805031,0.142718434333801,-0.965526103973389,-0.244621127843857,0.179009318351746,-0.95295125246048,-0.298156261444092,0.169600158929825,-0.939328730106354,-0.899925231933594,-0.435737490653992,-0.0163418315351009,-0.913361012935638,-0.406753957271576,0.0179593674838543,-0.698325097560883,-0.715731799602509,0.00836592074483633,-0.716764032840729,-0.695402920246124,-0.0516131147742271,-0.899925231933594,-0.435737490653992,-0.0163418315351009, +-0.698325097560883,-0.715731799602509,0.00836592074483633,-0.623108386993408,-0.782135128974915,0.00055970047833398,-0.701009750366211,-0.70132577419281,-0.129334270954132,-0.716764032840729,-0.695402920246124,-0.0516131147742271,-0.856267094612122,-0.502070426940918,-0.121374599635601,-0.81787371635437,-0.528833329677582,-0.226754665374756,-0.701009750366211,-0.70132577419281,-0.129334270954132,-0.81787371635437,-0.528833329677582,-0.226754665374756,-0.863240301609039,-0.374654144048691,-0.338305056095123,-0.774828851222992,-0.539997756481171,-0.328698188066483,-0.244621127843857,0.179009318351746,-0.95295125246048,-0.217693939805031,0.142718434333801,-0.965526103973389,-0.139783024787903,0.140303432941437,-0.980191588401794,-0.89211905002594,-0.0504215359687805,-0.448977887630463,-0.885536849498749,0.0287763234227896,-0.463676869869232,-0.902798652648926,0.0213811658322811,-0.429531574249268,-0.8845055103302,-0.032131090760231,-0.465421825647354,-0.841001570224762,-0.177722543478012,-0.511009693145752,-0.902798652648926,0.0213811658322811,-0.429531574249268,-0.909833967685699,-0.18671789765358,-0.37059211730957,-0.910132765769959,-0.0682017430663109,-0.408664524555206,-0.89211905002594,-0.0504215359687805,-0.448977887630463,-0.863240301609039,-0.374654144048691,-0.338305056095123,-0.91663670539856,-0.327930837869644,-0.228557154536247,-0.909833967685699,-0.18671789765358,-0.37059211730957,-0.8845055103302,-0.032131090760231,-0.465421825647354,-0.918268918991089,0.0102590406313539,-0.395824193954468,-0.845006108283997,-0.187635406851768,-0.500756919384003,-0.878177165985107,-0.0461959950625896,-0.476099461317062,-0.918268918991089,0.0102590406313539,-0.395824193954468,-0.919443249702454,0.0427346415817738,-0.390893548727036,-0.899256110191345,0.126894548535347,-0.418612062931061,-0.84331339597702,0.246394410729408,-0.477611035108566,-0.79922354221344,0.150905609130859,-0.581780970096588,-0.84331339597702,0.246394410729408,-0.477611035108566,-0.824582040309906,0.234596684575081,-0.514809370040894,-0.757472932338715,0.273748248815537,-0.592702686786652, +-0.757472932338715,0.273748248815537,-0.592702686786652,-0.753660321235657,0.270008504390717,-0.599242329597473,-0.697226703166962,0.282845050096512,-0.658690690994263,-0.899256110191345,0.126894548535347,-0.418612062931061,-0.858910381793976,0.0510268323123455,-0.509577333927155,-0.919443249702454,0.0427346415817738,-0.390893548727036,-0.65611869096756,0.313667774200439,-0.686382293701172,-0.614823281764984,0.318796813488007,-0.721360325813293,-0.697226703166962,0.282845050096512,-0.658690690994263,-0.586869120597839,0.319565564393997,-0.743950486183167,-0.501987159252167,0.300836324691772,-0.810867547988892,-0.614823281764984,0.318796813488007,-0.721360325813293,-0.501987159252167,0.300836324691772,-0.810867547988892,-0.438206434249878,0.267121225595474,-0.858266413211823,-0.407247483730316,0.289228856563568,-0.86631178855896,-0.438206434249878,0.267121225595474,-0.858266413211823,-0.416060656309128,0.229061543941498,-0.880013763904572,-0.407247483730316,0.289228856563568,-0.86631178855896,-0.483417302370071,0.145877957344055,-0.863149583339691,-0.502023994922638,0.175762549042702,-0.846805334091187,-0.553211271762848,0.113332115113735,-0.825295686721802,-0.483417302370071,0.145877957344055,-0.863149583339691,-0.404892683029175,0.177033931016922,-0.897062301635742,-0.489525496959686,0.17905704677105,-0.853406846523285,-0.512140035629272,0.18994303047657,-0.83763599395752,-0.553211271762848,0.113332115113735,-0.825295686721802,-0.502023994922638,0.175762549042702,-0.846805334091187,-0.438206434249878,0.267121225595474,-0.858266413211823,-0.512140035629272,0.18994303047657,-0.83763599395752,-0.416060656309128,0.229061543941498,-0.880013763904572,-0.372621417045593,0.17216420173645,-0.911873161792755,-0.404892683029175,0.177033931016922,-0.897062301635742,-0.298156261444092,0.169600158929825,-0.939328730106354,-0.28885218501091,0.169307589530945,-0.942284047603607,-0.217693939805031,0.142718434333801,-0.965526103973389,-0.298156261444092,0.169600158929825,-0.939328730106354,-0.698325097560883,-0.715731799602509,0.00836592074483633, +-0.913361012935638,-0.406753957271576,0.0179593674838543,-0.751060783863068,-0.653262317180634,0.0956870019435883,-0.623108386993408,-0.782135128974915,0.00055970047833398,-0.716764032840729,-0.695402920246124,-0.0516131147742271,-0.698325097560883,-0.715731799602509,0.00836592074483633,-0.730080604553223,-0.682558417320251,-0.0331099331378937,-0.701009750366211,-0.70132577419281,-0.129334270954132,-0.623108386993408,-0.782135128974915,0.00055970047833398,-0.856267094612122,-0.502070426940918,-0.121374599635601,-0.91663670539856,-0.327930837869644,-0.228557154536247,-0.81787371635437,-0.528833329677582,-0.226754665374756,-0.730080604553223,-0.682558417320251,-0.0331099331378937,-0.856267094612122,-0.502070426940918,-0.121374599635601,-0.701009750366211,-0.70132577419281,-0.129334270954132,-0.863240301609039,-0.374654144048691,-0.338305056095123,-0.81787371635437,-0.528833329677582,-0.226754665374756,-0.91663670539856,-0.327930837869644,-0.228557154536247,-0.217693939805031,0.142718434333801,-0.965526103973389,-0.189368456602097,0.135976031422615,-0.972445368766785,-0.139783024787903,0.140303432941437,-0.980191588401794,-0.873904764652252,-0.0285371486097574,-0.485258668661118,-0.885536849498749,0.0287763234227896,-0.463676869869232,-0.89211905002594,-0.0504215359687805,-0.448977887630463,-0.885536849498749,0.0287763234227896,-0.463676869869232,-0.882714807987213,0.0405290126800537,-0.468158036470413,-0.902798652648926,0.0213811658322811,-0.429531574249268,-0.882714807987213,0.0405290126800537,-0.468158036470413,-0.8845055103302,-0.032131090760231,-0.465421825647354,-0.902798652648926,0.0213811658322811,-0.429531574249268,-0.910132765769959,-0.0682017430663109,-0.408664524555206,-0.909833967685699,-0.18671789765358,-0.37059211730957,-0.944121539592743,-0.117563910782337,-0.307917535305023,-0.89211905002594,-0.0504215359687805,-0.448977887630463,-0.910132765769959,-0.0682017430663109,-0.408664524555206,-0.873904764652252,-0.0285371486097574,-0.485258668661118,-0.909833967685699,-0.18671789765358,-0.37059211730957,-0.91663670539856,-0.327930837869644,-0.228557154536247, +-0.954322636127472,-0.195281744003296,-0.226126596331596,-0.918268918991089,0.0102590406313539,-0.395824193954468,-0.8845055103302,-0.032131090760231,-0.465421825647354,-0.913952529430389,0.0611736662685871,-0.401183903217316,-0.919443249702454,0.0427346415817738,-0.390893548727036,-0.918268918991089,0.0102590406313539,-0.395824193954468,-0.936267375946045,0.0756526216864586,-0.343045145273209,-0.84331339597702,0.246394410729408,-0.477611035108566,-0.899256110191345,0.126894548535347,-0.418612062931061,-0.897919416427612,0.132237523794174,-0.419826000928879,-0.824582040309906,0.234596684575081,-0.514809370040894,-0.84331339597702,0.246394410729408,-0.477611035108566,-0.897919416427612,0.132237523794174,-0.419826000928879,-0.757472932338715,0.273748248815537,-0.592702686786652,-0.824582040309906,0.234596684575081,-0.514809370040894,-0.753660321235657,0.270008504390717,-0.599242329597473,-0.703393757343292,0.277155101299286,-0.654539585113525,-0.697226703166962,0.282845050096512,-0.658690690994263,-0.753660321235657,0.270008504390717,-0.599242329597473,-0.899256110191345,0.126894548535347,-0.418612062931061,-0.919443249702454,0.0427346415817738,-0.390893548727036,-0.936267375946045,0.0756526216864586,-0.343045145273209,-0.586869120597839,0.319565564393997,-0.743950486183167,-0.614823281764984,0.318796813488007,-0.721360325813293,-0.65611869096756,0.313667774200439,-0.686382293701172,-0.703393757343292,0.277155101299286,-0.654539585113525,-0.65611869096756,0.313667774200439,-0.686382293701172,-0.697226703166962,0.282845050096512,-0.658690690994263,-0.510038912296295,0.274511098861694,-0.81517106294632,-0.501987159252167,0.300836324691772,-0.810867547988892,-0.586869120597839,0.319565564393997,-0.743950486183167,-0.510038912296295,0.274511098861694,-0.81517106294632,-0.438206434249878,0.267121225595474,-0.858266413211823,-0.501987159252167,0.300836324691772,-0.810867547988892,-0.483417302370071,0.145877957344055,-0.863149583339691,-0.553211271762848,0.113332115113735,-0.825295686721802,-0.457937061786652,0.0339878164231777,-0.888334631919861, +-0.483417302370071,0.145877957344055,-0.863149583339691,-0.39017590880394,0.195742979645729,-0.899692893028259,-0.404892683029175,0.177033931016922,-0.897062301635742,-0.512140035629272,0.18994303047657,-0.83763599395752,-0.580302953720093,0.230412721633911,-0.781126320362091,-0.553211271762848,0.113332115113735,-0.825295686721802,-0.512140035629272,0.18994303047657,-0.83763599395752,-0.438206434249878,0.267121225595474,-0.858266413211823,-0.510038912296295,0.274511098861694,-0.81517106294632,-0.298156261444092,0.169600158929825,-0.939328730106354,-0.404892683029175,0.177033931016922,-0.897062301635742,-0.28885218501091,0.169307589530945,-0.942284047603607,-0.28885218501091,0.169307589530945,-0.942284047603607,-0.189368456602097,0.135976031422615,-0.972445368766785,-0.217693939805031,0.142718434333801,-0.965526103973389,-0.698325097560883,-0.715731799602509,0.00836592074483633,-0.751060783863068,-0.653262317180634,0.0956870019435883,-0.60611093044281,-0.78818690776825,0.10672752559185,-0.698325097560883,-0.715731799602509,0.00836592074483633,-0.60611093044281,-0.78818690776825,0.10672752559185,-0.623108386993408,-0.782135128974915,0.00055970047833398,-0.638798594474792,-0.760182499885559,0.118569791316986,-0.730080604553223,-0.682558417320251,-0.0331099331378937,-0.623108386993408,-0.782135128974915,0.00055970047833398,-0.91663670539856,-0.327930837869644,-0.228557154536247,-0.856267094612122,-0.502070426940918,-0.121374599635601,-0.942709147930145,-0.310536295175552,-0.121928580105305,-0.865862429141998,-0.498093485832214,-0.0467438101768494,-0.856267094612122,-0.502070426940918,-0.121374599635601,-0.730080604553223,-0.682558417320251,-0.0331099331378937,-0.873904764652252,-0.0285371486097574,-0.485258668661118,-0.847618043422699,-0.036600723862648,-0.529342889785767,-0.885536849498749,0.0287763234227896,-0.463676869869232,-0.885536849498749,0.0287763234227896,-0.463676869869232,-0.847618043422699,-0.036600723862648,-0.529342889785767,-0.882714807987213,0.0405290126800537,-0.468158036470413,-0.882714807987213,0.0405290126800537,-0.468158036470413, +-0.913952529430389,0.0611736662685871,-0.401183903217316,-0.8845055103302,-0.032131090760231,-0.465421825647354,-0.909833967685699,-0.18671789765358,-0.37059211730957,-0.954322636127472,-0.195281744003296,-0.226126596331596,-0.944121539592743,-0.117563910782337,-0.307917535305023,-0.912753105163574,-0.0733456909656525,-0.401873201131821,-0.910132765769959,-0.0682017430663109,-0.408664524555206,-0.944121539592743,-0.117563910782337,-0.307917535305023,-0.912753105163574,-0.0733456909656525,-0.401873201131821,-0.873904764652252,-0.0285371486097574,-0.485258668661118,-0.910132765769959,-0.0682017430663109,-0.408664524555206,-0.91663670539856,-0.327930837869644,-0.228557154536247,-0.942709147930145,-0.310536295175552,-0.121928580105305,-0.954322636127472,-0.195281744003296,-0.226126596331596,-0.913952529430389,0.0611736662685871,-0.401183903217316,-0.936267375946045,0.0756526216864586,-0.343045145273209,-0.918268918991089,0.0102590406313539,-0.395824193954468,-0.899256110191345,0.126894548535347,-0.418612062931061,-0.936267375946045,0.0756526216864586,-0.343045145273209,-0.897919416427612,0.132237523794174,-0.419826000928879,-0.897919416427612,0.132237523794174,-0.419826000928879,-0.841582179069519,0.059849314391613,-0.536802887916565,-0.824582040309906,0.234596684575081,-0.514809370040894,-0.824582040309906,0.234596684575081,-0.514809370040894,-0.782495677471161,0.183667376637459,-0.594950973987579,-0.753660321235657,0.270008504390717,-0.599242329597473,-0.753660321235657,0.270008504390717,-0.599242329597473,-0.726539850234985,0.250395864248276,-0.639876246452332,-0.703393757343292,0.277155101299286,-0.654539585113525,-0.636031031608582,0.28202748298645,-0.718279123306274,-0.586869120597839,0.319565564393997,-0.743950486183167,-0.65611869096756,0.313667774200439,-0.686382293701172,-0.65611869096756,0.313667774200439,-0.686382293701172,-0.703393757343292,0.277155101299286,-0.654539585113525,-0.658674836158752,0.269181936979294,-0.702629625797272,-0.510038912296295,0.274511098861694,-0.81517106294632,-0.586869120597839,0.319565564393997,-0.743950486183167, +-0.580302953720093,0.230412721633911,-0.781126320362091,-0.457937061786652,0.0339878164231777,-0.888334631919861,-0.553211271762848,0.113332115113735,-0.825295686721802,-0.561447203159332,0.0332085601985455,-0.82684588432312,-0.483417302370071,0.145877957344055,-0.863149583339691,-0.457937061786652,0.0339878164231777,-0.888334631919861,-0.368223428726196,0.0838856250047684,-0.925945222377777,-0.39017590880394,0.195742979645729,-0.899692893028259,-0.483417302370071,0.145877957344055,-0.863149583339691,-0.368223428726196,0.0838856250047684,-0.925945222377777,-0.404892683029175,0.177033931016922,-0.897062301635742,-0.39017590880394,0.195742979645729,-0.899692893028259,-0.28885218501091,0.169307589530945,-0.942284047603607,-0.512140035629272,0.18994303047657,-0.83763599395752,-0.510038912296295,0.274511098861694,-0.81517106294632,-0.580302953720093,0.230412721633911,-0.781126320362091,-0.580302953720093,0.230412721633911,-0.781126320362091,-0.647590398788452,0.196725323796272,-0.736156046390533,-0.553211271762848,0.113332115113735,-0.825295686721802,-0.28885218501091,0.169307589530945,-0.942284047603607,-0.255562961101532,0.145187392830849,-0.955828487873077,-0.189368456602097,0.135976031422615,-0.972445368766785,-0.60611093044281,-0.78818690776825,0.10672752559185,-0.751060783863068,-0.653262317180634,0.0956870019435883,-0.615803182125092,-0.769678115844727,0.168469190597534,-0.638798594474792,-0.760182499885559,0.118569791316986,-0.623108386993408,-0.782135128974915,0.00055970047833398,-0.60611093044281,-0.78818690776825,0.10672752559185,-0.767215669155121,-0.639140427112579,0.0536594800651073,-0.730080604553223,-0.682558417320251,-0.0331099331378937,-0.638798594474792,-0.760182499885559,0.118569791316986,-0.865862429141998,-0.498093485832214,-0.0467438101768494,-0.942709147930145,-0.310536295175552,-0.121928580105305,-0.856267094612122,-0.502070426940918,-0.121374599635601,-0.767215669155121,-0.639140427112579,0.0536594800651073,-0.865862429141998,-0.498093485832214,-0.0467438101768494,-0.730080604553223,-0.682558417320251,-0.0331099331378937, +-0.873904764652252,-0.0285371486097574,-0.485258668661118,-0.874602377414703,-0.0213809087872505,-0.484369099140167,-0.847618043422699,-0.036600723862648,-0.529342889785767,-0.840222775936127,-0.0303929224610329,-0.54138857126236,-0.882714807987213,0.0405290126800537,-0.468158036470413,-0.847618043422699,-0.036600723862648,-0.529342889785767,-0.882714807987213,0.0405290126800537,-0.468158036470413,-0.872421443462372,0.0617952346801758,-0.48483207821846,-0.913952529430389,0.0611736662685871,-0.401183903217316,-0.954322636127472,-0.195281744003296,-0.226126596331596,-0.961473047733307,-0.145574524998665,-0.233189418911934,-0.944121539592743,-0.117563910782337,-0.307917535305023,-0.944121539592743,-0.117563910782337,-0.307917535305023,-0.955065906047821,-0.0658253505825996,-0.288991510868073,-0.912753105163574,-0.0733456909656525,-0.401873201131821,-0.874602377414703,-0.0213809087872505,-0.484369099140167,-0.873904764652252,-0.0285371486097574,-0.485258668661118,-0.912753105163574,-0.0733456909656525,-0.401873201131821,-0.942709147930145,-0.310536295175552,-0.121928580105305,-0.959163248538971,-0.218610912561417,-0.179485753178597,-0.954322636127472,-0.195281744003296,-0.226126596331596,-0.913952529430389,0.0611736662685871,-0.401183903217316,-0.872421443462372,0.0617952346801758,-0.48483207821846,-0.936267375946045,0.0756526216864586,-0.343045145273209,-0.897919416427612,0.132237523794174,-0.419826000928879,-0.936267375946045,0.0756526216864586,-0.343045145273209,-0.872421443462372,0.0617952346801758,-0.48483207821846,-0.897919416427612,0.132237523794174,-0.419826000928879,-0.847318768501282,0.0586599558591843,-0.527835011482239,-0.841582179069519,0.059849314391613,-0.536802887916565,-0.782495677471161,0.183667376637459,-0.594950973987579,-0.824582040309906,0.234596684575081,-0.514809370040894,-0.841582179069519,0.059849314391613,-0.536802887916565,-0.726539850234985,0.250395864248276,-0.639876246452332,-0.753660321235657,0.270008504390717,-0.599242329597473,-0.782495677471161,0.183667376637459,-0.594950973987579,-0.726539850234985,0.250395864248276,-0.639876246452332, +-0.706555426120758,0.245748177170753,-0.663616597652435,-0.703393757343292,0.277155101299286,-0.654539585113525,-0.586869120597839,0.319565564393997,-0.743950486183167,-0.636031031608582,0.28202748298645,-0.718279123306274,-0.580302953720093,0.230412721633911,-0.781126320362091,-0.636031031608582,0.28202748298645,-0.718279123306274,-0.65611869096756,0.313667774200439,-0.686382293701172,-0.658674836158752,0.269181936979294,-0.702629625797272,-0.658674836158752,0.269181936979294,-0.702629625797272,-0.703393757343292,0.277155101299286,-0.654539585113525,-0.706555426120758,0.245748177170753,-0.663616597652435,-0.561447203159332,0.0332085601985455,-0.82684588432312,-0.553211271762848,0.113332115113735,-0.825295686721802,-0.666650831699371,0.0913587883114815,-0.73974996805191,-0.457937061786652,0.0339878164231777,-0.888334631919861,-0.561447203159332,0.0332085601985455,-0.82684588432312,-0.448940217494965,0.0722252801060677,-0.890637993812561,-0.448940217494965,0.0722252801060677,-0.890637993812561,-0.368223428726196,0.0838856250047684,-0.925945222377777,-0.457937061786652,0.0339878164231777,-0.888334631919861,-0.304223835468292,0.163419604301453,-0.938478410243988,-0.39017590880394,0.195742979645729,-0.899692893028259,-0.368223428726196,0.0838856250047684,-0.925945222377777,-0.304223835468292,0.163419604301453,-0.938478410243988,-0.28885218501091,0.169307589530945,-0.942284047603607,-0.39017590880394,0.195742979645729,-0.899692893028259,-0.636031031608582,0.28202748298645,-0.718279123306274,-0.647590398788452,0.196725323796272,-0.736156046390533,-0.580302953720093,0.230412721633911,-0.781126320362091,-0.553211271762848,0.113332115113735,-0.825295686721802,-0.647590398788452,0.196725323796272,-0.736156046390533,-0.666650831699371,0.0913587883114815,-0.73974996805191,-0.304223835468292,0.163419604301453,-0.938478410243988,-0.255562961101532,0.145187392830849,-0.955828487873077,-0.28885218501091,0.169307589530945,-0.942284047603607,-0.198316976428032,0.0343213975429535,-0.979536771774292,-0.189368456602097,0.135976031422615,-0.972445368766785, +-0.255562961101532,0.145187392830849,-0.955828487873077,-0.60611093044281,-0.78818690776825,0.10672752559185,-0.615803182125092,-0.769678115844727,0.168469190597534,-0.638798594474792,-0.760182499885559,0.118569791316986,-0.638798594474792,-0.760182499885559,0.118569791316986,-0.807590782642365,-0.582777559757233,0.0903738215565681,-0.767215669155121,-0.639140427112579,0.0536594800651073,-0.942709147930145,-0.310536295175552,-0.121928580105305,-0.865862429141998,-0.498093485832214,-0.0467438101768494,-0.933639526367188,-0.352304935455322,-0.0647953674197197,-0.876282215118408,-0.48155277967453,0.0153739657253027,-0.865862429141998,-0.498093485832214,-0.0467438101768494,-0.767215669155121,-0.639140427112579,0.0536594800651073,-0.837940514087677,0.00894537195563316,-0.545688152313232,-0.847618043422699,-0.036600723862648,-0.529342889785767,-0.874602377414703,-0.0213809087872505,-0.484369099140167,-0.882714807987213,0.0405290126800537,-0.468158036470413,-0.840222775936127,-0.0303929224610329,-0.54138857126236,-0.872421443462372,0.0617952346801758,-0.48483207821846,-0.840222775936127,-0.0303929224610329,-0.54138857126236,-0.847618043422699,-0.036600723862648,-0.529342889785767,-0.837940514087677,0.00894537195563316,-0.545688152313232,-0.954322636127472,-0.195281744003296,-0.226126596331596,-0.959163248538971,-0.218610912561417,-0.179485753178597,-0.961473047733307,-0.145574524998665,-0.233189418911934,-0.944121539592743,-0.117563910782337,-0.307917535305023,-0.961473047733307,-0.145574524998665,-0.233189418911934,-0.955065906047821,-0.0658253505825996,-0.288991510868073,-0.912753105163574,-0.0733456909656525,-0.401873201131821,-0.955065906047821,-0.0658253505825996,-0.288991510868073,-0.942868947982788,0.000426789774792269,-0.333163380622864,-0.874602377414703,-0.0213809087872505,-0.484369099140167,-0.912753105163574,-0.0733456909656525,-0.401873201131821,-0.942868947982788,0.000426789774792269,-0.333163380622864,-0.942709147930145,-0.310536295175552,-0.121928580105305,-0.952553629875183,-0.275797784328461,-0.128752142190933, +-0.959163248538971,-0.218610912561417,-0.179485753178597,-0.847318768501282,0.0586599558591843,-0.527835011482239,-0.897919416427612,0.132237523794174,-0.419826000928879,-0.872421443462372,0.0617952346801758,-0.48483207821846,-0.841582179069519,0.059849314391613,-0.536802887916565,-0.847318768501282,0.0586599558591843,-0.527835011482239,-0.84727942943573,0.07542335242033,-0.525764882564545,-0.782495677471161,0.183667376637459,-0.594950973987579,-0.841582179069519,0.059849314391613,-0.536802887916565,-0.766734421253204,0.133254423737526,-0.627982079982758,-0.726539850234985,0.250395864248276,-0.639876246452332,-0.782495677471161,0.183667376637459,-0.594950973987579,-0.766734421253204,0.133254423737526,-0.627982079982758,-0.706555426120758,0.245748177170753,-0.663616597652435,-0.726539850234985,0.250395864248276,-0.639876246452332,-0.760378837585449,0.270485460758209,-0.590475618839264,-0.636031031608582,0.28202748298645,-0.718279123306274,-0.658674836158752,0.269181936979294,-0.702629625797272,-0.624453246593475,0.299994498491287,-0.721152722835541,-0.658674836158752,0.269181936979294,-0.702629625797272,-0.706555426120758,0.245748177170753,-0.663616597652435,-0.650392413139343,0.296321749687195,-0.699416160583496,-0.666650831699371,0.0913587883114815,-0.73974996805191,-0.696393370628357,0.0794676318764687,-0.713246762752533,-0.561447203159332,0.0332085601985455,-0.82684588432312,-0.588023006916046,0.118493303656578,-0.800117552280426,-0.448940217494965,0.0722252801060677,-0.890637993812561,-0.561447203159332,0.0332085601985455,-0.82684588432312,-0.335748136043549,-0.00119506998453289,-0.941950976848602,-0.368223428726196,0.0838856250047684,-0.925945222377777,-0.448940217494965,0.0722252801060677,-0.890637993812561,-0.276597023010254,0.0217190608382225,-0.960740447044373,-0.304223835468292,0.163419604301453,-0.938478410243988,-0.368223428726196,0.0838856250047684,-0.925945222377777,-0.636031031608582,0.28202748298645,-0.718279123306274,-0.666239500045776,0.277733534574509,-0.692090213298798,-0.647590398788452,0.196725323796272,-0.736156046390533, +-0.71174681186676,0.195062279701233,-0.674808859825134,-0.666650831699371,0.0913587883114815,-0.73974996805191,-0.647590398788452,0.196725323796272,-0.736156046390533,-0.255562961101532,0.145187392830849,-0.955828487873077,-0.304223835468292,0.163419604301453,-0.938478410243988,-0.276597023010254,0.0217190608382225,-0.960740447044373,-0.276597023010254,0.0217190608382225,-0.960740447044373,-0.198316976428032,0.0343213975429535,-0.979536771774292,-0.255562961101532,0.145187392830849,-0.955828487873077,-0.638798594474792,-0.760182499885559,0.118569791316986,-0.615803182125092,-0.769678115844727,0.168469190597534,-0.608868300914764,-0.755570590496063,0.241645351052284,-0.638798594474792,-0.760182499885559,0.118569791316986,-0.688621938228607,-0.708518147468567,0.154278099536896,-0.807590782642365,-0.582777559757233,0.0903738215565681,-0.876282215118408,-0.48155277967453,0.0153739657253027,-0.767215669155121,-0.639140427112579,0.0536594800651073,-0.807590782642365,-0.582777559757233,0.0903738215565681,-0.876282215118408,-0.48155277967453,0.0153739657253027,-0.933639526367188,-0.352304935455322,-0.0647953674197197,-0.865862429141998,-0.498093485832214,-0.0467438101768494,-0.942709147930145,-0.310536295175552,-0.121928580105305,-0.933639526367188,-0.352304935455322,-0.0647953674197197,-0.952553629875183,-0.275797784328461,-0.128752142190933,-0.874602377414703,-0.0213809087872505,-0.484369099140167,-0.878725290298462,0.0981084406375885,-0.467136412858963,-0.837940514087677,0.00894537195563316,-0.545688152313232,-0.872421443462372,0.0617952346801758,-0.48483207821846,-0.840222775936127,-0.0303929224610329,-0.54138857126236,-0.837940514087677,0.00894537195563316,-0.545688152313232,-0.959163248538971,-0.218610912561417,-0.179485753178597,-0.959231853485107,-0.227846100926399,-0.167213261127472,-0.961473047733307,-0.145574524998665,-0.233189418911934,-0.9816734790802,-0.0327998176217079,-0.187726706266403,-0.955065906047821,-0.0658253505825996,-0.288991510868073,-0.961473047733307,-0.145574524998665,-0.233189418911934,-0.976470589637756,0.0400920882821083,-0.211890816688538, +-0.942868947982788,0.000426789774792269,-0.333163380622864,-0.955065906047821,-0.0658253505825996,-0.288991510868073,-0.924719989299774,0.0969454869627953,-0.368095755577087,-0.874602377414703,-0.0213809087872505,-0.484369099140167,-0.942868947982788,0.000426789774792269,-0.333163380622864,-0.959231853485107,-0.227846100926399,-0.167213261127472,-0.959163248538971,-0.218610912561417,-0.179485753178597,-0.952553629875183,-0.275797784328461,-0.128752142190933,-0.847318768501282,0.0586599558591843,-0.527835011482239,-0.872421443462372,0.0617952346801758,-0.48483207821846,-0.835845828056335,0.111159645020962,-0.537592053413391,-0.84727942943573,0.07542335242033,-0.525764882564545,-0.847318768501282,0.0586599558591843,-0.527835011482239,-0.874537765979767,0.0494651719927788,-0.482427984476089,-0.84727942943573,0.07542335242033,-0.525764882564545,-0.766734421253204,0.133254423737526,-0.627982079982758,-0.841582179069519,0.059849314391613,-0.536802887916565,-0.779445171356201,0.302528470754623,-0.548581421375275,-0.726539850234985,0.250395864248276,-0.639876246452332,-0.766734421253204,0.133254423737526,-0.627982079982758,-0.756629407405853,0.352677911520004,-0.550572514533997,-0.760378837585449,0.270485460758209,-0.590475618839264,-0.726539850234985,0.250395864248276,-0.639876246452332,-0.760378837585449,0.270485460758209,-0.590475618839264,-0.779349863529205,0.259846329689026,-0.570169687271118,-0.706555426120758,0.245748177170753,-0.663616597652435,-0.624453246593475,0.299994498491287,-0.721152722835541,-0.658674836158752,0.269181936979294,-0.702629625797272,-0.650392413139343,0.296321749687195,-0.699416160583496,-0.666239500045776,0.277733534574509,-0.692090213298798,-0.636031031608582,0.28202748298645,-0.718279123306274,-0.624453246593475,0.299994498491287,-0.721152722835541,-0.650392413139343,0.296321749687195,-0.699416160583496,-0.706555426120758,0.245748177170753,-0.663616597652435,-0.779349863529205,0.259846329689026,-0.570169687271118,-0.666650831699371,0.0913587883114815,-0.73974996805191,-0.775032162666321,0.122800596058369,-0.619875013828278, +-0.696393370628357,0.0794676318764687,-0.713246762752533,-0.588023006916046,0.118493303656578,-0.800117552280426,-0.561447203159332,0.0332085601985455,-0.82684588432312,-0.696393370628357,0.0794676318764687,-0.713246762752533,-0.588023006916046,0.118493303656578,-0.800117552280426,-0.54071456193924,0.230437949299812,-0.809027791023254,-0.448940217494965,0.0722252801060677,-0.890637993812561,-0.276597023010254,0.0217190608382225,-0.960740447044373,-0.368223428726196,0.0838856250047684,-0.925945222377777,-0.335748136043549,-0.00119506998453289,-0.941950976848602,-0.335748136043549,-0.00119506998453289,-0.941950976848602,-0.448940217494965,0.0722252801060677,-0.890637993812561,-0.422847837209702,0.0786271914839745,-0.902783155441284,-0.647590398788452,0.196725323796272,-0.736156046390533,-0.666239500045776,0.277733534574509,-0.692090213298798,-0.71174681186676,0.195062279701233,-0.674808859825134,-0.71174681186676,0.195062279701233,-0.674808859825134,-0.775032162666321,0.122800596058369,-0.619875013828278,-0.666650831699371,0.0913587883114815,-0.73974996805191,-0.26747527718544,-0.206456437706947,-0.941186845302582,-0.198316976428032,0.0343213975429535,-0.979536771774292,-0.276597023010254,0.0217190608382225,-0.960740447044373,-0.688621938228607,-0.708518147468567,0.154278099536896,-0.638798594474792,-0.760182499885559,0.118569791316986,-0.608868300914764,-0.755570590496063,0.241645351052284,-0.807590782642365,-0.582777559757233,0.0903738215565681,-0.688621938228607,-0.708518147468567,0.154278099536896,-0.744803071022034,-0.635968267917633,0.202021285891533,-0.876282215118408,-0.48155277967453,0.0153739657253027,-0.807590782642365,-0.582777559757233,0.0903738215565681,-0.924053847789764,-0.381935209035873,0.0158095471560955,-0.876282215118408,-0.48155277967453,0.0153739657253027,-0.924053847789764,-0.381935209035873,0.0158095471560955,-0.933639526367188,-0.352304935455322,-0.0647953674197197,-0.952553629875183,-0.275797784328461,-0.128752142190933,-0.933639526367188,-0.352304935455322,-0.0647953674197197,-0.959951102733612,-0.266691774129868,-0.0858449563384056, +-0.874602377414703,-0.0213809087872505,-0.484369099140167,-0.924719989299774,0.0969454869627953,-0.368095755577087,-0.878725290298462,0.0981084406375885,-0.467136412858963,-0.837940514087677,0.00894537195563316,-0.545688152313232,-0.878725290298462,0.0981084406375885,-0.467136412858963,-0.835845828056335,0.111159645020962,-0.537592053413391,-0.872421443462372,0.0617952346801758,-0.48483207821846,-0.837940514087677,0.00894537195563316,-0.545688152313232,-0.835845828056335,0.111159645020962,-0.537592053413391,-0.974448204040527,-0.154443427920341,-0.163088217377663,-0.961473047733307,-0.145574524998665,-0.233189418911934,-0.959231853485107,-0.227846100926399,-0.167213261127472,-0.976470589637756,0.0400920882821083,-0.211890816688538,-0.955065906047821,-0.0658253505825996,-0.288991510868073,-0.9816734790802,-0.0327998176217079,-0.187726706266403,-0.974448204040527,-0.154443427920341,-0.163088217377663,-0.9816734790802,-0.0327998176217079,-0.187726706266403,-0.961473047733307,-0.145574524998665,-0.233189418911934,-0.976470589637756,0.0400920882821083,-0.211890816688538,-0.961506247520447,0.0933611243963242,-0.258436262607574,-0.942868947982788,0.000426789774792269,-0.333163380622864,-0.924719989299774,0.0969454869627953,-0.368095755577087,-0.942868947982788,0.000426789774792269,-0.333163380622864,-0.961506247520447,0.0933611243963242,-0.258436262607574,-0.959231853485107,-0.227846100926399,-0.167213261127472,-0.952553629875183,-0.275797784328461,-0.128752142190933,-0.959951102733612,-0.266691774129868,-0.0858449563384056,-0.835845828056335,0.111159645020962,-0.537592053413391,-0.846982479095459,0.108669370412827,-0.520395517349243,-0.847318768501282,0.0586599558591843,-0.527835011482239,-0.846982479095459,0.108669370412827,-0.520395517349243,-0.874537765979767,0.0494651719927788,-0.482427984476089,-0.847318768501282,0.0586599558591843,-0.527835011482239,-0.916255235671997,0.14671503007412,-0.372761189937592,-0.84727942943573,0.07542335242033,-0.525764882564545,-0.874537765979767,0.0494651719927788,-0.482427984476089,-0.84727942943573,0.07542335242033,-0.525764882564545, +-0.779445171356201,0.302528470754623,-0.548581421375275,-0.766734421253204,0.133254423737526,-0.627982079982758,-0.779445171356201,0.302528470754623,-0.548581421375275,-0.756629407405853,0.352677911520004,-0.550572514533997,-0.726539850234985,0.250395864248276,-0.639876246452332,-0.756629407405853,0.352677911520004,-0.550572514533997,-0.828271687030792,0.297514706850052,-0.474816620349884,-0.760378837585449,0.270485460758209,-0.590475618839264,-0.760378837585449,0.270485460758209,-0.590475618839264,-0.828271687030792,0.297514706850052,-0.474816620349884,-0.779349863529205,0.259846329689026,-0.570169687271118,-0.624453246593475,0.299994498491287,-0.721152722835541,-0.650392413139343,0.296321749687195,-0.699416160583496,-0.626015901565552,0.363566100597382,-0.689872145652771,-0.626015901565552,0.363566100597382,-0.689872145652771,-0.666239500045776,0.277733534574509,-0.692090213298798,-0.624453246593475,0.299994498491287,-0.721152722835541,-0.650392413139343,0.296321749687195,-0.699416160583496,-0.779349863529205,0.259846329689026,-0.570169687271118,-0.68465781211853,0.414424508810043,-0.599579691886902,-0.795484840869904,0.171404406428337,-0.581226587295532,-0.696393370628357,0.0794676318764687,-0.713246762752533,-0.775032162666321,0.122800596058369,-0.619875013828278,-0.588023006916046,0.118493303656578,-0.800117552280426,-0.696393370628357,0.0794676318764687,-0.713246762752533,-0.671020925045013,0.212713330984116,-0.71027022600174,-0.588023006916046,0.118493303656578,-0.800117552280426,-0.671020925045013,0.212713330984116,-0.71027022600174,-0.54071456193924,0.230437949299812,-0.809027791023254,-0.448940217494965,0.0722252801060677,-0.890637993812561,-0.54071456193924,0.230437949299812,-0.809027791023254,-0.47452101111412,0.179707512259483,-0.861704647541046,-0.335748136043549,-0.00119506998453289,-0.941950976848602,-0.313534259796143,-0.0874018594622612,-0.94554591178894,-0.276597023010254,0.0217190608382225,-0.960740447044373,-0.47452101111412,0.179707512259483,-0.861704647541046,-0.422847837209702,0.0786271914839745,-0.902783155441284, +-0.448940217494965,0.0722252801060677,-0.890637993812561,-0.422847837209702,0.0786271914839745,-0.902783155441284,-0.492739230394363,-0.100018449127674,-0.864409744739532,-0.335748136043549,-0.00119506998453289,-0.941950976848602,-0.746439337730408,0.251123130321503,-0.616250991821289,-0.71174681186676,0.195062279701233,-0.674808859825134,-0.666239500045776,0.277733534574509,-0.692090213298798,-0.746439337730408,0.251123130321503,-0.616250991821289,-0.775032162666321,0.122800596058369,-0.619875013828278,-0.71174681186676,0.195062279701233,-0.674808859825134,-0.26747527718544,-0.206456437706947,-0.941186845302582,-0.134363085031509,-0.216802775859833,-0.966924548149109,-0.198316976428032,0.0343213975429535,-0.979536771774292,-0.26747527718544,-0.206456437706947,-0.941186845302582,-0.276597023010254,0.0217190608382225,-0.960740447044373,-0.313534259796143,-0.0874018594622612,-0.94554591178894,-0.688621938228607,-0.708518147468567,0.154278099536896,-0.608868300914764,-0.755570590496063,0.241645351052284,-0.744803071022034,-0.635968267917633,0.202021285891533,-0.807590782642365,-0.582777559757233,0.0903738215565681,-0.744803071022034,-0.635968267917633,0.202021285891533,-0.865427553653717,-0.485506027936935,0.123769447207451,-0.924053847789764,-0.381935209035873,0.0158095471560955,-0.807590782642365,-0.582777559757233,0.0903738215565681,-0.865427553653717,-0.485506027936935,0.123769447207451,-0.924053847789764,-0.381935209035873,0.0158095471560955,-0.959951102733612,-0.266691774129868,-0.0858449563384056,-0.933639526367188,-0.352304935455322,-0.0647953674197197,-0.878725290298462,0.0981084406375885,-0.467136412858963,-0.924719989299774,0.0969454869627953,-0.368095755577087,-0.925961554050446,0.142966225743294,-0.34950789809227,-0.846982479095459,0.108669370412827,-0.520395517349243,-0.835845828056335,0.111159645020962,-0.537592053413391,-0.878725290298462,0.0981084406375885,-0.467136412858963,-0.974448204040527,-0.154443427920341,-0.163088217377663,-0.959231853485107,-0.227846100926399,-0.167213261127472,-0.959951102733612,-0.266691774129868,-0.0858449563384056, +-0.9816734790802,-0.0327998176217079,-0.187726706266403,-0.983574569225311,0.0565484724938869,-0.171415522694588,-0.976470589637756,0.0400920882821083,-0.211890816688538,-0.986415266990662,-0.142391860485077,-0.081910528242588,-0.9816734790802,-0.0327998176217079,-0.187726706266403,-0.974448204040527,-0.154443427920341,-0.163088217377663,-0.976270020008087,0.0974341854453087,-0.193399608135223,-0.961506247520447,0.0933611243963242,-0.258436262607574,-0.976470589637756,0.0400920882821083,-0.211890816688538,-0.950430929660797,0.168757498264313,-0.261154800653458,-0.924719989299774,0.0969454869627953,-0.368095755577087,-0.961506247520447,0.0933611243963242,-0.258436262607574,-0.901627838611603,0.125260517001152,-0.413977026939392,-0.874537765979767,0.0494651719927788,-0.482427984476089,-0.846982479095459,0.108669370412827,-0.520395517349243,-0.84727942943573,0.07542335242033,-0.525764882564545,-0.916255235671997,0.14671503007412,-0.372761189937592,-0.874545037746429,0.278226375579834,-0.397191345691681,-0.901627838611603,0.125260517001152,-0.413977026939392,-0.916255235671997,0.14671503007412,-0.372761189937592,-0.874537765979767,0.0494651719927788,-0.482427984476089,-0.874545037746429,0.278226375579834,-0.397191345691681,-0.779445171356201,0.302528470754623,-0.548581421375275,-0.84727942943573,0.07542335242033,-0.525764882564545,-0.756629407405853,0.352677911520004,-0.550572514533997,-0.779445171356201,0.302528470754623,-0.548581421375275,-0.780808687210083,0.423260450363159,-0.459552049636841,-0.828271687030792,0.297514706850052,-0.474816620349884,-0.756629407405853,0.352677911520004,-0.550572514533997,-0.847705125808716,0.365103960037231,-0.384831249713898,-0.836179137229919,0.349280446767807,-0.422856450080872,-0.779349863529205,0.259846329689026,-0.570169687271118,-0.828271687030792,0.297514706850052,-0.474816620349884,-0.650392413139343,0.296321749687195,-0.699416160583496,-0.68465781211853,0.414424508810043,-0.599579691886902,-0.626015901565552,0.363566100597382,-0.689872145652771,-0.746439337730408,0.251123130321503,-0.616250991821289, +-0.666239500045776,0.277733534574509,-0.692090213298798,-0.626015901565552,0.363566100597382,-0.689872145652771,-0.836179137229919,0.349280446767807,-0.422856450080872,-0.68465781211853,0.414424508810043,-0.599579691886902,-0.779349863529205,0.259846329689026,-0.570169687271118,-0.795484840869904,0.171404406428337,-0.581226587295532,-0.671020925045013,0.212713330984116,-0.71027022600174,-0.696393370628357,0.0794676318764687,-0.713246762752533,-0.775032162666321,0.122800596058369,-0.619875013828278,-0.839148759841919,0.172052949666977,-0.515971899032593,-0.795484840869904,0.171404406428337,-0.581226587295532,-0.671020925045013,0.212713330984116,-0.71027022600174,-0.617100477218628,0.255994409322739,-0.744079113006592,-0.54071456193924,0.230437949299812,-0.809027791023254,-0.556539714336395,0.231997117400169,-0.797772347927094,-0.47452101111412,0.179707512259483,-0.861704647541046,-0.54071456193924,0.230437949299812,-0.809027791023254,-0.335748136043549,-0.00119506998453289,-0.941950976848602,-0.492739230394363,-0.100018449127674,-0.864409744739532,-0.313534259796143,-0.0874018594622612,-0.94554591178894,-0.47452101111412,0.179707512259483,-0.861704647541046,-0.614948034286499,0.0135632585734129,-0.78845089673996,-0.422847837209702,0.0786271914839745,-0.902783155441284,-0.422847837209702,0.0786271914839745,-0.902783155441284,-0.614948034286499,0.0135632585734129,-0.78845089673996,-0.492739230394363,-0.100018449127674,-0.864409744739532,-0.746439337730408,0.251123130321503,-0.616250991821289,-0.839148759841919,0.172052949666977,-0.515971899032593,-0.775032162666321,0.122800596058369,-0.619875013828278,-0.134363085031509,-0.216802775859833,-0.966924548149109,-0.26747527718544,-0.206456437706947,-0.941186845302582,-0.229749068617821,-0.540937960147858,-0.809074461460114,-0.26747527718544,-0.206456437706947,-0.941186845302582,-0.313534259796143,-0.0874018594622612,-0.94554591178894,-0.388349682092667,-0.268967986106873,-0.881385624408722,-0.694850444793701,-0.668721854686737,0.264563649892807,-0.744803071022034,-0.635968267917633,0.202021285891533, +-0.608868300914764,-0.755570590496063,0.241645351052284,-0.865427553653717,-0.485506027936935,0.123769447207451,-0.744803071022034,-0.635968267917633,0.202021285891533,-0.792716920375824,-0.562423884868622,0.235115095973015,-0.924053847789764,-0.381935209035873,0.0158095471560955,-0.865427553653717,-0.485506027936935,0.123769447207451,-0.913574814796448,-0.391461968421936,0.110174730420113,-0.961938917636871,-0.273157387971878,-0.00764920935034752,-0.959951102733612,-0.266691774129868,-0.0858449563384056,-0.924053847789764,-0.381935209035873,0.0158095471560955,-0.950430929660797,0.168757498264313,-0.261154800653458,-0.925961554050446,0.142966225743294,-0.34950789809227,-0.924719989299774,0.0969454869627953,-0.368095755577087,-0.878725290298462,0.0981084406375885,-0.467136412858963,-0.925961554050446,0.142966225743294,-0.34950789809227,-0.92243480682373,0.185279533267021,-0.338799923658371,-0.878725290298462,0.0981084406375885,-0.467136412858963,-0.901627838611603,0.125260517001152,-0.413977026939392,-0.846982479095459,0.108669370412827,-0.520395517349243,-0.986415266990662,-0.142391860485077,-0.081910528242588,-0.974448204040527,-0.154443427920341,-0.163088217377663,-0.959951102733612,-0.266691774129868,-0.0858449563384056,-0.992866218090057,-0.0472893640398979,-0.109453439712524,-0.983574569225311,0.0565484724938869,-0.171415522694588,-0.9816734790802,-0.0327998176217079,-0.187726706266403,-0.976270020008087,0.0974341854453087,-0.193399608135223,-0.976470589637756,0.0400920882821083,-0.211890816688538,-0.983574569225311,0.0565484724938869,-0.171415522694588,-0.992866218090057,-0.0472893640398979,-0.109453439712524,-0.9816734790802,-0.0327998176217079,-0.187726706266403,-0.986415266990662,-0.142391860485077,-0.081910528242588,-0.976270020008087,0.0974341854453087,-0.193399608135223,-0.966968834400177,0.147799476981163,-0.207669302821159,-0.961506247520447,0.0933611243963242,-0.258436262607574,-0.950430929660797,0.168757498264313,-0.261154800653458,-0.961506247520447,0.0933611243963242,-0.258436262607574,-0.966968834400177,0.147799476981163,-0.207669302821159, +-0.874545037746429,0.278226375579834,-0.397191345691681,-0.916255235671997,0.14671503007412,-0.372761189937592,-0.907988846302032,0.327265858650208,-0.261635631322861,-0.901627838611603,0.125260517001152,-0.413977026939392,-0.925883412361145,0.246250137686729,-0.28653210401535,-0.916255235671997,0.14671503007412,-0.372761189937592,-0.874545037746429,0.278226375579834,-0.397191345691681,-0.828309535980225,0.453530669212341,-0.328957766294479,-0.779445171356201,0.302528470754623,-0.548581421375275,-0.779445171356201,0.302528470754623,-0.548581421375275,-0.828309535980225,0.453530669212341,-0.328957766294479,-0.780808687210083,0.423260450363159,-0.459552049636841,-0.847705125808716,0.365103960037231,-0.384831249713898,-0.756629407405853,0.352677911520004,-0.550572514533997,-0.780808687210083,0.423260450363159,-0.459552049636841,-0.836179137229919,0.349280446767807,-0.422856450080872,-0.828271687030792,0.297514706850052,-0.474816620349884,-0.847705125808716,0.365103960037231,-0.384831249713898,-0.712329745292664,0.356151461601257,-0.604766309261322,-0.626015901565552,0.363566100597382,-0.689872145652771,-0.68465781211853,0.414424508810043,-0.599579691886902,-0.746439337730408,0.251123130321503,-0.616250991821289,-0.626015901565552,0.363566100597382,-0.689872145652771,-0.741117298603058,0.272567182779312,-0.613556921482086,-0.836179137229919,0.349280446767807,-0.422856450080872,-0.743590116500854,0.478591173887253,-0.466930598020554,-0.68465781211853,0.414424508810043,-0.599579691886902,-0.795484840869904,0.171404406428337,-0.581226587295532,-0.726635813713074,0.219126954674721,-0.651140213012695,-0.671020925045013,0.212713330984116,-0.71027022600174,-0.795484840869904,0.171404406428337,-0.581226587295532,-0.839148759841919,0.172052949666977,-0.515971899032593,-0.84991192817688,0.127630770206451,-0.511233747005463,-0.671020925045013,0.212713330984116,-0.71027022600174,-0.726635813713074,0.219126954674721,-0.651140213012695,-0.617100477218628,0.255994409322739,-0.744079113006592,-0.556539714336395,0.231997117400169,-0.797772347927094, +-0.54071456193924,0.230437949299812,-0.809027791023254,-0.617100477218628,0.255994409322739,-0.744079113006592,-0.47452101111412,0.179707512259483,-0.861704647541046,-0.556539714336395,0.231997117400169,-0.797772347927094,-0.614948034286499,0.0135632585734129,-0.78845089673996,-0.388349682092667,-0.268967986106873,-0.881385624408722,-0.313534259796143,-0.0874018594622612,-0.94554591178894,-0.492739230394363,-0.100018449127674,-0.864409744739532,-0.690409064292908,-0.274831056594849,-0.669180870056152,-0.492739230394363,-0.100018449127674,-0.864409744739532,-0.614948034286499,0.0135632585734129,-0.78845089673996,-0.83528208732605,0.17869833111763,-0.519971668720245,-0.839148759841919,0.172052949666977,-0.515971899032593,-0.746439337730408,0.251123130321503,-0.616250991821289,-0.38706761598587,-0.43967404961586,-0.810472249984741,-0.229749068617821,-0.540937960147858,-0.809074461460114,-0.26747527718544,-0.206456437706947,-0.941186845302582,-0.388349682092667,-0.268967986106873,-0.881385624408722,-0.38706761598587,-0.43967404961586,-0.810472249984741,-0.26747527718544,-0.206456437706947,-0.941186845302582,-0.694850444793701,-0.668721854686737,0.264563649892807,-0.792716920375824,-0.562423884868622,0.235115095973015,-0.744803071022034,-0.635968267917633,0.202021285891533,-0.694850444793701,-0.668721854686737,0.264563649892807,-0.608868300914764,-0.755570590496063,0.241645351052284,-0.633143723011017,-0.720825433731079,0.282027572393417,-0.865427553653717,-0.485506027936935,0.123769447207451,-0.792716920375824,-0.562423884868622,0.235115095973015,-0.913574814796448,-0.391461968421936,0.110174730420113,-0.961938917636871,-0.273157387971878,-0.00764920935034752,-0.924053847789764,-0.381935209035873,0.0158095471560955,-0.913574814796448,-0.391461968421936,0.110174730420113,-0.961938917636871,-0.273157387971878,-0.00764920935034752,-0.986415266990662,-0.142391860485077,-0.081910528242588,-0.959951102733612,-0.266691774129868,-0.0858449563384056,-0.933638870716095,0.254806280136108,-0.25177788734436,-0.925961554050446,0.142966225743294,-0.34950789809227, +-0.950430929660797,0.168757498264313,-0.261154800653458,-0.92243480682373,0.185279533267021,-0.338799923658371,-0.925961554050446,0.142966225743294,-0.34950789809227,-0.933638870716095,0.254806280136108,-0.25177788734436,-0.901627838611603,0.125260517001152,-0.413977026939392,-0.878725290298462,0.0981084406375885,-0.467136412858963,-0.92243480682373,0.185279533267021,-0.338799923658371,-0.983574569225311,0.0565484724938869,-0.171415522694588,-0.992866218090057,-0.0472893640398979,-0.109453439712524,-0.989532709121704,0.0464880913496017,-0.136615633964539,-0.976270020008087,0.0974341854453087,-0.193399608135223,-0.983574569225311,0.0565484724938869,-0.171415522694588,-0.97896820306778,0.122087933123112,-0.163449421525002,-0.986415266990662,-0.142391860485077,-0.081910528242588,-0.985367596149445,-0.170012503862381,-0.0120959617197514,-0.992866218090057,-0.0472893640398979,-0.109453439712524,-0.966968834400177,0.147799476981163,-0.207669302821159,-0.976270020008087,0.0974341854453087,-0.193399608135223,-0.972472250461578,0.166999414563179,-0.162507742643356,-0.967178523540497,0.199948713183403,-0.156799733638763,-0.950430929660797,0.168757498264313,-0.261154800653458,-0.966968834400177,0.147799476981163,-0.207669302821159,-0.907988846302032,0.327265858650208,-0.261635631322861,-0.916255235671997,0.14671503007412,-0.372761189937592,-0.925883412361145,0.246250137686729,-0.28653210401535,-0.874545037746429,0.278226375579834,-0.397191345691681,-0.907988846302032,0.327265858650208,-0.261635631322861,-0.828309535980225,0.453530669212341,-0.328957766294479,-0.901627838611603,0.125260517001152,-0.413977026939392,-0.92243480682373,0.185279533267021,-0.338799923658371,-0.925883412361145,0.246250137686729,-0.28653210401535,-0.780808687210083,0.423260450363159,-0.459552049636841,-0.828309535980225,0.453530669212341,-0.328957766294479,-0.846980810165405,0.426129698753357,-0.317862987518311,-0.847705125808716,0.365103960037231,-0.384831249713898,-0.780808687210083,0.423260450363159,-0.459552049636841,-0.846980810165405,0.426129698753357,-0.317862987518311, +-0.847705125808716,0.365103960037231,-0.384831249713898,-0.846835136413574,0.428349316120148,-0.315256953239441,-0.836179137229919,0.349280446767807,-0.422856450080872,-0.712329745292664,0.356151461601257,-0.604766309261322,-0.741117298603058,0.272567182779312,-0.613556921482086,-0.626015901565552,0.363566100597382,-0.689872145652771,-0.744589686393738,0.460185348987579,-0.483544707298279,-0.712329745292664,0.356151461601257,-0.604766309261322,-0.68465781211853,0.414424508810043,-0.599579691886902,-0.746439337730408,0.251123130321503,-0.616250991821289,-0.741117298603058,0.272567182779312,-0.613556921482086,-0.83528208732605,0.17869833111763,-0.519971668720245,-0.836179137229919,0.349280446767807,-0.422856450080872,-0.846835136413574,0.428349316120148,-0.315256953239441,-0.743590116500854,0.478591173887253,-0.466930598020554,-0.744589686393738,0.460185348987579,-0.483544707298279,-0.68465781211853,0.414424508810043,-0.599579691886902,-0.743590116500854,0.478591173887253,-0.466930598020554,-0.795484840869904,0.171404406428337,-0.581226587295532,-0.797243118286133,0.158883705735207,-0.582373857498169,-0.726635813713074,0.219126954674721,-0.651140213012695,-0.83528208732605,0.17869833111763,-0.519971668720245,-0.84991192817688,0.127630770206451,-0.511233747005463,-0.839148759841919,0.172052949666977,-0.515971899032593,-0.797243118286133,0.158883705735207,-0.582373857498169,-0.795484840869904,0.171404406428337,-0.581226587295532,-0.84991192817688,0.127630770206451,-0.511233747005463,-0.726635813713074,0.219126954674721,-0.651140213012695,-0.728878438472748,0.200672194361687,-0.654573678970337,-0.617100477218628,0.255994409322739,-0.744079113006592,-0.556539714336395,0.231997117400169,-0.797772347927094,-0.617100477218628,0.255994409322739,-0.744079113006592,-0.627749383449554,0.196688055992126,-0.753156244754791,-0.614948034286499,0.0135632585734129,-0.78845089673996,-0.556539714336395,0.231997117400169,-0.797772347927094,-0.696617782115936,0.00753487646579742,-0.717402756214142,-0.601824223995209,-0.436562806367874,-0.668745338916779, +-0.388349682092667,-0.268967986106873,-0.881385624408722,-0.492739230394363,-0.100018449127674,-0.864409744739532,-0.492739230394363,-0.100018449127674,-0.864409744739532,-0.690409064292908,-0.274831056594849,-0.669180870056152,-0.601824223995209,-0.436562806367874,-0.668745338916779,-0.690409064292908,-0.274831056594849,-0.669180870056152,-0.614948034286499,0.0135632585734129,-0.78845089673996,-0.787171959877014,-0.348653137683868,-0.508724987506866,-0.38706761598587,-0.43967404961586,-0.810472249984741,-0.487674444913864,-0.71401447057724,-0.5023512840271,-0.229749068617821,-0.540937960147858,-0.809074461460114,-0.38706761598587,-0.43967404961586,-0.810472249984741,-0.388349682092667,-0.268967986106873,-0.881385624408722,-0.601824223995209,-0.436562806367874,-0.668745338916779,-0.718601405620575,-0.635046601295471,0.283421337604523,-0.792716920375824,-0.562423884868622,0.235115095973015,-0.694850444793701,-0.668721854686737,0.264563649892807,-0.694850444793701,-0.668721854686737,0.264563649892807,-0.633143723011017,-0.720825433731079,0.282027572393417,-0.718601405620575,-0.635046601295471,0.283421337604523,-0.836249589920044,-0.488314986228943,0.249469384551048,-0.913574814796448,-0.391461968421936,0.110174730420113,-0.792716920375824,-0.562423884868622,0.235115095973015,-0.961938917636871,-0.273157387971878,-0.00764920935034752,-0.913574814796448,-0.391461968421936,0.110174730420113,-0.967096269130707,-0.247286185622215,0.0597857907414436,-0.985367596149445,-0.170012503862381,-0.0120959617197514,-0.986415266990662,-0.142391860485077,-0.081910528242588,-0.961938917636871,-0.273157387971878,-0.00764920935034752,-0.933638870716095,0.254806280136108,-0.25177788734436,-0.950430929660797,0.168757498264313,-0.261154800653458,-0.941488265991211,0.29791384935379,-0.157629504799843,-0.914500772953033,0.334215313196182,-0.22800949215889,-0.92243480682373,0.185279533267021,-0.338799923658371,-0.933638870716095,0.254806280136108,-0.25177788734436,-0.989532709121704,0.0464880913496017,-0.136615633964539,-0.992866218090057,-0.0472893640398979,-0.109453439712524, +-0.996132791042328,-0.0711166337132454,-0.0515925064682961,-0.983574569225311,0.0565484724938869,-0.171415522694588,-0.989532709121704,0.0464880913496017,-0.136615633964539,-0.97896820306778,0.122087933123112,-0.163449421525002,-0.972472250461578,0.166999414563179,-0.162507742643356,-0.976270020008087,0.0974341854453087,-0.193399608135223,-0.97896820306778,0.122087933123112,-0.163449421525002,-0.992866218090057,-0.0472893640398979,-0.109453439712524,-0.985367596149445,-0.170012503862381,-0.0120959617197514,-0.996132791042328,-0.0711166337132454,-0.0515925064682961,-0.966968834400177,0.147799476981163,-0.207669302821159,-0.972472250461578,0.166999414563179,-0.162507742643356,-0.967642247676849,0.212549328804016,-0.135982230305672,-0.967178523540497,0.199948713183403,-0.156799733638763,-0.941488265991211,0.29791384935379,-0.157629504799843,-0.950430929660797,0.168757498264313,-0.261154800653458,-0.966968834400177,0.147799476981163,-0.207669302821159,-0.967642247676849,0.212549328804016,-0.135982230305672,-0.967178523540497,0.199948713183403,-0.156799733638763,-0.907988846302032,0.327265858650208,-0.261635631322861,-0.925883412361145,0.246250137686729,-0.28653210401535,-0.900423049926758,0.392755508422852,-0.187033012509346,-0.828309535980225,0.453530669212341,-0.328957766294479,-0.907988846302032,0.327265858650208,-0.261635631322861,-0.863938868045807,0.471084982156754,-0.178012728691101,-0.925883412361145,0.246250137686729,-0.28653210401535,-0.92243480682373,0.185279533267021,-0.338799923658371,-0.914500772953033,0.334215313196182,-0.22800949215889,-0.828309535980225,0.453530669212341,-0.328957766294479,-0.859616100788116,0.455028057098389,-0.232399433851242,-0.846980810165405,0.426129698753357,-0.317862987518311,-0.847705125808716,0.365103960037231,-0.384831249713898,-0.846980810165405,0.426129698753357,-0.317862987518311,-0.846835136413574,0.428349316120148,-0.315256953239441,-0.712329745292664,0.356151461601257,-0.604766309261322,-0.829612135887146,0.119464851915836,-0.545409679412842,-0.741117298603058,0.272567182779312,-0.613556921482086, +-0.712329745292664,0.356151461601257,-0.604766309261322,-0.744589686393738,0.460185348987579,-0.483544707298279,-0.830092191696167,0.214996710419655,-0.514512598514557,-0.829612135887146,0.119464851915836,-0.545409679412842,-0.83528208732605,0.17869833111763,-0.519971668720245,-0.741117298603058,0.272567182779312,-0.613556921482086,-0.743590116500854,0.478591173887253,-0.466930598020554,-0.846835136413574,0.428349316120148,-0.315256953239441,-0.744589686393738,0.460185348987579,-0.483544707298279,-0.726635813713074,0.219126954674721,-0.651140213012695,-0.797243118286133,0.158883705735207,-0.582373857498169,-0.728878438472748,0.200672194361687,-0.654573678970337,-0.829612135887146,0.119464851915836,-0.545409679412842,-0.84991192817688,0.127630770206451,-0.511233747005463,-0.83528208732605,0.17869833111763,-0.519971668720245,-0.813536822795868,0.14073134958744,-0.564227223396301,-0.797243118286133,0.158883705735207,-0.582373857498169,-0.84991192817688,0.127630770206451,-0.511233747005463,-0.674601256847382,0.229614943265915,-0.701562523841858,-0.617100477218628,0.255994409322739,-0.744079113006592,-0.728878438472748,0.200672194361687,-0.654573678970337,-0.674601256847382,0.229614943265915,-0.701562523841858,-0.627749383449554,0.196688055992126,-0.753156244754791,-0.617100477218628,0.255994409322739,-0.744079113006592,-0.556539714336395,0.231997117400169,-0.797772347927094,-0.627749383449554,0.196688055992126,-0.753156244754791,-0.696617782115936,0.00753487646579742,-0.717402756214142,-0.614948034286499,0.0135632585734129,-0.78845089673996,-0.696617782115936,0.00753487646579742,-0.717402756214142,-0.773383557796478,-0.168004468083382,-0.611271023750305,-0.601824223995209,-0.436562806367874,-0.668745338916779,-0.690409064292908,-0.274831056594849,-0.669180870056152,-0.756174743175507,-0.485858529806137,-0.438339024782181,-0.787171959877014,-0.348653137683868,-0.508724987506866,-0.614948034286499,0.0135632585734129,-0.78845089673996,-0.773383557796478,-0.168004468083382,-0.611271023750305,-0.690409064292908,-0.274831056594849,-0.669180870056152, +-0.787171959877014,-0.348653137683868,-0.508724987506866,-0.756174743175507,-0.485858529806137,-0.438339024782181,-0.601824223995209,-0.436562806367874,-0.668745338916779,-0.487674444913864,-0.71401447057724,-0.5023512840271,-0.38706761598587,-0.43967404961586,-0.810472249984741,-0.487674444913864,-0.71401447057724,-0.5023512840271,-0.269685178995132,-0.797865033149719,-0.539148509502411,-0.229749068617821,-0.540937960147858,-0.809074461460114,-0.836249589920044,-0.488314986228943,0.249469384551048,-0.792716920375824,-0.562423884868622,0.235115095973015,-0.718601405620575,-0.635046601295471,0.283421337604523,-0.836249589920044,-0.488314986228943,0.249469384551048,-0.922705471515656,-0.343195647001266,0.175587683916092,-0.913574814796448,-0.391461968421936,0.110174730420113,-0.967096269130707,-0.247286185622215,0.0597857907414436,-0.913574814796448,-0.391461968421936,0.110174730420113,-0.922705471515656,-0.343195647001266,0.175587683916092,-0.985367596149445,-0.170012503862381,-0.0120959617197514,-0.961938917636871,-0.273157387971878,-0.00764920935034752,-0.967096269130707,-0.247286185622215,0.0597857907414436,-0.933638870716095,0.254806280136108,-0.25177788734436,-0.941488265991211,0.29791384935379,-0.157629504799843,-0.896097838878632,0.422040373086929,-0.137442469596863,-0.914500772953033,0.334215313196182,-0.22800949215889,-0.933638870716095,0.254806280136108,-0.25177788734436,-0.896097838878632,0.422040373086929,-0.137442469596863,-0.996132791042328,-0.0711166337132454,-0.0515925064682961,-0.998775124549866,0.046981792896986,-0.0155220041051507,-0.989532709121704,0.0464880913496017,-0.136615633964539,-0.986236453056335,0.137000486254692,-0.0925655961036682,-0.97896820306778,0.122087933123112,-0.163449421525002,-0.989532709121704,0.0464880913496017,-0.136615633964539,-0.976630926132202,0.193388015031815,-0.0937712788581848,-0.972472250461578,0.166999414563179,-0.162507742643356,-0.97896820306778,0.122087933123112,-0.163449421525002,-0.985367596149445,-0.170012503862381,-0.0120959617197514,-0.988328754901886,-0.150460451841354,0.023828562349081, +-0.996132791042328,-0.0711166337132454,-0.0515925064682961,-0.967642247676849,0.212549328804016,-0.135982230305672,-0.972472250461578,0.166999414563179,-0.162507742643356,-0.960077464580536,0.243679061532021,-0.137374013662338,-0.941488265991211,0.29791384935379,-0.157629504799843,-0.967178523540497,0.199948713183403,-0.156799733638763,-0.961562991142273,0.265617042779922,-0.0695999339222908,-0.967642247676849,0.212549328804016,-0.135982230305672,-0.961562991142273,0.265617042779922,-0.0695999339222908,-0.967178523540497,0.199948713183403,-0.156799733638763,-0.925883412361145,0.246250137686729,-0.28653210401535,-0.914500772953033,0.334215313196182,-0.22800949215889,-0.900423049926758,0.392755508422852,-0.187033012509346,-0.907988846302032,0.327265858650208,-0.261635631322861,-0.900423049926758,0.392755508422852,-0.187033012509346,-0.863938868045807,0.471084982156754,-0.178012728691101,-0.828309535980225,0.453530669212341,-0.328957766294479,-0.863938868045807,0.471084982156754,-0.178012728691101,-0.838950455188751,0.510701596736908,-0.188005298376083,-0.828309535980225,0.453530669212341,-0.328957766294479,-0.838950455188751,0.510701596736908,-0.188005298376083,-0.859616100788116,0.455028057098389,-0.232399433851242,-0.859616100788116,0.455028057098389,-0.232399433851242,-0.884917378425598,0.373373210430145,-0.278412520885468,-0.846980810165405,0.426129698753357,-0.317862987518311,-0.846835136413574,0.428349316120148,-0.315256953239441,-0.846980810165405,0.426129698753357,-0.317862987518311,-0.884917378425598,0.373373210430145,-0.278412520885468,-0.712329745292664,0.356151461601257,-0.604766309261322,-0.830092191696167,0.214996710419655,-0.514512598514557,-0.829612135887146,0.119464851915836,-0.545409679412842,-0.830092191696167,0.214996710419655,-0.514512598514557,-0.744589686393738,0.460185348987579,-0.483544707298279,-0.857795596122742,0.264787971973419,-0.440538167953491,-0.846835136413574,0.428349316120148,-0.315256953239441,-0.844147980213165,0.413117915391922,-0.341683566570282,-0.744589686393738,0.460185348987579,-0.483544707298279, +-0.813536822795868,0.14073134958744,-0.564227223396301,-0.728878438472748,0.200672194361687,-0.654573678970337,-0.797243118286133,0.158883705735207,-0.582373857498169,-0.829612135887146,0.119464851915836,-0.545409679412842,-0.813536822795868,0.14073134958744,-0.564227223396301,-0.84991192817688,0.127630770206451,-0.511233747005463,-0.674601256847382,0.229614943265915,-0.701562523841858,-0.728878438472748,0.200672194361687,-0.654573678970337,-0.730697810649872,0.26838943362236,-0.627732276916504,-0.627749383449554,0.196688055992126,-0.753156244754791,-0.674601256847382,0.229614943265915,-0.701562523841858,-0.791677594184875,-0.000419228366808966,-0.610938727855682,-0.627749383449554,0.196688055992126,-0.753156244754791,-0.791677594184875,-0.000419228366808966,-0.610938727855682,-0.696617782115936,0.00753487646579742,-0.717402756214142,-0.773383557796478,-0.168004468083382,-0.611271023750305,-0.696617782115936,0.00753487646579742,-0.717402756214142,-0.814261198043823,-0.287834465503693,-0.504112958908081,-0.601824223995209,-0.436562806367874,-0.668745338916779,-0.756174743175507,-0.485858529806137,-0.438339024782181,-0.719840347766876,-0.597749292850494,-0.352881878614426,-0.787171959877014,-0.348653137683868,-0.508724987506866,-0.773383557796478,-0.168004468083382,-0.611271023750305,-0.814261198043823,-0.287834465503693,-0.504112958908081,-0.756174743175507,-0.485858529806137,-0.438339024782181,-0.787171959877014,-0.348653137683868,-0.508724987506866,-0.79578423500061,-0.523807466030121,-0.303896635770798,-0.719840347766876,-0.597749292850494,-0.352881878614426,-0.487674444913864,-0.71401447057724,-0.5023512840271,-0.601824223995209,-0.436562806367874,-0.668745338916779,-0.487674444913864,-0.71401447057724,-0.5023512840271,-0.325141280889511,-0.890359461307526,-0.318658202886581,-0.269685178995132,-0.797865033149719,-0.539148509502411,-0.718601405620575,-0.635046601295471,0.283421337604523,-0.798175275325775,-0.509768307209015,0.32101759314537,-0.836249589920044,-0.488314986228943,0.249469384551048,-0.922705471515656,-0.343195647001266,0.175587683916092, +-0.836249589920044,-0.488314986228943,0.249469384551048,-0.86626410484314,-0.383763164281845,0.319862842559814,-0.967096269130707,-0.247286185622215,0.0597857907414436,-0.922705471515656,-0.343195647001266,0.175587683916092,-0.955403625965118,-0.245162770152092,0.16461780667305,-0.985367596149445,-0.170012503862381,-0.0120959617197514,-0.967096269130707,-0.247286185622215,0.0597857907414436,-0.988328754901886,-0.150460451841354,0.023828562349081,-0.912677884101868,0.403479188680649,-0.0649881660938263,-0.896097838878632,0.422040373086929,-0.137442469596863,-0.941488265991211,0.29791384935379,-0.157629504799843,-0.896097838878632,0.422040373086929,-0.137442469596863,-0.881420969963074,0.445895045995712,-0.15580290555954,-0.914500772953033,0.334215313196182,-0.22800949215889,-0.997554540634155,-0.0620499067008495,0.0321671850979328,-0.998775124549866,0.046981792896986,-0.0155220041051507,-0.996132791042328,-0.0711166337132454,-0.0515925064682961,-0.986236453056335,0.137000486254692,-0.0925655961036682,-0.989532709121704,0.0464880913496017,-0.136615633964539,-0.998775124549866,0.046981792896986,-0.0155220041051507,-0.986236453056335,0.137000486254692,-0.0925655961036682,-0.976630926132202,0.193388015031815,-0.0937712788581848,-0.97896820306778,0.122087933123112,-0.163449421525002,-0.976630926132202,0.193388015031815,-0.0937712788581848,-0.960077464580536,0.243679061532021,-0.137374013662338,-0.972472250461578,0.166999414563179,-0.162507742643356,-0.997554540634155,-0.0620499067008495,0.0321671850979328,-0.996132791042328,-0.0711166337132454,-0.0515925064682961,-0.988328754901886,-0.150460451841354,0.023828562349081,-0.960077464580536,0.243679061532021,-0.137374013662338,-0.953340351581573,0.280049055814743,-0.112758934497833,-0.967642247676849,0.212549328804016,-0.135982230305672,-0.941488265991211,0.29791384935379,-0.157629504799843,-0.961562991142273,0.265617042779922,-0.0695999339222908,-0.912677884101868,0.403479188680649,-0.0649881660938263,-0.967642247676849,0.212549328804016,-0.135982230305672,-0.953340351581573,0.280049055814743,-0.112758934497833, +-0.961562991142273,0.265617042779922,-0.0695999339222908,-0.881420969963074,0.445895045995712,-0.15580290555954,-0.900423049926758,0.392755508422852,-0.187033012509346,-0.914500772953033,0.334215313196182,-0.22800949215889,-0.867519795894623,0.473859637975693,-0.1512161642313,-0.863938868045807,0.471084982156754,-0.178012728691101,-0.900423049926758,0.392755508422852,-0.187033012509346,-0.863938868045807,0.471084982156754,-0.178012728691101,-0.863873898983002,0.473593682050705,-0.171553984284401,-0.838950455188751,0.510701596736908,-0.188005298376083,-0.859616100788116,0.455028057098389,-0.232399433851242,-0.838950455188751,0.510701596736908,-0.188005298376083,-0.884193956851959,0.417010605335236,-0.210482984781265,-0.901072919368744,0.355851233005524,-0.247865572571754,-0.884917378425598,0.373373210430145,-0.278412520885468,-0.859616100788116,0.455028057098389,-0.232399433851242,-0.884917378425598,0.373373210430145,-0.278412520885468,-0.844147980213165,0.413117915391922,-0.341683566570282,-0.846835136413574,0.428349316120148,-0.315256953239441,-0.830092191696167,0.214996710419655,-0.514512598514557,-0.8738734126091,0.078564316034317,-0.479763269424438,-0.829612135887146,0.119464851915836,-0.545409679412842,-0.857795596122742,0.264787971973419,-0.440538167953491,-0.744589686393738,0.460185348987579,-0.483544707298279,-0.844147980213165,0.413117915391922,-0.341683566570282,-0.857795596122742,0.264787971973419,-0.440538167953491,-0.878761768341064,0.122257813811302,-0.461335718631744,-0.830092191696167,0.214996710419655,-0.514512598514557,-0.728878438472748,0.200672194361687,-0.654573678970337,-0.813536822795868,0.14073134958744,-0.564227223396301,-0.730697810649872,0.26838943362236,-0.627732276916504,-0.813536822795868,0.14073134958744,-0.564227223396301,-0.829612135887146,0.119464851915836,-0.545409679412842,-0.85830819606781,0.0789754018187523,-0.507020473480225,-0.674601256847382,0.229614943265915,-0.701562523841858,-0.730697810649872,0.26838943362236,-0.627732276916504,-0.750862598419189,0.21888667345047,-0.623132288455963, +-0.794517815113068,0.124854557216167,-0.594266474246979,-0.791677594184875,-0.000419228366808966,-0.610938727855682,-0.674601256847382,0.229614943265915,-0.701562523841858,-0.696617782115936,0.00753487646579742,-0.717402756214142,-0.791677594184875,-0.000419228366808966,-0.610938727855682,-0.814261198043823,-0.287834465503693,-0.504112958908081,-0.719840347766876,-0.597749292850494,-0.352881878614426,-0.756174743175507,-0.485858529806137,-0.438339024782181,-0.79578423500061,-0.523807466030121,-0.303896635770798,-0.814261198043823,-0.287834465503693,-0.504112958908081,-0.90641850233078,-0.298255175352097,-0.299080640077591,-0.787171959877014,-0.348653137683868,-0.508724987506866,-0.787171959877014,-0.348653137683868,-0.508724987506866,-0.90641850233078,-0.298255175352097,-0.299080640077591,-0.79578423500061,-0.523807466030121,-0.303896635770798,-0.719840347766876,-0.597749292850494,-0.352881878614426,-0.710139811038971,-0.660676181316376,-0.243327140808105,-0.487674444913864,-0.71401447057724,-0.5023512840271,-0.325141280889511,-0.890359461307526,-0.318658202886581,-0.487674444913864,-0.71401447057724,-0.5023512840271,-0.523414552211761,-0.809582769870758,-0.265730679035187,-0.86626410484314,-0.383763164281845,0.319862842559814,-0.836249589920044,-0.488314986228943,0.249469384551048,-0.798175275325775,-0.509768307209015,0.32101759314537,-0.912330627441406,-0.291861593723297,0.287175178527832,-0.922705471515656,-0.343195647001266,0.175587683916092,-0.86626410484314,-0.383763164281845,0.319862842559814,-0.912330627441406,-0.291861593723297,0.287175178527832,-0.955403625965118,-0.245162770152092,0.16461780667305,-0.922705471515656,-0.343195647001266,0.175587683916092,-0.955403625965118,-0.245162770152092,0.16461780667305,-0.983271956443787,-0.132416158914566,0.125068575143814,-0.967096269130707,-0.247286185622215,0.0597857907414436,-0.967096269130707,-0.247286185622215,0.0597857907414436,-0.983271956443787,-0.132416158914566,0.125068575143814,-0.988328754901886,-0.150460451841354,0.023828562349081,-0.896097838878632,0.422040373086929,-0.137442469596863, +-0.912677884101868,0.403479188680649,-0.0649881660938263,-0.881798446178436,0.460618585348129,-0.101300850510597,-0.896097838878632,0.422040373086929,-0.137442469596863,-0.887209355831146,0.443666189908981,-0.126569494605064,-0.881420969963074,0.445895045995712,-0.15580290555954,-0.990861833095551,0.0301354136317968,0.131471067667007,-0.998775124549866,0.046981792896986,-0.0155220041051507,-0.997554540634155,-0.0620499067008495,0.0321671850979328,-0.986236453056335,0.137000486254692,-0.0925655961036682,-0.998775124549866,0.046981792896986,-0.0155220041051507,-0.988221883773804,0.146731570363045,0.0434430800378323,-0.986236453056335,0.137000486254692,-0.0925655961036682,-0.988221883773804,0.146731570363045,0.0434430800378323,-0.976630926132202,0.193388015031815,-0.0937712788581848,-0.976630926132202,0.193388015031815,-0.0937712788581848,-0.951499104499817,0.292440563440323,-0.095539428293705,-0.960077464580536,0.243679061532021,-0.137374013662338,-0.988328754901886,-0.150460451841354,0.023828562349081,-0.983271956443787,-0.132416158914566,0.125068575143814,-0.997554540634155,-0.0620499067008495,0.0321671850979328,-0.953340351581573,0.280049055814743,-0.112758934497833,-0.960077464580536,0.243679061532021,-0.137374013662338,-0.951499104499817,0.292440563440323,-0.095539428293705,-0.961562991142273,0.265617042779922,-0.0695999339222908,-0.932500720024109,0.351211309432983,-0.0842195674777031,-0.912677884101868,0.403479188680649,-0.0649881660938263,-0.961562991142273,0.265617042779922,-0.0695999339222908,-0.953340351581573,0.280049055814743,-0.112758934497833,-0.932500720024109,0.351211309432983,-0.0842195674777031,-0.881420969963074,0.445895045995712,-0.15580290555954,-0.867519795894623,0.473859637975693,-0.1512161642313,-0.900423049926758,0.392755508422852,-0.187033012509346,-0.867519795894623,0.473859637975693,-0.1512161642313,-0.863873898983002,0.473593682050705,-0.171553984284401,-0.863938868045807,0.471084982156754,-0.178012728691101,-0.884193956851959,0.417010605335236,-0.210482984781265,-0.838950455188751,0.510701596736908,-0.188005298376083, +-0.863873898983002,0.473593682050705,-0.171553984284401,-0.884193956851959,0.417010605335236,-0.210482984781265,-0.901072919368744,0.355851233005524,-0.247865572571754,-0.859616100788116,0.455028057098389,-0.232399433851242,-0.897382438182831,0.256597250699997,-0.358974158763886,-0.884917378425598,0.373373210430145,-0.278412520885468,-0.901072919368744,0.355851233005524,-0.247865572571754,-0.876578330993652,0.293457984924316,-0.381435185670853,-0.844147980213165,0.413117915391922,-0.341683566570282,-0.884917378425598,0.373373210430145,-0.278412520885468,-0.878761768341064,0.122257813811302,-0.461335718631744,-0.8738734126091,0.078564316034317,-0.479763269424438,-0.830092191696167,0.214996710419655,-0.514512598514557,-0.8738734126091,0.078564316034317,-0.479763269424438,-0.85830819606781,0.0789754018187523,-0.507020473480225,-0.829612135887146,0.119464851915836,-0.545409679412842,-0.857795596122742,0.264787971973419,-0.440538167953491,-0.844147980213165,0.413117915391922,-0.341683566570282,-0.862611055374146,0.217375203967094,-0.456782251596451,-0.857795596122742,0.264787971973419,-0.440538167953491,-0.896158516407013,0.0985836386680603,-0.432644307613373,-0.878761768341064,0.122257813811302,-0.461335718631744,-0.813536822795868,0.14073134958744,-0.564227223396301,-0.759290337562561,0.233869895339012,-0.607275068759918,-0.730697810649872,0.26838943362236,-0.627732276916504,-0.813536822795868,0.14073134958744,-0.564227223396301,-0.85830819606781,0.0789754018187523,-0.507020473480225,-0.831779778003693,0.131406530737877,-0.53932785987854,-0.804858565330505,0.292421996593475,-0.516422212123871,-0.750862598419189,0.21888667345047,-0.623132288455963,-0.730697810649872,0.26838943362236,-0.627732276916504,-0.674601256847382,0.229614943265915,-0.701562523841858,-0.750862598419189,0.21888667345047,-0.623132288455963,-0.794517815113068,0.124854557216167,-0.594266474246979,-0.791677594184875,-0.000419228366808966,-0.610938727855682,-0.794517815113068,0.124854557216167,-0.594266474246979,-0.904558837413788,-0.0479606278240681,-0.423642456531525, +-0.897130131721497,-0.197432607412338,-0.395193368196487,-0.814261198043823,-0.287834465503693,-0.504112958908081,-0.791677594184875,-0.000419228366808966,-0.610938727855682,-0.793010592460632,-0.559091627597809,-0.241972595453262,-0.719840347766876,-0.597749292850494,-0.352881878614426,-0.79578423500061,-0.523807466030121,-0.303896635770798,-0.897130131721497,-0.197432607412338,-0.395193368196487,-0.90641850233078,-0.298255175352097,-0.299080640077591,-0.814261198043823,-0.287834465503693,-0.504112958908081,-0.914619207382202,-0.353149563074112,-0.196867942810059,-0.79578423500061,-0.523807466030121,-0.303896635770798,-0.90641850233078,-0.298255175352097,-0.299080640077591,-0.793010592460632,-0.559091627597809,-0.241972595453262,-0.710139811038971,-0.660676181316376,-0.243327140808105,-0.719840347766876,-0.597749292850494,-0.352881878614426,-0.487674444913864,-0.71401447057724,-0.5023512840271,-0.710139811038971,-0.660676181316376,-0.243327140808105,-0.523414552211761,-0.809582769870758,-0.265730679035187,-0.342332065105438,-0.905113399028778,-0.252147674560547,-0.325141280889511,-0.890359461307526,-0.318658202886581,-0.523414552211761,-0.809582769870758,-0.265730679035187,-0.86626410484314,-0.383763164281845,0.319862842559814,-0.798175275325775,-0.509768307209015,0.32101759314537,-0.882231712341309,-0.384362518787384,0.271905452013016,-0.86626410484314,-0.383763164281845,0.319862842559814,-0.898401260375977,-0.284646242856979,0.334442168474197,-0.912330627441406,-0.291861593723297,0.287175178527832,-0.912330627441406,-0.291861593723297,0.287175178527832,-0.937962174415588,-0.174183398485184,0.299811601638794,-0.955403625965118,-0.245162770152092,0.16461780667305,-0.937962174415588,-0.174183398485184,0.299811601638794,-0.983271956443787,-0.132416158914566,0.125068575143814,-0.955403625965118,-0.245162770152092,0.16461780667305,-0.912677884101868,0.403479188680649,-0.0649881660938263,-0.902660489082336,0.426464527845383,-0.0577229484915733,-0.881798446178436,0.460618585348129,-0.101300850510597,-0.877891063690186,0.468573480844498,-0.0987221747636795, +-0.896097838878632,0.422040373086929,-0.137442469596863,-0.881798446178436,0.460618585348129,-0.101300850510597,-0.896097838878632,0.422040373086929,-0.137442469596863,-0.877891063690186,0.468573480844498,-0.0987221747636795,-0.887209355831146,0.443666189908981,-0.126569494605064,-0.881420969963074,0.445895045995712,-0.15580290555954,-0.887209355831146,0.443666189908981,-0.126569494605064,-0.867519795894623,0.473859637975693,-0.1512161642313,-0.990861833095551,0.0301354136317968,0.131471067667007,-0.988221883773804,0.146731570363045,0.0434430800378323,-0.998775124549866,0.046981792896986,-0.0155220041051507,-0.983271956443787,-0.132416158914566,0.125068575143814,-0.990861833095551,0.0301354136317968,0.131471067667007,-0.997554540634155,-0.0620499067008495,0.0321671850979328,-0.976630926132202,0.193388015031815,-0.0937712788581848,-0.988221883773804,0.146731570363045,0.0434430800378323,-0.974449932575226,0.22448992729187,-0.00718205980956554,-0.951499104499817,0.292440563440323,-0.095539428293705,-0.976630926132202,0.193388015031815,-0.0937712788581848,-0.974449932575226,0.22448992729187,-0.00718205980956554,-0.953340351581573,0.280049055814743,-0.112758934497833,-0.951499104499817,0.292440563440323,-0.095539428293705,-0.932500720024109,0.351211309432983,-0.0842195674777031,-0.902660489082336,0.426464527845383,-0.0577229484915733,-0.912677884101868,0.403479188680649,-0.0649881660938263,-0.932500720024109,0.351211309432983,-0.0842195674777031,-0.867519795894623,0.473859637975693,-0.1512161642313,-0.893257141113281,0.392857402563095,-0.218528479337692,-0.863873898983002,0.473593682050705,-0.171553984284401,-0.884193956851959,0.417010605335236,-0.210482984781265,-0.863873898983002,0.473593682050705,-0.171553984284401,-0.901295483112335,0.324658006429672,-0.286816120147705,-0.907938241958618,0.272937595844269,-0.318045765161514,-0.901072919368744,0.355851233005524,-0.247865572571754,-0.884193956851959,0.417010605335236,-0.210482984781265,-0.872866451740265,0.196496918797493,-0.446646422147751,-0.884917378425598,0.373373210430145,-0.278412520885468, +-0.897382438182831,0.256597250699997,-0.358974158763886,-0.907938241958618,0.272937595844269,-0.318045765161514,-0.897382438182831,0.256597250699997,-0.358974158763886,-0.901072919368744,0.355851233005524,-0.247865572571754,-0.876578330993652,0.293457984924316,-0.381435185670853,-0.862611055374146,0.217375203967094,-0.456782251596451,-0.844147980213165,0.413117915391922,-0.341683566570282,-0.876578330993652,0.293457984924316,-0.381435185670853,-0.884917378425598,0.373373210430145,-0.278412520885468,-0.872866451740265,0.196496918797493,-0.446646422147751,-0.8738734126091,0.078564316034317,-0.479763269424438,-0.878761768341064,0.122257813811302,-0.461335718631744,-0.896158516407013,0.0985836386680603,-0.432644307613373,-0.8738734126091,0.078564316034317,-0.479763269424438,-0.831779778003693,0.131406530737877,-0.53932785987854,-0.85830819606781,0.0789754018187523,-0.507020473480225,-0.869276702404022,0.0701465830206871,-0.489323377609253,-0.857795596122742,0.264787971973419,-0.440538167953491,-0.862611055374146,0.217375203967094,-0.456782251596451,-0.896158516407013,0.0985836386680603,-0.432644307613373,-0.857795596122742,0.264787971973419,-0.440538167953491,-0.869276702404022,0.0701465830206871,-0.489323377609253,-0.759290337562561,0.233869895339012,-0.607275068759918,-0.813536822795868,0.14073134958744,-0.564227223396301,-0.831779778003693,0.131406530737877,-0.53932785987854,-0.730697810649872,0.26838943362236,-0.627732276916504,-0.759290337562561,0.233869895339012,-0.607275068759918,-0.703711986541748,0.382640808820724,-0.598644554615021,-0.804858565330505,0.292421996593475,-0.516422212123871,-0.912554025650024,0.0783561840653419,-0.401379227638245,-0.750862598419189,0.21888667345047,-0.623132288455963,-0.804858565330505,0.292421996593475,-0.516422212123871,-0.730697810649872,0.26838943362236,-0.627732276916504,-0.703711986541748,0.382640808820724,-0.598644554615021,-0.794517815113068,0.124854557216167,-0.594266474246979,-0.750862598419189,0.21888667345047,-0.623132288455963,-0.912554025650024,0.0783561840653419,-0.401379227638245, +-0.794517815113068,0.124854557216167,-0.594266474246979,-0.912554025650024,0.0783561840653419,-0.401379227638245,-0.904558837413788,-0.0479606278240681,-0.423642456531525,-0.791677594184875,-0.000419228366808966,-0.610938727855682,-0.904558837413788,-0.0479606278240681,-0.423642456531525,-0.897130131721497,-0.197432607412338,-0.395193368196487,-0.793010592460632,-0.559091627597809,-0.241972595453262,-0.79578423500061,-0.523807466030121,-0.303896635770798,-0.857821643352509,-0.453846961259842,-0.241173848509789,-0.897130131721497,-0.197432607412338,-0.395193368196487,-0.933131217956543,-0.0716436356306076,-0.352325528860092,-0.90641850233078,-0.298255175352097,-0.299080640077591,-0.914619207382202,-0.353149563074112,-0.196867942810059,-0.857821643352509,-0.453846961259842,-0.241173848509789,-0.79578423500061,-0.523807466030121,-0.303896635770798,-0.914619207382202,-0.353149563074112,-0.196867942810059,-0.90641850233078,-0.298255175352097,-0.299080640077591,-0.991125285625458,0.0155693599954247,-0.132016032934189,-0.710139811038971,-0.660676181316376,-0.243327140808105,-0.793010592460632,-0.559091627597809,-0.241972595453262,-0.779409050941467,-0.585645854473114,-0.222576394677162,-0.523414552211761,-0.809582769870758,-0.265730679035187,-0.710139811038971,-0.660676181316376,-0.243327140808105,-0.653445422649384,-0.715004563331604,-0.248550653457642,-0.523414552211761,-0.809582769870758,-0.265730679035187,-0.653445422649384,-0.715004563331604,-0.248550653457642,-0.342332065105438,-0.905113399028778,-0.252147674560547,-0.86626410484314,-0.383763164281845,0.319862842559814,-0.882231712341309,-0.384362518787384,0.271905452013016,-0.898401260375977,-0.284646242856979,0.334442168474197,-0.912330627441406,-0.291861593723297,0.287175178527832,-0.898401260375977,-0.284646242856979,0.334442168474197,-0.937962174415588,-0.174183398485184,0.299811601638794,-0.937962174415588,-0.174183398485184,0.299811601638794,-0.967060565948486,-0.0217852275818586,0.25361242890358,-0.983271956443787,-0.132416158914566,0.125068575143814,-0.902660489082336,0.426464527845383,-0.0577229484915733, +-0.933872103691101,0.340713739395142,-0.108613528311253,-0.881798446178436,0.460618585348129,-0.101300850510597,-0.917776525020599,0.373868614435196,-0.133821979165077,-0.877891063690186,0.468573480844498,-0.0987221747636795,-0.881798446178436,0.460618585348129,-0.101300850510597,-0.877891063690186,0.468573480844498,-0.0987221747636795,-0.917776525020599,0.373868614435196,-0.133821979165077,-0.887209355831146,0.443666189908981,-0.126569494605064,-0.887209355831146,0.443666189908981,-0.126569494605064,-0.893257141113281,0.392857402563095,-0.218528479337692,-0.867519795894623,0.473859637975693,-0.1512161642313,-0.970989644527435,0.155899941921234,0.181311845779419,-0.988221883773804,0.146731570363045,0.0434430800378323,-0.990861833095551,0.0301354136317968,0.131471067667007,-0.990861833095551,0.0301354136317968,0.131471067667007,-0.983271956443787,-0.132416158914566,0.125068575143814,-0.967060565948486,-0.0217852275818586,0.25361242890358,-0.988221883773804,0.146731570363045,0.0434430800378323,-0.964459776878357,0.236554071307182,0.117726020514965,-0.974449932575226,0.22448992729187,-0.00718205980956554,-0.974449932575226,0.22448992729187,-0.00718205980956554,-0.947799563407898,0.314916610717773,0.050034124404192,-0.951499104499817,0.292440563440323,-0.095539428293705,-0.923226177692413,0.377206474542618,-0.073270782828331,-0.932500720024109,0.351211309432983,-0.0842195674777031,-0.951499104499817,0.292440563440323,-0.095539428293705,-0.902660489082336,0.426464527845383,-0.0577229484915733,-0.932500720024109,0.351211309432983,-0.0842195674777031,-0.923226177692413,0.377206474542618,-0.073270782828331,-0.893257141113281,0.392857402563095,-0.218528479337692,-0.901295483112335,0.324658006429672,-0.286816120147705,-0.863873898983002,0.473593682050705,-0.171553984284401,-0.907938241958618,0.272937595844269,-0.318045765161514,-0.884193956851959,0.417010605335236,-0.210482984781265,-0.901295483112335,0.324658006429672,-0.286816120147705,-0.897382438182831,0.256597250699997,-0.358974158763886,-0.872878432273865,0.0609751231968403,-0.484112709760666, +-0.872866451740265,0.196496918797493,-0.446646422147751,-0.907938241958618,0.272937595844269,-0.318045765161514,-0.894730985164642,0.145719915628433,-0.422163635492325,-0.897382438182831,0.256597250699997,-0.358974158763886,-0.862611055374146,0.217375203967094,-0.456782251596451,-0.876578330993652,0.293457984924316,-0.381435185670853,-0.831010222434998,0.051106546074152,-0.553904294967651,-0.876578330993652,0.293457984924316,-0.381435185670853,-0.872866451740265,0.196496918797493,-0.446646422147751,-0.831010222434998,0.051106546074152,-0.553904294967651,-0.8738734126091,0.078564316034317,-0.479763269424438,-0.896158516407013,0.0985836386680603,-0.432644307613373,-0.865568876266479,-0.0307136308401823,-0.499847024679184,-0.8738734126091,0.078564316034317,-0.479763269424438,-0.830479681491852,0.0140059618279338,-0.5568727850914,-0.831779778003693,0.131406530737877,-0.53932785987854,-0.869276702404022,0.0701465830206871,-0.489323377609253,-0.862611055374146,0.217375203967094,-0.456782251596451,-0.804808259010315,-0.0537147372961044,-0.591099202632904,-0.896158516407013,0.0985836386680603,-0.432644307613373,-0.869276702404022,0.0701465830206871,-0.489323377609253,-0.865568876266479,-0.0307136308401823,-0.499847024679184,-0.770369470119476,0.121943831443787,-0.625827789306641,-0.759290337562561,0.233869895339012,-0.607275068759918,-0.831779778003693,0.131406530737877,-0.53932785987854,-0.685735881328583,0.353696793317795,-0.636132597923279,-0.703711986541748,0.382640808820724,-0.598644554615021,-0.759290337562561,0.233869895339012,-0.607275068759918,-0.950042068958282,0.171459585428238,-0.260809600353241,-0.912554025650024,0.0783561840653419,-0.401379227638245,-0.804858565330505,0.292421996593475,-0.516422212123871,-0.804858565330505,0.292421996593475,-0.516422212123871,-0.703711986541748,0.382640808820724,-0.598644554615021,-0.692806422710419,0.522170424461365,-0.497350096702576,-0.912554025650024,0.0783561840653419,-0.401379227638245,-0.933131217956543,-0.0716436356306076,-0.352325528860092,-0.904558837413788,-0.0479606278240681,-0.423642456531525, +-0.933131217956543,-0.0716436356306076,-0.352325528860092,-0.897130131721497,-0.197432607412338,-0.395193368196487,-0.904558837413788,-0.0479606278240681,-0.423642456531525,-0.935165107250214,-0.323900759220123,-0.143368408083916,-0.793010592460632,-0.559091627597809,-0.241972595453262,-0.857821643352509,-0.453846961259842,-0.241173848509789,-0.933131217956543,-0.0716436356306076,-0.352325528860092,-0.959817349910736,0.0232877675443888,-0.279657453298569,-0.90641850233078,-0.298255175352097,-0.299080640077591,-0.914619207382202,-0.353149563074112,-0.196867942810059,-0.977699100971222,-0.126745045185089,-0.167451575398445,-0.857821643352509,-0.453846961259842,-0.241173848509789,-0.991125285625458,0.0155693599954247,-0.132016032934189,-0.90641850233078,-0.298255175352097,-0.299080640077591,-0.959817349910736,0.0232877675443888,-0.279657453298569,-0.977699100971222,-0.126745045185089,-0.167451575398445,-0.914619207382202,-0.353149563074112,-0.196867942810059,-0.991125285625458,0.0155693599954247,-0.132016032934189,-0.901303112506866,-0.409041196107864,-0.142610847949982,-0.779409050941467,-0.585645854473114,-0.222576394677162,-0.793010592460632,-0.559091627597809,-0.241972595453262,-0.710139811038971,-0.660676181316376,-0.243327140808105,-0.779409050941467,-0.585645854473114,-0.222576394677162,-0.653445422649384,-0.715004563331604,-0.248550653457642,-0.342332065105438,-0.905113399028778,-0.252147674560547,-0.653445422649384,-0.715004563331604,-0.248550653457642,-0.610628485679626,-0.750958800315857,-0.251383304595947,-0.954124748706818,-0.265357881784439,0.138676434755325,-0.898401260375977,-0.284646242856979,0.334442168474197,-0.882231712341309,-0.384362518787384,0.271905452013016,-0.898401260375977,-0.284646242856979,0.334442168474197,-0.94942182302475,-0.185368105769157,0.253449678421021,-0.937962174415588,-0.174183398485184,0.299811601638794,-0.967060565948486,-0.0217852275818586,0.25361242890358,-0.937962174415588,-0.174183398485184,0.299811601638794,-0.962740659713745,-0.0927864462137222,0.254009664058685,-0.95492947101593,0.294602632522583,-0.0363161750137806, +-0.933872103691101,0.340713739395142,-0.108613528311253,-0.902660489082336,0.426464527845383,-0.0577229484915733,-0.933872103691101,0.340713739395142,-0.108613528311253,-0.935131311416626,0.318033456802368,-0.156153947114944,-0.881798446178436,0.460618585348129,-0.101300850510597,-0.935131311416626,0.318033456802368,-0.156153947114944,-0.917776525020599,0.373868614435196,-0.133821979165077,-0.881798446178436,0.460618585348129,-0.101300850510597,-0.887209355831146,0.443666189908981,-0.126569494605064,-0.917776525020599,0.373868614435196,-0.133821979165077,-0.941094219684601,0.271845877170563,-0.201100215315819,-0.887209355831146,0.443666189908981,-0.126569494605064,-0.941094219684601,0.271845877170563,-0.201100215315819,-0.893257141113281,0.392857402563095,-0.218528479337692,-0.988221883773804,0.146731570363045,0.0434430800378323,-0.970989644527435,0.155899941921234,0.181311845779419,-0.964459776878357,0.236554071307182,0.117726020514965,-0.970989644527435,0.155899941921234,0.181311845779419,-0.990861833095551,0.0301354136317968,0.131471067667007,-0.967539012432098,0.0885045453906059,0.236717447638512,-0.967060565948486,-0.0217852275818586,0.25361242890358,-0.967539012432098,0.0885045453906059,0.236717447638512,-0.990861833095551,0.0301354136317968,0.131471067667007,-0.947799563407898,0.314916610717773,0.050034124404192,-0.974449932575226,0.22448992729187,-0.00718205980956554,-0.964459776878357,0.236554071307182,0.117726020514965,-0.951499104499817,0.292440563440323,-0.095539428293705,-0.947799563407898,0.314916610717773,0.050034124404192,-0.923226177692413,0.377206474542618,-0.073270782828331,-0.923226177692413,0.377206474542618,-0.073270782828331,-0.899248540401459,0.437365710735321,0.00795301608741283,-0.902660489082336,0.426464527845383,-0.0577229484915733,-0.901295483112335,0.324658006429672,-0.286816120147705,-0.893257141113281,0.392857402563095,-0.218528479337692,-0.928163468837738,0.193595975637436,-0.317856967449188,-0.907938241958618,0.272937595844269,-0.318045765161514,-0.901295483112335,0.324658006429672,-0.286816120147705, +-0.90241003036499,0.170854985713959,-0.395556032657623,-0.897382438182831,0.256597250699997,-0.358974158763886,-0.894730985164642,0.145719915628433,-0.422163635492325,-0.872878432273865,0.0609751231968403,-0.484112709760666,-0.797380805015564,-0.0960555523633957,-0.595782697200775,-0.872866451740265,0.196496918797493,-0.446646422147751,-0.872878432273865,0.0609751231968403,-0.484112709760666,-0.907938241958618,0.272937595844269,-0.318045765161514,-0.90241003036499,0.170854985713959,-0.395556032657623,-0.894730985164642,0.145719915628433,-0.422163635492325,-0.831010222434998,0.051106546074152,-0.553904294967651,-0.804808259010315,-0.0537147372961044,-0.591099202632904,-0.862611055374146,0.217375203967094,-0.456782251596451,-0.831010222434998,0.051106546074152,-0.553904294967651,-0.872866451740265,0.196496918797493,-0.446646422147751,-0.797380805015564,-0.0960555523633957,-0.595782697200775,-0.865568876266479,-0.0307136308401823,-0.499847024679184,-0.830479681491852,0.0140059618279338,-0.5568727850914,-0.8738734126091,0.078564316034317,-0.479763269424438,-0.770369470119476,0.121943831443787,-0.625827789306641,-0.831779778003693,0.131406530737877,-0.53932785987854,-0.830479681491852,0.0140059618279338,-0.5568727850914,-0.865568876266479,-0.0307136308401823,-0.499847024679184,-0.869276702404022,0.0701465830206871,-0.489323377609253,-0.804808259010315,-0.0537147372961044,-0.591099202632904,-0.770369470119476,0.121943831443787,-0.625827789306641,-0.685735881328583,0.353696793317795,-0.636132597923279,-0.759290337562561,0.233869895339012,-0.607275068759918,-0.685735881328583,0.353696793317795,-0.636132597923279,-0.606659471988678,0.583886563777924,-0.53948175907135,-0.703711986541748,0.382640808820724,-0.598644554615021,-0.912554025650024,0.0783561840653419,-0.401379227638245,-0.950042068958282,0.171459585428238,-0.260809600353241,-0.967224180698395,0.0492593571543694,-0.249099507927895,-0.950042068958282,0.171459585428238,-0.260809600353241,-0.804858565330505,0.292421996593475,-0.516422212123871,-0.877088308334351,0.359795600175858,-0.318218618631363, +-0.692806422710419,0.522170424461365,-0.497350096702576,-0.703711986541748,0.382640808820724,-0.598644554615021,-0.606659471988678,0.583886563777924,-0.53948175907135,-0.777323842048645,0.452586442232132,-0.436958819627762,-0.804858565330505,0.292421996593475,-0.516422212123871,-0.692806422710419,0.522170424461365,-0.497350096702576,-0.912554025650024,0.0783561840653419,-0.401379227638245,-0.967224180698395,0.0492593571543694,-0.249099507927895,-0.933131217956543,-0.0716436356306076,-0.352325528860092,-0.935165107250214,-0.323900759220123,-0.143368408083916,-0.901303112506866,-0.409041196107864,-0.142610847949982,-0.793010592460632,-0.559091627597809,-0.241972595453262,-0.935165107250214,-0.323900759220123,-0.143368408083916,-0.857821643352509,-0.453846961259842,-0.241173848509789,-0.992205142974854,-0.0652028247714043,-0.106195613741875,-0.959817349910736,0.0232877675443888,-0.279657453298569,-0.933131217956543,-0.0716436356306076,-0.352325528860092,-0.919622659683228,0.00509665627032518,-0.39276984333992,-0.992205142974854,-0.0652028247714043,-0.106195613741875,-0.857821643352509,-0.453846961259842,-0.241173848509789,-0.977699100971222,-0.126745045185089,-0.167451575398445,-0.991125285625458,0.0155693599954247,-0.132016032934189,-0.959817349910736,0.0232877675443888,-0.279657453298569,-0.975093126296997,0.0729958042502403,-0.209439441561699,-0.977699100971222,-0.126745045185089,-0.167451575398445,-0.991125285625458,0.0155693599954247,-0.132016032934189,-0.986358106136322,0.129132777452469,-0.102089934051037,-0.901303112506866,-0.409041196107864,-0.142610847949982,-0.754329264163971,-0.622455537319183,-0.208653494715691,-0.779409050941467,-0.585645854473114,-0.222576394677162,-0.754329264163971,-0.622455537319183,-0.208653494715691,-0.653445422649384,-0.715004563331604,-0.248550653457642,-0.779409050941467,-0.585645854473114,-0.222576394677162,-0.610628485679626,-0.750958800315857,-0.251383304595947,-0.653445422649384,-0.715004563331604,-0.248550653457642,-0.754329264163971,-0.622455537319183,-0.208653494715691,-0.459643959999084,-0.860540568828583,-0.219538941979408, +-0.342332065105438,-0.905113399028778,-0.252147674560547,-0.610628485679626,-0.750958800315857,-0.251383304595947,-0.898401260375977,-0.284646242856979,0.334442168474197,-0.954124748706818,-0.265357881784439,0.138676434755325,-0.94942182302475,-0.185368105769157,0.253449678421021,-0.937962174415588,-0.174183398485184,0.299811601638794,-0.94942182302475,-0.185368105769157,0.253449678421021,-0.962740659713745,-0.0927864462137222,0.254009664058685,-0.967060565948486,-0.0217852275818586,0.25361242890358,-0.962740659713745,-0.0927864462137222,0.254009664058685,-0.973507821559906,0.0638604611158371,0.219554767012596,-0.95492947101593,0.294602632522583,-0.0363161750137806,-0.974609375,0.161337003111839,-0.155263930559158,-0.933872103691101,0.340713739395142,-0.108613528311253,-0.902660489082336,0.426464527845383,-0.0577229484915733,-0.892410933971405,0.451178520917892,0.00637240894138813,-0.95492947101593,0.294602632522583,-0.0363161750137806,-0.974609375,0.161337003111839,-0.155263930559158,-0.935131311416626,0.318033456802368,-0.156153947114944,-0.933872103691101,0.340713739395142,-0.108613528311253,-0.948646247386932,0.259989738464355,-0.180209904909134,-0.917776525020599,0.373868614435196,-0.133821979165077,-0.935131311416626,0.318033456802368,-0.156153947114944,-0.948646247386932,0.259989738464355,-0.180209904909134,-0.941094219684601,0.271845877170563,-0.201100215315819,-0.917776525020599,0.373868614435196,-0.133821979165077,-0.941094219684601,0.271845877170563,-0.201100215315819,-0.928163468837738,0.193595975637436,-0.317856967449188,-0.893257141113281,0.392857402563095,-0.218528479337692,-0.964459776878357,0.236554071307182,0.117726020514965,-0.970989644527435,0.155899941921234,0.181311845779419,-0.945877254009247,0.236896634101868,0.221801429986954,-0.957439541816711,0.14934179186821,0.246994778513908,-0.970989644527435,0.155899941921234,0.181311845779419,-0.967539012432098,0.0885045453906059,0.236717447638512,-0.967060565948486,-0.0217852275818586,0.25361242890358,-0.973507821559906,0.0638604611158371,0.219554767012596, +-0.967539012432098,0.0885045453906059,0.236717447638512,-0.964459776878357,0.236554071307182,0.117726020514965,-0.92822265625,0.324750036001205,0.18149371445179,-0.947799563407898,0.314916610717773,0.050034124404192,-0.923226177692413,0.377206474542618,-0.073270782828331,-0.947799563407898,0.314916610717773,0.050034124404192,-0.899248540401459,0.437365710735321,0.00795301608741283,-0.902660489082336,0.426464527845383,-0.0577229484915733,-0.899248540401459,0.437365710735321,0.00795301608741283,-0.892410933971405,0.451178520917892,0.00637240894138813,-0.928163468837738,0.193595975637436,-0.317856967449188,-0.90241003036499,0.170854985713959,-0.395556032657623,-0.901295483112335,0.324658006429672,-0.286816120147705,-0.872878432273865,0.0609751231968403,-0.484112709760666,-0.894730985164642,0.145719915628433,-0.422163635492325,-0.853789508342743,-0.0435085594654083,-0.518797039985657,-0.797380805015564,-0.0960555523633957,-0.595782697200775,-0.872878432273865,0.0609751231968403,-0.484112709760666,-0.813420474529266,-0.224174067378044,-0.536742925643921,-0.90241003036499,0.170854985713959,-0.395556032657623,-0.884140312671661,0.0770504251122475,-0.460824370384216,-0.894730985164642,0.145719915628433,-0.422163635492325,-0.804808259010315,-0.0537147372961044,-0.591099202632904,-0.831010222434998,0.051106546074152,-0.553904294967651,-0.724653661251068,-0.154871180653572,-0.6714848279953,-0.831010222434998,0.051106546074152,-0.553904294967651,-0.797380805015564,-0.0960555523633957,-0.595782697200775,-0.724653661251068,-0.154871180653572,-0.6714848279953,-0.790927588939667,-0.0816693753004074,-0.606435060501099,-0.830479681491852,0.0140059618279338,-0.5568727850914,-0.865568876266479,-0.0307136308401823,-0.499847024679184,-0.770369470119476,0.121943831443787,-0.625827789306641,-0.830479681491852,0.0140059618279338,-0.5568727850914,-0.801796913146973,0.0477935783565044,-0.595682203769684,-0.790927588939667,-0.0816693753004074,-0.606435060501099,-0.865568876266479,-0.0307136308401823,-0.499847024679184,-0.804808259010315,-0.0537147372961044,-0.591099202632904, +-0.741185665130615,0.293581783771515,-0.603699743747711,-0.685735881328583,0.353696793317795,-0.636132597923279,-0.770369470119476,0.121943831443787,-0.625827789306641,-0.685735881328583,0.353696793317795,-0.636132597923279,-0.570643484592438,0.629339873790741,-0.527538895606995,-0.606659471988678,0.583886563777924,-0.53948175907135,-0.950042068958282,0.171459585428238,-0.260809600353241,-0.976545631885529,0.161081969738007,-0.14286781847477,-0.967224180698395,0.0492593571543694,-0.249099507927895,-0.877088308334351,0.359795600175858,-0.318218618631363,-0.804858565330505,0.292421996593475,-0.516422212123871,-0.777323842048645,0.452586442232132,-0.436958819627762,-0.955744445323944,0.272337943315506,-0.111285589635372,-0.950042068958282,0.171459585428238,-0.260809600353241,-0.877088308334351,0.359795600175858,-0.318218618631363,-0.692806422710419,0.522170424461365,-0.497350096702576,-0.606659471988678,0.583886563777924,-0.53948175907135,-0.581708669662476,0.725799441337585,-0.367192059755325,-0.682915925979614,0.647728025913239,-0.337748348712921,-0.777323842048645,0.452586442232132,-0.436958819627762,-0.692806422710419,0.522170424461365,-0.497350096702576,-0.967224180698395,0.0492593571543694,-0.249099507927895,-0.925762236118317,-0.0846411734819412,-0.368510574102402,-0.933131217956543,-0.0716436356306076,-0.352325528860092,-0.935165107250214,-0.323900759220123,-0.143368408083916,-0.996757745742798,0.0748130232095718,-0.0296124871820211,-0.901303112506866,-0.409041196107864,-0.142610847949982,-0.992205142974854,-0.0652028247714043,-0.106195613741875,-0.996757745742798,0.0748130232095718,-0.0296124871820211,-0.935165107250214,-0.323900759220123,-0.143368408083916,-0.933131217956543,-0.0716436356306076,-0.352325528860092,-0.925762236118317,-0.0846411734819412,-0.368510574102402,-0.919622659683228,0.00509665627032518,-0.39276984333992,-0.975093126296997,0.0729958042502403,-0.209439441561699,-0.959817349910736,0.0232877675443888,-0.279657453298569,-0.919622659683228,0.00509665627032518,-0.39276984333992,-0.992205142974854,-0.0652028247714043,-0.106195613741875, +-0.977699100971222,-0.126745045185089,-0.167451575398445,-0.986358106136322,0.129132777452469,-0.102089934051037,-0.986358106136322,0.129132777452469,-0.102089934051037,-0.991125285625458,0.0155693599954247,-0.132016032934189,-0.975093126296997,0.0729958042502403,-0.209439441561699,-0.901303112506866,-0.409041196107864,-0.142610847949982,-0.854519128799438,-0.507620275020599,-0.110084965825081,-0.754329264163971,-0.622455537319183,-0.208653494715691,-0.754329264163971,-0.622455537319183,-0.208653494715691,-0.703334271907806,-0.693166673183441,-0.157609328627586,-0.610628485679626,-0.750958800315857,-0.251383304595947,-0.459643959999084,-0.860540568828583,-0.219538941979408,-0.610628485679626,-0.750958800315857,-0.251383304595947,-0.703334271907806,-0.693166673183441,-0.157609328627586,-0.985034346580505,-0.166498497128487,0.0445587895810604,-0.94942182302475,-0.185368105769157,0.253449678421021,-0.954124748706818,-0.265357881784439,0.138676434755325,-0.962740659713745,-0.0927864462137222,0.254009664058685,-0.94942182302475,-0.185368105769157,0.253449678421021,-0.990543961524963,-0.0600122734904289,0.123373597860336,-0.997471392154694,0.0207450296729803,0.0679735094308853,-0.973507821559906,0.0638604611158371,0.219554767012596,-0.962740659713745,-0.0927864462137222,0.254009664058685,-0.95492947101593,0.294602632522583,-0.0363161750137806,-0.999162673950195,0.0407183691859245,0.00398517632856965,-0.974609375,0.161337003111839,-0.155263930559158,-0.95492947101593,0.294602632522583,-0.0363161750137806,-0.892410933971405,0.451178520917892,0.00637240894138813,-0.946025609970093,0.308807224035263,0.0983544737100601,-0.974609375,0.161337003111839,-0.155263930559158,-0.948646247386932,0.259989738464355,-0.180209904909134,-0.935131311416626,0.318033456802368,-0.156153947114944,-0.958287000656128,0.206324473023415,-0.197777986526489,-0.941094219684601,0.271845877170563,-0.201100215315819,-0.948646247386932,0.259989738464355,-0.180209904909134,-0.941094219684601,0.271845877170563,-0.201100215315819,-0.95975250005722,0.0696183145046234,-0.27208137512207, +-0.928163468837738,0.193595975637436,-0.317856967449188,-0.957439541816711,0.14934179186821,0.246994778513908,-0.945877254009247,0.236896634101868,0.221801429986954,-0.970989644527435,0.155899941921234,0.181311845779419,-0.964459776878357,0.236554071307182,0.117726020514965,-0.945877254009247,0.236896634101868,0.221801429986954,-0.92822265625,0.324750036001205,0.18149371445179,-0.957439541816711,0.14934179186821,0.246994778513908,-0.967539012432098,0.0885045453906059,0.236717447638512,-0.973507821559906,0.0638604611158371,0.219554767012596,-0.92822265625,0.324750036001205,0.18149371445179,-0.904910326004028,0.40986156463623,0.114676743745804,-0.947799563407898,0.314916610717773,0.050034124404192,-0.899248540401459,0.437365710735321,0.00795301608741283,-0.947799563407898,0.314916610717773,0.050034124404192,-0.904910326004028,0.40986156463623,0.114676743745804,-0.899248540401459,0.437365710735321,0.00795301608741283,-0.857805788516998,0.504825413227081,0.0965420678257942,-0.892410933971405,0.451178520917892,0.00637240894138813,-0.928163468837738,0.193595975637436,-0.317856967449188,-0.914644956588745,0.0601297095417976,-0.39976105093956,-0.90241003036499,0.170854985713959,-0.395556032657623,-0.894730985164642,0.145719915628433,-0.422163635492325,-0.884140312671661,0.0770504251122475,-0.460824370384216,-0.853789508342743,-0.0435085594654083,-0.518797039985657,-0.872878432273865,0.0609751231968403,-0.484112709760666,-0.853789508342743,-0.0435085594654083,-0.518797039985657,-0.813420474529266,-0.224174067378044,-0.536742925643921,-0.797380805015564,-0.0960555523633957,-0.595782697200775,-0.813420474529266,-0.224174067378044,-0.536742925643921,-0.719043850898743,-0.182250156998634,-0.670641958713531,-0.914644956588745,0.0601297095417976,-0.39976105093956,-0.884140312671661,0.0770504251122475,-0.460824370384216,-0.90241003036499,0.170854985713959,-0.395556032657623,-0.724653661251068,-0.154871180653572,-0.6714848279953,-0.790927588939667,-0.0816693753004074,-0.606435060501099,-0.804808259010315,-0.0537147372961044,-0.591099202632904, +-0.719043850898743,-0.182250156998634,-0.670641958713531,-0.724653661251068,-0.154871180653572,-0.6714848279953,-0.797380805015564,-0.0960555523633957,-0.595782697200775,-0.790927588939667,-0.0816693753004074,-0.606435060501099,-0.801796913146973,0.0477935783565044,-0.595682203769684,-0.830479681491852,0.0140059618279338,-0.5568727850914,-0.770369470119476,0.121943831443787,-0.625827789306641,-0.801796913146973,0.0477935783565044,-0.595682203769684,-0.741185665130615,0.293581783771515,-0.603699743747711,-0.741185665130615,0.293581783771515,-0.603699743747711,-0.570643484592438,0.629339873790741,-0.527538895606995,-0.685735881328583,0.353696793317795,-0.636132597923279,-0.570643484592438,0.629339873790741,-0.527538895606995,-0.496241748332977,0.774502992630005,-0.392286986112595,-0.606659471988678,0.583886563777924,-0.53948175907135,-0.955744445323944,0.272337943315506,-0.111285589635372,-0.976545631885529,0.161081969738007,-0.14286781847477,-0.950042068958282,0.171459585428238,-0.260809600353241,-0.976545631885529,0.161081969738007,-0.14286781847477,-0.979153037071228,0.187484666705132,-0.0781582593917847,-0.967224180698395,0.0492593571543694,-0.249099507927895,-0.877088308334351,0.359795600175858,-0.318218618631363,-0.777323842048645,0.452586442232132,-0.436958819627762,-0.800956130027771,0.542327404022217,-0.25367346405983,-0.877088308334351,0.359795600175858,-0.318218618631363,-0.901247382164001,0.417177647352219,-0.117114387452602,-0.955744445323944,0.272337943315506,-0.111285589635372,-0.581708669662476,0.725799441337585,-0.367192059755325,-0.606659471988678,0.583886563777924,-0.53948175907135,-0.496241748332977,0.774502992630005,-0.392286986112595,-0.581708669662476,0.725799441337585,-0.367192059755325,-0.682915925979614,0.647728025913239,-0.337748348712921,-0.692806422710419,0.522170424461365,-0.497350096702576,-0.800956130027771,0.542327404022217,-0.25367346405983,-0.777323842048645,0.452586442232132,-0.436958819627762,-0.682915925979614,0.647728025913239,-0.337748348712921,-0.967224180698395,0.0492593571543694,-0.249099507927895, +-0.987382888793945,0.0439161621034145,-0.152139097452164,-0.925762236118317,-0.0846411734819412,-0.368510574102402,-0.996757745742798,0.0748130232095718,-0.0296124871820211,-0.999588549137115,-0.0162633527070284,-0.0236199516803026,-0.901303112506866,-0.409041196107864,-0.142610847949982,-0.992205142974854,-0.0652028247714043,-0.106195613741875,-0.99623304605484,-0.0582655817270279,-0.064224049448967,-0.996757745742798,0.0748130232095718,-0.0296124871820211,-0.935697257518768,-0.172204747796059,-0.307921797037125,-0.919622659683228,0.00509665627032518,-0.39276984333992,-0.925762236118317,-0.0846411734819412,-0.368510574102402,-0.975093126296997,0.0729958042502403,-0.209439441561699,-0.919622659683228,0.00509665627032518,-0.39276984333992,-0.935697257518768,-0.172204747796059,-0.307921797037125,-0.992205142974854,-0.0652028247714043,-0.106195613741875,-0.986358106136322,0.129132777452469,-0.102089934051037,-0.99623304605484,-0.0582655817270279,-0.064224049448967,-0.986358106136322,0.129132777452469,-0.102089934051037,-0.975093126296997,0.0729958042502403,-0.209439441561699,-0.972114205360413,-0.159959807991982,-0.171483904123306,-0.901303112506866,-0.409041196107864,-0.142610847949982,-0.999588549137115,-0.0162633527070284,-0.0236199516803026,-0.854519128799438,-0.507620275020599,-0.110084965825081,-0.854519128799438,-0.507620275020599,-0.110084965825081,-0.703334271907806,-0.693166673183441,-0.157609328627586,-0.754329264163971,-0.622455537319183,-0.208653494715691,-0.563874542713165,-0.812261521816254,-0.149253830313683,-0.459643959999084,-0.860540568828583,-0.219538941979408,-0.703334271907806,-0.693166673183441,-0.157609328627586,-0.94942182302475,-0.185368105769157,0.253449678421021,-0.985034346580505,-0.166498497128487,0.0445587895810604,-0.990543961524963,-0.0600122734904289,0.123373597860336,-0.962740659713745,-0.0927864462137222,0.254009664058685,-0.990543961524963,-0.0600122734904289,0.123373597860336,-0.997471392154694,0.0207450296729803,0.0679735094308853,-0.973507821559906,0.0638604611158371,0.219554767012596, +-0.997471392154694,0.0207450296729803,0.0679735094308853,-0.990543961524963,-0.0600122734904289,0.123373597860336,-0.95492947101593,0.294602632522583,-0.0363161750137806,-0.946025609970093,0.308807224035263,0.0983544737100601,-0.999162673950195,0.0407183691859245,0.00398517632856965,-0.999162673950195,0.0407183691859245,0.00398517632856965,-0.972050428390503,-0.107381701469421,-0.208774998784065,-0.974609375,0.161337003111839,-0.155263930559158,-0.892410933971405,0.451178520917892,0.00637240894138813,-0.876280546188354,0.473167240619659,0.0908024162054062,-0.946025609970093,0.308807224035263,0.0983544737100601,-0.974609375,0.161337003111839,-0.155263930559158,-0.958287000656128,0.206324473023415,-0.197777986526489,-0.948646247386932,0.259989738464355,-0.180209904909134,-0.941094219684601,0.271845877170563,-0.201100215315819,-0.958287000656128,0.206324473023415,-0.197777986526489,-0.95975250005722,0.0696183145046234,-0.27208137512207,-0.95975250005722,0.0696183145046234,-0.27208137512207,-0.914644956588745,0.0601297095417976,-0.39976105093956,-0.928163468837738,0.193595975637436,-0.317856967449188,-0.957439541816711,0.14934179186821,0.246994778513908,-0.96141105890274,0.150407552719116,0.230361118912697,-0.945877254009247,0.236896634101868,0.221801429986954,-0.939638555049896,0.263473749160767,0.218313574790955,-0.92822265625,0.324750036001205,0.18149371445179,-0.945877254009247,0.236896634101868,0.221801429986954,-0.957439541816711,0.14934179186821,0.246994778513908,-0.973507821559906,0.0638604611158371,0.219554767012596,-0.96141105890274,0.150407552719116,0.230361118912697,-0.904910326004028,0.40986156463623,0.114676743745804,-0.92822265625,0.324750036001205,0.18149371445179,-0.901921927928925,0.393500864505768,0.178027436137199,-0.899248540401459,0.437365710735321,0.00795301608741283,-0.904910326004028,0.40986156463623,0.114676743745804,-0.857805788516998,0.504825413227081,0.0965420678257942,-0.892410933971405,0.451178520917892,0.00637240894138813,-0.857805788516998,0.504825413227081,0.0965420678257942,-0.876280546188354,0.473167240619659,0.0908024162054062, +-0.855265498161316,-0.0433707386255264,-0.516371726989746,-0.853789508342743,-0.0435085594654083,-0.518797039985657,-0.884140312671661,0.0770504251122475,-0.460824370384216,-0.826730787754059,-0.217851743102074,-0.518706738948822,-0.813420474529266,-0.224174067378044,-0.536742925643921,-0.853789508342743,-0.0435085594654083,-0.518797039985657,-0.719043850898743,-0.182250156998634,-0.670641958713531,-0.813420474529266,-0.224174067378044,-0.536742925643921,-0.782282650470734,-0.210195362567902,-0.58638858795166,-0.914644956588745,0.0601297095417976,-0.39976105093956,-0.855265498161316,-0.0433707386255264,-0.516371726989746,-0.884140312671661,0.0770504251122475,-0.460824370384216,-0.790927588939667,-0.0816693753004074,-0.606435060501099,-0.724653661251068,-0.154871180653572,-0.6714848279953,-0.73780345916748,0.00810437742620707,-0.674966812133789,-0.73780345916748,0.00810437742620707,-0.674966812133789,-0.724653661251068,-0.154871180653572,-0.6714848279953,-0.719043850898743,-0.182250156998634,-0.670641958713531,-0.79402482509613,0.0624225959181786,-0.604671657085419,-0.801796913146973,0.0477935783565044,-0.595682203769684,-0.790927588939667,-0.0816693753004074,-0.606435060501099,-0.741185665130615,0.293581783771515,-0.603699743747711,-0.801796913146973,0.0477935783565044,-0.595682203769684,-0.799716413021088,0.288225650787354,-0.526668250560761,-0.741185665130615,0.293581783771515,-0.603699743747711,-0.67628812789917,0.581147611141205,-0.452660620212555,-0.570643484592438,0.629339873790741,-0.527538895606995,-0.496241748332977,0.774502992630005,-0.392286986112595,-0.570643484592438,0.629339873790741,-0.527538895606995,-0.434468120336533,0.824321508407593,-0.362948179244995,-0.976545631885529,0.161081969738007,-0.14286781847477,-0.955744445323944,0.272337943315506,-0.111285589635372,-0.979153037071228,0.187484666705132,-0.0781582593917847,-0.987382888793945,0.0439161621034145,-0.152139097452164,-0.967224180698395,0.0492593571543694,-0.249099507927895,-0.979153037071228,0.187484666705132,-0.0781582593917847,-0.877088308334351,0.359795600175858,-0.318218618631363, +-0.800956130027771,0.542327404022217,-0.25367346405983,-0.901247382164001,0.417177647352219,-0.117114387452602,-0.901247382164001,0.417177647352219,-0.117114387452602,-0.938269376754761,0.344918131828308,0.0261144936084747,-0.955744445323944,0.272337943315506,-0.111285589635372,-0.496241748332977,0.774502992630005,-0.392286986112595,-0.473385870456696,0.851354718208313,-0.226055026054382,-0.581708669662476,0.725799441337585,-0.367192059755325,-0.581708669662476,0.725799441337585,-0.367192059755325,-0.567551076412201,0.79988569021225,-0.195111483335495,-0.682915925979614,0.647728025913239,-0.337748348712921,-0.800956130027771,0.542327404022217,-0.25367346405983,-0.682915925979614,0.647728025913239,-0.337748348712921,-0.671454131603241,0.737534701824188,-0.0720540210604668,-0.925762236118317,-0.0846411734819412,-0.368510574102402,-0.987382888793945,0.0439161621034145,-0.152139097452164,-0.979612708091736,-0.119650930166245,-0.161376923322678,-0.996757745742798,0.0748130232095718,-0.0296124871820211,-0.991035461425781,0.117562510073185,-0.0634639859199524,-0.999588549137115,-0.0162633527070284,-0.0236199516803026,-0.996757745742798,0.0748130232095718,-0.0296124871820211,-0.99623304605484,-0.0582655817270279,-0.064224049448967,-0.998905718326569,-0.0268261320888996,-0.0383068434894085,-0.979612708091736,-0.119650930166245,-0.161376923322678,-0.935697257518768,-0.172204747796059,-0.307921797037125,-0.925762236118317,-0.0846411734819412,-0.368510574102402,-0.975093126296997,0.0729958042502403,-0.209439441561699,-0.935697257518768,-0.172204747796059,-0.307921797037125,-0.972114205360413,-0.159959807991982,-0.171483904123306,-0.99623304605484,-0.0582655817270279,-0.064224049448967,-0.986358106136322,0.129132777452469,-0.102089934051037,-0.972114205360413,-0.159959807991982,-0.171483904123306,-0.998797535896301,-0.046417560428381,-0.0157732721418142,-0.854519128799438,-0.507620275020599,-0.110084965825081,-0.999588549137115,-0.0162633527070284,-0.0236199516803026,-0.744940161705017,-0.650514781475067,-0.147967919707298,-0.703334271907806,-0.693166673183441,-0.157609328627586, +-0.854519128799438,-0.507620275020599,-0.110084965825081,-0.563874542713165,-0.812261521816254,-0.149253830313683,-0.703334271907806,-0.693166673183441,-0.157609328627586,-0.744940161705017,-0.650514781475067,-0.147967919707298,-0.973507821559906,0.0638604611158371,0.219554767012596,-0.990543961524963,-0.0600122734904289,0.123373597860336,-0.991766750812531,0.0765160620212555,0.102683752775192,-0.946025609970093,0.308807224035263,0.0983544737100601,-0.983042120933533,0.0596410930156708,0.173409909009933,-0.999162673950195,0.0407183691859245,0.00398517632856965,-0.999162673950195,0.0407183691859245,0.00398517632856965,-0.977149248123169,-0.209488213062286,-0.0359725318849087,-0.972050428390503,-0.107381701469421,-0.208774998784065,-0.95975250005722,0.0696183145046234,-0.27208137512207,-0.974609375,0.161337003111839,-0.155263930559158,-0.972050428390503,-0.107381701469421,-0.208774998784065,-0.876280546188354,0.473167240619659,0.0908024162054062,-0.861917018890381,0.489119470119476,0.133645325899124,-0.946025609970093,0.308807224035263,0.0983544737100601,-0.974609375,0.161337003111839,-0.155263930559158,-0.95975250005722,0.0696183145046234,-0.27208137512207,-0.958287000656128,0.206324473023415,-0.197777986526489,-0.95975250005722,0.0696183145046234,-0.27208137512207,-0.911522150039673,-0.113073691725731,-0.395400524139404,-0.914644956588745,0.0601297095417976,-0.39976105093956,-0.939638555049896,0.263473749160767,0.218313574790955,-0.945877254009247,0.236896634101868,0.221801429986954,-0.96141105890274,0.150407552719116,0.230361118912697,-0.901921927928925,0.393500864505768,0.178027436137199,-0.92822265625,0.324750036001205,0.18149371445179,-0.939638555049896,0.263473749160767,0.218313574790955,-0.973507821559906,0.0638604611158371,0.219554767012596,-0.991766750812531,0.0765160620212555,0.102683752775192,-0.96141105890274,0.150407552719116,0.230361118912697,-0.904910326004028,0.40986156463623,0.114676743745804,-0.901921927928925,0.393500864505768,0.178027436137199,-0.857805788516998,0.504825413227081,0.0965420678257942, +-0.876280546188354,0.473167240619659,0.0908024162054062,-0.857805788516998,0.504825413227081,0.0965420678257942,-0.861917018890381,0.489119470119476,0.133645325899124,-0.855265498161316,-0.0433707386255264,-0.516371726989746,-0.809071958065033,-0.172275766730309,-0.561892747879028,-0.853789508342743,-0.0435085594654083,-0.518797039985657,-0.826730787754059,-0.217851743102074,-0.518706738948822,-0.868651926517487,-0.233319967985153,-0.437041699886322,-0.813420474529266,-0.224174067378044,-0.536742925643921,-0.826730787754059,-0.217851743102074,-0.518706738948822,-0.853789508342743,-0.0435085594654083,-0.518797039985657,-0.809071958065033,-0.172275766730309,-0.561892747879028,-0.813420474529266,-0.224174067378044,-0.536742925643921,-0.868651926517487,-0.233319967985153,-0.437041699886322,-0.782282650470734,-0.210195362567902,-0.58638858795166,-0.719043850898743,-0.182250156998634,-0.670641958713531,-0.782282650470734,-0.210195362567902,-0.58638858795166,-0.779849708080292,0.0270171500742435,-0.625383377075195,-0.911522150039673,-0.113073691725731,-0.395400524139404,-0.855265498161316,-0.0433707386255264,-0.516371726989746,-0.914644956588745,0.0601297095417976,-0.39976105093956,-0.79402482509613,0.0624225959181786,-0.604671657085419,-0.790927588939667,-0.0816693753004074,-0.606435060501099,-0.73780345916748,0.00810437742620707,-0.674966812133789,-0.779849708080292,0.0270171500742435,-0.625383377075195,-0.73780345916748,0.00810437742620707,-0.674966812133789,-0.719043850898743,-0.182250156998634,-0.670641958713531,-0.79402482509613,0.0624225959181786,-0.604671657085419,-0.799716413021088,0.288225650787354,-0.526668250560761,-0.801796913146973,0.0477935783565044,-0.595682203769684,-0.741185665130615,0.293581783771515,-0.603699743747711,-0.799716413021088,0.288225650787354,-0.526668250560761,-0.67628812789917,0.581147611141205,-0.452660620212555,-0.67628812789917,0.581147611141205,-0.452660620212555,-0.502568066120148,0.776355803012848,-0.380390584468842,-0.570643484592438,0.629339873790741,-0.527538895606995,-0.570643484592438,0.629339873790741,-0.527538895606995, +-0.502568066120148,0.776355803012848,-0.380390584468842,-0.434468120336533,0.824321508407593,-0.362948179244995,-0.496241748332977,0.774502992630005,-0.392286986112595,-0.434468120336533,0.824321508407593,-0.362948179244995,-0.406860113143921,0.874798834323883,-0.263043373823166,-0.938269376754761,0.344918131828308,0.0261144936084747,-0.979153037071228,0.187484666705132,-0.0781582593917847,-0.955744445323944,0.272337943315506,-0.111285589635372,-0.987382888793945,0.0439161621034145,-0.152139097452164,-0.979153037071228,0.187484666705132,-0.0781582593917847,-0.970246076583862,0.240251779556274,0.0300267897546291,-0.800956130027771,0.542327404022217,-0.25367346405983,-0.845274150371552,0.534313201904297,0.00456941500306129,-0.901247382164001,0.417177647352219,-0.117114387452602,-0.901247382164001,0.417177647352219,-0.117114387452602,-0.845274150371552,0.534313201904297,0.00456941500306129,-0.938269376754761,0.344918131828308,0.0261144936084747,-0.473385870456696,0.851354718208313,-0.226055026054382,-0.496241748332977,0.774502992630005,-0.392286986112595,-0.406860113143921,0.874798834323883,-0.263043373823166,-0.581708669662476,0.725799441337585,-0.367192059755325,-0.473385870456696,0.851354718208313,-0.226055026054382,-0.567551076412201,0.79988569021225,-0.195111483335495,-0.682915925979614,0.647728025913239,-0.337748348712921,-0.567551076412201,0.79988569021225,-0.195111483335495,-0.671454131603241,0.737534701824188,-0.0720540210604668,-0.800956130027771,0.542327404022217,-0.25367346405983,-0.671454131603241,0.737534701824188,-0.0720540210604668,-0.845274150371552,0.534313201904297,0.00456941500306129,-0.979612708091736,-0.119650930166245,-0.161376923322678,-0.987382888793945,0.0439161621034145,-0.152139097452164,-0.995783150196075,0.0844391062855721,0.0358585603535175,-0.998905718326569,-0.0268261320888996,-0.0383068434894085,-0.991035461425781,0.117562510073185,-0.0634639859199524,-0.996757745742798,0.0748130232095718,-0.0296124871820211,-0.999588549137115,-0.0162633527070284,-0.0236199516803026,-0.991035461425781,0.117562510073185,-0.0634639859199524, +-0.967973172664642,0.251038879156113,0.00270372536033392,-0.998905718326569,-0.0268261320888996,-0.0383068434894085,-0.99623304605484,-0.0582655817270279,-0.064224049448967,-0.91506415605545,-0.393371492624283,-0.0889736711978912,-0.979612708091736,-0.119650930166245,-0.161376923322678,-0.969523847103119,-0.236654981970787,-0.0633857473731041,-0.935697257518768,-0.172204747796059,-0.307921797037125,-0.935697257518768,-0.172204747796059,-0.307921797037125,-0.969523847103119,-0.236654981970787,-0.0633857473731041,-0.972114205360413,-0.159959807991982,-0.171483904123306,-0.972114205360413,-0.159959807991982,-0.171483904123306,-0.916178703308105,-0.38638499379158,-0.10641011595726,-0.99623304605484,-0.0582655817270279,-0.064224049448967,-0.959977030754089,-0.257250756025314,-0.110752061009407,-0.854519128799438,-0.507620275020599,-0.110084965825081,-0.998797535896301,-0.046417560428381,-0.0157732721418142,-0.998797535896301,-0.046417560428381,-0.0157732721418142,-0.999588549137115,-0.0162633527070284,-0.0236199516803026,-0.967973172664642,0.251038879156113,0.00270372536033392,-0.854519128799438,-0.507620275020599,-0.110084965825081,-0.807421088218689,-0.565440833568573,-0.168367326259613,-0.744940161705017,-0.650514781475067,-0.147967919707298,-0.563874542713165,-0.812261521816254,-0.149253830313683,-0.744940161705017,-0.650514781475067,-0.147967919707298,-0.572573721408844,-0.779998600482941,-0.252509832382202,-0.983042120933533,0.0596410930156708,0.173409909009933,-0.946025609970093,0.308807224035263,0.0983544737100601,-0.933921933174133,0.310261070728302,0.177560597658157,-0.999162673950195,0.0407183691859245,0.00398517632856965,-0.983042120933533,0.0596410930156708,0.173409909009933,-0.98669695854187,-0.118887573480606,0.110882140696049,-0.98669695854187,-0.118887573480606,0.110882140696049,-0.977149248123169,-0.209488213062286,-0.0359725318849087,-0.999162673950195,0.0407183691859245,0.00398517632856965,-0.977149248123169,-0.209488213062286,-0.0359725318849087,-0.942939698696136,-0.259844422340393,-0.208195805549622, +-0.972050428390503,-0.107381701469421,-0.208774998784065,-0.972050428390503,-0.107381701469421,-0.208774998784065,-0.911522150039673,-0.113073691725731,-0.395400524139404,-0.95975250005722,0.0696183145046234,-0.27208137512207,-0.946025609970093,0.308807224035263,0.0983544737100601,-0.861917018890381,0.489119470119476,0.133645325899124,-0.933921933174133,0.310261070728302,0.177560597658157,-0.939638555049896,0.263473749160767,0.218313574790955,-0.96141105890274,0.150407552719116,0.230361118912697,-0.972901344299316,0.183302223682404,0.140936523675919,-0.939638555049896,0.263473749160767,0.218313574790955,-0.941250681877136,0.294713407754898,0.164897277951241,-0.901921927928925,0.393500864505768,0.178027436137199,-0.972901344299316,0.183302223682404,0.140936523675919,-0.96141105890274,0.150407552719116,0.230361118912697,-0.991766750812531,0.0765160620212555,0.102683752775192,-0.854961931705475,0.501576662063599,0.13213948905468,-0.857805788516998,0.504825413227081,0.0965420678257942,-0.901921927928925,0.393500864505768,0.178027436137199,-0.854961931705475,0.501576662063599,0.13213948905468,-0.861917018890381,0.489119470119476,0.133645325899124,-0.857805788516998,0.504825413227081,0.0965420678257942,-0.911522150039673,-0.113073691725731,-0.395400524139404,-0.809071958065033,-0.172275766730309,-0.561892747879028,-0.855265498161316,-0.0433707386255264,-0.516371726989746,-0.868651926517487,-0.233319967985153,-0.437041699886322,-0.826730787754059,-0.217851743102074,-0.518706738948822,-0.873041033744812,-0.226590901613235,-0.431805223226547,-0.826730787754059,-0.217851743102074,-0.518706738948822,-0.809071958065033,-0.172275766730309,-0.561892747879028,-0.835320472717285,-0.0826358273625374,-0.543517112731934,-0.868651926517487,-0.233319967985153,-0.437041699886322,-0.779849708080292,0.0270171500742435,-0.625383377075195,-0.782282650470734,-0.210195362567902,-0.58638858795166,-0.79402482509613,0.0624225959181786,-0.604671657085419,-0.73780345916748,0.00810437742620707,-0.674966812133789,-0.77246755361557,0.186360120773315,-0.607094526290894, +-0.779849708080292,0.0270171500742435,-0.625383377075195,-0.718522369861603,0.268651038408279,-0.641523241996765,-0.73780345916748,0.00810437742620707,-0.674966812133789,-0.79402482509613,0.0624225959181786,-0.604671657085419,-0.77246755361557,0.186360120773315,-0.607094526290894,-0.799716413021088,0.288225650787354,-0.526668250560761,-0.665496587753296,0.633827269077301,-0.3941790163517,-0.67628812789917,0.581147611141205,-0.452660620212555,-0.799716413021088,0.288225650787354,-0.526668250560761,-0.515419185161591,0.802407562732697,-0.3008072078228,-0.502568066120148,0.776355803012848,-0.380390584468842,-0.67628812789917,0.581147611141205,-0.452660620212555,-0.502568066120148,0.776355803012848,-0.380390584468842,-0.386958092451096,0.879264414310455,-0.277772098779678,-0.434468120336533,0.824321508407593,-0.362948179244995,-0.354277938604355,0.901199281215668,-0.249653086066246,-0.406860113143921,0.874798834323883,-0.263043373823166,-0.434468120336533,0.824321508407593,-0.362948179244995,-0.970246076583862,0.240251779556274,0.0300267897546291,-0.979153037071228,0.187484666705132,-0.0781582593917847,-0.938269376754761,0.344918131828308,0.0261144936084747,-0.987382888793945,0.0439161621034145,-0.152139097452164,-0.970246076583862,0.240251779556274,0.0300267897546291,-0.995783150196075,0.0844391062855721,0.0358585603535175,-0.866234362125397,0.482962995767593,0.128002524375916,-0.938269376754761,0.344918131828308,0.0261144936084747,-0.845274150371552,0.534313201904297,0.00456941500306129,-0.406860113143921,0.874798834323883,-0.263043373823166,-0.388167560100555,0.907513916492462,-0.160450413823128,-0.473385870456696,0.851354718208313,-0.226055026054382,-0.457974523305893,0.887162327766418,-0.0565883629024029,-0.567551076412201,0.79988569021225,-0.195111483335495,-0.473385870456696,0.851354718208313,-0.226055026054382,-0.457974523305893,0.887162327766418,-0.0565883629024029,-0.671454131603241,0.737534701824188,-0.0720540210604668,-0.567551076412201,0.79988569021225,-0.195111483335495,-0.689817190170288,0.712683498859406,0.127413898706436, +-0.845274150371552,0.534313201904297,0.00456941500306129,-0.671454131603241,0.737534701824188,-0.0720540210604668,-0.979612708091736,-0.119650930166245,-0.161376923322678,-0.995783150196075,0.0844391062855721,0.0358585603535175,-0.969523847103119,-0.236654981970787,-0.0633857473731041,-0.998905718326569,-0.0268261320888996,-0.0383068434894085,-0.90351390838623,-0.392624080181122,-0.171781346201897,-0.991035461425781,0.117562510073185,-0.0634639859199524,-0.969942390918732,-0.183238491415977,-0.160110205411911,-0.967973172664642,0.251038879156113,0.00270372536033392,-0.991035461425781,0.117562510073185,-0.0634639859199524,-0.91506415605545,-0.393371492624283,-0.0889736711978912,-0.99623304605484,-0.0582655817270279,-0.064224049448967,-0.916178703308105,-0.38638499379158,-0.10641011595726,-0.998905718326569,-0.0268261320888996,-0.0383068434894085,-0.91506415605545,-0.393371492624283,-0.0889736711978912,-0.90351390838623,-0.392624080181122,-0.171781346201897,-0.916178703308105,-0.38638499379158,-0.10641011595726,-0.972114205360413,-0.159959807991982,-0.171483904123306,-0.969523847103119,-0.236654981970787,-0.0633857473731041,-0.854519128799438,-0.507620275020599,-0.110084965825081,-0.959977030754089,-0.257250756025314,-0.110752061009407,-0.807421088218689,-0.565440833568573,-0.168367326259613,-0.959977030754089,-0.257250756025314,-0.110752061009407,-0.998797535896301,-0.046417560428381,-0.0157732721418142,-0.96582168340683,0.259201288223267,-0.00176714570261538,-0.96582168340683,0.259201288223267,-0.00176714570261538,-0.998797535896301,-0.046417560428381,-0.0157732721418142,-0.967973172664642,0.251038879156113,0.00270372536033392,-0.807421088218689,-0.565440833568573,-0.168367326259613,-0.720350027084351,-0.659702122211456,-0.214216977357864,-0.744940161705017,-0.650514781475067,-0.147967919707298,-0.720350027084351,-0.659702122211456,-0.214216977357864,-0.572573721408844,-0.779998600482941,-0.252509832382202,-0.744940161705017,-0.650514781475067,-0.147967919707298,-0.956160962581635,0.139312699437141,0.257581204175949, +-0.983042120933533,0.0596410930156708,0.173409909009933,-0.933921933174133,0.310261070728302,0.177560597658157,-0.983042120933533,0.0596410930156708,0.173409909009933,-0.957782328128815,-0.117794170975685,0.262254565954208,-0.98669695854187,-0.118887573480606,0.110882140696049,-0.98669695854187,-0.118887573480606,0.110882140696049,-0.969441473484039,-0.22924043238163,0.0873608514666557,-0.977149248123169,-0.209488213062286,-0.0359725318849087,-0.977149248123169,-0.209488213062286,-0.0359725318849087,-0.953938961029053,-0.259643346071243,-0.150285169482231,-0.942939698696136,-0.259844422340393,-0.208195805549622,-0.942939698696136,-0.259844422340393,-0.208195805549622,-0.906847238540649,-0.227412149310112,-0.354840397834778,-0.972050428390503,-0.107381701469421,-0.208774998784065,-0.906847238540649,-0.227412149310112,-0.354840397834778,-0.911522150039673,-0.113073691725731,-0.395400524139404,-0.972050428390503,-0.107381701469421,-0.208774998784065,-0.896392226219177,0.410800218582153,0.166505411267281,-0.933921933174133,0.310261070728302,0.177560597658157,-0.861917018890381,0.489119470119476,0.133645325899124,-0.941250681877136,0.294713407754898,0.164897277951241,-0.939638555049896,0.263473749160767,0.218313574790955,-0.972901344299316,0.183302223682404,0.140936523675919,-0.904023408889771,0.392147332429886,0.17018236219883,-0.901921927928925,0.393500864505768,0.178027436137199,-0.941250681877136,0.294713407754898,0.164897277951241,-0.98514324426651,0.166968986392021,0.0401755645871162,-0.972901344299316,0.183302223682404,0.140936523675919,-0.991766750812531,0.0765160620212555,0.102683752775192,-0.861823558807373,0.477365404367447,0.171412706375122,-0.854961931705475,0.501576662063599,0.13213948905468,-0.901921927928925,0.393500864505768,0.178027436137199,-0.854961931705475,0.501576662063599,0.13213948905468,-0.896392226219177,0.410800218582153,0.166505411267281,-0.861917018890381,0.489119470119476,0.133645325899124,-0.906847238540649,-0.227412149310112,-0.354840397834778,-0.809071958065033,-0.172275766730309,-0.561892747879028, +-0.911522150039673,-0.113073691725731,-0.395400524139404,-0.835320472717285,-0.0826358273625374,-0.543517112731934,-0.873041033744812,-0.226590901613235,-0.431805223226547,-0.826730787754059,-0.217851743102074,-0.518706738948822,-0.868651926517487,-0.233319967985153,-0.437041699886322,-0.873041033744812,-0.226590901613235,-0.431805223226547,-0.932247817516327,-0.134427458047867,-0.335921287536621,-0.8203005194664,-0.0976782292127609,-0.563529789447784,-0.835320472717285,-0.0826358273625374,-0.543517112731934,-0.809071958065033,-0.172275766730309,-0.561892747879028,-0.779849708080292,0.0270171500742435,-0.625383377075195,-0.868651926517487,-0.233319967985153,-0.437041699886322,-0.875620543956757,0.024555929005146,-0.482374936342239,-0.77246755361557,0.186360120773315,-0.607094526290894,-0.73780345916748,0.00810437742620707,-0.674966812133789,-0.718522369861603,0.268651038408279,-0.641523241996765,-0.773928642272949,0.303375363349915,-0.555875718593597,-0.718522369861603,0.268651038408279,-0.641523241996765,-0.779849708080292,0.0270171500742435,-0.625383377075195,-0.725150048732758,0.437291860580444,-0.531914532184601,-0.799716413021088,0.288225650787354,-0.526668250560761,-0.77246755361557,0.186360120773315,-0.607094526290894,-0.665496587753296,0.633827269077301,-0.3941790163517,-0.515419185161591,0.802407562732697,-0.3008072078228,-0.67628812789917,0.581147611141205,-0.452660620212555,-0.665496587753296,0.633827269077301,-0.3941790163517,-0.799716413021088,0.288225650787354,-0.526668250560761,-0.725150048732758,0.437291860580444,-0.531914532184601,-0.515419185161591,0.802407562732697,-0.3008072078228,-0.386958092451096,0.879264414310455,-0.277772098779678,-0.502568066120148,0.776355803012848,-0.380390584468842,-0.354277938604355,0.901199281215668,-0.249653086066246,-0.434468120336533,0.824321508407593,-0.362948179244995,-0.386958092451096,0.879264414310455,-0.277772098779678,-0.351722598075867,0.914217114448547,-0.201241597533226,-0.406860113143921,0.874798834323883,-0.263043373823166,-0.354277938604355,0.901199281215668,-0.249653086066246, +-0.970246076583862,0.240251779556274,0.0300267897546291,-0.938269376754761,0.344918131828308,0.0261144936084747,-0.866234362125397,0.482962995767593,0.128002524375916,-0.932800352573395,0.322533518075943,0.160796731710434,-0.995783150196075,0.0844391062855721,0.0358585603535175,-0.970246076583862,0.240251779556274,0.0300267897546291,-0.866234362125397,0.482962995767593,0.128002524375916,-0.845274150371552,0.534313201904297,0.00456941500306129,-0.769551515579224,0.623329758644104,0.138745352625847,-0.406860113143921,0.874798834323883,-0.263043373823166,-0.351722598075867,0.914217114448547,-0.201241597533226,-0.388167560100555,0.907513916492462,-0.160450413823128,-0.457974523305893,0.887162327766418,-0.0565883629024029,-0.473385870456696,0.851354718208313,-0.226055026054382,-0.388167560100555,0.907513916492462,-0.160450413823128,-0.457974523305893,0.887162327766418,-0.0565883629024029,-0.513432919979095,0.847125887870789,0.13698174059391,-0.671454131603241,0.737534701824188,-0.0720540210604668,-0.689817190170288,0.712683498859406,0.127413898706436,-0.769551515579224,0.623329758644104,0.138745352625847,-0.845274150371552,0.534313201904297,0.00456941500306129,-0.689817190170288,0.712683498859406,0.127413898706436,-0.671454131603241,0.737534701824188,-0.0720540210604668,-0.513432919979095,0.847125887870789,0.13698174059391,-0.995783150196075,0.0844391062855721,0.0358585603535175,-0.996205985546112,-0.0294287223368883,0.0818991959095001,-0.969523847103119,-0.236654981970787,-0.0633857473731041,-0.90351390838623,-0.392624080181122,-0.171781346201897,-0.920154750347137,-0.31935840845108,-0.226550906896591,-0.991035461425781,0.117562510073185,-0.0634639859199524,-0.992607951164246,0.00180038088001311,-0.12135124206543,-0.967973172664642,0.251038879156113,0.00270372536033392,-0.969942390918732,-0.183238491415977,-0.160110205411911,-0.969942390918732,-0.183238491415977,-0.160110205411911,-0.991035461425781,0.117562510073185,-0.0634639859199524,-0.920154750347137,-0.31935840845108,-0.226550906896591,-0.91506415605545,-0.393371492624283,-0.0889736711978912, +-0.916178703308105,-0.38638499379158,-0.10641011595726,-0.936282873153687,-0.349277257919312,-0.0371448062360287,-0.90351390838623,-0.392624080181122,-0.171781346201897,-0.91506415605545,-0.393371492624283,-0.0889736711978912,-0.888700425624847,-0.450864404439926,-0.0832629129290581,-0.936282873153687,-0.349277257919312,-0.0371448062360287,-0.916178703308105,-0.38638499379158,-0.10641011595726,-0.969523847103119,-0.236654981970787,-0.0633857473731041,-0.978814780712128,-0.190321952104568,-0.075492262840271,-0.807421088218689,-0.565440833568573,-0.168367326259613,-0.959977030754089,-0.257250756025314,-0.110752061009407,-0.978814780712128,-0.190321952104568,-0.075492262840271,-0.959977030754089,-0.257250756025314,-0.110752061009407,-0.96582168340683,0.259201288223267,-0.00176714570261538,-0.96582168340683,0.259201288223267,-0.00176714570261538,-0.967973172664642,0.251038879156113,0.00270372536033392,-0.992607951164246,0.00180038088001311,-0.12135124206543,-0.720350027084351,-0.659702122211456,-0.214216977357864,-0.807421088218689,-0.565440833568573,-0.168367326259613,-0.776767671108246,-0.609807848930359,-0.157372787594795,-0.492045879364014,-0.816184163093567,-0.302876591682434,-0.572573721408844,-0.779998600482941,-0.252509832382202,-0.720350027084351,-0.659702122211456,-0.214216977357864,-0.956160962581635,0.139312699437141,0.257581204175949,-0.957782328128815,-0.117794170975685,0.262254565954208,-0.983042120933533,0.0596410930156708,0.173409909009933,-0.896392226219177,0.410800218582153,0.166505411267281,-0.956160962581635,0.139312699437141,0.257581204175949,-0.933921933174133,0.310261070728302,0.177560597658157,-0.98669695854187,-0.118887573480606,0.110882140696049,-0.957782328128815,-0.117794170975685,0.262254565954208,-0.958350777626038,-0.213663339614868,0.189503639936447,-0.969441473484039,-0.22924043238163,0.0873608514666557,-0.98669695854187,-0.118887573480606,0.110882140696049,-0.958350777626038,-0.213663339614868,0.189503639936447,-0.969441473484039,-0.22924043238163,0.0873608514666557,-0.968871057033539,-0.242077976465225,0.0518363751471043, +-0.977149248123169,-0.209488213062286,-0.0359725318849087,-0.968871057033539,-0.242077976465225,0.0518363751471043,-0.953938961029053,-0.259643346071243,-0.150285169482231,-0.977149248123169,-0.209488213062286,-0.0359725318849087,-0.942939698696136,-0.259844422340393,-0.208195805549622,-0.953938961029053,-0.259643346071243,-0.150285169482231,-0.920137584209442,-0.16180844604969,-0.356601685285568,-0.906847238540649,-0.227412149310112,-0.354840397834778,-0.942939698696136,-0.259844422340393,-0.208195805549622,-0.920137584209442,-0.16180844604969,-0.356601685285568,-0.964949667453766,0.249902233481407,0.0801306068897247,-0.941250681877136,0.294713407754898,0.164897277951241,-0.972901344299316,0.183302223682404,0.140936523675919,-0.904023408889771,0.392147332429886,0.17018236219883,-0.861823558807373,0.477365404367447,0.171412706375122,-0.901921927928925,0.393500864505768,0.178027436137199,-0.928602576255798,0.352295219898224,0.116555690765381,-0.904023408889771,0.392147332429886,0.17018236219883,-0.941250681877136,0.294713407754898,0.164897277951241,-0.964949667453766,0.249902233481407,0.0801306068897247,-0.972901344299316,0.183302223682404,0.140936523675919,-0.98514324426651,0.166968986392021,0.0401755645871162,-0.861823558807373,0.477365404367447,0.171412706375122,-0.872059106826782,0.464915722608566,0.152860149741173,-0.854961931705475,0.501576662063599,0.13213948905468,-0.854961931705475,0.501576662063599,0.13213948905468,-0.872059106826782,0.464915722608566,0.152860149741173,-0.896392226219177,0.410800218582153,0.166505411267281,-0.906847238540649,-0.227412149310112,-0.354840397834778,-0.920137584209442,-0.16180844604969,-0.356601685285568,-0.809071958065033,-0.172275766730309,-0.561892747879028,-0.873041033744812,-0.226590901613235,-0.431805223226547,-0.835320472717285,-0.0826358273625374,-0.543517112731934,-0.932247817516327,-0.134427458047867,-0.335921287536621,-0.942031562328339,-0.076435312628746,-0.326701700687408,-0.868651926517487,-0.233319967985153,-0.437041699886322,-0.932247817516327,-0.134427458047867,-0.335921287536621, +-0.8203005194664,-0.0976782292127609,-0.563529789447784,-0.890532433986664,0.0590007752180099,-0.451077342033386,-0.835320472717285,-0.0826358273625374,-0.543517112731934,-0.8203005194664,-0.0976782292127609,-0.563529789447784,-0.809071958065033,-0.172275766730309,-0.561892747879028,-0.920137584209442,-0.16180844604969,-0.356601685285568,-0.942031562328339,-0.076435312628746,-0.326701700687408,-0.875620543956757,0.024555929005146,-0.482374936342239,-0.868651926517487,-0.233319967985153,-0.437041699886322,-0.779849708080292,0.0270171500742435,-0.625383377075195,-0.875620543956757,0.024555929005146,-0.482374936342239,-0.773928642272949,0.303375363349915,-0.555875718593597,-0.77246755361557,0.186360120773315,-0.607094526290894,-0.718522369861603,0.268651038408279,-0.641523241996765,-0.725150048732758,0.437291860580444,-0.531914532184601,-0.684507548809052,0.486986637115479,-0.542488038539886,-0.718522369861603,0.268651038408279,-0.641523241996765,-0.773928642272949,0.303375363349915,-0.555875718593597,-0.465635806322098,0.838270902633667,-0.283698916435242,-0.515419185161591,0.802407562732697,-0.3008072078228,-0.665496587753296,0.633827269077301,-0.3941790163517,-0.665496587753296,0.633827269077301,-0.3941790163517,-0.725150048732758,0.437291860580444,-0.531914532184601,-0.582403898239136,0.674869537353516,-0.453163057565689,-0.379235625267029,0.898140609264374,-0.222539409995079,-0.386958092451096,0.879264414310455,-0.277772098779678,-0.515419185161591,0.802407562732697,-0.3008072078228,-0.31704580783844,0.928606331348419,-0.192800760269165,-0.354277938604355,0.901199281215668,-0.249653086066246,-0.386958092451096,0.879264414310455,-0.277772098779678,-0.303961277008057,0.93551105260849,-0.180073603987694,-0.351722598075867,0.914217114448547,-0.201241597533226,-0.354277938604355,0.901199281215668,-0.249653086066246,-0.932800352573395,0.322533518075943,0.160796731710434,-0.970246076583862,0.240251779556274,0.0300267897546291,-0.866234362125397,0.482962995767593,0.128002524375916,-0.954977512359619,0.237777575850487,0.177425056695938, +-0.995783150196075,0.0844391062855721,0.0358585603535175,-0.932800352573395,0.322533518075943,0.160796731710434,-0.866234362125397,0.482962995767593,0.128002524375916,-0.769551515579224,0.623329758644104,0.138745352625847,-0.69599324464798,0.686305463314056,0.211134761571884,-0.351722598075867,0.914217114448547,-0.201241597533226,-0.31016594171524,0.944184958934784,-0.110958613455296,-0.388167560100555,0.907513916492462,-0.160450413823128,-0.457974523305893,0.887162327766418,-0.0565883629024029,-0.388167560100555,0.907513916492462,-0.160450413823128,-0.31016594171524,0.944184958934784,-0.110958613455296,-0.513432919979095,0.847125887870789,0.13698174059391,-0.457974523305893,0.887162327766418,-0.0565883629024029,-0.326176375150681,0.94166088104248,0.08296749740839,-0.689817190170288,0.712683498859406,0.127413898706436,-0.606728374958038,0.761924266815186,0.226609691977501,-0.769551515579224,0.623329758644104,0.138745352625847,-0.689817190170288,0.712683498859406,0.127413898706436,-0.513432919979095,0.847125887870789,0.13698174059391,-0.482303589582443,0.840980708599091,0.245223551988602,-0.995783150196075,0.0844391062855721,0.0358585603535175,-0.954977512359619,0.237777575850487,0.177425056695938,-0.996205985546112,-0.0294287223368883,0.0818991959095001,-0.936282873153687,-0.349277257919312,-0.0371448062360287,-0.969523847103119,-0.236654981970787,-0.0633857473731041,-0.996205985546112,-0.0294287223368883,0.0818991959095001,-0.920154750347137,-0.31935840845108,-0.226550906896591,-0.90351390838623,-0.392624080181122,-0.171781346201897,-0.778771936893463,-0.579979062080383,-0.239036336541176,-0.992607951164246,0.00180038088001311,-0.12135124206543,-0.969942390918732,-0.183238491415977,-0.160110205411911,-0.793246150016785,-0.546284794807434,-0.268948525190353,-0.778771936893463,-0.579979062080383,-0.239036336541176,-0.969942390918732,-0.183238491415977,-0.160110205411911,-0.920154750347137,-0.31935840845108,-0.226550906896591,-0.936282873153687,-0.349277257919312,-0.0371448062360287,-0.888700425624847,-0.450864404439926,-0.0832629129290581, +-0.91506415605545,-0.393371492624283,-0.0889736711978912,-0.934301316738129,-0.354798495769501,-0.0346270054578781,-0.90351390838623,-0.392624080181122,-0.171781346201897,-0.888700425624847,-0.450864404439926,-0.0832629129290581,-0.978814780712128,-0.190321952104568,-0.075492262840271,-0.931347131729126,-0.331511974334717,-0.150639325380325,-0.807421088218689,-0.565440833568573,-0.168367326259613,-0.988053202629089,0.137807726860046,-0.0689908117055893,-0.978814780712128,-0.190321952104568,-0.075492262840271,-0.96582168340683,0.259201288223267,-0.00176714570261538,-0.992607951164246,0.00180038088001311,-0.12135124206543,-0.99030214548111,0.119150884449482,-0.0714468359947205,-0.96582168340683,0.259201288223267,-0.00176714570261538,-0.776767671108246,-0.609807848930359,-0.157372787594795,-0.807421088218689,-0.565440833568573,-0.168367326259613,-0.931347131729126,-0.331511974334717,-0.150639325380325,-0.776767671108246,-0.609807848930359,-0.157372787594795,-0.748318791389465,-0.645745992660522,-0.151759400963783,-0.720350027084351,-0.659702122211456,-0.214216977357864,-0.720350027084351,-0.659702122211456,-0.214216977357864,-0.652551889419556,-0.731646478176117,-0.197153031826019,-0.492045879364014,-0.816184163093567,-0.302876591682434,-0.956160962581635,0.139312699437141,0.257581204175949,-0.955940723419189,-0.0631623640656471,0.286684036254883,-0.957782328128815,-0.117794170975685,0.262254565954208,-0.942357063293457,0.228585913777351,0.244359463453293,-0.956160962581635,0.139312699437141,0.257581204175949,-0.896392226219177,0.410800218582153,0.166505411267281,-0.947533071041107,-0.179970875382423,0.264180719852448,-0.958350777626038,-0.213663339614868,0.189503639936447,-0.957782328128815,-0.117794170975685,0.262254565954208,-0.958350777626038,-0.213663339614868,0.189503639936447,-0.968871057033539,-0.242077976465225,0.0518363751471043,-0.969441473484039,-0.22924043238163,0.0873608514666557,-0.968871057033539,-0.242077976465225,0.0518363751471043,-0.993755161762238,-0.0822419822216034,-0.0754109025001526,-0.953938961029053,-0.259643346071243,-0.150285169482231, +-0.993755161762238,-0.0822419822216034,-0.0754109025001526,-0.920137584209442,-0.16180844604969,-0.356601685285568,-0.953938961029053,-0.259643346071243,-0.150285169482231,-0.928602576255798,0.352295219898224,0.116555690765381,-0.941250681877136,0.294713407754898,0.164897277951241,-0.964949667453766,0.249902233481407,0.0801306068897247,-0.861823558807373,0.477365404367447,0.171412706375122,-0.904023408889771,0.392147332429886,0.17018236219883,-0.891936242580414,0.428394734859467,0.144663691520691,-0.904023408889771,0.392147332429886,0.17018236219883,-0.928602576255798,0.352295219898224,0.116555690765381,-0.947691798210144,0.313144117593765,0.0618131756782532,-0.872059106826782,0.464915722608566,0.152860149741173,-0.861823558807373,0.477365404367447,0.171412706375122,-0.912663996219635,0.401342064142227,0.07725690305233,-0.896392226219177,0.410800218582153,0.166505411267281,-0.872059106826782,0.464915722608566,0.152860149741173,-0.942357063293457,0.228585913777351,0.244359463453293,-0.919516444206238,0.0135948592796922,-0.3928162753582,-0.932247817516327,-0.134427458047867,-0.335921287536621,-0.835320472717285,-0.0826358273625374,-0.543517112731934,-0.976238608360291,-0.043123085051775,-0.212364226579666,-0.942031562328339,-0.076435312628746,-0.326701700687408,-0.932247817516327,-0.134427458047867,-0.335921287536621,-0.920137584209442,-0.16180844604969,-0.356601685285568,-0.890532433986664,0.0590007752180099,-0.451077342033386,-0.8203005194664,-0.0976782292127609,-0.563529789447784,-0.919516444206238,0.0135948592796922,-0.3928162753582,-0.835320472717285,-0.0826358273625374,-0.543517112731934,-0.890532433986664,0.0590007752180099,-0.451077342033386,-0.942031562328339,-0.076435312628746,-0.326701700687408,-0.887060582637787,0.241135373711586,-0.39367139339447,-0.875620543956757,0.024555929005146,-0.482374936342239,-0.887060582637787,0.241135373711586,-0.39367139339447,-0.773928642272949,0.303375363349915,-0.555875718593597,-0.875620543956757,0.024555929005146,-0.482374936342239,-0.684507548809052,0.486986637115479,-0.542488038539886, +-0.725150048732758,0.437291860580444,-0.531914532184601,-0.718522369861603,0.268651038408279,-0.641523241996765,-0.74502170085907,0.529623568058014,-0.40551370382309,-0.684507548809052,0.486986637115479,-0.542488038539886,-0.773928642272949,0.303375363349915,-0.555875718593597,-0.465635806322098,0.838270902633667,-0.283698916435242,-0.379235625267029,0.898140609264374,-0.222539409995079,-0.515419185161591,0.802407562732697,-0.3008072078228,-0.665496587753296,0.633827269077301,-0.3941790163517,-0.582403898239136,0.674869537353516,-0.453163057565689,-0.465635806322098,0.838270902633667,-0.283698916435242,-0.684507548809052,0.486986637115479,-0.542488038539886,-0.582403898239136,0.674869537353516,-0.453163057565689,-0.725150048732758,0.437291860580444,-0.531914532184601,-0.379235625267029,0.898140609264374,-0.222539409995079,-0.31704580783844,0.928606331348419,-0.192800760269165,-0.386958092451096,0.879264414310455,-0.277772098779678,-0.303961277008057,0.93551105260849,-0.180073603987694,-0.354277938604355,0.901199281215668,-0.249653086066246,-0.31704580783844,0.928606331348419,-0.192800760269165,-0.31016594171524,0.944184958934784,-0.110958613455296,-0.351722598075867,0.914217114448547,-0.201241597533226,-0.303961277008057,0.93551105260849,-0.180073603987694,-0.776118874549866,0.567174136638641,0.275595366954803,-0.932800352573395,0.322533518075943,0.160796731710434,-0.866234362125397,0.482962995767593,0.128002524375916,-0.932800352573395,0.322533518075943,0.160796731710434,-0.876234471797943,0.4140345454216,0.246553003787994,-0.954977512359619,0.237777575850487,0.177425056695938,-0.606728374958038,0.761924266815186,0.226609691977501,-0.69599324464798,0.686305463314056,0.211134761571884,-0.769551515579224,0.623329758644104,0.138745352625847,-0.69599324464798,0.686305463314056,0.211134761571884,-0.776118874549866,0.567174136638641,0.275595366954803,-0.866234362125397,0.482962995767593,0.128002524375916,-0.457974523305893,0.887162327766418,-0.0565883629024029,-0.31016594171524,0.944184958934784,-0.110958613455296,-0.326176375150681,0.94166088104248,0.08296749740839, +-0.513432919979095,0.847125887870789,0.13698174059391,-0.326176375150681,0.94166088104248,0.08296749740839,-0.368671715259552,0.905612289905548,0.209636375308037,-0.482303589582443,0.840980708599091,0.245223551988602,-0.606728374958038,0.761924266815186,0.226609691977501,-0.689817190170288,0.712683498859406,0.127413898706436,-0.482303589582443,0.840980708599091,0.245223551988602,-0.513432919979095,0.847125887870789,0.13698174059391,-0.368671715259552,0.905612289905548,0.209636375308037,-0.996205985546112,-0.0294287223368883,0.0818991959095001,-0.954977512359619,0.237777575850487,0.177425056695938,-0.981300890445709,0.101564839482307,0.163502335548401,-0.936282873153687,-0.349277257919312,-0.0371448062360287,-0.996205985546112,-0.0294287223368883,0.0818991959095001,-0.980760097503662,-0.189732939004898,0.0459448881447315,-0.778771936893463,-0.579979062080383,-0.239036336541176,-0.90351390838623,-0.392624080181122,-0.171781346201897,-0.896683394908905,-0.431651651859283,-0.0981615632772446,-0.778771936893463,-0.579979062080383,-0.239036336541176,-0.793246150016785,-0.546284794807434,-0.268948525190353,-0.969942390918732,-0.183238491415977,-0.160110205411911,-0.793246150016785,-0.546284794807434,-0.268948525190353,-0.848882913589478,-0.462819129228592,-0.255335301160812,-0.992607951164246,0.00180038088001311,-0.12135124206543,-0.888700425624847,-0.450864404439926,-0.0832629129290581,-0.936282873153687,-0.349277257919312,-0.0371448062360287,-0.980760097503662,-0.189732939004898,0.0459448881447315,-0.896683394908905,-0.431651651859283,-0.0981615632772446,-0.90351390838623,-0.392624080181122,-0.171781346201897,-0.934301316738129,-0.354798495769501,-0.0346270054578781,-0.934301316738129,-0.354798495769501,-0.0346270054578781,-0.888700425624847,-0.450864404439926,-0.0832629129290581,-0.980760097503662,-0.189732939004898,0.0459448881447315,-0.978814780712128,-0.190321952104568,-0.075492262840271,-0.988053202629089,0.137807726860046,-0.0689908117055893,-0.931347131729126,-0.331511974334717,-0.150639325380325,-0.988053202629089,0.137807726860046,-0.0689908117055893, +-0.96582168340683,0.259201288223267,-0.00176714570261538,-0.945396542549133,0.321736216545105,-0.0520677044987679,-0.992607951164246,0.00180038088001311,-0.12135124206543,-0.848882913589478,-0.462819129228592,-0.255335301160812,-0.99030214548111,0.119150884449482,-0.0714468359947205,-0.99030214548111,0.119150884449482,-0.0714468359947205,-0.945396542549133,0.321736216545105,-0.0520677044987679,-0.96582168340683,0.259201288223267,-0.00176714570261538,-0.900575578212738,-0.412050127983093,-0.138484537601471,-0.776767671108246,-0.609807848930359,-0.157372787594795,-0.931347131729126,-0.331511974334717,-0.150639325380325,-0.776767671108246,-0.609807848930359,-0.157372787594795,-0.900575578212738,-0.412050127983093,-0.138484537601471,-0.748318791389465,-0.645745992660522,-0.151759400963783,-0.720350027084351,-0.659702122211456,-0.214216977357864,-0.748318791389465,-0.645745992660522,-0.151759400963783,-0.652551889419556,-0.731646478176117,-0.197153031826019,-0.441351145505905,-0.861393451690674,-0.251416712999344,-0.492045879364014,-0.816184163093567,-0.302876591682434,-0.652551889419556,-0.731646478176117,-0.197153031826019,-0.942357063293457,0.228585913777351,0.244359463453293,-0.955940723419189,-0.0631623640656471,0.286684036254883,-0.956160962581635,0.139312699437141,0.257581204175949,-0.957782328128815,-0.117794170975685,0.262254565954208,-0.955940723419189,-0.0631623640656471,0.286684036254883,-0.960816442966461,-0.170901149511337,0.218229755759239,-0.958350777626038,-0.213663339614868,0.189503639936447,-0.947533071041107,-0.179970875382423,0.264180719852448,-0.977555811405182,-0.132812187075615,0.163540229201317,-0.957782328128815,-0.117794170975685,0.262254565954208,-0.94210296869278,-0.213476121425629,0.258592009544373,-0.947533071041107,-0.179970875382423,0.264180719852448,-0.958350777626038,-0.213663339614868,0.189503639936447,-0.977555811405182,-0.132812187075615,0.163540229201317,-0.968871057033539,-0.242077976465225,0.0518363751471043,-0.968871057033539,-0.242077976465225,0.0518363751471043,-0.977555811405182,-0.132812187075615,0.163540229201317, +-0.993755161762238,-0.0822419822216034,-0.0754109025001526,-0.920137584209442,-0.16180844604969,-0.356601685285568,-0.993755161762238,-0.0822419822216034,-0.0754109025001526,-0.958474218845367,0.06336709856987,-0.278049916028976,-0.904023408889771,0.392147332429886,0.17018236219883,-0.942601799964905,0.327495872974396,0.0651786327362061,-0.891936242580414,0.428394734859467,0.144663691520691,-0.861823558807373,0.477365404367447,0.171412706375122,-0.891936242580414,0.428394734859467,0.144663691520691,-0.912663996219635,0.401342064142227,0.07725690305233,-0.947691798210144,0.313144117593765,0.0618131756782532,-0.942601799964905,0.327495872974396,0.0651786327362061,-0.904023408889771,0.392147332429886,0.17018236219883,-0.912663996219635,0.401342064142227,0.07725690305233,-0.966404438018799,0.229635208845139,0.115455456078053,-0.872059106826782,0.464915722608566,0.152860149741173,-0.942357063293457,0.228585913777351,0.244359463453293,-0.872059106826782,0.464915722608566,0.152860149741173,-0.966404438018799,0.229635208845139,0.115455456078053,-0.919516444206238,0.0135948592796922,-0.3928162753582,-0.95650589466095,-0.044923223555088,-0.288233041763306,-0.932247817516327,-0.134427458047867,-0.335921287536621,-0.976238608360291,-0.043123085051775,-0.212364226579666,-0.95135623216629,0.147671192884445,-0.270396769046783,-0.942031562328339,-0.076435312628746,-0.326701700687408,-0.976238608360291,-0.043123085051775,-0.212364226579666,-0.932247817516327,-0.134427458047867,-0.335921287536621,-0.95650589466095,-0.044923223555088,-0.288233041763306,-0.920137584209442,-0.16180844604969,-0.356601685285568,-0.958474218845367,0.06336709856987,-0.278049916028976,-0.890532433986664,0.0590007752180099,-0.451077342033386,-0.919516444206238,0.0135948592796922,-0.3928162753582,-0.890532433986664,0.0590007752180099,-0.451077342033386,-0.958985507488251,0.0958414524793625,-0.266760319471359,-0.942031562328339,-0.076435312628746,-0.326701700687408,-0.95135623216629,0.147671192884445,-0.270396769046783,-0.887060582637787,0.241135373711586,-0.39367139339447, +-0.887060582637787,0.241135373711586,-0.39367139339447,-0.74502170085907,0.529623568058014,-0.40551370382309,-0.773928642272949,0.303375363349915,-0.555875718593597,-0.74502170085907,0.529623568058014,-0.40551370382309,-0.612054944038391,0.67638623714447,-0.409744262695313,-0.684507548809052,0.486986637115479,-0.542488038539886,-0.465635806322098,0.838270902633667,-0.283698916435242,-0.37371426820755,0.912411391735077,-0.166862055659294,-0.379235625267029,0.898140609264374,-0.222539409995079,-0.465635806322098,0.838270902633667,-0.283698916435242,-0.582403898239136,0.674869537353516,-0.453163057565689,-0.511559724807739,0.786329925060272,-0.346398144960403,-0.612054944038391,0.67638623714447,-0.409744262695313,-0.582403898239136,0.674869537353516,-0.453163057565689,-0.684507548809052,0.486986637115479,-0.542488038539886,-0.31704580783844,0.928606331348419,-0.192800760269165,-0.379235625267029,0.898140609264374,-0.222539409995079,-0.37371426820755,0.912411391735077,-0.166862055659294,-0.303961277008057,0.93551105260849,-0.180073603987694,-0.31704580783844,0.928606331348419,-0.192800760269165,-0.258948415517807,0.954689562320709,-0.146674886345863,-0.31016594171524,0.944184958934784,-0.110958613455296,-0.303961277008057,0.93551105260849,-0.180073603987694,-0.232420578598976,0.963991582393646,-0.129231512546539,-0.776118874549866,0.567174136638641,0.275595366954803,-0.876234471797943,0.4140345454216,0.246553003787994,-0.932800352573395,0.322533518075943,0.160796731710434,-0.876234471797943,0.4140345454216,0.246553003787994,-0.832619369029999,0.460590898990631,0.307572722434998,-0.954977512359619,0.237777575850487,0.177425056695938,-0.486638784408569,0.819304049015045,0.30318883061409,-0.69599324464798,0.686305463314056,0.211134761571884,-0.606728374958038,0.761924266815186,0.226609691977501,-0.69599324464798,0.686305463314056,0.211134761571884,-0.588843584060669,0.741635322570801,0.321309804916382,-0.776118874549866,0.567174136638641,0.275595366954803,-0.482303589582443,0.840980708599091,0.245223551988602,-0.390067994594574,0.867132723331451,0.309721827507019, +-0.606728374958038,0.761924266815186,0.226609691977501,-0.954977512359619,0.237777575850487,0.177425056695938,-0.908743560314178,0.31849592924118,0.269713670015335,-0.981300890445709,0.101564839482307,0.163502335548401,-0.996205985546112,-0.0294287223368883,0.0818991959095001,-0.981300890445709,0.101564839482307,0.163502335548401,-0.980760097503662,-0.189732939004898,0.0459448881447315,-0.896683394908905,-0.431651651859283,-0.0981615632772446,-0.803045988082886,-0.561867356300354,-0.198549792170525,-0.778771936893463,-0.579979062080383,-0.239036336541176,-0.778771936893463,-0.579979062080383,-0.239036336541176,-0.803045988082886,-0.561867356300354,-0.198549792170525,-0.793246150016785,-0.546284794807434,-0.268948525190353,-0.793246150016785,-0.546284794807434,-0.268948525190353,-0.734223306179047,-0.625573933124542,-0.263767629861832,-0.848882913589478,-0.462819129228592,-0.255335301160812,-0.896683394908905,-0.431651651859283,-0.0981615632772446,-0.934301316738129,-0.354798495769501,-0.0346270054578781,-0.994361281394959,-0.061958834528923,0.0860617458820343,-0.934301316738129,-0.354798495769501,-0.0346270054578781,-0.980760097503662,-0.189732939004898,0.0459448881447315,-0.994361281394959,-0.061958834528923,0.0860617458820343,-0.979309976100922,0.184114187955856,-0.0839870572090149,-0.931347131729126,-0.331511974334717,-0.150639325380325,-0.988053202629089,0.137807726860046,-0.0689908117055893,-0.979309976100922,0.184114187955856,-0.0839870572090149,-0.988053202629089,0.137807726860046,-0.0689908117055893,-0.945396542549133,0.321736216545105,-0.0520677044987679,-0.99030214548111,0.119150884449482,-0.0714468359947205,-0.848882913589478,-0.462819129228592,-0.255335301160812,-0.967267870903015,-0.162063643336296,-0.195264309644699,-0.99030214548111,0.119150884449482,-0.0714468359947205,-0.967267870903015,-0.162063643336296,-0.195264309644699,-0.945396542549133,0.321736216545105,-0.0520677044987679,-0.900575578212738,-0.412050127983093,-0.138484537601471,-0.931347131729126,-0.331511974334717,-0.150639325380325,-0.979309976100922,0.184114187955856,-0.0839870572090149, +-0.708527803421021,-0.695728242397308,-0.118112452328205,-0.748318791389465,-0.645745992660522,-0.151759400963783,-0.900575578212738,-0.412050127983093,-0.138484537601471,-0.708527803421021,-0.695728242397308,-0.118112452328205,-0.652551889419556,-0.731646478176117,-0.197153031826019,-0.748318791389465,-0.645745992660522,-0.151759400963783,-0.441351145505905,-0.861393451690674,-0.251416712999344,-0.652551889419556,-0.731646478176117,-0.197153031826019,-0.569083690643311,-0.798038482666016,-0.198187246918678,-0.942357063293457,0.228585913777351,0.244359463453293,-0.970814406871796,-0.106576628983021,0.214850321412086,-0.955940723419189,-0.0631623640656471,0.286684036254883,-0.955940723419189,-0.0631623640656471,0.286684036254883,-0.951265811920166,-0.275228083133698,0.139078438282013,-0.960816442966461,-0.170901149511337,0.218229755759239,-0.94210296869278,-0.213476121425629,0.258592009544373,-0.957782328128815,-0.117794170975685,0.262254565954208,-0.960816442966461,-0.170901149511337,0.218229755759239,-0.947533071041107,-0.179970875382423,0.264180719852448,-0.988603115081787,-0.0781260877847672,0.128686025738716,-0.977555811405182,-0.132812187075615,0.163540229201317,-0.9556804895401,-0.227118745446205,0.187328115105629,-0.947533071041107,-0.179970875382423,0.264180719852448,-0.94210296869278,-0.213476121425629,0.258592009544373,-0.996930301189423,0.0281646940857172,0.0730520337820053,-0.993755161762238,-0.0822419822216034,-0.0754109025001526,-0.977555811405182,-0.132812187075615,0.163540229201317,-0.958474218845367,0.06336709856987,-0.278049916028976,-0.993755161762238,-0.0822419822216034,-0.0754109025001526,-0.992490112781525,0.0816010013222694,-0.0911293253302574,-0.942601799964905,0.327495872974396,0.0651786327362061,-0.958421111106873,0.285003393888474,-0.0142101710662246,-0.891936242580414,0.428394734859467,0.144663691520691,-0.912663996219635,0.401342064142227,0.07725690305233,-0.891936242580414,0.428394734859467,0.144663691520691,-0.958421111106873,0.285003393888474,-0.0142101710662246,-0.947691798210144,0.313144117593765,0.0618131756782532, +-0.974467277526855,0.224493384361267,0.00402954174205661,-0.942601799964905,0.327495872974396,0.0651786327362061,-0.912663996219635,0.401342064142227,0.07725690305233,-0.958693146705627,0.284431636333466,-0.00245903921313584,-0.966404438018799,0.229635208845139,0.115455456078053,-0.942357063293457,0.228585913777351,0.244359463453293,-0.966404438018799,0.229635208845139,0.115455456078053,-0.970814406871796,-0.106576628983021,0.214850321412086,-0.919516444206238,0.0135948592796922,-0.3928162753582,-0.958985507488251,0.0958414524793625,-0.266760319471359,-0.95650589466095,-0.044923223555088,-0.288233041763306,-0.95135623216629,0.147671192884445,-0.270396769046783,-0.976238608360291,-0.043123085051775,-0.212364226579666,-0.951296627521515,0.246235713362694,-0.185479208827019,-0.976238608360291,-0.043123085051775,-0.212364226579666,-0.95650589466095,-0.044923223555088,-0.288233041763306,-0.989794492721558,0.000751848274376243,-0.142500057816505,-0.958474218845367,0.06336709856987,-0.278049916028976,-0.958985507488251,0.0958414524793625,-0.266760319471359,-0.890532433986664,0.0590007752180099,-0.451077342033386,-0.887060582637787,0.241135373711586,-0.39367139339447,-0.95135623216629,0.147671192884445,-0.270396769046783,-0.854314565658569,0.458988815546036,-0.243876561522484,-0.854314565658569,0.458988815546036,-0.243876561522484,-0.74502170085907,0.529623568058014,-0.40551370382309,-0.887060582637787,0.241135373711586,-0.39367139339447,-0.612054944038391,0.67638623714447,-0.409744262695313,-0.74502170085907,0.529623568058014,-0.40551370382309,-0.622354745864868,0.7222940325737,-0.301605254411697,-0.37371426820755,0.912411391735077,-0.166862055659294,-0.465635806322098,0.838270902633667,-0.283698916435242,-0.496892601251602,0.841214299201965,-0.213204398751259,-0.612054944038391,0.67638623714447,-0.409744262695313,-0.511559724807739,0.786329925060272,-0.346398144960403,-0.582403898239136,0.674869537353516,-0.453163057565689,-0.465635806322098,0.838270902633667,-0.283698916435242,-0.511559724807739,0.786329925060272,-0.346398144960403, +-0.496892601251602,0.841214299201965,-0.213204398751259,-0.37371426820755,0.912411391735077,-0.166862055659294,-0.297655403614044,0.947603464126587,-0.115969084203243,-0.31704580783844,0.928606331348419,-0.192800760269165,-0.31704580783844,0.928606331348419,-0.192800760269165,-0.297655403614044,0.947603464126587,-0.115969084203243,-0.258948415517807,0.954689562320709,-0.146674886345863,-0.258948415517807,0.954689562320709,-0.146674886345863,-0.232420578598976,0.963991582393646,-0.129231512546539,-0.303961277008057,0.93551105260849,-0.180073603987694,-0.776118874549866,0.567174136638641,0.275595366954803,-0.749916791915894,0.566605985164642,0.341441720724106,-0.876234471797943,0.4140345454216,0.246553003787994,-0.749916791915894,0.566605985164642,0.341441720724106,-0.832619369029999,0.460590898990631,0.307572722434998,-0.876234471797943,0.4140345454216,0.246553003787994,-0.954977512359619,0.237777575850487,0.177425056695938,-0.832619369029999,0.460590898990631,0.307572722434998,-0.908743560314178,0.31849592924118,0.269713670015335,-0.486638784408569,0.819304049015045,0.30318883061409,-0.588843584060669,0.741635322570801,0.321309804916382,-0.69599324464798,0.686305463314056,0.211134761571884,-0.486638784408569,0.819304049015045,0.30318883061409,-0.606728374958038,0.761924266815186,0.226609691977501,-0.390067994594574,0.867132723331451,0.309721827507019,-0.631712675094604,0.674052774906158,0.382873028516769,-0.776118874549866,0.567174136638641,0.275595366954803,-0.588843584060669,0.741635322570801,0.321309804916382,-0.956071615219116,0.205102950334549,0.209427326917648,-0.981300890445709,0.101564839482307,0.163502335548401,-0.908743560314178,0.31849592924118,0.269713670015335,-0.981300890445709,0.101564839482307,0.163502335548401,-0.994361281394959,-0.061958834528923,0.0860617458820343,-0.980760097503662,-0.189732939004898,0.0459448881447315,-0.896683394908905,-0.431651651859283,-0.0981615632772446,-0.97580760717392,-0.218472957611084,-0.00830839201807976,-0.803045988082886,-0.561867356300354,-0.198549792170525,-0.793246150016785,-0.546284794807434,-0.268948525190353, +-0.803045988082886,-0.561867356300354,-0.198549792170525,-0.734223306179047,-0.625573933124542,-0.263767629861832,-0.848882913589478,-0.462819129228592,-0.255335301160812,-0.734223306179047,-0.625573933124542,-0.263767629861832,-0.715379893779755,-0.629965424537659,-0.302282959222794,-0.97580760717392,-0.218472957611084,-0.00830839201807976,-0.896683394908905,-0.431651651859283,-0.0981615632772446,-0.994361281394959,-0.061958834528923,0.0860617458820343,-0.952745676040649,0.272706508636475,-0.133815184235573,-0.979309976100922,0.184114187955856,-0.0839870572090149,-0.945396542549133,0.321736216545105,-0.0520677044987679,-0.967267870903015,-0.162063643336296,-0.195264309644699,-0.848882913589478,-0.462819129228592,-0.255335301160812,-0.715379893779755,-0.629965424537659,-0.302282959222794,-0.952745676040649,0.272706508636475,-0.133815184235573,-0.945396542549133,0.321736216545105,-0.0520677044987679,-0.967267870903015,-0.162063643336296,-0.195264309644699,-0.900575578212738,-0.412050127983093,-0.138484537601471,-0.979309976100922,0.184114187955856,-0.0839870572090149,-0.990953087806702,-0.0587549693882465,-0.12066400796175,-0.900575578212738,-0.412050127983093,-0.138484537601471,-0.917203426361084,-0.393740117549896,-0.0608809813857079,-0.708527803421021,-0.695728242397308,-0.118112452328205,-0.652551889419556,-0.731646478176117,-0.197153031826019,-0.708527803421021,-0.695728242397308,-0.118112452328205,-0.569083690643311,-0.798038482666016,-0.198187246918678,-0.441351145505905,-0.861393451690674,-0.251416712999344,-0.569083690643311,-0.798038482666016,-0.198187246918678,-0.362745553255081,-0.900287389755249,-0.240620389580727,-0.970814406871796,-0.106576628983021,0.214850321412086,-0.951265811920166,-0.275228083133698,0.139078438282013,-0.955940723419189,-0.0631623640656471,0.286684036254883,-0.951265811920166,-0.275228083133698,0.139078438282013,-0.950047016143799,-0.292958706617355,0.107636846601963,-0.960816442966461,-0.170901149511337,0.218229755759239,-0.94210296869278,-0.213476121425629,0.258592009544373,-0.960816442966461,-0.170901149511337,0.218229755759239, +-0.950047016143799,-0.292958706617355,0.107636846601963,-0.9556804895401,-0.227118745446205,0.187328115105629,-0.988603115081787,-0.0781260877847672,0.128686025738716,-0.947533071041107,-0.179970875382423,0.264180719852448,-0.996930301189423,0.0281646940857172,0.0730520337820053,-0.977555811405182,-0.132812187075615,0.163540229201317,-0.988603115081787,-0.0781260877847672,0.128686025738716,-0.9556804895401,-0.227118745446205,0.187328115105629,-0.94210296869278,-0.213476121425629,0.258592009544373,-0.950047016143799,-0.292958706617355,0.107636846601963,-0.992490112781525,0.0816010013222694,-0.0911293253302574,-0.993755161762238,-0.0822419822216034,-0.0754109025001526,-0.996930301189423,0.0281646940857172,0.0730520337820053,-0.958474218845367,0.06336709856987,-0.278049916028976,-0.992490112781525,0.0816010013222694,-0.0911293253302574,-0.958985507488251,0.0958414524793625,-0.266760319471359,-0.942601799964905,0.327495872974396,0.0651786327362061,-0.98552018404007,0.159361496567726,-0.0579111985862255,-0.958421111106873,0.285003393888474,-0.0142101710662246,-0.958693146705627,0.284431636333466,-0.00245903921313584,-0.912663996219635,0.401342064142227,0.07725690305233,-0.958421111106873,0.285003393888474,-0.0142101710662246,-0.974467277526855,0.224493384361267,0.00402954174205661,-0.947691798210144,0.313144117593765,0.0618131756782532,-0.989172875881195,0.145022228360176,-0.0224830806255341,-0.974467277526855,0.224493384361267,0.00402954174205661,-0.98552018404007,0.159361496567726,-0.0579111985862255,-0.942601799964905,0.327495872974396,0.0651786327362061,-0.958693146705627,0.284431636333466,-0.00245903921313584,-0.992639303207397,0.110842667520046,-0.048793513327837,-0.966404438018799,0.229635208845139,0.115455456078053,-0.966404438018799,0.229635208845139,0.115455456078053,-0.980212032794952,-0.184419468045235,0.0719289407134056,-0.970814406871796,-0.106576628983021,0.214850321412086,-0.958985507488251,0.0958414524793625,-0.266760319471359,-0.989794492721558,0.000751848274376243,-0.142500057816505,-0.95650589466095,-0.044923223555088,-0.288233041763306, +-0.980838477611542,0.169337689876556,-0.0963354930281639,-0.951296627521515,0.246235713362694,-0.185479208827019,-0.976238608360291,-0.043123085051775,-0.212364226579666,-0.951296627521515,0.246235713362694,-0.185479208827019,-0.854314565658569,0.458988815546036,-0.243876561522484,-0.95135623216629,0.147671192884445,-0.270396769046783,-0.989794492721558,0.000751848274376243,-0.142500057816505,-0.996024429798126,0.0161139313131571,-0.0876108333468437,-0.976238608360291,-0.043123085051775,-0.212364226579666,-0.854314565658569,0.458988815546036,-0.243876561522484,-0.675678372383118,0.717088997364044,-0.17100328207016,-0.74502170085907,0.529623568058014,-0.40551370382309,-0.675678372383118,0.717088997364044,-0.17100328207016,-0.622354745864868,0.7222940325737,-0.301605254411697,-0.74502170085907,0.529623568058014,-0.40551370382309,-0.612054944038391,0.67638623714447,-0.409744262695313,-0.622354745864868,0.7222940325737,-0.301605254411697,-0.496892601251602,0.841214299201965,-0.213204398751259,-0.420735329389572,0.901651918888092,-0.100027710199356,-0.37371426820755,0.912411391735077,-0.166862055659294,-0.496892601251602,0.841214299201965,-0.213204398751259,-0.496892601251602,0.841214299201965,-0.213204398751259,-0.511559724807739,0.786329925060272,-0.346398144960403,-0.612054944038391,0.67638623714447,-0.409744262695313,-0.297655403614044,0.947603464126587,-0.115969084203243,-0.37371426820755,0.912411391735077,-0.166862055659294,-0.3609619140625,0.927794456481934,-0.0943606421351433,-0.631712675094604,0.674052774906158,0.382873028516769,-0.749916791915894,0.566605985164642,0.341441720724106,-0.776118874549866,0.567174136638641,0.275595366954803,-0.749916791915894,0.566605985164642,0.341441720724106,-0.64701122045517,0.640067398548126,0.41435495018959,-0.832619369029999,0.460590898990631,0.307572722434998,-0.772884249687195,0.522357702255249,0.360266804695129,-0.908743560314178,0.31849592924118,0.269713670015335,-0.832619369029999,0.460590898990631,0.307572722434998,-0.486638784408569,0.819304049015045,0.30318883061409, +-0.389376103878021,0.837724328041077,0.382889032363892,-0.588843584060669,0.741635322570801,0.321309804916382,-0.456937879323959,0.77647340297699,0.433931648731232,-0.631712675094604,0.674052774906158,0.382873028516769,-0.588843584060669,0.741635322570801,0.321309804916382,-0.981300890445709,0.101564839482307,0.163502335548401,-0.956071615219116,0.205102950334549,0.209427326917648,-0.994361281394959,-0.061958834528923,0.0860617458820343,-0.956071615219116,0.205102950334549,0.209427326917648,-0.908743560314178,0.31849592924118,0.269713670015335,-0.837617039680481,0.438248604536057,0.326091736555099,-0.905362844467163,-0.401221215724945,-0.139066860079765,-0.803045988082886,-0.561867356300354,-0.198549792170525,-0.97580760717392,-0.218472957611084,-0.00830839201807976,-0.905362844467163,-0.401221215724945,-0.139066860079765,-0.734223306179047,-0.625573933124542,-0.263767629861832,-0.803045988082886,-0.561867356300354,-0.198549792170525,-0.734223306179047,-0.625573933124542,-0.263767629861832,-0.859799861907959,-0.480646729469299,-0.172402963042259,-0.715379893779755,-0.629965424537659,-0.302282959222794,-0.97580760717392,-0.218472957611084,-0.00830839201807976,-0.994361281394959,-0.061958834528923,0.0860617458820343,-0.985692799091339,0.106036469340324,0.131017804145813,-0.952745676040649,0.272706508636475,-0.133815184235573,-0.976824104785919,0.177795603871346,-0.11917757242918,-0.979309976100922,0.184114187955856,-0.0839870572090149,-0.967267870903015,-0.162063643336296,-0.195264309644699,-0.715379893779755,-0.629965424537659,-0.302282959222794,-0.925759971141815,-0.230548918247223,-0.299692422151566,-0.967267870903015,-0.162063643336296,-0.195264309644699,-0.925759971141815,-0.230548918247223,-0.299692422151566,-0.952745676040649,0.272706508636475,-0.133815184235573,-0.979309976100922,0.184114187955856,-0.0839870572090149,-0.976824104785919,0.177795603871346,-0.11917757242918,-0.990953087806702,-0.0587549693882465,-0.12066400796175,-0.976824104785919,0.177795603871346,-0.11917757242918,-0.900575578212738,-0.412050127983093,-0.138484537601471, +-0.990953087806702,-0.0587549693882465,-0.12066400796175,-0.900575578212738,-0.412050127983093,-0.138484537601471,-0.976824104785919,0.177795603871346,-0.11917757242918,-0.917203426361084,-0.393740117549896,-0.0608809813857079,-0.917203426361084,-0.393740117549896,-0.0608809813857079,-0.731570363044739,-0.679027020931244,-0.0610487796366215,-0.708527803421021,-0.695728242397308,-0.118112452328205,-0.569083690643311,-0.798038482666016,-0.198187246918678,-0.708527803421021,-0.695728242397308,-0.118112452328205,-0.548344194889069,-0.826669573783875,-0.126237332820892,-0.569083690643311,-0.798038482666016,-0.198187246918678,-0.548344194889069,-0.826669573783875,-0.126237332820892,-0.362745553255081,-0.900287389755249,-0.240620389580727,-0.970814406871796,-0.106576628983021,0.214850321412086,-0.924951493740082,-0.375318437814713,0.0600053742527962,-0.951265811920166,-0.275228083133698,0.139078438282013,-0.951265811920166,-0.275228083133698,0.139078438282013,-0.930926501750946,-0.364020228385925,-0.0294114220887423,-0.950047016143799,-0.292958706617355,0.107636846601963,-0.9556804895401,-0.227118745446205,0.187328115105629,-0.989413976669312,-0.129337266087532,0.0658158287405968,-0.988603115081787,-0.0781260877847672,0.128686025738716,-0.998705923557281,-0.00174687209073454,0.0508270114660263,-0.996930301189423,0.0281646940857172,0.0730520337820053,-0.988603115081787,-0.0781260877847672,0.128686025738716,-0.9556804895401,-0.227118745446205,0.187328115105629,-0.950047016143799,-0.292958706617355,0.107636846601963,-0.957259058952332,-0.284246832132339,0.0534676909446716,-0.996930301189423,0.0281646940857172,0.0730520337820053,-0.992733538150787,0.098325751721859,-0.0693689733743668,-0.992490112781525,0.0816010013222694,-0.0911293253302574,-0.958985507488251,0.0958414524793625,-0.266760319471359,-0.992490112781525,0.0816010013222694,-0.0911293253302574,-0.992733538150787,0.098325751721859,-0.0693689733743668,-0.958421111106873,0.285003393888474,-0.0142101710662246,-0.98552018404007,0.159361496567726,-0.0579111985862255,-0.988447546958923,0.0579709261655808,-0.140038296580315, +-0.992639303207397,0.110842667520046,-0.048793513327837,-0.958693146705627,0.284431636333466,-0.00245903921313584,-0.958421111106873,0.285003393888474,-0.0142101710662246,-0.98552018404007,0.159361496567726,-0.0579111985862255,-0.974467277526855,0.224493384361267,0.00402954174205661,-0.989172875881195,0.145022228360176,-0.0224830806255341,-0.966404438018799,0.229635208845139,0.115455456078053,-0.992639303207397,0.110842667520046,-0.048793513327837,-0.980212032794952,-0.184419468045235,0.0719289407134056,-0.970814406871796,-0.106576628983021,0.214850321412086,-0.980212032794952,-0.184419468045235,0.0719289407134056,-0.924951493740082,-0.375318437814713,0.0600053742527962,-0.992733538150787,0.098325751721859,-0.0693689733743668,-0.989794492721558,0.000751848274376243,-0.142500057816505,-0.958985507488251,0.0958414524793625,-0.266760319471359,-0.980838477611542,0.169337689876556,-0.0963354930281639,-0.863733470439911,0.500856697559357,-0.0557407550513744,-0.951296627521515,0.246235713362694,-0.185479208827019,-0.980838477611542,0.169337689876556,-0.0963354930281639,-0.976238608360291,-0.043123085051775,-0.212364226579666,-0.996024429798126,0.0161139313131571,-0.0876108333468437,-0.951296627521515,0.246235713362694,-0.185479208827019,-0.863733470439911,0.500856697559357,-0.0557407550513744,-0.854314565658569,0.458988815546036,-0.243876561522484,-0.996884822845459,-0.0243804212659597,-0.075007937848568,-0.996024429798126,0.0161139313131571,-0.0876108333468437,-0.989794492721558,0.000751848274376243,-0.142500057816505,-0.863733470439911,0.500856697559357,-0.0557407550513744,-0.675678372383118,0.717088997364044,-0.17100328207016,-0.854314565658569,0.458988815546036,-0.243876561522484,-0.675678372383118,0.717088997364044,-0.17100328207016,-0.496892601251602,0.841214299201965,-0.213204398751259,-0.622354745864868,0.7222940325737,-0.301605254411697,-0.3609619140625,0.927794456481934,-0.0943606421351433,-0.37371426820755,0.912411391735077,-0.166862055659294,-0.420735329389572,0.901651918888092,-0.100027710199356,-0.496892601251602,0.841214299201965,-0.213204398751259, +-0.513355910778046,0.853066086769104,-0.0935083627700806,-0.420735329389572,0.901651918888092,-0.100027710199356,-0.297655403614044,0.947603464126587,-0.115969084203243,-0.3609619140625,0.927794456481934,-0.0943606421351433,-0.334258258342743,0.941270470619202,-0.0477618277072906,-0.64701122045517,0.640067398548126,0.41435495018959,-0.749916791915894,0.566605985164642,0.341441720724106,-0.631712675094604,0.674052774906158,0.382873028516769,-0.772884249687195,0.522357702255249,0.360266804695129,-0.832619369029999,0.460590898990631,0.307572722434998,-0.64701122045517,0.640067398548126,0.41435495018959,-0.772884249687195,0.522357702255249,0.360266804695129,-0.837617039680481,0.438248604536057,0.326091736555099,-0.908743560314178,0.31849592924118,0.269713670015335,-0.456937879323959,0.77647340297699,0.433931648731232,-0.588843584060669,0.741635322570801,0.321309804916382,-0.389376103878021,0.837724328041077,0.382889032363892,-0.64701122045517,0.640067398548126,0.41435495018959,-0.631712675094604,0.674052774906158,0.382873028516769,-0.456937879323959,0.77647340297699,0.433931648731232,-0.994361281394959,-0.061958834528923,0.0860617458820343,-0.956071615219116,0.205102950334549,0.209427326917648,-0.985692799091339,0.106036469340324,0.131017804145813,-0.837617039680481,0.438248604536057,0.326091736555099,-0.922126710414886,0.30422168970108,0.239021241664886,-0.956071615219116,0.205102950334549,0.209427326917648,-0.996742010116577,-0.0741326510906219,0.0317739620804787,-0.905362844467163,-0.401221215724945,-0.139066860079765,-0.97580760717392,-0.218472957611084,-0.00830839201807976,-0.905362844467163,-0.401221215724945,-0.139066860079765,-0.859799861907959,-0.480646729469299,-0.172402963042259,-0.734223306179047,-0.625573933124542,-0.263767629861832,-0.715379893779755,-0.629965424537659,-0.302282959222794,-0.859799861907959,-0.480646729469299,-0.172402963042259,-0.77388858795166,-0.579720020294189,-0.254992097616196,-0.985692799091339,0.106036469340324,0.131017804145813,-0.996742010116577,-0.0741326510906219,0.0317739620804787, +-0.97580760717392,-0.218472957611084,-0.00830839201807976,-0.952745676040649,0.272706508636475,-0.133815184235573,-0.981590270996094,-0.0107182590290904,-0.190697595477104,-0.976824104785919,0.177795603871346,-0.11917757242918,-0.751251101493835,-0.546010851860046,-0.370801448822021,-0.925759971141815,-0.230548918247223,-0.299692422151566,-0.715379893779755,-0.629965424537659,-0.302282959222794,-0.925759971141815,-0.230548918247223,-0.299692422151566,-0.981590270996094,-0.0107182590290904,-0.190697595477104,-0.952745676040649,0.272706508636475,-0.133815184235573,-0.976824104785919,0.177795603871346,-0.11917757242918,-0.993027627468109,0.053819727152586,-0.104878149926662,-0.917203426361084,-0.393740117549896,-0.0608809813857079,-0.917203426361084,-0.393740117549896,-0.0608809813857079,-0.934177219867706,-0.347018748521805,-0.0830110162496567,-0.731570363044739,-0.679027020931244,-0.0610487796366215,-0.708527803421021,-0.695728242397308,-0.118112452328205,-0.731570363044739,-0.679027020931244,-0.0610487796366215,-0.548344194889069,-0.826669573783875,-0.126237332820892,-0.394419997930527,-0.905290722846985,-0.157738924026489,-0.362745553255081,-0.900287389755249,-0.240620389580727,-0.548344194889069,-0.826669573783875,-0.126237332820892,-0.951265811920166,-0.275228083133698,0.139078438282013,-0.924951493740082,-0.375318437814713,0.0600053742527962,-0.930926501750946,-0.364020228385925,-0.0294114220887423,-0.930926501750946,-0.364020228385925,-0.0294114220887423,-0.957259058952332,-0.284246832132339,0.0534676909446716,-0.950047016143799,-0.292958706617355,0.107636846601963,-0.9556804895401,-0.227118745446205,0.187328115105629,-0.957259058952332,-0.284246832132339,0.0534676909446716,-0.989413976669312,-0.129337266087532,0.0658158287405968,-0.997740924358368,0.00800285860896111,0.0666984617710114,-0.988603115081787,-0.0781260877847672,0.128686025738716,-0.989413976669312,-0.129337266087532,0.0658158287405968,-0.996930301189423,0.0281646940857172,0.0730520337820053,-0.998705923557281,-0.00174687209073454,0.0508270114660263, +-0.999241948127747,0.0284952707588673,-0.0265224277973175,-0.988603115081787,-0.0781260877847672,0.128686025738716,-0.997740924358368,0.00800285860896111,0.0666984617710114,-0.998705923557281,-0.00174687209073454,0.0508270114660263,-0.992733538150787,0.098325751721859,-0.0693689733743668,-0.996930301189423,0.0281646940857172,0.0730520337820053,-0.999241948127747,0.0284952707588673,-0.0265224277973175,-0.992830097675323,0.0260249227285385,-0.116666354238987,-0.988447546958923,0.0579709261655808,-0.140038296580315,-0.98552018404007,0.159361496567726,-0.0579111985862255,-0.992639303207397,0.110842667520046,-0.048793513327837,-0.958421111106873,0.285003393888474,-0.0142101710662246,-0.988447546958923,0.0579709261655808,-0.140038296580315,-0.98552018404007,0.159361496567726,-0.0579111985862255,-0.989172875881195,0.145022228360176,-0.0224830806255341,-0.997194766998291,0.0435187071561813,-0.0608982443809509,-0.980212032794952,-0.184419468045235,0.0719289407134056,-0.992639303207397,0.110842667520046,-0.048793513327837,-0.988271474838257,-0.125050574541092,-0.0876458436250687,-0.980212032794952,-0.184419468045235,0.0719289407134056,-0.94375616312027,-0.323349446058273,0.0690604895353317,-0.924951493740082,-0.375318437814713,0.0600053742527962,-0.992733538150787,0.098325751721859,-0.0693689733743668,-0.999241948127747,0.0284952707588673,-0.0265224277973175,-0.989794492721558,0.000751848274376243,-0.142500057816505,-0.980838477611542,0.169337689876556,-0.0963354930281639,-0.964618325233459,0.263461500406265,-0.00996738579124212,-0.863733470439911,0.500856697559357,-0.0557407550513744,-0.980838477611542,0.169337689876556,-0.0963354930281639,-0.996024429798126,0.0161139313131571,-0.0876108333468437,-0.964618325233459,0.263461500406265,-0.00996738579124212,-0.996024429798126,0.0161139313131571,-0.0876108333468437,-0.996884822845459,-0.0243804212659597,-0.075007937848568,-0.995606541633606,0.0921531841158867,0.016590828076005,-0.999241948127747,0.0284952707588673,-0.0265224277973175,-0.996884822845459,-0.0243804212659597,-0.075007937848568, +-0.989794492721558,0.000751848274376243,-0.142500057816505,-0.863733470439911,0.500856697559357,-0.0557407550513744,-0.636706829071045,0.77055561542511,0.0291256196796894,-0.675678372383118,0.717088997364044,-0.17100328207016,-0.496892601251602,0.841214299201965,-0.213204398751259,-0.675678372383118,0.717088997364044,-0.17100328207016,-0.513355910778046,0.853066086769104,-0.0935083627700806,-0.3609619140625,0.927794456481934,-0.0943606421351433,-0.420735329389572,0.901651918888092,-0.100027710199356,-0.381538152694702,0.924163937568665,-0.0186962112784386,-0.420735329389572,0.901651918888092,-0.100027710199356,-0.513355910778046,0.853066086769104,-0.0935083627700806,-0.462179392576218,0.886340141296387,-0.0281292870640755,-0.3609619140625,0.927794456481934,-0.0943606421351433,-0.381538152694702,0.924163937568665,-0.0186962112784386,-0.334258258342743,0.941270470619202,-0.0477618277072906,-0.636481642723084,0.655692875385284,0.406150013208389,-0.772884249687195,0.522357702255249,0.360266804695129,-0.64701122045517,0.640067398548126,0.41435495018959,-0.772884249687195,0.522357702255249,0.360266804695129,-0.636481642723084,0.655692875385284,0.406150013208389,-0.837617039680481,0.438248604536057,0.326091736555099,-0.636481642723084,0.655692875385284,0.406150013208389,-0.64701122045517,0.640067398548126,0.41435495018959,-0.456937879323959,0.77647340297699,0.433931648731232,-0.922126710414886,0.30422168970108,0.239021241664886,-0.985692799091339,0.106036469340324,0.131017804145813,-0.956071615219116,0.205102950334549,0.209427326917648,-0.837617039680481,0.438248604536057,0.326091736555099,-0.773149728775024,0.532946527004242,0.34381291270256,-0.922126710414886,0.30422168970108,0.239021241664886,-0.905362844467163,-0.401221215724945,-0.139066860079765,-0.996742010116577,-0.0741326510906219,0.0317739620804787,-0.859799861907959,-0.480646729469299,-0.172402963042259,-0.859799861907959,-0.480646729469299,-0.172402963042259,-0.955814361572266,-0.283950507640839,-0.0760986283421516,-0.77388858795166,-0.579720020294189,-0.254992097616196, +-0.77388858795166,-0.579720020294189,-0.254992097616196,-0.659969627857208,-0.659123241901398,-0.360550224781036,-0.715379893779755,-0.629965424537659,-0.302282959222794,-0.996742010116577,-0.0741326510906219,0.0317739620804787,-0.985692799091339,0.106036469340324,0.131017804145813,-0.977470517158508,0.158393546938896,0.139508783817291,-0.983094930648804,0.0788999050855637,-0.165224134922028,-0.976824104785919,0.177795603871346,-0.11917757242918,-0.981590270996094,-0.0107182590290904,-0.190697595477104,-0.925759971141815,-0.230548918247223,-0.299692422151566,-0.751251101493835,-0.546010851860046,-0.370801448822021,-0.981590270996094,-0.0107182590290904,-0.190697595477104,-0.715379893779755,-0.629965424537659,-0.302282959222794,-0.659969627857208,-0.659123241901398,-0.360550224781036,-0.751251101493835,-0.546010851860046,-0.370801448822021,-0.976824104785919,0.177795603871346,-0.11917757242918,-0.93014132976532,0.353055477142334,-0.100939534604549,-0.993027627468109,0.053819727152586,-0.104878149926662,-0.917203426361084,-0.393740117549896,-0.0608809813857079,-0.993027627468109,0.053819727152586,-0.104878149926662,-0.934177219867706,-0.347018748521805,-0.0830110162496567,-0.934177219867706,-0.347018748521805,-0.0830110162496567,-0.894788205623627,-0.442718952894211,-0.0579122640192509,-0.731570363044739,-0.679027020931244,-0.0610487796366215,-0.731570363044739,-0.679027020931244,-0.0610487796366215,-0.620929598808289,-0.783234179019928,-0.0314721092581749,-0.548344194889069,-0.826669573783875,-0.126237332820892,-0.394419997930527,-0.905290722846985,-0.157738924026489,-0.548344194889069,-0.826669573783875,-0.126237332820892,-0.42658057808876,-0.903285443782806,-0.0458722077310085,-0.933796525001526,-0.357607245445251,0.0118753118440509,-0.930926501750946,-0.364020228385925,-0.0294114220887423,-0.924951493740082,-0.375318437814713,0.0600053742527962,-0.930926501750946,-0.364020228385925,-0.0294114220887423,-0.974958002567291,-0.221470281481743,-0.0201918315142393,-0.957259058952332,-0.284246832132339,0.0534676909446716, +-0.989413976669312,-0.129337266087532,0.0658158287405968,-0.957259058952332,-0.284246832132339,0.0534676909446716,-0.974958002567291,-0.221470281481743,-0.0201918315142393,-0.989413976669312,-0.129337266087532,0.0658158287405968,-0.978471517562866,0.0992974638938904,0.180923178792,-0.997740924358368,0.00800285860896111,0.0666984617710114,-0.999241948127747,0.0284952707588673,-0.0265224277973175,-0.998705923557281,-0.00174687209073454,0.0508270114660263,-0.995606541633606,0.0921531841158867,0.016590828076005,-0.98748117685318,0.137051314115524,0.0780878365039825,-0.998705923557281,-0.00174687209073454,0.0508270114660263,-0.997740924358368,0.00800285860896111,0.0666984617710114,-0.992830097675323,0.0260249227285385,-0.116666354238987,-0.992411553859711,-0.0490886531770229,-0.11273642629385,-0.988447546958923,0.0579709261655808,-0.140038296580315,-0.992830097675323,0.0260249227285385,-0.116666354238987,-0.98552018404007,0.159361496567726,-0.0579111985862255,-0.997194766998291,0.0435187071561813,-0.0608982443809509,-0.992639303207397,0.110842667520046,-0.048793513327837,-0.988447546958923,0.0579709261655808,-0.140038296580315,-0.988271474838257,-0.125050574541092,-0.0876458436250687,-0.980212032794952,-0.184419468045235,0.0719289407134056,-0.988271474838257,-0.125050574541092,-0.0876458436250687,-0.957161664962769,-0.284196645021439,0.0554416663944721,-0.957161664962769,-0.284196645021439,0.0554416663944721,-0.94375616312027,-0.323349446058273,0.0690604895353317,-0.980212032794952,-0.184419468045235,0.0719289407134056,-0.94375616312027,-0.323349446058273,0.0690604895353317,-0.933796525001526,-0.357607245445251,0.0118753118440509,-0.924951493740082,-0.375318437814713,0.0600053742527962,-0.834726333618164,0.547899484634399,0.0551172606647015,-0.863733470439911,0.500856697559357,-0.0557407550513744,-0.964618325233459,0.263461500406265,-0.00996738579124212,-0.995606541633606,0.0921531841158867,0.016590828076005,-0.964618325233459,0.263461500406265,-0.00996738579124212,-0.996024429798126,0.0161139313131571,-0.0876108333468437, +-0.996884822845459,-0.0243804212659597,-0.075007937848568,-0.999241948127747,0.0284952707588673,-0.0265224277973175,-0.995606541633606,0.0921531841158867,0.016590828076005,-0.834726333618164,0.547899484634399,0.0551172606647015,-0.636706829071045,0.77055561542511,0.0291256196796894,-0.863733470439911,0.500856697559357,-0.0557407550513744,-0.675678372383118,0.717088997364044,-0.17100328207016,-0.636706829071045,0.77055561542511,0.0291256196796894,-0.513355910778046,0.853066086769104,-0.0935083627700806,-0.420735329389572,0.901651918888092,-0.100027710199356,-0.462179392576218,0.886340141296387,-0.0281292870640755,-0.381538152694702,0.924163937568665,-0.0186962112784386,-0.462179392576218,0.886340141296387,-0.0281292870640755,-0.513355910778046,0.853066086769104,-0.0935083627700806,-0.636706829071045,0.77055561542511,0.0291256196796894,-0.334258258342743,0.941270470619202,-0.0477618277072906,-0.381538152694702,0.924163937568665,-0.0186962112784386,-0.324928402900696,0.945726871490479,0.00470078736543655,-0.672970652580261,0.618732988834381,0.405314415693283,-0.837617039680481,0.438248604536057,0.326091736555099,-0.636481642723084,0.655692875385284,0.406150013208389,-0.636481642723084,0.655692875385284,0.406150013208389,-0.456937879323959,0.77647340297699,0.433931648731232,-0.477980643510818,0.758467376232147,0.443014323711395,-0.922126710414886,0.30422168970108,0.239021241664886,-0.95859956741333,0.22160704433918,0.178821429610252,-0.985692799091339,0.106036469340324,0.131017804145813,-0.773149728775024,0.532946527004242,0.34381291270256,-0.837617039680481,0.438248604536057,0.326091736555099,-0.672970652580261,0.618732988834381,0.405314415693283,-0.922126710414886,0.30422168970108,0.239021241664886,-0.773149728775024,0.532946527004242,0.34381291270256,-0.842546045780182,0.466142684221268,0.269864857196808,-0.859799861907959,-0.480646729469299,-0.172402963042259,-0.996742010116577,-0.0741326510906219,0.0317739620804787,-0.955814361572266,-0.283950507640839,-0.0760986283421516,-0.889985084533691,-0.414381593465805,-0.1903006285429, +-0.77388858795166,-0.579720020294189,-0.254992097616196,-0.955814361572266,-0.283950507640839,-0.0760986283421516,-0.77388858795166,-0.579720020294189,-0.254992097616196,-0.889985084533691,-0.414381593465805,-0.1903006285429,-0.659969627857208,-0.659123241901398,-0.360550224781036,-0.977470517158508,0.158393546938896,0.139508783817291,-0.985692799091339,0.106036469340324,0.131017804145813,-0.95859956741333,0.22160704433918,0.178821429610252,-0.997816324234009,0.00936291925609112,0.0653817430138588,-0.996742010116577,-0.0741326510906219,0.0317739620804787,-0.977470517158508,0.158393546938896,0.139508783817291,-0.973376929759979,0.187691479921341,-0.131564512848854,-0.976824104785919,0.177795603871346,-0.11917757242918,-0.983094930648804,0.0788999050855637,-0.165224134922028,-0.981590270996094,-0.0107182590290904,-0.190697595477104,-0.86672031879425,-0.388336360454559,-0.313034504652023,-0.983094930648804,0.0788999050855637,-0.165224134922028,-0.86672031879425,-0.388336360454559,-0.313034504652023,-0.981590270996094,-0.0107182590290904,-0.190697595477104,-0.751251101493835,-0.546010851860046,-0.370801448822021,-0.751251101493835,-0.546010851860046,-0.370801448822021,-0.659969627857208,-0.659123241901398,-0.360550224781036,-0.660653710365295,-0.65070116519928,-0.374332249164581,-0.93014132976532,0.353055477142334,-0.100939534604549,-0.976824104785919,0.177795603871346,-0.11917757242918,-0.973376929759979,0.187691479921341,-0.131564512848854,-0.993027627468109,0.053819727152586,-0.104878149926662,-0.93014132976532,0.353055477142334,-0.100939534604549,-0.938433289527893,0.3152716755867,-0.141232520341873,-0.934177219867706,-0.347018748521805,-0.0830110162496567,-0.993027627468109,0.053819727152586,-0.104878149926662,-0.894788205623627,-0.442718952894211,-0.0579122640192509,-0.731570363044739,-0.679027020931244,-0.0610487796366215,-0.894788205623627,-0.442718952894211,-0.0579122640192509,-0.620929598808289,-0.783234179019928,-0.0314721092581749,-0.42658057808876,-0.903285443782806,-0.0458722077310085,-0.548344194889069,-0.826669573783875,-0.126237332820892, +-0.620929598808289,-0.783234179019928,-0.0314721092581749,-0.394419997930527,-0.905290722846985,-0.157738924026489,-0.42658057808876,-0.903285443782806,-0.0458722077310085,-0.237449541687965,-0.966357946395874,-0.0988430306315422,-0.930926501750946,-0.364020228385925,-0.0294114220887423,-0.933796525001526,-0.357607245445251,0.0118753118440509,-0.974958002567291,-0.221470281481743,-0.0201918315142393,-0.989413976669312,-0.129337266087532,0.0658158287405968,-0.974958002567291,-0.221470281481743,-0.0201918315142393,-0.987387955188751,-0.00989708676934242,0.158009275794029,-0.978471517562866,0.0992974638938904,0.180923178792,-0.989413976669312,-0.129337266087532,0.0658158287405968,-0.987387955188751,-0.00989708676934242,0.158009275794029,-0.945827543735504,0.263305336236954,0.189947992563248,-0.997740924358368,0.00800285860896111,0.0666984617710114,-0.978471517562866,0.0992974638938904,0.180923178792,-0.998705923557281,-0.00174687209073454,0.0508270114660263,-0.98748117685318,0.137051314115524,0.0780878365039825,-0.995606541633606,0.0921531841158867,0.016590828076005,-0.98748117685318,0.137051314115524,0.0780878365039825,-0.997740924358368,0.00800285860896111,0.0666984617710114,-0.945827543735504,0.263305336236954,0.189947992563248,-0.998908162117004,0.0373903438448906,-0.0280066728591919,-0.992411553859711,-0.0490886531770229,-0.11273642629385,-0.992830097675323,0.0260249227285385,-0.116666354238987,-0.992411553859711,-0.0490886531770229,-0.11273642629385,-0.988271474838257,-0.125050574541092,-0.0876458436250687,-0.988447546958923,0.0579709261655808,-0.140038296580315,-0.998908162117004,0.0373903438448906,-0.0280066728591919,-0.992830097675323,0.0260249227285385,-0.116666354238987,-0.997194766998291,0.0435187071561813,-0.0608982443809509,-0.988271474838257,-0.125050574541092,-0.0876458436250687,-0.988571405410767,-0.145214572548866,-0.0404873602092266,-0.957161664962769,-0.284196645021439,0.0554416663944721,-0.957161664962769,-0.284196645021439,0.0554416663944721,-0.971932888031006,-0.231942936778069,0.0393550433218479, +-0.94375616312027,-0.323349446058273,0.0690604895353317,-0.94375616312027,-0.323349446058273,0.0690604895353317,-0.947812438011169,-0.254223883152008,0.192410156130791,-0.933796525001526,-0.357607245445251,0.0118753118440509,-0.964618325233459,0.263461500406265,-0.00996738579124212,-0.919498860836029,0.38470584154129,0.0807661190629005,-0.834726333618164,0.547899484634399,0.0551172606647015,-0.964618325233459,0.263461500406265,-0.00996738579124212,-0.995606541633606,0.0921531841158867,0.016590828076005,-0.919498860836029,0.38470584154129,0.0807661190629005,-0.834726333618164,0.547899484634399,0.0551172606647015,-0.759141504764557,0.627650260925293,0.172508403658867,-0.636706829071045,0.77055561542511,0.0291256196796894,-0.445110857486725,0.891272187232971,0.0866608992218971,-0.381538152694702,0.924163937568665,-0.0186962112784386,-0.462179392576218,0.886340141296387,-0.0281292870640755,-0.51132607460022,0.857576608657837,0.0557481832802296,-0.462179392576218,0.886340141296387,-0.0281292870640755,-0.636706829071045,0.77055561542511,0.0291256196796894,-0.327125757932663,0.942834138870239,0.0636584088206291,-0.324928402900696,0.945726871490479,0.00470078736543655,-0.381538152694702,0.924163937568665,-0.0186962112784386,-0.477980643510818,0.758467376232147,0.443014323711395,-0.672970652580261,0.618732988834381,0.405314415693283,-0.636481642723084,0.655692875385284,0.406150013208389,-0.922126710414886,0.30422168970108,0.239021241664886,-0.880272626876831,0.402636259794235,0.251006156206131,-0.95859956741333,0.22160704433918,0.178821429610252,-0.773149728775024,0.532946527004242,0.34381291270256,-0.672970652580261,0.618732988834381,0.405314415693283,-0.550221264362335,0.726444661617279,0.411745697259903,-0.773149728775024,0.532946527004242,0.34381291270256,-0.730798602104187,0.601623117923737,0.322463721036911,-0.842546045780182,0.466142684221268,0.269864857196808,-0.880272626876831,0.402636259794235,0.251006156206131,-0.922126710414886,0.30422168970108,0.239021241664886,-0.842546045780182,0.466142684221268,0.269864857196808, +-0.997816324234009,0.00936291925609112,0.0653817430138588,-0.955814361572266,-0.283950507640839,-0.0760986283421516,-0.996742010116577,-0.0741326510906219,0.0317739620804787,-0.889985084533691,-0.414381593465805,-0.1903006285429,-0.955814361572266,-0.283950507640839,-0.0760986283421516,-0.997816324234009,0.00936291925609112,0.0653817430138588,-0.889985084533691,-0.414381593465805,-0.1903006285429,-0.758193075656891,-0.569835364818573,-0.316908061504364,-0.659969627857208,-0.659123241901398,-0.360550224781036,-0.95859956741333,0.22160704433918,0.178821429610252,-0.934520125389099,0.29726168513298,0.195722997188568,-0.977470517158508,0.158393546938896,0.139508783817291,-0.997816324234009,0.00936291925609112,0.0653817430138588,-0.977470517158508,0.158393546938896,0.139508783817291,-0.955268561840057,0.247189775109291,0.162354826927185,-0.973376929759979,0.187691479921341,-0.131564512848854,-0.983094930648804,0.0788999050855637,-0.165224134922028,-0.91463029384613,-0.30091518163681,-0.270002067089081,-0.91463029384613,-0.30091518163681,-0.270002067089081,-0.983094930648804,0.0788999050855637,-0.165224134922028,-0.86672031879425,-0.388336360454559,-0.313034504652023,-0.86672031879425,-0.388336360454559,-0.313034504652023,-0.751251101493835,-0.546010851860046,-0.370801448822021,-0.660653710365295,-0.65070116519928,-0.374332249164581,-0.660653710365295,-0.65070116519928,-0.374332249164581,-0.659969627857208,-0.659123241901398,-0.360550224781036,-0.758193075656891,-0.569835364818573,-0.316908061504364,-0.973376929759979,0.187691479921341,-0.131564512848854,-0.962449967861176,0.254017561674118,-0.0957346186041832,-0.93014132976532,0.353055477142334,-0.100939534604549,-0.93014132976532,0.353055477142334,-0.100939534604549,-0.962449967861176,0.254017561674118,-0.0957346186041832,-0.938433289527893,0.3152716755867,-0.141232520341873,-0.993027627468109,0.053819727152586,-0.104878149926662,-0.938433289527893,0.3152716755867,-0.141232520341873,-0.995675504207611,0.0408691056072712,-0.0834260955452919,-0.993027627468109,0.053819727152586,-0.104878149926662, +-0.995675504207611,0.0408691056072712,-0.0834260955452919,-0.894788205623627,-0.442718952894211,-0.0579122640192509,-0.620929598808289,-0.783234179019928,-0.0314721092581749,-0.894788205623627,-0.442718952894211,-0.0579122640192509,-0.709717690944672,-0.704195499420166,-0.0202296227216721,-0.620929598808289,-0.783234179019928,-0.0314721092581749,-0.483870506286621,-0.871444523334503,-0.080334410071373,-0.42658057808876,-0.903285443782806,-0.0458722077310085,-0.306743562221527,-0.950648605823517,-0.046643290668726,-0.237449541687965,-0.966357946395874,-0.0988430306315422,-0.42658057808876,-0.903285443782806,-0.0458722077310085,-0.974958002567291,-0.221470281481743,-0.0201918315142393,-0.933796525001526,-0.357607245445251,0.0118753118440509,-0.986168086528778,-0.116369850933552,0.118027590215206,-0.974958002567291,-0.221470281481743,-0.0201918315142393,-0.986168086528778,-0.116369850933552,0.118027590215206,-0.987387955188751,-0.00989708676934242,0.158009275794029,-0.978471517562866,0.0992974638938904,0.180923178792,-0.987387955188751,-0.00989708676934242,0.158009275794029,-0.917998433113098,0.214131087064743,0.333806306123734,-0.945827543735504,0.263305336236954,0.189947992563248,-0.978471517562866,0.0992974638938904,0.180923178792,-0.87634140253067,0.353957235813141,0.326710760593414,-0.98748117685318,0.137051314115524,0.0780878365039825,-0.889090180397034,0.422980636358261,0.174945682287216,-0.995606541633606,0.0921531841158867,0.016590828076005,-0.98748117685318,0.137051314115524,0.0780878365039825,-0.945827543735504,0.263305336236954,0.189947992563248,-0.889090180397034,0.422980636358261,0.174945682287216,-0.998908162117004,0.0373903438448906,-0.0280066728591919,-0.998796761035919,-0.0189213939011097,0.045242927968502,-0.992411553859711,-0.0490886531770229,-0.11273642629385,-0.988271474838257,-0.125050574541092,-0.0876458436250687,-0.992411553859711,-0.0490886531770229,-0.11273642629385,-0.988571405410767,-0.145214572548866,-0.0404873602092266,-0.988571405410767,-0.145214572548866,-0.0404873602092266,-0.972301185131073,-0.193930402398109,0.130465820431709, +-0.957161664962769,-0.284196645021439,0.0554416663944721,-0.972301185131073,-0.193930402398109,0.130465820431709,-0.971932888031006,-0.231942936778069,0.0393550433218479,-0.957161664962769,-0.284196645021439,0.0554416663944721,-0.94375616312027,-0.323349446058273,0.0690604895353317,-0.971932888031006,-0.231942936778069,0.0393550433218479,-0.968825101852417,-0.140108078718185,0.204322189092636,-0.947812438011169,-0.254223883152008,0.192410156130791,-0.94375616312027,-0.323349446058273,0.0690604895353317,-0.968825101852417,-0.140108078718185,0.204322189092636,-0.986168086528778,-0.116369850933552,0.118027590215206,-0.933796525001526,-0.357607245445251,0.0118753118440509,-0.947812438011169,-0.254223883152008,0.192410156130791,-0.834726333618164,0.547899484634399,0.0551172606647015,-0.919498860836029,0.38470584154129,0.0807661190629005,-0.759141504764557,0.627650260925293,0.172508403658867,-0.995606541633606,0.0921531841158867,0.016590828076005,-0.889090180397034,0.422980636358261,0.174945682287216,-0.919498860836029,0.38470584154129,0.0807661190629005,-0.636706829071045,0.77055561542511,0.0291256196796894,-0.759141504764557,0.627650260925293,0.172508403658867,-0.584748864173889,0.791778206825256,0.176510661840439,-0.445110857486725,0.891272187232971,0.0866608992218971,-0.327125757932663,0.942834138870239,0.0636584088206291,-0.381538152694702,0.924163937568665,-0.0186962112784386,-0.51132607460022,0.857576608657837,0.0557481832802296,-0.445110857486725,0.891272187232971,0.0866608992218971,-0.462179392576218,0.886340141296387,-0.0281292870640755,-0.636706829071045,0.77055561542511,0.0291256196796894,-0.584748864173889,0.791778206825256,0.176510661840439,-0.51132607460022,0.857576608657837,0.0557481832802296,-0.550221264362335,0.726444661617279,0.411745697259903,-0.672970652580261,0.618732988834381,0.405314415693283,-0.477980643510818,0.758467376232147,0.443014323711395,-0.95859956741333,0.22160704433918,0.178821429610252,-0.880272626876831,0.402636259794235,0.251006156206131,-0.934520125389099,0.29726168513298,0.195722997188568, +-0.773149728775024,0.532946527004242,0.34381291270256,-0.550221264362335,0.726444661617279,0.411745697259903,-0.730798602104187,0.601623117923737,0.322463721036911,-0.880272626876831,0.402636259794235,0.251006156206131,-0.842546045780182,0.466142684221268,0.269864857196808,-0.730798602104187,0.601623117923737,0.322463721036911,-0.972478032112122,-0.214643865823746,-0.090632937848568,-0.889985084533691,-0.414381593465805,-0.1903006285429,-0.997816324234009,0.00936291925609112,0.0653817430138588,-0.889985084533691,-0.414381593465805,-0.1903006285429,-0.972478032112122,-0.214643865823746,-0.090632937848568,-0.758193075656891,-0.569835364818573,-0.316908061504364,-0.955268561840057,0.247189775109291,0.162354826927185,-0.977470517158508,0.158393546938896,0.139508783817291,-0.934520125389099,0.29726168513298,0.195722997188568,-0.991128206253052,0.0938089638948441,0.0941523760557175,-0.997816324234009,0.00936291925609112,0.0653817430138588,-0.955268561840057,0.247189775109291,0.162354826927185,-0.91463029384613,-0.30091518163681,-0.270002067089081,-0.948260962963104,-0.226312413811684,-0.222674205899239,-0.973376929759979,0.187691479921341,-0.131564512848854,-0.91463029384613,-0.30091518163681,-0.270002067089081,-0.86672031879425,-0.388336360454559,-0.313034504652023,-0.660653710365295,-0.65070116519928,-0.374332249164581,-0.758193075656891,-0.569835364818573,-0.316908061504364,-0.67462682723999,-0.645908832550049,-0.357323795557022,-0.660653710365295,-0.65070116519928,-0.374332249164581,-0.973376929759979,0.187691479921341,-0.131564512848854,-0.985588788986206,-0.0873101055622101,-0.144884809851646,-0.962449967861176,0.254017561674118,-0.0957346186041832,-0.955593466758728,0.267576694488525,-0.123465456068516,-0.938433289527893,0.3152716755867,-0.141232520341873,-0.962449967861176,0.254017561674118,-0.0957346186041832,-0.971753597259521,0.0607918091118336,-0.228032857179642,-0.995675504207611,0.0408691056072712,-0.0834260955452919,-0.938433289527893,0.3152716755867,-0.141232520341873,-0.92826896905899,-0.353367686271667,-0.115964934229851, +-0.894788205623627,-0.442718952894211,-0.0579122640192509,-0.995675504207611,0.0408691056072712,-0.0834260955452919,-0.92826896905899,-0.353367686271667,-0.115964934229851,-0.709717690944672,-0.704195499420166,-0.0202296227216721,-0.894788205623627,-0.442718952894211,-0.0579122640192509,-0.620929598808289,-0.783234179019928,-0.0314721092581749,-0.709717690944672,-0.704195499420166,-0.0202296227216721,-0.483870506286621,-0.871444523334503,-0.080334410071373,-0.483870506286621,-0.871444523334503,-0.080334410071373,-0.306743562221527,-0.950648605823517,-0.046643290668726,-0.42658057808876,-0.903285443782806,-0.0458722077310085,-0.181701749563217,-0.974516630172729,-0.131535917520523,-0.237449541687965,-0.966357946395874,-0.0988430306315422,-0.306743562221527,-0.950648605823517,-0.046643290668726,-0.987387955188751,-0.00989708676934242,0.158009275794029,-0.986168086528778,-0.116369850933552,0.118027590215206,-0.939142048358917,0.098202221095562,0.329193621873856,-0.917998433113098,0.214131087064743,0.333806306123734,-0.987387955188751,-0.00989708676934242,0.158009275794029,-0.939142048358917,0.098202221095562,0.329193621873856,-0.978471517562866,0.0992974638938904,0.180923178792,-0.917998433113098,0.214131087064743,0.333806306123734,-0.87634140253067,0.353957235813141,0.326710760593414,-0.80203115940094,0.519696176052094,0.294383555650711,-0.945827543735504,0.263305336236954,0.189947992563248,-0.87634140253067,0.353957235813141,0.326710760593414,-0.889090180397034,0.422980636358261,0.174945682287216,-0.945827543735504,0.263305336236954,0.189947992563248,-0.80203115940094,0.519696176052094,0.294383555650711,-0.998908162117004,0.0373903438448906,-0.0280066728591919,-0.985839664936066,0.135398462414742,0.0989313051104546,-0.998796761035919,-0.0189213939011097,0.045242927968502,-0.992411553859711,-0.0490886531770229,-0.11273642629385,-0.998796761035919,-0.0189213939011097,0.045242927968502,-0.988571405410767,-0.145214572548866,-0.0404873602092266,-0.988571405410767,-0.145214572548866,-0.0404873602092266,-0.998796761035919,-0.0189213939011097,0.045242927968502, +-0.972301185131073,-0.193930402398109,0.130465820431709,-0.968825101852417,-0.140108078718185,0.204322189092636,-0.971932888031006,-0.231942936778069,0.0393550433218479,-0.972301185131073,-0.193930402398109,0.130465820431709,-0.968825101852417,-0.140108078718185,0.204322189092636,-0.948876202106476,-0.0175554361194372,0.315159648656845,-0.947812438011169,-0.254223883152008,0.192410156130791,-0.986168086528778,-0.116369850933552,0.118027590215206,-0.947812438011169,-0.254223883152008,0.192410156130791,-0.948876202106476,-0.0175554361194372,0.315159648656845,-0.759141504764557,0.627650260925293,0.172508403658867,-0.919498860836029,0.38470584154129,0.0807661190629005,-0.889090180397034,0.422980636358261,0.174945682287216,-0.705113053321838,0.663998365402222,0.248840466141701,-0.584748864173889,0.791778206825256,0.176510661840439,-0.759141504764557,0.627650260925293,0.172508403658867,-0.445110857486725,0.891272187232971,0.0866608992218971,-0.386761456727982,0.909971535205841,0.149557262659073,-0.327125757932663,0.942834138870239,0.0636584088206291,-0.51132607460022,0.857576608657837,0.0557481832802296,-0.584748864173889,0.791778206825256,0.176510661840439,-0.445110857486725,0.891272187232971,0.0866608992218971,-0.827872931957245,0.4921495616436,0.269100576639175,-0.934520125389099,0.29726168513298,0.195722997188568,-0.880272626876831,0.402636259794235,0.251006156206131,-0.550221264362335,0.726444661617279,0.411745697259903,-0.581633627414703,0.718528926372528,0.381337732076645,-0.730798602104187,0.601623117923737,0.322463721036911,-0.747610211372375,0.571478128433228,0.338366031646729,-0.880272626876831,0.402636259794235,0.251006156206131,-0.730798602104187,0.601623117923737,0.322463721036911,-0.972478032112122,-0.214643865823746,-0.090632937848568,-0.997816324234009,0.00936291925609112,0.0653817430138588,-0.991128206253052,0.0938089638948441,0.0941523760557175,-0.758193075656891,-0.569835364818573,-0.316908061504364,-0.972478032112122,-0.214643865823746,-0.090632937848568,-0.914622247219086,-0.365450501441956,-0.172950729727745, +-0.885233998298645,0.409659922122955,0.220316603779793,-0.955268561840057,0.247189775109291,0.162354826927185,-0.934520125389099,0.29726168513298,0.195722997188568,-0.955268561840057,0.247189775109291,0.162354826927185,-0.926010429859161,0.311549723148346,0.213169708848,-0.991128206253052,0.0938089638948441,0.0941523760557175,-0.91463029384613,-0.30091518163681,-0.270002067089081,-0.758817553520203,-0.564128518104553,-0.325507193803787,-0.948260962963104,-0.226312413811684,-0.222674205899239,-0.973376929759979,0.187691479921341,-0.131564512848854,-0.948260962963104,-0.226312413811684,-0.222674205899239,-0.985588788986206,-0.0873101055622101,-0.144884809851646,-0.91463029384613,-0.30091518163681,-0.270002067089081,-0.660653710365295,-0.65070116519928,-0.374332249164581,-0.758817553520203,-0.564128518104553,-0.325507193803787,-0.758193075656891,-0.569835364818573,-0.316908061504364,-0.914622247219086,-0.365450501441956,-0.172950729727745,-0.67462682723999,-0.645908832550049,-0.357323795557022,-0.634153962135315,-0.682620763778687,-0.363149553537369,-0.660653710365295,-0.65070116519928,-0.374332249164581,-0.67462682723999,-0.645908832550049,-0.357323795557022,-0.991465926170349,0.0204033404588699,-0.128759324550629,-0.962449967861176,0.254017561674118,-0.0957346186041832,-0.985588788986206,-0.0873101055622101,-0.144884809851646,-0.938433289527893,0.3152716755867,-0.141232520341873,-0.955593466758728,0.267576694488525,-0.123465456068516,-0.95100337266922,0.280604869127274,-0.12982065975666,-0.955593466758728,0.267576694488525,-0.123465456068516,-0.962449967861176,0.254017561674118,-0.0957346186041832,-0.991465926170349,0.0204033404588699,-0.128759324550629,-0.971753597259521,0.0607918091118336,-0.228032857179642,-0.92826896905899,-0.353367686271667,-0.115964934229851,-0.995675504207611,0.0408691056072712,-0.0834260955452919,-0.971753597259521,0.0607918091118336,-0.228032857179642,-0.938433289527893,0.3152716755867,-0.141232520341873,-0.982191026210785,-0.0558246038854122,-0.179399862885475,-0.709717690944672,-0.704195499420166,-0.0202296227216721, +-0.92826896905899,-0.353367686271667,-0.115964934229851,-0.724919736385345,-0.66888552904129,-0.164570286870003,-0.709717690944672,-0.704195499420166,-0.0202296227216721,-0.724919736385345,-0.66888552904129,-0.164570286870003,-0.483870506286621,-0.871444523334503,-0.080334410071373,-0.483870506286621,-0.871444523334503,-0.080334410071373,-0.181701749563217,-0.974516630172729,-0.131535917520523,-0.306743562221527,-0.950648605823517,-0.046643290668726,-0.986168086528778,-0.116369850933552,0.118027590215206,-0.948876202106476,-0.0175554361194372,0.315159648656845,-0.939142048358917,0.098202221095562,0.329193621873856,-0.917998433113098,0.214131087064743,0.333806306123734,-0.939142048358917,0.098202221095562,0.329193621873856,-0.859263300895691,0.281661212444305,0.42700520157814,-0.814971446990967,0.399507611989975,0.419779777526855,-0.87634140253067,0.353957235813141,0.326710760593414,-0.917998433113098,0.214131087064743,0.333806306123734,-0.770660579204559,0.506808221340179,0.38629999756813,-0.80203115940094,0.519696176052094,0.294383555650711,-0.87634140253067,0.353957235813141,0.326710760593414,-0.889090180397034,0.422980636358261,0.174945682287216,-0.80203115940094,0.519696176052094,0.294383555650711,-0.705113053321838,0.663998365402222,0.248840466141701,-0.985839664936066,0.135398462414742,0.0989313051104546,-0.998908162117004,0.0373903438448906,-0.0280066728591919,-0.982454717159271,0.15888038277626,0.0976708829402924,-0.985839664936066,0.135398462414742,0.0989313051104546,-0.97578090429306,0.0812543630599976,0.203098565340042,-0.998796761035919,-0.0189213939011097,0.045242927968502,-0.998796761035919,-0.0189213939011097,0.045242927968502,-0.973645567893982,-0.0403004810214043,0.224477231502533,-0.972301185131073,-0.193930402398109,0.130465820431709,-0.973645567893982,-0.0403004810214043,0.224477231502533,-0.968825101852417,-0.140108078718185,0.204322189092636,-0.972301185131073,-0.193930402398109,0.130465820431709,-0.940269887447357,0.0744827389717102,0.332181721925735,-0.948876202106476,-0.0175554361194372,0.315159648656845, +-0.968825101852417,-0.140108078718185,0.204322189092636,-0.705113053321838,0.663998365402222,0.248840466141701,-0.759141504764557,0.627650260925293,0.172508403658867,-0.889090180397034,0.422980636358261,0.174945682287216,-0.584748864173889,0.791778206825256,0.176510661840439,-0.705113053321838,0.663998365402222,0.248840466141701,-0.591933906078339,0.76690948009491,0.247919410467148,-0.386761456727982,0.909971535205841,0.149557262659073,-0.445110857486725,0.891272187232971,0.0866608992218971,-0.47488859295845,0.854191780090332,0.211747720837593,-0.47488859295845,0.854191780090332,0.211747720837593,-0.445110857486725,0.891272187232971,0.0866608992218971,-0.584748864173889,0.791778206825256,0.176510661840439,-0.885233998298645,0.409659922122955,0.220316603779793,-0.934520125389099,0.29726168513298,0.195722997188568,-0.827872931957245,0.4921495616436,0.269100576639175,-0.827872931957245,0.4921495616436,0.269100576639175,-0.880272626876831,0.402636259794235,0.251006156206131,-0.747610211372375,0.571478128433228,0.338366031646729,-0.747610211372375,0.571478128433228,0.338366031646729,-0.730798602104187,0.601623117923737,0.322463721036911,-0.581633627414703,0.718528926372528,0.381337732076645,-0.991128206253052,0.0938089638948441,0.0941523760557175,-0.914622247219086,-0.365450501441956,-0.172950729727745,-0.972478032112122,-0.214643865823746,-0.090632937848568,-0.885233998298645,0.409659922122955,0.220316603779793,-0.884114801883698,0.403196334838867,0.236164391040802,-0.955268561840057,0.247189775109291,0.162354826927185,-0.955268561840057,0.247189775109291,0.162354826927185,-0.884114801883698,0.403196334838867,0.236164391040802,-0.926010429859161,0.311549723148346,0.213169708848,-0.991128206253052,0.0938089638948441,0.0941523760557175,-0.926010429859161,0.311549723148346,0.213169708848,-0.961620688438416,0.200665414333344,0.187133476138115,-0.948260962963104,-0.226312413811684,-0.222674205899239,-0.758817553520203,-0.564128518104553,-0.325507193803787,-0.828432321548462,-0.484822243452072,-0.280441164970398,-0.948260962963104,-0.226312413811684,-0.222674205899239, +-0.828432321548462,-0.484822243452072,-0.280441164970398,-0.985588788986206,-0.0873101055622101,-0.144884809851646,-0.660653710365295,-0.65070116519928,-0.374332249164581,-0.634153962135315,-0.682620763778687,-0.363149553537369,-0.758817553520203,-0.564128518104553,-0.325507193803787,-0.914622247219086,-0.365450501441956,-0.172950729727745,-0.792210936546326,-0.55174046754837,-0.260737627744675,-0.67462682723999,-0.645908832550049,-0.357323795557022,-0.634153962135315,-0.682620763778687,-0.363149553537369,-0.67462682723999,-0.645908832550049,-0.357323795557022,-0.792210936546326,-0.55174046754837,-0.260737627744675,-0.991465926170349,0.0204033404588699,-0.128759324550629,-0.985588788986206,-0.0873101055622101,-0.144884809851646,-0.941773653030396,-0.286942452192307,-0.175289452075958,-0.95100337266922,0.280604869127274,-0.12982065975666,-0.955593466758728,0.267576694488525,-0.123465456068516,-0.960579216480255,0.240925922989845,-0.138715296983719,-0.938433289527893,0.3152716755867,-0.141232520341873,-0.95100337266922,0.280604869127274,-0.12982065975666,-0.982191026210785,-0.0558246038854122,-0.179399862885475,-0.991465926170349,0.0204033404588699,-0.128759324550629,-0.988513886928558,0.0554691106081009,-0.140582144260406,-0.955593466758728,0.267576694488525,-0.123465456068516,-0.92826896905899,-0.353367686271667,-0.115964934229851,-0.971753597259521,0.0607918091118336,-0.228032857179642,-0.891895830631256,-0.324964553117752,-0.314515233039856,-0.971753597259521,0.0607918091118336,-0.228032857179642,-0.982191026210785,-0.0558246038854122,-0.179399862885475,-0.891895830631256,-0.324964553117752,-0.314515233039856,-0.92826896905899,-0.353367686271667,-0.115964934229851,-0.891895830631256,-0.324964553117752,-0.314515233039856,-0.724919736385345,-0.66888552904129,-0.164570286870003,-0.724919736385345,-0.66888552904129,-0.164570286870003,-0.742914140224457,-0.647606313228607,-0.169364899396896,-0.483870506286621,-0.871444523334503,-0.080334410071373,-0.483870506286621,-0.871444523334503,-0.080334410071373,-0.415329396724701,-0.900293827056885,-0.130278185009956, +-0.181701749563217,-0.974516630172729,-0.131535917520523,-0.939142048358917,0.098202221095562,0.329193621873856,-0.948876202106476,-0.0175554361194372,0.315159648656845,-0.897306740283966,0.186730951070786,0.399965167045593,-0.939142048358917,0.098202221095562,0.329193621873856,-0.897306740283966,0.186730951070786,0.399965167045593,-0.859263300895691,0.281661212444305,0.42700520157814,-0.814971446990967,0.399507611989975,0.419779777526855,-0.917998433113098,0.214131087064743,0.333806306123734,-0.859263300895691,0.281661212444305,0.42700520157814,-0.770660579204559,0.506808221340179,0.38629999756813,-0.87634140253067,0.353957235813141,0.326710760593414,-0.814971446990967,0.399507611989975,0.419779777526855,-0.80203115940094,0.519696176052094,0.294383555650711,-0.770660579204559,0.506808221340179,0.38629999756813,-0.681140422821045,0.649436354637146,0.338053226470947,-0.705113053321838,0.663998365402222,0.248840466141701,-0.80203115940094,0.519696176052094,0.294383555650711,-0.681140422821045,0.649436354637146,0.338053226470947,-0.985839664936066,0.135398462414742,0.0989313051104546,-0.982454717159271,0.15888038277626,0.0976708829402924,-0.954942047595978,0.241953834891319,0.171883672475815,-0.985839664936066,0.135398462414742,0.0989313051104546,-0.921271860599518,0.249908372759819,0.297999709844589,-0.97578090429306,0.0812543630599976,0.203098565340042,-0.998796761035919,-0.0189213939011097,0.045242927968502,-0.97578090429306,0.0812543630599976,0.203098565340042,-0.973645567893982,-0.0403004810214043,0.224477231502533,-0.973645567893982,-0.0403004810214043,0.224477231502533,-0.940269887447357,0.0744827389717102,0.332181721925735,-0.968825101852417,-0.140108078718185,0.204322189092636,-0.940269887447357,0.0744827389717102,0.332181721925735,-0.897306740283966,0.186730951070786,0.399965167045593,-0.948876202106476,-0.0175554361194372,0.315159648656845,-0.705113053321838,0.663998365402222,0.248840466141701,-0.681140422821045,0.649436354637146,0.338053226470947,-0.591933906078339,0.76690948009491,0.247919410467148,-0.584748864173889,0.791778206825256,0.176510661840439, +-0.591933906078339,0.76690948009491,0.247919410467148,-0.47488859295845,0.854191780090332,0.211747720837593,-0.827872931957245,0.4921495616436,0.269100576639175,-0.757809221744537,0.578064024448395,0.302600115537643,-0.885233998298645,0.409659922122955,0.220316603779793,-0.827872931957245,0.4921495616436,0.269100576639175,-0.747610211372375,0.571478128433228,0.338366031646729,-0.685893952846527,0.642498731613159,0.341679006814957,-0.581633627414703,0.718528926372528,0.381337732076645,-0.685893952846527,0.642498731613159,0.341679006814957,-0.747610211372375,0.571478128433228,0.338366031646729,-0.995177924633026,-0.0962687805294991,0.0187912136316299,-0.914622247219086,-0.365450501441956,-0.172950729727745,-0.991128206253052,0.0938089638948441,0.0941523760557175,-0.885233998298645,0.409659922122955,0.220316603779793,-0.807954430580139,0.506399512290955,0.30127888917923,-0.884114801883698,0.403196334838867,0.236164391040802,-0.884114801883698,0.403196334838867,0.236164391040802,-0.847193658351898,0.465256214141846,0.256514221429825,-0.926010429859161,0.311549723148346,0.213169708848,-0.926010429859161,0.311549723148346,0.213169708848,-0.95774894952774,0.213277071714401,0.192950114607811,-0.961620688438416,0.200665414333344,0.187133476138115,-0.995177924633026,-0.0962687805294991,0.0187912136316299,-0.991128206253052,0.0938089638948441,0.0941523760557175,-0.961620688438416,0.200665414333344,0.187133476138115,-0.758817553520203,-0.564128518104553,-0.325507193803787,-0.634153962135315,-0.682620763778687,-0.363149553537369,-0.828432321548462,-0.484822243452072,-0.280441164970398,-0.882812678813934,-0.408777266740799,-0.23139314353466,-0.985588788986206,-0.0873101055622101,-0.144884809851646,-0.828432321548462,-0.484822243452072,-0.280441164970398,-0.914622247219086,-0.365450501441956,-0.172950729727745,-0.995177924633026,-0.0962687805294991,0.0187912136316299,-0.792210936546326,-0.55174046754837,-0.260737627744675,-0.634153962135315,-0.682620763778687,-0.363149553537369,-0.792210936546326,-0.55174046754837,-0.260737627744675, +-0.696458637714386,-0.641494154930115,-0.321606010198593,-0.882812678813934,-0.408777266740799,-0.23139314353466,-0.941773653030396,-0.286942452192307,-0.175289452075958,-0.985588788986206,-0.0873101055622101,-0.144884809851646,-0.941773653030396,-0.286942452192307,-0.175289452075958,-0.95958286523819,-0.208976775407791,-0.188492208719254,-0.991465926170349,0.0204033404588699,-0.128759324550629,-0.988513886928558,0.0554691106081009,-0.140582144260406,-0.960579216480255,0.240925922989845,-0.138715296983719,-0.955593466758728,0.267576694488525,-0.123465456068516,-0.946234822273254,0.284678071737289,-0.153616204857826,-0.95100337266922,0.280604869127274,-0.12982065975666,-0.960579216480255,0.240925922989845,-0.138715296983719,-0.982191026210785,-0.0558246038854122,-0.179399862885475,-0.95100337266922,0.280604869127274,-0.12982065975666,-0.992159366607666,0.0641838610172272,-0.107238903641701,-0.991465926170349,0.0204033404588699,-0.128759324550629,-0.95958286523819,-0.208976775407791,-0.188492208719254,-0.988513886928558,0.0554691106081009,-0.140582144260406,-0.982191026210785,-0.0558246038854122,-0.179399862885475,-0.742914140224457,-0.647606313228607,-0.169364899396896,-0.891895830631256,-0.324964553117752,-0.314515233039856,-0.891895830631256,-0.324964553117752,-0.314515233039856,-0.742914140224457,-0.647606313228607,-0.169364899396896,-0.724919736385345,-0.66888552904129,-0.164570286870003,-0.483870506286621,-0.871444523334503,-0.080334410071373,-0.742914140224457,-0.647606313228607,-0.169364899396896,-0.415329396724701,-0.900293827056885,-0.130278185009956,-0.181701749563217,-0.974516630172729,-0.131535917520523,-0.415329396724701,-0.900293827056885,-0.130278185009956,-0.183526530861855,-0.969485282897949,-0.162530571222305,-0.846266508102417,0.34090718626976,0.409408301115036,-0.859263300895691,0.281661212444305,0.42700520157814,-0.897306740283966,0.186730951070786,0.399965167045593,-0.814971446990967,0.399507611989975,0.419779777526855,-0.859263300895691,0.281661212444305,0.42700520157814,-0.795668184757233,0.428657412528992,0.427977561950684, +-0.770660579204559,0.506808221340179,0.38629999756813,-0.814971446990967,0.399507611989975,0.419779777526855,-0.735000729560852,0.539745450019836,0.41042497754097,-0.735000729560852,0.539745450019836,0.41042497754097,-0.681140422821045,0.649436354637146,0.338053226470947,-0.770660579204559,0.506808221340179,0.38629999756813,-0.982454717159271,0.15888038277626,0.0976708829402924,-0.96218478679657,0.225722670555115,0.152478516101837,-0.954942047595978,0.241953834891319,0.171883672475815,-0.954942047595978,0.241953834891319,0.171883672475815,-0.921271860599518,0.249908372759819,0.297999709844589,-0.985839664936066,0.135398462414742,0.0989313051104546,-0.97578090429306,0.0812543630599976,0.203098565340042,-0.921271860599518,0.249908372759819,0.297999709844589,-0.940269887447357,0.0744827389717102,0.332181721925735,-0.940269887447357,0.0744827389717102,0.332181721925735,-0.973645567893982,-0.0403004810214043,0.224477231502533,-0.97578090429306,0.0812543630599976,0.203098565340042,-0.897306740283966,0.186730951070786,0.399965167045593,-0.940269887447357,0.0744827389717102,0.332181721925735,-0.921271860599518,0.249908372759819,0.297999709844589,-0.562416851520538,0.768422424793243,0.3053098320961,-0.591933906078339,0.76690948009491,0.247919410467148,-0.681140422821045,0.649436354637146,0.338053226470947,-0.591933906078339,0.76690948009491,0.247919410467148,-0.562416851520538,0.768422424793243,0.3053098320961,-0.47488859295845,0.854191780090332,0.211747720837593,-0.827872931957245,0.4921495616436,0.269100576639175,-0.685893952846527,0.642498731613159,0.341679006814957,-0.757809221744537,0.578064024448395,0.302600115537643,-0.757809221744537,0.578064024448395,0.302600115537643,-0.807954430580139,0.506399512290955,0.30127888917923,-0.885233998298645,0.409659922122955,0.220316603779793,-0.574745953083038,0.725480258464813,0.378609746694565,-0.685893952846527,0.642498731613159,0.341679006814957,-0.581633627414703,0.718528926372528,0.381337732076645,-0.807954430580139,0.506399512290955,0.30127888917923,-0.781127035617828,0.544230163097382,0.306029200553894, +-0.884114801883698,0.403196334838867,0.236164391040802,-0.884114801883698,0.403196334838867,0.236164391040802,-0.781127035617828,0.544230163097382,0.306029200553894,-0.847193658351898,0.465256214141846,0.256514221429825,-0.926010429859161,0.311549723148346,0.213169708848,-0.847193658351898,0.465256214141846,0.256514221429825,-0.878216505050659,0.403930932283401,0.25607705116272,-0.926010429859161,0.311549723148346,0.213169708848,-0.878216505050659,0.403930932283401,0.25607705116272,-0.95774894952774,0.213277071714401,0.192950114607811,-0.987149894237518,0.0871935784816742,0.133911445736885,-0.961620688438416,0.200665414333344,0.187133476138115,-0.95774894952774,0.213277071714401,0.192950114607811,-0.987149894237518,0.0871935784816742,0.133911445736885,-0.995177924633026,-0.0962687805294991,0.0187912136316299,-0.961620688438416,0.200665414333344,0.187133476138115,-0.634153962135315,-0.682620763778687,-0.363149553537369,-0.695743203163147,-0.632903695106506,-0.339667707681656,-0.828432321548462,-0.484822243452072,-0.280441164970398,-0.882812678813934,-0.408777266740799,-0.23139314353466,-0.828432321548462,-0.484822243452072,-0.280441164970398,-0.695743203163147,-0.632903695106506,-0.339667707681656,-0.792210936546326,-0.55174046754837,-0.260737627744675,-0.995177924633026,-0.0962687805294991,0.0187912136316299,-0.943595051765442,-0.313424050807953,-0.106741212308407,-0.792210936546326,-0.55174046754837,-0.260737627744675,-0.943595051765442,-0.313424050807953,-0.106741212308407,-0.696458637714386,-0.641494154930115,-0.321606010198593,-0.696458637714386,-0.641494154930115,-0.321606010198593,-0.622375786304474,-0.69128429889679,-0.367116093635559,-0.634153962135315,-0.682620763778687,-0.363149553537369,-0.882812678813934,-0.408777266740799,-0.23139314353466,-0.793907225131989,-0.546932637691498,-0.265661507844925,-0.941773653030396,-0.286942452192307,-0.175289452075958,-0.941773653030396,-0.286942452192307,-0.175289452075958,-0.830883800983429,-0.489534944295883,-0.264551490545273,-0.95958286523819,-0.208976775407791,-0.188492208719254, +-0.988513886928558,0.0554691106081009,-0.140582144260406,-0.988691985607147,0.0678702220320702,-0.133722752332687,-0.960579216480255,0.240925922989845,-0.138715296983719,-0.946234822273254,0.284678071737289,-0.153616204857826,-0.992159366607666,0.0641838610172272,-0.107238903641701,-0.95100337266922,0.280604869127274,-0.12982065975666,-0.961304903030396,0.24835616350174,-0.119213812053204,-0.946234822273254,0.284678071737289,-0.153616204857826,-0.960579216480255,0.240925922989845,-0.138715296983719,-0.982191026210785,-0.0558246038854122,-0.179399862885475,-0.992159366607666,0.0641838610172272,-0.107238903641701,-0.909715890884399,-0.415004283189774,-0.013723093084991,-0.95958286523819,-0.208976775407791,-0.188492208719254,-0.9797722697258,-0.119631990790367,-0.160419434309006,-0.988513886928558,0.0554691106081009,-0.140582144260406,-0.982191026210785,-0.0558246038854122,-0.179399862885475,-0.909715890884399,-0.415004283189774,-0.013723093084991,-0.742914140224457,-0.647606313228607,-0.169364899396896,-0.671567022800446,-0.728919506072998,-0.132943138480186,-0.415329396724701,-0.900293827056885,-0.130278185009956,-0.742914140224457,-0.647606313228607,-0.169364899396896,-0.415329396724701,-0.900293827056885,-0.130278185009956,-0.39892366528511,-0.902916371822357,-0.160004869103432,-0.183526530861855,-0.969485282897949,-0.162530571222305,-0.846266508102417,0.34090718626976,0.409408301115036,-0.795668184757233,0.428657412528992,0.427977561950684,-0.859263300895691,0.281661212444305,0.42700520157814,-0.846266508102417,0.34090718626976,0.409408301115036,-0.897306740283966,0.186730951070786,0.399965167045593,-0.921271860599518,0.249908372759819,0.297999709844589,-0.814971446990967,0.399507611989975,0.419779777526855,-0.795668184757233,0.428657412528992,0.427977561950684,-0.735000729560852,0.539745450019836,0.41042497754097,-0.735000729560852,0.539745450019836,0.41042497754097,-0.631599545478821,0.675979554653168,0.379649370908737,-0.681140422821045,0.649436354637146,0.338053226470947,-0.96218478679657,0.225722670555115,0.152478516101837, +-0.982454717159271,0.15888038277626,0.0976708829402924,-0.956210970878601,0.216835767030716,0.196577414870262,-0.96218478679657,0.225722670555115,0.152478516101837,-0.962315499782562,0.226641297340393,0.150274783372879,-0.954942047595978,0.241953834891319,0.171883672475815,-0.954942047595978,0.241953834891319,0.171883672475815,-0.928116619586945,0.298024982213974,0.223115608096123,-0.921271860599518,0.249908372759819,0.297999709844589,-0.681140422821045,0.649436354637146,0.338053226470947,-0.631599545478821,0.675979554653168,0.379649370908737,-0.562416851520538,0.768422424793243,0.3053098320961,-0.574745953083038,0.725480258464813,0.378609746694565,-0.757809221744537,0.578064024448395,0.302600115537643,-0.685893952846527,0.642498731613159,0.341679006814957,-0.757809221744537,0.578064024448395,0.302600115537643,-0.651818513870239,0.670251548290253,0.354817271232605,-0.807954430580139,0.506399512290955,0.30127888917923,-0.807954430580139,0.506399512290955,0.30127888917923,-0.651818513870239,0.670251548290253,0.354817271232605,-0.781127035617828,0.544230163097382,0.306029200553894,-0.71041601896286,0.627984404563904,0.317717641592026,-0.847193658351898,0.465256214141846,0.256514221429825,-0.781127035617828,0.544230163097382,0.306029200553894,-0.878216505050659,0.403930932283401,0.25607705116272,-0.847193658351898,0.465256214141846,0.256514221429825,-0.785034418106079,0.545716524124146,0.293111324310303,-0.878216505050659,0.403930932283401,0.25607705116272,-0.935142993927002,0.281457453966141,0.215149149298668,-0.95774894952774,0.213277071714401,0.192950114607811,-0.987149894237518,0.0871935784816742,0.133911445736885,-0.95774894952774,0.213277071714401,0.192950114607811,-0.997327983379364,-0.0623135939240456,0.0381283424794674,-0.995177924633026,-0.0962687805294991,0.0187912136316299,-0.987149894237518,0.0871935784816742,0.133911445736885,-0.943595051765442,-0.313424050807953,-0.106741212308407,-0.634153962135315,-0.682620763778687,-0.363149553537369,-0.622375786304474,-0.69128429889679,-0.367116093635559,-0.695743203163147,-0.632903695106506,-0.339667707681656, +-0.882812678813934,-0.408777266740799,-0.23139314353466,-0.695743203163147,-0.632903695106506,-0.339667707681656,-0.793907225131989,-0.546932637691498,-0.265661507844925,-0.943595051765442,-0.313424050807953,-0.106741212308407,-0.833297431468964,-0.50253826379776,-0.230370447039604,-0.696458637714386,-0.641494154930115,-0.321606010198593,-0.696458637714386,-0.641494154930115,-0.321606010198593,-0.833297431468964,-0.50253826379776,-0.230370447039604,-0.622375786304474,-0.69128429889679,-0.367116093635559,-0.830883800983429,-0.489534944295883,-0.264551490545273,-0.941773653030396,-0.286942452192307,-0.175289452075958,-0.793907225131989,-0.546932637691498,-0.265661507844925,-0.830883800983429,-0.489534944295883,-0.264551490545273,-0.898440957069397,-0.374189347028732,-0.229751691222191,-0.95958286523819,-0.208976775407791,-0.188492208719254,-0.988513886928558,0.0554691106081009,-0.140582144260406,-0.9797722697258,-0.119631990790367,-0.160419434309006,-0.988691985607147,0.0678702220320702,-0.133722752332687,-0.988691985607147,0.0678702220320702,-0.133722752332687,-0.986665964126587,0.0945670530200005,-0.132466182112694,-0.960579216480255,0.240925922989845,-0.138715296983719,-0.992159366607666,0.0641838610172272,-0.107238903641701,-0.946234822273254,0.284678071737289,-0.153616204857826,-0.978610515594482,0.0466339327394962,-0.200366199016571,-0.964062929153442,0.229269370436668,-0.134231522679329,-0.946234822273254,0.284678071737289,-0.153616204857826,-0.961304903030396,0.24835616350174,-0.119213812053204,-0.961304903030396,0.24835616350174,-0.119213812053204,-0.960579216480255,0.240925922989845,-0.138715296983719,-0.986665964126587,0.0945670530200005,-0.132466182112694,-0.937377870082855,-0.310424238443375,-0.157985359430313,-0.909715890884399,-0.415004283189774,-0.013723093084991,-0.992159366607666,0.0641838610172272,-0.107238903641701,-0.95958286523819,-0.208976775407791,-0.188492208719254,-0.898440957069397,-0.374189347028732,-0.229751691222191,-0.9797722697258,-0.119631990790367,-0.160419434309006,-0.909715890884399,-0.415004283189774,-0.013723093084991, +-0.671567022800446,-0.728919506072998,-0.132943138480186,-0.742914140224457,-0.647606313228607,-0.169364899396896,-0.415329396724701,-0.900293827056885,-0.130278185009956,-0.671567022800446,-0.728919506072998,-0.132943138480186,-0.39892366528511,-0.902916371822357,-0.160004869103432,-0.554388225078583,-0.816717743873596,-0.160080522298813,-0.183526530861855,-0.969485282897949,-0.162530571222305,-0.39892366528511,-0.902916371822357,-0.160004869103432,-0.779942750930786,0.47905033826828,0.40274053812027,-0.795668184757233,0.428657412528992,0.427977561950684,-0.846266508102417,0.34090718626976,0.409408301115036,-0.921271860599518,0.249908372759819,0.297999709844589,-0.839265704154968,0.412689298391342,0.354006350040436,-0.846266508102417,0.34090718626976,0.409408301115036,-0.735000729560852,0.539745450019836,0.41042497754097,-0.795668184757233,0.428657412528992,0.427977561950684,-0.710453391075134,0.573210060596466,0.40827202796936,-0.735000729560852,0.539745450019836,0.41042497754097,-0.710453391075134,0.573210060596466,0.40827202796936,-0.631599545478821,0.675979554653168,0.379649370908737,-0.962315499782562,0.226641297340393,0.150274783372879,-0.96218478679657,0.225722670555115,0.152478516101837,-0.956210970878601,0.216835767030716,0.196577414870262,-0.948650658130646,0.269193172454834,0.166123285889626,-0.954942047595978,0.241953834891319,0.171883672475815,-0.962315499782562,0.226641297340393,0.150274783372879,-0.954942047595978,0.241953834891319,0.171883672475815,-0.948650658130646,0.269193172454834,0.166123285889626,-0.928116619586945,0.298024982213974,0.223115608096123,-0.928116619586945,0.298024982213974,0.223115608096123,-0.891540706157684,0.366050094366074,0.266762763261795,-0.921271860599518,0.249908372759819,0.297999709844589,-0.651818513870239,0.670251548290253,0.354817271232605,-0.757809221744537,0.578064024448395,0.302600115537643,-0.574745953083038,0.725480258464813,0.378609746694565,-0.71041601896286,0.627984404563904,0.317717641592026,-0.781127035617828,0.544230163097382,0.306029200553894,-0.651818513870239,0.670251548290253,0.354817271232605, +-0.71041601896286,0.627984404563904,0.317717641592026,-0.785034418106079,0.545716524124146,0.293111324310303,-0.847193658351898,0.465256214141846,0.256514221429825,-0.839675068855286,0.461954772472382,0.285558044910431,-0.878216505050659,0.403930932283401,0.25607705116272,-0.785034418106079,0.545716524124146,0.293111324310303,-0.839675068855286,0.461954772472382,0.285558044910431,-0.935142993927002,0.281457453966141,0.215149149298668,-0.878216505050659,0.403930932283401,0.25607705116272,-0.95774894952774,0.213277071714401,0.192950114607811,-0.935142993927002,0.281457453966141,0.215149149298668,-0.993742823600769,0.0271123796701431,0.108351267874241,-0.975129067897797,-0.219095930457115,-0.0334690511226654,-0.997327983379364,-0.0623135939240456,0.0381283424794674,-0.95774894952774,0.213277071714401,0.192950114607811,-0.987149894237518,0.0871935784816742,0.133911445736885,-0.997327983379364,-0.0623135939240456,0.0381283424794674,-0.943595051765442,-0.313424050807953,-0.106741212308407,-0.695743203163147,-0.632903695106506,-0.339667707681656,-0.622375786304474,-0.69128429889679,-0.367116093635559,-0.648328483104706,-0.686489403247833,-0.32924485206604,-0.793907225131989,-0.546932637691498,-0.265661507844925,-0.695743203163147,-0.632903695106506,-0.339667707681656,-0.648328483104706,-0.686489403247833,-0.32924485206604,-0.943595051765442,-0.313424050807953,-0.106741212308407,-0.997327983379364,-0.0623135939240456,0.0381283424794674,-0.833297431468964,-0.50253826379776,-0.230370447039604,-0.833297431468964,-0.50253826379776,-0.230370447039604,-0.718215525150299,-0.630533039569855,-0.294269233942032,-0.622375786304474,-0.69128429889679,-0.367116093635559,-0.830883800983429,-0.489534944295883,-0.264551490545273,-0.793907225131989,-0.546932637691498,-0.265661507844925,-0.648328483104706,-0.686489403247833,-0.32924485206604,-0.830883800983429,-0.489534944295883,-0.264551490545273,-0.723999261856079,-0.612415850162506,-0.317445814609528,-0.898440957069397,-0.374189347028732,-0.229751691222191,-0.988691985607147,0.0678702220320702,-0.133722752332687, +-0.9797722697258,-0.119631990790367,-0.160419434309006,-0.986665964126587,0.0945670530200005,-0.132466182112694,-0.978610515594482,0.0466339327394962,-0.200366199016571,-0.946234822273254,0.284678071737289,-0.153616204857826,-0.985513389110565,0.0284803062677383,-0.16718915104866,-0.992159366607666,0.0641838610172272,-0.107238903641701,-0.978610515594482,0.0466339327394962,-0.200366199016571,-0.937377870082855,-0.310424238443375,-0.157985359430313,-0.964062929153442,0.229269370436668,-0.134231522679329,-0.985513389110565,0.0284803062677383,-0.16718915104866,-0.946234822273254,0.284678071737289,-0.153616204857826,-0.964062929153442,0.229269370436668,-0.134231522679329,-0.961304903030396,0.24835616350174,-0.119213812053204,-0.978408396244049,0.163357362151146,-0.126614674925804,-0.986665964126587,0.0945670530200005,-0.132466182112694,-0.978408396244049,0.163357362151146,-0.126614674925804,-0.961304903030396,0.24835616350174,-0.119213812053204,-0.937377870082855,-0.310424238443375,-0.157985359430313,-0.671567022800446,-0.728919506072998,-0.132943138480186,-0.909715890884399,-0.415004283189774,-0.013723093084991,-0.898440957069397,-0.374189347028732,-0.229751691222191,-0.930068671703339,-0.301959961652756,-0.209266066551209,-0.9797722697258,-0.119631990790367,-0.160419434309006,-0.671567022800446,-0.728919506072998,-0.132943138480186,-0.554388225078583,-0.816717743873596,-0.160080522298813,-0.39892366528511,-0.902916371822357,-0.160004869103432,-0.136709079146385,-0.972881972789764,-0.186577007174492,-0.183526530861855,-0.969485282897949,-0.162530571222305,-0.554388225078583,-0.816717743873596,-0.160080522298813,-0.779942750930786,0.47905033826828,0.40274053812027,-0.710453391075134,0.573210060596466,0.40827202796936,-0.795668184757233,0.428657412528992,0.427977561950684,-0.846266508102417,0.34090718626976,0.409408301115036,-0.839265704154968,0.412689298391342,0.354006350040436,-0.779942750930786,0.47905033826828,0.40274053812027,-0.839265704154968,0.412689298391342,0.354006350040436,-0.921271860599518,0.249908372759819,0.297999709844589, +-0.891540706157684,0.366050094366074,0.266762763261795,-0.919818937778473,0.314502596855164,0.234565928578377,-0.962315499782562,0.226641297340393,0.150274783372879,-0.956210970878601,0.216835767030716,0.196577414870262,-0.962315499782562,0.226641297340393,0.150274783372879,-0.919818937778473,0.314502596855164,0.234565928578377,-0.948650658130646,0.269193172454834,0.166123285889626,-0.948650658130646,0.269193172454834,0.166123285889626,-0.919818937778473,0.314502596855164,0.234565928578377,-0.928116619586945,0.298024982213974,0.223115608096123,-0.891540706157684,0.366050094366074,0.266762763261795,-0.928116619586945,0.298024982213974,0.223115608096123,-0.919818937778473,0.314502596855164,0.234565928578377,-0.751123011112213,0.577505350112915,0.319846242666245,-0.839675068855286,0.461954772472382,0.285558044910431,-0.785034418106079,0.545716524124146,0.293111324310303,-0.860961079597473,0.428524613380432,0.274066895246506,-0.935142993927002,0.281457453966141,0.215149149298668,-0.839675068855286,0.461954772472382,0.285558044910431,-0.993742823600769,0.0271123796701431,0.108351267874241,-0.935142993927002,0.281457453966141,0.215149149298668,-0.993153214454651,-0.116110019385815,0.012847887352109,-0.975129067897797,-0.219095930457115,-0.0334690511226654,-0.95774894952774,0.213277071714401,0.192950114607811,-0.993742823600769,0.0271123796701431,0.108351267874241,-0.975129067897797,-0.219095930457115,-0.0334690511226654,-0.833297431468964,-0.50253826379776,-0.230370447039604,-0.997327983379364,-0.0623135939240456,0.0381283424794674,-0.622375786304474,-0.69128429889679,-0.367116093635559,-0.718215525150299,-0.630533039569855,-0.294269233942032,-0.648328483104706,-0.686489403247833,-0.32924485206604,-0.833297431468964,-0.50253826379776,-0.230370447039604,-0.975129067897797,-0.219095930457115,-0.0334690511226654,-0.718215525150299,-0.630533039569855,-0.294269233942032,-0.723999261856079,-0.612415850162506,-0.317445814609528,-0.830883800983429,-0.489534944295883,-0.264551490545273,-0.648328483104706,-0.686489403247833,-0.32924485206604, +-0.898440957069397,-0.374189347028732,-0.229751691222191,-0.723999261856079,-0.612415850162506,-0.317445814609528,-0.811556458473206,-0.510505676269531,-0.284182876348495,-0.9797722697258,-0.119631990790367,-0.160419434309006,-0.988450586795807,-0.0306554101407528,-0.148410186171532,-0.986665964126587,0.0945670530200005,-0.132466182112694,-0.978610515594482,0.0466339327394962,-0.200366199016571,-0.985513389110565,0.0284803062677383,-0.16718915104866,-0.879028975963593,-0.432562530040741,-0.200493454933167,-0.879028975963593,-0.432562530040741,-0.200493454933167,-0.937377870082855,-0.310424238443375,-0.157985359430313,-0.978610515594482,0.0466339327394962,-0.200366199016571,-0.985513389110565,0.0284803062677383,-0.16718915104866,-0.964062929153442,0.229269370436668,-0.134231522679329,-0.980830252170563,-0.0431137010455132,-0.190034776926041,-0.973550736904144,0.164387568831444,-0.158668130636215,-0.964062929153442,0.229269370436668,-0.134231522679329,-0.978408396244049,0.163357362151146,-0.126614674925804,-0.978408396244049,0.163357362151146,-0.126614674925804,-0.986665964126587,0.0945670530200005,-0.132466182112694,-0.988450586795807,-0.0306554101407528,-0.148410186171532,-0.671567022800446,-0.728919506072998,-0.132943138480186,-0.937377870082855,-0.310424238443375,-0.157985359430313,-0.879028975963593,-0.432562530040741,-0.200493454933167,-0.930068671703339,-0.301959961652756,-0.209266066551209,-0.898440957069397,-0.374189347028732,-0.229751691222191,-0.811556458473206,-0.510505676269531,-0.284182876348495,-0.959398090839386,-0.206047549843788,-0.192612767219543,-0.9797722697258,-0.119631990790367,-0.160419434309006,-0.930068671703339,-0.301959961652756,-0.209266066551209,-0.671567022800446,-0.728919506072998,-0.132943138480186,-0.879028975963593,-0.432562530040741,-0.200493454933167,-0.554388225078583,-0.816717743873596,-0.160080522298813,-0.554388225078583,-0.816717743873596,-0.160080522298813,-0.517889261245728,-0.839157402515411,-0.1661486774683,-0.136709079146385,-0.972881972789764,-0.186577007174492,-0.860961079597473,0.428524613380432,0.274066895246506, +-0.839675068855286,0.461954772472382,0.285558044910431,-0.751123011112213,0.577505350112915,0.319846242666245,-0.935142993927002,0.281457453966141,0.215149149298668,-0.860961079597473,0.428524613380432,0.274066895246506,-0.975520312786102,0.161919206380844,0.148802742362022,-0.935142993927002,0.281457453966141,0.215149149298668,-0.975520312786102,0.161919206380844,0.148802742362022,-0.993153214454651,-0.116110019385815,0.012847887352109,-0.993742823600769,0.0271123796701431,0.108351267874241,-0.993153214454651,-0.116110019385815,0.012847887352109,-0.887856245040894,-0.4343521296978,-0.151820123195648,-0.975129067897797,-0.219095930457115,-0.0334690511226654,-0.993742823600769,0.0271123796701431,0.108351267874241,-0.887856245040894,-0.4343521296978,-0.151820123195648,-0.651397466659546,-0.690043568611145,-0.315469563007355,-0.648328483104706,-0.686489403247833,-0.32924485206604,-0.718215525150299,-0.630533039569855,-0.294269233942032,-0.718215525150299,-0.630533039569855,-0.294269233942032,-0.975129067897797,-0.219095930457115,-0.0334690511226654,-0.887856245040894,-0.4343521296978,-0.151820123195648,-0.723999261856079,-0.612415850162506,-0.317445814609528,-0.648328483104706,-0.686489403247833,-0.32924485206604,-0.608904302120209,-0.715896546840668,-0.341654062271118,-0.723999261856079,-0.612415850162506,-0.317445814609528,-0.636446595191956,-0.676584661006927,-0.370362997055054,-0.811556458473206,-0.510505676269531,-0.284182876348495,-0.9797722697258,-0.119631990790367,-0.160419434309006,-0.959398090839386,-0.206047549843788,-0.192612767219543,-0.988450586795807,-0.0306554101407528,-0.148410186171532,-0.879028975963593,-0.432562530040741,-0.200493454933167,-0.985513389110565,0.0284803062677383,-0.16718915104866,-0.897737741470337,-0.402487188577652,-0.179083496332169,-0.964062929153442,0.229269370436668,-0.134231522679329,-0.973550736904144,0.164387568831444,-0.158668130636215,-0.980830252170563,-0.0431137010455132,-0.190034776926041,-0.985513389110565,0.0284803062677383,-0.16718915104866,-0.980830252170563,-0.0431137010455132,-0.190034776926041, +-0.897737741470337,-0.402487188577652,-0.179083496332169,-0.975502908229828,0.077031321823597,-0.206058740615845,-0.973550736904144,0.164387568831444,-0.158668130636215,-0.978408396244049,0.163357362151146,-0.126614674925804,-0.988450586795807,-0.0306554101407528,-0.148410186171532,-0.986060202121735,0.0164891313761473,-0.16556940972805,-0.978408396244049,0.163357362151146,-0.126614674925804,-0.930068671703339,-0.301959961652756,-0.209266066551209,-0.811556458473206,-0.510505676269531,-0.284182876348495,-0.853668570518494,-0.442951261997223,-0.273941606283188,-0.959398090839386,-0.206047549843788,-0.192612767219543,-0.930068671703339,-0.301959961652756,-0.209266066551209,-0.905886232852936,-0.345642685890198,-0.244747117161751,-0.879028975963593,-0.432562530040741,-0.200493454933167,-0.897737741470337,-0.402487188577652,-0.179083496332169,-0.554388225078583,-0.816717743873596,-0.160080522298813,-0.554388225078583,-0.816717743873596,-0.160080522298813,-0.814949154853821,-0.550543665885925,-0.180995211005211,-0.517889261245728,-0.839157402515411,-0.1661486774683,-0.517889261245728,-0.839157402515411,-0.1661486774683,-0.418930798768997,-0.890186607837677,-0.179066047072411,-0.136709079146385,-0.972881972789764,-0.186577007174492,-0.72846394777298,0.604507386684418,0.322352170944214,-0.860961079597473,0.428524613380432,0.274066895246506,-0.751123011112213,0.577505350112915,0.319846242666245,-0.975520312786102,0.161919206380844,0.148802742362022,-0.860961079597473,0.428524613380432,0.274066895246506,-0.948395490646362,0.240089744329453,0.207129806280136,-0.942338883876801,-0.317808777093887,-0.104856871068478,-0.993153214454651,-0.116110019385815,0.012847887352109,-0.975520312786102,0.161919206380844,0.148802742362022,-0.774015665054321,-0.584555089473724,-0.243300095200539,-0.887856245040894,-0.4343521296978,-0.151820123195648,-0.993153214454651,-0.116110019385815,0.012847887352109,-0.651397466659546,-0.690043568611145,-0.315469563007355,-0.608904302120209,-0.715896546840668,-0.341654062271118,-0.648328483104706,-0.686489403247833,-0.32924485206604, +-0.718215525150299,-0.630533039569855,-0.294269233942032,-0.887856245040894,-0.4343521296978,-0.151820123195648,-0.651397466659546,-0.690043568611145,-0.315469563007355,-0.636446595191956,-0.676584661006927,-0.370362997055054,-0.723999261856079,-0.612415850162506,-0.317445814609528,-0.608904302120209,-0.715896546840668,-0.341654062271118,-0.715293228626251,-0.607694745063782,-0.345054417848587,-0.811556458473206,-0.510505676269531,-0.284182876348495,-0.636446595191956,-0.676584661006927,-0.370362997055054,-0.973858177661896,-0.120804265141487,-0.192370891571045,-0.988450586795807,-0.0306554101407528,-0.148410186171532,-0.959398090839386,-0.206047549843788,-0.192612767219543,-0.966324210166931,-0.104788757860661,-0.235025197267532,-0.980830252170563,-0.0431137010455132,-0.190034776926041,-0.973550736904144,0.164387568831444,-0.158668130636215,-0.897737741470337,-0.402487188577652,-0.179083496332169,-0.980830252170563,-0.0431137010455132,-0.190034776926041,-0.814949154853821,-0.550543665885925,-0.180995211005211,-0.975502908229828,0.077031321823597,-0.206058740615845,-0.966324210166931,-0.104788757860661,-0.235025197267532,-0.973550736904144,0.164387568831444,-0.158668130636215,-0.981095016002655,0.128040552139282,-0.14511427283287,-0.975502908229828,0.077031321823597,-0.206058740615845,-0.978408396244049,0.163357362151146,-0.126614674925804,-0.988450586795807,-0.0306554101407528,-0.148410186171532,-0.973858177661896,-0.120804265141487,-0.192370891571045,-0.986060202121735,0.0164891313761473,-0.16556940972805,-0.981095016002655,0.128040552139282,-0.14511427283287,-0.978408396244049,0.163357362151146,-0.126614674925804,-0.986060202121735,0.0164891313761473,-0.16556940972805,-0.853668570518494,-0.442951261997223,-0.273941606283188,-0.811556458473206,-0.510505676269531,-0.284182876348495,-0.715293228626251,-0.607694745063782,-0.345054417848587,-0.905886232852936,-0.345642685890198,-0.244747117161751,-0.930068671703339,-0.301959961652756,-0.209266066551209,-0.853668570518494,-0.442951261997223,-0.273941606283188,-0.930812537670136,-0.282004088163376,-0.232511520385742, +-0.959398090839386,-0.206047549843788,-0.192612767219543,-0.905886232852936,-0.345642685890198,-0.244747117161751,-0.897737741470337,-0.402487188577652,-0.179083496332169,-0.814949154853821,-0.550543665885925,-0.180995211005211,-0.554388225078583,-0.816717743873596,-0.160080522298813,-0.517889261245728,-0.839157402515411,-0.1661486774683,-0.814949154853821,-0.550543665885925,-0.180995211005211,-0.418930798768997,-0.890186607837677,-0.179066047072411,-0.136709079146385,-0.972881972789764,-0.186577007174492,-0.418930798768997,-0.890186607837677,-0.179066047072411,0.0648350194096565,-0.969828546047211,-0.23500819504261,-0.72846394777298,0.604507386684418,0.322352170944214,-0.902132272720337,0.362485647201538,0.234011739492416,-0.860961079597473,0.428524613380432,0.274066895246506,-0.948395490646362,0.240089744329453,0.207129806280136,-0.860961079597473,0.428524613380432,0.274066895246506,-0.902132272720337,0.362485647201538,0.234011739492416,-0.975520312786102,0.161919206380844,0.148802742362022,-0.948395490646362,0.240089744329453,0.207129806280136,-0.998416185379028,-0.0366691127419472,0.0426669493317604,-0.942338883876801,-0.317808777093887,-0.104856871068478,-0.774015665054321,-0.584555089473724,-0.243300095200539,-0.993153214454651,-0.116110019385815,0.012847887352109,-0.942338883876801,-0.317808777093887,-0.104856871068478,-0.975520312786102,0.161919206380844,0.148802742362022,-0.998416185379028,-0.0366691127419472,0.0426669493317604,-0.774015665054321,-0.584555089473724,-0.243300095200539,-0.651397466659546,-0.690043568611145,-0.315469563007355,-0.887856245040894,-0.4343521296978,-0.151820123195648,-0.651397466659546,-0.690043568611145,-0.315469563007355,-0.774015665054321,-0.584555089473724,-0.243300095200539,-0.608904302120209,-0.715896546840668,-0.341654062271118,-0.636446595191956,-0.676584661006927,-0.370362997055054,-0.608904302120209,-0.715896546840668,-0.341654062271118,-0.603876292705536,-0.708384156227112,-0.36541086435318,-0.715293228626251,-0.607694745063782,-0.345054417848587,-0.636446595191956,-0.676584661006927,-0.370362997055054, +-0.591161668300629,-0.705421626567841,-0.391034603118896,-0.973858177661896,-0.120804265141487,-0.192370891571045,-0.959398090839386,-0.206047549843788,-0.192612767219543,-0.947367966175079,-0.218671768903732,-0.233830019831657,-0.966324210166931,-0.104788757860661,-0.235025197267532,-0.864995658397675,-0.458457678556442,-0.203958064317703,-0.980830252170563,-0.0431137010455132,-0.190034776926041,-0.814949154853821,-0.550543665885925,-0.180995211005211,-0.980830252170563,-0.0431137010455132,-0.190034776926041,-0.864995658397675,-0.458457678556442,-0.203958064317703,-0.966324210166931,-0.104788757860661,-0.235025197267532,-0.975502908229828,0.077031321823597,-0.206058740615845,-0.916445434093475,-0.272303223609924,-0.293221056461334,-0.970591425895691,0.168906584382057,-0.171530604362488,-0.975502908229828,0.077031321823597,-0.206058740615845,-0.981095016002655,0.128040552139282,-0.14511427283287,-0.973858177661896,-0.120804265141487,-0.192370891571045,-0.976994216442108,-0.0313660502433777,-0.210946246981621,-0.986060202121735,0.0164891313761473,-0.16556940972805,-0.981095016002655,0.128040552139282,-0.14511427283287,-0.986060202121735,0.0164891313761473,-0.16556940972805,-0.976994216442108,-0.0313660502433777,-0.210946246981621,-0.715293228626251,-0.607694745063782,-0.345054417848587,-0.766039311885834,-0.54709404706955,-0.337448745965958,-0.853668570518494,-0.442951261997223,-0.273941606283188,-0.905886232852936,-0.345642685890198,-0.244747117161751,-0.853668570518494,-0.442951261997223,-0.273941606283188,-0.766039311885834,-0.54709404706955,-0.337448745965958,-0.947367966175079,-0.218671768903732,-0.233830019831657,-0.959398090839386,-0.206047549843788,-0.192612767219543,-0.930812537670136,-0.282004088163376,-0.232511520385742,-0.930812537670136,-0.282004088163376,-0.232511520385742,-0.905886232852936,-0.345642685890198,-0.244747117161751,-0.876724779605865,-0.390847533941269,-0.280342221260071,-0.814949154853821,-0.550543665885925,-0.180995211005211,-0.864995658397675,-0.458457678556442,-0.203958064317703,-0.418930798768997,-0.890186607837677,-0.179066047072411, +-0.0972829237580299,-0.963500559329987,-0.24940450489521,0.0648350194096565,-0.969828546047211,-0.23500819504261,-0.418930798768997,-0.890186607837677,-0.179066047072411,-0.902132272720337,0.362485647201538,0.234011739492416,-0.72846394777298,0.604507386684418,0.322352170944214,-0.802118122577667,0.535420298576355,0.264445573091507,-0.948395490646362,0.240089744329453,0.207129806280136,-0.902132272720337,0.362485647201538,0.234011739492416,-0.986918747425079,0.077557273209095,0.141337037086487,-0.982424259185791,-0.186129525303841,-0.0140795903280377,-0.998416185379028,-0.0366691127419472,0.0426669493317604,-0.948395490646362,0.240089744329453,0.207129806280136,-0.774015665054321,-0.584555089473724,-0.243300095200539,-0.942338883876801,-0.317808777093887,-0.104856871068478,-0.693607747554779,-0.655340075492859,-0.29906103014946,-0.942338883876801,-0.317808777093887,-0.104856871068478,-0.998416185379028,-0.0366691127419472,0.0426669493317604,-0.84205561876297,-0.496578127145767,-0.210600107908249,-0.774015665054321,-0.584555089473724,-0.243300095200539,-0.693607747554779,-0.655340075492859,-0.29906103014946,-0.608904302120209,-0.715896546840668,-0.341654062271118,-0.603876292705536,-0.708384156227112,-0.36541086435318,-0.608904302120209,-0.715896546840668,-0.341654062271118,-0.693607747554779,-0.655340075492859,-0.29906103014946,-0.636446595191956,-0.676584661006927,-0.370362997055054,-0.603876292705536,-0.708384156227112,-0.36541086435318,-0.591161668300629,-0.705421626567841,-0.391034603118896,-0.715293228626251,-0.607694745063782,-0.345054417848587,-0.591161668300629,-0.705421626567841,-0.391034603118896,-0.766039311885834,-0.54709404706955,-0.337448745965958,-0.963943064212799,-0.147220477461815,-0.221675127744675,-0.973858177661896,-0.120804265141487,-0.192370891571045,-0.947367966175079,-0.218671768903732,-0.233830019831657,-0.675358057022095,-0.659773290157318,-0.329530596733093,-0.864995658397675,-0.458457678556442,-0.203958064317703,-0.966324210166931,-0.104788757860661,-0.235025197267532,-0.975502908229828,0.077031321823597,-0.206058740615845, +-0.848432600498199,-0.375533819198608,-0.373009532690048,-0.916445434093475,-0.272303223609924,-0.293221056461334,-0.966324210166931,-0.104788757860661,-0.235025197267532,-0.916445434093475,-0.272303223609924,-0.293221056461334,-0.675358057022095,-0.659773290157318,-0.329530596733093,-0.960032284259796,-0.0584897398948669,-0.27370947599411,-0.975502908229828,0.077031321823597,-0.206058740615845,-0.970591425895691,0.168906584382057,-0.171530604362488,-0.981095016002655,0.128040552139282,-0.14511427283287,-0.974011898040771,0.173350647091866,-0.145774632692337,-0.970591425895691,0.168906584382057,-0.171530604362488,-0.973858177661896,-0.120804265141487,-0.192370891571045,-0.963943064212799,-0.147220477461815,-0.221675127744675,-0.976994216442108,-0.0313660502433777,-0.210946246981621,-0.979373395442963,0.118879579007626,-0.163386985659599,-0.981095016002655,0.128040552139282,-0.14511427283287,-0.976994216442108,-0.0313660502433777,-0.210946246981621,-0.766039311885834,-0.54709404706955,-0.337448745965958,-0.814528524875641,-0.48236820101738,-0.3222796022892,-0.905886232852936,-0.345642685890198,-0.244747117161751,-0.930812537670136,-0.282004088163376,-0.232511520385742,-0.895231366157532,-0.334132969379425,-0.294814944267273,-0.947367966175079,-0.218671768903732,-0.233830019831657,-0.814528524875641,-0.48236820101738,-0.3222796022892,-0.876724779605865,-0.390847533941269,-0.280342221260071,-0.905886232852936,-0.345642685890198,-0.244747117161751,-0.930812537670136,-0.282004088163376,-0.232511520385742,-0.876724779605865,-0.390847533941269,-0.280342221260071,-0.856956422328949,-0.417123764753342,-0.302710115909576,-0.418930798768997,-0.890186607837677,-0.179066047072411,-0.864995658397675,-0.458457678556442,-0.203958064317703,-0.519130051136017,-0.819642424583435,-0.242260500788689,-0.0972829237580299,-0.963500559329987,-0.24940450489521,0.275043308734894,-0.938038349151611,-0.210796281695366,0.0648350194096565,-0.969828546047211,-0.23500819504261,-0.418930798768997,-0.890186607837677,-0.179066047072411,-0.519130051136017,-0.819642424583435,-0.242260500788689, +-0.0972829237580299,-0.963500559329987,-0.24940450489521,-0.72846394777298,0.604507386684418,0.322352170944214,-0.612618863582611,0.730165004730225,0.302583873271942,-0.802118122577667,0.535420298576355,0.264445573091507,-0.802118122577667,0.535420298576355,0.264445573091507,-0.990639209747314,0.117681838572025,0.069172203540802,-0.902132272720337,0.362485647201538,0.234011739492416,-0.994434952735901,-0.10461013764143,0.01247913017869,-0.986918747425079,0.077557273209095,0.141337037086487,-0.902132272720337,0.362485647201538,0.234011739492416,-0.982424259185791,-0.186129525303841,-0.0140795903280377,-0.948395490646362,0.240089744329453,0.207129806280136,-0.986918747425079,0.077557273209095,0.141337037086487,-0.982424259185791,-0.186129525303841,-0.0140795903280377,-0.84205561876297,-0.496578127145767,-0.210600107908249,-0.998416185379028,-0.0366691127419472,0.0426669493317604,-0.693607747554779,-0.655340075492859,-0.29906103014946,-0.942338883876801,-0.317808777093887,-0.104856871068478,-0.84205561876297,-0.496578127145767,-0.210600107908249,-0.693607747554779,-0.655340075492859,-0.29906103014946,-0.84205561876297,-0.496578127145767,-0.210600107908249,-0.603876292705536,-0.708384156227112,-0.36541086435318,-0.591161668300629,-0.705421626567841,-0.391034603118896,-0.603876292705536,-0.708384156227112,-0.36541086435318,-0.7088583111763,-0.634646892547607,-0.307803750038147,-0.658706247806549,-0.647347271442413,-0.383467525243759,-0.766039311885834,-0.54709404706955,-0.337448745965958,-0.591161668300629,-0.705421626567841,-0.391034603118896,-0.947674751281738,-0.196022599935532,-0.251967489719391,-0.963943064212799,-0.147220477461815,-0.221675127744675,-0.947367966175079,-0.218671768903732,-0.233830019831657,-0.675358057022095,-0.659773290157318,-0.329530596733093,-0.519130051136017,-0.819642424583435,-0.242260500788689,-0.864995658397675,-0.458457678556442,-0.203958064317703,-0.960032284259796,-0.0584897398948669,-0.27370947599411,-0.848432600498199,-0.375533819198608,-0.373009532690048,-0.975502908229828,0.077031321823597,-0.206058740615845, +-0.916445434093475,-0.272303223609924,-0.293221056461334,-0.848432600498199,-0.375533819198608,-0.373009532690048,-0.626013696193695,-0.682396292686462,-0.377414882183075,-0.675358057022095,-0.659773290157318,-0.329530596733093,-0.916445434093475,-0.272303223609924,-0.293221056461334,-0.626013696193695,-0.682396292686462,-0.377414882183075,-0.975044012069702,0.0961500555276871,-0.200110539793968,-0.960032284259796,-0.0584897398948669,-0.27370947599411,-0.970591425895691,0.168906584382057,-0.171530604362488,-0.979373395442963,0.118879579007626,-0.163386985659599,-0.974011898040771,0.173350647091866,-0.145774632692337,-0.981095016002655,0.128040552139282,-0.14511427283287,-0.975044012069702,0.0961500555276871,-0.200110539793968,-0.970591425895691,0.168906584382057,-0.171530604362488,-0.974011898040771,0.173350647091866,-0.145774632692337,-0.952051997184753,-0.144261941313744,-0.269787609577179,-0.976994216442108,-0.0313660502433777,-0.210946246981621,-0.963943064212799,-0.147220477461815,-0.221675127744675,-0.976994216442108,-0.0313660502433777,-0.210946246981621,-0.974565446376801,0.0802805125713348,-0.209229737520218,-0.979373395442963,0.118879579007626,-0.163386985659599,-0.658706247806549,-0.647347271442413,-0.383467525243759,-0.814528524875641,-0.48236820101738,-0.3222796022892,-0.766039311885834,-0.54709404706955,-0.337448745965958,-0.930812537670136,-0.282004088163376,-0.232511520385742,-0.856956422328949,-0.417123764753342,-0.302710115909576,-0.895231366157532,-0.334132969379425,-0.294814944267273,-0.895231366157532,-0.334132969379425,-0.294814944267273,-0.910444378852844,-0.287715405225754,-0.297171175479889,-0.947367966175079,-0.218671768903732,-0.233830019831657,-0.814528524875641,-0.48236820101738,-0.3222796022892,-0.717091858386993,-0.589447140693665,-0.371929138898849,-0.876724779605865,-0.390847533941269,-0.280342221260071,-0.856956422328949,-0.417123764753342,-0.302710115909576,-0.876724779605865,-0.390847533941269,-0.280342221260071,-0.774671316146851,-0.523716032505035,-0.354408949613571,-0.0972829237580299,-0.963500559329987,-0.24940450489521, +0.18247227370739,-0.956511259078979,-0.227574348449707,0.275043308734894,-0.938038349151611,-0.210796281695366,-0.675358057022095,-0.659773290157318,-0.329530596733093,-0.0972829237580299,-0.963500559329987,-0.24940450489521,-0.519130051136017,-0.819642424583435,-0.242260500788689,-0.612618863582611,0.730165004730225,0.302583873271942,-0.681716024875641,0.65416294336319,0.327618569135666,-0.802118122577667,0.535420298576355,0.264445573091507,-0.802118122577667,0.535420298576355,0.264445573091507,-0.88343471288681,0.396616667509079,0.249475806951523,-0.990639209747314,0.117681838572025,0.069172203540802,-0.994434952735901,-0.10461013764143,0.01247913017869,-0.902132272720337,0.362485647201538,0.234011739492416,-0.990639209747314,0.117681838572025,0.069172203540802,-0.994434952735901,-0.10461013764143,0.01247913017869,-0.890690624713898,-0.424125015735626,-0.163670465350151,-0.986918747425079,0.077557273209095,0.141337037086487,-0.982424259185791,-0.186129525303841,-0.0140795903280377,-0.986918747425079,0.077557273209095,0.141337037086487,-0.890690624713898,-0.424125015735626,-0.163670465350151,-0.84205561876297,-0.496578127145767,-0.210600107908249,-0.982424259185791,-0.186129525303841,-0.0140795903280377,-0.7088583111763,-0.634646892547607,-0.307803750038147,-0.84205561876297,-0.496578127145767,-0.210600107908249,-0.7088583111763,-0.634646892547607,-0.307803750038147,-0.603876292705536,-0.708384156227112,-0.36541086435318,-0.591161668300629,-0.705421626567841,-0.391034603118896,-0.7088583111763,-0.634646892547607,-0.307803750038147,-0.611979424953461,-0.698199391365051,-0.371481865644455,-0.658706247806549,-0.647347271442413,-0.383467525243759,-0.591161668300629,-0.705421626567841,-0.391034603118896,-0.557596743106842,-0.725598514080048,-0.403227597475052,-0.952051997184753,-0.144261941313744,-0.269787609577179,-0.963943064212799,-0.147220477461815,-0.221675127744675,-0.947674751281738,-0.196022599935532,-0.251967489719391,-0.910444378852844,-0.287715405225754,-0.297171175479889,-0.947674751281738,-0.196022599935532,-0.251967489719391, +-0.947367966175079,-0.218671768903732,-0.233830019831657,-0.768470466136932,-0.474676698446274,-0.429109692573547,-0.848432600498199,-0.375533819198608,-0.373009532690048,-0.960032284259796,-0.0584897398948669,-0.27370947599411,-0.626013696193695,-0.682396292686462,-0.377414882183075,-0.848432600498199,-0.375533819198608,-0.373009532690048,-0.352802634239197,-0.820475876331329,-0.449832767248154,-0.675358057022095,-0.659773290157318,-0.329530596733093,-0.626013696193695,-0.682396292686462,-0.377414882183075,-0.171872168779373,-0.934715270996094,-0.311074197292328,-0.975044012069702,0.0961500555276871,-0.200110539793968,-0.905052423477173,-0.243255168199539,-0.348865360021591,-0.960032284259796,-0.0584897398948669,-0.27370947599411,-0.975044012069702,0.0961500555276871,-0.200110539793968,-0.974011898040771,0.173350647091866,-0.145774632692337,-0.979373395442963,0.118879579007626,-0.163386985659599,-0.957994341850281,-0.0977673977613449,-0.26960763335228,-0.976994216442108,-0.0313660502433777,-0.210946246981621,-0.952051997184753,-0.144261941313744,-0.269787609577179,-0.976994216442108,-0.0313660502433777,-0.210946246981621,-0.972628593444824,-0.0375081412494183,-0.229318007826805,-0.974565446376801,0.0802805125713348,-0.209229737520218,-0.974565446376801,0.0802805125713348,-0.209229737520218,-0.965062618255615,0.124439842998981,-0.230583384633064,-0.979373395442963,0.118879579007626,-0.163386985659599,-0.717091858386993,-0.589447140693665,-0.371929138898849,-0.814528524875641,-0.48236820101738,-0.3222796022892,-0.658706247806549,-0.647347271442413,-0.383467525243759,-0.752331256866455,-0.538258135318756,-0.37983638048172,-0.895231366157532,-0.334132969379425,-0.294814944267273,-0.856956422328949,-0.417123764753342,-0.302710115909576,-0.895231366157532,-0.334132969379425,-0.294814944267273,-0.814577162265778,-0.440955609083176,-0.376858115196228,-0.910444378852844,-0.287715405225754,-0.297171175479889,-0.774671316146851,-0.523716032505035,-0.354408949613571,-0.876724779605865,-0.390847533941269,-0.280342221260071,-0.717091858386993,-0.589447140693665,-0.371929138898849, +-0.856956422328949,-0.417123764753342,-0.302710115909576,-0.774671316146851,-0.523716032505035,-0.354408949613571,-0.697499394416809,-0.603950142860413,-0.385666519403458,-0.171872168779373,-0.934715270996094,-0.311074197292328,0.18247227370739,-0.956511259078979,-0.227574348449707,-0.0972829237580299,-0.963500559329987,-0.24940450489521,-0.675358057022095,-0.659773290157318,-0.329530596733093,-0.171872168779373,-0.934715270996094,-0.311074197292328,-0.0972829237580299,-0.963500559329987,-0.24940450489521,-0.681716024875641,0.65416294336319,0.327618569135666,-0.88343471288681,0.396616667509079,0.249475806951523,-0.802118122577667,0.535420298576355,0.264445573091507,-0.990639209747314,0.117681838572025,0.069172203540802,-0.88343471288681,0.396616667509079,0.249475806951523,-0.978644847869873,-0.193071216344833,-0.070552870631218,-0.994434952735901,-0.10461013764143,0.01247913017869,-0.990639209747314,0.117681838572025,0.069172203540802,-0.897458612918854,-0.384015381336212,-0.217025816440582,-0.738481760025024,-0.60682612657547,-0.293949961662292,-0.890690624713898,-0.424125015735626,-0.163670465350151,-0.994434952735901,-0.10461013764143,0.01247913017869,-0.7088583111763,-0.634646892547607,-0.307803750038147,-0.982424259185791,-0.186129525303841,-0.0140795903280377,-0.890690624713898,-0.424125015735626,-0.163670465350151,-0.7088583111763,-0.634646892547607,-0.307803750038147,-0.890690624713898,-0.424125015735626,-0.163670465350151,-0.611979424953461,-0.698199391365051,-0.371481865644455,-0.611979424953461,-0.698199391365051,-0.371481865644455,-0.557596743106842,-0.725598514080048,-0.403227597475052,-0.591161668300629,-0.705421626567841,-0.391034603118896,-0.717091858386993,-0.589447140693665,-0.371929138898849,-0.658706247806549,-0.647347271442413,-0.383467525243759,-0.557596743106842,-0.725598514080048,-0.403227597475052,-0.952051997184753,-0.144261941313744,-0.269787609577179,-0.947674751281738,-0.196022599935532,-0.251967489719391,-0.921250700950623,-0.245803385972977,-0.30145925283432,-0.921250700950623,-0.245803385972977,-0.30145925283432, +-0.947674751281738,-0.196022599935532,-0.251967489719391,-0.910444378852844,-0.287715405225754,-0.297171175479889,-0.768470466136932,-0.474676698446274,-0.429109692573547,-0.352802634239197,-0.820475876331329,-0.449832767248154,-0.848432600498199,-0.375533819198608,-0.373009532690048,-0.905052423477173,-0.243255168199539,-0.348865360021591,-0.768470466136932,-0.474676698446274,-0.429109692573547,-0.960032284259796,-0.0584897398948669,-0.27370947599411,-0.352802634239197,-0.820475876331329,-0.449832767248154,-0.171872168779373,-0.934715270996094,-0.311074197292328,-0.626013696193695,-0.682396292686462,-0.377414882183075,-0.975044012069702,0.0961500555276871,-0.200110539793968,-0.963104009628296,-0.0338217504322529,-0.266995489597321,-0.905052423477173,-0.243255168199539,-0.348865360021591,-0.965062618255615,0.124439842998981,-0.230583384633064,-0.975044012069702,0.0961500555276871,-0.200110539793968,-0.979373395442963,0.118879579007626,-0.163386985659599,-0.972628593444824,-0.0375081412494183,-0.229318007826805,-0.976994216442108,-0.0313660502433777,-0.210946246981621,-0.957994341850281,-0.0977673977613449,-0.26960763335228,-0.948006868362427,-0.104412771761417,-0.300633996725082,-0.957994341850281,-0.0977673977613449,-0.26960763335228,-0.952051997184753,-0.144261941313744,-0.269787609577179,-0.974565446376801,0.0802805125713348,-0.209229737520218,-0.972628593444824,-0.0375081412494183,-0.229318007826805,-0.970565378665924,-0.00571311078965664,-0.240769699215889,-0.961590170860291,0.0572612173855305,-0.268449872732162,-0.965062618255615,0.124439842998981,-0.230583384633064,-0.974565446376801,0.0802805125713348,-0.209229737520218,-0.752331256866455,-0.538258135318756,-0.37983638048172,-0.814577162265778,-0.440955609083176,-0.376858115196228,-0.895231366157532,-0.334132969379425,-0.294814944267273,-0.752331256866455,-0.538258135318756,-0.37983638048172,-0.856956422328949,-0.417123764753342,-0.302710115909576,-0.697499394416809,-0.603950142860413,-0.385666519403458,-0.910444378852844,-0.287715405225754,-0.297171175479889, +-0.814577162265778,-0.440955609083176,-0.376858115196228,-0.806413531303406,-0.446275264024735,-0.387989014387131,-0.717091858386993,-0.589447140693665,-0.371929138898849,-0.596979320049286,-0.68012410402298,-0.425495862960815,-0.774671316146851,-0.523716032505035,-0.354408949613571,-0.596979320049286,-0.68012410402298,-0.425495862960815,-0.697499394416809,-0.603950142860413,-0.385666519403458,-0.774671316146851,-0.523716032505035,-0.354408949613571,0.12588806450367,-0.92530483007431,-0.357719331979752,0.18247227370739,-0.956511259078979,-0.227574348449707,-0.171872168779373,-0.934715270996094,-0.311074197292328,-0.88343471288681,0.396616667509079,0.249475806951523,-0.681716024875641,0.65416294336319,0.327618569135666,-0.738685429096222,0.584546089172363,0.335633248090744,-0.99311363697052,0.0956375524401665,0.0676656365394592,-0.978644847869873,-0.193071216344833,-0.070552870631218,-0.88343471288681,0.396616667509079,0.249475806951523,-0.990639209747314,0.117681838572025,0.069172203540802,-0.978644847869873,-0.193071216344833,-0.070552870631218,-0.82077431678772,-0.499750405550003,-0.276728957891464,-0.82077431678772,-0.499750405550003,-0.276728957891464,-0.897458612918854,-0.384015381336212,-0.217025816440582,-0.990639209747314,0.117681838572025,0.069172203540802,-0.738481760025024,-0.60682612657547,-0.293949961662292,-0.994434952735901,-0.10461013764143,0.01247913017869,-0.897458612918854,-0.384015381336212,-0.217025816440582,-0.738481760025024,-0.60682612657547,-0.293949961662292,-0.611979424953461,-0.698199391365051,-0.371481865644455,-0.890690624713898,-0.424125015735626,-0.163670465350151,-0.611979424953461,-0.698199391365051,-0.371481865644455,-0.738481760025024,-0.60682612657547,-0.293949961662292,-0.557596743106842,-0.725598514080048,-0.403227597475052,-0.717091858386993,-0.589447140693665,-0.371929138898849,-0.557596743106842,-0.725598514080048,-0.403227597475052,-0.596979320049286,-0.68012410402298,-0.425495862960815,-0.924858331680298,-0.190911397337914,-0.328922092914581,-0.952051997184753,-0.144261941313744,-0.269787609577179, +-0.921250700950623,-0.245803385972977,-0.30145925283432,-0.921250700950623,-0.245803385972977,-0.30145925283432,-0.910444378852844,-0.287715405225754,-0.297171175479889,-0.887486219406128,-0.332112401723862,-0.319483131170273,-0.352802634239197,-0.820475876331329,-0.449832767248154,-0.768470466136932,-0.474676698446274,-0.429109692573547,-0.513607144355774,-0.716664433479309,-0.471804648637772,-0.905052423477173,-0.243255168199539,-0.348865360021591,-0.513607144355774,-0.716664433479309,-0.471804648637772,-0.768470466136932,-0.474676698446274,-0.429109692573547,-0.352802634239197,-0.820475876331329,-0.449832767248154,0.12588806450367,-0.92530483007431,-0.357719331979752,-0.171872168779373,-0.934715270996094,-0.311074197292328,-0.975044012069702,0.0961500555276871,-0.200110539793968,-0.965062618255615,0.124439842998981,-0.230583384633064,-0.963104009628296,-0.0338217504322529,-0.266995489597321,-0.789831042289734,-0.432301104068756,-0.435066103935242,-0.905052423477173,-0.243255168199539,-0.348865360021591,-0.963104009628296,-0.0338217504322529,-0.266995489597321,-0.957994341850281,-0.0977673977613449,-0.26960763335228,-0.948006868362427,-0.104412771761417,-0.300633996725082,-0.972628593444824,-0.0375081412494183,-0.229318007826805,-0.924858331680298,-0.190911397337914,-0.328922092914581,-0.948006868362427,-0.104412771761417,-0.300633996725082,-0.952051997184753,-0.144261941313744,-0.269787609577179,-0.972628593444824,-0.0375081412494183,-0.229318007826805,-0.948006868362427,-0.104412771761417,-0.300633996725082,-0.970565378665924,-0.00571311078965664,-0.240769699215889,-0.973823487758636,0.0802582800388336,-0.212664723396301,-0.974565446376801,0.0802805125713348,-0.209229737520218,-0.970565378665924,-0.00571311078965664,-0.240769699215889,-0.961590170860291,0.0572612173855305,-0.268449872732162,-0.93265300989151,-0.037953332066536,-0.358772546052933,-0.965062618255615,0.124439842998981,-0.230583384633064,-0.973823487758636,0.0802582800388336,-0.212664723396301,-0.961590170860291,0.0572612173855305,-0.268449872732162, +-0.974565446376801,0.0802805125713348,-0.209229737520218,-0.752331256866455,-0.538258135318756,-0.37983638048172,-0.62313574552536,-0.631746351718903,-0.461083710193634,-0.814577162265778,-0.440955609083176,-0.376858115196228,-0.546208202838898,-0.711986660957336,-0.441283851861954,-0.752331256866455,-0.538258135318756,-0.37983638048172,-0.697499394416809,-0.603950142860413,-0.385666519403458,-0.677205860614777,-0.573472619056702,-0.461000204086304,-0.806413531303406,-0.446275264024735,-0.387989014387131,-0.814577162265778,-0.440955609083176,-0.376858115196228,-0.887486219406128,-0.332112401723862,-0.319483131170273,-0.910444378852844,-0.287715405225754,-0.297171175479889,-0.806413531303406,-0.446275264024735,-0.387989014387131,-0.596979320049286,-0.68012410402298,-0.425495862960815,-0.546208202838898,-0.711986660957336,-0.441283851861954,-0.697499394416809,-0.603950142860413,-0.385666519403458,-0.593291282653809,0.71287876367569,0.373910814523697,-0.738685429096222,0.584546089172363,0.335633248090744,-0.681716024875641,0.65416294336319,0.327618569135666,-0.851153254508972,0.454253047704697,0.263044118881226,-0.88343471288681,0.396616667509079,0.249475806951523,-0.738685429096222,0.584546089172363,0.335633248090744,-0.828434944152832,-0.483616411685944,-0.282507836818695,-0.978644847869873,-0.193071216344833,-0.070552870631218,-0.99311363697052,0.0956375524401665,0.0676656365394592,-0.851153254508972,0.454253047704697,0.263044118881226,-0.99311363697052,0.0956375524401665,0.0676656365394592,-0.88343471288681,0.396616667509079,0.249475806951523,-0.654616475105286,-0.663974583148956,-0.361406743526459,-0.82077431678772,-0.499750405550003,-0.276728957891464,-0.978644847869873,-0.193071216344833,-0.070552870631218,-0.82077431678772,-0.499750405550003,-0.276728957891464,-0.627768158912659,-0.677285671234131,-0.383654892444611,-0.897458612918854,-0.384015381336212,-0.217025816440582,-0.738481760025024,-0.60682612657547,-0.293949961662292,-0.897458612918854,-0.384015381336212,-0.217025816440582,-0.627768158912659,-0.677285671234131,-0.383654892444611, +-0.738481760025024,-0.60682612657547,-0.293949961662292,-0.627768158912659,-0.677285671234131,-0.383654892444611,-0.557596743106842,-0.725598514080048,-0.403227597475052,-0.596979320049286,-0.68012410402298,-0.425495862960815,-0.557596743106842,-0.725598514080048,-0.403227597475052,-0.553534150123596,-0.724605977535248,-0.410543501377106,-0.921250700950623,-0.245803385972977,-0.30145925283432,-0.879857063293457,-0.277870237827301,-0.385538041591644,-0.924858331680298,-0.190911397337914,-0.328922092914581,-0.887486219406128,-0.332112401723862,-0.319483131170273,-0.854738414287567,-0.372325867414474,-0.36165663599968,-0.921250700950623,-0.245803385972977,-0.30145925283432,-0.352802634239197,-0.820475876331329,-0.449832767248154,-0.513607144355774,-0.716664433479309,-0.471804648637772,-0.0317179150879383,-0.89952427148819,-0.435717821121216,-0.789831042289734,-0.432301104068756,-0.435066103935242,-0.513607144355774,-0.716664433479309,-0.471804648637772,-0.905052423477173,-0.243255168199539,-0.348865360021591,0.12588806450367,-0.92530483007431,-0.357719331979752,-0.352802634239197,-0.820475876331329,-0.449832767248154,-0.0317179150879383,-0.89952427148819,-0.435717821121216,-0.963104009628296,-0.0338217504322529,-0.266995489597321,-0.965062618255615,0.124439842998981,-0.230583384633064,-0.93265300989151,-0.037953332066536,-0.358772546052933,-0.789831042289734,-0.432301104068756,-0.435066103935242,-0.963104009628296,-0.0338217504322529,-0.266995489597321,-0.93265300989151,-0.037953332066536,-0.358772546052933,-0.924858331680298,-0.190911397337914,-0.328922092914581,-0.904024064540863,-0.194126039743423,-0.38086149096489,-0.948006868362427,-0.104412771761417,-0.300633996725082,-0.95684140920639,-0.0333918742835522,-0.28868556022644,-0.970565378665924,-0.00571311078965664,-0.240769699215889,-0.948006868362427,-0.104412771761417,-0.300633996725082,-0.970565378665924,-0.00571311078965664,-0.240769699215889,-0.973832428455353,0.0536128804087639,-0.220853000879288,-0.973823487758636,0.0802582800388336,-0.212664723396301,-0.789599478244781,-0.380529910326004,-0.481382876634598, +-0.93265300989151,-0.037953332066536,-0.358772546052933,-0.961590170860291,0.0572612173855305,-0.268449872732162,-0.965086162090302,0.0769751891493797,-0.250366598367691,-0.961590170860291,0.0572612173855305,-0.268449872732162,-0.973823487758636,0.0802582800388336,-0.212664723396301,-0.546208202838898,-0.711986660957336,-0.441283851861954,-0.62313574552536,-0.631746351718903,-0.461083710193634,-0.752331256866455,-0.538258135318756,-0.37983638048172,-0.814577162265778,-0.440955609083176,-0.376858115196228,-0.62313574552536,-0.631746351718903,-0.461083710193634,-0.677205860614777,-0.573472619056702,-0.461000204086304,-0.677205860614777,-0.573472619056702,-0.461000204086304,-0.612153649330139,-0.624160706996918,-0.485480308532715,-0.806413531303406,-0.446275264024735,-0.387989014387131,-0.887486219406128,-0.332112401723862,-0.319483131170273,-0.806413531303406,-0.446275264024735,-0.387989014387131,-0.78590601682663,-0.477161407470703,-0.393279254436493,-0.546208202838898,-0.711986660957336,-0.441283851861954,-0.596979320049286,-0.68012410402298,-0.425495862960815,-0.553534150123596,-0.724605977535248,-0.410543501377106,-0.851153254508972,0.454253047704697,0.263044118881226,-0.738685429096222,0.584546089172363,0.335633248090744,-0.593291282653809,0.71287876367569,0.373910814523697,-0.828434944152832,-0.483616411685944,-0.282507836818695,-0.654616475105286,-0.663974583148956,-0.361406743526459,-0.978644847869873,-0.193071216344833,-0.070552870631218,-0.99311363697052,0.0956375524401665,0.0676656365394592,-0.984342694282532,-0.149695679545403,-0.0930624827742577,-0.828434944152832,-0.483616411685944,-0.282507836818695,-0.99311363697052,0.0956375524401665,0.0676656365394592,-0.851153254508972,0.454253047704697,0.263044118881226,-0.984342694282532,-0.149695679545403,-0.0930624827742577,-0.654616475105286,-0.663974583148956,-0.361406743526459,-0.553534150123596,-0.724605977535248,-0.410543501377106,-0.82077431678772,-0.499750405550003,-0.276728957891464,-0.553534150123596,-0.724605977535248,-0.410543501377106,-0.627768158912659,-0.677285671234131,-0.383654892444611, +-0.82077431678772,-0.499750405550003,-0.276728957891464,-0.553534150123596,-0.724605977535248,-0.410543501377106,-0.557596743106842,-0.725598514080048,-0.403227597475052,-0.627768158912659,-0.677285671234131,-0.383654892444611,-0.921250700950623,-0.245803385972977,-0.30145925283432,-0.854738414287567,-0.372325867414474,-0.36165663599968,-0.879857063293457,-0.277870237827301,-0.385538041591644,-0.924858331680298,-0.190911397337914,-0.328922092914581,-0.879857063293457,-0.277870237827301,-0.385538041591644,-0.904024064540863,-0.194126039743423,-0.38086149096489,-0.78590601682663,-0.477161407470703,-0.393279254436493,-0.854738414287567,-0.372325867414474,-0.36165663599968,-0.887486219406128,-0.332112401723862,-0.319483131170273,-0.0317179150879383,-0.89952427148819,-0.435717821121216,-0.513607144355774,-0.716664433479309,-0.471804648637772,-0.383298188447952,-0.760449469089508,-0.524212718009949,-0.789831042289734,-0.432301104068756,-0.435066103935242,-0.383298188447952,-0.760449469089508,-0.524212718009949,-0.513607144355774,-0.716664433479309,-0.471804648637772,-0.789599478244781,-0.380529910326004,-0.481382876634598,-0.789831042289734,-0.432301104068756,-0.435066103935242,-0.93265300989151,-0.037953332066536,-0.358772546052933,-0.901207804679871,-0.166434124112129,-0.400155067443848,-0.948006868362427,-0.104412771761417,-0.300633996725082,-0.904024064540863,-0.194126039743423,-0.38086149096489,-0.95684140920639,-0.0333918742835522,-0.28868556022644,-0.967923820018768,0.0292398743331432,-0.249536290764809,-0.970565378665924,-0.00571311078965664,-0.240769699215889,-0.935395658016205,-0.0693237781524658,-0.346740633249283,-0.95684140920639,-0.0333918742835522,-0.28868556022644,-0.948006868362427,-0.104412771761417,-0.300633996725082,-0.973832428455353,0.0536128804087639,-0.220853000879288,-0.970565378665924,-0.00571311078965664,-0.240769699215889,-0.967923820018768,0.0292398743331432,-0.249536290764809,-0.973832428455353,0.0536128804087639,-0.220853000879288,-0.965086162090302,0.0769751891493797,-0.250366598367691,-0.973823487758636,0.0802582800388336,-0.212664723396301, +-0.958620548248291,-0.0502915680408478,-0.280209243297577,-0.789599478244781,-0.380529910326004,-0.481382876634598,-0.961590170860291,0.0572612173855305,-0.268449872732162,-0.965086162090302,0.0769751891493797,-0.250366598367691,-0.958620548248291,-0.0502915680408478,-0.280209243297577,-0.961590170860291,0.0572612173855305,-0.268449872732162,-0.546208202838898,-0.711986660957336,-0.441283851861954,-0.493245244026184,-0.718615829944611,-0.490204423666,-0.62313574552536,-0.631746351718903,-0.461083710193634,-0.502261579036713,-0.695690751075745,-0.513563513755798,-0.677205860614777,-0.573472619056702,-0.461000204086304,-0.62313574552536,-0.631746351718903,-0.461083710193634,-0.612153649330139,-0.624160706996918,-0.485480308532715,-0.677205860614777,-0.573472619056702,-0.461000204086304,-0.502261579036713,-0.695690751075745,-0.513563513755798,-0.662897408008575,-0.590822875499725,-0.45988604426384,-0.806413531303406,-0.446275264024735,-0.387989014387131,-0.612153649330139,-0.624160706996918,-0.485480308532715,-0.662897408008575,-0.590822875499725,-0.45988604426384,-0.78590601682663,-0.477161407470703,-0.393279254436493,-0.806413531303406,-0.446275264024735,-0.387989014387131,-0.546208202838898,-0.711986660957336,-0.441283851861954,-0.553534150123596,-0.724605977535248,-0.410543501377106,-0.654616475105286,-0.663974583148956,-0.361406743526459,-0.593291282653809,0.71287876367569,0.373910814523697,-0.699440598487854,0.626336455345154,0.344216972589493,-0.851153254508972,0.454253047704697,0.263044118881226,-0.654616475105286,-0.663974583148956,-0.361406743526459,-0.828434944152832,-0.483616411685944,-0.282507836818695,-0.531074047088623,-0.712133586406708,-0.459157854318619,-0.636836588382721,-0.642230868339539,-0.426589548587799,-0.828434944152832,-0.483616411685944,-0.282507836818695,-0.984342694282532,-0.149695679545403,-0.0930624827742577,-0.984342694282532,-0.149695679545403,-0.0930624827742577,-0.851153254508972,0.454253047704697,0.263044118881226,-0.985135138034821,0.16293041408062,0.054427906870842,-0.854738414287567,-0.372325867414474,-0.36165663599968, +-0.842359900474548,-0.359280973672867,-0.401679992675781,-0.879857063293457,-0.277870237827301,-0.385538041591644,-0.904024064540863,-0.194126039743423,-0.38086149096489,-0.879857063293457,-0.277870237827301,-0.385538041591644,-0.855889916419983,-0.262750297784805,-0.445437550544739,-0.78590601682663,-0.477161407470703,-0.393279254436493,-0.688261449337006,-0.560593962669373,-0.460467636585236,-0.854738414287567,-0.372325867414474,-0.36165663599968,-0.274226635694504,-0.817692697048187,-0.50614058971405,-0.0317179150879383,-0.89952427148819,-0.435717821121216,-0.383298188447952,-0.760449469089508,-0.524212718009949,-0.789599478244781,-0.380529910326004,-0.481382876634598,-0.383298188447952,-0.760449469089508,-0.524212718009949,-0.789831042289734,-0.432301104068756,-0.435066103935242,-0.948006868362427,-0.104412771761417,-0.300633996725082,-0.901207804679871,-0.166434124112129,-0.400155067443848,-0.935395658016205,-0.0693237781524658,-0.346740633249283,-0.855889916419983,-0.262750297784805,-0.445437550544739,-0.901207804679871,-0.166434124112129,-0.400155067443848,-0.904024064540863,-0.194126039743423,-0.38086149096489,-0.95684140920639,-0.0333918742835522,-0.28868556022644,-0.946598589420319,0.0243376400321722,-0.321494579315186,-0.967923820018768,0.0292398743331432,-0.249536290764809,-0.95684140920639,-0.0333918742835522,-0.28868556022644,-0.935395658016205,-0.0693237781524658,-0.346740633249283,-0.946598589420319,0.0243376400321722,-0.321494579315186,-0.958982586860657,0.00983571726828814,-0.283294141292572,-0.973832428455353,0.0536128804087639,-0.220853000879288,-0.967923820018768,0.0292398743331432,-0.249536290764809,-0.973832428455353,0.0536128804087639,-0.220853000879288,-0.937715470790863,-0.0446944385766983,-0.344517022371292,-0.965086162090302,0.0769751891493797,-0.250366598367691,-0.958620548248291,-0.0502915680408478,-0.280209243297577,-0.894677996635437,-0.186267912387848,-0.406023859977722,-0.789599478244781,-0.380529910326004,-0.481382876634598,-0.958620548248291,-0.0502915680408478,-0.280209243297577, +-0.965086162090302,0.0769751891493797,-0.250366598367691,-0.894677996635437,-0.186267912387848,-0.406023859977722,-0.493245244026184,-0.718615829944611,-0.490204423666,-0.546208202838898,-0.711986660957336,-0.441283851861954,-0.531074047088623,-0.712133586406708,-0.459157854318619,-0.502261579036713,-0.695690751075745,-0.513563513755798,-0.62313574552536,-0.631746351718903,-0.461083710193634,-0.493245244026184,-0.718615829944611,-0.490204423666,-0.503329575061798,-0.702230155467987,-0.503519713878632,-0.612153649330139,-0.624160706996918,-0.485480308532715,-0.502261579036713,-0.695690751075745,-0.513563513755798,-0.503329575061798,-0.702230155467987,-0.503519713878632,-0.662897408008575,-0.590822875499725,-0.45988604426384,-0.612153649330139,-0.624160706996918,-0.485480308532715,-0.662897408008575,-0.590822875499725,-0.45988604426384,-0.576999187469482,-0.65401417016983,-0.489221036434174,-0.78590601682663,-0.477161407470703,-0.393279254436493,-0.654616475105286,-0.663974583148956,-0.361406743526459,-0.531074047088623,-0.712133586406708,-0.459157854318619,-0.546208202838898,-0.711986660957336,-0.441283851861954,-0.593291282653809,0.71287876367569,0.373910814523697,-0.580230176448822,0.705451190471649,0.40702748298645,-0.699440598487854,0.626336455345154,0.344216972589493,-0.813977897167206,0.519337356090546,0.260247051715851,-0.851153254508972,0.454253047704697,0.263044118881226,-0.699440598487854,0.626336455345154,0.344216972589493,-0.636836588382721,-0.642230868339539,-0.426589548587799,-0.531074047088623,-0.712133586406708,-0.459157854318619,-0.828434944152832,-0.483616411685944,-0.282507836818695,-0.828752756118774,-0.453795850276947,-0.32747220993042,-0.636836588382721,-0.642230868339539,-0.426589548587799,-0.984342694282532,-0.149695679545403,-0.0930624827742577,-0.813977897167206,0.519337356090546,0.260247051715851,-0.985135138034821,0.16293041408062,0.054427906870842,-0.851153254508972,0.454253047704697,0.263044118881226,-0.984342694282532,-0.149695679545403,-0.0930624827742577,-0.985135138034821,0.16293041408062,0.054427906870842, +-0.828752756118774,-0.453795850276947,-0.32747220993042,-0.842359900474548,-0.359280973672867,-0.401679992675781,-0.854738414287567,-0.372325867414474,-0.36165663599968,-0.767938137054443,-0.468459784984589,-0.436825275421143,-0.804197072982788,-0.367452323436737,-0.467167764902115,-0.879857063293457,-0.277870237827301,-0.385538041591644,-0.842359900474548,-0.359280973672867,-0.401679992675781,-0.855889916419983,-0.262750297784805,-0.445437550544739,-0.879857063293457,-0.277870237827301,-0.385538041591644,-0.804197072982788,-0.367452323436737,-0.467167764902115,-0.688261449337006,-0.560593962669373,-0.460467636585236,-0.78590601682663,-0.477161407470703,-0.393279254436493,-0.576999187469482,-0.65401417016983,-0.489221036434174,-0.767938137054443,-0.468459784984589,-0.436825275421143,-0.854738414287567,-0.372325867414474,-0.36165663599968,-0.688261449337006,-0.560593962669373,-0.460467636585236,-0.274226635694504,-0.817692697048187,-0.50614058971405,-0.383298188447952,-0.760449469089508,-0.524212718009949,-0.789599478244781,-0.380529910326004,-0.481382876634598,-0.898679792881012,-0.113897621631622,-0.423558533191681,-0.935395658016205,-0.0693237781524658,-0.346740633249283,-0.901207804679871,-0.166434124112129,-0.400155067443848,-0.901207804679871,-0.166434124112129,-0.400155067443848,-0.855889916419983,-0.262750297784805,-0.445437550544739,-0.843542635440826,-0.238581642508507,-0.481159538030624,-0.967923820018768,0.0292398743331432,-0.249536290764809,-0.946598589420319,0.0243376400321722,-0.321494579315186,-0.940567255020142,0.0468701608479023,-0.336357563734055,-0.935395658016205,-0.0693237781524658,-0.346740633249283,-0.923223912715912,-0.0106579670682549,-0.384114444255829,-0.946598589420319,0.0243376400321722,-0.321494579315186,-0.937715470790863,-0.0446944385766983,-0.344517022371292,-0.973832428455353,0.0536128804087639,-0.220853000879288,-0.958982586860657,0.00983571726828814,-0.283294141292572,-0.958982586860657,0.00983571726828814,-0.283294141292572,-0.967923820018768,0.0292398743331432,-0.249536290764809, +-0.950838387012482,0.0400842241942883,-0.30708235502243,-0.937715470790863,-0.0446944385766983,-0.344517022371292,-0.894677996635437,-0.186267912387848,-0.406023859977722,-0.965086162090302,0.0769751891493797,-0.250366598367691,-0.789599478244781,-0.380529910326004,-0.481382876634598,-0.894677996635437,-0.186267912387848,-0.406023859977722,-0.542487263679504,-0.638179540634155,-0.546291530132294,-0.636836588382721,-0.642230868339539,-0.426589548587799,-0.493245244026184,-0.718615829944611,-0.490204423666,-0.531074047088623,-0.712133586406708,-0.459157854318619,-0.493245244026184,-0.718615829944611,-0.490204423666,-0.524414837360382,-0.700480878353119,-0.484061419963837,-0.502261579036713,-0.695690751075745,-0.513563513755798,-0.512486815452576,-0.699364840984344,-0.498242944478989,-0.503329575061798,-0.702230155467987,-0.503519713878632,-0.502261579036713,-0.695690751075745,-0.513563513755798,-0.576999187469482,-0.65401417016983,-0.489221036434174,-0.662897408008575,-0.590822875499725,-0.45988604426384,-0.503329575061798,-0.702230155467987,-0.503519713878632,-0.813977897167206,0.519337356090546,0.260247051715851,-0.699440598487854,0.626336455345154,0.344216972589493,-0.580230176448822,0.705451190471649,0.40702748298645,-0.828752756118774,-0.453795850276947,-0.32747220993042,-0.524414837360382,-0.700480878353119,-0.484061419963837,-0.636836588382721,-0.642230868339539,-0.426589548587799,-0.990566194057465,-0.0501841679215431,-0.127515122294426,-0.985135138034821,0.16293041408062,0.054427906870842,-0.813977897167206,0.519337356090546,0.260247051715851,-0.990566194057465,-0.0501841679215431,-0.127515122294426,-0.828752756118774,-0.453795850276947,-0.32747220993042,-0.985135138034821,0.16293041408062,0.054427906870842,-0.842359900474548,-0.359280973672867,-0.401679992675781,-0.767938137054443,-0.468459784984589,-0.436825275421143,-0.764861881732941,-0.45793405175209,-0.45308119058609,-0.804197072982788,-0.367452323436737,-0.467167764902115,-0.842359900474548,-0.359280973672867,-0.401679992675781,-0.764861881732941,-0.45793405175209,-0.45308119058609, +-0.809000134468079,-0.316657066345215,-0.495224177837372,-0.855889916419983,-0.262750297784805,-0.445437550544739,-0.804197072982788,-0.367452323436737,-0.467167764902115,-0.576999187469482,-0.65401417016983,-0.489221036434174,-0.485777795314789,-0.688021779060364,-0.539115846157074,-0.688261449337006,-0.560593962669373,-0.460467636585236,-0.767938137054443,-0.468459784984589,-0.436825275421143,-0.688261449337006,-0.560593962669373,-0.460467636585236,-0.57608836889267,-0.623975336551666,-0.527993142604828,-0.542487263679504,-0.638179540634155,-0.546291530132294,-0.274226635694504,-0.817692697048187,-0.50614058971405,-0.789599478244781,-0.380529910326004,-0.481382876634598,-0.935395658016205,-0.0693237781524658,-0.346740633249283,-0.898679792881012,-0.113897621631622,-0.423558533191681,-0.923223912715912,-0.0106579670682549,-0.384114444255829,-0.901207804679871,-0.166434124112129,-0.400155067443848,-0.843542635440826,-0.238581642508507,-0.481159538030624,-0.898679792881012,-0.113897621631622,-0.423558533191681,-0.809000134468079,-0.316657066345215,-0.495224177837372,-0.843542635440826,-0.238581642508507,-0.481159538030624,-0.855889916419983,-0.262750297784805,-0.445437550544739,-0.940567255020142,0.0468701608479023,-0.336357563734055,-0.946598589420319,0.0243376400321722,-0.321494579315186,-0.869513034820557,-0.0525751486420631,-0.491103649139404,-0.940567255020142,0.0468701608479023,-0.336357563734055,-0.950838387012482,0.0400842241942883,-0.30708235502243,-0.967923820018768,0.0292398743331432,-0.249536290764809,-0.923223912715912,-0.0106579670682549,-0.384114444255829,-0.915307283401489,0.019437039270997,-0.402286797761917,-0.946598589420319,0.0243376400321722,-0.321494579315186,-0.937715470790863,-0.0446944385766983,-0.344517022371292,-0.958982586860657,0.00983571726828814,-0.283294141292572,-0.815479338169098,-0.268738687038422,-0.512613713741302,-0.958982586860657,0.00983571726828814,-0.283294141292572,-0.950838387012482,0.0400842241942883,-0.30708235502243,-0.901288270950317,-0.137745097279549,-0.410737872123718, +-0.937715470790863,-0.0446944385766983,-0.344517022371292,-0.689245283603668,-0.415547698736191,-0.593515694141388,-0.894677996635437,-0.186267912387848,-0.406023859977722,-0.542487263679504,-0.638179540634155,-0.546291530132294,-0.894677996635437,-0.186267912387848,-0.406023859977722,-0.689245283603668,-0.415547698736191,-0.593515694141388,-0.493245244026184,-0.718615829944611,-0.490204423666,-0.636836588382721,-0.642230868339539,-0.426589548587799,-0.524414837360382,-0.700480878353119,-0.484061419963837,-0.502261579036713,-0.695690751075745,-0.513563513755798,-0.524414837360382,-0.700480878353119,-0.484061419963837,-0.641669809818268,-0.620025396347046,-0.451473385095596,-0.503329575061798,-0.702230155467987,-0.503519713878632,-0.512486815452576,-0.699364840984344,-0.498242944478989,-0.463832825422287,-0.717106401920319,-0.520208954811096,-0.512486815452576,-0.699364840984344,-0.498242944478989,-0.502261579036713,-0.695690751075745,-0.513563513755798,-0.641669809818268,-0.620025396347046,-0.451473385095596,-0.576999187469482,-0.65401417016983,-0.489221036434174,-0.503329575061798,-0.702230155467987,-0.503519713878632,-0.463832825422287,-0.717106401920319,-0.520208954811096,-0.736233234405518,0.587580978870392,0.335721462965012,-0.813977897167206,0.519337356090546,0.260247051715851,-0.580230176448822,0.705451190471649,0.40702748298645,-0.828752756118774,-0.453795850276947,-0.32747220993042,-0.641669809818268,-0.620025396347046,-0.451473385095596,-0.524414837360382,-0.700480878353119,-0.484061419963837,-0.813977897167206,0.519337356090546,0.260247051715851,-0.943776547908783,0.302997529506683,0.132204324007034,-0.990566194057465,-0.0501841679215431,-0.127515122294426,-0.828752756118774,-0.453795850276947,-0.32747220993042,-0.990566194057465,-0.0501841679215431,-0.127515122294426,-0.641669809818268,-0.620025396347046,-0.451473385095596,-0.660351395606995,-0.562723338603973,-0.497270882129669,-0.764861881732941,-0.45793405175209,-0.45308119058609,-0.767938137054443,-0.468459784984589,-0.436825275421143,-0.804197072982788,-0.367452323436737,-0.467167764902115, +-0.764861881732941,-0.45793405175209,-0.45308119058609,-0.681259512901306,-0.517734587192535,-0.51752907037735,-0.752000033855438,-0.391299933195114,-0.530452728271484,-0.809000134468079,-0.316657066345215,-0.495224177837372,-0.804197072982788,-0.367452323436737,-0.467167764902115,-0.576999187469482,-0.65401417016983,-0.489221036434174,-0.463832825422287,-0.717106401920319,-0.520208954811096,-0.485777795314789,-0.688021779060364,-0.539115846157074,-0.688261449337006,-0.560593962669373,-0.460467636585236,-0.485777795314789,-0.688021779060364,-0.539115846157074,-0.57608836889267,-0.623975336551666,-0.527993142604828,-0.660351395606995,-0.562723338603973,-0.497270882129669,-0.767938137054443,-0.468459784984589,-0.436825275421143,-0.57608836889267,-0.623975336551666,-0.527993142604828,-0.906997203826904,-0.0465658716857433,-0.418554157018662,-0.923223912715912,-0.0106579670682549,-0.384114444255829,-0.898679792881012,-0.113897621631622,-0.423558533191681,-0.843542635440826,-0.238581642508507,-0.481159538030624,-0.872063994407654,-0.152706488966942,-0.464956909418106,-0.898679792881012,-0.113897621631622,-0.423558533191681,-0.843542635440826,-0.238581642508507,-0.481159538030624,-0.809000134468079,-0.316657066345215,-0.495224177837372,-0.753413379192352,-0.34511587023735,-0.559699177742004,-0.896231293678284,-0.00298339431174099,-0.443576961755753,-0.869513034820557,-0.0525751486420631,-0.491103649139404,-0.946598589420319,0.0243376400321722,-0.321494579315186,-0.940567255020142,0.0468701608479023,-0.336357563734055,-0.869513034820557,-0.0525751486420631,-0.491103649139404,-0.79259866476059,-0.210470974445343,-0.572266697883606,-0.899500608444214,-0.0488320402801037,-0.434181958436966,-0.950838387012482,0.0400842241942883,-0.30708235502243,-0.940567255020142,0.0468701608479023,-0.336357563734055,-0.897492110729218,0.0179321076720953,-0.440665602684021,-0.915307283401489,0.019437039270997,-0.402286797761917,-0.923223912715912,-0.0106579670682549,-0.384114444255829,-0.946598589420319,0.0243376400321722,-0.321494579315186, +-0.915307283401489,0.019437039270997,-0.402286797761917,-0.896231293678284,-0.00298339431174099,-0.443576961755753,-0.958982586860657,0.00983571726828814,-0.283294141292572,-0.901288270950317,-0.137745097279549,-0.410737872123718,-0.815479338169098,-0.268738687038422,-0.512613713741302,-0.937715470790863,-0.0446944385766983,-0.344517022371292,-0.815479338169098,-0.268738687038422,-0.512613713741302,-0.689245283603668,-0.415547698736191,-0.593515694141388,-0.901288270950317,-0.137745097279549,-0.410737872123718,-0.950838387012482,0.0400842241942883,-0.30708235502243,-0.874443054199219,-0.179272323846817,-0.450789004564285,-0.512486815452576,-0.699364840984344,-0.498242944478989,-0.634104192256927,-0.616696119308472,-0.466473549604416,-0.463832825422287,-0.717106401920319,-0.520208954811096,-0.641669809818268,-0.620025396347046,-0.451473385095596,-0.868910610675812,-0.394788652658463,-0.29855677485466,-0.512486815452576,-0.699364840984344,-0.498242944478989,-0.943776547908783,0.302997529506683,0.132204324007034,-0.813977897167206,0.519337356090546,0.260247051715851,-0.736233234405518,0.587580978870392,0.335721462965012,-0.736233234405518,0.587580978870392,0.335721462965012,-0.580230176448822,0.705451190471649,0.40702748298645,-0.673294723033905,0.636821389198303,0.37567612528801,-0.943776547908783,0.302997529506683,0.132204324007034,-0.868910610675812,-0.394788652658463,-0.29855677485466,-0.990566194057465,-0.0501841679215431,-0.127515122294426,-0.641669809818268,-0.620025396347046,-0.451473385095596,-0.990566194057465,-0.0501841679215431,-0.127515122294426,-0.868910610675812,-0.394788652658463,-0.29855677485466,-0.660351395606995,-0.562723338603973,-0.497270882129669,-0.589380621910095,-0.607625246047974,-0.532373785972595,-0.764861881732941,-0.45793405175209,-0.45308119058609,-0.589380621910095,-0.607625246047974,-0.532373785972595,-0.681259512901306,-0.517734587192535,-0.51752907037735,-0.764861881732941,-0.45793405175209,-0.45308119058609,-0.682336628437042,-0.501140594482422,-0.532235503196716,-0.804197072982788,-0.367452323436737,-0.467167764902115, +-0.681259512901306,-0.517734587192535,-0.51752907037735,-0.752000033855438,-0.391299933195114,-0.530452728271484,-0.753413379192352,-0.34511587023735,-0.559699177742004,-0.809000134468079,-0.316657066345215,-0.495224177837372,-0.804197072982788,-0.367452323436737,-0.467167764902115,-0.682336628437042,-0.501140594482422,-0.532235503196716,-0.752000033855438,-0.391299933195114,-0.530452728271484,-0.485777795314789,-0.688021779060364,-0.539115846157074,-0.463832825422287,-0.717106401920319,-0.520208954811096,-0.498355805873871,-0.679231822490692,-0.538781583309174,-0.57608836889267,-0.623975336551666,-0.527993142604828,-0.485777795314789,-0.688021779060364,-0.539115846157074,-0.445110499858856,-0.689192831516266,-0.571742653846741,-0.57608836889267,-0.623975336551666,-0.527993142604828,-0.489158004522324,-0.667475283145905,-0.561427652835846,-0.660351395606995,-0.562723338603973,-0.497270882129669,-0.897492110729218,0.0179321076720953,-0.440665602684021,-0.923223912715912,-0.0106579670682549,-0.384114444255829,-0.906997203826904,-0.0465658716857433,-0.418554157018662,-0.898679792881012,-0.113897621631622,-0.423558533191681,-0.872063994407654,-0.152706488966942,-0.464956909418106,-0.906997203826904,-0.0465658716857433,-0.418554157018662,-0.872063994407654,-0.152706488966942,-0.464956909418106,-0.843542635440826,-0.238581642508507,-0.481159538030624,-0.819087207317352,-0.224791094660759,-0.527792632579803,-0.843542635440826,-0.238581642508507,-0.481159538030624,-0.753413379192352,-0.34511587023735,-0.559699177742004,-0.761778593063354,-0.296408921480179,-0.57605117559433,-0.896231293678284,-0.00298339431174099,-0.443576961755753,-0.68486762046814,-0.233444064855576,-0.690260827541351,-0.869513034820557,-0.0525751486420631,-0.491103649139404,-0.79259866476059,-0.210470974445343,-0.572266697883606,-0.869513034820557,-0.0525751486420631,-0.491103649139404,-0.579224705696106,-0.422741442918777,-0.696985125541687,-0.940567255020142,0.0468701608479023,-0.336357563734055,-0.79259866476059,-0.210470974445343,-0.572266697883606, +-0.899500608444214,-0.0488320402801037,-0.434181958436966,-0.899500608444214,-0.0488320402801037,-0.434181958436966,-0.874443054199219,-0.179272323846817,-0.450789004564285,-0.950838387012482,0.0400842241942883,-0.30708235502243,-0.81371933221817,-0.0613472536206245,-0.578011453151703,-0.915307283401489,0.019437039270997,-0.402286797761917,-0.897492110729218,0.0179321076720953,-0.440665602684021,-0.896231293678284,-0.00298339431174099,-0.443576961755753,-0.915307283401489,0.019437039270997,-0.402286797761917,-0.792489647865295,-0.138098329305649,-0.594044506549835,-0.589365839958191,-0.555926442146301,-0.586168467998505,-0.815479338169098,-0.268738687038422,-0.512613713741302,-0.901288270950317,-0.137745097279549,-0.410737872123718,-0.901288270950317,-0.137745097279549,-0.410737872123718,-0.874443054199219,-0.179272323846817,-0.450789004564285,-0.589365839958191,-0.555926442146301,-0.586168467998505,-0.512486815452576,-0.699364840984344,-0.498242944478989,-0.868910610675812,-0.394788652658463,-0.29855677485466,-0.634104192256927,-0.616696119308472,-0.466473549604416,-0.498355805873871,-0.679231822490692,-0.538781583309174,-0.463832825422287,-0.717106401920319,-0.520208954811096,-0.634104192256927,-0.616696119308472,-0.466473549604416,-0.909760653972626,0.387361317873001,0.14928711950779,-0.943776547908783,0.302997529506683,0.132204324007034,-0.736233234405518,0.587580978870392,0.335721462965012,-0.736233234405518,0.587580978870392,0.335721462965012,-0.673294723033905,0.636821389198303,0.37567612528801,-0.909760653972626,0.387361317873001,0.14928711950779,-0.980947136878967,-0.0892265737056732,-0.172572523355484,-0.868910610675812,-0.394788652658463,-0.29855677485466,-0.943776547908783,0.302997529506683,0.132204324007034,-0.589380621910095,-0.607625246047974,-0.532373785972595,-0.660351395606995,-0.562723338603973,-0.497270882129669,-0.489158004522324,-0.667475283145905,-0.561427652835846,-0.589380621910095,-0.607625246047974,-0.532373785972595,-0.497187882661819,-0.653230845928192,-0.571045994758606,-0.681259512901306,-0.517734587192535,-0.51752907037735, +-0.682336628437042,-0.501140594482422,-0.532235503196716,-0.681259512901306,-0.517734587192535,-0.51752907037735,-0.561378180980682,-0.606369912624359,-0.563178241252899,-0.752000033855438,-0.391299933195114,-0.530452728271484,-0.687638759613037,-0.433512449264526,-0.582425713539124,-0.753413379192352,-0.34511587023735,-0.559699177742004,-0.661057710647583,-0.501283049583435,-0.558316946029663,-0.752000033855438,-0.391299933195114,-0.530452728271484,-0.682336628437042,-0.501140594482422,-0.532235503196716,-0.485777795314789,-0.688021779060364,-0.539115846157074,-0.498355805873871,-0.679231822490692,-0.538781583309174,-0.445110499858856,-0.689192831516266,-0.571742653846741,-0.57608836889267,-0.623975336551666,-0.527993142604828,-0.445110499858856,-0.689192831516266,-0.571742653846741,-0.489158004522324,-0.667475283145905,-0.561427652835846,-0.876499712467194,-0.0334952212870121,-0.48023533821106,-0.897492110729218,0.0179321076720953,-0.440665602684021,-0.906997203826904,-0.0465658716857433,-0.418554157018662,-0.867252886295319,-0.0960182324051857,-0.488521039485931,-0.906997203826904,-0.0465658716857433,-0.418554157018662,-0.872063994407654,-0.152706488966942,-0.464956909418106,-0.843542635440826,-0.238581642508507,-0.481159538030624,-0.761778593063354,-0.296408921480179,-0.57605117559433,-0.819087207317352,-0.224791094660759,-0.527792632579803,-0.825230598449707,-0.178194344043732,-0.535948753356934,-0.872063994407654,-0.152706488966942,-0.464956909418106,-0.819087207317352,-0.224791094660759,-0.527792632579803,-0.753413379192352,-0.34511587023735,-0.559699177742004,-0.703153908252716,-0.352414429187775,-0.617558479309082,-0.761778593063354,-0.296408921480179,-0.57605117559433,-0.896231293678284,-0.00298339431174099,-0.443576961755753,-0.792489647865295,-0.138098329305649,-0.594044506549835,-0.68486762046814,-0.233444064855576,-0.690260827541351,-0.579224705696106,-0.422741442918777,-0.696985125541687,-0.869513034820557,-0.0525751486420631,-0.491103649139404,-0.68486762046814,-0.233444064855576,-0.690260827541351, +-0.79259866476059,-0.210470974445343,-0.572266697883606,-0.579224705696106,-0.422741442918777,-0.696985125541687,-0.294139981269836,-0.626961529254913,-0.721387982368469,-0.79259866476059,-0.210470974445343,-0.572266697883606,-0.644889533519745,-0.387231051921844,-0.658915460109711,-0.899500608444214,-0.0488320402801037,-0.434181958436966,-0.874443054199219,-0.179272323846817,-0.450789004564285,-0.899500608444214,-0.0488320402801037,-0.434181958436966,-0.644889533519745,-0.387231051921844,-0.658915460109711,-0.81371933221817,-0.0613472536206245,-0.578011453151703,-0.792489647865295,-0.138098329305649,-0.594044506549835,-0.915307283401489,0.019437039270997,-0.402286797761917,-0.753211200237274,-0.0641106590628624,-0.654646813869476,-0.81371933221817,-0.0613472536206245,-0.578011453151703,-0.897492110729218,0.0179321076720953,-0.440665602684021,-0.589365839958191,-0.555926442146301,-0.586168467998505,-0.874443054199219,-0.179272323846817,-0.450789004564285,-0.644889533519745,-0.387231051921844,-0.658915460109711,-0.980947136878967,-0.0892265737056732,-0.172572523355484,-0.634104192256927,-0.616696119308472,-0.466473549604416,-0.868910610675812,-0.394788652658463,-0.29855677485466,-0.498355805873871,-0.679231822490692,-0.538781583309174,-0.634104192256927,-0.616696119308472,-0.466473549604416,-0.871354103088379,-0.309900909662247,-0.380398899316788,-0.909760653972626,0.387361317873001,0.14928711950779,-0.980947136878967,-0.0892265737056732,-0.172572523355484,-0.943776547908783,0.302997529506683,0.132204324007034,-0.834490358829498,0.483056426048279,0.265107929706573,-0.909760653972626,0.387361317873001,0.14928711950779,-0.673294723033905,0.636821389198303,0.37567612528801,-0.589380621910095,-0.607625246047974,-0.532373785972595,-0.489158004522324,-0.667475283145905,-0.561427652835846,-0.442958682775497,-0.689424812793732,-0.573132455348969,-0.589380621910095,-0.607625246047974,-0.532373785972595,-0.442958682775497,-0.689424812793732,-0.573132455348969,-0.497187882661819,-0.653230845928192,-0.571045994758606,-0.497187882661819,-0.653230845928192,-0.571045994758606, +-0.561378180980682,-0.606369912624359,-0.563178241252899,-0.681259512901306,-0.517734587192535,-0.51752907037735,-0.504216611385345,-0.63392961025238,-0.586428701877594,-0.682336628437042,-0.501140594482422,-0.532235503196716,-0.561378180980682,-0.606369912624359,-0.563178241252899,-0.661057710647583,-0.501283049583435,-0.558316946029663,-0.687638759613037,-0.433512449264526,-0.582425713539124,-0.752000033855438,-0.391299933195114,-0.530452728271484,-0.659606337547302,-0.412547051906586,-0.62827080488205,-0.753413379192352,-0.34511587023735,-0.559699177742004,-0.687638759613037,-0.433512449264526,-0.582425713539124,-0.661057710647583,-0.501283049583435,-0.558316946029663,-0.682336628437042,-0.501140594482422,-0.532235503196716,-0.567854046821594,-0.582300007343292,-0.581780254840851,-0.647789359092712,-0.554912984371185,-0.521957993507385,-0.445110499858856,-0.689192831516266,-0.571742653846741,-0.498355805873871,-0.679231822490692,-0.538781583309174,-0.489158004522324,-0.667475283145905,-0.561427652835846,-0.445110499858856,-0.689192831516266,-0.571742653846741,-0.490165084600449,-0.668226420879364,-0.559652984142303,-0.876499712467194,-0.0334952212870121,-0.48023533821106,-0.753211200237274,-0.0641106590628624,-0.654646813869476,-0.897492110729218,0.0179321076720953,-0.440665602684021,-0.867252886295319,-0.0960182324051857,-0.488521039485931,-0.876499712467194,-0.0334952212870121,-0.48023533821106,-0.906997203826904,-0.0465658716857433,-0.418554157018662,-0.867252886295319,-0.0960182324051857,-0.488521039485931,-0.872063994407654,-0.152706488966942,-0.464956909418106,-0.825230598449707,-0.178194344043732,-0.535948753356934,-0.761778593063354,-0.296408921480179,-0.57605117559433,-0.768071055412292,-0.232045561075211,-0.59684294462204,-0.819087207317352,-0.224791094660759,-0.527792632579803,-0.768071055412292,-0.232045561075211,-0.59684294462204,-0.825230598449707,-0.178194344043732,-0.535948753356934,-0.819087207317352,-0.224791094660759,-0.527792632579803,-0.753413379192352,-0.34511587023735,-0.559699177742004,-0.659606337547302,-0.412547051906586,-0.62827080488205, +-0.703153908252716,-0.352414429187775,-0.617558479309082,-0.708202183246613,-0.28832933306694,-0.644449949264526,-0.761778593063354,-0.296408921480179,-0.57605117559433,-0.703153908252716,-0.352414429187775,-0.617558479309082,-0.402128100395203,-0.422483414411545,-0.812281131744385,-0.68486762046814,-0.233444064855576,-0.690260827541351,-0.792489647865295,-0.138098329305649,-0.594044506549835,-0.579224705696106,-0.422741442918777,-0.696985125541687,-0.68486762046814,-0.233444064855576,-0.690260827541351,-0.263389706611633,-0.535624444484711,-0.802329242229462,-0.294139981269836,-0.626961529254913,-0.721387982368469,-0.579224705696106,-0.422741442918777,-0.696985125541687,-0.177448913455009,-0.687497437000275,-0.704172551631927,-0.79259866476059,-0.210470974445343,-0.572266697883606,-0.294139981269836,-0.626961529254913,-0.721387982368469,-0.644889533519745,-0.387231051921844,-0.658915460109711,-0.81371933221817,-0.0613472536206245,-0.578011453151703,-0.558907866477966,-0.321701049804688,-0.764284074306488,-0.792489647865295,-0.138098329305649,-0.594044506549835,-0.587472081184387,-0.183863833546638,-0.788080275058746,-0.81371933221817,-0.0613472536206245,-0.578011453151703,-0.753211200237274,-0.0641106590628624,-0.654646813869476,-0.589365839958191,-0.555926442146301,-0.586168467998505,-0.644889533519745,-0.387231051921844,-0.658915460109711,-0.229001119732857,-0.722850382328033,-0.651955246925354,-0.871354103088379,-0.309900909662247,-0.380398899316788,-0.634104192256927,-0.616696119308472,-0.466473549604416,-0.980947136878967,-0.0892265737056732,-0.172572523355484,-0.871354103088379,-0.309900909662247,-0.380398899316788,-0.647789359092712,-0.554912984371185,-0.521957993507385,-0.498355805873871,-0.679231822490692,-0.538781583309174,-0.871354103088379,-0.309900909662247,-0.380398899316788,-0.980947136878967,-0.0892265737056732,-0.172572523355484,-0.909760653972626,0.387361317873001,0.14928711950779,-0.909760653972626,0.387361317873001,0.14928711950779,-0.834490358829498,0.483056426048279,0.265107929706573,-0.992255389690399,0.0593556202948093,-0.109114974737167, +-0.900354981422424,0.397759199142456,0.176488935947418,-0.834490358829498,0.483056426048279,0.265107929706573,-0.673294723033905,0.636821389198303,0.37567612528801,-0.489158004522324,-0.667475283145905,-0.561427652835846,-0.490165084600449,-0.668226420879364,-0.559652984142303,-0.442958682775497,-0.689424812793732,-0.573132455348969,-0.497187882661819,-0.653230845928192,-0.571045994758606,-0.442958682775497,-0.689424812793732,-0.573132455348969,-0.460062652826309,-0.674557864665985,-0.577333450317383,-0.561378180980682,-0.606369912624359,-0.563178241252899,-0.497187882661819,-0.653230845928192,-0.571045994758606,-0.440144181251526,-0.677052736282349,-0.589807331562042,-0.567854046821594,-0.582300007343292,-0.581780254840851,-0.682336628437042,-0.501140594482422,-0.532235503196716,-0.504216611385345,-0.63392961025238,-0.586428701877594,-0.504216611385345,-0.63392961025238,-0.586428701877594,-0.561378180980682,-0.606369912624359,-0.563178241252899,-0.440144181251526,-0.677052736282349,-0.589807331562042,-0.661057710647583,-0.501283049583435,-0.558316946029663,-0.592511594295502,-0.497356802225113,-0.633692383766174,-0.687638759613037,-0.433512449264526,-0.582425713539124,-0.659606337547302,-0.412547051906586,-0.62827080488205,-0.687638759613037,-0.433512449264526,-0.582425713539124,-0.617940962314606,-0.466092944145203,-0.633171498775482,-0.52829897403717,-0.552954792976379,-0.644314348697662,-0.661057710647583,-0.501283049583435,-0.558316946029663,-0.567854046821594,-0.582300007343292,-0.581780254840851,-0.647789359092712,-0.554912984371185,-0.521957993507385,-0.490165084600449,-0.668226420879364,-0.559652984142303,-0.445110499858856,-0.689192831516266,-0.571742653846741,-0.753211200237274,-0.0641106590628624,-0.654646813869476,-0.876499712467194,-0.0334952212870121,-0.48023533821106,-0.772933840751648,-0.0491517782211304,-0.632579803466797,-0.801597416400909,-0.0643454268574715,-0.594391345977783,-0.876499712467194,-0.0334952212870121,-0.48023533821106,-0.867252886295319,-0.0960182324051857,-0.488521039485931,-0.825230598449707,-0.178194344043732,-0.535948753356934, +-0.774053573608398,-0.146306604146957,-0.615983188152313,-0.867252886295319,-0.0960182324051857,-0.488521039485931,-0.761778593063354,-0.296408921480179,-0.57605117559433,-0.708202183246613,-0.28832933306694,-0.644449949264526,-0.768071055412292,-0.232045561075211,-0.59684294462204,-0.768071055412292,-0.232045561075211,-0.59684294462204,-0.774053573608398,-0.146306604146957,-0.615983188152313,-0.825230598449707,-0.178194344043732,-0.535948753356934,-0.659606337547302,-0.412547051906586,-0.62827080488205,-0.650367975234985,-0.306011229753494,-0.695254325866699,-0.703153908252716,-0.352414429187775,-0.617558479309082,-0.708202183246613,-0.28832933306694,-0.644449949264526,-0.703153908252716,-0.352414429187775,-0.617558479309082,-0.650367975234985,-0.306011229753494,-0.695254325866699,-0.402128100395203,-0.422483414411545,-0.812281131744385,-0.263389706611633,-0.535624444484711,-0.802329242229462,-0.68486762046814,-0.233444064855576,-0.690260827541351,-0.402128100395203,-0.422483414411545,-0.812281131744385,-0.792489647865295,-0.138098329305649,-0.594044506549835,-0.558907866477966,-0.321701049804688,-0.764284074306488,-0.263389706611633,-0.535624444484711,-0.802329242229462,-0.177448913455009,-0.687497437000275,-0.704172551631927,-0.579224705696106,-0.422741442918777,-0.696985125541687,-0.229001119732857,-0.722850382328033,-0.651955246925354,-0.644889533519745,-0.387231051921844,-0.658915460109711,-0.294139981269836,-0.626961529254913,-0.721387982368469,-0.558907866477966,-0.321701049804688,-0.764284074306488,-0.81371933221817,-0.0613472536206245,-0.578011453151703,-0.587472081184387,-0.183863833546638,-0.788080275058746,-0.587472081184387,-0.183863833546638,-0.788080275058746,-0.753211200237274,-0.0641106590628624,-0.654646813869476,-0.423923820257187,-0.25984600186348,-0.867622315883636,-0.871354103088379,-0.309900909662247,-0.380398899316788,-0.992255389690399,0.0593556202948093,-0.109114974737167,-0.647789359092712,-0.554912984371185,-0.521957993507385,-0.909760653972626,0.387361317873001,0.14928711950779,-0.992255389690399,0.0593556202948093,-0.109114974737167, +-0.871354103088379,-0.309900909662247,-0.380398899316788,-0.900354981422424,0.397759199142456,0.176488935947418,-0.992255389690399,0.0593556202948093,-0.109114974737167,-0.834490358829498,0.483056426048279,0.265107929706573,-0.490165084600449,-0.668226420879364,-0.559652984142303,-0.598138153553009,-0.616566956043243,-0.511933386325836,-0.442958682775497,-0.689424812793732,-0.573132455348969,-0.598138153553009,-0.616566956043243,-0.511933386325836,-0.460062652826309,-0.674557864665985,-0.577333450317383,-0.442958682775497,-0.689424812793732,-0.573132455348969,-0.497187882661819,-0.653230845928192,-0.571045994758606,-0.460062652826309,-0.674557864665985,-0.577333450317383,-0.440144181251526,-0.677052736282349,-0.589807331562042,-0.567854046821594,-0.582300007343292,-0.581780254840851,-0.504216611385345,-0.63392961025238,-0.586428701877594,-0.454367727041245,-0.629077851772308,-0.630722522735596,-0.504216611385345,-0.63392961025238,-0.586428701877594,-0.440144181251526,-0.677052736282349,-0.589807331562042,-0.454881340265274,-0.637338578701019,-0.62199866771698,-0.661057710647583,-0.501283049583435,-0.558316946029663,-0.52829897403717,-0.552954792976379,-0.644314348697662,-0.592511594295502,-0.497356802225113,-0.633692383766174,-0.687638759613037,-0.433512449264526,-0.582425713539124,-0.592511594295502,-0.497356802225113,-0.633692383766174,-0.617940962314606,-0.466092944145203,-0.633171498775482,-0.659606337547302,-0.412547051906586,-0.62827080488205,-0.617940962314606,-0.466092944145203,-0.633171498775482,-0.610832750797272,-0.376990556716919,-0.69624799489975,-0.52829897403717,-0.552954792976379,-0.644314348697662,-0.567854046821594,-0.582300007343292,-0.581780254840851,-0.454367727041245,-0.629077851772308,-0.630722522735596,-0.647789359092712,-0.554912984371185,-0.521957993507385,-0.91229522228241,-0.298271834850311,-0.280626654624939,-0.490165084600449,-0.668226420879364,-0.559652984142303,-0.772933840751648,-0.0491517782211304,-0.632579803466797,-0.876499712467194,-0.0334952212870121,-0.48023533821106,-0.801597416400909,-0.0643454268574715,-0.594391345977783, +-0.753211200237274,-0.0641106590628624,-0.654646813869476,-0.772933840751648,-0.0491517782211304,-0.632579803466797,-0.580372869968414,-0.152264475822449,-0.79998916387558,-0.801597416400909,-0.0643454268574715,-0.594391345977783,-0.867252886295319,-0.0960182324051857,-0.488521039485931,-0.774053573608398,-0.146306604146957,-0.615983188152313,-0.689106822013855,-0.18119540810585,-0.701640903949738,-0.768071055412292,-0.232045561075211,-0.59684294462204,-0.708202183246613,-0.28832933306694,-0.644449949264526,-0.689106822013855,-0.18119540810585,-0.701640903949738,-0.774053573608398,-0.146306604146957,-0.615983188152313,-0.768071055412292,-0.232045561075211,-0.59684294462204,-0.659606337547302,-0.412547051906586,-0.62827080488205,-0.610832750797272,-0.376990556716919,-0.69624799489975,-0.650367975234985,-0.306011229753494,-0.695254325866699,-0.708202183246613,-0.28832933306694,-0.644449949264526,-0.650367975234985,-0.306011229753494,-0.695254325866699,-0.640469193458557,-0.155933812260628,-0.751986503601074,-0.402128100395203,-0.422483414411545,-0.812281131744385,0.164703354239464,-0.624059855937958,-0.763820588588715,-0.263389706611633,-0.535624444484711,-0.802329242229462,-0.402128100395203,-0.422483414411545,-0.812281131744385,-0.558907866477966,-0.321701049804688,-0.764284074306488,-0.0880248695611954,-0.598908722400665,-0.79596471786499,0.0905409827828407,-0.704576671123505,-0.703828036785126,-0.177448913455009,-0.687497437000275,-0.704172551631927,-0.263389706611633,-0.535624444484711,-0.802329242229462,-0.558907866477966,-0.321701049804688,-0.764284074306488,-0.587472081184387,-0.183863833546638,-0.788080275058746,-0.346487998962402,-0.391142219305038,-0.852615773677826,-0.423923820257187,-0.25984600186348,-0.867622315883636,-0.753211200237274,-0.0641106590628624,-0.654646813869476,-0.580372869968414,-0.152264475822449,-0.79998916387558,-0.346487998962402,-0.391142219305038,-0.852615773677826,-0.587472081184387,-0.183863833546638,-0.788080275058746,-0.423923820257187,-0.25984600186348,-0.867622315883636,-0.647789359092712,-0.554912984371185,-0.521957993507385, +-0.992255389690399,0.0593556202948093,-0.109114974737167,-0.91229522228241,-0.298271834850311,-0.280626654624939,-0.900354981422424,0.397759199142456,0.176488935947418,-0.91229522228241,-0.298271834850311,-0.280626654624939,-0.992255389690399,0.0593556202948093,-0.109114974737167,-0.490165084600449,-0.668226420879364,-0.559652984142303,-0.91229522228241,-0.298271834850311,-0.280626654624939,-0.598138153553009,-0.616566956043243,-0.511933386325836,-0.460062652826309,-0.674557864665985,-0.577333450317383,-0.598138153553009,-0.616566956043243,-0.511933386325836,-0.800574660301209,-0.392559945583344,-0.452743619680405,-0.460062652826309,-0.674557864665985,-0.577333450317383,-0.557897090911865,-0.588605582714081,-0.585059106349945,-0.440144181251526,-0.677052736282349,-0.589807331562042,-0.454367727041245,-0.629077851772308,-0.630722522735596,-0.504216611385345,-0.63392961025238,-0.586428701877594,-0.454881340265274,-0.637338578701019,-0.62199866771698,-0.454881340265274,-0.637338578701019,-0.62199866771698,-0.440144181251526,-0.677052736282349,-0.589807331562042,-0.557897090911865,-0.588605582714081,-0.585059106349945,-0.592511594295502,-0.497356802225113,-0.633692383766174,-0.52829897403717,-0.552954792976379,-0.644314348697662,-0.654706120491028,-0.23290778696537,-0.719106256961823,-0.617940962314606,-0.466092944145203,-0.633171498775482,-0.592511594295502,-0.497356802225113,-0.633692383766174,-0.610832750797272,-0.376990556716919,-0.69624799489975,-0.52829897403717,-0.552954792976379,-0.644314348697662,-0.454367727041245,-0.629077851772308,-0.630722522735596,-0.503944098949432,-0.498393148183823,-0.705439209938049,-0.772933840751648,-0.0491517782211304,-0.632579803466797,-0.801597416400909,-0.0643454268574715,-0.594391345977783,-0.642542719841003,-0.0771373137831688,-0.762357234954834,-0.642542719841003,-0.0771373137831688,-0.762357234954834,-0.580372869968414,-0.152264475822449,-0.79998916387558,-0.772933840751648,-0.0491517782211304,-0.632579803466797,-0.801597416400909,-0.0643454268574715,-0.594391345977783,-0.774053573608398,-0.146306604146957,-0.615983188152313, +-0.706559002399445,-0.0900379717350006,-0.701902687549591,-0.689106822013855,-0.18119540810585,-0.701640903949738,-0.708202183246613,-0.28832933306694,-0.644449949264526,-0.640469193458557,-0.155933812260628,-0.751986503601074,-0.689106822013855,-0.18119540810585,-0.701640903949738,-0.658524692058563,-0.124265365302563,-0.74222856760025,-0.774053573608398,-0.146306604146957,-0.615983188152313,-0.662011861801147,-0.063225045800209,-0.746821761131287,-0.650367975234985,-0.306011229753494,-0.695254325866699,-0.610832750797272,-0.376990556716919,-0.69624799489975,-0.640469193458557,-0.155933812260628,-0.751986503601074,-0.650367975234985,-0.306011229753494,-0.695254325866699,-0.625300824642181,-0.00905311666429043,-0.780331194400787,-0.402128100395203,-0.422483414411545,-0.812281131744385,-0.0880248695611954,-0.598908722400665,-0.79596471786499,0.164703354239464,-0.624059855937958,-0.763820588588715,0.164703354239464,-0.624059855937958,-0.763820588588715,0.0905409827828407,-0.704576671123505,-0.703828036785126,-0.263389706611633,-0.535624444484711,-0.802329242229462,-0.558907866477966,-0.321701049804688,-0.764284074306488,-0.346487998962402,-0.391142219305038,-0.852615773677826,-0.0880248695611954,-0.598908722400665,-0.79596471786499,-0.423923820257187,-0.25984600186348,-0.867622315883636,-0.580372869968414,-0.152264475822449,-0.79998916387558,-0.264787495136261,-0.287361711263657,-0.920494794845581,-0.346487998962402,-0.391142219305038,-0.852615773677826,-0.423923820257187,-0.25984600186348,-0.867622315883636,-0.0788229927420616,-0.479235231876373,-0.874139785766602,-0.943374633789063,0.302140653133392,0.136949732899666,-0.91229522228241,-0.298271834850311,-0.280626654624939,-0.900354981422424,0.397759199142456,0.176488935947418,-0.983838260173798,-0.0431407280266285,-0.173784554004669,-0.598138153553009,-0.616566956043243,-0.511933386325836,-0.91229522228241,-0.298271834850311,-0.280626654624939,-0.598138153553009,-0.616566956043243,-0.511933386325836,-0.983838260173798,-0.0431407280266285,-0.173784554004669,-0.800574660301209,-0.392559945583344,-0.452743619680405, +-0.800574660301209,-0.392559945583344,-0.452743619680405,-0.557897090911865,-0.588605582714081,-0.585059106349945,-0.460062652826309,-0.674557864665985,-0.577333450317383,-0.454367727041245,-0.629077851772308,-0.630722522735596,-0.454881340265274,-0.637338578701019,-0.62199866771698,-0.534866154193878,-0.479977160692215,-0.695370376110077,-0.792366147041321,-0.260418057441711,-0.551668524742126,-0.454881340265274,-0.637338578701019,-0.62199866771698,-0.557897090911865,-0.588605582714081,-0.585059106349945,-0.52829897403717,-0.552954792976379,-0.644314348697662,-0.503944098949432,-0.498393148183823,-0.705439209938049,-0.654706120491028,-0.23290778696537,-0.719106256961823,-0.654706120491028,-0.23290778696537,-0.719106256961823,-0.610832750797272,-0.376990556716919,-0.69624799489975,-0.592511594295502,-0.497356802225113,-0.633692383766174,-0.503944098949432,-0.498393148183823,-0.705439209938049,-0.454367727041245,-0.629077851772308,-0.630722522735596,-0.534866154193878,-0.479977160692215,-0.695370376110077,-0.642542719841003,-0.0771373137831688,-0.762357234954834,-0.801597416400909,-0.0643454268574715,-0.594391345977783,-0.706559002399445,-0.0900379717350006,-0.701902687549591,-0.580372869968414,-0.152264475822449,-0.79998916387558,-0.642542719841003,-0.0771373137831688,-0.762357234954834,-0.347224026918411,-0.201228395104408,-0.915938019752502,-0.658524692058563,-0.124265365302563,-0.74222856760025,-0.706559002399445,-0.0900379717350006,-0.701902687549591,-0.774053573608398,-0.146306604146957,-0.615983188152313,-0.689106822013855,-0.18119540810585,-0.701640903949738,-0.640469193458557,-0.155933812260628,-0.751986503601074,-0.558971881866455,0.0223034080117941,-0.82888650894165,-0.517861127853394,-0.0313512794673443,-0.854889929294586,-0.658524692058563,-0.124265365302563,-0.74222856760025,-0.689106822013855,-0.18119540810585,-0.701640903949738,-0.662011861801147,-0.063225045800209,-0.746821761131287,-0.625300824642181,-0.00905311666429043,-0.780331194400787,-0.650367975234985,-0.306011229753494,-0.695254325866699,-0.662011861801147,-0.063225045800209,-0.746821761131287, +-0.610832750797272,-0.376990556716919,-0.69624799489975,-0.65838360786438,0.0497098490595818,-0.751039147377014,-0.625300824642181,-0.00905311666429043,-0.780331194400787,-0.50001734495163,0.301383346319199,-0.811880946159363,-0.640469193458557,-0.155933812260628,-0.751986503601074,-0.0788229927420616,-0.479235231876373,-0.874139785766602,-0.0880248695611954,-0.598908722400665,-0.79596471786499,-0.346487998962402,-0.391142219305038,-0.852615773677826,-0.264787495136261,-0.287361711263657,-0.920494794845581,-0.580372869968414,-0.152264475822449,-0.79998916387558,-0.347224026918411,-0.201228395104408,-0.915938019752502,-0.264787495136261,-0.287361711263657,-0.920494794845581,-0.0788229927420616,-0.479235231876373,-0.874139785766602,-0.423923820257187,-0.25984600186348,-0.867622315883636,-0.91229522228241,-0.298271834850311,-0.280626654624939,-0.943374633789063,0.302140653133392,0.136949732899666,-0.983838260173798,-0.0431407280266285,-0.173784554004669,-0.800574660301209,-0.392559945583344,-0.452743619680405,-0.954597473144531,-0.00291809788905084,-0.297884315252304,-0.557897090911865,-0.588605582714081,-0.585059106349945,-0.534866154193878,-0.479977160692215,-0.695370376110077,-0.454881340265274,-0.637338578701019,-0.62199866771698,-0.792366147041321,-0.260418057441711,-0.551668524742126,-0.792366147041321,-0.260418057441711,-0.551668524742126,-0.557897090911865,-0.588605582714081,-0.585059106349945,-0.954597473144531,-0.00291809788905084,-0.297884315252304,-0.707939207553864,-0.0108166234567761,-0.706190407276154,-0.654706120491028,-0.23290778696537,-0.719106256961823,-0.503944098949432,-0.498393148183823,-0.705439209938049,-0.654706120491028,-0.23290778696537,-0.719106256961823,-0.65838360786438,0.0497098490595818,-0.751039147377014,-0.610832750797272,-0.376990556716919,-0.69624799489975,-0.503944098949432,-0.498393148183823,-0.705439209938049,-0.534866154193878,-0.479977160692215,-0.695370376110077,-0.707939207553864,-0.0108166234567761,-0.706190407276154,-0.642542719841003,-0.0771373137831688,-0.762357234954834, +-0.706559002399445,-0.0900379717350006,-0.701902687549591,-0.532119870185852,-0.116868726909161,-0.838564217090607,-0.347224026918411,-0.201228395104408,-0.915938019752502,-0.642542719841003,-0.0771373137831688,-0.762357234954834,-0.532119870185852,-0.116868726909161,-0.838564217090607,-0.706559002399445,-0.0900379717350006,-0.701902687549591,-0.658524692058563,-0.124265365302563,-0.74222856760025,-0.532119870185852,-0.116868726909161,-0.838564217090607,-0.50001734495163,0.301383346319199,-0.811880946159363,-0.558971881866455,0.0223034080117941,-0.82888650894165,-0.640469193458557,-0.155933812260628,-0.751986503601074,-0.558971881866455,0.0223034080117941,-0.82888650894165,-0.517861127853394,-0.0313512794673443,-0.854889929294586,-0.689106822013855,-0.18119540810585,-0.701640903949738,-0.517861127853394,-0.0313512794673443,-0.854889929294586,-0.465555250644684,-0.0485031455755234,-0.883688628673553,-0.658524692058563,-0.124265365302563,-0.74222856760025,-0.662011861801147,-0.063225045800209,-0.746821761131287,-0.620979905128479,0.451020091772079,-0.641065239906311,-0.625300824642181,-0.00905311666429043,-0.780331194400787,-0.627161502838135,0.555069386959076,-0.546411991119385,-0.662011861801147,-0.063225045800209,-0.746821761131287,-0.65838360786438,0.0497098490595818,-0.751039147377014,-0.449395298957825,0.637455999851227,-0.625854253768921,-0.50001734495163,0.301383346319199,-0.811880946159363,-0.625300824642181,-0.00905311666429043,-0.780331194400787,-0.264787495136261,-0.287361711263657,-0.920494794845581,-0.347224026918411,-0.201228395104408,-0.915938019752502,-0.199089258909225,-0.27740803360939,-0.939897954463959,-0.264787495136261,-0.287361711263657,-0.920494794845581,0.00190833199303597,-0.377771496772766,-0.925896883010864,-0.0788229927420616,-0.479235231876373,-0.874139785766602,-0.792366147041321,-0.260418057441711,-0.551668524742126,-0.799753904342651,0.11296408623457,-0.589603900909424,-0.534866154193878,-0.479977160692215,-0.695370376110077,-0.792366147041321,-0.260418057441711,-0.551668524742126,-0.954597473144531,-0.00291809788905084,-0.297884315252304, +-0.905507743358612,0.406940698623657,-0.120228409767151,-0.707939207553864,-0.0108166234567761,-0.706190407276154,-0.728738129138947,0.511489570140839,-0.455322921276093,-0.654706120491028,-0.23290778696537,-0.719106256961823,-0.65838360786438,0.0497098490595818,-0.751039147377014,-0.654706120491028,-0.23290778696537,-0.719106256961823,-0.744374394416809,0.118045903742313,-0.657245635986328,-0.799753904342651,0.11296408623457,-0.589603900909424,-0.707939207553864,-0.0108166234567761,-0.706190407276154,-0.534866154193878,-0.479977160692215,-0.695370376110077,-0.228636085987091,-0.203442096710205,-0.952017188072205,-0.347224026918411,-0.201228395104408,-0.915938019752502,-0.532119870185852,-0.116868726909161,-0.838564217090607,-0.465555250644684,-0.0485031455755234,-0.883688628673553,-0.532119870185852,-0.116868726909161,-0.838564217090607,-0.658524692058563,-0.124265365302563,-0.74222856760025,-0.517861127853394,-0.0313512794673443,-0.854889929294586,-0.334265798330307,0.0702492967247963,-0.939857065677643,-0.465555250644684,-0.0485031455755234,-0.883688628673553,-0.662011861801147,-0.063225045800209,-0.746821761131287,-0.627161502838135,0.555069386959076,-0.546411991119385,-0.620979905128479,0.451020091772079,-0.641065239906311,-0.449395298957825,0.637455999851227,-0.625854253768921,-0.625300824642181,-0.00905311666429043,-0.780331194400787,-0.620979905128479,0.451020091772079,-0.641065239906311,-0.481663167476654,0.78721672296524,-0.385084807872772,-0.627161502838135,0.555069386959076,-0.546411991119385,-0.65838360786438,0.0497098490595818,-0.751039147377014,-0.199089258909225,-0.27740803360939,-0.939897954463959,-0.347224026918411,-0.201228395104408,-0.915938019752502,-0.115175165235996,-0.334916055202484,-0.935182213783264,-0.199089258909225,-0.27740803360939,-0.939897954463959,0.00190833199303597,-0.377771496772766,-0.925896883010864,-0.264787495136261,-0.287361711263657,-0.920494794845581,-0.799753904342651,0.11296408623457,-0.589603900909424,-0.792366147041321,-0.260418057441711,-0.551668524742126,-0.865359544754028,0.460894554853439,-0.196796774864197, +-0.905507743358612,0.406940698623657,-0.120228409767151,-0.865359544754028,0.460894554853439,-0.196796774864197,-0.792366147041321,-0.260418057441711,-0.551668524742126,-0.728738129138947,0.511489570140839,-0.455322921276093,-0.707939207553864,-0.0108166234567761,-0.706190407276154,-0.667168855667114,0.719561874866486,-0.192655846476555,-0.757534384727478,0.546052157878876,-0.357727080583572,-0.654706120491028,-0.23290778696537,-0.719106256961823,-0.728738129138947,0.511489570140839,-0.455322921276093,-0.757534384727478,0.546052157878876,-0.357727080583572,-0.744374394416809,0.118045903742313,-0.657245635986328,-0.654706120491028,-0.23290778696537,-0.719106256961823,-0.65838360786438,0.0497098490595818,-0.751039147377014,-0.744374394416809,0.118045903742313,-0.657245635986328,-0.655299663543701,0.57027280330658,-0.495349436998367,-0.799753904342651,0.11296408623457,-0.589603900909424,-0.667168855667114,0.719561874866486,-0.192655846476555,-0.707939207553864,-0.0108166234567761,-0.706190407276154,0.0523047484457493,-0.271629929542542,-0.960979342460632,-0.347224026918411,-0.201228395104408,-0.915938019752502,-0.228636085987091,-0.203442096710205,-0.952017188072205,-0.348505616188049,-0.0962213128805161,-0.932354629039764,-0.228636085987091,-0.203442096710205,-0.952017188072205,-0.532119870185852,-0.116868726909161,-0.838564217090607,-0.348505616188049,-0.0962213128805161,-0.932354629039764,-0.532119870185852,-0.116868726909161,-0.838564217090607,-0.465555250644684,-0.0485031455755234,-0.883688628673553,-0.334265798330307,0.0702492967247963,-0.939857065677643,-0.517861127853394,-0.0313512794673443,-0.854889929294586,-0.2538241147995,0.196635499596596,-0.947052121162415,-0.481663167476654,0.78721672296524,-0.385084807872772,-0.65838360786438,0.0497098490595818,-0.751039147377014,-0.655299663543701,0.57027280330658,-0.495349436998367,-0.347224026918411,-0.201228395104408,-0.915938019752502,0.0523047484457493,-0.271629929542542,-0.960979342460632,-0.115175165235996,-0.334916055202484,-0.935182213783264,0.00190833199303597,-0.377771496772766,-0.925896883010864, +-0.199089258909225,-0.27740803360939,-0.939897954463959,-0.115175165235996,-0.334916055202484,-0.935182213783264,-0.799753904342651,0.11296408623457,-0.589603900909424,-0.865359544754028,0.460894554853439,-0.196796774864197,-0.667168855667114,0.719561874866486,-0.192655846476555,-0.757534384727478,0.546052157878876,-0.357727080583572,-0.655299663543701,0.57027280330658,-0.495349436998367,-0.744374394416809,0.118045903742313,-0.657245635986328,-0.227992698550224,0.958415806293488,-0.171634271740913,-0.236711099743843,0.941729068756104,-0.238985106348991,-0.24687272310257,0.94755756855011,-0.202949270606041,-0.17766971886158,0.965238511562347,-0.191697463393211,-0.236711099743843,0.941729068756104,-0.238985106348991,-0.227992698550224,0.958415806293488,-0.171634271740913,-0.24687272310257,0.94755756855011,-0.202949270606041,-0.236711099743843,0.941729068756104,-0.238985106348991,-0.254224419593811,0.92618989944458,-0.278463989496231,-0.227992698550224,0.958415806293488,-0.171634271740913,-0.24687272310257,0.94755756855011,-0.202949270606041,-0.252261608839035,0.9574214220047,-0.140385121107101,-0.17766971886158,0.965238511562347,-0.191697463393211,-0.186063751578331,0.946540772914886,-0.263516217470169,-0.236711099743843,0.941729068756104,-0.238985106348991,-0.227992698550224,0.958415806293488,-0.171634271740913,-0.185650244355202,0.976517915725708,-0.109300792217255,-0.17766971886158,0.965238511562347,-0.191697463393211,-0.254224419593811,0.92618989944458,-0.278463989496231,-0.236711099743843,0.941729068756104,-0.238985106348991,-0.268643349409103,0.913428366184235,-0.305743813514709,-0.24687272310257,0.94755756855011,-0.202949270606041,-0.254224419593811,0.92618989944458,-0.278463989496231,-0.232422605156899,0.938839912414551,-0.254085212945938,-0.24687272310257,0.94755756855011,-0.202949270606041,-0.24825444817543,0.96304976940155,-0.104425996541977,-0.252261608839035,0.9574214220047,-0.140385121107101,-0.22547709941864,0.96868360042572,-0.103981398046017,-0.227992698550224,0.958415806293488,-0.171634271740913,-0.252261608839035,0.9574214220047,-0.140385121107101, +-0.17766971886158,0.965238511562347,-0.191697463393211,-0.132444187998772,0.957191348075867,-0.257377356290817,-0.186063751578331,0.946540772914886,-0.263516217470169,-0.186063751578331,0.946540772914886,-0.263516217470169,-0.229717552661896,0.925013899803162,-0.302620381116867,-0.236711099743843,0.941729068756104,-0.238985106348991,-0.22547709941864,0.96868360042572,-0.103981398046017,-0.185650244355202,0.976517915725708,-0.109300792217255,-0.227992698550224,0.958415806293488,-0.171634271740913,-0.17766971886158,0.965238511562347,-0.191697463393211,-0.185650244355202,0.976517915725708,-0.109300792217255,-0.147834405303001,0.982192695140839,-0.115941576659679,-0.236711099743843,0.941729068756104,-0.238985106348991,-0.229717552661896,0.925013899803162,-0.302620381116867,-0.268643349409103,0.913428366184235,-0.305743813514709,-0.254224419593811,0.92618989944458,-0.278463989496231,-0.268643349409103,0.913428366184235,-0.305743813514709,-0.250934541225433,0.908414602279663,-0.334387093782425,-0.232422605156899,0.938839912414551,-0.254085212945938,-0.254224419593811,0.92618989944458,-0.278463989496231,-0.206320405006409,0.9338698387146,-0.292093962430954,-0.245021939277649,0.954568445682526,-0.169597074389458,-0.24687272310257,0.94755756855011,-0.202949270606041,-0.232422605156899,0.938839912414551,-0.254085212945938,-0.24825444817543,0.96304976940155,-0.104425996541977,-0.24687272310257,0.94755756855011,-0.202949270606041,-0.245021939277649,0.954568445682526,-0.169597074389458,-0.24825444817543,0.96304976940155,-0.104425996541977,-0.247355982661247,0.964758157730103,-0.0897588804364204,-0.252261608839035,0.9574214220047,-0.140385121107101,-0.22547709941864,0.96868360042572,-0.103981398046017,-0.252261608839035,0.9574214220047,-0.140385121107101,-0.247355982661247,0.964758157730103,-0.0897588804364204,-0.17766971886158,0.965238511562347,-0.191697463393211,-0.1171944886446,0.977306067943573,-0.176460087299347,-0.132444187998772,0.957191348075867,-0.257377356290817,-0.125066384673119,0.943235278129578,-0.307677716016769, +-0.186063751578331,0.946540772914886,-0.263516217470169,-0.132444187998772,0.957191348075867,-0.257377356290817,-0.229717552661896,0.925013899803162,-0.302620381116867,-0.186063751578331,0.946540772914886,-0.263516217470169,-0.173085168004036,0.925736427307129,-0.33623418211937,-0.185650244355202,0.976517915725708,-0.109300792217255,-0.22547709941864,0.96868360042572,-0.103981398046017,-0.197144106030464,0.979762375354767,-0.0346386581659317,-0.160996481776237,0.984654664993286,-0.0673437267541885,-0.147834405303001,0.982192695140839,-0.115941576659679,-0.185650244355202,0.976517915725708,-0.109300792217255,-0.1171944886446,0.977306067943573,-0.176460087299347,-0.17766971886158,0.965238511562347,-0.191697463393211,-0.147834405303001,0.982192695140839,-0.115941576659679,-0.268643349409103,0.913428366184235,-0.305743813514709,-0.229717552661896,0.925013899803162,-0.302620381116867,-0.286545842885971,0.888419210910797,-0.358612060546875,-0.268643349409103,0.913428366184235,-0.305743813514709,-0.286545842885971,0.888419210910797,-0.358612060546875,-0.250934541225433,0.908414602279663,-0.334387093782425,-0.206320405006409,0.9338698387146,-0.292093962430954,-0.254224419593811,0.92618989944458,-0.278463989496231,-0.250934541225433,0.908414602279663,-0.334387093782425,-0.19377812743187,0.948401153087616,-0.250968515872955,-0.232422605156899,0.938839912414551,-0.254085212945938,-0.206320405006409,0.9338698387146,-0.292093962430954,-0.245021939277649,0.954568445682526,-0.169597074389458,-0.232422605156899,0.938839912414551,-0.254085212945938,-0.2341588139534,0.951114654541016,-0.201371297240257,-0.24825444817543,0.96304976940155,-0.104425996541977,-0.245021939277649,0.954568445682526,-0.169597074389458,-0.255820870399475,0.962325274944305,-0.09211765229702,-0.24825444817543,0.96304976940155,-0.104425996541977,-0.256552249193192,0.964798092842102,-0.0578395761549473,-0.247355982661247,0.964758157730103,-0.0897588804364204,-0.247355982661247,0.964758157730103,-0.0897588804364204,-0.237096697092056,0.969841420650482,-0.0565034151077271, +-0.22547709941864,0.96868360042572,-0.103981398046017,-0.1171944886446,0.977306067943573,-0.176460087299347,-0.0799867585301399,0.962604224681854,-0.258834064006805,-0.132444187998772,0.957191348075867,-0.257377356290817,-0.125066384673119,0.943235278129578,-0.307677716016769,-0.173085168004036,0.925736427307129,-0.33623418211937,-0.186063751578331,0.946540772914886,-0.263516217470169,-0.125066384673119,0.943235278129578,-0.307677716016769,-0.132444187998772,0.957191348075867,-0.257377356290817,-0.0775673687458038,0.938620209693909,-0.336118072271347,-0.173085168004036,0.925736427307129,-0.33623418211937,-0.239998191595078,0.907877802848816,-0.34374213218689,-0.229717552661896,0.925013899803162,-0.302620381116867,-0.197144106030464,0.979762375354767,-0.0346386581659317,-0.22547709941864,0.96868360042572,-0.103981398046017,-0.237096697092056,0.969841420650482,-0.0565034151077271,-0.185650244355202,0.976517915725708,-0.109300792217255,-0.197144106030464,0.979762375354767,-0.0346386581659317,-0.160439163446426,0.986722052097321,-0.0252732839435339,-0.147834405303001,0.982192695140839,-0.115941576659679,-0.160996481776237,0.984654664993286,-0.0673437267541885,-0.116408176720142,0.992312431335449,-0.0420126877725124,-0.160439163446426,0.986722052097321,-0.0252732839435339,-0.160996481776237,0.984654664993286,-0.0673437267541885,-0.185650244355202,0.976517915725708,-0.109300792217255,-0.1171944886446,0.977306067943573,-0.176460087299347,-0.147834405303001,0.982192695140839,-0.115941576659679,-0.118805758655071,0.987469732761383,-0.103868432343006,-0.286545842885971,0.888419210910797,-0.358612060546875,-0.229717552661896,0.925013899803162,-0.302620381116867,-0.239998191595078,0.907877802848816,-0.34374213218689,-0.250934541225433,0.908414602279663,-0.334387093782425,-0.286545842885971,0.888419210910797,-0.358612060546875,-0.259814441204071,0.876717448234558,-0.40479975938797,-0.250934541225433,0.908414602279663,-0.334387093782425,-0.168047696352005,0.925595998764038,-0.339163482189178,-0.206320405006409,0.9338698387146,-0.292093962430954, +-0.2341588139534,0.951114654541016,-0.201371297240257,-0.232422605156899,0.938839912414551,-0.254085212945938,-0.19377812743187,0.948401153087616,-0.250968515872955,-0.19377812743187,0.948401153087616,-0.250968515872955,-0.206320405006409,0.9338698387146,-0.292093962430954,-0.184973448514938,0.931315839290619,-0.313744395971298,-0.252737551927567,0.959071338176727,-0.127694338560104,-0.245021939277649,0.954568445682526,-0.169597074389458,-0.2341588139534,0.951114654541016,-0.201371297240257,-0.255820870399475,0.962325274944305,-0.09211765229702,-0.245021939277649,0.954568445682526,-0.169597074389458,-0.252737551927567,0.959071338176727,-0.127694338560104,-0.255820870399475,0.962325274944305,-0.09211765229702,-0.253188341856003,0.96610814332962,-0.0503046475350857,-0.24825444817543,0.96304976940155,-0.104425996541977,-0.24825444817543,0.96304976940155,-0.104425996541977,-0.253188341856003,0.96610814332962,-0.0503046475350857,-0.256552249193192,0.964798092842102,-0.0578395761549473,-0.247355982661247,0.964758157730103,-0.0897588804364204,-0.256552249193192,0.964798092842102,-0.0578395761549473,-0.237096697092056,0.969841420650482,-0.0565034151077271,-0.0333127714693546,0.98501980304718,-0.169192716479301,-0.0799867585301399,0.962604224681854,-0.258834064006805,-0.1171944886446,0.977306067943573,-0.176460087299347,-0.132444187998772,0.957191348075867,-0.257377356290817,-0.0799867585301399,0.962604224681854,-0.258834064006805,-0.0775673687458038,0.938620209693909,-0.336118072271347,-0.173085168004036,0.925736427307129,-0.33623418211937,-0.125066384673119,0.943235278129578,-0.307677716016769,-0.0920970737934113,0.929087519645691,-0.358210027217865,-0.0775673687458038,0.938620209693909,-0.336118072271347,-0.0920970737934113,0.929087519645691,-0.358210027217865,-0.125066384673119,0.943235278129578,-0.307677716016769,-0.239998191595078,0.907877802848816,-0.34374213218689,-0.173085168004036,0.925736427307129,-0.33623418211937,-0.273755848407745,0.873734295368195,-0.402052342891693,-0.237096697092056,0.969841420650482,-0.0565034151077271, +-0.246523424983025,0.968971729278564,-0.0178863052278757,-0.197144106030464,0.979762375354767,-0.0346386581659317,-0.160439163446426,0.986722052097321,-0.0252732839435339,-0.197144106030464,0.979762375354767,-0.0346386581659317,-0.163285180926323,0.986353695392609,0.0210761986672878,-0.116408176720142,0.992312431335449,-0.0420126877725124,-0.160996481776237,0.984654664993286,-0.0673437267541885,-0.148993149399757,0.988348484039307,-0.0311156380921602,-0.118805758655071,0.987469732761383,-0.103868432343006,-0.147834405303001,0.982192695140839,-0.115941576659679,-0.116408176720142,0.992312431335449,-0.0420126877725124,-0.148993149399757,0.988348484039307,-0.0311156380921602,-0.160996481776237,0.984654664993286,-0.0673437267541885,-0.160439163446426,0.986722052097321,-0.0252732839435339,-0.1171944886446,0.977306067943573,-0.176460087299347,-0.118805758655071,0.987469732761383,-0.103868432343006,-0.0846092700958252,0.989570677280426,-0.116579741239548,-0.286545842885971,0.888419210910797,-0.358612060546875,-0.239998191595078,0.907877802848816,-0.34374213218689,-0.273755848407745,0.873734295368195,-0.402052342891693,-0.286545842885971,0.888419210910797,-0.358612060546875,-0.2971431016922,0.847845494747162,-0.439162790775299,-0.259814441204071,0.876717448234558,-0.40479975938797,-0.250934541225433,0.908414602279663,-0.334387093782425,-0.259814441204071,0.876717448234558,-0.40479975938797,-0.166317164897919,0.900696754455566,-0.401352524757385,-0.168047696352005,0.925595998764038,-0.339163482189178,-0.250934541225433,0.908414602279663,-0.334387093782425,-0.166317164897919,0.900696754455566,-0.401352524757385,-0.184973448514938,0.931315839290619,-0.313744395971298,-0.206320405006409,0.9338698387146,-0.292093962430954,-0.168047696352005,0.925595998764038,-0.339163482189178,-0.197463408112526,0.960334479808807,-0.196890413761139,-0.2341588139534,0.951114654541016,-0.201371297240257,-0.19377812743187,0.948401153087616,-0.250968515872955,-0.182935327291489,0.932489514350891,-0.311444729566574,-0.19377812743187,0.948401153087616,-0.250968515872955, +-0.184973448514938,0.931315839290619,-0.313744395971298,-0.2341588139534,0.951114654541016,-0.201371297240257,-0.188664749264717,0.972584545612335,-0.135958716273308,-0.252737551927567,0.959071338176727,-0.127694338560104,-0.255820870399475,0.962325274944305,-0.09211765229702,-0.252737551927567,0.959071338176727,-0.127694338560104,-0.234964832663536,0.970049977302551,-0.0615989305078983,-0.255820870399475,0.962325274944305,-0.09211765229702,-0.260352194309235,0.965060710906982,-0.0295709446072578,-0.253188341856003,0.96610814332962,-0.0503046475350857,-0.246523424983025,0.968971729278564,-0.0178863052278757,-0.256552249193192,0.964798092842102,-0.0578395761549473,-0.253188341856003,0.96610814332962,-0.0503046475350857,-0.237096697092056,0.969841420650482,-0.0565034151077271,-0.256552249193192,0.964798092842102,-0.0578395761549473,-0.246523424983025,0.968971729278564,-0.0178863052278757,-0.0333127714693546,0.98501980304718,-0.169192716479301,-0.0117362914606929,0.961595475673676,-0.274219304323196,-0.0799867585301399,0.962604224681854,-0.258834064006805,-0.0333127714693546,0.98501980304718,-0.169192716479301,-0.1171944886446,0.977306067943573,-0.176460087299347,-0.0846092700958252,0.989570677280426,-0.116579741239548,-0.0505356192588806,0.932421326637268,-0.357822060585022,-0.0775673687458038,0.938620209693909,-0.336118072271347,-0.0799867585301399,0.962604224681854,-0.258834064006805,-0.165149167180061,0.907682597637177,-0.385795146226883,-0.173085168004036,0.925736427307129,-0.33623418211937,-0.0920970737934113,0.929087519645691,-0.358210027217865,-0.0775673687458038,0.938620209693909,-0.336118072271347,-0.0609589368104935,0.917012095451355,-0.394173473119736,-0.0920970737934113,0.929087519645691,-0.358210027217865,-0.273755848407745,0.873734295368195,-0.402052342891693,-0.173085168004036,0.925736427307129,-0.33623418211937,-0.165149167180061,0.907682597637177,-0.385795146226883,-0.197144106030464,0.979762375354767,-0.0346386581659317,-0.246523424983025,0.968971729278564,-0.0178863052278757,-0.229590937495232,0.972432255744934,0.0407851710915565, +-0.197144106030464,0.979762375354767,-0.0346386581659317,-0.229590937495232,0.972432255744934,0.0407851710915565,-0.163285180926323,0.986353695392609,0.0210761986672878,-0.144618332386017,0.988669991493225,0.0402123741805553,-0.160439163446426,0.986722052097321,-0.0252732839435339,-0.163285180926323,0.986353695392609,0.0210761986672878,-0.130830451846123,0.991325080394745,0.0125630190595984,-0.116408176720142,0.992312431335449,-0.0420126877725124,-0.148993149399757,0.988348484039307,-0.0311156380921602,-0.082898311316967,0.994181334972382,-0.0687838792800903,-0.118805758655071,0.987469732761383,-0.103868432343006,-0.116408176720142,0.992312431335449,-0.0420126877725124,-0.130830451846123,0.991325080394745,0.0125630190595984,-0.148993149399757,0.988348484039307,-0.0311156380921602,-0.160439163446426,0.986722052097321,-0.0252732839435339,-0.082898311316967,0.994181334972382,-0.0687838792800903,-0.0846092700958252,0.989570677280426,-0.116579741239548,-0.118805758655071,0.987469732761383,-0.103868432343006,-0.286545842885971,0.888419210910797,-0.358612060546875,-0.273755848407745,0.873734295368195,-0.402052342891693,-0.2971431016922,0.847845494747162,-0.439162790775299,-0.2971431016922,0.847845494747162,-0.439162790775299,-0.185759544372559,0.842250764369965,-0.506070017814636,-0.259814441204071,0.876717448234558,-0.40479975938797,-0.166317164897919,0.900696754455566,-0.401352524757385,-0.259814441204071,0.876717448234558,-0.40479975938797,-0.185759544372559,0.842250764369965,-0.506070017814636,-0.168047696352005,0.925595998764038,-0.339163482189178,-0.166317164897919,0.900696754455566,-0.401352524757385,-0.133733049035072,0.903489828109741,-0.407211780548096,-0.184973448514938,0.931315839290619,-0.313744395971298,-0.168047696352005,0.925595998764038,-0.339163482189178,-0.173033162951469,0.912062168121338,-0.371755301952362,-0.188664749264717,0.972584545612335,-0.135958716273308,-0.2341588139534,0.951114654541016,-0.201371297240257,-0.197463408112526,0.960334479808807,-0.196890413761139,-0.197463408112526,0.960334479808807,-0.196890413761139, +-0.19377812743187,0.948401153087616,-0.250968515872955,-0.131413444876671,0.971898853778839,-0.195302471518517,-0.19377812743187,0.948401153087616,-0.250968515872955,-0.182935327291489,0.932489514350891,-0.311444729566574,-0.117358103394508,0.955365478992462,-0.271115899085999,-0.182935327291489,0.932489514350891,-0.311444729566574,-0.184973448514938,0.931315839290619,-0.313744395971298,-0.181975543498993,0.911958515644073,-0.367717921733856,-0.188664749264717,0.972584545612335,-0.135958716273308,-0.234964832663536,0.970049977302551,-0.0615989305078983,-0.252737551927567,0.959071338176727,-0.127694338560104,-0.255820870399475,0.962325274944305,-0.09211765229702,-0.234964832663536,0.970049977302551,-0.0615989305078983,-0.260352194309235,0.965060710906982,-0.0295709446072578,-0.260352194309235,0.965060710906982,-0.0295709446072578,-0.256614804267883,0.966471433639526,0.00903847720474005,-0.253188341856003,0.96610814332962,-0.0503046475350857,-0.246523424983025,0.968971729278564,-0.0178863052278757,-0.253188341856003,0.96610814332962,-0.0503046475350857,-0.256614804267883,0.966471433639526,0.00903847720474005,-0.0333127714693546,0.98501980304718,-0.169192716479301,0.0403161495923996,0.979578256607056,-0.196979522705078,-0.0117362914606929,0.961595475673676,-0.274219304323196,-0.0117362914606929,0.961595475673676,-0.274219304323196,-0.0505356192588806,0.932421326637268,-0.357822060585022,-0.0799867585301399,0.962604224681854,-0.258834064006805,-0.0846092700958252,0.989570677280426,-0.116579741239548,-0.0359442718327045,0.994559943675995,-0.0977672711014748,-0.0333127714693546,0.98501980304718,-0.169192716479301,-0.0775673687458038,0.938620209693909,-0.336118072271347,-0.0505356192588806,0.932421326637268,-0.357822060585022,-0.0161277540028095,0.909235835075378,-0.415968716144562,-0.165149167180061,0.907682597637177,-0.385795146226883,-0.0920970737934113,0.929087519645691,-0.358210027217865,-0.0609589368104935,0.917012095451355,-0.394173473119736,-0.0775673687458038,0.938620209693909,-0.336118072271347,-0.0161277540028095,0.909235835075378,-0.415968716144562, +-0.0609589368104935,0.917012095451355,-0.394173473119736,-0.273755848407745,0.873734295368195,-0.402052342891693,-0.165149167180061,0.907682597637177,-0.385795146226883,-0.253290742635727,0.853956818580627,-0.454534292221069,-0.229590937495232,0.972432255744934,0.0407851710915565,-0.246523424983025,0.968971729278564,-0.0178863052278757,-0.256614804267883,0.966471433639526,0.00903847720474005,-0.229590937495232,0.972432255744934,0.0407851710915565,-0.175988793373108,0.981835424900055,0.0709016993641853,-0.163285180926323,0.986353695392609,0.0210761986672878,-0.130830451846123,0.991325080394745,0.0125630190595984,-0.160439163446426,0.986722052097321,-0.0252732839435339,-0.144618332386017,0.988669991493225,0.0402123741805553,-0.144618332386017,0.988669991493225,0.0402123741805553,-0.163285180926323,0.986353695392609,0.0210761986672878,-0.175988793373108,0.981835424900055,0.0709016993641853,-0.116408176720142,0.992312431335449,-0.0420126877725124,-0.130830451846123,0.991325080394745,0.0125630190595984,-0.106650575995445,0.993727922439575,0.0336207896471024,-0.0547516904771328,0.998402118682861,-0.0139696663245559,-0.082898311316967,0.994181334972382,-0.0687838792800903,-0.116408176720142,0.992312431335449,-0.0420126877725124,-0.0846092700958252,0.989570677280426,-0.116579741239548,-0.082898311316967,0.994181334972382,-0.0687838792800903,-0.0359442718327045,0.994559943675995,-0.0977672711014748,-0.273755848407745,0.873734295368195,-0.402052342891693,-0.303432285785675,0.82000869512558,-0.485298335552216,-0.2971431016922,0.847845494747162,-0.439162790775299,-0.2971431016922,0.847845494747162,-0.439162790775299,-0.303432285785675,0.82000869512558,-0.485298335552216,-0.185759544372559,0.842250764369965,-0.506070017814636,-0.166317164897919,0.900696754455566,-0.401352524757385,-0.185759544372559,0.842250764369965,-0.506070017814636,-0.097133070230484,0.867309033870697,-0.48820087313652,-0.166317164897919,0.900696754455566,-0.401352524757385,-0.097133070230484,0.867309033870697,-0.48820087313652,-0.133733049035072,0.903489828109741,-0.407211780548096, +-0.173033162951469,0.912062168121338,-0.371755301952362,-0.168047696352005,0.925595998764038,-0.339163482189178,-0.133733049035072,0.903489828109741,-0.407211780548096,-0.184973448514938,0.931315839290619,-0.313744395971298,-0.173033162951469,0.912062168121338,-0.371755301952362,-0.181975543498993,0.911958515644073,-0.367717921733856,-0.188664749264717,0.972584545612335,-0.135958716273308,-0.197463408112526,0.960334479808807,-0.196890413761139,-0.131413444876671,0.971898853778839,-0.195302471518517,-0.19377812743187,0.948401153087616,-0.250968515872955,-0.117358103394508,0.955365478992462,-0.271115899085999,-0.131413444876671,0.971898853778839,-0.195302471518517,-0.122891284525394,0.931841611862183,-0.341421693563461,-0.117358103394508,0.955365478992462,-0.271115899085999,-0.182935327291489,0.932489514350891,-0.311444729566574,-0.182935327291489,0.932489514350891,-0.311444729566574,-0.181975543498993,0.911958515644073,-0.367717921733856,-0.122891284525394,0.931841611862183,-0.341421693563461,-0.188664749264717,0.972584545612335,-0.135958716273308,-0.156434953212738,0.985135316848755,-0.0709681138396263,-0.234964832663536,0.970049977302551,-0.0615989305078983,-0.251150369644165,0.967635095119476,0.0246127340942621,-0.260352194309235,0.965060710906982,-0.0295709446072578,-0.234964832663536,0.970049977302551,-0.0615989305078983,-0.260352194309235,0.965060710906982,-0.0295709446072578,-0.271867752075195,0.960681676864624,0.0563782677054405,-0.256614804267883,0.966471433639526,0.00903847720474005,-0.0333127714693546,0.98501980304718,-0.169192716479301,0.0321122482419014,0.993133068084717,-0.112496070563793,0.0403161495923996,0.979578256607056,-0.196979522705078,0.0403161495923996,0.979578256607056,-0.196979522705078,0.0543609149754047,0.957504212856293,-0.28324943780899,-0.0117362914606929,0.961595475673676,-0.274219304323196,-0.0505356192588806,0.932421326637268,-0.357822060585022,-0.0117362914606929,0.961595475673676,-0.274219304323196,0.00117692782077938,0.935575246810913,-0.353125184774399,-0.0333127714693546,0.98501980304718,-0.169192716479301, +-0.0359442718327045,0.994559943675995,-0.0977672711014748,0.0321122482419014,0.993133068084717,-0.112496070563793,-0.0159701276570559,0.90277773141861,-0.429810732603073,-0.0161277540028095,0.909235835075378,-0.415968716144562,-0.0505356192588806,0.932421326637268,-0.357822060585022,-0.165149167180061,0.907682597637177,-0.385795146226883,-0.0609589368104935,0.917012095451355,-0.394173473119736,-0.155066177248955,0.879597783088684,-0.449735522270203,-0.0161277540028095,0.909235835075378,-0.415968716144562,0.00356977712363005,0.882367253303528,-0.470547765493393,-0.0609589368104935,0.917012095451355,-0.394173473119736,-0.253290742635727,0.853956818580627,-0.454534292221069,-0.165149167180061,0.907682597637177,-0.385795146226883,-0.155066177248955,0.879597783088684,-0.449735522270203,-0.321643263101578,0.814014971256256,-0.483658075332642,-0.273755848407745,0.873734295368195,-0.402052342891693,-0.253290742635727,0.853956818580627,-0.454534292221069,-0.229590937495232,0.972432255744934,0.0407851710915565,-0.256614804267883,0.966471433639526,0.00903847720474005,-0.266898691654205,0.96091490983963,0.0735352709889412,-0.243057608604431,0.963566780090332,0.111632809042931,-0.175988793373108,0.981835424900055,0.0709016993641853,-0.229590937495232,0.972432255744934,0.0407851710915565,-0.106650575995445,0.993727922439575,0.0336207896471024,-0.130830451846123,0.991325080394745,0.0125630190595984,-0.144618332386017,0.988669991493225,0.0402123741805553,-0.125587821006775,0.988813459873199,0.0804708003997803,-0.144618332386017,0.988669991493225,0.0402123741805553,-0.175988793373108,0.981835424900055,0.0709016993641853,-0.0547516904771328,0.998402118682861,-0.0139696663245559,-0.116408176720142,0.992312431335449,-0.0420126877725124,-0.106650575995445,0.993727922439575,0.0336207896471024,-0.082898311316967,0.994181334972382,-0.0687838792800903,-0.0547516904771328,0.998402118682861,-0.0139696663245559,-0.0231979843229055,0.997136235237122,-0.0719782486557961,-0.082898311316967,0.994181334972382,-0.0687838792800903,-0.0231979843229055,0.997136235237122,-0.0719782486557961, +-0.0359442718327045,0.994559943675995,-0.0977672711014748,-0.273755848407745,0.873734295368195,-0.402052342891693,-0.321643263101578,0.814014971256256,-0.483658075332642,-0.303432285785675,0.82000869512558,-0.485298335552216,-0.185759544372559,0.842250764369965,-0.506070017814636,-0.303432285785675,0.82000869512558,-0.485298335552216,-0.280319601297379,0.755224645137787,-0.59250020980835,-0.00653277756646276,0.794293105602264,-0.607499480247498,-0.097133070230484,0.867309033870697,-0.48820087313652,-0.185759544372559,0.842250764369965,-0.506070017814636,-0.133733049035072,0.903489828109741,-0.407211780548096,-0.097133070230484,0.867309033870697,-0.48820087313652,-0.149265184998512,0.880595862865448,-0.449745178222656,-0.173033162951469,0.912062168121338,-0.371755301952362,-0.133733049035072,0.903489828109741,-0.407211780548096,-0.149265184998512,0.880595862865448,-0.449745178222656,-0.149265184998512,0.880595862865448,-0.449745178222656,-0.181975543498993,0.911958515644073,-0.367717921733856,-0.173033162951469,0.912062168121338,-0.371755301952362,-0.188664749264717,0.972584545612335,-0.135958716273308,-0.131413444876671,0.971898853778839,-0.195302471518517,-0.0810983628034592,0.990403294563293,-0.1119120195508,-0.117358103394508,0.955365478992462,-0.271115899085999,-0.00911856256425381,0.982267677783966,-0.18726173043251,-0.131413444876671,0.971898853778839,-0.195302471518517,-0.064167320728302,0.949906945228577,-0.305874556303024,-0.117358103394508,0.955365478992462,-0.271115899085999,-0.122891284525394,0.931841611862183,-0.341421693563461,-0.111125089228153,0.902559041976929,-0.415978699922562,-0.122891284525394,0.931841611862183,-0.341421693563461,-0.181975543498993,0.911958515644073,-0.367717921733856,-0.0810983628034592,0.990403294563293,-0.1119120195508,-0.156434953212738,0.985135316848755,-0.0709681138396263,-0.188664749264717,0.972584545612335,-0.135958716273308,-0.234964832663536,0.970049977302551,-0.0615989305078983,-0.156434953212738,0.985135316848755,-0.0709681138396263,-0.153395161032677,0.988116800785065,-0.00975125376135111, +-0.251150369644165,0.967635095119476,0.0246127340942621,-0.271867752075195,0.960681676864624,0.0563782677054405,-0.260352194309235,0.965060710906982,-0.0295709446072578,-0.251150369644165,0.967635095119476,0.0246127340942621,-0.234964832663536,0.970049977302551,-0.0615989305078983,-0.153395161032677,0.988116800785065,-0.00975125376135111,-0.266898691654205,0.96091490983963,0.0735352709889412,-0.256614804267883,0.966471433639526,0.00903847720474005,-0.271867752075195,0.960681676864624,0.0563782677054405,0.0877075418829918,0.983774781227112,-0.15650637447834,0.0403161495923996,0.979578256607056,-0.196979522705078,0.0321122482419014,0.993133068084717,-0.112496070563793,0.0403161495923996,0.979578256607056,-0.196979522705078,0.107335187494755,0.968000292778015,-0.226835891604424,0.0543609149754047,0.957504212856293,-0.28324943780899,-0.0117362914606929,0.961595475673676,-0.274219304323196,0.0543609149754047,0.957504212856293,-0.28324943780899,0.00117692782077938,0.935575246810913,-0.353125184774399,-0.0505356192588806,0.932421326637268,-0.357822060585022,0.00117692782077938,0.935575246810913,-0.353125184774399,-0.0159701276570559,0.90277773141861,-0.429810732603073,-0.0231979843229055,0.997136235237122,-0.0719782486557961,0.0321122482419014,0.993133068084717,-0.112496070563793,-0.0359442718327045,0.994559943675995,-0.0977672711014748,-0.0159701276570559,0.90277773141861,-0.429810732603073,0.00369756785221398,0.882622420787811,-0.470068037509918,-0.0161277540028095,0.909235835075378,-0.415968716144562,-0.0609589368104935,0.917012095451355,-0.394173473119736,0.00356977712363005,0.882367253303528,-0.470547765493393,-0.155066177248955,0.879597783088684,-0.449735522270203,-0.0161277540028095,0.909235835075378,-0.415968716144562,0.0920378193259239,0.869917273521423,-0.484533667564392,0.00356977712363005,0.882367253303528,-0.470547765493393,-0.253290742635727,0.853956818580627,-0.454534292221069,-0.155066177248955,0.879597783088684,-0.449735522270203,-0.263906270265579,0.807790577411652,-0.527093589305878,-0.321643263101578,0.814014971256256,-0.483658075332642, +-0.253290742635727,0.853956818580627,-0.454534292221069,-0.33264833688736,0.761509716510773,-0.556280374526978,-0.243057608604431,0.963566780090332,0.111632809042931,-0.229590937495232,0.972432255744934,0.0407851710915565,-0.266898691654205,0.96091490983963,0.0735352709889412,-0.195842862129211,0.973039090633392,0.121821120381355,-0.175988793373108,0.981835424900055,0.0709016993641853,-0.243057608604431,0.963566780090332,0.111632809042931,-0.106650575995445,0.993727922439575,0.0336207896471024,-0.144618332386017,0.988669991493225,0.0402123741805553,-0.125587821006775,0.988813459873199,0.0804708003997803,-0.125587821006775,0.988813459873199,0.0804708003997803,-0.175988793373108,0.981835424900055,0.0709016993641853,-0.137320980429649,0.983982026576996,0.113675780594349,-0.0547516904771328,0.998402118682861,-0.0139696663245559,-0.106650575995445,0.993727922439575,0.0336207896471024,-0.0850448831915855,0.995368182659149,0.0448277816176414,-0.0547516904771328,0.998402118682861,-0.0139696663245559,0.046315424144268,0.997989594936371,-0.0432620868086815,-0.0231979843229055,0.997136235237122,-0.0719782486557961,-0.321643263101578,0.814014971256256,-0.483658075332642,-0.280319601297379,0.755224645137787,-0.59250020980835,-0.303432285785675,0.82000869512558,-0.485298335552216,-0.185759544372559,0.842250764369965,-0.506070017814636,-0.280319601297379,0.755224645137787,-0.59250020980835,-0.119516022503376,0.781036674976349,-0.612941682338715,-0.0434898845851421,0.83267867565155,-0.552046000957489,-0.097133070230484,0.867309033870697,-0.48820087313652,-0.00653277756646276,0.794293105602264,-0.607499480247498,-0.185759544372559,0.842250764369965,-0.506070017814636,-0.119516022503376,0.781036674976349,-0.612941682338715,-0.00653277756646276,0.794293105602264,-0.607499480247498,-0.0434898845851421,0.83267867565155,-0.552046000957489,-0.149265184998512,0.880595862865448,-0.449745178222656,-0.097133070230484,0.867309033870697,-0.48820087313652,-0.111125089228153,0.902559041976929,-0.415978699922562,-0.181975543498993,0.911958515644073,-0.367717921733856, +-0.149265184998512,0.880595862865448,-0.449745178222656,0.0210005305707455,0.992427408695221,-0.121023811399937,-0.0810983628034592,0.990403294563293,-0.1119120195508,-0.131413444876671,0.971898853778839,-0.195302471518517,-0.117358103394508,0.955365478992462,-0.271115899085999,0.0712671205401421,0.975455462932587,-0.208344593644142,-0.00911856256425381,0.982267677783966,-0.18726173043251,-0.00911856256425381,0.982267677783966,-0.18726173043251,0.0210005305707455,0.992427408695221,-0.121023811399937,-0.131413444876671,0.971898853778839,-0.195302471518517,-0.064167320728302,0.949906945228577,-0.305874556303024,-0.00539142126217484,0.961372315883636,-0.275198251008987,-0.117358103394508,0.955365478992462,-0.271115899085999,-0.122891284525394,0.931841611862183,-0.341421693563461,-0.017497630789876,0.923818290233612,-0.38243094086647,-0.064167320728302,0.949906945228577,-0.305874556303024,-0.111125089228153,0.902559041976929,-0.415978699922562,-0.017497630789876,0.923818290233612,-0.38243094086647,-0.122891284525394,0.931841611862183,-0.341421693563461,-0.0424337424337864,0.997864782810211,-0.0496509373188019,-0.156434953212738,0.985135316848755,-0.0709681138396263,-0.0810983628034592,0.990403294563293,-0.1119120195508,-0.156434953212738,0.985135316848755,-0.0709681138396263,-0.0424337424337864,0.997864782810211,-0.0496509373188019,-0.153395161032677,0.988116800785065,-0.00975125376135111,-0.251150369644165,0.967635095119476,0.0246127340942621,-0.280118405818939,0.952597856521606,0.118705026805401,-0.271867752075195,0.960681676864624,0.0563782677054405,-0.170955553650856,0.982899785041809,0.0684256628155708,-0.251150369644165,0.967635095119476,0.0246127340942621,-0.153395161032677,0.988116800785065,-0.00975125376135111,-0.271867752075195,0.960681676864624,0.0563782677054405,-0.290088295936584,0.949791491031647,0.117238312959671,-0.266898691654205,0.96091490983963,0.0735352709889412,0.0877075418829918,0.983774781227112,-0.15650637447834,0.107335187494755,0.968000292778015,-0.226835891604424,0.0403161495923996,0.979578256607056,-0.196979522705078, +0.119613483548164,0.98733776807785,-0.104195214807987,0.0877075418829918,0.983774781227112,-0.15650637447834,0.0321122482419014,0.993133068084717,-0.112496070563793,0.13199020922184,0.933481276035309,-0.333453357219696,0.0543609149754047,0.957504212856293,-0.28324943780899,0.107335187494755,0.968000292778015,-0.226835891604424,0.00117692782077938,0.935575246810913,-0.353125184774399,0.0543609149754047,0.957504212856293,-0.28324943780899,0.0496197566390038,0.9219611287117,-0.38409036397934,0.00117692782077938,0.935575246810913,-0.353125184774399,0.0496197566390038,0.9219611287117,-0.38409036397934,-0.0159701276570559,0.90277773141861,-0.429810732603073,-0.0231979843229055,0.997136235237122,-0.0719782486557961,0.046315424144268,0.997989594936371,-0.0432620868086815,0.0321122482419014,0.993133068084717,-0.112496070563793,-0.0159701276570559,0.90277773141861,-0.429810732603073,-0.0482116974890232,0.869764447212219,-0.491106241941452,0.00369756785221398,0.882622420787811,-0.470068037509918,0.00369756785221398,0.882622420787811,-0.470068037509918,0.0920378193259239,0.869917273521423,-0.484533667564392,-0.0161277540028095,0.909235835075378,-0.415968716144562,-0.12941911816597,0.835754752159119,-0.53363311290741,-0.155066177248955,0.879597783088684,-0.449735522270203,0.00356977712363005,0.882367253303528,-0.470547765493393,0.00356977712363005,0.882367253303528,-0.470547765493393,0.0920378193259239,0.869917273521423,-0.484533667564392,0.127012461423874,0.830683410167694,-0.542063355445862,-0.155066177248955,0.879597783088684,-0.449735522270203,-0.12941911816597,0.835754752159119,-0.53363311290741,-0.263906270265579,0.807790577411652,-0.527093589305878,-0.263906270265579,0.807790577411652,-0.527093589305878,-0.33264833688736,0.761509716510773,-0.556280374526978,-0.253290742635727,0.853956818580627,-0.454534292221069,-0.280319601297379,0.755224645137787,-0.59250020980835,-0.321643263101578,0.814014971256256,-0.483658075332642,-0.33264833688736,0.761509716510773,-0.556280374526978,-0.266374379396439,0.953671336174011,0.13984152674675, +-0.243057608604431,0.963566780090332,0.111632809042931,-0.266898691654205,0.96091490983963,0.0735352709889412,-0.175988793373108,0.981835424900055,0.0709016993641853,-0.195842862129211,0.973039090633392,0.121821120381355,-0.137320980429649,0.983982026576996,0.113675780594349,-0.195842862129211,0.973039090633392,0.121821120381355,-0.243057608604431,0.963566780090332,0.111632809042931,-0.249370887875557,0.953204035758972,0.170926600694656,-0.125587821006775,0.988813459873199,0.0804708003997803,-0.0970932021737099,0.989281237125397,0.109066292643547,-0.106650575995445,0.993727922439575,0.0336207896471024,-0.137320980429649,0.983982026576996,0.113675780594349,-0.0896465703845024,0.984691679477692,0.149484813213348,-0.125587821006775,0.988813459873199,0.0804708003997803,-0.0850448831915855,0.995368182659149,0.0448277816176414,-0.106650575995445,0.993727922439575,0.0336207896471024,-0.0970932021737099,0.989281237125397,0.109066292643547,-0.0547516904771328,0.998402118682861,-0.0139696663245559,-0.0850448831915855,0.995368182659149,0.0448277816176414,-0.0341686755418777,0.997644901275635,0.0594731457531452,-0.0547516904771328,0.998402118682861,-0.0139696663245559,0.0133589617908001,0.99979704618454,0.015074647963047,0.046315424144268,0.997989594936371,-0.0432620868086815,-0.0946763977408409,0.778739035129547,-0.620162665843964,-0.119516022503376,0.781036674976349,-0.612941682338715,-0.280319601297379,0.755224645137787,-0.59250020980835,0.0600184239447117,0.756607711315155,-0.651108622550964,-0.0434898845851421,0.83267867565155,-0.552046000957489,-0.00653277756646276,0.794293105602264,-0.607499480247498,-0.0946763977408409,0.778739035129547,-0.620162665843964,-0.00653277756646276,0.794293105602264,-0.607499480247498,-0.119516022503376,0.781036674976349,-0.612941682338715,-0.149265184998512,0.880595862865448,-0.449745178222656,-0.0434898845851421,0.83267867565155,-0.552046000957489,-0.117022641003132,0.820951044559479,-0.558878302574158,-0.149265184998512,0.880595862865448,-0.449745178222656,-0.132436722517014,0.867144882678986,-0.48012512922287, +-0.111125089228153,0.902559041976929,-0.415978699922562,0.0210005305707455,0.992427408695221,-0.121023811399937,0.0834118649363518,0.993931472301483,-0.0717121139168739,-0.0810983628034592,0.990403294563293,-0.1119120195508,0.0712671205401421,0.975455462932587,-0.208344593644142,-0.117358103394508,0.955365478992462,-0.271115899085999,-0.00539142126217484,0.961372315883636,-0.275198251008987,0.0712671205401421,0.975455462932587,-0.208344593644142,0.184952810406685,0.977757632732391,-0.0989058762788773,-0.00911856256425381,0.982267677783966,-0.18726173043251,-0.00911856256425381,0.982267677783966,-0.18726173043251,0.184952810406685,0.977757632732391,-0.0989058762788773,0.0210005305707455,0.992427408695221,-0.121023811399937,-0.064167320728302,0.949906945228577,-0.305874556303024,0.0347393676638603,0.951779782772064,-0.304808676242828,-0.00539142126217484,0.961372315883636,-0.275198251008987,-0.064167320728302,0.949906945228577,-0.305874556303024,-0.017497630789876,0.923818290233612,-0.38243094086647,0.0347393676638603,0.951779782772064,-0.304808676242828,-0.0269547328352928,0.876558125019073,-0.480540454387665,-0.017497630789876,0.923818290233612,-0.38243094086647,-0.111125089228153,0.902559041976929,-0.415978699922562,-0.0424337424337864,0.997864782810211,-0.0496509373188019,-0.0810983628034592,0.990403294563293,-0.1119120195508,0.0834118649363518,0.993931472301483,-0.0717121139168739,-0.153395161032677,0.988116800785065,-0.00975125376135111,-0.0424337424337864,0.997864782810211,-0.0496509373188019,-0.00659076496958733,0.999717473983765,0.0228350386023521,-0.170955553650856,0.982899785041809,0.0684256628155708,-0.280118405818939,0.952597856521606,0.118705026805401,-0.251150369644165,0.967635095119476,0.0246127340942621,-0.290088295936584,0.949791491031647,0.117238312959671,-0.271867752075195,0.960681676864624,0.0563782677054405,-0.280118405818939,0.952597856521606,0.118705026805401,-0.153395161032677,0.988116800785065,-0.00975125376135111,-0.00659076496958733,0.999717473983765,0.0228350386023521,-0.170955553650856,0.982899785041809,0.0684256628155708, +-0.290088295936584,0.949791491031647,0.117238312959671,-0.266374379396439,0.953671336174011,0.13984152674675,-0.266898691654205,0.96091490983963,0.0735352709889412,0.144079640507698,0.971826672554016,-0.18653130531311,0.107335187494755,0.968000292778015,-0.226835891604424,0.0877075418829918,0.983774781227112,-0.15650637447834,0.119613483548164,0.98733776807785,-0.104195214807987,0.144079640507698,0.971826672554016,-0.18653130531311,0.0877075418829918,0.983774781227112,-0.15650637447834,0.119613483548164,0.98733776807785,-0.104195214807987,0.0321122482419014,0.993133068084717,-0.112496070563793,0.046315424144268,0.997989594936371,-0.0432620868086815,0.13199020922184,0.933481276035309,-0.333453357219696,0.0496197566390038,0.9219611287117,-0.38409036397934,0.0543609149754047,0.957504212856293,-0.28324943780899,0.13199020922184,0.933481276035309,-0.333453357219696,0.107335187494755,0.968000292778015,-0.226835891604424,0.177779257297516,0.948339581489563,-0.262766867876053,-0.0159701276570559,0.90277773141861,-0.429810732603073,0.0496197566390038,0.9219611287117,-0.38409036397934,-0.00043316840310581,0.884249269962311,-0.467014878988266,-0.00043316840310581,0.884249269962311,-0.467014878988266,-0.0482116974890232,0.869764447212219,-0.491106241941452,-0.0159701276570559,0.90277773141861,-0.429810732603073,0.0382559970021248,0.853423535823822,-0.519812047481537,0.00369756785221398,0.882622420787811,-0.470068037509918,-0.0482116974890232,0.869764447212219,-0.491106241941452,0.0920378193259239,0.869917273521423,-0.484533667564392,0.00369756785221398,0.882622420787811,-0.470068037509918,0.0382559970021248,0.853423535823822,-0.519812047481537,0.00356977712363005,0.882367253303528,-0.470547765493393,0.0307803936302662,0.823695182800293,-0.566196739673615,-0.12941911816597,0.835754752159119,-0.53363311290741,0.127012461423874,0.830683410167694,-0.542063355445862,0.0920378193259239,0.869917273521423,-0.484533667564392,0.115372121334076,0.818596601486206,-0.562662184238434,0.127012461423874,0.830683410167694,-0.542063355445862,0.0307803936302662,0.823695182800293,-0.566196739673615, +0.00356977712363005,0.882367253303528,-0.470547765493393,-0.263906270265579,0.807790577411652,-0.527093589305878,-0.12941911816597,0.835754752159119,-0.53363311290741,-0.221569359302521,0.756009757518768,-0.615918874740601,-0.343323975801468,0.702893137931824,-0.622952401638031,-0.33264833688736,0.761509716510773,-0.556280374526978,-0.263906270265579,0.807790577411652,-0.527093589305878,-0.280319601297379,0.755224645137787,-0.59250020980835,-0.33264833688736,0.761509716510773,-0.556280374526978,-0.355745106935501,0.679097652435303,-0.642083883285522,-0.249370887875557,0.953204035758972,0.170926600694656,-0.243057608604431,0.963566780090332,0.111632809042931,-0.266374379396439,0.953671336174011,0.13984152674675,-0.195343255996704,0.964077830314636,0.179985553026199,-0.137320980429649,0.983982026576996,0.113675780594349,-0.195842862129211,0.973039090633392,0.121821120381355,-0.195842862129211,0.973039090633392,0.121821120381355,-0.249370887875557,0.953204035758972,0.170926600694656,-0.195343255996704,0.964077830314636,0.179985553026199,-0.125587821006775,0.988813459873199,0.0804708003997803,-0.0896465703845024,0.984691679477692,0.149484813213348,-0.0970932021737099,0.989281237125397,0.109066292643547,-0.11255782097578,0.971880197525024,0.206832140684128,-0.0896465703845024,0.984691679477692,0.149484813213348,-0.137320980429649,0.983982026576996,0.113675780594349,-0.0970932021737099,0.989281237125397,0.109066292643547,-0.0660331323742867,0.990108191967011,0.123795293271542,-0.0850448831915855,0.995368182659149,0.0448277816176414,-0.0341686755418777,0.997644901275635,0.0594731457531452,-0.0850448831915855,0.995368182659149,0.0448277816176414,-0.0660331323742867,0.990108191967011,0.123795293271542,-0.0341686755418777,0.997644901275635,0.0594731457531452,0.0133589617908001,0.99979704618454,0.015074647963047,-0.0547516904771328,0.998402118682861,-0.0139696663245559,0.123043052852154,0.992372334003448,0.00758234784007072,0.046315424144268,0.997989594936371,-0.0432620868086815,0.0133589617908001,0.99979704618454,0.015074647963047, +-0.0946763977408409,0.778739035129547,-0.620162665843964,-0.280319601297379,0.755224645137787,-0.59250020980835,-0.274781048297882,0.761689484119415,-0.586791574954987,0.0600184239447117,0.756607711315155,-0.651108622550964,-0.0207006055861712,0.803703725337982,-0.594669342041016,-0.0434898845851421,0.83267867565155,-0.552046000957489,-0.00653277756646276,0.794293105602264,-0.607499480247498,0.0254220962524414,0.766737520694733,-0.641457080841064,0.0600184239447117,0.756607711315155,-0.651108622550964,-0.0946763977408409,0.778739035129547,-0.620162665843964,0.0254220962524414,0.766737520694733,-0.641457080841064,-0.00653277756646276,0.794293105602264,-0.607499480247498,-0.0434898845851421,0.83267867565155,-0.552046000957489,-0.0207006055861712,0.803703725337982,-0.594669342041016,-0.117022641003132,0.820951044559479,-0.558878302574158,-0.117022641003132,0.820951044559479,-0.558878302574158,-0.132436722517014,0.867144882678986,-0.48012512922287,-0.149265184998512,0.880595862865448,-0.449745178222656,-0.111125089228153,0.902559041976929,-0.415978699922562,-0.132436722517014,0.867144882678986,-0.48012512922287,-0.0269547328352928,0.876558125019073,-0.480540454387665,0.0210005305707455,0.992427408695221,-0.121023811399937,0.184952810406685,0.977757632732391,-0.0989058762788773,0.0834118649363518,0.993931472301483,-0.0717121139168739,0.167208448052406,0.960226893424988,-0.223619163036346,0.0712671205401421,0.975455462932587,-0.208344593644142,-0.00539142126217484,0.961372315883636,-0.275198251008987,0.184952810406685,0.977757632732391,-0.0989058762788773,0.0712671205401421,0.975455462932587,-0.208344593644142,0.296699494123459,0.947180986404419,-0.121727153658867,0.0347393676638603,0.951779782772064,-0.304808676242828,0.137053892016411,0.956227958202362,-0.258542448282242,-0.00539142126217484,0.961372315883636,-0.275198251008987,-0.017497630789876,0.923818290233612,-0.38243094086647,0.0644978582859039,0.906608581542969,-0.417014122009277,0.0347393676638603,0.951779782772064,-0.304808676242828,-0.00306800194084644,0.881278514862061,-0.472587168216705, +-0.017497630789876,0.923818290233612,-0.38243094086647,-0.0269547328352928,0.876558125019073,-0.480540454387665,-0.0424337424337864,0.997864782810211,-0.0496509373188019,0.0834118649363518,0.993931472301483,-0.0717121139168739,0.0986942499876022,0.994581282138824,-0.0326720662415028,0.0986942499876022,0.994581282138824,-0.0326720662415028,-0.00659076496958733,0.999717473983765,0.0228350386023521,-0.0424337424337864,0.997864782810211,-0.0496509373188019,-0.170955553650856,0.982899785041809,0.0684256628155708,-0.242908373475075,0.956395626068115,0.162181511521339,-0.280118405818939,0.952597856521606,0.118705026805401,-0.290088295936584,0.949791491031647,0.117238312959671,-0.280118405818939,0.952597856521606,0.118705026805401,-0.330288171768188,0.922520399093628,0.199664250016212,-0.0840083807706833,0.990949809551239,0.104694418609142,-0.170955553650856,0.982899785041809,0.0684256628155708,-0.00659076496958733,0.999717473983765,0.0228350386023521,-0.29710841178894,0.943103730678558,0.149270161986351,-0.266374379396439,0.953671336174011,0.13984152674675,-0.290088295936584,0.949791491031647,0.117238312959671,0.144079640507698,0.971826672554016,-0.18653130531311,0.177779257297516,0.948339581489563,-0.262766867876053,0.107335187494755,0.968000292778015,-0.226835891604424,0.119613483548164,0.98733776807785,-0.104195214807987,0.215119779109955,0.963146150112152,-0.161470860242844,0.144079640507698,0.971826672554016,-0.18653130531311,0.12611024081707,0.990796089172363,-0.049185648560524,0.119613483548164,0.98733776807785,-0.104195214807987,0.046315424144268,0.997989594936371,-0.0432620868086815,0.149291604757309,0.894127786159515,-0.422193557024002,0.0496197566390038,0.9219611287117,-0.38409036397934,0.13199020922184,0.933481276035309,-0.333453357219696,0.177779257297516,0.948339581489563,-0.262766867876053,0.220898434519768,0.915446698665619,-0.336394369602203,0.13199020922184,0.933481276035309,-0.333453357219696,0.0496197566390038,0.9219611287117,-0.38409036397934,0.0699455440044403,0.896623492240906,-0.437234193086624,-0.00043316840310581,0.884249269962311,-0.467014878988266, +-0.0482116974890232,0.869764447212219,-0.491106241941452,-0.00043316840310581,0.884249269962311,-0.467014878988266,-0.0845524072647095,0.844635248184204,-0.528622806072235,-0.0482116974890232,0.869764447212219,-0.491106241941452,-0.0350079499185085,0.835137605667114,-0.548925757408142,0.0382559970021248,0.853423535823822,-0.519812047481537,0.0382559970021248,0.853423535823822,-0.519812047481537,0.115372121334076,0.818596601486206,-0.562662184238434,0.0920378193259239,0.869917273521423,-0.484533667564392,0.0307803936302662,0.823695182800293,-0.566196739673615,-0.0292553957551718,0.756955146789551,-0.652811527252197,-0.12941911816597,0.835754752159119,-0.53363311290741,0.160110101103783,0.740427732467651,-0.652787387371063,0.127012461423874,0.830683410167694,-0.542063355445862,0.115372121334076,0.818596601486206,-0.562662184238434,0.127012461423874,0.830683410167694,-0.542063355445862,0.160110101103783,0.740427732467651,-0.652787387371063,0.0307803936302662,0.823695182800293,-0.566196739673615,-0.0292553957551718,0.756955146789551,-0.652811527252197,-0.221569359302521,0.756009757518768,-0.615918874740601,-0.12941911816597,0.835754752159119,-0.53363311290741,-0.343323975801468,0.702893137931824,-0.622952401638031,-0.263906270265579,0.807790577411652,-0.527093589305878,-0.221569359302521,0.756009757518768,-0.615918874740601,-0.343323975801468,0.702893137931824,-0.622952401638031,-0.355745106935501,0.679097652435303,-0.642083883285522,-0.33264833688736,0.761509716510773,-0.556280374526978,-0.274781048297882,0.761689484119415,-0.586791574954987,-0.280319601297379,0.755224645137787,-0.59250020980835,-0.355745106935501,0.679097652435303,-0.642083883285522,-0.249370887875557,0.953204035758972,0.170926600694656,-0.266374379396439,0.953671336174011,0.13984152674675,-0.290453493595123,0.929777860641479,0.226162686944008,-0.137320980429649,0.983982026576996,0.113675780594349,-0.195343255996704,0.964077830314636,0.179985553026199,-0.11255782097578,0.971880197525024,0.206832140684128,-0.249370887875557,0.953204035758972,0.170926600694656, +-0.252875506877899,0.934659540653229,0.249930933117867,-0.195343255996704,0.964077830314636,0.179985553026199,-0.0896465703845024,0.984691679477692,0.149484813213348,-0.0721326321363449,0.981948554515839,0.174853831529617,-0.0970932021737099,0.989281237125397,0.109066292643547,-0.11255782097578,0.971880197525024,0.206832140684128,-0.0713427439332008,0.971047699451447,0.227983489632607,-0.0896465703845024,0.984691679477692,0.149484813213348,-0.0970932021737099,0.989281237125397,0.109066292643547,-0.0749202817678452,0.983128786087036,0.16686737537384,-0.0660331323742867,0.990108191967011,0.123795293271542,-0.0341686755418777,0.997644901275635,0.0594731457531452,-0.0660331323742867,0.990108191967011,0.123795293271542,0.0285863671451807,0.992024302482605,0.122761845588684,-0.0341686755418777,0.997644901275635,0.0594731457531452,0.0437313355505466,0.997584283351898,0.0539732798933983,0.0133589617908001,0.99979704618454,0.015074647963047,0.12611024081707,0.990796089172363,-0.049185648560524,0.046315424144268,0.997989594936371,-0.0432620868086815,0.123043052852154,0.992372334003448,0.00758234784007072,0.123043052852154,0.992372334003448,0.00758234784007072,0.0133589617908001,0.99979704618454,0.015074647963047,0.0437313355505466,0.997584283351898,0.0539732798933983,-0.0946763977408409,0.778739035129547,-0.620162665843964,-0.274781048297882,0.761689484119415,-0.586791574954987,-0.213837474584579,0.837118804454803,-0.503493309020996,0.0600184239447117,0.756607711315155,-0.651108622550964,-0.0136970579624176,0.766302108764648,-0.642334222793579,-0.0207006055861712,0.803703725337982,-0.594669342041016,0.0254220962524414,0.766737520694733,-0.641457080841064,-0.000924502848647535,0.733806788921356,-0.679357469081879,0.0600184239447117,0.756607711315155,-0.651108622550964,-0.112156376242638,0.819070816040039,-0.562622368335724,0.0254220962524414,0.766737520694733,-0.641457080841064,-0.0946763977408409,0.778739035129547,-0.620162665843964,-0.0136970579624176,0.766302108764648,-0.642334222793579,-0.117022641003132,0.820951044559479,-0.558878302574158, +-0.0207006055861712,0.803703725337982,-0.594669342041016,-0.117022641003132,0.820951044559479,-0.558878302574158,-0.0837608724832535,0.837391674518585,-0.540147304534912,-0.132436722517014,0.867144882678986,-0.48012512922287,-0.0837608724832535,0.837391674518585,-0.540147304534912,-0.0269547328352928,0.876558125019073,-0.480540454387665,-0.132436722517014,0.867144882678986,-0.48012512922287,0.184952810406685,0.977757632732391,-0.0989058762788773,0.26318347454071,0.964514076709747,-0.0211402084678411,0.0834118649363518,0.993931472301483,-0.0717121139168739,0.0712671205401421,0.975455462932587,-0.208344593644142,0.167208448052406,0.960226893424988,-0.223619163036346,0.296699494123459,0.947180986404419,-0.121727153658867,0.167208448052406,0.960226893424988,-0.223619163036346,-0.00539142126217484,0.961372315883636,-0.275198251008987,0.137053892016411,0.956227958202362,-0.258542448282242,0.323386758565903,0.944227337837219,-0.0620942525565624,0.184952810406685,0.977757632732391,-0.0989058762788773,0.296699494123459,0.947180986404419,-0.121727153658867,0.0347393676638603,0.951779782772064,-0.304808676242828,0.137805849313736,0.950161159038544,-0.279648303985596,0.137053892016411,0.956227958202362,-0.258542448282242,0.0644978582859039,0.906608581542969,-0.417014122009277,-0.017497630789876,0.923818290233612,-0.38243094086647,-0.00306800194084644,0.881278514862061,-0.472587168216705,0.0347393676638603,0.951779782772064,-0.304808676242828,0.0644978582859039,0.906608581542969,-0.417014122009277,0.151636332273483,0.919690728187561,-0.36218136548996,-0.00306800194084644,0.881278514862061,-0.472587168216705,-0.0269547328352928,0.876558125019073,-0.480540454387665,-0.0153844077140093,0.832263290882111,-0.554166913032532,0.0834118649363518,0.993931472301483,-0.0717121139168739,0.26318347454071,0.964514076709747,-0.0211402084678411,0.0986942499876022,0.994581282138824,-0.0326720662415028,0.168862327933311,0.98376077413559,0.0608289316296577,-0.00659076496958733,0.999717473983765,0.0228350386023521,0.0986942499876022,0.994581282138824,-0.0326720662415028, +-0.170955553650856,0.982899785041809,0.0684256628155708,-0.0840083807706833,0.990949809551239,0.104694418609142,-0.242908373475075,0.956395626068115,0.162181511521339,-0.330288171768188,0.922520399093628,0.199664250016212,-0.280118405818939,0.952597856521606,0.118705026805401,-0.242908373475075,0.956395626068115,0.162181511521339,-0.330288171768188,0.922520399093628,0.199664250016212,-0.29710841178894,0.943103730678558,0.149270161986351,-0.290088295936584,0.949791491031647,0.117238312959671,-0.0840083807706833,0.990949809551239,0.104694418609142,-0.00659076496958733,0.999717473983765,0.0228350386023521,0.0370265580713749,0.994041860103607,0.1025170981884,-0.300660192966461,0.932209968566895,0.201464310288429,-0.266374379396439,0.953671336174011,0.13984152674675,-0.29710841178894,0.943103730678558,0.149270161986351,0.177779257297516,0.948339581489563,-0.262766867876053,0.144079640507698,0.971826672554016,-0.18653130531311,0.215119779109955,0.963146150112152,-0.161470860242844,0.215119779109955,0.963146150112152,-0.161470860242844,0.119613483548164,0.98733776807785,-0.104195214807987,0.199099540710449,0.976701080799103,-0.0800878256559372,0.199099540710449,0.976701080799103,-0.0800878256559372,0.119613483548164,0.98733776807785,-0.104195214807987,0.12611024081707,0.990796089172363,-0.049185648560524,0.0496197566390038,0.9219611287117,-0.38409036397934,0.149291604757309,0.894127786159515,-0.422193557024002,0.0699455440044403,0.896623492240906,-0.437234193086624,0.149291604757309,0.894127786159515,-0.422193557024002,0.13199020922184,0.933481276035309,-0.333453357219696,0.226074725389481,0.885645866394043,-0.405612617731094,0.177779257297516,0.948339581489563,-0.262766867876053,0.278142988681793,0.927056491374969,-0.251401215791702,0.220898434519768,0.915446698665619,-0.336394369602203,0.13199020922184,0.933481276035309,-0.333453357219696,0.220898434519768,0.915446698665619,-0.336394369602203,0.226074725389481,0.885645866394043,-0.405612617731094,0.0699455440044403,0.896623492240906,-0.437234193086624,0.134042114019394,0.864117562770844,-0.485111743211746, +-0.00043316840310581,0.884249269962311,-0.467014878988266,-0.0845524072647095,0.844635248184204,-0.528622806072235,-0.00043316840310581,0.884249269962311,-0.467014878988266,0.0502150505781174,0.827468812465668,-0.559261679649353,-0.0482116974890232,0.869764447212219,-0.491106241941452,-0.0845524072647095,0.844635248184204,-0.528622806072235,-0.0350079499185085,0.835137605667114,-0.548925757408142,-0.0350079499185085,0.835137605667114,-0.548925757408142,0.115372121334076,0.818596601486206,-0.562662184238434,0.0382559970021248,0.853423535823822,-0.519812047481537,0.160110101103783,0.740427732467651,-0.652787387371063,-0.0292553957551718,0.756955146789551,-0.652811527252197,0.0307803936302662,0.823695182800293,-0.566196739673615,0.160110101103783,0.740427732467651,-0.652787387371063,0.115372121334076,0.818596601486206,-0.562662184238434,0.0782271102070808,0.778025925159454,-0.623342573642731,-0.203495234251022,0.688344657421112,-0.696255087852478,-0.221569359302521,0.756009757518768,-0.615918874740601,-0.0292553957551718,0.756955146789551,-0.652811527252197,-0.221569359302521,0.756009757518768,-0.615918874740601,-0.203495234251022,0.688344657421112,-0.696255087852478,-0.343323975801468,0.702893137931824,-0.622952401638031,-0.343323975801468,0.702893137931824,-0.622952401638031,-0.410089015960693,0.668162047863007,-0.620794892311096,-0.355745106935501,0.679097652435303,-0.642083883285522,-0.353400498628616,0.696423470973969,-0.624581634998322,-0.274781048297882,0.761689484119415,-0.586791574954987,-0.355745106935501,0.679097652435303,-0.642083883285522,-0.290453493595123,0.929777860641479,0.226162686944008,-0.266374379396439,0.953671336174011,0.13984152674675,-0.300660192966461,0.932209968566895,0.201464310288429,-0.290453493595123,0.929777860641479,0.226162686944008,-0.252875506877899,0.934659540653229,0.249930933117867,-0.249370887875557,0.953204035758972,0.170926600694656,-0.11255782097578,0.971880197525024,0.206832140684128,-0.195343255996704,0.964077830314636,0.179985553026199,-0.176601931452751,0.94284725189209,0.282578557729721, +-0.252875506877899,0.934659540653229,0.249930933117867,-0.176601931452751,0.94284725189209,0.282578557729721,-0.195343255996704,0.964077830314636,0.179985553026199,-0.0896465703845024,0.984691679477692,0.149484813213348,-0.0713427439332008,0.971047699451447,0.227983489632607,-0.0721326321363449,0.981948554515839,0.174853831529617,-0.0721326321363449,0.981948554515839,0.174853831529617,-0.0749202817678452,0.983128786087036,0.16686737537384,-0.0970932021737099,0.989281237125397,0.109066292643547,-0.11255782097578,0.971880197525024,0.206832140684128,-0.0671809613704681,0.958911418914795,0.275636732578278,-0.0713427439332008,0.971047699451447,0.227983489632607,-0.0481228344142437,0.98056435585022,0.190204173326492,-0.0660331323742867,0.990108191967011,0.123795293271542,-0.0749202817678452,0.983128786087036,0.16686737537384,-0.0660331323742867,0.990108191967011,0.123795293271542,-0.0481228344142437,0.98056435585022,0.190204173326492,0.0285863671451807,0.992024302482605,0.122761845588684,0.0437313355505466,0.997584283351898,0.0539732798933983,-0.0341686755418777,0.997644901275635,0.0594731457531452,0.0285863671451807,0.992024302482605,0.122761845588684,0.123043052852154,0.992372334003448,0.00758234784007072,0.176407396793365,0.983722865581512,-0.0342005789279938,0.12611024081707,0.990796089172363,-0.049185648560524,0.123043052852154,0.992372334003448,0.00758234784007072,0.0437313355505466,0.997584283351898,0.0539732798933983,0.138962477445602,0.988158524036407,0.0650545135140419,-0.274781048297882,0.761689484119415,-0.586791574954987,-0.279940068721771,0.821062564849854,-0.497483372688293,-0.213837474584579,0.837118804454803,-0.503493309020996,-0.112156376242638,0.819070816040039,-0.562622368335724,-0.0946763977408409,0.778739035129547,-0.620162665843964,-0.213837474584579,0.837118804454803,-0.503493309020996,0.0600184239447117,0.756607711315155,-0.651108622550964,0.0319755971431732,0.700545907020569,-0.71289050579071,-0.0136970579624176,0.766302108764648,-0.642334222793579,0.0254220962524414,0.766737520694733,-0.641457080841064, +-0.112156376242638,0.819070816040039,-0.562622368335724,-0.000924502848647535,0.733806788921356,-0.679357469081879,0.0600184239447117,0.756607711315155,-0.651108622550964,-0.000924502848647535,0.733806788921356,-0.679357469081879,0.0319755971431732,0.700545907020569,-0.71289050579071,-0.127886220812798,0.813219428062439,-0.567731559276581,-0.0837608724832535,0.837391674518585,-0.540147304534912,-0.117022641003132,0.820951044559479,-0.558878302574158,-0.0153844077140093,0.832263290882111,-0.554166913032532,-0.0269547328352928,0.876558125019073,-0.480540454387665,-0.0837608724832535,0.837391674518585,-0.540147304534912,0.184952810406685,0.977757632732391,-0.0989058762788773,0.323386758565903,0.944227337837219,-0.0620942525565624,0.26318347454071,0.964514076709747,-0.0211402084678411,0.318958908319473,0.926672279834747,-0.198855563998222,0.296699494123459,0.947180986404419,-0.121727153658867,0.167208448052406,0.960226893424988,-0.223619163036346,0.167208448052406,0.960226893424988,-0.223619163036346,0.137053892016411,0.956227958202362,-0.258542448282242,0.318958908319473,0.926672279834747,-0.198855563998222,0.323386758565903,0.944227337837219,-0.0620942525565624,0.296699494123459,0.947180986404419,-0.121727153658867,0.347268253564835,0.936814665794373,-0.0422249808907509,0.0347393676638603,0.951779782772064,-0.304808676242828,0.151636332273483,0.919690728187561,-0.36218136548996,0.137805849313736,0.950161159038544,-0.279648303985596,0.137805849313736,0.950161159038544,-0.279648303985596,0.235537827014923,0.93599534034729,-0.261600017547607,0.137053892016411,0.956227958202362,-0.258542448282242,0.131228625774384,0.845416486263275,-0.517735362052917,0.0644978582859039,0.906608581542969,-0.417014122009277,-0.00306800194084644,0.881278514862061,-0.472587168216705,0.239945352077484,0.859695494174957,-0.450943142175674,0.151636332273483,0.919690728187561,-0.36218136548996,0.0644978582859039,0.906608581542969,-0.417014122009277,0.0466283559799194,0.824417173862457,-0.564058482646942,-0.00306800194084644,0.881278514862061,-0.472587168216705, +-0.0153844077140093,0.832263290882111,-0.554166913032532,0.26318347454071,0.964514076709747,-0.0211402084678411,0.168862327933311,0.98376077413559,0.0608289316296577,0.0986942499876022,0.994581282138824,-0.0326720662415028,0.0370265580713749,0.994041860103607,0.1025170981884,-0.00659076496958733,0.999717473983765,0.0228350386023521,0.168862327933311,0.98376077413559,0.0608289316296577,-0.0840083807706833,0.990949809551239,0.104694418609142,-0.167522132396698,0.965898990631104,0.197421684861183,-0.242908373475075,0.956395626068115,0.162181511521339,-0.330288171768188,0.922520399093628,0.199664250016212,-0.242908373475075,0.956395626068115,0.162181511521339,-0.291244626045227,0.927468776702881,0.234474182128906,-0.300660192966461,0.932209968566895,0.201464310288429,-0.29710841178894,0.943103730678558,0.149270161986351,-0.330288171768188,0.922520399093628,0.199664250016212,-0.0151908276602626,0.98775315284729,0.155283078551292,-0.0840083807706833,0.990949809551239,0.104694418609142,0.0370265580713749,0.994041860103607,0.1025170981884,0.177779257297516,0.948339581489563,-0.262766867876053,0.215119779109955,0.963146150112152,-0.161470860242844,0.278142988681793,0.927056491374969,-0.251401215791702,0.199099540710449,0.976701080799103,-0.0800878256559372,0.288119047880173,0.953702867031097,-0.0862444490194321,0.215119779109955,0.963146150112152,-0.161470860242844,0.199099540710449,0.976701080799103,-0.0800878256559372,0.12611024081707,0.990796089172363,-0.049185648560524,0.176407396793365,0.983722865581512,-0.0342005789279938,0.134042114019394,0.864117562770844,-0.485111743211746,0.0699455440044403,0.896623492240906,-0.437234193086624,0.149291604757309,0.894127786159515,-0.422193557024002,0.226074725389481,0.885645866394043,-0.405612617731094,0.257392406463623,0.839769780635834,-0.478054136037827,0.149291604757309,0.894127786159515,-0.422193557024002,0.278142988681793,0.927056491374969,-0.251401215791702,0.308392852544785,0.882821619510651,-0.354287713766098,0.220898434519768,0.915446698665619,-0.336394369602203,0.220898434519768,0.915446698665619,-0.336394369602203, +0.308392852544785,0.882821619510651,-0.354287713766098,0.226074725389481,0.885645866394043,-0.405612617731094,0.0502150505781174,0.827468812465668,-0.559261679649353,-0.00043316840310581,0.884249269962311,-0.467014878988266,0.134042114019394,0.864117562770844,-0.485111743211746,0.0502150505781174,0.827468812465668,-0.559261679649353,-0.0782510638237,0.80816912651062,-0.583728849887848,-0.0845524072647095,0.844635248184204,-0.528622806072235,-0.0845524072647095,0.844635248184204,-0.528622806072235,-0.0795171782374382,0.790266036987305,-0.60758250951767,-0.0350079499185085,0.835137605667114,-0.548925757408142,-0.0350079499185085,0.835137605667114,-0.548925757408142,0.0782271102070808,0.778025925159454,-0.623342573642731,0.115372121334076,0.818596601486206,-0.562662184238434,0.160110101103783,0.740427732467651,-0.652787387371063,0.128073543310165,0.663010954856873,-0.737572610378265,-0.0292553957551718,0.756955146789551,-0.652811527252197,0.0782271102070808,0.778025925159454,-0.623342573642731,0.134032428264618,0.722014784812927,-0.678770780563354,0.160110101103783,0.740427732467651,-0.652787387371063,-0.0266411677002907,0.658742010593414,-0.751896977424622,-0.203495234251022,0.688344657421112,-0.696255087852478,-0.0292553957551718,0.756955146789551,-0.652811527252197,-0.343323975801468,0.702893137931824,-0.622952401638031,-0.203495234251022,0.688344657421112,-0.696255087852478,-0.270558536052704,0.698044538497925,-0.6629718542099,-0.343323975801468,0.702893137931824,-0.622952401638031,-0.356198102235794,0.736124813556671,-0.575537264347076,-0.410089015960693,0.668162047863007,-0.620794892311096,-0.355745106935501,0.679097652435303,-0.642083883285522,-0.410089015960693,0.668162047863007,-0.620794892311096,-0.353400498628616,0.696423470973969,-0.624581634998322,-0.274781048297882,0.761689484119415,-0.586791574954987,-0.353400498628616,0.696423470973969,-0.624581634998322,-0.356198102235794,0.736124813556671,-0.575537264347076,-0.290453493595123,0.929777860641479,0.226162686944008,-0.300660192966461,0.932209968566895,0.201464310288429, +-0.342994213104248,0.902994632720947,0.258757263422012,-0.290453493595123,0.929777860641479,0.226162686944008,-0.315728932619095,0.900184094905853,0.299972832202911,-0.252875506877899,0.934659540653229,0.249930933117867,-0.09038395434618,0.943940997123718,0.317499667406082,-0.11255782097578,0.971880197525024,0.206832140684128,-0.176601931452751,0.94284725189209,0.282578557729721,-0.252875506877899,0.934659540653229,0.249930933117867,-0.210502654314041,0.911407768726349,0.353587567806244,-0.176601931452751,0.94284725189209,0.282578557729721,-0.0525817424058914,0.963663935661316,0.261890947818756,-0.0721326321363449,0.981948554515839,0.174853831529617,-0.0713427439332008,0.971047699451447,0.227983489632607,-0.0721326321363449,0.981948554515839,0.174853831529617,-0.0525817424058914,0.963663935661316,0.261890947818756,-0.0749202817678452,0.983128786087036,0.16686737537384,-0.09038395434618,0.943940997123718,0.317499667406082,-0.0671809613704681,0.958911418914795,0.275636732578278,-0.11255782097578,0.971880197525024,0.206832140684128,-0.0713427439332008,0.971047699451447,0.227983489632607,-0.0671809613704681,0.958911418914795,0.275636732578278,-0.0500400178134441,0.938453078269959,0.341762721538544,-0.0481228344142437,0.98056435585022,0.190204173326492,-0.0749202817678452,0.983128786087036,0.16686737537384,-0.0525817424058914,0.963663935661316,0.261890947818756,0.0285863671451807,0.992024302482605,0.122761845588684,-0.0481228344142437,0.98056435585022,0.190204173326492,0.0252698883414268,0.975776672363281,0.217304512858391,0.0285863671451807,0.992024302482605,0.122761845588684,0.138962477445602,0.988158524036407,0.0650545135140419,0.0437313355505466,0.997584283351898,0.0539732798933983,0.237751230597496,0.971146762371063,-0.0186604037880898,0.176407396793365,0.983722865581512,-0.0342005789279938,0.123043052852154,0.992372334003448,0.00758234784007072,0.138962477445602,0.988158524036407,0.0650545135140419,0.204768016934395,0.978527724742889,0.0235263854265213,0.123043052852154,0.992372334003448,0.00758234784007072,-0.274781048297882,0.761689484119415,-0.586791574954987, +-0.356198102235794,0.736124813556671,-0.575537264347076,-0.279940068721771,0.821062564849854,-0.497483372688293,-0.279940068721771,0.821062564849854,-0.497483372688293,-0.205419987440109,0.820598483085632,-0.533311069011688,-0.213837474584579,0.837118804454803,-0.503493309020996,-0.112156376242638,0.819070816040039,-0.562622368335724,-0.213837474584579,0.837118804454803,-0.503493309020996,-0.205419987440109,0.820598483085632,-0.533311069011688,-0.112156376242638,0.819070816040039,-0.562622368335724,-0.17828768491745,0.78554105758667,-0.592569470405579,-0.000924502848647535,0.733806788921356,-0.679357469081879,-0.0457579381763935,0.81168007850647,-0.582307040691376,-0.0837608724832535,0.837391674518585,-0.540147304534912,-0.127886220812798,0.813219428062439,-0.567731559276581,-0.0837608724832535,0.837391674518585,-0.540147304534912,-0.0457579381763935,0.81168007850647,-0.582307040691376,-0.0153844077140093,0.832263290882111,-0.554166913032532,0.314638316631317,0.949209272861481,0.00209437729790807,0.26318347454071,0.964514076709747,-0.0211402084678411,0.323386758565903,0.944227337837219,-0.0620942525565624,0.296699494123459,0.947180986404419,-0.121727153658867,0.318958908319473,0.926672279834747,-0.198855563998222,0.348425060510635,0.929143011569977,-0.123665452003479,0.235537827014923,0.93599534034729,-0.261600017547607,0.318958908319473,0.926672279834747,-0.198855563998222,0.137053892016411,0.956227958202362,-0.258542448282242,0.348425060510635,0.929143011569977,-0.123665452003479,0.347268253564835,0.936814665794373,-0.0422249808907509,0.296699494123459,0.947180986404419,-0.121727153658867,0.323386758565903,0.944227337837219,-0.0620942525565624,0.347268253564835,0.936814665794373,-0.0422249808907509,0.314638316631317,0.949209272861481,0.00209437729790807,0.137805849313736,0.950161159038544,-0.279648303985596,0.151636332273483,0.919690728187561,-0.36218136548996,0.226556777954102,0.922300577163696,-0.313103020191193,0.226556777954102,0.922300577163696,-0.313103020191193,0.235537827014923,0.93599534034729,-0.261600017547607, +0.137805849313736,0.950161159038544,-0.279648303985596,0.239945352077484,0.859695494174957,-0.450943142175674,0.0644978582859039,0.906608581542969,-0.417014122009277,0.131228625774384,0.845416486263275,-0.517735362052917,0.131228625774384,0.845416486263275,-0.517735362052917,-0.00306800194084644,0.881278514862061,-0.472587168216705,0.0466283559799194,0.824417173862457,-0.564058482646942,0.309975862503052,0.879335463047028,-0.361502408981323,0.151636332273483,0.919690728187561,-0.36218136548996,0.239945352077484,0.859695494174957,-0.450943142175674,-0.0153844077140093,0.832263290882111,-0.554166913032532,0.0123489005491138,0.809582471847534,-0.586876213550568,0.0466283559799194,0.824417173862457,-0.564058482646942,-0.0151908276602626,0.98775315284729,0.155283078551292,-0.167522132396698,0.965898990631104,0.197421684861183,-0.0840083807706833,0.990949809551239,0.104694418609142,-0.167522132396698,0.965898990631104,0.197421684861183,-0.291244626045227,0.927468776702881,0.234474182128906,-0.242908373475075,0.956395626068115,0.162181511521339,-0.291244626045227,0.927468776702881,0.234474182128906,-0.331793904304504,0.902563631534576,0.274393022060394,-0.330288171768188,0.922520399093628,0.199664250016212,-0.300660192966461,0.932209968566895,0.201464310288429,-0.330288171768188,0.922520399093628,0.199664250016212,-0.342994213104248,0.902994632720947,0.258757263422012,0.215119779109955,0.963146150112152,-0.161470860242844,0.300427138805389,0.940833210945129,-0.156768247485161,0.278142988681793,0.927056491374969,-0.251401215791702,0.199099540710449,0.976701080799103,-0.0800878256559372,0.237751230597496,0.971146762371063,-0.0186604037880898,0.288119047880173,0.953702867031097,-0.0862444490194321,0.300427138805389,0.940833210945129,-0.156768247485161,0.215119779109955,0.963146150112152,-0.161470860242844,0.288119047880173,0.953702867031097,-0.0862444490194321,0.237751230597496,0.971146762371063,-0.0186604037880898,0.199099540710449,0.976701080799103,-0.0800878256559372,0.176407396793365,0.983722865581512,-0.0342005789279938, +0.134042114019394,0.864117562770844,-0.485111743211746,0.149291604757309,0.894127786159515,-0.422193557024002,0.257392406463623,0.839769780635834,-0.478054136037827,0.257392406463623,0.839769780635834,-0.478054136037827,0.226074725389481,0.885645866394043,-0.405612617731094,0.339637726545334,0.837596476078033,-0.427876532077789,0.278142988681793,0.927056491374969,-0.251401215791702,0.367713183164597,0.885865688323975,-0.282893627882004,0.308392852544785,0.882821619510651,-0.354287713766098,0.226074725389481,0.885645866394043,-0.405612617731094,0.308392852544785,0.882821619510651,-0.354287713766098,0.339637726545334,0.837596476078033,-0.427876532077789,0.0502150505781174,0.827468812465668,-0.559261679649353,0.134042114019394,0.864117562770844,-0.485111743211746,0.217152416706085,0.796583235263824,-0.564180612564087,-0.0782510638237,0.80816912651062,-0.583728849887848,0.0502150505781174,0.827468812465668,-0.559261679649353,0.00555835897102952,0.767600297927856,-0.640904605388641,-0.0795171782374382,0.790266036987305,-0.60758250951767,-0.0845524072647095,0.844635248184204,-0.528622806072235,-0.0782510638237,0.80816912651062,-0.583728849887848,-0.0350079499185085,0.835137605667114,-0.548925757408142,-0.0795171782374382,0.790266036987305,-0.60758250951767,0.0782271102070808,0.778025925159454,-0.623342573642731,0.160110101103783,0.740427732467651,-0.652787387371063,0.128688305616379,0.682460367679596,-0.719504714012146,0.128073543310165,0.663010954856873,-0.737572610378265,0.128073543310165,0.663010954856873,-0.737572610378265,-0.0266411677002907,0.658742010593414,-0.751896977424622,-0.0292553957551718,0.756955146789551,-0.652811527252197,0.0782271102070808,0.778025925159454,-0.623342573642731,0.0186901073902845,0.739478766918182,-0.672920167446136,0.134032428264618,0.722014784812927,-0.678770780563354,0.134032428264618,0.722014784812927,-0.678770780563354,0.128688305616379,0.682460367679596,-0.719504714012146,0.160110101103783,0.740427732467651,-0.652787387371063,-0.203495234251022,0.688344657421112,-0.696255087852478, +-0.0266411677002907,0.658742010593414,-0.751896977424622,-0.14023357629776,0.681312322616577,-0.71843433380127,-0.14023357629776,0.681312322616577,-0.71843433380127,-0.270558536052704,0.698044538497925,-0.6629718542099,-0.203495234251022,0.688344657421112,-0.696255087852478,-0.356198102235794,0.736124813556671,-0.575537264347076,-0.343323975801468,0.702893137931824,-0.622952401638031,-0.270558536052704,0.698044538497925,-0.6629718542099,-0.410089015960693,0.668162047863007,-0.620794892311096,-0.356198102235794,0.736124813556671,-0.575537264347076,-0.353400498628616,0.696423470973969,-0.624581634998322,-0.290453493595123,0.929777860641479,0.226162686944008,-0.342994213104248,0.902994632720947,0.258757263422012,-0.345615208148956,0.891659140586853,0.292393565177917,-0.315728932619095,0.900184094905853,0.299972832202911,-0.290453493595123,0.929777860641479,0.226162686944008,-0.345615208148956,0.891659140586853,0.292393565177917,-0.270073801279068,0.903204679489136,0.333588510751724,-0.252875506877899,0.934659540653229,0.249930933117867,-0.315728932619095,0.900184094905853,0.299972832202911,-0.09038395434618,0.943940997123718,0.317499667406082,-0.176601931452751,0.94284725189209,0.282578557729721,-0.128113955259323,0.911530911922455,0.390766054391861,-0.270073801279068,0.903204679489136,0.333588510751724,-0.210502654314041,0.911407768726349,0.353587567806244,-0.252875506877899,0.934659540653229,0.249930933117867,-0.210502654314041,0.911407768726349,0.353587567806244,-0.128113955259323,0.911530911922455,0.390766054391861,-0.176601931452751,0.94284725189209,0.282578557729721,-0.0525817424058914,0.963663935661316,0.261890947818756,-0.0713427439332008,0.971047699451447,0.227983489632607,-0.0500400178134441,0.938453078269959,0.341762721538544,-0.0439773872494698,0.92873626947403,0.368123382329941,-0.0671809613704681,0.958911418914795,0.275636732578278,-0.09038395434618,0.943940997123718,0.317499667406082,-0.0671809613704681,0.958911418914795,0.275636732578278,-0.0439773872494698,0.92873626947403,0.368123382329941,-0.0500400178134441,0.938453078269959,0.341762721538544, +-0.0481228344142437,0.98056435585022,0.190204173326492,-0.0525817424058914,0.963663935661316,0.261890947818756,-0.0159998461604118,0.961547493934631,0.27417203783989,0.0252698883414268,0.975776672363281,0.217304512858391,-0.0481228344142437,0.98056435585022,0.190204173326492,-0.0159998461604118,0.961547493934631,0.27417203783989,0.0252698883414268,0.975776672363281,0.217304512858391,0.0920413658022881,0.980684220790863,0.172588378190994,0.0285863671451807,0.992024302482605,0.122761845588684,0.154181197285652,0.981348097324371,0.114821761846542,0.138962477445602,0.988158524036407,0.0650545135140419,0.0285863671451807,0.992024302482605,0.122761845588684,0.204768016934395,0.978527724742889,0.0235263854265213,0.237751230597496,0.971146762371063,-0.0186604037880898,0.123043052852154,0.992372334003448,0.00758234784007072,0.245352044701576,0.968065559864044,0.0514908619225025,0.204768016934395,0.978527724742889,0.0235263854265213,0.138962477445602,0.988158524036407,0.0650545135140419,-0.272112250328064,0.780878722667694,-0.562301695346832,-0.279940068721771,0.821062564849854,-0.497483372688293,-0.356198102235794,0.736124813556671,-0.575537264347076,-0.217035681009293,0.821433126926422,-0.527392625808716,-0.205419987440109,0.820598483085632,-0.533311069011688,-0.279940068721771,0.821062564849854,-0.497483372688293,-0.205419987440109,0.820598483085632,-0.533311069011688,-0.17828768491745,0.78554105758667,-0.592569470405579,-0.112156376242638,0.819070816040039,-0.562622368335724,-0.0153844077140093,0.832263290882111,-0.554166913032532,-0.0457579381763935,0.81168007850647,-0.582307040691376,0.0123489005491138,0.809582471847534,-0.586876213550568,0.318958908319473,0.926672279834747,-0.198855563998222,0.366619467735291,0.909020125865936,-0.198172256350517,0.348425060510635,0.929143011569977,-0.123665452003479,0.235537827014923,0.93599534034729,-0.261600017547607,0.353210777044296,0.899190127849579,-0.25826171040535,0.318958908319473,0.926672279834747,-0.198855563998222,0.348425060510635,0.929143011569977,-0.123665452003479,0.294876456260681,0.95463365316391,-0.0415012873709202, +0.347268253564835,0.936814665794373,-0.0422249808907509,0.314638316631317,0.949209272861481,0.00209437729790807,0.347268253564835,0.936814665794373,-0.0422249808907509,0.286826461553574,0.95796126127243,0.00637879502028227,0.226556777954102,0.922300577163696,-0.313103020191193,0.151636332273483,0.919690728187561,-0.36218136548996,0.309975862503052,0.879335463047028,-0.361502408981323,0.353210777044296,0.899190127849579,-0.25826171040535,0.235537827014923,0.93599534034729,-0.261600017547607,0.226556777954102,0.922300577163696,-0.313103020191193,0.239945352077484,0.859695494174957,-0.450943142175674,0.131228625774384,0.845416486263275,-0.517735362052917,0.377589792013168,0.783690750598907,-0.49320849776268,0.234894186258316,0.763468205928802,-0.601615190505981,0.131228625774384,0.845416486263275,-0.517735362052917,0.0466283559799194,0.824417173862457,-0.564058482646942,0.239945352077484,0.859695494174957,-0.450943142175674,0.402506202459335,0.830331742763519,-0.385406047105789,0.309975862503052,0.879335463047028,-0.361502408981323,0.0123489005491138,0.809582471847534,-0.586876213550568,0.0963072404265404,0.753993153572083,-0.649783909320831,0.0466283559799194,0.824417173862457,-0.564058482646942,-0.0151908276602626,0.98775315284729,0.155283078551292,-0.110555455088615,0.961312830448151,0.252299427986145,-0.167522132396698,0.965898990631104,0.197421684861183,-0.291244626045227,0.927468776702881,0.234474182128906,-0.167522132396698,0.965898990631104,0.197421684861183,-0.234829664230347,0.921063184738159,0.310640633106232,-0.291244626045227,0.927468776702881,0.234474182128906,-0.234829664230347,0.921063184738159,0.310640633106232,-0.331793904304504,0.902563631534576,0.274393022060394,-0.331793904304504,0.902563631534576,0.274393022060394,-0.342994213104248,0.902994632720947,0.258757263422012,-0.330288171768188,0.922520399093628,0.199664250016212,0.278142988681793,0.927056491374969,-0.251401215791702,0.300427138805389,0.940833210945129,-0.156768247485161,0.376812636852264,0.905944108963013,-0.193073466420174,0.31055673956871,0.950554311275482,0.000932047667447478, +0.288119047880173,0.953702867031097,-0.0862444490194321,0.237751230597496,0.971146762371063,-0.0186604037880898,0.371054768562317,0.921240627765656,-0.116764530539513,0.300427138805389,0.940833210945129,-0.156768247485161,0.288119047880173,0.953702867031097,-0.0862444490194321,0.134042114019394,0.864117562770844,-0.485111743211746,0.257392406463623,0.839769780635834,-0.478054136037827,0.217152416706085,0.796583235263824,-0.564180612564087,0.336321979761124,0.803999900817871,-0.490378975868225,0.257392406463623,0.839769780635834,-0.478054136037827,0.339637726545334,0.837596476078033,-0.427876532077789,0.278142988681793,0.927056491374969,-0.251401215791702,0.376812636852264,0.905944108963013,-0.193073466420174,0.367713183164597,0.885865688323975,-0.282893627882004,0.308392852544785,0.882821619510651,-0.354287713766098,0.367713183164597,0.885865688323975,-0.282893627882004,0.392832845449448,0.84932142496109,-0.352612316608429,0.392832845449448,0.84932142496109,-0.352612316608429,0.339637726545334,0.837596476078033,-0.427876532077789,0.308392852544785,0.882821619510651,-0.354287713766098,0.0502150505781174,0.827468812465668,-0.559261679649353,0.217152416706085,0.796583235263824,-0.564180612564087,0.108369410037994,0.769973337650299,-0.628805994987488,0.0502150505781174,0.827468812465668,-0.559261679649353,0.108369410037994,0.769973337650299,-0.628805994987488,0.00555835897102952,0.767600297927856,-0.640904605388641,-0.0912747830152512,0.757391929626465,-0.646549463272095,-0.0782510638237,0.80816912651062,-0.583728849887848,0.00555835897102952,0.767600297927856,-0.640904605388641,-0.0912747830152512,0.757391929626465,-0.646549463272095,-0.0795171782374382,0.790266036987305,-0.60758250951767,-0.0782510638237,0.80816912651062,-0.583728849887848,-0.0795171782374382,0.790266036987305,-0.60758250951767,0.0186901073902845,0.739478766918182,-0.672920167446136,0.0782271102070808,0.778025925159454,-0.623342573642731,0.128688305616379,0.682460367679596,-0.719504714012146,0.0894104465842247,0.650416553020477,-0.754296958446503,0.128073543310165,0.663010954856873,-0.737572610378265, +0.128073543310165,0.663010954856873,-0.737572610378265,0.0877489671111107,0.609548151493073,-0.787877559661865,-0.0266411677002907,0.658742010593414,-0.751896977424622,0.134032428264618,0.722014784812927,-0.678770780563354,0.0186901073902845,0.739478766918182,-0.672920167446136,0.128688305616379,0.682460367679596,-0.719504714012146,0.0427439026534557,0.649518966674805,-0.759142875671387,-0.14023357629776,0.681312322616577,-0.71843433380127,-0.0266411677002907,0.658742010593414,-0.751896977424622,-0.14023357629776,0.681312322616577,-0.71843433380127,-0.205332785844803,0.740249454975128,-0.640210092067719,-0.270558536052704,0.698044538497925,-0.6629718542099,-0.270558536052704,0.698044538497925,-0.6629718542099,-0.272112250328064,0.780878722667694,-0.562301695346832,-0.356198102235794,0.736124813556671,-0.575537264347076,-0.382426023483276,0.862344324588776,0.331831902265549,-0.345615208148956,0.891659140586853,0.292393565177917,-0.342994213104248,0.902994632720947,0.258757263422012,-0.370282590389252,0.856281757354736,0.360100328922272,-0.315728932619095,0.900184094905853,0.299972832202911,-0.345615208148956,0.891659140586853,0.292393565177917,-0.270073801279068,0.903204679489136,0.333588510751724,-0.315728932619095,0.900184094905853,0.299972832202911,-0.32106676697731,0.869420945644379,0.37553071975708,-0.0447821356356144,0.904345452785492,0.424445182085037,-0.09038395434618,0.943940997123718,0.317499667406082,-0.128113955259323,0.911530911922455,0.390766054391861,-0.247785419225693,0.865954995155334,0.434424102306366,-0.210502654314041,0.911407768726349,0.353587567806244,-0.270073801279068,0.903204679489136,0.333588510751724,-0.210502654314041,0.911407768726349,0.353587567806244,-0.168372601270676,0.871266067028046,0.461027055978775,-0.128113955259323,0.911530911922455,0.390766054391861,-0.0149040417745709,0.909420549869537,0.415610373020172,-0.0525817424058914,0.963663935661316,0.261890947818756,-0.0500400178134441,0.938453078269959,0.341762721538544,-0.0439773872494698,0.92873626947403,0.368123382329941,-0.09038395434618,0.943940997123718,0.317499667406082, +-0.0447821356356144,0.904345452785492,0.424445182085037,-0.011149974539876,0.887950301170349,0.459804058074951,-0.0500400178134441,0.938453078269959,0.341762721538544,-0.0439773872494698,0.92873626947403,0.368123382329941,-0.00225063809193671,0.930114448070526,0.367262721061707,-0.0159998461604118,0.961547493934631,0.27417203783989,-0.0525817424058914,0.963663935661316,0.261890947818756,0.0596012659370899,0.949785828590393,0.307171672582626,0.0252698883414268,0.975776672363281,0.217304512858391,-0.0159998461604118,0.961547493934631,0.27417203783989,0.0920413658022881,0.980684220790863,0.172588378190994,0.0252698883414268,0.975776672363281,0.217304512858391,0.121224462985992,0.965486466884613,0.230522111058235,0.0285863671451807,0.992024302482605,0.122761845588684,0.0920413658022881,0.980684220790863,0.172588378190994,0.154181197285652,0.981348097324371,0.114821761846542,0.154181197285652,0.981348097324371,0.114821761846542,0.245352044701576,0.968065559864044,0.0514908619225025,0.138962477445602,0.988158524036407,0.0650545135140419,0.237751230597496,0.971146762371063,-0.0186604037880898,0.204768016934395,0.978527724742889,0.0235263854265213,0.245352044701576,0.968065559864044,0.0514908619225025,-0.272112250328064,0.780878722667694,-0.562301695346832,-0.217035681009293,0.821433126926422,-0.527392625808716,-0.279940068721771,0.821062564849854,-0.497483372688293,-0.148892104625702,0.778871357440948,-0.609253942966461,-0.205419987440109,0.820598483085632,-0.533311069011688,-0.217035681009293,0.821433126926422,-0.527392625808716,0.366619467735291,0.909020125865936,-0.198172256350517,0.318958908319473,0.926672279834747,-0.198855563998222,0.353210777044296,0.899190127849579,-0.25826171040535,0.348425060510635,0.929143011569977,-0.123665452003479,0.366619467735291,0.909020125865936,-0.198172256350517,0.365157693624496,0.912859082221985,-0.182614371180534,0.294876456260681,0.95463365316391,-0.0415012873709202,0.348425060510635,0.929143011569977,-0.123665452003479,0.293738037347794,0.950893759727478,-0.0975649282336235,0.294876456260681,0.95463365316391,-0.0415012873709202, +0.286826461553574,0.95796126127243,0.00637879502028227,0.347268253564835,0.936814665794373,-0.0422249808907509,0.353210777044296,0.899190127849579,-0.25826171040535,0.226556777954102,0.922300577163696,-0.313103020191193,0.309975862503052,0.879335463047028,-0.361502408981323,0.377589792013168,0.783690750598907,-0.49320849776268,0.131228625774384,0.845416486263275,-0.517735362052917,0.234894186258316,0.763468205928802,-0.601615190505981,0.402506202459335,0.830331742763519,-0.385406047105789,0.239945352077484,0.859695494174957,-0.450943142175674,0.377589792013168,0.783690750598907,-0.49320849776268,0.0466283559799194,0.824417173862457,-0.564058482646942,0.0963072404265404,0.753993153572083,-0.649783909320831,0.234894186258316,0.763468205928802,-0.601615190505981,0.392946749925613,0.868771374225616,-0.301378518342972,0.309975862503052,0.879335463047028,-0.361502408981323,0.402506202459335,0.830331742763519,-0.385406047105789,-0.110555455088615,0.961312830448151,0.252299427986145,-0.234829664230347,0.921063184738159,0.310640633106232,-0.167522132396698,0.965898990631104,0.197421684861183,-0.331793904304504,0.902563631534576,0.274393022060394,-0.234829664230347,0.921063184738159,0.310640633106232,-0.329680740833282,0.880092322826386,0.341684013605118,-0.331793904304504,0.902563631534576,0.274393022060394,-0.382426023483276,0.862344324588776,0.331831902265549,-0.342994213104248,0.902994632720947,0.258757263422012,0.371054768562317,0.921240627765656,-0.116764530539513,0.376812636852264,0.905944108963013,-0.193073466420174,0.300427138805389,0.940833210945129,-0.156768247485161,0.35695692896843,0.933767199516296,-0.0256951581686735,0.288119047880173,0.953702867031097,-0.0862444490194321,0.31055673956871,0.950554311275482,0.000932047667447478,0.245352044701576,0.968065559864044,0.0514908619225025,0.31055673956871,0.950554311275482,0.000932047667447478,0.237751230597496,0.971146762371063,-0.0186604037880898,0.371054768562317,0.921240627765656,-0.116764530539513,0.288119047880173,0.953702867031097,-0.0862444490194321,0.342358767986298,0.935910940170288,-0.0828319266438484, +0.217152416706085,0.796583235263824,-0.564180612564087,0.257392406463623,0.839769780635834,-0.478054136037827,0.284146219491959,0.796344459056854,-0.533944070339203,0.257392406463623,0.839769780635834,-0.478054136037827,0.336321979761124,0.803999900817871,-0.490378975868225,0.284146219491959,0.796344459056854,-0.533944070339203,0.374018549919128,0.812304079532623,-0.447517663240433,0.336321979761124,0.803999900817871,-0.490378975868225,0.339637726545334,0.837596476078033,-0.427876532077789,0.367713183164597,0.885865688323975,-0.282893627882004,0.376812636852264,0.905944108963013,-0.193073466420174,0.443180829286575,0.855769276618958,-0.266926348209381,0.367713183164597,0.885865688323975,-0.282893627882004,0.443180829286575,0.855769276618958,-0.266926348209381,0.392832845449448,0.84932142496109,-0.352612316608429,0.339637726545334,0.837596476078033,-0.427876532077789,0.392832845449448,0.84932142496109,-0.352612316608429,0.420226365327835,0.815327763557434,-0.398309320211411,0.217152416706085,0.796583235263824,-0.564180612564087,0.180959135293961,0.763489961624146,-0.619948983192444,0.108369410037994,0.769973337650299,-0.628805994987488,0.00555835897102952,0.767600297927856,-0.640904605388641,0.108369410037994,0.769973337650299,-0.628805994987488,0.0373485945165157,0.772970080375671,-0.633342087268829,-0.0438199006021023,0.76792985200882,-0.639033257961273,-0.0912747830152512,0.757391929626465,-0.646549463272095,0.00555835897102952,0.767600297927856,-0.640904605388641,-0.0866081118583679,0.734670400619507,-0.672873139381409,-0.0795171782374382,0.790266036987305,-0.60758250951767,-0.0912747830152512,0.757391929626465,-0.646549463272095,0.0186901073902845,0.739478766918182,-0.672920167446136,-0.0795171782374382,0.790266036987305,-0.60758250951767,-0.0866081118583679,0.734670400619507,-0.672873139381409,0.0894104465842247,0.650416553020477,-0.754296958446503,0.128688305616379,0.682460367679596,-0.719504714012146,0.00392701104283333,0.700256824493408,-0.713880121707916,0.128073543310165,0.663010954856873,-0.737572610378265, +0.0894104465842247,0.650416553020477,-0.754296958446503,0.0877489671111107,0.609548151493073,-0.787877559661865,0.0427439026534557,0.649518966674805,-0.759142875671387,-0.0266411677002907,0.658742010593414,-0.751896977424622,0.0877489671111107,0.609548151493073,-0.787877559661865,0.128688305616379,0.682460367679596,-0.719504714012146,0.0186901073902845,0.739478766918182,-0.672920167446136,0.00392701104283333,0.700256824493408,-0.713880121707916,-0.0394082702696323,0.688997805118561,-0.72369110584259,-0.14023357629776,0.681312322616577,-0.71843433380127,0.0427439026534557,0.649518966674805,-0.759142875671387,-0.205332785844803,0.740249454975128,-0.640210092067719,-0.14023357629776,0.681312322616577,-0.71843433380127,-0.138508021831512,0.726077318191528,-0.673518419265747,-0.272112250328064,0.780878722667694,-0.562301695346832,-0.270558536052704,0.698044538497925,-0.6629718542099,-0.205332785844803,0.740249454975128,-0.640210092067719,-0.382426023483276,0.862344324588776,0.331831902265549,-0.370282590389252,0.856281757354736,0.360100328922272,-0.345615208148956,0.891659140586853,0.292393565177917,-0.315728932619095,0.900184094905853,0.299972832202911,-0.370282590389252,0.856281757354736,0.360100328922272,-0.32106676697731,0.869420945644379,0.37553071975708,-0.247785419225693,0.865954995155334,0.434424102306366,-0.270073801279068,0.903204679489136,0.333588510751724,-0.32106676697731,0.869420945644379,0.37553071975708,-0.0447821356356144,0.904345452785492,0.424445182085037,-0.128113955259323,0.911530911922455,0.390766054391861,-0.0770532190799713,0.867004692554474,0.492306411266327,-0.168372601270676,0.871266067028046,0.461027055978775,-0.210502654314041,0.911407768726349,0.353587567806244,-0.247785419225693,0.865954995155334,0.434424102306366,-0.168372601270676,0.871266067028046,0.461027055978775,-0.0770532190799713,0.867004692554474,0.492306411266327,-0.128113955259323,0.911530911922455,0.390766054391861,-0.00225063809193671,0.930114448070526,0.367262721061707,-0.0525817424058914,0.963663935661316,0.261890947818756, +-0.0149040417745709,0.909420549869537,0.415610373020172,-0.0149040417745709,0.909420549869537,0.415610373020172,-0.0500400178134441,0.938453078269959,0.341762721538544,-0.011149974539876,0.887950301170349,0.459804058074951,-0.0447821356356144,0.904345452785492,0.424445182085037,-0.011149974539876,0.887950301170349,0.459804058074951,-0.0439773872494698,0.92873626947403,0.368123382329941,0.0596012659370899,0.949785828590393,0.307171672582626,-0.0159998461604118,0.961547493934631,0.27417203783989,-0.00225063809193671,0.930114448070526,0.367262721061707,0.121224462985992,0.965486466884613,0.230522111058235,0.0252698883414268,0.975776672363281,0.217304512858391,0.0596012659370899,0.949785828590393,0.307171672582626,0.178568333387375,0.968681395053864,0.17253865301609,0.0920413658022881,0.980684220790863,0.172588378190994,0.121224462985992,0.965486466884613,0.230522111058235,0.0920413658022881,0.980684220790863,0.172588378190994,0.178568333387375,0.968681395053864,0.17253865301609,0.154181197285652,0.981348097324371,0.114821761846542,0.245352044701576,0.968065559864044,0.0514908619225025,0.154181197285652,0.981348097324371,0.114821761846542,0.261162847280502,0.95874434709549,0.11226361989975,-0.217035681009293,0.821433126926422,-0.527392625808716,-0.272112250328064,0.780878722667694,-0.562301695346832,-0.16684265434742,0.769972085952759,-0.615878522396088,-0.217035681009293,0.821433126926422,-0.527392625808716,-0.16684265434742,0.769972085952759,-0.615878522396088,-0.148892104625702,0.778871357440948,-0.609253942966461,0.366619467735291,0.909020125865936,-0.198172256350517,0.353210777044296,0.899190127849579,-0.25826171040535,0.365157693624496,0.912859082221985,-0.182614371180534,0.348425060510635,0.929143011569977,-0.123665452003479,0.365157693624496,0.912859082221985,-0.182614371180534,0.292851567268372,0.944447100162506,-0.149189487099648,0.292851567268372,0.944447100162506,-0.149189487099648,0.293738037347794,0.950893759727478,-0.0975649282336235,0.348425060510635,0.929143011569977,-0.123665452003479,0.224174469709396,0.970797061920166,-0.0854331776499748, +0.294876456260681,0.95463365316391,-0.0415012873709202,0.293738037347794,0.950893759727478,-0.0975649282336235,0.353210777044296,0.899190127849579,-0.25826171040535,0.309975862503052,0.879335463047028,-0.361502408981323,0.392946749925613,0.868771374225616,-0.301378518342972,0.234894186258316,0.763468205928802,-0.601615190505981,0.352430194616318,0.700194120407104,-0.620903372764587,0.377589792013168,0.783690750598907,-0.49320849776268,0.402506202459335,0.830331742763519,-0.385406047105789,0.377589792013168,0.783690750598907,-0.49320849776268,0.425620645284653,0.793345093727112,-0.435259073972702,0.0963072404265404,0.753993153572083,-0.649783909320831,0.257662415504456,0.683752119541168,-0.682709991931915,0.234894186258316,0.763468205928802,-0.601615190505981,0.392946749925613,0.868771374225616,-0.301378518342972,0.402506202459335,0.830331742763519,-0.385406047105789,0.359016716480255,0.861893653869629,-0.358114808797836,-0.382426023483276,0.862344324588776,0.331831902265549,-0.331793904304504,0.902563631534576,0.274393022060394,-0.329680740833282,0.880092322826386,0.341684013605118,0.371054768562317,0.921240627765656,-0.116764530539513,0.442721426486969,0.883561193943024,-0.152699694037437,0.376812636852264,0.905944108963013,-0.193073466420174,0.35695692896843,0.933767199516296,-0.0256951581686735,0.342358767986298,0.935910940170288,-0.0828319266438484,0.288119047880173,0.953702867031097,-0.0862444490194321,0.35695692896843,0.933767199516296,-0.0256951581686735,0.31055673956871,0.950554311275482,0.000932047667447478,0.383613497018814,0.922747731208801,0.0371106266975403,0.327391773462296,0.94306343793869,0.0586994849145412,0.31055673956871,0.950554311275482,0.000932047667447478,0.245352044701576,0.968065559864044,0.0514908619225025,0.371054768562317,0.921240627765656,-0.116764530539513,0.342358767986298,0.935910940170288,-0.0828319266438484,0.402147263288498,0.913548231124878,-0.0608840994536877,0.217152416706085,0.796583235263824,-0.564180612564087,0.284146219491959,0.796344459056854,-0.533944070339203,0.222872227430344,0.789943516254425,-0.571241676807404, +0.30255851149559,0.811969518661499,-0.499163061380386,0.284146219491959,0.796344459056854,-0.533944070339203,0.336321979761124,0.803999900817871,-0.490378975868225,0.323893129825592,0.822344899177551,-0.467805624008179,0.336321979761124,0.803999900817871,-0.490378975868225,0.374018549919128,0.812304079532623,-0.447517663240433,0.374018549919128,0.812304079532623,-0.447517663240433,0.339637726545334,0.837596476078033,-0.427876532077789,0.420226365327835,0.815327763557434,-0.398309320211411,0.376812636852264,0.905944108963013,-0.193073466420174,0.442721426486969,0.883561193943024,-0.152699694037437,0.443180829286575,0.855769276618958,-0.266926348209381,0.443180829286575,0.855769276618958,-0.266926348209381,0.420226365327835,0.815327763557434,-0.398309320211411,0.392832845449448,0.84932142496109,-0.352612316608429,0.180959135293961,0.763489961624146,-0.619948983192444,0.217152416706085,0.796583235263824,-0.564180612564087,0.222872227430344,0.789943516254425,-0.571241676807404,0.180959135293961,0.763489961624146,-0.619948983192444,0.0730372220277786,0.795372247695923,-0.601704597473145,0.108369410037994,0.769973337650299,-0.628805994987488,0.0730372220277786,0.795372247695923,-0.601704597473145,0.0373485945165157,0.772970080375671,-0.633342087268829,0.108369410037994,0.769973337650299,-0.628805994987488,0.00555835897102952,0.767600297927856,-0.640904605388641,0.0373485945165157,0.772970080375671,-0.633342087268829,-0.0438199006021023,0.76792985200882,-0.639033257961273,-0.0912747830152512,0.757391929626465,-0.646549463272095,-0.0438199006021023,0.76792985200882,-0.639033257961273,-0.129535242915154,0.746650099754334,-0.652483105659485,-0.129535242915154,0.746650099754334,-0.652483105659485,-0.0866081118583679,0.734670400619507,-0.672873139381409,-0.0912747830152512,0.757391929626465,-0.646549463272095,0.00392701104283333,0.700256824493408,-0.713880121707916,0.0186901073902845,0.739478766918182,-0.672920167446136,-0.0866081118583679,0.734670400619507,-0.672873139381409,0.00392701104283333,0.700256824493408,-0.713880121707916, +-0.0160122364759445,0.692427158355713,-0.721309959888458,0.0894104465842247,0.650416553020477,-0.754296958446503,0.0427439026534557,0.649518966674805,-0.759142875671387,0.0877489671111107,0.609548151493073,-0.787877559661865,0.0894104465842247,0.650416553020477,-0.754296958446503,-0.0394082702696323,0.688997805118561,-0.72369110584259,-0.138508021831512,0.726077318191528,-0.673518419265747,-0.14023357629776,0.681312322616577,-0.71843433380127,0.0607711300253868,0.629403114318848,-0.774698972702026,-0.0394082702696323,0.688997805118561,-0.72369110584259,0.0427439026534557,0.649518966674805,-0.759142875671387,-0.16684265434742,0.769972085952759,-0.615878522396088,-0.205332785844803,0.740249454975128,-0.640210092067719,-0.138508021831512,0.726077318191528,-0.673518419265747,-0.272112250328064,0.780878722667694,-0.562301695346832,-0.205332785844803,0.740249454975128,-0.640210092067719,-0.16684265434742,0.769972085952759,-0.615878522396088,-0.0447821356356144,0.904345452785492,0.424445182085037,-0.0770532190799713,0.867004692554474,0.492306411266327,-0.00360897416248918,0.86118072271347,0.508285880088806,-0.168372601270676,0.871266067028046,0.461027055978775,-0.247785419225693,0.865954995155334,0.434424102306366,-0.203125864267349,0.835331201553345,0.510843932628632,-0.168372601270676,0.871266067028046,0.461027055978775,-0.130151435732841,0.824181258678436,0.551167547702789,-0.0770532190799713,0.867004692554474,0.492306411266327,-0.0149040417745709,0.909420549869537,0.415610373020172,0.0145234409719706,0.872833549976349,0.487801760435104,-0.00225063809193671,0.930114448070526,0.367262721061707,-0.011149974539876,0.887950301170349,0.459804058074951,0.0239837113767862,0.85733962059021,0.514192044734955,-0.0149040417745709,0.909420549869537,0.415610373020172,-0.0447821356356144,0.904345452785492,0.424445182085037,-0.00360897416248918,0.86118072271347,0.508285880088806,-0.011149974539876,0.887950301170349,0.459804058074951,0.0514699891209602,0.904461681842804,0.423438131809235,0.0596012659370899,0.949785828590393,0.307171672582626, +-0.00225063809193671,0.930114448070526,0.367262721061707,0.134380415081978,0.933386564254761,0.332763224840164,0.121224462985992,0.965486466884613,0.230522111058235,0.0596012659370899,0.949785828590393,0.307171672582626,0.178568333387375,0.968681395053864,0.17253865301609,0.121224462985992,0.965486466884613,0.230522111058235,0.22402349114418,0.942607343196869,0.247597888112068,0.261162847280502,0.95874434709549,0.11226361989975,0.154181197285652,0.981348097324371,0.114821761846542,0.178568333387375,0.968681395053864,0.17253865301609,0.261162847280502,0.95874434709549,0.11226361989975,0.327391773462296,0.94306343793869,0.0586994849145412,0.245352044701576,0.968065559864044,0.0514908619225025,-0.0998120605945587,0.713394284248352,-0.69361799955368,-0.148892104625702,0.778871357440948,-0.609253942966461,-0.16684265434742,0.769972085952759,-0.615878522396088,0.36101308465004,0.909004747867584,-0.208278104662895,0.365157693624496,0.912859082221985,-0.182614371180534,0.353210777044296,0.899190127849579,-0.25826171040535,0.36101308465004,0.909004747867584,-0.208278104662895,0.292851567268372,0.944447100162506,-0.149189487099648,0.365157693624496,0.912859082221985,-0.182614371180534,0.293738037347794,0.950893759727478,-0.0975649282336235,0.292851567268372,0.944447100162506,-0.149189487099648,0.224174469709396,0.970797061920166,-0.0854331776499748,0.392946749925613,0.868771374225616,-0.301378518342972,0.36101308465004,0.909004747867584,-0.208278104662895,0.353210777044296,0.899190127849579,-0.25826171040535,0.352430194616318,0.700194120407104,-0.620903372764587,0.234894186258316,0.763468205928802,-0.601615190505981,0.257662415504456,0.683752119541168,-0.682709991931915,0.377589792013168,0.783690750598907,-0.49320849776268,0.352430194616318,0.700194120407104,-0.620903372764587,0.413890719413757,0.748255610466003,-0.518466770648956,0.377589792013168,0.783690750598907,-0.49320849776268,0.413890719413757,0.748255610466003,-0.518466770648956,0.425620645284653,0.793345093727112,-0.435259073972702,0.359016716480255,0.861893653869629,-0.358114808797836, +0.402506202459335,0.830331742763519,-0.385406047105789,0.425620645284653,0.793345093727112,-0.435259073972702,0.307543069124222,0.90556937456131,-0.292166501283646,0.392946749925613,0.868771374225616,-0.301378518342972,0.359016716480255,0.861893653869629,-0.358114808797836,0.371054768562317,0.921240627765656,-0.116764530539513,0.434954345226288,0.895492315292358,-0.0943834483623505,0.442721426486969,0.883561193943024,-0.152699694037437,0.402147263288498,0.913548231124878,-0.0608840994536877,0.342358767986298,0.935910940170288,-0.0828319266438484,0.35695692896843,0.933767199516296,-0.0256951581686735,0.31055673956871,0.950554311275482,0.000932047667447478,0.327391773462296,0.94306343793869,0.0586994849145412,0.383613497018814,0.922747731208801,0.0371106266975403,0.408609479665756,0.91266942024231,0.00852930825203657,0.35695692896843,0.933767199516296,-0.0256951581686735,0.383613497018814,0.922747731208801,0.0371106266975403,0.434954345226288,0.895492315292358,-0.0943834483623505,0.371054768562317,0.921240627765656,-0.116764530539513,0.402147263288498,0.913548231124878,-0.0608840994536877,0.218807771801949,0.831978857517242,-0.50983738899231,0.222872227430344,0.789943516254425,-0.571241676807404,0.284146219491959,0.796344459056854,-0.533944070339203,0.30255851149559,0.811969518661499,-0.499163061380386,0.218807771801949,0.831978857517242,-0.50983738899231,0.284146219491959,0.796344459056854,-0.533944070339203,0.323893129825592,0.822344899177551,-0.467805624008179,0.30255851149559,0.811969518661499,-0.499163061380386,0.336321979761124,0.803999900817871,-0.490378975868225,0.374018549919128,0.812304079532623,-0.447517663240433,0.359015226364136,0.803923487663269,-0.474146544933319,0.323893129825592,0.822344899177551,-0.467805624008179,0.374018549919128,0.812304079532623,-0.447517663240433,0.420226365327835,0.815327763557434,-0.398309320211411,0.432650089263916,0.790696382522583,-0.433142960071564,0.491233974695206,0.852532625198364,-0.178541868925095,0.443180829286575,0.855769276618958,-0.266926348209381,0.442721426486969,0.883561193943024,-0.152699694037437, +0.487005978822708,0.79820990562439,-0.354522228240967,0.420226365327835,0.815327763557434,-0.398309320211411,0.443180829286575,0.855769276618958,-0.266926348209381,0.180959135293961,0.763489961624146,-0.619948983192444,0.222872227430344,0.789943516254425,-0.571241676807404,0.152647420763969,0.78847724199295,-0.595820665359497,0.180959135293961,0.763489961624146,-0.619948983192444,0.152647420763969,0.78847724199295,-0.595820665359497,0.0730372220277786,0.795372247695923,-0.601704597473145,-0.0663544610142708,0.798031628131866,-0.598951101303101,0.0373485945165157,0.772970080375671,-0.633342087268829,0.0730372220277786,0.795372247695923,-0.601704597473145,-0.0438199006021023,0.76792985200882,-0.639033257961273,0.0373485945165157,0.772970080375671,-0.633342087268829,-0.0663544610142708,0.798031628131866,-0.598951101303101,-0.0663544610142708,0.798031628131866,-0.598951101303101,-0.129535242915154,0.746650099754334,-0.652483105659485,-0.0438199006021023,0.76792985200882,-0.639033257961273,-0.129535242915154,0.746650099754334,-0.652483105659485,-0.0920452103018761,0.723412156105042,-0.684253215789795,-0.0866081118583679,0.734670400619507,-0.672873139381409,0.00392701104283333,0.700256824493408,-0.713880121707916,-0.0866081118583679,0.734670400619507,-0.672873139381409,-0.0920452103018761,0.723412156105042,-0.684253215789795,0.00392701104283333,0.700256824493408,-0.713880121707916,-0.0920452103018761,0.723412156105042,-0.684253215789795,-0.0160122364759445,0.692427158355713,-0.721309959888458,0.0662626177072525,0.653153717517853,-0.754320442676544,0.0894104465842247,0.650416553020477,-0.754296958446503,-0.0160122364759445,0.692427158355713,-0.721309959888458,0.0894104465842247,0.650416553020477,-0.754296958446503,0.113779202103615,0.657155334949493,-0.745118081569672,0.0427439026534557,0.649518966674805,-0.759142875671387,-0.0394082702696323,0.688997805118561,-0.72369110584259,-0.0896875858306885,0.667133033275604,-0.739519774913788,-0.138508021831512,0.726077318191528,-0.673518419265747,-0.0896875858306885,0.667133033275604,-0.739519774913788, +-0.0394082702696323,0.688997805118561,-0.72369110584259,0.0607711300253868,0.629403114318848,-0.774698972702026,0.0427439026534557,0.649518966674805,-0.759142875671387,0.113779202103615,0.657155334949493,-0.745118081569672,0.0607711300253868,0.629403114318848,-0.774698972702026,-0.16684265434742,0.769972085952759,-0.615878522396088,-0.138508021831512,0.726077318191528,-0.673518419265747,-0.0896875858306885,0.667133033275604,-0.739519774913788,-0.0281199868768454,0.805395483970642,0.592070341110229,-0.00360897416248918,0.86118072271347,0.508285880088806,-0.0770532190799713,0.867004692554474,0.492306411266327,-0.203125864267349,0.835331201553345,0.510843932628632,-0.130151435732841,0.824181258678436,0.551167547702789,-0.168372601270676,0.871266067028046,0.461027055978775,-0.0281199868768454,0.805395483970642,0.592070341110229,-0.0770532190799713,0.867004692554474,0.492306411266327,-0.130151435732841,0.824181258678436,0.551167547702789,-0.0149040417745709,0.909420549869537,0.415610373020172,0.0239837113767862,0.85733962059021,0.514192044734955,0.0145234409719706,0.872833549976349,0.487801760435104,0.0514699891209602,0.904461681842804,0.423438131809235,-0.00225063809193671,0.930114448070526,0.367262721061707,0.0145234409719706,0.872833549976349,0.487801760435104,-0.011149974539876,0.887950301170349,0.459804058074951,0.0281550474464893,0.837976455688477,0.544979572296143,0.0239837113767862,0.85733962059021,0.514192044734955,0.0281550474464893,0.837976455688477,0.544979572296143,-0.011149974539876,0.887950301170349,0.459804058074951,-0.00360897416248918,0.86118072271347,0.508285880088806,0.0596012659370899,0.949785828590393,0.307171672582626,0.0514699891209602,0.904461681842804,0.423438131809235,0.134380415081978,0.933386564254761,0.332763224840164,0.22402349114418,0.942607343196869,0.247597888112068,0.121224462985992,0.965486466884613,0.230522111058235,0.134380415081978,0.933386564254761,0.332763224840164,0.284488618373871,0.937442898750305,0.20066636800766,0.178568333387375,0.968681395053864,0.17253865301609,0.22402349114418,0.942607343196869,0.247597888112068, +0.284488618373871,0.937442898750305,0.20066636800766,0.261162847280502,0.95874434709549,0.11226361989975,0.178568333387375,0.968681395053864,0.17253865301609,0.261162847280502,0.95874434709549,0.11226361989975,0.348656266927719,0.928065419197083,0.13089445233345,0.327391773462296,0.94306343793869,0.0586994849145412,-0.0998120605945587,0.713394284248352,-0.69361799955368,-0.16684265434742,0.769972085952759,-0.615878522396088,-0.0896875858306885,0.667133033275604,-0.739519774913788,0.292851567268372,0.944447100162506,-0.149189487099648,0.36101308465004,0.909004747867584,-0.208278104662895,0.264844954013824,0.949947357177734,-0.165701657533646,0.224174469709396,0.970797061920166,-0.0854331776499748,0.292851567268372,0.944447100162506,-0.149189487099648,0.20693464577198,0.972486019134521,-0.106999740004539,0.320539176464081,0.914756774902344,-0.24591563642025,0.36101308465004,0.909004747867584,-0.208278104662895,0.392946749925613,0.868771374225616,-0.301378518342972,0.352430194616318,0.700194120407104,-0.620903372764587,0.257662415504456,0.683752119541168,-0.682709991931915,0.389607965946198,0.644710540771484,-0.657688200473785,0.373165547847748,0.722598195075989,-0.581892728805542,0.413890719413757,0.748255610466003,-0.518466770648956,0.352430194616318,0.700194120407104,-0.620903372764587,0.425620645284653,0.793345093727112,-0.435259073972702,0.413890719413757,0.748255610466003,-0.518466770648956,0.373165547847748,0.722598195075989,-0.581892728805542,0.425620645284653,0.793345093727112,-0.435259073972702,0.339851975440979,0.805907309055328,-0.484782367944717,0.359016716480255,0.861893653869629,-0.358114808797836,0.307543069124222,0.90556937456131,-0.292166501283646,0.320539176464081,0.914756774902344,-0.24591563642025,0.392946749925613,0.868771374225616,-0.301378518342972,0.234425261616707,0.908260822296143,-0.346564501523972,0.307543069124222,0.90556937456131,-0.292166501283646,0.359016716480255,0.861893653869629,-0.358114808797836,0.476693004369736,0.872381091117859,-0.108235366642475,0.442721426486969,0.883561193943024,-0.152699694037437, +0.434954345226288,0.895492315292358,-0.0943834483623505,0.408609479665756,0.91266942024231,0.00852930825203657,0.402147263288498,0.913548231124878,-0.0608840994536877,0.35695692896843,0.933767199516296,-0.0256951581686735,0.327391773462296,0.94306343793869,0.0586994849145412,0.382722288370132,0.921943783760071,0.0595252402126789,0.383613497018814,0.922747731208801,0.0371106266975403,0.390862971544266,0.919931590557098,0.0308525115251541,0.408609479665756,0.91266942024231,0.00852930825203657,0.383613497018814,0.922747731208801,0.0371106266975403,0.453633397817612,0.89000791311264,-0.0458533726632595,0.434954345226288,0.895492315292358,-0.0943834483623505,0.402147263288498,0.913548231124878,-0.0608840994536877,0.222872227430344,0.789943516254425,-0.571241676807404,0.218807771801949,0.831978857517242,-0.50983738899231,0.114644072949886,0.838460803031921,-0.532766461372375,0.218807771801949,0.831978857517242,-0.50983738899231,0.30255851149559,0.811969518661499,-0.499163061380386,0.309797763824463,0.811230778694153,-0.495913088321686,0.309797763824463,0.811230778694153,-0.495913088321686,0.30255851149559,0.811969518661499,-0.499163061380386,0.323893129825592,0.822344899177551,-0.467805624008179,0.359015226364136,0.803923487663269,-0.474146544933319,0.374018549919128,0.812304079532623,-0.447517663240433,0.432650089263916,0.790696382522583,-0.433142960071564,0.309797763824463,0.811230778694153,-0.495913088321686,0.323893129825592,0.822344899177551,-0.467805624008179,0.359015226364136,0.803923487663269,-0.474146544933319,0.432650089263916,0.790696382522583,-0.433142960071564,0.420226365327835,0.815327763557434,-0.398309320211411,0.445625871419907,0.779344320297241,-0.440499603748322,0.511251866817474,0.821829676628113,-0.251430511474609,0.443180829286575,0.855769276618958,-0.266926348209381,0.491233974695206,0.852532625198364,-0.178541868925095,0.476693004369736,0.872381091117859,-0.108235366642475,0.491233974695206,0.852532625198364,-0.178541868925095,0.442721426486969,0.883561193943024,-0.152699694037437,0.487005978822708,0.79820990562439,-0.354522228240967, +0.445625871419907,0.779344320297241,-0.440499603748322,0.420226365327835,0.815327763557434,-0.398309320211411,0.487005978822708,0.79820990562439,-0.354522228240967,0.443180829286575,0.855769276618958,-0.266926348209381,0.511251866817474,0.821829676628113,-0.251430511474609,0.222872227430344,0.789943516254425,-0.571241676807404,0.114644072949886,0.838460803031921,-0.532766461372375,0.152647420763969,0.78847724199295,-0.595820665359497,0.0730372220277786,0.795372247695923,-0.601704597473145,0.152647420763969,0.78847724199295,-0.595820665359497,0.114644072949886,0.838460803031921,-0.532766461372375,0.021154185757041,0.784523785114288,-0.61973762512207,-0.0663544610142708,0.798031628131866,-0.598951101303101,0.0730372220277786,0.795372247695923,-0.601704597473145,-0.0663544610142708,0.798031628131866,-0.598951101303101,-0.144780248403549,0.725558936595917,-0.672757565975189,-0.129535242915154,0.746650099754334,-0.652483105659485,-0.0920452103018761,0.723412156105042,-0.684253215789795,-0.129535242915154,0.746650099754334,-0.652483105659485,-0.136902183294296,0.746074318885803,-0.651637017726898,-0.0160122364759445,0.692427158355713,-0.721309959888458,-0.0920452103018761,0.723412156105042,-0.684253215789795,-0.124049536883831,0.716469883918762,-0.686500072479248,0.0894104465842247,0.650416553020477,-0.754296958446503,0.0662626177072525,0.653153717517853,-0.754320442676544,0.113779202103615,0.657155334949493,-0.745118081569672,0.0662626177072525,0.653153717517853,-0.754320442676544,-0.0160122364759445,0.692427158355713,-0.721309959888458,-0.0588106364011765,0.634355902671814,-0.770800769329071,0.113779202103615,0.657155334949493,-0.745118081569672,0.0662626177072525,0.653153717517853,-0.754320442676544,0.0607711300253868,0.629403114318848,-0.774698972702026,0.0281550474464893,0.837976455688477,0.544979572296143,-0.00360897416248918,0.86118072271347,0.508285880088806,-0.0281199868768454,0.805395483970642,0.592070341110229,0.026267534121871,0.826435208320618,0.562418639659882,0.0145234409719706,0.872833549976349,0.487801760435104, +0.0239837113767862,0.85733962059021,0.514192044734955,0.0145234409719706,0.872833549976349,0.487801760435104,0.0372019484639168,0.848371863365173,0.528091907501221,0.0514699891209602,0.904461681842804,0.423438131809235,0.026267534121871,0.826435208320618,0.562418639659882,0.0239837113767862,0.85733962059021,0.514192044734955,0.0281550474464893,0.837976455688477,0.544979572296143,0.0514699891209602,0.904461681842804,0.423438131809235,0.142487347126007,0.866297125816345,0.478776067495346,0.134380415081978,0.933386564254761,0.332763224840164,0.254799067974091,0.913672626018524,0.316669553518295,0.22402349114418,0.942607343196869,0.247597888112068,0.134380415081978,0.933386564254761,0.332763224840164,0.298770874738693,0.9144486784935,0.272982627153397,0.284488618373871,0.937442898750305,0.20066636800766,0.22402349114418,0.942607343196869,0.247597888112068,0.348656266927719,0.928065419197083,0.13089445233345,0.261162847280502,0.95874434709549,0.11226361989975,0.284488618373871,0.937442898750305,0.20066636800766,0.327391773462296,0.94306343793869,0.0586994849145412,0.348656266927719,0.928065419197083,0.13089445233345,0.382722288370132,0.921943783760071,0.0595252402126789,0.36101308465004,0.909004747867584,-0.208278104662895,0.320539176464081,0.914756774902344,-0.24591563642025,0.264844954013824,0.949947357177734,-0.165701657533646,0.264844954013824,0.949947357177734,-0.165701657533646,0.20693464577198,0.972486019134521,-0.106999740004539,0.292851567268372,0.944447100162506,-0.149189487099648,0.224174469709396,0.970797061920166,-0.0854331776499748,0.20693464577198,0.972486019134521,-0.106999740004539,0.184770941734314,0.980836451053619,-0.0618018954992294,0.257662415504456,0.683752119541168,-0.682709991931915,0.318044990301132,0.587348818778992,-0.744223475456238,0.389607965946198,0.644710540771484,-0.657688200473785,0.352430194616318,0.700194120407104,-0.620903372764587,0.389607965946198,0.644710540771484,-0.657688200473785,0.36219134926796,0.668158829212189,-0.649908483028412,0.373165547847748,0.722598195075989,-0.581892728805542, +0.352430194616318,0.700194120407104,-0.620903372764587,0.36219134926796,0.668158829212189,-0.649908483028412,0.425620645284653,0.793345093727112,-0.435259073972702,0.373165547847748,0.722598195075989,-0.581892728805542,0.339851975440979,0.805907309055328,-0.484782367944717,0.359016716480255,0.861893653869629,-0.358114808797836,0.339851975440979,0.805907309055328,-0.484782367944717,0.253659605979919,0.859693586826324,-0.443377465009689,0.205807149410248,0.943327367305756,-0.260339319705963,0.320539176464081,0.914756774902344,-0.24591563642025,0.307543069124222,0.90556937456131,-0.292166501283646,0.205807149410248,0.943327367305756,-0.260339319705963,0.307543069124222,0.90556937456131,-0.292166501283646,0.234425261616707,0.908260822296143,-0.346564501523972,0.234425261616707,0.908260822296143,-0.346564501523972,0.359016716480255,0.861893653869629,-0.358114808797836,0.253659605979919,0.859693586826324,-0.443377465009689,0.434954345226288,0.895492315292358,-0.0943834483623505,0.453633397817612,0.89000791311264,-0.0458533726632595,0.476693004369736,0.872381091117859,-0.108235366642475,0.453633397817612,0.89000791311264,-0.0458533726632595,0.402147263288498,0.913548231124878,-0.0608840994536877,0.408609479665756,0.91266942024231,0.00852930825203657,0.382722288370132,0.921943783760071,0.0595252402126789,0.390862971544266,0.919931590557098,0.0308525115251541,0.383613497018814,0.922747731208801,0.0371106266975403,0.408609479665756,0.91266942024231,0.00852930825203657,0.390862971544266,0.919931590557098,0.0308525115251541,0.406765043735504,0.912230789661407,0.0487553849816322,0.170330449938774,0.843351483345032,-0.509652495384216,0.114644072949886,0.838460803031921,-0.532766461372375,0.218807771801949,0.831978857517242,-0.50983738899231,0.218807771801949,0.831978857517242,-0.50983738899231,0.309797763824463,0.811230778694153,-0.495913088321686,0.233830511569977,0.795603334903717,-0.558872580528259,0.359015226364136,0.803923487663269,-0.474146544933319,0.432650089263916,0.790696382522583,-0.433142960071564,0.414828330278397,0.758806884288788,-0.502124905586243, +0.359015226364136,0.803923487663269,-0.474146544933319,0.371785789728165,0.741241753101349,-0.558870136737823,0.309797763824463,0.811230778694153,-0.495913088321686,0.432650089263916,0.790696382522583,-0.433142960071564,0.445625871419907,0.779344320297241,-0.440499603748322,0.414828330278397,0.758806884288788,-0.502124905586243,0.54765772819519,0.812749028205872,-0.198770895600319,0.511251866817474,0.821829676628113,-0.251430511474609,0.491233974695206,0.852532625198364,-0.178541868925095,0.491233974695206,0.852532625198364,-0.178541868925095,0.476693004369736,0.872381091117859,-0.108235366642475,0.526549518108368,0.840138673782349,-0.130047932267189,0.490085422992706,0.771808505058289,-0.405126869678497,0.445625871419907,0.779344320297241,-0.440499603748322,0.487005978822708,0.79820990562439,-0.354522228240967,0.487005978822708,0.79820990562439,-0.354522228240967,0.511251866817474,0.821829676628113,-0.251430511474609,0.572409212589264,0.772989511489868,-0.27355968952179,0.021154185757041,0.784523785114288,-0.61973762512207,0.0730372220277786,0.795372247695923,-0.601704597473145,0.114644072949886,0.838460803031921,-0.532766461372375,0.021154185757041,0.784523785114288,-0.61973762512207,-0.0887010544538498,0.720294594764709,-0.68797355890274,-0.0663544610142708,0.798031628131866,-0.598951101303101,-0.0663544610142708,0.798031628131866,-0.598951101303101,-0.0887010544538498,0.720294594764709,-0.68797355890274,-0.144780248403549,0.725558936595917,-0.672757565975189,-0.129535242915154,0.746650099754334,-0.652483105659485,-0.144780248403549,0.725558936595917,-0.672757565975189,-0.136902183294296,0.746074318885803,-0.651637017726898,-0.136902183294296,0.746074318885803,-0.651637017726898,-0.124049536883831,0.716469883918762,-0.686500072479248,-0.0920452103018761,0.723412156105042,-0.684253215789795,-0.0160122364759445,0.692427158355713,-0.721309959888458,-0.124049536883831,0.716469883918762,-0.686500072479248,-0.0588106364011765,0.634355902671814,-0.770800769329071,-0.0588106364011765,0.634355902671814,-0.770800769329071, +0.0466557182371616,0.634668111801147,-0.771375119686127,0.0662626177072525,0.653153717517853,-0.754320442676544,0.0662626177072525,0.653153717517853,-0.754320442676544,0.0466557182371616,0.634668111801147,-0.771375119686127,0.0607711300253868,0.629403114318848,-0.774698972702026,0.0248698219656944,0.784355819225311,0.619812309741974,0.0281550474464893,0.837976455688477,0.544979572296143,-0.0281199868768454,0.805395483970642,0.592070341110229,0.0145234409719706,0.872833549976349,0.487801760435104,0.026267534121871,0.826435208320618,0.562418639659882,0.0372019484639168,0.848371863365173,0.528091907501221,0.0514699891209602,0.904461681842804,0.423438131809235,0.0372019484639168,0.848371863365173,0.528091907501221,0.142487347126007,0.866297125816345,0.478776067495346,0.026267534121871,0.826435208320618,0.562418639659882,0.0281550474464893,0.837976455688477,0.544979572296143,0.0248698219656944,0.784355819225311,0.619812309741974,0.134380415081978,0.933386564254761,0.332763224840164,0.142487347126007,0.866297125816345,0.478776067495346,0.205381125211716,0.890813946723938,0.405301123857498,0.254799067974091,0.913672626018524,0.316669553518295,0.298770874738693,0.9144486784935,0.272982627153397,0.22402349114418,0.942607343196869,0.247597888112068,0.254799067974091,0.913672626018524,0.316669553518295,0.134380415081978,0.933386564254761,0.332763224840164,0.205381125211716,0.890813946723938,0.405301123857498,0.32000344991684,0.915695250034332,0.243104681372643,0.284488618373871,0.937442898750305,0.20066636800766,0.298770874738693,0.9144486784935,0.272982627153397,0.284488618373871,0.937442898750305,0.20066636800766,0.388461589813232,0.900217473506927,0.196738630533218,0.348656266927719,0.928065419197083,0.13089445233345,0.413496732711792,0.899041593074799,0.144028902053833,0.382722288370132,0.921943783760071,0.0595252402126789,0.348656266927719,0.928065419197083,0.13089445233345,0.264844954013824,0.949947357177734,-0.165701657533646,0.320539176464081,0.914756774902344,-0.24591563642025,0.205807149410248,0.943327367305756,-0.260339319705963, +0.264844954013824,0.949947357177734,-0.165701657533646,0.197186753153801,0.974767327308655,-0.104623079299927,0.20693464577198,0.972486019134521,-0.106999740004539,0.219225183129311,0.972016096115112,-0.0844090357422829,0.184770941734314,0.980836451053619,-0.0618018954992294,0.20693464577198,0.972486019134521,-0.106999740004539,0.389607965946198,0.644710540771484,-0.657688200473785,0.318044990301132,0.587348818778992,-0.744223475456238,0.355790972709656,0.585541069507599,-0.728391587734222,0.389607965946198,0.644710540771484,-0.657688200473785,0.419959634542465,0.688457012176514,-0.591321229934692,0.36219134926796,0.668158829212189,-0.649908483028412,0.373165547847748,0.722598195075989,-0.581892728805542,0.36219134926796,0.668158829212189,-0.649908483028412,0.419959634542465,0.688457012176514,-0.591321229934692,0.320102483034134,0.774057388305664,-0.546231985092163,0.339851975440979,0.805907309055328,-0.484782367944717,0.373165547847748,0.722598195075989,-0.581892728805542,0.253659605979919,0.859693586826324,-0.443377465009689,0.339851975440979,0.805907309055328,-0.484782367944717,0.320102483034134,0.774057388305664,-0.546231985092163,0.205807149410248,0.943327367305756,-0.260339319705963,0.234425261616707,0.908260822296143,-0.346564501523972,0.179319515824318,0.919459819793701,-0.349911451339722,0.179319515824318,0.919459819793701,-0.349911451339722,0.234425261616707,0.908260822296143,-0.346564501523972,0.253659605979919,0.859693586826324,-0.443377465009689,0.476693004369736,0.872381091117859,-0.108235366642475,0.453633397817612,0.89000791311264,-0.0458533726632595,0.492456704378128,0.866559684276581,-0.0809975862503052,0.454296976327896,0.89072448015213,0.0149661796167493,0.453633397817612,0.89000791311264,-0.0458533726632595,0.408609479665756,0.91266942024231,0.00852930825203657,0.406765043735504,0.912230789661407,0.0487553849816322,0.390862971544266,0.919931590557098,0.0308525115251541,0.382722288370132,0.921943783760071,0.0595252402126789,0.408609479665756,0.91266942024231,0.00852930825203657,0.406765043735504,0.912230789661407,0.0487553849816322, +0.454296976327896,0.89072448015213,0.0149661796167493,0.118899367749691,0.817389488220215,-0.563681840896606,0.114644072949886,0.838460803031921,-0.532766461372375,0.170330449938774,0.843351483345032,-0.509652495384216,0.170330449938774,0.843351483345032,-0.509652495384216,0.218807771801949,0.831978857517242,-0.50983738899231,0.233830511569977,0.795603334903717,-0.558872580528259,0.354062259197235,0.770267009735107,-0.530404210090637,0.233830511569977,0.795603334903717,-0.558872580528259,0.309797763824463,0.811230778694153,-0.495913088321686,0.359015226364136,0.803923487663269,-0.474146544933319,0.414828330278397,0.758806884288788,-0.502124905586243,0.371785789728165,0.741241753101349,-0.558870136737823,0.430246710777283,0.732872366905212,-0.527053773403168,0.309797763824463,0.811230778694153,-0.495913088321686,0.371785789728165,0.741241753101349,-0.558870136737823,0.447105318307877,0.742194473743439,-0.499243468046188,0.414828330278397,0.758806884288788,-0.502124905586243,0.445625871419907,0.779344320297241,-0.440499603748322,0.54765772819519,0.812749028205872,-0.198770895600319,0.572409212589264,0.772989511489868,-0.27355968952179,0.511251866817474,0.821829676628113,-0.251430511474609,0.526549518108368,0.840138673782349,-0.130047932267189,0.54765772819519,0.812749028205872,-0.198770895600319,0.491233974695206,0.852532625198364,-0.178541868925095,0.476693004369736,0.872381091117859,-0.108235366642475,0.492456704378128,0.866559684276581,-0.0809975862503052,0.526549518108368,0.840138673782349,-0.130047932267189,0.490085422992706,0.771808505058289,-0.405126869678497,0.468974411487579,0.756544172763824,-0.455745279788971,0.445625871419907,0.779344320297241,-0.440499603748322,0.490085422992706,0.771808505058289,-0.405126869678497,0.487005978822708,0.79820990562439,-0.354522228240967,0.545640707015991,0.752583563327789,-0.368638068437576,0.545640707015991,0.752583563327789,-0.368638068437576,0.487005978822708,0.79820990562439,-0.354522228240967,0.572409212589264,0.772989511489868,-0.27355968952179,0.118899367749691,0.817389488220215,-0.563681840896606, +0.021154185757041,0.784523785114288,-0.61973762512207,0.114644072949886,0.838460803031921,-0.532766461372375,-0.0191428549587727,0.657285034656525,-0.753398835659027,-0.0887010544538498,0.720294594764709,-0.68797355890274,0.021154185757041,0.784523785114288,-0.61973762512207,-0.144780248403549,0.725558936595917,-0.672757565975189,-0.0887010544538498,0.720294594764709,-0.68797355890274,-0.0886926203966141,0.683487296104431,-0.724554061889648,-0.144780248403549,0.725558936595917,-0.672757565975189,-0.0886926203966141,0.683487296104431,-0.724554061889648,-0.136902183294296,0.746074318885803,-0.651637017726898,-0.136902183294296,0.746074318885803,-0.651637017726898,-0.190848618745804,0.709043025970459,-0.678848028182983,-0.124049536883831,0.716469883918762,-0.686500072479248,-0.0588106364011765,0.634355902671814,-0.770800769329071,-0.124049536883831,0.716469883918762,-0.686500072479248,-0.187949955463409,0.644588828086853,-0.741066753864288,0.0466557182371616,0.634668111801147,-0.771375119686127,-0.0588106364011765,0.634355902671814,-0.770800769329071,-0.00404770625755191,0.606877982616425,-0.794784605503082,0.0466557182371616,0.634668111801147,-0.771375119686127,0.00432480406016111,0.57669985294342,-0.816944539546967,0.0607711300253868,0.629403114318848,-0.774698972702026,0.0372019484639168,0.848371863365173,0.528091907501221,0.026267534121871,0.826435208320618,0.562418639659882,0.021785294637084,0.799495697021484,0.600276589393616,0.142487347126007,0.866297125816345,0.478776067495346,0.0372019484639168,0.848371863365173,0.528091907501221,0.12978108227253,0.830853641033173,0.541145980358124,0.01594203338027,0.756135642528534,0.654220581054688,0.026267534121871,0.826435208320618,0.562418639659882,0.0248698219656944,0.784355819225311,0.619812309741974,0.308866918087006,0.803936541080475,0.508219540119171,0.205381125211716,0.890813946723938,0.405301123857498,0.142487347126007,0.866297125816345,0.478776067495346,0.310895413160324,0.888770639896393,0.336794644594193,0.298770874738693,0.9144486784935,0.272982627153397,0.254799067974091,0.913672626018524,0.316669553518295, +0.293134748935699,0.865984261035919,0.405145853757858,0.254799067974091,0.913672626018524,0.316669553518295,0.205381125211716,0.890813946723938,0.405301123857498,0.284488618373871,0.937442898750305,0.20066636800766,0.32000344991684,0.915695250034332,0.243104681372643,0.388461589813232,0.900217473506927,0.196738630533218,0.393349409103394,0.877269744873047,0.275088876485825,0.32000344991684,0.915695250034332,0.243104681372643,0.298770874738693,0.9144486784935,0.272982627153397,0.413496732711792,0.899041593074799,0.144028902053833,0.348656266927719,0.928065419197083,0.13089445233345,0.388461589813232,0.900217473506927,0.196738630533218,0.413496732711792,0.899041593074799,0.144028902053833,0.406765043735504,0.912230789661407,0.0487553849816322,0.382722288370132,0.921943783760071,0.0595252402126789,0.205807149410248,0.943327367305756,-0.260339319705963,0.162010014057159,0.970295548439026,-0.179664298892021,0.264844954013824,0.949947357177734,-0.165701657533646,0.162010014057159,0.970295548439026,-0.179664298892021,0.197186753153801,0.974767327308655,-0.104623079299927,0.264844954013824,0.949947357177734,-0.165701657533646,0.197186753153801,0.974767327308655,-0.104623079299927,0.219225183129311,0.972016096115112,-0.0844090357422829,0.20693464577198,0.972486019134521,-0.106999740004539,0.302150517702103,0.528000295162201,-0.793675363063812,0.355790972709656,0.585541069507599,-0.728391587734222,0.318044990301132,0.587348818778992,-0.744223475456238,0.381892055273056,0.672660827636719,-0.633786797523499,0.389607965946198,0.644710540771484,-0.657688200473785,0.355790972709656,0.585541069507599,-0.728391587734222,0.389607965946198,0.644710540771484,-0.657688200473785,0.381892055273056,0.672660827636719,-0.633786797523499,0.419959634542465,0.688457012176514,-0.591321229934692,0.320102483034134,0.774057388305664,-0.546231985092163,0.373165547847748,0.722598195075989,-0.581892728805542,0.419959634542465,0.688457012176514,-0.591321229934692,0.253659605979919,0.859693586826324,-0.443377465009689,0.320102483034134,0.774057388305664,-0.546231985092163, +0.191010385751724,0.819460272789001,-0.540369987487793,0.205807149410248,0.943327367305756,-0.260339319705963,0.179319515824318,0.919459819793701,-0.349911451339722,0.143755674362183,0.957009315490723,-0.251927196979523,0.173202663660049,0.872265160083771,-0.457333922386169,0.179319515824318,0.919459819793701,-0.349911451339722,0.253659605979919,0.859693586826324,-0.443377465009689,0.496904879808426,0.867409408092499,-0.0261996183544397,0.492456704378128,0.866559684276581,-0.0809975862503052,0.453633397817612,0.89000791311264,-0.0458533726632595,0.453633397817612,0.89000791311264,-0.0458533726632595,0.454296976327896,0.89072448015213,0.0149661796167493,0.496904879808426,0.867409408092499,-0.0261996183544397,0.469757735729218,0.880091071128845,0.0690457299351692,0.454296976327896,0.89072448015213,0.0149661796167493,0.406765043735504,0.912230789661407,0.0487553849816322,0.118899367749691,0.817389488220215,-0.563681840896606,0.170330449938774,0.843351483345032,-0.509652495384216,0.233830511569977,0.795603334903717,-0.558872580528259,0.305609524250031,0.714789092540741,-0.629030406475067,0.233830511569977,0.795603334903717,-0.558872580528259,0.354062259197235,0.770267009735107,-0.530404210090637,0.354062259197235,0.770267009735107,-0.530404210090637,0.309797763824463,0.811230778694153,-0.495913088321686,0.430246710777283,0.732872366905212,-0.527053773403168,0.414828330278397,0.758806884288788,-0.502124905586243,0.375621914863586,0.722414612770081,-0.580538749694824,0.371785789728165,0.741241753101349,-0.558870136737823,0.399067968130112,0.713420510292053,-0.575999677181244,0.430246710777283,0.732872366905212,-0.527053773403168,0.371785789728165,0.741241753101349,-0.558870136737823,0.447105318307877,0.742194473743439,-0.499243468046188,0.375621914863586,0.722414612770081,-0.580538749694824,0.414828330278397,0.758806884288788,-0.502124905586243,0.447105318307877,0.742194473743439,-0.499243468046188,0.445625871419907,0.779344320297241,-0.440499603748322,0.468974411487579,0.756544172763824,-0.455745279788971,0.599774241447449,0.77023309469223,-0.21682196855545, +0.572409212589264,0.772989511489868,-0.27355968952179,0.54765772819519,0.812749028205872,-0.198770895600319,0.579628109931946,0.799601972103119,-0.157059669494629,0.54765772819519,0.812749028205872,-0.198770895600319,0.526549518108368,0.840138673782349,-0.130047932267189,0.526549518108368,0.840138673782349,-0.130047932267189,0.492456704378128,0.866559684276581,-0.0809975862503052,0.546792805194855,0.83323860168457,-0.0820419639348984,0.468974411487579,0.756544172763824,-0.455745279788971,0.490085422992706,0.771808505058289,-0.405126869678497,0.525380194187164,0.730344951152802,-0.436545252799988,0.490085422992706,0.771808505058289,-0.405126869678497,0.545640707015991,0.752583563327789,-0.368638068437576,0.525380194187164,0.730344951152802,-0.436545252799988,0.545640707015991,0.752583563327789,-0.368638068437576,0.572409212589264,0.772989511489868,-0.27355968952179,0.574997842311859,0.766358137130737,-0.286482989788055,0.021154185757041,0.784523785114288,-0.61973762512207,0.118899367749691,0.817389488220215,-0.563681840896606,0.142257302999496,0.743106961250305,-0.653876662254334,-0.0191428549587727,0.657285034656525,-0.753398835659027,-0.0886926203966141,0.683487296104431,-0.724554061889648,-0.0887010544538498,0.720294594764709,-0.68797355890274,0.021154185757041,0.784523785114288,-0.61973762512207,0.0676006972789764,0.661778390407562,-0.746645390987396,-0.0191428549587727,0.657285034656525,-0.753398835659027,-0.0633920058608055,0.751759767532349,-0.656382918357849,-0.136902183294296,0.746074318885803,-0.651637017726898,-0.0886926203966141,0.683487296104431,-0.724554061889648,-0.136902183294296,0.746074318885803,-0.651637017726898,-0.11223516613245,0.734442830085754,-0.669325649738312,-0.190848618745804,0.709043025970459,-0.678848028182983,-0.187949955463409,0.644588828086853,-0.741066753864288,-0.124049536883831,0.716469883918762,-0.686500072479248,-0.190848618745804,0.709043025970459,-0.678848028182983,-0.187949955463409,0.644588828086853,-0.741066753864288,-0.210074469447136,0.578193247318268,-0.788391470909119, +-0.0588106364011765,0.634355902671814,-0.770800769329071,-0.00404770625755191,0.606877982616425,-0.794784605503082,-0.0588106364011765,0.634355902671814,-0.770800769329071,-0.0641427487134933,0.575211465358734,-0.815485954284668,0.00432480406016111,0.57669985294342,-0.816944539546967,0.0466557182371616,0.634668111801147,-0.771375119686127,-0.00404770625755191,0.606877982616425,-0.794784605503082,0.026267534121871,0.826435208320618,0.562418639659882,0.01594203338027,0.756135642528534,0.654220581054688,0.021785294637084,0.799495697021484,0.600276589393616,0.021785294637084,0.799495697021484,0.600276589393616,0.117968305945396,0.809223473072052,0.575535118579865,0.0372019484639168,0.848371863365173,0.528091907501221,0.12978108227253,0.830853641033173,0.541145980358124,0.0372019484639168,0.848371863365173,0.528091907501221,0.117968305945396,0.809223473072052,0.575535118579865,0.12978108227253,0.830853641033173,0.541145980358124,0.23736660182476,0.78503543138504,0.572168171405792,0.142487347126007,0.866297125816345,0.478776067495346,0.293134748935699,0.865984261035919,0.405145853757858,0.205381125211716,0.890813946723938,0.405301123857498,0.308866918087006,0.803936541080475,0.508219540119171,0.308866918087006,0.803936541080475,0.508219540119171,0.142487347126007,0.866297125816345,0.478776067495346,0.23736660182476,0.78503543138504,0.572168171405792,0.393349409103394,0.877269744873047,0.275088876485825,0.298770874738693,0.9144486784935,0.272982627153397,0.310895413160324,0.888770639896393,0.336794644594193,0.254799067974091,0.913672626018524,0.316669553518295,0.293134748935699,0.865984261035919,0.405145853757858,0.310895413160324,0.888770639896393,0.336794644594193,0.393349409103394,0.877269744873047,0.275088876485825,0.388461589813232,0.900217473506927,0.196738630533218,0.32000344991684,0.915695250034332,0.243104681372643,0.413496732711792,0.899041593074799,0.144028902053833,0.388461589813232,0.900217473506927,0.196738630533218,0.443084269762039,0.868708968162537,0.221406683325768,0.413496732711792,0.899041593074799,0.144028902053833, +0.41399934887886,0.901828646659851,0.123731650412083,0.406765043735504,0.912230789661407,0.0487553849816322,0.143755674362183,0.957009315490723,-0.251927196979523,0.162010014057159,0.970295548439026,-0.179664298892021,0.205807149410248,0.943327367305756,-0.260339319705963,0.193352088332176,0.971081852912903,-0.140053197741508,0.197186753153801,0.974767327308655,-0.104623079299927,0.162010014057159,0.970295548439026,-0.179664298892021,0.219225183129311,0.972016096115112,-0.0844090357422829,0.197186753153801,0.974767327308655,-0.104623079299927,0.193352088332176,0.971081852912903,-0.140053197741508,0.217062219977379,0.618967473506927,-0.754826545715332,0.355790972709656,0.585541069507599,-0.728391587734222,0.302150517702103,0.528000295162201,-0.793675363063812,0.217062219977379,0.618967473506927,-0.754826545715332,0.381892055273056,0.672660827636719,-0.633786797523499,0.355790972709656,0.585541069507599,-0.728391587734222,0.311028599739075,0.759947299957275,-0.570737361907959,0.419959634542465,0.688457012176514,-0.591321229934692,0.381892055273056,0.672660827636719,-0.633786797523499,0.320102483034134,0.774057388305664,-0.546231985092163,0.419959634542465,0.688457012176514,-0.591321229934692,0.311028599739075,0.759947299957275,-0.570737361907959,0.311028599739075,0.759947299957275,-0.570737361907959,0.191010385751724,0.819460272789001,-0.540369987487793,0.320102483034134,0.774057388305664,-0.546231985092163,0.173202663660049,0.872265160083771,-0.457333922386169,0.253659605979919,0.859693586826324,-0.443377465009689,0.191010385751724,0.819460272789001,-0.540369987487793,0.143755674362183,0.957009315490723,-0.251927196979523,0.179319515824318,0.919459819793701,-0.349911451339722,0.148621767759323,0.945332229137421,-0.290273010730743,0.117552898824215,0.884101092815399,-0.452268123626709,0.179319515824318,0.919459819793701,-0.349911451339722,0.173202663660049,0.872265160083771,-0.457333922386169,0.546792805194855,0.83323860168457,-0.0820419639348984,0.492456704378128,0.866559684276581,-0.0809975862503052,0.496904879808426,0.867409408092499,-0.0261996183544397, +0.454296976327896,0.89072448015213,0.0149661796167493,0.509147584438324,0.860108911991119,0.03132488951087,0.496904879808426,0.867409408092499,-0.0261996183544397,0.509147584438324,0.860108911991119,0.03132488951087,0.454296976327896,0.89072448015213,0.0149661796167493,0.469757735729218,0.880091071128845,0.0690457299351692,0.469757735729218,0.880091071128845,0.0690457299351692,0.406765043735504,0.912230789661407,0.0487553849816322,0.41399934887886,0.901828646659851,0.123731650412083,0.142257302999496,0.743106961250305,-0.653876662254334,0.118899367749691,0.817389488220215,-0.563681840896606,0.233830511569977,0.795603334903717,-0.558872580528259,0.229081884026527,0.722513198852539,-0.652300536632538,0.233830511569977,0.795603334903717,-0.558872580528259,0.305609524250031,0.714789092540741,-0.629030406475067,0.305609524250031,0.714789092540741,-0.629030406475067,0.354062259197235,0.770267009735107,-0.530404210090637,0.404070764780045,0.708622395992279,-0.578429698944092,0.430246710777283,0.732872366905212,-0.527053773403168,0.404070764780045,0.708622395992279,-0.578429698944092,0.354062259197235,0.770267009735107,-0.530404210090637,0.399067968130112,0.713420510292053,-0.575999677181244,0.371785789728165,0.741241753101349,-0.558870136737823,0.375621914863586,0.722414612770081,-0.580538749694824,0.399067968130112,0.713420510292053,-0.575999677181244,0.421268969774246,0.683116972446442,-0.596559703350067,0.430246710777283,0.732872366905212,-0.527053773403168,0.375621914863586,0.722414612770081,-0.580538749694824,0.447105318307877,0.742194473743439,-0.499243468046188,0.437261492013931,0.695259034633636,-0.570453524589539,0.531440496444702,0.678525447845459,-0.507123231887817,0.447105318307877,0.742194473743439,-0.499243468046188,0.468974411487579,0.756544172763824,-0.455745279788971,0.599774241447449,0.77023309469223,-0.21682196855545,0.59544438123703,0.764640688896179,-0.246516600251198,0.572409212589264,0.772989511489868,-0.27355968952179,0.579628109931946,0.799601972103119,-0.157059669494629,0.599774241447449,0.77023309469223,-0.21682196855545, +0.54765772819519,0.812749028205872,-0.198770895600319,0.579628109931946,0.799601972103119,-0.157059669494629,0.526549518108368,0.840138673782349,-0.130047932267189,0.546792805194855,0.83323860168457,-0.0820419639348984,0.468974411487579,0.756544172763824,-0.455745279788971,0.525380194187164,0.730344951152802,-0.436545252799988,0.531440496444702,0.678525447845459,-0.507123231887817,0.545640707015991,0.752583563327789,-0.368638068437576,0.542956411838531,0.67732572555542,-0.496415346860886,0.525380194187164,0.730344951152802,-0.436545252799988,0.572409212589264,0.772989511489868,-0.27355968952179,0.59544438123703,0.764640688896179,-0.246516600251198,0.574997842311859,0.766358137130737,-0.286482989788055,0.582184314727783,0.75523179769516,-0.3011414706707,0.545640707015991,0.752583563327789,-0.368638068437576,0.574997842311859,0.766358137130737,-0.286482989788055,0.021154185757041,0.784523785114288,-0.61973762512207,0.142257302999496,0.743106961250305,-0.653876662254334,0.0676006972789764,0.661778390407562,-0.746645390987396,0.02796570956707,0.693384885787964,-0.720024347305298,-0.0886926203966141,0.683487296104431,-0.724554061889648,-0.0191428549587727,0.657285034656525,-0.753398835659027,0.0676006972789764,0.661778390407562,-0.746645390987396,0.0739368423819542,0.602798640727997,-0.79446017742157,-0.0191428549587727,0.657285034656525,-0.753398835659027,-0.11223516613245,0.734442830085754,-0.669325649738312,-0.136902183294296,0.746074318885803,-0.651637017726898,-0.0633920058608055,0.751759767532349,-0.656382918357849,0.02796570956707,0.693384885787964,-0.720024347305298,-0.0633920058608055,0.751759767532349,-0.656382918357849,-0.0886926203966141,0.683487296104431,-0.724554061889648,-0.11223516613245,0.734442830085754,-0.669325649738312,-0.165732532739639,0.643827378749847,-0.747006595134735,-0.190848618745804,0.709043025970459,-0.678848028182983,-0.190848618745804,0.709043025970459,-0.678848028182983,-0.243878722190857,0.619836747646332,-0.745872259140015,-0.187949955463409,0.644588828086853,-0.741066753864288,-0.187949955463409,0.644588828086853,-0.741066753864288, +-0.243878722190857,0.619836747646332,-0.745872259140015,-0.210074469447136,0.578193247318268,-0.788391470909119,-0.0641427487134933,0.575211465358734,-0.815485954284668,-0.0588106364011765,0.634355902671814,-0.770800769329071,-0.210074469447136,0.578193247318268,-0.788391470909119,0.00432480406016111,0.57669985294342,-0.816944539546967,-0.00404770625755191,0.606877982616425,-0.794784605503082,-0.0641427487134933,0.575211465358734,-0.815485954284668,0.021785294637084,0.799495697021484,0.600276589393616,0.01594203338027,0.756135642528534,0.654220581054688,-0.0146539704874158,0.715926289558411,0.698021948337555,0.117968305945396,0.809223473072052,0.575535118579865,0.021785294637084,0.799495697021484,0.600276589393616,0.114296369254589,0.773562490940094,0.623327553272247,0.12978108227253,0.830853641033173,0.541145980358124,0.117968305945396,0.809223473072052,0.575535118579865,0.23736660182476,0.78503543138504,0.572168171405792,0.391527682542801,0.825433075428009,0.406652361154556,0.293134748935699,0.865984261035919,0.405145853757858,0.308866918087006,0.803936541080475,0.508219540119171,0.308866918087006,0.803936541080475,0.508219540119171,0.23736660182476,0.78503543138504,0.572168171405792,0.41337862610817,0.708797156810761,0.57159823179245,0.393349409103394,0.877269744873047,0.275088876485825,0.310895413160324,0.888770639896393,0.336794644594193,0.391527682542801,0.825433075428009,0.406652361154556,0.391527682542801,0.825433075428009,0.406652361154556,0.310895413160324,0.888770639896393,0.336794644594193,0.293134748935699,0.865984261035919,0.405145853757858,0.388461589813232,0.900217473506927,0.196738630533218,0.393349409103394,0.877269744873047,0.275088876485825,0.443084269762039,0.868708968162537,0.221406683325768,0.443084269762039,0.868708968162537,0.221406683325768,0.382174581289291,0.902337610721588,0.199321508407593,0.413496732711792,0.899041593074799,0.144028902053833,0.41399934887886,0.901828646659851,0.123731650412083,0.413496732711792,0.899041593074799,0.144028902053833,0.382174581289291,0.902337610721588,0.199321508407593, +0.143755674362183,0.957009315490723,-0.251927196979523,0.169740065932274,0.961753070354462,-0.214986652135849,0.162010014057159,0.970295548439026,-0.179664298892021,0.169740065932274,0.961753070354462,-0.214986652135849,0.193352088332176,0.971081852912903,-0.140053197741508,0.162010014057159,0.970295548439026,-0.179664298892021,0.309910953044891,0.941755056381226,-0.130585119128227,0.219225183129311,0.972016096115112,-0.0844090357422829,0.193352088332176,0.971081852912903,-0.140053197741508,0.217062219977379,0.618967473506927,-0.754826545715332,0.302150517702103,0.528000295162201,-0.793675363063812,0.234946221113205,0.526634216308594,-0.816980123519897,0.381892055273056,0.672660827636719,-0.633786797523499,0.217062219977379,0.618967473506927,-0.754826545715332,0.222300052642822,0.719380021095276,-0.658084273338318,0.381892055273056,0.672660827636719,-0.633786797523499,0.222300052642822,0.719380021095276,-0.658084273338318,0.311028599739075,0.759947299957275,-0.570737361907959,0.311028599739075,0.759947299957275,-0.570737361907959,0.152117788791656,0.781608164310455,-0.604936897754669,0.191010385751724,0.819460272789001,-0.540369987487793,0.191010385751724,0.819460272789001,-0.540369987487793,0.0757560655474663,0.818669259548187,-0.569246411323547,0.173202663660049,0.872265160083771,-0.457333922386169,0.179319515824318,0.919459819793701,-0.349911451339722,0.113188482820988,0.915011763572693,-0.387223064899445,0.148621767759323,0.945332229137421,-0.290273010730743,0.130088329315186,0.959737241268158,-0.248960673809052,0.143755674362183,0.957009315490723,-0.251927196979523,0.148621767759323,0.945332229137421,-0.290273010730743,0.179319515824318,0.919459819793701,-0.349911451339722,0.117552898824215,0.884101092815399,-0.452268123626709,0.113188482820988,0.915011763572693,-0.387223064899445,0.117552898824215,0.884101092815399,-0.452268123626709,0.173202663660049,0.872265160083771,-0.457333922386169,0.0757560655474663,0.818669259548187,-0.569246411323547,0.496904879808426,0.867409408092499,-0.0261996183544397,0.557869732379913,0.829904198646545,-0.00635257363319397, +0.546792805194855,0.83323860168457,-0.0820419639348984,0.496904879808426,0.867409408092499,-0.0261996183544397,0.509147584438324,0.860108911991119,0.03132488951087,0.557869732379913,0.829904198646545,-0.00635257363319397,0.509147584438324,0.860108911991119,0.03132488951087,0.469757735729218,0.880091071128845,0.0690457299351692,0.539727210998535,0.83778840303421,0.0824924036860466,0.467704206705093,0.868886172771454,0.162140235304832,0.469757735729218,0.880091071128845,0.0690457299351692,0.41399934887886,0.901828646659851,0.123731650412083,0.229081884026527,0.722513198852539,-0.652300536632538,0.142257302999496,0.743106961250305,-0.653876662254334,0.233830511569977,0.795603334903717,-0.558872580528259,0.229081884026527,0.722513198852539,-0.652300536632538,0.305609524250031,0.714789092540741,-0.629030406475067,0.217460244894028,0.664725065231323,-0.714738726615906,0.404070764780045,0.708622395992279,-0.578429698944092,0.345322072505951,0.65240466594696,-0.674626290798187,0.305609524250031,0.714789092540741,-0.629030406475067,0.430246710777283,0.732872366905212,-0.527053773403168,0.421268969774246,0.683116972446442,-0.596559703350067,0.404070764780045,0.708622395992279,-0.578429698944092,0.399067968130112,0.713420510292053,-0.575999677181244,0.375621914863586,0.722414612770081,-0.580538749694824,0.384179383516312,0.692308306694031,-0.610831618309021,0.384179383516312,0.692308306694031,-0.610831618309021,0.421268969774246,0.683116972446442,-0.596559703350067,0.399067968130112,0.713420510292053,-0.575999677181244,0.447105318307877,0.742194473743439,-0.499243468046188,0.531440496444702,0.678525447845459,-0.507123231887817,0.437261492013931,0.695259034633636,-0.570453524589539,0.384179383516312,0.692308306694031,-0.610831618309021,0.375621914863586,0.722414612770081,-0.580538749694824,0.437261492013931,0.695259034633636,-0.570453524589539,0.595508277416229,0.778462052345276,-0.198410391807556,0.59544438123703,0.764640688896179,-0.246516600251198,0.599774241447449,0.77023309469223,-0.21682196855545,0.595508277416229,0.778462052345276,-0.198410391807556, +0.599774241447449,0.77023309469223,-0.21682196855545,0.579628109931946,0.799601972103119,-0.157059669494629,0.579628109931946,0.799601972103119,-0.157059669494629,0.546792805194855,0.83323860168457,-0.0820419639348984,0.58712100982666,0.804862856864929,-0.0865134447813034,0.525380194187164,0.730344951152802,-0.436545252799988,0.542956411838531,0.67732572555542,-0.496415346860886,0.531440496444702,0.678525447845459,-0.507123231887817,0.542531728744507,0.693063914775848,-0.474680483341217,0.542956411838531,0.67732572555542,-0.496415346860886,0.545640707015991,0.752583563327789,-0.368638068437576,0.59544438123703,0.764640688896179,-0.246516600251198,0.590087473392487,0.767451882362366,-0.25062769651413,0.574997842311859,0.766358137130737,-0.286482989788055,0.602725684642792,0.705246865749359,-0.373294085264206,0.545640707015991,0.752583563327789,-0.368638068437576,0.582184314727783,0.75523179769516,-0.3011414706707,0.582184314727783,0.75523179769516,-0.3011414706707,0.574997842311859,0.766358137130737,-0.286482989788055,0.590087473392487,0.767451882362366,-0.25062769651413,0.217460244894028,0.664725065231323,-0.714738726615906,0.0676006972789764,0.661778390407562,-0.746645390987396,0.142257302999496,0.743106961250305,-0.653876662254334,0.0739368423819542,0.602798640727997,-0.79446017742157,0.02796570956707,0.693384885787964,-0.720024347305298,-0.0191428549587727,0.657285034656525,-0.753398835659027,0.0739368423819542,0.602798640727997,-0.79446017742157,0.0676006972789764,0.661778390407562,-0.746645390987396,0.124131344258785,0.573140799999237,-0.810000538825989,-0.0139267425984144,0.731887876987457,-0.681282579898834,-0.11223516613245,0.734442830085754,-0.669325649738312,-0.0633920058608055,0.751759767532349,-0.656382918357849,-0.0633920058608055,0.751759767532349,-0.656382918357849,0.02796570956707,0.693384885787964,-0.720024347305298,-0.0139267425984144,0.731887876987457,-0.681282579898834,-0.11223516613245,0.734442830085754,-0.669325649738312,-0.0171319171786308,0.648746371269226,-0.760811805725098,-0.165732532739639,0.643827378749847,-0.747006595134735, +-0.190848618745804,0.709043025970459,-0.678848028182983,-0.165732532739639,0.643827378749847,-0.747006595134735,-0.243878722190857,0.619836747646332,-0.745872259140015,-0.258984386920929,0.525762438774109,-0.810247361660004,-0.210074469447136,0.578193247318268,-0.788391470909119,-0.243878722190857,0.619836747646332,-0.745872259140015,-0.0663641169667244,0.619469821453094,-0.782210230827332,-0.0641427487134933,0.575211465358734,-0.815485954284668,-0.210074469447136,0.578193247318268,-0.788391470909119,0.00432480406016111,0.57669985294342,-0.816944539546967,-0.0641427487134933,0.575211465358734,-0.815485954284668,-0.0663641169667244,0.619469821453094,-0.782210230827332,0.0170269832015038,0.698514223098755,0.715393483638763,0.021785294637084,0.799495697021484,0.600276589393616,-0.0146539704874158,0.715926289558411,0.698021948337555,0.0170269832015038,0.698514223098755,0.715393483638763,0.114296369254589,0.773562490940094,0.623327553272247,0.021785294637084,0.799495697021484,0.600276589393616,0.19957023859024,0.761249423027039,0.616985321044922,0.117968305945396,0.809223473072052,0.575535118579865,0.114296369254589,0.773562490940094,0.623327553272247,0.19957023859024,0.761249423027039,0.616985321044922,0.23736660182476,0.78503543138504,0.572168171405792,0.117968305945396,0.809223473072052,0.575535118579865,0.391527682542801,0.825433075428009,0.406652361154556,0.308866918087006,0.803936541080475,0.508219540119171,0.467697411775589,0.740078389644623,0.483262836933136,0.297709405422211,0.713980793952942,0.633719563484192,0.41337862610817,0.708797156810761,0.57159823179245,0.23736660182476,0.78503543138504,0.572168171405792,0.41337862610817,0.708797156810761,0.57159823179245,0.467697411775589,0.740078389644623,0.483262836933136,0.308866918087006,0.803936541080475,0.508219540119171,0.393349409103394,0.877269744873047,0.275088876485825,0.391527682542801,0.825433075428009,0.406652361154556,0.472318738698959,0.808556795120239,0.350928276777267,0.443084269762039,0.868708968162537,0.221406683325768,0.393349409103394,0.877269744873047,0.275088876485825, +0.461672753095627,0.841235399246216,0.28139141201973,0.443084269762039,0.868708968162537,0.221406683325768,0.368303179740906,0.894634366035461,0.252946645021439,0.382174581289291,0.902337610721588,0.199321508407593,0.467704206705093,0.868886172771454,0.162140235304832,0.41399934887886,0.901828646659851,0.123731650412083,0.382174581289291,0.902337610721588,0.199321508407593,0.130088329315186,0.959737241268158,-0.248960673809052,0.169740065932274,0.961753070354462,-0.214986652135849,0.143755674362183,0.957009315490723,-0.251927196979523,0.169740065932274,0.961753070354462,-0.214986652135849,0.237725421786308,0.951165378093719,-0.196903303265572,0.193352088332176,0.971081852912903,-0.140053197741508,0.193352088332176,0.971081852912903,-0.140053197741508,0.327274292707443,0.925832211971283,-0.18901301920414,0.309910953044891,0.941755056381226,-0.130585119128227,0.217062219977379,0.618967473506927,-0.754826545715332,0.234946221113205,0.526634216308594,-0.816980123519897,0.12888665497303,0.583809554576874,-0.801595032215118,0.101420320570469,0.71797239780426,-0.688643157482147,0.222300052642822,0.719380021095276,-0.658084273338318,0.217062219977379,0.618967473506927,-0.754826545715332,0.311028599739075,0.759947299957275,-0.570737361907959,0.222300052642822,0.719380021095276,-0.658084273338318,0.152117788791656,0.781608164310455,-0.604936897754669,0.191010385751724,0.819460272789001,-0.540369987487793,0.152117788791656,0.781608164310455,-0.604936897754669,0.0832928642630577,0.765946269035339,-0.637486040592194,0.191010385751724,0.819460272789001,-0.540369987487793,0.0832928642630577,0.765946269035339,-0.637486040592194,0.0757560655474663,0.818669259548187,-0.569246411323547,0.0660068467259407,0.935367286205292,-0.347463607788086,0.148621767759323,0.945332229137421,-0.290273010730743,0.113188482820988,0.915011763572693,-0.387223064899445,0.130088329315186,0.959737241268158,-0.248960673809052,0.148621767759323,0.945332229137421,-0.290273010730743,0.0660068467259407,0.935367286205292,-0.347463607788086,0.117552898824215,0.884101092815399,-0.452268123626709, +0.0221755113452673,0.87104719877243,-0.490698456764221,0.113188482820988,0.915011763572693,-0.387223064899445,0.117552898824215,0.884101092815399,-0.452268123626709,0.0757560655474663,0.818669259548187,-0.569246411323547,0.0221755113452673,0.87104719877243,-0.490698456764221,0.546792805194855,0.83323860168457,-0.0820419639348984,0.557869732379913,0.829904198646545,-0.00635257363319397,0.596542179584503,0.802179872989655,-0.0253943391144276,0.509147584438324,0.860108911991119,0.03132488951087,0.560051023960114,0.827217221260071,0.045326940715313,0.557869732379913,0.829904198646545,-0.00635257363319397,0.467704206705093,0.868886172771454,0.162140235304832,0.539727210998535,0.83778840303421,0.0824924036860466,0.469757735729218,0.880091071128845,0.0690457299351692,0.509147584438324,0.860108911991119,0.03132488951087,0.539727210998535,0.83778840303421,0.0824924036860466,0.560051023960114,0.827217221260071,0.045326940715313,0.142257302999496,0.743106961250305,-0.653876662254334,0.229081884026527,0.722513198852539,-0.652300536632538,0.217460244894028,0.664725065231323,-0.714738726615906,0.217460244894028,0.664725065231323,-0.714738726615906,0.305609524250031,0.714789092540741,-0.629030406475067,0.345322072505951,0.65240466594696,-0.674626290798187,0.38496920466423,0.669518291950226,-0.635250985622406,0.345322072505951,0.65240466594696,-0.674626290798187,0.404070764780045,0.708622395992279,-0.578429698944092,0.38496920466423,0.669518291950226,-0.635250985622406,0.404070764780045,0.708622395992279,-0.578429698944092,0.421268969774246,0.683116972446442,-0.596559703350067,0.384179383516312,0.692308306694031,-0.610831618309021,0.376591086387634,0.623721301555634,-0.68494576215744,0.421268969774246,0.683116972446442,-0.596559703350067,0.531440496444702,0.678525447845459,-0.507123231887817,0.547009944915771,0.634893953800201,-0.545609354972839,0.437261492013931,0.695259034633636,-0.570453524589539,0.437261492013931,0.695259034633636,-0.570453524589539,0.42381227016449,0.612748205661774,-0.667025208473206,0.384179383516312,0.692308306694031,-0.610831618309021, +0.598540306091309,0.772003591060638,-0.213915705680847,0.59544438123703,0.764640688896179,-0.246516600251198,0.595508277416229,0.778462052345276,-0.198410391807556,0.595508277416229,0.778462052345276,-0.198410391807556,0.579628109931946,0.799601972103119,-0.157059669494629,0.625258803367615,0.770383179187775,-0.1247438788414,0.596542179584503,0.802179872989655,-0.0253943391144276,0.58712100982666,0.804862856864929,-0.0865134447813034,0.546792805194855,0.83323860168457,-0.0820419639348984,0.625258803367615,0.770383179187775,-0.1247438788414,0.579628109931946,0.799601972103119,-0.157059669494629,0.58712100982666,0.804862856864929,-0.0865134447813034,0.531440496444702,0.678525447845459,-0.507123231887817,0.542956411838531,0.67732572555542,-0.496415346860886,0.56039959192276,0.614671647548676,-0.555095374584198,0.542956411838531,0.67732572555542,-0.496415346860886,0.542531728744507,0.693063914775848,-0.474680483341217,0.502909004688263,0.659445405006409,-0.558761179447174,0.602725684642792,0.705246865749359,-0.373294085264206,0.542531728744507,0.693063914775848,-0.474680483341217,0.545640707015991,0.752583563327789,-0.368638068437576,0.598540306091309,0.772003591060638,-0.213915705680847,0.590087473392487,0.767451882362366,-0.25062769651413,0.59544438123703,0.764640688896179,-0.246516600251198,0.582184314727783,0.75523179769516,-0.3011414706707,0.63558954000473,0.721290409564972,-0.275256127119064,0.602725684642792,0.705246865749359,-0.373294085264206,0.582184314727783,0.75523179769516,-0.3011414706707,0.590087473392487,0.767451882362366,-0.25062769651413,0.63558954000473,0.721290409564972,-0.275256127119064,0.217460244894028,0.664725065231323,-0.714738726615906,0.124131344258785,0.573140799999237,-0.810000538825989,0.0676006972789764,0.661778390407562,-0.746645390987396,0.140238776803017,0.664030134677887,-0.734436452388763,0.02796570956707,0.693384885787964,-0.720024347305298,0.0739368423819542,0.602798640727997,-0.79446017742157,0.148026049137115,0.509942829608917,-0.847376227378845,0.0739368423819542,0.602798640727997,-0.79446017742157, +0.124131344258785,0.573140799999237,-0.810000538825989,-0.11223516613245,0.734442830085754,-0.669325649738312,-0.0139267425984144,0.731887876987457,-0.681282579898834,-0.0171319171786308,0.648746371269226,-0.760811805725098,0.113754495978355,0.658092856407166,-0.744294047355652,-0.0139267425984144,0.731887876987457,-0.681282579898834,0.02796570956707,0.693384885787964,-0.720024347305298,-0.025267718359828,0.580024719238281,-0.814206838607788,-0.165732532739639,0.643827378749847,-0.747006595134735,-0.0171319171786308,0.648746371269226,-0.760811805725098,-0.165732532739639,0.643827378749847,-0.747006595134735,-0.258984386920929,0.525762438774109,-0.810247361660004,-0.243878722190857,0.619836747646332,-0.745872259140015,-0.254110455513,0.491997241973877,-0.832686305046082,-0.210074469447136,0.578193247318268,-0.788391470909119,-0.258984386920929,0.525762438774109,-0.810247361660004,-0.0663641169667244,0.619469821453094,-0.782210230827332,-0.210074469447136,0.578193247318268,-0.788391470909119,-0.0769268795847893,0.613376796245575,-0.786035001277924,0.0170269832015038,0.698514223098755,0.715393483638763,0.181601673364639,0.712734460830688,0.677517712116241,0.114296369254589,0.773562490940094,0.623327553272247,0.19957023859024,0.761249423027039,0.616985321044922,0.114296369254589,0.773562490940094,0.623327553272247,0.181601673364639,0.712734460830688,0.677517712116241,0.297709405422211,0.713980793952942,0.633719563484192,0.23736660182476,0.78503543138504,0.572168171405792,0.19957023859024,0.761249423027039,0.616985321044922,0.391527682542801,0.825433075428009,0.406652361154556,0.467697411775589,0.740078389644623,0.483262836933136,0.472318738698959,0.808556795120239,0.350928276777267,0.297709405422211,0.713980793952942,0.633719563484192,0.427166730165482,0.660813987255096,0.617133140563965,0.41337862610817,0.708797156810761,0.57159823179245,0.41337862610817,0.708797156810761,0.57159823179245,0.43846470117569,0.708521902561188,0.552942395210266,0.467697411775589,0.740078389644623,0.483262836933136,0.461672753095627,0.841235399246216,0.28139141201973, +0.393349409103394,0.877269744873047,0.275088876485825,0.472318738698959,0.808556795120239,0.350928276777267,0.443084269762039,0.868708968162537,0.221406683325768,0.461672753095627,0.841235399246216,0.28139141201973,0.368303179740906,0.894634366035461,0.252946645021439,0.368303179740906,0.894634366035461,0.252946645021439,0.350773453712463,0.897852718830109,0.266117215156555,0.382174581289291,0.902337610721588,0.199321508407593,0.467704206705093,0.868886172771454,0.162140235304832,0.382174581289291,0.902337610721588,0.199321508407593,0.350773453712463,0.897852718830109,0.266117215156555,0.1285540163517,0.949606239795685,-0.285869777202606,0.169740065932274,0.961753070354462,-0.214986652135849,0.130088329315186,0.959737241268158,-0.248960673809052,0.237725421786308,0.951165378093719,-0.196903303265572,0.169740065932274,0.961753070354462,-0.214986652135849,0.376353442668915,0.88643616437912,-0.269423395395279,0.327274292707443,0.925832211971283,-0.18901301920414,0.193352088332176,0.971081852912903,-0.140053197741508,0.237725421786308,0.951165378093719,-0.196903303265572,0.327274292707443,0.925832211971283,-0.18901301920414,0.527967870235443,0.832068860530853,-0.170032829046249,0.309910953044891,0.941755056381226,-0.130585119128227,0.217062219977379,0.618967473506927,-0.754826545715332,0.12888665497303,0.583809554576874,-0.801595032215118,0.0531513653695583,0.662648737430573,-0.747041702270508,0.101420320570469,0.71797239780426,-0.688643157482147,0.152117788791656,0.781608164310455,-0.604936897754669,0.222300052642822,0.719380021095276,-0.658084273338318,0.0531513653695583,0.662648737430573,-0.747041702270508,0.101420320570469,0.71797239780426,-0.688643157482147,0.217062219977379,0.618967473506927,-0.754826545715332,0.101420320570469,0.71797239780426,-0.688643157482147,0.0832928642630577,0.765946269035339,-0.637486040592194,0.152117788791656,0.781608164310455,-0.604936897754669,0.0832928642630577,0.765946269035339,-0.637486040592194,-0.00821030512452126,0.745677471160889,-0.666256368160248,0.0757560655474663,0.818669259548187,-0.569246411323547, +0.0278516951948404,0.90336674451828,-0.427963435649872,0.0660068467259407,0.935367286205292,-0.347463607788086,0.113188482820988,0.915011763572693,-0.387223064899445,0.1285540163517,0.949606239795685,-0.285869777202606,0.130088329315186,0.959737241268158,-0.248960673809052,0.0660068467259407,0.935367286205292,-0.347463607788086,0.0278516951948404,0.90336674451828,-0.427963435649872,0.113188482820988,0.915011763572693,-0.387223064899445,0.0221755113452673,0.87104719877243,-0.490698456764221,-0.0682398155331612,0.807595252990723,-0.58577561378479,0.0221755113452673,0.87104719877243,-0.490698456764221,0.0757560655474663,0.818669259548187,-0.569246411323547,0.596542179584503,0.802179872989655,-0.0253943391144276,0.557869732379913,0.829904198646545,-0.00635257363319397,0.607103824615479,0.794148027896881,0.0274527966976166,0.607103824615479,0.794148027896881,0.0274527966976166,0.557869732379913,0.829904198646545,-0.00635257363319397,0.560051023960114,0.827217221260071,0.045326940715313,0.587581694126129,0.796381592750549,0.143261775374413,0.539727210998535,0.83778840303421,0.0824924036860466,0.467704206705093,0.868886172771454,0.162140235304832,0.539727210998535,0.83778840303421,0.0824924036860466,0.604619264602661,0.792817056179047,0.0766584575176239,0.560051023960114,0.827217221260071,0.045326940715313,0.217460244894028,0.664725065231323,-0.714738726615906,0.345322072505951,0.65240466594696,-0.674626290798187,0.255588740110397,0.596286833286285,-0.760996878147125,0.38496920466423,0.669518291950226,-0.635250985622406,0.37721836566925,0.622297763824463,-0.685894787311554,0.345322072505951,0.65240466594696,-0.674626290798187,0.38496920466423,0.669518291950226,-0.635250985622406,0.421268969774246,0.683116972446442,-0.596559703350067,0.37721836566925,0.622297763824463,-0.685894787311554,0.42381227016449,0.612748205661774,-0.667025208473206,0.376591086387634,0.623721301555634,-0.68494576215744,0.384179383516312,0.692308306694031,-0.610831618309021,0.376591086387634,0.623721301555634,-0.68494576215744,0.37721836566925,0.622297763824463,-0.685894787311554, +0.421268969774246,0.683116972446442,-0.596559703350067,0.531440496444702,0.678525447845459,-0.507123231887817,0.609678328037262,0.584020495414734,-0.535921812057495,0.547009944915771,0.634893953800201,-0.545609354972839,0.475273311138153,0.638861000537872,-0.604955971240997,0.437261492013931,0.695259034633636,-0.570453524589539,0.547009944915771,0.634893953800201,-0.545609354972839,0.42381227016449,0.612748205661774,-0.667025208473206,0.437261492013931,0.695259034633636,-0.570453524589539,0.475273311138153,0.638861000537872,-0.604955971240997,0.598540306091309,0.772003591060638,-0.213915705680847,0.595508277416229,0.778462052345276,-0.198410391807556,0.606863141059875,0.775366544723511,-0.174710169434547,0.606863141059875,0.775366544723511,-0.174710169434547,0.595508277416229,0.778462052345276,-0.198410391807556,0.625258803367615,0.770383179187775,-0.1247438788414,0.596542179584503,0.802179872989655,-0.0253943391144276,0.640422284603119,0.767756879329681,-0.0202082116156816,0.58712100982666,0.804862856864929,-0.0865134447813034,0.625258803367615,0.770383179187775,-0.1247438788414,0.58712100982666,0.804862856864929,-0.0865134447813034,0.635759890079498,0.769273936748505,-0.0634583458304405,0.542956411838531,0.67732572555542,-0.496415346860886,0.502909004688263,0.659445405006409,-0.558761179447174,0.56039959192276,0.614671647548676,-0.555095374584198,0.56039959192276,0.614671647548676,-0.555095374584198,0.609678328037262,0.584020495414734,-0.535921812057495,0.531440496444702,0.678525447845459,-0.507123231887817,0.597854733467102,0.651188552379608,-0.467464596033096,0.502909004688263,0.659445405006409,-0.558761179447174,0.542531728744507,0.693063914775848,-0.474680483341217,0.597854733467102,0.651188552379608,-0.467464596033096,0.542531728744507,0.693063914775848,-0.474680483341217,0.602725684642792,0.705246865749359,-0.373294085264206,0.590087473392487,0.767451882362366,-0.25062769651413,0.598540306091309,0.772003591060638,-0.213915705680847,0.632681787014008,0.749516904354095,-0.194776922464371,0.602725684642792,0.705246865749359,-0.373294085264206, +0.63558954000473,0.721290409564972,-0.275256127119064,0.663272857666016,0.664029121398926,-0.345158308744431,0.63558954000473,0.721290409564972,-0.275256127119064,0.590087473392487,0.767451882362366,-0.25062769651413,0.632681787014008,0.749516904354095,-0.194776922464371,0.217460244894028,0.664725065231323,-0.714738726615906,0.255588740110397,0.596286833286285,-0.760996878147125,0.124131344258785,0.573140799999237,-0.810000538825989,0.02796570956707,0.693384885787964,-0.720024347305298,0.140238776803017,0.664030134677887,-0.734436452388763,0.113754495978355,0.658092856407166,-0.744294047355652,0.204206466674805,0.578807234764099,-0.789481937885284,0.140238776803017,0.664030134677887,-0.734436452388763,0.0739368423819542,0.602798640727997,-0.79446017742157,0.148026049137115,0.509942829608917,-0.847376227378845,0.204206466674805,0.578807234764099,-0.789481937885284,0.0739368423819542,0.602798640727997,-0.79446017742157,0.203891515731812,0.477429628372192,-0.854686558246613,0.148026049137115,0.509942829608917,-0.847376227378845,0.124131344258785,0.573140799999237,-0.810000538825989,0.113754495978355,0.658092856407166,-0.744294047355652,-0.0171319171786308,0.648746371269226,-0.760811805725098,-0.0139267425984144,0.731887876987457,-0.681282579898834,-0.154075801372528,0.581195652484894,-0.799044489860535,-0.165732532739639,0.643827378749847,-0.747006595134735,-0.025267718359828,0.580024719238281,-0.814206838607788,-0.0171319171786308,0.648746371269226,-0.760811805725098,0.109004020690918,0.560304164886475,-0.821082949638367,-0.025267718359828,0.580024719238281,-0.814206838607788,-0.258984386920929,0.525762438774109,-0.810247361660004,-0.165732532739639,0.643827378749847,-0.747006595134735,-0.154075801372528,0.581195652484894,-0.799044489860535,-0.0769268795847893,0.613376796245575,-0.786035001277924,-0.210074469447136,0.578193247318268,-0.788391470909119,-0.254110455513,0.491997241973877,-0.832686305046082,-0.254110455513,0.491997241973877,-0.832686305046082,-0.258984386920929,0.525762438774109,-0.810247361660004,-0.159213542938232,0.440611034631729,-0.883466362953186, +0.0170269832015038,0.698514223098755,0.715393483638763,0.155846759676933,0.611560523509979,0.775696754455566,0.181601673364639,0.712734460830688,0.677517712116241,0.181601673364639,0.712734460830688,0.677517712116241,0.297709405422211,0.713980793952942,0.633719563484192,0.19957023859024,0.761249423027039,0.616985321044922,0.467697411775589,0.740078389644623,0.483262836933136,0.464107424020767,0.799785852432251,0.38071870803833,0.472318738698959,0.808556795120239,0.350928276777267,0.299844741821289,0.661935329437256,0.686975002288818,0.427166730165482,0.660813987255096,0.617133140563965,0.297709405422211,0.713980793952942,0.633719563484192,0.427166730165482,0.660813987255096,0.617133140563965,0.43846470117569,0.708521902561188,0.552942395210266,0.41337862610817,0.708797156810761,0.57159823179245,0.467697411775589,0.740078389644623,0.483262836933136,0.43846470117569,0.708521902561188,0.552942395210266,0.43406555056572,0.766148030757904,0.473924189805985,0.472318738698959,0.808556795120239,0.350928276777267,0.464107424020767,0.799785852432251,0.38071870803833,0.461672753095627,0.841235399246216,0.28139141201973,0.34799912571907,0.884010076522827,0.312125980854034,0.368303179740906,0.894634366035461,0.252946645021439,0.461672753095627,0.841235399246216,0.28139141201973,0.350773453712463,0.897852718830109,0.266117215156555,0.368303179740906,0.894634366035461,0.252946645021439,0.34799912571907,0.884010076522827,0.312125980854034,0.467704206705093,0.868886172771454,0.162140235304832,0.350773453712463,0.897852718830109,0.266117215156555,0.494069904088974,0.820174992084503,0.288457751274109,0.169740065932274,0.961753070354462,-0.214986652135849,0.1285540163517,0.949606239795685,-0.285869777202606,0.339611709117889,0.887080013751984,-0.312654495239258,0.339611709117889,0.887080013751984,-0.312654495239258,0.376353442668915,0.88643616437912,-0.269423395395279,0.169740065932274,0.961753070354462,-0.214986652135849,0.327274292707443,0.925832211971283,-0.18901301920414,0.237725421786308,0.951165378093719,-0.196903303265572,0.376353442668915,0.88643616437912,-0.269423395395279, +0.327274292707443,0.925832211971283,-0.18901301920414,0.599665999412537,0.764751136302948,-0.235703930258751,0.527967870235443,0.832068860530853,-0.170032829046249,0.0531513653695583,0.662648737430573,-0.747041702270508,0.12888665497303,0.583809554576874,-0.801595032215118,0.0357764810323715,0.597838580608368,-0.800817728042603,0.0531513653695583,0.662648737430573,-0.747041702270508,0.0329776145517826,0.7135169506073,-0.699861288070679,0.101420320570469,0.71797239780426,-0.688643157482147,0.101420320570469,0.71797239780426,-0.688643157482147,0.0329776145517826,0.7135169506073,-0.699861288070679,0.0832928642630577,0.765946269035339,-0.637486040592194,0.0832928642630577,0.765946269035339,-0.637486040592194,0.0329776145517826,0.7135169506073,-0.699861288070679,-0.00821030512452126,0.745677471160889,-0.666256368160248,-0.00821030512452126,0.745677471160889,-0.666256368160248,-0.0682398155331612,0.807595252990723,-0.58577561378479,0.0757560655474663,0.818669259548187,-0.569246411323547,-0.0607272498309612,0.867501080036163,-0.493714451789856,0.0660068467259407,0.935367286205292,-0.347463607788086,0.0278516951948404,0.90336674451828,-0.427963435649872,0.0135788647457957,0.90843665599823,-0.417801797389984,0.1285540163517,0.949606239795685,-0.285869777202606,0.0660068467259407,0.935367286205292,-0.347463607788086,-0.0607272498309612,0.867501080036163,-0.493714451789856,0.0278516951948404,0.90336674451828,-0.427963435649872,0.0221755113452673,0.87104719877243,-0.490698456764221,-0.0607272498309612,0.867501080036163,-0.493714451789856,0.0221755113452673,0.87104719877243,-0.490698456764221,-0.0682398155331612,0.807595252990723,-0.58577561378479,0.607103824615479,0.794148027896881,0.0274527966976166,0.649188637733459,0.760164022445679,0.0265439506620169,0.596542179584503,0.802179872989655,-0.0253943391144276,0.604619264602661,0.792817056179047,0.0766584575176239,0.607103824615479,0.794148027896881,0.0274527966976166,0.560051023960114,0.827217221260071,0.045326940715313,0.587581694126129,0.796381592750549,0.143261775374413,0.604619264602661,0.792817056179047,0.0766584575176239, +0.539727210998535,0.83778840303421,0.0824924036860466,0.587581694126129,0.796381592750549,0.143261775374413,0.467704206705093,0.868886172771454,0.162140235304832,0.569632351398468,0.789882481098175,0.227165892720222,0.255588740110397,0.596286833286285,-0.760996878147125,0.345322072505951,0.65240466594696,-0.674626290798187,0.363234966993332,0.583292365074158,-0.726519167423248,0.37721836566925,0.622297763824463,-0.685894787311554,0.363234966993332,0.583292365074158,-0.726519167423248,0.345322072505951,0.65240466594696,-0.674626290798187,0.42381227016449,0.612748205661774,-0.667025208473206,0.363482922315598,0.548919916152954,-0.752706468105316,0.376591086387634,0.623721301555634,-0.68494576215744,0.376591086387634,0.623721301555634,-0.68494576215744,0.357775717973709,0.563949704170227,-0.744282960891724,0.37721836566925,0.622297763824463,-0.685894787311554,0.579318463802338,0.5454421043396,-0.605708539485931,0.547009944915771,0.634893953800201,-0.545609354972839,0.609678328037262,0.584020495414734,-0.535921812057495,0.579318463802338,0.5454421043396,-0.605708539485931,0.475273311138153,0.638861000537872,-0.604955971240997,0.547009944915771,0.634893953800201,-0.545609354972839,0.42381227016449,0.612748205661774,-0.667025208473206,0.475273311138153,0.638861000537872,-0.604955971240997,0.579318463802338,0.5454421043396,-0.605708539485931,0.639513432979584,0.754194557666779,-0.149040132761002,0.598540306091309,0.772003591060638,-0.213915705680847,0.606863141059875,0.775366544723511,-0.174710169434547,0.606863141059875,0.775366544723511,-0.174710169434547,0.625258803367615,0.770383179187775,-0.1247438788414,0.639513432979584,0.754194557666779,-0.149040132761002,0.640422284603119,0.767756879329681,-0.0202082116156816,0.596542179584503,0.802179872989655,-0.0253943391144276,0.649188637733459,0.760164022445679,0.0265439506620169,0.635759890079498,0.769273936748505,-0.0634583458304405,0.58712100982666,0.804862856864929,-0.0865134447813034,0.640422284603119,0.767756879329681,-0.0202082116156816,0.625258803367615,0.770383179187775,-0.1247438788414, +0.635759890079498,0.769273936748505,-0.0634583458304405,0.671649038791656,0.739656984806061,-0.0423688143491745,0.483150452375412,0.628134787082672,-0.609928011894226,0.56039959192276,0.614671647548676,-0.555095374584198,0.502909004688263,0.659445405006409,-0.558761179447174,0.56039959192276,0.614671647548676,-0.555095374584198,0.578345835208893,0.571208536624908,-0.582440316677094,0.609678328037262,0.584020495414734,-0.535921812057495,0.545722961425781,0.638712048530579,-0.542432606220245,0.502909004688263,0.659445405006409,-0.558761179447174,0.597854733467102,0.651188552379608,-0.467464596033096,0.653922617435455,0.65284252166748,-0.382337093353271,0.597854733467102,0.651188552379608,-0.467464596033096,0.602725684642792,0.705246865749359,-0.373294085264206,0.598540306091309,0.772003591060638,-0.213915705680847,0.639513432979584,0.754194557666779,-0.149040132761002,0.632681787014008,0.749516904354095,-0.194776922464371,0.663272857666016,0.664029121398926,-0.345158308744431,0.63558954000473,0.721290409564972,-0.275256127119064,0.710686266422272,0.636809229850769,-0.298996388912201,0.602725684642792,0.705246865749359,-0.373294085264206,0.663272857666016,0.664029121398926,-0.345158308744431,0.653922617435455,0.65284252166748,-0.382337093353271,0.632681787014008,0.749516904354095,-0.194776922464371,0.691882073879242,0.697319746017456,-0.187200918793678,0.63558954000473,0.721290409564972,-0.275256127119064,0.203891515731812,0.477429628372192,-0.854686558246613,0.124131344258785,0.573140799999237,-0.810000538825989,0.255588740110397,0.596286833286285,-0.760996878147125,0.113754495978355,0.658092856407166,-0.744294047355652,0.140238776803017,0.664030134677887,-0.734436452388763,0.204206466674805,0.578807234764099,-0.789481937885284,0.286823898553848,0.500086545944214,-0.817095696926117,0.204206466674805,0.578807234764099,-0.789481937885284,0.148026049137115,0.509942829608917,-0.847376227378845,0.203891515731812,0.477429628372192,-0.854686558246613,0.20811066031456,0.4271419942379,-0.879908800125122,0.148026049137115,0.509942829608917,-0.847376227378845, +-0.0171319171786308,0.648746371269226,-0.760811805725098,0.113754495978355,0.658092856407166,-0.744294047355652,0.109004020690918,0.560304164886475,-0.821082949638367,-0.025267718359828,0.580024719238281,-0.814206838607788,-0.123439349234104,0.459971070289612,-0.879311800003052,-0.154075801372528,0.581195652484894,-0.799044489860535,0.0790472775697708,0.472518384456635,-0.877768635749817,-0.025267718359828,0.580024719238281,-0.814206838607788,0.109004020690918,0.560304164886475,-0.821082949638367,-0.154075801372528,0.581195652484894,-0.799044489860535,-0.123439349234104,0.459971070289612,-0.879311800003052,-0.258984386920929,0.525762438774109,-0.810247361660004,-0.254110455513,0.491997241973877,-0.832686305046082,-0.159213542938232,0.440611034631729,-0.883466362953186,-0.0769268795847893,0.613376796245575,-0.786035001277924,-0.123439349234104,0.459971070289612,-0.879311800003052,-0.159213542938232,0.440611034631729,-0.883466362953186,-0.258984386920929,0.525762438774109,-0.810247361660004,0.255183100700378,0.634043991565704,0.72997921705246,0.181601673364639,0.712734460830688,0.677517712116241,0.155846759676933,0.611560523509979,0.775696754455566,0.297709405422211,0.713980793952942,0.633719563484192,0.181601673364639,0.712734460830688,0.677517712116241,0.299844741821289,0.661935329437256,0.686975002288818,0.467697411775589,0.740078389644623,0.483262836933136,0.43406555056572,0.766148030757904,0.473924189805985,0.464107424020767,0.799785852432251,0.38071870803833,0.391663253307343,0.62276953458786,0.677316606044769,0.427166730165482,0.660813987255096,0.617133140563965,0.299844741821289,0.661935329437256,0.686975002288818,0.402971416711807,0.693648934364319,0.597046911716461,0.43846470117569,0.708521902561188,0.552942395210266,0.427166730165482,0.660813987255096,0.617133140563965,0.43406555056572,0.766148030757904,0.473924189805985,0.43846470117569,0.708521902561188,0.552942395210266,0.3150694668293,0.820490777492523,0.476996839046478,0.34799912571907,0.884010076522827,0.312125980854034,0.461672753095627,0.841235399246216,0.28139141201973, +0.464107424020767,0.799785852432251,0.38071870803833,0.350773453712463,0.897852718830109,0.266117215156555,0.34799912571907,0.884010076522827,0.312125980854034,0.295371919870377,0.894240081310272,0.336288541555405,0.350773453712463,0.897852718830109,0.266117215156555,0.375115215778351,0.855243325233459,0.357557356357574,0.494069904088974,0.820174992084503,0.288457751274109,0.569632351398468,0.789882481098175,0.227165892720222,0.467704206705093,0.868886172771454,0.162140235304832,0.494069904088974,0.820174992084503,0.288457751274109,0.297379553318024,0.898393452167511,-0.323194295167923,0.339611709117889,0.887080013751984,-0.312654495239258,0.1285540163517,0.949606239795685,-0.285869777202606,0.376353442668915,0.88643616437912,-0.269423395395279,0.339611709117889,0.887080013751984,-0.312654495239258,0.559940874576569,0.745092153549194,-0.362358748912811,0.327274292707443,0.925832211971283,-0.18901301920414,0.376353442668915,0.88643616437912,-0.269423395395279,0.599665999412537,0.764751136302948,-0.235703930258751,0.527967870235443,0.832068860530853,-0.170032829046249,0.599665999412537,0.764751136302948,-0.235703930258751,0.724258780479431,0.663338959217072,-0.188229858875275,-0.0272068604826927,0.6524778008461,-0.757319271564484,0.0531513653695583,0.662648737430573,-0.747041702270508,0.0357764810323715,0.597838580608368,-0.800817728042603,-0.0318699106574059,0.692280411720276,-0.720924317836761,0.0329776145517826,0.7135169506073,-0.699861288070679,0.0531513653695583,0.662648737430573,-0.747041702270508,0.0329776145517826,0.7135169506073,-0.699861288070679,-0.0318699106574059,0.692280411720276,-0.720924317836761,-0.00821030512452126,0.745677471160889,-0.666256368160248,-0.00821030512452126,0.745677471160889,-0.666256368160248,-0.112090669572353,0.738208115100861,-0.665194928646088,-0.0682398155331612,0.807595252990723,-0.58577561378479,0.0135788647457957,0.90843665599823,-0.417801797389984,0.0660068467259407,0.935367286205292,-0.347463607788086,-0.0607272498309612,0.867501080036163,-0.493714451789856,0.0135788647457957,0.90843665599823,-0.417801797389984, +0.130781665444374,0.925255477428436,-0.356087237596512,0.1285540163517,0.949606239795685,-0.285869777202606,-0.0607272498309612,0.867501080036163,-0.493714451789856,-0.0682398155331612,0.807595252990723,-0.58577561378479,-0.167207464575768,0.782458961009979,-0.599832952022552,0.650395512580872,0.756842434406281,0.0646141991019249,0.649188637733459,0.760164022445679,0.0265439506620169,0.607103824615479,0.794148027896881,0.0274527966976166,0.607103824615479,0.794148027896881,0.0274527966976166,0.604619264602661,0.792817056179047,0.0766584575176239,0.650395512580872,0.756842434406281,0.0646141991019249,0.604619264602661,0.792817056179047,0.0766584575176239,0.587581694126129,0.796381592750549,0.143261775374413,0.624127984046936,0.772294640541077,0.118427582085133,0.587581694126129,0.796381592750549,0.143261775374413,0.569632351398468,0.789882481098175,0.227165892720222,0.597701013088226,0.775282502174377,0.204182177782059,0.255588740110397,0.596286833286285,-0.760996878147125,0.363234966993332,0.583292365074158,-0.726519167423248,0.337154507637024,0.5224369764328,-0.78318989276886,0.357775717973709,0.563949704170227,-0.744282960891724,0.363234966993332,0.583292365074158,-0.726519167423248,0.37721836566925,0.622297763824463,-0.685894787311554,0.423729211091995,0.525304019451141,-0.737908601760864,0.363482922315598,0.548919916152954,-0.752706468105316,0.42381227016449,0.612748205661774,-0.667025208473206,0.357775717973709,0.563949704170227,-0.744282960891724,0.376591086387634,0.623721301555634,-0.68494576215744,0.363482922315598,0.548919916152954,-0.752706468105316,0.609678328037262,0.584020495414734,-0.535921812057495,0.629553020000458,0.524916231632233,-0.572822749614716,0.579318463802338,0.5454421043396,-0.605708539485931,0.42381227016449,0.612748205661774,-0.667025208473206,0.579318463802338,0.5454421043396,-0.605708539485931,0.510814130306244,0.487864404916763,-0.707853853702545,0.663345992565155,0.744001448154449,-0.0802106037735939,0.639513432979584,0.754194557666779,-0.149040132761002,0.625258803367615,0.770383179187775,-0.1247438788414, +0.640422284603119,0.767756879329681,-0.0202082116156816,0.649188637733459,0.760164022445679,0.0265439506620169,0.71178263425827,0.702293395996094,0.0122186504304409,0.640422284603119,0.767756879329681,-0.0202082116156816,0.671649038791656,0.739656984806061,-0.0423688143491745,0.635759890079498,0.769273936748505,-0.0634583458304405,0.663345992565155,0.744001448154449,-0.0802106037735939,0.625258803367615,0.770383179187775,-0.1247438788414,0.671649038791656,0.739656984806061,-0.0423688143491745,0.56039959192276,0.614671647548676,-0.555095374584198,0.483150452375412,0.628134787082672,-0.609928011894226,0.578345835208893,0.571208536624908,-0.582440316677094,0.483150452375412,0.628134787082672,-0.609928011894226,0.502909004688263,0.659445405006409,-0.558761179447174,0.456079691648483,0.641200721263886,-0.617132663726807,0.609678328037262,0.584020495414734,-0.535921812057495,0.578345835208893,0.571208536624908,-0.582440316677094,0.629553020000458,0.524916231632233,-0.572822749614716,0.545722961425781,0.638712048530579,-0.542432606220245,0.456079691648483,0.641200721263886,-0.617132663726807,0.502909004688263,0.659445405006409,-0.558761179447174,0.649199545383453,0.579890906810761,-0.492205560207367,0.545722961425781,0.638712048530579,-0.542432606220245,0.597854733467102,0.651188552379608,-0.467464596033096,0.653922617435455,0.65284252166748,-0.382337093353271,0.694806933403015,0.607892036437988,-0.384330958127975,0.597854733467102,0.651188552379608,-0.467464596033096,0.639513432979584,0.754194557666779,-0.149040132761002,0.686560094356537,0.717596113681793,-0.117008052766323,0.632681787014008,0.749516904354095,-0.194776922464371,0.691882073879242,0.697319746017456,-0.187200918793678,0.710686266422272,0.636809229850769,-0.298996388912201,0.63558954000473,0.721290409564972,-0.275256127119064,0.694806933403015,0.607892036437988,-0.384330958127975,0.663272857666016,0.664029121398926,-0.345158308744431,0.710686266422272,0.636809229850769,-0.298996388912201,0.694806933403015,0.607892036437988,-0.384330958127975,0.653922617435455,0.65284252166748,-0.382337093353271, +0.663272857666016,0.664029121398926,-0.345158308744431,0.632681787014008,0.749516904354095,-0.194776922464371,0.686560094356537,0.717596113681793,-0.117008052766323,0.691882073879242,0.697319746017456,-0.187200918793678,0.203891515731812,0.477429628372192,-0.854686558246613,0.255588740110397,0.596286833286285,-0.760996878147125,0.337154507637024,0.5224369764328,-0.78318989276886,0.113754495978355,0.658092856407166,-0.744294047355652,0.204206466674805,0.578807234764099,-0.789481937885284,0.220038697123528,0.56413334608078,-0.795824408531189,0.286823898553848,0.500086545944214,-0.817095696926117,0.286916434764862,0.515883922576904,-0.807181894779205,0.204206466674805,0.578807234764099,-0.789481937885284,0.286823898553848,0.500086545944214,-0.817095696926117,0.148026049137115,0.509942829608917,-0.847376227378845,0.20811066031456,0.4271419942379,-0.879908800125122,0.203891515731812,0.477429628372192,-0.854686558246613,0.194940403103828,0.424503535032272,-0.884191632270813,0.20811066031456,0.4271419942379,-0.879908800125122,0.220038697123528,0.56413334608078,-0.795824408531189,0.109004020690918,0.560304164886475,-0.821082949638367,0.113754495978355,0.658092856407166,-0.744294047355652,-0.123439349234104,0.459971070289612,-0.879311800003052,-0.025267718359828,0.580024719238281,-0.814206838607788,0.0790472775697708,0.472518384456635,-0.877768635749817,0.0790472775697708,0.472518384456635,-0.877768635749817,0.109004020690918,0.560304164886475,-0.821082949638367,0.207146286964417,0.47381591796875,-0.855913996696472,-0.159213542938232,0.440611034631729,-0.883466362953186,-0.123439349234104,0.459971070289612,-0.879311800003052,-0.15667399764061,0.283032715320587,-0.946227014064789,0.255183100700378,0.634043991565704,0.72997921705246,0.299844741821289,0.661935329437256,0.686975002288818,0.181601673364639,0.712734460830688,0.677517712116241,0.255183100700378,0.634043991565704,0.72997921705246,0.155846759676933,0.611560523509979,0.775696754455566,0.255386292934418,0.526150107383728,0.81113737821579,0.338292568922043,0.856536388397217,0.38974791765213, +0.464107424020767,0.799785852432251,0.38071870803833,0.43406555056572,0.766148030757904,0.473924189805985,0.391663253307343,0.62276953458786,0.677316606044769,0.402971416711807,0.693648934364319,0.597046911716461,0.427166730165482,0.660813987255096,0.617133140563965,0.391663253307343,0.62276953458786,0.677316606044769,0.299844741821289,0.661935329437256,0.686975002288818,0.297494769096375,0.58757472038269,0.752497613430023,0.43846470117569,0.708521902561188,0.552942395210266,0.402971416711807,0.693648934364319,0.597046911716461,0.258032709360123,0.789814054965973,0.556428492069244,0.3150694668293,0.820490777492523,0.476996839046478,0.43846470117569,0.708521902561188,0.552942395210266,0.258032709360123,0.789814054965973,0.556428492069244,0.338292568922043,0.856536388397217,0.38974791765213,0.43406555056572,0.766148030757904,0.473924189805985,0.3150694668293,0.820490777492523,0.476996839046478,0.338292568922043,0.856536388397217,0.38974791765213,0.34799912571907,0.884010076522827,0.312125980854034,0.464107424020767,0.799785852432251,0.38071870803833,0.34799912571907,0.884010076522827,0.312125980854034,0.338292568922043,0.856536388397217,0.38974791765213,0.295371919870377,0.894240081310272,0.336288541555405,0.375115215778351,0.855243325233459,0.357557356357574,0.350773453712463,0.897852718830109,0.266117215156555,0.295371919870377,0.894240081310272,0.336288541555405,0.475907802581787,0.79836517572403,0.36895078420639,0.494069904088974,0.820174992084503,0.288457751274109,0.375115215778351,0.855243325233459,0.357557356357574,0.560298681259155,0.763075768947601,0.322149932384491,0.569632351398468,0.789882481098175,0.227165892720222,0.494069904088974,0.820174992084503,0.288457751274109,0.297379553318024,0.898393452167511,-0.323194295167923,0.449291825294495,0.809742510318756,-0.377430438995361,0.339611709117889,0.887080013751984,-0.312654495239258,0.297379553318024,0.898393452167511,-0.323194295167923,0.1285540163517,0.949606239795685,-0.285869777202606,0.130781665444374,0.925255477428436,-0.356087237596512,0.559940874576569,0.745092153549194,-0.362358748912811, +0.339611709117889,0.887080013751984,-0.312654495239258,0.594550430774689,0.67107230424881,-0.442912608385086,0.657812416553497,0.680266499519348,-0.323295712471008,0.376353442668915,0.88643616437912,-0.269423395395279,0.559940874576569,0.745092153549194,-0.362358748912811,0.657812416553497,0.680266499519348,-0.323295712471008,0.599665999412537,0.764751136302948,-0.235703930258751,0.376353442668915,0.88643616437912,-0.269423395395279,0.599665999412537,0.764751136302948,-0.235703930258751,0.758718430995941,0.600362062454224,-0.252807438373566,0.724258780479431,0.663338959217072,-0.188229858875275,-0.0318699106574059,0.692280411720276,-0.720924317836761,0.0531513653695583,0.662648737430573,-0.747041702270508,-0.0272068604826927,0.6524778008461,-0.757319271564484,-0.0272068604826927,0.6524778008461,-0.757319271564484,0.0357764810323715,0.597838580608368,-0.800817728042603,-0.0795047655701637,0.609339356422424,-0.788913488388062,-0.00821030512452126,0.745677471160889,-0.666256368160248,-0.0318699106574059,0.692280411720276,-0.720924317836761,-0.112090669572353,0.738208115100861,-0.665194928646088,-0.112090669572353,0.738208115100861,-0.665194928646088,-0.167207464575768,0.782458961009979,-0.599832952022552,-0.0682398155331612,0.807595252990723,-0.58577561378479,0.0135788647457957,0.90843665599823,-0.417801797389984,-0.0607272498309612,0.867501080036163,-0.493714451789856,-0.0916152447462082,0.842850506305695,-0.53029191493988,0.130781665444374,0.925255477428436,-0.356087237596512,0.0135788647457957,0.90843665599823,-0.417801797389984,0.138778105378151,0.875040650367737,-0.463728755712509,-0.0607272498309612,0.867501080036163,-0.493714451789856,-0.167207464575768,0.782458961009979,-0.599832952022552,-0.0916152447462082,0.842850506305695,-0.53029191493988,0.650395512580872,0.756842434406281,0.0646141991019249,0.689302265644073,0.72164660692215,0.0639408454298973,0.649188637733459,0.760164022445679,0.0265439506620169,0.604619264602661,0.792817056179047,0.0766584575176239,0.624127984046936,0.772294640541077,0.118427582085133, +0.650395512580872,0.756842434406281,0.0646141991019249,0.624127984046936,0.772294640541077,0.118427582085133,0.587581694126129,0.796381592750549,0.143261775374413,0.597701013088226,0.775282502174377,0.204182177782059,0.569632351398468,0.789882481098175,0.227165892720222,0.560298681259155,0.763075768947601,0.322149932384491,0.597701013088226,0.775282502174377,0.204182177782059,0.357775717973709,0.563949704170227,-0.744282960891724,0.337154507637024,0.5224369764328,-0.78318989276886,0.363234966993332,0.583292365074158,-0.726519167423248,0.423729211091995,0.525304019451141,-0.737908601760864,0.35298165678978,0.476503819227219,-0.805200517177582,0.363482922315598,0.548919916152954,-0.752706468105316,0.510814130306244,0.487864404916763,-0.707853853702545,0.423729211091995,0.525304019451141,-0.737908601760864,0.42381227016449,0.612748205661774,-0.667025208473206,0.357775717973709,0.563949704170227,-0.744282960891724,0.363482922315598,0.548919916152954,-0.752706468105316,0.345801651477814,0.484053909778595,-0.803811490535736,0.579318463802338,0.5454421043396,-0.605708539485931,0.629553020000458,0.524916231632233,-0.572822749614716,0.61321485042572,0.445007264614105,-0.652637660503387,0.579318463802338,0.5454421043396,-0.605708539485931,0.61321485042572,0.445007264614105,-0.652637660503387,0.510814130306244,0.487864404916763,-0.707853853702545,0.639513432979584,0.754194557666779,-0.149040132761002,0.663345992565155,0.744001448154449,-0.0802106037735939,0.686560094356537,0.717596113681793,-0.117008052766323,0.649188637733459,0.760164022445679,0.0265439506620169,0.689302265644073,0.72164660692215,0.0639408454298973,0.71178263425827,0.702293395996094,0.0122186504304409,0.640422284603119,0.767756879329681,-0.0202082116156816,0.71178263425827,0.702293395996094,0.0122186504304409,0.671649038791656,0.739656984806061,-0.0423688143491745,0.68106484413147,0.731656849384308,-0.0287885908037424,0.663345992565155,0.744001448154449,-0.0802106037735939,0.671649038791656,0.739656984806061,-0.0423688143491745,0.55446195602417,0.543975174427032,-0.629811763763428, +0.578345835208893,0.571208536624908,-0.582440316677094,0.483150452375412,0.628134787082672,-0.609928011894226,0.483150452375412,0.628134787082672,-0.609928011894226,0.456079691648483,0.641200721263886,-0.617132663726807,0.423033237457275,0.600468814373016,-0.678586661815643,0.55446195602417,0.543975174427032,-0.629811763763428,0.629553020000458,0.524916231632233,-0.572822749614716,0.578345835208893,0.571208536624908,-0.582440316677094,0.600941359996796,0.541672229766846,-0.587758898735046,0.456079691648483,0.641200721263886,-0.617132663726807,0.545722961425781,0.638712048530579,-0.542432606220245,0.600941359996796,0.541672229766846,-0.587758898735046,0.545722961425781,0.638712048530579,-0.542432606220245,0.649199545383453,0.579890906810761,-0.492205560207367,0.649199545383453,0.579890906810761,-0.492205560207367,0.597854733467102,0.651188552379608,-0.467464596033096,0.694806933403015,0.607892036437988,-0.384330958127975,0.691882073879242,0.697319746017456,-0.187200918793678,0.753360986709595,0.626929342746735,-0.19851116836071,0.710686266422272,0.636809229850769,-0.298996388912201,0.756188571453094,0.561716854572296,-0.335637956857681,0.694806933403015,0.607892036437988,-0.384330958127975,0.710686266422272,0.636809229850769,-0.298996388912201,0.691882073879242,0.697319746017456,-0.187200918793678,0.686560094356537,0.717596113681793,-0.117008052766323,0.768732249736786,0.628658652305603,-0.11763907968998,0.313498616218567,0.449634850025177,-0.836389303207397,0.203891515731812,0.477429628372192,-0.854686558246613,0.337154507637024,0.5224369764328,-0.78318989276886,0.286916434764862,0.515883922576904,-0.807181894779205,0.220038697123528,0.56413334608078,-0.795824408531189,0.204206466674805,0.578807234764099,-0.789481937885284,0.286823898553848,0.500086545944214,-0.817095696926117,0.311133205890656,0.545260846614838,-0.778387129306793,0.286916434764862,0.515883922576904,-0.807181894779205,0.286823898553848,0.500086545944214,-0.817095696926117,0.20811066031456,0.4271419942379,-0.879908800125122,0.258642762899399,0.453481078147888,-0.85291188955307, +0.194940403103828,0.424503535032272,-0.884191632270813,0.203891515731812,0.477429628372192,-0.854686558246613,0.313498616218567,0.449634850025177,-0.836389303207397,0.194940403103828,0.424503535032272,-0.884191632270813,0.258642762899399,0.453481078147888,-0.85291188955307,0.20811066031456,0.4271419942379,-0.879908800125122,0.109004020690918,0.560304164886475,-0.821082949638367,0.220038697123528,0.56413334608078,-0.795824408531189,0.207146286964417,0.47381591796875,-0.855913996696472,0.0790472775697708,0.472518384456635,-0.877768635749817,0.00415561301633716,0.271014332771301,-0.962566256523132,-0.123439349234104,0.459971070289612,-0.879311800003052,0.0790472775697708,0.472518384456635,-0.877768635749817,0.207146286964417,0.47381591796875,-0.855913996696472,0.168466582894325,0.348755806684494,-0.921948134899139,-0.15667399764061,0.283032715320587,-0.946227014064789,-0.123439349234104,0.459971070289612,-0.879311800003052,0.00415561301633716,0.271014332771301,-0.962566256523132,0.0315150693058968,0.272475212812424,-0.961646497249603,-0.159213542938232,0.440611034631729,-0.883466362953186,-0.15667399764061,0.283032715320587,-0.946227014064789,0.299844741821289,0.661935329437256,0.686975002288818,0.255183100700378,0.634043991565704,0.72997921705246,0.297494769096375,0.58757472038269,0.752497613430023,0.297494769096375,0.58757472038269,0.752497613430023,0.255183100700378,0.634043991565704,0.72997921705246,0.255386292934418,0.526150107383728,0.81113737821579,0.393603086471558,0.6678307056427,0.631726682186127,0.402971416711807,0.693648934364319,0.597046911716461,0.391663253307343,0.62276953458786,0.677316606044769,0.27244821190834,0.548548817634583,0.790484666824341,0.391663253307343,0.62276953458786,0.677316606044769,0.297494769096375,0.58757472038269,0.752497613430023,0.240986600518227,0.752709925174713,0.612660646438599,0.258032709360123,0.789814054965973,0.556428492069244,0.402971416711807,0.693648934364319,0.597046911716461,0.258032709360123,0.789814054965973,0.556428492069244,0.256793200969696,0.828548669815063,0.497558236122131, +0.3150694668293,0.820490777492523,0.476996839046478,0.338292568922043,0.856536388397217,0.38974791765213,0.3150694668293,0.820490777492523,0.476996839046478,0.296632617712021,0.859286725521088,0.416695684194565,0.375115215778351,0.855243325233459,0.357557356357574,0.295371919870377,0.894240081310272,0.336288541555405,0.338292568922043,0.856536388397217,0.38974791765213,0.560298681259155,0.763075768947601,0.322149932384491,0.494069904088974,0.820174992084503,0.288457751274109,0.475907802581787,0.79836517572403,0.36895078420639,0.475907802581787,0.79836517572403,0.36895078420639,0.375115215778351,0.855243325233459,0.357557356357574,0.395481020212173,0.813681840896606,0.426047533750534,0.500612676143646,0.72946959733963,-0.466112673282623,0.449291825294495,0.809742510318756,-0.377430438995361,0.297379553318024,0.898393452167511,-0.323194295167923,0.449291825294495,0.809742510318756,-0.377430438995361,0.594550430774689,0.67107230424881,-0.442912608385086,0.339611709117889,0.887080013751984,-0.312654495239258,0.270675420761108,0.85901552438736,-0.434542268514633,0.297379553318024,0.898393452167511,-0.323194295167923,0.130781665444374,0.925255477428436,-0.356087237596512,0.559940874576569,0.745092153549194,-0.362358748912811,0.594550430774689,0.67107230424881,-0.442912608385086,0.709781348705292,0.576951444149017,-0.404150038957596,0.657812416553497,0.680266499519348,-0.323295712471008,0.559940874576569,0.745092153549194,-0.362358748912811,0.709781348705292,0.576951444149017,-0.404150038957596,0.657812416553497,0.680266499519348,-0.323295712471008,0.758718430995941,0.600362062454224,-0.252807438373566,0.599665999412537,0.764751136302948,-0.235703930258751,0.815166354179382,0.545003831386566,-0.196149066090584,0.724258780479431,0.663338959217072,-0.188229858875275,0.758718430995941,0.600362062454224,-0.252807438373566,-0.0318699106574059,0.692280411720276,-0.720924317836761,-0.0272068604826927,0.6524778008461,-0.757319271564484,-0.102929301559925,0.673003196716309,-0.732442557811737,-0.0272068604826927,0.6524778008461,-0.757319271564484, +-0.0795047655701637,0.609339356422424,-0.788913488388062,-0.102929301559925,0.673003196716309,-0.732442557811737,-0.0318699106574059,0.692280411720276,-0.720924317836761,-0.102929301559925,0.673003196716309,-0.732442557811737,-0.112090669572353,0.738208115100861,-0.665194928646088,-0.167207464575768,0.782458961009979,-0.599832952022552,-0.112090669572353,0.738208115100861,-0.665194928646088,-0.180282786488533,0.71439790725708,-0.676116526126862,0.0128559805452824,0.847280323505402,-0.530990242958069,0.0135788647457957,0.90843665599823,-0.417801797389984,-0.0916152447462082,0.842850506305695,-0.53029191493988,0.0128559805452824,0.847280323505402,-0.530990242958069,0.138778105378151,0.875040650367737,-0.463728755712509,0.0135788647457957,0.90843665599823,-0.417801797389984,0.270675420761108,0.85901552438736,-0.434542268514633,0.130781665444374,0.925255477428436,-0.356087237596512,0.138778105378151,0.875040650367737,-0.463728755712509,-0.0913489535450935,0.801190137863159,-0.591396331787109,-0.0916152447462082,0.842850506305695,-0.53029191493988,-0.167207464575768,0.782458961009979,-0.599832952022552,0.684021770954132,0.719761371612549,0.118564911186695,0.689302265644073,0.72164660692215,0.0639408454298973,0.650395512580872,0.756842434406281,0.0646141991019249,0.650395512580872,0.756842434406281,0.0646141991019249,0.624127984046936,0.772294640541077,0.118427582085133,0.629220426082611,0.762280702590942,0.151689037680626,0.624127984046936,0.772294640541077,0.118427582085133,0.597701013088226,0.775282502174377,0.204182177782059,0.629220426082611,0.762280702590942,0.151689037680626,0.597701013088226,0.775282502174377,0.204182177782059,0.560298681259155,0.763075768947601,0.322149932384491,0.599861204624176,0.746338486671448,0.288349121809006,0.345801651477814,0.484053909778595,-0.803811490535736,0.337154507637024,0.5224369764328,-0.78318989276886,0.357775717973709,0.563949704170227,-0.744282960891724,0.35298165678978,0.476503819227219,-0.805200517177582,0.423729211091995,0.525304019451141,-0.737908601760864,0.447376132011414,0.418042063713074,-0.790629744529724, +0.35298165678978,0.476503819227219,-0.805200517177582,0.345801651477814,0.484053909778595,-0.803811490535736,0.363482922315598,0.548919916152954,-0.752706468105316,0.447376132011414,0.418042063713074,-0.790629744529724,0.423729211091995,0.525304019451141,-0.737908601760864,0.510814130306244,0.487864404916763,-0.707853853702545,0.55446195602417,0.543975174427032,-0.629811763763428,0.61321485042572,0.445007264614105,-0.652637660503387,0.629553020000458,0.524916231632233,-0.572822749614716,0.54310154914856,0.390909343957901,-0.743122100830078,0.510814130306244,0.487864404916763,-0.707853853702545,0.61321485042572,0.445007264614105,-0.652637660503387,0.663345992565155,0.744001448154449,-0.0802106037735939,0.704330444335938,0.707859635353088,-0.053416658192873,0.686560094356537,0.717596113681793,-0.117008052766323,0.71178263425827,0.702293395996094,0.0122186504304409,0.689302265644073,0.72164660692215,0.0639408454298973,0.729462146759033,0.681165516376495,0.0624356232583523,0.68106484413147,0.731656849384308,-0.0287885908037424,0.671649038791656,0.739656984806061,-0.0423688143491745,0.71178263425827,0.702293395996094,0.0122186504304409,0.704330444335938,0.707859635353088,-0.053416658192873,0.663345992565155,0.744001448154449,-0.0802106037735939,0.68106484413147,0.731656849384308,-0.0287885908037424,0.483150452375412,0.628134787082672,-0.609928011894226,0.423033237457275,0.600468814373016,-0.678586661815643,0.55446195602417,0.543975174427032,-0.629811763763428,0.486703276634216,0.56200385093689,-0.66878354549408,0.423033237457275,0.600468814373016,-0.678586661815643,0.456079691648483,0.641200721263886,-0.617132663726807,0.456079691648483,0.641200721263886,-0.617132663726807,0.600941359996796,0.541672229766846,-0.587758898735046,0.486703276634216,0.56200385093689,-0.66878354549408,0.73989725112915,0.469319760799408,-0.481965750455856,0.600941359996796,0.541672229766846,-0.587758898735046,0.649199545383453,0.579890906810761,-0.492205560207367,0.649199545383453,0.579890906810761,-0.492205560207367,0.694806933403015,0.607892036437988,-0.384330958127975, +0.738809645175934,0.536852061748505,-0.407369554042816,0.691882073879242,0.697319746017456,-0.187200918793678,0.768732249736786,0.628658652305603,-0.11763907968998,0.753360986709595,0.626929342746735,-0.19851116836071,0.766619503498077,0.577912271022797,-0.279842168092728,0.710686266422272,0.636809229850769,-0.298996388912201,0.753360986709595,0.626929342746735,-0.19851116836071,0.738809645175934,0.536852061748505,-0.407369554042816,0.694806933403015,0.607892036437988,-0.384330958127975,0.756188571453094,0.561716854572296,-0.335637956857681,0.766619503498077,0.577912271022797,-0.279842168092728,0.756188571453094,0.561716854572296,-0.335637956857681,0.710686266422272,0.636809229850769,-0.298996388912201,0.768732249736786,0.628658652305603,-0.11763907968998,0.686560094356537,0.717596113681793,-0.117008052766323,0.750503897666931,0.659044444561005,-0.0490313246846199,0.345801651477814,0.484053909778595,-0.803811490535736,0.313498616218567,0.449634850025177,-0.836389303207397,0.337154507637024,0.5224369764328,-0.78318989276886,0.286916434764862,0.515883922576904,-0.807181894779205,0.207146286964417,0.47381591796875,-0.855913996696472,0.220038697123528,0.56413334608078,-0.795824408531189,0.286823898553848,0.500086545944214,-0.817095696926117,0.258642762899399,0.453481078147888,-0.85291188955307,0.311133205890656,0.545260846614838,-0.778387129306793,0.311133205890656,0.545260846614838,-0.778387129306793,0.276527762413025,0.525004327297211,-0.804924011230469,0.286916434764862,0.515883922576904,-0.807181894779205,0.194940403103828,0.424503535032272,-0.884191632270813,0.313498616218567,0.449634850025177,-0.836389303207397,0.270986467599869,0.490679323673248,-0.828130424022675,0.194940403103828,0.424503535032272,-0.884191632270813,0.224669769406319,0.511862754821777,-0.829168140888214,0.258642762899399,0.453481078147888,-0.85291188955307,0.0790472775697708,0.472518384456635,-0.877768635749817,0.168466582894325,0.348755806684494,-0.921948134899139,0.00415561301633716,0.271014332771301,-0.962566256523132,0.168466582894325,0.348755806684494,-0.921948134899139, +0.207146286964417,0.47381591796875,-0.855913996696472,0.243319973349571,0.365020602941513,-0.898640751838684,-0.15667399764061,0.283032715320587,-0.946227014064789,0.00415561301633716,0.271014332771301,-0.962566256523132,0.0315150693058968,0.272475212812424,-0.961646497249603,0.27244821190834,0.548548817634583,0.790484666824341,0.297494769096375,0.58757472038269,0.752497613430023,0.255386292934418,0.526150107383728,0.81113737821579,0.393603086471558,0.6678307056427,0.631726682186127,0.240986600518227,0.752709925174713,0.612660646438599,0.402971416711807,0.693648934364319,0.597046911716461,0.311327368021011,0.649991393089294,0.693243324756622,0.393603086471558,0.6678307056427,0.631726682186127,0.391663253307343,0.62276953458786,0.677316606044769,0.27244821190834,0.548548817634583,0.790484666824341,0.311327368021011,0.649991393089294,0.693243324756622,0.391663253307343,0.62276953458786,0.677316606044769,0.240986600518227,0.752709925174713,0.612660646438599,0.17569674551487,0.772976458072662,0.609621107578278,0.258032709360123,0.789814054965973,0.556428492069244,0.256793200969696,0.828548669815063,0.497558236122131,0.258032709360123,0.789814054965973,0.556428492069244,0.17569674551487,0.772976458072662,0.609621107578278,0.256793200969696,0.828548669815063,0.497558236122131,0.296632617712021,0.859286725521088,0.416695684194565,0.3150694668293,0.820490777492523,0.476996839046478,0.375115215778351,0.855243325233459,0.357557356357574,0.338292568922043,0.856536388397217,0.38974791765213,0.296632617712021,0.859286725521088,0.416695684194565,0.542814970016479,0.723201930522919,0.427002042531967,0.560298681259155,0.763075768947601,0.322149932384491,0.475907802581787,0.79836517572403,0.36895078420639,0.375115215778351,0.855243325233459,0.357557356357574,0.296632617712021,0.859286725521088,0.416695684194565,0.395481020212173,0.813681840896606,0.426047533750534,0.542814970016479,0.723201930522919,0.427002042531967,0.475907802581787,0.79836517572403,0.36895078420639,0.395481020212173,0.813681840896606,0.426047533750534,0.500612676143646,0.72946959733963,-0.466112673282623, +0.594550430774689,0.67107230424881,-0.442912608385086,0.449291825294495,0.809742510318756,-0.377430438995361,0.500612676143646,0.72946959733963,-0.466112673282623,0.297379553318024,0.898393452167511,-0.323194295167923,0.270675420761108,0.85901552438736,-0.434542268514633,0.74509733915329,0.48737233877182,-0.455299943685532,0.709781348705292,0.576951444149017,-0.404150038957596,0.594550430774689,0.67107230424881,-0.442912608385086,0.657812416553497,0.680266499519348,-0.323295712471008,0.709781348705292,0.576951444149017,-0.404150038957596,0.77362471818924,0.555643081665039,-0.304574072360992,0.758718430995941,0.600362062454224,-0.252807438373566,0.657812416553497,0.680266499519348,-0.323295712471008,0.77362471818924,0.555643081665039,-0.304574072360992,0.77362471818924,0.555643081665039,-0.304574072360992,0.815166354179382,0.545003831386566,-0.196149066090584,0.758718430995941,0.600362062454224,-0.252807438373566,-0.196807280182838,0.647752046585083,-0.735991775989532,-0.102929301559925,0.673003196716309,-0.732442557811737,-0.0795047655701637,0.609339356422424,-0.788913488388062,-0.180282786488533,0.71439790725708,-0.676116526126862,-0.112090669572353,0.738208115100861,-0.665194928646088,-0.102929301559925,0.673003196716309,-0.732442557811737,-0.180282786488533,0.71439790725708,-0.676116526126862,-0.257885813713074,0.717711985111237,-0.646826267242432,-0.167207464575768,0.782458961009979,-0.599832952022552,-0.0913489535450935,0.801190137863159,-0.591396331787109,0.0128559805452824,0.847280323505402,-0.530990242958069,-0.0916152447462082,0.842850506305695,-0.53029191493988,0.233237847685814,0.760591208934784,-0.605888545513153,0.138778105378151,0.875040650367737,-0.463728755712509,0.0128559805452824,0.847280323505402,-0.530990242958069,0.270675420761108,0.85901552438736,-0.434542268514633,0.138778105378151,0.875040650367737,-0.463728755712509,0.389891147613525,0.736155033111572,-0.553227365016937,-0.0913489535450935,0.801190137863159,-0.591396331787109,-0.167207464575768,0.782458961009979,-0.599832952022552,-0.193437978625298,0.746382415294647,-0.636784791946411, +0.684021770954132,0.719761371612549,0.118564911186695,0.73365193605423,0.671657681465149,0.103104881942272,0.689302265644073,0.72164660692215,0.0639408454298973,0.629220426082611,0.762280702590942,0.151689037680626,0.684021770954132,0.719761371612549,0.118564911186695,0.650395512580872,0.756842434406281,0.0646141991019249,0.629220426082611,0.762280702590942,0.151689037680626,0.597701013088226,0.775282502174377,0.204182177782059,0.599861204624176,0.746338486671448,0.288349121809006,0.599861204624176,0.746338486671448,0.288349121809006,0.560298681259155,0.763075768947601,0.322149932384491,0.58693128824234,0.715703070163727,0.378524243831635,0.35298165678978,0.476503819227219,-0.805200517177582,0.447376132011414,0.418042063713074,-0.790629744529724,0.353602170944214,0.425300985574722,-0.833117365837097,0.331222862005234,0.392124503850937,-0.858213067054749,0.345801651477814,0.484053909778595,-0.803811490535736,0.35298165678978,0.476503819227219,-0.805200517177582,0.447376132011414,0.418042063713074,-0.790629744529724,0.510814130306244,0.487864404916763,-0.707853853702545,0.54310154914856,0.390909343957901,-0.743122100830078,0.55446195602417,0.543975174427032,-0.629811763763428,0.534720122814178,0.4570132791996,-0.710783421993256,0.61321485042572,0.445007264614105,-0.652637660503387,0.534720122814178,0.4570132791996,-0.710783421993256,0.54310154914856,0.390909343957901,-0.743122100830078,0.61321485042572,0.445007264614105,-0.652637660503387,0.704330444335938,0.707859635353088,-0.053416658192873,0.750503897666931,0.659044444561005,-0.0490313246846199,0.686560094356537,0.717596113681793,-0.117008052766323,0.689302265644073,0.72164660692215,0.0639408454298973,0.73365193605423,0.671657681465149,0.103104881942272,0.729462146759033,0.681165516376495,0.0624356232583523,0.78348708152771,0.61957573890686,0.047682486474514,0.71178263425827,0.702293395996094,0.0122186504304409,0.729462146759033,0.681165516376495,0.0624356232583523,0.68106484413147,0.731656849384308,-0.0287885908037424,0.71178263425827,0.702293395996094,0.0122186504304409, +0.704330444335938,0.707859635353088,-0.053416658192873,0.423033237457275,0.600468814373016,-0.678586661815643,0.534720122814178,0.4570132791996,-0.710783421993256,0.55446195602417,0.543975174427032,-0.629811763763428,0.388140201568604,0.578433811664581,-0.717468798160553,0.423033237457275,0.600468814373016,-0.678586661815643,0.486703276634216,0.56200385093689,-0.66878354549408,0.600941359996796,0.541672229766846,-0.587758898735046,0.602603733539581,0.467100441455841,-0.647059321403503,0.486703276634216,0.56200385093689,-0.66878354549408,0.73989725112915,0.469319760799408,-0.481965750455856,0.646458208560944,0.493377923965454,-0.581953465938568,0.600941359996796,0.541672229766846,-0.587758898735046,0.649199545383453,0.579890906810761,-0.492205560207367,0.738809645175934,0.536852061748505,-0.407369554042816,0.73989725112915,0.469319760799408,-0.481965750455856,0.807837605476379,0.549381732940674,-0.213489636778831,0.753360986709595,0.626929342746735,-0.19851116836071,0.768732249736786,0.628658652305603,-0.11763907968998,0.807837605476379,0.549381732940674,-0.213489636778831,0.766619503498077,0.577912271022797,-0.279842168092728,0.753360986709595,0.626929342746735,-0.19851116836071,0.801779806613922,0.490114122629166,-0.341960698366165,0.738809645175934,0.536852061748505,-0.407369554042816,0.756188571453094,0.561716854572296,-0.335637956857681,0.766619503498077,0.577912271022797,-0.279842168092728,0.79945033788681,0.528693974018097,-0.285239636898041,0.756188571453094,0.561716854572296,-0.335637956857681,0.750503897666931,0.659044444561005,-0.0490313246846199,0.805961012840271,0.590121507644653,-0.0467254184186459,0.768732249736786,0.628658652305603,-0.11763907968998,0.39032581448555,0.400725990533829,-0.828893423080444,0.313498616218567,0.449634850025177,-0.836389303207397,0.345801651477814,0.484053909778595,-0.803811490535736,0.286916434764862,0.515883922576904,-0.807181894779205,0.243319973349571,0.365020602941513,-0.898640751838684,0.207146286964417,0.47381591796875,-0.855913996696472,0.258642762899399,0.453481078147888,-0.85291188955307, +0.224669769406319,0.511862754821777,-0.829168140888214,0.311133205890656,0.545260846614838,-0.778387129306793,0.311133205890656,0.545260846614838,-0.778387129306793,0.224669769406319,0.511862754821777,-0.829168140888214,0.276527762413025,0.525004327297211,-0.804924011230469,0.286222815513611,0.404096513986588,-0.868782103061676,0.286916434764862,0.515883922576904,-0.807181894779205,0.276527762413025,0.525004327297211,-0.804924011230469,0.313498616218567,0.449634850025177,-0.836389303207397,0.39032581448555,0.400725990533829,-0.828893423080444,0.270986467599869,0.490679323673248,-0.828130424022675,0.270986467599869,0.490679323673248,-0.828130424022675,0.224669769406319,0.511862754821777,-0.829168140888214,0.194940403103828,0.424503535032272,-0.884191632270813,0.168466582894325,0.348755806684494,-0.921948134899139,0.134667068719864,0.172623217105865,-0.975738644599915,0.00415561301633716,0.271014332771301,-0.962566256523132,0.168466582894325,0.348755806684494,-0.921948134899139,0.243319973349571,0.365020602941513,-0.898640751838684,0.203637346625328,0.194294095039368,-0.95957362651825,0.0315150693058968,0.272475212812424,-0.961646497249603,0.00415561301633716,0.271014332771301,-0.962566256523132,-0.0567617937922478,0.0963079556822777,-0.993731737136841,0.393603086471558,0.6678307056427,0.631726682186127,0.311327368021011,0.649991393089294,0.693243324756622,0.240986600518227,0.752709925174713,0.612660646438599,0.27244821190834,0.548548817634583,0.790484666824341,0.232763260602951,0.588428020477295,0.774321377277374,0.311327368021011,0.649991393089294,0.693243324756622,0.159789532423019,0.707501828670502,0.688409984111786,0.17569674551487,0.772976458072662,0.609621107578278,0.240986600518227,0.752709925174713,0.612660646438599,0.340112119913101,0.740305244922638,0.579889416694641,0.256793200969696,0.828548669815063,0.497558236122131,0.17569674551487,0.772976458072662,0.609621107578278,0.296632617712021,0.859286725521088,0.416695684194565,0.256793200969696,0.828548669815063,0.497558236122131,0.395481020212173,0.813681840896606,0.426047533750534, +0.58693128824234,0.715703070163727,0.378524243831635,0.560298681259155,0.763075768947601,0.322149932384491,0.542814970016479,0.723201930522919,0.427002042531967,0.495824068784714,0.718831419944763,0.487277895212173,0.542814970016479,0.723201930522919,0.427002042531967,0.395481020212173,0.813681840896606,0.426047533750534,0.702887535095215,0.486875504255295,-0.518556833267212,0.594550430774689,0.67107230424881,-0.442912608385086,0.500612676143646,0.72946959733963,-0.466112673282623,0.389891147613525,0.736155033111572,-0.553227365016937,0.500612676143646,0.72946959733963,-0.466112673282623,0.270675420761108,0.85901552438736,-0.434542268514633,0.74509733915329,0.48737233877182,-0.455299943685532,0.811598718166351,0.463516265153885,-0.355612248182297,0.709781348705292,0.576951444149017,-0.404150038957596,0.74509733915329,0.48737233877182,-0.455299943685532,0.594550430774689,0.67107230424881,-0.442912608385086,0.702887535095215,0.486875504255295,-0.518556833267212,0.77362471818924,0.555643081665039,-0.304574072360992,0.709781348705292,0.576951444149017,-0.404150038957596,0.811598718166351,0.463516265153885,-0.355612248182297,0.815166354179382,0.545003831386566,-0.196149066090584,0.77362471818924,0.555643081665039,-0.304574072360992,0.845264434814453,0.463748693466187,-0.26545262336731,-0.196807280182838,0.647752046585083,-0.735991775989532,-0.180282786488533,0.71439790725708,-0.676116526126862,-0.102929301559925,0.673003196716309,-0.732442557811737,-0.0795047655701637,0.609339356422424,-0.788913488388062,-0.184655800461769,0.601204574108124,-0.77746719121933,-0.196807280182838,0.647752046585083,-0.735991775989532,-0.196807280182838,0.647752046585083,-0.735991775989532,-0.257885813713074,0.717711985111237,-0.646826267242432,-0.180282786488533,0.71439790725708,-0.676116526126862,-0.193437978625298,0.746382415294647,-0.636784791946411,-0.167207464575768,0.782458961009979,-0.599832952022552,-0.257885813713074,0.717711985111237,-0.646826267242432,0.0782485380768776,0.772835493087769,-0.629763722419739,0.0128559805452824,0.847280323505402,-0.530990242958069, +-0.0913489535450935,0.801190137863159,-0.591396331787109,0.233237847685814,0.760591208934784,-0.605888545513153,0.389891147613525,0.736155033111572,-0.553227365016937,0.138778105378151,0.875040650367737,-0.463728755712509,0.233237847685814,0.760591208934784,-0.605888545513153,0.0128559805452824,0.847280323505402,-0.530990242958069,0.0782485380768776,0.772835493087769,-0.629763722419739,-0.0913489535450935,0.801190137863159,-0.591396331787109,-0.193437978625298,0.746382415294647,-0.636784791946411,-0.00608859723433852,0.718112826347351,-0.695899963378906,0.684021770954132,0.719761371612549,0.118564911186695,0.72943377494812,0.660111844539642,0.179384112358093,0.73365193605423,0.671657681465149,0.103104881942272,0.629220426082611,0.762280702590942,0.151689037680626,0.670827567577362,0.707914471626282,0.221014231443405,0.684021770954132,0.719761371612549,0.118564911186695,0.629220426082611,0.762280702590942,0.151689037680626,0.599861204624176,0.746338486671448,0.288349121809006,0.670827567577362,0.707914471626282,0.221014231443405,0.599861204624176,0.746338486671448,0.288349121809006,0.58693128824234,0.715703070163727,0.378524243831635,0.664811134338379,0.666838407516479,0.336678624153137,0.447376132011414,0.418042063713074,-0.790629744529724,0.388659685850143,0.366109490394592,-0.845521926879883,0.353602170944214,0.425300985574722,-0.833117365837097,0.353602170944214,0.425300985574722,-0.833117365837097,0.331222862005234,0.392124503850937,-0.858213067054749,0.35298165678978,0.476503819227219,-0.805200517177582,0.39032581448555,0.400725990533829,-0.828893423080444,0.345801651477814,0.484053909778595,-0.803811490535736,0.331222862005234,0.392124503850937,-0.858213067054749,0.447376132011414,0.418042063713074,-0.790629744529724,0.54310154914856,0.390909343957901,-0.743122100830078,0.492371439933777,0.374513477087021,-0.785690784454346,0.534720122814178,0.4570132791996,-0.710783421993256,0.492371439933777,0.374513477087021,-0.785690784454346,0.54310154914856,0.390909343957901,-0.743122100830078,0.750503897666931,0.659044444561005,-0.0490313246846199, +0.704330444335938,0.707859635353088,-0.053416658192873,0.71178263425827,0.702293395996094,0.0122186504304409,0.78348708152771,0.61957573890686,0.047682486474514,0.729462146759033,0.681165516376495,0.0624356232583523,0.73365193605423,0.671657681465149,0.103104881942272,0.71178263425827,0.702293395996094,0.0122186504304409,0.78348708152771,0.61957573890686,0.047682486474514,0.779276609420776,0.626677095890045,-0.00189052091445774,0.423033237457275,0.600468814373016,-0.678586661815643,0.404817759990692,0.517256438732147,-0.754034638404846,0.534720122814178,0.4570132791996,-0.710783421993256,0.388140201568604,0.578433811664581,-0.717468798160553,0.404817759990692,0.517256438732147,-0.754034638404846,0.423033237457275,0.600468814373016,-0.678586661815643,0.486703276634216,0.56200385093689,-0.66878354549408,0.489823460578918,0.489726096391678,-0.721277475357056,0.388140201568604,0.578433811664581,-0.717468798160553,0.602603733539581,0.467100441455841,-0.647059321403503,0.600941359996796,0.541672229766846,-0.587758898735046,0.646458208560944,0.493377923965454,-0.581953465938568,0.602603733539581,0.467100441455841,-0.647059321403503,0.55857253074646,0.451337605714798,-0.695910155773163,0.486703276634216,0.56200385093689,-0.66878354549408,0.73989725112915,0.469319760799408,-0.481965750455856,0.714938700199127,0.490311145782471,-0.498454928398132,0.646458208560944,0.493377923965454,-0.581953465938568,0.73989725112915,0.469319760799408,-0.481965750455856,0.738809645175934,0.536852061748505,-0.407369554042816,0.801779806613922,0.490114122629166,-0.341960698366165,0.811056077480316,0.571756541728973,-0.123622238636017,0.807837605476379,0.549381732940674,-0.213489636778831,0.768732249736786,0.628658652305603,-0.11763907968998,0.807837605476379,0.549381732940674,-0.213489636778831,0.79945033788681,0.528693974018097,-0.285239636898041,0.766619503498077,0.577912271022797,-0.279842168092728,0.79945033788681,0.528693974018097,-0.285239636898041,0.801779806613922,0.490114122629166,-0.341960698366165,0.756188571453094,0.561716854572296,-0.335637956857681, +0.750503897666931,0.659044444561005,-0.0490313246846199,0.779276609420776,0.626677095890045,-0.00189052091445774,0.805961012840271,0.590121507644653,-0.0467254184186459,0.811056077480316,0.571756541728973,-0.123622238636017,0.768732249736786,0.628658652305603,-0.11763907968998,0.805961012840271,0.590121507644653,-0.0467254184186459,0.243319973349571,0.365020602941513,-0.898640751838684,0.286916434764862,0.515883922576904,-0.807181894779205,0.286222815513611,0.404096513986588,-0.868782103061676,0.270986467599869,0.490679323673248,-0.828130424022675,0.276527762413025,0.525004327297211,-0.804924011230469,0.224669769406319,0.511862754821777,-0.829168140888214,0.308182448148727,0.335347533226013,-0.890261471271515,0.286222815513611,0.404096513986588,-0.868782103061676,0.276527762413025,0.525004327297211,-0.804924011230469,0.39032581448555,0.400725990533829,-0.828893423080444,0.335493326187134,0.431690901517868,-0.837309420108795,0.270986467599869,0.490679323673248,-0.828130424022675,0.134667068719864,0.172623217105865,-0.975738644599915,0.168466582894325,0.348755806684494,-0.921948134899139,0.203637346625328,0.194294095039368,-0.95957362651825,0.0238457024097443,0.0708833485841751,-0.997199475765228,0.00415561301633716,0.271014332771301,-0.962566256523132,0.134667068719864,0.172623217105865,-0.975738644599915,0.26212278008461,0.216610431671143,-0.940410256385803,0.203637346625328,0.194294095039368,-0.95957362651825,0.243319973349571,0.365020602941513,-0.898640751838684,-0.0567617937922478,0.0963079556822777,-0.993731737136841,0.00415561301633716,0.271014332771301,-0.962566256523132,0.0238457024097443,0.0708833485841751,-0.997199475765228,0.0315150693058968,0.272475212812424,-0.961646497249603,-0.0567617937922478,0.0963079556822777,-0.993731737136841,0.0405526459217072,0.0978944301605225,-0.99437016248703,0.311327368021011,0.649991393089294,0.693243324756622,0.159789532423019,0.707501828670502,0.688409984111786,0.240986600518227,0.752709925174713,0.612660646438599,0.311327368021011,0.649991393089294,0.693243324756622,0.232763260602951,0.588428020477295,0.774321377277374, +0.159789532423019,0.707501828670502,0.688409984111786,0.17569674551487,0.772976458072662,0.609621107578278,0.159789532423019,0.707501828670502,0.688409984111786,0.186134561896324,0.683296263217926,0.706017017364502,0.256793200969696,0.828548669815063,0.497558236122131,0.340112119913101,0.740305244922638,0.579889416694641,0.395713061094284,0.761255502700806,0.513713121414185,0.340112119913101,0.740305244922638,0.579889416694641,0.17569674551487,0.772976458072662,0.609621107578278,0.328689843416214,0.656378030776978,0.679066002368927,0.395481020212173,0.813681840896606,0.426047533750534,0.256793200969696,0.828548669815063,0.497558236122131,0.395713061094284,0.761255502700806,0.513713121414185,0.542814970016479,0.723201930522919,0.427002042531967,0.56906533241272,0.6991286277771,0.432878345251083,0.58693128824234,0.715703070163727,0.378524243831635,0.542814970016479,0.723201930522919,0.427002042531967,0.495824068784714,0.718831419944763,0.487277895212173,0.570616543292999,0.614080607891083,0.545253694057465,0.395481020212173,0.813681840896606,0.426047533750534,0.395713061094284,0.761255502700806,0.513713121414185,0.495824068784714,0.718831419944763,0.487277895212173,0.702887535095215,0.486875504255295,-0.518556833267212,0.500612676143646,0.72946959733963,-0.466112673282623,0.626571655273438,0.491322219371796,-0.604987919330597,0.389891147613525,0.736155033111572,-0.553227365016937,0.626571655273438,0.491322219371796,-0.604987919330597,0.500612676143646,0.72946959733963,-0.466112673282623,0.808642148971558,0.382527112960815,-0.44695720076561,0.811598718166351,0.463516265153885,-0.355612248182297,0.74509733915329,0.48737233877182,-0.455299943685532,0.702887535095215,0.486875504255295,-0.518556833267212,0.808642148971558,0.382527112960815,-0.44695720076561,0.74509733915329,0.48737233877182,-0.455299943685532,0.77362471818924,0.555643081665039,-0.304574072360992,0.811598718166351,0.463516265153885,-0.355612248182297,0.845264434814453,0.463748693466187,-0.26545262336731,0.876865863800049,0.446303635835648,-0.178659722208977, +0.815166354179382,0.545003831386566,-0.196149066090584,0.845264434814453,0.463748693466187,-0.26545262336731,-0.196807280182838,0.647752046585083,-0.735991775989532,-0.184655800461769,0.601204574108124,-0.77746719121933,-0.222252160310745,0.616325318813324,-0.755478024482727,-0.257885813713074,0.717711985111237,-0.646826267242432,-0.196807280182838,0.647752046585083,-0.735991775989532,-0.260678023099899,0.674859881401062,-0.690370142459869,-0.193437978625298,0.746382415294647,-0.636784791946411,-0.257885813713074,0.717711985111237,-0.646826267242432,-0.242940723896027,0.713185548782349,-0.657530248165131,0.0782485380768776,0.772835493087769,-0.629763722419739,-0.0913489535450935,0.801190137863159,-0.591396331787109,-0.00608859723433852,0.718112826347351,-0.695899963378906,0.498166143894196,0.503412127494812,-0.70597916841507,0.389891147613525,0.736155033111572,-0.553227365016937,0.233237847685814,0.760591208934784,-0.605888545513153,0.233237847685814,0.760591208934784,-0.605888545513153,0.0782485380768776,0.772835493087769,-0.629763722419739,0.25574991106987,0.623068332672119,-0.739173650741577,-0.0886881574988365,0.666096031665802,-0.740574359893799,-0.00608859723433852,0.718112826347351,-0.695899963378906,-0.193437978625298,0.746382415294647,-0.636784791946411,0.670827567577362,0.707914471626282,0.221014231443405,0.72943377494812,0.660111844539642,0.179384112358093,0.684021770954132,0.719761371612549,0.118564911186695,0.779272854328156,0.611011326313019,0.139279708266258,0.73365193605423,0.671657681465149,0.103104881942272,0.72943377494812,0.660111844539642,0.179384112358093,0.670827567577362,0.707914471626282,0.221014231443405,0.599861204624176,0.746338486671448,0.288349121809006,0.664811134338379,0.666838407516479,0.336678624153137,0.606435120105743,0.696073889732361,0.384340196847916,0.664811134338379,0.666838407516479,0.336678624153137,0.58693128824234,0.715703070163727,0.378524243831635,0.447376132011414,0.418042063713074,-0.790629744529724,0.475149631500244,0.306749433279037,-0.824704468250275,0.388659685850143,0.366109490394592,-0.845521926879883, +0.388659685850143,0.366109490394592,-0.845521926879883,0.331222862005234,0.392124503850937,-0.858213067054749,0.353602170944214,0.425300985574722,-0.833117365837097,0.331222862005234,0.392124503850937,-0.858213067054749,0.374907582998276,0.285279929637909,-0.882076799869537,0.39032581448555,0.400725990533829,-0.828893423080444,0.447376132011414,0.418042063713074,-0.790629744529724,0.492371439933777,0.374513477087021,-0.785690784454346,0.475149631500244,0.306749433279037,-0.824704468250275,0.492371439933777,0.374513477087021,-0.785690784454346,0.534720122814178,0.4570132791996,-0.710783421993256,0.404817759990692,0.517256438732147,-0.754034638404846,0.750503897666931,0.659044444561005,-0.0490313246846199,0.71178263425827,0.702293395996094,0.0122186504304409,0.779276609420776,0.626677095890045,-0.00189052091445774,0.793744921684265,0.600415587425232,0.0973142310976982,0.78348708152771,0.61957573890686,0.047682486474514,0.73365193605423,0.671657681465149,0.103104881942272,0.78348708152771,0.61957573890686,0.047682486474514,0.806339204311371,0.59145325422287,6.59887155052274e-005,0.779276609420776,0.626677095890045,-0.00189052091445774,0.388140201568604,0.578433811664581,-0.717468798160553,0.395674377679825,0.506178140640259,-0.766306281089783,0.404817759990692,0.517256438732147,-0.754034638404846,0.489823460578918,0.489726096391678,-0.721277475357056,0.486703276634216,0.56200385093689,-0.66878354549408,0.55857253074646,0.451337605714798,-0.695910155773163,0.489823460578918,0.489726096391678,-0.721277475357056,0.395674377679825,0.506178140640259,-0.766306281089783,0.388140201568604,0.578433811664581,-0.717468798160553,0.602603733539581,0.467100441455841,-0.647059321403503,0.646458208560944,0.493377923965454,-0.581953465938568,0.596197605133057,0.461604654788971,-0.656863272190094,0.602603733539581,0.467100441455841,-0.647059321403503,0.596197605133057,0.461604654788971,-0.656863272190094,0.55857253074646,0.451337605714798,-0.695910155773163,0.73989725112915,0.469319760799408,-0.481965750455856,0.774351716041565,0.485300660133362,-0.406032651662827, +0.714938700199127,0.490311145782471,-0.498454928398132,0.665557622909546,0.509753048419952,-0.545146346092224,0.646458208560944,0.493377923965454,-0.581953465938568,0.714938700199127,0.490311145782471,-0.498454928398132,0.73989725112915,0.469319760799408,-0.481965750455856,0.801779806613922,0.490114122629166,-0.341960698366165,0.825471341609955,0.445768058300018,-0.346248060464859,0.807837605476379,0.549381732940674,-0.213489636778831,0.811056077480316,0.571756541728973,-0.123622238636017,0.808269321918488,0.55500715970993,-0.196640729904175,0.803607642650604,0.533601462841034,-0.26359835267067,0.79945033788681,0.528693974018097,-0.285239636898041,0.807837605476379,0.549381732940674,-0.213489636778831,0.81258487701416,0.505675435066223,-0.289824098348618,0.801779806613922,0.490114122629166,-0.341960698366165,0.79945033788681,0.528693974018097,-0.285239636898041,0.805961012840271,0.590121507644653,-0.0467254184186459,0.779276609420776,0.626677095890045,-0.00189052091445774,0.806339204311371,0.59145325422287,6.59887155052274e-005,0.807689964771271,0.587722778320313,-0.0471042692661285,0.811056077480316,0.571756541728973,-0.123622238636017,0.805961012840271,0.590121507644653,-0.0467254184186459,0.243319973349571,0.365020602941513,-0.898640751838684,0.286222815513611,0.404096513986588,-0.868782103061676,0.26212278008461,0.216610431671143,-0.940410256385803,0.335493326187134,0.431690901517868,-0.837309420108795,0.276527762413025,0.525004327297211,-0.804924011230469,0.270986467599869,0.490679323673248,-0.828130424022675,0.308182448148727,0.335347533226013,-0.890261471271515,0.26212278008461,0.216610431671143,-0.940410256385803,0.286222815513611,0.404096513986588,-0.868782103061676,0.335493326187134,0.431690901517868,-0.837309420108795,0.308182448148727,0.335347533226013,-0.890261471271515,0.276527762413025,0.525004327297211,-0.804924011230469,0.39032581448555,0.400725990533829,-0.828893423080444,0.390979677438736,0.282968491315842,-0.875821650028229,0.335493326187134,0.431690901517868,-0.837309420108795,0.134667068719864,0.172623217105865,-0.975738644599915, +0.203637346625328,0.194294095039368,-0.95957362651825,0.157145738601685,0.125790625810623,-0.979531466960907,0.134667068719864,0.172623217105865,-0.975738644599915,0.0918761640787125,0.031198151409626,-0.995281517505646,0.0238457024097443,0.0708833485841751,-0.997199475765228,0.222980946302414,0.145332485437393,-0.96392834186554,0.203637346625328,0.194294095039368,-0.95957362651825,0.26212278008461,0.216610431671143,-0.940410256385803,-0.0567617937922478,0.0963079556822777,-0.993731737136841,0.0238457024097443,0.0708833485841751,-0.997199475765228,0.0405526459217072,0.0978944301605225,-0.99437016248703,0.0315150693058968,0.272475212812424,-0.961646497249603,0.0405526459217072,0.0978944301605225,-0.99437016248703,0.257648348808289,0.278692722320557,-0.925174355506897,0.244099229574203,0.591526865959167,0.768447399139404,0.159789532423019,0.707501828670502,0.688409984111786,0.232763260602951,0.588428020477295,0.774321377277374,0.159789532423019,0.707501828670502,0.688409984111786,0.244099229574203,0.591526865959167,0.768447399139404,0.186134561896324,0.683296263217926,0.706017017364502,0.17569674551487,0.772976458072662,0.609621107578278,0.186134561896324,0.683296263217926,0.706017017364502,0.328689843416214,0.656378030776978,0.679066002368927,0.340112119913101,0.740305244922638,0.579889416694641,0.473279416561127,0.643283128738403,0.601824939250946,0.395713061094284,0.761255502700806,0.513713121414185,0.473279416561127,0.643283128738403,0.601824939250946,0.340112119913101,0.740305244922638,0.579889416694641,0.328689843416214,0.656378030776978,0.679066002368927,0.542814970016479,0.723201930522919,0.427002042531967,0.562325894832611,0.663634359836578,0.493334382772446,0.56906533241272,0.6991286277771,0.432878345251083,0.56906533241272,0.6991286277771,0.432878345251083,0.606435120105743,0.696073889732361,0.384340196847916,0.58693128824234,0.715703070163727,0.378524243831635,0.495824068784714,0.718831419944763,0.487277895212173,0.473279416561127,0.643283128738403,0.601824939250946,0.570616543292999,0.614080607891083,0.545253694057465, +0.570616543292999,0.614080607891083,0.545253694057465,0.562325894832611,0.663634359836578,0.493334382772446,0.542814970016479,0.723201930522919,0.427002042531967,0.473279416561127,0.643283128738403,0.601824939250946,0.495824068784714,0.718831419944763,0.487277895212173,0.395713061094284,0.761255502700806,0.513713121414185,0.702887535095215,0.486875504255295,-0.518556833267212,0.626571655273438,0.491322219371796,-0.604987919330597,0.761746466159821,0.326132714748383,-0.559803307056427,0.498166143894196,0.503412127494812,-0.70597916841507,0.626571655273438,0.491322219371796,-0.604987919330597,0.389891147613525,0.736155033111572,-0.553227365016937,0.853671669960022,0.367664664983749,-0.368872910737991,0.811598718166351,0.463516265153885,-0.355612248182297,0.808642148971558,0.382527112960815,-0.44695720076561,0.702887535095215,0.486875504255295,-0.518556833267212,0.761746466159821,0.326132714748383,-0.559803307056427,0.808642148971558,0.382527112960815,-0.44695720076561,0.879591763019562,0.383313924074173,-0.281760036945343,0.845264434814453,0.463748693466187,-0.26545262336731,0.811598718166351,0.463516265153885,-0.355612248182297,0.876865863800049,0.446303635835648,-0.178659722208977,0.845264434814453,0.463748693466187,-0.26545262336731,0.909617006778717,0.357014417648315,-0.212455853819847,-0.196807280182838,0.647752046585083,-0.735991775989532,-0.222252160310745,0.616325318813324,-0.755478024482727,-0.260678023099899,0.674859881401062,-0.690370142459869,-0.257885813713074,0.717711985111237,-0.646826267242432,-0.260678023099899,0.674859881401062,-0.690370142459869,-0.288437575101852,0.713736534118652,-0.638266205787659,-0.288437575101852,0.713736534118652,-0.638266205787659,-0.242940723896027,0.713185548782349,-0.657530248165131,-0.257885813713074,0.717711985111237,-0.646826267242432,-0.0886881574988365,0.666096031665802,-0.740574359893799,-0.193437978625298,0.746382415294647,-0.636784791946411,-0.242940723896027,0.713185548782349,-0.657530248165131,0.0782485380768776,0.772835493087769,-0.629763722419739,-0.00608859723433852,0.718112826347351,-0.695899963378906, +0.25574991106987,0.623068332672119,-0.739173650741577,0.233237847685814,0.760591208934784,-0.605888545513153,0.25574991106987,0.623068332672119,-0.739173650741577,0.498166143894196,0.503412127494812,-0.70597916841507,0.159326434135437,0.562961935997009,-0.810980141162872,-0.00608859723433852,0.718112826347351,-0.695899963378906,-0.0886881574988365,0.666096031665802,-0.740574359893799,0.670827567577362,0.707914471626282,0.221014231443405,0.724004685878754,0.629357933998108,0.28235724568367,0.72943377494812,0.660111844539642,0.179384112358093,0.779272854328156,0.611011326313019,0.139279708266258,0.793744921684265,0.600415587425232,0.0973142310976982,0.73365193605423,0.671657681465149,0.103104881942272,0.72943377494812,0.660111844539642,0.179384112358093,0.782359540462494,0.58152174949646,0.223037794232368,0.779272854328156,0.611011326313019,0.139279708266258,0.670827567577362,0.707914471626282,0.221014231443405,0.664811134338379,0.666838407516479,0.336678624153137,0.724004685878754,0.629357933998108,0.28235724568367,0.664811134338379,0.666838407516479,0.336678624153137,0.606435120105743,0.696073889732361,0.384340196847916,0.669441759586334,0.62239396572113,0.405552953481674,0.388659685850143,0.366109490394592,-0.845521926879883,0.475149631500244,0.306749433279037,-0.824704468250275,0.368381857872009,0.302052140235901,-0.879237830638886,0.388659685850143,0.366109490394592,-0.845521926879883,0.368381857872009,0.302052140235901,-0.879237830638886,0.331222862005234,0.392124503850937,-0.858213067054749,0.374907582998276,0.285279929637909,-0.882076799869537,0.331222862005234,0.392124503850937,-0.858213067054749,0.368381857872009,0.302052140235901,-0.879237830638886,0.390979677438736,0.282968491315842,-0.875821650028229,0.39032581448555,0.400725990533829,-0.828893423080444,0.374907582998276,0.285279929637909,-0.882076799869537,0.475149631500244,0.306749433279037,-0.824704468250275,0.492371439933777,0.374513477087021,-0.785690784454346,0.448088407516479,0.346236944198608,-0.824218809604645,0.492371439933777,0.374513477087021,-0.785690784454346, +0.404817759990692,0.517256438732147,-0.754034638404846,0.366292655467987,0.473710179328918,-0.800892114639282,0.814116775989532,0.575292646884918,0.0790698602795601,0.78348708152771,0.61957573890686,0.047682486474514,0.793744921684265,0.600415587425232,0.0973142310976982,0.78348708152771,0.61957573890686,0.047682486474514,0.808261096477509,0.588743567466736,0.00974030513316393,0.806339204311371,0.59145325422287,6.59887155052274e-005,0.404817759990692,0.517256438732147,-0.754034638404846,0.395674377679825,0.506178140640259,-0.766306281089783,0.366292655467987,0.473710179328918,-0.800892114639282,0.55857253074646,0.451337605714798,-0.695910155773163,0.477631419897079,0.46976912021637,-0.74241840839386,0.489823460578918,0.489726096391678,-0.721277475357056,0.489823460578918,0.489726096391678,-0.721277475357056,0.477631419897079,0.46976912021637,-0.74241840839386,0.395674377679825,0.506178140640259,-0.766306281089783,0.575161457061768,0.530484020709991,-0.6227166056633,0.596197605133057,0.461604654788971,-0.656863272190094,0.646458208560944,0.493377923965454,-0.581953465938568,0.506223142147064,0.504185676574707,-0.699667572975159,0.55857253074646,0.451337605714798,-0.695910155773163,0.596197605133057,0.461604654788971,-0.656863272190094,0.825471341609955,0.445768058300018,-0.346248060464859,0.774351716041565,0.485300660133362,-0.406032651662827,0.73989725112915,0.469319760799408,-0.481965750455856,0.72927463054657,0.510252773761749,-0.455851346254349,0.714938700199127,0.490311145782471,-0.498454928398132,0.774351716041565,0.485300660133362,-0.406032651662827,0.646458208560944,0.493377923965454,-0.581953465938568,0.665557622909546,0.509753048419952,-0.545146346092224,0.596099734306335,0.526411175727844,-0.606264114379883,0.665557622909546,0.509753048419952,-0.545146346092224,0.714938700199127,0.490311145782471,-0.498454928398132,0.72927463054657,0.510252773761749,-0.455851346254349,0.825471341609955,0.445768058300018,-0.346248060464859,0.801779806613922,0.490114122629166,-0.341960698366165,0.833279967308044,0.451687663793564,-0.318783044815063, +0.811056077480316,0.571756541728973,-0.123622238636017,0.819117963314056,0.56301087141037,-0.109838016331196,0.808269321918488,0.55500715970993,-0.196640729904175,0.807837605476379,0.549381732940674,-0.213489636778831,0.808269321918488,0.55500715970993,-0.196640729904175,0.803607642650604,0.533601462841034,-0.26359835267067,0.81258487701416,0.505675435066223,-0.289824098348618,0.79945033788681,0.528693974018097,-0.285239636898041,0.803607642650604,0.533601462841034,-0.26359835267067,0.833279967308044,0.451687663793564,-0.318783044815063,0.801779806613922,0.490114122629166,-0.341960698366165,0.81258487701416,0.505675435066223,-0.289824098348618,0.808261096477509,0.588743567466736,0.00974030513316393,0.805961012840271,0.590121507644653,-0.0467254184186459,0.806339204311371,0.59145325422287,6.59887155052274e-005,0.811056077480316,0.571756541728973,-0.123622238636017,0.807689964771271,0.587722778320313,-0.0471042692661285,0.819117963314056,0.56301087141037,-0.109838016331196,0.808261096477509,0.588743567466736,0.00974030513316393,0.807689964771271,0.587722778320313,-0.0471042692661285,0.805961012840271,0.590121507644653,-0.0467254184186459,0.358484983444214,0.196387752890587,-0.912644684314728,0.26212278008461,0.216610431671143,-0.940410256385803,0.308182448148727,0.335347533226013,-0.890261471271515,0.308182448148727,0.335347533226013,-0.890261471271515,0.335493326187134,0.431690901517868,-0.837309420108795,0.390979677438736,0.282968491315842,-0.875821650028229,0.157145738601685,0.125790625810623,-0.979531466960907,0.203637346625328,0.194294095039368,-0.95957362651825,0.222980946302414,0.145332485437393,-0.96392834186554,0.134667068719864,0.172623217105865,-0.975738644599915,0.157145738601685,0.125790625810623,-0.979531466960907,0.0918761640787125,0.031198151409626,-0.995281517505646,0.00866861362010241,0.0185559261590242,-0.999790191650391,0.0238457024097443,0.0708833485841751,-0.997199475765228,0.0918761640787125,0.031198151409626,-0.995281517505646,0.283232748508453,0.172111988067627,-0.943481087684631,0.222980946302414,0.145332485437393,-0.96392834186554, +0.26212278008461,0.216610431671143,-0.940410256385803,0.0405526459217072,0.0978944301605225,-0.99437016248703,0.0238457024097443,0.0708833485841751,-0.997199475765228,0.00866861362010241,0.0185559261590242,-0.999790191650391,0.257648348808289,0.278692722320557,-0.925174355506897,0.0405526459217072,0.0978944301605225,-0.99437016248703,0.18834500014782,0.265499353408813,-0.945534825325012,0.188188418745995,0.497414946556091,0.846855044364929,0.244099229574203,0.591526865959167,0.768447399139404,0.232763260602951,0.588428020477295,0.774321377277374,0.186134561896324,0.683296263217926,0.706017017364502,0.244099229574203,0.591526865959167,0.768447399139404,0.328689843416214,0.656378030776978,0.679066002368927,0.328689843416214,0.656378030776978,0.679066002368927,0.423069179058075,0.556574702262878,0.715008318424225,0.473279416561127,0.643283128738403,0.601824939250946,0.56906533241272,0.6991286277771,0.432878345251083,0.562325894832611,0.663634359836578,0.493334382772446,0.585879683494568,0.667600870132446,0.459406137466431,0.56906533241272,0.6991286277771,0.432878345251083,0.585879683494568,0.667600870132446,0.459406137466431,0.606435120105743,0.696073889732361,0.384340196847916,0.519025444984436,0.543490350246429,0.659720242023468,0.570616543292999,0.614080607891083,0.545253694057465,0.473279416561127,0.643283128738403,0.601824939250946,0.570616543292999,0.614080607891083,0.545253694057465,0.585654854774475,0.591925382614136,0.55374413728714,0.562325894832611,0.663634359836578,0.493334382772446,0.761746466159821,0.326132714748383,-0.559803307056427,0.626571655273438,0.491322219371796,-0.604987919330597,0.685054242610931,0.278504699468613,-0.673153519630432,0.498166143894196,0.503412127494812,-0.70597916841507,0.685054242610931,0.278504699468613,-0.673153519630432,0.626571655273438,0.491322219371796,-0.604987919330597,0.879591763019562,0.383313924074173,-0.281760036945343,0.811598718166351,0.463516265153885,-0.355612248182297,0.853671669960022,0.367664664983749,-0.368872910737991,0.853671669960022,0.367664664983749,-0.368872910737991, +0.808642148971558,0.382527112960815,-0.44695720076561,0.794034779071808,0.376707971096039,-0.477074146270752,0.808642148971558,0.382527112960815,-0.44695720076561,0.761746466159821,0.326132714748383,-0.559803307056427,0.78587681055069,0.34170326590538,-0.515399217605591,0.909617006778717,0.357014417648315,-0.212455853819847,0.845264434814453,0.463748693466187,-0.26545262336731,0.879591763019562,0.383313924074173,-0.281760036945343,-0.259002536535263,0.703525185585022,-0.661792874336243,-0.288437575101852,0.713736534118652,-0.638266205787659,-0.260678023099899,0.674859881401062,-0.690370142459869,-0.242940723896027,0.713185548782349,-0.657530248165131,-0.288437575101852,0.713736534118652,-0.638266205787659,-0.259002536535263,0.703525185585022,-0.661792874336243,-0.123137764632702,0.645719170570374,-0.753580570220947,-0.0886881574988365,0.666096031665802,-0.740574359893799,-0.242940723896027,0.713185548782349,-0.657530248165131,-0.00608859723433852,0.718112826347351,-0.695899963378906,0.159326434135437,0.562961935997009,-0.810980141162872,0.25574991106987,0.623068332672119,-0.739173650741577,0.498166143894196,0.503412127494812,-0.70597916841507,0.25574991106987,0.623068332672119,-0.739173650741577,0.454428941011429,0.345394611358643,-0.821094870567322,-0.0886881574988365,0.666096031665802,-0.740574359893799,0.154500231146812,0.479269832372665,-0.863961815834045,0.159326434135437,0.562961935997009,-0.810980141162872,0.72943377494812,0.660111844539642,0.179384112358093,0.724004685878754,0.629357933998108,0.28235724568367,0.782359540462494,0.58152174949646,0.223037794232368,0.779272854328156,0.611011326313019,0.139279708266258,0.820189654827118,0.553511321544647,0.144616484642029,0.793744921684265,0.600415587425232,0.0973142310976982,0.779272854328156,0.611011326313019,0.139279708266258,0.782359540462494,0.58152174949646,0.223037794232368,0.820189654827118,0.553511321544647,0.144616484642029,0.664811134338379,0.666838407516479,0.336678624153137,0.723035275936127,0.56877213716507,0.392068892717361,0.724004685878754,0.629357933998108,0.28235724568367, +0.585879683494568,0.667600870132446,0.459406137466431,0.669441759586334,0.62239396572113,0.405552953481674,0.606435120105743,0.696073889732361,0.384340196847916,0.664811134338379,0.666838407516479,0.336678624153137,0.669441759586334,0.62239396572113,0.405552953481674,0.723035275936127,0.56877213716507,0.392068892717361,0.368381857872009,0.302052140235901,-0.879237830638886,0.475149631500244,0.306749433279037,-0.824704468250275,0.380226135253906,0.289634317159653,-0.878373444080353,0.374907582998276,0.285279929637909,-0.882076799869537,0.368381857872009,0.302052140235901,-0.879237830638886,0.340989738702774,0.242705017328262,-0.908196151256561,0.390979677438736,0.282968491315842,-0.875821650028229,0.374907582998276,0.285279929637909,-0.882076799869537,0.358484983444214,0.196387752890587,-0.912644684314728,0.448088407516479,0.346236944198608,-0.824218809604645,0.492371439933777,0.374513477087021,-0.785690784454346,0.366292655467987,0.473710179328918,-0.800892114639282,0.380226135253906,0.289634317159653,-0.878373444080353,0.475149631500244,0.306749433279037,-0.824704468250275,0.448088407516479,0.346236944198608,-0.824218809604645,0.814116775989532,0.575292646884918,0.0790698602795601,0.808261096477509,0.588743567466736,0.00974030513316393,0.78348708152771,0.61957573890686,0.047682486474514,0.814116775989532,0.575292646884918,0.0790698602795601,0.793744921684265,0.600415587425232,0.0973142310976982,0.820189654827118,0.553511321544647,0.144616484642029,0.334080159664154,0.511682510375977,-0.791562557220459,0.366292655467987,0.473710179328918,-0.800892114639282,0.395674377679825,0.506178140640259,-0.766306281089783,0.506223142147064,0.504185676574707,-0.699667572975159,0.477631419897079,0.46976912021637,-0.74241840839386,0.55857253074646,0.451337605714798,-0.695910155773163,0.417371451854706,0.481106907129288,-0.770932674407959,0.395674377679825,0.506178140640259,-0.766306281089783,0.477631419897079,0.46976912021637,-0.74241840839386,0.543053269386292,0.515273332595825,-0.663013100624084,0.596197605133057,0.461604654788971,-0.656863272190094, +0.575161457061768,0.530484020709991,-0.6227166056633,0.646458208560944,0.493377923965454,-0.581953465938568,0.596099734306335,0.526411175727844,-0.606264114379883,0.575161457061768,0.530484020709991,-0.6227166056633,0.543053269386292,0.515273332595825,-0.663013100624084,0.506223142147064,0.504185676574707,-0.699667572975159,0.596197605133057,0.461604654788971,-0.656863272190094,0.774351716041565,0.485300660133362,-0.406032651662827,0.825471341609955,0.445768058300018,-0.346248060464859,0.795255362987518,0.473598808050156,-0.378514230251312,0.72927463054657,0.510252773761749,-0.455851346254349,0.774351716041565,0.485300660133362,-0.406032651662827,0.795255362987518,0.473598808050156,-0.378514230251312,0.596099734306335,0.526411175727844,-0.606264114379883,0.665557622909546,0.509753048419952,-0.545146346092224,0.654360890388489,0.453683465719223,-0.604965269565582,0.72927463054657,0.510252773761749,-0.455851346254349,0.750046908855438,0.445043206214905,-0.489250510931015,0.665557622909546,0.509753048419952,-0.545146346092224,0.839806020259857,0.436201900243759,-0.323192477226257,0.825471341609955,0.445768058300018,-0.346248060464859,0.833279967308044,0.451687663793564,-0.318783044815063,0.808269321918488,0.55500715970993,-0.196640729904175,0.819117963314056,0.56301087141037,-0.109838016331196,0.811422348022461,0.537321388721466,-0.229954838752747,0.811422348022461,0.537321388721466,-0.229954838752747,0.803607642650604,0.533601462841034,-0.26359835267067,0.808269321918488,0.55500715970993,-0.196640729904175,0.81258487701416,0.505675435066223,-0.289824098348618,0.803607642650604,0.533601462841034,-0.26359835267067,0.805741310119629,0.512373268604279,-0.297076433897018,0.839806020259857,0.436201900243759,-0.323192477226257,0.833279967308044,0.451687663793564,-0.318783044815063,0.81258487701416,0.505675435066223,-0.289824098348618,0.807689964771271,0.587722778320313,-0.0471042692661285,0.819501638412476,0.573075413703918,0.00120717473328114,0.819117963314056,0.56301087141037,-0.109838016331196,0.819501638412476,0.573075413703918,0.00120717473328114, +0.807689964771271,0.587722778320313,-0.0471042692661285,0.808261096477509,0.588743567466736,0.00974030513316393,0.358484983444214,0.196387752890587,-0.912644684314728,0.283232748508453,0.172111988067627,-0.943481087684631,0.26212278008461,0.216610431671143,-0.940410256385803,0.308182448148727,0.335347533226013,-0.890261471271515,0.390979677438736,0.282968491315842,-0.875821650028229,0.358484983444214,0.196387752890587,-0.912644684314728,0.157145738601685,0.125790625810623,-0.979531466960907,0.222980946302414,0.145332485437393,-0.96392834186554,0.217290863394737,0.200837031006813,-0.955222010612488,0.0612875930964947,0.111878998577595,-0.991829931735992,0.0918761640787125,0.031198151409626,-0.995281517505646,0.157145738601685,0.125790625810623,-0.979531466960907,0.0612875930964947,0.111878998577595,-0.991829931735992,0.00866861362010241,0.0185559261590242,-0.999790191650391,0.0918761640787125,0.031198151409626,-0.995281517505646,0.217290863394737,0.200837031006813,-0.955222010612488,0.222980946302414,0.145332485437393,-0.96392834186554,0.283232748508453,0.172111988067627,-0.943481087684631,0.024617675691843,0.11939699202776,-0.992541313171387,0.0405526459217072,0.0978944301605225,-0.99437016248703,0.00866861362010241,0.0185559261590242,-0.999790191650391,0.101030454039574,0.30678129196167,-0.946402668952942,0.18834500014782,0.265499353408813,-0.945534825325012,0.0405526459217072,0.0978944301605225,-0.99437016248703,0.257648348808289,0.278692722320557,-0.925174355506897,0.18834500014782,0.265499353408813,-0.945534825325012,0.313081413507462,0.308113813400269,-0.898357272148132,0.244099229574203,0.591526865959167,0.768447399139404,0.188188418745995,0.497414946556091,0.846855044364929,0.261919766664505,0.503132164478302,0.823562920093536,0.423069179058075,0.556574702262878,0.715008318424225,0.328689843416214,0.656378030776978,0.679066002368927,0.244099229574203,0.591526865959167,0.768447399139404,0.519025444984436,0.543490350246429,0.659720242023468,0.473279416561127,0.643283128738403,0.601824939250946,0.423069179058075,0.556574702262878,0.715008318424225, +0.562325894832611,0.663634359836578,0.493334382772446,0.507623672485352,0.672132849693298,0.539032101631165,0.585879683494568,0.667600870132446,0.459406137466431,0.570616543292999,0.614080607891083,0.545253694057465,0.519025444984436,0.543490350246429,0.659720242023468,0.507043361663818,0.580153286457062,0.637439429759979,0.570616543292999,0.614080607891083,0.545253694057465,0.507043361663818,0.580153286457062,0.637439429759979,0.585654854774475,0.591925382614136,0.55374413728714,0.585654854774475,0.591925382614136,0.55374413728714,0.512143969535828,0.642949223518372,0.569495141506195,0.562325894832611,0.663634359836578,0.493334382772446,0.730244934558868,0.303646087646484,-0.611997723579407,0.761746466159821,0.326132714748383,-0.559803307056427,0.685054242610931,0.278504699468613,-0.673153519630432,0.498166143894196,0.503412127494812,-0.70597916841507,0.606450617313385,0.271964401006699,-0.747163116931915,0.685054242610931,0.278504699468613,-0.673153519630432,0.879591763019562,0.383313924074173,-0.281760036945343,0.853671669960022,0.367664664983749,-0.368872910737991,0.913214147090912,0.291172981262207,-0.285058081150055,0.794034779071808,0.376707971096039,-0.477074146270752,0.808642148971558,0.382527112960815,-0.44695720076561,0.78587681055069,0.34170326590538,-0.515399217605591,0.794034779071808,0.376707971096039,-0.477074146270752,0.847080171108246,0.29487818479538,-0.442155957221985,0.853671669960022,0.367664664983749,-0.368872910737991,0.730244934558868,0.303646087646484,-0.611997723579407,0.78587681055069,0.34170326590538,-0.515399217605591,0.761746466159821,0.326132714748383,-0.559803307056427,0.909617006778717,0.357014417648315,-0.212455853819847,0.879591763019562,0.383313924074173,-0.281760036945343,0.913214147090912,0.291172981262207,-0.285058081150055,-0.260459840297699,0.65387099981308,-0.710361301898956,-0.259002536535263,0.703525185585022,-0.661792874336243,-0.260678023099899,0.674859881401062,-0.690370142459869,-0.242940723896027,0.713185548782349,-0.657530248165131,-0.259002536535263,0.703525185585022,-0.661792874336243, +-0.167307153344154,0.65804123878479,-0.734159290790558,-0.123137764632702,0.645719170570374,-0.753580570220947,0.0129243349656463,0.549385488033295,-0.835468947887421,-0.0886881574988365,0.666096031665802,-0.740574359893799,-0.123137764632702,0.645719170570374,-0.753580570220947,-0.242940723896027,0.713185548782349,-0.657530248165131,-0.167307153344154,0.65804123878479,-0.734159290790558,0.25574991106987,0.623068332672119,-0.739173650741577,0.159326434135437,0.562961935997009,-0.810980141162872,0.454428941011429,0.345394611358643,-0.821094870567322,0.498166143894196,0.503412127494812,-0.70597916841507,0.454428941011429,0.345394611358643,-0.821094870567322,0.606450617313385,0.271964401006699,-0.747163116931915,-0.0886881574988365,0.666096031665802,-0.740574359893799,0.0129243349656463,0.549385488033295,-0.835468947887421,0.154500231146812,0.479269832372665,-0.863961815834045,0.154500231146812,0.479269832372665,-0.863961815834045,0.336701273918152,0.361824214458466,-0.869318902492523,0.159326434135437,0.562961935997009,-0.810980141162872,0.767076253890991,0.552773356437683,0.32563105225563,0.782359540462494,0.58152174949646,0.223037794232368,0.724004685878754,0.629357933998108,0.28235724568367,0.782359540462494,0.58152174949646,0.223037794232368,0.824448883533478,0.517453193664551,0.229185685515404,0.820189654827118,0.553511321544647,0.144616484642029,0.767076253890991,0.552773356437683,0.32563105225563,0.724004685878754,0.629357933998108,0.28235724568367,0.723035275936127,0.56877213716507,0.392068892717361,0.585879683494568,0.667600870132446,0.459406137466431,0.655029237270355,0.595686137676239,0.4648597240448,0.669441759586334,0.62239396572113,0.405552953481674,0.669441759586334,0.62239396572113,0.405552953481674,0.655029237270355,0.595686137676239,0.4648597240448,0.723035275936127,0.56877213716507,0.392068892717361,0.368381857872009,0.302052140235901,-0.879237830638886,0.380226135253906,0.289634317159653,-0.878373444080353,0.340989738702774,0.242705017328262,-0.908196151256561,0.374907582998276,0.285279929637909,-0.882076799869537, +0.340989738702774,0.242705017328262,-0.908196151256561,0.356340438127518,0.242876693606377,-0.902237355709076,0.374907582998276,0.285279929637909,-0.882076799869537,0.356340438127518,0.242876693606377,-0.902237355709076,0.358484983444214,0.196387752890587,-0.912644684314728,0.33889427781105,0.429702073335648,-0.836962759494781,0.448088407516479,0.346236944198608,-0.824218809604645,0.366292655467987,0.473710179328918,-0.800892114639282,0.380226135253906,0.289634317159653,-0.878373444080353,0.448088407516479,0.346236944198608,-0.824218809604645,0.33889427781105,0.429702073335648,-0.836962759494781,0.808261096477509,0.588743567466736,0.00974030513316393,0.814116775989532,0.575292646884918,0.0790698602795601,0.810776829719543,0.583477556705475,0.0468473508954048,0.828207552433014,0.541588127613068,0.144064277410507,0.814116775989532,0.575292646884918,0.0790698602795601,0.820189654827118,0.553511321544647,0.144616484642029,0.334080159664154,0.511682510375977,-0.791562557220459,0.286531090736389,0.507524311542511,-0.812600076198578,0.366292655467987,0.473710179328918,-0.800892114639282,0.395674377679825,0.506178140640259,-0.766306281089783,0.417371451854706,0.481106907129288,-0.770932674407959,0.334080159664154,0.511682510375977,-0.791562557220459,0.477631419897079,0.46976912021637,-0.74241840839386,0.506223142147064,0.504185676574707,-0.699667572975159,0.434902638196945,0.494572550058365,-0.752500891685486,0.477631419897079,0.46976912021637,-0.74241840839386,0.434902638196945,0.494572550058365,-0.752500891685486,0.417371451854706,0.481106907129288,-0.770932674407959,0.543053269386292,0.515273332595825,-0.663013100624084,0.575161457061768,0.530484020709991,-0.6227166056633,0.548227667808533,0.516215443611145,-0.658002912998199,0.575161457061768,0.530484020709991,-0.6227166056633,0.596099734306335,0.526411175727844,-0.606264114379883,0.548227667808533,0.516215443611145,-0.658002912998199,0.543053269386292,0.515273332595825,-0.663013100624084,0.548227667808533,0.516215443611145,-0.658002912998199,0.506223142147064,0.504185676574707,-0.699667572975159, +0.816831350326538,0.442240685224533,-0.370418071746826,0.795255362987518,0.473598808050156,-0.378514230251312,0.825471341609955,0.445768058300018,-0.346248060464859,0.72927463054657,0.510252773761749,-0.455851346254349,0.795255362987518,0.473598808050156,-0.378514230251312,0.750046908855438,0.445043206214905,-0.489250510931015,0.750046908855438,0.445043206214905,-0.489250510931015,0.654360890388489,0.453683465719223,-0.604965269565582,0.665557622909546,0.509753048419952,-0.545146346092224,0.596099734306335,0.526411175727844,-0.606264114379883,0.654360890388489,0.453683465719223,-0.604965269565582,0.548227667808533,0.516215443611145,-0.658002912998199,0.839806020259857,0.436201900243759,-0.323192477226257,0.837412476539612,0.451863825321198,-0.307504951953888,0.825471341609955,0.445768058300018,-0.346248060464859,0.817903876304626,0.524917185306549,-0.235573783516884,0.811422348022461,0.537321388721466,-0.229954838752747,0.819117963314056,0.56301087141037,-0.109838016331196,0.811422348022461,0.537321388721466,-0.229954838752747,0.805741310119629,0.512373268604279,-0.297076433897018,0.803607642650604,0.533601462841034,-0.26359835267067,0.81258487701416,0.505675435066223,-0.289824098348618,0.805741310119629,0.512373268604279,-0.297076433897018,0.839806020259857,0.436201900243759,-0.323192477226257,0.819117963314056,0.56301087141037,-0.109838016331196,0.819501638412476,0.573075413703918,0.00120717473328114,0.82841157913208,0.558310508728027,-0.0449833162128925,0.808261096477509,0.588743567466736,0.00974030513316393,0.824832618236542,0.564216434955597,0.0362031012773514,0.819501638412476,0.573075413703918,0.00120717473328114,0.283232748508453,0.172111988067627,-0.943481087684631,0.358484983444214,0.196387752890587,-0.912644684314728,0.334356009960175,0.233077198266983,-0.913170874118805,0.217290863394737,0.200837031006813,-0.955222010612488,0.140197172760963,0.224610880017281,-0.96431040763855,0.157145738601685,0.125790625810623,-0.979531466960907,0.157145738601685,0.125790625810623,-0.979531466960907,0.140197172760963,0.224610880017281,-0.96431040763855, +0.0612875930964947,0.111878998577595,-0.991829931735992,0.0612875930964947,0.111878998577595,-0.991829931735992,0.00583231262862682,0.202023208141327,-0.979363322257996,0.00866861362010241,0.0185559261590242,-0.999790191650391,0.217290863394737,0.200837031006813,-0.955222010612488,0.283232748508453,0.172111988067627,-0.943481087684631,0.246283024549484,0.302793025970459,-0.920685052871704,0.0405526459217072,0.0978944301605225,-0.99437016248703,0.024617675691843,0.11939699202776,-0.992541313171387,0.101030454039574,0.30678129196167,-0.946402668952942,0.024617675691843,0.11939699202776,-0.992541313171387,0.00866861362010241,0.0185559261590242,-0.999790191650391,0.00583231262862682,0.202023208141327,-0.979363322257996,0.18834500014782,0.265499353408813,-0.945534825325012,0.101030454039574,0.30678129196167,-0.946402668952942,0.238100737333298,0.299225687980652,-0.923997819423676,0.313081413507462,0.308113813400269,-0.898357272148132,0.18834500014782,0.265499353408813,-0.945534825325012,0.238100737333298,0.299225687980652,-0.923997819423676,0.188188418745995,0.497414946556091,0.846855044364929,0.250383317470551,0.412055850028992,0.876081109046936,0.261919766664505,0.503132164478302,0.823562920093536,0.261919766664505,0.503132164478302,0.823562920093536,0.403641879558563,0.467081874608994,0.786706805229187,0.244099229574203,0.591526865959167,0.768447399139404,0.423069179058075,0.556574702262878,0.715008318424225,0.244099229574203,0.591526865959167,0.768447399139404,0.403641879558563,0.467081874608994,0.786706805229187,0.519025444984436,0.543490350246429,0.659720242023468,0.423069179058075,0.556574702262878,0.715008318424225,0.481950372457504,0.480343014001846,0.732798933982849,0.507623672485352,0.672132849693298,0.539032101631165,0.562325894832611,0.663634359836578,0.493334382772446,0.512143969535828,0.642949223518372,0.569495141506195,0.585879683494568,0.667600870132446,0.459406137466431,0.507623672485352,0.672132849693298,0.539032101631165,0.574954032897949,0.633457779884338,0.517840564250946,0.507043361663818,0.580153286457062,0.637439429759979, +0.519025444984436,0.543490350246429,0.659720242023468,0.480609893798828,0.50423800945282,0.717466354370117,0.512143969535828,0.642949223518372,0.569495141506195,0.585654854774475,0.591925382614136,0.55374413728714,0.507043361663818,0.580153286457062,0.637439429759979,0.612536668777466,0.229054495692253,-0.756526708602905,0.730244934558868,0.303646087646484,-0.611997723579407,0.685054242610931,0.278504699468613,-0.673153519630432,0.62286114692688,0.154855266213417,-0.766853034496307,0.685054242610931,0.278504699468613,-0.673153519630432,0.606450617313385,0.271964401006699,-0.747163116931915,0.853671669960022,0.367664664983749,-0.368872910737991,0.847080171108246,0.29487818479538,-0.442155957221985,0.913214147090912,0.291172981262207,-0.285058081150055,0.794034779071808,0.376707971096039,-0.477074146270752,0.78587681055069,0.34170326590538,-0.515399217605591,0.719132244586945,0.396801918745041,-0.57043582201004,0.734265327453613,0.352282822132111,-0.580302596092224,0.847080171108246,0.29487818479538,-0.442155957221985,0.794034779071808,0.376707971096039,-0.477074146270752,0.719132244586945,0.396801918745041,-0.57043582201004,0.78587681055069,0.34170326590538,-0.515399217605591,0.730244934558868,0.303646087646484,-0.611997723579407,0.945940136909485,0.265357404947281,-0.186500906944275,0.909617006778717,0.357014417648315,-0.212455853819847,0.913214147090912,0.291172981262207,-0.285058081150055,-0.260459840297699,0.65387099981308,-0.710361301898956,-0.167307153344154,0.65804123878479,-0.734159290790558,-0.259002536535263,0.703525185585022,-0.661792874336243,0.0129243349656463,0.549385488033295,-0.835468947887421,-0.123137764632702,0.645719170570374,-0.753580570220947,0.0537038668990135,0.50846004486084,-0.859409034252167,-0.123137764632702,0.645719170570374,-0.753580570220947,-0.167307153344154,0.65804123878479,-0.734159290790558,-0.0143053559586406,0.557919442653656,-0.82977169752121,0.454428941011429,0.345394611358643,-0.821094870567322,0.159326434135437,0.562961935997009,-0.810980141162872,0.336701273918152,0.361824214458466,-0.869318902492523, +0.62286114692688,0.154855266213417,-0.766853034496307,0.606450617313385,0.271964401006699,-0.747163116931915,0.454428941011429,0.345394611358643,-0.821094870567322,0.0129243349656463,0.549385488033295,-0.835468947887421,0.201701864600182,0.365278452634811,-0.908783733844757,0.154500231146812,0.479269832372665,-0.863961815834045,0.35015657544136,0.206687808036804,-0.913602948188782,0.336701273918152,0.361824214458466,-0.869318902492523,0.154500231146812,0.479269832372665,-0.863961815834045,0.782359540462494,0.58152174949646,0.223037794232368,0.767076253890991,0.552773356437683,0.32563105225563,0.824448883533478,0.517453193664551,0.229185685515404,0.820189654827118,0.553511321544647,0.144616484642029,0.824448883533478,0.517453193664551,0.229185685515404,0.828207552433014,0.541588127613068,0.144064277410507,0.74688732624054,0.508870363235474,0.428030461072922,0.767076253890991,0.552773356437683,0.32563105225563,0.723035275936127,0.56877213716507,0.392068892717361,0.585879683494568,0.667600870132446,0.459406137466431,0.574954032897949,0.633457779884338,0.517840564250946,0.655029237270355,0.595686137676239,0.4648597240448,0.655029237270355,0.595686137676239,0.4648597240448,0.703154683113098,0.527318716049194,0.476978272199631,0.723035275936127,0.56877213716507,0.392068892717361,0.380226135253906,0.289634317159653,-0.878373444080353,0.348900139331818,0.232899457216263,-0.907759010791779,0.340989738702774,0.242705017328262,-0.908196151256561,0.356340438127518,0.242876693606377,-0.902237355709076,0.340989738702774,0.242705017328262,-0.908196151256561,0.348900139331818,0.232899457216263,-0.907759010791779,0.334356009960175,0.233077198266983,-0.913170874118805,0.358484983444214,0.196387752890587,-0.912644684314728,0.356340438127518,0.242876693606377,-0.902237355709076,0.286531090736389,0.507524311542511,-0.812600076198578,0.33889427781105,0.429702073335648,-0.836962759494781,0.366292655467987,0.473710179328918,-0.800892114639282,0.33889427781105,0.429702073335648,-0.836962759494781,0.249627038836479,0.4094178378582,-0.877532482147217, +0.380226135253906,0.289634317159653,-0.878373444080353,0.810776829719543,0.583477556705475,0.0468473508954048,0.814116775989532,0.575292646884918,0.0790698602795601,0.834874629974365,0.54270613193512,0.0919470340013504,0.824832618236542,0.564216434955597,0.0362031012773514,0.808261096477509,0.588743567466736,0.00974030513316393,0.810776829719543,0.583477556705475,0.0468473508954048,0.834874629974365,0.54270613193512,0.0919470340013504,0.814116775989532,0.575292646884918,0.0790698602795601,0.828207552433014,0.541588127613068,0.144064277410507,0.334080159664154,0.511682510375977,-0.791562557220459,0.265999853610992,0.511253297328949,-0.817229449748993,0.286531090736389,0.507524311542511,-0.812600076198578,0.334080159664154,0.511682510375977,-0.791562557220459,0.417371451854706,0.481106907129288,-0.770932674407959,0.372822552919388,0.479438543319702,-0.794444382190704,0.434902638196945,0.494572550058365,-0.752500891685486,0.506223142147064,0.504185676574707,-0.699667572975159,0.511653780937195,0.476995199918747,-0.714622855186462,0.434902638196945,0.494572550058365,-0.752500891685486,0.372822552919388,0.479438543319702,-0.794444382190704,0.417371451854706,0.481106907129288,-0.770932674407959,0.506223142147064,0.504185676574707,-0.699667572975159,0.548227667808533,0.516215443611145,-0.658002912998199,0.511653780937195,0.476995199918747,-0.714622855186462,0.795255362987518,0.473598808050156,-0.378514230251312,0.816831350326538,0.442240685224533,-0.370418071746826,0.750046908855438,0.445043206214905,-0.489250510931015,0.816831350326538,0.442240685224533,-0.370418071746826,0.825471341609955,0.445768058300018,-0.346248060464859,0.837412476539612,0.451863825321198,-0.307504951953888,0.750046908855438,0.445043206214905,-0.489250510931015,0.759898722171783,0.380318582057953,-0.527173161506653,0.654360890388489,0.453683465719223,-0.604965269565582,0.654360890388489,0.453683465719223,-0.604965269565582,0.599812924861908,0.409123659133911,-0.687635183334351,0.548227667808533,0.516215443611145,-0.658002912998199,0.816169083118439,0.457777738571167,-0.352572739124298, +0.837412476539612,0.451863825321198,-0.307504951953888,0.839806020259857,0.436201900243759,-0.323192477226257,0.819110810756683,0.464869916439056,-0.336085289716721,0.811422348022461,0.537321388721466,-0.229954838752747,0.817903876304626,0.524917185306549,-0.235573783516884,0.817903876304626,0.524917185306549,-0.235573783516884,0.819117963314056,0.56301087141037,-0.109838016331196,0.826809048652649,0.547323763370514,-0.129705190658569,0.811422348022461,0.537321388721466,-0.229954838752747,0.819110810756683,0.464869916439056,-0.336085289716721,0.805741310119629,0.512373268604279,-0.297076433897018,0.805741310119629,0.512373268604279,-0.297076433897018,0.819110810756683,0.464869916439056,-0.336085289716721,0.839806020259857,0.436201900243759,-0.323192477226257,0.85466855764389,0.518877267837524,0.0175468232482672,0.82841157913208,0.558310508728027,-0.0449833162128925,0.819501638412476,0.573075413703918,0.00120717473328114,0.819117963314056,0.56301087141037,-0.109838016331196,0.82841157913208,0.558310508728027,-0.0449833162128925,0.826809048652649,0.547323763370514,-0.129705190658569,0.819501638412476,0.573075413703918,0.00120717473328114,0.824832618236542,0.564216434955597,0.0362031012773514,0.847087025642395,0.529474377632141,0.0458304546773434,0.283232748508453,0.172111988067627,-0.943481087684631,0.334356009960175,0.233077198266983,-0.913170874118805,0.246283024549484,0.302793025970459,-0.920685052871704,0.217290863394737,0.200837031006813,-0.955222010612488,0.204799517989159,0.197753340005875,-0.958619177341461,0.140197172760963,0.224610880017281,-0.96431040763855,0.140197172760963,0.224610880017281,-0.96431040763855,0.046054519712925,0.254997193813324,-0.965844333171844,0.0612875930964947,0.111878998577595,-0.991829931735992,0.046054519712925,0.254997193813324,-0.965844333171844,0.00583231262862682,0.202023208141327,-0.979363322257996,0.0612875930964947,0.111878998577595,-0.991829931735992,0.144601911306381,0.350799053907394,-0.925218999385834,0.217290863394737,0.200837031006813,-0.955222010612488,0.246283024549484,0.302793025970459,-0.920685052871704, +0.101030454039574,0.30678129196167,-0.946402668952942,0.024617675691843,0.11939699202776,-0.992541313171387,0.00583231262862682,0.202023208141327,-0.979363322257996,0.101030454039574,0.30678129196167,-0.946402668952942,0.152982294559479,0.346919894218445,-0.925333917140961,0.238100737333298,0.299225687980652,-0.923997819423676,0.345145970582962,0.420059055089951,0.839299976825714,0.261919766664505,0.503132164478302,0.823562920093536,0.250383317470551,0.412055850028992,0.876081109046936,0.261919766664505,0.503132164478302,0.823562920093536,0.345145970582962,0.420059055089951,0.839299976825714,0.403641879558563,0.467081874608994,0.786706805229187,0.481950372457504,0.480343014001846,0.732798933982849,0.423069179058075,0.556574702262878,0.715008318424225,0.403641879558563,0.467081874608994,0.786706805229187,0.481950372457504,0.480343014001846,0.732798933982849,0.480609893798828,0.50423800945282,0.717466354370117,0.519025444984436,0.543490350246429,0.659720242023468,0.507623672485352,0.672132849693298,0.539032101631165,0.512143969535828,0.642949223518372,0.569495141506195,0.425808280706406,0.640395879745483,0.639202773571014,0.494468063116074,0.62507301568985,0.603974342346191,0.574954032897949,0.633457779884338,0.517840564250946,0.507623672485352,0.672132849693298,0.539032101631165,0.410007953643799,0.573296368122101,0.709383249282837,0.507043361663818,0.580153286457062,0.637439429759979,0.480609893798828,0.50423800945282,0.717466354370117,0.507043361663818,0.580153286457062,0.637439429759979,0.425808280706406,0.640395879745483,0.639202773571014,0.512143969535828,0.642949223518372,0.569495141506195,0.600315392017365,0.402393192052841,-0.691159129142761,0.730244934558868,0.303646087646484,-0.611997723579407,0.612536668777466,0.229054495692253,-0.756526708602905,0.612536668777466,0.229054495692253,-0.756526708602905,0.685054242610931,0.278504699468613,-0.673153519630432,0.62286114692688,0.154855266213417,-0.766853034496307,0.913214147090912,0.291172981262207,-0.285058081150055,0.847080171108246,0.29487818479538,-0.442155957221985, +0.931300163269043,0.16876982152462,-0.322794944047928,0.734265327453613,0.352282822132111,-0.580302596092224,0.794034779071808,0.376707971096039,-0.477074146270752,0.719132244586945,0.396801918745041,-0.57043582201004,0.777235329151154,0.188205435872078,-0.600403010845184,0.847080171108246,0.29487818479538,-0.442155957221985,0.734265327453613,0.352282822132111,-0.580302596092224,0.600315392017365,0.402393192052841,-0.691159129142761,0.719132244586945,0.396801918745041,-0.57043582201004,0.730244934558868,0.303646087646484,-0.611997723579407,0.958990097045898,0.18850465118885,-0.211669251322746,0.945940136909485,0.265357404947281,-0.186500906944275,0.913214147090912,0.291172981262207,-0.285058081150055,-0.167307153344154,0.65804123878479,-0.734159290790558,-0.260459840297699,0.65387099981308,-0.710361301898956,-0.179577097296715,0.57805335521698,-0.79599392414093,0.0537038668990135,0.50846004486084,-0.859409034252167,-0.123137764632702,0.645719170570374,-0.753580570220947,-0.0143053559586406,0.557919442653656,-0.82977169752121,0.0537038668990135,0.50846004486084,-0.859409034252167,0.187297150492668,0.409298807382584,-0.892969250679016,0.0129243349656463,0.549385488033295,-0.835468947887421,-0.0143053559586406,0.557919442653656,-0.82977169752121,-0.167307153344154,0.65804123878479,-0.734159290790558,-0.0557124838232994,0.559533596038818,-0.826933026313782,0.454428941011429,0.345394611358643,-0.821094870567322,0.336701273918152,0.361824214458466,-0.869318902492523,0.480545401573181,0.150947436690331,-0.863881289958954,0.454428941011429,0.345394611358643,-0.821094870567322,0.480545401573181,0.150947436690331,-0.863881289958954,0.62286114692688,0.154855266213417,-0.766853034496307,0.201701864600182,0.365278452634811,-0.908783733844757,0.0129243349656463,0.549385488033295,-0.835468947887421,0.187297150492668,0.409298807382584,-0.892969250679016,0.35015657544136,0.206687808036804,-0.913602948188782,0.154500231146812,0.479269832372665,-0.863961815834045,0.201701864600182,0.365278452634811,-0.908783733844757,0.480545401573181,0.150947436690331,-0.863881289958954, +0.336701273918152,0.361824214458466,-0.869318902492523,0.35015657544136,0.206687808036804,-0.913602948188782,0.767076253890991,0.552773356437683,0.32563105225563,0.794162154197693,0.482192367315292,0.369860589504242,0.824448883533478,0.517453193664551,0.229185685515404,0.847849249839783,0.503987729549408,0.164766073226929,0.828207552433014,0.541588127613068,0.144064277410507,0.824448883533478,0.517453193664551,0.229185685515404,0.767076253890991,0.552773356437683,0.32563105225563,0.74688732624054,0.508870363235474,0.428030461072922,0.794162154197693,0.482192367315292,0.369860589504242,0.703154683113098,0.527318716049194,0.476978272199631,0.74688732624054,0.508870363235474,0.428030461072922,0.723035275936127,0.56877213716507,0.392068892717361,0.574954032897949,0.633457779884338,0.517840564250946,0.613347053527832,0.557211101055145,0.559750974178314,0.655029237270355,0.595686137676239,0.4648597240448,0.703154683113098,0.527318716049194,0.476978272199631,0.655029237270355,0.595686137676239,0.4648597240448,0.613347053527832,0.557211101055145,0.559750974178314,0.304266154766083,0.384534657001495,-0.871524572372437,0.348900139331818,0.232899457216263,-0.907759010791779,0.380226135253906,0.289634317159653,-0.878373444080353,0.348900139331818,0.232899457216263,-0.907759010791779,0.324295669794083,0.352063655853271,-0.877999663352966,0.356340438127518,0.242876693606377,-0.902237355709076,0.356340438127518,0.242876693606377,-0.902237355709076,0.324295669794083,0.352063655853271,-0.877999663352966,0.334356009960175,0.233077198266983,-0.913170874118805,0.33889427781105,0.429702073335648,-0.836962759494781,0.286531090736389,0.507524311542511,-0.812600076198578,0.221253409981728,0.505331635475159,-0.834078371524811,0.249627038836479,0.4094178378582,-0.877532482147217,0.33889427781105,0.429702073335648,-0.836962759494781,0.221253409981728,0.505331635475159,-0.834078371524811,0.380226135253906,0.289634317159653,-0.878373444080353,0.249627038836479,0.4094178378582,-0.877532482147217,0.304266154766083,0.384534657001495,-0.871524572372437, +0.810776829719543,0.583477556705475,0.0468473508954048,0.834874629974365,0.54270613193512,0.0919470340013504,0.824832618236542,0.564216434955597,0.0362031012773514,0.834874629974365,0.54270613193512,0.0919470340013504,0.828207552433014,0.541588127613068,0.144064277410507,0.847849249839783,0.503987729549408,0.164766073226929,0.334080159664154,0.511682510375977,-0.791562557220459,0.372822552919388,0.479438543319702,-0.794444382190704,0.265999853610992,0.511253297328949,-0.817229449748993,0.265999853610992,0.511253297328949,-0.817229449748993,0.221253409981728,0.505331635475159,-0.834078371524811,0.286531090736389,0.507524311542511,-0.812600076198578,0.511653780937195,0.476995199918747,-0.714622855186462,0.527357339859009,0.3971087038517,-0.751131653785706,0.434902638196945,0.494572550058365,-0.752500891685486,0.46084189414978,0.402742564678192,-0.790836989879608,0.372822552919388,0.479438543319702,-0.794444382190704,0.434902638196945,0.494572550058365,-0.752500891685486,0.511653780937195,0.476995199918747,-0.714622855186462,0.548227667808533,0.516215443611145,-0.658002912998199,0.599812924861908,0.409123659133911,-0.687635183334351,0.816831350326538,0.442240685224533,-0.370418071746826,0.759898722171783,0.380318582057953,-0.527173161506653,0.750046908855438,0.445043206214905,-0.489250510931015,0.816831350326538,0.442240685224533,-0.370418071746826,0.837412476539612,0.451863825321198,-0.307504951953888,0.798828661441803,0.511390447616577,-0.3167844414711,0.693500459194183,0.348946750164032,-0.630311965942383,0.654360890388489,0.453683465719223,-0.604965269565582,0.759898722171783,0.380318582057953,-0.527173161506653,0.693500459194183,0.348946750164032,-0.630311965942383,0.599812924861908,0.409123659133911,-0.687635183334351,0.654360890388489,0.453683465719223,-0.604965269565582,0.816169083118439,0.457777738571167,-0.352572739124298,0.785362482070923,0.527154803276062,-0.324520289897919,0.837412476539612,0.451863825321198,-0.307504951953888,0.816169083118439,0.457777738571167,-0.352572739124298,0.839806020259857,0.436201900243759,-0.323192477226257, +0.819110810756683,0.464869916439056,-0.336085289716721,0.817903876304626,0.524917185306549,-0.235573783516884,0.768262088298798,0.513642191886902,-0.382027506828308,0.819110810756683,0.464869916439056,-0.336085289716721,0.834484219551086,0.525541126728058,-0.165657684206963,0.817903876304626,0.524917185306549,-0.235573783516884,0.826809048652649,0.547323763370514,-0.129705190658569,0.85466855764389,0.518877267837524,0.0175468232482672,0.846353471279144,0.528426766395569,-0.066714271903038,0.82841157913208,0.558310508728027,-0.0449833162128925,0.847087025642395,0.529474377632141,0.0458304546773434,0.85466855764389,0.518877267837524,0.0175468232482672,0.819501638412476,0.573075413703918,0.00120717473328114,0.846353471279144,0.528426766395569,-0.066714271903038,0.826809048652649,0.547323763370514,-0.129705190658569,0.82841157913208,0.558310508728027,-0.0449833162128925,0.834874629974365,0.54270613193512,0.0919470340013504,0.847087025642395,0.529474377632141,0.0458304546773434,0.824832618236542,0.564216434955597,0.0362031012773514,0.246283024549484,0.302793025970459,-0.920685052871704,0.334356009960175,0.233077198266983,-0.913170874118805,0.270312577486038,0.420356661081314,-0.866158902645111,0.195351049304008,0.131715506315231,-0.97184818983078,0.204799517989159,0.197753340005875,-0.958619177341461,0.217290863394737,0.200837031006813,-0.955222010612488,0.140197172760963,0.224610880017281,-0.96431040763855,0.204799517989159,0.197753340005875,-0.958619177341461,0.111799716949463,0.240348473191261,-0.96422678232193,0.140197172760963,0.224610880017281,-0.96431040763855,0.111799716949463,0.240348473191261,-0.96422678232193,0.046054519712925,0.254997193813324,-0.965844333171844,0.00583231262862682,0.202023208141327,-0.979363322257996,0.046054519712925,0.254997193813324,-0.965844333171844,0.0663795322179794,0.314030379056931,-0.947089552879334,0.144601911306381,0.350799053907394,-0.925218999385834,0.0361881889402866,0.305526077747345,-0.951495707035065,0.217290863394737,0.200837031006813,-0.955222010612488,0.13078573346138,0.457001507282257,-0.879798054695129, +0.144601911306381,0.350799053907394,-0.925218999385834,0.246283024549484,0.302793025970459,-0.920685052871704,0.101030454039574,0.30678129196167,-0.946402668952942,0.00583231262862682,0.202023208141327,-0.979363322257996,0.0663795322179794,0.314030379056931,-0.947089552879334,0.101030454039574,0.30678129196167,-0.946402668952942,0.135795697569847,0.340326398611069,-0.930450081825256,0.152982294559479,0.346919894218445,-0.925333917140961,0.161599054932594,0.251975297927856,-0.954145729541779,0.238100737333298,0.299225687980652,-0.923997819423676,0.152982294559479,0.346919894218445,-0.925333917140961,0.345145970582962,0.420059055089951,0.839299976825714,0.250383317470551,0.412055850028992,0.876081109046936,0.367827922105789,0.405481457710266,0.83683168888092,0.345145970582962,0.420059055089951,0.839299976825714,0.367827922105789,0.405481457710266,0.83683168888092,0.403641879558563,0.467081874608994,0.786706805229187,0.481950372457504,0.480343014001846,0.732798933982849,0.403641879558563,0.467081874608994,0.786706805229187,0.412040889263153,0.456621170043945,0.78849184513092,0.481950372457504,0.480343014001846,0.732798933982849,0.412040889263153,0.456621170043945,0.78849184513092,0.480609893798828,0.50423800945282,0.717466354370117,0.494468063116074,0.62507301568985,0.603974342346191,0.507623672485352,0.672132849693298,0.539032101631165,0.425808280706406,0.640395879745483,0.639202773571014,0.574954032897949,0.633457779884338,0.517840564250946,0.494468063116074,0.62507301568985,0.603974342346191,0.613347053527832,0.557211101055145,0.559750974178314,0.507043361663818,0.580153286457062,0.637439429759979,0.410007953643799,0.573296368122101,0.709383249282837,0.425808280706406,0.640395879745483,0.639202773571014,0.410007953643799,0.573296368122101,0.709383249282837,0.480609893798828,0.50423800945282,0.717466354370117,0.35074907541275,0.538353741168976,0.766257226467133,0.600315392017365,0.402393192052841,-0.691159129142761,0.612536668777466,0.229054495692253,-0.756526708602905,0.442525804042816,0.332502067089081,-0.832834422588348, +0.62286114692688,0.154855266213417,-0.766853034496307,0.554553389549255,0.12544196844101,-0.822638869285584,0.612536668777466,0.229054495692253,-0.756526708602905,0.881146907806396,0.143092185258865,-0.450671255588531,0.931300163269043,0.16876982152462,-0.322794944047928,0.847080171108246,0.29487818479538,-0.442155957221985,0.958990097045898,0.18850465118885,-0.211669251322746,0.913214147090912,0.291172981262207,-0.285058081150055,0.931300163269043,0.16876982152462,-0.322794944047928,0.719132244586945,0.396801918745041,-0.57043582201004,0.630015850067139,0.42597097158432,-0.649329304695129,0.734265327453613,0.352282822132111,-0.580302596092224,0.777235329151154,0.188205435872078,-0.600403010845184,0.881146907806396,0.143092185258865,-0.450671255588531,0.847080171108246,0.29487818479538,-0.442155957221985,0.690667033195496,0.24432073533535,-0.680651366710663,0.777235329151154,0.188205435872078,-0.600403010845184,0.734265327453613,0.352282822132111,-0.580302596092224,0.630015850067139,0.42597097158432,-0.649329304695129,0.719132244586945,0.396801918745041,-0.57043582201004,0.600315392017365,0.402393192052841,-0.691159129142761,-0.179577097296715,0.57805335521698,-0.79599392414093,-0.260459840297699,0.65387099981308,-0.710361301898956,-0.314276725053787,0.589070081710815,-0.744463801383972,-0.167307153344154,0.65804123878479,-0.734159290790558,-0.179577097296715,0.57805335521698,-0.79599392414093,-0.0557124838232994,0.559533596038818,-0.826933026313782,0.0537038668990135,0.50846004486084,-0.859409034252167,-0.0143053559586406,0.557919442653656,-0.82977169752121,0.155080914497375,0.373302549123764,-0.914655685424805,0.213937431573868,0.322935730218887,-0.921923637390137,0.187297150492668,0.409298807382584,-0.892969250679016,0.0537038668990135,0.50846004486084,-0.859409034252167,0.12323185056448,0.384091466665268,-0.915034174919128,-0.0143053559586406,0.557919442653656,-0.82977169752121,-0.0557124838232994,0.559533596038818,-0.826933026313782,0.480545401573181,0.150947436690331,-0.863881289958954,0.554553389549255,0.12544196844101,-0.822638869285584, +0.62286114692688,0.154855266213417,-0.766853034496307,0.308716088533401,0.237582340836525,-0.921004295349121,0.201701864600182,0.365278452634811,-0.908783733844757,0.187297150492668,0.409298807382584,-0.892969250679016,0.308716088533401,0.237582340836525,-0.921004295349121,0.35015657544136,0.206687808036804,-0.913602948188782,0.201701864600182,0.365278452634811,-0.908783733844757,0.35015657544136,0.206687808036804,-0.913602948188782,0.434815376996994,0.168025434017181,-0.884705007076263,0.480545401573181,0.150947436690331,-0.863881289958954,0.835299611091614,0.467924386262894,0.288654059171677,0.824448883533478,0.517453193664551,0.229185685515404,0.794162154197693,0.482192367315292,0.369860589504242,0.858576714992523,0.463511198759079,0.219096451997757,0.847849249839783,0.503987729549408,0.164766073226929,0.824448883533478,0.517453193664551,0.229185685515404,0.74688732624054,0.508870363235474,0.428030461072922,0.745216429233551,0.45610037446022,0.486440926790237,0.794162154197693,0.482192367315292,0.369860589504242,0.703154683113098,0.527318716049194,0.476978272199631,0.724154055118561,0.47552564740181,0.499475866556168,0.74688732624054,0.508870363235474,0.428030461072922,0.703154683113098,0.527318716049194,0.476978272199631,0.613347053527832,0.557211101055145,0.559750974178314,0.695143640041351,0.44206577539444,0.56688004732132,0.348900139331818,0.232899457216263,-0.907759010791779,0.304266154766083,0.384534657001495,-0.871524572372437,0.324295669794083,0.352063655853271,-0.877999663352966,0.324295669794083,0.352063655853271,-0.877999663352966,0.270312577486038,0.420356661081314,-0.866158902645111,0.334356009960175,0.233077198266983,-0.913170874118805,0.221253409981728,0.505331635475159,-0.834078371524811,0.217232570052147,0.508866369724274,-0.832985520362854,0.249627038836479,0.4094178378582,-0.877532482147217,0.249627038836479,0.4094178378582,-0.877532482147217,0.217232570052147,0.508866369724274,-0.832985520362854,0.304266154766083,0.384534657001495,-0.871524572372437,0.872229874134064,0.475240051746368,0.115593314170837, +0.834874629974365,0.54270613193512,0.0919470340013504,0.847849249839783,0.503987729549408,0.164766073226929,0.262356758117676,0.529748618602753,-0.806557595729828,0.265999853610992,0.511253297328949,-0.817229449748993,0.372822552919388,0.479438543319702,-0.794444382190704,0.265999853610992,0.511253297328949,-0.817229449748993,0.262356758117676,0.529748618602753,-0.806557595729828,0.221253409981728,0.505331635475159,-0.834078371524811,0.511653780937195,0.476995199918747,-0.714622855186462,0.599812924861908,0.409123659133911,-0.687635183334351,0.527357339859009,0.3971087038517,-0.751131653785706,0.527357339859009,0.3971087038517,-0.751131653785706,0.46084189414978,0.402742564678192,-0.790836989879608,0.434902638196945,0.494572550058365,-0.752500891685486,0.46084189414978,0.402742564678192,-0.790836989879608,0.442387670278549,0.372477382421494,-0.815814673900604,0.372822552919388,0.479438543319702,-0.794444382190704,0.759898722171783,0.380318582057953,-0.527173161506653,0.816831350326538,0.442240685224533,-0.370418071746826,0.811578631401062,0.350847393274307,-0.467168182134628,0.785362482070923,0.527154803276062,-0.324520289897919,0.798828661441803,0.511390447616577,-0.3167844414711,0.837412476539612,0.451863825321198,-0.307504951953888,0.816831350326538,0.442240685224533,-0.370418071746826,0.798828661441803,0.511390447616577,-0.3167844414711,0.805752396583557,0.459602147340775,-0.373535484075546,0.759898722171783,0.380318582057953,-0.527173161506653,0.758771955966949,0.304197996854782,-0.575958788394928,0.693500459194183,0.348946750164032,-0.630311965942383,0.693500459194183,0.348946750164032,-0.630311965942383,0.608176171779633,0.329893112182617,-0.722005605697632,0.599812924861908,0.409123659133911,-0.687635183334351,0.816169083118439,0.457777738571167,-0.352572739124298,0.732671141624451,0.546495378017426,-0.405629932880402,0.785362482070923,0.527154803276062,-0.324520289897919,0.816169083118439,0.457777738571167,-0.352572739124298,0.819110810756683,0.464869916439056,-0.336085289716721,0.778719305992126,0.470940321683884,-0.414501249790192, +0.817903876304626,0.524917185306549,-0.235573783516884,0.820470631122589,0.501712501049042,-0.27406632900238,0.768262088298798,0.513642191886902,-0.382027506828308,0.768262088298798,0.513642191886902,-0.382027506828308,0.778719305992126,0.470940321683884,-0.414501249790192,0.819110810756683,0.464869916439056,-0.336085289716721,0.817903876304626,0.524917185306549,-0.235573783516884,0.834484219551086,0.525541126728058,-0.165657684206963,0.820470631122589,0.501712501049042,-0.27406632900238,0.834484219551086,0.525541126728058,-0.165657684206963,0.826809048652649,0.547323763370514,-0.129705190658569,0.846353471279144,0.528426766395569,-0.066714271903038,0.85466855764389,0.518877267837524,0.0175468232482672,0.887277007102966,0.460975229740143,0.0155329573899508,0.846353471279144,0.528426766395569,-0.066714271903038,0.847087025642395,0.529474377632141,0.0458304546773434,0.879744529724121,0.470689594745636,0.0670878440141678,0.85466855764389,0.518877267837524,0.0175468232482672,0.834874629974365,0.54270613193512,0.0919470340013504,0.858352720737457,0.508522152900696,0.0680865123867989,0.847087025642395,0.529474377632141,0.0458304546773434,0.246283024549484,0.302793025970459,-0.920685052871704,0.270312577486038,0.420356661081314,-0.866158902645111,0.175689101219177,0.500607550144196,-0.847658753395081,0.195263877511024,0.114438682794571,-0.974051177501678,0.204799517989159,0.197753340005875,-0.958619177341461,0.195351049304008,0.131715506315231,-0.97184818983078,0.0361881889402866,0.305526077747345,-0.951495707035065,0.195351049304008,0.131715506315231,-0.97184818983078,0.217290863394737,0.200837031006813,-0.955222010612488,0.195263877511024,0.114438682794571,-0.974051177501678,0.111799716949463,0.240348473191261,-0.96422678232193,0.204799517989159,0.197753340005875,-0.958619177341461,0.111799716949463,0.240348473191261,-0.96422678232193,0.0663795322179794,0.314030379056931,-0.947089552879334,0.046054519712925,0.254997193813324,-0.965844333171844,0.144601911306381,0.350799053907394,-0.925218999385834,-0.0313211157917976,0.544300675392151,-0.838305175304413, +0.0361881889402866,0.305526077747345,-0.951495707035065,-0.0313211157917976,0.544300675392151,-0.838305175304413,0.144601911306381,0.350799053907394,-0.925218999385834,0.13078573346138,0.457001507282257,-0.879798054695129,0.175689101219177,0.500607550144196,-0.847658753395081,0.13078573346138,0.457001507282257,-0.879798054695129,0.246283024549484,0.302793025970459,-0.920685052871704,0.0663795322179794,0.314030379056931,-0.947089552879334,0.135795697569847,0.340326398611069,-0.930450081825256,0.101030454039574,0.30678129196167,-0.946402668952942,0.169884890317917,0.212377265095711,-0.962307095527649,0.152982294559479,0.346919894218445,-0.925333917140961,0.135795697569847,0.340326398611069,-0.930450081825256,0.238100737333298,0.299225687980652,-0.923997819423676,0.161599054932594,0.251975297927856,-0.954145729541779,0.156739458441734,0.188722044229507,-0.969441413879395,0.169884890317917,0.212377265095711,-0.962307095527649,0.161599054932594,0.251975297927856,-0.954145729541779,0.152982294559479,0.346919894218445,-0.925333917140961,0.250383317470551,0.412055850028992,0.876081109046936,0.273504644632339,0.420893728733063,0.864895105361938,0.367827922105789,0.405481457710266,0.83683168888092,0.367827922105789,0.405481457710266,0.83683168888092,0.412040889263153,0.456621170043945,0.78849184513092,0.403641879558563,0.467081874608994,0.786706805229187,0.480609893798828,0.50423800945282,0.717466354370117,0.412040889263153,0.456621170043945,0.78849184513092,0.35074907541275,0.538353741168976,0.766257226467133,0.494468063116074,0.62507301568985,0.603974342346191,0.425808280706406,0.640395879745483,0.639202773571014,0.395514756441116,0.582493603229523,0.710119068622589,0.494468063116074,0.62507301568985,0.603974342346191,0.500081360340118,0.538909554481506,0.67786055803299,0.613347053527832,0.557211101055145,0.559750974178314,0.395514756441116,0.582493603229523,0.710119068622589,0.425808280706406,0.640395879745483,0.639202773571014,0.410007953643799,0.573296368122101,0.709383249282837,0.395514756441116,0.582493603229523,0.710119068622589, +0.410007953643799,0.573296368122101,0.709383249282837,0.35074907541275,0.538353741168976,0.766257226467133,0.612536668777466,0.229054495692253,-0.756526708602905,0.434815376996994,0.168025434017181,-0.884705007076263,0.442525804042816,0.332502067089081,-0.832834422588348,0.600315392017365,0.402393192052841,-0.691159129142761,0.442525804042816,0.332502067089081,-0.832834422588348,0.45109549164772,0.437453269958496,-0.777912199497223,0.554553389549255,0.12544196844101,-0.822638869285584,0.434815376996994,0.168025434017181,-0.884705007076263,0.612536668777466,0.229054495692253,-0.756526708602905,0.931300163269043,0.16876982152462,-0.322794944047928,0.881146907806396,0.143092185258865,-0.450671255588531,0.91311901807785,0.00280759995803237,-0.407683312892914,0.971896708011627,0.0192900653928518,-0.234615802764893,0.958990097045898,0.18850465118885,-0.211669251322746,0.931300163269043,0.16876982152462,-0.322794944047928,0.690667033195496,0.24432073533535,-0.680651366710663,0.734265327453613,0.352282822132111,-0.580302596092224,0.630015850067139,0.42597097158432,-0.649329304695129,0.803243398666382,0.00709157763049006,-0.595608532428741,0.881146907806396,0.143092185258865,-0.450671255588531,0.777235329151154,0.188205435872078,-0.600403010845184,0.690667033195496,0.24432073533535,-0.680651366710663,0.705202519893646,0.0511930249631405,-0.707155227661133,0.777235329151154,0.188205435872078,-0.600403010845184,0.481772571802139,0.495907574892044,-0.722475409507751,0.630015850067139,0.42597097158432,-0.649329304695129,0.600315392017365,0.402393192052841,-0.691159129142761,-0.229525774717331,0.473694860935211,-0.850253462791443,-0.179577097296715,0.57805335521698,-0.79599392414093,-0.314276725053787,0.589070081710815,-0.744463801383972,-0.0427731350064278,0.414450615644455,-0.909066021442413,-0.0557124838232994,0.559533596038818,-0.826933026313782,-0.179577097296715,0.57805335521698,-0.79599392414093,-0.0143053559586406,0.557919442653656,-0.82977169752121,0.12323185056448,0.384091466665268,-0.915034174919128,0.155080914497375,0.373302549123764,-0.914655685424805, +0.155080914497375,0.373302549123764,-0.914655685424805,0.213937431573868,0.322935730218887,-0.921923637390137,0.0537038668990135,0.50846004486084,-0.859409034252167,0.213937431573868,0.322935730218887,-0.921923637390137,0.308716088533401,0.237582340836525,-0.921004295349121,0.187297150492668,0.409298807382584,-0.892969250679016,0.12323185056448,0.384091466665268,-0.915034174919128,-0.0557124838232994,0.559533596038818,-0.826933026313782,-0.0427731350064278,0.414450615644455,-0.909066021442413,0.480545401573181,0.150947436690331,-0.863881289958954,0.434815376996994,0.168025434017181,-0.884705007076263,0.554553389549255,0.12544196844101,-0.822638869285584,0.35015657544136,0.206687808036804,-0.913602948188782,0.308716088533401,0.237582340836525,-0.921004295349121,0.342613965272903,0.145389690995216,-0.928158044815063,0.434815376996994,0.168025434017181,-0.884705007076263,0.35015657544136,0.206687808036804,-0.913602948188782,0.364324778318405,0.118566937744617,-0.923693239688873,0.835299611091614,0.467924386262894,0.288654059171677,0.858576714992523,0.463511198759079,0.219096451997757,0.824448883533478,0.517453193664551,0.229185685515404,0.835299611091614,0.467924386262894,0.288654059171677,0.794162154197693,0.482192367315292,0.369860589504242,0.849116206169128,0.412579894065857,0.329817235469818,0.858576714992523,0.463511198759079,0.219096451997757,0.875253200531006,0.454329878091812,0.165879905223846,0.847849249839783,0.503987729549408,0.164766073226929,0.724154055118561,0.47552564740181,0.499475866556168,0.745216429233551,0.45610037446022,0.486440926790237,0.74688732624054,0.508870363235474,0.428030461072922,0.745216429233551,0.45610037446022,0.486440926790237,0.783442139625549,0.418322414159775,0.459591835737228,0.794162154197693,0.482192367315292,0.369860589504242,0.724154055118561,0.47552564740181,0.499475866556168,0.703154683113098,0.527318716049194,0.476978272199631,0.695143640041351,0.44206577539444,0.56688004732132,0.613347053527832,0.557211101055145,0.559750974178314,0.604729235172272,0.470343947410584,0.6427121758461, +0.695143640041351,0.44206577539444,0.56688004732132,0.304266154766083,0.384534657001495,-0.871524572372437,0.256555765867233,0.609098672866821,-0.750451683998108,0.324295669794083,0.352063655853271,-0.877999663352966,0.324295669794083,0.352063655853271,-0.877999663352966,0.245046243071556,0.560645580291748,-0.790966928005219,0.270312577486038,0.420356661081314,-0.866158902645111,0.221253409981728,0.505331635475159,-0.834078371524811,0.233889743685722,0.600634276866913,-0.764548242092133,0.217232570052147,0.508866369724274,-0.832985520362854,0.217232570052147,0.508866369724274,-0.832985520362854,0.256555765867233,0.609098672866821,-0.750451683998108,0.304266154766083,0.384534657001495,-0.871524572372437,0.872229874134064,0.475240051746368,0.115593314170837,0.858352720737457,0.508522152900696,0.0680865123867989,0.834874629974365,0.54270613193512,0.0919470340013504,0.872229874134064,0.475240051746368,0.115593314170837,0.847849249839783,0.503987729549408,0.164766073226929,0.875253200531006,0.454329878091812,0.165879905223846,0.321743279695511,0.548119485378265,-0.772040247917175,0.262356758117676,0.529748618602753,-0.806557595729828,0.372822552919388,0.479438543319702,-0.794444382190704,0.262356758117676,0.529748618602753,-0.806557595729828,0.233889743685722,0.600634276866913,-0.764548242092133,0.221253409981728,0.505331635475159,-0.834078371524811,0.527357339859009,0.3971087038517,-0.751131653785706,0.599812924861908,0.409123659133911,-0.687635183334351,0.608176171779633,0.329893112182617,-0.722005605697632,0.527357339859009,0.3971087038517,-0.751131653785706,0.549680769443512,0.298577725887299,-0.780193686485291,0.46084189414978,0.402742564678192,-0.790836989879608,0.46084189414978,0.402742564678192,-0.790836989879608,0.502253890037537,0.282193005084991,-0.817378759384155,0.442387670278549,0.372477382421494,-0.815814673900604,0.372822552919388,0.479438543319702,-0.794444382190704,0.442387670278549,0.372477382421494,-0.815814673900604,0.434757351875305,0.437480181455612,-0.787144839763641,0.805752396583557,0.459602147340775,-0.373535484075546, +0.811578631401062,0.350847393274307,-0.467168182134628,0.816831350326538,0.442240685224533,-0.370418071746826,0.759898722171783,0.380318582057953,-0.527173161506653,0.811578631401062,0.350847393274307,-0.467168182134628,0.758771955966949,0.304197996854782,-0.575958788394928,0.776907563209534,0.510428786277771,-0.368614882230759,0.798828661441803,0.511390447616577,-0.3167844414711,0.785362482070923,0.527154803276062,-0.324520289897919,0.776907563209534,0.510428786277771,-0.368614882230759,0.805752396583557,0.459602147340775,-0.373535484075546,0.798828661441803,0.511390447616577,-0.3167844414711,0.693500459194183,0.348946750164032,-0.630311965942383,0.758771955966949,0.304197996854782,-0.575958788394928,0.698696434497833,0.278754323720932,-0.658877193927765,0.693500459194183,0.348946750164032,-0.630311965942383,0.698696434497833,0.278754323720932,-0.658877193927765,0.608176171779633,0.329893112182617,-0.722005605697632,0.816169083118439,0.457777738571167,-0.352572739124298,0.778719305992126,0.470940321683884,-0.414501249790192,0.732671141624451,0.546495378017426,-0.405629932880402,0.732671141624451,0.546495378017426,-0.405629932880402,0.776907563209534,0.510428786277771,-0.368614882230759,0.785362482070923,0.527154803276062,-0.324520289897919,0.768262088298798,0.513642191886902,-0.382027506828308,0.820470631122589,0.501712501049042,-0.27406632900238,0.752939224243164,0.533206880092621,-0.385710537433624,0.778719305992126,0.470940321683884,-0.414501249790192,0.768262088298798,0.513642191886902,-0.382027506828308,0.732671141624451,0.546495378017426,-0.405629932880402,0.820470631122589,0.501712501049042,-0.27406632900238,0.834484219551086,0.525541126728058,-0.165657684206963,0.885434210300446,0.449486702680588,-0.118186049163342,0.876957654953003,0.476360112428665,-0.0634532570838928,0.834484219551086,0.525541126728058,-0.165657684206963,0.846353471279144,0.528426766395569,-0.066714271903038,0.85466855764389,0.518877267837524,0.0175468232482672,0.879744529724121,0.470689594745636,0.0670878440141678,0.887277007102966,0.460975229740143,0.0155329573899508, +0.846353471279144,0.528426766395569,-0.066714271903038,0.887277007102966,0.460975229740143,0.0155329573899508,0.876957654953003,0.476360112428665,-0.0634532570838928,0.858352720737457,0.508522152900696,0.0680865123867989,0.879744529724121,0.470689594745636,0.0670878440141678,0.847087025642395,0.529474377632141,0.0458304546773434,0.141526088118553,0.649164438247681,-0.747365832328796,0.175689101219177,0.500607550144196,-0.847658753395081,0.270312577486038,0.420356661081314,-0.866158902645111,0.195263877511024,0.114438682794571,-0.974051177501678,0.195351049304008,0.131715506315231,-0.97184818983078,0.173053875565529,0.140289276838303,-0.974869847297668,0.0361881889402866,0.305526077747345,-0.951495707035065,0.173053875565529,0.140289276838303,-0.974869847297668,0.195351049304008,0.131715506315231,-0.97184818983078,0.178520753979683,0.18667183816433,-0.966066181659698,0.111799716949463,0.240348473191261,-0.96422678232193,0.195263877511024,0.114438682794571,-0.974051177501678,0.0663795322179794,0.314030379056931,-0.947089552879334,0.111799716949463,0.240348473191261,-0.96422678232193,0.178520753979683,0.18667183816433,-0.966066181659698,0.0361881889402866,0.305526077747345,-0.951495707035065,-0.0313211157917976,0.544300675392151,-0.838305175304413,-0.196156218647957,0.446357309818268,-0.873090922832489,0.0519889444112778,0.635535001754761,-0.770319581031799,-0.0313211157917976,0.544300675392151,-0.838305175304413,0.13078573346138,0.457001507282257,-0.879798054695129,0.175689101219177,0.500607550144196,-0.847658753395081,0.0519889444112778,0.635535001754761,-0.770319581031799,0.13078573346138,0.457001507282257,-0.879798054695129,0.135795697569847,0.340326398611069,-0.930450081825256,0.0663795322179794,0.314030379056931,-0.947089552879334,0.178520753979683,0.18667183816433,-0.966066181659698,0.169884890317917,0.212377265095711,-0.962307095527649,0.135795697569847,0.340326398611069,-0.930450081825256,0.178520753979683,0.18667183816433,-0.966066181659698,0.156739458441734,0.188722044229507,-0.969441413879395,0.161599054932594,0.251975297927856,-0.954145729541779, +0.178834617137909,0.212323635816574,-0.96069598197937,0.161599054932594,0.251975297927856,-0.954145729541779,0.169884890317917,0.212377265095711,-0.962307095527649,0.178834617137909,0.212323635816574,-0.96069598197937,0.273504644632339,0.420893728733063,0.864895105361938,0.330556243658066,0.485536366701126,0.809312582015991,0.367827922105789,0.405481457710266,0.83683168888092,0.367827922105789,0.405481457710266,0.83683168888092,0.330556243658066,0.485536366701126,0.809312582015991,0.412040889263153,0.456621170043945,0.78849184513092,0.330556243658066,0.485536366701126,0.809312582015991,0.35074907541275,0.538353741168976,0.766257226467133,0.412040889263153,0.456621170043945,0.78849184513092,0.395514756441116,0.582493603229523,0.710119068622589,0.500081360340118,0.538909554481506,0.67786055803299,0.494468063116074,0.62507301568985,0.603974342346191,0.613347053527832,0.557211101055145,0.559750974178314,0.500081360340118,0.538909554481506,0.67786055803299,0.604729235172272,0.470343947410584,0.6427121758461,0.395514756441116,0.582493603229523,0.710119068622589,0.35074907541275,0.538353741168976,0.766257226467133,0.394262254238129,0.558745086193085,0.729630768299103,0.434815376996994,0.168025434017181,-0.884705007076263,0.403109282255173,0.234701246023178,-0.884544014930725,0.442525804042816,0.332502067089081,-0.832834422588348,0.446496963500977,0.391298592090607,-0.804689824581146,0.45109549164772,0.437453269958496,-0.777912199497223,0.442525804042816,0.332502067089081,-0.832834422588348,0.481772571802139,0.495907574892044,-0.722475409507751,0.600315392017365,0.402393192052841,-0.691159129142761,0.45109549164772,0.437453269958496,-0.777912199497223,0.803243398666382,0.00709157763049006,-0.595608532428741,0.91311901807785,0.00280759995803237,-0.407683312892914,0.881146907806396,0.143092185258865,-0.450671255588531,0.931300163269043,0.16876982152462,-0.322794944047928,0.91311901807785,0.00280759995803237,-0.407683312892914,0.971896708011627,0.0192900653928518,-0.234615802764893,0.985434234142303,0.101908624172211,-0.136139273643494, +0.958990097045898,0.18850465118885,-0.211669251322746,0.971896708011627,0.0192900653928518,-0.234615802764893,0.690667033195496,0.24432073533535,-0.680651366710663,0.630015850067139,0.42597097158432,-0.649329304695129,0.610536158084869,0.348486393690109,-0.711198031902313,0.803243398666382,0.00709157763049006,-0.595608532428741,0.777235329151154,0.188205435872078,-0.600403010845184,0.705202519893646,0.0511930249631405,-0.707155227661133,0.67677628993988,0.130064904689789,-0.724608063697815,0.705202519893646,0.0511930249631405,-0.707155227661133,0.690667033195496,0.24432073533535,-0.680651366710663,0.481772571802139,0.495907574892044,-0.722475409507751,0.610536158084869,0.348486393690109,-0.711198031902313,0.630015850067139,0.42597097158432,-0.649329304695129,-0.179577097296715,0.57805335521698,-0.79599392414093,-0.229525774717331,0.473694860935211,-0.850253462791443,-0.0427731350064278,0.414450615644455,-0.909066021442413,0.155080914497375,0.373302549123764,-0.914655685424805,0.12323185056448,0.384091466665268,-0.915034174919128,0.273944050073624,0.235598474740982,-0.932441890239716,0.213937431573868,0.322935730218887,-0.921923637390137,0.155080914497375,0.373302549123764,-0.914655685424805,0.257507383823395,0.254507064819336,-0.932156622409821,0.213937431573868,0.322935730218887,-0.921923637390137,0.257507383823395,0.254507064819336,-0.932156622409821,0.308716088533401,0.237582340836525,-0.921004295349121,-0.0427731350064278,0.414450615644455,-0.909066021442413,0.10272891074419,0.197410449385643,-0.974923491477966,0.12323185056448,0.384091466665268,-0.915034174919128,0.342613965272903,0.145389690995216,-0.928158044815063,0.308716088533401,0.237582340836525,-0.921004295349121,0.273944050073624,0.235598474740982,-0.932441890239716,0.364324778318405,0.118566937744617,-0.923693239688873,0.35015657544136,0.206687808036804,-0.913602948188782,0.342613965272903,0.145389690995216,-0.928158044815063,0.434815376996994,0.168025434017181,-0.884705007076263,0.364324778318405,0.118566937744617,-0.923693239688873,0.403109282255173,0.234701246023178,-0.884544014930725, +0.835299611091614,0.467924386262894,0.288654059171677,0.849116206169128,0.412579894065857,0.329817235469818,0.858576714992523,0.463511198759079,0.219096451997757,0.849116206169128,0.412579894065857,0.329817235469818,0.794162154197693,0.482192367315292,0.369860589504242,0.783442139625549,0.418322414159775,0.459591835737228,0.889516592025757,0.406859368085861,0.20790758728981,0.875253200531006,0.454329878091812,0.165879905223846,0.858576714992523,0.463511198759079,0.219096451997757,0.724154055118561,0.47552564740181,0.499475866556168,0.71265059709549,0.415267050266266,0.56540447473526,0.745216429233551,0.45610037446022,0.486440926790237,0.745216429233551,0.45610037446022,0.486440926790237,0.730366289615631,0.42203027009964,0.537080407142639,0.783442139625549,0.418322414159775,0.459591835737228,0.724154055118561,0.47552564740181,0.499475866556168,0.695143640041351,0.44206577539444,0.56688004732132,0.71265059709549,0.415267050266266,0.56540447473526,0.695143640041351,0.44206577539444,0.56688004732132,0.604729235172272,0.470343947410584,0.6427121758461,0.694169104099274,0.414297372102737,0.588631212711334,0.245046243071556,0.560645580291748,-0.790966928005219,0.324295669794083,0.352063655853271,-0.877999663352966,0.256555765867233,0.609098672866821,-0.750451683998108,0.141526088118553,0.649164438247681,-0.747365832328796,0.270312577486038,0.420356661081314,-0.866158902645111,0.245046243071556,0.560645580291748,-0.790966928005219,0.233889743685722,0.600634276866913,-0.764548242092133,0.256555765867233,0.609098672866821,-0.750451683998108,0.217232570052147,0.508866369724274,-0.832985520362854,0.879744529724121,0.470689594745636,0.0670878440141678,0.858352720737457,0.508522152900696,0.0680865123867989,0.872229874134064,0.475240051746368,0.115593314170837,0.903509795665741,0.411103963851929,0.121092729270458,0.872229874134064,0.475240051746368,0.115593314170837,0.875253200531006,0.454329878091812,0.165879905223846,0.321743279695511,0.548119485378265,-0.772040247917175,0.233889743685722,0.600634276866913,-0.764548242092133, +0.262356758117676,0.529748618602753,-0.806557595729828,0.321743279695511,0.548119485378265,-0.772040247917175,0.372822552919388,0.479438543319702,-0.794444382190704,0.434757351875305,0.437480181455612,-0.787144839763641,0.527357339859009,0.3971087038517,-0.751131653785706,0.608176171779633,0.329893112182617,-0.722005605697632,0.549680769443512,0.298577725887299,-0.780193686485291,0.502253890037537,0.282193005084991,-0.817378759384155,0.46084189414978,0.402742564678192,-0.790836989879608,0.549680769443512,0.298577725887299,-0.780193686485291,0.442387670278549,0.372477382421494,-0.815814673900604,0.502253890037537,0.282193005084991,-0.817378759384155,0.52090311050415,0.322474807500839,-0.790360629558563,0.434757351875305,0.437480181455612,-0.787144839763641,0.442387670278549,0.372477382421494,-0.815814673900604,0.511400461196899,0.360305905342102,-0.780159652233124,0.845881998538971,0.339043021202087,-0.411744385957718,0.811578631401062,0.350847393274307,-0.467168182134628,0.805752396583557,0.459602147340775,-0.373535484075546,0.826161980628967,0.239905819296837,-0.50980532169342,0.758771955966949,0.304197996854782,-0.575958788394928,0.811578631401062,0.350847393274307,-0.467168182134628,0.776907563209534,0.510428786277771,-0.368614882230759,0.845881998538971,0.339043021202087,-0.411744385957718,0.805752396583557,0.459602147340775,-0.373535484075546,0.758771955966949,0.304197996854782,-0.575958788394928,0.77130401134491,0.214389577507973,-0.599272131919861,0.698696434497833,0.278754323720932,-0.658877193927765,0.617011308670044,0.235857143998146,-0.750778436660767,0.608176171779633,0.329893112182617,-0.722005605697632,0.698696434497833,0.278754323720932,-0.658877193927765,0.776907563209534,0.510428786277771,-0.368614882230759,0.732671141624451,0.546495378017426,-0.405629932880402,0.752939224243164,0.533206880092621,-0.385710537433624,0.84037458896637,0.437928140163422,-0.319357633590698,0.752939224243164,0.533206880092621,-0.385710537433624,0.820470631122589,0.501712501049042,-0.27406632900238,0.768262088298798,0.513642191886902,-0.382027506828308, +0.752939224243164,0.533206880092621,-0.385710537433624,0.732671141624451,0.546495378017426,-0.405629932880402,0.876957654953003,0.476360112428665,-0.0634532570838928,0.885434210300446,0.449486702680588,-0.118186049163342,0.834484219551086,0.525541126728058,-0.165657684206963,0.820470631122589,0.501712501049042,-0.27406632900238,0.885434210300446,0.449486702680588,-0.118186049163342,0.902722895145416,0.391223102807999,-0.178985118865967,0.887277007102966,0.460975229740143,0.0155329573899508,0.879744529724121,0.470689594745636,0.0670878440141678,0.901721775531769,0.423015564680099,0.0891938209533691,0.876957654953003,0.476360112428665,-0.0634532570838928,0.887277007102966,0.460975229740143,0.0155329573899508,0.910026252269745,0.412365883588791,-0.0425001084804535,0.0519889444112778,0.635535001754761,-0.770319581031799,0.175689101219177,0.500607550144196,-0.847658753395081,0.141526088118553,0.649164438247681,-0.747365832328796,0.198048189282417,0.118084378540516,-0.973053395748138,0.195263877511024,0.114438682794571,-0.974051177501678,0.173053875565529,0.140289276838303,-0.974869847297668,0.0361881889402866,0.305526077747345,-0.951495707035065,0.00556098157539964,0.320727527141571,-0.947154998779297,0.173053875565529,0.140289276838303,-0.974869847297668,0.178520753979683,0.18667183816433,-0.966066181659698,0.195263877511024,0.114438682794571,-0.974051177501678,0.198048189282417,0.118084378540516,-0.973053395748138,-0.0973194763064384,0.516613662242889,-0.850669860839844,-0.196156218647957,0.446357309818268,-0.873090922832489,-0.0313211157917976,0.544300675392151,-0.838305175304413,0.0361881889402866,0.305526077747345,-0.951495707035065,-0.196156218647957,0.446357309818268,-0.873090922832489,0.00556098157539964,0.320727527141571,-0.947154998779297,-0.0313211157917976,0.544300675392151,-0.838305175304413,0.0519889444112778,0.635535001754761,-0.770319581031799,-0.0366410166025162,0.64059442281723,-0.767004609107971,0.169884890317917,0.212377265095711,-0.962307095527649,0.178520753979683,0.18667183816433,-0.966066181659698, +0.241229176521301,0.213732078671455,-0.946639835834503,0.178834617137909,0.212323635816574,-0.96069598197937,0.146451845765114,0.234289839863777,-0.961072325706482,0.156739458441734,0.188722044229507,-0.969441413879395,0.241229176521301,0.213732078671455,-0.946639835834503,0.178834617137909,0.212323635816574,-0.96069598197937,0.169884890317917,0.212377265095711,-0.962307095527649,0.330556243658066,0.485536366701126,0.809312582015991,0.273504644632339,0.420893728733063,0.864895105361938,0.250494122505188,0.514607131481171,0.820019543170929,0.250494122505188,0.514607131481171,0.820019543170929,0.35074907541275,0.538353741168976,0.766257226467133,0.330556243658066,0.485536366701126,0.809312582015991,0.395514756441116,0.582493603229523,0.710119068622589,0.394262254238129,0.558745086193085,0.729630768299103,0.500081360340118,0.538909554481506,0.67786055803299,0.532754182815552,0.506091058254242,0.678265869617462,0.604729235172272,0.470343947410584,0.6427121758461,0.500081360340118,0.538909554481506,0.67786055803299,0.35074907541275,0.538353741168976,0.766257226467133,0.291402041912079,0.551611483097076,0.781542956829071,0.394262254238129,0.558745086193085,0.729630768299103,0.403109282255173,0.234701246023178,-0.884544014930725,0.45952832698822,0.30293732881546,-0.834902703762054,0.442525804042816,0.332502067089081,-0.832834422588348,0.446496963500977,0.391298592090607,-0.804689824581146,0.481772571802139,0.495907574892044,-0.722475409507751,0.45109549164772,0.437453269958496,-0.777912199497223,0.446496963500977,0.391298592090607,-0.804689824581146,0.442525804042816,0.332502067089081,-0.832834422588348,0.45952832698822,0.30293732881546,-0.834902703762054,0.803243398666382,0.00709157763049006,-0.595608532428741,0.833553075790405,-0.145659819245338,-0.532890498638153,0.91311901807785,0.00280759995803237,-0.407683312892914,0.897543847560883,-0.216074854135513,-0.384352147579193,0.971896708011627,0.0192900653928518,-0.234615802764893,0.91311901807785,0.00280759995803237,-0.407683312892914,0.989723145961761,-0.125159382820129,-0.0691599249839783, +0.985434234142303,0.101908624172211,-0.136139273643494,0.971896708011627,0.0192900653928518,-0.234615802764893,0.67677628993988,0.130064904689789,-0.724608063697815,0.690667033195496,0.24432073533535,-0.680651366710663,0.610536158084869,0.348486393690109,-0.711198031902313,0.803243398666382,0.00709157763049006,-0.595608532428741,0.705202519893646,0.0511930249631405,-0.707155227661133,0.663937985897064,-0.061487652361393,-0.745255291461945,0.550429046154022,-0.0242177192121744,-0.834530591964722,0.705202519893646,0.0511930249631405,-0.707155227661133,0.67677628993988,0.130064904689789,-0.724608063697815,0.531464874744415,0.371757835149765,-0.761144578456879,0.610536158084869,0.348486393690109,-0.711198031902313,0.481772571802139,0.495907574892044,-0.722475409507751,-0.229525774717331,0.473694860935211,-0.850253462791443,-0.082565002143383,0.244911164045334,-0.966023504734039,-0.0427731350064278,0.414450615644455,-0.909066021442413,0.12323185056448,0.384091466665268,-0.915034174919128,0.211626380681992,0.184972852468491,-0.959687054157257,0.273944050073624,0.235598474740982,-0.932441890239716,0.273944050073624,0.235598474740982,-0.932441890239716,0.257507383823395,0.254507064819336,-0.932156622409821,0.155080914497375,0.373302549123764,-0.914655685424805,0.308716088533401,0.237582340836525,-0.921004295349121,0.257507383823395,0.254507064819336,-0.932156622409821,0.273944050073624,0.235598474740982,-0.932441890239716,0.10272891074419,0.197410449385643,-0.974923491477966,-0.0427731350064278,0.414450615644455,-0.909066021442413,-0.082565002143383,0.244911164045334,-0.966023504734039,0.10272891074419,0.197410449385643,-0.974923491477966,0.211626380681992,0.184972852468491,-0.959687054157257,0.12323185056448,0.384091466665268,-0.915034174919128,0.342613965272903,0.145389690995216,-0.928158044815063,0.273944050073624,0.235598474740982,-0.932441890239716,0.28451469540596,0.125801831483841,-0.950381577014923,0.364324778318405,0.118566937744617,-0.923693239688873,0.342613965272903,0.145389690995216,-0.928158044815063,0.321149706840515,0.0923793837428093,-0.942511975765228, +0.364324778318405,0.118566937744617,-0.923693239688873,0.358134627342224,0.167805209755898,-0.918466567993164,0.403109282255173,0.234701246023178,-0.884544014930725,0.849116206169128,0.412579894065857,0.329817235469818,0.889516592025757,0.406859368085861,0.20790758728981,0.858576714992523,0.463511198759079,0.219096451997757,0.842435359954834,0.325831443071365,0.429111301898956,0.849116206169128,0.412579894065857,0.329817235469818,0.783442139625549,0.418322414159775,0.459591835737228,0.889516592025757,0.406859368085861,0.20790758728981,0.903509795665741,0.411103963851929,0.121092729270458,0.875253200531006,0.454329878091812,0.165879905223846,0.71265059709549,0.415267050266266,0.56540447473526,0.730366289615631,0.42203027009964,0.537080407142639,0.745216429233551,0.45610037446022,0.486440926790237,0.730366289615631,0.42203027009964,0.537080407142639,0.753512561321259,0.371617019176483,0.54232782125473,0.783442139625549,0.418322414159775,0.459591835737228,0.695143640041351,0.44206577539444,0.56688004732132,0.716003477573395,0.392703950405121,0.577167630195618,0.71265059709549,0.415267050266266,0.56540447473526,0.604729235172272,0.470343947410584,0.6427121758461,0.659142911434174,0.419004082679749,0.624472618103027,0.694169104099274,0.414297372102737,0.588631212711334,0.694169104099274,0.414297372102737,0.588631212711334,0.716003477573395,0.392703950405121,0.577167630195618,0.695143640041351,0.44206577539444,0.56688004732132,0.245046243071556,0.560645580291748,-0.790966928005219,0.256555765867233,0.609098672866821,-0.750451683998108,0.198198407888412,0.714078962802887,-0.671422719955444,0.198198407888412,0.714078962802887,-0.671422719955444,0.141526088118553,0.649164438247681,-0.747365832328796,0.245046243071556,0.560645580291748,-0.790966928005219,0.233889743685722,0.600634276866913,-0.764548242092133,0.281874746084213,0.663952350616455,-0.69261372089386,0.256555765867233,0.609098672866821,-0.750451683998108,0.879744529724121,0.470689594745636,0.0670878440141678,0.872229874134064,0.475240051746368,0.115593314170837,0.903509795665741,0.411103963851929,0.121092729270458, +0.321743279695511,0.548119485378265,-0.772040247917175,0.316713631153107,0.600776612758636,-0.734002649784088,0.233889743685722,0.600634276866913,-0.764548242092133,0.434757351875305,0.437480181455612,-0.787144839763641,0.394421964883804,0.505796074867249,-0.767203688621521,0.321743279695511,0.548119485378265,-0.772040247917175,0.617011308670044,0.235857143998146,-0.750778436660767,0.549680769443512,0.298577725887299,-0.780193686485291,0.608176171779633,0.329893112182617,-0.722005605697632,0.502253890037537,0.282193005084991,-0.817378759384155,0.549680769443512,0.298577725887299,-0.780193686485291,0.561230003833771,0.203118726611137,-0.802348732948303,0.502253890037537,0.282193005084991,-0.817378759384155,0.570390164852142,0.253712058067322,-0.78120744228363,0.52090311050415,0.322474807500839,-0.790360629558563,0.511400461196899,0.360305905342102,-0.780159652233124,0.442387670278549,0.372477382421494,-0.815814673900604,0.52090311050415,0.322474807500839,-0.790360629558563,0.511400461196899,0.360305905342102,-0.780159652233124,0.469334661960602,0.369468361139297,-0.80200868844986,0.434757351875305,0.437480181455612,-0.787144839763641,0.845881998538971,0.339043021202087,-0.411744385957718,0.826161980628967,0.239905819296837,-0.50980532169342,0.811578631401062,0.350847393274307,-0.467168182134628,0.826161980628967,0.239905819296837,-0.50980532169342,0.77130401134491,0.214389577507973,-0.599272131919861,0.758771955966949,0.304197996854782,-0.575958788394928,0.776907563209534,0.510428786277771,-0.368614882230759,0.846563458442688,0.385069847106934,-0.367493510246277,0.845881998538971,0.339043021202087,-0.411744385957718,0.705513417720795,0.181106716394424,-0.685164928436279,0.698696434497833,0.278754323720932,-0.658877193927765,0.77130401134491,0.214389577507973,-0.599272131919861,0.698696434497833,0.278754323720932,-0.658877193927765,0.705513417720795,0.181106716394424,-0.685164928436279,0.617011308670044,0.235857143998146,-0.750778436660767,0.806683599948883,0.459311902523041,-0.371879160404205,0.776907563209534,0.510428786277771,-0.368614882230759, +0.752939224243164,0.533206880092621,-0.385710537433624,0.806683599948883,0.459311902523041,-0.371879160404205,0.752939224243164,0.533206880092621,-0.385710537433624,0.84037458896637,0.437928140163422,-0.319357633590698,0.84037458896637,0.437928140163422,-0.319357633590698,0.820470631122589,0.501712501049042,-0.27406632900238,0.902722895145416,0.391223102807999,-0.178985118865967,0.885434210300446,0.449486702680588,-0.118186049163342,0.876957654953003,0.476360112428665,-0.0634532570838928,0.910026252269745,0.412365883588791,-0.0425001084804535,0.92816025018692,0.36604443192482,-0.067305400967598,0.902722895145416,0.391223102807999,-0.178985118865967,0.885434210300446,0.449486702680588,-0.118186049163342,0.903509795665741,0.411103963851929,0.121092729270458,0.901721775531769,0.423015564680099,0.0891938209533691,0.879744529724121,0.470689594745636,0.0670878440141678,0.909001171588898,0.414270967245102,0.0457859039306641,0.887277007102966,0.460975229740143,0.0155329573899508,0.901721775531769,0.423015564680099,0.0891938209533691,0.910026252269745,0.412365883588791,-0.0425001084804535,0.887277007102966,0.460975229740143,0.0155329573899508,0.907662272453308,0.419332206249237,-0.0175935234874487,0.0519889444112778,0.635535001754761,-0.770319581031799,0.141526088118553,0.649164438247681,-0.747365832328796,0.0537331700325012,0.648623645305634,-0.759210109710693,0.198048189282417,0.118084378540516,-0.973053395748138,0.173053875565529,0.140289276838303,-0.974869847297668,0.00556098157539964,0.320727527141571,-0.947154998779297,0.178520753979683,0.18667183816433,-0.966066181659698,0.198048189282417,0.118084378540516,-0.973053395748138,0.241229176521301,0.213732078671455,-0.946639835834503,-0.0973194763064384,0.516613662242889,-0.850669860839844,-0.23427514731884,0.417002767324448,-0.878193438053131,-0.196156218647957,0.446357309818268,-0.873090922832489,-0.0366410166025162,0.64059442281723,-0.767004609107971,-0.0973194763064384,0.516613662242889,-0.850669860839844,-0.0313211157917976,0.544300675392151,-0.838305175304413,-0.196156218647957,0.446357309818268,-0.873090922832489, +-0.153653502464294,0.444057613611221,-0.882724940776825,0.00556098157539964,0.320727527141571,-0.947154998779297,-0.0366410166025162,0.64059442281723,-0.767004609107971,0.0519889444112778,0.635535001754761,-0.770319581031799,0.0537331700325012,0.648623645305634,-0.759210109710693,0.186929509043694,0.417252361774445,-0.889358043670654,0.146451845765114,0.234289839863777,-0.961072325706482,0.178834617137909,0.212323635816574,-0.96069598197937,0.186929509043694,0.417252361774445,-0.889358043670654,0.178834617137909,0.212323635816574,-0.96069598197937,0.241229176521301,0.213732078671455,-0.946639835834503,0.250494122505188,0.514607131481171,0.820019543170929,0.291402041912079,0.551611483097076,0.781542956829071,0.35074907541275,0.538353741168976,0.766257226467133,0.394262254238129,0.558745086193085,0.729630768299103,0.532754182815552,0.506091058254242,0.678265869617462,0.500081360340118,0.538909554481506,0.67786055803299,0.604729235172272,0.470343947410584,0.6427121758461,0.532754182815552,0.506091058254242,0.678265869617462,0.659142911434174,0.419004082679749,0.624472618103027,0.291402041912079,0.551611483097076,0.781542956829071,0.423227101564407,0.534019291400909,0.731916785240173,0.394262254238129,0.558745086193085,0.729630768299103,0.403109282255173,0.234701246023178,-0.884544014930725,0.480362743139267,0.20265007019043,-0.853337228298187,0.45952832698822,0.30293732881546,-0.834902703762054,0.446496963500977,0.391298592090607,-0.804689824581146,0.531464874744415,0.371757835149765,-0.761144578456879,0.481772571802139,0.495907574892044,-0.722475409507751,0.45952832698822,0.30293732881546,-0.834902703762054,0.592881858348846,0.1853436678648,-0.783670008182526,0.446496963500977,0.391298592090607,-0.804689824581146,0.803243398666382,0.00709157763049006,-0.595608532428741,0.73752224445343,-0.119141466915607,-0.664730072021484,0.833553075790405,-0.145659819245338,-0.532890498638153,0.897543847560883,-0.216074854135513,-0.384352147579193,0.91311901807785,0.00280759995803237,-0.407683312892914,0.833553075790405,-0.145659819245338,-0.532890498638153, +0.897543847560883,-0.216074854135513,-0.384352147579193,0.945385158061981,-0.277243167161942,-0.171414643526077,0.971896708011627,0.0192900653928518,-0.234615802764893,0.989723145961761,-0.125159382820129,-0.0691599249839783,0.998454749584198,-0.024724705144763,-0.0497662350535393,0.985434234142303,0.101908624172211,-0.136139273643494,0.989723145961761,-0.125159382820129,-0.0691599249839783,0.971896708011627,0.0192900653928518,-0.234615802764893,0.945385158061981,-0.277243167161942,-0.171414643526077,0.67677628993988,0.130064904689789,-0.724608063697815,0.610536158084869,0.348486393690109,-0.711198031902313,0.673197627067566,0.187958627939224,-0.715175747871399,0.550429046154022,-0.0242177192121744,-0.834530591964722,0.663937985897064,-0.061487652361393,-0.745255291461945,0.705202519893646,0.0511930249631405,-0.707155227661133,0.803243398666382,0.00709157763049006,-0.595608532428741,0.663937985897064,-0.061487652361393,-0.745255291461945,0.73752224445343,-0.119141466915607,-0.664730072021484,0.508652687072754,0.11210460960865,-0.853642106056213,0.550429046154022,-0.0242177192121744,-0.834530591964722,0.67677628993988,0.130064904689789,-0.724608063697815,0.673197627067566,0.187958627939224,-0.715175747871399,0.610536158084869,0.348486393690109,-0.711198031902313,0.531464874744415,0.371757835149765,-0.761144578456879,-0.082565002143383,0.244911164045334,-0.966023504734039,-0.229525774717331,0.473694860935211,-0.850253462791443,-0.219464972615242,0.346631556749344,-0.911965787410736,0.28451469540596,0.125801831483841,-0.950381577014923,0.273944050073624,0.235598474740982,-0.932441890239716,0.211626380681992,0.184972852468491,-0.959687054157257,-0.082565002143383,0.244911164045334,-0.966023504734039,0.016304848715663,0.0655113607645035,-0.997718572616577,0.10272891074419,0.197410449385643,-0.974923491477966,0.211626380681992,0.184972852468491,-0.959687054157257,0.10272891074419,0.197410449385643,-0.974923491477966,0.123340912163258,0.0989778786897659,-0.987415969371796,0.342613965272903,0.145389690995216,-0.928158044815063, +0.28451469540596,0.125801831483841,-0.950381577014923,0.321149706840515,0.0923793837428093,-0.942511975765228,0.364324778318405,0.118566937744617,-0.923693239688873,0.321149706840515,0.0923793837428093,-0.942511975765228,0.316787302494049,0.10399479418993,-0.94277822971344,0.316787302494049,0.10399479418993,-0.94277822971344,0.358134627342224,0.167805209755898,-0.918466567993164,0.364324778318405,0.118566937744617,-0.923693239688873,0.403109282255173,0.234701246023178,-0.884544014930725,0.358134627342224,0.167805209755898,-0.918466567993164,0.480362743139267,0.20265007019043,-0.853337228298187,0.849116206169128,0.412579894065857,0.329817235469818,0.901151597499847,0.326435387134552,0.285246759653091,0.889516592025757,0.406859368085861,0.20790758728981,0.849116206169128,0.412579894065857,0.329817235469818,0.842435359954834,0.325831443071365,0.429111301898956,0.901151597499847,0.326435387134552,0.285246759653091,0.753512561321259,0.371617019176483,0.54232782125473,0.842435359954834,0.325831443071365,0.429111301898956,0.783442139625549,0.418322414159775,0.459591835737228,0.889516592025757,0.406859368085861,0.20790758728981,0.920099258422852,0.347235411405563,0.181231364607811,0.903509795665741,0.411103963851929,0.121092729270458,0.730366289615631,0.42203027009964,0.537080407142639,0.71265059709549,0.415267050266266,0.56540447473526,0.710168123245239,0.396692305803299,0.581632375717163,0.730366289615631,0.42203027009964,0.537080407142639,0.710168123245239,0.396692305803299,0.581632375717163,0.753512561321259,0.371617019176483,0.54232782125473,0.716003477573395,0.392703950405121,0.577167630195618,0.716790020465851,0.391973942518234,0.576687335968018,0.71265059709549,0.415267050266266,0.56540447473526,0.659142911434174,0.419004082679749,0.624472618103027,0.714044392108917,0.402328968048096,0.572950124740601,0.694169104099274,0.414297372102737,0.588631212711334,0.714044392108917,0.402328968048096,0.572950124740601,0.716003477573395,0.392703950405121,0.577167630195618,0.694169104099274,0.414297372102737,0.588631212711334, +0.248174801468849,0.715867340564728,-0.652643144130707,0.198198407888412,0.714078962802887,-0.671422719955444,0.256555765867233,0.609098672866821,-0.750451683998108,0.141526088118553,0.649164438247681,-0.747365832328796,0.198198407888412,0.714078962802887,-0.671422719955444,0.197553336620331,0.714155554771423,-0.671531319618225,0.281874746084213,0.663952350616455,-0.69261372089386,0.233889743685722,0.600634276866913,-0.764548242092133,0.316713631153107,0.600776612758636,-0.734002649784088,0.248174801468849,0.715867340564728,-0.652643144130707,0.256555765867233,0.609098672866821,-0.750451683998108,0.281874746084213,0.663952350616455,-0.69261372089386,0.321743279695511,0.548119485378265,-0.772040247917175,0.394421964883804,0.505796074867249,-0.767203688621521,0.316713631153107,0.600776612758636,-0.734002649784088,0.394421964883804,0.505796074867249,-0.767203688621521,0.434757351875305,0.437480181455612,-0.787144839763641,0.469334661960602,0.369468361139297,-0.80200868844986,0.549680769443512,0.298577725887299,-0.780193686485291,0.617011308670044,0.235857143998146,-0.750778436660767,0.561230003833771,0.203118726611137,-0.802348732948303,0.502253890037537,0.282193005084991,-0.817378759384155,0.561230003833771,0.203118726611137,-0.802348732948303,0.570390164852142,0.253712058067322,-0.78120744228363,0.52090311050415,0.322474807500839,-0.790360629558563,0.570390164852142,0.253712058067322,-0.78120744228363,0.596925020217896,0.366829812526703,-0.713523805141449,0.511400461196899,0.360305905342102,-0.780159652233124,0.52090311050415,0.322474807500839,-0.790360629558563,0.496476888656616,0.368567615747452,-0.785918951034546,0.496476888656616,0.368567615747452,-0.785918951034546,0.469334661960602,0.369468361139297,-0.80200868844986,0.511400461196899,0.360305905342102,-0.780159652233124,0.856627702713013,0.223413184285164,-0.465054124593735,0.826161980628967,0.239905819296837,-0.50980532169342,0.845881998538971,0.339043021202087,-0.411744385957718,0.77130401134491,0.214389577507973,-0.599272131919861,0.826161980628967,0.239905819296837,-0.50980532169342, +0.830000221729279,0.146850481629372,-0.538084030151367,0.806683599948883,0.459311902523041,-0.371879160404205,0.846563458442688,0.385069847106934,-0.367493510246277,0.776907563209534,0.510428786277771,-0.368614882230759,0.86554890871048,0.311527997255325,-0.392141848802567,0.845881998538971,0.339043021202087,-0.411744385957718,0.846563458442688,0.385069847106934,-0.367493510246277,0.768446207046509,0.117041356861591,-0.629119694232941,0.705513417720795,0.181106716394424,-0.685164928436279,0.77130401134491,0.214389577507973,-0.599272131919861,0.617011308670044,0.235857143998146,-0.750778436660767,0.705513417720795,0.181106716394424,-0.685164928436279,0.621003866195679,0.141898199915886,-0.770855963230133,0.806683599948883,0.459311902523041,-0.371879160404205,0.84037458896637,0.437928140163422,-0.319357633590698,0.846563458442688,0.385069847106934,-0.367493510246277,0.84037458896637,0.437928140163422,-0.319357633590698,0.902722895145416,0.391223102807999,-0.178985118865967,0.889557182788849,0.357324749231339,-0.284617036581039,0.885434210300446,0.449486702680588,-0.118186049163342,0.910026252269745,0.412365883588791,-0.0425001084804535,0.92816025018692,0.36604443192482,-0.067305400967598,0.942655563354492,0.308371961116791,-0.127699092030525,0.902722895145416,0.391223102807999,-0.178985118865967,0.92816025018692,0.36604443192482,-0.067305400967598,0.903509795665741,0.411103963851929,0.121092729270458,0.919933319091797,0.371021956205368,0.126748040318489,0.901721775531769,0.423015564680099,0.0891938209533691,0.909001171588898,0.414270967245102,0.0457859039306641,0.907662272453308,0.419332206249237,-0.0175935234874487,0.887277007102966,0.460975229740143,0.0155329573899508,0.909001171588898,0.414270967245102,0.0457859039306641,0.901721775531769,0.423015564680099,0.0891938209533691,0.911414504051209,0.396864861249924,0.108728498220444,0.910026252269745,0.412365883588791,-0.0425001084804535,0.907662272453308,0.419332206249237,-0.0175935234874487,0.922509610652924,0.377550661563873,-0.0801947116851807,0.197553336620331,0.714155554771423,-0.671531319618225, +0.0537331700325012,0.648623645305634,-0.759210109710693,0.141526088118553,0.649164438247681,-0.747365832328796,0.160603731870651,0.286760300397873,-0.944444179534912,0.198048189282417,0.118084378540516,-0.973053395748138,0.00556098157539964,0.320727527141571,-0.947154998779297,0.241229176521301,0.213732078671455,-0.946639835834503,0.198048189282417,0.118084378540516,-0.973053395748138,0.160603731870651,0.286760300397873,-0.944444179534912,-0.0973194763064384,0.516613662242889,-0.850669860839844,-0.140499979257584,0.31123411655426,-0.939889848232269,-0.23427514731884,0.417002767324448,-0.878193438053131,-0.196156218647957,0.446357309818268,-0.873090922832489,-0.23427514731884,0.417002767324448,-0.878193438053131,-0.224580675363541,0.362952291965485,-0.904339015483856,0.0315799117088318,0.518950819969177,-0.854220330715179,-0.0973194763064384,0.516613662242889,-0.850669860839844,-0.0366410166025162,0.64059442281723,-0.767004609107971,-0.196156218647957,0.446357309818268,-0.873090922832489,-0.224580675363541,0.362952291965485,-0.904339015483856,-0.153653502464294,0.444057613611221,-0.882724940776825,0.00308101763948798,0.470932960510254,-0.882163524627686,0.00556098157539964,0.320727527141571,-0.947154998779297,-0.153653502464294,0.444057613611221,-0.882724940776825,-0.0366410166025162,0.64059442281723,-0.767004609107971,0.0537331700325012,0.648623645305634,-0.759210109710693,0.0315799117088318,0.518950819969177,-0.854220330715179,0.186929509043694,0.417252361774445,-0.889358043670654,0.173349484801292,0.477961778640747,-0.86110532283783,0.146451845765114,0.234289839863777,-0.961072325706482,0.186929509043694,0.417252361774445,-0.889358043670654,0.241229176521301,0.213732078671455,-0.946639835834503,0.182100608944893,0.500186562538147,-0.846553385257721,0.2407615929842,0.507385313510895,0.827401876449585,0.291402041912079,0.551611483097076,0.781542956829071,0.250494122505188,0.514607131481171,0.820019543170929,0.423227101564407,0.534019291400909,0.731916785240173,0.532754182815552,0.506091058254242,0.678265869617462, +0.394262254238129,0.558745086193085,0.729630768299103,0.532754182815552,0.506091058254242,0.678265869617462,0.580977261066437,0.444744557142258,0.681665241718292,0.659142911434174,0.419004082679749,0.624472618103027,0.291402041912079,0.551611483097076,0.781542956829071,0.305773258209229,0.448322147130966,0.839946329593658,0.423227101564407,0.534019291400909,0.731916785240173,0.480362743139267,0.20265007019043,-0.853337228298187,0.592881858348846,0.1853436678648,-0.783670008182526,0.45952832698822,0.30293732881546,-0.834902703762054,0.592881858348846,0.1853436678648,-0.783670008182526,0.531464874744415,0.371757835149765,-0.761144578456879,0.446496963500977,0.391298592090607,-0.804689824581146,0.631033062934875,-0.357822239398956,-0.688302516937256,0.833553075790405,-0.145659819245338,-0.532890498638153,0.73752224445343,-0.119141466915607,-0.664730072021484,0.833553075790405,-0.145659819245338,-0.532890498638153,0.719509780406952,-0.460230112075806,-0.520090281963348,0.897543847560883,-0.216074854135513,-0.384352147579193,0.897543847560883,-0.216074854135513,-0.384352147579193,0.760031938552856,-0.568767488002777,-0.314411848783493,0.945385158061981,-0.277243167161942,-0.171414643526077,0.989723145961761,-0.125159382820129,-0.0691599249839783,0.945594012737274,-0.305946677923203,0.110672660171986,0.998454749584198,-0.024724705144763,-0.0497662350535393,0.945385158061981,-0.277243167161942,-0.171414643526077,0.872993230819702,-0.479885309934616,0.0871371030807495,0.989723145961761,-0.125159382820129,-0.0691599249839783,0.684388756752014,0.162796556949615,-0.710710287094116,0.67677628993988,0.130064904689789,-0.724608063697815,0.673197627067566,0.187958627939224,-0.715175747871399,0.663937985897064,-0.061487652361393,-0.745255291461945,0.550429046154022,-0.0242177192121744,-0.834530591964722,0.588018119335175,-0.179213225841522,-0.788744032382965,0.588018119335175,-0.179213225841522,-0.788744032382965,0.73752224445343,-0.119141466915607,-0.664730072021484,0.663937985897064,-0.061487652361393,-0.745255291461945,0.550429046154022,-0.0242177192121744,-0.834530591964722, +0.508652687072754,0.11210460960865,-0.853642106056213,0.313872367143631,-0.0928884670138359,-0.94491046667099,0.508652687072754,0.11210460960865,-0.853642106056213,0.67677628993988,0.130064904689789,-0.724608063697815,0.684388756752014,0.162796556949615,-0.710710287094116,0.592881858348846,0.1853436678648,-0.783670008182526,0.673197627067566,0.187958627939224,-0.715175747871399,0.531464874744415,0.371757835149765,-0.761144578456879,-0.082565002143383,0.244911164045334,-0.966023504734039,-0.219464972615242,0.346631556749344,-0.911965787410736,-0.0681188926100731,0.123727880418301,-0.989975333213806,0.211626380681992,0.184972852468491,-0.959687054157257,0.178856953978539,0.0866935253143311,-0.98004812002182,0.28451469540596,0.125801831483841,-0.950381577014923,-0.0681188926100731,0.123727880418301,-0.989975333213806,0.016304848715663,0.0655113607645035,-0.997718572616577,-0.082565002143383,0.244911164045334,-0.966023504734039,0.123340912163258,0.0989778786897659,-0.987415969371796,0.10272891074419,0.197410449385643,-0.974923491477966,0.016304848715663,0.0655113607645035,-0.997718572616577,0.178856953978539,0.0866935253143311,-0.98004812002182,0.211626380681992,0.184972852468491,-0.959687054157257,0.123340912163258,0.0989778786897659,-0.987415969371796,0.241087585687637,0.11788521707058,-0.963317036628723,0.321149706840515,0.0923793837428093,-0.942511975765228,0.28451469540596,0.125801831483841,-0.950381577014923,0.241087585687637,0.11788521707058,-0.963317036628723,0.316787302494049,0.10399479418993,-0.94277822971344,0.321149706840515,0.0923793837428093,-0.942511975765228,0.316787302494049,0.10399479418993,-0.94277822971344,0.271776676177979,0.156839698553085,-0.949493885040283,0.358134627342224,0.167805209755898,-0.918466567993164,0.358134627342224,0.167805209755898,-0.918466567993164,0.365358293056488,0.141255423426628,-0.920086979866028,0.480362743139267,0.20265007019043,-0.853337228298187,0.920099258422852,0.347235411405563,0.181231364607811,0.889516592025757,0.406859368085861,0.20790758728981,0.901151597499847,0.326435387134552,0.285246759653091, +0.901151597499847,0.326435387134552,0.285246759653091,0.842435359954834,0.325831443071365,0.429111301898956,0.873084664344788,0.304998338222504,0.380393296480179,0.753512561321259,0.371617019176483,0.54232782125473,0.790619611740112,0.317228525876999,0.523723661899567,0.842435359954834,0.325831443071365,0.429111301898956,0.919933319091797,0.371021956205368,0.126748040318489,0.903509795665741,0.411103963851929,0.121092729270458,0.920099258422852,0.347235411405563,0.181231364607811,0.71265059709549,0.415267050266266,0.56540447473526,0.716790020465851,0.391973942518234,0.576687335968018,0.710168123245239,0.396692305803299,0.581632375717163,0.716790020465851,0.391973942518234,0.576687335968018,0.753512561321259,0.371617019176483,0.54232782125473,0.710168123245239,0.396692305803299,0.581632375717163,0.716790020465851,0.391973942518234,0.576687335968018,0.716003477573395,0.392703950405121,0.577167630195618,0.714044392108917,0.402328968048096,0.572950124740601,0.714044392108917,0.402328968048096,0.572950124740601,0.659142911434174,0.419004082679749,0.624472618103027,0.680136501789093,0.373225420713425,0.630965054035187,0.197553336620331,0.714155554771423,-0.671531319618225,0.198198407888412,0.714078962802887,-0.671422719955444,0.248174801468849,0.715867340564728,-0.652643144130707,0.281874746084213,0.663952350616455,-0.69261372089386,0.316713631153107,0.600776612758636,-0.734002649784088,0.355901956558228,0.56786972284317,-0.742197811603546,0.197553336620331,0.714155554771423,-0.671531319618225,0.248174801468849,0.715867340564728,-0.652643144130707,0.281874746084213,0.663952350616455,-0.69261372089386,0.355901956558228,0.56786972284317,-0.742197811603546,0.316713631153107,0.600776612758636,-0.734002649784088,0.394421964883804,0.505796074867249,-0.767203688621521,0.469334661960602,0.369468361139297,-0.80200868844986,0.404865711927414,0.429512172937393,-0.807219266891479,0.394421964883804,0.505796074867249,-0.767203688621521,0.617011308670044,0.235857143998146,-0.750778436660767,0.621003866195679,0.141898199915886,-0.770855963230133, +0.561230003833771,0.203118726611137,-0.802348732948303,0.570390164852142,0.253712058067322,-0.78120744228363,0.561230003833771,0.203118726611137,-0.802348732948303,0.60846334695816,0.210661128163338,-0.765110492706299,0.60846334695816,0.210661128163338,-0.765110492706299,0.596925020217896,0.366829812526703,-0.713523805141449,0.570390164852142,0.253712058067322,-0.78120744228363,0.52090311050415,0.322474807500839,-0.790360629558563,0.596925020217896,0.366829812526703,-0.713523805141449,0.496476888656616,0.368567615747452,-0.785918951034546,0.496476888656616,0.368567615747452,-0.785918951034546,0.458139419555664,0.308553218841553,-0.833608508110046,0.469334661960602,0.369468361139297,-0.80200868844986,0.856627702713013,0.223413184285164,-0.465054124593735,0.830000221729279,0.146850481629372,-0.538084030151367,0.826161980628967,0.239905819296837,-0.50980532169342,0.845881998538971,0.339043021202087,-0.411744385957718,0.854837715625763,0.263227880001068,-0.447172671556473,0.856627702713013,0.223413184285164,-0.465054124593735,0.77130401134491,0.214389577507973,-0.599272131919861,0.830000221729279,0.146850481629372,-0.538084030151367,0.768446207046509,0.117041356861591,-0.629119694232941,0.86554890871048,0.311527997255325,-0.392141848802567,0.854837715625763,0.263227880001068,-0.447172671556473,0.845881998538971,0.339043021202087,-0.411744385957718,0.908293604850769,0.285897254943848,-0.305393993854523,0.86554890871048,0.311527997255325,-0.392141848802567,0.846563458442688,0.385069847106934,-0.367493510246277,0.768446207046509,0.117041356861591,-0.629119694232941,0.693685173988342,0.101882793009281,-0.713036179542542,0.705513417720795,0.181106716394424,-0.685164928436279,0.693685173988342,0.101882793009281,-0.713036179542542,0.621003866195679,0.141898199915886,-0.770855963230133,0.705513417720795,0.181106716394424,-0.685164928436279,0.846563458442688,0.385069847106934,-0.367493510246277,0.84037458896637,0.437928140163422,-0.319357633590698,0.889557182788849,0.357324749231339,-0.284617036581039,0.934905409812927,0.298695534467697,-0.191658049821854, +0.889557182788849,0.357324749231339,-0.284617036581039,0.902722895145416,0.391223102807999,-0.178985118865967,0.910026252269745,0.412365883588791,-0.0425001084804535,0.931055903434753,0.351556360721588,-0.0976867750287056,0.92816025018692,0.36604443192482,-0.067305400967598,0.942655563354492,0.308371961116791,-0.127699092030525,0.934905409812927,0.298695534467697,-0.191658049821854,0.902722895145416,0.391223102807999,-0.178985118865967,0.931055903434753,0.351556360721588,-0.0976867750287056,0.942655563354492,0.308371961116791,-0.127699092030525,0.92816025018692,0.36604443192482,-0.067305400967598,0.919933319091797,0.371021956205368,0.126748040318489,0.908096075057983,0.397743463516235,0.131001874804497,0.901721775531769,0.423015564680099,0.0891938209533691,0.909001171588898,0.414270967245102,0.0457859039306641,0.926873028278351,0.375299483537674,-0.00752666546031833,0.907662272453308,0.419332206249237,-0.0175935234874487,0.901721775531769,0.423015564680099,0.0891938209533691,0.908096075057983,0.397743463516235,0.131001874804497,0.911414504051209,0.396864861249924,0.108728498220444,0.911414504051209,0.396864861249924,0.108728498220444,0.929526209831238,0.366573989391327,0.0400553308427334,0.909001171588898,0.414270967245102,0.0457859039306641,0.907662272453308,0.419332206249237,-0.0175935234874487,0.926873028278351,0.375299483537674,-0.00752666546031833,0.922509610652924,0.377550661563873,-0.0801947116851807,0.910026252269745,0.412365883588791,-0.0425001084804535,0.922509610652924,0.377550661563873,-0.0801947116851807,0.931055903434753,0.351556360721588,-0.0976867750287056,0.0537331700325012,0.648623645305634,-0.759210109710693,0.197553336620331,0.714155554771423,-0.671531319618225,0.183051899075508,0.622786104679108,-0.760676860809326,0.160603731870651,0.286760300397873,-0.944444179534912,0.00556098157539964,0.320727527141571,-0.947154998779297,0.00308101763948798,0.470932960510254,-0.882163524627686,0.241229176521301,0.213732078671455,-0.946639835834503,0.160603731870651,0.286760300397873,-0.944444179534912,0.182100608944893,0.500186562538147,-0.846553385257721, +-0.140499979257584,0.31123411655426,-0.939889848232269,-0.0973194763064384,0.516613662242889,-0.850669860839844,0.0291239731013775,0.319867789745331,-0.947014391422272,-0.224580675363541,0.362952291965485,-0.904339015483856,-0.23427514731884,0.417002767324448,-0.878193438053131,-0.140499979257584,0.31123411655426,-0.939889848232269,0.0315799117088318,0.518950819969177,-0.854220330715179,0.0291239731013775,0.319867789745331,-0.947014391422272,-0.0973194763064384,0.516613662242889,-0.850669860839844,-0.0417569801211357,0.546735405921936,-0.836263477802277,-0.153653502464294,0.444057613611221,-0.882724940776825,-0.224580675363541,0.362952291965485,-0.904339015483856,0.00308101763948798,0.470932960510254,-0.882163524627686,-0.153653502464294,0.444057613611221,-0.882724940776825,0.0578846596181393,0.668856620788574,-0.741134285926819,0.136296480894089,0.463934689760208,-0.875321507453918,0.0315799117088318,0.518950819969177,-0.854220330715179,0.0537331700325012,0.648623645305634,-0.759210109710693,0.175961375236511,0.674975156784058,-0.716551423072815,0.173349484801292,0.477961778640747,-0.86110532283783,0.186929509043694,0.417252361774445,-0.889358043670654,0.186929509043694,0.417252361774445,-0.889358043670654,0.182100608944893,0.500186562538147,-0.846553385257721,0.16944046318531,0.719626069068909,-0.673370718955994,0.305773258209229,0.448322147130966,0.839946329593658,0.291402041912079,0.551611483097076,0.781542956829071,0.2407615929842,0.507385313510895,0.827401876449585,0.423227101564407,0.534019291400909,0.731916785240173,0.580977261066437,0.444744557142258,0.681665241718292,0.532754182815552,0.506091058254242,0.678265869617462,0.580977261066437,0.444744557142258,0.681665241718292,0.645422160625458,0.344025880098343,0.681964993476868,0.659142911434174,0.419004082679749,0.624472618103027,0.460626095533371,0.411832928657532,0.786267817020416,0.423227101564407,0.534019291400909,0.731916785240173,0.305773258209229,0.448322147130966,0.839946329593658,0.480362743139267,0.20265007019043,-0.853337228298187,0.520925581455231,0.0909301340579987,-0.848744988441467, +0.592881858348846,0.1853436678648,-0.783670008182526,0.631033062934875,-0.357822239398956,-0.688302516937256,0.719509780406952,-0.460230112075806,-0.520090281963348,0.833553075790405,-0.145659819245338,-0.532890498638153,0.588018119335175,-0.179213225841522,-0.788744032382965,0.631033062934875,-0.357822239398956,-0.688302516937256,0.73752224445343,-0.119141466915607,-0.664730072021484,0.760031938552856,-0.568767488002777,-0.314411848783493,0.897543847560883,-0.216074854135513,-0.384352147579193,0.719509780406952,-0.460230112075806,-0.520090281963348,0.945385158061981,-0.277243167161942,-0.171414643526077,0.760031938552856,-0.568767488002777,-0.314411848783493,0.822205483913422,-0.562321960926056,-0.0881588831543922,0.989723145961761,-0.125159382820129,-0.0691599249839783,0.872993230819702,-0.479885309934616,0.0871371030807495,0.945594012737274,-0.305946677923203,0.110672660171986,0.945385158061981,-0.277243167161942,-0.171414643526077,0.822205483913422,-0.562321960926056,-0.0881588831543922,0.872993230819702,-0.479885309934616,0.0871371030807495,0.684388756752014,0.162796556949615,-0.710710287094116,0.673197627067566,0.187958627939224,-0.715175747871399,0.712400257587433,0.108250357210636,-0.693374037742615,0.550429046154022,-0.0242177192121744,-0.834530591964722,0.322742700576782,-0.258557975292206,-0.910486042499542,0.588018119335175,-0.179213225841522,-0.788744032382965,0.254812151193619,0.00465114647522569,-0.966979324817657,0.313872367143631,-0.0928884670138359,-0.94491046667099,0.508652687072754,0.11210460960865,-0.853642106056213,0.322742700576782,-0.258557975292206,-0.910486042499542,0.550429046154022,-0.0242177192121744,-0.834530591964722,0.313872367143631,-0.0928884670138359,-0.94491046667099,0.508652687072754,0.11210460960865,-0.853642106056213,0.684388756752014,0.162796556949615,-0.710710287094116,0.532496273517609,0.302751809358597,-0.790435910224915,0.673197627067566,0.187958627939224,-0.715175747871399,0.592881858348846,0.1853436678648,-0.783670008182526,0.712400257587433,0.108250357210636,-0.693374037742615, +-0.0681188926100731,0.123727880418301,-0.989975333213806,-0.219464972615242,0.346631556749344,-0.911965787410736,-0.107182562351227,0.1931242197752,-0.975302398204803,0.241087585687637,0.11788521707058,-0.963317036628723,0.28451469540596,0.125801831483841,-0.950381577014923,0.178856953978539,0.0866935253143311,-0.98004812002182,-0.0681188926100731,0.123727880418301,-0.989975333213806,0.0013789051445201,0.031025568023324,-0.999517619609833,0.016304848715663,0.0655113607645035,-0.997718572616577,0.0702731385827065,0.0330674350261688,-0.996979534626007,0.123340912163258,0.0989778786897659,-0.987415969371796,0.016304848715663,0.0655113607645035,-0.997718572616577,0.0702731385827065,0.0330674350261688,-0.996979534626007,0.178856953978539,0.0866935253143311,-0.98004812002182,0.123340912163258,0.0989778786897659,-0.987415969371796,0.316787302494049,0.10399479418993,-0.94277822971344,0.241087585687637,0.11788521707058,-0.963317036628723,0.271776676177979,0.156839698553085,-0.949493885040283,0.250851452350616,0.157929465174675,-0.955055832862854,0.358134627342224,0.167805209755898,-0.918466567993164,0.271776676177979,0.156839698553085,-0.949493885040283,0.365358293056488,0.141255423426628,-0.920086979866028,0.358134627342224,0.167805209755898,-0.918466567993164,0.250851452350616,0.157929465174675,-0.955055832862854,0.365358293056488,0.141255423426628,-0.920086979866028,0.520925581455231,0.0909301340579987,-0.848744988441467,0.480362743139267,0.20265007019043,-0.853337228298187,0.901151597499847,0.326435387134552,0.285246759653091,0.916411459445953,0.341288596391678,0.209074392914772,0.920099258422852,0.347235411405563,0.181231364607811,0.842435359954834,0.325831443071365,0.429111301898956,0.834315717220306,0.304841190576553,0.459335386753082,0.873084664344788,0.304998338222504,0.380393296480179,0.873084664344788,0.304998338222504,0.380393296480179,0.886449873447418,0.340615719556808,0.313348740339279,0.901151597499847,0.326435387134552,0.285246759653091,0.751416623592377,0.351517915725708,0.558397710323334,0.790619611740112,0.317228525876999,0.523723661899567, +0.753512561321259,0.371617019176483,0.54232782125473,0.842435359954834,0.325831443071365,0.429111301898956,0.790619611740112,0.317228525876999,0.523723661899567,0.834315717220306,0.304841190576553,0.459335386753082,0.920099258422852,0.347235411405563,0.181231364607811,0.935367703437805,0.312001526355743,0.166559800505638,0.919933319091797,0.371021956205368,0.126748040318489,0.716790020465851,0.391973942518234,0.576687335968018,0.751416623592377,0.351517915725708,0.558397710323334,0.753512561321259,0.371617019176483,0.54232782125473,0.704528570175171,0.403411656618118,0.583864986896515,0.716790020465851,0.391973942518234,0.576687335968018,0.714044392108917,0.402328968048096,0.572950124740601,0.645422160625458,0.344025880098343,0.681964993476868,0.680136501789093,0.373225420713425,0.630965054035187,0.659142911434174,0.419004082679749,0.624472618103027,0.714044392108917,0.402328968048096,0.572950124740601,0.680136501789093,0.373225420713425,0.630965054035187,0.704528570175171,0.403411656618118,0.583864986896515,0.289193123579025,0.612536251544952,-0.735640287399292,0.281874746084213,0.663952350616455,-0.69261372089386,0.355901956558228,0.56786972284317,-0.742197811603546,0.197553336620331,0.714155554771423,-0.671531319618225,0.281874746084213,0.663952350616455,-0.69261372089386,0.289193123579025,0.612536251544952,-0.735640287399292,0.404865711927414,0.429512172937393,-0.807219266891479,0.355901956558228,0.56786972284317,-0.742197811603546,0.394421964883804,0.505796074867249,-0.767203688621521,0.469334661960602,0.369468361139297,-0.80200868844986,0.419609278440475,0.30901250243187,-0.85348653793335,0.404865711927414,0.429512172937393,-0.807219266891479,0.621003866195679,0.141898199915886,-0.770855963230133,0.60846334695816,0.210661128163338,-0.765110492706299,0.561230003833771,0.203118726611137,-0.802348732948303,0.596925020217896,0.366829812526703,-0.713523805141449,0.60846334695816,0.210661128163338,-0.765110492706299,0.63053560256958,0.367073595523834,-0.683872520923615,0.542816519737244,0.382619827985764,-0.747631013393402, +0.496476888656616,0.368567615747452,-0.785918951034546,0.596925020217896,0.366829812526703,-0.713523805141449,0.496476888656616,0.368567615747452,-0.785918951034546,0.389946669340134,0.279132127761841,-0.87751168012619,0.458139419555664,0.308553218841553,-0.833608508110046,0.458139419555664,0.308553218841553,-0.833608508110046,0.413673579692841,0.236906662583351,-0.879061579704285,0.469334661960602,0.369468361139297,-0.80200868844986,0.856627702713013,0.223413184285164,-0.465054124593735,0.833141267299652,0.201725602149963,-0.514958500862122,0.830000221729279,0.146850481629372,-0.538084030151367,0.854837715625763,0.263227880001068,-0.447172671556473,0.833141267299652,0.201725602149963,-0.514958500862122,0.856627702713013,0.223413184285164,-0.465054124593735,0.799212872982025,0.140004858374596,-0.584514558315277,0.768446207046509,0.117041356861591,-0.629119694232941,0.830000221729279,0.146850481629372,-0.538084030151367,0.86554890871048,0.311527997255325,-0.392141848802567,0.877360463142395,0.271573692560196,-0.39558333158493,0.854837715625763,0.263227880001068,-0.447172671556473,0.877360463142395,0.271573692560196,-0.39558333158493,0.86554890871048,0.311527997255325,-0.392141848802567,0.908293604850769,0.285897254943848,-0.305393993854523,0.908293604850769,0.285897254943848,-0.305393993854523,0.846563458442688,0.385069847106934,-0.367493510246277,0.889557182788849,0.357324749231339,-0.284617036581039,0.693685173988342,0.101882793009281,-0.713036179542542,0.768446207046509,0.117041356861591,-0.629119694232941,0.753763437271118,0.103302471339703,-0.648975431919098,0.693685173988342,0.101882793009281,-0.713036179542542,0.63821816444397,0.203965753316879,-0.742344439029694,0.621003866195679,0.141898199915886,-0.770855963230133,0.934905409812927,0.298695534467697,-0.191658049821854,0.908293604850769,0.285897254943848,-0.305393993854523,0.889557182788849,0.357324749231339,-0.284617036581039,0.934905409812927,0.298695534467697,-0.191658049821854,0.942655563354492,0.308371961116791,-0.127699092030525,0.936560332775116,0.273577868938446,-0.219111517071724, +0.942655563354492,0.308371961116791,-0.127699092030525,0.931055903434753,0.351556360721588,-0.0976867750287056,0.929305493831635,0.317792654037476,-0.188146248459816,0.908096075057983,0.397743463516235,0.131001874804497,0.919933319091797,0.371021956205368,0.126748040318489,0.924970865249634,0.348221927881241,0.1522176861763,0.926873028278351,0.375299483537674,-0.00752666546031833,0.909001171588898,0.414270967245102,0.0457859039306641,0.929526209831238,0.366573989391327,0.0400553308427334,0.911414504051209,0.396864861249924,0.108728498220444,0.908096075057983,0.397743463516235,0.131001874804497,0.912087261676788,0.380207121372223,0.153424337506294,0.911414504051209,0.396864861249924,0.108728498220444,0.935384094715118,0.338894844055176,0.101029090583324,0.929526209831238,0.366573989391327,0.0400553308427334,0.922509610652924,0.377550661563873,-0.0801947116851807,0.926873028278351,0.375299483537674,-0.00752666546031833,0.938495218753815,0.336714953184128,-0.0764834135770798,0.922509610652924,0.377550661563873,-0.0801947116851807,0.928223192691803,0.333352506160736,-0.165159448981285,0.931055903434753,0.351556360721588,-0.0976867750287056,0.289193123579025,0.612536251544952,-0.735640287399292,0.183051899075508,0.622786104679108,-0.760676860809326,0.197553336620331,0.714155554771423,-0.671531319618225,0.0537331700325012,0.648623645305634,-0.759210109710693,0.183051899075508,0.622786104679108,-0.760676860809326,0.136296480894089,0.463934689760208,-0.875321507453918,0.00308101763948798,0.470932960510254,-0.882163524627686,0.182100608944893,0.500186562538147,-0.846553385257721,0.160603731870651,0.286760300397873,-0.944444179534912,-0.140499979257584,0.31123411655426,-0.939889848232269,0.0291239731013775,0.319867789745331,-0.947014391422272,-0.0136015322059393,0.188918441534042,-0.981898546218872,-0.0741782113909721,0.397321134805679,-0.914676666259766,-0.224580675363541,0.362952291965485,-0.904339015483856,-0.140499979257584,0.31123411655426,-0.939889848232269,0.0291239731013775,0.319867789745331,-0.947014391422272,0.0315799117088318,0.518950819969177,-0.854220330715179, +0.136296480894089,0.463934689760208,-0.875321507453918,-0.0417569801211357,0.546735405921936,-0.836263477802277,0.0578846596181393,0.668856620788574,-0.741134285926819,-0.153653502464294,0.444057613611221,-0.882724940776825,-0.0417569801211357,0.546735405921936,-0.836263477802277,-0.224580675363541,0.362952291965485,-0.904339015483856,-0.0741782113909721,0.397321134805679,-0.914676666259766,0.00308101763948798,0.470932960510254,-0.882163524627686,0.0578846596181393,0.668856620788574,-0.741134285926819,0.182100608944893,0.500186562538147,-0.846553385257721,0.16944046318531,0.719626069068909,-0.673370718955994,0.175961375236511,0.674975156784058,-0.716551423072815,0.186929509043694,0.417252361774445,-0.889358043670654,0.182100608944893,0.500186562538147,-0.846553385257721,0.0578846596181393,0.668856620788574,-0.741134285926819,0.16944046318531,0.719626069068909,-0.673370718955994,0.460626095533371,0.411832928657532,0.786267817020416,0.580977261066437,0.444744557142258,0.681665241718292,0.423227101564407,0.534019291400909,0.731916785240173,0.645422160625458,0.344025880098343,0.681964993476868,0.580977261066437,0.444744557142258,0.681665241718292,0.553564071655273,0.276019543409348,0.785735189914703,0.460626095533371,0.411832928657532,0.786267817020416,0.305773258209229,0.448322147130966,0.839946329593658,0.401104062795639,0.263095736503601,0.877437174320221,0.637349903583527,0.0518895089626312,-0.768825352191925,0.592881858348846,0.1853436678648,-0.783670008182526,0.520925581455231,0.0909301340579987,-0.848744988441467,0.631033062934875,-0.357822239398956,-0.688302516937256,0.426807701587677,-0.678182721138,-0.598250150680542,0.719509780406952,-0.460230112075806,-0.520090281963348,0.380969882011414,-0.443092674016953,-0.811499059200287,0.631033062934875,-0.357822239398956,-0.688302516937256,0.588018119335175,-0.179213225841522,-0.788744032382965,0.760031938552856,-0.568767488002777,-0.314411848783493,0.719509780406952,-0.460230112075806,-0.520090281963348,0.494931280612946,-0.767264723777771,-0.407857537269592,0.822205483913422,-0.562321960926056,-0.0881588831543922, +0.760031938552856,-0.568767488002777,-0.314411848783493,0.601786494255066,-0.79809558391571,-0.0299383606761694,0.945594012737274,-0.305946677923203,0.110672660171986,0.872993230819702,-0.479885309934616,0.0871371030807495,0.784700036048889,-0.538433492183685,0.307140082120895,0.666962385177612,-0.71293306350708,0.216535434126854,0.872993230819702,-0.479885309934616,0.0871371030807495,0.822205483913422,-0.562321960926056,-0.0881588831543922,0.684388756752014,0.162796556949615,-0.710710287094116,0.712400257587433,0.108250357210636,-0.693374037742615,0.664736211299896,0.239340931177139,-0.707701563835144,0.322742700576782,-0.258557975292206,-0.910486042499542,0.380969882011414,-0.443092674016953,-0.811499059200287,0.588018119335175,-0.179213225841522,-0.788744032382965,0.0897961109876633,-0.146291196346283,-0.985157549381256,0.313872367143631,-0.0928884670138359,-0.94491046667099,0.254812151193619,0.00465114647522569,-0.966979324817657,0.508652687072754,0.11210460960865,-0.853642106056213,0.380696386098862,0.200524151325226,-0.902696073055267,0.254812151193619,0.00465114647522569,-0.966979324817657,0.322742700576782,-0.258557975292206,-0.910486042499542,0.313872367143631,-0.0928884670138359,-0.94491046667099,0.0821164399385452,-0.31206414103508,-0.946505546569824,0.664736211299896,0.239340931177139,-0.707701563835144,0.532496273517609,0.302751809358597,-0.790435910224915,0.684388756752014,0.162796556949615,-0.710710287094116,0.508652687072754,0.11210460960865,-0.853642106056213,0.532496273517609,0.302751809358597,-0.790435910224915,0.380696386098862,0.200524151325226,-0.902696073055267,0.592881858348846,0.1853436678648,-0.783670008182526,0.637349903583527,0.0518895089626312,-0.768825352191925,0.712400257587433,0.108250357210636,-0.693374037742615,-0.0681188926100731,0.123727880418301,-0.989975333213806,-0.107182562351227,0.1931242197752,-0.975302398204803,-0.0280172266066074,0.0954695120453835,-0.995037972927094,0.160503014922142,0.0656745731830597,-0.984847962856293,0.241087585687637,0.11788521707058,-0.963317036628723, +0.178856953978539,0.0866935253143311,-0.98004812002182,-0.0280172266066074,0.0954695120453835,-0.995037972927094,0.0013789051445201,0.031025568023324,-0.999517619609833,-0.0681188926100731,0.123727880418301,-0.989975333213806,0.0702731385827065,0.0330674350261688,-0.996979534626007,0.016304848715663,0.0655113607645035,-0.997718572616577,0.0013789051445201,0.031025568023324,-0.999517619609833,0.178856953978539,0.0866935253143311,-0.98004812002182,0.0702731385827065,0.0330674350261688,-0.996979534626007,0.0838117673993111,0.0208169054239988,-0.996264100074768,0.271776676177979,0.156839698553085,-0.949493885040283,0.241087585687637,0.11788521707058,-0.963317036628723,0.250851452350616,0.157929465174675,-0.955055832862854,0.365358293056488,0.141255423426628,-0.920086979866028,0.250851452350616,0.157929465174675,-0.955055832862854,0.255897760391235,0.112360894680023,-0.960151672363281,0.358216822147369,0.124542906880379,-0.925294399261475,0.520925581455231,0.0909301340579987,-0.848744988441467,0.365358293056488,0.141255423426628,-0.920086979866028,0.886449873447418,0.340615719556808,0.313348740339279,0.916411459445953,0.341288596391678,0.209074392914772,0.901151597499847,0.326435387134552,0.285246759653091,0.935367703437805,0.312001526355743,0.166559800505638,0.920099258422852,0.347235411405563,0.181231364607811,0.916411459445953,0.341288596391678,0.209074392914772,0.834315717220306,0.304841190576553,0.459335386753082,0.850906789302826,0.298642873764038,0.432168900966644,0.873084664344788,0.304998338222504,0.380393296480179,0.859822869300842,0.345338374376297,0.376092940568924,0.886449873447418,0.340615719556808,0.313348740339279,0.873084664344788,0.304998338222504,0.380393296480179,0.785985589027405,0.334565937519073,0.519896149635315,0.790619611740112,0.317228525876999,0.523723661899567,0.751416623592377,0.351517915725708,0.558397710323334,0.785985589027405,0.334565937519073,0.519896149635315,0.834315717220306,0.304841190576553,0.459335386753082,0.790619611740112,0.317228525876999,0.523723661899567,0.935367703437805,0.312001526355743,0.166559800505638, +0.924970865249634,0.348221927881241,0.1522176861763,0.919933319091797,0.371021956205368,0.126748040318489,0.716790020465851,0.391973942518234,0.576687335968018,0.749587714672089,0.367915332317352,0.550233006477356,0.751416623592377,0.351517915725708,0.558397710323334,0.704528570175171,0.403411656618118,0.583864986896515,0.749587714672089,0.367915332317352,0.550233006477356,0.716790020465851,0.391973942518234,0.576687335968018,0.645422160625458,0.344025880098343,0.681964993476868,0.607167780399323,0.317308634519577,0.728465855121613,0.680136501789093,0.373225420713425,0.630965054035187,0.641480684280396,0.401402533054352,0.653741776943207,0.704528570175171,0.403411656618118,0.583864986896515,0.680136501789093,0.373225420713425,0.630965054035187,0.289193123579025,0.612536251544952,-0.735640287399292,0.355901956558228,0.56786972284317,-0.742197811603546,0.296081811189651,0.474136829376221,-0.829174101352692,0.296081811189651,0.474136829376221,-0.829174101352692,0.355901956558228,0.56786972284317,-0.742197811603546,0.404865711927414,0.429512172937393,-0.807219266891479,0.419609278440475,0.30901250243187,-0.85348653793335,0.469334661960602,0.369468361139297,-0.80200868844986,0.413673579692841,0.236906662583351,-0.879061579704285,0.327561497688293,0.320663243532181,-0.888751029968262,0.404865711927414,0.429512172937393,-0.807219266891479,0.419609278440475,0.30901250243187,-0.85348653793335,0.621003866195679,0.141898199915886,-0.770855963230133,0.63821816444397,0.203965753316879,-0.742344439029694,0.60846334695816,0.210661128163338,-0.765110492706299,0.60846334695816,0.210661128163338,-0.765110492706299,0.63821816444397,0.203965753316879,-0.742344439029694,0.63053560256958,0.367073595523834,-0.683872520923615,0.63053560256958,0.367073595523834,-0.683872520923615,0.587847232818604,0.368692338466644,-0.720070421695709,0.596925020217896,0.366829812526703,-0.713523805141449,0.496476888656616,0.368567615747452,-0.785918951034546,0.542816519737244,0.382619827985764,-0.747631013393402,0.446434706449509,0.313547611236572,-0.838083386421204, +0.590401470661163,0.36643573641777,-0.719132006168365,0.542816519737244,0.382619827985764,-0.747631013393402,0.596925020217896,0.366829812526703,-0.713523805141449,0.496476888656616,0.368567615747452,-0.785918951034546,0.446434706449509,0.313547611236572,-0.838083386421204,0.389946669340134,0.279132127761841,-0.87751168012619,0.389946669340134,0.279132127761841,-0.87751168012619,0.413673579692841,0.236906662583351,-0.879061579704285,0.458139419555664,0.308553218841553,-0.833608508110046,0.833141267299652,0.201725602149963,-0.514958500862122,0.799212872982025,0.140004858374596,-0.584514558315277,0.830000221729279,0.146850481629372,-0.538084030151367,0.833141267299652,0.201725602149963,-0.514958500862122,0.854837715625763,0.263227880001068,-0.447172671556473,0.837985455989838,0.289520442485809,-0.462556123733521,0.799212872982025,0.140004858374596,-0.584514558315277,0.753763437271118,0.103302471339703,-0.648975431919098,0.768446207046509,0.117041356861591,-0.629119694232941,0.837985455989838,0.289520442485809,-0.462556123733521,0.854837715625763,0.263227880001068,-0.447172671556473,0.877360463142395,0.271573692560196,-0.39558333158493,0.877360463142395,0.271573692560196,-0.39558333158493,0.908293604850769,0.285897254943848,-0.305393993854523,0.909673810005188,0.228168189525604,-0.347034156322479,0.753763437271118,0.103302471339703,-0.648975431919098,0.708160758018494,0.15965561568737,-0.687763214111328,0.693685173988342,0.101882793009281,-0.713036179542542,0.693685173988342,0.101882793009281,-0.713036179542542,0.667080223560333,0.222292840480804,-0.711048305034637,0.63821816444397,0.203965753316879,-0.742344439029694,0.934905409812927,0.298695534467697,-0.191658049821854,0.936560332775116,0.273577868938446,-0.219111517071724,0.908293604850769,0.285897254943848,-0.305393993854523,0.936560332775116,0.273577868938446,-0.219111517071724,0.942655563354492,0.308371961116791,-0.127699092030525,0.929305493831635,0.317792654037476,-0.188146248459816,0.928223192691803,0.333352506160736,-0.165159448981285,0.929305493831635,0.317792654037476,-0.188146248459816, +0.931055903434753,0.351556360721588,-0.0976867750287056,0.912087261676788,0.380207121372223,0.153424337506294,0.908096075057983,0.397743463516235,0.131001874804497,0.924970865249634,0.348221927881241,0.1522176861763,0.926873028278351,0.375299483537674,-0.00752666546031833,0.929526209831238,0.366573989391327,0.0400553308427334,0.948429107666016,0.3167984187603,-0.0109937144443393,0.911414504051209,0.396864861249924,0.108728498220444,0.912087261676788,0.380207121372223,0.153424337506294,0.935384094715118,0.338894844055176,0.101029090583324,0.947661101818085,0.315704673528671,0.0476325340569019,0.929526209831238,0.366573989391327,0.0400553308427334,0.935384094715118,0.338894844055176,0.101029090583324,0.926873028278351,0.375299483537674,-0.00752666546031833,0.948429107666016,0.3167984187603,-0.0109937144443393,0.938495218753815,0.336714953184128,-0.0764834135770798,0.938495218753815,0.336714953184128,-0.0764834135770798,0.928223192691803,0.333352506160736,-0.165159448981285,0.922509610652924,0.377550661563873,-0.0801947116851807,0.289193123579025,0.612536251544952,-0.735640287399292,0.136296480894089,0.463934689760208,-0.875321507453918,0.183051899075508,0.622786104679108,-0.760676860809326,0.0848776325583458,0.17894259095192,-0.98019140958786,-0.0136015322059393,0.188918441534042,-0.981898546218872,0.0291239731013775,0.319867789745331,-0.947014391422272,-0.0495673604309559,0.272293299436569,-0.960936665534973,-0.140499979257584,0.31123411655426,-0.939889848232269,-0.0136015322059393,0.188918441534042,-0.981898546218872,-0.0495673604309559,0.272293299436569,-0.960936665534973,-0.0741782113909721,0.397321134805679,-0.914676666259766,-0.140499979257584,0.31123411655426,-0.939889848232269,0.0291239731013775,0.319867789745331,-0.947014391422272,0.136296480894089,0.463934689760208,-0.875321507453918,0.0649104043841362,0.229387789964676,-0.971168279647827,-0.0417569801211357,0.546735405921936,-0.836263477802277,0.136618047952652,0.774695038795471,-0.617400228977203,0.0578846596181393,0.668856620788574,-0.741134285926819,-0.0417569801211357,0.546735405921936,-0.836263477802277, +-0.0741782113909721,0.397321134805679,-0.914676666259766,0.0826859623193741,0.662885308265686,-0.744141101837158,0.175961375236511,0.674975156784058,-0.716551423072815,0.16944046318531,0.719626069068909,-0.673370718955994,0.18874517083168,0.856211006641388,-0.480913549661636,0.0578846596181393,0.668856620788574,-0.741134285926819,0.162770837545395,0.821651101112366,-0.54625540971756,0.16944046318531,0.719626069068909,-0.673370718955994,0.553564071655273,0.276019543409348,0.785735189914703,0.580977261066437,0.444744557142258,0.681665241718292,0.460626095533371,0.411832928657532,0.786267817020416,0.645422160625458,0.344025880098343,0.681964993476868,0.553564071655273,0.276019543409348,0.785735189914703,0.607167780399323,0.317308634519577,0.728465855121613,0.401104062795639,0.263095736503601,0.877437174320221,0.553564071655273,0.276019543409348,0.785735189914703,0.460626095533371,0.411832928657532,0.786267817020416,0.637349903583527,0.0518895089626312,-0.768825352191925,0.520925581455231,0.0909301340579987,-0.848744988441467,0.511120140552521,0.119057431817055,-0.851223468780518,0.426807701587677,-0.678182721138,-0.598250150680542,0.631033062934875,-0.357822239398956,-0.688302516937256,0.355733543634415,-0.596070826053619,-0.719828486442566,0.494931280612946,-0.767264723777771,-0.407857537269592,0.719509780406952,-0.460230112075806,-0.520090281963348,0.426807701587677,-0.678182721138,-0.598250150680542,0.380969882011414,-0.443092674016953,-0.811499059200287,0.355733543634415,-0.596070826053619,-0.719828486442566,0.631033062934875,-0.357822239398956,-0.688302516937256,0.494931280612946,-0.767264723777771,-0.407857537269592,0.487301677465439,-0.848087251186371,-0.20805037021637,0.760031938552856,-0.568767488002777,-0.314411848783493,0.487301677465439,-0.848087251186371,-0.20805037021637,0.601786494255066,-0.79809558391571,-0.0299383606761694,0.760031938552856,-0.568767488002777,-0.314411848783493,0.666962385177612,-0.71293306350708,0.216535434126854,0.822205483913422,-0.562321960926056,-0.0881588831543922,0.601786494255066,-0.79809558391571,-0.0299383606761694, +0.784700036048889,-0.538433492183685,0.307140082120895,0.872993230819702,-0.479885309934616,0.0871371030807495,0.731749832630157,-0.632035911083221,0.255093365907669,0.666962385177612,-0.71293306350708,0.216535434126854,0.731749832630157,-0.632035911083221,0.255093365907669,0.872993230819702,-0.479885309934616,0.0871371030807495,0.664736211299896,0.239340931177139,-0.707701563835144,0.712400257587433,0.108250357210636,-0.693374037742615,0.617282211780548,0.173633053898811,-0.767342209815979,0.380969882011414,-0.443092674016953,-0.811499059200287,0.322742700576782,-0.258557975292206,-0.910486042499542,0.0301485899835825,-0.493368983268738,-0.869297385215759,0.313872367143631,-0.0928884670138359,-0.94491046667099,0.0897961109876633,-0.146291196346283,-0.985157549381256,0.0821164399385452,-0.31206414103508,-0.946505546569824,0.0897961109876633,-0.146291196346283,-0.985157549381256,0.254812151193619,0.00465114647522569,-0.966979324817657,0.100269921123981,-0.0844811499118805,-0.991367161273956,0.254812151193619,0.00465114647522569,-0.966979324817657,0.380696386098862,0.200524151325226,-0.902696073055267,0.262878566980362,0.120890721678734,-0.957225263118744,0.322742700576782,-0.258557975292206,-0.910486042499542,0.0821164399385452,-0.31206414103508,-0.946505546569824,0.0301485899835825,-0.493368983268738,-0.869297385215759,0.532496273517609,0.302751809358597,-0.790435910224915,0.664736211299896,0.239340931177139,-0.707701563835144,0.505793154239655,0.384800732135773,-0.772076189517975,0.340776652097702,0.30246701836586,-0.890160024166107,0.380696386098862,0.200524151325226,-0.902696073055267,0.532496273517609,0.302751809358597,-0.790435910224915,0.617282211780548,0.173633053898811,-0.767342209815979,0.712400257587433,0.108250357210636,-0.693374037742615,0.637349903583527,0.0518895089626312,-0.768825352191925,-0.0280172266066074,0.0954695120453835,-0.995037972927094,-0.107182562351227,0.1931242197752,-0.975302398204803,-0.0406639948487282,0.0752765312790871,-0.996333062648773,0.241087585687637,0.11788521707058,-0.963317036628723, +0.160503014922142,0.0656745731830597,-0.984847962856293,0.139265075325966,0.123749129474163,-0.982492387294769,0.160503014922142,0.0656745731830597,-0.984847962856293,0.178856953978539,0.0866935253143311,-0.98004812002182,0.0838117673993111,0.0208169054239988,-0.996264100074768,0.0013789051445201,0.031025568023324,-0.999517619609833,-0.0280172266066074,0.0954695120453835,-0.995037972927094,-0.0406639948487282,0.0752765312790871,-0.996333062648773,0.0013789051445201,0.031025568023324,-0.999517619609833,0.044995691627264,-0.0241701323539019,-0.998694658279419,0.0702731385827065,0.0330674350261688,-0.996979534626007,0.0702731385827065,0.0330674350261688,-0.996979534626007,0.0156728252768517,0.000189313519513235,-0.999877095222473,0.0838117673993111,0.0208169054239988,-0.996264100074768,0.160386800765991,0.119376562535763,-0.979808747768402,0.250851452350616,0.157929465174675,-0.955055832862854,0.241087585687637,0.11788521707058,-0.963317036628723,0.250851452350616,0.157929465174675,-0.955055832862854,0.160386800765991,0.119376562535763,-0.979808747768402,0.255897760391235,0.112360894680023,-0.960151672363281,0.358216822147369,0.124542906880379,-0.925294399261475,0.365358293056488,0.141255423426628,-0.920086979866028,0.255897760391235,0.112360894680023,-0.960151672363281,0.358216822147369,0.124542906880379,-0.925294399261475,0.511120140552521,0.119057431817055,-0.851223468780518,0.520925581455231,0.0909301340579987,-0.848744988441467,0.883780181407928,0.361842602491379,0.296652019023895,0.916411459445953,0.341288596391678,0.209074392914772,0.886449873447418,0.340615719556808,0.313348740339279,0.916411459445953,0.341288596391678,0.209074392914772,0.924970865249634,0.348221927881241,0.1522176861763,0.935367703437805,0.312001526355743,0.166559800505638,0.850906789302826,0.298642873764038,0.432168900966644,0.834315717220306,0.304841190576553,0.459335386753082,0.806485414505005,0.321909755468369,0.495938867330551,0.859822869300842,0.345338374376297,0.376092940568924,0.873084664344788,0.304998338222504,0.380393296480179,0.850906789302826,0.298642873764038,0.432168900966644, +0.859822869300842,0.345338374376297,0.376092940568924,0.883780181407928,0.361842602491379,0.296652019023895,0.886449873447418,0.340615719556808,0.313348740339279,0.785985589027405,0.334565937519073,0.519896149635315,0.751416623592377,0.351517915725708,0.558397710323334,0.749587714672089,0.367915332317352,0.550233006477356,0.785985589027405,0.334565937519073,0.519896149635315,0.806485414505005,0.321909755468369,0.495938867330551,0.834315717220306,0.304841190576553,0.459335386753082,0.749587714672089,0.367915332317352,0.550233006477356,0.704528570175171,0.403411656618118,0.583864986896515,0.703035593032837,0.393059313297272,0.592659294605255,0.607167780399323,0.317308634519577,0.728465855121613,0.641480684280396,0.401402533054352,0.653741776943207,0.680136501789093,0.373225420713425,0.630965054035187,0.641480684280396,0.401402533054352,0.653741776943207,0.703035593032837,0.393059313297272,0.592659294605255,0.704528570175171,0.403411656618118,0.583864986896515,0.136296480894089,0.463934689760208,-0.875321507453918,0.289193123579025,0.612536251544952,-0.735640287399292,0.296081811189651,0.474136829376221,-0.829174101352692,0.296081811189651,0.474136829376221,-0.829174101352692,0.404865711927414,0.429512172937393,-0.807219266891479,0.327561497688293,0.320663243532181,-0.888751029968262,0.413673579692841,0.236906662583351,-0.879061579704285,0.369782328605652,0.206738889217377,-0.905825555324554,0.419609278440475,0.30901250243187,-0.85348653793335,0.327561497688293,0.320663243532181,-0.888751029968262,0.419609278440475,0.30901250243187,-0.85348653793335,0.369782328605652,0.206738889217377,-0.905825555324554,0.63821816444397,0.203965753316879,-0.742344439029694,0.633481800556183,0.436277270317078,-0.63903272151947,0.63053560256958,0.367073595523834,-0.683872520923615,0.58404266834259,0.456133633852005,-0.671443283557892,0.587847232818604,0.368692338466644,-0.720070421695709,0.63053560256958,0.367073595523834,-0.683872520923615,0.596925020217896,0.366829812526703,-0.713523805141449,0.587847232818604,0.368692338466644,-0.720070421695709, +0.590401470661163,0.36643573641777,-0.719132006168365,0.446434706449509,0.313547611236572,-0.838083386421204,0.542816519737244,0.382619827985764,-0.747631013393402,0.53249055147171,0.306555867195129,-0.788972198963165,0.590401470661163,0.36643573641777,-0.719132006168365,0.53249055147171,0.306555867195129,-0.788972198963165,0.542816519737244,0.382619827985764,-0.747631013393402,0.389946669340134,0.279132127761841,-0.87751168012619,0.446434706449509,0.313547611236572,-0.838083386421204,0.436026513576508,0.302754998207092,-0.847478687763214,0.389946669340134,0.279132127761841,-0.87751168012619,0.358864098787308,0.253308922052383,-0.898360192775726,0.413673579692841,0.236906662583351,-0.879061579704285,0.762891829013824,0.280586719512939,-0.58246636390686,0.799212872982025,0.140004858374596,-0.584514558315277,0.833141267299652,0.201725602149963,-0.514958500862122,0.837985455989838,0.289520442485809,-0.462556123733521,0.762891829013824,0.280586719512939,-0.58246636390686,0.833141267299652,0.201725602149963,-0.514958500862122,0.739273846149445,0.215692207217216,-0.637926936149597,0.753763437271118,0.103302471339703,-0.648975431919098,0.799212872982025,0.140004858374596,-0.584514558315277,0.837985455989838,0.289520442485809,-0.462556123733521,0.877360463142395,0.271573692560196,-0.39558333158493,0.909673810005188,0.228168189525604,-0.347034156322479,0.917923450469971,0.267448574304581,-0.293066024780273,0.909673810005188,0.228168189525604,-0.347034156322479,0.908293604850769,0.285897254943848,-0.305393993854523,0.739273846149445,0.215692207217216,-0.637926936149597,0.708160758018494,0.15965561568737,-0.687763214111328,0.753763437271118,0.103302471339703,-0.648975431919098,0.693685173988342,0.101882793009281,-0.713036179542542,0.708160758018494,0.15965561568737,-0.687763214111328,0.667080223560333,0.222292840480804,-0.711048305034637,0.667080223560333,0.222292840480804,-0.711048305034637,0.633481800556183,0.436277270317078,-0.63903272151947,0.63821816444397,0.203965753316879,-0.742344439029694,0.917923450469971,0.267448574304581,-0.293066024780273, +0.908293604850769,0.285897254943848,-0.305393993854523,0.936560332775116,0.273577868938446,-0.219111517071724,0.936277270317078,0.275207757949829,-0.218278303742409,0.936560332775116,0.273577868938446,-0.219111517071724,0.929305493831635,0.317792654037476,-0.188146248459816,0.928223192691803,0.333352506160736,-0.165159448981285,0.936277270317078,0.275207757949829,-0.218278303742409,0.929305493831635,0.317792654037476,-0.188146248459816,0.912087261676788,0.380207121372223,0.153424337506294,0.924970865249634,0.348221927881241,0.1522176861763,0.916411459445953,0.341288596391678,0.209074392914772,0.948429107666016,0.3167984187603,-0.0109937144443393,0.929526209831238,0.366573989391327,0.0400553308427334,0.947661101818085,0.315704673528671,0.0476325340569019,0.950139701366425,0.286648601293564,0.122747629880905,0.935384094715118,0.338894844055176,0.101029090583324,0.912087261676788,0.380207121372223,0.153424337506294,0.958120167255402,0.275686025619507,0.0774766206741333,0.947661101818085,0.315704673528671,0.0476325340569019,0.935384094715118,0.338894844055176,0.101029090583324,0.938495218753815,0.336714953184128,-0.0764834135770798,0.948429107666016,0.3167984187603,-0.0109937144443393,0.955602049827576,0.273886829614639,-0.108675494790077,0.938495218753815,0.336714953184128,-0.0764834135770798,0.955602049827576,0.273886829614639,-0.108675494790077,0.928223192691803,0.333352506160736,-0.165159448981285,0.04253239184618,0.202057793736458,-0.978449583053589,-0.0136015322059393,0.188918441534042,-0.981898546218872,0.0848776325583458,0.17894259095192,-0.98019140958786,0.0291239731013775,0.319867789745331,-0.947014391422272,0.0649104043841362,0.229387789964676,-0.971168279647827,0.0848776325583458,0.17894259095192,-0.98019140958786,-0.0495673604309559,0.272293299436569,-0.960936665534973,-0.0136015322059393,0.188918441534042,-0.981898546218872,0.04253239184618,0.202057793736458,-0.978449583053589,-0.0741782113909721,0.397321134805679,-0.914676666259766,-0.0495673604309559,0.272293299436569,-0.960936665534973,0.0778785347938538,0.588299930095673,-0.80488383769989, +0.0649104043841362,0.229387789964676,-0.971168279647827,0.136296480894089,0.463934689760208,-0.875321507453918,0.143575578927994,0.289589941501617,-0.946321070194244,0.136618047952652,0.774695038795471,-0.617400228977203,-0.0417569801211357,0.546735405921936,-0.836263477802277,0.0826859623193741,0.662885308265686,-0.744141101837158,0.136618047952652,0.774695038795471,-0.617400228977203,0.162770837545395,0.821651101112366,-0.54625540971756,0.0578846596181393,0.668856620788574,-0.741134285926819,-0.0741782113909721,0.397321134805679,-0.914676666259766,0.0778785347938538,0.588299930095673,-0.80488383769989,0.0826859623193741,0.662885308265686,-0.744141101837158,0.16944046318531,0.719626069068909,-0.673370718955994,0.164135918021202,0.863458931446075,-0.476967543363571,0.18874517083168,0.856211006641388,-0.480913549661636,0.162770837545395,0.821651101112366,-0.54625540971756,0.164135918021202,0.863458931446075,-0.476967543363571,0.16944046318531,0.719626069068909,-0.673370718955994,0.542654573917389,0.272398322820663,0.794559717178345,0.607167780399323,0.317308634519577,0.728465855121613,0.553564071655273,0.276019543409348,0.785735189914703,0.493134558200836,0.24052806198597,0.836040914058685,0.553564071655273,0.276019543409348,0.785735189914703,0.401104062795639,0.263095736503601,0.877437174320221,0.637349903583527,0.0518895089626312,-0.768825352191925,0.511120140552521,0.119057431817055,-0.851223468780518,0.617282211780548,0.173633053898811,-0.767342209815979,0.149515479803085,-0.740156173706055,-0.655601859092712,0.426807701587677,-0.678182721138,-0.598250150680542,0.355733543634415,-0.596070826053619,-0.719828486442566,0.494931280612946,-0.767264723777771,-0.407857537269592,0.426807701587677,-0.678182721138,-0.598250150680542,0.244423002004623,-0.841068923473358,-0.482556045055389,0.380969882011414,-0.443092674016953,-0.811499059200287,0.164650022983551,-0.634159922599792,-0.755467653274536,0.355733543634415,-0.596070826053619,-0.719828486442566,0.494931280612946,-0.767264723777771,-0.407857537269592,0.337986916303635,-0.882941246032715,-0.325851857662201, +0.487301677465439,-0.848087251186371,-0.20805037021637,0.516699492931366,-0.855448722839355,0.035056184977293,0.601786494255066,-0.79809558391571,-0.0299383606761694,0.487301677465439,-0.848087251186371,-0.20805037021637,0.666962385177612,-0.71293306350708,0.216535434126854,0.601786494255066,-0.79809558391571,-0.0299383606761694,0.530758082866669,-0.818294703960419,0.220656856894493,0.682703614234924,-0.576641798019409,0.448775947093964,0.784700036048889,-0.538433492183685,0.307140082120895,0.731749832630157,-0.632035911083221,0.255093365907669,0.64431756734848,-0.689297795295715,0.331245213747025,0.731749832630157,-0.632035911083221,0.255093365907669,0.666962385177612,-0.71293306350708,0.216535434126854,0.617282211780548,0.173633053898811,-0.767342209815979,0.505793154239655,0.384800732135773,-0.772076189517975,0.664736211299896,0.239340931177139,-0.707701563835144,0.164650022983551,-0.634159922599792,-0.755467653274536,0.380969882011414,-0.443092674016953,-0.811499059200287,0.0301485899835825,-0.493368983268738,-0.869297385215759,0.0821164399385452,-0.31206414103508,-0.946505546569824,0.0897961109876633,-0.146291196346283,-0.985157549381256,-0.0628684610128403,-0.272429794073105,-0.960119545459747,0.172302812337875,-0.043754730373621,-0.984071612358093,0.100269921123981,-0.0844811499118805,-0.991367161273956,0.254812151193619,0.00465114647522569,-0.966979324817657,0.0897961109876633,-0.146291196346283,-0.985157549381256,0.100269921123981,-0.0844811499118805,-0.991367161273956,-0.0464253909885883,-0.0177971906960011,-0.998763144016266,0.340776652097702,0.30246701836586,-0.890160024166107,0.262878566980362,0.120890721678734,-0.957225263118744,0.380696386098862,0.200524151325226,-0.902696073055267,0.254812151193619,0.00465114647522569,-0.966979324817657,0.262878566980362,0.120890721678734,-0.957225263118744,0.172302812337875,-0.043754730373621,-0.984071612358093,-0.139718279242516,-0.39313742518425,-0.908802330493927,0.0301485899835825,-0.493368983268738,-0.869297385215759,0.0821164399385452,-0.31206414103508,-0.946505546569824, +0.532496273517609,0.302751809358597,-0.790435910224915,0.505793154239655,0.384800732135773,-0.772076189517975,0.412690252065659,0.472777843475342,-0.778567731380463,0.532496273517609,0.302751809358597,-0.790435910224915,0.412690252065659,0.472777843475342,-0.778567731380463,0.340776652097702,0.30246701836586,-0.890160024166107,-0.065084807574749,0.13703216612339,-0.988426089286804,-0.0406639948487282,0.0752765312790871,-0.996333062648773,-0.107182562351227,0.1931242197752,-0.975302398204803,0.160503014922142,0.0656745731830597,-0.984847962856293,0.0736406296491623,0.08783920109272,-0.993408918380737,0.139265075325966,0.123749129474163,-0.982492387294769,0.160386800765991,0.119376562535763,-0.979808747768402,0.241087585687637,0.11788521707058,-0.963317036628723,0.139265075325966,0.123749129474163,-0.982492387294769,0.160503014922142,0.0656745731830597,-0.984847962856293,0.0838117673993111,0.0208169054239988,-0.996264100074768,0.0736406296491623,0.08783920109272,-0.993408918380737,0.0013789051445201,0.031025568023324,-0.999517619609833,-0.0406639948487282,0.0752765312790871,-0.996333062648773,-0.0545725673437119,0.00571138085797429,-0.998493432998657,0.044995691627264,-0.0241701323539019,-0.998694658279419,0.0013789051445201,0.031025568023324,-0.999517619609833,-0.0545725673437119,0.00571138085797429,-0.998493432998657,0.044995691627264,-0.0241701323539019,-0.998694658279419,0.0156728252768517,0.000189313519513235,-0.999877095222473,0.0702731385827065,0.0330674350261688,-0.996979534626007,0.0838117673993111,0.0208169054239988,-0.996264100074768,0.0156728252768517,0.000189313519513235,-0.999877095222473,0.0129480706527829,-0.0121295489370823,-0.999842584133148,0.190568685531616,0.0763716027140617,-0.978698551654816,0.255897760391235,0.112360894680023,-0.960151672363281,0.160386800765991,0.119376562535763,-0.979808747768402,0.358216822147369,0.124542906880379,-0.925294399261475,0.255897760391235,0.112360894680023,-0.960151672363281,0.318997502326965,0.107737250626087,-0.941612005233765,0.361366480588913,0.235945641994476,-0.902077496051788, +0.511120140552521,0.119057431817055,-0.851223468780518,0.358216822147369,0.124542906880379,-0.925294399261475,0.883780181407928,0.361842602491379,0.296652019023895,0.922585725784302,0.336864858865738,0.188035979866982,0.916411459445953,0.341288596391678,0.209074392914772,0.850906789302826,0.298642873764038,0.432168900966644,0.806485414505005,0.321909755468369,0.495938867330551,0.843336403369904,0.252286821603775,0.474483907222748,0.870512008666992,0.299750715494156,0.390330940485001,0.859822869300842,0.345338374376297,0.376092940568924,0.850906789302826,0.298642873764038,0.432168900966644,0.883780181407928,0.361842602491379,0.296652019023895,0.859822869300842,0.345338374376297,0.376092940568924,0.870512008666992,0.299750715494156,0.390330940485001,0.763501346111298,0.329893290996552,0.555190026760101,0.785985589027405,0.334565937519073,0.519896149635315,0.749587714672089,0.367915332317352,0.550233006477356,0.763501346111298,0.329893290996552,0.555190026760101,0.806485414505005,0.321909755468369,0.495938867330551,0.785985589027405,0.334565937519073,0.519896149635315,0.749587714672089,0.367915332317352,0.550233006477356,0.703035593032837,0.393059313297272,0.592659294605255,0.761577963829041,0.34649270772934,0.547669291496277,0.607167780399323,0.317308634519577,0.728465855121613,0.559991896152496,0.36646431684494,0.743043005466461,0.641480684280396,0.401402533054352,0.653741776943207,0.703035593032837,0.393059313297272,0.592659294605255,0.641480684280396,0.401402533054352,0.653741776943207,0.708569884300232,0.368432134389877,0.601819276809692,0.136296480894089,0.463934689760208,-0.875321507453918,0.296081811189651,0.474136829376221,-0.829174101352692,0.143575578927994,0.289589941501617,-0.946321070194244,0.327561497688293,0.320663243532181,-0.888751029968262,0.143575578927994,0.289589941501617,-0.946321070194244,0.296081811189651,0.474136829376221,-0.829174101352692,0.33671846985817,0.171145498752594,-0.925921082496643,0.369782328605652,0.206738889217377,-0.905825555324554,0.413673579692841,0.236906662583351,-0.879061579704285, +0.327561497688293,0.320663243532181,-0.888751029968262,0.369782328605652,0.206738889217377,-0.905825555324554,0.22489957511425,0.187983348965645,-0.956076502799988,0.633481800556183,0.436277270317078,-0.63903272151947,0.58404266834259,0.456133633852005,-0.671443283557892,0.63053560256958,0.367073595523834,-0.683872520923615,0.587847232818604,0.368692338466644,-0.720070421695709,0.58404266834259,0.456133633852005,-0.671443283557892,0.523703455924988,0.342241853475571,-0.7801313996315,0.590401470661163,0.36643573641777,-0.719132006168365,0.587847232818604,0.368692338466644,-0.720070421695709,0.53249055147171,0.306555867195129,-0.788972198963165,0.446434706449509,0.313547611236572,-0.838083386421204,0.53249055147171,0.306555867195129,-0.788972198963165,0.436026513576508,0.302754998207092,-0.847478687763214,0.389946669340134,0.279132127761841,-0.87751168012619,0.436026513576508,0.302754998207092,-0.847478687763214,0.347736716270447,0.335616379976273,-0.875465989112854,0.389946669340134,0.279132127761841,-0.87751168012619,0.347736716270447,0.335616379976273,-0.875465989112854,0.358864098787308,0.253308922052383,-0.898360192775726,0.33671846985817,0.171145498752594,-0.925921082496643,0.413673579692841,0.236906662583351,-0.879061579704285,0.358864098787308,0.253308922052383,-0.898360192775726,0.739273846149445,0.215692207217216,-0.637926936149597,0.799212872982025,0.140004858374596,-0.584514558315277,0.762891829013824,0.280586719512939,-0.58246636390686,0.837985455989838,0.289520442485809,-0.462556123733521,0.710333645343781,0.420643866062164,-0.564344465732574,0.762891829013824,0.280586719512939,-0.58246636390686,0.837985455989838,0.289520442485809,-0.462556123733521,0.909673810005188,0.228168189525604,-0.347034156322479,0.894734799861908,0.262004435062408,-0.361667335033417,0.891657114028931,0.268598169088364,-0.364420682191849,0.909673810005188,0.228168189525604,-0.347034156322479,0.917923450469971,0.267448574304581,-0.293066024780273,0.739273846149445,0.215692207217216,-0.637926936149597,0.685882747173309,0.332406520843506,-0.647356629371643, +0.708160758018494,0.15965561568737,-0.687763214111328,0.685882747173309,0.332406520843506,-0.647356629371643,0.667080223560333,0.222292840480804,-0.711048305034637,0.708160758018494,0.15965561568737,-0.687763214111328,0.685882747173309,0.332406520843506,-0.647356629371643,0.633481800556183,0.436277270317078,-0.63903272151947,0.667080223560333,0.222292840480804,-0.711048305034637,0.917923450469971,0.267448574304581,-0.293066024780273,0.936560332775116,0.273577868938446,-0.219111517071724,0.936277270317078,0.275207757949829,-0.218278303742409,0.928223192691803,0.333352506160736,-0.165159448981285,0.955602049827576,0.273886829614639,-0.108675494790077,0.936277270317078,0.275207757949829,-0.218278303742409,0.922585725784302,0.336864858865738,0.188035979866982,0.912087261676788,0.380207121372223,0.153424337506294,0.916411459445953,0.341288596391678,0.209074392914772,0.965351939201355,0.257244408130646,0.0438268966972828,0.948429107666016,0.3167984187603,-0.0109937144443393,0.947661101818085,0.315704673528671,0.0476325340569019,0.950139701366425,0.286648601293564,0.122747629880905,0.958120167255402,0.275686025619507,0.0774766206741333,0.935384094715118,0.338894844055176,0.101029090583324,0.922585725784302,0.336864858865738,0.188035979866982,0.950139701366425,0.286648601293564,0.122747629880905,0.912087261676788,0.380207121372223,0.153424337506294,0.958120167255402,0.275686025619507,0.0774766206741333,0.965351939201355,0.257244408130646,0.0438268966972828,0.947661101818085,0.315704673528671,0.0476325340569019,0.955602049827576,0.273886829614639,-0.108675494790077,0.948429107666016,0.3167984187603,-0.0109937144443393,0.964375019073486,0.264381885528564,-0.00910388771444559,0.121761463582516,0.331944763660431,-0.935407280921936,0.04253239184618,0.202057793736458,-0.978449583053589,0.0848776325583458,0.17894259095192,-0.98019140958786,0.0649104043841362,0.229387789964676,-0.971168279647827,0.0838188976049423,0.257847100496292,-0.962543070316315,0.0848776325583458,0.17894259095192,-0.98019140958786,-0.0495673604309559,0.272293299436569,-0.960936665534973, +0.04253239184618,0.202057793736458,-0.978449583053589,0.152145087718964,0.474608540534973,-0.866947770118713,0.152145087718964,0.474608540534973,-0.866947770118713,0.0778785347938538,0.588299930095673,-0.80488383769989,-0.0495673604309559,0.272293299436569,-0.960936665534973,0.143575578927994,0.289589941501617,-0.946321070194244,0.106907777488232,0.216274216771126,-0.970461785793304,0.0649104043841362,0.229387789964676,-0.971168279647827,0.136618047952652,0.774695038795471,-0.617400228977203,0.0826859623193741,0.662885308265686,-0.744141101837158,0.181748658418655,0.79487407207489,-0.578914880752563,0.136618047952652,0.774695038795471,-0.617400228977203,0.203570827841759,0.861729145050049,-0.46473827958107,0.162770837545395,0.821651101112366,-0.54625540971756,0.181748658418655,0.79487407207489,-0.578914880752563,0.0826859623193741,0.662885308265686,-0.744141101837158,0.0778785347938538,0.588299930095673,-0.80488383769989,0.164135918021202,0.863458931446075,-0.476967543363571,0.177875220775604,0.89197963476181,-0.415611118078232,0.18874517083168,0.856211006641388,-0.480913549661636,0.162770837545395,0.821651101112366,-0.54625540971756,0.203570827841759,0.861729145050049,-0.46473827958107,0.164135918021202,0.863458931446075,-0.476967543363571,0.542654573917389,0.272398322820663,0.794559717178345,0.559991896152496,0.36646431684494,0.743043005466461,0.607167780399323,0.317308634519577,0.728465855121613,0.542654573917389,0.272398322820663,0.794559717178345,0.553564071655273,0.276019543409348,0.785735189914703,0.493134558200836,0.24052806198597,0.836040914058685,0.617282211780548,0.173633053898811,-0.767342209815979,0.511120140552521,0.119057431817055,-0.851223468780518,0.40890896320343,0.342148125171661,-0.84600704908371,0.149515479803085,-0.740156173706055,-0.655601859092712,0.244423002004623,-0.841068923473358,-0.482556045055389,0.426807701587677,-0.678182721138,-0.598250150680542,0.149515479803085,-0.740156173706055,-0.655601859092712,0.355733543634415,-0.596070826053619,-0.719828486442566,0.164650022983551,-0.634159922599792,-0.755467653274536, +0.494931280612946,-0.767264723777771,-0.407857537269592,0.244423002004623,-0.841068923473358,-0.482556045055389,0.337986916303635,-0.882941246032715,-0.325851857662201,0.36668136715889,-0.892468750476837,-0.262762635946274,0.487301677465439,-0.848087251186371,-0.20805037021637,0.337986916303635,-0.882941246032715,-0.325851857662201,0.516699492931366,-0.855448722839355,0.035056184977293,0.530758082866669,-0.818294703960419,0.220656856894493,0.601786494255066,-0.79809558391571,-0.0299383606761694,0.516699492931366,-0.855448722839355,0.035056184977293,0.487301677465439,-0.848087251186371,-0.20805037021637,0.522289872169495,-0.85145366191864,0.0473265424370766,0.556175708770752,-0.70457398891449,0.440731257200241,0.666962385177612,-0.71293306350708,0.216535434126854,0.530758082866669,-0.818294703960419,0.220656856894493,0.784700036048889,-0.538433492183685,0.307140082120895,0.682703614234924,-0.576641798019409,0.448775947093964,0.708737969398499,-0.482795566320419,0.514391601085663,0.731749832630157,-0.632035911083221,0.255093365907669,0.687695980072021,-0.656984508037567,0.308942437171936,0.682703614234924,-0.576641798019409,0.448775947093964,0.687695980072021,-0.656984508037567,0.308942437171936,0.731749832630157,-0.632035911083221,0.255093365907669,0.64431756734848,-0.689297795295715,0.331245213747025,0.64431756734848,-0.689297795295715,0.331245213747025,0.666962385177612,-0.71293306350708,0.216535434126854,0.556175708770752,-0.70457398891449,0.440731257200241,0.617282211780548,0.173633053898811,-0.767342209815979,0.40890896320343,0.342148125171661,-0.84600704908371,0.505793154239655,0.384800732135773,-0.772076189517975,0.0301485899835825,-0.493368983268738,-0.869297385215759,-0.0248777829110622,-0.621613740921021,-0.782928705215454,0.164650022983551,-0.634159922599792,-0.755467653274536,0.0897961109876633,-0.146291196346283,-0.985157549381256,-0.162020012736321,-0.159517049789429,-0.973808765411377,-0.0628684610128403,-0.272429794073105,-0.960119545459747,-0.0628684610128403,-0.272429794073105,-0.960119545459747,-0.139718279242516,-0.39313742518425,-0.908802330493927, +0.0821164399385452,-0.31206414103508,-0.946505546569824,0.100269921123981,-0.0844811499118805,-0.991367161273956,0.172302812337875,-0.043754730373621,-0.984071612358093,0.0971559286117554,-0.0780447944998741,-0.992204427719116,0.100269921123981,-0.0844811499118805,-0.991367161273956,0.0971559286117554,-0.0780447944998741,-0.992204427719116,-0.0464253909885883,-0.0177971906960011,-0.998763144016266,-0.162020012736321,-0.159517049789429,-0.973808765411377,0.0897961109876633,-0.146291196346283,-0.985157549381256,-0.0464253909885883,-0.0177971906960011,-0.998763144016266,0.340776652097702,0.30246701836586,-0.890160024166107,0.261965990066528,0.152279168367386,-0.952987313270569,0.262878566980362,0.120890721678734,-0.957225263118744,0.147569701075554,-0.000976193405222148,-0.989051163196564,0.172302812337875,-0.043754730373621,-0.984071612358093,0.262878566980362,0.120890721678734,-0.957225263118744,-0.169506415724754,-0.429722487926483,-0.886908113956451,0.0301485899835825,-0.493368983268738,-0.869297385215759,-0.139718279242516,-0.39313742518425,-0.908802330493927,0.505793154239655,0.384800732135773,-0.772076189517975,0.345514863729477,0.525563299655914,-0.777433395385742,0.412690252065659,0.472777843475342,-0.778567731380463,0.340776652097702,0.30246701836586,-0.890160024166107,0.412690252065659,0.472777843475342,-0.778567731380463,0.353032261133194,0.342647433280945,-0.8706094622612,-0.0406639948487282,0.0752765312790871,-0.996333062648773,-0.065084807574749,0.13703216612339,-0.988426089286804,-0.0545725673437119,0.00571138085797429,-0.998493432998657,0.0731660723686218,0.118299081921577,-0.990278720855713,0.139265075325966,0.123749129474163,-0.982492387294769,0.0736406296491623,0.08783920109272,-0.993408918380737,0.160386800765991,0.119376562535763,-0.979808747768402,0.139265075325966,0.123749129474163,-0.982492387294769,0.0731660723686218,0.118299081921577,-0.990278720855713,0.0838117673993111,0.0208169054239988,-0.996264100074768,0.0474197342991829,-0.0293086655437946,-0.99844491481781,0.0736406296491623,0.08783920109272,-0.993408918380737, +0.0156728252768517,0.000189313519513235,-0.999877095222473,0.044995691627264,-0.0241701323539019,-0.998694658279419,-0.0545725673437119,0.00571138085797429,-0.998493432998657,0.0838117673993111,0.0208169054239988,-0.996264100074768,0.0129480706527829,-0.0121295489370823,-0.999842584133148,0.0474197342991829,-0.0293086655437946,-0.99844491481781,0.297147065401077,0.015678521245718,-0.954702913761139,0.255897760391235,0.112360894680023,-0.960151672363281,0.190568685531616,0.0763716027140617,-0.978698551654816,0.0739101842045784,0.0797760784626007,-0.994068920612335,0.190568685531616,0.0763716027140617,-0.978698551654816,0.160386800765991,0.119376562535763,-0.979808747768402,0.297147065401077,0.015678521245718,-0.954702913761139,0.318997502326965,0.107737250626087,-0.941612005233765,0.255897760391235,0.112360894680023,-0.960151672363281,0.33561897277832,0.224414631724358,-0.914875864982605,0.358216822147369,0.124542906880379,-0.925294399261475,0.318997502326965,0.107737250626087,-0.941612005233765,0.40890896320343,0.342148125171661,-0.84600704908371,0.511120140552521,0.119057431817055,-0.851223468780518,0.361366480588913,0.235945641994476,-0.902077496051788,0.361366480588913,0.235945641994476,-0.902077496051788,0.358216822147369,0.124542906880379,-0.925294399261475,0.33561897277832,0.224414631724358,-0.914875864982605,0.883780181407928,0.361842602491379,0.296652019023895,0.910597443580627,0.292797386646271,0.291687518358231,0.922585725784302,0.336864858865738,0.188035979866982,0.843336403369904,0.252286821603775,0.474483907222748,0.806485414505005,0.321909755468369,0.495938867330551,0.784720003604889,0.301513493061066,0.54157543182373,0.843336403369904,0.252286821603775,0.474483907222748,0.870677351951599,0.217383936047554,0.44120866060257,0.850906789302826,0.298642873764038,0.432168900966644,0.870512008666992,0.299750715494156,0.390330940485001,0.850906789302826,0.298642873764038,0.432168900966644,0.870677351951599,0.217383936047554,0.44120866060257,0.883780181407928,0.361842602491379,0.296652019023895,0.870512008666992,0.299750715494156,0.390330940485001, +0.910597443580627,0.292797386646271,0.291687518358231,0.763501346111298,0.329893290996552,0.555190026760101,0.749587714672089,0.367915332317352,0.550233006477356,0.761577963829041,0.34649270772934,0.547669291496277,0.784720003604889,0.301513493061066,0.54157543182373,0.806485414505005,0.321909755468369,0.495938867330551,0.763501346111298,0.329893290996552,0.555190026760101,0.703035593032837,0.393059313297272,0.592659294605255,0.708569884300232,0.368432134389877,0.601819276809692,0.761577963829041,0.34649270772934,0.547669291496277,0.559991896152496,0.36646431684494,0.743043005466461,0.571103870868683,0.416428744792938,0.707408845424652,0.641480684280396,0.401402533054352,0.653741776943207,0.63392037153244,0.414525747299194,0.652926623821259,0.708569884300232,0.368432134389877,0.601819276809692,0.641480684280396,0.401402533054352,0.653741776943207,0.327561497688293,0.320663243532181,-0.888751029968262,0.22489957511425,0.187983348965645,-0.956076502799988,0.143575578927994,0.289589941501617,-0.946321070194244,0.22489957511425,0.187983348965645,-0.956076502799988,0.369782328605652,0.206738889217377,-0.905825555324554,0.33671846985817,0.171145498752594,-0.925921082496643,0.607593297958374,0.47446271777153,-0.636957883834839,0.58404266834259,0.456133633852005,-0.671443283557892,0.633481800556183,0.436277270317078,-0.63903272151947,0.523703455924988,0.342241853475571,-0.7801313996315,0.58404266834259,0.456133633852005,-0.671443283557892,0.555873215198517,0.368926882743835,-0.744914591312408,0.523703455924988,0.342241853475571,-0.7801313996315,0.497952431440353,0.315715730190277,-0.807692289352417,0.587847232818604,0.368692338466644,-0.720070421695709,0.497952431440353,0.315715730190277,-0.807692289352417,0.53249055147171,0.306555867195129,-0.788972198963165,0.587847232818604,0.368692338466644,-0.720070421695709,0.436026513576508,0.302754998207092,-0.847478687763214,0.53249055147171,0.306555867195129,-0.788972198963165,0.497952431440353,0.315715730190277,-0.807692289352417,0.347736716270447,0.335616379976273,-0.875465989112854, +0.436026513576508,0.302754998207092,-0.847478687763214,0.388575345277786,0.333850532770157,-0.858808994293213,0.358864098787308,0.253308922052383,-0.898360192775726,0.347736716270447,0.335616379976273,-0.875465989112854,0.366000831127167,0.344901502132416,-0.864341497421265,0.33659291267395,0.281719535589218,-0.898520529270172,0.33671846985817,0.171145498752594,-0.925921082496643,0.358864098787308,0.253308922052383,-0.898360192775726,0.762891829013824,0.280586719512939,-0.58246636390686,0.699920833110809,0.380121678113937,-0.604663789272308,0.739273846149445,0.215692207217216,-0.637926936149597,0.710333645343781,0.420643866062164,-0.564344465732574,0.837985455989838,0.289520442485809,-0.462556123733521,0.771402835845947,0.410352289676666,-0.486362516880035,0.762891829013824,0.280586719512939,-0.58246636390686,0.710333645343781,0.420643866062164,-0.564344465732574,0.699920833110809,0.380121678113937,-0.604663789272308,0.891657114028931,0.268598169088364,-0.364420682191849,0.894734799861908,0.262004435062408,-0.361667335033417,0.909673810005188,0.228168189525604,-0.347034156322479,0.837985455989838,0.289520442485809,-0.462556123733521,0.894734799861908,0.262004435062408,-0.361667335033417,0.86800092458725,0.325423747301102,-0.375064879655838,0.887998282909393,0.287774592638016,-0.358670860528946,0.891657114028931,0.268598169088364,-0.364420682191849,0.917923450469971,0.267448574304581,-0.293066024780273,0.685882747173309,0.332406520843506,-0.647356629371643,0.739273846149445,0.215692207217216,-0.637926936149597,0.699920833110809,0.380121678113937,-0.604663789272308,0.685882747173309,0.332406520843506,-0.647356629371643,0.671866059303284,0.464301317930222,-0.577078938484192,0.633481800556183,0.436277270317078,-0.63903272151947,0.931140184402466,0.245408087968826,-0.26972708106041,0.917923450469971,0.267448574304581,-0.293066024780273,0.936277270317078,0.275207757949829,-0.218278303742409,0.936277270317078,0.275207757949829,-0.218278303742409,0.955602049827576,0.273886829614639,-0.108675494790077,0.970907866954803,0.193164378404617,-0.14151106774807, +0.965351939201355,0.257244408130646,0.0438268966972828,0.964375019073486,0.264381885528564,-0.00910388771444559,0.948429107666016,0.3167984187603,-0.0109937144443393,0.969276309013367,0.228459730744362,0.0911562889814377,0.958120167255402,0.275686025619507,0.0774766206741333,0.950139701366425,0.286648601293564,0.122747629880905,0.922585725784302,0.336864858865738,0.188035979866982,0.948426246643066,0.221471413969994,0.22679939866066,0.950139701366425,0.286648601293564,0.122747629880905,0.97255802154541,0.224527284502983,0.0609781667590141,0.965351939201355,0.257244408130646,0.0438268966972828,0.958120167255402,0.275686025619507,0.0774766206741333,0.955602049827576,0.273886829614639,-0.108675494790077,0.964375019073486,0.264381885528564,-0.00910388771444559,0.976376712322235,0.215474814176559,-0.0160874053835869,0.152145087718964,0.474608540534973,-0.866947770118713,0.04253239184618,0.202057793736458,-0.978449583053589,0.121761463582516,0.331944763660431,-0.935407280921936,0.0838188976049423,0.257847100496292,-0.962543070316315,0.121761463582516,0.331944763660431,-0.935407280921936,0.0848776325583458,0.17894259095192,-0.98019140958786,0.0649104043841362,0.229387789964676,-0.971168279647827,0.106907777488232,0.216274216771126,-0.970461785793304,0.0838188976049423,0.257847100496292,-0.962543070316315,0.152145087718964,0.474608540534973,-0.866947770118713,0.22637777030468,0.735772490501404,-0.638272523880005,0.0778785347938538,0.588299930095673,-0.80488383769989,0.143575578927994,0.289589941501617,-0.946321070194244,0.22489957511425,0.187983348965645,-0.956076502799988,0.106907777488232,0.216274216771126,-0.970461785793304,0.203570827841759,0.861729145050049,-0.46473827958107,0.136618047952652,0.774695038795471,-0.617400228977203,0.181748658418655,0.79487407207489,-0.578914880752563,0.22637777030468,0.735772490501404,-0.638272523880005,0.181748658418655,0.79487407207489,-0.578914880752563,0.0778785347938538,0.588299930095673,-0.80488383769989,0.177875220775604,0.89197963476181,-0.415611118078232,0.164135918021202,0.863458931446075,-0.476967543363571, +0.203570827841759,0.861729145050049,-0.46473827958107,0.542654573917389,0.272398322820663,0.794559717178345,0.555406212806702,0.41238921880722,0.722121119499207,0.559991896152496,0.36646431684494,0.743043005466461,0.149515479803085,-0.740156173706055,-0.655601859092712,0.0850949957966805,-0.777607321739197,-0.622965097427368,0.244423002004623,-0.841068923473358,-0.482556045055389,0.164650022983551,-0.634159922599792,-0.755467653274536,-0.0248777829110622,-0.621613740921021,-0.782928705215454,0.149515479803085,-0.740156173706055,-0.655601859092712,0.240089043974876,-0.863093554973602,-0.444327175617218,0.337986916303635,-0.882941246032715,-0.325851857662201,0.244423002004623,-0.841068923473358,-0.482556045055389,0.36668136715889,-0.892468750476837,-0.262762635946274,0.470776528120041,-0.875699818134308,-0.107327409088612,0.487301677465439,-0.848087251186371,-0.20805037021637,0.240089043974876,-0.863093554973602,-0.444327175617218,0.36668136715889,-0.892468750476837,-0.262762635946274,0.337986916303635,-0.882941246032715,-0.325851857662201,0.530758082866669,-0.818294703960419,0.220656856894493,0.516699492931366,-0.855448722839355,0.035056184977293,0.565938830375671,-0.77903938293457,0.269834518432617,0.470776528120041,-0.875699818134308,-0.107327409088612,0.522289872169495,-0.85145366191864,0.0473265424370766,0.487301677465439,-0.848087251186371,-0.20805037021637,0.516699492931366,-0.855448722839355,0.035056184977293,0.522289872169495,-0.85145366191864,0.0473265424370766,0.565938830375671,-0.77903938293457,0.269834518432617,0.530758082866669,-0.818294703960419,0.220656856894493,0.565938830375671,-0.77903938293457,0.269834518432617,0.556175708770752,-0.70457398891449,0.440731257200241,0.682703614234924,-0.576641798019409,0.448775947093964,0.65393477678299,-0.505401253700256,0.562973082065582,0.708737969398499,-0.482795566320419,0.514391601085663,0.668352842330933,-0.599119424819946,0.440863072872162,0.682703614234924,-0.576641798019409,0.448775947093964,0.687695980072021,-0.656984508037567,0.308942437171936,0.644152045249939,-0.60375052690506,0.46963095664978, +0.687695980072021,-0.656984508037567,0.308942437171936,0.64431756734848,-0.689297795295715,0.331245213747025,0.644152045249939,-0.60375052690506,0.46963095664978,0.64431756734848,-0.689297795295715,0.331245213747025,0.556175708770752,-0.70457398891449,0.440731257200241,0.505793154239655,0.384800732135773,-0.772076189517975,0.40890896320343,0.342148125171661,-0.84600704908371,0.345514863729477,0.525563299655914,-0.777433395385742,0.0301485899835825,-0.493368983268738,-0.869297385215759,-0.169506415724754,-0.429722487926483,-0.886908113956451,-0.0248777829110622,-0.621613740921021,-0.782928705215454,-0.227206453680992,-0.267461210489273,-0.936398208141327,-0.0628684610128403,-0.272429794073105,-0.960119545459747,-0.162020012736321,-0.159517049789429,-0.973808765411377,-0.0628684610128403,-0.272429794073105,-0.960119545459747,-0.227206453680992,-0.267461210489273,-0.936398208141327,-0.139718279242516,-0.39313742518425,-0.908802330493927,0.172302812337875,-0.043754730373621,-0.984071612358093,0.147569701075554,-0.000976193405222148,-0.989051163196564,0.0971559286117554,-0.0780447944998741,-0.992204427719116,0.0971559286117554,-0.0780447944998741,-0.992204427719116,0.147569701075554,-0.000976193405222148,-0.989051163196564,-0.0464253909885883,-0.0177971906960011,-0.998763144016266,0.340776652097702,0.30246701836586,-0.890160024166107,0.353032261133194,0.342647433280945,-0.8706094622612,0.261965990066528,0.152279168367386,-0.952987313270569,0.262878566980362,0.120890721678734,-0.957225263118744,0.261965990066528,0.152279168367386,-0.952987313270569,0.147569701075554,-0.000976193405222148,-0.989051163196564,-0.169506415724754,-0.429722487926483,-0.886908113956451,-0.139718279242516,-0.39313742518425,-0.908802330493927,-0.249498888850212,-0.332389116287231,-0.909542560577393,0.412690252065659,0.472777843475342,-0.778567731380463,0.345514863729477,0.525563299655914,-0.777433395385742,0.440146207809448,0.465788722038269,-0.767666697502136,0.353032261133194,0.342647433280945,-0.8706094622612,0.412690252065659,0.472777843475342,-0.778567731380463, +0.440146207809448,0.465788722038269,-0.767666697502136,-0.0210398137569427,0.121082112193108,-0.992419421672821,0.0731660723686218,0.118299081921577,-0.990278720855713,0.0736406296491623,0.08783920109272,-0.993408918380737,0.0439264737069607,0.112109005451202,-0.992724478244781,0.160386800765991,0.119376562535763,-0.979808747768402,0.0731660723686218,0.118299081921577,-0.990278720855713,0.0736406296491623,0.08783920109272,-0.993408918380737,0.0474197342991829,-0.0293086655437946,-0.99844491481781,-0.0489822737872601,0.090268611907959,-0.994712114334106,0.218245834112167,-0.124917037785053,-0.967865884304047,0.297147065401077,0.015678521245718,-0.954702913761139,0.190568685531616,0.0763716027140617,-0.978698551654816,0.218245834112167,-0.124917037785053,-0.967865884304047,0.190568685531616,0.0763716027140617,-0.978698551654816,0.0739101842045784,0.0797760784626007,-0.994068920612335,0.0439264737069607,0.112109005451202,-0.992724478244781,0.0739101842045784,0.0797760784626007,-0.994068920612335,0.160386800765991,0.119376562535763,-0.979808747768402,0.297147065401077,0.015678521245718,-0.954702913761139,0.457636266946793,-0.0893364697694778,-0.884639978408813,0.318997502326965,0.107737250626087,-0.941612005233765,0.477429211139679,0.204197347164154,-0.854613721370697,0.33561897277832,0.224414631724358,-0.914875864982605,0.318997502326965,0.107737250626087,-0.941612005233765,0.361366480588913,0.235945641994476,-0.902077496051788,0.371345967054367,0.343994438648224,-0.862420916557312,0.40890896320343,0.342148125171661,-0.84600704908371,0.361366480588913,0.235945641994476,-0.902077496051788,0.33561897277832,0.224414631724358,-0.914875864982605,0.371345967054367,0.343994438648224,-0.862420916557312,0.948426246643066,0.221471413969994,0.22679939866066,0.922585725784302,0.336864858865738,0.188035979866982,0.910597443580627,0.292797386646271,0.291687518358231,0.784720003604889,0.301513493061066,0.54157543182373,0.854361593723297,0.204650968313217,0.47768622636795,0.843336403369904,0.252286821603775,0.474483907222748,0.870677351951599,0.217383936047554,0.44120866060257, +0.843336403369904,0.252286821603775,0.474483907222748,0.872225701808929,0.165709510445595,0.460176676511765,0.870677351951599,0.217383936047554,0.44120866060257,0.90795624256134,0.202085420489311,0.367119669914246,0.870512008666992,0.299750715494156,0.390330940485001,0.910597443580627,0.292797386646271,0.291687518358231,0.870512008666992,0.299750715494156,0.390330940485001,0.90795624256134,0.202085420489311,0.367119669914246,0.773546040058136,0.340162873268127,0.534710705280304,0.763501346111298,0.329893290996552,0.555190026760101,0.761577963829041,0.34649270772934,0.547669291496277,0.784720003604889,0.301513493061066,0.54157543182373,0.763501346111298,0.329893290996552,0.555190026760101,0.773546040058136,0.340162873268127,0.534710705280304,0.761577963829041,0.34649270772934,0.547669291496277,0.708569884300232,0.368432134389877,0.601819276809692,0.778798580169678,0.324810206890106,0.536629199981689,0.571103870868683,0.416428744792938,0.707408845424652,0.559991896152496,0.36646431684494,0.743043005466461,0.555406212806702,0.41238921880722,0.722121119499207,0.63392037153244,0.414525747299194,0.652926623821259,0.641480684280396,0.401402533054352,0.653741776943207,0.571103870868683,0.416428744792938,0.707408845424652,0.669234693050385,0.366235554218292,0.646526277065277,0.708569884300232,0.368432134389877,0.601819276809692,0.63392037153244,0.414525747299194,0.652926623821259,0.22489957511425,0.187983348965645,-0.956076502799988,0.33671846985817,0.171145498752594,-0.925921082496643,0.242288306355476,0.223842218518257,-0.944029092788696,0.607593297958374,0.47446271777153,-0.636957883834839,0.555873215198517,0.368926882743835,-0.744914591312408,0.58404266834259,0.456133633852005,-0.671443283557892,0.607593297958374,0.47446271777153,-0.636957883834839,0.633481800556183,0.436277270317078,-0.63903272151947,0.637710392475128,0.50051075220108,-0.585503458976746,0.523703455924988,0.342241853475571,-0.7801313996315,0.555873215198517,0.368926882743835,-0.744914591312408,0.510599792003632,0.27657562494278,-0.81412136554718,0.523703455924988,0.342241853475571,-0.7801313996315, +0.510599792003632,0.27657562494278,-0.81412136554718,0.497952431440353,0.315715730190277,-0.807692289352417,0.497952431440353,0.315715730190277,-0.807692289352417,0.388575345277786,0.333850532770157,-0.858808994293213,0.436026513576508,0.302754998207092,-0.847478687763214,0.347736716270447,0.335616379976273,-0.875465989112854,0.388575345277786,0.333850532770157,-0.858808994293213,0.359573394060135,0.348287522792816,-0.865680456161499,0.347736716270447,0.335616379976273,-0.875465989112854,0.359573394060135,0.348287522792816,-0.865680456161499,0.366000831127167,0.344901502132416,-0.864341497421265,0.33659291267395,0.281719535589218,-0.898520529270172,0.358864098787308,0.253308922052383,-0.898360192775726,0.366000831127167,0.344901502132416,-0.864341497421265,0.242288306355476,0.223842218518257,-0.944029092788696,0.33671846985817,0.171145498752594,-0.925921082496643,0.33659291267395,0.281719535589218,-0.898520529270172,0.771402835845947,0.410352289676666,-0.486362516880035,0.837985455989838,0.289520442485809,-0.462556123733521,0.86800092458725,0.325423747301102,-0.375064879655838,0.771402835845947,0.410352289676666,-0.486362516880035,0.697812139987946,0.433199554681778,-0.570435047149658,0.710333645343781,0.420643866062164,-0.564344465732574,0.699920833110809,0.380121678113937,-0.604663789272308,0.710333645343781,0.420643866062164,-0.564344465732574,0.691265463829041,0.427413940429688,-0.582639873027802,0.891657114028931,0.268598169088364,-0.364420682191849,0.897370278835297,0.26993316411972,-0.349088162183762,0.894734799861908,0.262004435062408,-0.361667335033417,0.897370278835297,0.26993316411972,-0.349088162183762,0.86800092458725,0.325423747301102,-0.375064879655838,0.894734799861908,0.262004435062408,-0.361667335033417,0.887998282909393,0.287774592638016,-0.358670860528946,0.897370278835297,0.26993316411972,-0.349088162183762,0.891657114028931,0.268598169088364,-0.364420682191849,0.887998282909393,0.287774592638016,-0.358670860528946,0.917923450469971,0.267448574304581,-0.293066024780273,0.931140184402466,0.245408087968826,-0.26972708106041, +0.685882747173309,0.332406520843506,-0.647356629371643,0.699920833110809,0.380121678113937,-0.604663789272308,0.671866059303284,0.464301317930222,-0.577078938484192,0.637710392475128,0.50051075220108,-0.585503458976746,0.633481800556183,0.436277270317078,-0.63903272151947,0.671866059303284,0.464301317930222,-0.577078938484192,0.931140184402466,0.245408087968826,-0.26972708106041,0.936277270317078,0.275207757949829,-0.218278303742409,0.961071252822876,0.207367151975632,-0.182594686746597,0.970907866954803,0.193164378404617,-0.14151106774807,0.955602049827576,0.273886829614639,-0.108675494790077,0.976376712322235,0.215474814176559,-0.0160874053835869,0.936277270317078,0.275207757949829,-0.218278303742409,0.970907866954803,0.193164378404617,-0.14151106774807,0.961071252822876,0.207367151975632,-0.182594686746597,0.964375019073486,0.264381885528564,-0.00910388771444559,0.965351939201355,0.257244408130646,0.0438268966972828,0.976376712322235,0.215474814176559,-0.0160874053835869,0.97255802154541,0.224527284502983,0.0609781667590141,0.958120167255402,0.275686025619507,0.0774766206741333,0.969276309013367,0.228459730744362,0.0911562889814377,0.969276309013367,0.228459730744362,0.0911562889814377,0.950139701366425,0.286648601293564,0.122747629880905,0.973626673221588,0.179880559444427,0.14033542573452,0.948426246643066,0.221471413969994,0.22679939866066,0.973626673221588,0.179880559444427,0.14033542573452,0.950139701366425,0.286648601293564,0.122747629880905,0.981844305992126,0.181633621454239,0.0546889714896679,0.965351939201355,0.257244408130646,0.0438268966972828,0.97255802154541,0.224527284502983,0.0609781667590141,0.152145087718964,0.474608540534973,-0.866947770118713,0.121761463582516,0.331944763660431,-0.935407280921936,0.269202947616577,0.557295978069305,-0.785462141036987,0.0838188976049423,0.257847100496292,-0.962543070316315,0.183836162090302,0.439933776855469,-0.879012167453766,0.121761463582516,0.331944763660431,-0.935407280921936,0.106907777488232,0.216274216771126,-0.970461785793304,0.219726875424385,0.344057351350784,-0.912877023220062, +0.0838188976049423,0.257847100496292,-0.962543070316315,0.339066058397293,0.668750703334808,-0.661669492721558,0.22637777030468,0.735772490501404,-0.638272523880005,0.152145087718964,0.474608540534973,-0.866947770118713,0.22489957511425,0.187983348965645,-0.956076502799988,0.242288306355476,0.223842218518257,-0.944029092788696,0.106907777488232,0.216274216771126,-0.970461785793304,0.181748658418655,0.79487407207489,-0.578914880752563,0.270023584365845,0.811131238937378,-0.518799781799316,0.203570827841759,0.861729145050049,-0.46473827958107,0.181748658418655,0.79487407207489,-0.578914880752563,0.22637777030468,0.735772490501404,-0.638272523880005,0.270023584365845,0.811131238937378,-0.518799781799316,0.203570827841759,0.861729145050049,-0.46473827958107,0.250257730484009,0.838468015193939,-0.484089136123657,0.177875220775604,0.89197963476181,-0.415611118078232,0.555406212806702,0.41238921880722,0.722121119499207,0.542654573917389,0.272398322820663,0.794559717178345,0.535521686077118,0.372111052274704,0.758122503757477,0.149515479803085,-0.740156173706055,-0.655601859092712,0.0128011349588633,-0.717793464660645,-0.696138381958008,0.0850949957966805,-0.777607321739197,-0.622965097427368,0.112541332840919,-0.788459002971649,-0.604703783988953,0.244423002004623,-0.841068923473358,-0.482556045055389,0.0850949957966805,-0.777607321739197,-0.622965097427368,0.149515479803085,-0.740156173706055,-0.655601859092712,-0.0248777829110622,-0.621613740921021,-0.782928705215454,0.0128011349588633,-0.717793464660645,-0.696138381958008,0.112541332840919,-0.788459002971649,-0.604703783988953,0.240089043974876,-0.863093554973602,-0.444327175617218,0.244423002004623,-0.841068923473358,-0.482556045055389,0.36668136715889,-0.892468750476837,-0.262762635946274,0.409013837575912,-0.890897452831268,-0.197507962584496,0.470776528120041,-0.875699818134308,-0.107327409088612,0.36668136715889,-0.892468750476837,-0.262762635946274,0.240089043974876,-0.863093554973602,-0.444327175617218,0.299952745437622,-0.86386775970459,-0.40467357635498,0.522289872169495,-0.85145366191864,0.0473265424370766, +0.470776528120041,-0.875699818134308,-0.107327409088612,0.526243984699249,-0.850333571434021,-0.000297173828585073,0.522289872169495,-0.85145366191864,0.0473265424370766,0.557894647121429,-0.799803376197815,0.22151292860508,0.565938830375671,-0.77903938293457,0.269834518432617,0.599846720695496,-0.609075307846069,0.518855452537537,0.556175708770752,-0.70457398891449,0.440731257200241,0.565938830375671,-0.77903938293457,0.269834518432617,0.682703614234924,-0.576641798019409,0.448775947093964,0.648677468299866,-0.539435088634491,0.53686785697937,0.65393477678299,-0.505401253700256,0.562973082065582,0.65393477678299,-0.505401253700256,0.562973082065582,0.66311103105545,-0.504856824874878,0.552632927894592,0.708737969398499,-0.482795566320419,0.514391601085663,0.648677468299866,-0.539435088634491,0.53686785697937,0.682703614234924,-0.576641798019409,0.448775947093964,0.668352842330933,-0.599119424819946,0.440863072872162,0.644152045249939,-0.60375052690506,0.46963095664978,0.668352842330933,-0.599119424819946,0.440863072872162,0.687695980072021,-0.656984508037567,0.308942437171936,0.556175708770752,-0.70457398891449,0.440731257200241,0.599846720695496,-0.609075307846069,0.518855452537537,0.644152045249939,-0.60375052690506,0.46963095664978,0.345514863729477,0.525563299655914,-0.777433395385742,0.40890896320343,0.342148125171661,-0.84600704908371,0.431339740753174,0.421047925949097,-0.79791259765625,-0.138186410069466,-0.47278356552124,-0.870275735855103,-0.0248777829110622,-0.621613740921021,-0.782928705215454,-0.169506415724754,-0.429722487926483,-0.886908113956451,-0.227206453680992,-0.267461210489273,-0.936398208141327,-0.249498888850212,-0.332389116287231,-0.909542560577393,-0.139718279242516,-0.39313742518425,-0.908802330493927,0.147569701075554,-0.000976193405222148,-0.989051163196564,0.0507610365748405,0.111418075859547,-0.992476284503937,-0.0464253909885883,-0.0177971906960011,-0.998763144016266,0.261965990066528,0.152279168367386,-0.952987313270569,0.353032261133194,0.342647433280945,-0.8706094622612,0.504961431026459,0.220563352108002,-0.834485232830048, +0.0507610365748405,0.111418075859547,-0.992476284503937,0.147569701075554,-0.000976193405222148,-0.989051163196564,0.261965990066528,0.152279168367386,-0.952987313270569,-0.169506415724754,-0.429722487926483,-0.886908113956451,-0.249498888850212,-0.332389116287231,-0.909542560577393,-0.281331807374954,-0.294681221246719,-0.913244366645813,0.440146207809448,0.465788722038269,-0.767666697502136,0.345514863729477,0.525563299655914,-0.777433395385742,0.374261498451233,0.535053253173828,-0.757394433021545,0.440146207809448,0.465788722038269,-0.767666697502136,0.504961431026459,0.220563352108002,-0.834485232830048,0.353032261133194,0.342647433280945,-0.8706094622612,-0.0210398137569427,0.121082112193108,-0.992419421672821,0.0439264737069607,0.112109005451202,-0.992724478244781,0.0731660723686218,0.118299081921577,-0.990278720855713,0.0736406296491623,0.08783920109272,-0.993408918380737,-0.0489822737872601,0.090268611907959,-0.994712114334106,-0.0210398137569427,0.121082112193108,-0.992419421672821,0.218245834112167,-0.124917037785053,-0.967865884304047,0.408947139978409,-0.257768362760544,-0.875395715236664,0.297147065401077,0.015678521245718,-0.954702913761139,0.0739101842045784,0.0797760784626007,-0.994068920612335,0.0340926609933376,-0.221313118934631,-0.97460663318634,0.218245834112167,-0.124917037785053,-0.967865884304047,-0.0665111914277077,0.0824390277266502,-0.99437415599823,0.0739101842045784,0.0797760784626007,-0.994068920612335,0.0439264737069607,0.112109005451202,-0.992724478244781,0.408947139978409,-0.257768362760544,-0.875395715236664,0.457636266946793,-0.0893364697694778,-0.884639978408813,0.297147065401077,0.015678521245718,-0.954702913761139,0.477429211139679,0.204197347164154,-0.854613721370697,0.318997502326965,0.107737250626087,-0.941612005233765,0.457636266946793,-0.0893364697694778,-0.884639978408813,0.371345967054367,0.343994438648224,-0.862420916557312,0.33561897277832,0.224414631724358,-0.914875864982605,0.477429211139679,0.204197347164154,-0.854613721370697,0.431339740753174,0.421047925949097,-0.79791259765625, +0.40890896320343,0.342148125171661,-0.84600704908371,0.371345967054367,0.343994438648224,-0.862420916557312,0.90795624256134,0.202085420489311,0.367119669914246,0.948426246643066,0.221471413969994,0.22679939866066,0.910597443580627,0.292797386646271,0.291687518358231,0.784720003604889,0.301513493061066,0.54157543182373,0.800685405731201,0.30741810798645,0.514195382595062,0.854361593723297,0.204650968313217,0.47768622636795,0.854361593723297,0.204650968313217,0.47768622636795,0.872225701808929,0.165709510445595,0.460176676511765,0.843336403369904,0.252286821603775,0.474483907222748,0.872225701808929,0.165709510445595,0.460176676511765,0.886870861053467,0.135917350649834,0.441572785377502,0.870677351951599,0.217383936047554,0.44120866060257,0.870677351951599,0.217383936047554,0.44120866060257,0.886870861053467,0.135917350649834,0.441572785377502,0.90795624256134,0.202085420489311,0.367119669914246,0.761577963829041,0.34649270772934,0.547669291496277,0.778798580169678,0.324810206890106,0.536629199981689,0.773546040058136,0.340162873268127,0.534710705280304,0.784720003604889,0.301513493061066,0.54157543182373,0.773546040058136,0.340162873268127,0.534710705280304,0.800685405731201,0.30741810798645,0.514195382595062,0.778798580169678,0.324810206890106,0.536629199981689,0.708569884300232,0.368432134389877,0.601819276809692,0.739053726196289,0.264920741319656,0.619367778301239,0.571103870868683,0.416428744792938,0.707408845424652,0.555406212806702,0.41238921880722,0.722121119499207,0.605153143405914,0.463575780391693,0.647214770317078,0.63392037153244,0.414525747299194,0.652926623821259,0.571103870868683,0.416428744792938,0.707408845424652,0.605153143405914,0.463575780391693,0.647214770317078,0.669234693050385,0.366235554218292,0.646526277065277,0.739053726196289,0.264920741319656,0.619367778301239,0.708569884300232,0.368432134389877,0.601819276809692,0.63392037153244,0.414525747299194,0.652926623821259,0.639084815979004,0.423402488231659,0.642106473445892,0.669234693050385,0.366235554218292,0.646526277065277,0.555873215198517,0.368926882743835,-0.744914591312408, +0.607593297958374,0.47446271777153,-0.636957883834839,0.650932610034943,0.378550916910172,-0.658016562461853,0.607593297958374,0.47446271777153,-0.636957883834839,0.637710392475128,0.50051075220108,-0.585503458976746,0.671906113624573,0.446679800748825,-0.590778410434723,0.510599792003632,0.27657562494278,-0.81412136554718,0.555873215198517,0.368926882743835,-0.744914591312408,0.512019097805023,0.272309094667435,-0.81466805934906,0.510599792003632,0.27657562494278,-0.81412136554718,0.511798620223999,0.263270050287247,-0.817771911621094,0.497952431440353,0.315715730190277,-0.807692289352417,0.511798620223999,0.263270050287247,-0.817771911621094,0.388575345277786,0.333850532770157,-0.858808994293213,0.497952431440353,0.315715730190277,-0.807692289352417,0.388575345277786,0.333850532770157,-0.858808994293213,0.366155326366425,0.267721563577652,-0.89121001958847,0.359573394060135,0.348287522792816,-0.865680456161499,0.366000831127167,0.344901502132416,-0.864341497421265,0.359573394060135,0.348287522792816,-0.865680456161499,0.412072211503983,0.379639238119125,-0.828293740749359,0.349381923675537,0.385539501905441,-0.853985667228699,0.33659291267395,0.281719535589218,-0.898520529270172,0.366000831127167,0.344901502132416,-0.864341497421265,0.242288306355476,0.223842218518257,-0.944029092788696,0.33659291267395,0.281719535589218,-0.898520529270172,0.219726875424385,0.344057351350784,-0.912877023220062,0.861816823482513,0.318042099475861,-0.395121425390244,0.771402835845947,0.410352289676666,-0.486362516880035,0.86800092458725,0.325423747301102,-0.375064879655838,0.761413335800171,0.36808642745018,-0.533630907535553,0.697812139987946,0.433199554681778,-0.570435047149658,0.771402835845947,0.410352289676666,-0.486362516880035,0.710333645343781,0.420643866062164,-0.564344465732574,0.697812139987946,0.433199554681778,-0.570435047149658,0.691265463829041,0.427413940429688,-0.582639873027802,0.691265463829041,0.427413940429688,-0.582639873027802,0.671866059303284,0.464301317930222,-0.577078938484192,0.699920833110809,0.380121678113937,-0.604663789272308, +0.86800092458725,0.325423747301102,-0.375064879655838,0.897370278835297,0.26993316411972,-0.349088162183762,0.861816823482513,0.318042099475861,-0.395121425390244,0.887998282909393,0.287774592638016,-0.358670860528946,0.906477034091949,0.20134761929512,-0.371158182621002,0.897370278835297,0.26993316411972,-0.349088162183762,0.887998282909393,0.287774592638016,-0.358670860528946,0.931140184402466,0.245408087968826,-0.26972708106041,0.906477034091949,0.20134761929512,-0.371158182621002,0.671906113624573,0.446679800748825,-0.590778410434723,0.637710392475128,0.50051075220108,-0.585503458976746,0.671866059303284,0.464301317930222,-0.577078938484192,0.963448166847229,0.1454226821661,-0.224987849593163,0.931140184402466,0.245408087968826,-0.26972708106041,0.961071252822876,0.207367151975632,-0.182594686746597,0.976376712322235,0.215474814176559,-0.0160874053835869,0.993613302707672,0.11069293320179,-0.0219001471996307,0.970907866954803,0.193164378404617,-0.14151106774807,0.970907866954803,0.193164378404617,-0.14151106774807,0.963448166847229,0.1454226821661,-0.224987849593163,0.961071252822876,0.207367151975632,-0.182594686746597,0.981844305992126,0.181633621454239,0.0546889714896679,0.976376712322235,0.215474814176559,-0.0160874053835869,0.965351939201355,0.257244408130646,0.0438268966972828,0.969276309013367,0.228459730744362,0.0911562889814377,0.980328619480133,0.175444707274437,0.0904147401452065,0.97255802154541,0.224527284502983,0.0609781667590141,0.969276309013367,0.228459730744362,0.0911562889814377,0.973626673221588,0.179880559444427,0.14033542573452,0.980328619480133,0.175444707274437,0.0904147401452065,0.973626673221588,0.179880559444427,0.14033542573452,0.948426246643066,0.221471413969994,0.22679939866066,0.956243455410004,0.131035283207893,0.261587679386139,0.97255802154541,0.224527284502983,0.0609781667590141,0.980328619480133,0.175444707274437,0.0904147401452065,0.981844305992126,0.181633621454239,0.0546889714896679,0.121761463582516,0.331944763660431,-0.935407280921936,0.183836162090302,0.439933776855469,-0.879012167453766, +0.269202947616577,0.557295978069305,-0.785462141036987,0.339066058397293,0.668750703334808,-0.661669492721558,0.152145087718964,0.474608540534973,-0.866947770118713,0.269202947616577,0.557295978069305,-0.785462141036987,0.0838188976049423,0.257847100496292,-0.962543070316315,0.219726875424385,0.344057351350784,-0.912877023220062,0.183836162090302,0.439933776855469,-0.879012167453766,0.242288306355476,0.223842218518257,-0.944029092788696,0.219726875424385,0.344057351350784,-0.912877023220062,0.106907777488232,0.216274216771126,-0.970461785793304,0.311027824878693,0.751146912574768,-0.582271277904511,0.22637777030468,0.735772490501404,-0.638272523880005,0.339066058397293,0.668750703334808,-0.661669492721558,0.250257730484009,0.838468015193939,-0.484089136123657,0.203570827841759,0.861729145050049,-0.46473827958107,0.270023584365845,0.811131238937378,-0.518799781799316,0.22637777030468,0.735772490501404,-0.638272523880005,0.311027824878693,0.751146912574768,-0.582271277904511,0.270023584365845,0.811131238937378,-0.518799781799316,0.555406212806702,0.41238921880722,0.722121119499207,0.535521686077118,0.372111052274704,0.758122503757477,0.587677597999573,0.503557205200195,0.63329690694809,0.0128011349588633,-0.717793464660645,-0.696138381958008,-0.019886564463377,-0.647708475589752,-0.761628568172455,0.0850949957966805,-0.777607321739197,-0.622965097427368,0.0250987280160189,-0.704292833805084,-0.709465622901917,0.112541332840919,-0.788459002971649,-0.604703783988953,0.0850949957966805,-0.777607321739197,-0.622965097427368,-0.019886564463377,-0.647708475589752,-0.761628568172455,0.0128011349588633,-0.717793464660645,-0.696138381958008,-0.0248777829110622,-0.621613740921021,-0.782928705215454,0.112541332840919,-0.788459002971649,-0.604703783988953,0.0663080662488937,-0.756725311279297,-0.650361359119415,0.240089043974876,-0.863093554973602,-0.444327175617218,0.36668136715889,-0.892468750476837,-0.262762635946274,0.299952745437622,-0.86386775970459,-0.40467357635498,0.409013837575912,-0.890897452831268,-0.197507962584496, +0.470414221286774,-0.881115078926086,-0.0484413765370846,0.470776528120041,-0.875699818134308,-0.107327409088612,0.409013837575912,-0.890897452831268,-0.197507962584496,0.240089043974876,-0.863093554973602,-0.444327175617218,0.151521489024162,-0.7944375872612,-0.588141143321991,0.299952745437622,-0.86386775970459,-0.40467357635498,0.470414221286774,-0.881115078926086,-0.0484413765370846,0.526243984699249,-0.850333571434021,-0.000297173828585073,0.470776528120041,-0.875699818134308,-0.107327409088612,0.575522184371948,-0.799225807189941,0.173240214586258,0.522289872169495,-0.85145366191864,0.0473265424370766,0.526243984699249,-0.850333571434021,-0.000297173828585073,0.522289872169495,-0.85145366191864,0.0473265424370766,0.60975843667984,-0.741111874580383,0.280976563692093,0.557894647121429,-0.799803376197815,0.22151292860508,0.622661352157593,-0.669879138469696,0.404418975114822,0.565938830375671,-0.77903938293457,0.269834518432617,0.557894647121429,-0.799803376197815,0.22151292860508,0.565938830375671,-0.77903938293457,0.269834518432617,0.622661352157593,-0.669879138469696,0.404418975114822,0.599846720695496,-0.609075307846069,0.518855452537537,0.650096714496613,-0.504508197307587,0.568194985389709,0.65393477678299,-0.505401253700256,0.562973082065582,0.648677468299866,-0.539435088634491,0.53686785697937,0.65393477678299,-0.505401253700256,0.562973082065582,0.650096714496613,-0.504508197307587,0.568194985389709,0.66311103105545,-0.504856824874878,0.552632927894592,0.644152045249939,-0.60375052690506,0.46963095664978,0.648677468299866,-0.539435088634491,0.53686785697937,0.668352842330933,-0.599119424819946,0.440863072872162,0.345514863729477,0.525563299655914,-0.777433395385742,0.431339740753174,0.421047925949097,-0.79791259765625,0.374261498451233,0.535053253173828,-0.757394433021545,-0.019886564463377,-0.647708475589752,-0.761628568172455,-0.0248777829110622,-0.621613740921021,-0.782928705215454,-0.138186410069466,-0.47278356552124,-0.870275735855103,-0.169506415724754,-0.429722487926483,-0.886908113956451,-0.234626248478889,-0.359503835439682,-0.903165221214294, +-0.138186410069466,-0.47278356552124,-0.870275735855103,-0.227206453680992,-0.267461210489273,-0.936398208141327,-0.322760671377182,-0.211426883935928,-0.922563910484314,-0.249498888850212,-0.332389116287231,-0.909542560577393,0.0507610365748405,0.111418075859547,-0.992476284503937,-0.0997067168354988,0.122613430023193,-0.987433254718781,-0.0464253909885883,-0.0177971906960011,-0.998763144016266,0.339832067489624,0.245699539780617,-0.907824754714966,0.261965990066528,0.152279168367386,-0.952987313270569,0.504961431026459,0.220563352108002,-0.834485232830048,0.261965990066528,0.152279168367386,-0.952987313270569,0.339832067489624,0.245699539780617,-0.907824754714966,0.0507610365748405,0.111418075859547,-0.992476284503937,-0.322760671377182,-0.211426883935928,-0.922563910484314,-0.281331807374954,-0.294681221246719,-0.913244366645813,-0.249498888850212,-0.332389116287231,-0.909542560577393,-0.169506415724754,-0.429722487926483,-0.886908113956451,-0.281331807374954,-0.294681221246719,-0.913244366645813,-0.234626248478889,-0.359503835439682,-0.903165221214294,0.440146207809448,0.465788722038269,-0.767666697502136,0.374261498451233,0.535053253173828,-0.757394433021545,0.602640509605408,0.370403647422791,-0.706841826438904,0.681735038757324,0.241245195269585,-0.690679311752319,0.504961431026459,0.220563352108002,-0.834485232830048,0.440146207809448,0.465788722038269,-0.767666697502136,-0.0210398137569427,0.121082112193108,-0.992419421672821,-0.0796438455581665,0.114269703626633,-0.990252077579498,0.0439264737069607,0.112109005451202,-0.992724478244781,-0.0489822737872601,0.090268611907959,-0.994712114334106,-0.139783024787903,0.140303432941437,-0.980191588401794,-0.0210398137569427,0.121082112193108,-0.992419421672821,0.430375903844833,-0.529236197471619,-0.731221914291382,0.408947139978409,-0.257768362760544,-0.875395715236664,0.218245834112167,-0.124917037785053,-0.967865884304047,0.0739101842045784,0.0797760784626007,-0.994068920612335,-0.0665111914277077,0.0824390277266502,-0.99437415599823,0.0340926609933376,-0.221313118934631,-0.97460663318634, +0.201500952243805,-0.450871467590332,-0.869547069072723,0.218245834112167,-0.124917037785053,-0.967865884304047,0.0340926609933376,-0.221313118934631,-0.97460663318634,-0.0796438455581665,0.114269703626633,-0.990252077579498,-0.0665111914277077,0.0824390277266502,-0.99437415599823,0.0439264737069607,0.112109005451202,-0.992724478244781,0.457636266946793,-0.0893364697694778,-0.884639978408813,0.408947139978409,-0.257768362760544,-0.875395715236664,0.575592994689941,-0.413253277540207,-0.705630421638489,0.477429211139679,0.204197347164154,-0.854613721370697,0.457636266946793,-0.0893364697694778,-0.884639978408813,0.629160046577454,0.0542684942483902,-0.775378882884979,0.371345967054367,0.343994438648224,-0.862420916557312,0.477429211139679,0.204197347164154,-0.854613721370697,0.431339740753174,0.421047925949097,-0.79791259765625,0.948426246643066,0.221471413969994,0.22679939866066,0.90795624256134,0.202085420489311,0.367119669914246,0.925432860851288,0.131911009550095,0.355208873748779,0.811066865921021,0.227537468075752,0.538885056972504,0.854361593723297,0.204650968313217,0.47768622636795,0.800685405731201,0.30741810798645,0.514195382595062,0.854361593723297,0.204650968313217,0.47768622636795,0.884259343147278,0.133598208427429,0.447478234767914,0.872225701808929,0.165709510445595,0.460176676511765,0.884259343147278,0.133598208427429,0.447478234767914,0.886870861053467,0.135917350649834,0.441572785377502,0.872225701808929,0.165709510445595,0.460176676511765,0.886870861053467,0.135917350649834,0.441572785377502,0.925432860851288,0.131911009550095,0.355208873748779,0.90795624256134,0.202085420489311,0.367119669914246,0.778798580169678,0.324810206890106,0.536629199981689,0.800685405731201,0.30741810798645,0.514195382595062,0.773546040058136,0.340162873268127,0.534710705280304,0.778798580169678,0.324810206890106,0.536629199981689,0.739053726196289,0.264920741319656,0.619367778301239,0.811066865921021,0.227537468075752,0.538885056972504,0.587677597999573,0.503557205200195,0.63329690694809,0.605153143405914,0.463575780391693,0.647214770317078, +0.555406212806702,0.41238921880722,0.722121119499207,0.63392037153244,0.414525747299194,0.652926623821259,0.605153143405914,0.463575780391693,0.647214770317078,0.639084815979004,0.423402488231659,0.642106473445892,0.739053726196289,0.264920741319656,0.619367778301239,0.669234693050385,0.366235554218292,0.646526277065277,0.648529171943665,0.334934443235397,0.683541238307953,0.648529171943665,0.334934443235397,0.683541238307953,0.669234693050385,0.366235554218292,0.646526277065277,0.639084815979004,0.423402488231659,0.642106473445892,0.607593297958374,0.47446271777153,-0.636957883834839,0.671906113624573,0.446679800748825,-0.590778410434723,0.650932610034943,0.378550916910172,-0.658016562461853,0.555873215198517,0.368926882743835,-0.744914591312408,0.650932610034943,0.378550916910172,-0.658016562461853,0.583739519119263,0.281676143407822,-0.761516034603119,0.512019097805023,0.272309094667435,-0.81466805934906,0.555873215198517,0.368926882743835,-0.744914591312408,0.583739519119263,0.281676143407822,-0.761516034603119,0.512019097805023,0.272309094667435,-0.81466805934906,0.480960696935654,0.181779980659485,-0.857690334320068,0.510599792003632,0.27657562494278,-0.81412136554718,0.511798620223999,0.263270050287247,-0.817771911621094,0.510599792003632,0.27657562494278,-0.81412136554718,0.555076718330383,0.189021751284599,-0.810037314891815,0.511798620223999,0.263270050287247,-0.817771911621094,0.427958220243454,0.202602401375771,-0.880797326564789,0.388575345277786,0.333850532770157,-0.858808994293213,0.427958220243454,0.202602401375771,-0.880797326564789,0.366155326366425,0.267721563577652,-0.89121001958847,0.388575345277786,0.333850532770157,-0.858808994293213,0.446485757827759,0.280549138784409,-0.849672019481659,0.359573394060135,0.348287522792816,-0.865680456161499,0.366155326366425,0.267721563577652,-0.89121001958847,0.359573394060135,0.348287522792816,-0.865680456161499,0.470441967248917,0.305184453725815,-0.827977478504181,0.412072211503983,0.379639238119125,-0.828293740749359,0.366000831127167,0.344901502132416,-0.864341497421265, +0.412072211503983,0.379639238119125,-0.828293740749359,0.349381923675537,0.385539501905441,-0.853985667228699,0.349381923675537,0.385539501905441,-0.853985667228699,0.219726875424385,0.344057351350784,-0.912877023220062,0.33659291267395,0.281719535589218,-0.898520529270172,0.761413335800171,0.36808642745018,-0.533630907535553,0.771402835845947,0.410352289676666,-0.486362516880035,0.861816823482513,0.318042099475861,-0.395121425390244,0.761413335800171,0.36808642745018,-0.533630907535553,0.730032742023468,0.332442373037338,-0.597104728221893,0.697812139987946,0.433199554681778,-0.570435047149658,0.697812139987946,0.433199554681778,-0.570435047149658,0.730032742023468,0.332442373037338,-0.597104728221893,0.691265463829041,0.427413940429688,-0.582639873027802,0.691265463829041,0.427413940429688,-0.582639873027802,0.671906113624573,0.446679800748825,-0.590778410434723,0.671866059303284,0.464301317930222,-0.577078938484192,0.897370278835297,0.26993316411972,-0.349088162183762,0.91690868139267,0.174721941351891,-0.35881832242012,0.861816823482513,0.318042099475861,-0.395121425390244,0.906477034091949,0.20134761929512,-0.371158182621002,0.923469424247742,0.176787450909615,-0.340514451265335,0.897370278835297,0.26993316411972,-0.349088162183762,0.931140184402466,0.245408087968826,-0.26972708106041,0.963448166847229,0.1454226821661,-0.224987849593163,0.906477034091949,0.20134761929512,-0.371158182621002,0.976376712322235,0.215474814176559,-0.0160874053835869,0.981844305992126,0.181633621454239,0.0546889714896679,0.993613302707672,0.11069293320179,-0.0219001471996307,0.970907866954803,0.193164378404617,-0.14151106774807,0.993613302707672,0.11069293320179,-0.0219001471996307,0.991481781005859,0.0744072273373604,-0.106898806989193,0.991481781005859,0.0744072273373604,-0.106898806989193,0.963448166847229,0.1454226821661,-0.224987849593163,0.970907866954803,0.193164378404617,-0.14151106774807,0.980328619480133,0.175444707274437,0.0904147401452065,0.973626673221588,0.179880559444427,0.14033542573452,0.985706150531769,0.13493449985981,0.100876234471798, +0.948426246643066,0.221471413969994,0.22679939866066,0.925432860851288,0.131911009550095,0.355208873748779,0.956243455410004,0.131035283207893,0.261587679386139,0.965072453022003,0.14069975912571,0.220994785428047,0.973626673221588,0.179880559444427,0.14033542573452,0.956243455410004,0.131035283207893,0.261587679386139,0.981844305992126,0.181633621454239,0.0546889714896679,0.980328619480133,0.175444707274437,0.0904147401452065,0.991664469242096,0.103529676795006,0.0766998901963234,0.358126550912857,0.552800953388214,-0.752433598041534,0.269202947616577,0.557295978069305,-0.785462141036987,0.183836162090302,0.439933776855469,-0.879012167453766,0.339066058397293,0.668750703334808,-0.661669492721558,0.269202947616577,0.557295978069305,-0.785462141036987,0.431917130947113,0.629780888557434,-0.645618677139282,0.183836162090302,0.439933776855469,-0.879012167453766,0.219726875424385,0.344057351350784,-0.912877023220062,0.272250056266785,0.461064428091049,-0.844570517539978,0.390216082334518,0.668762981891632,-0.632840692996979,0.311027824878693,0.751146912574768,-0.582271277904511,0.339066058397293,0.668750703334808,-0.661669492721558,0.270023584365845,0.811131238937378,-0.518799781799316,0.318093597888947,0.785089612007141,-0.531460821628571,0.250257730484009,0.838468015193939,-0.484089136123657,0.330519497394562,0.75350946187973,-0.568313419818878,0.270023584365845,0.811131238937378,-0.518799781799316,0.311027824878693,0.751146912574768,-0.582271277904511,0.587677597999573,0.503557205200195,0.63329690694809,0.535521686077118,0.372111052274704,0.758122503757477,0.48640039563179,0.511705636978149,0.70821738243103,-0.019886564463377,-0.647708475589752,-0.761628568172455,0.0250987280160189,-0.704292833805084,-0.709465622901917,0.0850949957966805,-0.777607321739197,-0.622965097427368,0.0250987280160189,-0.704292833805084,-0.709465622901917,-0.056326150894165,-0.624213576316834,-0.779220521450043,0.112541332840919,-0.788459002971649,-0.604703783988953,0.112541332840919,-0.788459002971649,-0.604703783988953,-0.056326150894165,-0.624213576316834,-0.779220521450043, +0.0663080662488937,-0.756725311279297,-0.650361359119415,0.151521489024162,-0.7944375872612,-0.588141143321991,0.240089043974876,-0.863093554973602,-0.444327175617218,0.0663080662488937,-0.756725311279297,-0.650361359119415,0.299952745437622,-0.86386775970459,-0.40467357635498,0.358888804912567,-0.87672632932663,-0.320233732461929,0.409013837575912,-0.890897452831268,-0.197507962584496,0.470414221286774,-0.881115078926086,-0.0484413765370846,0.409013837575912,-0.890897452831268,-0.197507962584496,0.421492338180542,-0.890414535999298,-0.171773135662079,0.151521489024162,-0.7944375872612,-0.588141143321991,0.158299401402473,-0.770670831203461,-0.617258131504059,0.299952745437622,-0.86386775970459,-0.40467357635498,0.516676723957062,-0.848812818527222,0.1120800152421,0.526243984699249,-0.850333571434021,-0.000297173828585073,0.470414221286774,-0.881115078926086,-0.0484413765370846,0.575522184371948,-0.799225807189941,0.173240214586258,0.60975843667984,-0.741111874580383,0.280976563692093,0.522289872169495,-0.85145366191864,0.0473265424370766,0.516676723957062,-0.848812818527222,0.1120800152421,0.575522184371948,-0.799225807189941,0.173240214586258,0.526243984699249,-0.850333571434021,-0.000297173828585073,0.622661352157593,-0.669879138469696,0.404418975114822,0.557894647121429,-0.799803376197815,0.22151292860508,0.60975843667984,-0.741111874580383,0.280976563692093,0.648677468299866,-0.539435088634491,0.53686785697937,0.644152045249939,-0.60375052690506,0.46963095664978,0.650096714496613,-0.504508197307587,0.568194985389709,0.374261498451233,0.535053253173828,-0.757394433021545,0.431339740753174,0.421047925949097,-0.79791259765625,0.602640509605408,0.370403647422791,-0.706841826438904,-0.019886564463377,-0.647708475589752,-0.761628568172455,-0.138186410069466,-0.47278356552124,-0.870275735855103,-0.0889745131134987,-0.575870215892792,-0.812684893608093,-0.138186410069466,-0.47278356552124,-0.870275735855103,-0.234626248478889,-0.359503835439682,-0.903165221214294,-0.244907066226006,-0.41137021780014,-0.877949297428131, +-0.0997067168354988,0.122613430023193,-0.987433254718781,0.0507610365748405,0.111418075859547,-0.992476284503937,-0.0671365335583687,0.25837117433548,-0.963710010051727,-0.0997067168354988,0.122613430023193,-0.987433254718781,-0.273532658815384,0.13772913813591,-0.95195084810257,-0.0464253909885883,-0.0177971906960011,-0.998763144016266,0.339832067489624,0.245699539780617,-0.907824754714966,0.504961431026459,0.220563352108002,-0.834485232830048,0.641266644001007,0.192435711622238,-0.742795765399933,0.339832067489624,0.245699539780617,-0.907824754714966,-0.0671365335583687,0.25837117433548,-0.963710010051727,0.0507610365748405,0.111418075859547,-0.992476284503937,-0.341610372066498,-0.279393762350082,-0.897352397441864,-0.234626248478889,-0.359503835439682,-0.903165221214294,-0.281331807374954,-0.294681221246719,-0.913244366645813,0.681735038757324,0.241245195269585,-0.690679311752319,0.440146207809448,0.465788722038269,-0.767666697502136,0.602640509605408,0.370403647422791,-0.706841826438904,0.681735038757324,0.241245195269585,-0.690679311752319,0.641266644001007,0.192435711622238,-0.742795765399933,0.504961431026459,0.220563352108002,-0.834485232830048,-0.0210398137569427,0.121082112193108,-0.992419421672821,-0.139783024787903,0.140303432941437,-0.980191588401794,-0.0796438455581665,0.114269703626633,-0.990252077579498,0.408947139978409,-0.257768362760544,-0.875395715236664,0.430375903844833,-0.529236197471619,-0.731221914291382,0.575592994689941,-0.413253277540207,-0.705630421638489,0.218245834112167,-0.124917037785053,-0.967865884304047,0.201500952243805,-0.450871467590332,-0.869547069072723,0.430375903844833,-0.529236197471619,-0.731221914291382,-0.134363085031509,-0.216802775859833,-0.966924548149109,0.0340926609933376,-0.221313118934631,-0.97460663318634,-0.0665111914277077,0.0824390277266502,-0.99437415599823,0.130717068910599,-0.577823996543884,-0.805625438690186,0.201500952243805,-0.450871467590332,-0.869547069072723,0.0340926609933376,-0.221313118934631,-0.97460663318634,-0.0665111914277077,0.0824390277266502,-0.99437415599823, +-0.0796438455581665,0.114269703626633,-0.990252077579498,-0.189368456602097,0.135976031422615,-0.972445368766785,0.457636266946793,-0.0893364697694778,-0.884639978408813,0.575592994689941,-0.413253277540207,-0.705630421638489,0.716789066791534,-0.171117842197418,-0.675967395305634,0.457636266946793,-0.0893364697694778,-0.884639978408813,0.716789066791534,-0.171117842197418,-0.675967395305634,0.629160046577454,0.0542684942483902,-0.775378882884979,0.662886917591095,0.205916300415993,-0.719846665859222,0.477429211139679,0.204197347164154,-0.854613721370697,0.629160046577454,0.0542684942483902,-0.775378882884979,0.662886917591095,0.205916300415993,-0.719846665859222,0.431339740753174,0.421047925949097,-0.79791259765625,0.477429211139679,0.204197347164154,-0.854613721370697,0.811066865921021,0.227537468075752,0.538885056972504,0.865944743156433,0.138402700424194,0.480608224868774,0.854361593723297,0.204650968313217,0.47768622636795,0.800685405731201,0.30741810798645,0.514195382595062,0.778798580169678,0.324810206890106,0.536629199981689,0.811066865921021,0.227537468075752,0.538885056972504,0.865944743156433,0.138402700424194,0.480608224868774,0.884259343147278,0.133598208427429,0.447478234767914,0.854361593723297,0.204650968313217,0.47768622636795,0.884259343147278,0.133598208427429,0.447478234767914,0.891995787620544,0.134424671530724,0.431594043970108,0.886870861053467,0.135917350649834,0.441572785377502,0.886870861053467,0.135917350649834,0.441572785377502,0.891995787620544,0.134424671530724,0.431594043970108,0.925432860851288,0.131911009550095,0.355208873748779,0.739053726196289,0.264920741319656,0.619367778301239,0.815599501132965,0.143775328993797,0.560469388961792,0.811066865921021,0.227537468075752,0.538885056972504,0.587677597999573,0.503557205200195,0.63329690694809,0.634985685348511,0.489749848842621,0.597442984580994,0.605153143405914,0.463575780391693,0.647214770317078,0.639084815979004,0.423402488231659,0.642106473445892,0.605153143405914,0.463575780391693,0.647214770317078,0.634985685348511,0.489749848842621,0.597442984580994, +0.739053726196289,0.264920741319656,0.619367778301239,0.648529171943665,0.334934443235397,0.683541238307953,0.689618289470673,0.250702053308487,0.67939305305481,0.639084815979004,0.423402488231659,0.642106473445892,0.633636176586151,0.412671953439713,0.654375195503235,0.648529171943665,0.334934443235397,0.683541238307953,0.650932610034943,0.378550916910172,-0.658016562461853,0.671906113624573,0.446679800748825,-0.590778410434723,0.691265463829041,0.427413940429688,-0.582639873027802,0.650490522384644,0.268959641456604,-0.710297524929047,0.583739519119263,0.281676143407822,-0.761516034603119,0.650932610034943,0.378550916910172,-0.658016562461853,0.512019097805023,0.272309094667435,-0.81466805934906,0.583739519119263,0.281676143407822,-0.761516034603119,0.519868791103363,0.215344682335854,-0.826657712459564,0.512019097805023,0.272309094667435,-0.81466805934906,0.519868791103363,0.215344682335854,-0.826657712459564,0.480960696935654,0.181779980659485,-0.857690334320068,0.510599792003632,0.27657562494278,-0.81412136554718,0.480960696935654,0.181779980659485,-0.857690334320068,0.555076718330383,0.189021751284599,-0.810037314891815,0.537626504898071,0.145928099751472,-0.830459237098694,0.511798620223999,0.263270050287247,-0.817771911621094,0.555076718330383,0.189021751284599,-0.810037314891815,0.427958220243454,0.202602401375771,-0.880797326564789,0.511798620223999,0.263270050287247,-0.817771911621094,0.537626504898071,0.145928099751472,-0.830459237098694,0.366155326366425,0.267721563577652,-0.89121001958847,0.427958220243454,0.202602401375771,-0.880797326564789,0.42166593670845,0.214249700307846,-0.881075918674469,0.359573394060135,0.348287522792816,-0.865680456161499,0.446485757827759,0.280549138784409,-0.849672019481659,0.470441967248917,0.305184453725815,-0.827977478504181,0.454425156116486,0.266675531864166,-0.849930465221405,0.446485757827759,0.280549138784409,-0.849672019481659,0.366155326366425,0.267721563577652,-0.89121001958847,0.50848126411438,0.333315879106522,-0.79394406080246,0.412072211503983,0.379639238119125,-0.828293740749359, +0.470441967248917,0.305184453725815,-0.827977478504181,0.412072211503983,0.379639238119125,-0.828293740749359,0.350853890180588,0.453524857759476,-0.819278120994568,0.349381923675537,0.385539501905441,-0.853985667228699,0.263168454170227,0.419853359460831,-0.868599653244019,0.219726875424385,0.344057351350784,-0.912877023220062,0.349381923675537,0.385539501905441,-0.853985667228699,0.761413335800171,0.36808642745018,-0.533630907535553,0.861816823482513,0.318042099475861,-0.395121425390244,0.822655081748962,0.201511427760124,-0.531631052494049,0.761413335800171,0.36808642745018,-0.533630907535553,0.822655081748962,0.201511427760124,-0.531631052494049,0.730032742023468,0.332442373037338,-0.597104728221893,0.714156687259674,0.350119084119797,-0.606132566928864,0.691265463829041,0.427413940429688,-0.582639873027802,0.730032742023468,0.332442373037338,-0.597104728221893,0.897370278835297,0.26993316411972,-0.349088162183762,0.923469424247742,0.176787450909615,-0.340514451265335,0.91690868139267,0.174721941351891,-0.35881832242012,0.91690868139267,0.174721941351891,-0.35881832242012,0.822655081748962,0.201511427760124,-0.531631052494049,0.861816823482513,0.318042099475861,-0.395121425390244,0.906477034091949,0.20134761929512,-0.371158182621002,0.923126935958862,0.131743595004082,-0.361220389604568,0.923469424247742,0.176787450909615,-0.340514451265335,0.940793573856354,0.0505802817642689,-0.335184991359711,0.906477034091949,0.20134761929512,-0.371158182621002,0.963448166847229,0.1454226821661,-0.224987849593163,0.993613302707672,0.11069293320179,-0.0219001471996307,0.981844305992126,0.181633621454239,0.0546889714896679,0.991664469242096,0.103529676795006,0.0766998901963234,0.991481781005859,0.0744072273373604,-0.106898806989193,0.993613302707672,0.11069293320179,-0.0219001471996307,0.995624542236328,0.0464732348918915,-0.0810676291584969,0.991481781005859,0.0744072273373604,-0.106898806989193,0.989362061023712,0.0426139757037163,-0.139092117547989,0.963448166847229,0.1454226821661,-0.224987849593163,0.973626673221588,0.179880559444427,0.14033542573452, +0.983834743499756,0.1214679479599,0.13158506155014,0.985706150531769,0.13493449985981,0.100876234471798,0.991664469242096,0.103529676795006,0.0766998901963234,0.980328619480133,0.175444707274437,0.0904147401452065,0.985706150531769,0.13493449985981,0.100876234471798,0.921910107135773,0.143668547272682,0.35977903008461,0.956243455410004,0.131035283207893,0.261587679386139,0.925432860851288,0.131911009550095,0.355208873748779,0.973626673221588,0.179880559444427,0.14033542573452,0.965072453022003,0.14069975912571,0.220994785428047,0.983834743499756,0.1214679479599,0.13158506155014,0.965072453022003,0.14069975912571,0.220994785428047,0.956243455410004,0.131035283207893,0.261587679386139,0.94500732421875,0.13183881342411,0.299298495054245,0.431917130947113,0.629780888557434,-0.645618677139282,0.269202947616577,0.557295978069305,-0.785462141036987,0.358126550912857,0.552800953388214,-0.752433598041534,0.272250056266785,0.461064428091049,-0.844570517539978,0.358126550912857,0.552800953388214,-0.752433598041534,0.183836162090302,0.439933776855469,-0.879012167453766,0.390216082334518,0.668762981891632,-0.632840692996979,0.339066058397293,0.668750703334808,-0.661669492721558,0.431917130947113,0.629780888557434,-0.645618677139282,0.263168454170227,0.419853359460831,-0.868599653244019,0.272250056266785,0.461064428091049,-0.844570517539978,0.219726875424385,0.344057351350784,-0.912877023220062,0.333078414201736,0.694071173667908,-0.638219237327576,0.311027824878693,0.751146912574768,-0.582271277904511,0.390216082334518,0.668762981891632,-0.632840692996979,0.330519497394562,0.75350946187973,-0.568313419818878,0.318093597888947,0.785089612007141,-0.531460821628571,0.270023584365845,0.811131238937378,-0.518799781799316,0.250257730484009,0.838468015193939,-0.484089136123657,0.318093597888947,0.785089612007141,-0.531460821628571,0.340025782585144,0.744259536266327,-0.574856638908386,0.333078414201736,0.694071173667908,-0.638219237327576,0.330519497394562,0.75350946187973,-0.568313419818878,0.311027824878693,0.751146912574768,-0.582271277904511, +0.48640039563179,0.511705636978149,0.70821738243103,0.53188681602478,0.497823685407639,0.685031235218048,0.587677597999573,0.503557205200195,0.63329690694809,-0.019886564463377,-0.647708475589752,-0.761628568172455,-0.0889745131134987,-0.575870215892792,-0.812684893608093,0.0250987280160189,-0.704292833805084,-0.709465622901917,-0.0889745131134987,-0.575870215892792,-0.812684893608093,-0.056326150894165,-0.624213576316834,-0.779220521450043,0.0250987280160189,-0.704292833805084,-0.709465622901917,-0.00674148509278893,-0.675062656402588,-0.737729489803314,0.0663080662488937,-0.756725311279297,-0.650361359119415,-0.056326150894165,-0.624213576316834,-0.779220521450043,0.151521489024162,-0.7944375872612,-0.588141143321991,0.0663080662488937,-0.756725311279297,-0.650361359119415,-0.00674148509278893,-0.675062656402588,-0.737729489803314,0.299952745437622,-0.86386775970459,-0.40467357635498,0.26640260219574,-0.83338850736618,-0.484244853258133,0.358888804912567,-0.87672632932663,-0.320233732461929,0.409013837575912,-0.890897452831268,-0.197507962584496,0.358888804912567,-0.87672632932663,-0.320233732461929,0.421492338180542,-0.890414535999298,-0.171773135662079,0.467843472957611,-0.882986307144165,-0.0381787270307541,0.470414221286774,-0.881115078926086,-0.0484413765370846,0.421492338180542,-0.890414535999298,-0.171773135662079,0.151521489024162,-0.7944375872612,-0.588141143321991,0.0551909953355789,-0.709768116474152,-0.702269911766052,0.158299401402473,-0.770670831203461,-0.617258131504059,0.299952745437622,-0.86386775970459,-0.40467357635498,0.158299401402473,-0.770670831203461,-0.617258131504059,0.26640260219574,-0.83338850736618,-0.484244853258133,0.516676723957062,-0.848812818527222,0.1120800152421,0.470414221286774,-0.881115078926086,-0.0484413765370846,0.504408538341522,-0.851483464241028,0.143344968557358,0.613923132419586,-0.668326079845428,0.420045733451843,0.60975843667984,-0.741111874580383,0.280976563692093,0.575522184371948,-0.799225807189941,0.173240214586258,0.575522184371948,-0.799225807189941,0.173240214586258, +0.516676723957062,-0.848812818527222,0.1120800152421,0.580039620399475,-0.726921319961548,0.367613077163696,0.622661352157593,-0.669879138469696,0.404418975114822,0.60975843667984,-0.741111874580383,0.280976563692093,0.628624081611633,-0.575476765632629,0.523123204708099,0.431339740753174,0.421047925949097,-0.79791259765625,0.662886917591095,0.205916300415993,-0.719846665859222,0.602640509605408,0.370403647422791,-0.706841826438904,-0.14695331454277,-0.487882852554321,-0.860450387001038,-0.0889745131134987,-0.575870215892792,-0.812684893608093,-0.138186410069466,-0.47278356552124,-0.870275735855103,-0.342664122581482,-0.327983170747757,-0.880345523357391,-0.244907066226006,-0.41137021780014,-0.877949297428131,-0.234626248478889,-0.359503835439682,-0.903165221214294,-0.14695331454277,-0.487882852554321,-0.860450387001038,-0.138186410069466,-0.47278356552124,-0.870275735855103,-0.244907066226006,-0.41137021780014,-0.877949297428131,-0.273532658815384,0.13772913813591,-0.95195084810257,-0.0997067168354988,0.122613430023193,-0.987433254718781,-0.0671365335583687,0.25837117433548,-0.963710010051727,0.604620814323425,0.3550925552845,-0.712981641292572,0.339832067489624,0.245699539780617,-0.907824754714966,0.641266644001007,0.192435711622238,-0.742795765399933,0.339832067489624,0.245699539780617,-0.907824754714966,0.296846002340317,0.462029159069061,-0.835710108280182,-0.0671365335583687,0.25837117433548,-0.963710010051727,-0.341610372066498,-0.279393762350082,-0.897352397441864,-0.342664122581482,-0.327983170747757,-0.880345523357391,-0.234626248478889,-0.359503835439682,-0.903165221214294,0.681735038757324,0.241245195269585,-0.690679311752319,0.602640509605408,0.370403647422791,-0.706841826438904,0.789060354232788,0.157426699995995,-0.59380167722702,0.762523412704468,0.209198385477066,-0.612204253673553,0.641266644001007,0.192435711622238,-0.742795765399933,0.681735038757324,0.241245195269585,-0.690679311752319,-0.139783024787903,0.140303432941437,-0.980191588401794,-0.189368456602097,0.135976031422615,-0.972445368766785, +-0.0796438455581665,0.114269703626633,-0.990252077579498,0.430375903844833,-0.529236197471619,-0.731221914291382,0.625092506408691,-0.604773819446564,-0.493465125560761,0.575592994689941,-0.413253277540207,-0.705630421638489,-0.134363085031509,-0.216802775859833,-0.966924548149109,-0.139115259051323,-0.403364926576614,-0.904402375221252,0.0340926609933376,-0.221313118934631,-0.97460663318634,-0.198316976428032,0.0343213975429535,-0.979536771774292,-0.134363085031509,-0.216802775859833,-0.966924548149109,-0.0665111914277077,0.0824390277266502,-0.99437415599823,0.130717068910599,-0.577823996543884,-0.805625438690186,0.0340926609933376,-0.221313118934631,-0.97460663318634,-0.0873085409402847,-0.603740870952606,-0.792385101318359,-0.198316976428032,0.0343213975429535,-0.979536771774292,-0.0665111914277077,0.0824390277266502,-0.99437415599823,-0.189368456602097,0.135976031422615,-0.972445368766785,0.716789066791534,-0.171117842197418,-0.675967395305634,0.575592994689941,-0.413253277540207,-0.705630421638489,0.794824421405792,-0.418989628553391,-0.438978016376495,0.779977798461914,0.0397407822310925,-0.624544024467468,0.629160046577454,0.0542684942483902,-0.775378882884979,0.716789066791534,-0.171117842197418,-0.675967395305634,0.779977798461914,0.0397407822310925,-0.624544024467468,0.662886917591095,0.205916300415993,-0.719846665859222,0.629160046577454,0.0542684942483902,-0.775378882884979,0.815599501132965,0.143775328993797,0.560469388961792,0.865944743156433,0.138402700424194,0.480608224868774,0.811066865921021,0.227537468075752,0.538885056972504,0.876551508903503,0.130535870790482,0.463268488645554,0.884259343147278,0.133598208427429,0.447478234767914,0.865944743156433,0.138402700424194,0.480608224868774,0.876748085021973,0.153989613056183,0.455631375312805,0.891995787620544,0.134424671530724,0.431594043970108,0.884259343147278,0.133598208427429,0.447478234767914,0.921910107135773,0.143668547272682,0.35977903008461,0.925432860851288,0.131911009550095,0.355208873748779,0.891995787620544,0.134424671530724,0.431594043970108, +0.815599501132965,0.143775328993797,0.560469388961792,0.739053726196289,0.264920741319656,0.619367778301239,0.763813734054565,0.16469806432724,0.624069690704346,0.587677597999573,0.503557205200195,0.63329690694809,0.53188681602478,0.497823685407639,0.685031235218048,0.634985685348511,0.489749848842621,0.597442984580994,0.633636176586151,0.412671953439713,0.654375195503235,0.639084815979004,0.423402488231659,0.642106473445892,0.634985685348511,0.489749848842621,0.597442984580994,0.598678052425385,0.278391063213348,0.751054465770721,0.689618289470673,0.250702053308487,0.67939305305481,0.648529171943665,0.334934443235397,0.683541238307953,0.689618289470673,0.250702053308487,0.67939305305481,0.763813734054565,0.16469806432724,0.624069690704346,0.739053726196289,0.264920741319656,0.619367778301239,0.648529171943665,0.334934443235397,0.683541238307953,0.633636176586151,0.412671953439713,0.654375195503235,0.574704945087433,0.335110485553741,0.746602296829224,0.714156687259674,0.350119084119797,-0.606132566928864,0.650932610034943,0.378550916910172,-0.658016562461853,0.691265463829041,0.427413940429688,-0.582639873027802,0.577990293502808,0.186815902590752,-0.794371962547302,0.583739519119263,0.281676143407822,-0.761516034603119,0.650490522384644,0.268959641456604,-0.710297524929047,0.714156687259674,0.350119084119797,-0.606132566928864,0.650490522384644,0.268959641456604,-0.710297524929047,0.650932610034943,0.378550916910172,-0.658016562461853,0.577990293502808,0.186815902590752,-0.794371962547302,0.519868791103363,0.215344682335854,-0.826657712459564,0.583739519119263,0.281676143407822,-0.761516034603119,0.480960696935654,0.181779980659485,-0.857690334320068,0.519868791103363,0.215344682335854,-0.826657712459564,0.494153320789337,0.125007286667824,-0.860340416431427,0.480960696935654,0.181779980659485,-0.857690334320068,0.557179033756256,0.058114442974329,-0.828356266021729,0.555076718330383,0.189021751284599,-0.810037314891815,0.557179033756256,0.058114442974329,-0.828356266021729,0.537626504898071,0.145928099751472,-0.830459237098694, +0.555076718330383,0.189021751284599,-0.810037314891815,0.537626504898071,0.145928099751472,-0.830459237098694,0.534732222557068,0.119408138096333,-0.836542248725891,0.427958220243454,0.202602401375771,-0.880797326564789,0.427958220243454,0.202602401375771,-0.880797326564789,0.534732222557068,0.119408138096333,-0.836542248725891,0.42166593670845,0.214249700307846,-0.881075918674469,0.454425156116486,0.266675531864166,-0.849930465221405,0.366155326366425,0.267721563577652,-0.89121001958847,0.42166593670845,0.214249700307846,-0.881075918674469,0.446485757827759,0.280549138784409,-0.849672019481659,0.504562020301819,0.257759422063828,-0.824000656604767,0.470441967248917,0.305184453725815,-0.827977478504181,0.504562020301819,0.257759422063828,-0.824000656604767,0.446485757827759,0.280549138784409,-0.849672019481659,0.454425156116486,0.266675531864166,-0.849930465221405,0.412072211503983,0.379639238119125,-0.828293740749359,0.50848126411438,0.333315879106522,-0.79394406080246,0.350853890180588,0.453524857759476,-0.819278120994568,0.504562020301819,0.257759422063828,-0.824000656604767,0.50848126411438,0.333315879106522,-0.79394406080246,0.470441967248917,0.305184453725815,-0.827977478504181,0.350853890180588,0.453524857759476,-0.819278120994568,0.263168454170227,0.419853359460831,-0.868599653244019,0.349381923675537,0.385539501905441,-0.853985667228699,0.822655081748962,0.201511427760124,-0.531631052494049,0.775867819786072,0.237990275025368,-0.584285497665405,0.730032742023468,0.332442373037338,-0.597104728221893,0.730032742023468,0.332442373037338,-0.597104728221893,0.745271384716034,0.245044037699699,-0.62009984254837,0.714156687259674,0.350119084119797,-0.606132566928864,0.91690868139267,0.174721941351891,-0.35881832242012,0.923469424247742,0.176787450909615,-0.340514451265335,0.94001030921936,0.0920321121811867,-0.328497648239136,0.91690868139267,0.174721941351891,-0.35881832242012,0.907014191150665,0.0387079268693924,-0.419317126274109,0.822655081748962,0.201511427760124,-0.531631052494049,0.940793573856354,0.0505802817642689,-0.335184991359711, +0.923126935958862,0.131743595004082,-0.361220389604568,0.906477034091949,0.20134761929512,-0.371158182621002,0.923469424247742,0.176787450909615,-0.340514451265335,0.923126935958862,0.131743595004082,-0.361220389604568,0.94001030921936,0.0920321121811867,-0.328497648239136,0.940793573856354,0.0505802817642689,-0.335184991359711,0.963448166847229,0.1454226821661,-0.224987849593163,0.977004110813141,0.0433221757411957,-0.208772659301758,0.997222781181335,0.0733383446931839,0.0129663683474064,0.993613302707672,0.11069293320179,-0.0219001471996307,0.991664469242096,0.103529676795006,0.0766998901963234,0.993613302707672,0.11069293320179,-0.0219001471996307,0.997222781181335,0.0733383446931839,0.0129663683474064,0.995624542236328,0.0464732348918915,-0.0810676291584969,0.991481781005859,0.0744072273373604,-0.106898806989193,0.995624542236328,0.0464732348918915,-0.0810676291584969,0.991080701351166,0.00263776117935777,-0.133235797286034,0.991481781005859,0.0744072273373604,-0.106898806989193,0.991080701351166,0.00263776117935777,-0.133235797286034,0.989362061023712,0.0426139757037163,-0.139092117547989,0.989362061023712,0.0426139757037163,-0.139092117547989,0.977004110813141,0.0433221757411957,-0.208772659301758,0.963448166847229,0.1454226821661,-0.224987849593163,0.985706150531769,0.13493449985981,0.100876234471798,0.983834743499756,0.1214679479599,0.13158506155014,0.990966320037842,0.103372938930988,0.0854383409023285,0.985706150531769,0.13493449985981,0.100876234471798,0.990966320037842,0.103372938930988,0.0854383409023285,0.991664469242096,0.103529676795006,0.0766998901963234,0.956243455410004,0.131035283207893,0.261587679386139,0.921910107135773,0.143668547272682,0.35977903008461,0.94500732421875,0.13183881342411,0.299298495054245,0.983834743499756,0.1214679479599,0.13158506155014,0.965072453022003,0.14069975912571,0.220994785428047,0.959013164043427,0.122901737689972,0.255321085453033,0.959013164043427,0.122901737689972,0.255321085453033,0.965072453022003,0.14069975912571,0.220994785428047,0.94500732421875,0.13183881342411,0.299298495054245, +0.431917130947113,0.629780888557434,-0.645618677139282,0.358126550912857,0.552800953388214,-0.752433598041534,0.498168557882309,0.581444084644318,-0.643234550952911,0.272250056266785,0.461064428091049,-0.844570517539978,0.422265231609344,0.531295299530029,-0.734450280666351,0.358126550912857,0.552800953388214,-0.752433598041534,0.506984293460846,0.586879789829254,-0.631299316883087,0.390216082334518,0.668762981891632,-0.632840692996979,0.431917130947113,0.629780888557434,-0.645618677139282,0.272250056266785,0.461064428091049,-0.844570517539978,0.263168454170227,0.419853359460831,-0.868599653244019,0.350853890180588,0.453524857759476,-0.819278120994568,0.333078414201736,0.694071173667908,-0.638219237327576,0.390216082334518,0.668762981891632,-0.632840692996979,0.361677795648575,0.620828151702881,-0.695529580116272,0.340025782585144,0.744259536266327,-0.574856638908386,0.318093597888947,0.785089612007141,-0.531460821628571,0.330519497394562,0.75350946187973,-0.568313419818878,0.330519497394562,0.75350946187973,-0.568313419818878,0.333078414201736,0.694071173667908,-0.638219237327576,0.400894403457642,0.659161508083344,-0.636230766773224,0.48640039563179,0.511705636978149,0.70821738243103,0.441919833421707,0.549427926540375,0.709109008312225,0.53188681602478,0.497823685407639,0.685031235218048,-0.0889745131134987,-0.575870215892792,-0.812684893608093,-0.14695331454277,-0.487882852554321,-0.860450387001038,-0.056326150894165,-0.624213576316834,-0.779220521450043,-0.00674148509278893,-0.675062656402588,-0.737729489803314,-0.056326150894165,-0.624213576316834,-0.779220521450043,-0.16542686522007,-0.543631672859192,-0.822859942913055,-0.00674148509278893,-0.675062656402588,-0.737729489803314,0.0551909953355789,-0.709768116474152,-0.702269911766052,0.151521489024162,-0.7944375872612,-0.588141143321991,0.375278472900391,-0.878644526004791,-0.295211315155029,0.358888804912567,-0.87672632932663,-0.320233732461929,0.26640260219574,-0.83338850736618,-0.484244853258133,0.375278472900391,-0.878644526004791,-0.295211315155029,0.421492338180542,-0.890414535999298,-0.171773135662079, +0.358888804912567,-0.87672632932663,-0.320233732461929,0.470414221286774,-0.881115078926086,-0.0484413765370846,0.467843472957611,-0.882986307144165,-0.0381787270307541,0.504408538341522,-0.851483464241028,0.143344968557358,0.421492338180542,-0.890414535999298,-0.171773135662079,0.430734753608704,-0.890502274036407,-0.146537154912949,0.467843472957611,-0.882986307144165,-0.0381787270307541,0.0551909953355789,-0.709768116474152,-0.702269911766052,0.0108334235846996,-0.672669410705566,-0.739863753318787,0.158299401402473,-0.770670831203461,-0.617258131504059,0.168632209300995,-0.773483216762543,-0.610972046852112,0.26640260219574,-0.83338850736618,-0.484244853258133,0.158299401402473,-0.770670831203461,-0.617258131504059,0.516676723957062,-0.848812818527222,0.1120800152421,0.504408538341522,-0.851483464241028,0.143344968557358,0.541086792945862,-0.784997701644897,0.3016676902771,0.613923132419586,-0.668326079845428,0.420045733451843,0.628624081611633,-0.575476765632629,0.523123204708099,0.60975843667984,-0.741111874580383,0.280976563692093,0.580039620399475,-0.726921319961548,0.367613077163696,0.613923132419586,-0.668326079845428,0.420045733451843,0.575522184371948,-0.799225807189941,0.173240214586258,0.541086792945862,-0.784997701644897,0.3016676902771,0.580039620399475,-0.726921319961548,0.367613077163696,0.516676723957062,-0.848812818527222,0.1120800152421,0.789060354232788,0.157426699995995,-0.59380167722702,0.602640509605408,0.370403647422791,-0.706841826438904,0.662886917591095,0.205916300415993,-0.719846665859222,-0.342664122581482,-0.327983170747757,-0.880345523357391,-0.322462350130081,-0.41818904876709,-0.849197149276733,-0.244907066226006,-0.41137021780014,-0.877949297428131,-0.244907066226006,-0.41137021780014,-0.877949297428131,-0.222494021058083,-0.48225525021553,-0.847305238246918,-0.14695331454277,-0.487882852554321,-0.860450387001038,-0.273532658815384,0.13772913813591,-0.95195084810257,-0.0671365335583687,0.25837117433548,-0.963710010051727,-0.243397936224937,0.275868088006973,-0.929867804050446,0.604620814323425,0.3550925552845,-0.712981641292572, +0.296846002340317,0.462029159069061,-0.835710108280182,0.339832067489624,0.245699539780617,-0.907824754714966,0.762523412704468,0.209198385477066,-0.612204253673553,0.604620814323425,0.3550925552845,-0.712981641292572,0.641266644001007,0.192435711622238,-0.742795765399933,-0.0104875238612294,0.437247008085251,-0.899280250072479,-0.0671365335583687,0.25837117433548,-0.963710010051727,0.296846002340317,0.462029159069061,-0.835710108280182,0.762523412704468,0.209198385477066,-0.612204253673553,0.681735038757324,0.241245195269585,-0.690679311752319,0.789060354232788,0.157426699995995,-0.59380167722702,0.625092506408691,-0.604773819446564,-0.493465125560761,0.794824421405792,-0.418989628553391,-0.438978016376495,0.575592994689941,-0.413253277540207,-0.705630421638489,-0.139115259051323,-0.403364926576614,-0.904402375221252,-0.134363085031509,-0.216802775859833,-0.966924548149109,-0.229749068617821,-0.540937960147858,-0.809074461460114,-0.139115259051323,-0.403364926576614,-0.904402375221252,-0.0873085409402847,-0.603740870952606,-0.792385101318359,0.0340926609933376,-0.221313118934631,-0.97460663318634,0.716789066791534,-0.171117842197418,-0.675967395305634,0.794824421405792,-0.418989628553391,-0.438978016376495,0.915197730064392,-0.146925732493401,-0.375267624855042,0.716789066791534,-0.171117842197418,-0.675967395305634,0.915197730064392,-0.146925732493401,-0.375267624855042,0.779977798461914,0.0397407822310925,-0.624544024467468,0.789060354232788,0.157426699995995,-0.59380167722702,0.662886917591095,0.205916300415993,-0.719846665859222,0.779977798461914,0.0397407822310925,-0.624544024467468,0.815599501132965,0.143775328993797,0.560469388961792,0.829673945903778,0.0656913742423058,0.554369568824768,0.865944743156433,0.138402700424194,0.480608224868774,0.876748085021973,0.153989613056183,0.455631375312805,0.884259343147278,0.133598208427429,0.447478234767914,0.876551508903503,0.130535870790482,0.463268488645554,0.876551508903503,0.130535870790482,0.463268488645554,0.865944743156433,0.138402700424194,0.480608224868774, +0.829673945903778,0.0656913742423058,0.554369568824768,0.883853137493134,0.176929026842117,0.433012276887894,0.891995787620544,0.134424671530724,0.431594043970108,0.876748085021973,0.153989613056183,0.455631375312805,0.891995787620544,0.134424671530724,0.431594043970108,0.883853137493134,0.176929026842117,0.433012276887894,0.921910107135773,0.143668547272682,0.35977903008461,0.815599501132965,0.143775328993797,0.560469388961792,0.763813734054565,0.16469806432724,0.624069690704346,0.818763613700867,0.0587400160729885,0.571117877960205,0.53188681602478,0.497823685407639,0.685031235218048,0.633636176586151,0.412671953439713,0.654375195503235,0.634985685348511,0.489749848842621,0.597442984580994,0.690089762210846,0.190121114253998,0.698305010795593,0.689618289470673,0.250702053308487,0.67939305305481,0.598678052425385,0.278391063213348,0.751054465770721,0.648529171943665,0.334934443235397,0.683541238307953,0.574704945087433,0.335110485553741,0.746602296829224,0.598678052425385,0.278391063213348,0.751054465770721,0.690089762210846,0.190121114253998,0.698305010795593,0.763813734054565,0.16469806432724,0.624069690704346,0.689618289470673,0.250702053308487,0.67939305305481,0.633636176586151,0.412671953439713,0.654375195503235,0.532427906990051,0.387019068002701,0.752819180488586,0.574704945087433,0.335110485553741,0.746602296829224,0.650490522384644,0.268959641456604,-0.710297524929047,0.688427805900574,0.138049885630608,-0.712045788764954,0.577990293502808,0.186815902590752,-0.794371962547302,0.650490522384644,0.268959641456604,-0.710297524929047,0.714156687259674,0.350119084119797,-0.606132566928864,0.745271384716034,0.245044037699699,-0.62009984254837,0.577990293502808,0.186815902590752,-0.794371962547302,0.494153320789337,0.125007286667824,-0.860340416431427,0.519868791103363,0.215344682335854,-0.826657712459564,0.480960696935654,0.181779980659485,-0.857690334320068,0.494153320789337,0.125007286667824,-0.860340416431427,0.490594416856766,0.0646678283810616,-0.868985056877136,0.557179033756256,0.058114442974329,-0.828356266021729, +0.480960696935654,0.181779980659485,-0.857690334320068,0.490594416856766,0.0646678283810616,-0.868985056877136,0.557179033756256,0.058114442974329,-0.828356266021729,0.534732222557068,0.119408138096333,-0.836542248725891,0.537626504898071,0.145928099751472,-0.830459237098694,0.534732222557068,0.119408138096333,-0.836542248725891,0.480789005756378,0.252536445856094,-0.839682757854462,0.42166593670845,0.214249700307846,-0.881075918674469,0.480789005756378,0.252536445856094,-0.839682757854462,0.454425156116486,0.266675531864166,-0.849930465221405,0.42166593670845,0.214249700307846,-0.881075918674469,0.504562020301819,0.257759422063828,-0.824000656604767,0.454425156116486,0.266675531864166,-0.849930465221405,0.475799560546875,0.236193165183067,-0.847247004508972,0.350853890180588,0.453524857759476,-0.819278120994568,0.50848126411438,0.333315879106522,-0.79394406080246,0.470065891742706,0.459650874137878,-0.753497838973999,0.504562020301819,0.257759422063828,-0.824000656604767,0.552212476730347,0.213840544223785,-0.805812299251556,0.50848126411438,0.333315879106522,-0.79394406080246,0.813303589820862,0.153394922614098,-0.561254978179932,0.775867819786072,0.237990275025368,-0.584285497665405,0.822655081748962,0.201511427760124,-0.531631052494049,0.730032742023468,0.332442373037338,-0.597104728221893,0.775867819786072,0.237990275025368,-0.584285497665405,0.745271384716034,0.245044037699699,-0.62009984254837,0.907014191150665,0.0387079268693924,-0.419317126274109,0.91690868139267,0.174721941351891,-0.35881832242012,0.94001030921936,0.0920321121811867,-0.328497648239136,0.907014191150665,0.0387079268693924,-0.419317126274109,0.853865325450897,0.0804380625486374,-0.514240860939026,0.822655081748962,0.201511427760124,-0.531631052494049,0.940793573856354,0.0505802817642689,-0.335184991359711,0.934192717075348,0.0429336838424206,-0.354175865650177,0.923126935958862,0.131743595004082,-0.361220389604568,0.94001030921936,0.0920321121811867,-0.328497648239136,0.923126935958862,0.131743595004082,-0.361220389604568,0.934192717075348,0.0429336838424206,-0.354175865650177, +0.940793573856354,0.0505802817642689,-0.335184991359711,0.977004110813141,0.0433221757411957,-0.208772659301758,0.967718005180359,-0.0434991233050823,-0.248253256082535,0.994125664234161,0.0802571251988411,0.0726129114627838,0.997222781181335,0.0733383446931839,0.0129663683474064,0.991664469242096,0.103529676795006,0.0766998901963234,0.995624542236328,0.0464732348918915,-0.0810676291584969,0.997222781181335,0.0733383446931839,0.0129663683474064,0.993707478046417,0.0627475306391716,-0.0927802845835686,0.993707478046417,0.0627475306391716,-0.0927802845835686,0.991080701351166,0.00263776117935777,-0.133235797286034,0.995624542236328,0.0464732348918915,-0.0810676291584969,0.989362061023712,0.0426139757037163,-0.139092117547989,0.991080701351166,0.00263776117935777,-0.133235797286034,0.984001815319061,-0.0558550469577312,-0.169176310300827,0.989362061023712,0.0426139757037163,-0.139092117547989,0.984001815319061,-0.0558550469577312,-0.169176310300827,0.977004110813141,0.0433221757411957,-0.208772659301758,0.992608487606049,0.0984156802296638,0.0710115134716034,0.990966320037842,0.103372938930988,0.0854383409023285,0.983834743499756,0.1214679479599,0.13158506155014,0.991664469242096,0.103529676795006,0.0766998901963234,0.990966320037842,0.103372938930988,0.0854383409023285,0.993747174739838,0.0890400856733322,0.0673668086528778,0.921910107135773,0.143668547272682,0.35977903008461,0.959013164043427,0.122901737689972,0.255321085453033,0.94500732421875,0.13183881342411,0.299298495054245,0.986563086509705,0.0994118005037308,0.129655301570892,0.983834743499756,0.1214679479599,0.13158506155014,0.959013164043427,0.122901737689972,0.255321085453033,0.422265231609344,0.531295299530029,-0.734450280666351,0.498168557882309,0.581444084644318,-0.643234550952911,0.358126550912857,0.552800953388214,-0.752433598041534,0.431917130947113,0.629780888557434,-0.645618677139282,0.498168557882309,0.581444084644318,-0.643234550952911,0.506984293460846,0.586879789829254,-0.631299316883087,0.422265231609344,0.531295299530029,-0.734450280666351,0.272250056266785,0.461064428091049,-0.844570517539978, +0.382911056280136,0.531540989875793,-0.755541622638702,0.381255835294724,0.598781168460846,-0.704347193241119,0.390216082334518,0.668762981891632,-0.632840692996979,0.506984293460846,0.586879789829254,-0.631299316883087,0.382911056280136,0.531540989875793,-0.755541622638702,0.272250056266785,0.461064428091049,-0.844570517539978,0.350853890180588,0.453524857759476,-0.819278120994568,0.361677795648575,0.620828151702881,-0.695529580116272,0.390216082334518,0.668762981891632,-0.632840692996979,0.381255835294724,0.598781168460846,-0.704347193241119,0.361677795648575,0.620828151702881,-0.695529580116272,0.400894403457642,0.659161508083344,-0.636230766773224,0.333078414201736,0.694071173667908,-0.638219237327576,0.340025782585144,0.744259536266327,-0.574856638908386,0.330519497394562,0.75350946187973,-0.568313419818878,0.400894403457642,0.659161508083344,-0.636230766773224,0.53188681602478,0.497823685407639,0.685031235218048,0.441919833421707,0.549427926540375,0.709109008312225,0.429103314876556,0.498154431581497,0.753466904163361,-0.222494021058083,-0.48225525021553,-0.847305238246918,-0.056326150894165,-0.624213576316834,-0.779220521450043,-0.14695331454277,-0.487882852554321,-0.860450387001038,-0.16542686522007,-0.543631672859192,-0.822859942913055,-0.056326150894165,-0.624213576316834,-0.779220521450043,-0.222494021058083,-0.48225525021553,-0.847305238246918,-0.16542686522007,-0.543631672859192,-0.822859942913055,-0.0813948139548302,-0.606748223304749,-0.79071569442749,-0.00674148509278893,-0.675062656402588,-0.737729489803314,-0.00674148509278893,-0.675062656402588,-0.737729489803314,-0.0813948139548302,-0.606748223304749,-0.79071569442749,0.0551909953355789,-0.709768116474152,-0.702269911766052,0.305507659912109,-0.860273361206055,-0.408160150051117,0.375278472900391,-0.878644526004791,-0.295211315155029,0.26640260219574,-0.83338850736618,-0.484244853258133,0.430734753608704,-0.890502274036407,-0.146537154912949,0.421492338180542,-0.890414535999298,-0.171773135662079,0.375278472900391,-0.878644526004791,-0.295211315155029, +0.0551909953355789,-0.709768116474152,-0.702269911766052,-0.0813948139548302,-0.606748223304749,-0.79071569442749,0.0108334235846996,-0.672669410705566,-0.739863753318787,0.158299401402473,-0.770670831203461,-0.617258131504059,0.0108334235846996,-0.672669410705566,-0.739863753318787,0.0481794439256191,-0.703149437904358,-0.709407806396484,0.168632209300995,-0.773483216762543,-0.610972046852112,0.20514203608036,-0.799168169498444,-0.565019309520721,0.26640260219574,-0.83338850736618,-0.484244853258133,0.158299401402473,-0.770670831203461,-0.617258131504059,0.0481794439256191,-0.703149437904358,-0.709407806396484,0.168632209300995,-0.773483216762543,-0.610972046852112,-0.322462350130081,-0.41818904876709,-0.849197149276733,-0.222494021058083,-0.48225525021553,-0.847305238246918,-0.244907066226006,-0.41137021780014,-0.877949297428131,-0.0104875238612294,0.437247008085251,-0.899280250072479,-0.243397936224937,0.275868088006973,-0.929867804050446,-0.0671365335583687,0.25837117433548,-0.963710010051727,-0.273532658815384,0.13772913813591,-0.95195084810257,-0.243397936224937,0.275868088006973,-0.929867804050446,-0.370775729417801,0.254168808460236,-0.893265604972839,0.55875027179718,0.517857015132904,-0.647782385349274,0.296846002340317,0.462029159069061,-0.835710108280182,0.604620814323425,0.3550925552845,-0.712981641292572,0.762523412704468,0.209198385477066,-0.612204253673553,0.819125831127167,0.362674564123154,-0.444409608840942,0.604620814323425,0.3550925552845,-0.712981641292572,0.358153164386749,0.538454413414001,-0.762753546237946,-0.0104875238612294,0.437247008085251,-0.899280250072479,0.296846002340317,0.462029159069061,-0.835710108280182,0.762523412704468,0.209198385477066,-0.612204253673553,0.789060354232788,0.157426699995995,-0.59380167722702,0.864535331726074,0.164899989962578,-0.474748998880386,-0.0873085409402847,-0.603740870952606,-0.792385101318359,-0.139115259051323,-0.403364926576614,-0.904402375221252,-0.229749068617821,-0.540937960147858,-0.809074461460114,0.779977798461914,0.0397407822310925,-0.624544024467468, +0.915197730064392,-0.146925732493401,-0.375267624855042,0.890632331371307,0.0630152896046638,-0.450336635112762,0.779977798461914,0.0397407822310925,-0.624544024467468,0.890632331371307,0.0630152896046638,-0.450336635112762,0.789060354232788,0.157426699995995,-0.59380167722702,0.818763613700867,0.0587400160729885,0.571117877960205,0.829673945903778,0.0656913742423058,0.554369568824768,0.815599501132965,0.143775328993797,0.560469388961792,0.876551508903503,0.130535870790482,0.463268488645554,0.860252141952515,0.0997577309608459,0.50001460313797,0.876748085021973,0.153989613056183,0.455631375312805,0.829673945903778,0.0656913742423058,0.554369568824768,0.860252141952515,0.0997577309608459,0.50001460313797,0.876551508903503,0.130535870790482,0.463268488645554,0.892123937606812,0.132717460393906,0.431857407093048,0.883853137493134,0.176929026842117,0.433012276887894,0.876748085021973,0.153989613056183,0.455631375312805,0.883853137493134,0.176929026842117,0.433012276887894,0.892123937606812,0.132717460393906,0.431857407093048,0.921910107135773,0.143668547272682,0.35977903008461,0.818763613700867,0.0587400160729885,0.571117877960205,0.763813734054565,0.16469806432724,0.624069690704346,0.779873669147491,0.062750481069088,0.622783482074738,0.633636176586151,0.412671953439713,0.654375195503235,0.53188681602478,0.497823685407639,0.685031235218048,0.532427906990051,0.387019068002701,0.752819180488586,0.690089762210846,0.190121114253998,0.698305010795593,0.598678052425385,0.278391063213348,0.751054465770721,0.547422468662262,0.252215713262558,0.797944664955139,0.574704945087433,0.335110485553741,0.746602296829224,0.534066021442413,0.283346205949783,0.796547710895538,0.598678052425385,0.278391063213348,0.751054465770721,0.779873669147491,0.062750481069088,0.622783482074738,0.763813734054565,0.16469806432724,0.624069690704346,0.690089762210846,0.190121114253998,0.698305010795593,0.532427906990051,0.387019068002701,0.752819180488586,0.455138683319092,0.373388975858688,0.80834972858429,0.574704945087433,0.335110485553741,0.746602296829224, +0.650490522384644,0.268959641456604,-0.710297524929047,0.745271384716034,0.245044037699699,-0.62009984254837,0.688427805900574,0.138049885630608,-0.712045788764954,0.581111192703247,0.115502871572971,-0.805585920810699,0.577990293502808,0.186815902590752,-0.794371962547302,0.688427805900574,0.138049885630608,-0.712045788764954,0.494153320789337,0.125007286667824,-0.860340416431427,0.577990293502808,0.186815902590752,-0.794371962547302,0.515605926513672,0.124178439378738,-0.847779512405396,0.494153320789337,0.125007286667824,-0.860340416431427,0.473369628190994,0.0215946063399315,-0.880599141120911,0.490594416856766,0.0646678283810616,-0.868985056877136,0.490594416856766,0.0646678283810616,-0.868985056877136,0.536770164966583,-0.0166747085750103,-0.843563616275787,0.557179033756256,0.058114442974329,-0.828356266021729,0.557179033756256,0.058114442974329,-0.828356266021729,0.591919362545013,0.0479413717985153,-0.804570019245148,0.534732222557068,0.119408138096333,-0.836542248725891,0.573262453079224,0.177994653582573,-0.799804925918579,0.480789005756378,0.252536445856094,-0.839682757854462,0.534732222557068,0.119408138096333,-0.836542248725891,0.480789005756378,0.252536445856094,-0.839682757854462,0.475799560546875,0.236193165183067,-0.847247004508972,0.454425156116486,0.266675531864166,-0.849930465221405,0.485797971487045,0.126404881477356,-0.86488264799118,0.504562020301819,0.257759422063828,-0.824000656604767,0.475799560546875,0.236193165183067,-0.847247004508972,0.50848126411438,0.333315879106522,-0.79394406080246,0.561587572097778,0.355489760637283,-0.747158885002136,0.470065891742706,0.459650874137878,-0.753497838973999,0.382911056280136,0.531540989875793,-0.755541622638702,0.350853890180588,0.453524857759476,-0.819278120994568,0.470065891742706,0.459650874137878,-0.753497838973999,0.504562020301819,0.257759422063828,-0.824000656604767,0.485797971487045,0.126404881477356,-0.86488264799118,0.552212476730347,0.213840544223785,-0.805812299251556,0.50848126411438,0.333315879106522,-0.79394406080246,0.552212476730347,0.213840544223785,-0.805812299251556, +0.561587572097778,0.355489760637283,-0.747158885002136,0.813303589820862,0.153394922614098,-0.561254978179932,0.787406146526337,0.154990419745445,-0.596631646156311,0.775867819786072,0.237990275025368,-0.584285497665405,0.813303589820862,0.153394922614098,-0.561254978179932,0.822655081748962,0.201511427760124,-0.531631052494049,0.853865325450897,0.0804380625486374,-0.514240860939026,0.787406146526337,0.154990419745445,-0.596631646156311,0.745271384716034,0.245044037699699,-0.62009984254837,0.775867819786072,0.237990275025368,-0.584285497665405,0.907014191150665,0.0387079268693924,-0.419317126274109,0.94001030921936,0.0920321121811867,-0.328497648239136,0.934192717075348,0.0429336838424206,-0.354175865650177,0.907014191150665,0.0387079268693924,-0.419317126274109,0.889235496520996,-0.00250716507434845,-0.457442790269852,0.853865325450897,0.0804380625486374,-0.514240860939026,0.940793573856354,0.0505802817642689,-0.335184991359711,0.955942988395691,-0.0601149387657642,-0.287330865859985,0.934192717075348,0.0429336838424206,-0.354175865650177,0.984001815319061,-0.0558550469577312,-0.169176310300827,0.967718005180359,-0.0434991233050823,-0.248253256082535,0.977004110813141,0.0433221757411957,-0.208772659301758,0.971104085445404,-0.102035410702229,-0.215744152665138,0.940793573856354,0.0505802817642689,-0.335184991359711,0.967718005180359,-0.0434991233050823,-0.248253256082535,0.997222781181335,0.0733383446931839,0.0129663683474064,0.994125664234161,0.0802571251988411,0.0726129114627838,0.99464213848114,0.0858009904623032,0.0576634742319584,0.991664469242096,0.103529676795006,0.0766998901963234,0.993747174739838,0.0890400856733322,0.0673668086528778,0.994125664234161,0.0802571251988411,0.0726129114627838,0.998121857643127,0.0612327866256237,-0.00180621643085033,0.993707478046417,0.0627475306391716,-0.0927802845835686,0.997222781181335,0.0733383446931839,0.0129663683474064,0.991080701351166,0.00263776117935777,-0.133235797286034,0.993707478046417,0.0627475306391716,-0.0927802845835686,0.98100221157074,0.0559866800904274,-0.185741990804672, +0.979127049446106,-0.0673134922981262,-0.191778719425201,0.984001815319061,-0.0558550469577312,-0.169176310300827,0.991080701351166,0.00263776117935777,-0.133235797286034,0.992608487606049,0.0984156802296638,0.0710115134716034,0.993747174739838,0.0890400856733322,0.0673668086528778,0.990966320037842,0.103372938930988,0.0854383409023285,0.983834743499756,0.1214679479599,0.13158506155014,0.986563086509705,0.0994118005037308,0.129655301570892,0.992608487606049,0.0984156802296638,0.0710115134716034,0.926792621612549,0.130023613572121,0.352348238229752,0.959013164043427,0.122901737689972,0.255321085453033,0.921910107135773,0.143668547272682,0.35977903008461,0.986563086509705,0.0994118005037308,0.129655301570892,0.959013164043427,0.122901737689972,0.255321085453033,0.960697293281555,0.0575704798102379,0.271562159061432,0.422265231609344,0.531295299530029,-0.734450280666351,0.504660964012146,0.56217497587204,-0.655191898345947,0.498168557882309,0.581444084644318,-0.643234550952911,0.504660964012146,0.56217497587204,-0.655191898345947,0.506984293460846,0.586879789829254,-0.631299316883087,0.498168557882309,0.581444084644318,-0.643234550952911,0.422265231609344,0.531295299530029,-0.734450280666351,0.382911056280136,0.531540989875793,-0.755541622638702,0.504660964012146,0.56217497587204,-0.655191898345947,0.417249441146851,0.522487699985504,-0.743578732013702,0.381255835294724,0.598781168460846,-0.704347193241119,0.506984293460846,0.586879789829254,-0.631299316883087,0.361677795648575,0.620828151702881,-0.695529580116272,0.381255835294724,0.598781168460846,-0.704347193241119,0.356160253286362,0.510192036628723,-0.782849848270416,0.361677795648575,0.620828151702881,-0.695529580116272,0.428675949573517,0.550652027130127,-0.716253519058228,0.400894403457642,0.659161508083344,-0.636230766773224,0.400894403457642,0.659161508083344,-0.636230766773224,0.367902219295502,0.592130362987518,-0.716958463191986,0.340025782585144,0.744259536266327,-0.574856638908386,0.53188681602478,0.497823685407639,0.685031235218048,0.429103314876556,0.498154431581497,0.753466904163361, +0.427891552448273,0.414320558309555,0.803272783756256,-0.26857390999794,-0.466782569885254,-0.842604279518127,-0.16542686522007,-0.543631672859192,-0.822859942913055,-0.222494021058083,-0.48225525021553,-0.847305238246918,-0.16542686522007,-0.543631672859192,-0.822859942913055,-0.207031965255737,-0.494574069976807,-0.844117343425751,-0.0813948139548302,-0.606748223304749,-0.79071569442749,0.358274102210999,-0.902628362178802,-0.238540574908257,0.375278472900391,-0.878644526004791,-0.295211315155029,0.305507659912109,-0.860273361206055,-0.408160150051117,0.305507659912109,-0.860273361206055,-0.408160150051117,0.26640260219574,-0.83338850736618,-0.484244853258133,0.20514203608036,-0.799168169498444,-0.565019309520721,0.375278472900391,-0.878644526004791,-0.295211315155029,0.358274102210999,-0.902628362178802,-0.238540574908257,0.430734753608704,-0.890502274036407,-0.146537154912949,-0.0971041843295097,-0.592953503131866,-0.79936021566391,0.0108334235846996,-0.672669410705566,-0.739863753318787,-0.0813948139548302,-0.606748223304749,-0.79071569442749,0.0481794439256191,-0.703149437904358,-0.709407806396484,0.0108334235846996,-0.672669410705566,-0.739863753318787,-0.0971041843295097,-0.592953503131866,-0.79936021566391,0.168632209300995,-0.773483216762543,-0.610972046852112,0.109589278697968,-0.739635765552521,-0.664024889469147,0.20514203608036,-0.799168169498444,-0.565019309520721,0.0481794439256191,-0.703149437904358,-0.709407806396484,0.109589278697968,-0.739635765552521,-0.664024889469147,0.168632209300995,-0.773483216762543,-0.610972046852112,-0.322462350130081,-0.41818904876709,-0.849197149276733,-0.26857390999794,-0.466782569885254,-0.842604279518127,-0.222494021058083,-0.48225525021553,-0.847305238246918,-0.0104875238612294,0.437247008085251,-0.899280250072479,-0.248878836631775,0.361877858638763,-0.898389458656311,-0.243397936224937,0.275868088006973,-0.929867804050446,-0.248878836631775,0.361877858638763,-0.898389458656311,-0.370775729417801,0.254168808460236,-0.893265604972839,-0.243397936224937,0.275868088006973,-0.929867804050446, +0.55875027179718,0.517857015132904,-0.647782385349274,0.487281411886215,0.536333978176117,-0.689131796360016,0.296846002340317,0.462029159069061,-0.835710108280182,0.55875027179718,0.517857015132904,-0.647782385349274,0.604620814323425,0.3550925552845,-0.712981641292572,0.819125831127167,0.362674564123154,-0.444409608840942,0.864535331726074,0.164899989962578,-0.474748998880386,0.819125831127167,0.362674564123154,-0.444409608840942,0.762523412704468,0.209198385477066,-0.612204253673553,-0.0104875238612294,0.437247008085251,-0.899280250072479,0.358153164386749,0.538454413414001,-0.762753546237946,0.0803697183728218,0.608264863491058,-0.789654612541199,0.358153164386749,0.538454413414001,-0.762753546237946,0.296846002340317,0.462029159069061,-0.835710108280182,0.487281411886215,0.536333978176117,-0.689131796360016,0.890632331371307,0.0630152896046638,-0.450336635112762,0.864535331726074,0.164899989962578,-0.474748998880386,0.789060354232788,0.157426699995995,-0.59380167722702,0.890632331371307,0.0630152896046638,-0.450336635112762,0.915197730064392,-0.146925732493401,-0.375267624855042,0.977198898792267,-0.0325850620865822,-0.209810361266136,0.818763613700867,0.0587400160729885,0.571117877960205,0.824878990650177,-0.0212418213486671,0.564909994602203,0.829673945903778,0.0656913742423058,0.554369568824768,0.880931437015533,0.0741616263985634,0.467396765947342,0.876748085021973,0.153989613056183,0.455631375312805,0.860252141952515,0.0997577309608459,0.50001460313797,0.829673945903778,0.0656913742423058,0.554369568824768,0.793546915054321,0.0732712894678116,0.604081571102142,0.860252141952515,0.0997577309608459,0.50001460313797,0.876748085021973,0.153989613056183,0.455631375312805,0.880931437015533,0.0741616263985634,0.467396765947342,0.892123937606812,0.132717460393906,0.431857407093048,0.921910107135773,0.143668547272682,0.35977903008461,0.892123937606812,0.132717460393906,0.431857407093048,0.926792621612549,0.130023613572121,0.352348238229752,0.779873669147491,0.062750481069088,0.622783482074738,0.819366753101349,-0.0297588370740414,0.572496652603149, +0.818763613700867,0.0587400160729885,0.571117877960205,0.53188681602478,0.497823685407639,0.685031235218048,0.427891552448273,0.414320558309555,0.803272783756256,0.532427906990051,0.387019068002701,0.752819180488586,0.547422468662262,0.252215713262558,0.797944664955139,0.598678052425385,0.278391063213348,0.751054465770721,0.539537906646729,0.253582417964935,0.802866518497467,0.582623243331909,0.140161111950874,0.800565302371979,0.690089762210846,0.190121114253998,0.698305010795593,0.547422468662262,0.252215713262558,0.797944664955139,0.455138683319092,0.373388975858688,0.80834972858429,0.534066021442413,0.283346205949783,0.796547710895538,0.574704945087433,0.335110485553741,0.746602296829224,0.598678052425385,0.278391063213348,0.751054465770721,0.534066021442413,0.283346205949783,0.796547710895538,0.539537906646729,0.253582417964935,0.802866518497467,0.711164474487305,0.0377239063382149,0.702012658119202,0.779873669147491,0.062750481069088,0.622783482074738,0.690089762210846,0.190121114253998,0.698305010795593,0.455138683319092,0.373388975858688,0.80834972858429,0.532427906990051,0.387019068002701,0.752819180488586,0.427891552448273,0.414320558309555,0.803272783756256,0.745271384716034,0.245044037699699,-0.62009984254837,0.787406146526337,0.154990419745445,-0.596631646156311,0.688427805900574,0.138049885630608,-0.712045788764954,0.581111192703247,0.115502871572971,-0.805585920810699,0.515605926513672,0.124178439378738,-0.847779512405396,0.577990293502808,0.186815902590752,-0.794371962547302,0.653156340122223,-0.0093846321105957,-0.757164835929871,0.581111192703247,0.115502871572971,-0.805585920810699,0.688427805900574,0.138049885630608,-0.712045788764954,0.494153320789337,0.125007286667824,-0.860340416431427,0.515605926513672,0.124178439378738,-0.847779512405396,0.473369628190994,0.0215946063399315,-0.880599141120911,0.490594416856766,0.0646678283810616,-0.868985056877136,0.473369628190994,0.0215946063399315,-0.880599141120911,0.536770164966583,-0.0166747085750103,-0.843563616275787,0.597113132476807,0.00542105128988624,-0.80213862657547, +0.557179033756256,0.058114442974329,-0.828356266021729,0.536770164966583,-0.0166747085750103,-0.843563616275787,0.597113132476807,0.00542105128988624,-0.80213862657547,0.591919362545013,0.0479413717985153,-0.804570019245148,0.557179033756256,0.058114442974329,-0.828356266021729,0.591919362545013,0.0479413717985153,-0.804570019245148,0.632226586341858,0.11749354749918,-0.765822887420654,0.534732222557068,0.119408138096333,-0.836542248725891,0.512739717960358,0.19626721739769,-0.835809230804443,0.480789005756378,0.252536445856094,-0.839682757854462,0.573262453079224,0.177994653582573,-0.799804925918579,0.573262453079224,0.177994653582573,-0.799804925918579,0.534732222557068,0.119408138096333,-0.836542248725891,0.632226586341858,0.11749354749918,-0.765822887420654,0.475799560546875,0.236193165183067,-0.847247004508972,0.480789005756378,0.252536445856094,-0.839682757854462,0.512739717960358,0.19626721739769,-0.835809230804443,0.475799560546875,0.236193165183067,-0.847247004508972,0.473250657320023,0.0730120167136192,-0.877896904945374,0.485797971487045,0.126404881477356,-0.86488264799118,0.470065891742706,0.459650874137878,-0.753497838973999,0.561587572097778,0.355489760637283,-0.747158885002136,0.523207783699036,0.485992342233658,-0.700046360492706,0.382911056280136,0.531540989875793,-0.755541622638702,0.470065891742706,0.459650874137878,-0.753497838973999,0.523207783699036,0.485992342233658,-0.700046360492706,0.485797971487045,0.126404881477356,-0.86488264799118,0.492007702589035,0.0884381383657455,-0.866087138652802,0.552212476730347,0.213840544223785,-0.805812299251556,0.54923403263092,0.199836477637291,-0.811422944068909,0.561587572097778,0.355489760637283,-0.747158885002136,0.552212476730347,0.213840544223785,-0.805812299251556,0.813303589820862,0.153394922614098,-0.561254978179932,0.843974828720093,0.0490944646298885,-0.534130930900574,0.787406146526337,0.154990419745445,-0.596631646156311,0.853865325450897,0.0804380625486374,-0.514240860939026,0.843974828720093,0.0490944646298885,-0.534130930900574,0.813303589820862,0.153394922614098,-0.561254978179932, +0.907014191150665,0.0387079268693924,-0.419317126274109,0.934192717075348,0.0429336838424206,-0.354175865650177,0.931298315525055,-0.0300312526524067,-0.363017141819,0.907014191150665,0.0387079268693924,-0.419317126274109,0.912398934364319,-0.0819554850459099,-0.401012659072876,0.889235496520996,-0.00250716507434845,-0.457442790269852,0.843974828720093,0.0490944646298885,-0.534130930900574,0.853865325450897,0.0804380625486374,-0.514240860939026,0.889235496520996,-0.00250716507434845,-0.457442790269852,0.971104085445404,-0.102035410702229,-0.215744152665138,0.955942988395691,-0.0601149387657642,-0.287330865859985,0.940793573856354,0.0505802817642689,-0.335184991359711,0.931298315525055,-0.0300312526524067,-0.363017141819,0.934192717075348,0.0429336838424206,-0.354175865650177,0.955942988395691,-0.0601149387657642,-0.287330865859985,0.971104085445404,-0.102035410702229,-0.215744152665138,0.967718005180359,-0.0434991233050823,-0.248253256082535,0.984001815319061,-0.0558550469577312,-0.169176310300827,0.99464213848114,0.0858009904623032,0.0576634742319584,0.994125664234161,0.0802571251988411,0.0726129114627838,0.993747174739838,0.0890400856733322,0.0673668086528778,0.998121857643127,0.0612327866256237,-0.00180621643085033,0.997222781181335,0.0733383446931839,0.0129663683474064,0.99464213848114,0.0858009904623032,0.0576634742319584,0.998121857643127,0.0612327866256237,-0.00180621643085033,0.997513055801392,0.0358073487877846,-0.0607079043984413,0.993707478046417,0.0627475306391716,-0.0927802845835686,0.993707478046417,0.0627475306391716,-0.0927802845835686,0.987943887710571,0.0594909600913525,-0.142925009131432,0.98100221157074,0.0559866800904274,-0.185741990804672,0.98100221157074,0.0559866800904274,-0.185741990804672,0.979127049446106,-0.0673134922981262,-0.191778719425201,0.991080701351166,0.00263776117935777,-0.133235797286034,0.971104085445404,-0.102035410702229,-0.215744152665138,0.984001815319061,-0.0558550469577312,-0.169176310300827,0.979127049446106,-0.0673134922981262,-0.191778719425201,0.99464213848114,0.0858009904623032,0.0576634742319584, +0.993747174739838,0.0890400856733322,0.0673668086528778,0.992608487606049,0.0984156802296638,0.0710115134716034,0.992608487606049,0.0984156802296638,0.0710115134716034,0.986563086509705,0.0994118005037308,0.129655301570892,0.994979023933411,0.0820356979966164,0.0573306493461132,0.959013164043427,0.122901737689972,0.255321085453033,0.926792621612549,0.130023613572121,0.352348238229752,0.949562668800354,0.0781925395131111,0.303671717643738,0.960697293281555,0.0575704798102379,0.271562159061432,0.959013164043427,0.122901737689972,0.255321085453033,0.949562668800354,0.0781925395131111,0.303671717643738,0.960697293281555,0.0575704798102379,0.271562159061432,0.978698790073395,0.0698570162057877,0.193050786852837,0.986563086509705,0.0994118005037308,0.129655301570892,0.506984293460846,0.586879789829254,-0.631299316883087,0.504660964012146,0.56217497587204,-0.655191898345947,0.526448786258698,0.483851701021194,-0.699098765850067,0.382911056280136,0.531540989875793,-0.755541622638702,0.523207783699036,0.485992342233658,-0.700046360492706,0.504660964012146,0.56217497587204,-0.655191898345947,0.417249441146851,0.522487699985504,-0.743578732013702,0.356160253286362,0.510192036628723,-0.782849848270416,0.381255835294724,0.598781168460846,-0.704347193241119,0.526448786258698,0.483851701021194,-0.699098765850067,0.417249441146851,0.522487699985504,-0.743578732013702,0.506984293460846,0.586879789829254,-0.631299316883087,0.361677795648575,0.620828151702881,-0.695529580116272,0.356160253286362,0.510192036628723,-0.782849848270416,0.428675949573517,0.550652027130127,-0.716253519058228,0.428675949573517,0.550652027130127,-0.716253519058228,0.367902219295502,0.592130362987518,-0.716958463191986,0.400894403457642,0.659161508083344,-0.636230766773224,0.429103314876556,0.498154431581497,0.753466904163361,0.461232125759125,0.418584406375885,0.782337427139282,0.427891552448273,0.414320558309555,0.803272783756256,-0.16542686522007,-0.543631672859192,-0.822859942913055,-0.26857390999794,-0.466782569885254,-0.842604279518127,-0.207031965255737,-0.494574069976807,-0.844117343425751, +-0.0971041843295097,-0.592953503131866,-0.79936021566391,-0.0813948139548302,-0.606748223304749,-0.79071569442749,-0.207031965255737,-0.494574069976807,-0.844117343425751,0.358274102210999,-0.902628362178802,-0.238540574908257,0.305507659912109,-0.860273361206055,-0.408160150051117,0.310987025499344,-0.878971934318542,-0.361518085002899,0.234301656484604,-0.826753735542297,-0.511449694633484,0.305507659912109,-0.860273361206055,-0.408160150051117,0.20514203608036,-0.799168169498444,-0.565019309520721,0.00230991607531905,-0.663799524307251,-0.747906804084778,0.0481794439256191,-0.703149437904358,-0.709407806396484,-0.0971041843295097,-0.592953503131866,-0.79936021566391,0.109589278697968,-0.739635765552521,-0.664024889469147,0.141081020236015,-0.762275993824005,-0.631689250469208,0.20514203608036,-0.799168169498444,-0.565019309520721,0.00230991607531905,-0.663799524307251,-0.747906804084778,0.109589278697968,-0.739635765552521,-0.664024889469147,0.0481794439256191,-0.703149437904358,-0.709407806396484,-0.0104875238612294,0.437247008085251,-0.899280250072479,-0.161872610449791,0.455040544271469,-0.87563419342041,-0.248878836631775,0.361877858638763,-0.898389458656311,-0.376515060663223,0.377286076545715,-0.846103727817535,-0.370775729417801,0.254168808460236,-0.893265604972839,-0.248878836631775,0.361877858638763,-0.898389458656311,0.55875027179718,0.517857015132904,-0.647782385349274,0.710056066513062,0.515734851360321,-0.479413986206055,0.487281411886215,0.536333978176117,-0.689131796360016,0.819125831127167,0.362674564123154,-0.444409608840942,0.710056066513062,0.515734851360321,-0.479413986206055,0.55875027179718,0.517857015132904,-0.647782385349274,0.958265602588654,0.13981930911541,-0.249354094266891,0.819125831127167,0.362674564123154,-0.444409608840942,0.864535331726074,0.164899989962578,-0.474748998880386,0.388638734817505,0.687623679637909,-0.613297164440155,0.0803697183728218,0.608264863491058,-0.789654612541199,0.358153164386749,0.538454413414001,-0.762753546237946,-0.0104875238612294,0.437247008085251,-0.899280250072479, +0.0803697183728218,0.608264863491058,-0.789654612541199,-0.161872610449791,0.455040544271469,-0.87563419342041,0.358153164386749,0.538454413414001,-0.762753546237946,0.487281411886215,0.536333978176117,-0.689131796360016,0.638254046440125,0.559140503406525,-0.529144108295441,0.890632331371307,0.0630152896046638,-0.450336635112762,0.958265602588654,0.13981930911541,-0.249354094266891,0.864535331726074,0.164899989962578,-0.474748998880386,0.958265602588654,0.13981930911541,-0.249354094266891,0.890632331371307,0.0630152896046638,-0.450336635112762,0.977198898792267,-0.0325850620865822,-0.209810361266136,0.819366753101349,-0.0297588370740414,0.572496652603149,0.824878990650177,-0.0212418213486671,0.564909994602203,0.818763613700867,0.0587400160729885,0.571117877960205,0.824878990650177,-0.0212418213486671,0.564909994602203,0.776550829410553,0.0178721006959677,0.629800856113434,0.829673945903778,0.0656913742423058,0.554369568824768,0.860252141952515,0.0997577309608459,0.50001460313797,0.889370262622833,0.0338788852095604,0.455930471420288,0.880931437015533,0.0741616263985634,0.467396765947342,0.793546915054321,0.0732712894678116,0.604081571102142,0.829673945903778,0.0656913742423058,0.554369568824768,0.776550829410553,0.0178721006959677,0.629800856113434,0.840847790241241,0.0312302578240633,0.540369808673859,0.860252141952515,0.0997577309608459,0.50001460313797,0.793546915054321,0.0732712894678116,0.604081571102142,0.884613394737244,0.034201443195343,0.465069115161896,0.892123937606812,0.132717460393906,0.431857407093048,0.880931437015533,0.0741616263985634,0.467396765947342,0.92533540725708,0.0322638303041458,0.377774178981781,0.926792621612549,0.130023613572121,0.352348238229752,0.892123937606812,0.132717460393906,0.431857407093048,0.781428933143616,-0.0456612184643745,0.62232118844986,0.819366753101349,-0.0297588370740414,0.572496652603149,0.779873669147491,0.062750481069088,0.622783482074738,0.547422468662262,0.252215713262558,0.797944664955139,0.539537906646729,0.253582417964935,0.802866518497467,0.484941780567169,0.175580218434334,0.85673975944519, +0.582623243331909,0.140161111950874,0.800565302371979,0.711164474487305,0.0377239063382149,0.702012658119202,0.690089762210846,0.190121114253998,0.698305010795593,0.582623243331909,0.140161111950874,0.800565302371979,0.547422468662262,0.252215713262558,0.797944664955139,0.416627138853073,0.152797341346741,0.896144330501556,0.535246551036835,0.327803701162338,0.778495788574219,0.534066021442413,0.283346205949783,0.796547710895538,0.455138683319092,0.373388975858688,0.80834972858429,0.539537906646729,0.253582417964935,0.802866518497467,0.534066021442413,0.283346205949783,0.796547710895538,0.528396844863892,0.199498981237412,0.825225293636322,0.711164474487305,0.0377239063382149,0.702012658119202,0.781428933143616,-0.0456612184643745,0.62232118844986,0.779873669147491,0.062750481069088,0.622783482074738,0.427891552448273,0.414320558309555,0.803272783756256,0.461232125759125,0.418584406375885,0.782337427139282,0.455138683319092,0.373388975858688,0.80834972858429,0.770876824855804,0.0467582494020462,-0.635265648365021,0.688427805900574,0.138049885630608,-0.712045788764954,0.787406146526337,0.154990419745445,-0.596631646156311,0.515605926513672,0.124178439378738,-0.847779512405396,0.581111192703247,0.115502871572971,-0.805585920810699,0.486023157835007,0.0746106877923012,-0.870755195617676,0.653156340122223,-0.0093846321105957,-0.757164835929871,0.486023157835007,0.0746106877923012,-0.870755195617676,0.581111192703247,0.115502871572971,-0.805585920810699,0.653156340122223,-0.0093846321105957,-0.757164835929871,0.688427805900574,0.138049885630608,-0.712045788764954,0.770876824855804,0.0467582494020462,-0.635265648365021,0.409531861543655,0.0557789765298367,-0.910588920116425,0.473369628190994,0.0215946063399315,-0.880599141120911,0.515605926513672,0.124178439378738,-0.847779512405396,0.473369628190994,0.0215946063399315,-0.880599141120911,0.475906997919083,0.0214995536953211,-0.87923276424408,0.536770164966583,-0.0166747085750103,-0.843563616275787,0.597113132476807,0.00542105128988624,-0.80213862657547,0.536770164966583,-0.0166747085750103,-0.843563616275787, +0.636208057403564,0.0471470169723034,-0.770075500011444,0.591919362545013,0.0479413717985153,-0.804570019245148,0.597113132476807,0.00542105128988624,-0.80213862657547,0.651559829711914,0.054255586117506,-0.756654441356659,0.651559829711914,0.054255586117506,-0.756654441356659,0.632226586341858,0.11749354749918,-0.765822887420654,0.591919362545013,0.0479413717985153,-0.804570019245148,0.512739717960358,0.19626721739769,-0.835809230804443,0.573262453079224,0.177994653582573,-0.799804925918579,0.549071431159973,0.11498611420393,-0.827827632427216,0.632226586341858,0.11749354749918,-0.765822887420654,0.621554553508759,0.143720075488091,-0.770074248313904,0.573262453079224,0.177994653582573,-0.799804925918579,0.475799560546875,0.236193165183067,-0.847247004508972,0.512739717960358,0.19626721739769,-0.835809230804443,0.473250657320023,0.0730120167136192,-0.877896904945374,0.458113223314285,0.0385177098214626,-0.88805890083313,0.485797971487045,0.126404881477356,-0.86488264799118,0.473250657320023,0.0730120167136192,-0.877896904945374,0.53342193365097,0.3896404504776,-0.750760436058044,0.523207783699036,0.485992342233658,-0.700046360492706,0.561587572097778,0.355489760637283,-0.747158885002136,0.437327206134796,0.0349518209695816,-0.898622930049896,0.492007702589035,0.0884381383657455,-0.866087138652802,0.485797971487045,0.126404881477356,-0.86488264799118,0.492007702589035,0.0884381383657455,-0.866087138652802,0.503515183925629,0.106144569814205,-0.857441306114197,0.552212476730347,0.213840544223785,-0.805812299251556,0.561587572097778,0.355489760637283,-0.747158885002136,0.54923403263092,0.199836477637291,-0.811422944068909,0.53342193365097,0.3896404504776,-0.750760436058044,0.54923403263092,0.199836477637291,-0.811422944068909,0.552212476730347,0.213840544223785,-0.805812299251556,0.503515183925629,0.106144569814205,-0.857441306114197,0.770876824855804,0.0467582494020462,-0.635265648365021,0.787406146526337,0.154990419745445,-0.596631646156311,0.843974828720093,0.0490944646298885,-0.534130930900574,0.912398934364319,-0.0819554850459099,-0.401012659072876, +0.907014191150665,0.0387079268693924,-0.419317126274109,0.931298315525055,-0.0300312526524067,-0.363017141819,0.912398934364319,-0.0819554850459099,-0.401012659072876,0.886006236076355,-0.0719109103083611,-0.458062916994095,0.889235496520996,-0.00250716507434845,-0.457442790269852,0.886006236076355,-0.0719109103083611,-0.458062916994095,0.843974828720093,0.0490944646298885,-0.534130930900574,0.889235496520996,-0.00250716507434845,-0.457442790269852,0.976642251014709,-0.047733835875988,-0.209502711892128,0.955942988395691,-0.0601149387657642,-0.287330865859985,0.971104085445404,-0.102035410702229,-0.215744152665138,0.955942988395691,-0.0601149387657642,-0.287330865859985,0.931051731109619,-0.0982529073953629,-0.351409941911697,0.931298315525055,-0.0300312526524067,-0.363017141819,0.998121857643127,0.0612327866256237,-0.00180621643085033,0.99464213848114,0.0858009904623032,0.0576634742319584,0.999041378498077,0.0435862205922604,0.00405724579468369,0.998121857643127,0.0612327866256237,-0.00180621643085033,0.999041378498077,0.0435862205922604,0.00405724579468369,0.997513055801392,0.0358073487877846,-0.0607079043984413,0.997513055801392,0.0358073487877846,-0.0607079043984413,0.987943887710571,0.0594909600913525,-0.142925009131432,0.993707478046417,0.0627475306391716,-0.0927802845835686,0.966534972190857,0.105368159711361,-0.233896598219872,0.98100221157074,0.0559866800904274,-0.185741990804672,0.987943887710571,0.0594909600913525,-0.142925009131432,0.98100221157074,0.0559866800904274,-0.185741990804672,0.972177386283875,-0.0225763712078333,-0.233155220746994,0.979127049446106,-0.0673134922981262,-0.191778719425201,0.972177386283875,-0.0225763712078333,-0.233155220746994,0.971104085445404,-0.102035410702229,-0.215744152665138,0.979127049446106,-0.0673134922981262,-0.191778719425201,0.99464213848114,0.0858009904623032,0.0576634742319584,0.992608487606049,0.0984156802296638,0.0710115134716034,0.995716571807861,0.0743874683976173,0.0549079179763794,0.99306046962738,0.0626096054911613,0.0995535477995873,0.994979023933411,0.0820356979966164,0.0573306493461132, +0.986563086509705,0.0994118005037308,0.129655301570892,0.992608487606049,0.0984156802296638,0.0710115134716034,0.994979023933411,0.0820356979966164,0.0573306493461132,0.995716571807861,0.0743874683976173,0.0549079179763794,0.92533540725708,0.0322638303041458,0.377774178981781,0.949562668800354,0.0781925395131111,0.303671717643738,0.926792621612549,0.130023613572121,0.352348238229752,0.949562668800354,0.0781925395131111,0.303671717643738,0.92533540725708,0.0322638303041458,0.377774178981781,0.960697293281555,0.0575704798102379,0.271562159061432,0.978698790073395,0.0698570162057877,0.193050786852837,0.960697293281555,0.0575704798102379,0.271562159061432,0.960800766944885,0.0272945128381252,0.275892704725266,0.986563086509705,0.0994118005037308,0.129655301570892,0.978698790073395,0.0698570162057877,0.193050786852837,0.99306046962738,0.0626096054911613,0.0995535477995873,0.504660964012146,0.56217497587204,-0.655191898345947,0.523207783699036,0.485992342233658,-0.700046360492706,0.526448786258698,0.483851701021194,-0.699098765850067,0.417249441146851,0.522487699985504,-0.743578732013702,0.386861443519592,0.412118256092072,-0.824922204017639,0.356160253286362,0.510192036628723,-0.782849848270416,0.526448786258698,0.483851701021194,-0.699098765850067,0.386861443519592,0.412118256092072,-0.824922204017639,0.417249441146851,0.522487699985504,-0.743578732013702,0.356160253286362,0.510192036628723,-0.782849848270416,0.427693843841553,0.411923080682755,-0.804609954357147,0.428675949573517,0.550652027130127,-0.716253519058228,0.367902219295502,0.592130362987518,-0.716958463191986,0.428675949573517,0.550652027130127,-0.716253519058228,0.419792085886002,0.448674082756042,-0.788965165615082,-0.207523912191391,-0.489217460155487,-0.847112715244293,-0.0971041843295097,-0.592953503131866,-0.79936021566391,-0.207031965255737,-0.494574069976807,-0.844117343425751,0.310987025499344,-0.878971934318542,-0.361518085002899,0.305507659912109,-0.860273361206055,-0.408160150051117,0.234301656484604,-0.826753735542297,-0.511449694633484,0.310987025499344,-0.878971934318542,-0.361518085002899, +0.264668256044388,-0.877374768257141,-0.400205194950104,0.358274102210999,-0.902628362178802,-0.238540574908257,0.234301656484604,-0.826753735542297,-0.511449694633484,0.20514203608036,-0.799168169498444,-0.565019309520721,0.141081020236015,-0.762275993824005,-0.631689250469208,-0.0686419755220413,-0.590625703334808,-0.804020762443542,0.00230991607531905,-0.663799524307251,-0.747906804084778,-0.0971041843295097,-0.592953503131866,-0.79936021566391,0.0434797964990139,-0.686720907688141,-0.725619554519653,0.141081020236015,-0.762275993824005,-0.631689250469208,0.109589278697968,-0.739635765552521,-0.664024889469147,0.0434797964990139,-0.686720907688141,-0.725619554519653,0.109589278697968,-0.739635765552521,-0.664024889469147,0.00230991607531905,-0.663799524307251,-0.747906804084778,-0.376515060663223,0.377286076545715,-0.846103727817535,-0.248878836631775,0.361877858638763,-0.898389458656311,-0.161872610449791,0.455040544271469,-0.87563419342041,0.710056066513062,0.515734851360321,-0.479413986206055,0.638254046440125,0.559140503406525,-0.529144108295441,0.487281411886215,0.536333978176117,-0.689131796360016,0.819125831127167,0.362674564123154,-0.444409608840942,0.898094594478607,0.396439015865326,-0.190425992012024,0.710056066513062,0.515734851360321,-0.479413986206055,0.819125831127167,0.362674564123154,-0.444409608840942,0.958265602588654,0.13981930911541,-0.249354094266891,0.946444749832153,0.287937253713608,-0.146063104271889,0.0803697183728218,0.608264863491058,-0.789654612541199,0.388638734817505,0.687623679637909,-0.613297164440155,0.107203759253025,0.785555064678192,-0.609434425830841,0.638254046440125,0.559140503406525,-0.529144108295441,0.388638734817505,0.687623679637909,-0.613297164440155,0.358153164386749,0.538454413414001,-0.762753546237946,0.0803697183728218,0.608264863491058,-0.789654612541199,-0.323579967021942,0.549561381340027,-0.770245492458344,-0.161872610449791,0.455040544271469,-0.87563419342041,0.819366753101349,-0.0297588370740414,0.572496652603149,0.798272967338562,-0.0687192976474762,0.598362565040588, +0.824878990650177,-0.0212418213486671,0.564909994602203,0.776550829410553,0.0178721006959677,0.629800856113434,0.824878990650177,-0.0212418213486671,0.564909994602203,0.798272967338562,-0.0687192976474762,0.598362565040588,0.860252141952515,0.0997577309608459,0.50001460313797,0.840847790241241,0.0312302578240633,0.540369808673859,0.889370262622833,0.0338788852095604,0.455930471420288,0.882728397846222,-0.0190966241061687,0.469495177268982,0.880931437015533,0.0741616263985634,0.467396765947342,0.889370262622833,0.0338788852095604,0.455930471420288,0.776550829410553,0.0178721006959677,0.629800856113434,0.759707450866699,0.0468159392476082,0.648577451705933,0.793546915054321,0.0732712894678116,0.604081571102142,0.840847790241241,0.0312302578240633,0.540369808673859,0.793546915054321,0.0732712894678116,0.604081571102142,0.759707450866699,0.0468159392476082,0.648577451705933,0.884613394737244,0.034201443195343,0.465069115161896,0.92533540725708,0.0322638303041458,0.377774178981781,0.892123937606812,0.132717460393906,0.431857407093048,0.884613394737244,0.034201443195343,0.465069115161896,0.880931437015533,0.0741616263985634,0.467396765947342,0.884250938892365,-0.0213509444147348,0.466523677110672,0.781428933143616,-0.0456612184643745,0.62232118844986,0.798272967338562,-0.0687192976474762,0.598362565040588,0.819366753101349,-0.0297588370740414,0.572496652603149,0.539537906646729,0.253582417964935,0.802866518497467,0.528396844863892,0.199498981237412,0.825225293636322,0.484941780567169,0.175580218434334,0.85673975944519,0.484941780567169,0.175580218434334,0.85673975944519,0.416627138853073,0.152797341346741,0.896144330501556,0.547422468662262,0.252215713262558,0.797944664955139,0.527404367923737,-0.0436218231916428,0.848493695259094,0.711164474487305,0.0377239063382149,0.702012658119202,0.582623243331909,0.140161111950874,0.800565302371979,0.582623243331909,0.140161111950874,0.800565302371979,0.416627138853073,0.152797341346741,0.896144330501556,0.418047726154327,0.0741972252726555,0.905389845371246,0.534066021442413,0.283346205949783,0.796547710895538, +0.535246551036835,0.327803701162338,0.778495788574219,0.528396844863892,0.199498981237412,0.825225293636322,0.519001066684723,0.418854564428329,0.745116472244263,0.535246551036835,0.327803701162338,0.778495788574219,0.455138683319092,0.373388975858688,0.80834972858429,0.711164474487305,0.0377239063382149,0.702012658119202,0.714871883392334,-0.10343100130558,0.691563546657562,0.781428933143616,-0.0456612184643745,0.62232118844986,0.517458736896515,0.401494145393372,0.75567102432251,0.455138683319092,0.373388975858688,0.80834972858429,0.461232125759125,0.418584406375885,0.782337427139282,0.515605926513672,0.124178439378738,-0.847779512405396,0.486023157835007,0.0746106877923012,-0.870755195617676,0.409531861543655,0.0557789765298367,-0.910588920116425,0.550106883049011,-0.0847030952572823,-0.830787420272827,0.486023157835007,0.0746106877923012,-0.870755195617676,0.653156340122223,-0.0093846321105957,-0.757164835929871,0.653156340122223,-0.0093846321105957,-0.757164835929871,0.770876824855804,0.0467582494020462,-0.635265648365021,0.779741048812866,-0.0521416626870632,-0.623927056789398,0.409531861543655,0.0557789765298367,-0.910588920116425,0.475906997919083,0.0214995536953211,-0.87923276424408,0.473369628190994,0.0215946063399315,-0.880599141120911,0.475906997919083,0.0214995536953211,-0.87923276424408,0.636208057403564,0.0471470169723034,-0.770075500011444,0.536770164966583,-0.0166747085750103,-0.843563616275787,0.597113132476807,0.00542105128988624,-0.80213862657547,0.636208057403564,0.0471470169723034,-0.770075500011444,0.651559829711914,0.054255586117506,-0.756654441356659,0.651559829711914,0.054255586117506,-0.756654441356659,0.640909969806671,0.0867284089326859,-0.762700736522675,0.632226586341858,0.11749354749918,-0.765822887420654,0.549071431159973,0.11498611420393,-0.827827632427216,0.573262453079224,0.177994653582573,-0.799804925918579,0.621554553508759,0.143720075488091,-0.770074248313904,0.512739717960358,0.19626721739769,-0.835809230804443,0.549071431159973,0.11498611420393,-0.827827632427216,0.473250657320023,0.0730120167136192,-0.877896904945374, +0.640909969806671,0.0867284089326859,-0.762700736522675,0.621554553508759,0.143720075488091,-0.770074248313904,0.632226586341858,0.11749354749918,-0.765822887420654,0.458113223314285,0.0385177098214626,-0.88805890083313,0.437327206134796,0.0349518209695816,-0.898622930049896,0.485797971487045,0.126404881477356,-0.86488264799118,0.458113223314285,0.0385177098214626,-0.88805890083313,0.473250657320023,0.0730120167136192,-0.877896904945374,0.447609335184097,0.00594133697450161,-0.894209384918213,0.526448786258698,0.483851701021194,-0.699098765850067,0.523207783699036,0.485992342233658,-0.700046360492706,0.53342193365097,0.3896404504776,-0.750760436058044,0.492007702589035,0.0884381383657455,-0.866087138652802,0.437327206134796,0.0349518209695816,-0.898622930049896,0.462107211351395,0.0128040798008442,-0.886731564998627,0.503515183925629,0.106144569814205,-0.857441306114197,0.492007702589035,0.0884381383657455,-0.866087138652802,0.462107211351395,0.0128040798008442,-0.886731564998627,0.411585301160812,0.281157642602921,-0.866918563842773,0.53342193365097,0.3896404504776,-0.750760436058044,0.54923403263092,0.199836477637291,-0.811422944068909,0.54923403263092,0.199836477637291,-0.811422944068909,0.503515183925629,0.106144569814205,-0.857441306114197,0.462107211351395,0.0128040798008442,-0.886731564998627,0.770876824855804,0.0467582494020462,-0.635265648365021,0.843974828720093,0.0490944646298885,-0.534130930900574,0.833244383335114,-0.0579651482403278,-0.549857914447784,0.912398934364319,-0.0819554850459099,-0.401012659072876,0.931298315525055,-0.0300312526524067,-0.363017141819,0.931051731109619,-0.0982529073953629,-0.351409941911697,0.912398934364319,-0.0819554850459099,-0.401012659072876,0.900888562202454,-0.154188558459282,-0.405740737915039,0.886006236076355,-0.0719109103083611,-0.458062916994095,0.843974828720093,0.0490944646298885,-0.534130930900574,0.886006236076355,-0.0719109103083611,-0.458062916994095,0.833244383335114,-0.0579651482403278,-0.549857914447784,0.956723988056183,0.00727630406618118,-0.290905654430389, +0.955942988395691,-0.0601149387657642,-0.287330865859985,0.976642251014709,-0.047733835875988,-0.209502711892128,0.971104085445404,-0.102035410702229,-0.215744152665138,0.973864257335663,-0.0844620615243912,-0.210842177271843,0.976642251014709,-0.047733835875988,-0.209502711892128,0.956723988056183,0.00727630406618118,-0.290905654430389,0.931051731109619,-0.0982529073953629,-0.351409941911697,0.955942988395691,-0.0601149387657642,-0.287330865859985,0.995716571807861,0.0743874683976173,0.0549079179763794,0.999041378498077,0.0435862205922604,0.00405724579468369,0.99464213848114,0.0858009904623032,0.0576634742319584,0.999041378498077,0.0435862205922604,0.00405724579468369,0.996821641921997,0.055038683116436,-0.0575959458947182,0.997513055801392,0.0358073487877846,-0.0607079043984413,0.997513055801392,0.0358073487877846,-0.0607079043984413,0.989664673805237,0.0306372288614511,-0.140089616179466,0.987943887710571,0.0594909600913525,-0.142925009131432,0.98100221157074,0.0559866800904274,-0.185741990804672,0.966534972190857,0.105368159711361,-0.233896598219872,0.972177386283875,-0.0225763712078333,-0.233155220746994,0.987943887710571,0.0594909600913525,-0.142925009131432,0.978594779968262,0.0267804972827435,-0.204046338796616,0.966534972190857,0.105368159711361,-0.233896598219872,0.972177386283875,-0.0225763712078333,-0.233155220746994,0.973864257335663,-0.0844620615243912,-0.210842177271843,0.971104085445404,-0.102035410702229,-0.215744152665138,0.99306046962738,0.0626096054911613,0.0995535477995873,0.994971573352814,0.0784601345658302,0.0622537061572075,0.994979023933411,0.0820356979966164,0.0573306493461132,0.994979023933411,0.0820356979966164,0.0573306493461132,0.993717193603516,0.105911798775196,0.0361775308847427,0.995716571807861,0.0743874683976173,0.0549079179763794,0.960697293281555,0.0575704798102379,0.271562159061432,0.92533540725708,0.0322638303041458,0.377774178981781,0.923303425312042,-0.00764118833467364,0.383995085954666,0.93627142906189,0.00324618141166866,0.351262152194977,0.960800766944885,0.0272945128381252,0.275892704725266, +0.960697293281555,0.0575704798102379,0.271562159061432,0.960800766944885,0.0272945128381252,0.275892704725266,0.977372407913208,0.00142864347435534,0.211520954966545,0.978698790073395,0.0698570162057877,0.193050786852837,0.977372407913208,0.00142864347435534,0.211520954966545,0.99306046962738,0.0626096054911613,0.0995535477995873,0.978698790073395,0.0698570162057877,0.193050786852837,0.386861443519592,0.412118256092072,-0.824922204017639,0.353334128856659,0.363242775201797,-0.862096011638641,0.356160253286362,0.510192036628723,-0.782849848270416,0.526448786258698,0.483851701021194,-0.699098765850067,0.53342193365097,0.3896404504776,-0.750760436058044,0.386861443519592,0.412118256092072,-0.824922204017639,0.353334128856659,0.363242775201797,-0.862096011638641,0.427693843841553,0.411923080682755,-0.804609954357147,0.356160253286362,0.510192036628723,-0.782849848270416,0.427693843841553,0.411923080682755,-0.804609954357147,0.419792085886002,0.448674082756042,-0.788965165615082,0.428675949573517,0.550652027130127,-0.716253519058228,-0.156739294528961,-0.530167639255524,-0.833279609680176,-0.0971041843295097,-0.592953503131866,-0.79936021566391,-0.207523912191391,-0.489217460155487,-0.847112715244293,0.250099152326584,-0.84684145450592,-0.469371736049652,0.310987025499344,-0.878971934318542,-0.361518085002899,0.234301656484604,-0.826753735542297,-0.511449694633484,0.310987025499344,-0.878971934318542,-0.361518085002899,0.250099152326584,-0.84684145450592,-0.469371736049652,0.264668256044388,-0.877374768257141,-0.400205194950104,0.141081020236015,-0.762275993824005,-0.631689250469208,0.167533129453659,-0.794724643230438,-0.583391129970551,0.234301656484604,-0.826753735542297,-0.511449694633484,0.00230991607531905,-0.663799524307251,-0.747906804084778,-0.0686419755220413,-0.590625703334808,-0.804020762443542,0.0434797964990139,-0.686720907688141,-0.725619554519653,-0.0686419755220413,-0.590625703334808,-0.804020762443542,-0.0971041843295097,-0.592953503131866,-0.79936021566391,-0.156739294528961,-0.530167639255524,-0.833279609680176, +0.141081020236015,-0.762275993824005,-0.631689250469208,0.0434797964990139,-0.686720907688141,-0.725619554519653,0.0719681605696678,-0.722024321556091,-0.688114404678345,-0.323579967021942,0.549561381340027,-0.770245492458344,-0.376515060663223,0.377286076545715,-0.846103727817535,-0.161872610449791,0.455040544271469,-0.87563419342041,0.710056066513062,0.515734851360321,-0.479413986206055,0.831369340419769,0.474342048168182,-0.289524763822556,0.638254046440125,0.559140503406525,-0.529144108295441,0.898094594478607,0.396439015865326,-0.190425992012024,0.819125831127167,0.362674564123154,-0.444409608840942,0.946444749832153,0.287937253713608,-0.146063104271889,0.710056066513062,0.515734851360321,-0.479413986206055,0.898094594478607,0.396439015865326,-0.190425992012024,0.831369340419769,0.474342048168182,-0.289524763822556,0.283147424459457,0.826739847660065,-0.48613640666008,0.107203759253025,0.785555064678192,-0.609434425830841,0.388638734817505,0.687623679637909,-0.613297164440155,0.0803697183728218,0.608264863491058,-0.789654612541199,0.107203759253025,0.785555064678192,-0.609434425830841,-0.160410523414612,0.728954017162323,-0.665503025054932,0.60730654001236,0.694242060184479,-0.386272698640823,0.388638734817505,0.687623679637909,-0.613297164440155,0.638254046440125,0.559140503406525,-0.529144108295441,-0.160410523414612,0.728954017162323,-0.665503025054932,-0.323579967021942,0.549561381340027,-0.770245492458344,0.0803697183728218,0.608264863491058,-0.789654612541199,0.797596335411072,0.0376388989388943,0.602016091346741,0.776550829410553,0.0178721006959677,0.629800856113434,0.798272967338562,-0.0687192976474762,0.598362565040588,0.889370262622833,0.0338788852095604,0.455930471420288,0.840847790241241,0.0312302578240633,0.540369808673859,0.882728397846222,-0.0190966241061687,0.469495177268982,0.880931437015533,0.0741616263985634,0.467396765947342,0.882728397846222,-0.0190966241061687,0.469495177268982,0.884250938892365,-0.0213509444147348,0.466523677110672,0.733118534088135,0.0435418635606766,0.678705513477325, +0.759707450866699,0.0468159392476082,0.648577451705933,0.776550829410553,0.0178721006959677,0.629800856113434,0.801024615764618,-0.0145774781703949,0.598453760147095,0.840847790241241,0.0312302578240633,0.540369808673859,0.759707450866699,0.0468159392476082,0.648577451705933,0.92533540725708,0.0322638303041458,0.377774178981781,0.884613394737244,0.034201443195343,0.465069115161896,0.89117169380188,-0.0418482162058353,0.451731532812119,0.89117169380188,-0.0418482162058353,0.451731532812119,0.884613394737244,0.034201443195343,0.465069115161896,0.884250938892365,-0.0213509444147348,0.466523677110672,0.781428933143616,-0.0456612184643745,0.62232118844986,0.714871883392334,-0.10343100130558,0.691563546657562,0.798272967338562,-0.0687192976474762,0.598362565040588,0.528396844863892,0.199498981237412,0.825225293636322,0.536041676998138,0.0606099404394627,0.842012822628021,0.484941780567169,0.175580218434334,0.85673975944519,0.484941780567169,0.175580218434334,0.85673975944519,0.404672175645828,0.0285102631896734,0.914017260074615,0.416627138853073,0.152797341346741,0.896144330501556,0.711164474487305,0.0377239063382149,0.702012658119202,0.527404367923737,-0.0436218231916428,0.848493695259094,0.714871883392334,-0.10343100130558,0.691563546657562,0.527404367923737,-0.0436218231916428,0.848493695259094,0.582623243331909,0.140161111950874,0.800565302371979,0.418047726154327,0.0741972252726555,0.905389845371246,0.418047726154327,0.0741972252726555,0.905389845371246,0.416627138853073,0.152797341346741,0.896144330501556,0.32241502404213,-0.013182639144361,0.946506440639496,0.535246551036835,0.327803701162338,0.778495788574219,0.57056051492691,0.178223669528961,0.801683843135834,0.528396844863892,0.199498981237412,0.825225293636322,0.535246551036835,0.327803701162338,0.778495788574219,0.519001066684723,0.418854564428329,0.745116472244263,0.599883317947388,0.396584540605545,0.694881677627563,0.517458736896515,0.401494145393372,0.75567102432251,0.519001066684723,0.418854564428329,0.745116472244263,0.455138683319092,0.373388975858688,0.80834972858429, +0.385661125183105,0.0138692781329155,-0.922536194324493,0.409531861543655,0.0557789765298367,-0.910588920116425,0.486023157835007,0.0746106877923012,-0.870755195617676,0.550106883049011,-0.0847030952572823,-0.830787420272827,0.385661125183105,0.0138692781329155,-0.922536194324493,0.486023157835007,0.0746106877923012,-0.870755195617676,0.653156340122223,-0.0093846321105957,-0.757164835929871,0.661749958992004,-0.172372028231621,-0.729640126228333,0.550106883049011,-0.0847030952572823,-0.830787420272827,0.770876824855804,0.0467582494020462,-0.635265648365021,0.833244383335114,-0.0579651482403278,-0.549857914447784,0.779741048812866,-0.0521416626870632,-0.623927056789398,0.653156340122223,-0.0093846321105957,-0.757164835929871,0.779741048812866,-0.0521416626870632,-0.623927056789398,0.750203549861908,-0.155082881450653,-0.64276260137558,0.347005605697632,0.0594865903258324,-0.935974538326263,0.475906997919083,0.0214995536953211,-0.87923276424408,0.409531861543655,0.0557789765298367,-0.910588920116425,0.475906997919083,0.0214995536953211,-0.87923276424408,0.539214253425598,0.142685815691948,-0.829993188381195,0.636208057403564,0.0471470169723034,-0.770075500011444,0.651559829711914,0.054255586117506,-0.756654441356659,0.636208057403564,0.0471470169723034,-0.770075500011444,0.640909969806671,0.0867284089326859,-0.762700736522675,0.621554553508759,0.143720075488091,-0.770074248313904,0.640909969806671,0.0867284089326859,-0.762700736522675,0.549071431159973,0.11498611420393,-0.827827632427216,0.472561955451965,0.0447320565581322,-0.880161464214325,0.473250657320023,0.0730120167136192,-0.877896904945374,0.549071431159973,0.11498611420393,-0.827827632427216,0.458113223314285,0.0385177098214626,-0.88805890083313,0.468684822320938,0.0495776012539864,-0.881973028182983,0.437327206134796,0.0349518209695816,-0.898622930049896,0.447609335184097,0.00594133697450161,-0.894209384918213,0.473250657320023,0.0730120167136192,-0.877896904945374,0.443331182003021,0.0381892360746861,-0.895543932914734,0.447609335184097,0.00594133697450161,-0.894209384918213, +0.492258459329605,-0.0248453002423048,-0.870094358921051,0.458113223314285,0.0385177098214626,-0.88805890083313,0.437327206134796,0.0349518209695816,-0.898622930049896,0.372824907302856,-0.00944842398166656,-0.927853584289551,0.462107211351395,0.0128040798008442,-0.886731564998627,0.411585301160812,0.281157642602921,-0.866918563842773,0.386861443519592,0.412118256092072,-0.824922204017639,0.53342193365097,0.3896404504776,-0.750760436058044,0.411585301160812,0.281157642602921,-0.866918563842773,0.54923403263092,0.199836477637291,-0.811422944068909,0.471269905567169,0.114976346492767,-0.874462723731995,0.471269905567169,0.114976346492767,-0.874462723731995,0.54923403263092,0.199836477637291,-0.811422944068909,0.462107211351395,0.0128040798008442,-0.886731564998627,0.912398934364319,-0.0819554850459099,-0.401012659072876,0.931051731109619,-0.0982529073953629,-0.351409941911697,0.904425024986267,-0.107085831463337,-0.412974387407303,0.900888562202454,-0.154188558459282,-0.405740737915039,0.912398934364319,-0.0819554850459099,-0.401012659072876,0.904425024986267,-0.107085831463337,-0.412974387407303,0.900888562202454,-0.154188558459282,-0.405740737915039,0.87516975402832,-0.163130477070808,-0.455484628677368,0.886006236076355,-0.0719109103083611,-0.458062916994095,0.87516975402832,-0.163130477070808,-0.455484628677368,0.833244383335114,-0.0579651482403278,-0.549857914447784,0.886006236076355,-0.0719109103083611,-0.458062916994095,0.956723988056183,0.00727630406618118,-0.290905654430389,0.976642251014709,-0.047733835875988,-0.209502711892128,0.946821868419647,0.120725274085999,-0.298250943422318,0.976642251014709,-0.047733835875988,-0.209502711892128,0.973864257335663,-0.0844620615243912,-0.210842177271843,0.967256307601929,0.0116027798503637,-0.253535956144333,0.93542492389679,-0.0343872681260109,-0.351848542690277,0.931051731109619,-0.0982529073953629,-0.351409941911697,0.956723988056183,0.00727630406618118,-0.290905654430389,0.993717193603516,0.105911798775196,0.0361775308847427,0.999041378498077,0.0435862205922604,0.00405724579468369, +0.995716571807861,0.0743874683976173,0.0549079179763794,0.999041378498077,0.0435862205922604,0.00405724579468369,0.997466206550598,0.0687126070261002,-0.0184304881840944,0.996821641921997,0.055038683116436,-0.0575959458947182,0.997513055801392,0.0358073487877846,-0.0607079043984413,0.996821641921997,0.055038683116436,-0.0575959458947182,0.989664673805237,0.0306372288614511,-0.140089616179466,0.978594779968262,0.0267804972827435,-0.204046338796616,0.987943887710571,0.0594909600913525,-0.142925009131432,0.989664673805237,0.0306372288614511,-0.140089616179466,0.966534972190857,0.105368159711361,-0.233896598219872,0.955889403820038,0.0774123594164848,-0.283342003822327,0.972177386283875,-0.0225763712078333,-0.233155220746994,0.946498930454254,0.134794771671295,-0.293206512928009,0.966534972190857,0.105368159711361,-0.233896598219872,0.978594779968262,0.0267804972827435,-0.204046338796616,0.955889403820038,0.0774123594164848,-0.283342003822327,0.973864257335663,-0.0844620615243912,-0.210842177271843,0.972177386283875,-0.0225763712078333,-0.233155220746994,0.99306046962738,0.0626096054911613,0.0995535477995873,0.993356704711914,0.00756889395415783,0.114826634526253,0.994971573352814,0.0784601345658302,0.0622537061572075,0.994971573352814,0.0784601345658302,0.0622537061572075,0.993717193603516,0.105911798775196,0.0361775308847427,0.994979023933411,0.0820356979966164,0.0573306493461132,0.92533540725708,0.0322638303041458,0.377774178981781,0.899048686027527,-0.0390122011303902,0.436107069253922,0.923303425312042,-0.00764118833467364,0.383995085954666,0.93627142906189,0.00324618141166866,0.351262152194977,0.960697293281555,0.0575704798102379,0.271562159061432,0.923303425312042,-0.00764118833467364,0.383995085954666,0.960800766944885,0.0272945128381252,0.275892704725266,0.93627142906189,0.00324618141166866,0.351262152194977,0.949423253536224,-0.048502005636692,0.310230582952499,0.977372407913208,0.00142864347435534,0.211520954966545,0.960800766944885,0.0272945128381252,0.275892704725266,0.949423253536224,-0.048502005636692,0.310230582952499, +0.99306046962738,0.0626096054911613,0.0995535477995873,0.977372407913208,0.00142864347435534,0.211520954966545,0.993356704711914,0.00756889395415783,0.114826634526253,0.386861443519592,0.412118256092072,-0.824922204017639,0.303524792194366,0.240762189030647,-0.921903550624847,0.353334128856659,0.363242775201797,-0.862096011638641,0.353334128856659,0.363242775201797,-0.862096011638641,0.426078647375107,0.323490530252457,-0.844873189926147,0.427693843841553,0.411923080682755,-0.804609954357147,0.427693843841553,0.411923080682755,-0.804609954357147,0.36321285367012,0.328751146793365,-0.871779203414917,0.419792085886002,0.448674082756042,-0.788965165615082,0.234301656484604,-0.826753735542297,-0.511449694633484,0.167533129453659,-0.794724643230438,-0.583391129970551,0.250099152326584,-0.84684145450592,-0.469371736049652,0.250099152326584,-0.84684145450592,-0.469371736049652,0.205244049429893,-0.830870032310486,-0.517232716083527,0.264668256044388,-0.877374768257141,-0.400205194950104,0.141081020236015,-0.762275993824005,-0.631689250469208,0.0719681605696678,-0.722024321556091,-0.688114404678345,0.167533129453659,-0.794724643230438,-0.583391129970551,-0.0261401850730181,-0.634120881557465,-0.772791862487793,0.0434797964990139,-0.686720907688141,-0.725619554519653,-0.0686419755220413,-0.590625703334808,-0.804020762443542,-0.156739294528961,-0.530167639255524,-0.833279609680176,-0.160073459148407,-0.505856573581696,-0.847635209560394,-0.0686419755220413,-0.590625703334808,-0.804020762443542,-0.0261401850730181,-0.634120881557465,-0.772791862487793,0.0719681605696678,-0.722024321556091,-0.688114404678345,0.0434797964990139,-0.686720907688141,-0.725619554519653,0.80204164981842,0.560621559619904,-0.205991521477699,0.638254046440125,0.559140503406525,-0.529144108295441,0.831369340419769,0.474342048168182,-0.289524763822556,0.441108047962189,0.762173116207123,-0.473830908536911,0.283147424459457,0.826739847660065,-0.48613640666008,0.388638734817505,0.687623679637909,-0.613297164440155,0.60730654001236,0.694242060184479,-0.386272698640823, +0.441108047962189,0.762173116207123,-0.473830908536911,0.388638734817505,0.687623679637909,-0.613297164440155,0.80204164981842,0.560621559619904,-0.205991521477699,0.60730654001236,0.694242060184479,-0.386272698640823,0.638254046440125,0.559140503406525,-0.529144108295441,-0.323579967021942,0.549561381340027,-0.770245492458344,-0.160410523414612,0.728954017162323,-0.665503025054932,-0.449537098407745,0.684517741203308,-0.573891639709473,0.733118534088135,0.0435418635606766,0.678705513477325,0.776550829410553,0.0178721006959677,0.629800856113434,0.797596335411072,0.0376388989388943,0.602016091346741,0.797596335411072,0.0376388989388943,0.602016091346741,0.798272967338562,-0.0687192976474762,0.598362565040588,0.773369789123535,0.0202044751495123,0.633633017539978,0.849495768547058,-0.0426663644611835,0.52586704492569,0.882728397846222,-0.0190966241061687,0.469495177268982,0.840847790241241,0.0312302578240633,0.540369808673859,0.882728397846222,-0.0190966241061687,0.469495177268982,0.880654036998749,-0.0351579263806343,0.472453474998474,0.884250938892365,-0.0213509444147348,0.466523677110672,0.75914865732193,0.0559284053742886,0.648509979248047,0.759707450866699,0.0468159392476082,0.648577451705933,0.733118534088135,0.0435418635606766,0.678705513477325,0.840847790241241,0.0312302578240633,0.540369808673859,0.801024615764618,-0.0145774781703949,0.598453760147095,0.849495768547058,-0.0426663644611835,0.52586704492569,0.75914865732193,0.0559284053742886,0.648509979248047,0.801024615764618,-0.0145774781703949,0.598453760147095,0.759707450866699,0.0468159392476082,0.648577451705933,0.89117169380188,-0.0418482162058353,0.451731532812119,0.899048686027527,-0.0390122011303902,0.436107069253922,0.92533540725708,0.0322638303041458,0.377774178981781,0.884250938892365,-0.0213509444147348,0.466523677110672,0.883401811122894,-0.0271580908447504,0.467828571796417,0.89117169380188,-0.0418482162058353,0.451731532812119,0.719244480133057,-0.0797001197934151,0.690170347690582,0.798272967338562,-0.0687192976474762,0.598362565040588,0.714871883392334,-0.10343100130558,0.691563546657562, +0.57056051492691,0.178223669528961,0.801683843135834,0.536041676998138,0.0606099404394627,0.842012822628021,0.528396844863892,0.199498981237412,0.825225293636322,0.484941780567169,0.175580218434334,0.85673975944519,0.536041676998138,0.0606099404394627,0.842012822628021,0.404672175645828,0.0285102631896734,0.914017260074615,0.416627138853073,0.152797341346741,0.896144330501556,0.404672175645828,0.0285102631896734,0.914017260074615,0.32241502404213,-0.013182639144361,0.946506440639496,0.527404367923737,-0.0436218231916428,0.848493695259094,0.57039487361908,-0.0450904555618763,0.820131957530975,0.714871883392334,-0.10343100130558,0.691563546657562,0.418047726154327,0.0741972252726555,0.905389845371246,0.32241502404213,-0.013182639144361,0.946506440639496,0.527404367923737,-0.0436218231916428,0.848493695259094,0.519001066684723,0.418854564428329,0.745116472244263,0.517458736896515,0.401494145393372,0.75567102432251,0.599883317947388,0.396584540605545,0.694881677627563,0.385661125183105,0.0138692781329155,-0.922536194324493,0.347005605697632,0.0594865903258324,-0.935974538326263,0.409531861543655,0.0557789765298367,-0.910588920116425,0.385661125183105,0.0138692781329155,-0.922536194324493,0.550106883049011,-0.0847030952572823,-0.830787420272827,0.553061604499817,-0.113756746053696,-0.825337588787079,0.661749958992004,-0.172372028231621,-0.729640126228333,0.653156340122223,-0.0093846321105957,-0.757164835929871,0.750203549861908,-0.155082881450653,-0.64276260137558,0.550106883049011,-0.0847030952572823,-0.830787420272827,0.661749958992004,-0.172372028231621,-0.729640126228333,0.648905634880066,-0.26082444190979,-0.714767038822174,0.832188546657562,-0.147838801145554,-0.534420907497406,0.779741048812866,-0.0521416626870632,-0.623927056789398,0.833244383335114,-0.0579651482403278,-0.549857914447784,0.750203549861908,-0.155082881450653,-0.64276260137558,0.779741048812866,-0.0521416626870632,-0.623927056789398,0.832188546657562,-0.147838801145554,-0.534420907497406,0.475906997919083,0.0214995536953211,-0.87923276424408,0.347005605697632,0.0594865903258324,-0.935974538326263, +0.487029254436493,0.0593226850032806,-0.871368587017059,0.475906997919083,0.0214995536953211,-0.87923276424408,0.487029254436493,0.0593226850032806,-0.871368587017059,0.539214253425598,0.142685815691948,-0.829993188381195,0.539214253425598,0.142685815691948,-0.829993188381195,0.607932567596436,0.137263894081116,-0.782033622264862,0.636208057403564,0.0471470169723034,-0.770075500011444,0.651619851589203,0.0956147387623787,-0.752495408058167,0.640909969806671,0.0867284089326859,-0.762700736522675,0.636208057403564,0.0471470169723034,-0.770075500011444,0.514910161495209,0.0609202459454536,-0.855076670646667,0.549071431159973,0.11498611420393,-0.827827632427216,0.640909969806671,0.0867284089326859,-0.762700736522675,0.472561955451965,0.0447320565581322,-0.880161464214325,0.443331182003021,0.0381892360746861,-0.895543932914734,0.473250657320023,0.0730120167136192,-0.877896904945374,0.514910161495209,0.0609202459454536,-0.855076670646667,0.472561955451965,0.0447320565581322,-0.880161464214325,0.549071431159973,0.11498611420393,-0.827827632427216,0.492258459329605,-0.0248453002423048,-0.870094358921051,0.468684822320938,0.0495776012539864,-0.881973028182983,0.458113223314285,0.0385177098214626,-0.88805890083313,0.437327206134796,0.0349518209695816,-0.898622930049896,0.468684822320938,0.0495776012539864,-0.881973028182983,0.429677754640579,0.111602887511253,-0.896058976650238,0.447609335184097,0.00594133697450161,-0.894209384918213,0.443331182003021,0.0381892360746861,-0.895543932914734,0.40312871336937,0.0687723085284233,-0.912555456161499,0.455458253622055,0.0445448942482471,-0.889141917228699,0.492258459329605,-0.0248453002423048,-0.870094358921051,0.447609335184097,0.00594133697450161,-0.894209384918213,0.437327206134796,0.0349518209695816,-0.898622930049896,0.381544053554535,0.107043989002705,-0.918131589889526,0.372824907302856,-0.00944842398166656,-0.927853584289551,0.372824907302856,-0.00944842398166656,-0.927853584289551,0.331260770559311,0.0494838058948517,-0.942240715026855,0.462107211351395,0.0128040798008442,-0.886731564998627, +0.411585301160812,0.281157642602921,-0.866918563842773,0.303524792194366,0.240762189030647,-0.921903550624847,0.386861443519592,0.412118256092072,-0.824922204017639,0.331260770559311,0.0494838058948517,-0.942240715026855,0.411585301160812,0.281157642602921,-0.866918563842773,0.471269905567169,0.114976346492767,-0.874462723731995,0.471269905567169,0.114976346492767,-0.874462723731995,0.462107211351395,0.0128040798008442,-0.886731564998627,0.331260770559311,0.0494838058948517,-0.942240715026855,0.904425024986267,-0.107085831463337,-0.412974387407303,0.931051731109619,-0.0982529073953629,-0.351409941911697,0.93542492389679,-0.0343872681260109,-0.351848542690277,0.900888562202454,-0.154188558459282,-0.405740737915039,0.904425024986267,-0.107085831463337,-0.412974387407303,0.870923519134521,-0.156485259532928,-0.465837448835373,0.900888562202454,-0.154188558459282,-0.405740737915039,0.880100011825562,-0.222042560577393,-0.419667690992355,0.87516975402832,-0.163130477070808,-0.455484628677368,0.87516975402832,-0.163130477070808,-0.455484628677368,0.832188546657562,-0.147838801145554,-0.534420907497406,0.833244383335114,-0.0579651482403278,-0.549857914447784,0.946821868419647,0.120725274085999,-0.298250943422318,0.976642251014709,-0.047733835875988,-0.209502711892128,0.967256307601929,0.0116027798503637,-0.253535956144333,0.925885617733002,0.128793314099312,-0.355173200368881,0.956723988056183,0.00727630406618118,-0.290905654430389,0.946821868419647,0.120725274085999,-0.298250943422318,0.955889403820038,0.0774123594164848,-0.283342003822327,0.967256307601929,0.0116027798503637,-0.253535956144333,0.973864257335663,-0.0844620615243912,-0.210842177271843,0.919884324073792,0.070766769349575,-0.385752230882645,0.93542492389679,-0.0343872681260109,-0.351848542690277,0.956723988056183,0.00727630406618118,-0.290905654430389,0.997466206550598,0.0687126070261002,-0.0184304881840944,0.999041378498077,0.0435862205922604,0.00405724579468369,0.993717193603516,0.105911798775196,0.0361775308847427,0.996821641921997,0.055038683116436,-0.0575959458947182, +0.997466206550598,0.0687126070261002,-0.0184304881840944,0.984118759632111,0.173660591244698,-0.036773219704628,0.996821641921997,0.055038683116436,-0.0575959458947182,0.977355301380157,0.180263072252274,-0.110823124647141,0.989664673805237,0.0306372288614511,-0.140089616179466,0.978594779968262,0.0267804972827435,-0.204046338796616,0.989664673805237,0.0306372288614511,-0.140089616179466,0.974702954292297,-0.026360435411334,-0.221944153308868,0.966534972190857,0.105368159711361,-0.233896598219872,0.946498930454254,0.134794771671295,-0.293206512928009,0.955889403820038,0.0774123594164848,-0.283342003822327,0.956842303276062,0.0384350381791592,-0.288054704666138,0.946498930454254,0.134794771671295,-0.293206512928009,0.978594779968262,0.0267804972827435,-0.204046338796616,0.994971573352814,0.0784601345658302,0.0622537061572075,0.993356704711914,0.00756889395415783,0.114826634526253,0.991891801357269,0.0539337135851383,0.115072779357433,0.993717193603516,0.105911798775196,0.0361775308847427,0.994971573352814,0.0784601345658302,0.0622537061572075,0.967349231243134,0.240217357873917,0.0808143243193626,0.895033597946167,-0.0132862692698836,0.44580066204071,0.923303425312042,-0.00764118833467364,0.383995085954666,0.899048686027527,-0.0390122011303902,0.436107069253922,0.922175765037537,-0.0419240817427635,0.384492009878159,0.93627142906189,0.00324618141166866,0.351262152194977,0.923303425312042,-0.00764118833467364,0.383995085954666,0.949423253536224,-0.048502005636692,0.310230582952499,0.93627142906189,0.00324618141166866,0.351262152194977,0.922175765037537,-0.0419240817427635,0.384492009878159,0.977372407913208,0.00142864347435534,0.211520954966545,0.949423253536224,-0.048502005636692,0.310230582952499,0.968995153903961,0.0352431274950504,0.244553104043007,0.977372407913208,0.00142864347435534,0.211520954966545,0.968995153903961,0.0352431274950504,0.244553104043007,0.993356704711914,0.00756889395415783,0.114826634526253,0.353334128856659,0.363242775201797,-0.862096011638641,0.303524792194366,0.240762189030647,-0.921903550624847, +0.396828681230545,0.220917567610741,-0.890910923480988,0.396828681230545,0.220917567610741,-0.890910923480988,0.426078647375107,0.323490530252457,-0.844873189926147,0.353334128856659,0.363242775201797,-0.862096011638641,0.426078647375107,0.323490530252457,-0.844873189926147,0.36321285367012,0.328751146793365,-0.871779203414917,0.427693843841553,0.411923080682755,-0.804609954357147,0.167533129453659,-0.794724643230438,-0.583391129970551,0.205244049429893,-0.830870032310486,-0.517232716083527,0.250099152326584,-0.84684145450592,-0.469371736049652,0.202576071023941,-0.816575467586517,-0.540524959564209,0.264668256044388,-0.877374768257141,-0.400205194950104,0.205244049429893,-0.830870032310486,-0.517232716083527,0.0768061652779579,-0.74406898021698,-0.663673102855682,0.167533129453659,-0.794724643230438,-0.583391129970551,0.0719681605696678,-0.722024321556091,-0.688114404678345,-0.0970537289977074,-0.551767885684967,-0.828331232070923,-0.0261401850730181,-0.634120881557465,-0.772791862487793,-0.0686419755220413,-0.590625703334808,-0.804020762443542,-0.0970537289977074,-0.551767885684967,-0.828331232070923,-0.0686419755220413,-0.590625703334808,-0.804020762443542,-0.160073459148407,-0.505856573581696,-0.847635209560394,0.0135807618498802,-0.678455889225006,-0.734515488147736,0.0719681605696678,-0.722024321556091,-0.688114404678345,-0.0261401850730181,-0.634120881557465,-0.772791862487793,0.283147424459457,0.826739847660065,-0.48613640666008,0.441108047962189,0.762173116207123,-0.473830908536911,0.501465618610382,0.800948917865753,-0.327128350734711,0.441108047962189,0.762173116207123,-0.473830908536911,0.60730654001236,0.694242060184479,-0.386272698640823,0.501465618610382,0.800948917865753,-0.327128350734711,0.75914865732193,0.0559284053742886,0.648509979248047,0.733118534088135,0.0435418635606766,0.678705513477325,0.797596335411072,0.0376388989388943,0.602016091346741,0.773369789123535,0.0202044751495123,0.633633017539978,0.798272967338562,-0.0687192976474762,0.598362565040588,0.719244480133057,-0.0797001197934151,0.690170347690582, +0.773369789123535,0.0202044751495123,0.633633017539978,0.800836443901062,0.0591237917542458,0.595957398414612,0.797596335411072,0.0376388989388943,0.602016091346741,0.837507128715515,-0.0396653413772583,0.544984698295593,0.882728397846222,-0.0190966241061687,0.469495177268982,0.849495768547058,-0.0426663644611835,0.52586704492569,0.882728397846222,-0.0190966241061687,0.469495177268982,0.837507128715515,-0.0396653413772583,0.544984698295593,0.880654036998749,-0.0351579263806343,0.472453474998474,0.883401811122894,-0.0271580908447504,0.467828571796417,0.884250938892365,-0.0213509444147348,0.466523677110672,0.880654036998749,-0.0351579263806343,0.472453474998474,0.849495768547058,-0.0426663644611835,0.52586704492569,0.801024615764618,-0.0145774781703949,0.598453760147095,0.82141786813736,-0.0876332223415375,0.563553810119629,0.790194988250732,-0.000703058787621558,0.612855017185211,0.801024615764618,-0.0145774781703949,0.598453760147095,0.75914865732193,0.0559284053742886,0.648509979248047,0.883401811122894,-0.0271580908447504,0.467828571796417,0.899048686027527,-0.0390122011303902,0.436107069253922,0.89117169380188,-0.0418482162058353,0.451731532812119,0.57039487361908,-0.0450904555618763,0.820131957530975,0.719244480133057,-0.0797001197934151,0.690170347690582,0.714871883392334,-0.10343100130558,0.691563546657562,0.536041676998138,0.0606099404394627,0.842012822628021,0.518881916999817,-0.0132392961531878,0.854743301868439,0.404672175645828,0.0285102631896734,0.914017260074615,0.404672175645828,0.0285102631896734,0.914017260074615,0.395883500576019,-0.0524692535400391,0.916800439357758,0.32241502404213,-0.013182639144361,0.946506440639496,0.527404367923737,-0.0436218231916428,0.848493695259094,0.370012253522873,-0.0608801431953907,0.9270299077034,0.57039487361908,-0.0450904555618763,0.820131957530975,0.370012253522873,-0.0608801431953907,0.9270299077034,0.527404367923737,-0.0436218231916428,0.848493695259094,0.32241502404213,-0.013182639144361,0.946506440639496,0.374528288841248,0.031224450096488,-0.926689505577087, +0.347005605697632,0.0594865903258324,-0.935974538326263,0.385661125183105,0.0138692781329155,-0.922536194324493,0.550106883049011,-0.0847030952572823,-0.830787420272827,0.648905634880066,-0.26082444190979,-0.714767038822174,0.553061604499817,-0.113756746053696,-0.825337588787079,0.374528288841248,0.031224450096488,-0.926689505577087,0.385661125183105,0.0138692781329155,-0.922536194324493,0.553061604499817,-0.113756746053696,-0.825337588787079,0.661749958992004,-0.172372028231621,-0.729640126228333,0.750203549861908,-0.155082881450653,-0.64276260137558,0.694056272506714,-0.29068523645401,-0.658625662326813,0.661749958992004,-0.172372028231621,-0.729640126228333,0.694056272506714,-0.29068523645401,-0.658625662326813,0.648905634880066,-0.26082444190979,-0.714767038822174,0.750203549861908,-0.155082881450653,-0.64276260137558,0.832188546657562,-0.147838801145554,-0.534420907497406,0.775671541690826,-0.293566137552261,-0.558706104755402,0.374528288841248,0.031224450096488,-0.926689505577087,0.487029254436493,0.0593226850032806,-0.871368587017059,0.347005605697632,0.0594865903258324,-0.935974538326263,0.539214253425598,0.142685815691948,-0.829993188381195,0.487029254436493,0.0593226850032806,-0.871368587017059,0.556336760520935,0.108132779598236,-0.823891043663025,0.558459639549255,0.184134438633919,-0.808836936950684,0.607932567596436,0.137263894081116,-0.782033622264862,0.539214253425598,0.142685815691948,-0.829993188381195,0.651619851589203,0.0956147387623787,-0.752495408058167,0.636208057403564,0.0471470169723034,-0.770075500011444,0.607932567596436,0.137263894081116,-0.782033622264862,0.596474826335907,0.0740276277065277,-0.799210548400879,0.640909969806671,0.0867284089326859,-0.762700736522675,0.651619851589203,0.0956147387623787,-0.752495408058167,0.640909969806671,0.0867284089326859,-0.762700736522675,0.596474826335907,0.0740276277065277,-0.799210548400879,0.514910161495209,0.0609202459454536,-0.855076670646667,0.514910161495209,0.0609202459454536,-0.855076670646667,0.443331182003021,0.0381892360746861,-0.895543932914734, +0.472561955451965,0.0447320565581322,-0.880161464214325,0.443951815366745,0.0234003104269505,-0.895744979381561,0.468684822320938,0.0495776012539864,-0.881973028182983,0.492258459329605,-0.0248453002423048,-0.870094358921051,0.468684822320938,0.0495776012539864,-0.881973028182983,0.443951815366745,0.0234003104269505,-0.895744979381561,0.429677754640579,0.111602887511253,-0.896058976650238,0.429677754640579,0.111602887511253,-0.896058976650238,0.381544053554535,0.107043989002705,-0.918131589889526,0.437327206134796,0.0349518209695816,-0.898622930049896,0.40312871336937,0.0687723085284233,-0.912555456161499,0.443331182003021,0.0381892360746861,-0.895543932914734,0.482960253953934,0.0788470953702927,-0.872085094451904,0.407921999692917,0.0505274198949337,-0.911617517471313,0.447609335184097,0.00594133697450161,-0.894209384918213,0.40312871336937,0.0687723085284233,-0.912555456161499,0.455458253622055,0.0445448942482471,-0.889141917228699,0.474889785051346,-0.0227201245725155,-0.879751861095428,0.492258459329605,-0.0248453002423048,-0.870094358921051,0.455458253622055,0.0445448942482471,-0.889141917228699,0.447609335184097,0.00594133697450161,-0.894209384918213,0.407921999692917,0.0505274198949337,-0.911617517471313,0.372824907302856,-0.00944842398166656,-0.927853584289551,0.381544053554535,0.107043989002705,-0.918131589889526,0.33534437417984,0.0226882938295603,-0.941822290420532,0.372824907302856,-0.00944842398166656,-0.927853584289551,0.33534437417984,0.0226882938295603,-0.941822290420532,0.331260770559311,0.0494838058948517,-0.942240715026855,0.411585301160812,0.281157642602921,-0.866918563842773,0.331260770559311,0.0494838058948517,-0.942240715026855,0.303524792194366,0.240762189030647,-0.921903550624847,0.904425024986267,-0.107085831463337,-0.412974387407303,0.93542492389679,-0.0343872681260109,-0.351848542690277,0.902836084365845,0.000991918728686869,-0.429983556270599,0.904425024986267,-0.107085831463337,-0.412974387407303,0.877997100353241,-0.078041784465313,-0.472261071205139,0.870923519134521,-0.156485259532928,-0.465837448835373, +0.870923519134521,-0.156485259532928,-0.465837448835373,0.880100011825562,-0.222042560577393,-0.419667690992355,0.900888562202454,-0.154188558459282,-0.405740737915039,0.880100011825562,-0.222042560577393,-0.419667690992355,0.855148255825043,-0.252629280090332,-0.452658593654633,0.87516975402832,-0.163130477070808,-0.455484628677368,0.832188546657562,-0.147838801145554,-0.534420907497406,0.87516975402832,-0.163130477070808,-0.455484628677368,0.855148255825043,-0.252629280090332,-0.452658593654633,0.955889403820038,0.0774123594164848,-0.283342003822327,0.946821868419647,0.120725274085999,-0.298250943422318,0.967256307601929,0.0116027798503637,-0.253535956144333,0.919884324073792,0.070766769349575,-0.385752230882645,0.956723988056183,0.00727630406618118,-0.290905654430389,0.925885617733002,0.128793314099312,-0.355173200368881,0.946498930454254,0.134794771671295,-0.293206512928009,0.925885617733002,0.128793314099312,-0.355173200368881,0.946821868419647,0.120725274085999,-0.298250943422318,0.919884324073792,0.070766769349575,-0.385752230882645,0.902836084365845,0.000991918728686869,-0.429983556270599,0.93542492389679,-0.0343872681260109,-0.351848542690277,0.979185283184052,0.202455967664719,-0.014408003538847,0.997466206550598,0.0687126070261002,-0.0184304881840944,0.993717193603516,0.105911798775196,0.0361775308847427,0.984118759632111,0.173660591244698,-0.036773219704628,0.997466206550598,0.0687126070261002,-0.0184304881840944,0.979185283184052,0.202455967664719,-0.014408003538847,0.984118759632111,0.173660591244698,-0.036773219704628,0.977355301380157,0.180263072252274,-0.110823124647141,0.996821641921997,0.055038683116436,-0.0575959458947182,0.977355301380157,0.180263072252274,-0.110823124647141,0.976661503314972,0.103492401540279,-0.188206344842911,0.989664673805237,0.0306372288614511,-0.140089616179466,0.989664673805237,0.0306372288614511,-0.140089616179466,0.971181333065033,0.034480307251215,-0.235834389925003,0.974702954292297,-0.026360435411334,-0.221944153308868,0.978594779968262,0.0267804972827435,-0.204046338796616, +0.974702954292297,-0.026360435411334,-0.221944153308868,0.956842303276062,0.0384350381791592,-0.288054704666138,0.946498930454254,0.134794771671295,-0.293206512928009,0.946821868419647,0.120725274085999,-0.298250943422318,0.955889403820038,0.0774123594164848,-0.283342003822327,0.956842303276062,0.0384350381791592,-0.288054704666138,0.925885617733002,0.128793314099312,-0.355173200368881,0.946498930454254,0.134794771671295,-0.293206512928009,0.991891801357269,0.0539337135851383,0.115072779357433,0.993356704711914,0.00756889395415783,0.114826634526253,0.968995153903961,0.0352431274950504,0.244553104043007,0.994971573352814,0.0784601345658302,0.0622537061572075,0.991891801357269,0.0539337135851383,0.115072779357433,0.983624339103699,0.144002988934517,0.108379736542702,0.994971573352814,0.0784601345658302,0.0622537061572075,0.983624339103699,0.144002988934517,0.108379736542702,0.967349231243134,0.240217357873917,0.0808143243193626,0.993717193603516,0.105911798775196,0.0361775308847427,0.967349231243134,0.240217357873917,0.0808143243193626,0.919083535671234,0.392557621002197,0.0344041660428047,0.922175765037537,-0.0419240817427635,0.384492009878159,0.923303425312042,-0.00764118833467364,0.383995085954666,0.895033597946167,-0.0132862692698836,0.44580066204071,0.883401811122894,-0.0271580908447504,0.467828571796417,0.895033597946167,-0.0132862692698836,0.44580066204071,0.899048686027527,-0.0390122011303902,0.436107069253922,0.922175765037537,-0.0419240817427635,0.384492009878159,0.933345198631287,-0.0478051044046879,0.35578265786171,0.949423253536224,-0.048502005636692,0.310230582952499,0.944113373756409,-0.0137155894190073,0.329335302114487,0.968995153903961,0.0352431274950504,0.244553104043007,0.949423253536224,-0.048502005636692,0.310230582952499,0.396828681230545,0.220917567610741,-0.890910923480988,0.303524792194366,0.240762189030647,-0.921903550624847,0.35966032743454,0.0706306397914886,-0.930406212806702,0.38526377081871,0.186294481158257,-0.903806447982788,0.426078647375107,0.323490530252457,-0.844873189926147,0.396828681230545,0.220917567610741,-0.890910923480988, +0.426078647375107,0.323490530252457,-0.844873189926147,0.38526377081871,0.186294481158257,-0.903806447982788,0.36321285367012,0.328751146793365,-0.871779203414917,0.167533129453659,-0.794724643230438,-0.583391129970551,0.1152503490448,-0.758709311485291,-0.641153156757355,0.205244049429893,-0.830870032310486,-0.517232716083527,0.202576071023941,-0.816575467586517,-0.540524959564209,0.208794564008713,-0.846530675888062,-0.489684075117111,0.264668256044388,-0.877374768257141,-0.400205194950104,0.16231943666935,-0.78761225938797,-0.59440666437149,0.202576071023941,-0.816575467586517,-0.540524959564209,0.205244049429893,-0.830870032310486,-0.517232716083527,0.0768061652779579,-0.74406898021698,-0.663673102855682,0.1152503490448,-0.758709311485291,-0.641153156757355,0.167533129453659,-0.794724643230438,-0.583391129970551,0.0135807618498802,-0.678455889225006,-0.734515488147736,0.0768061652779579,-0.74406898021698,-0.663673102855682,0.0719681605696678,-0.722024321556091,-0.688114404678345,-0.0407449342310429,-0.606377840042114,-0.794131994247437,-0.0261401850730181,-0.634120881557465,-0.772791862487793,-0.0970537289977074,-0.551767885684967,-0.828331232070923,-0.0407449342310429,-0.606377840042114,-0.794131994247437,0.0135807618498802,-0.678455889225006,-0.734515488147736,-0.0261401850730181,-0.634120881557465,-0.772791862487793,0.75914865732193,0.0559284053742886,0.648509979248047,0.797596335411072,0.0376388989388943,0.602016091346741,0.798623919487,0.0492589026689529,0.59981095790863,0.661541402339935,0.0253581721335649,0.749479651451111,0.773369789123535,0.0202044751495123,0.633633017539978,0.719244480133057,-0.0797001197934151,0.690170347690582,0.709666073322296,0.0502890646457672,0.702741086483002,0.800836443901062,0.0591237917542458,0.595957398414612,0.773369789123535,0.0202044751495123,0.633633017539978,0.798623919487,0.0492589026689529,0.59981095790863,0.797596335411072,0.0376388989388943,0.602016091346741,0.800836443901062,0.0591237917542458,0.595957398414612,0.837507128715515,-0.0396653413772583,0.544984698295593, +0.849495768547058,-0.0426663644611835,0.52586704492569,0.82141786813736,-0.0876332223415375,0.563553810119629,0.837507128715515,-0.0396653413772583,0.544984698295593,0.860083043575287,-0.0551226325333118,0.507167160511017,0.880654036998749,-0.0351579263806343,0.472453474998474,0.871483087539673,-0.00977774057537317,0.490327954292297,0.883401811122894,-0.0271580908447504,0.467828571796417,0.880654036998749,-0.0351579263806343,0.472453474998474,0.801024615764618,-0.0145774781703949,0.598453760147095,0.814009845256805,-0.11880711466074,0.568570673465729,0.82141786813736,-0.0876332223415375,0.563553810119629,0.790194988250732,-0.000703058787621558,0.612855017185211,0.814009845256805,-0.11880711466074,0.568570673465729,0.801024615764618,-0.0145774781703949,0.598453760147095,0.75914865732193,0.0559284053742886,0.648509979248047,0.798623919487,0.0492589026689529,0.59981095790863,0.790194988250732,-0.000703058787621558,0.612855017185211,0.661541402339935,0.0253581721335649,0.749479651451111,0.719244480133057,-0.0797001197934151,0.690170347690582,0.57039487361908,-0.0450904555618763,0.820131957530975,0.404672175645828,0.0285102631896734,0.914017260074615,0.518881916999817,-0.0132392961531878,0.854743301868439,0.395883500576019,-0.0524692535400391,0.916800439357758,0.370012253522873,-0.0608801431953907,0.9270299077034,0.32241502404213,-0.013182639144361,0.946506440639496,0.395883500576019,-0.0524692535400391,0.916800439357758,0.57039487361908,-0.0450904555618763,0.820131957530975,0.370012253522873,-0.0608801431953907,0.9270299077034,0.438692659139633,0.0839320048689842,0.894708931446075,0.714255928993225,-0.232092887163162,-0.660281240940094,0.553061604499817,-0.113756746053696,-0.825337588787079,0.648905634880066,-0.26082444190979,-0.714767038822174,0.487029254436493,0.0593226850032806,-0.871368587017059,0.374528288841248,0.031224450096488,-0.926689505577087,0.553061604499817,-0.113756746053696,-0.825337588787079,0.694056272506714,-0.29068523645401,-0.658625662326813,0.750203549861908,-0.155082881450653,-0.64276260137558,0.775671541690826,-0.293566137552261,-0.558706104755402, +0.694056272506714,-0.29068523645401,-0.658625662326813,0.730792641639709,-0.325209617614746,-0.600150525569916,0.648905634880066,-0.26082444190979,-0.714767038822174,0.775671541690826,-0.293566137552261,-0.558706104755402,0.832188546657562,-0.147838801145554,-0.534420907497406,0.855148255825043,-0.252629280090332,-0.452658593654633,0.638389766216278,0.000318330596201122,-0.76971310377121,0.556336760520935,0.108132779598236,-0.823891043663025,0.487029254436493,0.0593226850032806,-0.871368587017059,0.556336760520935,0.108132779598236,-0.823891043663025,0.558459639549255,0.184134438633919,-0.808836936950684,0.539214253425598,0.142685815691948,-0.829993188381195,0.607932567596436,0.137263894081116,-0.782033622264862,0.558459639549255,0.184134438633919,-0.808836936950684,0.615494132041931,0.0997821092605591,-0.78179943561554,0.607932567596436,0.137263894081116,-0.782033622264862,0.620826959609985,0.0655280649662018,-0.781204044818878,0.651619851589203,0.0956147387623787,-0.752495408058167,0.620826959609985,0.0655280649662018,-0.781204044818878,0.596474826335907,0.0740276277065277,-0.799210548400879,0.651619851589203,0.0956147387623787,-0.752495408058167,0.596474826335907,0.0740276277065277,-0.799210548400879,0.482960253953934,0.0788470953702927,-0.872085094451904,0.514910161495209,0.0609202459454536,-0.855076670646667,0.514910161495209,0.0609202459454536,-0.855076670646667,0.482960253953934,0.0788470953702927,-0.872085094451904,0.443331182003021,0.0381892360746861,-0.895543932914734,0.443951815366745,0.0234003104269505,-0.895744979381561,0.492258459329605,-0.0248453002423048,-0.870094358921051,0.439359992742538,-0.11028877645731,-0.891515076160431,0.429677754640579,0.111602887511253,-0.896058976650238,0.443951815366745,0.0234003104269505,-0.895744979381561,0.40501856803894,0.153985619544983,-0.901248157024384,0.429677754640579,0.111602887511253,-0.896058976650238,0.40501856803894,0.153985619544983,-0.901248157024384,0.381544053554535,0.107043989002705,-0.918131589889526,0.40312871336937,0.0687723085284233,-0.912555456161499, +0.482960253953934,0.0788470953702927,-0.872085094451904,0.403981447219849,0.107731692492962,-0.908401191234589,0.407921999692917,0.0505274198949337,-0.911617517471313,0.40312871336937,0.0687723085284233,-0.912555456161499,0.404053449630737,0.125531569123268,-0.906080901622772,0.474889785051346,-0.0227201245725155,-0.879751861095428,0.455458253622055,0.0445448942482471,-0.889141917228699,0.427571088075638,0.14288541674614,-0.89261782169342,0.439359992742538,-0.11028877645731,-0.891515076160431,0.492258459329605,-0.0248453002423048,-0.870094358921051,0.474889785051346,-0.0227201245725155,-0.879751861095428,0.407921999692917,0.0505274198949337,-0.911617517471313,0.404053449630737,0.125531569123268,-0.906080901622772,0.455458253622055,0.0445448942482471,-0.889141917228699,0.395378768444061,0.154353216290474,-0.905456006526947,0.33534437417984,0.0226882938295603,-0.941822290420532,0.381544053554535,0.107043989002705,-0.918131589889526,0.324253410100937,0.00582627253606915,-0.945952236652374,0.331260770559311,0.0494838058948517,-0.942240715026855,0.33534437417984,0.0226882938295603,-0.941822290420532,0.331260770559311,0.0494838058948517,-0.942240715026855,0.35966032743454,0.0706306397914886,-0.930406212806702,0.303524792194366,0.240762189030647,-0.921903550624847,0.902836084365845,0.000991918728686869,-0.429983556270599,0.877997100353241,-0.078041784465313,-0.472261071205139,0.904425024986267,-0.107085831463337,-0.412974387407303,0.877997100353241,-0.078041784465313,-0.472261071205139,0.839300394058228,-0.109582863748074,-0.532509386539459,0.870923519134521,-0.156485259532928,-0.465837448835373,0.870923519134521,-0.156485259532928,-0.465837448835373,0.860467433929443,-0.214123159646988,-0.462327778339386,0.880100011825562,-0.222042560577393,-0.419667690992355,0.855148255825043,-0.252629280090332,-0.452658593654633,0.880100011825562,-0.222042560577393,-0.419667690992355,0.860467433929443,-0.214123159646988,-0.462327778339386,0.925885617733002,0.128793314099312,-0.355173200368881,0.917984068393707,0.0550644360482693,-0.392776101827621, +0.919884324073792,0.070766769349575,-0.385752230882645,0.919884324073792,0.070766769349575,-0.385752230882645,0.917984068393707,0.0550644360482693,-0.392776101827621,0.902836084365845,0.000991918728686869,-0.429983556270599,0.919083535671234,0.392557621002197,0.0344041660428047,0.979185283184052,0.202455967664719,-0.014408003538847,0.993717193603516,0.105911798775196,0.0361775308847427,0.984118759632111,0.173660591244698,-0.036773219704628,0.979185283184052,0.202455967664719,-0.014408003538847,0.930854141712189,0.363486468791962,-0.0372580327093601,0.984118759632111,0.173660591244698,-0.036773219704628,0.888390362262726,0.451201111078262,-0.0847350805997849,0.977355301380157,0.180263072252274,-0.110823124647141,0.977355301380157,0.180263072252274,-0.110823124647141,0.917564868927002,0.309057474136353,-0.250115990638733,0.976661503314972,0.103492401540279,-0.188206344842911,0.989664673805237,0.0306372288614511,-0.140089616179466,0.976661503314972,0.103492401540279,-0.188206344842911,0.971181333065033,0.034480307251215,-0.235834389925003,0.937874674797058,-0.0427793972194195,-0.344326674938202,0.974702954292297,-0.026360435411334,-0.221944153308868,0.971181333065033,0.034480307251215,-0.235834389925003,0.974702954292297,-0.026360435411334,-0.221944153308868,0.953431189060211,-0.0484362319111824,-0.297695428133011,0.956842303276062,0.0384350381791592,-0.288054704666138,0.956842303276062,0.0384350381791592,-0.288054704666138,0.917984068393707,0.0550644360482693,-0.392776101827621,0.925885617733002,0.128793314099312,-0.355173200368881,0.991891801357269,0.0539337135851383,0.115072779357433,0.968995153903961,0.0352431274950504,0.244553104043007,0.953371822834015,0.21002484858036,0.216729551553726,0.953371822834015,0.21002484858036,0.216729551553726,0.983624339103699,0.144002988934517,0.108379736542702,0.991891801357269,0.0539337135851383,0.115072779357433,0.909934878349304,0.373202383518219,0.180936858057976,0.967349231243134,0.240217357873917,0.0808143243193626,0.983624339103699,0.144002988934517,0.108379736542702,0.919083535671234,0.392557621002197,0.0344041660428047, +0.967349231243134,0.240217357873917,0.0808143243193626,0.7996426820755,0.580423593521118,0.153882682323456,0.922175765037537,-0.0419240817427635,0.384492009878159,0.895033597946167,-0.0132862692698836,0.44580066204071,0.916222453117371,-0.0517266392707825,0.397316813468933,0.895033597946167,-0.0132862692698836,0.44580066204071,0.883401811122894,-0.0271580908447504,0.467828571796417,0.878114581108093,-0.0161365121603012,0.478178054094315,0.922175765037537,-0.0419240817427635,0.384492009878159,0.916222453117371,-0.0517266392707825,0.397316813468933,0.933345198631287,-0.0478051044046879,0.35578265786171,0.944113373756409,-0.0137155894190073,0.329335302114487,0.949423253536224,-0.048502005636692,0.310230582952499,0.933345198631287,-0.0478051044046879,0.35578265786171,0.968995153903961,0.0352431274950504,0.244553104043007,0.944113373756409,-0.0137155894190073,0.329335302114487,0.900400161743164,0.204258814454079,0.384132534265518,0.396828681230545,0.220917567610741,-0.890910923480988,0.35966032743454,0.0706306397914886,-0.930406212806702,0.425404846668243,0.0773922652006149,-0.901687860488892,0.396828681230545,0.220917567610741,-0.890910923480988,0.425404846668243,0.0773922652006149,-0.901687860488892,0.38526377081871,0.186294481158257,-0.903806447982788,0.204466566443443,0.191781029105186,-0.959902822971344,0.36321285367012,0.328751146793365,-0.871779203414917,0.38526377081871,0.186294481158257,-0.903806447982788,0.16231943666935,-0.78761225938797,-0.59440666437149,0.205244049429893,-0.830870032310486,-0.517232716083527,0.1152503490448,-0.758709311485291,-0.641153156757355,0.161017268896103,-0.80111837387085,-0.576439499855042,0.208794564008713,-0.846530675888062,-0.489684075117111,0.202576071023941,-0.816575467586517,-0.540524959564209,0.264668256044388,-0.877374768257141,-0.400205194950104,0.208794564008713,-0.846530675888062,-0.489684075117111,0.262456446886063,-0.879748046398163,-0.396434098482132,0.16231943666935,-0.78761225938797,-0.59440666437149,0.16669750213623,-0.767170488834381,-0.619403958320618,0.202576071023941,-0.816575467586517,-0.540524959564209, +0.0768061652779579,-0.74406898021698,-0.663673102855682,0.0432113111019135,-0.693281948566437,-0.71936970949173,0.1152503490448,-0.758709311485291,-0.641153156757355,0.0432113111019135,-0.693281948566437,-0.71936970949173,0.0768061652779579,-0.74406898021698,-0.663673102855682,0.0135807618498802,-0.678455889225006,-0.734515488147736,-0.0407449342310429,-0.606377840042114,-0.794131994247437,-0.0970537289977074,-0.551767885684967,-0.828331232070923,-0.104181073606014,-0.521702945232391,-0.84674209356308,0.0432113111019135,-0.693281948566437,-0.71936970949173,0.0135807618498802,-0.678455889225006,-0.734515488147736,-0.0407449342310429,-0.606377840042114,-0.794131994247437,0.709666073322296,0.0502890646457672,0.702741086483002,0.773369789123535,0.0202044751495123,0.633633017539978,0.661541402339935,0.0253581721335649,0.749479651451111,0.761099398136139,-0.0321028530597687,0.647840321063995,0.800836443901062,0.0591237917542458,0.595957398414612,0.709666073322296,0.0502890646457672,0.702741086483002,0.761099398136139,-0.0321028530597687,0.647840321063995,0.798623919487,0.0492589026689529,0.59981095790863,0.800836443901062,0.0591237917542458,0.595957398414612,0.837507128715515,-0.0396653413772583,0.544984698295593,0.82141786813736,-0.0876332223415375,0.563553810119629,0.777699649333954,-0.00232962076552212,0.628631591796875,0.837507128715515,-0.0396653413772583,0.544984698295593,0.828526020050049,-0.0143947917968035,0.559765338897705,0.860083043575287,-0.0551226325333118,0.507167160511017,0.880654036998749,-0.0351579263806343,0.472453474998474,0.860083043575287,-0.0551226325333118,0.507167160511017,0.871483087539673,-0.00977774057537317,0.490327954292297,0.878114581108093,-0.0161365121603012,0.478178054094315,0.883401811122894,-0.0271580908447504,0.467828571796417,0.871483087539673,-0.00977774057537317,0.490327954292297,0.831562876701355,-0.155313342809677,0.533273637294769,0.82141786813736,-0.0876332223415375,0.563553810119629,0.814009845256805,-0.11880711466074,0.568570673465729,0.778684318065643,-0.0444756895303726,0.625837445259094, +0.814009845256805,-0.11880711466074,0.568570673465729,0.790194988250732,-0.000703058787621558,0.612855017185211,0.790194988250732,-0.000703058787621558,0.612855017185211,0.798623919487,0.0492589026689529,0.59981095790863,0.751334667205811,-0.0417165234684944,0.658601403236389,0.57039487361908,-0.0450904555618763,0.820131957530975,0.550437569618225,0.0859284475445747,0.830442428588867,0.661541402339935,0.0253581721335649,0.749479651451111,0.649057626724243,0.019175423309207,0.760497450828552,0.395883500576019,-0.0524692535400391,0.916800439357758,0.518881916999817,-0.0132392961531878,0.854743301868439,0.370012253522873,-0.0608801431953907,0.9270299077034,0.395883500576019,-0.0524692535400391,0.916800439357758,0.468657284975052,0.0150072183459997,0.883252561092377,0.370012253522873,-0.0608801431953907,0.9270299077034,0.468657284975052,0.0150072183459997,0.883252561092377,0.438692659139633,0.0839320048689842,0.894708931446075,0.550437569618225,0.0859284475445747,0.830442428588867,0.57039487361908,-0.0450904555618763,0.820131957530975,0.438692659139633,0.0839320048689842,0.894708931446075,0.682579755783081,-0.11399107426405,-0.721866190433502,0.553061604499817,-0.113756746053696,-0.825337588787079,0.714255928993225,-0.232092887163162,-0.660281240940094,0.730792641639709,-0.325209617614746,-0.600150525569916,0.714255928993225,-0.232092887163162,-0.660281240940094,0.648905634880066,-0.26082444190979,-0.714767038822174,0.682579755783081,-0.11399107426405,-0.721866190433502,0.487029254436493,0.0593226850032806,-0.871368587017059,0.553061604499817,-0.113756746053696,-0.825337588787079,0.694056272506714,-0.29068523645401,-0.658625662326813,0.775671541690826,-0.293566137552261,-0.558706104755402,0.730792641639709,-0.325209617614746,-0.600150525569916,0.775671541690826,-0.293566137552261,-0.558706104755402,0.855148255825043,-0.252629280090332,-0.452658593654633,0.793580234050751,-0.305114090442657,-0.526436746120453,0.638389766216278,0.000318330596201122,-0.76971310377121,0.715163707733154,-0.0116750160232186,-0.698859333992004, +0.556336760520935,0.108132779598236,-0.823891043663025,0.638389766216278,0.000318330596201122,-0.76971310377121,0.487029254436493,0.0593226850032806,-0.871368587017059,0.682579755783081,-0.11399107426405,-0.721866190433502,0.615494132041931,0.0997821092605591,-0.78179943561554,0.558459639549255,0.184134438633919,-0.808836936950684,0.556336760520935,0.108132779598236,-0.823891043663025,0.613371074199677,0.0575734004378319,-0.787693500518799,0.607932567596436,0.137263894081116,-0.782033622264862,0.615494132041931,0.0997821092605591,-0.78179943561554,0.620826959609985,0.0655280649662018,-0.781204044818878,0.607932567596436,0.137263894081116,-0.782033622264862,0.613371074199677,0.0575734004378319,-0.787693500518799,0.596474826335907,0.0740276277065277,-0.799210548400879,0.620826959609985,0.0655280649662018,-0.781204044818878,0.570473253726959,0.0475805029273033,-0.819936692714691,0.570473253726959,0.0475805029273033,-0.819936692714691,0.482960253953934,0.0788470953702927,-0.872085094451904,0.596474826335907,0.0740276277065277,-0.799210548400879,0.439359992742538,-0.11028877645731,-0.891515076160431,0.426397532224655,-0.112247951328754,-0.897544085979462,0.443951815366745,0.0234003104269505,-0.895744979381561,0.443951815366745,0.0234003104269505,-0.895744979381561,0.431807905435562,0.0343774408102036,-0.90131014585495,0.40501856803894,0.153985619544983,-0.901248157024384,0.395378768444061,0.154353216290474,-0.905456006526947,0.381544053554535,0.107043989002705,-0.918131589889526,0.40501856803894,0.153985619544983,-0.901248157024384,0.494154036045074,0.0386465527117252,-0.868514895439148,0.403981447219849,0.107731692492962,-0.908401191234589,0.482960253953934,0.0788470953702927,-0.872085094451904,0.403981447219849,0.107731692492962,-0.908401191234589,0.404053449630737,0.125531569123268,-0.906080901622772,0.40312871336937,0.0687723085284233,-0.912555456161499,0.442774802446365,0.166138172149658,-0.881106376647949,0.427571088075638,0.14288541674614,-0.89261782169342,0.455458253622055,0.0445448942482471,-0.889141917228699, +0.427571088075638,0.14288541674614,-0.89261782169342,0.396124839782715,0.069731593132019,-0.915544927120209,0.474889785051346,-0.0227201245725155,-0.879751861095428,0.42056205868721,-0.0716967880725861,-0.904426395893097,0.439359992742538,-0.11028877645731,-0.891515076160431,0.474889785051346,-0.0227201245725155,-0.879751861095428,0.404053449630737,0.125531569123268,-0.906080901622772,0.442774802446365,0.166138172149658,-0.881106376647949,0.455458253622055,0.0445448942482471,-0.889141917228699,0.395378768444061,0.154353216290474,-0.905456006526947,0.412497788667679,0.0884994193911552,-0.906649470329285,0.33534437417984,0.0226882938295603,-0.941822290420532,0.331260770559311,0.0494838058948517,-0.942240715026855,0.324253410100937,0.00582627253606915,-0.945952236652374,0.35966032743454,0.0706306397914886,-0.930406212806702,0.412497788667679,0.0884994193911552,-0.906649470329285,0.324253410100937,0.00582627253606915,-0.945952236652374,0.33534437417984,0.0226882938295603,-0.941822290420532,0.902836084365845,0.000991918728686869,-0.429983556270599,0.877316296100616,-0.0274051334708929,-0.47912934422493,0.877997100353241,-0.078041784465313,-0.472261071205139,0.839300394058228,-0.109582863748074,-0.532509386539459,0.877997100353241,-0.078041784465313,-0.472261071205139,0.877316296100616,-0.0274051334708929,-0.47912934422493,0.870923519134521,-0.156485259532928,-0.465837448835373,0.839300394058228,-0.109582863748074,-0.532509386539459,0.860467433929443,-0.214123159646988,-0.462327778339386,0.855148255825043,-0.252629280090332,-0.452658593654633,0.860467433929443,-0.214123159646988,-0.462327778339386,0.840046465396881,-0.202502846717834,-0.503303527832031,0.917984068393707,0.0550644360482693,-0.392776101827621,0.912568330764771,-0.0326752588152885,-0.407616525888443,0.902836084365845,0.000991918728686869,-0.429983556270599,0.919083535671234,0.392557621002197,0.0344041660428047,0.821189641952515,0.569184124469757,-0.0409487150609493,0.979185283184052,0.202455967664719,-0.014408003538847,0.821189641952515,0.569184124469757,-0.0409487150609493, +0.930854141712189,0.363486468791962,-0.0372580327093601,0.979185283184052,0.202455967664719,-0.014408003538847,0.930854141712189,0.363486468791962,-0.0372580327093601,0.888390362262726,0.451201111078262,-0.0847350805997849,0.984118759632111,0.173660591244698,-0.036773219704628,0.85101193189621,0.485192596912384,-0.200914934277534,0.977355301380157,0.180263072252274,-0.110823124647141,0.888390362262726,0.451201111078262,-0.0847350805997849,0.977355301380157,0.180263072252274,-0.110823124647141,0.85101193189621,0.485192596912384,-0.200914934277534,0.917564868927002,0.309057474136353,-0.250115990638733,0.95126074552536,0.0947098955512047,-0.293484061956406,0.976661503314972,0.103492401540279,-0.188206344842911,0.917564868927002,0.309057474136353,-0.250115990638733,0.971181333065033,0.034480307251215,-0.235834389925003,0.976661503314972,0.103492401540279,-0.188206344842911,0.95126074552536,0.0947098955512047,-0.293484061956406,0.937874674797058,-0.0427793972194195,-0.344326674938202,0.952265322208405,-0.0945814773440361,-0.290249884128571,0.974702954292297,-0.026360435411334,-0.221944153308868,0.937874674797058,-0.0427793972194195,-0.344326674938202,0.971181333065033,0.034480307251215,-0.235834389925003,0.95126074552536,0.0947098955512047,-0.293484061956406,0.974702954292297,-0.026360435411334,-0.221944153308868,0.952265322208405,-0.0945814773440361,-0.290249884128571,0.953431189060211,-0.0484362319111824,-0.297695428133011,0.956842303276062,0.0384350381791592,-0.288054704666138,0.953431189060211,-0.0484362319111824,-0.297695428133011,0.917984068393707,0.0550644360482693,-0.392776101827621,0.849711060523987,0.368712246417999,0.376884937286377,0.953371822834015,0.21002484858036,0.216729551553726,0.968995153903961,0.0352431274950504,0.244553104043007,0.953371822834015,0.21002484858036,0.216729551553726,0.909934878349304,0.373202383518219,0.180936858057976,0.983624339103699,0.144002988934517,0.108379736542702,0.909934878349304,0.373202383518219,0.180936858057976,0.7996426820755,0.580423593521118,0.153882682323456,0.967349231243134,0.240217357873917,0.0808143243193626, +0.508169293403625,0.859669208526611,0.052274577319622,0.919083535671234,0.392557621002197,0.0344041660428047,0.7996426820755,0.580423593521118,0.153882682323456,0.916222453117371,-0.0517266392707825,0.397316813468933,0.895033597946167,-0.0132862692698836,0.44580066204071,0.878114581108093,-0.0161365121603012,0.478178054094315,0.916222453117371,-0.0517266392707825,0.397316813468933,0.910090208053589,-0.0187982060015202,0.413983404636383,0.933345198631287,-0.0478051044046879,0.35578265786171,0.944113373756409,-0.0137155894190073,0.329335302114487,0.933345198631287,-0.0478051044046879,0.35578265786171,0.896791279315948,0.109696745872498,0.428639322519302,0.944113373756409,-0.0137155894190073,0.329335302114487,0.896791279315948,0.109696745872498,0.428639322519302,0.900400161743164,0.204258814454079,0.384132534265518,0.849711060523987,0.368712246417999,0.376884937286377,0.968995153903961,0.0352431274950504,0.244553104043007,0.900400161743164,0.204258814454079,0.384132534265518,0.404817074537277,0.0324165411293507,-0.913822829723358,0.425404846668243,0.0773922652006149,-0.901687860488892,0.35966032743454,0.0706306397914886,-0.930406212806702,0.331424683332443,0.0328037515282631,-0.942911207675934,0.38526377081871,0.186294481158257,-0.903806447982788,0.425404846668243,0.0773922652006149,-0.901687860488892,0.204466566443443,0.191781029105186,-0.959902822971344,0.38526377081871,0.186294481158257,-0.903806447982788,0.239401906728745,0.0726002082228661,-0.968202352523804,0.0825831890106201,-0.70145446062088,-0.707913458347321,0.16231943666935,-0.78761225938797,-0.59440666437149,0.1152503490448,-0.758709311485291,-0.641153156757355,0.205546766519547,-0.839059352874756,-0.503715932369232,0.208794564008713,-0.846530675888062,-0.489684075117111,0.161017268896103,-0.80111837387085,-0.576439499855042,0.134201645851135,-0.7474005818367,-0.650678217411041,0.161017268896103,-0.80111837387085,-0.576439499855042,0.202576071023941,-0.816575467586517,-0.540524959564209,0.205546766519547,-0.839059352874756,-0.503715932369232,0.262456446886063,-0.879748046398163,-0.396434098482132, +0.208794564008713,-0.846530675888062,-0.489684075117111,0.16231943666935,-0.78761225938797,-0.59440666437149,0.0825831890106201,-0.70145446062088,-0.707913458347321,0.16669750213623,-0.767170488834381,-0.619403958320618,0.202576071023941,-0.816575467586517,-0.540524959564209,0.16669750213623,-0.767170488834381,-0.619403958320618,0.134201645851135,-0.7474005818367,-0.650678217411041,0.0432113111019135,-0.693281948566437,-0.71936970949173,0.00795500539243221,-0.64164274930954,-0.766962349414825,0.1152503490448,-0.758709311485291,-0.641153156757355,0.00795500539243221,-0.64164274930954,-0.766962349414825,-0.0407449342310429,-0.606377840042114,-0.794131994247437,-0.104181073606014,-0.521702945232391,-0.84674209356308,0.00795500539243221,-0.64164274930954,-0.766962349414825,0.0432113111019135,-0.693281948566437,-0.71936970949173,-0.0407449342310429,-0.606377840042114,-0.794131994247437,0.583012282848358,0.0535014979541302,0.810699760913849,0.709666073322296,0.0502890646457672,0.702741086483002,0.661541402339935,0.0253581721335649,0.749479651451111,0.761099398136139,-0.0321028530597687,0.647840321063995,0.709666073322296,0.0502890646457672,0.702741086483002,0.669700503349304,-0.025288887321949,0.742200493812561,0.761099398136139,-0.0321028530597687,0.647840321063995,0.751334667205811,-0.0417165234684944,0.658601403236389,0.798623919487,0.0492589026689529,0.59981095790863,0.777699649333954,-0.00232962076552212,0.628631591796875,0.82141786813736,-0.0876332223415375,0.563553810119629,0.788228750228882,-0.0774906203150749,0.610483825206757,0.837507128715515,-0.0396653413772583,0.544984698295593,0.777699649333954,-0.00232962076552212,0.628631591796875,0.828526020050049,-0.0143947917968035,0.559765338897705,0.828526020050049,-0.0143947917968035,0.559765338897705,0.882633864879608,-0.0556233339011669,0.466758400201797,0.860083043575287,-0.0551226325333118,0.507167160511017,0.871483087539673,-0.00977774057537317,0.490327954292297,0.860083043575287,-0.0551226325333118,0.507167160511017,0.878114581108093,-0.0161365121603012,0.478178054094315, +0.82141786813736,-0.0876332223415375,0.563553810119629,0.831562876701355,-0.155313342809677,0.533273637294769,0.788228750228882,-0.0774906203150749,0.610483825206757,0.814009845256805,-0.11880711466074,0.568570673465729,0.788228750228882,-0.0774906203150749,0.610483825206757,0.831562876701355,-0.155313342809677,0.533273637294769,0.814009845256805,-0.11880711466074,0.568570673465729,0.778684318065643,-0.0444756895303726,0.625837445259094,0.744991838932037,-0.113316841423512,0.657378435134888,0.751334667205811,-0.0417165234684944,0.658601403236389,0.778684318065643,-0.0444756895303726,0.625837445259094,0.790194988250732,-0.000703058787621558,0.612855017185211,0.583012282848358,0.0535014979541302,0.810699760913849,0.661541402339935,0.0253581721335649,0.749479651451111,0.550437569618225,0.0859284475445747,0.830442428588867,0.395883500576019,-0.0524692535400391,0.916800439357758,0.649057626724243,0.019175423309207,0.760497450828552,0.468657284975052,0.0150072183459997,0.883252561092377,0.682579755783081,-0.11399107426405,-0.721866190433502,0.714255928993225,-0.232092887163162,-0.660281240940094,0.76905882358551,-0.188914597034454,-0.61062228679657,0.730792641639709,-0.325209617614746,-0.600150525569916,0.779802620410919,-0.198811009526253,-0.593617737293243,0.714255928993225,-0.232092887163162,-0.660281240940094,0.775671541690826,-0.293566137552261,-0.558706104755402,0.746297597885132,-0.384596854448318,-0.54325407743454,0.730792641639709,-0.325209617614746,-0.600150525569916,0.840046465396881,-0.202502846717834,-0.503303527832031,0.793580234050751,-0.305114090442657,-0.526436746120453,0.855148255825043,-0.252629280090332,-0.452658593654633,0.793580234050751,-0.305114090442657,-0.526436746120453,0.746297597885132,-0.384596854448318,-0.54325407743454,0.775671541690826,-0.293566137552261,-0.558706104755402,0.782498419284821,-0.107972010970116,-0.613219439983368,0.715163707733154,-0.0116750160232186,-0.698859333992004,0.638389766216278,0.000318330596201122,-0.76971310377121,0.615494132041931,0.0997821092605591,-0.78179943561554, +0.556336760520935,0.108132779598236,-0.823891043663025,0.715163707733154,-0.0116750160232186,-0.698859333992004,0.638389766216278,0.000318330596201122,-0.76971310377121,0.682579755783081,-0.11399107426405,-0.721866190433502,0.782498419284821,-0.107972010970116,-0.613219439983368,0.682415962219238,-0.0241411831229925,-0.730565190315247,0.613371074199677,0.0575734004378319,-0.787693500518799,0.615494132041931,0.0997821092605591,-0.78179943561554,0.613371074199677,0.0575734004378319,-0.787693500518799,0.657205581665039,-0.0169059820473194,-0.753521621227264,0.620826959609985,0.0655280649662018,-0.781204044818878,0.570473253726959,0.0475805029273033,-0.819936692714691,0.620826959609985,0.0655280649662018,-0.781204044818878,0.641763389110565,-0.0569330751895905,-0.76478636264801,0.494154036045074,0.0386465527117252,-0.868514895439148,0.482960253953934,0.0788470953702927,-0.872085094451904,0.570473253726959,0.0475805029273033,-0.819936692714691,0.439359992742538,-0.11028877645731,-0.891515076160431,0.418200671672821,-0.101268939673901,-0.902691900730133,0.426397532224655,-0.112247951328754,-0.897544085979462,0.443951815366745,0.0234003104269505,-0.895744979381561,0.426397532224655,-0.112247951328754,-0.897544085979462,0.431807905435562,0.0343774408102036,-0.90131014585495,0.434476673603058,0.154153734445572,-0.887393116950989,0.40501856803894,0.153985619544983,-0.901248157024384,0.431807905435562,0.0343774408102036,-0.90131014585495,0.434476673603058,0.154153734445572,-0.887393116950989,0.395378768444061,0.154353216290474,-0.905456006526947,0.40501856803894,0.153985619544983,-0.901248157024384,0.439290821552277,0.0719726011157036,-0.895457088947296,0.403981447219849,0.107731692492962,-0.908401191234589,0.494154036045074,0.0386465527117252,-0.868514895439148,0.403981447219849,0.107731692492962,-0.908401191234589,0.436281949281693,0.158940926194191,-0.88566118478775,0.404053449630737,0.125531569123268,-0.906080901622772,0.427571088075638,0.14288541674614,-0.89261782169342,0.442774802446365,0.166138172149658,-0.881106376647949, +0.442825734615326,0.169559717178345,-0.880428791046143,0.427571088075638,0.14288541674614,-0.89261782169342,0.40013924241066,0.193153232336044,-0.895868480205536,0.396124839782715,0.069731593132019,-0.915544927120209,0.42056205868721,-0.0716967880725861,-0.904426395893097,0.474889785051346,-0.0227201245725155,-0.879751861095428,0.396124839782715,0.069731593132019,-0.915544927120209,0.42056205868721,-0.0716967880725861,-0.904426395893097,0.418200671672821,-0.101268939673901,-0.902691900730133,0.439359992742538,-0.11028877645731,-0.891515076160431,0.404053449630737,0.125531569123268,-0.906080901622772,0.436281949281693,0.158940926194191,-0.88566118478775,0.442774802446365,0.166138172149658,-0.881106376647949,0.395378768444061,0.154353216290474,-0.905456006526947,0.434476673603058,0.154153734445572,-0.887393116950989,0.412497788667679,0.0884994193911552,-0.906649470329285,0.324253410100937,0.00582627253606915,-0.945952236652374,0.412632018327713,0.0507275611162186,-0.909484148025513,0.35966032743454,0.0706306397914886,-0.930406212806702,0.324253410100937,0.00582627253606915,-0.945952236652374,0.412497788667679,0.0884994193911552,-0.906649470329285,0.412632018327713,0.0507275611162186,-0.909484148025513,0.912568330764771,-0.0326752588152885,-0.407616525888443,0.877316296100616,-0.0274051334708929,-0.47912934422493,0.902836084365845,0.000991918728686869,-0.429983556270599,0.839300394058228,-0.109582863748074,-0.532509386539459,0.877316296100616,-0.0274051334708929,-0.47912934422493,0.847461700439453,0.004508210811764,-0.530837297439575,0.840046465396881,-0.202502846717834,-0.503303527832031,0.860467433929443,-0.214123159646988,-0.462327778339386,0.839300394058228,-0.109582863748074,-0.532509386539459,0.917984068393707,0.0550644360482693,-0.392776101827621,0.953431189060211,-0.0484362319111824,-0.297695428133011,0.912568330764771,-0.0326752588152885,-0.407616525888443,0.919083535671234,0.392557621002197,0.0344041660428047,0.508169293403625,0.859669208526611,0.052274577319622,0.821189641952515,0.569184124469757,-0.0409487150609493, +0.930854141712189,0.363486468791962,-0.0372580327093601,0.821189641952515,0.569184124469757,-0.0409487150609493,0.63890153169632,0.7608363032341,-0.11372235417366,0.930854141712189,0.363486468791962,-0.0372580327093601,0.63890153169632,0.7608363032341,-0.11372235417366,0.888390362262726,0.451201111078262,-0.0847350805997849,0.85101193189621,0.485192596912384,-0.200914934277534,0.888390362262726,0.451201111078262,-0.0847350805997849,0.480638444423676,0.841849863529205,-0.245510503649712,0.85101193189621,0.485192596912384,-0.200914934277534,0.692891955375671,0.652373015880585,-0.307099401950836,0.917564868927002,0.309057474136353,-0.250115990638733,0.867564082145691,0.260370314121246,-0.423721313476563,0.95126074552536,0.0947098955512047,-0.293484061956406,0.917564868927002,0.309057474136353,-0.250115990638733,0.952265322208405,-0.0945814773440361,-0.290249884128571,0.937874674797058,-0.0427793972194195,-0.344326674938202,0.919285714626312,-0.136944457888603,-0.368998497724533,0.892258107662201,0.05744693800807,-0.447856217622757,0.937874674797058,-0.0427793972194195,-0.344326674938202,0.95126074552536,0.0947098955512047,-0.293484061956406,0.934434711933136,-0.142130300402641,-0.32654345035553,0.953431189060211,-0.0484362319111824,-0.297695428133011,0.952265322208405,-0.0945814773440361,-0.290249884128571,0.849711060523987,0.368712246417999,0.376884937286377,0.733044981956482,0.591075718402863,0.336562812328339,0.953371822834015,0.21002484858036,0.216729551553726,0.953371822834015,0.21002484858036,0.216729551553726,0.733044981956482,0.591075718402863,0.336562812328339,0.909934878349304,0.373202383518219,0.180936858057976,0.7996426820755,0.580423593521118,0.153882682323456,0.909934878349304,0.373202383518219,0.180936858057976,0.647193133831024,0.71926474571228,0.252584934234619,0.508169293403625,0.859669208526611,0.052274577319622,0.7996426820755,0.580423593521118,0.153882682323456,0.346310555934906,0.909985363483429,0.228025332093239,0.916222453117371,-0.0517266392707825,0.397316813468933,0.878114581108093,-0.0161365121603012,0.478178054094315, +0.882627546787262,-0.0935246720910072,0.460675179958344,0.916222453117371,-0.0517266392707825,0.397316813468933,0.910268068313599,-0.0997210219502449,0.401830404996872,0.910090208053589,-0.0187982060015202,0.413983404636383,0.933345198631287,-0.0478051044046879,0.35578265786171,0.910090208053589,-0.0187982060015202,0.413983404636383,0.896791279315948,0.109696745872498,0.428639322519302,0.900400161743164,0.204258814454079,0.384132534265518,0.896791279315948,0.109696745872498,0.428639322519302,0.665616035461426,0.544860184192657,0.509983003139496,0.849711060523987,0.368712246417999,0.376884937286377,0.900400161743164,0.204258814454079,0.384132534265518,0.642104983329773,0.616546869277954,0.455599725246429,0.425404846668243,0.0773922652006149,-0.901687860488892,0.404817074537277,0.0324165411293507,-0.913822829723358,0.331424683332443,0.0328037515282631,-0.942911207675934,0.35966032743454,0.0706306397914886,-0.930406212806702,0.412632018327713,0.0507275611162186,-0.909484148025513,0.404817074537277,0.0324165411293507,-0.913822829723358,0.331424683332443,0.0328037515282631,-0.942911207675934,0.239401906728745,0.0726002082228661,-0.968202352523804,0.38526377081871,0.186294481158257,-0.903806447982788,0.0825831890106201,-0.70145446062088,-0.707913458347321,0.1152503490448,-0.758709311485291,-0.641153156757355,0.00795500539243221,-0.64164274930954,-0.766962349414825,0.161017268896103,-0.80111837387085,-0.576439499855042,0.158299073576927,-0.782573819160461,-0.602095782756805,0.205546766519547,-0.839059352874756,-0.503715932369232,0.134201645851135,-0.7474005818367,-0.650678217411041,0.111658006906509,-0.728790760040283,-0.675571143627167,0.161017268896103,-0.80111837387085,-0.576439499855042,0.247956663370132,-0.881808757781982,-0.401161700487137,0.262456446886063,-0.879748046398163,-0.396434098482132,0.205546766519547,-0.839059352874756,-0.503715932369232,0.134201645851135,-0.7474005818367,-0.650678217411041,0.16669750213623,-0.767170488834381,-0.619403958320618,0.0825831890106201,-0.70145446062088,-0.707913458347321,-0.013318095356226,-0.584911465644836,-0.810987710952759, +0.00795500539243221,-0.64164274930954,-0.766962349414825,-0.104181073606014,-0.521702945232391,-0.84674209356308,0.583012282848358,0.0535014979541302,0.810699760913849,0.669700503349304,-0.025288887321949,0.742200493812561,0.709666073322296,0.0502890646457672,0.702741086483002,0.687962591648102,-0.107035167515278,0.717809736728668,0.761099398136139,-0.0321028530597687,0.647840321063995,0.669700503349304,-0.025288887321949,0.742200493812561,0.761099398136139,-0.0321028530597687,0.647840321063995,0.739551186561584,-0.137504622340202,0.658905327320099,0.751334667205811,-0.0417165234684944,0.658601403236389,0.788228750228882,-0.0774906203150749,0.610483825206757,0.733122289180756,0.0150710213929415,0.679929614067078,0.777699649333954,-0.00232962076552212,0.628631591796875,0.785127997398376,0.0218252278864384,0.618948757648468,0.828526020050049,-0.0143947917968035,0.559765338897705,0.777699649333954,-0.00232962076552212,0.628631591796875,0.828526020050049,-0.0143947917968035,0.559765338897705,0.84008264541626,-0.0480614714324474,0.540324926376343,0.882633864879608,-0.0556233339011669,0.466758400201797,0.877866506576538,-0.117551498115063,0.464254111051559,0.860083043575287,-0.0551226325333118,0.507167160511017,0.882633864879608,-0.0556233339011669,0.466758400201797,0.860083043575287,-0.0551226325333118,0.507167160511017,0.882627546787262,-0.0935246720910072,0.460675179958344,0.878114581108093,-0.0161365121603012,0.478178054094315,0.788228750228882,-0.0774906203150749,0.610483825206757,0.814009845256805,-0.11880711466074,0.568570673465729,0.730005145072937,-0.131257876753807,0.670718908309937,0.744991838932037,-0.113316841423512,0.657378435134888,0.778684318065643,-0.0444756895303726,0.625837445259094,0.68681788444519,-0.0555173791944981,0.72470611333847,0.730005145072937,-0.131257876753807,0.670718908309937,0.814009845256805,-0.11880711466074,0.568570673465729,0.744991838932037,-0.113316841423512,0.657378435134888,0.68681788444519,-0.0555173791944981,0.72470611333847,0.778684318065643,-0.0444756895303726,0.625837445259094, +0.751334667205811,-0.0417165234684944,0.658601403236389,0.76905882358551,-0.188914597034454,-0.61062228679657,0.714255928993225,-0.232092887163162,-0.660281240940094,0.779802620410919,-0.198811009526253,-0.593617737293243,0.682579755783081,-0.11399107426405,-0.721866190433502,0.76905882358551,-0.188914597034454,-0.61062228679657,0.782498419284821,-0.107972010970116,-0.613219439983368,0.779802620410919,-0.198811009526253,-0.593617737293243,0.730792641639709,-0.325209617614746,-0.600150525569916,0.781730234622955,-0.22161303460598,-0.582911193370819,0.749169170856476,-0.359485030174255,-0.556341528892517,0.730792641639709,-0.325209617614746,-0.600150525569916,0.746297597885132,-0.384596854448318,-0.54325407743454,0.840046465396881,-0.202502846717834,-0.503303527832031,0.81098747253418,-0.0847880840301514,-0.578886985778809,0.793580234050751,-0.305114090442657,-0.526436746120453,0.749169170856476,-0.359485030174255,-0.556341528892517,0.746297597885132,-0.384596854448318,-0.54325407743454,0.793580234050751,-0.305114090442657,-0.526436746120453,0.782498419284821,-0.107972010970116,-0.613219439983368,0.803958356380463,-0.0606511309742928,-0.591584503650665,0.715163707733154,-0.0116750160232186,-0.698859333992004,0.682415962219238,-0.0241411831229925,-0.730565190315247,0.615494132041931,0.0997821092605591,-0.78179943561554,0.715163707733154,-0.0116750160232186,-0.698859333992004,0.613371074199677,0.0575734004378319,-0.787693500518799,0.682415962219238,-0.0241411831229925,-0.730565190315247,0.657205581665039,-0.0169059820473194,-0.753521621227264,0.620826959609985,0.0655280649662018,-0.781204044818878,0.657205581665039,-0.0169059820473194,-0.753521621227264,0.641763389110565,-0.0569330751895905,-0.76478636264801,0.641763389110565,-0.0569330751895905,-0.76478636264801,0.560377955436707,-0.047677468508482,-0.826863527297974,0.570473253726959,0.0475805029273033,-0.819936692714691,0.570473253726959,0.0475805029273033,-0.819936692714691,0.560377955436707,-0.047677468508482,-0.826863527297974,0.494154036045074,0.0386465527117252,-0.868514895439148, +0.530326843261719,-0.0663386061787605,-0.84519374370575,0.426397532224655,-0.112247951328754,-0.897544085979462,0.418200671672821,-0.101268939673901,-0.902691900730133,0.426397532224655,-0.112247951328754,-0.897544085979462,0.530326843261719,-0.0663386061787605,-0.84519374370575,0.431807905435562,0.0343774408102036,-0.90131014585495,0.434476673603058,0.154153734445572,-0.887393116950989,0.431807905435562,0.0343774408102036,-0.90131014585495,0.449112385511398,0.130921795964241,-0.883831083774567,0.439290821552277,0.0719726011157036,-0.895457088947296,0.436281949281693,0.158940926194191,-0.88566118478775,0.403981447219849,0.107731692492962,-0.908401191234589,0.439290821552277,0.0719726011157036,-0.895457088947296,0.494154036045074,0.0386465527117252,-0.868514895439148,0.515911281108856,0.0407111160457134,-0.855674028396606,0.436281949281693,0.158940926194191,-0.88566118478775,0.442825734615326,0.169559717178345,-0.880428791046143,0.442774802446365,0.166138172149658,-0.881106376647949,0.442825734615326,0.169559717178345,-0.880428791046143,0.418523907661438,0.161345154047012,-0.89375913143158,0.427571088075638,0.14288541674614,-0.89261782169342,0.40013924241066,0.193153232336044,-0.895868480205536,0.427571088075638,0.14288541674614,-0.89261782169342,0.418523907661438,0.161345154047012,-0.89375913143158,0.391468197107315,0.188982293009758,-0.900576591491699,0.396124839782715,0.069731593132019,-0.915544927120209,0.40013924241066,0.193153232336044,-0.895868480205536,0.42056205868721,-0.0716967880725861,-0.904426395893097,0.396124839782715,0.069731593132019,-0.915544927120209,0.418200671672821,-0.101268939673901,-0.902691900730133,0.421782821416855,0.12996418774128,-0.897334039211273,0.412497788667679,0.0884994193911552,-0.906649470329285,0.434476673603058,0.154153734445572,-0.887393116950989,0.412497788667679,0.0884994193911552,-0.906649470329285,0.421782821416855,0.12996418774128,-0.897334039211273,0.412632018327713,0.0507275611162186,-0.909484148025513,0.912568330764771,-0.0326752588152885,-0.407616525888443,0.906115531921387,-0.0891732573509216,-0.413524776697159, +0.877316296100616,-0.0274051334708929,-0.47912934422493,0.905804574489594,-0.0291232783347368,-0.422693461179733,0.847461700439453,0.004508210811764,-0.530837297439575,0.877316296100616,-0.0274051334708929,-0.47912934422493,0.839300394058228,-0.109582863748074,-0.532509386539459,0.847461700439453,0.004508210811764,-0.530837297439575,0.812345862388611,-0.0315922945737839,-0.582319498062134,0.812345862388611,-0.0315922945737839,-0.582319498062134,0.840046465396881,-0.202502846717834,-0.503303527832031,0.839300394058228,-0.109582863748074,-0.532509386539459,0.934434711933136,-0.142130300402641,-0.32654345035553,0.912568330764771,-0.0326752588152885,-0.407616525888443,0.953431189060211,-0.0484362319111824,-0.297695428133011,0.326190948486328,0.937670886516571,-0.119885943830013,0.821189641952515,0.569184124469757,-0.0409487150609493,0.508169293403625,0.859669208526611,0.052274577319622,0.326190948486328,0.937670886516571,-0.119885943830013,0.63890153169632,0.7608363032341,-0.11372235417366,0.821189641952515,0.569184124469757,-0.0409487150609493,0.63890153169632,0.7608363032341,-0.11372235417366,0.480638444423676,0.841849863529205,-0.245510503649712,0.888390362262726,0.451201111078262,-0.0847350805997849,0.85101193189621,0.485192596912384,-0.200914934277534,0.480638444423676,0.841849863529205,-0.245510503649712,0.692891955375671,0.652373015880585,-0.307099401950836,0.605300903320313,0.613496005535126,-0.507181525230408,0.917564868927002,0.309057474136353,-0.250115990638733,0.692891955375671,0.652373015880585,-0.307099401950836,0.892258107662201,0.05744693800807,-0.447856217622757,0.95126074552536,0.0947098955512047,-0.293484061956406,0.867564082145691,0.260370314121246,-0.423721313476563,0.917564868927002,0.309057474136353,-0.250115990638733,0.605300903320313,0.613496005535126,-0.507181525230408,0.867564082145691,0.260370314121246,-0.423721313476563,0.919285714626312,-0.136944457888603,-0.368998497724533,0.937874674797058,-0.0427793972194195,-0.344326674938202,0.877898097038269,-0.0775488093495369,-0.472526282072067,0.919285714626312,-0.136944457888603,-0.368998497724533, +0.934434711933136,-0.142130300402641,-0.32654345035553,0.952265322208405,-0.0945814773440361,-0.290249884128571,0.937874674797058,-0.0427793972194195,-0.344326674938202,0.892258107662201,0.05744693800807,-0.447856217622757,0.877898097038269,-0.0775488093495369,-0.472526282072067,0.849711060523987,0.368712246417999,0.376884937286377,0.378518521785736,0.804485499858856,0.457740694284439,0.733044981956482,0.591075718402863,0.336562812328339,0.733044981956482,0.591075718402863,0.336562812328339,0.647193133831024,0.71926474571228,0.252584934234619,0.909934878349304,0.373202383518219,0.180936858057976,0.7996426820755,0.580423593521118,0.153882682323456,0.647193133831024,0.71926474571228,0.252584934234619,0.346310555934906,0.909985363483429,0.228025332093239,0.508169293403625,0.859669208526611,0.052274577319622,0.346310555934906,0.909985363483429,0.228025332093239,-0.00556773785501719,0.994250416755676,0.106933623552322,0.916222453117371,-0.0517266392707825,0.397316813468933,0.882627546787262,-0.0935246720910072,0.460675179958344,0.910268068313599,-0.0997210219502449,0.401830404996872,0.866121351718903,-0.0751470625400543,0.49415248632431,0.910090208053589,-0.0187982060015202,0.413983404636383,0.910268068313599,-0.0997210219502449,0.401830404996872,0.896791279315948,0.109696745872498,0.428639322519302,0.910090208053589,-0.0187982060015202,0.413983404636383,0.820687651634216,0.226093679666519,0.524741113185883,0.896791279315948,0.109696745872498,0.428639322519302,0.717525243759155,0.447146147489548,0.53405773639679,0.665616035461426,0.544860184192657,0.509983003139496,0.665616035461426,0.544860184192657,0.509983003139496,0.642104983329773,0.616546869277954,0.455599725246429,0.900400161743164,0.204258814454079,0.384132534265518,0.849711060523987,0.368712246417999,0.376884937286377,0.642104983329773,0.616546869277954,0.455599725246429,0.378518521785736,0.804485499858856,0.457740694284439,0.340507060289383,0.102761089801788,-0.934609532356262,0.331424683332443,0.0328037515282631,-0.942911207675934,0.404817074537277,0.0324165411293507,-0.913822829723358, +0.404817074537277,0.0324165411293507,-0.913822829723358,0.412632018327713,0.0507275611162186,-0.909484148025513,0.421782821416855,0.12996418774128,-0.897334039211273,0.253347367048264,0.0762910544872284,-0.964362323284149,0.239401906728745,0.0726002082228661,-0.968202352523804,0.331424683332443,0.0328037515282631,-0.942911207675934,-0.013318095356226,-0.584911465644836,-0.810987710952759,0.0825831890106201,-0.70145446062088,-0.707913458347321,0.00795500539243221,-0.64164274930954,-0.766962349414825,0.111658006906509,-0.728790760040283,-0.675571143627167,0.158299073576927,-0.782573819160461,-0.602095782756805,0.161017268896103,-0.80111837387085,-0.576439499855042,0.205546766519547,-0.839059352874756,-0.503715932369232,0.158299073576927,-0.782573819160461,-0.602095782756805,0.140114828944206,-0.788483798503876,-0.598883092403412,0.111658006906509,-0.728790760040283,-0.675571143627167,0.134201645851135,-0.7474005818367,-0.650678217411041,0.0449758768081665,-0.636133015155792,-0.770267426967621,0.205546766519547,-0.839059352874756,-0.503715932369232,0.179862946271896,-0.852266728878021,-0.491213440895081,0.247956663370132,-0.881808757781982,-0.401161700487137,0.0449758768081665,-0.636133015155792,-0.770267426967621,0.134201645851135,-0.7474005818367,-0.650678217411041,0.0825831890106201,-0.70145446062088,-0.707913458347321,-0.013318095356226,-0.584911465644836,-0.810987710952759,-0.104181073606014,-0.521702945232391,-0.84674209356308,-0.0762273445725441,-0.47655987739563,-0.875831007957459,0.583714008331299,-0.0530277937650681,0.810225784778595,0.669700503349304,-0.025288887321949,0.742200493812561,0.583012282848358,0.0535014979541302,0.810699760913849,0.761099398136139,-0.0321028530597687,0.647840321063995,0.687962591648102,-0.107035167515278,0.717809736728668,0.739551186561584,-0.137504622340202,0.658905327320099,0.583714008331299,-0.0530277937650681,0.810225784778595,0.687962591648102,-0.107035167515278,0.717809736728668,0.669700503349304,-0.025288887321949,0.742200493812561,0.739551186561584,-0.137504622340202,0.658905327320099, +0.686615943908691,-0.149596393108368,0.711462795734406,0.751334667205811,-0.0417165234684944,0.658601403236389,0.788228750228882,-0.0774906203150749,0.610483825206757,0.730005145072937,-0.131257876753807,0.670718908309937,0.733122289180756,0.0150710213929415,0.679929614067078,0.733122289180756,0.0150710213929415,0.679929614067078,0.785127997398376,0.0218252278864384,0.618948757648468,0.777699649333954,-0.00232962076552212,0.628631591796875,0.828526020050049,-0.0143947917968035,0.559765338897705,0.785127997398376,0.0218252278864384,0.618948757648468,0.84008264541626,-0.0480614714324474,0.540324926376343,0.882633864879608,-0.0556233339011669,0.466758400201797,0.84008264541626,-0.0480614714324474,0.540324926376343,0.89834588766098,-0.0524194724857807,0.436149895191193,0.860083043575287,-0.0551226325333118,0.507167160511017,0.877866506576538,-0.117551498115063,0.464254111051559,0.882627546787262,-0.0935246720910072,0.460675179958344,0.877866506576538,-0.117551498115063,0.464254111051559,0.882633864879608,-0.0556233339011669,0.466758400201797,0.911953866481781,-0.0814872831106186,0.402119129896164,0.744991838932037,-0.113316841423512,0.657378435134888,0.68681788444519,-0.0555173791944981,0.72470611333847,0.651858985424042,-0.11746571958065,0.749187231063843,0.744991838932037,-0.113316841423512,0.657378435134888,0.651858985424042,-0.11746571958065,0.749187231063843,0.730005145072937,-0.131257876753807,0.670718908309937,0.68681788444519,-0.0555173791944981,0.72470611333847,0.751334667205811,-0.0417165234684944,0.658601403236389,0.686615943908691,-0.149596393108368,0.711462795734406,0.782498419284821,-0.107972010970116,-0.613219439983368,0.76905882358551,-0.188914597034454,-0.61062228679657,0.779802620410919,-0.198811009526253,-0.593617737293243,0.758010149002075,-0.200488954782486,-0.620664656162262,0.781730234622955,-0.22161303460598,-0.582911193370819,0.730792641639709,-0.325209617614746,-0.600150525569916,0.799534976482391,-0.118103802204132,-0.588893234729767,0.779802620410919,-0.198811009526253,-0.593617737293243,0.781730234622955,-0.22161303460598,-0.582911193370819, +0.730792641639709,-0.325209617614746,-0.600150525569916,0.749169170856476,-0.359485030174255,-0.556341528892517,0.758010149002075,-0.200488954782486,-0.620664656162262,0.81098747253418,-0.0847880840301514,-0.578886985778809,0.840046465396881,-0.202502846717834,-0.503303527832031,0.812345862388611,-0.0315922945737839,-0.582319498062134,0.758010149002075,-0.200488954782486,-0.620664656162262,0.793580234050751,-0.305114090442657,-0.526436746120453,0.81098747253418,-0.0847880840301514,-0.578886985778809,0.758010149002075,-0.200488954782486,-0.620664656162262,0.749169170856476,-0.359485030174255,-0.556341528892517,0.793580234050751,-0.305114090442657,-0.526436746120453,0.803958356380463,-0.0606511309742928,-0.591584503650665,0.782498419284821,-0.107972010970116,-0.613219439983368,0.816492259502411,-0.0912668853998184,-0.570097088813782,0.715163707733154,-0.0116750160232186,-0.698859333992004,0.803958356380463,-0.0606511309742928,-0.591584503650665,0.750596582889557,-0.10404921323061,-0.652516961097717,0.715163707733154,-0.0116750160232186,-0.698859333992004,0.750596582889557,-0.10404921323061,-0.652516961097717,0.682415962219238,-0.0241411831229925,-0.730565190315247,0.682415962219238,-0.0241411831229925,-0.730565190315247,0.71671336889267,-0.106325015425682,-0.689214587211609,0.657205581665039,-0.0169059820473194,-0.753521621227264,0.71671336889267,-0.106325015425682,-0.689214587211609,0.641763389110565,-0.0569330751895905,-0.76478636264801,0.657205581665039,-0.0169059820473194,-0.753521621227264,0.641763389110565,-0.0569330751895905,-0.76478636264801,0.577029764652252,-0.143343761563301,-0.804045498371124,0.560377955436707,-0.047677468508482,-0.826863527297974,0.569018542766571,-0.0485210977494717,-0.820891857147217,0.494154036045074,0.0386465527117252,-0.868514895439148,0.560377955436707,-0.047677468508482,-0.826863527297974,0.532982885837555,0.0258844122290611,-0.845729887485504,0.530326843261719,-0.0663386061787605,-0.84519374370575,0.418200671672821,-0.101268939673901,-0.902691900730133,0.530326843261719,-0.0663386061787605,-0.84519374370575, +0.516734421253204,0.0632454976439476,-0.853806376457214,0.431807905435562,0.0343774408102036,-0.90131014585495,0.449112385511398,0.130921795964241,-0.883831083774567,0.431807905435562,0.0343774408102036,-0.90131014585495,0.516734421253204,0.0632454976439476,-0.853806376457214,0.421782821416855,0.12996418774128,-0.897334039211273,0.434476673603058,0.154153734445572,-0.887393116950989,0.449112385511398,0.130921795964241,-0.883831083774567,0.439290821552277,0.0719726011157036,-0.895457088947296,0.503997385501862,0.116093166172504,-0.855867326259613,0.436281949281693,0.158940926194191,-0.88566118478775,0.569018542766571,-0.0485210977494717,-0.820891857147217,0.515911281108856,0.0407111160457134,-0.855674028396606,0.494154036045074,0.0386465527117252,-0.868514895439148,0.439290821552277,0.0719726011157036,-0.895457088947296,0.515911281108856,0.0407111160457134,-0.855674028396606,0.503997385501862,0.116093166172504,-0.855867326259613,0.436281949281693,0.158940926194191,-0.88566118478775,0.503997385501862,0.116093166172504,-0.855867326259613,0.442825734615326,0.169559717178345,-0.880428791046143,0.442825734615326,0.169559717178345,-0.880428791046143,0.411621570587158,0.0613379664719105,-0.909288287162781,0.418523907661438,0.161345154047012,-0.89375913143158,0.378516048192978,0.203789457678795,-0.902881681919098,0.40013924241066,0.193153232336044,-0.895868480205536,0.418523907661438,0.161345154047012,-0.89375913143158,0.396124839782715,0.069731593132019,-0.915544927120209,0.391468197107315,0.188982293009758,-0.900576591491699,0.400077432394028,0.0609154887497425,-0.914454579353333,0.391468197107315,0.188982293009758,-0.900576591491699,0.40013924241066,0.193153232336044,-0.895868480205536,0.378516048192978,0.203789457678795,-0.902881681919098,0.396124839782715,0.069731593132019,-0.915544927120209,0.400077432394028,0.0609154887497425,-0.914454579353333,0.418200671672821,-0.101268939673901,-0.902691900730133,0.906115531921387,-0.0891732573509216,-0.413524776697159,0.912568330764771,-0.0326752588152885,-0.407616525888443,0.934434711933136,-0.142130300402641,-0.32654345035553, +0.877316296100616,-0.0274051334708929,-0.47912934422493,0.906115531921387,-0.0891732573509216,-0.413524776697159,0.905804574489594,-0.0291232783347368,-0.422693461179733,0.905804574489594,-0.0291232783347368,-0.422693461179733,0.887807905673981,0.0187924914062023,-0.45983025431633,0.847461700439453,0.004508210811764,-0.530837297439575,0.82072639465332,0.0575746484100819,-0.568412959575653,0.812345862388611,-0.0315922945737839,-0.582319498062134,0.847461700439453,0.004508210811764,-0.530837297439575,0.0151238115504384,0.997338533401489,-0.0713231563568115,0.326190948486328,0.937670886516571,-0.119885943830013,0.508169293403625,0.859669208526611,0.052274577319622,0.63890153169632,0.7608363032341,-0.11372235417366,0.326190948486328,0.937670886516571,-0.119885943830013,0.24037367105484,0.957858920097351,-0.157246500253677,0.63890153169632,0.7608363032341,-0.11372235417366,0.17089356482029,0.962077379226685,-0.212608054280281,0.480638444423676,0.841849863529205,-0.245510503649712,0.277690649032593,0.878417909145355,-0.388933837413788,0.692891955375671,0.652373015880585,-0.307099401950836,0.480638444423676,0.841849863529205,-0.245510503649712,0.692891955375671,0.652373015880585,-0.307099401950836,0.277690649032593,0.878417909145355,-0.388933837413788,0.605300903320313,0.613496005535126,-0.507181525230408,0.892258107662201,0.05744693800807,-0.447856217622757,0.867564082145691,0.260370314121246,-0.423721313476563,0.723280549049377,0.352552324533463,-0.593777716159821,0.605300903320313,0.613496005535126,-0.507181525230408,0.723280549049377,0.352552324533463,-0.593777716159821,0.867564082145691,0.260370314121246,-0.423721313476563,0.901640653610229,-0.135849609971046,-0.410595804452896,0.919285714626312,-0.136944457888603,-0.368998497724533,0.877898097038269,-0.0775488093495369,-0.472526282072067,0.919285714626312,-0.136944457888603,-0.368998497724533,0.901640653610229,-0.135849609971046,-0.410595804452896,0.934434711933136,-0.142130300402641,-0.32654345035553,0.892258107662201,0.05744693800807,-0.447856217622757,0.771137416362762,0.145721063017845,-0.619768023490906, +0.877898097038269,-0.0775488093495369,-0.472526282072067,0.166172489523888,0.929085731506348,0.33043360710144,0.733044981956482,0.591075718402863,0.336562812328339,0.378518521785736,0.804485499858856,0.457740694284439,0.166172489523888,0.929085731506348,0.33043360710144,0.647193133831024,0.71926474571228,0.252584934234619,0.733044981956482,0.591075718402863,0.336562812328339,0.166172489523888,0.929085731506348,0.33043360710144,0.346310555934906,0.909985363483429,0.228025332093239,0.647193133831024,0.71926474571228,0.252584934234619,-0.00556773785501719,0.994250416755676,0.106933623552322,0.346310555934906,0.909985363483429,0.228025332093239,-0.0916019454598427,0.970983266830444,0.220908433198929,0.0151238115504384,0.997338533401489,-0.0713231563568115,0.508169293403625,0.859669208526611,0.052274577319622,-0.00556773785501719,0.994250416755676,0.106933623552322,0.882627546787262,-0.0935246720910072,0.460675179958344,0.866121351718903,-0.0751470625400543,0.49415248632431,0.910268068313599,-0.0997210219502449,0.401830404996872,0.866121351718903,-0.0751470625400543,0.49415248632431,0.772047400474548,0.158646315336227,0.615446269512177,0.910090208053589,-0.0187982060015202,0.413983404636383,0.820687651634216,0.226093679666519,0.524741113185883,0.910090208053589,-0.0187982060015202,0.413983404636383,0.772047400474548,0.158646315336227,0.615446269512177,0.896791279315948,0.109696745872498,0.428639322519302,0.820687651634216,0.226093679666519,0.524741113185883,0.717525243759155,0.447146147489548,0.53405773639679,0.23295059800148,0.817159473896027,0.527242124080658,0.665616035461426,0.544860184192657,0.509983003139496,0.717525243759155,0.447146147489548,0.53405773639679,0.107936978340149,0.890272974967957,0.442451655864716,0.642104983329773,0.616546869277954,0.455599725246429,0.665616035461426,0.544860184192657,0.509983003139496,0.642104983329773,0.616546869277954,0.455599725246429,0.107936978340149,0.890272974967957,0.442451655864716,0.378518521785736,0.804485499858856,0.457740694284439,0.340507060289383,0.102761089801788,-0.934609532356262, +0.253347367048264,0.0762910544872284,-0.964362323284149,0.331424683332443,0.0328037515282631,-0.942911207675934,0.404817074537277,0.0324165411293507,-0.913822829723358,0.421782821416855,0.12996418774128,-0.897334039211273,0.340507060289383,0.102761089801788,-0.934609532356262,0.0449758768081665,-0.636133015155792,-0.770267426967621,0.0825831890106201,-0.70145446062088,-0.707913458347321,-0.013318095356226,-0.584911465644836,-0.810987710952759,0.111658006906509,-0.728790760040283,-0.675571143627167,0.113429233431816,-0.718660473823547,-0.686047255992889,0.158299073576927,-0.782573819160461,-0.602095782756805,0.113429233431816,-0.718660473823547,-0.686047255992889,0.140114828944206,-0.788483798503876,-0.598883092403412,0.158299073576927,-0.782573819160461,-0.602095782756805,0.205546766519547,-0.839059352874756,-0.503715932369232,0.140114828944206,-0.788483798503876,-0.598883092403412,0.179862946271896,-0.852266728878021,-0.491213440895081,0.111658006906509,-0.728790760040283,-0.675571143627167,0.0449758768081665,-0.636133015155792,-0.770267426967621,0.0538525581359863,-0.643992066383362,-0.763134300708771,0.183840230107307,-0.879487276077271,-0.438981503248215,0.247956663370132,-0.881808757781982,-0.401161700487137,0.179862946271896,-0.852266728878021,-0.491213440895081,-0.013318095356226,-0.584911465644836,-0.810987710952759,-0.0762273445725441,-0.47655987739563,-0.875831007957459,0.0449758768081665,-0.636133015155792,-0.770267426967621,0.700553119182587,-0.210871770977974,0.681731820106506,0.739551186561584,-0.137504622340202,0.658905327320099,0.687962591648102,-0.107035167515278,0.717809736728668,0.583714008331299,-0.0530277937650681,0.810225784778595,0.587347745895386,-0.165840432047844,0.792161226272583,0.687962591648102,-0.107035167515278,0.717809736728668,0.739551186561584,-0.137504622340202,0.658905327320099,0.700553119182587,-0.210871770977974,0.681731820106506,0.686615943908691,-0.149596393108368,0.711462795734406,0.665403604507446,-0.0100066941231489,0.746416687965393,0.733122289180756,0.0150710213929415,0.679929614067078, +0.730005145072937,-0.131257876753807,0.670718908309937,0.741955637931824,0.00544297741726041,0.670426785945892,0.785127997398376,0.0218252278864384,0.618948757648468,0.733122289180756,0.0150710213929415,0.679929614067078,0.741955637931824,0.00544297741726041,0.670426785945892,0.84008264541626,-0.0480614714324474,0.540324926376343,0.785127997398376,0.0218252278864384,0.618948757648468,0.849447190761566,-0.131743595004082,0.510962724685669,0.89834588766098,-0.0524194724857807,0.436149895191193,0.84008264541626,-0.0480614714324474,0.540324926376343,0.882633864879608,-0.0556233339011669,0.466758400201797,0.89834588766098,-0.0524194724857807,0.436149895191193,0.911953866481781,-0.0814872831106186,0.402119129896164,0.882627546787262,-0.0935246720910072,0.460675179958344,0.877866506576538,-0.117551498115063,0.464254111051559,0.866121351718903,-0.0751470625400543,0.49415248632431,0.877866506576538,-0.117551498115063,0.464254111051559,0.911953866481781,-0.0814872831106186,0.402119129896164,0.857474625110626,-0.0745028555393219,0.509103357791901,0.651858985424042,-0.11746571958065,0.749187231063843,0.68681788444519,-0.0555173791944981,0.72470611333847,0.599048495292664,-0.0913404375314713,0.79548579454422,0.598528623580933,-0.108197882771492,0.793761014938354,0.730005145072937,-0.131257876753807,0.670718908309937,0.651858985424042,-0.11746571958065,0.749187231063843,0.68681788444519,-0.0555173791944981,0.72470611333847,0.686615943908691,-0.149596393108368,0.711462795734406,0.599048495292664,-0.0913404375314713,0.79548579454422,0.816492259502411,-0.0912668853998184,-0.570097088813782,0.782498419284821,-0.107972010970116,-0.613219439983368,0.779802620410919,-0.198811009526253,-0.593617737293243,0.758010149002075,-0.200488954782486,-0.620664656162262,0.768973350524902,-0.0777589306235313,-0.634534001350403,0.781730234622955,-0.22161303460598,-0.582911193370819,0.816492259502411,-0.0912668853998184,-0.570097088813782,0.779802620410919,-0.198811009526253,-0.593617737293243,0.799534976482391,-0.118103802204132,-0.588893234729767, +0.799534976482391,-0.118103802204132,-0.588893234729767,0.781730234622955,-0.22161303460598,-0.582911193370819,0.768973350524902,-0.0777589306235313,-0.634534001350403,0.81098747253418,-0.0847880840301514,-0.578886985778809,0.812345862388611,-0.0315922945737839,-0.582319498062134,0.804228782653809,0.076808899641037,-0.589335501194,0.758010149002075,-0.200488954782486,-0.620664656162262,0.81098747253418,-0.0847880840301514,-0.578886985778809,0.747223496437073,0.0543663650751114,-0.662345230579376,0.816492259502411,-0.0912668853998184,-0.570097088813782,0.810498237609863,0.00581533601507545,-0.585712075233459,0.803958356380463,-0.0606511309742928,-0.591584503650665,0.803958356380463,-0.0606511309742928,-0.591584503650665,0.705606520175934,-0.105049684643745,-0.7007737159729,0.750596582889557,-0.10404921323061,-0.652516961097717,0.682415962219238,-0.0241411831229925,-0.730565190315247,0.750596582889557,-0.10404921323061,-0.652516961097717,0.71671336889267,-0.106325015425682,-0.689214587211609,0.73505973815918,-0.174831733107567,-0.655073225498199,0.641763389110565,-0.0569330751895905,-0.76478636264801,0.71671336889267,-0.106325015425682,-0.689214587211609,0.622293531894684,-0.176686689257622,-0.762582719326019,0.577029764652252,-0.143343761563301,-0.804045498371124,0.641763389110565,-0.0569330751895905,-0.76478636264801,0.569018542766571,-0.0485210977494717,-0.820891857147217,0.560377955436707,-0.047677468508482,-0.826863527297974,0.577029764652252,-0.143343761563301,-0.804045498371124,0.532982885837555,0.0258844122290611,-0.845729887485504,0.613355278968811,-0.0210410486906767,-0.789526700973511,0.530326843261719,-0.0663386061787605,-0.84519374370575,0.532982885837555,0.0258844122290611,-0.845729887485504,0.418200671672821,-0.101268939673901,-0.902691900730133,0.400077432394028,0.0609154887497425,-0.914454579353333,0.530326843261719,-0.0663386061787605,-0.84519374370575,0.58912605047226,-0.000994426081888378,-0.80804044008255,0.516734421253204,0.0632454976439476,-0.853806376457214,0.516734421253204,0.0632454976439476,-0.853806376457214, +0.466232895851135,0.150833085179329,-0.871708750724792,0.449112385511398,0.130921795964241,-0.883831083774567,0.449112385511398,0.130921795964241,-0.883831083774567,0.396575659513474,0.175626769661903,-0.901045441627502,0.421782821416855,0.12996418774128,-0.897334039211273,0.515911281108856,0.0407111160457134,-0.855674028396606,0.569018542766571,-0.0485210977494717,-0.820891857147217,0.561628639698029,0.0251127853989601,-0.827008128166199,0.515911281108856,0.0407111160457134,-0.855674028396606,0.561628639698029,0.0251127853989601,-0.827008128166199,0.503997385501862,0.116093166172504,-0.855867326259613,0.503997385501862,0.116093166172504,-0.855867326259613,0.457025170326233,0.0810139253735542,-0.885756492614746,0.442825734615326,0.169559717178345,-0.880428791046143,0.457025170326233,0.0810139253735542,-0.885756492614746,0.411621570587158,0.0613379664719105,-0.909288287162781,0.442825734615326,0.169559717178345,-0.880428791046143,0.375530391931534,0.0489653833210468,-0.925515651702881,0.418523907661438,0.161345154047012,-0.89375913143158,0.411621570587158,0.0613379664719105,-0.909288287162781,0.378516048192978,0.203789457678795,-0.902881681919098,0.418523907661438,0.161345154047012,-0.89375913143158,0.375530391931534,0.0489653833210468,-0.925515651702881,0.400077432394028,0.0609154887497425,-0.914454579353333,0.391468197107315,0.188982293009758,-0.900576591491699,0.532982885837555,0.0258844122290611,-0.845729887485504,0.378516048192978,0.203789457678795,-0.902881681919098,0.340008825063705,0.126264542341232,-0.93190723657608,0.391468197107315,0.188982293009758,-0.900576591491699,0.930119335651398,-0.122098967432976,-0.34636664390564,0.906115531921387,-0.0891732573509216,-0.413524776697159,0.934434711933136,-0.142130300402641,-0.32654345035553,0.930119335651398,-0.122098967432976,-0.34636664390564,0.905804574489594,-0.0291232783347368,-0.422693461179733,0.906115531921387,-0.0891732573509216,-0.413524776697159,0.929926156997681,-0.0419335551559925,-0.365347474813461,0.887807905673981,0.0187924914062023,-0.45983025431633, +0.905804574489594,-0.0291232783347368,-0.422693461179733,0.847461700439453,0.004508210811764,-0.530837297439575,0.887807905673981,0.0187924914062023,-0.45983025431633,0.82072639465332,0.0575746484100819,-0.568412959575653,0.804228782653809,0.076808899641037,-0.589335501194,0.812345862388611,-0.0315922945737839,-0.582319498062134,0.82072639465332,0.0575746484100819,-0.568412959575653,0.326190948486328,0.937670886516571,-0.119885943830013,0.0151238115504384,0.997338533401489,-0.0713231563568115,-0.029251616448164,0.982301592826843,-0.185007527470589,0.24037367105484,0.957858920097351,-0.157246500253677,0.326190948486328,0.937670886516571,-0.119885943830013,-0.029251616448164,0.982301592826843,-0.185007527470589,0.24037367105484,0.957858920097351,-0.157246500253677,0.17089356482029,0.962077379226685,-0.212608054280281,0.63890153169632,0.7608363032341,-0.11372235417366,0.17089356482029,0.962077379226685,-0.212608054280281,0.109734565019608,0.959151685237885,-0.260741740465164,0.480638444423676,0.841849863529205,-0.245510503649712,0.277690649032593,0.878417909145355,-0.388933837413788,0.480638444423676,0.841849863529205,-0.245510503649712,0.214110806584358,0.930998265743256,-0.295632779598236,0.277690649032593,0.878417909145355,-0.388933837413788,0.11439723521471,0.821230530738831,-0.559011161327362,0.605300903320313,0.613496005535126,-0.507181525230408,0.892258107662201,0.05744693800807,-0.447856217622757,0.723280549049377,0.352552324533463,-0.593777716159821,0.771137416362762,0.145721063017845,-0.619768023490906,0.605300903320313,0.613496005535126,-0.507181525230408,0.325681537389755,0.671046555042267,-0.66605406999588,0.723280549049377,0.352552324533463,-0.593777716159821,0.901640653610229,-0.135849609971046,-0.410595804452896,0.877898097038269,-0.0775488093495369,-0.472526282072067,0.825193285942078,0.00470272777602077,-0.564830720424652,0.933074057102203,-0.151941388845444,-0.326016128063202,0.934434711933136,-0.142130300402641,-0.32654345035553,0.901640653610229,-0.135849609971046,-0.410595804452896,0.825193285942078,0.00470272777602077,-0.564830720424652, +0.877898097038269,-0.0775488093495369,-0.472526282072067,0.771137416362762,0.145721063017845,-0.619768023490906,0.378518521785736,0.804485499858856,0.457740694284439,-0.182877361774445,0.916396498680115,0.356052339076996,0.166172489523888,0.929085731506348,0.33043360710144,0.346310555934906,0.909985363483429,0.228025332093239,0.166172489523888,0.929085731506348,0.33043360710144,-0.0916019454598427,0.970983266830444,0.220908433198929,-0.0916019454598427,0.970983266830444,0.220908433198929,-0.161227583885193,0.970903038978577,0.17706735432148,-0.00556773785501719,0.994250416755676,0.106933623552322,0.0151238115504384,0.997338533401489,-0.0713231563568115,-0.00556773785501719,0.994250416755676,0.106933623552322,-0.0395304672420025,0.999216496944427,0.00191631028428674,0.772047400474548,0.158646315336227,0.615446269512177,0.866121351718903,-0.0751470625400543,0.49415248632431,0.748441934585571,0.0530710220336914,0.661073327064514,0.772047400474548,0.158646315336227,0.615446269512177,0.531978487968445,0.483618944883347,0.695062160491943,0.820687651634216,0.226093679666519,0.524741113185883,0.820687651634216,0.226093679666519,0.524741113185883,0.493482708930969,0.618703722953796,0.611293971538544,0.717525243759155,0.447146147489548,0.53405773639679,0.665616035461426,0.544860184192657,0.509983003139496,0.23295059800148,0.817159473896027,0.527242124080658,0.107936978340149,0.890272974967957,0.442451655864716,0.493482708930969,0.618703722953796,0.611293971538544,0.23295059800148,0.817159473896027,0.527242124080658,0.717525243759155,0.447146147489548,0.53405773639679,0.378518521785736,0.804485499858856,0.457740694284439,0.107936978340149,0.890272974967957,0.442451655864716,-0.182877361774445,0.916396498680115,0.356052339076996,0.340507060289383,0.102761089801788,-0.934609532356262,0.250142753124237,0.118455670773983,-0.960935354232788,0.253347367048264,0.0762910544872284,-0.964362323284149,0.396575659513474,0.175626769661903,-0.901045441627502,0.340507060289383,0.102761089801788,-0.934609532356262,0.421782821416855,0.12996418774128,-0.897334039211273, +0.113429233431816,-0.718660473823547,-0.686047255992889,0.111658006906509,-0.728790760040283,-0.675571143627167,0.0538525581359863,-0.643992066383362,-0.763134300708771,0.113429233431816,-0.718660473823547,-0.686047255992889,0.0766072347760201,-0.698470771312714,-0.711526334285736,0.140114828944206,-0.788483798503876,-0.598883092403412,0.140114828944206,-0.788483798503876,-0.598883092403412,0.0962703973054886,-0.807723462581635,-0.581648230552673,0.179862946271896,-0.852266728878021,-0.491213440895081,0.0538525581359863,-0.643992066383362,-0.763134300708771,0.0449758768081665,-0.636133015155792,-0.770267426967621,-0.0215314980596304,-0.540139257907867,-0.841300129890442,0.183840230107307,-0.879487276077271,-0.438981503248215,0.179862946271896,-0.852266728878021,-0.491213440895081,0.106444992125034,-0.835839807987213,-0.538554608821869,0.0449758768081665,-0.636133015155792,-0.770267426967621,-0.0762273445725441,-0.47655987739563,-0.875831007957459,-0.0215314980596304,-0.540139257907867,-0.841300129890442,0.587347745895386,-0.165840432047844,0.792161226272583,0.700553119182587,-0.210871770977974,0.681731820106506,0.687962591648102,-0.107035167515278,0.717809736728668,0.700553119182587,-0.210871770977974,0.681731820106506,0.687761783599854,-0.276548326015472,0.671196401119232,0.686615943908691,-0.149596393108368,0.711462795734406,0.665403604507446,-0.0100066941231489,0.746416687965393,0.741955637931824,0.00544297741726041,0.670426785945892,0.733122289180756,0.0150710213929415,0.679929614067078,0.665403604507446,-0.0100066941231489,0.746416687965393,0.730005145072937,-0.131257876753807,0.670718908309937,0.598528623580933,-0.108197882771492,0.793761014938354,0.788277149200439,-0.128093674778938,0.601839780807495,0.84008264541626,-0.0480614714324474,0.540324926376343,0.741955637931824,0.00544297741726041,0.670426785945892,0.909076452255249,-0.128871932625771,0.396196752786636,0.89834588766098,-0.0524194724857807,0.436149895191193,0.849447190761566,-0.131743595004082,0.510962724685669,0.788277149200439,-0.128093674778938,0.601839780807495, +0.849447190761566,-0.131743595004082,0.510962724685669,0.84008264541626,-0.0480614714324474,0.540324926376343,0.909076452255249,-0.128871932625771,0.396196752786636,0.911953866481781,-0.0814872831106186,0.402119129896164,0.89834588766098,-0.0524194724857807,0.436149895191193,0.877866506576538,-0.117551498115063,0.464254111051559,0.857474625110626,-0.0745028555393219,0.509103357791901,0.866121351718903,-0.0751470625400543,0.49415248632431,0.857474625110626,-0.0745028555393219,0.509103357791901,0.911953866481781,-0.0814872831106186,0.402119129896164,0.904326260089874,-0.112856507301331,0.411651909351349,0.599048495292664,-0.0913404375314713,0.79548579454422,0.598528623580933,-0.108197882771492,0.793761014938354,0.651858985424042,-0.11746571958065,0.749187231063843,0.686615943908691,-0.149596393108368,0.711462795734406,0.591980755329132,-0.164571866393089,0.788970649242401,0.599048495292664,-0.0913404375314713,0.79548579454422,0.768973350524902,-0.0777589306235313,-0.634534001350403,0.758010149002075,-0.200488954782486,-0.620664656162262,0.701314330101013,0.00759075116366148,-0.712811648845673,0.816492259502411,-0.0912668853998184,-0.570097088813782,0.799534976482391,-0.118103802204132,-0.588893234729767,0.785323977470398,0.00897960364818573,-0.619019746780396,0.768973350524902,-0.0777589306235313,-0.634534001350403,0.785323977470398,0.00897960364818573,-0.619019746780396,0.799534976482391,-0.118103802204132,-0.588893234729767,0.747223496437073,0.0543663650751114,-0.662345230579376,0.81098747253418,-0.0847880840301514,-0.578886985778809,0.804228782653809,0.076808899641037,-0.589335501194,0.747223496437073,0.0543663650751114,-0.662345230579376,0.701314330101013,0.00759075116366148,-0.712811648845673,0.758010149002075,-0.200488954782486,-0.620664656162262,0.785323977470398,0.00897960364818573,-0.619019746780396,0.810498237609863,0.00581533601507545,-0.585712075233459,0.816492259502411,-0.0912668853998184,-0.570097088813782,0.750875294208527,0.024048937484622,-0.660005867481232,0.803958356380463,-0.0606511309742928,-0.591584503650665, +0.810498237609863,0.00581533601507545,-0.585712075233459,0.750875294208527,0.024048937484622,-0.660005867481232,0.705606520175934,-0.105049684643745,-0.7007737159729,0.803958356380463,-0.0606511309742928,-0.591584503650665,0.705606520175934,-0.105049684643745,-0.7007737159729,0.731465041637421,-0.158801645040512,-0.663129508495331,0.750596582889557,-0.10404921323061,-0.652516961097717,0.731465041637421,-0.158801645040512,-0.663129508495331,0.71671336889267,-0.106325015425682,-0.689214587211609,0.750596582889557,-0.10404921323061,-0.652516961097717,0.73505973815918,-0.174831733107567,-0.655073225498199,0.622293531894684,-0.176686689257622,-0.762582719326019,0.641763389110565,-0.0569330751895905,-0.76478636264801,0.71671336889267,-0.106325015425682,-0.689214587211609,0.731465041637421,-0.158801645040512,-0.663129508495331,0.73505973815918,-0.174831733107567,-0.655073225498199,0.622293531894684,-0.176686689257622,-0.762582719326019,0.536210477352142,-0.210622563958168,-0.817383885383606,0.577029764652252,-0.143343761563301,-0.804045498371124,0.569018542766571,-0.0485210977494717,-0.820891857147217,0.577029764652252,-0.143343761563301,-0.804045498371124,0.641761243343353,-0.104205667972565,-0.759791731834412,0.532982885837555,0.0258844122290611,-0.845729887485504,0.500616431236267,0.104583606123924,-0.859328389167786,0.613355278968811,-0.0210410486906767,-0.789526700973511,0.58912605047226,-0.000994426081888378,-0.80804044008255,0.530326843261719,-0.0663386061787605,-0.84519374370575,0.613355278968811,-0.0210410486906767,-0.789526700973511,0.582524716854095,-0.00388929131440818,-0.812803566455841,0.516734421253204,0.0632454976439476,-0.853806376457214,0.58912605047226,-0.000994426081888378,-0.80804044008255,0.416562587022781,0.0665255561470985,-0.906669616699219,0.466232895851135,0.150833085179329,-0.871708750724792,0.516734421253204,0.0632454976439476,-0.853806376457214,0.449112385511398,0.130921795964241,-0.883831083774567,0.466232895851135,0.150833085179329,-0.871708750724792,0.396575659513474,0.175626769661903,-0.901045441627502, +0.569018542766571,-0.0485210977494717,-0.820891857147217,0.641761243343353,-0.104205667972565,-0.759791731834412,0.561628639698029,0.0251127853989601,-0.827008128166199,0.457025170326233,0.0810139253735542,-0.885756492614746,0.503997385501862,0.116093166172504,-0.855867326259613,0.561628639698029,0.0251127853989601,-0.827008128166199,0.457025170326233,0.0810139253735542,-0.885756492614746,0.39672464132309,-0.0555495023727417,-0.916255235671997,0.411621570587158,0.0613379664719105,-0.909288287162781,0.375530391931534,0.0489653833210468,-0.925515651702881,0.411621570587158,0.0613379664719105,-0.909288287162781,0.39672464132309,-0.0555495023727417,-0.916255235671997,0.378516048192978,0.203789457678795,-0.902881681919098,0.375530391931534,0.0489653833210468,-0.925515651702881,0.340008825063705,0.126264542341232,-0.93190723657608,0.532982885837555,0.0258844122290611,-0.845729887485504,0.391468197107315,0.188982293009758,-0.900576591491699,0.500616431236267,0.104583606123924,-0.859328389167786,0.391468197107315,0.188982293009758,-0.900576591491699,0.340008825063705,0.126264542341232,-0.93190723657608,0.500616431236267,0.104583606123924,-0.859328389167786,0.930119335651398,-0.122098967432976,-0.34636664390564,0.934434711933136,-0.142130300402641,-0.32654345035553,0.933074057102203,-0.151941388845444,-0.326016128063202,0.930119335651398,-0.122098967432976,-0.34636664390564,0.93237829208374,-0.0581103414297104,-0.356782644987106,0.905804574489594,-0.0291232783347368,-0.422693461179733,0.929926156997681,-0.0419335551559925,-0.365347474813461,0.913219332695007,-0.0469638295471668,-0.404752641916275,0.887807905673981,0.0187924914062023,-0.45983025431633,0.929926156997681,-0.0419335551559925,-0.365347474813461,0.905804574489594,-0.0291232783347368,-0.422693461179733,0.93237829208374,-0.0581103414297104,-0.356782644987106,0.84541255235672,0.0621898360550404,-0.530480742454529,0.82072639465332,0.0575746484100819,-0.568412959575653,0.887807905673981,0.0187924914062023,-0.45983025431633,0.82072639465332,0.0575746484100819,-0.568412959575653, +0.84541255235672,0.0621898360550404,-0.530480742454529,0.804228782653809,0.076808899641037,-0.589335501194,0.0151238115504384,0.997338533401489,-0.0713231563568115,-0.0895969495177269,0.986723303794861,-0.135460019111633,-0.029251616448164,0.982301592826843,-0.185007527470589,0.17089356482029,0.962077379226685,-0.212608054280281,0.24037367105484,0.957858920097351,-0.157246500253677,-0.029251616448164,0.982301592826843,-0.185007527470589,0.109734565019608,0.959151685237885,-0.260741740465164,0.17089356482029,0.962077379226685,-0.212608054280281,-0.0107405362650752,0.967220783233643,-0.253709435462952,0.214110806584358,0.930998265743256,-0.295632779598236,0.480638444423676,0.841849863529205,-0.245510503649712,0.109734565019608,0.959151685237885,-0.260741740465164,0.0267541762441397,0.950311362743378,-0.310149073600769,0.277690649032593,0.878417909145355,-0.388933837413788,0.214110806584358,0.930998265743256,-0.295632779598236,-0.00354774366132915,0.912640452384949,-0.408747762441635,0.11439723521471,0.821230530738831,-0.559011161327362,0.277690649032593,0.878417909145355,-0.388933837413788,0.605300903320313,0.613496005535126,-0.507181525230408,0.11439723521471,0.821230530738831,-0.559011161327362,0.325681537389755,0.671046555042267,-0.66605406999588,0.723280549049377,0.352552324533463,-0.593777716159821,0.390294700860977,0.551550924777985,-0.73719847202301,0.771137416362762,0.145721063017845,-0.619768023490906,0.325681537389755,0.671046555042267,-0.66605406999588,0.390294700860977,0.551550924777985,-0.73719847202301,0.723280549049377,0.352552324533463,-0.593777716159821,0.825193285942078,0.00470272777602077,-0.564830720424652,0.865739822387695,0.00583152705803514,-0.500460207462311,0.901640653610229,-0.135849609971046,-0.410595804452896,0.933074057102203,-0.151941388845444,-0.326016128063202,0.901640653610229,-0.135849609971046,-0.410595804452896,0.865739822387695,0.00583152705803514,-0.500460207462311,0.825193285942078,0.00470272777602077,-0.564830720424652,0.771137416362762,0.145721063017845,-0.619768023490906,0.520371437072754,0.363390386104584,-0.772761821746826, +0.166172489523888,0.929085731506348,0.33043360710144,-0.182877361774445,0.916396498680115,0.356052339076996,-0.231166705489159,0.93628340959549,0.264452666044235,0.166172489523888,0.929085731506348,0.33043360710144,-0.231166705489159,0.93628340959549,0.264452666044235,-0.0916019454598427,0.970983266830444,0.220908433198929,-0.0916019454598427,0.970983266830444,0.220908433198929,-0.231166705489159,0.93628340959549,0.264452666044235,-0.161227583885193,0.970903038978577,0.17706735432148,-0.00556773785501719,0.994250416755676,0.106933623552322,-0.161227583885193,0.970903038978577,0.17706735432148,-0.0407475605607033,0.996487736701965,0.0731558352708817,-0.00556773785501719,0.994250416755676,0.106933623552322,-0.0407475605607033,0.996487736701965,0.0731558352708817,-0.0395304672420025,0.999216496944427,0.00191631028428674,0.0151238115504384,0.997338533401489,-0.0713231563568115,-0.0395304672420025,0.999216496944427,0.00191631028428674,-0.00161067896988243,0.996311128139496,-0.0857985988259315,0.857474625110626,-0.0745028555393219,0.509103357791901,0.748441934585571,0.0530710220336914,0.661073327064514,0.866121351718903,-0.0751470625400543,0.49415248632431,0.772047400474548,0.158646315336227,0.615446269512177,0.748441934585571,0.0530710220336914,0.661073327064514,0.540025055408478,0.279591917991638,0.793852150440216,0.531978487968445,0.483618944883347,0.695062160491943,0.772047400474548,0.158646315336227,0.615446269512177,0.451655179262161,0.423156559467316,0.785459101200104,0.493482708930969,0.618703722953796,0.611293971538544,0.820687651634216,0.226093679666519,0.524741113185883,0.531978487968445,0.483618944883347,0.695062160491943,0.107936978340149,0.890272974967957,0.442451655864716,0.23295059800148,0.817159473896027,0.527242124080658,-0.252997875213623,0.889519333839417,0.380456656217575,0.23295059800148,0.817159473896027,0.527242124080658,0.493482708930969,0.618703722953796,0.611293971538544,-0.0448035150766373,0.847279727458954,0.529253780841827,0.107936978340149,0.890272974967957,0.442451655864716,-0.252997875213623,0.889519333839417,0.380456656217575, +-0.182877361774445,0.916396498680115,0.356052339076996,0.396575659513474,0.175626769661903,-0.901045441627502,0.250142753124237,0.118455670773983,-0.960935354232788,0.340507060289383,0.102761089801788,-0.934609532356262,0.113429233431816,-0.718660473823547,-0.686047255992889,0.0538525581359863,-0.643992066383362,-0.763134300708771,0.065064512193203,-0.64322030544281,-0.76291161775589,0.0766072347760201,-0.698470771312714,-0.711526334285736,0.113429233431816,-0.718660473823547,-0.686047255992889,0.065064512193203,-0.64322030544281,-0.76291161775589,0.0766072347760201,-0.698470771312714,-0.711526334285736,0.0795811787247658,-0.752723693847656,-0.65350878238678,0.140114828944206,-0.788483798503876,-0.598883092403412,0.0795811787247658,-0.752723693847656,-0.65350878238678,0.0962703973054886,-0.807723462581635,-0.581648230552673,0.140114828944206,-0.788483798503876,-0.598883092403412,0.0962703973054886,-0.807723462581635,-0.581648230552673,0.106444992125034,-0.835839807987213,-0.538554608821869,0.179862946271896,-0.852266728878021,-0.491213440895081,0.0013695009984076,-0.558705568313599,-0.829364836215973,0.0538525581359863,-0.643992066383362,-0.763134300708771,-0.0215314980596304,-0.540139257907867,-0.841300129890442,0.106444992125034,-0.835839807987213,-0.538554608821869,0.0995777770876884,-0.851943671703339,-0.5140780210495,0.183840230107307,-0.879487276077271,-0.438981503248215,-0.0762273445725441,-0.47655987739563,-0.875831007957459,-0.103354178369045,-0.423040568828583,-0.90019690990448,-0.0215314980596304,-0.540139257907867,-0.841300129890442,0.587347745895386,-0.165840432047844,0.792161226272583,0.639882683753967,-0.303985416889191,0.705792427062988,0.700553119182587,-0.210871770977974,0.681731820106506,0.700553119182587,-0.210871770977974,0.681731820106506,0.639882683753967,-0.303985416889191,0.705792427062988,0.687761783599854,-0.276548326015472,0.671196401119232,0.686615943908691,-0.149596393108368,0.711462795734406,0.687761783599854,-0.276548326015472,0.671196401119232,0.591980755329132,-0.164571866393089,0.788970649242401, +0.665403604507446,-0.0100066941231489,0.746416687965393,0.641718447208405,0.055818323045969,0.764906346797943,0.741955637931824,0.00544297741726041,0.670426785945892,0.607860743999481,-0.0321429222822189,0.793392777442932,0.665403604507446,-0.0100066941231489,0.746416687965393,0.598528623580933,-0.108197882771492,0.793761014938354,0.788277149200439,-0.128093674778938,0.601839780807495,0.741955637931824,0.00544297741726041,0.670426785945892,0.699201703071594,-0.0670666396617889,0.711771726608276,0.861106097698212,-0.240163490176201,0.44812685251236,0.909076452255249,-0.128871932625771,0.396196752786636,0.849447190761566,-0.131743595004082,0.510962724685669,0.849447190761566,-0.131743595004082,0.510962724685669,0.788277149200439,-0.128093674778938,0.601839780807495,0.807032465934753,-0.201482281088829,0.555070579051971,0.909076452255249,-0.128871932625771,0.396196752786636,0.904326260089874,-0.112856507301331,0.411651909351349,0.911953866481781,-0.0814872831106186,0.402119129896164,0.904326260089874,-0.112856507301331,0.411651909351349,0.750395953655243,0.0515172854065895,0.658977746963501,0.857474625110626,-0.0745028555393219,0.509103357791901,0.591980755329132,-0.164571866393089,0.788970649242401,0.598528623580933,-0.108197882771492,0.793761014938354,0.599048495292664,-0.0913404375314713,0.79548579454422,0.768973350524902,-0.0777589306235313,-0.634534001350403,0.701314330101013,0.00759075116366148,-0.712811648845673,0.702745735645294,0.127479195594788,-0.699926614761353,0.768973350524902,-0.0777589306235313,-0.634534001350403,0.702745735645294,0.127479195594788,-0.699926614761353,0.785323977470398,0.00897960364818573,-0.619019746780396,0.747223496437073,0.0543663650751114,-0.662345230579376,0.804228782653809,0.076808899641037,-0.589335501194,0.767875909805298,0.13075402379036,-0.62711226940155,0.67008250951767,0.153944477438927,-0.726147651672363,0.701314330101013,0.00759075116366148,-0.712811648845673,0.747223496437073,0.0543663650751114,-0.662345230579376,0.785323977470398,0.00897960364818573,-0.619019746780396, +0.766979277133942,0.108892433345318,-0.632364630699158,0.810498237609863,0.00581533601507545,-0.585712075233459,0.750875294208527,0.024048937484622,-0.660005867481232,0.810498237609863,0.00581533601507545,-0.585712075233459,0.766979277133942,0.108892433345318,-0.632364630699158,0.750875294208527,0.024048937484622,-0.660005867481232,0.654219090938568,-0.0172455124557018,-0.756108403205872,0.705606520175934,-0.105049684643745,-0.7007737159729,0.705606520175934,-0.105049684643745,-0.7007737159729,0.701326549053192,-0.176600188016891,-0.69061803817749,0.731465041637421,-0.158801645040512,-0.663129508495331,0.622293531894684,-0.176686689257622,-0.762582719326019,0.73505973815918,-0.174831733107567,-0.655073225498199,0.708241701126099,-0.262440085411072,-0.655376791954041,0.701326549053192,-0.176600188016891,-0.69061803817749,0.73505973815918,-0.174831733107567,-0.655073225498199,0.731465041637421,-0.158801645040512,-0.663129508495331,0.598644256591797,-0.261029213666916,-0.757290303707123,0.536210477352142,-0.210622563958168,-0.817383885383606,0.622293531894684,-0.176686689257622,-0.762582719326019,0.536210477352142,-0.210622563958168,-0.817383885383606,0.629020214080811,-0.200109750032425,-0.751192033290863,0.577029764652252,-0.143343761563301,-0.804045498371124,0.629020214080811,-0.200109750032425,-0.751192033290863,0.641761243343353,-0.104205667972565,-0.759791731834412,0.577029764652252,-0.143343761563301,-0.804045498371124,0.500616431236267,0.104583606123924,-0.859328389167786,0.547742009162903,-0.0451459661126137,-0.835428237915039,0.613355278968811,-0.0210410486906767,-0.789526700973511,0.582524716854095,-0.00388929131440818,-0.812803566455841,0.58912605047226,-0.000994426081888378,-0.80804044008255,0.613355278968811,-0.0210410486906767,-0.789526700973511,0.416562587022781,0.0665255561470985,-0.906669616699219,0.516734421253204,0.0632454976439476,-0.853806376457214,0.582524716854095,-0.00388929131440818,-0.812803566455841,0.416562587022781,0.0665255561470985,-0.906669616699219,0.285416543483734,0.128252550959587,-0.949783444404602, +0.466232895851135,0.150833085179329,-0.871708750724792,0.285416543483734,0.128252550959587,-0.949783444404602,0.396575659513474,0.175626769661903,-0.901045441627502,0.466232895851135,0.150833085179329,-0.871708750724792,0.595260202884674,-0.0751327648758888,-0.800012648105621,0.561628639698029,0.0251127853989601,-0.827008128166199,0.641761243343353,-0.104205667972565,-0.759791731834412,0.457025170326233,0.0810139253735542,-0.885756492614746,0.561628639698029,0.0251127853989601,-0.827008128166199,0.413164705038071,-0.0282914657145739,-0.910216689109802,0.413164705038071,-0.0282914657145739,-0.910216689109802,0.39672464132309,-0.0555495023727417,-0.916255235671997,0.457025170326233,0.0810139253735542,-0.885756492614746,0.355169981718063,-0.148221299052238,-0.922975957393646,0.375530391931534,0.0489653833210468,-0.925515651702881,0.39672464132309,-0.0555495023727417,-0.916255235671997,0.375530391931534,0.0489653833210468,-0.925515651702881,0.203887522220612,-0.061923123896122,-0.977033913135529,0.340008825063705,0.126264542341232,-0.93190723657608,0.340008825063705,0.126264542341232,-0.93190723657608,0.420082032680511,-0.0486825406551361,-0.906179368495941,0.500616431236267,0.104583606123924,-0.859328389167786,0.945210516452789,-0.137160807847977,-0.296249806880951,0.930119335651398,-0.122098967432976,-0.34636664390564,0.933074057102203,-0.151941388845444,-0.326016128063202,0.945210516452789,-0.137160807847977,-0.296249806880951,0.93237829208374,-0.0581103414297104,-0.356782644987106,0.930119335651398,-0.122098967432976,-0.34636664390564,0.929926156997681,-0.0419335551559925,-0.365347474813461,0.945210516452789,-0.137160807847977,-0.296249806880951,0.913219332695007,-0.0469638295471668,-0.404752641916275,0.84541255235672,0.0621898360550404,-0.530480742454529,0.887807905673981,0.0187924914062023,-0.45983025431633,0.913219332695007,-0.0469638295471668,-0.404752641916275,0.93237829208374,-0.0581103414297104,-0.356782644987106,0.945210516452789,-0.137160807847977,-0.296249806880951,0.929926156997681,-0.0419335551559925,-0.365347474813461, +0.804228782653809,0.076808899641037,-0.589335501194,0.84541255235672,0.0621898360550404,-0.530480742454529,0.767875909805298,0.13075402379036,-0.62711226940155,-0.0895969495177269,0.986723303794861,-0.135460019111633,0.0151238115504384,0.997338533401489,-0.0713231563568115,-0.00161067896988243,0.996311128139496,-0.0857985988259315,-0.0895969495177269,0.986723303794861,-0.135460019111633,-0.0697448030114174,0.98224139213562,-0.174176558852196,-0.029251616448164,0.982301592826843,-0.185007527470589,-0.0107405362650752,0.967220783233643,-0.253709435462952,0.17089356482029,0.962077379226685,-0.212608054280281,-0.029251616448164,0.982301592826843,-0.185007527470589,-0.06068155169487,0.963316857814789,-0.261416018009186,0.109734565019608,0.959151685237885,-0.260741740465164,-0.0107405362650752,0.967220783233643,-0.253709435462952,0.0267541762441397,0.950311362743378,-0.310149073600769,0.214110806584358,0.930998265743256,-0.295632779598236,0.109734565019608,0.959151685237885,-0.260741740465164,-0.00354774366132915,0.912640452384949,-0.408747762441635,0.277690649032593,0.878417909145355,-0.388933837413788,0.0267541762441397,0.950311362743378,-0.310149073600769,-0.00354774366132915,0.912640452384949,-0.408747762441635,-0.0393461100757122,0.854552686214447,-0.517872035503387,0.11439723521471,0.821230530738831,-0.559011161327362,0.0545061118900776,0.726862549781799,-0.684616506099701,0.325681537389755,0.671046555042267,-0.66605406999588,0.11439723521471,0.821230530738831,-0.559011161327362,0.390294700860977,0.551550924777985,-0.73719847202301,0.520371437072754,0.363390386104584,-0.772761821746826,0.771137416362762,0.145721063017845,-0.619768023490906,0.0545061118900776,0.726862549781799,-0.684616506099701,0.390294700860977,0.551550924777985,-0.73719847202301,0.325681537389755,0.671046555042267,-0.66605406999588,0.825193285942078,0.00470272777602077,-0.564830720424652,0.697298407554626,0.206994011998177,-0.686242043972015,0.865739822387695,0.00583152705803514,-0.500460207462311,0.914189994335175,-0.0892424955964088,-0.395338267087936, +0.933074057102203,-0.151941388845444,-0.326016128063202,0.865739822387695,0.00583152705803514,-0.500460207462311,0.697298407554626,0.206994011998177,-0.686242043972015,0.825193285942078,0.00470272777602077,-0.564830720424652,0.520371437072754,0.363390386104584,-0.772761821746826,-0.182877361774445,0.916396498680115,0.356052339076996,-0.223185911774635,0.916286647319794,0.332576006650925,-0.231166705489159,0.93628340959549,0.264452666044235,-0.161227583885193,0.970903038978577,0.17706735432148,-0.231166705489159,0.93628340959549,0.264452666044235,-0.124962911009789,0.954930543899536,0.269243091344833,0.0108761182054877,0.980786263942719,0.194781616330147,-0.0407475605607033,0.996487736701965,0.0731558352708817,-0.161227583885193,0.970903038978577,0.17706735432148,0.107134632766247,0.994188487529755,-0.0105508537963033,-0.0395304672420025,0.999216496944427,0.00191631028428674,-0.0407475605607033,0.996487736701965,0.0731558352708817,-0.00161067896988243,0.996311128139496,-0.0857985988259315,-0.0395304672420025,0.999216496944427,0.00191631028428674,0.107134632766247,0.994188487529755,-0.0105508537963033,0.715362370014191,0.0733562409877777,0.694892346858978,0.748441934585571,0.0530710220336914,0.661073327064514,0.857474625110626,-0.0745028555393219,0.509103357791901,0.540025055408478,0.279591917991638,0.793852150440216,0.748441934585571,0.0530710220336914,0.661073327064514,0.557885825634003,0.201864138245583,0.804993271827698,0.451655179262161,0.423156559467316,0.785459101200104,0.772047400474548,0.158646315336227,0.615446269512177,0.540025055408478,0.279591917991638,0.793852150440216,0.0176348686218262,0.678178906440735,0.734685182571411,0.531978487968445,0.483618944883347,0.695062160491943,0.451655179262161,0.423156559467316,0.785459101200104,0.493482708930969,0.618703722953796,0.611293971538544,0.531978487968445,0.483618944883347,0.695062160491943,0.161427929997444,0.751365900039673,0.639836072921753,-0.0448035150766373,0.847279727458954,0.529253780841827,-0.252997875213623,0.889519333839417,0.380456656217575,0.23295059800148,0.817159473896027,0.527242124080658, +-0.0448035150766373,0.847279727458954,0.529253780841827,0.493482708930969,0.618703722953796,0.611293971538544,0.161427929997444,0.751365900039673,0.639836072921753,-0.182877361774445,0.916396498680115,0.356052339076996,-0.252997875213623,0.889519333839417,0.380456656217575,-0.223185911774635,0.916286647319794,0.332576006650925,0.285416543483734,0.128252550959587,-0.949783444404602,0.250142753124237,0.118455670773983,-0.960935354232788,0.396575659513474,0.175626769661903,-0.901045441627502,0.0013695009984076,-0.558705568313599,-0.829364836215973,0.065064512193203,-0.64322030544281,-0.76291161775589,0.0538525581359863,-0.643992066383362,-0.763134300708771,0.0766072347760201,-0.698470771312714,-0.711526334285736,0.065064512193203,-0.64322030544281,-0.76291161775589,0.024644011631608,-0.584357678890228,-0.811121821403503,0.0766072347760201,-0.698470771312714,-0.711526334285736,0.00716631626710296,-0.657595098018646,-0.753337442874908,0.0795811787247658,-0.752723693847656,-0.65350878238678,0.0170497670769691,-0.732104301452637,-0.680978953838348,0.0962703973054886,-0.807723462581635,-0.581648230552673,0.0795811787247658,-0.752723693847656,-0.65350878238678,0.0962703973054886,-0.807723462581635,-0.581648230552673,0.0222680419683456,-0.764527440071106,-0.644206345081329,0.106444992125034,-0.835839807987213,-0.538554608821869,0.0013695009984076,-0.558705568313599,-0.829364836215973,-0.0215314980596304,-0.540139257907867,-0.841300129890442,-0.0750942677259445,-0.468099057674408,-0.880479454994202,0.106444992125034,-0.835839807987213,-0.538554608821869,0.0319120325148106,-0.784207701683044,-0.619677126407623,0.0995777770876884,-0.851943671703339,-0.5140780210495,-0.103354178369045,-0.423040568828583,-0.90019690990448,-0.0750942677259445,-0.468099057674408,-0.880479454994202,-0.0215314980596304,-0.540139257907867,-0.841300129890442,0.639882683753967,-0.303985416889191,0.705792427062988,0.603014171123505,-0.31396359205246,0.733348906040192,0.687761783599854,-0.276548326015472,0.671196401119232,0.591980755329132,-0.164571866393089,0.788970649242401, +0.687761783599854,-0.276548326015472,0.671196401119232,0.603014171123505,-0.31396359205246,0.733348906040192,0.641718447208405,0.055818323045969,0.764906346797943,0.665403604507446,-0.0100066941231489,0.746416687965393,0.608105182647705,0.0578473657369614,0.791745901107788,0.641718447208405,0.055818323045969,0.764906346797943,0.699201703071594,-0.0670666396617889,0.711771726608276,0.741955637931824,0.00544297741726041,0.670426785945892,0.608105182647705,0.0578473657369614,0.791745901107788,0.665403604507446,-0.0100066941231489,0.746416687965393,0.607860743999481,-0.0321429222822189,0.793392777442932,0.598528623580933,-0.108197882771492,0.793761014938354,0.513507604598999,-0.118529632687569,0.849859178066254,0.607860743999481,-0.0321429222822189,0.793392777442932,0.788277149200439,-0.128093674778938,0.601839780807495,0.699201703071594,-0.0670666396617889,0.711771726608276,0.733083188533783,-0.177234575152397,0.656640529632568,0.909076452255249,-0.128871932625771,0.396196752786636,0.861106097698212,-0.240163490176201,0.44812685251236,0.899991571903229,-0.208869844675064,0.382607400417328,0.861106097698212,-0.240163490176201,0.44812685251236,0.849447190761566,-0.131743595004082,0.510962724685669,0.807032465934753,-0.201482281088829,0.555070579051971,0.733083188533783,-0.177234575152397,0.656640529632568,0.807032465934753,-0.201482281088829,0.555070579051971,0.788277149200439,-0.128093674778938,0.601839780807495,0.909076452255249,-0.128871932625771,0.396196752786636,0.899991571903229,-0.208869844675064,0.382607400417328,0.904326260089874,-0.112856507301331,0.411651909351349,0.793731451034546,-0.0998657867312431,0.600014209747314,0.750395953655243,0.0515172854065895,0.658977746963501,0.904326260089874,-0.112856507301331,0.411651909351349,0.750395953655243,0.0515172854065895,0.658977746963501,0.715362370014191,0.0733562409877777,0.694892346858978,0.857474625110626,-0.0745028555393219,0.509103357791901,0.591980755329132,-0.164571866393089,0.788970649242401,0.513507604598999,-0.118529632687569,0.849859178066254,0.598528623580933,-0.108197882771492,0.793761014938354, +0.67008250951767,0.153944477438927,-0.726147651672363,0.702745735645294,0.127479195594788,-0.699926614761353,0.701314330101013,0.00759075116366148,-0.712811648845673,0.785323977470398,0.00897960364818573,-0.619019746780396,0.702745735645294,0.127479195594788,-0.699926614761353,0.766979277133942,0.108892433345318,-0.632364630699158,0.67008250951767,0.153944477438927,-0.726147651672363,0.747223496437073,0.0543663650751114,-0.662345230579376,0.767875909805298,0.13075402379036,-0.62711226940155,0.738398373126984,0.143426820635796,-0.658935725688934,0.750875294208527,0.024048937484622,-0.660005867481232,0.766979277133942,0.108892433345318,-0.632364630699158,0.750875294208527,0.024048937484622,-0.660005867481232,0.710789263248444,0.0492164678871632,-0.701680958271027,0.654219090938568,-0.0172455124557018,-0.756108403205872,0.617750465869904,-0.0790116637945175,-0.782394647598267,0.705606520175934,-0.105049684643745,-0.7007737159729,0.654219090938568,-0.0172455124557018,-0.756108403205872,0.617750465869904,-0.0790116637945175,-0.782394647598267,0.701326549053192,-0.176600188016891,-0.69061803817749,0.705606520175934,-0.105049684643745,-0.7007737159729,0.702114045619965,-0.243563801050186,-0.669113159179688,0.708241701126099,-0.262440085411072,-0.655376791954041,0.73505973815918,-0.174831733107567,-0.655073225498199,0.598644256591797,-0.261029213666916,-0.757290303707123,0.622293531894684,-0.176686689257622,-0.762582719326019,0.708241701126099,-0.262440085411072,-0.655376791954041,0.701326549053192,-0.176600188016891,-0.69061803817749,0.702114045619965,-0.243563801050186,-0.669113159179688,0.73505973815918,-0.174831733107567,-0.655073225498199,0.585406243801117,-0.205697730183601,-0.784211575984955,0.536210477352142,-0.210622563958168,-0.817383885383606,0.598644256591797,-0.261029213666916,-0.757290303707123,0.585406243801117,-0.205697730183601,-0.784211575984955,0.629020214080811,-0.200109750032425,-0.751192033290863,0.536210477352142,-0.210622563958168,-0.817383885383606,0.629020214080811,-0.200109750032425,-0.751192033290863, +0.716619670391083,-0.176469847559929,-0.674769937992096,0.641761243343353,-0.104205667972565,-0.759791731834412,0.500616431236267,0.104583606123924,-0.859328389167786,0.420082032680511,-0.0486825406551361,-0.906179368495941,0.547742009162903,-0.0451459661126137,-0.835428237915039,0.547742009162903,-0.0451459661126137,-0.835428237915039,0.582524716854095,-0.00388929131440818,-0.812803566455841,0.613355278968811,-0.0210410486906767,-0.789526700973511,0.464394986629486,-0.124528758227825,-0.876829385757446,0.561628639698029,0.0251127853989601,-0.827008128166199,0.595260202884674,-0.0751327648758888,-0.800012648105621,0.641761243343353,-0.104205667972565,-0.759791731834412,0.673140466213226,-0.148614823818207,-0.724427700042725,0.595260202884674,-0.0751327648758888,-0.800012648105621,0.413164705038071,-0.0282914657145739,-0.910216689109802,0.561628639698029,0.0251127853989601,-0.827008128166199,0.464394986629486,-0.124528758227825,-0.876829385757446,0.413164705038071,-0.0282914657145739,-0.910216689109802,0.332592338323593,-0.107585869729519,-0.936913847923279,0.39672464132309,-0.0555495023727417,-0.916255235671997,0.355169981718063,-0.148221299052238,-0.922975957393646,0.214547961950302,-0.173254311084747,-0.96122419834137,0.375530391931534,0.0489653833210468,-0.925515651702881,0.347072958946228,-0.148272842168808,-0.926042854785919,0.355169981718063,-0.148221299052238,-0.922975957393646,0.39672464132309,-0.0555495023727417,-0.916255235671997,0.375530391931534,0.0489653833210468,-0.925515651702881,0.214547961950302,-0.173254311084747,-0.96122419834137,0.203887522220612,-0.061923123896122,-0.977033913135529,0.203887522220612,-0.061923123896122,-0.977033913135529,0.2367954403162,-0.212295830249786,-0.948081374168396,0.340008825063705,0.126264542341232,-0.93190723657608,0.340008825063705,0.126264542341232,-0.93190723657608,0.2367954403162,-0.212295830249786,-0.948081374168396,0.420082032680511,-0.0486825406551361,-0.906179368495941,0.933074057102203,-0.151941388845444,-0.326016128063202,0.937425792217255,-0.168335452675819,-0.304788261651993, +0.945210516452789,-0.137160807847977,-0.296249806880951,0.937252819538116,-0.156950652599335,-0.311325460672379,0.913219332695007,-0.0469638295471668,-0.404752641916275,0.945210516452789,-0.137160807847977,-0.296249806880951,0.84541255235672,0.0621898360550404,-0.530480742454529,0.913219332695007,-0.0469638295471668,-0.404752641916275,0.866653561592102,-0.0187991987913847,-0.498555958271027,0.818160653114319,0.0462741479277611,-0.573124527931213,0.767875909805298,0.13075402379036,-0.62711226940155,0.84541255235672,0.0621898360550404,-0.530480742454529,-0.0697448030114174,0.98224139213562,-0.174176558852196,-0.0895969495177269,0.986723303794861,-0.135460019111633,-0.00161067896988243,0.996311128139496,-0.0857985988259315,-0.029251616448164,0.982301592826843,-0.185007527470589,-0.0697448030114174,0.98224139213562,-0.174176558852196,-0.0931028351187706,0.961432278156281,-0.258804440498352,-0.06068155169487,0.963316857814789,-0.261416018009186,-0.0107405362650752,0.967220783233643,-0.253709435462952,-0.029251616448164,0.982301592826843,-0.185007527470589,0.109734565019608,0.959151685237885,-0.260741740465164,-0.06068155169487,0.963316857814789,-0.261416018009186,0.0267541762441397,0.950311362743378,-0.310149073600769,0.0267541762441397,0.950311362743378,-0.310149073600769,-0.0269983150064945,0.921147048473358,-0.388277024030685,-0.00354774366132915,0.912640452384949,-0.408747762441635,-0.0269983150064945,0.921147048473358,-0.388277024030685,-0.0393461100757122,0.854552686214447,-0.517872035503387,-0.00354774366132915,0.912640452384949,-0.408747762441635,-0.0419122129678726,0.760098576545715,-0.648454606533051,0.11439723521471,0.821230530738831,-0.559011161327362,-0.0393461100757122,0.854552686214447,-0.517872035503387,0.0545061118900776,0.726862549781799,-0.684616506099701,0.11439723521471,0.821230530738831,-0.559011161327362,-0.0419122129678726,0.760098576545715,-0.648454606533051,0.0639618560671806,0.636100947856903,-0.768950164318085,0.520371437072754,0.363390386104584,-0.772761821746826,0.390294700860977,0.551550924777985,-0.73719847202301, +0.0639618560671806,0.636100947856903,-0.768950164318085,0.390294700860977,0.551550924777985,-0.73719847202301,0.0545061118900776,0.726862549781799,-0.684616506099701,0.525004982948303,0.359816014766693,-0.771299004554749,0.865739822387695,0.00583152705803514,-0.500460207462311,0.697298407554626,0.206994011998177,-0.686242043972015,0.933074057102203,-0.151941388845444,-0.326016128063202,0.914189994335175,-0.0892424955964088,-0.395338267087936,0.937425792217255,-0.168335452675819,-0.304788261651993,0.914189994335175,-0.0892424955964088,-0.395338267087936,0.865739822387695,0.00583152705803514,-0.500460207462311,0.781324148178101,0.120321229100227,-0.61241751909256,0.697298407554626,0.206994011998177,-0.686242043972015,0.520371437072754,0.363390386104584,-0.772761821746826,0.239646598696709,0.528266847133636,-0.814557194709778,-0.231166705489159,0.93628340959549,0.264452666044235,-0.223185911774635,0.916286647319794,0.332576006650925,-0.124962911009789,0.954930543899536,0.269243091344833,0.0108761182054877,0.980786263942719,0.194781616330147,-0.161227583885193,0.970903038978577,0.17706735432148,-0.124962911009789,0.954930543899536,0.269243091344833,0.134201228618622,0.987638592720032,0.0809934586286545,-0.0407475605607033,0.996487736701965,0.0731558352708817,0.0108761182054877,0.980786263942719,0.194781616330147,0.134201228618622,0.987638592720032,0.0809934586286545,0.107134632766247,0.994188487529755,-0.0105508537963033,-0.0407475605607033,0.996487736701965,0.0731558352708817,-0.00161067896988243,0.996311128139496,-0.0857985988259315,0.107134632766247,0.994188487529755,-0.0105508537963033,0.189634174108505,0.975761830806732,-0.10921361297369,0.715362370014191,0.0733562409877777,0.694892346858978,0.557885825634003,0.201864138245583,0.804993271827698,0.748441934585571,0.0530710220336914,0.661073327064514,0.540025055408478,0.279591917991638,0.793852150440216,0.557885825634003,0.201864138245583,0.804993271827698,0.233871787786484,0.406893819570541,0.883029580116272,0.451655179262161,0.423156559467316,0.785459101200104,0.540025055408478,0.279591917991638,0.793852150440216, +0.141065627336502,0.530562460422516,0.835825204849243,0.0176348686218262,0.678178906440735,0.734685182571411,0.161427929997444,0.751365900039673,0.639836072921753,0.531978487968445,0.483618944883347,0.695062160491943,0.141065627336502,0.530562460422516,0.835825204849243,0.0176348686218262,0.678178906440735,0.734685182571411,0.451655179262161,0.423156559467316,0.785459101200104,-0.288060009479523,0.836284935474396,0.466528415679932,-0.252997875213623,0.889519333839417,0.380456656217575,-0.0448035150766373,0.847279727458954,0.529253780841827,-0.0448035150766373,0.847279727458954,0.529253780841827,0.161427929997444,0.751365900039673,0.639836072921753,-0.198184311389923,0.811603128910065,0.549566388130188,-0.260126352310181,0.876763999462128,0.404498606920242,-0.223185911774635,0.916286647319794,0.332576006650925,-0.252997875213623,0.889519333839417,0.380456656217575,0.065064512193203,-0.64322030544281,-0.76291161775589,0.0013695009984076,-0.558705568313599,-0.829364836215973,0.024644011631608,-0.584357678890228,-0.811121821403503,0.024644011631608,-0.584357678890228,-0.811121821403503,0.00716631626710296,-0.657595098018646,-0.753337442874908,0.0766072347760201,-0.698470771312714,-0.711526334285736,0.0170497670769691,-0.732104301452637,-0.680978953838348,0.0795811787247658,-0.752723693847656,-0.65350878238678,0.00716631626710296,-0.657595098018646,-0.753337442874908,0.0962703973054886,-0.807723462581635,-0.581648230552673,0.0170497670769691,-0.732104301452637,-0.680978953838348,0.0222680419683456,-0.764527440071106,-0.644206345081329,0.106444992125034,-0.835839807987213,-0.538554608821869,0.0222680419683456,-0.764527440071106,-0.644206345081329,0.0319120325148106,-0.784207701683044,-0.619677126407623,-0.0750942677259445,-0.468099057674408,-0.880479454994202,-0.0742243826389313,-0.494230300188065,-0.866156458854675,0.0013695009984076,-0.558705568313599,-0.829364836215973,0.0364860668778419,-0.806113839149475,-0.59063446521759,0.0995777770876884,-0.851943671703339,-0.5140780210495,0.0319120325148106,-0.784207701683044,-0.619677126407623, +-0.0750942677259445,-0.468099057674408,-0.880479454994202,-0.103354178369045,-0.423040568828583,-0.90019690990448,-0.141162976622581,-0.383272290229797,-0.912784337997437,0.591980755329132,-0.164571866393089,0.788970649242401,0.603014171123505,-0.31396359205246,0.733348906040192,0.513507604598999,-0.118529632687569,0.849859178066254,0.641718447208405,0.055818323045969,0.764906346797943,0.608105182647705,0.0578473657369614,0.791745901107788,0.573913753032684,0.0282095428556204,0.81842964887619,0.573913753032684,0.0282095428556204,0.81842964887619,0.699201703071594,-0.0670666396617889,0.711771726608276,0.641718447208405,0.055818323045969,0.764906346797943,0.608105182647705,0.0578473657369614,0.791745901107788,0.607860743999481,-0.0321429222822189,0.793392777442932,0.57337212562561,0.0269702337682247,0.818850874900818,0.478120476007462,-0.0128174684941769,0.878200709819794,0.607860743999481,-0.0321429222822189,0.793392777442932,0.513507604598999,-0.118529632687569,0.849859178066254,0.699201703071594,-0.0670666396617889,0.711771726608276,0.612445414066315,-0.107604123651981,0.783154964447021,0.733083188533783,-0.177234575152397,0.656640529632568,0.899991571903229,-0.208869844675064,0.382607400417328,0.861106097698212,-0.240163490176201,0.44812685251236,0.844359755516052,-0.284212589263916,0.454180330038071,0.807032465934753,-0.201482281088829,0.555070579051971,0.820506036281586,-0.291763544082642,0.491572737693787,0.861106097698212,-0.240163490176201,0.44812685251236,0.773592233657837,-0.245969623327255,0.583998143672943,0.807032465934753,-0.201482281088829,0.555070579051971,0.733083188533783,-0.177234575152397,0.656640529632568,0.793731451034546,-0.0998657867312431,0.600014209747314,0.904326260089874,-0.112856507301331,0.411651909351349,0.899991571903229,-0.208869844675064,0.382607400417328,0.750395953655243,0.0515172854065895,0.658977746963501,0.793731451034546,-0.0998657867312431,0.600014209747314,0.608969032764435,0.101270779967308,0.786702454090118,0.750395953655243,0.0515172854065895,0.658977746963501,0.563565671443939,0.25370666384697,0.786146700382233, +0.715362370014191,0.0733562409877777,0.694892346858978,0.702745735645294,0.127479195594788,-0.699926614761353,0.67008250951767,0.153944477438927,-0.726147651672363,0.682855606079102,0.123437337577343,-0.720049500465393,0.766979277133942,0.108892433345318,-0.632364630699158,0.702745735645294,0.127479195594788,-0.699926614761353,0.738398373126984,0.143426820635796,-0.658935725688934,0.67008250951767,0.153944477438927,-0.726147651672363,0.767875909805298,0.13075402379036,-0.62711226940155,0.729322254657745,0.121265828609467,-0.673337578773499,0.738398373126984,0.143426820635796,-0.658935725688934,0.710789263248444,0.0492164678871632,-0.701680958271027,0.750875294208527,0.024048937484622,-0.660005867481232,0.654219090938568,-0.0172455124557018,-0.756108403205872,0.710789263248444,0.0492164678871632,-0.701680958271027,0.704225599765778,-0.0068646571598947,-0.709942936897278,0.654219090938568,-0.0172455124557018,-0.756108403205872,0.558926224708557,-0.0405175685882568,-0.828226804733276,0.617750465869904,-0.0790116637945175,-0.782394647598267,0.701326549053192,-0.176600188016891,-0.69061803817749,0.617750465869904,-0.0790116637945175,-0.782394647598267,0.627240300178528,-0.140650749206543,-0.766020119190216,0.708241701126099,-0.262440085411072,-0.655376791954041,0.702114045619965,-0.243563801050186,-0.669113159179688,0.691112101078033,-0.251735985279083,-0.67749011516571,0.708241701126099,-0.262440085411072,-0.655376791954041,0.691112101078033,-0.251735985279083,-0.67749011516571,0.598644256591797,-0.261029213666916,-0.757290303707123,0.701326549053192,-0.176600188016891,-0.69061803817749,0.627240300178528,-0.140650749206543,-0.766020119190216,0.702114045619965,-0.243563801050186,-0.669113159179688,0.598644256591797,-0.261029213666916,-0.757290303707123,0.601694107055664,-0.248264342546463,-0.7591632604599,0.585406243801117,-0.205697730183601,-0.784211575984955,0.585406243801117,-0.205697730183601,-0.784211575984955,0.703906297683716,-0.11156041175127,-0.70147705078125,0.629020214080811,-0.200109750032425,-0.751192033290863, +0.629020214080811,-0.200109750032425,-0.751192033290863,0.703906297683716,-0.11156041175127,-0.70147705078125,0.716619670391083,-0.176469847559929,-0.674769937992096,0.716619670391083,-0.176469847559929,-0.674769937992096,0.673140466213226,-0.148614823818207,-0.724427700042725,0.641761243343353,-0.104205667972565,-0.759791731834412,0.464394986629486,-0.124528758227825,-0.876829385757446,0.595260202884674,-0.0751327648758888,-0.800012648105621,0.557684719562531,-0.19097127020359,-0.80778557062149,0.595260202884674,-0.0751327648758888,-0.800012648105621,0.673140466213226,-0.148614823818207,-0.724427700042725,0.557684719562531,-0.19097127020359,-0.80778557062149,0.413164705038071,-0.0282914657145739,-0.910216689109802,0.464394986629486,-0.124528758227825,-0.876829385757446,0.343389719724655,-0.129144325852394,-0.930271506309509,0.413164705038071,-0.0282914657145739,-0.910216689109802,0.343389719724655,-0.129144325852394,-0.930271506309509,0.332592338323593,-0.107585869729519,-0.936913847923279,0.332592338323593,-0.107585869729519,-0.936913847923279,0.347072958946228,-0.148272842168808,-0.926042854785919,0.39672464132309,-0.0555495023727417,-0.916255235671997,0.252594262361526,-0.188267111778259,-0.949079275131226,0.214547961950302,-0.173254311084747,-0.96122419834137,0.355169981718063,-0.148221299052238,-0.922975957393646,0.347072958946228,-0.148272842168808,-0.926042854785919,0.252594262361526,-0.188267111778259,-0.949079275131226,0.355169981718063,-0.148221299052238,-0.922975957393646,0.214547961950302,-0.173254311084747,-0.96122419834137,0.100770495831966,-0.206958934664726,-0.973146021366119,0.203887522220612,-0.061923123896122,-0.977033913135529,0.203887522220612,-0.061923123896122,-0.977033913135529,0.0544243417680264,-0.263004958629608,-0.963258147239685,0.2367954403162,-0.212295830249786,-0.948081374168396,0.945210516452789,-0.137160807847977,-0.296249806880951,0.937425792217255,-0.168335452675819,-0.304788261651993,0.930375039577484,-0.178468406200409,-0.32023611664772,0.894900560379028,-0.115888506174088,-0.430955588817596, +0.913219332695007,-0.0469638295471668,-0.404752641916275,0.937252819538116,-0.156950652599335,-0.311325460672379,0.945210516452789,-0.137160807847977,-0.296249806880951,0.930375039577484,-0.178468406200409,-0.32023611664772,0.937252819538116,-0.156950652599335,-0.311325460672379,0.894900560379028,-0.115888506174088,-0.430955588817596,0.866653561592102,-0.0187991987913847,-0.498555958271027,0.913219332695007,-0.0469638295471668,-0.404752641916275,0.818160653114319,0.0462741479277611,-0.573124527931213,0.84541255235672,0.0621898360550404,-0.530480742454529,0.866653561592102,-0.0187991987913847,-0.498555958271027,0.729322254657745,0.121265828609467,-0.673337578773499,0.767875909805298,0.13075402379036,-0.62711226940155,0.818160653114319,0.0462741479277611,-0.573124527931213,-0.00161067896988243,0.996311128139496,-0.0857985988259315,0.0535736903548241,0.98377788066864,-0.171204090118408,-0.0697448030114174,0.98224139213562,-0.174176558852196,-0.0697448030114174,0.98224139213562,-0.174176558852196,7.84549629315734e-005,0.963148176670074,-0.268971174955368,-0.0931028351187706,0.961432278156281,-0.258804440498352,-0.029251616448164,0.982301592826843,-0.185007527470589,-0.0931028351187706,0.961432278156281,-0.258804440498352,-0.06068155169487,0.963316857814789,-0.261416018009186,-0.0931028351187706,0.961432278156281,-0.258804440498352,0.0267541762441397,0.950311362743378,-0.310149073600769,-0.06068155169487,0.963316857814789,-0.261416018009186,-0.0931028351187706,0.961432278156281,-0.258804440498352,-0.0269983150064945,0.921147048473358,-0.388277024030685,0.0267541762441397,0.950311362743378,-0.310149073600769,0.0377794243395329,0.849570572376251,-0.526120126247406,-0.0393461100757122,0.854552686214447,-0.517872035503387,-0.0269983150064945,0.921147048473358,-0.388277024030685,-0.0419122129678726,0.760098576545715,-0.648454606533051,-0.0393461100757122,0.854552686214447,-0.517872035503387,0.0386960655450821,0.790447294712067,-0.611306428909302,-0.0638070479035378,0.683623671531677,-0.727039992809296,0.0545061118900776,0.726862549781799,-0.684616506099701, +-0.0419122129678726,0.760098576545715,-0.648454606533051,0.0639618560671806,0.636100947856903,-0.768950164318085,0.239646598696709,0.528266847133636,-0.814557194709778,0.520371437072754,0.363390386104584,-0.772761821746826,-0.0638070479035378,0.683623671531677,-0.727039992809296,0.0639618560671806,0.636100947856903,-0.768950164318085,0.0545061118900776,0.726862549781799,-0.684616506099701,0.781324148178101,0.120321229100227,-0.61241751909256,0.865739822387695,0.00583152705803514,-0.500460207462311,0.525004982948303,0.359816014766693,-0.771299004554749,0.525004982948303,0.359816014766693,-0.771299004554749,0.697298407554626,0.206994011998177,-0.686242043972015,0.239646598696709,0.528266847133636,-0.814557194709778,0.914189994335175,-0.0892424955964088,-0.395338267087936,0.930375039577484,-0.178468406200409,-0.32023611664772,0.937425792217255,-0.168335452675819,-0.304788261651993,0.877468168735504,-0.0520549267530441,-0.476801574230194,0.914189994335175,-0.0892424955964088,-0.395338267087936,0.781324148178101,0.120321229100227,-0.61241751909256,-0.223185911774635,0.916286647319794,0.332576006650925,-0.0104876449331641,0.924668967723846,0.380627453327179,-0.124962911009789,0.954930543899536,0.269243091344833,0.0838195979595184,0.942923724651337,0.322287172079086,0.0108761182054877,0.980786263942719,0.194781616330147,-0.124962911009789,0.954930543899536,0.269243091344833,0.258094906806946,0.947119951248169,0.190658867359161,0.134201228618622,0.987638592720032,0.0809934586286545,0.0108761182054877,0.980786263942719,0.194781616330147,0.213246420025826,0.976953089237213,0.00940692331641912,0.107134632766247,0.994188487529755,-0.0105508537963033,0.134201228618622,0.987638592720032,0.0809934586286545,0.274790912866592,0.959982991218567,-0.0540607385337353,0.189634174108505,0.975761830806732,-0.10921361297369,0.107134632766247,0.994188487529755,-0.0105508537963033,0.0535736903548241,0.98377788066864,-0.171204090118408,-0.00161067896988243,0.996311128139496,-0.0857985988259315,0.189634174108505,0.975761830806732,-0.10921361297369, +0.409322887659073,0.271448850631714,0.871074140071869,0.557885825634003,0.201864138245583,0.804993271827698,0.715362370014191,0.0733562409877777,0.694892346858978,0.409322887659073,0.271448850631714,0.871074140071869,0.233871787786484,0.406893819570541,0.883029580116272,0.557885825634003,0.201864138245583,0.804993271827698,0.233871787786484,0.406893819570541,0.883029580116272,0.141065627336502,0.530562460422516,0.835825204849243,0.540025055408478,0.279591917991638,0.793852150440216,0.0176348686218262,0.678178906440735,0.734685182571411,-0.198184311389923,0.811603128910065,0.549566388130188,0.161427929997444,0.751365900039673,0.639836072921753,0.0176348686218262,0.678178906440735,0.734685182571411,0.141065627336502,0.530562460422516,0.835825204849243,-0.242892205715179,0.637509524822235,0.731153070926666,-0.288060009479523,0.836284935474396,0.466528415679932,-0.260126352310181,0.876763999462128,0.404498606920242,-0.252997875213623,0.889519333839417,0.380456656217575,-0.288060009479523,0.836284935474396,0.466528415679932,-0.0448035150766373,0.847279727458954,0.529253780841827,-0.198184311389923,0.811603128910065,0.549566388130188,-0.260126352310181,0.876763999462128,0.404498606920242,-0.0644276216626167,0.891282856464386,0.44884717464447,-0.223185911774635,0.916286647319794,0.332576006650925,0.024644011631608,-0.584357678890228,-0.811121821403503,0.0013695009984076,-0.558705568313599,-0.829364836215973,-0.0742243826389313,-0.494230300188065,-0.866156458854675,0.024644011631608,-0.584357678890228,-0.811121821403503,-0.0358109585940838,-0.5691938996315,-0.82142299413681,0.00716631626710296,-0.657595098018646,-0.753337442874908,0.0170497670769691,-0.732104301452637,-0.680978953838348,0.00716631626710296,-0.657595098018646,-0.753337442874908,-0.0748671069741249,-0.635808110237122,-0.768207550048828,0.0170497670769691,-0.732104301452637,-0.680978953838348,-0.0493215583264828,-0.694184005260468,-0.718105673789978,0.0222680419683456,-0.764527440071106,-0.644206345081329,0.0222680419683456,-0.764527440071106,-0.644206345081329, +-0.0647237300872803,-0.706927716732025,-0.704317986965179,0.0319120325148106,-0.784207701683044,-0.619677126407623,-0.0742243826389313,-0.494230300188065,-0.866156458854675,-0.0750942677259445,-0.468099057674408,-0.880479454994202,-0.134643882513046,-0.421502709388733,-0.896775543689728,0.0364860668778419,-0.806113839149475,-0.59063446521759,0.0319120325148106,-0.784207701683044,-0.619677126407623,-0.0641238838434219,-0.743033528327942,-0.666175007820129,-0.134643882513046,-0.421502709388733,-0.896775543689728,-0.0750942677259445,-0.468099057674408,-0.880479454994202,-0.141162976622581,-0.383272290229797,-0.912784337997437,0.57337212562561,0.0269702337682247,0.818850874900818,0.573913753032684,0.0282095428556204,0.81842964887619,0.608105182647705,0.0578473657369614,0.791745901107788,0.699201703071594,-0.0670666396617889,0.711771726608276,0.573913753032684,0.0282095428556204,0.81842964887619,0.612445414066315,-0.107604123651981,0.783154964447021,0.478120476007462,-0.0128174684941769,0.878200709819794,0.57337212562561,0.0269702337682247,0.818850874900818,0.607860743999481,-0.0321429222822189,0.793392777442932,0.612445414066315,-0.107604123651981,0.783154964447021,0.615833163261414,-0.199936613440514,0.762085735797882,0.733083188533783,-0.177234575152397,0.656640529632568,0.861106097698212,-0.240163490176201,0.44812685251236,0.820506036281586,-0.291763544082642,0.491572737693787,0.844359755516052,-0.284212589263916,0.454180330038071,0.793731451034546,-0.0998657867312431,0.600014209747314,0.899991571903229,-0.208869844675064,0.382607400417328,0.844359755516052,-0.284212589263916,0.454180330038071,0.820506036281586,-0.291763544082642,0.491572737693787,0.807032465934753,-0.201482281088829,0.555070579051971,0.773592233657837,-0.245969623327255,0.583998143672943,0.773592233657837,-0.245969623327255,0.583998143672943,0.733083188533783,-0.177234575152397,0.656640529632568,0.699797034263611,-0.239807859063149,0.672886371612549,0.608969032764435,0.101270779967308,0.786702454090118,0.793731451034546,-0.0998657867312431,0.600014209747314, +0.440667688846588,0.12911656498909,0.888335943222046,0.750395953655243,0.0515172854065895,0.658977746963501,0.608969032764435,0.101270779967308,0.786702454090118,0.375696331262589,0.298830419778824,0.877241432666779,0.375696331262589,0.298830419778824,0.877241432666779,0.563565671443939,0.25370666384697,0.786146700382233,0.750395953655243,0.0515172854065895,0.658977746963501,0.409322887659073,0.271448850631714,0.871074140071869,0.715362370014191,0.0733562409877777,0.694892346858978,0.563565671443939,0.25370666384697,0.786146700382233,0.67008250951767,0.153944477438927,-0.726147651672363,0.729322254657745,0.121265828609467,-0.673337578773499,0.682855606079102,0.123437337577343,-0.720049500465393,0.702745735645294,0.127479195594788,-0.699926614761353,0.682855606079102,0.123437337577343,-0.720049500465393,0.706068277359009,0.111185610294342,-0.699360549449921,0.706068277359009,0.111185610294342,-0.699360549449921,0.738398373126984,0.143426820635796,-0.658935725688934,0.702745735645294,0.127479195594788,-0.699926614761353,0.706068277359009,0.111185610294342,-0.699360549449921,0.710789263248444,0.0492164678871632,-0.701680958271027,0.738398373126984,0.143426820635796,-0.658935725688934,0.706068277359009,0.111185610294342,-0.699360549449921,0.704225599765778,-0.0068646571598947,-0.709942936897278,0.710789263248444,0.0492164678871632,-0.701680958271027,0.749654114246368,-0.0898880809545517,-0.655697047710419,0.654219090938568,-0.0172455124557018,-0.756108403205872,0.704225599765778,-0.0068646571598947,-0.709942936897278,0.66013902425766,-0.0443399846553802,-0.749833583831787,0.558926224708557,-0.0405175685882568,-0.828226804733276,0.654219090938568,-0.0172455124557018,-0.756108403205872,0.617750465869904,-0.0790116637945175,-0.782394647598267,0.558926224708557,-0.0405175685882568,-0.828226804733276,0.627240300178528,-0.140650749206543,-0.766020119190216,0.644428610801697,-0.179499343037605,-0.743297755718231,0.691112101078033,-0.251735985279083,-0.67749011516571,0.702114045619965,-0.243563801050186,-0.669113159179688,0.598644256591797,-0.261029213666916,-0.757290303707123, +0.691112101078033,-0.251735985279083,-0.67749011516571,0.601694107055664,-0.248264342546463,-0.7591632604599,0.627240300178528,-0.140650749206543,-0.766020119190216,0.567772209644318,-0.119816012680531,-0.814419209957123,0.702114045619965,-0.243563801050186,-0.669113159179688,0.585406243801117,-0.205697730183601,-0.784211575984955,0.601694107055664,-0.248264342546463,-0.7591632604599,0.643607616424561,-0.072415366768837,-0.761921942234039,0.585406243801117,-0.205697730183601,-0.784211575984955,0.62576425075531,0.00114740163553506,-0.780011296272278,0.703906297683716,-0.11156041175127,-0.70147705078125,0.703906297683716,-0.11156041175127,-0.70147705078125,0.74260425567627,-0.137038677930832,-0.655560195446014,0.716619670391083,-0.176469847559929,-0.674769937992096,0.662457704544067,-0.150453567504883,-0.733834683895111,0.673140466213226,-0.148614823818207,-0.724427700042725,0.716619670391083,-0.176469847559929,-0.674769937992096,0.464394986629486,-0.124528758227825,-0.876829385757446,0.557684719562531,-0.19097127020359,-0.80778557062149,0.445736318826675,-0.229804202914238,-0.865164160728455,0.662457704544067,-0.150453567504883,-0.733834683895111,0.557684719562531,-0.19097127020359,-0.80778557062149,0.673140466213226,-0.148614823818207,-0.724427700042725,0.464394986629486,-0.124528758227825,-0.876829385757446,0.384184896945953,-0.21492001414299,-0.897892534732819,0.343389719724655,-0.129144325852394,-0.930271506309509,0.332592338323593,-0.107585869729519,-0.936913847923279,0.343389719724655,-0.129144325852394,-0.930271506309509,0.354249596595764,-0.144418135285378,-0.923932075500488,0.332592338323593,-0.107585869729519,-0.936913847923279,0.354249596595764,-0.144418135285378,-0.923932075500488,0.347072958946228,-0.148272842168808,-0.926042854785919,0.252594262361526,-0.188267111778259,-0.949079275131226,0.164774879813194,-0.139229267835617,-0.976454973220825,0.214547961950302,-0.173254311084747,-0.96122419834137,0.262739896774292,-0.141196444630623,-0.954479575157166,0.252594262361526,-0.188267111778259,-0.949079275131226, +0.347072958946228,-0.148272842168808,-0.926042854785919,0.214547961950302,-0.173254311084747,-0.96122419834137,0.0435648411512375,-0.251730144023895,-0.966816425323486,0.100770495831966,-0.206958934664726,-0.973146021366119,0.203887522220612,-0.061923123896122,-0.977033913135529,0.100770495831966,-0.206958934664726,-0.973146021366119,0.0544243417680264,-0.263004958629608,-0.963258147239685,0.0544243417680264,-0.263004958629608,-0.963258147239685,0.118938446044922,-0.224728524684906,-0.96713525056839,0.2367954403162,-0.212295830249786,-0.948081374168396,0.894900560379028,-0.115888506174088,-0.430955588817596,0.937252819538116,-0.156950652599335,-0.311325460672379,0.920982122421265,-0.204448983073235,-0.331650704145432,0.930375039577484,-0.178468406200409,-0.32023611664772,0.920982122421265,-0.204448983073235,-0.331650704145432,0.937252819538116,-0.156950652599335,-0.311325460672379,0.894900560379028,-0.115888506174088,-0.430955588817596,0.856631398200989,-0.0515925325453281,-0.513342797756195,0.866653561592102,-0.0187991987913847,-0.498555958271027,0.818160653114319,0.0462741479277611,-0.573124527931213,0.866653561592102,-0.0187991987913847,-0.498555958271027,0.856631398200989,-0.0515925325453281,-0.513342797756195,0.818160653114319,0.0462741479277611,-0.573124527931213,0.7866370677948,0.0277846250683069,-0.616790056228638,0.729322254657745,0.121265828609467,-0.673337578773499,7.84549629315734e-005,0.963148176670074,-0.268971174955368,-0.0697448030114174,0.98224139213562,-0.174176558852196,0.0535736903548241,0.98377788066864,-0.171204090118408,7.84549629315734e-005,0.963148176670074,-0.268971174955368,-0.0269983150064945,0.921147048473358,-0.388277024030685,-0.0931028351187706,0.961432278156281,-0.258804440498352,0.0377794243395329,0.849570572376251,-0.526120126247406,0.0386960655450821,0.790447294712067,-0.611306428909302,-0.0393461100757122,0.854552686214447,-0.517872035503387,0.0377794243395329,0.849570572376251,-0.526120126247406,-0.0269983150064945,0.921147048473358,-0.388277024030685,0.109067425131798,0.881199955940247,-0.45999002456665, +-0.0419122129678726,0.760098576545715,-0.648454606533051,0.0386960655450821,0.790447294712067,-0.611306428909302,0.0239249169826508,0.730493366718292,-0.682500541210175,-0.00545272091403604,0.680239975452423,-0.732969164848328,-0.0638070479035378,0.683623671531677,-0.727039992809296,-0.0419122129678726,0.760098576545715,-0.648454606533051,0.239646598696709,0.528266847133636,-0.814557194709778,0.0639618560671806,0.636100947856903,-0.768950164318085,-0.0670232325792313,0.642685890197754,-0.763192415237427,-0.0670232325792313,0.642685890197754,-0.763192415237427,0.0639618560671806,0.636100947856903,-0.768950164318085,-0.0638070479035378,0.683623671531677,-0.727039992809296,0.525004982948303,0.359816014766693,-0.771299004554749,0.368343144655228,0.428625643253326,-0.824986815452576,0.781324148178101,0.120321229100227,-0.61241751909256,-0.00845913402736187,0.584095656871796,-0.811640679836273,0.525004982948303,0.359816014766693,-0.771299004554749,0.239646598696709,0.528266847133636,-0.814557194709778,0.914189994335175,-0.0892424955964088,-0.395338267087936,0.877468168735504,-0.0520549267530441,-0.476801574230194,0.930375039577484,-0.178468406200409,-0.32023611664772,0.877468168735504,-0.0520549267530441,-0.476801574230194,0.781324148178101,0.120321229100227,-0.61241751909256,0.645620703697205,0.235571980476379,-0.726415574550629,-0.0104876449331641,0.924668967723846,0.380627453327179,-0.223185911774635,0.916286647319794,0.332576006650925,-0.0644276216626167,0.891282856464386,0.44884717464447,-0.0104876449331641,0.924668967723846,0.380627453327179,0.0838195979595184,0.942923724651337,0.322287172079086,-0.124962911009789,0.954930543899536,0.269243091344833,0.258094906806946,0.947119951248169,0.190658867359161,0.0108761182054877,0.980786263942719,0.194781616330147,0.0838195979595184,0.942923724651337,0.322287172079086,0.324909389019012,0.94515985250473,0.033266942948103,0.134201228618622,0.987638592720032,0.0809934586286545,0.258094906806946,0.947119951248169,0.190658867359161,0.274790912866592,0.959982991218567,-0.0540607385337353, +0.107134632766247,0.994188487529755,-0.0105508537963033,0.213246420025826,0.976953089237213,0.00940692331641912,0.134201228618622,0.987638592720032,0.0809934586286545,0.324909389019012,0.94515985250473,0.033266942948103,0.213246420025826,0.976953089237213,0.00940692331641912,0.274790912866592,0.959982991218567,-0.0540607385337353,0.355677217245102,0.91974014043808,-0.166047215461731,0.189634174108505,0.975761830806732,-0.10921361297369,0.175267457962036,0.952198684215546,-0.250197649002075,0.0535736903548241,0.98377788066864,-0.171204090118408,0.189634174108505,0.975761830806732,-0.10921361297369,0.409322887659073,0.271448850631714,0.871074140071869,-0.055747989565134,0.497017711400986,0.865947723388672,0.233871787786484,0.406893819570541,0.883029580116272,0.233871787786484,0.406893819570541,0.883029580116272,-0.187658607959747,0.579621911048889,0.792983293533325,0.141065627336502,0.530562460422516,0.835825204849243,0.0176348686218262,0.678178906440735,0.734685182571411,-0.238735169172287,0.716652870178223,0.655296802520752,-0.198184311389923,0.811603128910065,0.549566388130188,-0.242892205715179,0.637509524822235,0.731153070926666,0.141065627336502,0.530562460422516,0.835825204849243,-0.187658607959747,0.579621911048889,0.792983293533325,-0.238735169172287,0.716652870178223,0.655296802520752,0.0176348686218262,0.678178906440735,0.734685182571411,-0.242892205715179,0.637509524822235,0.731153070926666,-0.260126352310181,0.876763999462128,0.404498606920242,-0.288060009479523,0.836284935474396,0.466528415679932,-0.181554481387138,0.842876732349396,0.506553649902344,-0.288060009479523,0.836284935474396,0.466528415679932,-0.198184311389923,0.811603128910065,0.549566388130188,-0.211880043148994,0.772024273872375,0.599237203598022,-0.181554481387138,0.842876732349396,0.506553649902344,-0.0644276216626167,0.891282856464386,0.44884717464447,-0.260126352310181,0.876763999462128,0.404498606920242,0.024644011631608,-0.584357678890228,-0.811121821403503,-0.0742243826389313,-0.494230300188065,-0.866156458854675,-0.0358109585940838,-0.5691938996315,-0.82142299413681, +-0.072030633687973,-0.588516533374786,-0.805269956588745,0.00716631626710296,-0.657595098018646,-0.753337442874908,-0.0358109585940838,-0.5691938996315,-0.82142299413681,-0.072030633687973,-0.588516533374786,-0.805269956588745,-0.0748671069741249,-0.635808110237122,-0.768207550048828,0.00716631626710296,-0.657595098018646,-0.753337442874908,-0.0748671069741249,-0.635808110237122,-0.768207550048828,-0.0493215583264828,-0.694184005260468,-0.718105673789978,0.0170497670769691,-0.732104301452637,-0.680978953838348,0.0222680419683456,-0.764527440071106,-0.644206345081329,-0.0493215583264828,-0.694184005260468,-0.718105673789978,-0.0647237300872803,-0.706927716732025,-0.704317986965179,-0.0647237300872803,-0.706927716732025,-0.704317986965179,-0.0641238838434219,-0.743033528327942,-0.666175007820129,0.0319120325148106,-0.784207701683044,-0.619677126407623,-0.182984232902527,-0.417932957410812,-0.889858782291412,-0.0742243826389313,-0.494230300188065,-0.866156458854675,-0.134643882513046,-0.421502709388733,-0.896775543689728,-0.0494565181434155,-0.781772434711456,-0.62159937620163,0.0364860668778419,-0.806113839149475,-0.59063446521759,-0.0641238838434219,-0.743033528327942,-0.666175007820129,0.573913753032684,0.0282095428556204,0.81842964887619,0.57337212562561,0.0269702337682247,0.818850874900818,0.496804565191269,0.00290034804493189,0.867857575416565,0.573913753032684,0.0282095428556204,0.81842964887619,0.488074272871017,-0.0365314334630966,0.872037172317505,0.612445414066315,-0.107604123651981,0.783154964447021,0.57337212562561,0.0269702337682247,0.818850874900818,0.478120476007462,-0.0128174684941769,0.878200709819794,0.496804565191269,0.00290034804493189,0.867857575416565,0.491185873746872,-0.135027900338173,0.86052531003952,0.615833163261414,-0.199936613440514,0.762085735797882,0.612445414066315,-0.107604123651981,0.783154964447021,0.733083188533783,-0.177234575152397,0.656640529632568,0.615833163261414,-0.199936613440514,0.762085735797882,0.699797034263611,-0.239807859063149,0.672886371612549,0.812104284763336,-0.337433129549026,0.476051837205887, +0.844359755516052,-0.284212589263916,0.454180330038071,0.820506036281586,-0.291763544082642,0.491572737693787,0.793731451034546,-0.0998657867312431,0.600014209747314,0.844359755516052,-0.284212589263916,0.454180330038071,0.777374446392059,-0.199197247624397,0.59666520357132,0.820506036281586,-0.291763544082642,0.491572737693787,0.773592233657837,-0.245969623327255,0.583998143672943,0.777458012104034,-0.356344819068909,0.518244385719299,0.773592233657837,-0.245969623327255,0.583998143672943,0.699797034263611,-0.239807859063149,0.672886371612549,0.717692136764526,-0.314563304185867,0.621263027191162,0.793731451034546,-0.0998657867312431,0.600014209747314,0.577973484992981,-0.0125208534300327,0.815959393978119,0.440667688846588,0.12911656498909,0.888335943222046,0.608969032764435,0.101270779967308,0.786702454090118,0.440667688846588,0.12911656498909,0.888335943222046,0.375696331262589,0.298830419778824,0.877241432666779,0.157028466463089,0.491419196128845,0.856649935245514,0.563565671443939,0.25370666384697,0.786146700382233,0.375696331262589,0.298830419778824,0.877241432666779,0.409322887659073,0.271448850631714,0.871074140071869,0.563565671443939,0.25370666384697,0.786146700382233,0.30143079161644,0.382033973932266,0.873607099056244,0.729322254657745,0.121265828609467,-0.673337578773499,0.7866370677948,0.0277846250683069,-0.616790056228638,0.682855606079102,0.123437337577343,-0.720049500465393,0.682855606079102,0.123437337577343,-0.720049500465393,0.738609969615936,-0.0391630455851555,-0.672994375228882,0.706068277359009,0.111185610294342,-0.699360549449921,0.738609969615936,-0.0391630455851555,-0.672994375228882,0.704225599765778,-0.0068646571598947,-0.709942936897278,0.706068277359009,0.111185610294342,-0.699360549449921,0.66013902425766,-0.0443399846553802,-0.749833583831787,0.654219090938568,-0.0172455124557018,-0.756108403205872,0.749654114246368,-0.0898880809545517,-0.655697047710419,0.749654114246368,-0.0898880809545517,-0.655697047710419,0.704225599765778,-0.0068646571598947,-0.709942936897278,0.736209511756897,-0.143965676426888,-0.661263406276703, +0.558926224708557,-0.0405175685882568,-0.828226804733276,0.66013902425766,-0.0443399846553802,-0.749833583831787,0.539591550827026,-0.00304569373838604,-0.841921329498291,0.558926224708557,-0.0405175685882568,-0.828226804733276,0.567772209644318,-0.119816012680531,-0.814419209957123,0.627240300178528,-0.140650749206543,-0.766020119190216,0.661557674407959,-0.0743049681186676,-0.746203720569611,0.691112101078033,-0.251735985279083,-0.67749011516571,0.644428610801697,-0.179499343037605,-0.743297755718231,0.702114045619965,-0.243563801050186,-0.669113159179688,0.567772209644318,-0.119816012680531,-0.814419209957123,0.644428610801697,-0.179499343037605,-0.743297755718231,0.691112101078033,-0.251735985279083,-0.67749011516571,0.643607616424561,-0.072415366768837,-0.761921942234039,0.601694107055664,-0.248264342546463,-0.7591632604599,0.585406243801117,-0.205697730183601,-0.784211575984955,0.643607616424561,-0.072415366768837,-0.761921942234039,0.62576425075531,0.00114740163553506,-0.780011296272278,0.634822368621826,0.136758595705032,-0.760458707809448,0.703906297683716,-0.11156041175127,-0.70147705078125,0.62576425075531,0.00114740163553506,-0.780011296272278,0.74260425567627,-0.137038677930832,-0.655560195446014,0.703906297683716,-0.11156041175127,-0.70147705078125,0.677533864974976,0.0137109309434891,-0.735363662242889,0.662457704544067,-0.150453567504883,-0.733834683895111,0.716619670391083,-0.176469847559929,-0.674769937992096,0.74260425567627,-0.137038677930832,-0.655560195446014,0.557684719562531,-0.19097127020359,-0.80778557062149,0.525519371032715,-0.144933387637138,-0.83834570646286,0.445736318826675,-0.229804202914238,-0.865164160728455,0.464394986629486,-0.124528758227825,-0.876829385757446,0.445736318826675,-0.229804202914238,-0.865164160728455,0.384184896945953,-0.21492001414299,-0.897892534732819,0.557684719562531,-0.19097127020359,-0.80778557062149,0.662457704544067,-0.150453567504883,-0.733834683895111,0.525519371032715,-0.144933387637138,-0.83834570646286,0.384184896945953,-0.21492001414299,-0.897892534732819, +0.354249596595764,-0.144418135285378,-0.923932075500488,0.343389719724655,-0.129144325852394,-0.930271506309509,0.347072958946228,-0.148272842168808,-0.926042854785919,0.354249596595764,-0.144418135285378,-0.923932075500488,0.30435636639595,-0.201861873269081,-0.930923640727997,0.246915727853775,-0.21217006444931,-0.945524394512177,0.164774879813194,-0.139229267835617,-0.976454973220825,0.252594262361526,-0.188267111778259,-0.949079275131226,0.164774879813194,-0.139229267835617,-0.976454973220825,0.0435648411512375,-0.251730144023895,-0.966816425323486,0.214547961950302,-0.173254311084747,-0.96122419834137,0.252594262361526,-0.188267111778259,-0.949079275131226,0.262739896774292,-0.141196444630623,-0.954479575157166,0.249878779053688,-0.197424203157425,-0.947936773300171,0.30435636639595,-0.201861873269081,-0.930923640727997,0.262739896774292,-0.141196444630623,-0.954479575157166,0.347072958946228,-0.148272842168808,-0.926042854785919,0.0435648411512375,-0.251730144023895,-0.966816425323486,0.0544243417680264,-0.263004958629608,-0.963258147239685,0.100770495831966,-0.206958934664726,-0.973146021366119,0.0435648411512375,-0.251730144023895,-0.966816425323486,0.118938446044922,-0.224728524684906,-0.96713525056839,0.0544243417680264,-0.263004958629608,-0.963258147239685,0.894900560379028,-0.115888506174088,-0.430955588817596,0.920982122421265,-0.204448983073235,-0.331650704145432,0.886550426483154,-0.157772228121758,-0.434897929430008,0.924920201301575,-0.219309195876122,-0.310525268316269,0.920982122421265,-0.204448983073235,-0.331650704145432,0.930375039577484,-0.178468406200409,-0.32023611664772,0.894900560379028,-0.115888506174088,-0.430955588817596,0.886550426483154,-0.157772228121758,-0.434897929430008,0.856631398200989,-0.0515925325453281,-0.513342797756195,0.818160653114319,0.0462741479277611,-0.573124527931213,0.856631398200989,-0.0515925325453281,-0.513342797756195,0.7866370677948,0.0277846250683069,-0.616790056228638,7.84549629315734e-005,0.963148176670074,-0.268971174955368,0.0535736903548241,0.98377788066864,-0.171204090118408, +0.175267457962036,0.952198684215546,-0.250197649002075,0.126085072755814,0.920925378799438,-0.368780314922333,-0.0269983150064945,0.921147048473358,-0.388277024030685,7.84549629315734e-005,0.963148176670074,-0.268971174955368,0.18304243683815,0.82282817363739,-0.538004755973816,0.0386960655450821,0.790447294712067,-0.611306428909302,0.0377794243395329,0.849570572376251,-0.526120126247406,0.126085072755814,0.920925378799438,-0.368780314922333,0.109067425131798,0.881199955940247,-0.45999002456665,-0.0269983150064945,0.921147048473358,-0.388277024030685,0.0377794243395329,0.849570572376251,-0.526120126247406,0.109067425131798,0.881199955940247,-0.45999002456665,0.18304243683815,0.82282817363739,-0.538004755973816,0.164941847324371,0.704309523105621,-0.690465152263641,0.0239249169826508,0.730493366718292,-0.682500541210175,0.0386960655450821,0.790447294712067,-0.611306428909302,-0.00545272091403604,0.680239975452423,-0.732969164848328,-0.0419122129678726,0.760098576545715,-0.648454606533051,0.0239249169826508,0.730493366718292,-0.682500541210175,-0.00545272091403604,0.680239975452423,-0.732969164848328,-0.0604968145489693,0.658131301403046,-0.750468611717224,-0.0638070479035378,0.683623671531677,-0.727039992809296,-0.00845913402736187,0.584095656871796,-0.811640679836273,0.239646598696709,0.528266847133636,-0.814557194709778,-0.0670232325792313,0.642685890197754,-0.763192415237427,-0.0670232325792313,0.642685890197754,-0.763192415237427,-0.0638070479035378,0.683623671531677,-0.727039992809296,-0.0604968145489693,0.658131301403046,-0.750468611717224,0.525004982948303,0.359816014766693,-0.771299004554749,-0.00845913402736187,0.584095656871796,-0.811640679836273,0.368343144655228,0.428625643253326,-0.824986815452576,0.368343144655228,0.428625643253326,-0.824986815452576,0.645620703697205,0.235571980476379,-0.726415574550629,0.781324148178101,0.120321229100227,-0.61241751909256,0.930375039577484,-0.178468406200409,-0.32023611664772,0.877468168735504,-0.0520549267530441,-0.476801574230194,0.890640199184418,-0.153392016887665,-0.428054690361023, +0.877468168735504,-0.0520549267530441,-0.476801574230194,0.645620703697205,0.235571980476379,-0.726415574550629,0.790345251560211,0.024079367518425,-0.612188160419464,-0.0104876449331641,0.924668967723846,0.380627453327179,-0.0644276216626167,0.891282856464386,0.44884717464447,0.157099515199661,0.865088403224945,0.476383984088898,0.157099515199661,0.865088403224945,0.476383984088898,0.0838195979595184,0.942923724651337,0.322287172079086,-0.0104876449331641,0.924668967723846,0.380627453327179,0.29902184009552,0.892219126224518,0.338424175977707,0.258094906806946,0.947119951248169,0.190658867359161,0.0838195979595184,0.942923724651337,0.322287172079086,0.324909389019012,0.94515985250473,0.033266942948103,0.258094906806946,0.947119951248169,0.190658867359161,0.475403636693954,0.86976557970047,0.132284015417099,0.324909389019012,0.94515985250473,0.033266942948103,0.274790912866592,0.959982991218567,-0.0540607385337353,0.213246420025826,0.976953089237213,0.00940692331641912,0.355677217245102,0.91974014043808,-0.166047215461731,0.274790912866592,0.959982991218567,-0.0540607385337353,0.385861128568649,0.919537246227264,-0.074580691754818,0.175267457962036,0.952198684215546,-0.250197649002075,0.189634174108505,0.975761830806732,-0.10921361297369,0.355677217245102,0.91974014043808,-0.166047215461731,0.409322887659073,0.271448850631714,0.871074140071869,0.30143079161644,0.382033973932266,0.873607099056244,-0.055747989565134,0.497017711400986,0.865947723388672,-0.187658607959747,0.579621911048889,0.792983293533325,0.233871787786484,0.406893819570541,0.883029580116272,-0.055747989565134,0.497017711400986,0.865947723388672,-0.211880043148994,0.772024273872375,0.599237203598022,-0.198184311389923,0.811603128910065,0.549566388130188,-0.238735169172287,0.716652870178223,0.655296802520752,-0.242892205715179,0.637509524822235,0.731153070926666,-0.187658607959747,0.579621911048889,0.792983293533325,-0.275571346282959,0.599471390247345,0.751461446285248,-0.245692119002342,0.651006996631622,0.718209624290466,-0.238735169172287,0.716652870178223,0.655296802520752, +-0.242892205715179,0.637509524822235,0.731153070926666,-0.288060009479523,0.836284935474396,0.466528415679932,-0.211880043148994,0.772024273872375,0.599237203598022,-0.181554481387138,0.842876732349396,0.506553649902344,-0.181554481387138,0.842876732349396,0.506553649902344,0.0192318335175514,0.830216705799103,0.557108759880066,-0.0644276216626167,0.891282856464386,0.44884717464447,-0.115969814360142,-0.556965410709381,-0.822399139404297,-0.0358109585940838,-0.5691938996315,-0.82142299413681,-0.0742243826389313,-0.494230300188065,-0.866156458854675,-0.115969814360142,-0.556965410709381,-0.822399139404297,-0.072030633687973,-0.588516533374786,-0.805269956588745,-0.0358109585940838,-0.5691938996315,-0.82142299413681,-0.072030633687973,-0.588516533374786,-0.805269956588745,-0.115969814360142,-0.556965410709381,-0.822399139404297,-0.0748671069741249,-0.635808110237122,-0.768207550048828,-0.153710052371025,-0.629996716976166,-0.761233985424042,-0.0493215583264828,-0.694184005260468,-0.718105673789978,-0.0748671069741249,-0.635808110237122,-0.768207550048828,-0.153710052371025,-0.629996716976166,-0.761233985424042,-0.0647237300872803,-0.706927716732025,-0.704317986965179,-0.0493215583264828,-0.694184005260468,-0.718105673789978,-0.0647237300872803,-0.706927716732025,-0.704317986965179,-0.179083555936813,-0.670630216598511,-0.71985000371933,-0.0641238838434219,-0.743033528327942,-0.666175007820129,-0.0742243826389313,-0.494230300188065,-0.866156458854675,-0.182984232902527,-0.417932957410812,-0.889858782291412,-0.167849004268646,-0.480202555656433,-0.860948383808136,0.0364860668778419,-0.806113839149475,-0.59063446521759,-0.0494565181434155,-0.781772434711456,-0.62159937620163,0.0539583414793015,-0.829480171203613,-0.555923521518707,-0.0641238838434219,-0.743033528327942,-0.666175007820129,-0.202158883213997,-0.722759604454041,-0.660870790481567,-0.0494565181434155,-0.781772434711456,-0.62159937620163,0.488074272871017,-0.0365314334630966,0.872037172317505,0.573913753032684,0.0282095428556204,0.81842964887619,0.496804565191269,0.00290034804493189,0.867857575416565, +0.488074272871017,-0.0365314334630966,0.872037172317505,0.491185873746872,-0.135027900338173,0.86052531003952,0.612445414066315,-0.107604123651981,0.783154964447021,0.491185873746872,-0.135027900338173,0.86052531003952,0.493314564228058,-0.25230085849762,0.832457184791565,0.615833163261414,-0.199936613440514,0.762085735797882,0.699797034263611,-0.239807859063149,0.672886371612549,0.615833163261414,-0.199936613440514,0.762085735797882,0.619157671928406,-0.290588557720184,0.729521691799164,0.779412448406219,-0.271349668502808,0.564699351787567,0.844359755516052,-0.284212589263916,0.454180330038071,0.812104284763336,-0.337433129549026,0.476051837205887,0.777458012104034,-0.356344819068909,0.518244385719299,0.812104284763336,-0.337433129549026,0.476051837205887,0.820506036281586,-0.291763544082642,0.491572737693787,0.777374446392059,-0.199197247624397,0.59666520357132,0.844359755516052,-0.284212589263916,0.454180330038071,0.779412448406219,-0.271349668502808,0.564699351787567,0.777374446392059,-0.199197247624397,0.59666520357132,0.577973484992981,-0.0125208534300327,0.815959393978119,0.793731451034546,-0.0998657867312431,0.600014209747314,0.773592233657837,-0.245969623327255,0.583998143672943,0.717692136764526,-0.314563304185867,0.621263027191162,0.777458012104034,-0.356344819068909,0.518244385719299,0.717692136764526,-0.314563304185867,0.621263027191162,0.699797034263611,-0.239807859063149,0.672886371612549,0.619157671928406,-0.290588557720184,0.729521691799164,0.440667688846588,0.12911656498909,0.888335943222046,0.577973484992981,-0.0125208534300327,0.815959393978119,0.195896774530411,0.215574979782104,0.956635653972626,-0.0142970019951463,0.371899276971817,0.928162932395935,0.375696331262589,0.298830419778824,0.877241432666779,0.440667688846588,0.12911656498909,0.888335943222046,0.30143079161644,0.382033973932266,0.873607099056244,0.563565671443939,0.25370666384697,0.786146700382233,0.157028466463089,0.491419196128845,0.856649935245514,-0.108485989272594,0.517616271972656,0.848707258701324,0.157028466463089,0.491419196128845,0.856649935245514, +0.375696331262589,0.298830419778824,0.877241432666779,0.682855606079102,0.123437337577343,-0.720049500465393,0.7866370677948,0.0277846250683069,-0.616790056228638,0.738609969615936,-0.0391630455851555,-0.672994375228882,0.738609969615936,-0.0391630455851555,-0.672994375228882,0.736209511756897,-0.143965676426888,-0.661263406276703,0.704225599765778,-0.0068646571598947,-0.709942936897278,0.749654114246368,-0.0898880809545517,-0.655697047710419,0.784257411956787,-0.140808194875717,-0.604246020317078,0.66013902425766,-0.0443399846553802,-0.749833583831787,0.736209511756897,-0.143965676426888,-0.661263406276703,0.783553779125214,-0.191613107919693,-0.591039538383484,0.749654114246368,-0.0898880809545517,-0.655697047710419,0.66013902425766,-0.0443399846553802,-0.749833583831787,0.685253322124481,-0.0622773543000221,-0.725637137889862,0.539591550827026,-0.00304569373838604,-0.841921329498291,0.558926224708557,-0.0405175685882568,-0.828226804733276,0.539591550827026,-0.00304569373838604,-0.841921329498291,0.567772209644318,-0.119816012680531,-0.814419209957123,0.661557674407959,-0.0743049681186676,-0.746203720569611,0.643607616424561,-0.072415366768837,-0.761921942234039,0.691112101078033,-0.251735985279083,-0.67749011516571,0.661557674407959,-0.0743049681186676,-0.746203720569611,0.644428610801697,-0.179499343037605,-0.743297755718231,0.546761453151703,-0.0116944722831249,-0.837206661701202,0.644428610801697,-0.179499343037605,-0.743297755718231,0.567772209644318,-0.119816012680531,-0.814419209957123,0.546761453151703,-0.0116944722831249,-0.837206661701202,0.643607616424561,-0.072415366768837,-0.761921942234039,0.617503225803375,0.151027977466583,-0.771932721138,0.62576425075531,0.00114740163553506,-0.780011296272278,0.677533864974976,0.0137109309434891,-0.735363662242889,0.703906297683716,-0.11156041175127,-0.70147705078125,0.634822368621826,0.136758595705032,-0.760458707809448,0.62576425075531,0.00114740163553506,-0.780011296272278,0.617503225803375,0.151027977466583,-0.771932721138,0.634822368621826,0.136758595705032,-0.760458707809448, +0.677533864974976,0.0137109309434891,-0.735363662242889,0.662457704544067,-0.150453567504883,-0.733834683895111,0.74260425567627,-0.137038677930832,-0.655560195446014,0.441991478204727,-0.152943953871727,-0.883884370326996,0.445736318826675,-0.229804202914238,-0.865164160728455,0.525519371032715,-0.144933387637138,-0.83834570646286,0.386035859584808,-0.212119966745377,-0.897764682769775,0.384184896945953,-0.21492001414299,-0.897892534732819,0.445736318826675,-0.229804202914238,-0.865164160728455,0.54416823387146,0.0286969691514969,-0.83848512172699,0.525519371032715,-0.144933387637138,-0.83834570646286,0.662457704544067,-0.150453567504883,-0.733834683895111,0.354249596595764,-0.144418135285378,-0.923932075500488,0.384184896945953,-0.21492001414299,-0.897892534732819,0.30435636639595,-0.201861873269081,-0.930923640727997,0.246915727853775,-0.21217006444931,-0.945524394512177,0.303817391395569,-0.190586134791374,-0.933472990989685,0.164774879813194,-0.139229267835617,-0.976454973220825,0.252594262361526,-0.188267111778259,-0.949079275131226,0.249878779053688,-0.197424203157425,-0.947936773300171,0.246915727853775,-0.21217006444931,-0.945524394512177,0.164774879813194,-0.139229267835617,-0.976454973220825,0.109108649194241,-0.0782552808523178,-0.990944683551788,0.0435648411512375,-0.251730144023895,-0.966816425323486,0.262739896774292,-0.141196444630623,-0.954479575157166,0.30435636639595,-0.201861873269081,-0.930923640727997,0.249878779053688,-0.197424203157425,-0.947936773300171,0.109108649194241,-0.0782552808523178,-0.990944683551788,0.118938446044922,-0.224728524684906,-0.96713525056839,0.0435648411512375,-0.251730144023895,-0.966816425323486,0.913582861423492,-0.22806254029274,-0.336680382490158,0.886550426483154,-0.157772228121758,-0.434897929430008,0.920982122421265,-0.204448983073235,-0.331650704145432,0.924920201301575,-0.219309195876122,-0.310525268316269,0.913582861423492,-0.22806254029274,-0.336680382490158,0.920982122421265,-0.204448983073235,-0.331650704145432,0.930375039577484,-0.178468406200409,-0.32023611664772, +0.890640199184418,-0.153392016887665,-0.428054690361023,0.924920201301575,-0.219309195876122,-0.310525268316269,0.842954397201538,-0.107503414154053,-0.527134478092194,0.856631398200989,-0.0515925325453281,-0.513342797756195,0.886550426483154,-0.157772228121758,-0.434897929430008,0.842954397201538,-0.107503414154053,-0.527134478092194,0.7866370677948,0.0277846250683069,-0.616790056228638,0.856631398200989,-0.0515925325453281,-0.513342797756195,7.84549629315734e-005,0.963148176670074,-0.268971174955368,0.175267457962036,0.952198684215546,-0.250197649002075,0.126085072755814,0.920925378799438,-0.368780314922333,0.214160621166229,0.76902574300766,-0.602274417877197,0.0386960655450821,0.790447294712067,-0.611306428909302,0.18304243683815,0.82282817363739,-0.538004755973816,0.126085072755814,0.920925378799438,-0.368780314922333,0.246637672185898,0.857856214046478,-0.450835406780243,0.109067425131798,0.881199955940247,-0.45999002456665,0.18304243683815,0.82282817363739,-0.538004755973816,0.109067425131798,0.881199955940247,-0.45999002456665,0.246637672185898,0.857856214046478,-0.450835406780243,0.164941847324371,0.704309523105621,-0.690465152263641,0.15407457947731,0.645401954650879,-0.74814248085022,0.0239249169826508,0.730493366718292,-0.682500541210175,0.214160621166229,0.76902574300766,-0.602274417877197,0.164941847324371,0.704309523105621,-0.690465152263641,0.0386960655450821,0.790447294712067,-0.611306428909302,0.15407457947731,0.645401954650879,-0.74814248085022,-0.00545272091403604,0.680239975452423,-0.732969164848328,0.0239249169826508,0.730493366718292,-0.682500541210175,-0.00545272091403604,0.680239975452423,-0.732969164848328,0.0656522288918495,0.608591496944427,-0.790762901306152,-0.0604968145489693,0.658131301403046,-0.750468611717224,-0.0459988638758659,0.609588146209717,-0.791382491588593,-0.00845913402736187,0.584095656871796,-0.811640679836273,-0.0670232325792313,0.642685890197754,-0.763192415237427,-0.0459988638758659,0.609588146209717,-0.791382491588593,-0.0670232325792313,0.642685890197754,-0.763192415237427, +-0.0604968145489693,0.658131301403046,-0.750468611717224,0.194678753614426,0.515737414360046,-0.834335029125214,0.368343144655228,0.428625643253326,-0.824986815452576,-0.00845913402736187,0.584095656871796,-0.811640679836273,0.368343144655228,0.428625643253326,-0.824986815452576,0.194678753614426,0.515737414360046,-0.834335029125214,0.645620703697205,0.235571980476379,-0.726415574550629,0.890640199184418,-0.153392016887665,-0.428054690361023,0.877468168735504,-0.0520549267530441,-0.476801574230194,0.790345251560211,0.024079367518425,-0.612188160419464,0.374783247709274,0.388546824455261,-0.841765224933624,0.790345251560211,0.024079367518425,-0.612188160419464,0.645620703697205,0.235571980476379,-0.726415574550629,-0.0644276216626167,0.891282856464386,0.44884717464447,0.0192318335175514,0.830216705799103,0.557108759880066,0.157099515199661,0.865088403224945,0.476383984088898,0.157099515199661,0.865088403224945,0.476383984088898,0.29902184009552,0.892219126224518,0.338424175977707,0.0838195979595184,0.942923724651337,0.322287172079086,0.434840589761734,0.870893120765686,0.229038625955582,0.258094906806946,0.947119951248169,0.190658867359161,0.29902184009552,0.892219126224518,0.338424175977707,0.434840589761734,0.870893120765686,0.229038625955582,0.475403636693954,0.86976557970047,0.132284015417099,0.258094906806946,0.947119951248169,0.190658867359161,0.467873871326447,0.88369607925415,-0.0132346441969275,0.324909389019012,0.94515985250473,0.033266942948103,0.475403636693954,0.86976557970047,0.132284015417099,0.324909389019012,0.94515985250473,0.033266942948103,0.385861128568649,0.919537246227264,-0.074580691754818,0.274790912866592,0.959982991218567,-0.0540607385337353,0.355677217245102,0.91974014043808,-0.166047215461731,0.385861128568649,0.919537246227264,-0.074580691754818,0.48650062084198,0.865674555301666,-0.11800279468298,0.175267457962036,0.952198684215546,-0.250197649002075,0.355677217245102,0.91974014043808,-0.166047215461731,0.345444321632385,0.877490222454071,-0.332684606313705,0.157028466463089,0.491419196128845,0.856649935245514, +-0.055747989565134,0.497017711400986,0.865947723388672,0.30143079161644,0.382033973932266,0.873607099056244,-0.304618269205093,0.57025933265686,0.76289701461792,-0.187658607959747,0.579621911048889,0.792983293533325,-0.055747989565134,0.497017711400986,0.865947723388672,-0.238735169172287,0.716652870178223,0.655296802520752,-0.140128269791603,0.676008880138397,0.723447203636169,-0.211880043148994,0.772024273872375,0.599237203598022,-0.275571346282959,0.599471390247345,0.751461446285248,-0.187658607959747,0.579621911048889,0.792983293533325,-0.304618269205093,0.57025933265686,0.76289701461792,-0.275571346282959,0.599471390247345,0.751461446285248,-0.245692119002342,0.651006996631622,0.718209624290466,-0.242892205715179,0.637509524822235,0.731153070926666,-0.245692119002342,0.651006996631622,0.718209624290466,-0.140128269791603,0.676008880138397,0.723447203636169,-0.238735169172287,0.716652870178223,0.655296802520752,-0.181554481387138,0.842876732349396,0.506553649902344,-0.211880043148994,0.772024273872375,0.599237203598022,-0.0829204395413399,0.793756902217865,0.602556228637695,0.0192318335175514,0.830216705799103,0.557108759880066,-0.181554481387138,0.842876732349396,0.506553649902344,-0.0829204395413399,0.793756902217865,0.602556228637695,-0.0742243826389313,-0.494230300188065,-0.866156458854675,-0.167849004268646,-0.480202555656433,-0.860948383808136,-0.115969814360142,-0.556965410709381,-0.822399139404297,-0.0748671069741249,-0.635808110237122,-0.768207550048828,-0.115969814360142,-0.556965410709381,-0.822399139404297,-0.153710052371025,-0.629996716976166,-0.761233985424042,-0.179083555936813,-0.670630216598511,-0.71985000371933,-0.0647237300872803,-0.706927716732025,-0.704317986965179,-0.153710052371025,-0.629996716976166,-0.761233985424042,-0.0641238838434219,-0.743033528327942,-0.666175007820129,-0.179083555936813,-0.670630216598511,-0.71985000371933,-0.202158883213997,-0.722759604454041,-0.660870790481567,-0.167849004268646,-0.480202555656433,-0.860948383808136,-0.182984232902527,-0.417932957410812,-0.889858782291412, +-0.235160961747169,-0.373922854661942,-0.897151529788971,0.00863191951066256,-0.814293920993805,-0.580388426780701,0.0539583414793015,-0.829480171203613,-0.555923521518707,-0.0494565181434155,-0.781772434711456,-0.62159937620163,-0.119990333914757,-0.781780183315277,-0.611900210380554,-0.0494565181434155,-0.781772434711456,-0.62159937620163,-0.202158883213997,-0.722759604454041,-0.660870790481567,0.496804565191269,0.00290034804493189,0.867857575416565,0.518883585929871,-0.0204521045088768,0.854600131511688,0.488074272871017,-0.0365314334630966,0.872037172317505,0.492692589759827,-0.0889653638005257,0.865643739700317,0.491185873746872,-0.135027900338173,0.86052531003952,0.488074272871017,-0.0365314334630966,0.872037172317505,0.493314564228058,-0.25230085849762,0.832457184791565,0.491185873746872,-0.135027900338173,0.86052531003952,0.469198793172836,-0.169504687190056,0.866672098636627,0.615833163261414,-0.199936613440514,0.762085735797882,0.493314564228058,-0.25230085849762,0.832457184791565,0.619157671928406,-0.290588557720184,0.729521691799164,0.812104284763336,-0.337433129549026,0.476051837205887,0.762322545051575,-0.366637021303177,0.53333055973053,0.779412448406219,-0.271349668502808,0.564699351787567,0.777458012104034,-0.356344819068909,0.518244385719299,0.762322545051575,-0.366637021303177,0.53333055973053,0.812104284763336,-0.337433129549026,0.476051837205887,0.635944187641144,-0.10819286108017,0.764113306999207,0.777374446392059,-0.199197247624397,0.59666520357132,0.779412448406219,-0.271349668502808,0.564699351787567,0.635944187641144,-0.10819286108017,0.764113306999207,0.577973484992981,-0.0125208534300327,0.815959393978119,0.777374446392059,-0.199197247624397,0.59666520357132,0.699936091899872,-0.405220955610275,0.588120102882385,0.777458012104034,-0.356344819068909,0.518244385719299,0.717692136764526,-0.314563304185867,0.621263027191162,0.717692136764526,-0.314563304185867,0.621263027191162,0.619157671928406,-0.290588557720184,0.729521691799164,0.602538645267487,-0.354560166597366,0.715006351470947,0.288942903280258,0.14644268155098,0.94607949256897, +0.195896774530411,0.215574979782104,0.956635653972626,0.577973484992981,-0.0125208534300327,0.815959393978119,0.440667688846588,0.12911656498909,0.888335943222046,0.195896774530411,0.215574979782104,0.956635653972626,-0.0142970019951463,0.371899276971817,0.928162932395935,-0.0142970019951463,0.371899276971817,0.928162932395935,-0.108485989272594,0.517616271972656,0.848707258701324,0.375696331262589,0.298830419778824,0.877241432666779,-0.108485989272594,0.517616271972656,0.848707258701324,-0.240302607417107,0.561594724655151,0.791748702526093,0.157028466463089,0.491419196128845,0.856649935245514,0.7866370677948,0.0277846250683069,-0.616790056228638,0.842954397201538,-0.107503414154053,-0.527134478092194,0.738609969615936,-0.0391630455851555,-0.672994375228882,0.736209511756897,-0.143965676426888,-0.661263406276703,0.738609969615936,-0.0391630455851555,-0.672994375228882,0.726759493350983,-0.216033279895782,-0.652035355567932,0.749654114246368,-0.0898880809545517,-0.655697047710419,0.80856317281723,-0.187360391020775,-0.557782709598541,0.784257411956787,-0.140808194875717,-0.604246020317078,0.66013902425766,-0.0443399846553802,-0.749833583831787,0.784257411956787,-0.140808194875717,-0.604246020317078,0.685253322124481,-0.0622773543000221,-0.725637137889862,0.736209511756897,-0.143965676426888,-0.661263406276703,0.731193542480469,-0.255106180906296,-0.632674276828766,0.783553779125214,-0.191613107919693,-0.591039538383484,0.749654114246368,-0.0898880809545517,-0.655697047710419,0.783553779125214,-0.191613107919693,-0.591039538383484,0.80856317281723,-0.187360391020775,-0.557782709598541,0.685253322124481,-0.0622773543000221,-0.725637137889862,0.59257572889328,-0.0561866760253906,-0.803552746772766,0.539591550827026,-0.00304569373838604,-0.841921329498291,0.567772209644318,-0.119816012680531,-0.814419209957123,0.539591550827026,-0.00304569373838604,-0.841921329498291,0.546761453151703,-0.0116944722831249,-0.837206661701202,0.661557674407959,-0.0743049681186676,-0.746203720569611,0.631433546543121,0.105408303439617,-0.76823216676712, +0.643607616424561,-0.072415366768837,-0.761921942234039,0.661557674407959,-0.0743049681186676,-0.746203720569611,0.546761453151703,-0.0116944722831249,-0.837206661701202,0.631433546543121,0.105408303439617,-0.76823216676712,0.617503225803375,0.151027977466583,-0.771932721138,0.643607616424561,-0.072415366768837,-0.761921942234039,0.631433546543121,0.105408303439617,-0.76823216676712,0.677533864974976,0.0137109309434891,-0.735363662242889,0.634822368621826,0.136758595705032,-0.760458707809448,0.581983029842377,0.164157152175903,-0.796459674835205,0.617503225803375,0.151027977466583,-0.771932721138,0.596173465251923,0.149996086955071,-0.788719415664673,0.634822368621826,0.136758595705032,-0.760458707809448,0.677533864974976,0.0137109309434891,-0.735363662242889,0.54416823387146,0.0286969691514969,-0.83848512172699,0.662457704544067,-0.150453567504883,-0.733834683895111,0.441991478204727,-0.152943953871727,-0.883884370326996,0.386035859584808,-0.212119966745377,-0.897764682769775,0.445736318826675,-0.229804202914238,-0.865164160728455,0.441991478204727,-0.152943953871727,-0.883884370326996,0.525519371032715,-0.144933387637138,-0.83834570646286,0.434740126132965,0.0134115880355239,-0.900456011295319,0.298943638801575,-0.175239503383636,-0.938042521476746,0.384184896945953,-0.21492001414299,-0.897892534732819,0.386035859584808,-0.212119966745377,-0.897764682769775,0.54416823387146,0.0286969691514969,-0.83848512172699,0.434740126132965,0.0134115880355239,-0.900456011295319,0.525519371032715,-0.144933387637138,-0.83834570646286,0.298943638801575,-0.175239503383636,-0.938042521476746,0.30435636639595,-0.201861873269081,-0.930923640727997,0.384184896945953,-0.21492001414299,-0.897892534732819,0.303817391395569,-0.190586134791374,-0.933472990989685,0.246915727853775,-0.21217006444931,-0.945524394512177,0.26255190372467,-0.235285311937332,-0.935792326927185,0.164774879813194,-0.139229267835617,-0.976454973220825,0.303817391395569,-0.190586134791374,-0.933472990989685,0.273255467414856,0.0116297481581569,-0.961871027946472,0.246915727853775,-0.21217006444931,-0.945524394512177, +0.249878779053688,-0.197424203157425,-0.947936773300171,0.241163119673729,-0.271219372749329,-0.931815624237061,0.164774879813194,-0.139229267835617,-0.976454973220825,0.273255467414856,0.0116297481581569,-0.961871027946472,0.109108649194241,-0.0782552808523178,-0.990944683551788,0.249878779053688,-0.197424203157425,-0.947936773300171,0.30435636639595,-0.201861873269081,-0.930923640727997,0.241163119673729,-0.271219372749329,-0.931815624237061,0.8862184882164,-0.184859782457352,-0.424786478281021,0.886550426483154,-0.157772228121758,-0.434897929430008,0.913582861423492,-0.22806254029274,-0.336680382490158,0.883534550666809,-0.217431962490082,-0.414837211370468,0.913582861423492,-0.22806254029274,-0.336680382490158,0.924920201301575,-0.219309195876122,-0.310525268316269,0.883534550666809,-0.217431962490082,-0.414837211370468,0.924920201301575,-0.219309195876122,-0.310525268316269,0.890640199184418,-0.153392016887665,-0.428054690361023,0.842954397201538,-0.107503414154053,-0.527134478092194,0.886550426483154,-0.157772228121758,-0.434897929430008,0.8862184882164,-0.184859782457352,-0.424786478281021,0.345444321632385,0.877490222454071,-0.332684606313705,0.126085072755814,0.920925378799438,-0.368780314922333,0.175267457962036,0.952198684215546,-0.250197649002075,0.18304243683815,0.82282817363739,-0.538004755973816,0.358100563287735,0.774857580661774,-0.520921766757965,0.214160621166229,0.76902574300766,-0.602274417877197,0.345444321632385,0.877490222454071,-0.332684606313705,0.246637672185898,0.857856214046478,-0.450835406780243,0.126085072755814,0.920925378799438,-0.368780314922333,0.18304243683815,0.82282817363739,-0.538004755973816,0.246637672185898,0.857856214046478,-0.450835406780243,0.358100563287735,0.774857580661774,-0.520921766757965,0.347746908664703,0.547158241271973,-0.76137363910675,0.15407457947731,0.645401954650879,-0.74814248085022,0.164941847324371,0.704309523105621,-0.690465152263641,0.354791283607483,0.684493243694305,-0.636861026287079,0.164941847324371,0.704309523105621,-0.690465152263641,0.214160621166229,0.76902574300766,-0.602274417877197, +0.169512510299683,0.590579271316528,-0.788974940776825,-0.00545272091403604,0.680239975452423,-0.732969164848328,0.15407457947731,0.645401954650879,-0.74814248085022,-0.00545272091403604,0.680239975452423,-0.732969164848328,0.169512510299683,0.590579271316528,-0.788974940776825,0.0656522288918495,0.608591496944427,-0.790762901306152,0.0656522288918495,0.608591496944427,-0.790762901306152,-0.0459988638758659,0.609588146209717,-0.791382491588593,-0.0604968145489693,0.658131301403046,-0.750468611717224,-0.077507495880127,0.562262177467346,-0.823318719863892,-0.00845913402736187,0.584095656871796,-0.811640679836273,-0.0459988638758659,0.609588146209717,-0.791382491588593,0.194678753614426,0.515737414360046,-0.834335029125214,-0.00845913402736187,0.584095656871796,-0.811640679836273,-0.0448160320520401,0.560647070407867,-0.826841115951538,0.194678753614426,0.515737414360046,-0.834335029125214,0.374783247709274,0.388546824455261,-0.841765224933624,0.645620703697205,0.235571980476379,-0.726415574550629,0.828688204288483,-0.104165971279144,-0.54993200302124,0.890640199184418,-0.153392016887665,-0.428054690361023,0.790345251560211,0.024079367518425,-0.612188160419464,0.374783247709274,0.388546824455261,-0.841765224933624,0.5385582447052,0.190662771463394,-0.820732951164246,0.790345251560211,0.024079367518425,-0.612188160419464,0.0192318335175514,0.830216705799103,0.557108759880066,0.168556556105614,0.76850438117981,0.617243468761444,0.157099515199661,0.865088403224945,0.476383984088898,0.401387244462967,0.787375509738922,0.467897415161133,0.29902184009552,0.892219126224518,0.338424175977707,0.157099515199661,0.865088403224945,0.476383984088898,0.456258475780487,0.821370720863342,0.342313021421433,0.434840589761734,0.870893120765686,0.229038625955582,0.29902184009552,0.892219126224518,0.338424175977707,0.567328214645386,0.774431943893433,0.279988497495651,0.475403636693954,0.86976557970047,0.132284015417099,0.434840589761734,0.870893120765686,0.229038625955582,0.385861128568649,0.919537246227264,-0.074580691754818,0.324909389019012,0.94515985250473,0.033266942948103, +0.467873871326447,0.88369607925415,-0.0132346441969275,0.570314228534698,0.819469571113586,0.0566667951643467,0.467873871326447,0.88369607925415,-0.0132346441969275,0.475403636693954,0.86976557970047,0.132284015417099,0.385861128568649,0.919537246227264,-0.074580691754818,0.467873871326447,0.88369607925415,-0.0132346441969275,0.48650062084198,0.865674555301666,-0.11800279468298,0.355677217245102,0.91974014043808,-0.166047215461731,0.48650062084198,0.865674555301666,-0.11800279468298,0.533418655395508,0.81656140089035,-0.220662280917168,0.345444321632385,0.877490222454071,-0.332684606313705,0.355677217245102,0.91974014043808,-0.166047215461731,0.533418655395508,0.81656140089035,-0.220662280917168,0.157028466463089,0.491419196128845,0.856649935245514,-0.240302607417107,0.561594724655151,0.791748702526093,-0.055747989565134,0.497017711400986,0.865947723388672,-0.240302607417107,0.561594724655151,0.791748702526093,-0.304618269205093,0.57025933265686,0.76289701461792,-0.055747989565134,0.497017711400986,0.865947723388672,-0.211880043148994,0.772024273872375,0.599237203598022,-0.140128269791603,0.676008880138397,0.723447203636169,-0.0715654492378235,0.731287956237793,0.678303897380829,-0.304618269205093,0.57025933265686,0.76289701461792,-0.192044004797935,0.528870105743408,0.826689422130585,-0.275571346282959,0.599471390247345,0.751461446285248,-0.245692119002342,0.651006996631622,0.718209624290466,-0.275571346282959,0.599471390247345,0.751461446285248,-0.117344155907631,0.596601545810699,0.793912291526794,-0.245692119002342,0.651006996631622,0.718209624290466,-0.117344155907631,0.596601545810699,0.793912291526794,-0.140128269791603,0.676008880138397,0.723447203636169,-0.211880043148994,0.772024273872375,0.599237203598022,-0.0715654492378235,0.731287956237793,0.678303897380829,-0.0829204395413399,0.793756902217865,0.602556228637695,0.0192318335175514,0.830216705799103,0.557108759880066,-0.0829204395413399,0.793756902217865,0.602556228637695,0.0458142310380936,0.753952622413635,0.65532922744751,-0.207450598478317,-0.533555388450623,-0.819928526878357, +-0.115969814360142,-0.556965410709381,-0.822399139404297,-0.167849004268646,-0.480202555656433,-0.860948383808136,-0.153710052371025,-0.629996716976166,-0.761233985424042,-0.115969814360142,-0.556965410709381,-0.822399139404297,-0.207450598478317,-0.533555388450623,-0.819928526878357,-0.153710052371025,-0.629996716976166,-0.761233985424042,-0.273136258125305,-0.587464272975922,-0.761762619018555,-0.179083555936813,-0.670630216598511,-0.71985000371933,-0.179083555936813,-0.670630216598511,-0.71985000371933,-0.263016730546951,-0.651200950145721,-0.711870312690735,-0.202158883213997,-0.722759604454041,-0.660870790481567,-0.276764661073685,-0.298260986804962,-0.913477718830109,-0.235160961747169,-0.373922854661942,-0.897151529788971,-0.182984232902527,-0.417932957410812,-0.889858782291412,-0.208814963698387,-0.425010591745377,-0.880773663520813,-0.167849004268646,-0.480202555656433,-0.860948383808136,-0.235160961747169,-0.373922854661942,-0.897151529788971,0.0539583414793015,-0.829480171203613,-0.555923521518707,0.00863191951066256,-0.814293920993805,-0.580388426780701,0.152846723794937,-0.861648917198181,-0.483941107988358,-0.00106569530908018,-0.810628890991211,-0.585559129714966,0.00863191951066256,-0.814293920993805,-0.580388426780701,-0.0494565181434155,-0.781772434711456,-0.62159937620163,-0.0400127544999123,-0.794187247753143,-0.606354296207428,-0.0494565181434155,-0.781772434711456,-0.62159937620163,-0.119990333914757,-0.781780183315277,-0.611900210380554,-0.0434652380645275,-0.816667079925537,-0.575469851493835,-0.119990333914757,-0.781780183315277,-0.611900210380554,-0.202158883213997,-0.722759604454041,-0.660870790481567,0.492692589759827,-0.0889653638005257,0.865643739700317,0.488074272871017,-0.0365314334630966,0.872037172317505,0.518883585929871,-0.0204521045088768,0.854600131511688,0.491185873746872,-0.135027900338173,0.86052531003952,0.492692589759827,-0.0889653638005257,0.865643739700317,0.469198793172836,-0.169504687190056,0.866672098636627,0.493314564228058,-0.25230085849762,0.832457184791565,0.469198793172836,-0.169504687190056,0.866672098636627, +0.468323171138763,-0.226812466979027,0.853949308395386,0.602538645267487,-0.354560166597366,0.715006351470947,0.619157671928406,-0.290588557720184,0.729521691799164,0.493314564228058,-0.25230085849762,0.832457184791565,0.658665180206299,-0.24921028316021,0.709967792034149,0.779412448406219,-0.271349668502808,0.564699351787567,0.762322545051575,-0.366637021303177,0.53333055973053,0.725668132305145,-0.421099096536636,0.544133424758911,0.762322545051575,-0.366637021303177,0.53333055973053,0.777458012104034,-0.356344819068909,0.518244385719299,0.658665180206299,-0.24921028316021,0.709967792034149,0.635944187641144,-0.10819286108017,0.764113306999207,0.779412448406219,-0.271349668502808,0.564699351787567,0.635944187641144,-0.10819286108017,0.764113306999207,0.288942903280258,0.14644268155098,0.94607949256897,0.577973484992981,-0.0125208534300327,0.815959393978119,0.725668132305145,-0.421099096536636,0.544133424758911,0.777458012104034,-0.356344819068909,0.518244385719299,0.699936091899872,-0.405220955610275,0.588120102882385,0.699936091899872,-0.405220955610275,0.588120102882385,0.717692136764526,-0.314563304185867,0.621263027191162,0.602538645267487,-0.354560166597366,0.715006351470947,0.288942903280258,0.14644268155098,0.94607949256897,-0.135724782943726,0.378334671258926,0.915664553642273,0.195896774530411,0.215574979782104,0.956635653972626,0.195896774530411,0.215574979782104,0.956635653972626,-0.135724782943726,0.378334671258926,0.915664553642273,-0.0142970019951463,0.371899276971817,0.928162932395935,-0.108485989272594,0.517616271972656,0.848707258701324,-0.0142970019951463,0.371899276971817,0.928162932395935,-0.273560404777527,0.492881447076797,0.825973629951477,-0.293781906366348,0.549456536769867,0.782169759273529,-0.240302607417107,0.561594724655151,0.791748702526093,-0.108485989272594,0.517616271972656,0.848707258701324,0.738609969615936,-0.0391630455851555,-0.672994375228882,0.842954397201538,-0.107503414154053,-0.527134478092194,0.7975714802742,-0.215157389640808,-0.563548445701599,0.7975714802742,-0.215157389640808,-0.563548445701599, +0.726759493350983,-0.216033279895782,-0.652035355567932,0.738609969615936,-0.0391630455851555,-0.672994375228882,0.726759493350983,-0.216033279895782,-0.652035355567932,0.731193542480469,-0.255106180906296,-0.632674276828766,0.736209511756897,-0.143965676426888,-0.661263406276703,0.743033945560455,-0.276756584644318,-0.609349012374878,0.784257411956787,-0.140808194875717,-0.604246020317078,0.80856317281723,-0.187360391020775,-0.557782709598541,0.685253322124481,-0.0622773543000221,-0.725637137889862,0.784257411956787,-0.140808194875717,-0.604246020317078,0.693989038467407,-0.173174902796745,-0.698848783969879,0.731193542480469,-0.255106180906296,-0.632674276828766,0.743385851383209,-0.217065036296844,-0.632661163806915,0.783553779125214,-0.191613107919693,-0.591039538383484,0.80856317281723,-0.187360391020775,-0.557782709598541,0.783553779125214,-0.191613107919693,-0.591039538383484,0.79752242565155,-0.170116066932678,-0.578807711601257,0.59257572889328,-0.0561866760253906,-0.803552746772766,0.685253322124481,-0.0622773543000221,-0.725637137889862,0.693989038467407,-0.173174902796745,-0.698848783969879,0.546902418136597,0.00807333830744028,-0.837157309055328,0.539591550827026,-0.00304569373838604,-0.841921329498291,0.59257572889328,-0.0561866760253906,-0.803552746772766,0.546902418136597,0.00807333830744028,-0.837157309055328,0.546761453151703,-0.0116944722831249,-0.837206661701202,0.539591550827026,-0.00304569373838604,-0.841921329498291,0.631433546543121,0.105408303439617,-0.76823216676712,0.546761453151703,-0.0116944722831249,-0.837206661701202,0.546902418136597,0.00807333830744028,-0.837157309055328,0.68188601732254,0.11128756403923,-0.722942888736725,0.617503225803375,0.151027977466583,-0.771932721138,0.631433546543121,0.105408303439617,-0.76823216676712,0.634822368621826,0.136758595705032,-0.760458707809448,0.596173465251923,0.149996086955071,-0.788719415664673,0.581983029842377,0.164157152175903,-0.796459674835205,0.677533864974976,0.0137109309434891,-0.735363662242889,0.581983029842377,0.164157152175903,-0.796459674835205, +0.54416823387146,0.0286969691514969,-0.83848512172699,0.68188601732254,0.11128756403923,-0.722942888736725,0.596173465251923,0.149996086955071,-0.788719415664673,0.617503225803375,0.151027977466583,-0.771932721138,0.441991478204727,-0.152943953871727,-0.883884370326996,0.368107855319977,-0.0603155270218849,-0.92782461643219,0.386035859584808,-0.212119966745377,-0.897764682769775,0.368107855319977,-0.0603155270218849,-0.92782461643219,0.441991478204727,-0.152943953871727,-0.883884370326996,0.434740126132965,0.0134115880355239,-0.900456011295319,0.298943638801575,-0.175239503383636,-0.938042521476746,0.386035859584808,-0.212119966745377,-0.897764682769775,0.346243143081665,-0.0640062615275383,-0.935958743095398,0.490540772676468,0.108081601560116,-0.864689528942108,0.434740126132965,0.0134115880355239,-0.900456011295319,0.54416823387146,0.0286969691514969,-0.83848512172699,0.298943638801575,-0.175239503383636,-0.938042521476746,0.237377792596817,-0.273141771554947,-0.932226002216339,0.30435636639595,-0.201861873269081,-0.930923640727997,0.246915727853775,-0.21217006444931,-0.945524394512177,0.241163119673729,-0.271219372749329,-0.931815624237061,0.26255190372467,-0.235285311937332,-0.935792326927185,0.237377792596817,-0.273141771554947,-0.932226002216339,0.241163119673729,-0.271219372749329,-0.931815624237061,0.30435636639595,-0.201861873269081,-0.930923640727997,0.885589122772217,-0.241126582026482,-0.396975487470627,0.8862184882164,-0.184859782457352,-0.424786478281021,0.913582861423492,-0.22806254029274,-0.336680382490158,0.883534550666809,-0.217431962490082,-0.414837211370468,0.901855111122131,-0.276616454124451,-0.331874281167984,0.913582861423492,-0.22806254029274,-0.336680382490158,0.883534550666809,-0.217431962490082,-0.414837211370468,0.890640199184418,-0.153392016887665,-0.428054690361023,0.828688204288483,-0.104165971279144,-0.54993200302124,0.858522057533264,-0.198622211813927,-0.472746193408966,0.842954397201538,-0.107503414154053,-0.527134478092194,0.8862184882164,-0.184859782457352,-0.424786478281021, +0.358100563287735,0.774857580661774,-0.520921766757965,0.354791283607483,0.684493243694305,-0.636861026287079,0.214160621166229,0.76902574300766,-0.602274417877197,0.246637672185898,0.857856214046478,-0.450835406780243,0.345444321632385,0.877490222454071,-0.332684606313705,0.389457195997238,0.814104676246643,-0.430762857198715,0.358100563287735,0.774857580661774,-0.520921766757965,0.246637672185898,0.857856214046478,-0.450835406780243,0.389457195997238,0.814104676246643,-0.430762857198715,0.15407457947731,0.645401954650879,-0.74814248085022,0.347746908664703,0.547158241271973,-0.76137363910675,0.265107661485672,0.538546741008759,-0.799803197383881,0.354791283607483,0.684493243694305,-0.636861026287079,0.347746908664703,0.547158241271973,-0.76137363910675,0.164941847324371,0.704309523105621,-0.690465152263641,0.15407457947731,0.645401954650879,-0.74814248085022,0.265107661485672,0.538546741008759,-0.799803197383881,0.169512510299683,0.590579271316528,-0.788974940776825,0.228963524103165,0.543875634670258,-0.807325720787048,0.0656522288918495,0.608591496944427,-0.790762901306152,0.169512510299683,0.590579271316528,-0.788974940776825,0.0656522288918495,0.608591496944427,-0.790762901306152,0.130271390080452,0.529609262943268,-0.838178515434265,-0.0459988638758659,0.609588146209717,-0.791382491588593,-0.0448160320520401,0.560647070407867,-0.826841115951538,-0.00845913402736187,0.584095656871796,-0.811640679836273,-0.077507495880127,0.562262177467346,-0.823318719863892,0.00643936032429338,0.545796871185303,-0.837892711162567,-0.077507495880127,0.562262177467346,-0.823318719863892,-0.0459988638758659,0.609588146209717,-0.791382491588593,0.194678753614426,0.515737414360046,-0.834335029125214,-0.0448160320520401,0.560647070407867,-0.826841115951538,0.374783247709274,0.388546824455261,-0.841765224933624,0.828688204288483,-0.104165971279144,-0.54993200302124,0.790345251560211,0.024079367518425,-0.612188160419464,0.5385582447052,0.190662771463394,-0.820732951164246,0.374783247709274,0.388546824455261,-0.841765224933624,0.0567246824502945,0.470190137624741,-0.880740284919739, +0.5385582447052,0.190662771463394,-0.820732951164246,0.0192318335175514,0.830216705799103,0.557108759880066,0.0458142310380936,0.753952622413635,0.65532922744751,0.168556556105614,0.76850438117981,0.617243468761444,0.168556556105614,0.76850438117981,0.617243468761444,0.340362101793289,0.747718334197998,0.570149779319763,0.157099515199661,0.865088403224945,0.476383984088898,0.456258475780487,0.821370720863342,0.342313021421433,0.29902184009552,0.892219126224518,0.338424175977707,0.401387244462967,0.787375509738922,0.467897415161133,0.401387244462967,0.787375509738922,0.467897415161133,0.157099515199661,0.865088403224945,0.476383984088898,0.340362101793289,0.747718334197998,0.570149779319763,0.567328214645386,0.774431943893433,0.279988497495651,0.434840589761734,0.870893120765686,0.229038625955582,0.456258475780487,0.821370720863342,0.342313021421433,0.567328214645386,0.774431943893433,0.279988497495651,0.612865030765533,0.770737707614899,0.174240306019783,0.475403636693954,0.86976557970047,0.132284015417099,0.604538679122925,0.793765127658844,-0.0668570473790169,0.467873871326447,0.88369607925415,-0.0132346441969275,0.570314228534698,0.819469571113586,0.0566667951643467,0.570314228534698,0.819469571113586,0.0566667951643467,0.475403636693954,0.86976557970047,0.132284015417099,0.612865030765533,0.770737707614899,0.174240306019783,0.467873871326447,0.88369607925415,-0.0132346441969275,0.604538679122925,0.793765127658844,-0.0668570473790169,0.48650062084198,0.865674555301666,-0.11800279468298,0.533418655395508,0.81656140089035,-0.220662280917168,0.48650062084198,0.865674555301666,-0.11800279468298,0.604538679122925,0.793765127658844,-0.0668570473790169,0.345444321632385,0.877490222454071,-0.332684606313705,0.533418655395508,0.81656140089035,-0.220662280917168,0.540011823177338,0.766529381275177,-0.347591429948807,-0.293781906366348,0.549456536769867,0.782169759273529,-0.304618269205093,0.57025933265686,0.76289701461792,-0.240302607417107,0.561594724655151,0.791748702526093,-0.0715654492378235,0.731287956237793,0.678303897380829, +-0.140128269791603,0.676008880138397,0.723447203636169,0.0269212517887354,0.670204043388367,0.741688370704651,-0.304618269205093,0.57025933265686,0.76289701461792,-0.293781906366348,0.549456536769867,0.782169759273529,-0.192044004797935,0.528870105743408,0.826689422130585,-0.117344155907631,0.596601545810699,0.793912291526794,-0.275571346282959,0.599471390247345,0.751461446285248,-0.192044004797935,0.528870105743408,0.826689422130585,-0.117344155907631,0.596601545810699,0.793912291526794,-0.0177355073392391,0.609025239944458,0.792952418327332,-0.140128269791603,0.676008880138397,0.723447203636169,0.0458142310380936,0.753952622413635,0.65532922744751,-0.0829204395413399,0.793756902217865,0.602556228637695,-0.0715654492378235,0.731287956237793,0.678303897380829,-0.207450598478317,-0.533555388450623,-0.819928526878357,-0.167849004268646,-0.480202555656433,-0.860948383808136,-0.208814963698387,-0.425010591745377,-0.880773663520813,-0.153710052371025,-0.629996716976166,-0.761233985424042,-0.207450598478317,-0.533555388450623,-0.819928526878357,-0.273136258125305,-0.587464272975922,-0.761762619018555,-0.179083555936813,-0.670630216598511,-0.71985000371933,-0.273136258125305,-0.587464272975922,-0.761762619018555,-0.263016730546951,-0.651200950145721,-0.711870312690735,-0.263016730546951,-0.651200950145721,-0.711870312690735,-0.354183167219162,-0.629502654075623,-0.691578388214111,-0.202158883213997,-0.722759604454041,-0.660870790481567,-0.276764661073685,-0.298260986804962,-0.913477718830109,-0.316790461540222,-0.239248141646385,-0.917825698852539,-0.235160961747169,-0.373922854661942,-0.897151529788971,-0.235160961747169,-0.373922854661942,-0.897151529788971,-0.247936218976974,-0.346056491136551,-0.904860496520996,-0.208814963698387,-0.425010591745377,-0.880773663520813,0.00863191951066256,-0.814293920993805,-0.580388426780701,-0.00106569530908018,-0.810628890991211,-0.585559129714966,0.152846723794937,-0.861648917198181,-0.483941107988358,-0.0494565181434155,-0.781772434711456,-0.62159937620163,-0.0400127544999123,-0.794187247753143,-0.606354296207428, +-0.00106569530908018,-0.810628890991211,-0.585559129714966,-0.0046850317157805,-0.819392323493958,-0.573213875293732,-0.0400127544999123,-0.794187247753143,-0.606354296207428,-0.119990333914757,-0.781780183315277,-0.611900210380554,-0.0434652380645275,-0.816667079925537,-0.575469851493835,0.00936393160372972,-0.858172357082367,-0.513276219367981,-0.119990333914757,-0.781780183315277,-0.611900210380554,-0.199936538934708,-0.716123342514038,-0.668724596500397,-0.0434652380645275,-0.816667079925537,-0.575469851493835,-0.202158883213997,-0.722759604454041,-0.660870790481567,0.468323171138763,-0.226812466979027,0.853949308395386,0.469198793172836,-0.169504687190056,0.866672098636627,0.521001756191254,-0.254301369190216,0.814793109893799,0.493314564228058,-0.25230085849762,0.832457184791565,0.468323171138763,-0.226812466979027,0.853949308395386,0.504412174224854,-0.299053251743317,0.810021877288818,0.493314564228058,-0.25230085849762,0.832457184791565,0.504412174224854,-0.299053251743317,0.810021877288818,0.602538645267487,-0.354560166597366,0.715006351470947,0.658665180206299,-0.24921028316021,0.709967792034149,0.762322545051575,-0.366637021303177,0.53333055973053,0.699625551700592,-0.375887930393219,0.607644736766815,0.725668132305145,-0.421099096536636,0.544133424758911,0.699625551700592,-0.375887930393219,0.607644736766815,0.762322545051575,-0.366637021303177,0.53333055973053,0.658665180206299,-0.24921028316021,0.709967792034149,0.361869335174561,0.000957367417868227,0.932228267192841,0.635944187641144,-0.10819286108017,0.764113306999207,0.288942903280258,0.14644268155098,0.94607949256897,0.635944187641144,-0.10819286108017,0.764113306999207,0.361869335174561,0.000957367417868227,0.932228267192841,0.677412569522858,-0.441060692071915,0.588708341121674,0.725668132305145,-0.421099096536636,0.544133424758911,0.699936091899872,-0.405220955610275,0.588120102882385,0.621006548404694,-0.424215793609619,0.659083962440491,0.699936091899872,-0.405220955610275,0.588120102882385,0.602538645267487,-0.354560166597366,0.715006351470947, +0.288942903280258,0.14644268155098,0.94607949256897,-0.0420543327927589,0.251833200454712,0.966856420040131,-0.135724782943726,0.378334671258926,0.915664553642273,-0.0142970019951463,0.371899276971817,0.928162932395935,-0.135724782943726,0.378334671258926,0.915664553642273,-0.273560404777527,0.492881447076797,0.825973629951477,-0.293781906366348,0.549456536769867,0.782169759273529,-0.108485989272594,0.517616271972656,0.848707258701324,-0.273560404777527,0.492881447076797,0.825973629951477,0.7975714802742,-0.215157389640808,-0.563548445701599,0.842954397201538,-0.107503414154053,-0.527134478092194,0.858522057533264,-0.198622211813927,-0.472746193408966,0.734182298183441,-0.261879771947861,-0.62641453742981,0.726759493350983,-0.216033279895782,-0.652035355567932,0.7975714802742,-0.215157389640808,-0.563548445701599,0.726759493350983,-0.216033279895782,-0.652035355567932,0.734182298183441,-0.261879771947861,-0.62641453742981,0.731193542480469,-0.255106180906296,-0.632674276828766,0.743033945560455,-0.276756584644318,-0.609349012374878,0.693989038467407,-0.173174902796745,-0.698848783969879,0.784257411956787,-0.140808194875717,-0.604246020317078,0.743033945560455,-0.276756584644318,-0.609349012374878,0.80856317281723,-0.187360391020775,-0.557782709598541,0.74238795042038,-0.32029977440834,-0.588445425033569,0.731193542480469,-0.255106180906296,-0.632674276828766,0.734182298183441,-0.261879771947861,-0.62641453742981,0.743385851383209,-0.217065036296844,-0.632661163806915,0.79752242565155,-0.170116066932678,-0.578807711601257,0.783553779125214,-0.191613107919693,-0.591039538383484,0.743385851383209,-0.217065036296844,-0.632661163806915,0.773418307304382,-0.194676160812378,-0.603262186050415,0.80856317281723,-0.187360391020775,-0.557782709598541,0.79752242565155,-0.170116066932678,-0.578807711601257,0.59257572889328,-0.0561866760253906,-0.803552746772766,0.693989038467407,-0.173174902796745,-0.698848783969879,0.583158552646637,-0.165005877614021,-0.795423805713654,0.59257572889328,-0.0561866760253906,-0.803552746772766, +0.583158552646637,-0.165005877614021,-0.795423805713654,0.546902418136597,0.00807333830744028,-0.837157309055328,0.682426631450653,0.0080387070775032,-0.730909764766693,0.631433546543121,0.105408303439617,-0.76823216676712,0.546902418136597,0.00807333830744028,-0.837157309055328,0.682426631450653,0.0080387070775032,-0.730909764766693,0.68188601732254,0.11128756403923,-0.722942888736725,0.631433546543121,0.105408303439617,-0.76823216676712,0.490540772676468,0.108081601560116,-0.864689528942108,0.581983029842377,0.164157152175903,-0.796459674835205,0.596173465251923,0.149996086955071,-0.788719415664673,0.54416823387146,0.0286969691514969,-0.83848512172699,0.581983029842377,0.164157152175903,-0.796459674835205,0.490540772676468,0.108081601560116,-0.864689528942108,0.68188601732254,0.11128756403923,-0.722942888736725,0.691984891891479,-0.0517713651061058,-0.72005307674408,0.596173465251923,0.149996086955071,-0.788719415664673,0.346243143081665,-0.0640062615275383,-0.935958743095398,0.386035859584808,-0.212119966745377,-0.897764682769775,0.368107855319977,-0.0603155270218849,-0.92782461643219,0.434740126132965,0.0134115880355239,-0.900456011295319,0.364936202764511,0.0760985538363457,-0.927917242050171,0.368107855319977,-0.0603155270218849,-0.92782461643219,0.298943638801575,-0.175239503383636,-0.938042521476746,0.346243143081665,-0.0640062615275383,-0.935958743095398,0.32505077123642,0.0510692894458771,-0.944316625595093,0.490540772676468,0.108081601560116,-0.864689528942108,0.364936202764511,0.0760985538363457,-0.927917242050171,0.434740126132965,0.0134115880355239,-0.900456011295319,0.237377792596817,-0.273141771554947,-0.932226002216339,0.298943638801575,-0.175239503383636,-0.938042521476746,0.26255190372467,-0.235285311937332,-0.935792326927185,0.241163119673729,-0.271219372749329,-0.931815624237061,0.237377792596817,-0.273141771554947,-0.932226002216339,0.26255190372467,-0.235285311937332,-0.935792326927185,0.885589122772217,-0.241126582026482,-0.396975487470627,0.858522057533264,-0.198622211813927,-0.472746193408966, +0.8862184882164,-0.184859782457352,-0.424786478281021,0.913582861423492,-0.22806254029274,-0.336680382490158,0.901855111122131,-0.276616454124451,-0.331874281167984,0.885589122772217,-0.241126582026482,-0.396975487470627,0.883534550666809,-0.217431962490082,-0.414837211370468,0.835364878177643,-0.237064465880394,-0.495949178934097,0.901855111122131,-0.276616454124451,-0.331874281167984,0.828688204288483,-0.104165971279144,-0.54993200302124,0.642739713191986,0.0123391347005963,-0.765985131263733,0.883534550666809,-0.217431962490082,-0.414837211370468,0.563275814056396,0.64558881521225,-0.515689074993134,0.354791283607483,0.684493243694305,-0.636861026287079,0.358100563287735,0.774857580661774,-0.520921766757965,0.345444321632385,0.877490222454071,-0.332684606313705,0.540011823177338,0.766529381275177,-0.347591429948807,0.389457195997238,0.814104676246643,-0.430762857198715,0.358100563287735,0.774857580661774,-0.520921766757965,0.389457195997238,0.814104676246643,-0.430762857198715,0.505065202713013,0.736550331115723,-0.449891775846481,0.402135372161865,0.437063694000244,-0.804526150226593,0.265107661485672,0.538546741008759,-0.799803197383881,0.347746908664703,0.547158241271973,-0.76137363910675,0.347746908664703,0.547158241271973,-0.76137363910675,0.354791283607483,0.684493243694305,-0.636861026287079,0.495108544826508,0.57940399646759,-0.647424459457397,0.265107661485672,0.538546741008759,-0.799803197383881,0.331667453050613,0.496820956468582,-0.801976025104523,0.169512510299683,0.590579271316528,-0.788974940776825,0.130271390080452,0.529609262943268,-0.838178515434265,0.0656522288918495,0.608591496944427,-0.790762901306152,0.228963524103165,0.543875634670258,-0.807325720787048,0.331667453050613,0.496820956468582,-0.801976025104523,0.228963524103165,0.543875634670258,-0.807325720787048,0.169512510299683,0.590579271316528,-0.788974940776825,0.00643936032429338,0.545796871185303,-0.837892711162567,-0.0459988638758659,0.609588146209717,-0.791382491588593,0.130271390080452,0.529609262943268,-0.838178515434265,-0.0448160320520401,0.560647070407867,-0.826841115951538, +-0.077507495880127,0.562262177467346,-0.823318719863892,-0.0967199355363846,0.523911595344543,-0.846263468265533,0.0817736312747002,0.464844197034836,-0.881608128547668,-0.077507495880127,0.562262177467346,-0.823318719863892,0.00643936032429338,0.545796871185303,-0.837892711162567,0.0567246824502945,0.470190137624741,-0.880740284919739,0.374783247709274,0.388546824455261,-0.841765224933624,-0.0448160320520401,0.560647070407867,-0.826841115951538,0.828688204288483,-0.104165971279144,-0.54993200302124,0.5385582447052,0.190662771463394,-0.820732951164246,0.642739713191986,0.0123391347005963,-0.765985131263733,0.5385582447052,0.190662771463394,-0.820732951164246,0.0567246824502945,0.470190137624741,-0.880740284919739,0.229182809591293,0.368696063756943,-0.900854229927063,0.146823868155479,0.697561681270599,0.70132040977478,0.168556556105614,0.76850438117981,0.617243468761444,0.0458142310380936,0.753952622413635,0.65532922744751,0.277195632457733,0.668980240821838,0.689657747745514,0.340362101793289,0.747718334197998,0.570149779319763,0.168556556105614,0.76850438117981,0.617243468761444,0.456258475780487,0.821370720863342,0.342313021421433,0.401387244462967,0.787375509738922,0.467897415161133,0.584510564804077,0.693989396095276,0.420387864112854,0.401387244462967,0.787375509738922,0.467897415161133,0.340362101793289,0.747718334197998,0.570149779319763,0.547390222549438,0.649882376194,0.527272820472717,0.584510564804077,0.693989396095276,0.420387864112854,0.567328214645386,0.774431943893433,0.279988497495651,0.456258475780487,0.821370720863342,0.342313021421433,0.567328214645386,0.774431943893433,0.279988497495651,0.706126630306244,0.660281479358673,0.255760431289673,0.612865030765533,0.770737707614899,0.174240306019783,0.604538679122925,0.793765127658844,-0.0668570473790169,0.570314228534698,0.819469571113586,0.0566667951643467,0.679006993770599,0.728589355945587,0.0900382399559021,0.679006993770599,0.728589355945587,0.0900382399559021,0.570314228534698,0.819469571113586,0.0566667951643467,0.612865030765533,0.770737707614899,0.174240306019783, +0.675364434719086,0.702239453792572,-0.22526091337204,0.533418655395508,0.81656140089035,-0.220662280917168,0.604538679122925,0.793765127658844,-0.0668570473790169,0.675364434719086,0.702239453792572,-0.22526091337204,0.540011823177338,0.766529381275177,-0.347591429948807,0.533418655395508,0.81656140089035,-0.220662280917168,0.0269212517887354,0.670204043388367,0.741688370704651,-0.140128269791603,0.676008880138397,0.723447203636169,-0.0177355073392391,0.609025239944458,0.792952418327332,0.0269212517887354,0.670204043388367,0.741688370704651,0.0458142310380936,0.753952622413635,0.65532922744751,-0.0715654492378235,0.731287956237793,0.678303897380829,-0.293781906366348,0.549456536769867,0.782169759273529,-0.231641948223114,0.456865638494492,0.85884553194046,-0.192044004797935,0.528870105743408,0.826689422130585,-0.117344155907631,0.596601545810699,0.793912291526794,-0.192044004797935,0.528870105743408,0.826689422130585,-0.0483921952545643,0.527408540248871,0.848232448101044,-0.117344155907631,0.596601545810699,0.793912291526794,0.0700234696269035,0.534823775291443,0.842057049274445,-0.0177355073392391,0.609025239944458,0.792952418327332,-0.208814963698387,-0.425010591745377,-0.880773663520813,-0.270200699567795,-0.479275494813919,-0.835036814212799,-0.207450598478317,-0.533555388450623,-0.819928526878357,-0.270200699567795,-0.479275494813919,-0.835036814212799,-0.273136258125305,-0.587464272975922,-0.761762619018555,-0.207450598478317,-0.533555388450623,-0.819928526878357,-0.349269717931747,-0.58536422252655,-0.731682538986206,-0.263016730546951,-0.651200950145721,-0.711870312690735,-0.273136258125305,-0.587464272975922,-0.761762619018555,-0.349269717931747,-0.58536422252655,-0.731682538986206,-0.354183167219162,-0.629502654075623,-0.691578388214111,-0.263016730546951,-0.651200950145721,-0.711870312690735,-0.199936538934708,-0.716123342514038,-0.668724596500397,-0.202158883213997,-0.722759604454041,-0.660870790481567,-0.354183167219162,-0.629502654075623,-0.691578388214111,-0.247936218976974,-0.346056491136551,-0.904860496520996, +-0.235160961747169,-0.373922854661942,-0.897151529788971,-0.316790461540222,-0.239248141646385,-0.917825698852539,-0.233657509088516,-0.383972764015198,-0.893291056156158,-0.208814963698387,-0.425010591745377,-0.880773663520813,-0.247936218976974,-0.346056491136551,-0.904860496520996,-0.00106569530908018,-0.810628890991211,-0.585559129714966,-0.0046850317157805,-0.819392323493958,-0.573213875293732,0.152846723794937,-0.861648917198181,-0.483941107988358,-0.0400127544999123,-0.794187247753143,-0.606354296207428,-0.0046850317157805,-0.819392323493958,-0.573213875293732,-0.00106569530908018,-0.810628890991211,-0.585559129714966,-0.119990333914757,-0.781780183315277,-0.611900210380554,0.00936393160372972,-0.858172357082367,-0.513276219367981,-0.0046850317157805,-0.819392323493958,-0.573213875293732,0.504412174224854,-0.299053251743317,0.810021877288818,0.468323171138763,-0.226812466979027,0.853949308395386,0.521001756191254,-0.254301369190216,0.814793109893799,0.602538645267487,-0.354560166597366,0.715006351470947,0.504412174224854,-0.299053251743317,0.810021877288818,0.528874576091766,-0.375000149011612,0.761358261108398,0.658665180206299,-0.24921028316021,0.709967792034149,0.699625551700592,-0.375887930393219,0.607644736766815,0.504068732261658,-0.236929103732109,0.830529451370239,0.681504368782043,-0.425537049770355,0.595373690128326,0.699625551700592,-0.375887930393219,0.607644736766815,0.725668132305145,-0.421099096536636,0.544133424758911,0.361869335174561,0.000957367417868227,0.932228267192841,0.658665180206299,-0.24921028316021,0.709967792034149,0.392616957426071,-0.108691789209843,0.913256764411926,0.288942903280258,0.14644268155098,0.94607949256897,0.361869335174561,0.000957367417868227,0.932228267192841,-0.0420543327927589,0.251833200454712,0.966856420040131,0.725668132305145,-0.421099096536636,0.544133424758911,0.677412569522858,-0.441060692071915,0.588708341121674,0.681504368782043,-0.425537049770355,0.595373690128326,0.677412569522858,-0.441060692071915,0.588708341121674,0.699936091899872,-0.405220955610275,0.588120102882385, +0.621006548404694,-0.424215793609619,0.659083962440491,0.621006548404694,-0.424215793609619,0.659083962440491,0.602538645267487,-0.354560166597366,0.715006351470947,0.528874576091766,-0.375000149011612,0.761358261108398,-0.0420543327927589,0.251833200454712,0.966856420040131,-0.232595428824425,0.32157826423645,0.917870700359344,-0.135724782943726,0.378334671258926,0.915664553642273,-0.273560404777527,0.492881447076797,0.825973629951477,-0.135724782943726,0.378334671258926,0.915664553642273,-0.235659465193748,0.381755381822586,0.893715441226959,-0.293781906366348,0.549456536769867,0.782169759273529,-0.273560404777527,0.492881447076797,0.825973629951477,-0.231641948223114,0.456865638494492,0.85884553194046,0.858522057533264,-0.198622211813927,-0.472746193408966,0.844325184822083,-0.22888757288456,-0.484484612941742,0.7975714802742,-0.215157389640808,-0.563548445701599,0.7975714802742,-0.215157389640808,-0.563548445701599,0.792142868041992,-0.232738718390465,-0.56421822309494,0.734182298183441,-0.261879771947861,-0.62641453742981,0.63727331161499,-0.30382451415062,-0.708218336105347,0.693989038467407,-0.173174902796745,-0.698848783969879,0.743033945560455,-0.276756584644318,-0.609349012374878,0.80856317281723,-0.187360391020775,-0.557782709598541,0.773418307304382,-0.194676160812378,-0.603262186050415,0.74238795042038,-0.32029977440834,-0.588445425033569,0.743033945560455,-0.276756584644318,-0.609349012374878,0.74238795042038,-0.32029977440834,-0.588445425033569,0.639581561088562,-0.404159933328629,-0.653903663158417,0.734182298183441,-0.261879771947861,-0.62641453742981,0.747274398803711,-0.221239015460014,-0.626605212688446,0.743385851383209,-0.217065036296844,-0.632661163806915,0.743385851383209,-0.217065036296844,-0.632661163806915,0.773418307304382,-0.194676160812378,-0.603262186050415,0.79752242565155,-0.170116066932678,-0.578807711601257,0.693989038467407,-0.173174902796745,-0.698848783969879,0.63727331161499,-0.30382451415062,-0.708218336105347,0.583158552646637,-0.165005877614021,-0.795423805713654,0.609587550163269,-0.129729300737381,-0.782031416893005, +0.546902418136597,0.00807333830744028,-0.837157309055328,0.583158552646637,-0.165005877614021,-0.795423805713654,0.546902418136597,0.00807333830744028,-0.837157309055328,0.609587550163269,-0.129729300737381,-0.782031416893005,0.682426631450653,0.0080387070775032,-0.730909764766693,0.682426631450653,0.0080387070775032,-0.730909764766693,0.747978329658508,-0.103609681129456,-0.655586183071136,0.68188601732254,0.11128756403923,-0.722942888736725,0.490540772676468,0.108081601560116,-0.864689528942108,0.596173465251923,0.149996086955071,-0.788719415664673,0.603280365467072,0.00524225179105997,-0.797511875629425,0.747978329658508,-0.103609681129456,-0.655586183071136,0.691984891891479,-0.0517713651061058,-0.72005307674408,0.68188601732254,0.11128756403923,-0.722942888736725,0.691984891891479,-0.0517713651061058,-0.72005307674408,0.603280365467072,0.00524225179105997,-0.797511875629425,0.596173465251923,0.149996086955071,-0.788719415664673,0.364936202764511,0.0760985538363457,-0.927917242050171,0.346243143081665,-0.0640062615275383,-0.935958743095398,0.368107855319977,-0.0603155270218849,-0.92782461643219,0.343985676765442,0.090705394744873,-0.934583485126495,0.32505077123642,0.0510692894458771,-0.944316625595093,0.346243143081665,-0.0640062615275383,-0.935958743095398,0.32505077123642,0.0510692894458771,-0.944316625595093,0.229104042053223,0.0219219531863928,-0.97315502166748,0.298943638801575,-0.175239503383636,-0.938042521476746,0.490540772676468,0.108081601560116,-0.864689528942108,0.445805966854095,0.0342569686472416,-0.894473791122437,0.364936202764511,0.0760985538363457,-0.927917242050171,0.298943638801575,-0.175239503383636,-0.938042521476746,0.241034537553787,-0.0202513504773378,-0.970305144786835,0.26255190372467,-0.235285311937332,-0.935792326927185,0.885589122772217,-0.241126582026482,-0.396975487470627,0.844325184822083,-0.22888757288456,-0.484484612941742,0.858522057533264,-0.198622211813927,-0.472746193408966,0.885589122772217,-0.241126582026482,-0.396975487470627,0.901855111122131,-0.276616454124451,-0.331874281167984, +0.899260580539703,-0.298267632722855,-0.319947868585587,0.883534550666809,-0.217431962490082,-0.414837211370468,0.642739713191986,0.0123391347005963,-0.765985131263733,0.835364878177643,-0.237064465880394,-0.495949178934097,0.861400663852692,-0.251806765794754,-0.441114366054535,0.901855111122131,-0.276616454124451,-0.331874281167984,0.835364878177643,-0.237064465880394,-0.495949178934097,0.495108544826508,0.57940399646759,-0.647424459457397,0.354791283607483,0.684493243694305,-0.636861026287079,0.563275814056396,0.64558881521225,-0.515689074993134,0.358100563287735,0.774857580661774,-0.520921766757965,0.505065202713013,0.736550331115723,-0.449891775846481,0.563275814056396,0.64558881521225,-0.515689074993134,0.505065202713013,0.736550331115723,-0.449891775846481,0.389457195997238,0.814104676246643,-0.430762857198715,0.540011823177338,0.766529381275177,-0.347591429948807,0.265107661485672,0.538546741008759,-0.799803197383881,0.402135372161865,0.437063694000244,-0.804526150226593,0.331667453050613,0.496820956468582,-0.801976025104523,0.402135372161865,0.437063694000244,-0.804526150226593,0.347746908664703,0.547158241271973,-0.76137363910675,0.531672596931458,0.333859145641327,-0.778371512889862,0.347746908664703,0.547158241271973,-0.76137363910675,0.495108544826508,0.57940399646759,-0.647424459457397,0.547248125076294,0.456453889608383,-0.701547801494598,0.351293653249741,0.456787437200546,-0.817274630069733,0.130271390080452,0.529609262943268,-0.838178515434265,0.228963524103165,0.543875634670258,-0.807325720787048,0.351293653249741,0.456787437200546,-0.817274630069733,0.228963524103165,0.543875634670258,-0.807325720787048,0.331667453050613,0.496820956468582,-0.801976025104523,0.0817736312747002,0.464844197034836,-0.881608128547668,0.00643936032429338,0.545796871185303,-0.837892711162567,0.130271390080452,0.529609262943268,-0.838178515434265,-0.0967199355363846,0.523911595344543,-0.846263468265533,-0.077507495880127,0.562262177467346,-0.823318719863892,-0.0299245696514845,0.498580783605576,-0.866326510906219,-0.119141854345798,0.49394965171814,-0.861289024353027, +-0.0448160320520401,0.560647070407867,-0.826841115951538,-0.0967199355363846,0.523911595344543,-0.846263468265533,-0.0299245696514845,0.498580783605576,-0.866326510906219,-0.077507495880127,0.562262177467346,-0.823318719863892,0.0817736312747002,0.464844197034836,-0.881608128547668,-0.119141854345798,0.49394965171814,-0.861289024353027,0.0567246824502945,0.470190137624741,-0.880740284919739,-0.0448160320520401,0.560647070407867,-0.826841115951538,0.5385582447052,0.190662771463394,-0.820732951164246,0.229182809591293,0.368696063756943,-0.900854229927063,0.642739713191986,0.0123391347005963,-0.765985131263733,-0.0706731155514717,0.475934118032455,-0.876636743545532,0.229182809591293,0.368696063756943,-0.900854229927063,0.0567246824502945,0.470190137624741,-0.880740284919739,0.277195632457733,0.668980240821838,0.689657747745514,0.168556556105614,0.76850438117981,0.617243468761444,0.146823868155479,0.697561681270599,0.70132040977478,0.0269212517887354,0.670204043388367,0.741688370704651,0.146823868155479,0.697561681270599,0.70132040977478,0.0458142310380936,0.753952622413635,0.65532922744751,0.340362101793289,0.747718334197998,0.570149779319763,0.277195632457733,0.668980240821838,0.689657747745514,0.455665439367294,0.635548293590546,0.623255431652069,0.401387244462967,0.787375509738922,0.467897415161133,0.547390222549438,0.649882376194,0.527272820472717,0.584510564804077,0.693989396095276,0.420387864112854,0.340362101793289,0.747718334197998,0.570149779319763,0.455665439367294,0.635548293590546,0.623255431652069,0.547390222549438,0.649882376194,0.527272820472717,0.654362857341766,0.664195775985718,0.361459612846375,0.567328214645386,0.774431943893433,0.279988497495651,0.584510564804077,0.693989396095276,0.420387864112854,0.654362857341766,0.664195775985718,0.361459612846375,0.706126630306244,0.660281479358673,0.255760431289673,0.567328214645386,0.774431943893433,0.279988497495651,0.679006993770599,0.728589355945587,0.0900382399559021,0.612865030765533,0.770737707614899,0.174240306019783,0.706126630306244,0.660281479358673,0.255760431289673, +0.679006993770599,0.728589355945587,0.0900382399559021,0.694892287254334,0.718926608562469,-0.0164001099765301,0.604538679122925,0.793765127658844,-0.0668570473790169,0.675364434719086,0.702239453792572,-0.22526091337204,0.604538679122925,0.793765127658844,-0.0668570473790169,0.742231130599976,0.660661518573761,-0.112334974110127,0.706054627895355,0.613750040531158,-0.353267192840576,0.540011823177338,0.766529381275177,-0.347591429948807,0.675364434719086,0.702239453792572,-0.22526091337204,0.0269212517887354,0.670204043388367,0.741688370704651,-0.0177355073392391,0.609025239944458,0.792952418327332,0.11396698653698,0.571650326251984,0.81254369020462,-0.0485643669962883,0.35008242726326,0.935459077358246,-0.192044004797935,0.528870105743408,0.826689422130585,-0.231641948223114,0.456865638494492,0.85884553194046,0.0147232776507735,0.431112229824066,0.902178108692169,-0.0483921952545643,0.527408540248871,0.848232448101044,-0.192044004797935,0.528870105743408,0.826689422130585,0.0700234696269035,0.534823775291443,0.842057049274445,-0.117344155907631,0.596601545810699,0.793912291526794,-0.0483921952545643,0.527408540248871,0.848232448101044,0.0700234696269035,0.534823775291443,0.842057049274445,0.11396698653698,0.571650326251984,0.81254369020462,-0.0177355073392391,0.609025239944458,0.792952418327332,-0.208814963698387,-0.425010591745377,-0.880773663520813,-0.249230146408081,-0.374243825674057,-0.89321094751358,-0.270200699567795,-0.479275494813919,-0.835036814212799,-0.270200699567795,-0.479275494813919,-0.835036814212799,-0.380886077880859,-0.520796775817871,-0.764000236988068,-0.273136258125305,-0.587464272975922,-0.761762619018555,-0.349269717931747,-0.58536422252655,-0.731682538986206,-0.273136258125305,-0.587464272975922,-0.761762619018555,-0.380886077880859,-0.520796775817871,-0.764000236988068,-0.349269717931747,-0.58536422252655,-0.731682538986206,-0.421815574169159,-0.550034165382385,-0.720786988735199,-0.354183167219162,-0.629502654075623,-0.691578388214111,-0.32580640912056,-0.631749749183655,-0.703379273414612, +-0.199936538934708,-0.716123342514038,-0.668724596500397,-0.354183167219162,-0.629502654075623,-0.691578388214111,-0.283517301082611,-0.296481937170029,-0.911984860897064,-0.247936218976974,-0.346056491136551,-0.904860496520996,-0.316790461540222,-0.239248141646385,-0.917825698852539,-0.208814963698387,-0.425010591745377,-0.880773663520813,-0.233657509088516,-0.383972764015198,-0.893291056156158,-0.249230146408081,-0.374243825674057,-0.89321094751358,-0.247936218976974,-0.346056491136551,-0.904860496520996,-0.283517301082611,-0.296481937170029,-0.911984860897064,-0.233657509088516,-0.383972764015198,-0.893291056156158,0.521001756191254,-0.254301369190216,0.814793109893799,0.528874576091766,-0.375000149011612,0.761358261108398,0.504412174224854,-0.299053251743317,0.810021877288818,0.570346713066101,-0.34020259976387,0.7476407289505,0.504068732261658,-0.236929103732109,0.830529451370239,0.699625551700592,-0.375887930393219,0.607644736766815,0.658665180206299,-0.24921028316021,0.709967792034149,0.504068732261658,-0.236929103732109,0.830529451370239,0.392616957426071,-0.108691789209843,0.913256764411926,0.681504368782043,-0.425537049770355,0.595373690128326,0.570346713066101,-0.34020259976387,0.7476407289505,0.699625551700592,-0.375887930393219,0.607644736766815,0.361869335174561,0.000957367417868227,0.932228267192841,0.392616957426071,-0.108691789209843,0.913256764411926,-0.0417030937969685,0.153852730989456,0.987213313579559,-0.0420543327927589,0.251833200454712,0.966856420040131,0.361869335174561,0.000957367417868227,0.932228267192841,-0.0417030937969685,0.153852730989456,0.987213313579559,0.69095641374588,-0.450513631105423,0.565346360206604,0.681504368782043,-0.425537049770355,0.595373690128326,0.677412569522858,-0.441060692071915,0.588708341121674,0.621006548404694,-0.424215793609619,0.659083962440491,0.618714928627014,-0.434950411319733,0.654224574565887,0.677412569522858,-0.441060692071915,0.588708341121674,0.528874576091766,-0.375000149011612,0.761358261108398,0.561202943325043,-0.428363025188446,0.708206355571747, +0.621006548404694,-0.424215793609619,0.659083962440491,-0.0420543327927589,0.251833200454712,0.966856420040131,-0.0417030937969685,0.153852730989456,0.987213313579559,-0.232595428824425,0.32157826423645,0.917870700359344,-0.235659465193748,0.381755381822586,0.893715441226959,-0.135724782943726,0.378334671258926,0.915664553642273,-0.232595428824425,0.32157826423645,0.917870700359344,-0.273560404777527,0.492881447076797,0.825973629951477,-0.235659465193748,0.381755381822586,0.893715441226959,-0.231641948223114,0.456865638494492,0.85884553194046,0.844325184822083,-0.22888757288456,-0.484484612941742,0.792142868041992,-0.232738718390465,-0.56421822309494,0.7975714802742,-0.215157389640808,-0.563548445701599,0.792142868041992,-0.232738718390465,-0.56421822309494,0.747274398803711,-0.221239015460014,-0.626605212688446,0.734182298183441,-0.261879771947861,-0.62641453742981,0.63727331161499,-0.30382451415062,-0.708218336105347,0.743033945560455,-0.276756584644318,-0.609349012374878,0.639581561088562,-0.404159933328629,-0.653903663158417,0.77100270986557,-0.255682438611984,-0.58325058221817,0.74238795042038,-0.32029977440834,-0.588445425033569,0.773418307304382,-0.194676160812378,-0.603262186050415,0.658070087432861,-0.427307546138763,-0.619961261749268,0.639581561088562,-0.404159933328629,-0.653903663158417,0.74238795042038,-0.32029977440834,-0.588445425033569,0.743385851383209,-0.217065036296844,-0.632661163806915,0.747274398803711,-0.221239015460014,-0.626605212688446,0.773418307304382,-0.194676160812378,-0.603262186050415,0.608242332935333,-0.280962347984314,-0.742362022399902,0.583158552646637,-0.165005877614021,-0.795423805713654,0.63727331161499,-0.30382451415062,-0.708218336105347,0.609587550163269,-0.129729300737381,-0.782031416893005,0.583158552646637,-0.165005877614021,-0.795423805713654,0.608242332935333,-0.280962347984314,-0.742362022399902,0.687893152236938,-0.179216042160988,-0.703338146209717,0.682426631450653,0.0080387070775032,-0.730909764766693,0.609587550163269,-0.129729300737381,-0.782031416893005,0.747978329658508,-0.103609681129456,-0.655586183071136, +0.682426631450653,0.0080387070775032,-0.730909764766693,0.687893152236938,-0.179216042160988,-0.703338146209717,0.490540772676468,0.108081601560116,-0.864689528942108,0.603280365467072,0.00524225179105997,-0.797511875629425,0.445805966854095,0.0342569686472416,-0.894473791122437,0.747978329658508,-0.103609681129456,-0.655586183071136,0.74326229095459,-0.244019582867622,-0.6229088306427,0.691984891891479,-0.0517713651061058,-0.72005307674408,0.691984891891479,-0.0517713651061058,-0.72005307674408,0.735465049743652,-0.160701125860214,-0.658229649066925,0.603280365467072,0.00524225179105997,-0.797511875629425,0.343985676765442,0.090705394744873,-0.934583485126495,0.346243143081665,-0.0640062615275383,-0.935958743095398,0.364936202764511,0.0760985538363457,-0.927917242050171,0.343985676765442,0.090705394744873,-0.934583485126495,0.331602454185486,0.0612216182053089,-0.941430628299713,0.32505077123642,0.0510692894458771,-0.944316625595093,0.258217841386795,-0.00854728184640408,-0.966048836708069,0.229104042053223,0.0219219531863928,-0.97315502166748,0.32505077123642,0.0510692894458771,-0.944316625595093,0.241034537553787,-0.0202513504773378,-0.970305144786835,0.298943638801575,-0.175239503383636,-0.938042521476746,0.229104042053223,0.0219219531863928,-0.97315502166748,0.364936202764511,0.0760985538363457,-0.927917242050171,0.445805966854095,0.0342569686472416,-0.894473791122437,0.363241195678711,0.0705938935279846,-0.929016768932343,0.885589122772217,-0.241126582026482,-0.396975487470627,0.874448478221893,-0.259078204631805,-0.410144180059433,0.844325184822083,-0.22888757288456,-0.484484612941742,0.901855111122131,-0.276616454124451,-0.331874281167984,0.861400663852692,-0.251806765794754,-0.441114366054535,0.899260580539703,-0.298267632722855,-0.319947868585587,0.885589122772217,-0.241126582026482,-0.396975487470627,0.899260580539703,-0.298267632722855,-0.319947868585587,0.874448478221893,-0.259078204631805,-0.410144180059433,0.835364878177643,-0.237064465880394,-0.495949178934097,0.642739713191986,0.0123391347005963,-0.765985131263733, +0.715904831886292,-0.0417037233710289,-0.696951150894165,0.861400663852692,-0.251806765794754,-0.441114366054535,0.835364878177643,-0.237064465880394,-0.495949178934097,0.715904831886292,-0.0417037233710289,-0.696951150894165,0.671058654785156,0.486768901348114,-0.559228181838989,0.495108544826508,0.57940399646759,-0.647424459457397,0.563275814056396,0.64558881521225,-0.515689074993134,0.706054627895355,0.613750040531158,-0.353267192840576,0.563275814056396,0.64558881521225,-0.515689074993134,0.505065202713013,0.736550331115723,-0.449891775846481,0.706054627895355,0.613750040531158,-0.353267192840576,0.505065202713013,0.736550331115723,-0.449891775846481,0.540011823177338,0.766529381275177,-0.347591429948807,0.331667453050613,0.496820956468582,-0.801976025104523,0.402135372161865,0.437063694000244,-0.804526150226593,0.48889634013176,0.404664129018784,-0.772804737091064,0.531672596931458,0.333859145641327,-0.778371512889862,0.347746908664703,0.547158241271973,-0.76137363910675,0.547248125076294,0.456453889608383,-0.701547801494598,0.402135372161865,0.437063694000244,-0.804526150226593,0.531672596931458,0.333859145641327,-0.778371512889862,0.522848665714264,0.334039181470871,-0.784249305725098,0.671058654785156,0.486768901348114,-0.559228181838989,0.547248125076294,0.456453889608383,-0.701547801494598,0.495108544826508,0.57940399646759,-0.647424459457397,0.351293653249741,0.456787437200546,-0.817274630069733,0.257542818784714,0.401762902736664,-0.878782212734222,0.130271390080452,0.529609262943268,-0.838178515434265,0.351293653249741,0.456787437200546,-0.817274630069733,0.331667453050613,0.496820956468582,-0.801976025104523,0.48889634013176,0.404664129018784,-0.772804737091064,0.0817736312747002,0.464844197034836,-0.881608128547668,0.130271390080452,0.529609262943268,-0.838178515434265,0.257542818784714,0.401762902736664,-0.878782212734222,-0.0967199355363846,0.523911595344543,-0.846263468265533,-0.0299245696514845,0.498580783605576,-0.866326510906219,0.0594802089035511,0.416960269212723,-0.906976342201233,-0.119141854345798,0.49394965171814,-0.861289024353027, +-0.0967199355363846,0.523911595344543,-0.846263468265533,-0.0620564185082912,0.482051014900208,-0.873942613601685,0.0817736312747002,0.464844197034836,-0.881608128547668,0.0594802089035511,0.416960269212723,-0.906976342201233,-0.0299245696514845,0.498580783605576,-0.866326510906219,-0.0706731155514717,0.475934118032455,-0.876636743545532,0.0567246824502945,0.470190137624741,-0.880740284919739,-0.119141854345798,0.49394965171814,-0.861289024353027,0.136027872562408,0.357224255800247,-0.924060106277466,0.642739713191986,0.0123391347005963,-0.765985131263733,0.229182809591293,0.368696063756943,-0.900854229927063,0.136027872562408,0.357224255800247,-0.924060106277466,0.229182809591293,0.368696063756943,-0.900854229927063,-0.0706731155514717,0.475934118032455,-0.876636743545532,0.146823868155479,0.697561681270599,0.70132040977478,0.182964861392975,0.611999094486237,0.769402921199799,0.277195632457733,0.668980240821838,0.689657747745514,0.0269212517887354,0.670204043388367,0.741688370704651,0.182964861392975,0.611999094486237,0.769402921199799,0.146823868155479,0.697561681270599,0.70132040977478,0.277195632457733,0.668980240821838,0.689657747745514,0.412558406591415,0.560495257377625,0.718081057071686,0.455665439367294,0.635548293590546,0.623255431652069,0.584510564804077,0.693989396095276,0.420387864112854,0.547390222549438,0.649882376194,0.527272820472717,0.677730739116669,0.581594526767731,0.449920773506165,0.57188493013382,0.538527369499207,0.618817985057831,0.547390222549438,0.649882376194,0.527272820472717,0.455665439367294,0.635548293590546,0.623255431652069,0.654362857341766,0.664195775985718,0.361459612846375,0.584510564804077,0.693989396095276,0.420387864112854,0.730025470256805,0.585918664932251,0.351798206567764,0.654362857341766,0.664195775985718,0.361459612846375,0.730025470256805,0.585918664932251,0.351798206567764,0.706126630306244,0.660281479358673,0.255760431289673,0.679006993770599,0.728589355945587,0.0900382399559021,0.706126630306244,0.660281479358673,0.255760431289673,0.804491758346558,0.57312947511673,0.155934646725655, +0.797519624233246,0.603292644023895,-0.000639036414213479,0.694892287254334,0.718926608562469,-0.0164001099765301,0.679006993770599,0.728589355945587,0.0900382399559021,0.742231130599976,0.660661518573761,-0.112334974110127,0.604538679122925,0.793765127658844,-0.0668570473790169,0.694892287254334,0.718926608562469,-0.0164001099765301,0.805379569530487,0.545870780944824,-0.231059581041336,0.675364434719086,0.702239453792572,-0.22526091337204,0.742231130599976,0.660661518573761,-0.112334974110127,0.805379569530487,0.545870780944824,-0.231059581041336,0.706054627895355,0.613750040531158,-0.353267192840576,0.675364434719086,0.702239453792572,-0.22526091337204,0.182964861392975,0.611999094486237,0.769402921199799,0.0269212517887354,0.670204043388367,0.741688370704651,0.11396698653698,0.571650326251984,0.81254369020462,-0.0485643669962883,0.35008242726326,0.935459077358246,0.0147232776507735,0.431112229824066,0.902178108692169,-0.192044004797935,0.528870105743408,0.826689422130585,-0.0485643669962883,0.35008242726326,0.935459077358246,-0.231641948223114,0.456865638494492,0.85884553194046,-0.148003488779068,0.313724547624588,0.937908172607422,0.0434391386806965,0.457074731588364,0.88836681842804,-0.0483921952545643,0.527408540248871,0.848232448101044,0.0147232776507735,0.431112229824066,0.902178108692169,0.0700234696269035,0.534823775291443,0.842057049274445,-0.0483921952545643,0.527408540248871,0.848232448101044,0.105999827384949,0.455395728349686,0.883956253528595,0.0700234696269035,0.534823775291443,0.842057049274445,0.207153081893921,0.460493385791779,0.863153100013733,0.11396698653698,0.571650326251984,0.81254369020462,-0.249230146408081,-0.374243825674057,-0.89321094751358,-0.252482026815414,-0.427404344081879,-0.868088841438293,-0.270200699567795,-0.479275494813919,-0.835036814212799,-0.398754954338074,-0.459334224462509,-0.793729484081268,-0.380886077880859,-0.520796775817871,-0.764000236988068,-0.270200699567795,-0.479275494813919,-0.835036814212799,-0.349269717931747,-0.58536422252655,-0.731682538986206,-0.380886077880859,-0.520796775817871,-0.764000236988068, +-0.421815574169159,-0.550034165382385,-0.720786988735199,-0.458824247121811,-0.535126447677612,-0.70930939912796,-0.354183167219162,-0.629502654075623,-0.691578388214111,-0.421815574169159,-0.550034165382385,-0.720786988735199,-0.32580640912056,-0.631749749183655,-0.703379273414612,-0.354183167219162,-0.629502654075623,-0.691578388214111,-0.458824247121811,-0.535126447677612,-0.70930939912796,-0.233657509088516,-0.383972764015198,-0.893291056156158,-0.283517301082611,-0.296481937170029,-0.911984860897064,-0.249230146408081,-0.374243825674057,-0.89321094751358,0.528874576091766,-0.375000149011612,0.761358261108398,0.521001756191254,-0.254301369190216,0.814793109893799,0.525252997875214,-0.375090479850769,0.763816893100739,0.504068732261658,-0.236929103732109,0.830529451370239,0.570346713066101,-0.34020259976387,0.7476407289505,0.19944766163826,-0.163284629583359,0.966208398342133,0.0852470919489861,-0.00189848779700696,0.996357977390289,0.392616957426071,-0.108691789209843,0.913256764411926,0.504068732261658,-0.236929103732109,0.830529451370239,0.592243731021881,-0.422943502664566,0.685832321643829,0.570346713066101,-0.34020259976387,0.7476407289505,0.681504368782043,-0.425537049770355,0.595373690128326,0.0852470919489861,-0.00189848779700696,0.996357977390289,-0.0417030937969685,0.153852730989456,0.987213313579559,0.392616957426071,-0.108691789209843,0.913256764411926,0.681504368782043,-0.425537049770355,0.595373690128326,0.69095641374588,-0.450513631105423,0.565346360206604,0.592243731021881,-0.422943502664566,0.685832321643829,0.677412569522858,-0.441060692071915,0.588708341121674,0.705562353134155,-0.413469731807709,0.575520932674408,0.69095641374588,-0.450513631105423,0.565346360206604,0.621006548404694,-0.424215793609619,0.659083962440491,0.561202943325043,-0.428363025188446,0.708206355571747,0.618714928627014,-0.434950411319733,0.654224574565887,0.618714928627014,-0.434950411319733,0.654224574565887,0.586943864822388,-0.411882728338242,0.697028934955597,0.677412569522858,-0.441060692071915,0.588708341121674, +0.528874576091766,-0.375000149011612,0.761358261108398,0.510483622550964,-0.408713668584824,0.756544411182404,0.561202943325043,-0.428363025188446,0.708206355571747,-0.20713409781456,0.194094747304916,0.958865284919739,-0.232595428824425,0.32157826423645,0.917870700359344,-0.0417030937969685,0.153852730989456,0.987213313579559,-0.235659465193748,0.381755381822586,0.893715441226959,-0.232595428824425,0.32157826423645,0.917870700359344,-0.155188173055649,0.228971272706985,0.960983216762543,-0.148003488779068,0.313724547624588,0.937908172607422,-0.231641948223114,0.456865638494492,0.85884553194046,-0.235659465193748,0.381755381822586,0.893715441226959,0.792142868041992,-0.232738718390465,-0.56421822309494,0.844325184822083,-0.22888757288456,-0.484484612941742,0.817101240158081,-0.256638169288635,-0.516219079494476,0.817101240158081,-0.256638169288635,-0.516219079494476,0.747274398803711,-0.221239015460014,-0.626605212688446,0.792142868041992,-0.232738718390465,-0.56421822309494,0.63727331161499,-0.30382451415062,-0.708218336105347,0.639581561088562,-0.404159933328629,-0.653903663158417,0.608242332935333,-0.280962347984314,-0.742362022399902,0.74238795042038,-0.32029977440834,-0.588445425033569,0.77100270986557,-0.255682438611984,-0.58325058221817,0.722769439220428,-0.415681421756744,-0.55209881067276,0.761502802371979,-0.305149793624878,-0.571836411952972,0.77100270986557,-0.255682438611984,-0.58325058221817,0.773418307304382,-0.194676160812378,-0.603262186050415,0.67516553401947,-0.382844179868698,-0.630540788173676,0.639581561088562,-0.404159933328629,-0.653903663158417,0.658070087432861,-0.427307546138763,-0.619961261749268,0.74238795042038,-0.32029977440834,-0.588445425033569,0.722769439220428,-0.415681421756744,-0.55209881067276,0.658070087432861,-0.427307546138763,-0.619961261749268,0.761502802371979,-0.305149793624878,-0.571836411952972,0.773418307304382,-0.194676160812378,-0.603262186050415,0.747274398803711,-0.221239015460014,-0.626605212688446,0.687893152236938,-0.179216042160988,-0.703338146209717,0.609587550163269,-0.129729300737381,-0.782031416893005, +0.608242332935333,-0.280962347984314,-0.742362022399902,0.747978329658508,-0.103609681129456,-0.655586183071136,0.687893152236938,-0.179216042160988,-0.703338146209717,0.709797024726868,-0.316624492406845,-0.629235088825226,0.554268300533295,-0.0689009204506874,-0.829481244087219,0.445805966854095,0.0342569686472416,-0.894473791122437,0.603280365467072,0.00524225179105997,-0.797511875629425,0.74326229095459,-0.244019582867622,-0.6229088306427,0.747978329658508,-0.103609681129456,-0.655586183071136,0.709797024726868,-0.316624492406845,-0.629235088825226,0.736740469932556,-0.230909988284111,-0.635526359081268,0.691984891891479,-0.0517713651061058,-0.72005307674408,0.74326229095459,-0.244019582867622,-0.6229088306427,0.736740469932556,-0.230909988284111,-0.635526359081268,0.735465049743652,-0.160701125860214,-0.658229649066925,0.691984891891479,-0.0517713651061058,-0.72005307674408,0.693438112735748,-0.161363810300827,-0.702214479446411,0.603280365467072,0.00524225179105997,-0.797511875629425,0.735465049743652,-0.160701125860214,-0.658229649066925,0.364936202764511,0.0760985538363457,-0.927917242050171,0.363241195678711,0.0705938935279846,-0.929016768932343,0.343985676765442,0.090705394744873,-0.934583485126495,0.363241195678711,0.0705938935279846,-0.929016768932343,0.331602454185486,0.0612216182053089,-0.941430628299713,0.343985676765442,0.090705394744873,-0.934583485126495,0.331602454185486,0.0612216182053089,-0.941430628299713,0.258217841386795,-0.00854728184640408,-0.966048836708069,0.32505077123642,0.0510692894458771,-0.944316625595093,0.258217841386795,-0.00854728184640408,-0.966048836708069,0.245440110564232,-0.0114840241149068,-0.969343721866608,0.229104042053223,0.0219219531863928,-0.97315502166748,0.245440110564232,-0.0114840241149068,-0.969343721866608,0.241034537553787,-0.0202513504773378,-0.970305144786835,0.229104042053223,0.0219219531863928,-0.97315502166748,0.375921547412872,-0.146878644824028,-0.914936900138855,0.363241195678711,0.0705938935279846,-0.929016768932343,0.445805966854095,0.0342569686472416,-0.894473791122437, +0.874448478221893,-0.259078204631805,-0.410144180059433,0.817101240158081,-0.256638169288635,-0.516219079494476,0.844325184822083,-0.22888757288456,-0.484484612941742,0.861400663852692,-0.251806765794754,-0.441114366054535,0.865093111991882,-0.32211235165596,-0.384522378444672,0.899260580539703,-0.298267632722855,-0.319947868585587,0.874448478221893,-0.259078204631805,-0.410144180059433,0.899260580539703,-0.298267632722855,-0.319947868585587,0.862999260425568,-0.347417265176773,-0.366787880659103,0.642739713191986,0.0123391347005963,-0.765985131263733,0.414938628673553,0.181286498904228,-0.891605913639069,0.715904831886292,-0.0417037233710289,-0.696951150894165,0.715904831886292,-0.0417037233710289,-0.696951150894165,0.586400866508484,0.034211628139019,-0.809298098087311,0.861400663852692,-0.251806765794754,-0.441114366054535,0.671058654785156,0.486768901348114,-0.559228181838989,0.563275814056396,0.64558881521225,-0.515689074993134,0.790569961071014,0.467947661876678,-0.394998878240585,0.563275814056396,0.64558881521225,-0.515689074993134,0.706054627895355,0.613750040531158,-0.353267192840576,0.790569961071014,0.467947661876678,-0.394998878240585,0.402135372161865,0.437063694000244,-0.804526150226593,0.522848665714264,0.334039181470871,-0.784249305725098,0.48889634013176,0.404664129018784,-0.772804737091064,0.531672596931458,0.333859145641327,-0.778371512889862,0.547248125076294,0.456453889608383,-0.701547801494598,0.733146071434021,0.309465795755386,-0.605580389499664,0.630146324634552,0.206091836094856,-0.748626470565796,0.522848665714264,0.334039181470871,-0.784249305725098,0.531672596931458,0.333859145641327,-0.778371512889862,0.733146071434021,0.309465795755386,-0.605580389499664,0.547248125076294,0.456453889608383,-0.701547801494598,0.671058654785156,0.486768901348114,-0.559228181838989,0.477504879236221,0.297704637050629,-0.826656460762024,0.257542818784714,0.401762902736664,-0.878782212734222,0.351293653249741,0.456787437200546,-0.817274630069733,0.48889634013176,0.404664129018784,-0.772804737091064,0.543813347816467,0.370018690824509,-0.753228425979614, +0.351293653249741,0.456787437200546,-0.817274630069733,0.0817736312747002,0.464844197034836,-0.881608128547668,0.257542818784714,0.401762902736664,-0.878782212734222,0.277672529220581,0.277265608310699,-0.919794321060181,0.0594802089035511,0.416960269212723,-0.906976342201233,-0.0620564185082912,0.482051014900208,-0.873942613601685,-0.0967199355363846,0.523911595344543,-0.846263468265533,-0.119141854345798,0.49394965171814,-0.861289024353027,-0.0620564185082912,0.482051014900208,-0.873942613601685,-0.0687387436628342,0.409131705760956,-0.909882485866547,0.0817736312747002,0.464844197034836,-0.881608128547668,0.277672529220581,0.277265608310699,-0.919794321060181,0.0594802089035511,0.416960269212723,-0.906976342201233,-0.0706731155514717,0.475934118032455,-0.876636743545532,-0.119141854345798,0.49394965171814,-0.861289024353027,-0.0619298592209816,0.440282791852951,-0.895720779895782,0.642739713191986,0.0123391347005963,-0.765985131263733,0.136027872562408,0.357224255800247,-0.924060106277466,0.414938628673553,0.181286498904228,-0.891605913639069,-0.0706731155514717,0.475934118032455,-0.876636743545532,-0.0619298592209816,0.440282791852951,-0.895720779895782,0.136027872562408,0.357224255800247,-0.924060106277466,0.277195632457733,0.668980240821838,0.689657747745514,0.182964861392975,0.611999094486237,0.769402921199799,0.271722018718719,0.545725107192993,0.792685985565186,0.277195632457733,0.668980240821838,0.689657747745514,0.271722018718719,0.545725107192993,0.792685985565186,0.412558406591415,0.560495257377625,0.718081057071686,0.412558406591415,0.560495257377625,0.718081057071686,0.549995362758636,0.483990430831909,0.680630743503571,0.455665439367294,0.635548293590546,0.623255431652069,0.547390222549438,0.649882376194,0.527272820472717,0.672871887683868,0.491692274808884,0.552704334259033,0.677730739116669,0.581594526767731,0.449920773506165,0.677730739116669,0.581594526767731,0.449920773506165,0.730025470256805,0.585918664932251,0.351798206567764,0.584510564804077,0.693989396095276,0.420387864112854,0.57188493013382,0.538527369499207,0.618817985057831, +0.672871887683868,0.491692274808884,0.552704334259033,0.547390222549438,0.649882376194,0.527272820472717,0.57188493013382,0.538527369499207,0.618817985057831,0.455665439367294,0.635548293590546,0.623255431652069,0.549995362758636,0.483990430831909,0.680630743503571,0.706126630306244,0.660281479358673,0.255760431289673,0.730025470256805,0.585918664932251,0.351798206567764,0.838264465332031,0.481007963418961,0.256794929504395,0.706126630306244,0.660281479358673,0.255760431289673,0.838264465332031,0.481007963418961,0.256794929504395,0.804491758346558,0.57312947511673,0.155934646725655,0.679006993770599,0.728589355945587,0.0900382399559021,0.804491758346558,0.57312947511673,0.155934646725655,0.797519624233246,0.603292644023895,-0.000639036414213479,0.742231130599976,0.660661518573761,-0.112334974110127,0.694892287254334,0.718926608562469,-0.0164001099765301,0.797519624233246,0.603292644023895,-0.000639036414213479,0.840975224971771,0.531280934810638,-0.102475330233574,0.805379569530487,0.545870780944824,-0.231059581041336,0.742231130599976,0.660661518573761,-0.112334974110127,0.868656575679779,0.402484238147736,-0.288863450288773,0.706054627895355,0.613750040531158,-0.353267192840576,0.805379569530487,0.545870780944824,-0.231059581041336,0.182964861392975,0.611999094486237,0.769402921199799,0.11396698653698,0.571650326251984,0.81254369020462,0.199975892901421,0.524589776992798,0.827535510063171,-0.0485643669962883,0.35008242726326,0.935459077358246,0.0978655517101288,0.28583836555481,0.953267395496368,0.0147232776507735,0.431112229824066,0.902178108692169,-0.0485643669962883,0.35008242726326,0.935459077358246,-0.148003488779068,0.313724547624588,0.937908172607422,0.00456144195050001,0.190013438463211,0.981770873069763,-0.0483921952545643,0.527408540248871,0.848232448101044,0.0434391386806965,0.457074731588364,0.88836681842804,0.105999827384949,0.455395728349686,0.883956253528595,0.0147232776507735,0.431112229824066,0.902178108692169,0.170387730002403,0.323810696601868,0.930652737617493,0.0434391386806965,0.457074731588364,0.88836681842804, +0.207153081893921,0.460493385791779,0.863153100013733,0.0700234696269035,0.534823775291443,0.842057049274445,0.105999827384949,0.455395728349686,0.883956253528595,0.11396698653698,0.571650326251984,0.81254369020462,0.207153081893921,0.460493385791779,0.863153100013733,0.199975892901421,0.524589776992798,0.827535510063171,-0.286488890647888,-0.328903406858444,-0.899859189987183,-0.252482026815414,-0.427404344081879,-0.868088841438293,-0.249230146408081,-0.374243825674057,-0.89321094751358,-0.330030798912048,-0.41173067688942,-0.849445343017578,-0.270200699567795,-0.479275494813919,-0.835036814212799,-0.252482026815414,-0.427404344081879,-0.868088841438293,-0.380886077880859,-0.520796775817871,-0.764000236988068,-0.398754954338074,-0.459334224462509,-0.793729484081268,-0.456368207931519,-0.489969521760941,-0.74273669719696,-0.398754954338074,-0.459334224462509,-0.793729484081268,-0.270200699567795,-0.479275494813919,-0.835036814212799,-0.330030798912048,-0.41173067688942,-0.849445343017578,-0.380886077880859,-0.520796775817871,-0.764000236988068,-0.456368207931519,-0.489969521760941,-0.74273669719696,-0.421815574169159,-0.550034165382385,-0.720786988735199,-0.421815574169159,-0.550034165382385,-0.720786988735199,-0.456368207931519,-0.489969521760941,-0.74273669719696,-0.458824247121811,-0.535126447677612,-0.70930939912796,-0.32580640912056,-0.631749749183655,-0.703379273414612,-0.458824247121811,-0.535126447677612,-0.70930939912796,-0.407715231180191,-0.555059313774109,-0.725036144256592,-0.348726838827133,-0.230862691998482,-0.908345699310303,-0.249230146408081,-0.374243825674057,-0.89321094751358,-0.283517301082611,-0.296481937170029,-0.911984860897064,0.510483622550964,-0.408713668584824,0.756544411182404,0.528874576091766,-0.375000149011612,0.761358261108398,0.525252997875214,-0.375090479850769,0.763816893100739,0.290182530879974,-0.309220999479294,0.905635893344879,0.19944766163826,-0.163284629583359,0.966208398342133,0.570346713066101,-0.34020259976387,0.7476407289505,0.504068732261658,-0.236929103732109,0.830529451370239, +0.19944766163826,-0.163284629583359,0.966208398342133,0.0852470919489861,-0.00189848779700696,0.996357977390289,0.592243731021881,-0.422943502664566,0.685832321643829,0.290182530879974,-0.309220999479294,0.905635893344879,0.570346713066101,-0.34020259976387,0.7476407289505,-0.0417030937969685,0.153852730989456,0.987213313579559,0.0852470919489861,-0.00189848779700696,0.996357977390289,-0.170357525348663,0.141536414623261,0.975164413452148,0.592243731021881,-0.422943502664566,0.685832321643829,0.69095641374588,-0.450513631105423,0.565346360206604,0.587862551212311,-0.45308518409729,0.670172572135925,0.677412569522858,-0.441060692071915,0.588708341121674,0.586943864822388,-0.411882728338242,0.697028934955597,0.705562353134155,-0.413469731807709,0.575520932674408,0.69095641374588,-0.450513631105423,0.565346360206604,0.705562353134155,-0.413469731807709,0.575520932674408,0.735829293727875,-0.45830973982811,0.498505085706711,0.561202943325043,-0.428363025188446,0.708206355571747,0.586943864822388,-0.411882728338242,0.697028934955597,0.618714928627014,-0.434950411319733,0.654224574565887,0.510483622550964,-0.408713668584824,0.756544411182404,0.471672207117081,-0.437212020158768,0.765748560428619,0.561202943325043,-0.428363025188446,0.708206355571747,-0.155188173055649,0.228971272706985,0.960983216762543,-0.232595428824425,0.32157826423645,0.917870700359344,-0.20713409781456,0.194094747304916,0.958865284919739,-0.0417030937969685,0.153852730989456,0.987213313579559,-0.170357525348663,0.141536414623261,0.975164413452148,-0.20713409781456,0.194094747304916,0.958865284919739,-0.148003488779068,0.313724547624588,0.937908172607422,-0.235659465193748,0.381755381822586,0.893715441226959,-0.155188173055649,0.228971272706985,0.960983216762543,0.747274398803711,-0.221239015460014,-0.626605212688446,0.817101240158081,-0.256638169288635,-0.516219079494476,0.761502802371979,-0.305149793624878,-0.571836411952972,0.709797024726868,-0.316624492406845,-0.629235088825226,0.608242332935333,-0.280962347984314,-0.742362022399902,0.639581561088562,-0.404159933328629,-0.653903663158417, +0.761502802371979,-0.305149793624878,-0.571836411952972,0.722769439220428,-0.415681421756744,-0.55209881067276,0.77100270986557,-0.255682438611984,-0.58325058221817,0.67516553401947,-0.382844179868698,-0.630540788173676,0.709797024726868,-0.316624492406845,-0.629235088825226,0.639581561088562,-0.404159933328629,-0.653903663158417,0.67516553401947,-0.382844179868698,-0.630540788173676,0.658070087432861,-0.427307546138763,-0.619961261749268,0.733867704868317,-0.351484656333923,-0.581288695335388,0.722769439220428,-0.415681421756744,-0.55209881067276,0.733867704868317,-0.351484656333923,-0.581288695335388,0.658070087432861,-0.427307546138763,-0.619961261749268,0.687893152236938,-0.179216042160988,-0.703338146209717,0.608242332935333,-0.280962347984314,-0.742362022399902,0.709797024726868,-0.316624492406845,-0.629235088825226,0.554268300533295,-0.0689009204506874,-0.829481244087219,0.485128700733185,-0.184181824326515,-0.854825735092163,0.445805966854095,0.0342569686472416,-0.894473791122437,0.554268300533295,-0.0689009204506874,-0.829481244087219,0.603280365467072,0.00524225179105997,-0.797511875629425,0.693438112735748,-0.161363810300827,-0.702214479446411,0.74326229095459,-0.244019582867622,-0.6229088306427,0.709797024726868,-0.316624492406845,-0.629235088825226,0.753891468048096,-0.297086745500565,-0.585992276668549,0.736740469932556,-0.230909988284111,-0.635526359081268,0.74326229095459,-0.244019582867622,-0.6229088306427,0.726812362670898,-0.243797898292542,-0.642110764980316,0.736740469932556,-0.230909988284111,-0.635526359081268,0.766371369361877,-0.285885065793991,-0.575277745723724,0.735465049743652,-0.160701125860214,-0.658229649066925,0.735465049743652,-0.160701125860214,-0.658229649066925,0.788616001605988,-0.242426812648773,-0.565078616142273,0.693438112735748,-0.161363810300827,-0.702214479446411,0.331602454185486,0.0612216182053089,-0.941430628299713,0.363241195678711,0.0705938935279846,-0.929016768932343,0.298269182443619,-0.122608654201031,-0.946574091911316,0.331602454185486,0.0612216182053089,-0.941430628299713, +0.215261176228523,-0.209467113018036,-0.953827083110809,0.258217841386795,-0.00854728184640408,-0.966048836708069,0.245440110564232,-0.0114840241149068,-0.969343721866608,0.258217841386795,-0.00854728184640408,-0.966048836708069,0.238248690962791,-0.261111497879028,-0.935445487499237,0.298269182443619,-0.122608654201031,-0.946574091911316,0.363241195678711,0.0705938935279846,-0.929016768932343,0.375921547412872,-0.146878644824028,-0.914936900138855,0.485128700733185,-0.184181824326515,-0.854825735092163,0.375921547412872,-0.146878644824028,-0.914936900138855,0.445805966854095,0.0342569686472416,-0.894473791122437,0.862999260425568,-0.347417265176773,-0.366787880659103,0.817101240158081,-0.256638169288635,-0.516219079494476,0.874448478221893,-0.259078204631805,-0.410144180059433,0.861400663852692,-0.251806765794754,-0.441114366054535,0.752776741981506,-0.169943153858185,-0.635961055755615,0.865093111991882,-0.32211235165596,-0.384522378444672,0.865093111991882,-0.32211235165596,-0.384522378444672,0.862999260425568,-0.347417265176773,-0.366787880659103,0.899260580539703,-0.298267632722855,-0.319947868585587,0.715904831886292,-0.0417037233710289,-0.696951150894165,0.414938628673553,0.181286498904228,-0.891605913639069,0.290720373392105,0.28117299079895,-0.914561808109283,0.715904831886292,-0.0417037233710289,-0.696951150894165,0.290720373392105,0.28117299079895,-0.914561808109283,0.586400866508484,0.034211628139019,-0.809298098087311,0.752776741981506,-0.169943153858185,-0.635961055755615,0.861400663852692,-0.251806765794754,-0.441114366054535,0.586400866508484,0.034211628139019,-0.809298098087311,0.671058654785156,0.486768901348114,-0.559228181838989,0.790569961071014,0.467947661876678,-0.394998878240585,0.830859899520874,0.330845355987549,-0.447451651096344,0.868656575679779,0.402484238147736,-0.288863450288773,0.790569961071014,0.467947661876678,-0.394998878240585,0.706054627895355,0.613750040531158,-0.353267192840576,0.522848665714264,0.334039181470871,-0.784249305725098,0.62006139755249,0.324813455343246,-0.714156746864319, +0.48889634013176,0.404664129018784,-0.772804737091064,0.707395315170288,0.136797800660133,-0.693453729152679,0.531672596931458,0.333859145641327,-0.778371512889862,0.733146071434021,0.309465795755386,-0.605580389499664,0.62006139755249,0.324813455343246,-0.714156746864319,0.522848665714264,0.334039181470871,-0.784249305725098,0.630146324634552,0.206091836094856,-0.748626470565796,0.707395315170288,0.136797800660133,-0.693453729152679,0.630146324634552,0.206091836094856,-0.748626470565796,0.531672596931458,0.333859145641327,-0.778371512889862,0.671058654785156,0.486768901348114,-0.559228181838989,0.830859899520874,0.330845355987549,-0.447451651096344,0.733146071434021,0.309465795755386,-0.605580389499664,0.477504879236221,0.297704637050629,-0.826656460762024,0.277672529220581,0.277265608310699,-0.919794321060181,0.257542818784714,0.401762902736664,-0.878782212734222,0.477504879236221,0.297704637050629,-0.826656460762024,0.351293653249741,0.456787437200546,-0.817274630069733,0.543813347816467,0.370018690824509,-0.753228425979614,0.48889634013176,0.404664129018784,-0.772804737091064,0.62006139755249,0.324813455343246,-0.714156746864319,0.543813347816467,0.370018690824509,-0.753228425979614,0.0594802089035511,0.416960269212723,-0.906976342201233,0.0723564997315407,0.349555164575577,-0.934117555618286,-0.0620564185082912,0.482051014900208,-0.873942613601685,0.0723564997315407,0.349555164575577,-0.934117555618286,-0.0687387436628342,0.409131705760956,-0.909882485866547,-0.0620564185082912,0.482051014900208,-0.873942613601685,-0.119141854345798,0.49394965171814,-0.861289024353027,-0.0687387436628342,0.409131705760956,-0.909882485866547,-0.047272652387619,0.377027839422226,-0.924994707107544,0.247508361935616,0.233378529548645,-0.940358459949493,0.0594802089035511,0.416960269212723,-0.906976342201233,0.277672529220581,0.277265608310699,-0.919794321060181,-0.119141854345798,0.49394965171814,-0.861289024353027,-0.0597365759313107,0.389673143625259,-0.919013738632202,-0.0619298592209816,0.440282791852951,-0.895720779895782,0.290720373392105,0.28117299079895,-0.914561808109283, +0.414938628673553,0.181286498904228,-0.891605913639069,0.136027872562408,0.357224255800247,-0.924060106277466,0.136027872562408,0.357224255800247,-0.924060106277466,-0.0619298592209816,0.440282791852951,-0.895720779895782,0.290720373392105,0.28117299079895,-0.914561808109283,0.271722018718719,0.545725107192993,0.792685985565186,0.182964861392975,0.611999094486237,0.769402921199799,0.199975892901421,0.524589776992798,0.827535510063171,0.437545627355576,0.457090139389038,0.774352848529816,0.412558406591415,0.560495257377625,0.718081057071686,0.271722018718719,0.545725107192993,0.792685985565186,0.437545627355576,0.457090139389038,0.774352848529816,0.549995362758636,0.483990430831909,0.680630743503571,0.412558406591415,0.560495257377625,0.718081057071686,0.783752262592316,0.466084629297256,0.410484313964844,0.677730739116669,0.581594526767731,0.449920773506165,0.672871887683868,0.491692274808884,0.552704334259033,0.783752262592316,0.466084629297256,0.410484313964844,0.730025470256805,0.585918664932251,0.351798206567764,0.677730739116669,0.581594526767731,0.449920773506165,0.672871887683868,0.491692274808884,0.552704334259033,0.57188493013382,0.538527369499207,0.618817985057831,0.692333340644836,0.368210732936859,0.62056040763855,0.549995362758636,0.483990430831909,0.680630743503571,0.692333340644836,0.368210732936859,0.62056040763855,0.57188493013382,0.538527369499207,0.618817985057831,0.783752262592316,0.466084629297256,0.410484313964844,0.838264465332031,0.481007963418961,0.256794929504395,0.730025470256805,0.585918664932251,0.351798206567764,0.907073974609375,0.417925655841827,0.0505430363118649,0.804491758346558,0.57312947511673,0.155934646725655,0.838264465332031,0.481007963418961,0.256794929504395,0.804491758346558,0.57312947511673,0.155934646725655,0.907073974609375,0.417925655841827,0.0505430363118649,0.797519624233246,0.603292644023895,-0.000639036414213479,0.840975224971771,0.531280934810638,-0.102475330233574,0.742231130599976,0.660661518573761,-0.112334974110127,0.797519624233246,0.603292644023895,-0.000639036414213479, +0.840975224971771,0.531280934810638,-0.102475330233574,0.913841485977173,0.371090948581696,-0.164879158139229,0.805379569530487,0.545870780944824,-0.231059581041336,0.913841485977173,0.371090948581696,-0.164879158139229,0.868656575679779,0.402484238147736,-0.288863450288773,0.805379569530487,0.545870780944824,-0.231059581041336,-0.0485643669962883,0.35008242726326,0.935459077358246,0.212643563747406,0.163458988070488,0.963360667228699,0.0978655517101288,0.28583836555481,0.953267395496368,0.0147232776507735,0.431112229824066,0.902178108692169,0.0978655517101288,0.28583836555481,0.953267395496368,0.231104791164398,0.242471560835838,0.942230343818665,0.00456144195050001,0.190013438463211,0.981770873069763,-0.148003488779068,0.313724547624588,0.937908172607422,-0.155188173055649,0.228971272706985,0.960983216762543,-0.0485643669962883,0.35008242726326,0.935459077358246,0.00456144195050001,0.190013438463211,0.981770873069763,0.212643563747406,0.163458988070488,0.963360667228699,0.105999827384949,0.455395728349686,0.883956253528595,0.0434391386806965,0.457074731588364,0.88836681842804,0.164964616298676,0.362045973539352,0.917447149753571,0.0147232776507735,0.431112229824066,0.902178108692169,0.231104791164398,0.242471560835838,0.942230343818665,0.170387730002403,0.323810696601868,0.930652737617493,0.170387730002403,0.323810696601868,0.930652737617493,0.164964616298676,0.362045973539352,0.917447149753571,0.0434391386806965,0.457074731588364,0.88836681842804,0.207153081893921,0.460493385791779,0.863153100013733,0.105999827384949,0.455395728349686,0.883956253528595,0.252279549837112,0.338923007249832,0.90635871887207,0.207153081893921,0.460493385791779,0.863153100013733,0.324389040470123,0.431812137365341,0.841611504554749,0.199975892901421,0.524589776992798,0.827535510063171,-0.330030798912048,-0.41173067688942,-0.849445343017578,-0.252482026815414,-0.427404344081879,-0.868088841438293,-0.286488890647888,-0.328903406858444,-0.899859189987183,-0.303189098834991,-0.281874120235443,-0.910287439823151,-0.286488890647888,-0.328903406858444,-0.899859189987183, +-0.249230146408081,-0.374243825674057,-0.89321094751358,-0.398754954338074,-0.459334224462509,-0.793729484081268,-0.486329436302185,-0.430422872304916,-0.760407567024231,-0.456368207931519,-0.489969521760941,-0.74273669719696,-0.398754954338074,-0.459334224462509,-0.793729484081268,-0.330030798912048,-0.41173067688942,-0.849445343017578,-0.426811575889587,-0.366682529449463,-0.82666540145874,-0.456368207931519,-0.489969521760941,-0.74273669719696,-0.486329436302185,-0.430422872304916,-0.760407567024231,-0.458824247121811,-0.535126447677612,-0.70930939912796,-0.492542564868927,-0.466423660516739,-0.734745264053345,-0.407715231180191,-0.555059313774109,-0.725036144256592,-0.458824247121811,-0.535126447677612,-0.70930939912796,-0.249230146408081,-0.374243825674057,-0.89321094751358,-0.348726838827133,-0.230862691998482,-0.908345699310303,-0.303189098834991,-0.281874120235443,-0.910287439823151,0.471672207117081,-0.437212020158768,0.765748560428619,0.510483622550964,-0.408713668584824,0.756544411182404,0.525252997875214,-0.375090479850769,0.763816893100739,0.19944766163826,-0.163284629583359,0.966208398342133,0.290182530879974,-0.309220999479294,0.905635893344879,-0.120879545807838,-0.198008447885513,0.972718179225922,0.0852470919489861,-0.00189848779700696,0.996357977390289,0.19944766163826,-0.163284629583359,0.966208398342133,-0.154958248138428,-0.0292554032057524,0.98748767375946,0.382546991109848,-0.407892912626266,0.829024136066437,0.290182530879974,-0.309220999479294,0.905635893344879,0.592243731021881,-0.422943502664566,0.685832321643829,-0.177350133657455,0.0594303794205189,0.982351720333099,-0.170357525348663,0.141536414623261,0.975164413452148,0.0852470919489861,-0.00189848779700696,0.996357977390289,0.69095641374588,-0.450513631105423,0.565346360206604,0.674222409725189,-0.476864725351334,0.563936173915863,0.587862551212311,-0.45308518409729,0.670172572135925,0.592243731021881,-0.422943502664566,0.685832321643829,0.587862551212311,-0.45308518409729,0.670172572135925,0.382546991109848,-0.407892912626266,0.829024136066437, +0.705562353134155,-0.413469731807709,0.575520932674408,0.586943864822388,-0.411882728338242,0.697028934955597,0.64734810590744,-0.35194593667984,0.676072716712952,0.735829293727875,-0.45830973982811,0.498505085706711,0.705562353134155,-0.413469731807709,0.575520932674408,0.740400612354279,-0.470625042915344,0.479915469884872,0.69095641374588,-0.450513631105423,0.565346360206604,0.735829293727875,-0.45830973982811,0.498505085706711,0.674222409725189,-0.476864725351334,0.563936173915863,0.561202943325043,-0.428363025188446,0.708206355571747,0.471672207117081,-0.437212020158768,0.765748560428619,0.586943864822388,-0.411882728338242,0.697028934955597,-0.155188173055649,0.228971272706985,0.960983216762543,-0.20713409781456,0.194094747304916,0.958865284919739,-0.102751277387142,0.121579721570015,0.98724889755249,-0.20713409781456,0.194094747304916,0.958865284919739,-0.170357525348663,0.141536414623261,0.975164413452148,-0.164129212498665,0.0633310750126839,0.984403729438782,0.761502802371979,-0.305149793624878,-0.571836411952972,0.817101240158081,-0.256638169288635,-0.516219079494476,0.799435973167419,-0.366724073886871,-0.475831300020218,0.761502802371979,-0.305149793624878,-0.571836411952972,0.761427998542786,-0.420668005943298,-0.493219703435898,0.722769439220428,-0.415681421756744,-0.55209881067276,0.759834706783295,-0.2846839427948,-0.584470748901367,0.709797024726868,-0.316624492406845,-0.629235088825226,0.67516553401947,-0.382844179868698,-0.630540788173676,0.67516553401947,-0.382844179868698,-0.630540788173676,0.733867704868317,-0.351484656333923,-0.581288695335388,0.791033387184143,-0.184419021010399,-0.58331435918808,0.722769439220428,-0.415681421756744,-0.55209881067276,0.786023497581482,-0.370533853769302,-0.494845032691956,0.733867704868317,-0.351484656333923,-0.581288695335388,0.485128700733185,-0.184181824326515,-0.854825735092163,0.554268300533295,-0.0689009204506874,-0.829481244087219,0.621482908725739,-0.250752955675125,-0.742214143276215,0.554268300533295,-0.0689009204506874,-0.829481244087219,0.693438112735748,-0.161363810300827,-0.702214479446411, +0.621482908725739,-0.250752955675125,-0.742214143276215,0.709797024726868,-0.316624492406845,-0.629235088825226,0.759834706783295,-0.2846839427948,-0.584470748901367,0.753891468048096,-0.297086745500565,-0.585992276668549,0.74326229095459,-0.244019582867622,-0.6229088306427,0.753891468048096,-0.297086745500565,-0.585992276668549,0.726812362670898,-0.243797898292542,-0.642110764980316,0.736740469932556,-0.230909988284111,-0.635526359081268,0.726812362670898,-0.243797898292542,-0.642110764980316,0.766371369361877,-0.285885065793991,-0.575277745723724,0.788616001605988,-0.242426812648773,-0.565078616142273,0.735465049743652,-0.160701125860214,-0.658229649066925,0.766371369361877,-0.285885065793991,-0.575277745723724,0.725438714027405,-0.31188291311264,-0.613569498062134,0.693438112735748,-0.161363810300827,-0.702214479446411,0.788616001605988,-0.242426812648773,-0.565078616142273,0.298269182443619,-0.122608654201031,-0.946574091911316,0.215261176228523,-0.209467113018036,-0.953827083110809,0.331602454185486,0.0612216182053089,-0.941430628299713,0.238248690962791,-0.261111497879028,-0.935445487499237,0.258217841386795,-0.00854728184640408,-0.966048836708069,0.215261176228523,-0.209467113018036,-0.953827083110809,0.298269182443619,-0.122608654201031,-0.946574091911316,0.375921547412872,-0.146878644824028,-0.914936900138855,0.224133402109146,-0.400278687477112,-0.888561248779297,0.485128700733185,-0.184181824326515,-0.854825735092163,0.363134652376175,-0.407352924346924,-0.837971746921539,0.375921547412872,-0.146878644824028,-0.914936900138855,0.799435973167419,-0.366724073886871,-0.475831300020218,0.817101240158081,-0.256638169288635,-0.516219079494476,0.862999260425568,-0.347417265176773,-0.366787880659103,0.608812570571899,-0.0986281260848045,-0.787159204483032,0.865093111991882,-0.32211235165596,-0.384522378444672,0.752776741981506,-0.169943153858185,-0.635961055755615,0.822263121604919,-0.36025682091713,-0.440565794706345,0.862999260425568,-0.347417265176773,-0.366787880659103,0.865093111991882,-0.32211235165596,-0.384522378444672, +0.290720373392105,0.28117299079895,-0.914561808109283,0.151664033532143,0.325889676809311,-0.933163344860077,0.586400866508484,0.034211628139019,-0.809298098087311,0.752776741981506,-0.169943153858185,-0.635961055755615,0.586400866508484,0.034211628139019,-0.809298098087311,0.34280863404274,0.16869430243969,-0.924134373664856,0.909004628658295,0.255169242620468,-0.329543769359589,0.830859899520874,0.330845355987549,-0.447451651096344,0.790569961071014,0.467947661876678,-0.394998878240585,0.868656575679779,0.402484238147736,-0.288863450288773,0.909004628658295,0.255169242620468,-0.329543769359589,0.790569961071014,0.467947661876678,-0.394998878240585,0.707395315170288,0.136797800660133,-0.693453729152679,0.733146071434021,0.309465795755386,-0.605580389499664,0.832989156246185,0.179173484444618,-0.523474752902985,0.62006139755249,0.324813455343246,-0.714156746864319,0.630146324634552,0.206091836094856,-0.748626470565796,0.72615784406662,0.220498502254486,-0.65121054649353,0.630146324634552,0.206091836094856,-0.748626470565796,0.707395315170288,0.136797800660133,-0.693453729152679,0.691632211208344,0.114676184952259,-0.713087737560272,0.886272609233856,0.205142855644226,-0.415255516767502,0.733146071434021,0.309465795755386,-0.605580389499664,0.830859899520874,0.330845355987549,-0.447451651096344,0.477504879236221,0.297704637050629,-0.826656460762024,0.504754424095154,0.101458467543125,-0.857280015945435,0.277672529220581,0.277265608310699,-0.919794321060181,0.477504879236221,0.297704637050629,-0.826656460762024,0.543813347816467,0.370018690824509,-0.753228425979614,0.686363697052002,0.245068222284317,-0.684723496437073,0.543813347816467,0.370018690824509,-0.753228425979614,0.62006139755249,0.324813455343246,-0.714156746864319,0.686363697052002,0.245068222284317,-0.684723496437073,0.0723564997315407,0.349555164575577,-0.934117555618286,0.0594802089035511,0.416960269212723,-0.906976342201233,0.247508361935616,0.233378529548645,-0.940358459949493,0.0723564997315407,0.349555164575577,-0.934117555618286,0.0549485795199871,0.272500932216644,-0.960585117340088, +-0.0687387436628342,0.409131705760956,-0.909882485866547,-0.0687387436628342,0.409131705760956,-0.909882485866547,0.0549485795199871,0.272500932216644,-0.960585117340088,-0.047272652387619,0.377027839422226,-0.924994707107544,-0.047272652387619,0.377027839422226,-0.924994707107544,-0.0597365759313107,0.389673143625259,-0.919013738632202,-0.119141854345798,0.49394965171814,-0.861289024353027,0.247508361935616,0.233378529548645,-0.940358459949493,0.277672529220581,0.277265608310699,-0.919794321060181,0.370670050382614,0.106623210012913,-0.922623991966248,-0.0484938211739063,0.387898206710815,-0.920425534248352,-0.0619298592209816,0.440282791852951,-0.895720779895782,-0.0597365759313107,0.389673143625259,-0.919013738632202,0.290720373392105,0.28117299079895,-0.914561808109283,-0.0619298592209816,0.440282791852951,-0.895720779895782,0.151664033532143,0.325889676809311,-0.933163344860077,0.271722018718719,0.545725107192993,0.792685985565186,0.199975892901421,0.524589776992798,0.827535510063171,0.324389040470123,0.431812137365341,0.841611504554749,0.271722018718719,0.545725107192993,0.792685985565186,0.324389040470123,0.431812137365341,0.841611504554749,0.437545627355576,0.457090139389038,0.774352848529816,0.437545627355576,0.457090139389038,0.774352848529816,0.60094940662384,0.374452620744705,0.706147909164429,0.549995362758636,0.483990430831909,0.680630743503571,0.765001535415649,0.369775801897049,0.52729344367981,0.783752262592316,0.466084629297256,0.410484313964844,0.672871887683868,0.491692274808884,0.552704334259033,0.672871887683868,0.491692274808884,0.552704334259033,0.692333340644836,0.368210732936859,0.62056040763855,0.765001535415649,0.369775801897049,0.52729344367981,0.60094940662384,0.374452620744705,0.706147909164429,0.692333340644836,0.368210732936859,0.62056040763855,0.549995362758636,0.483990430831909,0.680630743503571,0.783752262592316,0.466084629297256,0.410484313964844,0.884588718414307,0.360684305429459,0.295650899410248,0.838264465332031,0.481007963418961,0.256794929504395,0.907073974609375,0.417925655841827,0.0505430363118649, +0.838264465332031,0.481007963418961,0.256794929504395,0.925517857074738,0.327207654714584,0.190660685300827,0.907073974609375,0.417925655841827,0.0505430363118649,0.840975224971771,0.531280934810638,-0.102475330233574,0.797519624233246,0.603292644023895,-0.000639036414213479,0.840975224971771,0.531280934810638,-0.102475330233574,0.907073974609375,0.417925655841827,0.0505430363118649,0.913841485977173,0.371090948581696,-0.164879158139229,0.913841485977173,0.371090948581696,-0.164879158139229,0.926008880138397,0.271594494581223,-0.262190371751785,0.868656575679779,0.402484238147736,-0.288863450288773,0.0978655517101288,0.28583836555481,0.953267395496368,0.212643563747406,0.163458988070488,0.963360667228699,0.231104791164398,0.242471560835838,0.942230343818665,-0.155188173055649,0.228971272706985,0.960983216762543,-0.102751277387142,0.121579721570015,0.98724889755249,0.00456144195050001,0.190013438463211,0.981770873069763,0.276909410953522,0.0828925296664238,0.957313895225525,0.212643563747406,0.163458988070488,0.963360667228699,0.00456144195050001,0.190013438463211,0.981770873069763,0.164964616298676,0.362045973539352,0.917447149753571,0.252279549837112,0.338923007249832,0.90635871887207,0.105999827384949,0.455395728349686,0.883956253528595,0.231104791164398,0.242471560835838,0.942230343818665,0.327234715223312,0.116555623710155,0.937727153301239,0.170387730002403,0.323810696601868,0.930652737617493,0.236572593450546,0.247935011982918,0.939447462558746,0.164964616298676,0.362045973539352,0.917447149753571,0.170387730002403,0.323810696601868,0.930652737617493,0.207153081893921,0.460493385791779,0.863153100013733,0.252279549837112,0.338923007249832,0.90635871887207,0.358366131782532,0.335594952106476,0.871177196502686,0.358366131782532,0.335594952106476,0.871177196502686,0.324389040470123,0.431812137365341,0.841611504554749,0.207153081893921,0.460493385791779,0.863153100013733,-0.330030798912048,-0.41173067688942,-0.849445343017578,-0.286488890647888,-0.328903406858444,-0.899859189987183,-0.373161196708679,-0.274960309267044,-0.886085331439972, +-0.370571672916412,-0.175268784165382,-0.912116944789886,-0.286488890647888,-0.328903406858444,-0.899859189987183,-0.303189098834991,-0.281874120235443,-0.910287439823151,-0.486329436302185,-0.430422872304916,-0.760407567024231,-0.398754954338074,-0.459334224462509,-0.793729484081268,-0.426811575889587,-0.366682529449463,-0.82666540145874,-0.426811575889587,-0.366682529449463,-0.82666540145874,-0.330030798912048,-0.41173067688942,-0.849445343017578,-0.373161196708679,-0.274960309267044,-0.886085331439972,-0.486329436302185,-0.430422872304916,-0.760407567024231,-0.492542564868927,-0.466423660516739,-0.734745264053345,-0.458824247121811,-0.535126447677612,-0.70930939912796,-0.407715231180191,-0.555059313774109,-0.725036144256592,-0.492542564868927,-0.466423660516739,-0.734745264053345,-0.258272796869278,-0.529074907302856,-0.808316051959991,-0.348726838827133,-0.230862691998482,-0.908345699310303,-0.370571672916412,-0.175268784165382,-0.912116944789886,-0.303189098834991,-0.281874120235443,-0.910287439823151,0.4850133061409,-0.43706950545311,0.757451117038727,0.471672207117081,-0.437212020158768,0.765748560428619,0.525252997875214,-0.375090479850769,0.763816893100739,0.290182530879974,-0.309220999479294,0.905635893344879,0.0180783569812775,-0.315205633640289,0.948851108551025,-0.120879545807838,-0.198008447885513,0.972718179225922,0.19944766163826,-0.163284629583359,0.966208398342133,-0.120879545807838,-0.198008447885513,0.972718179225922,-0.154958248138428,-0.0292554032057524,0.98748767375946,0.0852470919489861,-0.00189848779700696,0.996357977390289,-0.154958248138428,-0.0292554032057524,0.98748767375946,-0.177350133657455,0.0594303794205189,0.982351720333099,0.290182530879974,-0.309220999479294,0.905635893344879,0.382546991109848,-0.407892912626266,0.829024136066437,0.0180783569812775,-0.315205633640289,0.948851108551025,-0.177350133657455,0.0594303794205189,0.982351720333099,-0.164129212498665,0.0633310750126839,0.984403729438782,-0.170357525348663,0.141536414623261,0.975164413452148,0.587862551212311,-0.45308518409729,0.670172572135925, +0.674222409725189,-0.476864725351334,0.563936173915863,0.534347414970398,-0.47610729932785,0.698422849178314,0.382546991109848,-0.407892912626266,0.829024136066437,0.587862551212311,-0.45308518409729,0.670172572135925,0.375947237014771,-0.446658998727798,0.811886310577393,0.586943864822388,-0.411882728338242,0.697028934955597,0.525444507598877,-0.31004798412323,0.792324542999268,0.64734810590744,-0.35194593667984,0.676072716712952,0.705562353134155,-0.413469731807709,0.575520932674408,0.64734810590744,-0.35194593667984,0.676072716712952,0.726132571697235,-0.430960714817047,0.535727739334106,0.705562353134155,-0.413469731807709,0.575520932674408,0.726132571697235,-0.430960714817047,0.535727739334106,0.740400612354279,-0.470625042915344,0.479915469884872,0.735829293727875,-0.45830973982811,0.498505085706711,0.740400612354279,-0.470625042915344,0.479915469884872,0.700024664402008,-0.514129817485809,0.495616644620895,0.674222409725189,-0.476864725351334,0.563936173915863,0.735829293727875,-0.45830973982811,0.498505085706711,0.700024664402008,-0.514129817485809,0.495616644620895,0.471672207117081,-0.437212020158768,0.765748560428619,0.452295541763306,-0.39427575469017,0.799984514713287,0.586943864822388,-0.411882728338242,0.697028934955597,-0.20713409781456,0.194094747304916,0.958865284919739,-0.164129212498665,0.0633310750126839,0.984403729438782,-0.102751277387142,0.121579721570015,0.98724889755249,0.799435973167419,-0.366724073886871,-0.475831300020218,0.761427998542786,-0.420668005943298,-0.493219703435898,0.761502802371979,-0.305149793624878,-0.571836411952972,0.736937642097473,-0.479064673185349,-0.47688552737236,0.722769439220428,-0.415681421756744,-0.55209881067276,0.761427998542786,-0.420668005943298,-0.493219703435898,0.67516553401947,-0.382844179868698,-0.630540788173676,0.791033387184143,-0.184419021010399,-0.58331435918808,0.759834706783295,-0.2846839427948,-0.584470748901367,0.838184297084808,-0.249244809150696,-0.485101968050003,0.791033387184143,-0.184419021010399,-0.58331435918808,0.733867704868317,-0.351484656333923,-0.581288695335388, +0.786023497581482,-0.370533853769302,-0.494845032691956,0.722769439220428,-0.415681421756744,-0.55209881067276,0.746150732040405,-0.47042378783226,-0.471126735210419,0.733867704868317,-0.351484656333923,-0.581288695335388,0.786023497581482,-0.370533853769302,-0.494845032691956,0.836842358112335,-0.281211793422699,-0.469696342945099,0.485128700733185,-0.184181824326515,-0.854825735092163,0.621482908725739,-0.250752955675125,-0.742214143276215,0.501127779483795,-0.406384229660034,-0.764017462730408,0.621482908725739,-0.250752955675125,-0.742214143276215,0.693438112735748,-0.161363810300827,-0.702214479446411,0.725438714027405,-0.31188291311264,-0.613569498062134,0.753891468048096,-0.297086745500565,-0.585992276668549,0.759834706783295,-0.2846839427948,-0.584470748901367,0.776944160461426,-0.134263247251511,-0.615086138248444,0.726812362670898,-0.243797898292542,-0.642110764980316,0.753891468048096,-0.297086745500565,-0.585992276668549,0.776944160461426,-0.134263247251511,-0.615086138248444,0.735940992832184,-0.256752252578735,-0.626473426818848,0.766371369361877,-0.285885065793991,-0.575277745723724,0.726812362670898,-0.243797898292542,-0.642110764980316,0.788616001605988,-0.242426812648773,-0.565078616142273,0.766371369361877,-0.285885065793991,-0.575277745723724,0.761154055595398,-0.191411659121513,-0.61968207359314,0.725438714027405,-0.31188291311264,-0.613569498062134,0.788616001605988,-0.242426812648773,-0.565078616142273,0.740736424922943,-0.210192322731018,-0.638066291809082,0.298269182443619,-0.122608654201031,-0.946574091911316,0.224133402109146,-0.400278687477112,-0.888561248779297,0.215261176228523,-0.209467113018036,-0.953827083110809,0.238248690962791,-0.261111497879028,-0.935445487499237,0.215261176228523,-0.209467113018036,-0.953827083110809,0.191307440400124,-0.409143954515457,-0.892189800739288,0.363134652376175,-0.407352924346924,-0.837971746921539,0.224133402109146,-0.400278687477112,-0.888561248779297,0.375921547412872,-0.146878644824028,-0.914936900138855,0.485128700733185,-0.184181824326515,-0.854825735092163, +0.501127779483795,-0.406384229660034,-0.764017462730408,0.363134652376175,-0.407352924346924,-0.837971746921539,0.799435973167419,-0.366724073886871,-0.475831300020218,0.862999260425568,-0.347417265176773,-0.366787880659103,0.800699949264526,-0.439170479774475,-0.407441705465317,0.865093111991882,-0.32211235165596,-0.384522378444672,0.608812570571899,-0.0986281260848045,-0.787159204483032,0.822263121604919,-0.36025682091713,-0.440565794706345,0.608812570571899,-0.0986281260848045,-0.787159204483032,0.752776741981506,-0.169943153858185,-0.635961055755615,0.34280863404274,0.16869430243969,-0.924134373664856,0.800699949264526,-0.439170479774475,-0.407441705465317,0.862999260425568,-0.347417265176773,-0.366787880659103,0.822263121604919,-0.36025682091713,-0.440565794706345,0.34280863404274,0.16869430243969,-0.924134373664856,0.586400866508484,0.034211628139019,-0.809298098087311,0.151664033532143,0.325889676809311,-0.933163344860077,0.830859899520874,0.330845355987549,-0.447451651096344,0.909004628658295,0.255169242620468,-0.329543769359589,0.886272609233856,0.205142855644226,-0.415255516767502,0.868656575679779,0.402484238147736,-0.288863450288773,0.926008880138397,0.271594494581223,-0.262190371751785,0.909004628658295,0.255169242620468,-0.329543769359589,0.886272609233856,0.205142855644226,-0.415255516767502,0.832989156246185,0.179173484444618,-0.523474752902985,0.733146071434021,0.309465795755386,-0.605580389499664,0.821907103061676,0.0805575922131538,-0.563896417617798,0.707395315170288,0.136797800660133,-0.693453729152679,0.832989156246185,0.179173484444618,-0.523474752902985,0.72615784406662,0.220498502254486,-0.65121054649353,0.630146324634552,0.206091836094856,-0.748626470565796,0.691632211208344,0.114676184952259,-0.713087737560272,0.62006139755249,0.324813455343246,-0.714156746864319,0.72615784406662,0.220498502254486,-0.65121054649353,0.686363697052002,0.245068222284317,-0.684723496437073,0.691632211208344,0.114676184952259,-0.713087737560272,0.707395315170288,0.136797800660133,-0.693453729152679,0.747844696044922,0.0563194639980793,-0.661480367183685, +0.477504879236221,0.297704637050629,-0.826656460762024,0.656004369258881,0.126904040575027,-0.74401181936264,0.504754424095154,0.101458467543125,-0.857280015945435,0.504754424095154,0.101458467543125,-0.857280015945435,0.370670050382614,0.106623210012913,-0.922623991966248,0.277672529220581,0.277265608310699,-0.919794321060181,0.686363697052002,0.245068222284317,-0.684723496437073,0.656004369258881,0.126904040575027,-0.74401181936264,0.477504879236221,0.297704637050629,-0.826656460762024,0.280577003955841,0.127385124564171,-0.951340854167938,0.0723564997315407,0.349555164575577,-0.934117555618286,0.247508361935616,0.233378529548645,-0.940358459949493,0.0723564997315407,0.349555164575577,-0.934117555618286,0.280577003955841,0.127385124564171,-0.951340854167938,0.0549485795199871,0.272500932216644,-0.960585117340088,0.0549485795199871,0.272500932216644,-0.960585117340088,0.0470903553068638,0.257261753082275,-0.965193629264832,-0.047272652387619,0.377027839422226,-0.924994707107544,-0.047272652387619,0.377027839422226,-0.924994707107544,0.0470903553068638,0.257261753082275,-0.965193629264832,-0.0597365759313107,0.389673143625259,-0.919013738632202,0.389761298894882,0.0559918731451035,-0.919212162494659,0.247508361935616,0.233378529548645,-0.940358459949493,0.370670050382614,0.106623210012913,-0.922623991966248,0.151664033532143,0.325889676809311,-0.933163344860077,-0.0619298592209816,0.440282791852951,-0.895720779895782,-0.0484938211739063,0.387898206710815,-0.920425534248352,-0.0484938211739063,0.387898206710815,-0.920425534248352,-0.0597365759313107,0.389673143625259,-0.919013738632202,-0.0904846638441086,0.323889225721359,-0.941758036613464,0.487024307250977,0.353716820478439,0.798555970191956,0.437545627355576,0.457090139389038,0.774352848529816,0.324389040470123,0.431812137365341,0.841611504554749,0.60094940662384,0.374452620744705,0.706147909164429,0.437545627355576,0.457090139389038,0.774352848529816,0.487024307250977,0.353716820478439,0.798555970191956,0.783752262592316,0.466084629297256,0.410484313964844,0.765001535415649,0.369775801897049,0.52729344367981, +0.839446902275085,0.34242245554924,0.421990007162094,0.765001535415649,0.369775801897049,0.52729344367981,0.692333340644836,0.368210732936859,0.62056040763855,0.795952677726746,0.267092674970627,0.54325008392334,0.60094940662384,0.374452620744705,0.706147909164429,0.728619635105133,0.231799140572548,0.644501686096191,0.692333340644836,0.368210732936859,0.62056040763855,0.783752262592316,0.466084629297256,0.410484313964844,0.839446902275085,0.34242245554924,0.421990007162094,0.884588718414307,0.360684305429459,0.295650899410248,0.925517857074738,0.327207654714584,0.190660685300827,0.838264465332031,0.481007963418961,0.256794929504395,0.884588718414307,0.360684305429459,0.295650899410248,0.907073974609375,0.417925655841827,0.0505430363118649,0.925517857074738,0.327207654714584,0.190660685300827,0.959479868412018,0.275568723678589,0.0588238909840584,0.963992536067963,0.254729390144348,-0.0763630792498589,0.913841485977173,0.371090948581696,-0.164879158139229,0.907073974609375,0.417925655841827,0.0505430363118649,0.926008880138397,0.271594494581223,-0.262190371751785,0.913841485977173,0.371090948581696,-0.164879158139229,0.9474778175354,0.252963960170746,-0.195690929889679,0.212643563747406,0.163458988070488,0.963360667228699,0.370514124631882,0.0435104183852673,0.927807092666626,0.231104791164398,0.242471560835838,0.942230343818665,-0.102751277387142,0.121579721570015,0.98724889755249,0.00528338039293885,0.0881317928433418,0.996094763278961,0.00456144195050001,0.190013438463211,0.981770873069763,0.276909410953522,0.0828925296664238,0.957313895225525,0.394062221050262,0.0334990620613098,0.9184730052948,0.212643563747406,0.163458988070488,0.963360667228699,0.149890929460526,0.0707199275493622,0.986169993877411,0.276909410953522,0.0828925296664238,0.957313895225525,0.00456144195050001,0.190013438463211,0.981770873069763,0.164964616298676,0.362045973539352,0.917447149753571,0.310979634523392,0.208040401339531,0.927367627620697,0.252279549837112,0.338923007249832,0.90635871887207,0.370514124631882,0.0435104183852673,0.927807092666626, +0.327234715223312,0.116555623710155,0.937727153301239,0.231104791164398,0.242471560835838,0.942230343818665,0.236572593450546,0.247935011982918,0.939447462558746,0.170387730002403,0.323810696601868,0.930652737617493,0.327234715223312,0.116555623710155,0.937727153301239,0.310979634523392,0.208040401339531,0.927367627620697,0.164964616298676,0.362045973539352,0.917447149753571,0.236572593450546,0.247935011982918,0.939447462558746,0.410663068294525,0.227108865976334,0.883049964904785,0.358366131782532,0.335594952106476,0.871177196502686,0.252279549837112,0.338923007249832,0.90635871887207,0.444072544574738,0.299122393131256,0.84458589553833,0.324389040470123,0.431812137365341,0.841611504554749,0.358366131782532,0.335594952106476,0.871177196502686,-0.370571672916412,-0.175268784165382,-0.912116944789886,-0.373161196708679,-0.274960309267044,-0.886085331439972,-0.286488890647888,-0.328903406858444,-0.899859189987183,-0.486329436302185,-0.430422872304916,-0.760407567024231,-0.426811575889587,-0.366682529449463,-0.82666540145874,-0.497588694095612,-0.296573966741562,-0.815137624740601,-0.426811575889587,-0.366682529449463,-0.82666540145874,-0.373161196708679,-0.274960309267044,-0.886085331439972,-0.454544186592102,-0.228420287370682,-0.860937654972076,-0.486329436302185,-0.430422872304916,-0.760407567024231,-0.536098062992096,-0.354009181261063,-0.766339480876923,-0.492542564868927,-0.466423660516739,-0.734745264053345,-0.492542564868927,-0.466423660516739,-0.734745264053345,-0.446410536766052,-0.396181344985962,-0.802345216274261,-0.258272796869278,-0.529074907302856,-0.808316051959991,0.463857620954514,-0.437761783599854,0.770195186138153,0.471672207117081,-0.437212020158768,0.765748560428619,0.4850133061409,-0.43706950545311,0.757451117038727,0.0180783569812775,-0.315205633640289,0.948851108551025,-0.170641377568245,-0.298191577196121,0.939128935337067,-0.120879545807838,-0.198008447885513,0.972718179225922,-0.191165506839752,-0.155296489596367,0.969194829463959,-0.154958248138428,-0.0292554032057524,0.98748767375946, +-0.120879545807838,-0.198008447885513,0.972718179225922,-0.177350133657455,0.0594303794205189,0.982351720333099,-0.154958248138428,-0.0292554032057524,0.98748767375946,-0.187766492366791,-0.0402575321495533,0.98138827085495,0.382546991109848,-0.407892912626266,0.829024136066437,0.159415081143379,-0.385306805372238,0.90891444683075,0.0180783569812775,-0.315205633640289,0.948851108551025,-0.177350133657455,0.0594303794205189,0.982351720333099,-0.154621198773384,-0.0444663502275944,0.986972630023956,-0.164129212498665,0.0633310750126839,0.984403729438782,0.674222409725189,-0.476864725351334,0.563936173915863,0.603965103626251,-0.508081316947937,0.614067852497101,0.534347414970398,-0.47610729932785,0.698422849178314,0.587862551212311,-0.45308518409729,0.670172572135925,0.534347414970398,-0.47610729932785,0.698422849178314,0.375947237014771,-0.446658998727798,0.811886310577393,0.382546991109848,-0.407892912626266,0.829024136066437,0.375947237014771,-0.446658998727798,0.811886310577393,0.159415081143379,-0.385306805372238,0.90891444683075,0.452295541763306,-0.39427575469017,0.799984514713287,0.525444507598877,-0.31004798412323,0.792324542999268,0.586943864822388,-0.411882728338242,0.697028934955597,0.629538416862488,-0.256962686777115,0.73324716091156,0.64734810590744,-0.35194593667984,0.676072716712952,0.525444507598877,-0.31004798412323,0.792324542999268,0.64734810590744,-0.35194593667984,0.676072716712952,0.731010556221008,-0.370411902666092,0.573078036308289,0.726132571697235,-0.430960714817047,0.535727739334106,0.726132571697235,-0.430960714817047,0.535727739334106,0.753945708274841,-0.515135586261749,0.407677799463272,0.740400612354279,-0.470625042915344,0.479915469884872,0.725835025310516,-0.542573988437653,0.422820121049881,0.700024664402008,-0.514129817485809,0.495616644620895,0.740400612354279,-0.470625042915344,0.479915469884872,0.674222409725189,-0.476864725351334,0.563936173915863,0.700024664402008,-0.514129817485809,0.495616644620895,0.603965103626251,-0.508081316947937,0.614067852497101,0.471672207117081,-0.437212020158768,0.765748560428619, +0.463857620954514,-0.437761783599854,0.770195186138153,0.452295541763306,-0.39427575469017,0.799984514713287,-0.102751277387142,0.121579721570015,0.98724889755249,-0.164129212498665,0.0633310750126839,0.984403729438782,-0.0121894469484687,-0.0428844951093197,0.999005615711212,0.799435973167419,-0.366724073886871,-0.475831300020218,0.800699949264526,-0.439170479774475,-0.407441705465317,0.761427998542786,-0.420668005943298,-0.493219703435898,0.724660038948059,-0.497122287750244,-0.477218121290207,0.722769439220428,-0.415681421756744,-0.55209881067276,0.736937642097473,-0.479064673185349,-0.47688552737236,0.761427998542786,-0.420668005943298,-0.493219703435898,0.800699949264526,-0.439170479774475,-0.407441705465317,0.736937642097473,-0.479064673185349,-0.47688552737236,0.776944160461426,-0.134263247251511,-0.615086138248444,0.759834706783295,-0.2846839427948,-0.584470748901367,0.791033387184143,-0.184419021010399,-0.58331435918808,0.838184297084808,-0.249244809150696,-0.485101968050003,0.864597380161285,-0.129347890615463,-0.485531032085419,0.791033387184143,-0.184419021010399,-0.58331435918808,0.836842358112335,-0.281211793422699,-0.469696342945099,0.838184297084808,-0.249244809150696,-0.485101968050003,0.733867704868317,-0.351484656333923,-0.581288695335388,0.722769439220428,-0.415681421756744,-0.55209881067276,0.724660038948059,-0.497122287750244,-0.477218121290207,0.746150732040405,-0.47042378783226,-0.471126735210419,0.824313044548035,-0.431433171033859,-0.366569608449936,0.786023497581482,-0.370533853769302,-0.494845032691956,0.746150732040405,-0.47042378783226,-0.471126735210419,0.838184297084808,-0.249244809150696,-0.485101968050003,0.836842358112335,-0.281211793422699,-0.469696342945099,0.786023497581482,-0.370533853769302,-0.494845032691956,0.628696441650391,-0.396186739206314,-0.669161200523376,0.501127779483795,-0.406384229660034,-0.764017462730408,0.621482908725739,-0.250752955675125,-0.742214143276215,0.621482908725739,-0.250752955675125,-0.742214143276215,0.725438714027405,-0.31188291311264,-0.613569498062134, +0.628696441650391,-0.396186739206314,-0.669161200523376,0.726812362670898,-0.243797898292542,-0.642110764980316,0.776944160461426,-0.134263247251511,-0.615086138248444,0.724030733108521,0.00233395560644567,-0.68976366519928,0.735940992832184,-0.256752252578735,-0.626473426818848,0.761154055595398,-0.191411659121513,-0.61968207359314,0.766371369361877,-0.285885065793991,-0.575277745723724,0.726812362670898,-0.243797898292542,-0.642110764980316,0.682728409767151,-0.0885255485773087,-0.725289583206177,0.735940992832184,-0.256752252578735,-0.626473426818848,0.740736424922943,-0.210192322731018,-0.638066291809082,0.788616001605988,-0.242426812648773,-0.565078616142273,0.761154055595398,-0.191411659121513,-0.61968207359314,0.740736424922943,-0.210192322731018,-0.638066291809082,0.637105584144592,-0.35523921251297,-0.684033215045929,0.725438714027405,-0.31188291311264,-0.613569498062134,0.224133402109146,-0.400278687477112,-0.888561248779297,0.191307440400124,-0.409143954515457,-0.892189800739288,0.215261176228523,-0.209467113018036,-0.953827083110809,0.191307440400124,-0.409143954515457,-0.892189800739288,0.30616706609726,-0.345672696828842,-0.887001693248749,0.238248690962791,-0.261111497879028,-0.935445487499237,0.363134652376175,-0.407352924346924,-0.837971746921539,0.253511428833008,-0.575701832771301,-0.777366816997528,0.224133402109146,-0.400278687477112,-0.888561248779297,0.363134652376175,-0.407352924346924,-0.837971746921539,0.501127779483795,-0.406384229660034,-0.764017462730408,0.345489770174026,-0.592032432556152,-0.72810310125351,0.608812570571899,-0.0986281260848045,-0.787159204483032,0.65590500831604,-0.188016131520271,-0.731052935123444,0.822263121604919,-0.36025682091713,-0.440565794706345,0.34280863404274,0.16869430243969,-0.924134373664856,0.13558591902256,0.247427701950073,-0.959372639656067,0.608812570571899,-0.0986281260848045,-0.787159204483032,0.800699949264526,-0.439170479774475,-0.407441705465317,0.822263121604919,-0.36025682091713,-0.440565794706345,0.812140285968781,-0.398448586463928,-0.426223963499069, +0.34280863404274,0.16869430243969,-0.924134373664856,0.151664033532143,0.325889676809311,-0.933163344860077,-0.0484938211739063,0.387898206710815,-0.920425534248352,0.886272609233856,0.205142855644226,-0.415255516767502,0.909004628658295,0.255169242620468,-0.329543769359589,0.918938398361206,0.144240841269493,-0.36707866191864,0.909004628658295,0.255169242620468,-0.329543769359589,0.926008880138397,0.271594494581223,-0.262190371751785,0.941993772983551,0.206683814525604,-0.264441579580307,0.886272609233856,0.205142855644226,-0.415255516767502,0.887468636035919,0.127407848834991,-0.442906856536865,0.832989156246185,0.179173484444618,-0.523474752902985,0.821907103061676,0.0805575922131538,-0.563896417617798,0.747844696044922,0.0563194639980793,-0.661480367183685,0.707395315170288,0.136797800660133,-0.693453729152679,0.832989156246185,0.179173484444618,-0.523474752902985,0.887468636035919,0.127407848834991,-0.442906856536865,0.821907103061676,0.0805575922131538,-0.563896417617798,0.766763687133789,0.0709763988852501,-0.637993454933167,0.72615784406662,0.220498502254486,-0.65121054649353,0.691632211208344,0.114676184952259,-0.713087737560272,0.72615784406662,0.220498502254486,-0.65121054649353,0.771441280841827,0.122246660292149,-0.62444680929184,0.686363697052002,0.245068222284317,-0.684723496437073,0.766763687133789,0.0709763988852501,-0.637993454933167,0.691632211208344,0.114676184952259,-0.713087737560272,0.747844696044922,0.0563194639980793,-0.661480367183685,0.656004369258881,0.126904040575027,-0.74401181936264,0.663875222206116,-0.10013435781002,-0.741109073162079,0.504754424095154,0.101458467543125,-0.857280015945435,0.504754424095154,0.101458467543125,-0.857280015945435,0.49152347445488,-0.0310156866908073,-0.870311796665192,0.370670050382614,0.106623210012913,-0.922623991966248,0.745506882667542,0.00631246343255043,-0.666467905044556,0.656004369258881,0.126904040575027,-0.74401181936264,0.686363697052002,0.245068222284317,-0.684723496437073,0.389761298894882,0.0559918731451035,-0.919212162494659,0.280577003955841,0.127385124564171,-0.951340854167938, +0.247508361935616,0.233378529548645,-0.940358459949493,0.280577003955841,0.127385124564171,-0.951340854167938,0.162471756339073,0.102393098175526,-0.981386005878448,0.0549485795199871,0.272500932216644,-0.960585117340088,0.0470903553068638,0.257261753082275,-0.965193629264832,0.0549485795199871,0.272500932216644,-0.960585117340088,0.162471756339073,0.102393098175526,-0.981386005878448,0.0713405907154083,0.229746177792549,-0.970632314682007,-0.0597365759313107,0.389673143625259,-0.919013738632202,0.0470903553068638,0.257261753082275,-0.965193629264832,0.389761298894882,0.0559918731451035,-0.919212162494659,0.370670050382614,0.106623210012913,-0.922623991966248,0.49152347445488,-0.0310156866908073,-0.870311796665192,-0.0904846638441086,0.323889225721359,-0.941758036613464,-0.0597365759313107,0.389673143625259,-0.919013738632202,0.0713405907154083,0.229746177792549,-0.970632314682007,-0.0904846638441086,0.323889225721359,-0.941758036613464,-0.070423536002636,0.330290913581848,-0.941248297691345,-0.0484938211739063,0.387898206710815,-0.920425534248352,0.487024307250977,0.353716820478439,0.798555970191956,0.324389040470123,0.431812137365341,0.841611504554749,0.444072544574738,0.299122393131256,0.84458589553833,0.628827452659607,0.26434126496315,0.731231570243835,0.60094940662384,0.374452620744705,0.706147909164429,0.487024307250977,0.353716820478439,0.798555970191956,0.765001535415649,0.369775801897049,0.52729344367981,0.857460677623749,0.23653344810009,0.456960588693619,0.839446902275085,0.34242245554924,0.421990007162094,0.812867999076843,0.180216535925865,0.553866028785706,0.795952677726746,0.267092674970627,0.54325008392334,0.692333340644836,0.368210732936859,0.62056040763855,0.795952677726746,0.267092674970627,0.54325008392334,0.857460677623749,0.23653344810009,0.456960588693619,0.765001535415649,0.369775801897049,0.52729344367981,0.628827452659607,0.26434126496315,0.731231570243835,0.728619635105133,0.231799140572548,0.644501686096191,0.60094940662384,0.374452620744705,0.706147909164429,0.728619635105133,0.231799140572548,0.644501686096191, +0.812867999076843,0.180216535925865,0.553866028785706,0.692333340644836,0.368210732936859,0.62056040763855,0.839446902275085,0.34242245554924,0.421990007162094,0.9161337018013,0.221801534295082,0.333920657634735,0.884588718414307,0.360684305429459,0.295650899410248,0.925517857074738,0.327207654714584,0.190660685300827,0.884588718414307,0.360684305429459,0.295650899410248,0.950812935829163,0.212867304682732,0.225037649273872,0.925517857074738,0.327207654714584,0.190660685300827,0.982653260231018,0.163663983345032,0.0872155949473381,0.959479868412018,0.275568723678589,0.0588238909840584,0.963992536067963,0.254729390144348,-0.0763630792498589,0.907073974609375,0.417925655841827,0.0505430363118649,0.959479868412018,0.275568723678589,0.0588238909840584,0.9474778175354,0.252963960170746,-0.195690929889679,0.913841485977173,0.371090948581696,-0.164879158139229,0.963992536067963,0.254729390144348,-0.0763630792498589,0.926008880138397,0.271594494581223,-0.262190371751785,0.9474778175354,0.252963960170746,-0.195690929889679,0.941993772983551,0.206683814525604,-0.264441579580307,0.394062221050262,0.0334990620613098,0.9184730052948,0.370514124631882,0.0435104183852673,0.927807092666626,0.212643563747406,0.163458988070488,0.963360667228699,0.0571358054876328,0.0166806560009718,0.998227000236511,0.00528338039293885,0.0881317928433418,0.996094763278961,-0.102751277387142,0.121579721570015,0.98724889755249,0.00528338039293885,0.0881317928433418,0.996094763278961,0.0557451322674751,0.053692601621151,0.997000277042389,0.00456144195050001,0.190013438463211,0.981770873069763,0.394062221050262,0.0334990620613098,0.9184730052948,0.276909410953522,0.0828925296664238,0.957313895225525,0.46495795249939,-0.0765464380383492,0.882017374038696,0.276909410953522,0.0828925296664238,0.957313895225525,0.149890929460526,0.0707199275493622,0.986169993877411,0.313881605863571,-0.0269749350845814,0.949078798294067,0.0557451322674751,0.053692601621151,0.997000277042389,0.149890929460526,0.0707199275493622,0.986169993877411,0.00456144195050001,0.190013438463211,0.981770873069763, +0.310979634523392,0.208040401339531,0.927367627620697,0.410663068294525,0.227108865976334,0.883049964904785,0.252279549837112,0.338923007249832,0.90635871887207,0.370514124631882,0.0435104183852673,0.927807092666626,0.424841791391373,-0.0593523569405079,0.903319656848907,0.327234715223312,0.116555623710155,0.937727153301239,0.310979634523392,0.208040401339531,0.927367627620697,0.236572593450546,0.247935011982918,0.939447462558746,0.327234715223312,0.116555623710155,0.937727153301239,0.410663068294525,0.227108865976334,0.883049964904785,0.504252254962921,0.173843219876289,0.845877051353455,0.358366131782532,0.335594952106476,0.871177196502686,0.358366131782532,0.335594952106476,0.871177196502686,0.504252254962921,0.173843219876289,0.845877051353455,0.444072544574738,0.299122393131256,0.84458589553833,-0.370571672916412,-0.175268784165382,-0.912116944789886,-0.443098306655884,-0.120227672159672,-0.888374269008636,-0.373161196708679,-0.274960309267044,-0.886085331439972,-0.497588694095612,-0.296573966741562,-0.815137624740601,-0.426811575889587,-0.366682529449463,-0.82666540145874,-0.454544186592102,-0.228420287370682,-0.860937654972076,-0.536098062992096,-0.354009181261063,-0.766339480876923,-0.486329436302185,-0.430422872304916,-0.760407567024231,-0.497588694095612,-0.296573966741562,-0.815137624740601,-0.454544186592102,-0.228420287370682,-0.860937654972076,-0.373161196708679,-0.274960309267044,-0.886085331439972,-0.443098306655884,-0.120227672159672,-0.888374269008636,-0.536098062992096,-0.354009181261063,-0.766339480876923,-0.446410536766052,-0.396181344985962,-0.802345216274261,-0.492542564868927,-0.466423660516739,-0.734745264053345,-0.170641377568245,-0.298191577196121,0.939128935337067,0.0180783569812775,-0.315205633640289,0.948851108551025,-0.088472455739975,-0.397358447313309,0.913388609886169,-0.107557088136673,-0.367379128932953,0.923831105232239,-0.120879545807838,-0.198008447885513,0.972718179225922,-0.170641377568245,-0.298191577196121,0.939128935337067,-0.187766492366791,-0.0402575321495533,0.98138827085495, +-0.154958248138428,-0.0292554032057524,0.98748767375946,-0.191165506839752,-0.155296489596367,0.969194829463959,-0.107557088136673,-0.367379128932953,0.923831105232239,-0.191165506839752,-0.155296489596367,0.969194829463959,-0.120879545807838,-0.198008447885513,0.972718179225922,-0.154621198773384,-0.0444663502275944,0.986972630023956,-0.177350133657455,0.0594303794205189,0.982351720333099,-0.187766492366791,-0.0402575321495533,0.98138827085495,0.0180783569812775,-0.315205633640289,0.948851108551025,0.159415081143379,-0.385306805372238,0.90891444683075,-0.088472455739975,-0.397358447313309,0.913388609886169,-0.154621198773384,-0.0444663502275944,0.986972630023956,0.00351991388015449,-0.148171290755272,0.98895537853241,-0.164129212498665,0.0633310750126839,0.984403729438782,0.480375647544861,-0.513790965080261,0.710814952850342,0.534347414970398,-0.47610729932785,0.698422849178314,0.603965103626251,-0.508081316947937,0.614067852497101,0.375947237014771,-0.446658998727798,0.811886310577393,0.534347414970398,-0.47610729932785,0.698422849178314,0.329131513834,-0.483216881752014,0.811279058456421,0.375947237014771,-0.446658998727798,0.811886310577393,0.0806417092680931,-0.468025386333466,0.880027830600739,0.159415081143379,-0.385306805372238,0.90891444683075,0.525444507598877,-0.31004798412323,0.792324542999268,0.452295541763306,-0.39427575469017,0.799984514713287,0.473199307918549,-0.319873005151749,0.820831000804901,0.64734810590744,-0.35194593667984,0.676072716712952,0.629538416862488,-0.256962686777115,0.73324716091156,0.731010556221008,-0.370411902666092,0.573078036308289,0.629538416862488,-0.256962686777115,0.73324716091156,0.525444507598877,-0.31004798412323,0.792324542999268,0.502345502376556,-0.200718984007835,0.841047406196594,0.773634493350983,-0.443773359060287,0.452277302742004,0.726132571697235,-0.430960714817047,0.535727739334106,0.731010556221008,-0.370411902666092,0.573078036308289,0.773634493350983,-0.443773359060287,0.452277302742004,0.753945708274841,-0.515135586261749,0.407677799463272,0.726132571697235,-0.430960714817047,0.535727739334106, +0.753945708274841,-0.515135586261749,0.407677799463272,0.725835025310516,-0.542573988437653,0.422820121049881,0.740400612354279,-0.470625042915344,0.479915469884872,0.675490915775299,-0.575444936752319,0.461058527231216,0.700024664402008,-0.514129817485809,0.495616644620895,0.725835025310516,-0.542573988437653,0.422820121049881,0.608703970909119,-0.572503626346588,0.549289405345917,0.603965103626251,-0.508081316947937,0.614067852497101,0.700024664402008,-0.514129817485809,0.495616644620895,0.463857620954514,-0.437761783599854,0.770195186138153,0.473199307918549,-0.319873005151749,0.820831000804901,0.452295541763306,-0.39427575469017,0.799984514713287,-0.0121894469484687,-0.0428844951093197,0.999005615711212,-0.164129212498665,0.0633310750126839,0.984403729438782,0.00351991388015449,-0.148171290755272,0.98895537853241,-0.0121894469484687,-0.0428844951093197,0.999005615711212,0.0571358054876328,0.0166806560009718,0.998227000236511,-0.102751277387142,0.121579721570015,0.98724889755249,0.736937642097473,-0.479064673185349,-0.47688552737236,0.704381108283997,-0.528172612190247,-0.47421595454216,0.724660038948059,-0.497122287750244,-0.477218121290207,0.736937642097473,-0.479064673185349,-0.47688552737236,0.800699949264526,-0.439170479774475,-0.407441705465317,0.715359747409821,-0.448115944862366,-0.536145865917206,0.776944160461426,-0.134263247251511,-0.615086138248444,0.791033387184143,-0.184419021010399,-0.58331435918808,0.840565145015717,-0.0148213813081384,-0.541507542133331,0.838184297084808,-0.249244809150696,-0.485101968050003,0.881447494029999,-0.262430757284164,-0.392657995223999,0.864597380161285,-0.129347890615463,-0.485531032085419,0.864597380161285,-0.129347890615463,-0.485531032085419,0.840565145015717,-0.0148213813081384,-0.541507542133331,0.791033387184143,-0.184419021010399,-0.58331435918808,0.724660038948059,-0.497122287750244,-0.477218121290207,0.775001525878906,-0.491844028234482,-0.39681476354599,0.746150732040405,-0.47042378783226,-0.471126735210419,0.824313044548035,-0.431433171033859,-0.366569608449936, +0.855578243732452,-0.359561324119568,-0.372426390647888,0.786023497581482,-0.370533853769302,-0.494845032691956,0.824313044548035,-0.431433171033859,-0.366569608449936,0.746150732040405,-0.47042378783226,-0.471126735210419,0.775001525878906,-0.491844028234482,-0.39681476354599,0.838184297084808,-0.249244809150696,-0.485101968050003,0.786023497581482,-0.370533853769302,-0.494845032691956,0.855578243732452,-0.359561324119568,-0.372426390647888,0.628696441650391,-0.396186739206314,-0.669161200523376,0.487609356641769,-0.529550015926361,-0.694128036499023,0.501127779483795,-0.406384229660034,-0.764017462730408,0.628696441650391,-0.396186739206314,-0.669161200523376,0.725438714027405,-0.31188291311264,-0.613569498062134,0.585298299789429,-0.475986659526825,-0.656401097774506,0.840565145015717,-0.0148213813081384,-0.541507542133331,0.724030733108521,0.00233395560644567,-0.68976366519928,0.776944160461426,-0.134263247251511,-0.615086138248444,0.724030733108521,0.00233395560644567,-0.68976366519928,0.682728409767151,-0.0885255485773087,-0.725289583206177,0.726812362670898,-0.243797898292542,-0.642110764980316,0.735940992832184,-0.256752252578735,-0.626473426818848,0.682728409767151,-0.0885255485773087,-0.725289583206177,0.761154055595398,-0.191411659121513,-0.61968207359314,0.642770230770111,-0.0647293031215668,-0.763319313526154,0.740736424922943,-0.210192322731018,-0.638066291809082,0.761154055595398,-0.191411659121513,-0.61968207359314,0.637105584144592,-0.35523921251297,-0.684033215045929,0.740736424922943,-0.210192322731018,-0.638066291809082,0.614814877510071,-0.215035825967789,-0.758789896965027,0.637105584144592,-0.35523921251297,-0.684033215045929,0.585298299789429,-0.475986659526825,-0.656401097774506,0.725438714027405,-0.31188291311264,-0.613569498062134,0.224133402109146,-0.400278687477112,-0.888561248779297,0.258817255496979,-0.514311671257019,-0.817616641521454,0.191307440400124,-0.409143954515457,-0.892189800739288,0.295208424329758,-0.394090056419373,-0.870370507240295,0.30616706609726,-0.345672696828842,-0.887001693248749, +0.191307440400124,-0.409143954515457,-0.892189800739288,0.363134652376175,-0.407352924346924,-0.837971746921539,0.345489770174026,-0.592032432556152,-0.72810310125351,0.253511428833008,-0.575701832771301,-0.777366816997528,0.224133402109146,-0.400278687477112,-0.888561248779297,0.253511428833008,-0.575701832771301,-0.777366816997528,0.258817255496979,-0.514311671257019,-0.817616641521454,0.345489770174026,-0.592032432556152,-0.72810310125351,0.501127779483795,-0.406384229660034,-0.764017462730408,0.487609356641769,-0.529550015926361,-0.694128036499023,0.608812570571899,-0.0986281260848045,-0.787159204483032,0.217093214392662,0.163153573870659,-0.962419509887695,0.65590500831604,-0.188016131520271,-0.731052935123444,0.822263121604919,-0.36025682091713,-0.440565794706345,0.65590500831604,-0.188016131520271,-0.731052935123444,0.812140285968781,-0.398448586463928,-0.426223963499069,0.34280863404274,0.16869430243969,-0.924134373664856,-0.0484938211739063,0.387898206710815,-0.920425534248352,0.13558591902256,0.247427701950073,-0.959372639656067,0.608812570571899,-0.0986281260848045,-0.787159204483032,0.13558591902256,0.247427701950073,-0.959372639656067,0.217093214392662,0.163153573870659,-0.962419509887695,0.800699949264526,-0.439170479774475,-0.407441705465317,0.812140285968781,-0.398448586463928,-0.426223963499069,0.715359747409821,-0.448115944862366,-0.536145865917206,0.952552258968353,0.141694918274879,-0.269381940364838,0.918938398361206,0.144240841269493,-0.36707866191864,0.909004628658295,0.255169242620468,-0.329543769359589,0.918938398361206,0.144240841269493,-0.36707866191864,0.887468636035919,0.127407848834991,-0.442906856536865,0.886272609233856,0.205142855644226,-0.415255516767502,0.952552258968353,0.141694918274879,-0.269381940364838,0.909004628658295,0.255169242620468,-0.329543769359589,0.941993772983551,0.206683814525604,-0.264441579580307,0.821907103061676,0.0805575922131538,-0.563896417617798,0.871302008628845,0.051984217017889,-0.487985998392105,0.747844696044922,0.0563194639980793,-0.661480367183685, +0.821907103061676,0.0805575922131538,-0.563896417617798,0.887468636035919,0.127407848834991,-0.442906856536865,0.871302008628845,0.051984217017889,-0.487985998392105,0.766763687133789,0.0709763988852501,-0.637993454933167,0.771441280841827,0.122246660292149,-0.62444680929184,0.72615784406662,0.220498502254486,-0.65121054649353,0.745506882667542,0.00631246343255043,-0.666467905044556,0.686363697052002,0.245068222284317,-0.684723496437073,0.771441280841827,0.122246660292149,-0.62444680929184,0.766763687133789,0.0709763988852501,-0.637993454933167,0.747844696044922,0.0563194639980793,-0.661480367183685,0.820408523082733,-0.0599344372749329,-0.568627893924713,0.745506882667542,0.00631246343255043,-0.666467905044556,0.663875222206116,-0.10013435781002,-0.741109073162079,0.656004369258881,0.126904040575027,-0.74401181936264,0.663875222206116,-0.10013435781002,-0.741109073162079,0.49152347445488,-0.0310156866908073,-0.870311796665192,0.504754424095154,0.101458467543125,-0.857280015945435,0.389761298894882,0.0559918731451035,-0.919212162494659,0.449091136455536,-0.0880545452237129,-0.889136373996735,0.280577003955841,0.127385124564171,-0.951340854167938,0.280577003955841,0.127385124564171,-0.951340854167938,0.336494088172913,-0.0728471651673317,-0.938863635063171,0.162471756339073,0.102393098175526,-0.981386005878448,0.146349027752876,0.143113002181053,-0.978825986385345,0.0470903553068638,0.257261753082275,-0.965193629264832,0.162471756339073,0.102393098175526,-0.981386005878448,0.0713405907154083,0.229746177792549,-0.970632314682007,0.0470903553068638,0.257261753082275,-0.965193629264832,0.146349027752876,0.143113002181053,-0.978825986385345,0.49152347445488,-0.0310156866908073,-0.870311796665192,0.449091136455536,-0.0880545452237129,-0.889136373996735,0.389761298894882,0.0559918731451035,-0.919212162494659,-0.0418163314461708,0.158656731247902,-0.986447870731354,-0.0904846638441086,0.323889225721359,-0.941758036613464,0.0713405907154083,0.229746177792549,-0.970632314682007,-0.070423536002636,0.330290913581848,-0.941248297691345, +-0.0904846638441086,0.323889225721359,-0.941758036613464,-0.0524872317910194,0.205522656440735,-0.977243781089783,0.13558591902256,0.247427701950073,-0.959372639656067,-0.0484938211739063,0.387898206710815,-0.920425534248352,-0.070423536002636,0.330290913581848,-0.941248297691345,0.487024307250977,0.353716820478439,0.798555970191956,0.444072544574738,0.299122393131256,0.84458589553833,0.585302233695984,0.208884343504906,0.783446550369263,0.487024307250977,0.353716820478439,0.798555970191956,0.585302233695984,0.208884343504906,0.783446550369263,0.628827452659607,0.26434126496315,0.731231570243835,0.9161337018013,0.221801534295082,0.333920657634735,0.839446902275085,0.34242245554924,0.421990007162094,0.857460677623749,0.23653344810009,0.456960588693619,0.812867999076843,0.180216535925865,0.553866028785706,0.874746382236481,0.124634958803654,0.468278586864471,0.795952677726746,0.267092674970627,0.54325008392334,0.795952677726746,0.267092674970627,0.54325008392334,0.874746382236481,0.124634958803654,0.468278586864471,0.857460677623749,0.23653344810009,0.456960588693619,0.628827452659607,0.26434126496315,0.731231570243835,0.721905589103699,0.0816565454006195,0.687156736850739,0.728619635105133,0.231799140572548,0.644501686096191,0.812867999076843,0.180216535925865,0.553866028785706,0.728619635105133,0.231799140572548,0.644501686096191,0.816955268383026,0.070244088768959,0.572406888008118,0.9161337018013,0.221801534295082,0.333920657634735,0.950812935829163,0.212867304682732,0.225037649273872,0.884588718414307,0.360684305429459,0.295650899410248,0.925517857074738,0.327207654714584,0.190660685300827,0.950812935829163,0.212867304682732,0.225037649273872,0.982653260231018,0.163663983345032,0.0872155949473381,0.963992536067963,0.254729390144348,-0.0763630792498589,0.959479868412018,0.275568723678589,0.0588238909840584,0.982653260231018,0.163663983345032,0.0872155949473381,0.966576933860779,0.186932191252708,-0.175457194447517,0.9474778175354,0.252963960170746,-0.195690929889679,0.963992536067963,0.254729390144348,-0.0763630792498589, +0.941993772983551,0.206683814525604,-0.264441579580307,0.9474778175354,0.252963960170746,-0.195690929889679,0.966576933860779,0.186932191252708,-0.175457194447517,0.394062221050262,0.0334990620613098,0.9184730052948,0.471483290195465,-0.104091204702854,0.875710248947144,0.370514124631882,0.0435104183852673,0.927807092666626,0.0571358054876328,0.0166806560009718,0.998227000236511,0.228439480066299,-0.0878774225711823,0.969583868980408,0.00528338039293885,0.0881317928433418,0.996094763278961,0.00528338039293885,0.0881317928433418,0.996094763278961,0.228439480066299,-0.0878774225711823,0.969583868980408,0.0557451322674751,0.053692601621151,0.997000277042389,0.276909410953522,0.0828925296664238,0.957313895225525,0.313881605863571,-0.0269749350845814,0.949078798294067,0.46495795249939,-0.0765464380383492,0.882017374038696,0.471483290195465,-0.104091204702854,0.875710248947144,0.394062221050262,0.0334990620613098,0.9184730052948,0.46495795249939,-0.0765464380383492,0.882017374038696,0.249122470617294,-0.0611523725092411,0.966539323329926,0.313881605863571,-0.0269749350845814,0.949078798294067,0.149890929460526,0.0707199275493622,0.986169993877411,0.0557451322674751,0.053692601621151,0.997000277042389,0.249122470617294,-0.0611523725092411,0.966539323329926,0.149890929460526,0.0707199275493622,0.986169993877411,0.310979634523392,0.208040401339531,0.927367627620697,0.45429590344429,0.0566424243152142,0.889048278331757,0.410663068294525,0.227108865976334,0.883049964904785,0.370514124631882,0.0435104183852673,0.927807092666626,0.471483290195465,-0.104091204702854,0.875710248947144,0.424841791391373,-0.0593523569405079,0.903319656848907,0.45429590344429,0.0566424243152142,0.889048278331757,0.327234715223312,0.116555623710155,0.937727153301239,0.424841791391373,-0.0593523569405079,0.903319656848907,0.45429590344429,0.0566424243152142,0.889048278331757,0.310979634523392,0.208040401339531,0.927367627620697,0.327234715223312,0.116555623710155,0.937727153301239,0.410663068294525,0.227108865976334,0.883049964904785,0.45429590344429,0.0566424243152142,0.889048278331757, +0.504252254962921,0.173843219876289,0.845877051353455,0.585302233695984,0.208884343504906,0.783446550369263,0.444072544574738,0.299122393131256,0.84458589553833,0.504252254962921,0.173843219876289,0.845877051353455,-0.497588694095612,-0.296573966741562,-0.815137624740601,-0.454544186592102,-0.228420287370682,-0.860937654972076,-0.512227177619934,-0.121180310845375,-0.850257873535156,-0.536098062992096,-0.354009181261063,-0.766339480876923,-0.497588694095612,-0.296573966741562,-0.815137624740601,-0.551079213619232,-0.21517376601696,-0.806233048439026,-0.454544186592102,-0.228420287370682,-0.860937654972076,-0.443098306655884,-0.120227672159672,-0.888374269008636,-0.512227177619934,-0.121180310845375,-0.850257873535156,-0.536098062992096,-0.354009181261063,-0.766339480876923,-0.572757661342621,-0.27531835436821,-0.772106409072876,-0.446410536766052,-0.396181344985962,-0.802345216274261,-0.170641377568245,-0.298191577196121,0.939128935337067,-0.088472455739975,-0.397358447313309,0.913388609886169,-0.0943166241049767,-0.480934858322144,0.871668457984924,-0.107557088136673,-0.367379128932953,0.923831105232239,-0.170641377568245,-0.298191577196121,0.939128935337067,-0.0943166241049767,-0.480934858322144,0.871668457984924,-0.0659535601735115,-0.236084416508675,0.969491720199585,-0.187766492366791,-0.0402575321495533,0.98138827085495,-0.191165506839752,-0.155296489596367,0.969194829463959,-0.0659535601735115,-0.236084416508675,0.969491720199585,-0.191165506839752,-0.155296489596367,0.969194829463959,-0.107557088136673,-0.367379128932953,0.923831105232239,-0.154621198773384,-0.0444663502275944,0.986972630023956,-0.187766492366791,-0.0402575321495533,0.98138827085495,-0.0659535601735115,-0.236084416508675,0.969491720199585,0.159415081143379,-0.385306805372238,0.90891444683075,0.0806417092680931,-0.468025386333466,0.880027830600739,-0.088472455739975,-0.397358447313309,0.913388609886169,-0.154621198773384,-0.0444663502275944,0.986972630023956,-0.0659535601735115,-0.236084416508675,0.969491720199585,0.00351991388015449,-0.148171290755272,0.98895537853241, +0.480375647544861,-0.513790965080261,0.710814952850342,0.329131513834,-0.483216881752014,0.811279058456421,0.534347414970398,-0.47610729932785,0.698422849178314,0.603965103626251,-0.508081316947937,0.614067852497101,0.526469588279724,-0.59919285774231,0.603156268596649,0.480375647544861,-0.513790965080261,0.710814952850342,0.375947237014771,-0.446658998727798,0.811886310577393,0.329131513834,-0.483216881752014,0.811279058456421,0.0806417092680931,-0.468025386333466,0.880027830600739,0.502345502376556,-0.200718984007835,0.841047406196594,0.525444507598877,-0.31004798412323,0.792324542999268,0.473199307918549,-0.319873005151749,0.820831000804901,0.629538416862488,-0.256962686777115,0.73324716091156,0.759950459003448,-0.292904704809189,0.580242991447449,0.731010556221008,-0.370411902666092,0.573078036308289,0.502345502376556,-0.200718984007835,0.841047406196594,0.623132705688477,-0.116109080612659,0.773449540138245,0.629538416862488,-0.256962686777115,0.73324716091156,0.753945708274841,-0.515135586261749,0.407677799463272,0.721532166004181,-0.574814915657043,0.385977953672409,0.725835025310516,-0.542573988437653,0.422820121049881,0.675490915775299,-0.575444936752319,0.461058527231216,0.608703970909119,-0.572503626346588,0.549289405345917,0.700024664402008,-0.514129817485809,0.495616644620895,0.725835025310516,-0.542573988437653,0.422820121049881,0.721532166004181,-0.574814915657043,0.385977953672409,0.675490915775299,-0.575444936752319,0.461058527231216,0.608703970909119,-0.572503626346588,0.549289405345917,0.526469588279724,-0.59919285774231,0.603156268596649,0.603965103626251,-0.508081316947937,0.614067852497101,0.196335032582283,-0.270916432142258,0.942367613315582,-0.0121894469484687,-0.0428844951093197,0.999005615711212,0.00351991388015449,-0.148171290755272,0.98895537853241,-0.0121894469484687,-0.0428844951093197,0.999005615711212,0.192503228783607,-0.180916011333466,0.96447491645813,0.0571358054876328,0.0166806560009718,0.998227000236511,0.715359747409821,-0.448115944862366,-0.536145865917206,0.704381108283997,-0.528172612190247,-0.47421595454216, +0.736937642097473,-0.479064673185349,-0.47688552737236,0.704381108283997,-0.528172612190247,-0.47421595454216,0.74986457824707,-0.515440404415131,-0.41475784778595,0.724660038948059,-0.497122287750244,-0.477218121290207,0.881447494029999,-0.262430757284164,-0.392657995223999,0.838184297084808,-0.249244809150696,-0.485101968050003,0.855578243732452,-0.359561324119568,-0.372426390647888,0.881447494029999,-0.262430757284164,-0.392657995223999,0.88873153924942,-0.097435288131237,-0.447953760623932,0.864597380161285,-0.129347890615463,-0.485531032085419,0.864597380161285,-0.129347890615463,-0.485531032085419,0.88873153924942,-0.097435288131237,-0.447953760623932,0.840565145015717,-0.0148213813081384,-0.541507542133331,0.74986457824707,-0.515440404415131,-0.41475784778595,0.775001525878906,-0.491844028234482,-0.39681476354599,0.724660038948059,-0.497122287750244,-0.477218121290207,0.855578243732452,-0.359561324119568,-0.372426390647888,0.824313044548035,-0.431433171033859,-0.366569608449936,0.842212855815887,-0.459305852651596,-0.28233939409256,0.824313044548035,-0.431433171033859,-0.366569608449936,0.775001525878906,-0.491844028234482,-0.39681476354599,0.796044170856476,-0.514640212059021,-0.318526238203049,0.628696441650391,-0.396186739206314,-0.669161200523376,0.585298299789429,-0.475986659526825,-0.656401097774506,0.487609356641769,-0.529550015926361,-0.694128036499023,0.83558189868927,-0.0303394868969917,-0.548527419567108,0.724030733108521,0.00233395560644567,-0.68976366519928,0.840565145015717,-0.0148213813081384,-0.541507542133331,0.724030733108521,0.00233395560644567,-0.68976366519928,0.63328629732132,-0.0659580454230309,-0.771101713180542,0.682728409767151,-0.0885255485773087,-0.725289583206177,0.682728409767151,-0.0885255485773087,-0.725289583206177,0.642770230770111,-0.0647293031215668,-0.763319313526154,0.761154055595398,-0.191411659121513,-0.61968207359314,0.642770230770111,-0.0647293031215668,-0.763319313526154,0.614814877510071,-0.215035825967789,-0.758789896965027,0.740736424922943,-0.210192322731018,-0.638066291809082, +0.498800933361053,-0.460049092769623,-0.73454225063324,0.637105584144592,-0.35523921251297,-0.684033215045929,0.614814877510071,-0.215035825967789,-0.758789896965027,0.637105584144592,-0.35523921251297,-0.684033215045929,0.452427715063095,-0.551249623298645,-0.701022684574127,0.585298299789429,-0.475986659526825,-0.656401097774506,0.295208424329758,-0.394090056419373,-0.870370507240295,0.191307440400124,-0.409143954515457,-0.892189800739288,0.258817255496979,-0.514311671257019,-0.817616641521454,0.295208424329758,-0.394090056419373,-0.870370507240295,0.349255561828613,-0.406838774681091,-0.844098687171936,0.30616706609726,-0.345672696828842,-0.887001693248749,0.308135598897934,-0.606259822845459,-0.733144879341125,0.253511428833008,-0.575701832771301,-0.777366816997528,0.345489770174026,-0.592032432556152,-0.72810310125351,0.308135598897934,-0.606259822845459,-0.733144879341125,0.258817255496979,-0.514311671257019,-0.817616641521454,0.253511428833008,-0.575701832771301,-0.777366816997528,0.345489770174026,-0.592032432556152,-0.72810310125351,0.487609356641769,-0.529550015926361,-0.694128036499023,0.387371033430099,-0.61861515045166,-0.68356329202652,0.217093214392662,0.163153573870659,-0.962419509887695,0.232146680355072,0.048180777579546,-0.971486687660217,0.65590500831604,-0.188016131520271,-0.731052935123444,0.65590500831604,-0.188016131520271,-0.731052935123444,0.715359747409821,-0.448115944862366,-0.536145865917206,0.812140285968781,-0.398448586463928,-0.426223963499069,0.13558591902256,0.247427701950073,-0.959372639656067,-0.070423536002636,0.330290913581848,-0.941248297691345,0.217093214392662,0.163153573870659,-0.962419509887695,0.952552258968353,0.141694918274879,-0.269381940364838,0.945410013198853,0.0189214702695608,-0.325333297252655,0.918938398361206,0.144240841269493,-0.36707866191864,0.918938398361206,0.144240841269493,-0.36707866191864,0.871302008628845,0.051984217017889,-0.487985998392105,0.887468636035919,0.127407848834991,-0.442906856536865,0.966576933860779,0.186932191252708,-0.175457194447517, +0.952552258968353,0.141694918274879,-0.269381940364838,0.941993772983551,0.206683814525604,-0.264441579580307,0.747844696044922,0.0563194639980793,-0.661480367183685,0.871302008628845,0.051984217017889,-0.487985998392105,0.820408523082733,-0.0599344372749329,-0.568627893924713,0.766763687133789,0.0709763988852501,-0.637993454933167,0.795843362808228,-0.0662463754415512,-0.60186755657196,0.771441280841827,0.122246660292149,-0.62444680929184,0.745506882667542,0.00631246343255043,-0.666467905044556,0.771441280841827,0.122246660292149,-0.62444680929184,0.795843362808228,-0.0662463754415512,-0.60186755657196,0.820408523082733,-0.0599344372749329,-0.568627893924713,0.807383060455322,-0.116387262940407,-0.578434586524963,0.766763687133789,0.0709763988852501,-0.637993454933167,0.764601349830627,-0.181833192706108,-0.618321359157562,0.663875222206116,-0.10013435781002,-0.741109073162079,0.745506882667542,0.00631246343255043,-0.666467905044556,0.49152347445488,-0.0310156866908073,-0.870311796665192,0.663875222206116,-0.10013435781002,-0.741109073162079,0.565549612045288,-0.15399058163166,-0.810210049152374,0.449091136455536,-0.0880545452237129,-0.889136373996735,0.336494088172913,-0.0728471651673317,-0.938863635063171,0.280577003955841,0.127385124564171,-0.951340854167938,0.270029693841934,-0.0304348692297935,-0.962370812892914,0.162471756339073,0.102393098175526,-0.981386005878448,0.336494088172913,-0.0728471651673317,-0.938863635063171,0.146349027752876,0.143113002181053,-0.978825986385345,0.162471756339073,0.102393098175526,-0.981386005878448,0.270029693841934,-0.0304348692297935,-0.962370812892914,0.0713405907154083,0.229746177792549,-0.970632314682007,0.146349027752876,0.143113002181053,-0.978825986385345,0.201057642698288,0.0748896449804306,-0.9767125248909,0.49152347445488,-0.0310156866908073,-0.870311796665192,0.565549612045288,-0.15399058163166,-0.810210049152374,0.449091136455536,-0.0880545452237129,-0.889136373996735,-0.0904846638441086,0.323889225721359,-0.941758036613464,-0.0418163314461708,0.158656731247902,-0.986447870731354, +-0.0524872317910194,0.205522656440735,-0.977243781089783,-0.0418163314461708,0.158656731247902,-0.986447870731354,0.0713405907154083,0.229746177792549,-0.970632314682007,0.105127446353436,0.0741541236639023,-0.991690099239349,0.217093214392662,0.163153573870659,-0.962419509887695,-0.070423536002636,0.330290913581848,-0.941248297691345,-0.0524872317910194,0.205522656440735,-0.977243781089783,0.721905589103699,0.0816565454006195,0.687156736850739,0.628827452659607,0.26434126496315,0.731231570243835,0.585302233695984,0.208884343504906,0.783446550369263,0.9161337018013,0.221801534295082,0.333920657634735,0.857460677623749,0.23653344810009,0.456960588693619,0.928299009799957,0.0815792456269264,0.362775087356567,0.812867999076843,0.180216535925865,0.553866028785706,0.885141730308533,0.0265566892921925,0.46456304192543,0.874746382236481,0.124634958803654,0.468278586864471,0.874746382236481,0.124634958803654,0.468278586864471,0.928299009799957,0.0815792456269264,0.362775087356567,0.857460677623749,0.23653344810009,0.456960588693619,0.721905589103699,0.0816565454006195,0.687156736850739,0.816955268383026,0.070244088768959,0.572406888008118,0.728619635105133,0.231799140572548,0.644501686096191,0.812867999076843,0.180216535925865,0.553866028785706,0.816955268383026,0.070244088768959,0.572406888008118,0.885141730308533,0.0265566892921925,0.46456304192543,0.9161337018013,0.221801534295082,0.333920657634735,0.971246361732483,0.0719986781477928,0.226928129792213,0.950812935829163,0.212867304682732,0.225037649273872,0.950812935829163,0.212867304682732,0.225037649273872,0.971246361732483,0.0719986781477928,0.226928129792213,0.982653260231018,0.163663983345032,0.0872155949473381,0.982653260231018,0.163663983345032,0.0872155949473381,0.985050559043884,0.159180924296379,-0.0658538267016411,0.963992536067963,0.254729390144348,-0.0763630792498589,0.985050559043884,0.159180924296379,-0.0658538267016411,0.966576933860779,0.186932191252708,-0.175457194447517,0.963992536067963,0.254729390144348,-0.0763630792498589,0.192503228783607,-0.180916011333466,0.96447491645813, +0.228439480066299,-0.0878774225711823,0.969583868980408,0.0571358054876328,0.0166806560009718,0.998227000236511,0.0557451322674751,0.053692601621151,0.997000277042389,0.228439480066299,-0.0878774225711823,0.969583868980408,0.249122470617294,-0.0611523725092411,0.966539323329926,0.46495795249939,-0.0765464380383492,0.882017374038696,0.313881605863571,-0.0269749350845814,0.949078798294067,0.410979896783829,-0.146752506494522,0.899755001068115,0.471483290195465,-0.104091204702854,0.875710248947144,0.46495795249939,-0.0765464380383492,0.882017374038696,0.543084681034088,-0.238042965531349,0.805229425430298,0.249122470617294,-0.0611523725092411,0.966539323329926,0.410979896783829,-0.146752506494522,0.899755001068115,0.313881605863571,-0.0269749350845814,0.949078798294067,0.471483290195465,-0.104091204702854,0.875710248947144,0.525615215301514,-0.155961781740189,0.836304008960724,0.424841791391373,-0.0593523569405079,0.903319656848907,0.45429590344429,0.0566424243152142,0.889048278331757,0.424841791391373,-0.0593523569405079,0.903319656848907,0.514600872993469,-0.0630413144826889,0.855109095573425,0.504252254962921,0.173843219876289,0.845877051353455,0.45429590344429,0.0566424243152142,0.889048278331757,0.582208216190338,0.0179835129529238,0.812840700149536,0.585302233695984,0.208884343504906,0.783446550369263,0.504252254962921,0.173843219876289,0.845877051353455,0.635242342948914,0.0744057297706604,0.768720209598541,-0.512227177619934,-0.121180310845375,-0.850257873535156,-0.551079213619232,-0.21517376601696,-0.806233048439026,-0.497588694095612,-0.296573966741562,-0.815137624740601,-0.572757661342621,-0.27531835436821,-0.772106409072876,-0.536098062992096,-0.354009181261063,-0.766339480876923,-0.551079213619232,-0.21517376601696,-0.806233048439026,-0.572757661342621,-0.27531835436821,-0.772106409072876,-0.519632995128632,-0.251721739768982,-0.816466510295868,-0.446410536766052,-0.396181344985962,-0.802345216274261,-0.0251289065927267,-0.575611531734467,0.817336916923523,-0.0943166241049767,-0.480934858322144,0.871668457984924, +-0.088472455739975,-0.397358447313309,0.913388609886169,0.00181443197652698,-0.536412239074707,0.843954145908356,-0.107557088136673,-0.367379128932953,0.923831105232239,-0.0943166241049767,-0.480934858322144,0.871668457984924,-0.0659535601735115,-0.236084416508675,0.969491720199585,-0.107557088136673,-0.367379128932953,0.923831105232239,0.0537251606583595,-0.462187528610229,0.88515317440033,0.0806417092680931,-0.468025386333466,0.880027830600739,-0.05472656711936,-0.513353526592255,0.856430470943451,-0.088472455739975,-0.397358447313309,0.913388609886169,0.00351991388015449,-0.148171290755272,0.98895537853241,-0.0659535601735115,-0.236084416508675,0.969491720199585,0.216062158346176,-0.412168949842453,0.885117948055267,0.313479363918304,-0.507105886936188,0.802853763103485,0.329131513834,-0.483216881752014,0.811279058456421,0.480375647544861,-0.513790965080261,0.710814952850342,0.526469588279724,-0.59919285774231,0.603156268596649,0.450107723474503,-0.652853727340698,0.609249413013458,0.480375647544861,-0.513790965080261,0.710814952850342,0.122733242809772,-0.528954744338989,0.839728057384491,0.0806417092680931,-0.468025386333466,0.880027830600739,0.329131513834,-0.483216881752014,0.811279058456421,0.629538416862488,-0.256962686777115,0.73324716091156,0.623132705688477,-0.116109080612659,0.773449540138245,0.759950459003448,-0.292904704809189,0.580242991447449,0.608703970909119,-0.572503626346588,0.549289405345917,0.675490915775299,-0.575444936752319,0.461058527231216,0.613550961017609,-0.63726419210434,0.466314524412155,0.683378100395203,-0.628400087356567,0.371628284454346,0.675490915775299,-0.575444936752319,0.461058527231216,0.721532166004181,-0.574814915657043,0.385977953672409,0.608703970909119,-0.572503626346588,0.549289405345917,0.53700315952301,-0.683752179145813,0.494075298309326,0.526469588279724,-0.59919285774231,0.603156268596649,0.192503228783607,-0.180916011333466,0.96447491645813,-0.0121894469484687,-0.0428844951093197,0.999005615711212,0.196335032582283,-0.270916432142258,0.942367613315582,0.196335032582283,-0.270916432142258,0.942367613315582, +0.00351991388015449,-0.148171290755272,0.98895537853241,0.216062158346176,-0.412168949842453,0.885117948055267,0.715359747409821,-0.448115944862366,-0.536145865917206,0.608795046806335,-0.472375422716141,-0.637361645698547,0.704381108283997,-0.528172612190247,-0.47421595454216,0.704381108283997,-0.528172612190247,-0.47421595454216,0.714557826519012,-0.542901217937469,-0.441208809614182,0.74986457824707,-0.515440404415131,-0.41475784778595,0.881447494029999,-0.262430757284164,-0.392657995223999,0.855578243732452,-0.359561324119568,-0.372426390647888,0.863585472106934,-0.405413925647736,-0.299765855073929,0.881447494029999,-0.262430757284164,-0.392657995223999,0.877370119094849,-0.206136137247086,-0.433277606964111,0.88873153924942,-0.097435288131237,-0.447953760623932,0.83558189868927,-0.0303394868969917,-0.548527419567108,0.840565145015717,-0.0148213813081384,-0.541507542133331,0.88873153924942,-0.097435288131237,-0.447953760623932,0.775001525878906,-0.491844028234482,-0.39681476354599,0.74986457824707,-0.515440404415131,-0.41475784778595,0.796044170856476,-0.514640212059021,-0.318526238203049,0.824313044548035,-0.431433171033859,-0.366569608449936,0.796044170856476,-0.514640212059021,-0.318526238203049,0.842212855815887,-0.459305852651596,-0.28233939409256,0.842212855815887,-0.459305852651596,-0.28233939409256,0.863585472106934,-0.405413925647736,-0.299765855073929,0.855578243732452,-0.359561324119568,-0.372426390647888,0.487609356641769,-0.529550015926361,-0.694128036499023,0.585298299789429,-0.475986659526825,-0.656401097774506,0.387371033430099,-0.61861515045166,-0.68356329202652,0.83558189868927,-0.0303394868969917,-0.548527419567108,0.727574527263641,-0.0179539863020182,-0.685793578624725,0.724030733108521,0.00233395560644567,-0.68976366519928,0.727574527263641,-0.0179539863020182,-0.685793578624725,0.63328629732132,-0.0659580454230309,-0.771101713180542,0.724030733108521,0.00233395560644567,-0.68976366519928,0.682728409767151,-0.0885255485773087,-0.725289583206177,0.63328629732132,-0.0659580454230309,-0.771101713180542, +0.642770230770111,-0.0647293031215668,-0.763319313526154,0.570565223693848,-0.23422047495842,-0.787144184112549,0.614814877510071,-0.215035825967789,-0.758789896965027,0.642770230770111,-0.0647293031215668,-0.763319313526154,0.498800933361053,-0.460049092769623,-0.73454225063324,0.452427715063095,-0.551249623298645,-0.701022684574127,0.637105584144592,-0.35523921251297,-0.684033215045929,0.570565223693848,-0.23422047495842,-0.787144184112549,0.498800933361053,-0.460049092769623,-0.73454225063324,0.614814877510071,-0.215035825967789,-0.758789896965027,0.387371033430099,-0.61861515045166,-0.68356329202652,0.585298299789429,-0.475986659526825,-0.656401097774506,0.452427715063095,-0.551249623298645,-0.701022684574127,0.295208424329758,-0.394090056419373,-0.870370507240295,0.258817255496979,-0.514311671257019,-0.817616641521454,0.412191420793533,-0.434599816799164,-0.800762832164764,0.295208424329758,-0.394090056419373,-0.870370507240295,0.412191420793533,-0.434599816799164,-0.800762832164764,0.349255561828613,-0.406838774681091,-0.844098687171936,0.30616706609726,-0.345672696828842,-0.887001693248749,0.349255561828613,-0.406838774681091,-0.844098687171936,0.317352145910263,-0.338530242443085,-0.8858243227005,0.368264138698578,-0.567109405994415,-0.736728072166443,0.308135598897934,-0.606259822845459,-0.733144879341125,0.345489770174026,-0.592032432556152,-0.72810310125351,0.405248880386353,-0.51561051607132,-0.754929780960083,0.258817255496979,-0.514311671257019,-0.817616641521454,0.308135598897934,-0.606259822845459,-0.733144879341125,0.345489770174026,-0.592032432556152,-0.72810310125351,0.387371033430099,-0.61861515045166,-0.68356329202652,0.368264138698578,-0.567109405994415,-0.736728072166443,0.217093214392662,0.163153573870659,-0.962419509887695,-0.0524872317910194,0.205522656440735,-0.977243781089783,0.232146680355072,0.048180777579546,-0.971486687660217,0.65590500831604,-0.188016131520271,-0.731052935123444,0.232146680355072,0.048180777579546,-0.971486687660217,0.501246392726898,-0.204680383205414,-0.840748369693756, +0.65590500831604,-0.188016131520271,-0.731052935123444,0.501246392726898,-0.204680383205414,-0.840748369693756,0.715359747409821,-0.448115944862366,-0.536145865917206,0.945410013198853,0.0189214702695608,-0.325333297252655,0.952552258968353,0.141694918274879,-0.269381940364838,0.981934309005737,-0.00382100674323738,-0.189183220267296,0.918938398361206,0.144240841269493,-0.36707866191864,0.945410013198853,0.0189214702695608,-0.325333297252655,0.871302008628845,0.051984217017889,-0.487985998392105,0.966576933860779,0.186932191252708,-0.175457194447517,0.990147352218628,0.0777248293161392,-0.116477012634277,0.952552258968353,0.141694918274879,-0.269381940364838,0.886533319950104,-0.0742380917072296,-0.456669747829437,0.820408523082733,-0.0599344372749329,-0.568627893924713,0.871302008628845,0.051984217017889,-0.487985998392105,0.807383060455322,-0.116387262940407,-0.578434586524963,0.795843362808228,-0.0662463754415512,-0.60186755657196,0.766763687133789,0.0709763988852501,-0.637993454933167,0.764601349830627,-0.181833192706108,-0.618321359157562,0.745506882667542,0.00631246343255043,-0.666467905044556,0.795843362808228,-0.0662463754415512,-0.60186755657196,0.820408523082733,-0.0599344372749329,-0.568627893924713,0.843016505241394,-0.230770587921143,-0.48586830496788,0.807383060455322,-0.116387262940407,-0.578434586524963,0.764601349830627,-0.181833192706108,-0.618321359157562,0.717784821987152,-0.249816358089447,-0.649905145168304,0.663875222206116,-0.10013435781002,-0.741109073162079,0.565549612045288,-0.15399058163166,-0.810210049152374,0.663875222206116,-0.10013435781002,-0.741109073162079,0.647245824337006,-0.257303327322006,-0.717542767524719,0.449091136455536,-0.0880545452237129,-0.889136373996735,0.427278518676758,-0.187987834215164,-0.884360551834106,0.336494088172913,-0.0728471651673317,-0.938863635063171,0.336494088172913,-0.0728471651673317,-0.938863635063171,0.375511199235916,-0.214194223284721,-0.901727259159088,0.270029693841934,-0.0304348692297935,-0.962370812892914,0.146349027752876,0.143113002181053,-0.978825986385345, +0.270029693841934,-0.0304348692297935,-0.962370812892914,0.201057642698288,0.0748896449804306,-0.9767125248909,0.201057642698288,0.0748896449804306,-0.9767125248909,0.105127446353436,0.0741541236639023,-0.991690099239349,0.0713405907154083,0.229746177792549,-0.970632314682007,0.536885440349579,-0.243665963411331,-0.807700872421265,0.449091136455536,-0.0880545452237129,-0.889136373996735,0.565549612045288,-0.15399058163166,-0.810210049152374,-0.0903855040669441,0.0600784122943878,-0.994093060493469,-0.0524872317910194,0.205522656440735,-0.977243781089783,-0.0418163314461708,0.158656731247902,-0.986447870731354,-0.0418163314461708,0.158656731247902,-0.986447870731354,0.105127446353436,0.0741541236639023,-0.991690099239349,-0.0137244081124663,-0.0753426849842072,-0.997063219547272,0.721905589103699,0.0816565454006195,0.687156736850739,0.585302233695984,0.208884343504906,0.783446550369263,0.635242342948914,0.0744057297706604,0.768720209598541,0.928299009799957,0.0815792456269264,0.362775087356567,0.971246361732483,0.0719986781477928,0.226928129792213,0.9161337018013,0.221801534295082,0.333920657634735,0.885141730308533,0.0265566892921925,0.46456304192543,0.934035003185272,-0.00426604505628347,0.357155978679657,0.874746382236481,0.124634958803654,0.468278586864471,0.928299009799957,0.0815792456269264,0.362775087356567,0.874746382236481,0.124634958803654,0.468278586864471,0.934035003185272,-0.00426604505628347,0.357155978679657,0.721905589103699,0.0816565454006195,0.687156736850739,0.795427083969116,-0.032590601593256,0.605172216892242,0.816955268383026,0.070244088768959,0.572406888008118,0.844694972038269,-0.0803760141134262,0.529178559780121,0.885141730308533,0.0265566892921925,0.46456304192543,0.816955268383026,0.070244088768959,0.572406888008118,0.982653260231018,0.163663983345032,0.0872155949473381,0.971246361732483,0.0719986781477928,0.226928129792213,0.991617679595947,0.0602521300315857,0.114297576248646,0.982653260231018,0.163663983345032,0.0872155949473381,0.998400866985321,0.053094319999218,0.0194070227444172, +0.985050559043884,0.159180924296379,-0.0658538267016411,0.990147352218628,0.0777248293161392,-0.116477012634277,0.966576933860779,0.186932191252708,-0.175457194447517,0.985050559043884,0.159180924296379,-0.0658538267016411,0.192503228783607,-0.180916011333466,0.96447491645813,0.342073321342468,-0.248570680618286,0.906199991703033,0.228439480066299,-0.0878774225711823,0.969583868980408,0.228439480066299,-0.0878774225711823,0.969583868980408,0.406863778829575,-0.228568822145462,0.884430885314941,0.249122470617294,-0.0611523725092411,0.966539323329926,0.46495795249939,-0.0765464380383492,0.882017374038696,0.410979896783829,-0.146752506494522,0.899755001068115,0.528576493263245,-0.246018037199974,0.812454223632813,0.46495795249939,-0.0765464380383492,0.882017374038696,0.528576493263245,-0.246018037199974,0.812454223632813,0.543084681034088,-0.238042965531349,0.805229425430298,0.471483290195465,-0.104091204702854,0.875710248947144,0.543084681034088,-0.238042965531349,0.805229425430298,0.536099195480347,-0.263189733028412,0.80207771062851,0.406863778829575,-0.228568822145462,0.884430885314941,0.410979896783829,-0.146752506494522,0.899755001068115,0.249122470617294,-0.0611523725092411,0.966539323329926,0.471483290195465,-0.104091204702854,0.875710248947144,0.536099195480347,-0.263189733028412,0.80207771062851,0.525615215301514,-0.155961781740189,0.836304008960724,0.525615215301514,-0.155961781740189,0.836304008960724,0.514600872993469,-0.0630413144826889,0.855109095573425,0.424841791391373,-0.0593523569405079,0.903319656848907,0.582208216190338,0.0179835129529238,0.812840700149536,0.45429590344429,0.0566424243152142,0.889048278331757,0.514600872993469,-0.0630413144826889,0.855109095573425,0.582208216190338,0.0179835129529238,0.812840700149536,0.635242342948914,0.0744057297706604,0.768720209598541,0.504252254962921,0.173843219876289,0.845877051353455,-0.512227177619934,-0.121180310845375,-0.850257873535156,-0.579700529575348,-0.0822879374027252,-0.810663819313049,-0.551079213619232,-0.21517376601696,-0.806233048439026,-0.572757661342621,-0.27531835436821,-0.772106409072876, +-0.551079213619232,-0.21517376601696,-0.806233048439026,-0.593778491020203,-0.157552883028984,-0.789052546024323,-0.606544196605682,-0.19389297068119,-0.771044492721558,-0.519632995128632,-0.251721739768982,-0.816466510295868,-0.572757661342621,-0.27531835436821,-0.772106409072876,-0.0943166241049767,-0.480934858322144,0.871668457984924,-0.0251289065927267,-0.575611531734467,0.817336916923523,0.10031683743,-0.635051667690277,0.765928030014038,-0.05472656711936,-0.513353526592255,0.856430470943451,-0.0251289065927267,-0.575611531734467,0.817336916923523,-0.088472455739975,-0.397358447313309,0.913388609886169,0.106906495988369,-0.579883098602295,0.807654917240143,-0.107557088136673,-0.367379128932953,0.923831105232239,0.00181443197652698,-0.536412239074707,0.843954145908356,0.00181443197652698,-0.536412239074707,0.843954145908356,-0.0943166241049767,-0.480934858322144,0.871668457984924,0.10031683743,-0.635051667690277,0.765928030014038,0.0537251606583595,-0.462187528610229,0.88515317440033,-0.107557088136673,-0.367379128932953,0.923831105232239,0.106906495988369,-0.579883098602295,0.807654917240143,0.0537251606583595,-0.462187528610229,0.88515317440033,0.216062158346176,-0.412168949842453,0.885117948055267,-0.0659535601735115,-0.236084416508675,0.969491720199585,-0.05472656711936,-0.513353526592255,0.856430470943451,0.0806417092680931,-0.468025386333466,0.880027830600739,-0.000636946177110076,-0.572741806507111,0.819735467433929,0.313479363918304,-0.507105886936188,0.802853763103485,0.122733242809772,-0.528954744338989,0.839728057384491,0.329131513834,-0.483216881752014,0.811279058456421,0.313479363918304,-0.507105886936188,0.802853763103485,0.480375647544861,-0.513790965080261,0.710814952850342,0.323890835046768,-0.642942667007446,0.694060087203979,0.444243013858795,-0.749525666236877,0.490774154663086,0.450107723474503,-0.652853727340698,0.609249413013458,0.526469588279724,-0.59919285774231,0.603156268596649,0.450107723474503,-0.652853727340698,0.609249413013458,0.323890835046768,-0.642942667007446,0.694060087203979, +0.480375647544861,-0.513790965080261,0.710814952850342,0.122733242809772,-0.528954744338989,0.839728057384491,-0.000636946177110076,-0.572741806507111,0.819735467433929,0.0806417092680931,-0.468025386333466,0.880027830600739,0.675490915775299,-0.575444936752319,0.461058527231216,0.683378100395203,-0.628400087356567,0.371628284454346,0.613550961017609,-0.63726419210434,0.466314524412155,0.608703970909119,-0.572503626346588,0.549289405345917,0.613550961017609,-0.63726419210434,0.466314524412155,0.53700315952301,-0.683752179145813,0.494075298309326,0.444243013858795,-0.749525666236877,0.490774154663086,0.526469588279724,-0.59919285774231,0.603156268596649,0.53700315952301,-0.683752179145813,0.494075298309326,0.192503228783607,-0.180916011333466,0.96447491645813,0.196335032582283,-0.270916432142258,0.942367613315582,0.373691588640213,-0.398325502872467,0.837670147418976,0.196335032582283,-0.270916432142258,0.942367613315582,0.216062158346176,-0.412168949842453,0.885117948055267,0.352824985980988,-0.475119560956955,0.806086719036102,0.715359747409821,-0.448115944862366,-0.536145865917206,0.50108790397644,-0.320856213569641,-0.803717613220215,0.608795046806335,-0.472375422716141,-0.637361645698547,0.608795046806335,-0.472375422716141,-0.637361645698547,0.714557826519012,-0.542901217937469,-0.441208809614182,0.704381108283997,-0.528172612190247,-0.47421595454216,0.714557826519012,-0.542901217937469,-0.441208809614182,0.796044170856476,-0.514640212059021,-0.318526238203049,0.74986457824707,-0.515440404415131,-0.41475784778595,0.861006677150726,-0.362537324428558,-0.356698513031006,0.881447494029999,-0.262430757284164,-0.392657995223999,0.863585472106934,-0.405413925647736,-0.299765855073929,0.881447494029999,-0.262430757284164,-0.392657995223999,0.861006677150726,-0.362537324428558,-0.356698513031006,0.877370119094849,-0.206136137247086,-0.433277606964111,0.83558189868927,-0.0303394868969917,-0.548527419567108,0.88873153924942,-0.097435288131237,-0.447953760623932,0.877370119094849,-0.206136137247086,-0.433277606964111,0.806807577610016,-0.550165295600891,-0.215359032154083, +0.842212855815887,-0.459305852651596,-0.28233939409256,0.796044170856476,-0.514640212059021,-0.318526238203049,0.842212855815887,-0.459305852651596,-0.28233939409256,0.822499096393585,-0.517516911029816,-0.235947743058205,0.863585472106934,-0.405413925647736,-0.299765855073929,0.806996881961823,-0.174229457974434,-0.564269363880157,0.727574527263641,-0.0179539863020182,-0.685793578624725,0.83558189868927,-0.0303394868969917,-0.548527419567108,0.721363842487335,-0.202624693512917,-0.662251651287079,0.63328629732132,-0.0659580454230309,-0.771101713180542,0.727574527263641,-0.0179539863020182,-0.685793578624725,0.63328629732132,-0.0659580454230309,-0.771101713180542,0.570565223693848,-0.23422047495842,-0.787144184112549,0.642770230770111,-0.0647293031215668,-0.763319313526154,0.452427715063095,-0.551249623298645,-0.701022684574127,0.498800933361053,-0.460049092769623,-0.73454225063324,0.400372922420502,-0.633146703243256,-0.66243988275528,0.528621315956116,-0.475803375244141,-0.702972590923309,0.498800933361053,-0.460049092769623,-0.73454225063324,0.570565223693848,-0.23422047495842,-0.787144184112549,0.387371033430099,-0.61861515045166,-0.68356329202652,0.452427715063095,-0.551249623298645,-0.701022684574127,0.372606337070465,-0.601373136043549,-0.706763505935669,0.405248880386353,-0.51561051607132,-0.754929780960083,0.412191420793533,-0.434599816799164,-0.800762832164764,0.258817255496979,-0.514311671257019,-0.817616641521454,0.438823968172073,-0.459088683128357,-0.772444784641266,0.349255561828613,-0.406838774681091,-0.844098687171936,0.412191420793533,-0.434599816799164,-0.800762832164764,0.349255561828613,-0.406838774681091,-0.844098687171936,0.247142925858498,-0.480599373579025,-0.841394364833832,0.317352145910263,-0.338530242443085,-0.8858243227005,0.368264138698578,-0.567109405994415,-0.736728072166443,0.442511141300201,-0.484659314155579,-0.754512488842011,0.308135598897934,-0.606259822845459,-0.733144879341125,0.405248880386353,-0.51561051607132,-0.754929780960083,0.308135598897934,-0.606259822845459,-0.733144879341125, +0.442511141300201,-0.484659314155579,-0.754512488842011,0.372606337070465,-0.601373136043549,-0.706763505935669,0.368264138698578,-0.567109405994415,-0.736728072166443,0.387371033430099,-0.61861515045166,-0.68356329202652,0.00512781366705894,0.0543525703251362,-0.998508632183075,0.232146680355072,0.048180777579546,-0.971486687660217,-0.0524872317910194,0.205522656440735,-0.977243781089783,0.196924954652786,-0.0667613074183464,-0.978142857551575,0.501246392726898,-0.204680383205414,-0.840748369693756,0.232146680355072,0.048180777579546,-0.971486687660217,0.501246392726898,-0.204680383205414,-0.840748369693756,0.50108790397644,-0.320856213569641,-0.803717613220215,0.715359747409821,-0.448115944862366,-0.536145865917206,0.981934309005737,-0.00382100674323738,-0.189183220267296,0.952552258968353,0.141694918274879,-0.269381940364838,0.990147352218628,0.0777248293161392,-0.116477012634277,0.981934309005737,-0.00382100674323738,-0.189183220267296,0.97320431470871,-0.121642075479031,-0.195131823420525,0.945410013198853,0.0189214702695608,-0.325333297252655,0.945410013198853,0.0189214702695608,-0.325333297252655,0.93011999130249,-0.0817679390311241,-0.358037263154984,0.871302008628845,0.051984217017889,-0.487985998392105,0.886533319950104,-0.0742380917072296,-0.456669747829437,0.896539270877838,-0.195087492465973,-0.397691041231155,0.820408523082733,-0.0599344372749329,-0.568627893924713,0.886533319950104,-0.0742380917072296,-0.456669747829437,0.871302008628845,0.051984217017889,-0.487985998392105,0.93011999130249,-0.0817679390311241,-0.358037263154984,0.807383060455322,-0.116387262940407,-0.578434586524963,0.809250950813293,-0.234953805804253,-0.538432419300079,0.795843362808228,-0.0662463754415512,-0.60186755657196,0.809250950813293,-0.234953805804253,-0.538432419300079,0.764601349830627,-0.181833192706108,-0.618321359157562,0.795843362808228,-0.0662463754415512,-0.60186755657196,0.843016505241394,-0.230770587921143,-0.48586830496788,0.820408523082733,-0.0599344372749329,-0.568627893924713,0.896539270877838,-0.195087492465973,-0.397691041231155, +0.809250950813293,-0.234953805804253,-0.538432419300079,0.807383060455322,-0.116387262940407,-0.578434586524963,0.843016505241394,-0.230770587921143,-0.48586830496788,0.717784821987152,-0.249816358089447,-0.649905145168304,0.764601349830627,-0.181833192706108,-0.618321359157562,0.751893639564514,-0.312756925821304,-0.580378353595734,0.663875222206116,-0.10013435781002,-0.741109073162079,0.717784821987152,-0.249816358089447,-0.649905145168304,0.647245824337006,-0.257303327322006,-0.717542767524719,0.647245824337006,-0.257303327322006,-0.717542767524719,0.536885440349579,-0.243665963411331,-0.807700872421265,0.565549612045288,-0.15399058163166,-0.810210049152374,0.427278518676758,-0.187987834215164,-0.884360551834106,0.449091136455536,-0.0880545452237129,-0.889136373996735,0.536885440349579,-0.243665963411331,-0.807700872421265,0.427278518676758,-0.187987834215164,-0.884360551834106,0.375511199235916,-0.214194223284721,-0.901727259159088,0.336494088172913,-0.0728471651673317,-0.938863635063171,0.270029693841934,-0.0304348692297935,-0.962370812892914,0.375511199235916,-0.214194223284721,-0.901727259159088,0.270713806152344,-0.132730573415756,-0.953465521335602,0.270029693841934,-0.0304348692297935,-0.962370812892914,0.270713806152344,-0.132730573415756,-0.953465521335602,0.201057642698288,0.0748896449804306,-0.9767125248909,0.201057642698288,0.0748896449804306,-0.9767125248909,0.270713806152344,-0.132730573415756,-0.953465521335602,0.105127446353436,0.0741541236639023,-0.991690099239349,-0.0903855040669441,0.0600784122943878,-0.994093060493469,0.00512781366705894,0.0543525703251362,-0.998508632183075,-0.0524872317910194,0.205522656440735,-0.977243781089783,-0.0137244081124663,-0.0753426849842072,-0.997063219547272,-0.0903855040669441,0.0600784122943878,-0.994093060493469,-0.0418163314461708,0.158656731247902,-0.986447870731354,-0.0137244081124663,-0.0753426849842072,-0.997063219547272,0.105127446353436,0.0741541236639023,-0.991690099239349,0.108445569872856,-0.0887814238667488,-0.990129947662354,0.721905589103699,0.0816565454006195,0.687156736850739, +0.635242342948914,0.0744057297706604,0.768720209598541,0.697375535964966,-0.0511133521795273,0.71488082408905,0.928299009799957,0.0815792456269264,0.362775087356567,0.964976489543915,-0.0343190468847752,0.260081768035889,0.971246361732483,0.0719986781477928,0.226928129792213,0.920877695083618,-0.0929848030209541,0.378599733114243,0.934035003185272,-0.00426604505628347,0.357155978679657,0.885141730308533,0.0265566892921925,0.46456304192543,0.934035003185272,-0.00426604505628347,0.357155978679657,0.964976489543915,-0.0343190468847752,0.260081768035889,0.928299009799957,0.0815792456269264,0.362775087356567,0.782945394515991,-0.121346026659012,0.610140562057495,0.795427083969116,-0.032590601593256,0.605172216892242,0.721905589103699,0.0816565454006195,0.687156736850739,0.844694972038269,-0.0803760141134262,0.529178559780121,0.816955268383026,0.070244088768959,0.572406888008118,0.795427083969116,-0.032590601593256,0.605172216892242,0.844694972038269,-0.0803760141134262,0.529178559780121,0.920877695083618,-0.0929848030209541,0.378599733114243,0.885141730308533,0.0265566892921925,0.46456304192543,0.991617679595947,0.0602521300315857,0.114297576248646,0.971246361732483,0.0719986781477928,0.226928129792213,0.990252137184143,-0.024143286049366,0.137177810072899,0.991617679595947,0.0602521300315857,0.114297576248646,0.998400866985321,0.053094319999218,0.0194070227444172,0.982653260231018,0.163663983345032,0.0872155949473381,0.985050559043884,0.159180924296379,-0.0658538267016411,0.998400866985321,0.053094319999218,0.0194070227444172,0.990147352218628,0.0777248293161392,-0.116477012634277,0.373691588640213,-0.398325502872467,0.837670147418976,0.342073321342468,-0.248570680618286,0.906199991703033,0.192503228783607,-0.180916011333466,0.96447491645813,0.435989797115326,-0.313039064407349,0.843753099441528,0.228439480066299,-0.0878774225711823,0.969583868980408,0.342073321342468,-0.248570680618286,0.906199991703033,0.228439480066299,-0.0878774225711823,0.969583868980408,0.435989797115326,-0.313039064407349,0.843753099441528,0.406863778829575,-0.228568822145462,0.884430885314941, +0.406863778829575,-0.228568822145462,0.884430885314941,0.528576493263245,-0.246018037199974,0.812454223632813,0.410979896783829,-0.146752506494522,0.899755001068115,0.528576493263245,-0.246018037199974,0.812454223632813,0.589783608913422,-0.319070547819138,0.741855204105377,0.543084681034088,-0.238042965531349,0.805229425430298,0.543084681034088,-0.238042965531349,0.805229425430298,0.518578290939331,-0.348561465740204,0.780756950378418,0.536099195480347,-0.263189733028412,0.80207771062851,0.525615215301514,-0.155961781740189,0.836304008960724,0.536099195480347,-0.263189733028412,0.80207771062851,0.689706861972809,-0.18368424475193,0.700403034687042,0.525615215301514,-0.155961781740189,0.836304008960724,0.615598261356354,-0.0957904458045959,0.782216608524323,0.514600872993469,-0.0630413144826889,0.855109095573425,0.514600872993469,-0.0630413144826889,0.855109095573425,0.615598261356354,-0.0957904458045959,0.782216608524323,0.582208216190338,0.0179835129529238,0.812840700149536,0.697375535964966,-0.0511133521795273,0.71488082408905,0.635242342948914,0.0744057297706604,0.768720209598541,0.582208216190338,0.0179835129529238,0.812840700149536,-0.579700529575348,-0.0822879374027252,-0.810663819313049,-0.593778491020203,-0.157552883028984,-0.789052546024323,-0.551079213619232,-0.21517376601696,-0.806233048439026,-0.593778491020203,-0.157552883028984,-0.789052546024323,-0.606544196605682,-0.19389297068119,-0.771044492721558,-0.572757661342621,-0.27531835436821,-0.772106409072876,-0.606544196605682,-0.19389297068119,-0.771044492721558,-0.602423131465912,-0.143957927823067,-0.785087466239929,-0.519632995128632,-0.251721739768982,-0.816466510295868,0.158349707722664,-0.704156816005707,0.692162096500397,0.10031683743,-0.635051667690277,0.765928030014038,-0.0251289065927267,-0.575611531734467,0.817336916923523,-0.05472656711936,-0.513353526592255,0.856430470943451,0.0186328887939453,-0.626453936100006,0.779235601425171,-0.0251289065927267,-0.575611531734467,0.817336916923523,0.10031683743,-0.635051667690277,0.765928030014038,0.106906495988369,-0.579883098602295,0.807654917240143, +0.00181443197652698,-0.536412239074707,0.843954145908356,0.0537251606583595,-0.462187528610229,0.88515317440033,0.106906495988369,-0.579883098602295,0.807654917240143,0.271342068910599,-0.605994284152985,0.747759461402893,0.216062158346176,-0.412168949842453,0.885117948055267,0.0537251606583595,-0.462187528610229,0.88515317440033,0.271342068910599,-0.605994284152985,0.747759461402893,-0.000636946177110076,-0.572741806507111,0.819735467433929,0.0186328887939453,-0.626453936100006,0.779235601425171,-0.05472656711936,-0.513353526592255,0.856430470943451,0.313479363918304,-0.507105886936188,0.802853763103485,0.172895133495331,-0.598947823047638,0.781900644302368,0.122733242809772,-0.528954744338989,0.839728057384491,0.313479363918304,-0.507105886936188,0.802853763103485,0.323890835046768,-0.642942667007446,0.694060087203979,0.172895133495331,-0.598947823047638,0.781900644302368,0.444243013858795,-0.749525666236877,0.490774154663086,0.378359794616699,-0.750392556190491,0.541991412639618,0.450107723474503,-0.652853727340698,0.609249413013458,0.450107723474503,-0.652853727340698,0.609249413013458,0.378359794616699,-0.750392556190491,0.541991412639618,0.323890835046768,-0.642942667007446,0.694060087203979,0.122733242809772,-0.528954744338989,0.839728057384491,0.0646216496825218,-0.643776595592499,0.762479901313782,-0.000636946177110076,-0.572741806507111,0.819735467433929,0.683378100395203,-0.628400087356567,0.371628284454346,0.583117246627808,-0.721384167671204,0.373602896928787,0.613550961017609,-0.63726419210434,0.466314524412155,0.583117246627808,-0.721384167671204,0.373602896928787,0.53700315952301,-0.683752179145813,0.494075298309326,0.613550961017609,-0.63726419210434,0.466314524412155,0.444243013858795,-0.749525666236877,0.490774154663086,0.53700315952301,-0.683752179145813,0.494075298309326,0.468713045120239,-0.793812811374664,0.387516677379608,0.352824985980988,-0.475119560956955,0.806086719036102,0.373691588640213,-0.398325502872467,0.837670147418976,0.196335032582283,-0.270916432142258,0.942367613315582,0.352824985980988,-0.475119560956955,0.806086719036102, +0.216062158346176,-0.412168949842453,0.885117948055267,0.400345802307129,-0.605041801929474,0.688220500946045,0.318166732788086,-0.250744611024857,-0.914273977279663,0.608795046806335,-0.472375422716141,-0.637361645698547,0.50108790397644,-0.320856213569641,-0.803717613220215,0.608795046806335,-0.472375422716141,-0.637361645698547,0.610598683357239,-0.477953881025314,-0.631450057029724,0.714557826519012,-0.542901217937469,-0.441208809614182,0.729066550731659,-0.554203450679779,-0.401647001504898,0.796044170856476,-0.514640212059021,-0.318526238203049,0.714557826519012,-0.542901217937469,-0.441208809614182,0.861006677150726,-0.362537324428558,-0.356698513031006,0.863585472106934,-0.405413925647736,-0.299765855073929,0.822045743465424,-0.498806864023209,-0.274649769067764,0.877370119094849,-0.206136137247086,-0.433277606964111,0.861006677150726,-0.362537324428558,-0.356698513031006,0.779024839401245,-0.370465040206909,-0.505841672420502,0.83558189868927,-0.0303394868969917,-0.548527419567108,0.877370119094849,-0.206136137247086,-0.433277606964111,0.806996881961823,-0.174229457974434,-0.564269363880157,0.822499096393585,-0.517516911029816,-0.235947743058205,0.842212855815887,-0.459305852651596,-0.28233939409256,0.806807577610016,-0.550165295600891,-0.215359032154083,0.806807577610016,-0.550165295600891,-0.215359032154083,0.796044170856476,-0.514640212059021,-0.318526238203049,0.780349016189575,-0.57276839017868,-0.250981360673904,0.822045743465424,-0.498806864023209,-0.274649769067764,0.863585472106934,-0.405413925647736,-0.299765855073929,0.822499096393585,-0.517516911029816,-0.235947743058205,0.721363842487335,-0.202624693512917,-0.662251651287079,0.727574527263641,-0.0179539863020182,-0.685793578624725,0.806996881961823,-0.174229457974434,-0.564269363880157,0.721363842487335,-0.202624693512917,-0.662251651287079,0.64586079120636,-0.373824864625931,-0.665671527385712,0.63328629732132,-0.0659580454230309,-0.771101713180542,0.64586079120636,-0.373824864625931,-0.665671527385712,0.570565223693848,-0.23422047495842,-0.787144184112549, +0.63328629732132,-0.0659580454230309,-0.771101713180542,0.400372922420502,-0.633146703243256,-0.66243988275528,0.498800933361053,-0.460049092769623,-0.73454225063324,0.463600665330887,-0.63689136505127,-0.615989983081818,0.400372922420502,-0.633146703243256,-0.66243988275528,0.372606337070465,-0.601373136043549,-0.706763505935669,0.452427715063095,-0.551249623298645,-0.701022684574127,0.498800933361053,-0.460049092769623,-0.73454225063324,0.528621315956116,-0.475803375244141,-0.702972590923309,0.463600665330887,-0.63689136505127,-0.615989983081818,0.64586079120636,-0.373824864625931,-0.665671527385712,0.528621315956116,-0.475803375244141,-0.702972590923309,0.570565223693848,-0.23422047495842,-0.787144184112549,0.405248880386353,-0.51561051607132,-0.754929780960083,0.455215454101563,-0.445732057094574,-0.7707799077034,0.412191420793533,-0.434599816799164,-0.800762832164764,0.349255561828613,-0.406838774681091,-0.844098687171936,0.438823968172073,-0.459088683128357,-0.772444784641266,0.346874326467514,-0.49073600769043,-0.799284815788269,0.455215454101563,-0.445732057094574,-0.7707799077034,0.438823968172073,-0.459088683128357,-0.772444784641266,0.412191420793533,-0.434599816799164,-0.800762832164764,0.247142925858498,-0.480599373579025,-0.841394364833832,0.349255561828613,-0.406838774681091,-0.844098687171936,0.245955139398575,-0.456696957349777,-0.854946732521057,0.368264138698578,-0.567109405994415,-0.736728072166443,0.489543944597244,-0.304223746061325,-0.817186951637268,0.442511141300201,-0.484659314155579,-0.754512488842011,0.442511141300201,-0.484659314155579,-0.754512488842011,0.455215454101563,-0.445732057094574,-0.7707799077034,0.405248880386353,-0.51561051607132,-0.754929780960083,0.372606337070465,-0.601373136043549,-0.706763505935669,0.487128257751465,-0.336421728134155,-0.805931985378265,0.368264138698578,-0.567109405994415,-0.736728072166443,0.00512781366705894,0.0543525703251362,-0.998508632183075,0.196924954652786,-0.0667613074183464,-0.978142857551575,0.232146680355072,0.048180777579546,-0.971486687660217, +0.501246392726898,-0.204680383205414,-0.840748369693756,0.196924954652786,-0.0667613074183464,-0.978142857551575,0.50108790397644,-0.320856213569641,-0.803717613220215,0.981934309005737,-0.00382100674323738,-0.189183220267296,0.990147352218628,0.0777248293161392,-0.116477012634277,0.996931552886963,-0.0776026472449303,-0.0102608259767294,0.981934309005737,-0.00382100674323738,-0.189183220267296,0.996931552886963,-0.0776026472449303,-0.0102608259767294,0.97320431470871,-0.121642075479031,-0.195131823420525,0.97320431470871,-0.121642075479031,-0.195131823420525,0.950856387615204,-0.131683111190796,-0.280234962701797,0.945410013198853,0.0189214702695608,-0.325333297252655,0.945410013198853,0.0189214702695608,-0.325333297252655,0.950856387615204,-0.131683111190796,-0.280234962701797,0.93011999130249,-0.0817679390311241,-0.358037263154984,0.886533319950104,-0.0742380917072296,-0.456669747829437,0.93011999130249,-0.0817679390311241,-0.358037263154984,0.896539270877838,-0.195087492465973,-0.397691041231155,0.764601349830627,-0.181833192706108,-0.618321359157562,0.809250950813293,-0.234953805804253,-0.538432419300079,0.751893639564514,-0.312756925821304,-0.580378353595734,0.843016505241394,-0.230770587921143,-0.48586830496788,0.896539270877838,-0.195087492465973,-0.397691041231155,0.876858949661255,-0.303517580032349,-0.372820883989334,0.809250950813293,-0.234953805804253,-0.538432419300079,0.843016505241394,-0.230770587921143,-0.48586830496788,0.834208846092224,-0.287951797246933,-0.470296949148178,0.717784821987152,-0.249816358089447,-0.649905145168304,0.751893639564514,-0.312756925821304,-0.580378353595734,0.674086630344391,-0.344464153051376,-0.653415262699127,0.717784821987152,-0.249816358089447,-0.649905145168304,0.674086630344391,-0.344464153051376,-0.653415262699127,0.647245824337006,-0.257303327322006,-0.717542767524719,0.647245824337006,-0.257303327322006,-0.717542767524719,0.606369853019714,-0.363714814186096,-0.707125842571259,0.536885440349579,-0.243665963411331,-0.807700872421265,0.427278518676758,-0.187987834215164,-0.884360551834106, +0.536885440349579,-0.243665963411331,-0.807700872421265,0.460981547832489,-0.280907988548279,-0.841775834560394,0.375511199235916,-0.214194223284721,-0.901727259159088,0.427278518676758,-0.187987834215164,-0.884360551834106,0.460981547832489,-0.280907988548279,-0.841775834560394,0.270713806152344,-0.132730573415756,-0.953465521335602,0.375511199235916,-0.214194223284721,-0.901727259159088,0.33034211397171,-0.316352397203445,-0.889266610145569,0.108445569872856,-0.0887814238667488,-0.990129947662354,0.105127446353436,0.0741541236639023,-0.991690099239349,0.270713806152344,-0.132730573415756,-0.953465521335602,-0.00104737328365445,-0.0815749391913414,-0.996666610240936,0.00512781366705894,0.0543525703251362,-0.998508632183075,-0.0903855040669441,0.0600784122943878,-0.994093060493469,-0.0137244081124663,-0.0753426849842072,-0.997063219547272,-0.00104737328365445,-0.0815749391913414,-0.996666610240936,-0.0903855040669441,0.0600784122943878,-0.994093060493469,-0.0137244081124663,-0.0753426849842072,-0.997063219547272,0.108445569872856,-0.0887814238667488,-0.990129947662354,0.0686205923557281,-0.276107758283615,-0.958673894405365,0.721905589103699,0.0816565454006195,0.687156736850739,0.697375535964966,-0.0511133521795273,0.71488082408905,0.782945394515991,-0.121346026659012,0.610140562057495,0.964976489543915,-0.0343190468847752,0.260081768035889,0.990252137184143,-0.024143286049366,0.137177810072899,0.971246361732483,0.0719986781477928,0.226928129792213,0.920877695083618,-0.0929848030209541,0.378599733114243,0.963828563690186,-0.0792771875858307,0.25445881485939,0.934035003185272,-0.00426604505628347,0.357155978679657,0.934035003185272,-0.00426604505628347,0.357155978679657,0.963828563690186,-0.0792771875858307,0.25445881485939,0.964976489543915,-0.0343190468847752,0.260081768035889,0.844694972038269,-0.0803760141134262,0.529178559780121,0.795427083969116,-0.032590601593256,0.605172216892242,0.782945394515991,-0.121346026659012,0.610140562057495,0.920877695083618,-0.0929848030209541,0.378599733114243,0.844694972038269,-0.0803760141134262,0.529178559780121, +0.848965704441071,-0.167813152074814,0.50109475851059,0.991617679595947,0.0602521300315857,0.114297576248646,0.990252137184143,-0.024143286049366,0.137177810072899,0.998400866985321,0.053094319999218,0.0194070227444172,0.996931552886963,-0.0776026472449303,-0.0102608259767294,0.990147352218628,0.0777248293161392,-0.116477012634277,0.998400866985321,0.053094319999218,0.0194070227444172,0.435989797115326,-0.313039064407349,0.843753099441528,0.342073321342468,-0.248570680618286,0.906199991703033,0.373691588640213,-0.398325502872467,0.837670147418976,0.554500341415405,-0.363558441400528,0.748568296432495,0.406863778829575,-0.228568822145462,0.884430885314941,0.435989797115326,-0.313039064407349,0.843753099441528,0.406863778829575,-0.228568822145462,0.884430885314941,0.554500341415405,-0.363558441400528,0.748568296432495,0.528576493263245,-0.246018037199974,0.812454223632813,0.589783608913422,-0.319070547819138,0.741855204105377,0.528576493263245,-0.246018037199974,0.812454223632813,0.554500341415405,-0.363558441400528,0.748568296432495,0.589783608913422,-0.319070547819138,0.741855204105377,0.583804428577423,-0.346740365028381,0.734127521514893,0.543084681034088,-0.238042965531349,0.805229425430298,0.518578290939331,-0.348561465740204,0.780756950378418,0.543084681034088,-0.238042965531349,0.805229425430298,0.583804428577423,-0.346740365028381,0.734127521514893,0.536099195480347,-0.263189733028412,0.80207771062851,0.518578290939331,-0.348561465740204,0.780756950378418,0.559010684490204,-0.389998853206635,0.731715619564056,0.536099195480347,-0.263189733028412,0.80207771062851,0.682869911193848,-0.299759149551392,0.666207909584045,0.689706861972809,-0.18368424475193,0.700403034687042,0.525615215301514,-0.155961781740189,0.836304008960724,0.689706861972809,-0.18368424475193,0.700403034687042,0.615598261356354,-0.0957904458045959,0.782216608524323,0.697375535964966,-0.0511133521795273,0.71488082408905,0.582208216190338,0.0179835129529238,0.812840700149536,0.615598261356354,-0.0957904458045959,0.782216608524323,-0.579700529575348,-0.0822879374027252,-0.810663819313049, +-0.625492095947266,-0.0806195214390755,-0.776054084300995,-0.593778491020203,-0.157552883028984,-0.789052546024323,-0.606544196605682,-0.19389297068119,-0.771044492721558,-0.593778491020203,-0.157552883028984,-0.789052546024323,-0.625492095947266,-0.0806195214390755,-0.776054084300995,-0.625492095947266,-0.0806195214390755,-0.776054084300995,-0.602423131465912,-0.143957927823067,-0.785087466239929,-0.606544196605682,-0.19389297068119,-0.771044492721558,-0.519632995128632,-0.251721739768982,-0.816466510295868,-0.602423131465912,-0.143957927823067,-0.785087466239929,-0.431080013513565,-0.115305848419666,-0.894915878772736,0.158349707722664,-0.704156816005707,0.692162096500397,0.286384165287018,-0.702962398529053,0.651020705699921,0.10031683743,-0.635051667690277,0.765928030014038,0.0186328887939453,-0.626453936100006,0.779235601425171,0.158349707722664,-0.704156816005707,0.692162096500397,-0.0251289065927267,-0.575611531734467,0.817336916923523,0.10031683743,-0.635051667690277,0.765928030014038,0.286384165287018,-0.702962398529053,0.651020705699921,0.106906495988369,-0.579883098602295,0.807654917240143,0.286384165287018,-0.702962398529053,0.651020705699921,0.271342068910599,-0.605994284152985,0.747759461402893,0.106906495988369,-0.579883098602295,0.807654917240143,0.216062158346176,-0.412168949842453,0.885117948055267,0.271342068910599,-0.605994284152985,0.747759461402893,0.400345802307129,-0.605041801929474,0.688220500946045,-0.000636946177110076,-0.572741806507111,0.819735467433929,0.0706081315875053,-0.679350614547729,0.730408847332001,0.0186328887939453,-0.626453936100006,0.779235601425171,0.172895133495331,-0.598947823047638,0.781900644302368,0.0646216496825218,-0.643776595592499,0.762479901313782,0.122733242809772,-0.528954744338989,0.839728057384491,0.323890835046768,-0.642942667007446,0.694060087203979,0.164374172687531,-0.714577436447144,0.679970622062683,0.172895133495331,-0.598947823047638,0.781900644302368,0.378359794616699,-0.750392556190491,0.541991412639618,0.444243013858795,-0.749525666236877,0.490774154663086, +0.367212951183319,-0.812583208084106,0.452618092298508,0.378359794616699,-0.750392556190491,0.541991412639618,0.254773855209351,-0.761090636253357,0.596515834331512,0.323890835046768,-0.642942667007446,0.694060087203979,0.0646216496825218,-0.643776595592499,0.762479901313782,0.0706081315875053,-0.679350614547729,0.730408847332001,-0.000636946177110076,-0.572741806507111,0.819735467433929,0.583117246627808,-0.721384167671204,0.373602896928787,0.683378100395203,-0.628400087356567,0.371628284454346,0.660230159759521,-0.685432732105255,0.307047158479691,0.53700315952301,-0.683752179145813,0.494075298309326,0.583117246627808,-0.721384167671204,0.373602896928787,0.468713045120239,-0.793812811374664,0.387516677379608,0.444243013858795,-0.749525666236877,0.490774154663086,0.468713045120239,-0.793812811374664,0.387516677379608,0.35479462146759,-0.851547241210938,0.385989516973495,0.352824985980988,-0.475119560956955,0.806086719036102,0.454722344875336,-0.558659732341766,0.693633079528809,0.373691588640213,-0.398325502872467,0.837670147418976,0.400345802307129,-0.605041801929474,0.688220500946045,0.454722344875336,-0.558659732341766,0.693633079528809,0.352824985980988,-0.475119560956955,0.806086719036102,0.330021530389786,-0.315435022115707,-0.889711380004883,0.608795046806335,-0.472375422716141,-0.637361645698547,0.318166732788086,-0.250744611024857,-0.914273977279663,0.196924954652786,-0.0667613074183464,-0.978142857551575,0.318166732788086,-0.250744611024857,-0.914273977279663,0.50108790397644,-0.320856213569641,-0.803717613220215,0.608795046806335,-0.472375422716141,-0.637361645698547,0.330021530389786,-0.315435022115707,-0.889711380004883,0.610598683357239,-0.477953881025314,-0.631450057029724,0.729066550731659,-0.554203450679779,-0.401647001504898,0.714557826519012,-0.542901217937469,-0.441208809614182,0.610598683357239,-0.477953881025314,-0.631450057029724,0.729066550731659,-0.554203450679779,-0.401647001504898,0.780349016189575,-0.57276839017868,-0.250981360673904,0.796044170856476,-0.514640212059021,-0.318526238203049, +0.822045743465424,-0.498806864023209,-0.274649769067764,0.761631667613983,-0.51776248216629,-0.389665305614471,0.861006677150726,-0.362537324428558,-0.356698513031006,0.761631667613983,-0.51776248216629,-0.389665305614471,0.779024839401245,-0.370465040206909,-0.505841672420502,0.861006677150726,-0.362537324428558,-0.356698513031006,0.877370119094849,-0.206136137247086,-0.433277606964111,0.779024839401245,-0.370465040206909,-0.505841672420502,0.806996881961823,-0.174229457974434,-0.564269363880157,0.822499096393585,-0.517516911029816,-0.235947743058205,0.806807577610016,-0.550165295600891,-0.215359032154083,0.764689028263092,-0.615058124065399,-0.192234426736832,0.731515288352966,-0.610370516777039,-0.303863555192947,0.806807577610016,-0.550165295600891,-0.215359032154083,0.780349016189575,-0.57276839017868,-0.250981360673904,0.822045743465424,-0.498806864023209,-0.274649769067764,0.822499096393585,-0.517516911029816,-0.235947743058205,0.746797800064087,-0.628939628601074,-0.216166436672211,0.721363842487335,-0.202624693512917,-0.662251651287079,0.806996881961823,-0.174229457974434,-0.564269363880157,0.779024839401245,-0.370465040206909,-0.505841672420502,0.64586079120636,-0.373824864625931,-0.665671527385712,0.721363842487335,-0.202624693512917,-0.662251651287079,0.779024839401245,-0.370465040206909,-0.505841672420502,0.400372922420502,-0.633146703243256,-0.66243988275528,0.463600665330887,-0.63689136505127,-0.615989983081818,0.44012239575386,-0.669864416122437,-0.597974598407745,0.509669423103333,-0.525903105735779,-0.680927872657776,0.372606337070465,-0.601373136043549,-0.706763505935669,0.400372922420502,-0.633146703243256,-0.66243988275528,0.584705889225006,-0.55376809835434,-0.592840492725372,0.463600665330887,-0.63689136505127,-0.615989983081818,0.528621315956116,-0.475803375244141,-0.702972590923309,0.64586079120636,-0.373824864625931,-0.665671527385712,0.584705889225006,-0.55376809835434,-0.592840492725372,0.528621315956116,-0.475803375244141,-0.702972590923309,0.346874326467514,-0.49073600769043,-0.799284815788269, +0.438823968172073,-0.459088683128357,-0.772444784641266,0.455215454101563,-0.445732057094574,-0.7707799077034,0.349255561828613,-0.406838774681091,-0.844098687171936,0.346874326467514,-0.49073600769043,-0.799284815788269,0.245955139398575,-0.456696957349777,-0.854946732521057,0.245955139398575,-0.456696957349777,-0.854946732521057,0.152692213654518,-0.4775250852108,-0.865248382091522,0.247142925858498,-0.480599373579025,-0.841394364833832,0.487128257751465,-0.336421728134155,-0.805931985378265,0.489543944597244,-0.304223746061325,-0.817186951637268,0.368264138698578,-0.567109405994415,-0.736728072166443,0.481275618076324,-0.350980997085571,-0.803234696388245,0.442511141300201,-0.484659314155579,-0.754512488842011,0.489543944597244,-0.304223746061325,-0.817186951637268,0.442511141300201,-0.484659314155579,-0.754512488842011,0.481275618076324,-0.350980997085571,-0.803234696388245,0.455215454101563,-0.445732057094574,-0.7707799077034,0.487128257751465,-0.336421728134155,-0.805931985378265,0.372606337070465,-0.601373136043549,-0.706763505935669,0.520391523838043,-0.388269245624542,-0.760552167892456,0.00512781366705894,0.0543525703251362,-0.998508632183075,-0.00104737328365445,-0.0815749391913414,-0.996666610240936,0.196924954652786,-0.0667613074183464,-0.978142857551575,0.996931552886963,-0.0776026472449303,-0.0102608259767294,0.96679961681366,-0.227485403418541,-0.116399176418781,0.97320431470871,-0.121642075479031,-0.195131823420525,0.97320431470871,-0.121642075479031,-0.195131823420525,0.943682968616486,-0.238744854927063,-0.229048579931259,0.950856387615204,-0.131683111190796,-0.280234962701797,0.93011999130249,-0.0817679390311241,-0.358037263154984,0.950856387615204,-0.131683111190796,-0.280234962701797,0.931890249252319,-0.229816362261772,-0.28065100312233,0.896539270877838,-0.195087492465973,-0.397691041231155,0.93011999130249,-0.0817679390311241,-0.358037263154984,0.931890249252319,-0.229816362261772,-0.28065100312233,0.751893639564514,-0.312756925821304,-0.580378353595734,0.809250950813293,-0.234953805804253,-0.538432419300079, +0.798666656017303,-0.301918119192123,-0.52055436372757,0.876858949661255,-0.303517580032349,-0.372820883989334,0.896539270877838,-0.195087492465973,-0.397691041231155,0.913739204406738,-0.291178584098816,-0.283364653587341,0.874051034450531,-0.303217560052872,-0.379596769809723,0.843016505241394,-0.230770587921143,-0.48586830496788,0.876858949661255,-0.303517580032349,-0.372820883989334,0.843016505241394,-0.230770587921143,-0.48586830496788,0.874051034450531,-0.303217560052872,-0.379596769809723,0.834208846092224,-0.287951797246933,-0.470296949148178,0.798666656017303,-0.301918119192123,-0.52055436372757,0.809250950813293,-0.234953805804253,-0.538432419300079,0.834208846092224,-0.287951797246933,-0.470296949148178,0.751893639564514,-0.312756925821304,-0.580378353595734,0.667893409729004,-0.419035285711288,-0.615083456039429,0.674086630344391,-0.344464153051376,-0.653415262699127,0.674086630344391,-0.344464153051376,-0.653415262699127,0.606369853019714,-0.363714814186096,-0.707125842571259,0.647245824337006,-0.257303327322006,-0.717542767524719,0.544928431510925,-0.34971621632576,-0.76207047700882,0.536885440349579,-0.243665963411331,-0.807700872421265,0.606369853019714,-0.363714814186096,-0.707125842571259,0.544928431510925,-0.34971621632576,-0.76207047700882,0.460981547832489,-0.280907988548279,-0.841775834560394,0.536885440349579,-0.243665963411331,-0.807700872421265,0.460981547832489,-0.280907988548279,-0.841775834560394,0.42691895365715,-0.329320669174194,-0.842192351818085,0.375511199235916,-0.214194223284721,-0.901727259159088,0.42691895365715,-0.329320669174194,-0.842192351818085,0.33034211397171,-0.316352397203445,-0.889266610145569,0.375511199235916,-0.214194223284721,-0.901727259159088,0.33034211397171,-0.316352397203445,-0.889266610145569,0.188210263848305,-0.284498989582062,-0.940019726753235,0.270713806152344,-0.132730573415756,-0.953465521335602,0.108445569872856,-0.0887814238667488,-0.990129947662354,0.270713806152344,-0.132730573415756,-0.953465521335602,0.188210263848305,-0.284498989582062,-0.940019726753235, +-0.00104737328365445,-0.0815749391913414,-0.996666610240936,-0.0137244081124663,-0.0753426849842072,-0.997063219547272,0.103847965598106,-0.255653470754623,-0.961174666881561,0.0686205923557281,-0.276107758283615,-0.958673894405365,0.108445569872856,-0.0887814238667488,-0.990129947662354,0.188210263848305,-0.284498989582062,-0.940019726753235,0.0860974714159966,-0.302944272756577,-0.949110984802246,-0.0137244081124663,-0.0753426849842072,-0.997063219547272,0.0686205923557281,-0.276107758283615,-0.958673894405365,0.689706861972809,-0.18368424475193,0.700403034687042,0.782945394515991,-0.121346026659012,0.610140562057495,0.697375535964966,-0.0511133521795273,0.71488082408905,0.964976489543915,-0.0343190468847752,0.260081768035889,0.981819272041321,-0.106462195515633,0.157151728868485,0.990252137184143,-0.024143286049366,0.137177810072899,0.920877695083618,-0.0929848030209541,0.378599733114243,0.964768528938293,-0.138978868722916,0.223397672176361,0.963828563690186,-0.0792771875858307,0.25445881485939,0.964976489543915,-0.0343190468847752,0.260081768035889,0.963828563690186,-0.0792771875858307,0.25445881485939,0.981819272041321,-0.106462195515633,0.157151728868485,0.782945394515991,-0.121346026659012,0.610140562057495,0.800880789756775,-0.153710409998894,0.578759789466858,0.844694972038269,-0.0803760141134262,0.529178559780121,0.848965704441071,-0.167813152074814,0.50109475851059,0.844694972038269,-0.0803760141134262,0.529178559780121,0.800880789756775,-0.153710409998894,0.578759789466858,0.848965704441071,-0.167813152074814,0.50109475851059,0.922201931476593,-0.212290525436401,0.323227822780609,0.920877695083618,-0.0929848030209541,0.378599733114243,0.996931552886963,-0.0776026472449303,-0.0102608259767294,0.998400866985321,0.053094319999218,0.0194070227444172,0.990252137184143,-0.024143286049366,0.137177810072899,0.532795488834381,-0.488821715116501,0.690783739089966,0.435989797115326,-0.313039064407349,0.843753099441528,0.373691588640213,-0.398325502872467,0.837670147418976,0.532795488834381,-0.488821715116501,0.690783739089966, +0.554500341415405,-0.363558441400528,0.748568296432495,0.435989797115326,-0.313039064407349,0.843753099441528,0.589783608913422,-0.319070547819138,0.741855204105377,0.554500341415405,-0.363558441400528,0.748568296432495,0.583804428577423,-0.346740365028381,0.734127521514893,0.518578290939331,-0.348561465740204,0.780756950378418,0.583804428577423,-0.346740365028381,0.734127521514893,0.570891082286835,-0.430035650730133,0.699394404888153,0.570891082286835,-0.430035650730133,0.699394404888153,0.559010684490204,-0.389998853206635,0.731715619564056,0.518578290939331,-0.348561465740204,0.780756950378418,0.536099195480347,-0.263189733028412,0.80207771062851,0.559010684490204,-0.389998853206635,0.731715619564056,0.682869911193848,-0.299759149551392,0.666207909584045,0.682869911193848,-0.299759149551392,0.666207909584045,0.782735407352448,-0.206706881523132,0.5870241522789,0.689706861972809,-0.18368424475193,0.700403034687042,0.697375535964966,-0.0511133521795273,0.71488082408905,0.615598261356354,-0.0957904458045959,0.782216608524323,0.689706861972809,-0.18368424475193,0.700403034687042,-0.625492095947266,-0.0806195214390755,-0.776054084300995,-0.640103876590729,-0.0466098114848137,-0.766873121261597,-0.602423131465912,-0.143957927823067,-0.785087466239929,-0.52064836025238,0.0178776364773512,-0.853583931922913,-0.431080013513565,-0.115305848419666,-0.894915878772736,-0.602423131465912,-0.143957927823067,-0.785087466239929,0.158349707722664,-0.704156816005707,0.692162096500397,0.295014828443527,-0.776420593261719,0.556899547576904,0.286384165287018,-0.702962398529053,0.651020705699921,0.158349707722664,-0.704156816005707,0.692162096500397,0.0186328887939453,-0.626453936100006,0.779235601425171,0.0706081315875053,-0.679350614547729,0.730408847332001,0.286384165287018,-0.702962398529053,0.651020705699921,0.392176628112793,-0.702164947986603,0.59427410364151,0.271342068910599,-0.605994284152985,0.747759461402893,0.271342068910599,-0.605994284152985,0.747759461402893,0.392176628112793,-0.702164947986603,0.59427410364151,0.400345802307129,-0.605041801929474,0.688220500946045, +0.164374172687531,-0.714577436447144,0.679970622062683,0.0646216496825218,-0.643776595592499,0.762479901313782,0.172895133495331,-0.598947823047638,0.781900644302368,0.323890835046768,-0.642942667007446,0.694060087203979,0.254773855209351,-0.761090636253357,0.596515834331512,0.164374172687531,-0.714577436447144,0.679970622062683,0.35479462146759,-0.851547241210938,0.385989516973495,0.367212951183319,-0.812583208084106,0.452618092298508,0.444243013858795,-0.749525666236877,0.490774154663086,0.367212951183319,-0.812583208084106,0.452618092298508,0.315166562795639,-0.808818161487579,0.496470600366592,0.378359794616699,-0.750392556190491,0.541991412639618,0.254773855209351,-0.761090636253357,0.596515834331512,0.378359794616699,-0.750392556190491,0.541991412639618,0.315166562795639,-0.808818161487579,0.496470600366592,0.167589083313942,-0.758219361305237,0.630092918872833,0.0706081315875053,-0.679350614547729,0.730408847332001,0.0646216496825218,-0.643776595592499,0.762479901313782,0.532795488834381,-0.488821715116501,0.690783739089966,0.373691588640213,-0.398325502872467,0.837670147418976,0.454722344875336,-0.558659732341766,0.693633079528809,0.400345802307129,-0.605041801929474,0.688220500946045,0.456931859254837,-0.67681360244751,0.577179729938507,0.454722344875336,-0.558659732341766,0.693633079528809,0.330021530389786,-0.315435022115707,-0.889711380004883,0.318166732788086,-0.250744611024857,-0.914273977279663,0.0789340436458588,-0.172605633735657,-0.981823086738586,0.0838550254702568,-0.102339565753937,-0.991208672523499,0.318166732788086,-0.250744611024857,-0.914273977279663,0.196924954652786,-0.0667613074183464,-0.978142857551575,0.330021530389786,-0.315435022115707,-0.889711380004883,0.444557249546051,-0.362431317567825,-0.819153368473053,0.610598683357239,-0.477953881025314,-0.631450057029724,0.729066550731659,-0.554203450679779,-0.401647001504898,0.610598683357239,-0.477953881025314,-0.631450057029724,0.603381931781769,-0.503465950489044,-0.618427097797394,0.731515288352966,-0.610370516777039,-0.303863555192947, +0.780349016189575,-0.57276839017868,-0.250981360673904,0.729066550731659,-0.554203450679779,-0.401647001504898,0.822045743465424,-0.498806864023209,-0.274649769067764,0.68778795003891,-0.6616450548172,-0.29861918091774,0.761631667613983,-0.51776248216629,-0.389665305614471,0.761631667613983,-0.51776248216629,-0.389665305614471,0.67774099111557,-0.537852644920349,-0.501379549503326,0.779024839401245,-0.370465040206909,-0.505841672420502,0.731515288352966,-0.610370516777039,-0.303863555192947,0.764689028263092,-0.615058124065399,-0.192234426736832,0.806807577610016,-0.550165295600891,-0.215359032154083,0.764689028263092,-0.615058124065399,-0.192234426736832,0.746797800064087,-0.628939628601074,-0.216166436672211,0.822499096393585,-0.517516911029816,-0.235947743058205,0.68778795003891,-0.6616450548172,-0.29861918091774,0.822045743465424,-0.498806864023209,-0.274649769067764,0.746797800064087,-0.628939628601074,-0.216166436672211,0.64586079120636,-0.373824864625931,-0.665671527385712,0.779024839401245,-0.370465040206909,-0.505841672420502,0.67774099111557,-0.537852644920349,-0.501379549503326,0.526396095752716,-0.665083587169647,-0.529689311981201,0.44012239575386,-0.669864416122437,-0.597974598407745,0.463600665330887,-0.63689136505127,-0.615989983081818,0.44012239575386,-0.669864416122437,-0.597974598407745,0.492049843072891,-0.613139867782593,-0.6180180311203,0.400372922420502,-0.633146703243256,-0.66243988275528,0.509669423103333,-0.525903105735779,-0.680927872657776,0.520391523838043,-0.388269245624542,-0.760552167892456,0.372606337070465,-0.601373136043549,-0.706763505935669,0.509669423103333,-0.525903105735779,-0.680927872657776,0.400372922420502,-0.633146703243256,-0.66243988275528,0.492049843072891,-0.613139867782593,-0.6180180311203,0.552311420440674,-0.672141671180725,-0.493130147457123,0.463600665330887,-0.63689136505127,-0.615989983081818,0.584705889225006,-0.55376809835434,-0.592840492725372,0.584705889225006,-0.55376809835434,-0.592840492725372,0.64586079120636,-0.373824864625931,-0.665671527385712,0.67774099111557,-0.537852644920349,-0.501379549503326, +0.271816283464432,-0.327851980924606,-0.904781103134155,0.346874326467514,-0.49073600769043,-0.799284815788269,0.455215454101563,-0.445732057094574,-0.7707799077034,0.271816283464432,-0.327851980924606,-0.904781103134155,0.245955139398575,-0.456696957349777,-0.854946732521057,0.346874326467514,-0.49073600769043,-0.799284815788269,0.245955139398575,-0.456696957349777,-0.854946732521057,0.145978778600693,-0.310242980718613,-0.939382433891296,0.152692213654518,-0.4775250852108,-0.865248382091522,0.487128257751465,-0.336421728134155,-0.805931985378265,0.505612194538116,-0.0862507000565529,-0.858438551425934,0.489543944597244,-0.304223746061325,-0.817186951637268,0.481275618076324,-0.350980997085571,-0.803234696388245,0.489543944597244,-0.304223746061325,-0.817186951637268,0.430418729782104,-0.19074285030365,-0.882245302200317,0.387279093265533,-0.291512668132782,-0.87466287612915,0.455215454101563,-0.445732057094574,-0.7707799077034,0.481275618076324,-0.350980997085571,-0.803234696388245,0.487128257751465,-0.336421728134155,-0.805931985378265,0.520391523838043,-0.388269245624542,-0.760552167892456,0.607297956943512,-0.11163467913866,-0.786591827869415,0.0838550254702568,-0.102339565753937,-0.991208672523499,0.196924954652786,-0.0667613074183464,-0.978142857551575,-0.00104737328365445,-0.0815749391913414,-0.996666610240936,0.996931552886963,-0.0776026472449303,-0.0102608259767294,0.978429555892944,-0.203124448657036,0.0376294516026974,0.96679961681366,-0.227485403418541,-0.116399176418781,0.943682968616486,-0.238744854927063,-0.229048579931259,0.97320431470871,-0.121642075479031,-0.195131823420525,0.96679961681366,-0.227485403418541,-0.116399176418781,0.931890249252319,-0.229816362261772,-0.28065100312233,0.950856387615204,-0.131683111190796,-0.280234962701797,0.943682968616486,-0.238744854927063,-0.229048579931259,0.896539270877838,-0.195087492465973,-0.397691041231155,0.931890249252319,-0.229816362261772,-0.28065100312233,0.913739204406738,-0.291178584098816,-0.283364653587341,0.745114147663116,-0.392676264047623,-0.539082646369934, +0.751893639564514,-0.312756925821304,-0.580378353595734,0.798666656017303,-0.301918119192123,-0.52055436372757,0.876858949661255,-0.303517580032349,-0.372820883989334,0.913739204406738,-0.291178584098816,-0.283364653587341,0.909788370132446,-0.329163044691086,-0.252856612205505,0.874051034450531,-0.303217560052872,-0.379596769809723,0.876858949661255,-0.303517580032349,-0.372820883989334,0.909788370132446,-0.329163044691086,-0.252856612205505,0.874051034450531,-0.303217560052872,-0.379596769809723,0.853956937789917,-0.372074782848358,-0.363755106925964,0.834208846092224,-0.287951797246933,-0.470296949148178,0.804768800735474,-0.367822736501694,-0.465889990329742,0.798666656017303,-0.301918119192123,-0.52055436372757,0.834208846092224,-0.287951797246933,-0.470296949148178,0.745114147663116,-0.392676264047623,-0.539082646369934,0.667893409729004,-0.419035285711288,-0.615083456039429,0.751893639564514,-0.312756925821304,-0.580378353595734,0.667893409729004,-0.419035285711288,-0.615083456039429,0.606369853019714,-0.363714814186096,-0.707125842571259,0.674086630344391,-0.344464153051376,-0.653415262699127,0.596915066242218,-0.478820025920868,-0.643757402896881,0.544928431510925,-0.34971621632576,-0.76207047700882,0.606369853019714,-0.363714814186096,-0.707125842571259,0.522193491458893,-0.414826840162277,-0.745139241218567,0.460981547832489,-0.280907988548279,-0.841775834560394,0.544928431510925,-0.34971621632576,-0.76207047700882,0.42691895365715,-0.329320669174194,-0.842192351818085,0.460981547832489,-0.280907988548279,-0.841775834560394,0.522193491458893,-0.414826840162277,-0.745139241218567,0.359783113002777,-0.453989893198013,-0.815137505531311,0.33034211397171,-0.316352397203445,-0.889266610145569,0.42691895365715,-0.329320669174194,-0.842192351818085,0.188210263848305,-0.284498989582062,-0.940019726753235,0.33034211397171,-0.316352397203445,-0.889266610145569,0.208737909793854,-0.427034497261047,-0.87981241941452,0.103847965598106,-0.255653470754623,-0.961174666881561,-0.0137244081124663,-0.0753426849842072,-0.997063219547272, +0.0860974714159966,-0.302944272756577,-0.949110984802246,0.103847965598106,-0.255653470754623,-0.961174666881561,0.0308478400111198,-0.160730704665184,-0.986516058444977,-0.00104737328365445,-0.0815749391913414,-0.996666610240936,0.0686205923557281,-0.276107758283615,-0.958673894405365,0.188210263848305,-0.284498989582062,-0.940019726753235,0.208737909793854,-0.427034497261047,-0.87981241941452,0.0686205923557281,-0.276107758283615,-0.958673894405365,0.162542730569839,-0.414484977722168,-0.89542281627655,0.0860974714159966,-0.302944272756577,-0.949110984802246,0.782735407352448,-0.206706881523132,0.5870241522789,0.782945394515991,-0.121346026659012,0.610140562057495,0.689706861972809,-0.18368424475193,0.700403034687042,0.996931552886963,-0.0776026472449303,-0.0102608259767294,0.990252137184143,-0.024143286049366,0.137177810072899,0.981819272041321,-0.106462195515633,0.157151728868485,0.920877695083618,-0.0929848030209541,0.378599733114243,0.922201931476593,-0.212290525436401,0.323227822780609,0.964768528938293,-0.138978868722916,0.223397672176361,0.964768528938293,-0.138978868722916,0.223397672176361,0.975674629211426,-0.17233407497406,0.135498821735382,0.963828563690186,-0.0792771875858307,0.25445881485939,0.975674629211426,-0.17233407497406,0.135498821735382,0.981819272041321,-0.106462195515633,0.157151728868485,0.963828563690186,-0.0792771875858307,0.25445881485939,0.791614234447479,-0.185980200767517,0.582029283046722,0.800880789756775,-0.153710409998894,0.578759789466858,0.782945394515991,-0.121346026659012,0.610140562057495,0.800880789756775,-0.153710409998894,0.578759789466858,0.796840906143188,-0.196424946188927,0.571368217468262,0.848965704441071,-0.167813152074814,0.50109475851059,0.835454940795898,-0.270389169454575,0.478439778089523,0.922201931476593,-0.212290525436401,0.323227822780609,0.848965704441071,-0.167813152074814,0.50109475851059,0.570891082286835,-0.430035650730133,0.699394404888153,0.554500341415405,-0.363558441400528,0.748568296432495,0.532795488834381,-0.488821715116501,0.690783739089966, +0.570891082286835,-0.430035650730133,0.699394404888153,0.583804428577423,-0.346740365028381,0.734127521514893,0.554500341415405,-0.363558441400528,0.748568296432495,0.570891082286835,-0.430035650730133,0.699394404888153,0.580141603946686,-0.482462227344513,0.656251311302185,0.559010684490204,-0.389998853206635,0.731715619564056,0.659471035003662,-0.415870577096939,0.626218378543854,0.682869911193848,-0.299759149551392,0.666207909584045,0.559010684490204,-0.389998853206635,0.731715619564056,0.782735407352448,-0.206706881523132,0.5870241522789,0.682869911193848,-0.299759149551392,0.666207909584045,0.771929562091827,-0.270482540130615,0.575294494628906,-0.52064836025238,0.0178776364773512,-0.853583931922913,-0.602423131465912,-0.143957927823067,-0.785087466239929,-0.640103876590729,-0.0466098114848137,-0.766873121261597,-0.431080013513565,-0.115305848419666,-0.894915878772736,-0.52064836025238,0.0178776364773512,-0.853583931922913,-0.103350751101971,0.169804632663727,-0.980043292045593,0.167589083313942,-0.758219361305237,0.630092918872833,0.295014828443527,-0.776420593261719,0.556899547576904,0.158349707722664,-0.704156816005707,0.692162096500397,0.404292851686478,-0.745663642883301,0.529653489589691,0.286384165287018,-0.702962398529053,0.651020705699921,0.295014828443527,-0.776420593261719,0.556899547576904,0.158349707722664,-0.704156816005707,0.692162096500397,0.0706081315875053,-0.679350614547729,0.730408847332001,0.167589083313942,-0.758219361305237,0.630092918872833,0.392176628112793,-0.702164947986603,0.59427410364151,0.286384165287018,-0.702962398529053,0.651020705699921,0.404292851686478,-0.745663642883301,0.529653489589691,0.392176628112793,-0.702164947986603,0.59427410364151,0.456931859254837,-0.67681360244751,0.577179729938507,0.400345802307129,-0.605041801929474,0.688220500946045,0.164374172687531,-0.714577436447144,0.679970622062683,0.167589083313942,-0.758219361305237,0.630092918872833,0.0646216496825218,-0.643776595592499,0.762479901313782,0.193208277225494,-0.783515870571136,0.590570330619812,0.164374172687531,-0.714577436447144,0.679970622062683, +0.254773855209351,-0.761090636253357,0.596515834331512,0.367212951183319,-0.812583208084106,0.452618092298508,0.35479462146759,-0.851547241210938,0.385989516973495,0.303707242012024,-0.8537757396698,0.422881543636322,0.367212951183319,-0.812583208084106,0.452618092298508,0.303707242012024,-0.8537757396698,0.422881543636322,0.315166562795639,-0.808818161487579,0.496470600366592,0.241858214139938,-0.837083041667938,0.490710139274597,0.254773855209351,-0.761090636253357,0.596515834331512,0.315166562795639,-0.808818161487579,0.496470600366592,0.454722344875336,-0.558659732341766,0.693633079528809,0.505722045898438,-0.599276721477509,0.620574295520782,0.532795488834381,-0.488821715116501,0.690783739089966,0.454722344875336,-0.558659732341766,0.693633079528809,0.456931859254837,-0.67681360244751,0.577179729938507,0.505722045898438,-0.599276721477509,0.620574295520782,0.0838550254702568,-0.102339565753937,-0.991208672523499,0.0789340436458588,-0.172605633735657,-0.981823086738586,0.318166732788086,-0.250744611024857,-0.914273977279663,0.330021530389786,-0.315435022115707,-0.889711380004883,0.0789340436458588,-0.172605633735657,-0.981823086738586,0.0685686022043228,-0.195197850465775,-0.978363931179047,0.444557249546051,-0.362431317567825,-0.819153368473053,0.330021530389786,-0.315435022115707,-0.889711380004883,0.220681175589561,-0.279628455638886,-0.934402287006378,0.603381931781769,-0.503465950489044,-0.618427097797394,0.610598683357239,-0.477953881025314,-0.631450057029724,0.444557249546051,-0.362431317567825,-0.819153368473053,0.729066550731659,-0.554203450679779,-0.401647001504898,0.603381931781769,-0.503465950489044,-0.618427097797394,0.731515288352966,-0.610370516777039,-0.303863555192947,0.623779773712158,-0.675291478633881,-0.393548011779785,0.761631667613983,-0.51776248216629,-0.389665305614471,0.68778795003891,-0.6616450548172,-0.29861918091774,0.761631667613983,-0.51776248216629,-0.389665305614471,0.623779773712158,-0.675291478633881,-0.393548011779785,0.67774099111557,-0.537852644920349,-0.501379549503326,0.691637456417084,-0.698186278343201,-0.184860527515411, +0.764689028263092,-0.615058124065399,-0.192234426736832,0.731515288352966,-0.610370516777039,-0.303863555192947,0.764689028263092,-0.615058124065399,-0.192234426736832,0.653153777122498,-0.72777533531189,-0.209124520421028,0.746797800064087,-0.628939628601074,-0.216166436672211,0.604139387607574,-0.7543985247612,-0.256706595420837,0.68778795003891,-0.6616450548172,-0.29861918091774,0.746797800064087,-0.628939628601074,-0.216166436672211,0.639328300952911,-0.540497124195099,-0.546920597553253,0.44012239575386,-0.669864416122437,-0.597974598407745,0.526396095752716,-0.665083587169647,-0.529689311981201,0.552311420440674,-0.672141671180725,-0.493130147457123,0.526396095752716,-0.665083587169647,-0.529689311981201,0.463600665330887,-0.63689136505127,-0.615989983081818,0.44012239575386,-0.669864416122437,-0.597974598407745,0.639328300952911,-0.540497124195099,-0.546920597553253,0.492049843072891,-0.613139867782593,-0.6180180311203,0.509669423103333,-0.525903105735779,-0.680927872657776,0.730636835098267,-0.202308744192123,-0.652104914188385,0.520391523838043,-0.388269245624542,-0.760552167892456,0.736971020698547,-0.387532562017441,-0.553797960281372,0.509669423103333,-0.525903105735779,-0.680927872657776,0.492049843072891,-0.613139867782593,-0.6180180311203,0.584705889225006,-0.55376809835434,-0.592840492725372,0.67774099111557,-0.537852644920349,-0.501379549503326,0.552311420440674,-0.672141671180725,-0.493130147457123,0.271816283464432,-0.327851980924606,-0.904781103134155,0.455215454101563,-0.445732057094574,-0.7707799077034,0.387279093265533,-0.291512668132782,-0.87466287612915,0.271816283464432,-0.327851980924606,-0.904781103134155,0.145978778600693,-0.310242980718613,-0.939382433891296,0.245955139398575,-0.456696957349777,-0.854946732521057,0.487128257751465,-0.336421728134155,-0.805931985378265,0.607297956943512,-0.11163467913866,-0.786591827869415,0.505612194538116,-0.0862507000565529,-0.858438551425934,0.505612194538116,-0.0862507000565529,-0.858438551425934,0.430418729782104,-0.19074285030365,-0.882245302200317, +0.489543944597244,-0.304223746061325,-0.817186951637268,0.430418729782104,-0.19074285030365,-0.882245302200317,0.387279093265533,-0.291512668132782,-0.87466287612915,0.481275618076324,-0.350980997085571,-0.803234696388245,0.607297956943512,-0.11163467913866,-0.786591827869415,0.520391523838043,-0.388269245624542,-0.760552167892456,0.730636835098267,-0.202308744192123,-0.652104914188385,0.0838550254702568,-0.102339565753937,-0.991208672523499,-0.00104737328365445,-0.0815749391913414,-0.996666610240936,0.0308478400111198,-0.160730704665184,-0.986516058444977,0.981819272041321,-0.106462195515633,0.157151728868485,0.978429555892944,-0.203124448657036,0.0376294516026974,0.996931552886963,-0.0776026472449303,-0.0102608259767294,0.978429555892944,-0.203124448657036,0.0376294516026974,0.949435293674469,-0.310529887676239,-0.0462975911796093,0.96679961681366,-0.227485403418541,-0.116399176418781,0.943682968616486,-0.238744854927063,-0.229048579931259,0.96679961681366,-0.227485403418541,-0.116399176418781,0.930170238018036,-0.311860710382462,-0.193716377019882,0.930170238018036,-0.311860710382462,-0.193716377019882,0.931890249252319,-0.229816362261772,-0.28065100312233,0.943682968616486,-0.238744854927063,-0.229048579931259,0.931890249252319,-0.229816362261772,-0.28065100312233,0.930170238018036,-0.311860710382462,-0.193716377019882,0.913739204406738,-0.291178584098816,-0.283364653587341,0.804768800735474,-0.367822736501694,-0.465889990329742,0.745114147663116,-0.392676264047623,-0.539082646369934,0.798666656017303,-0.301918119192123,-0.52055436372757,0.909788370132446,-0.329163044691086,-0.252856612205505,0.913739204406738,-0.291178584098816,-0.283364653587341,0.930170238018036,-0.311860710382462,-0.193716377019882,0.909788370132446,-0.329163044691086,-0.252856612205505,0.892597615718842,-0.363973349332809,-0.266069054603577,0.874051034450531,-0.303217560052872,-0.379596769809723,0.874051034450531,-0.303217560052872,-0.379596769809723,0.892597615718842,-0.363973349332809,-0.266069054603577,0.853956937789917,-0.372074782848358,-0.363755106925964, +0.834208846092224,-0.287951797246933,-0.470296949148178,0.853956937789917,-0.372074782848358,-0.363755106925964,0.804768800735474,-0.367822736501694,-0.465889990329742,0.745114147663116,-0.392676264047623,-0.539082646369934,0.674787998199463,-0.508593559265137,-0.534783661365509,0.667893409729004,-0.419035285711288,-0.615083456039429,0.606369853019714,-0.363714814186096,-0.707125842571259,0.667893409729004,-0.419035285711288,-0.615083456039429,0.596915066242218,-0.478820025920868,-0.643757402896881,0.522193491458893,-0.414826840162277,-0.745139241218567,0.544928431510925,-0.34971621632576,-0.76207047700882,0.596915066242218,-0.478820025920868,-0.643757402896881,0.479820877313614,-0.502831399440765,-0.718980073928833,0.42691895365715,-0.329320669174194,-0.842192351818085,0.522193491458893,-0.414826840162277,-0.745139241218567,0.359783113002777,-0.453989893198013,-0.815137505531311,0.208737909793854,-0.427034497261047,-0.87981241941452,0.33034211397171,-0.316352397203445,-0.889266610145569,0.479820877313614,-0.502831399440765,-0.718980073928833,0.359783113002777,-0.453989893198013,-0.815137505531311,0.42691895365715,-0.329320669174194,-0.842192351818085,0.199501812458038,-0.407474100589752,-0.891158699989319,0.103847965598106,-0.255653470754623,-0.961174666881561,0.0860974714159966,-0.302944272756577,-0.949110984802246,0.103847965598106,-0.255653470754623,-0.961174666881561,0.0817298367619514,-0.306247889995575,-0.948436796665192,0.0308478400111198,-0.160730704665184,-0.986516058444977,0.162542730569839,-0.414484977722168,-0.89542281627655,0.0686205923557281,-0.276107758283615,-0.958673894405365,0.208737909793854,-0.427034497261047,-0.87981241941452,0.0860974714159966,-0.302944272756577,-0.949110984802246,0.162542730569839,-0.414484977722168,-0.89542281627655,0.199501812458038,-0.407474100589752,-0.891158699989319,0.791614234447479,-0.185980200767517,0.582029283046722,0.782945394515991,-0.121346026659012,0.610140562057495,0.782735407352448,-0.206706881523132,0.5870241522789,0.922201931476593,-0.212290525436401,0.323227822780609, +0.953539431095123,-0.235065281391144,0.188432320952415,0.964768528938293,-0.138978868722916,0.223397672176361,0.964768528938293,-0.138978868722916,0.223397672176361,0.965255260467529,-0.232284337282181,0.119691982865334,0.975674629211426,-0.17233407497406,0.135498821735382,0.981819272041321,-0.106462195515633,0.157151728868485,0.975674629211426,-0.17233407497406,0.135498821735382,0.978429555892944,-0.203124448657036,0.0376294516026974,0.800880789756775,-0.153710409998894,0.578759789466858,0.791614234447479,-0.185980200767517,0.582029283046722,0.796840906143188,-0.196424946188927,0.571368217468262,0.835454940795898,-0.270389169454575,0.478439778089523,0.848965704441071,-0.167813152074814,0.50109475851059,0.796840906143188,-0.196424946188927,0.571368217468262,0.835454940795898,-0.270389169454575,0.478439778089523,0.906941473484039,-0.292563915252686,0.303089797496796,0.922201931476593,-0.212290525436401,0.323227822780609,0.573668122291565,-0.508787095546722,0.641903698444366,0.570891082286835,-0.430035650730133,0.699394404888153,0.532795488834381,-0.488821715116501,0.690783739089966,0.573668122291565,-0.508787095546722,0.641903698444366,0.580141603946686,-0.482462227344513,0.656251311302185,0.570891082286835,-0.430035650730133,0.699394404888153,0.659471035003662,-0.415870577096939,0.626218378543854,0.559010684490204,-0.389998853206635,0.731715619564056,0.580141603946686,-0.482462227344513,0.656251311302185,0.771929562091827,-0.270482540130615,0.575294494628906,0.682869911193848,-0.299759149551392,0.666207909584045,0.659471035003662,-0.415870577096939,0.626218378543854,0.782735407352448,-0.206706881523132,0.5870241522789,0.771929562091827,-0.270482540130615,0.575294494628906,0.791614234447479,-0.185980200767517,0.582029283046722,-0.103350751101971,0.169804632663727,-0.980043292045593,-0.52064836025238,0.0178776364773512,-0.853583931922913,-0.246586918830872,0.201044395565987,-0.948037981987,0.167589083313942,-0.758219361305237,0.630092918872833,0.28773757815361,-0.825198948383331,0.486059278249741,0.295014828443527,-0.776420593261719,0.556899547576904, +0.295014828443527,-0.776420593261719,0.556899547576904,0.38670215010643,-0.811047077178955,0.43893501162529,0.404292851686478,-0.745663642883301,0.529653489589691,0.456931859254837,-0.67681360244751,0.577179729938507,0.392176628112793,-0.702164947986603,0.59427410364151,0.404292851686478,-0.745663642883301,0.529653489589691,0.164374172687531,-0.714577436447144,0.679970622062683,0.202862411737442,-0.799380600452423,0.565541744232178,0.167589083313942,-0.758219361305237,0.630092918872833,0.202862411737442,-0.799380600452423,0.565541744232178,0.164374172687531,-0.714577436447144,0.679970622062683,0.193208277225494,-0.783515870571136,0.590570330619812,0.254773855209351,-0.761090636253357,0.596515834331512,0.241858214139938,-0.837083041667938,0.490710139274597,0.193208277225494,-0.783515870571136,0.590570330619812,0.35479462146759,-0.851547241210938,0.385989516973495,0.263385146856308,-0.887956738471985,0.377042412757874,0.303707242012024,-0.8537757396698,0.422881543636322,0.241858214139938,-0.837083041667938,0.490710139274597,0.315166562795639,-0.808818161487579,0.496470600366592,0.303707242012024,-0.8537757396698,0.422881543636322,0.541393756866455,-0.575668692588806,0.612779021263123,0.532795488834381,-0.488821715116501,0.690783739089966,0.505722045898438,-0.599276721477509,0.620574295520782,0.505722045898438,-0.599276721477509,0.620574295520782,0.456931859254837,-0.67681360244751,0.577179729938507,0.486788839101791,-0.65315967798233,0.580016314983368,0.0838550254702568,-0.102339565753937,-0.991208672523499,0.0308478400111198,-0.160730704665184,-0.986516058444977,0.0789340436458588,-0.172605633735657,-0.981823086738586,0.0685686022043228,-0.195197850465775,-0.978363931179047,0.0789340436458588,-0.172605633735657,-0.981823086738586,0.0308478400111198,-0.160730704665184,-0.986516058444977,0.0685686022043228,-0.195197850465775,-0.978363931179047,0.220681175589561,-0.279628455638886,-0.934402287006378,0.330021530389786,-0.315435022115707,-0.889711380004883,0.444557249546051,-0.362431317567825,-0.819153368473053,0.220681175589561,-0.279628455638886,-0.934402287006378, +0.327760189771652,-0.449723869562149,-0.830855906009674,0.327760189771652,-0.449723869562149,-0.830855906009674,0.603381931781769,-0.503465950489044,-0.618427097797394,0.444557249546051,-0.362431317567825,-0.819153368473053,0.569060683250427,-0.632414758205414,-0.525567591190338,0.731515288352966,-0.610370516777039,-0.303863555192947,0.603381931781769,-0.503465950489044,-0.618427097797394,0.623779773712158,-0.675291478633881,-0.393548011779785,0.68778795003891,-0.6616450548172,-0.29861918091774,0.564758598804474,-0.761623561382294,-0.317768931388855,0.623779773712158,-0.675291478633881,-0.393548011779785,0.552311420440674,-0.672141671180725,-0.493130147457123,0.67774099111557,-0.537852644920349,-0.501379549503326,0.691637456417084,-0.698186278343201,-0.184860527515411,0.653153777122498,-0.72777533531189,-0.209124520421028,0.764689028263092,-0.615058124065399,-0.192234426736832,0.679137527942657,-0.678981602191925,-0.27884766459465,0.691637456417084,-0.698186278343201,-0.184860527515411,0.731515288352966,-0.610370516777039,-0.303863555192947,0.604139387607574,-0.7543985247612,-0.256706595420837,0.746797800064087,-0.628939628601074,-0.216166436672211,0.653153777122498,-0.72777533531189,-0.209124520421028,0.604139387607574,-0.7543985247612,-0.256706595420837,0.564758598804474,-0.761623561382294,-0.317768931388855,0.68778795003891,-0.6616450548172,-0.29861918091774,0.639328300952911,-0.540497124195099,-0.546920597553253,0.526396095752716,-0.665083587169647,-0.529689311981201,0.789687871932983,-0.457640141248703,-0.408605486154556,0.538591325283051,-0.732020914554596,-0.417210638523102,0.526396095752716,-0.665083587169647,-0.529689311981201,0.552311420440674,-0.672141671180725,-0.493130147457123,0.639328300952911,-0.540497124195099,-0.546920597553253,0.736971020698547,-0.387532562017441,-0.553797960281372,0.492049843072891,-0.613139867782593,-0.6180180311203,0.730636835098267,-0.202308744192123,-0.652104914188385,0.509669423103333,-0.525903105735779,-0.680927872657776,0.736971020698547,-0.387532562017441,-0.553797960281372, +0.271816283464432,-0.327851980924606,-0.904781103134155,0.387279093265533,-0.291512668132782,-0.87466287612915,0.324741184711456,-0.204104751348495,-0.923517346382141,0.271816283464432,-0.327851980924606,-0.904781103134155,0.137511804699898,-0.344733208417892,-0.928573846817017,0.145978778600693,-0.310242980718613,-0.939382433891296,0.607297956943512,-0.11163467913866,-0.786591827869415,0.538435637950897,-0.109293751418591,-0.83554881811142,0.505612194538116,-0.0862507000565529,-0.858438551425934,0.430418729782104,-0.19074285030365,-0.882245302200317,0.505612194538116,-0.0862507000565529,-0.858438551425934,0.385784804821014,-0.173191785812378,-0.906186819076538,0.324741184711456,-0.204104751348495,-0.923517346382141,0.387279093265533,-0.291512668132782,-0.87466287612915,0.430418729782104,-0.19074285030365,-0.882245302200317,0.730636835098267,-0.202308744192123,-0.652104914188385,0.676005244255066,-0.171507328748703,-0.71666032075882,0.607297956943512,-0.11163467913866,-0.786591827869415,0.955990076065063,-0.288337558507919,0.0542616359889507,0.949435293674469,-0.310529887676239,-0.0462975911796093,0.978429555892944,-0.203124448657036,0.0376294516026974,0.949435293674469,-0.310529887676239,-0.0462975911796093,0.930170238018036,-0.311860710382462,-0.193716377019882,0.96679961681366,-0.227485403418541,-0.116399176418781,0.804768800735474,-0.367822736501694,-0.465889990329742,0.741886615753174,-0.509963095188141,-0.43536388874054,0.745114147663116,-0.392676264047623,-0.539082646369934,0.928279101848602,-0.352952182292938,-0.117143124341965,0.909788370132446,-0.329163044691086,-0.252856612205505,0.930170238018036,-0.311860710382462,-0.193716377019882,0.909788370132446,-0.329163044691086,-0.252856612205505,0.899893939495087,-0.401437640190125,-0.170407116413116,0.892597615718842,-0.363973349332809,-0.266069054603577,0.853956937789917,-0.372074782848358,-0.363755106925964,0.892597615718842,-0.363973349332809,-0.266069054603577,0.823440253734589,-0.527704954147339,-0.208503022789955,0.853956937789917,-0.372074782848358,-0.363755106925964, +0.77934867143631,-0.531836926937103,-0.331308156251907,0.804768800735474,-0.367822736501694,-0.465889990329742,0.674787998199463,-0.508593559265137,-0.534783661365509,0.745114147663116,-0.392676264047623,-0.539082646369934,0.741886615753174,-0.509963095188141,-0.43536388874054,0.674787998199463,-0.508593559265137,-0.534783661365509,0.596915066242218,-0.478820025920868,-0.643757402896881,0.667893409729004,-0.419035285711288,-0.615083456039429,0.596915066242218,-0.478820025920868,-0.643757402896881,0.555940628051758,-0.564490854740143,-0.610147416591644,0.522193491458893,-0.414826840162277,-0.745139241218567,0.479820877313614,-0.502831399440765,-0.718980073928833,0.522193491458893,-0.414826840162277,-0.745139241218567,0.555940628051758,-0.564490854740143,-0.610147416591644,0.359783113002777,-0.453989893198013,-0.815137505531311,0.28803014755249,-0.569406509399414,-0.769944667816162,0.208737909793854,-0.427034497261047,-0.87981241941452,0.479820877313614,-0.502831399440765,-0.718980073928833,0.402071952819824,-0.635098934173584,-0.659535646438599,0.359783113002777,-0.453989893198013,-0.815137505531311,0.0817298367619514,-0.306247889995575,-0.948436796665192,0.103847965598106,-0.255653470754623,-0.961174666881561,0.199501812458038,-0.407474100589752,-0.891158699989319,0.0685686022043228,-0.195197850465775,-0.978363931179047,0.0308478400111198,-0.160730704665184,-0.986516058444977,0.0817298367619514,-0.306247889995575,-0.948436796665192,0.162542730569839,-0.414484977722168,-0.89542281627655,0.208737909793854,-0.427034497261047,-0.87981241941452,0.228927999734879,-0.530000746250153,-0.816511511802673,0.260213911533356,-0.498987674713135,-0.826619565486908,0.199501812458038,-0.407474100589752,-0.891158699989319,0.162542730569839,-0.414484977722168,-0.89542281627655,0.940094292163849,-0.28944393992424,0.18012447655201,0.953539431095123,-0.235065281391144,0.188432320952415,0.922201931476593,-0.212290525436401,0.323227822780609,0.953539431095123,-0.235065281391144,0.188432320952415,0.965255260467529,-0.232284337282181,0.119691982865334, +0.964768528938293,-0.138978868722916,0.223397672176361,0.955990076065063,-0.288337558507919,0.0542616359889507,0.975674629211426,-0.17233407497406,0.135498821735382,0.965255260467529,-0.232284337282181,0.119691982865334,0.955990076065063,-0.288337558507919,0.0542616359889507,0.978429555892944,-0.203124448657036,0.0376294516026974,0.975674629211426,-0.17233407497406,0.135498821735382,0.791614234447479,-0.185980200767517,0.582029283046722,0.771929562091827,-0.270482540130615,0.575294494628906,0.796840906143188,-0.196424946188927,0.571368217468262,0.835454940795898,-0.270389169454575,0.478439778089523,0.796840906143188,-0.196424946188927,0.571368217468262,0.771929562091827,-0.270482540130615,0.575294494628906,0.906941473484039,-0.292563915252686,0.303089797496796,0.835454940795898,-0.270389169454575,0.478439778089523,0.831655621528625,-0.387141674757004,0.398083060979843,0.906941473484039,-0.292563915252686,0.303089797496796,0.940094292163849,-0.28944393992424,0.18012447655201,0.922201931476593,-0.212290525436401,0.323227822780609,0.573668122291565,-0.508787095546722,0.641903698444366,0.532795488834381,-0.488821715116501,0.690783739089966,0.541393756866455,-0.575668692588806,0.612779021263123,0.573668122291565,-0.508787095546722,0.641903698444366,0.587513506412506,-0.551960587501526,0.591749250888824,0.580141603946686,-0.482462227344513,0.656251311302185,0.580141603946686,-0.482462227344513,0.656251311302185,0.638442516326904,-0.509985387325287,0.576459765434265,0.659471035003662,-0.415870577096939,0.626218378543854,0.738793075084686,-0.397019654512405,0.544573247432709,0.771929562091827,-0.270482540130615,0.575294494628906,0.659471035003662,-0.415870577096939,0.626218378543854,0.202862411737442,-0.799380600452423,0.565541744232178,0.28773757815361,-0.825198948383331,0.486059278249741,0.167589083313942,-0.758219361305237,0.630092918872833,0.28773757815361,-0.825198948383331,0.486059278249741,0.38670215010643,-0.811047077178955,0.43893501162529,0.295014828443527,-0.776420593261719,0.556899547576904,0.38670215010643,-0.811047077178955,0.43893501162529, +0.424862533807755,-0.779196381568909,0.46080869436264,0.404292851686478,-0.745663642883301,0.529653489589691,0.456931859254837,-0.67681360244751,0.577179729938507,0.404292851686478,-0.745663642883301,0.529653489589691,0.437753558158875,-0.720838665962219,0.537367105484009,0.202862411737442,-0.799380600452423,0.565541744232178,0.193208277225494,-0.783515870571136,0.590570330619812,0.247458085417748,-0.848811864852905,0.467207431793213,0.241858214139938,-0.837083041667938,0.490710139274597,0.247458085417748,-0.848811864852905,0.467207431793213,0.193208277225494,-0.783515870571136,0.590570330619812,0.241858214139938,-0.837083041667938,0.490710139274597,0.303707242012024,-0.8537757396698,0.422881543636322,0.263385146856308,-0.887956738471985,0.377042412757874,0.541393756866455,-0.575668692588806,0.612779021263123,0.505722045898438,-0.599276721477509,0.620574295520782,0.486788839101791,-0.65315967798233,0.580016314983368,0.486788839101791,-0.65315967798233,0.580016314983368,0.456931859254837,-0.67681360244751,0.577179729938507,0.437753558158875,-0.720838665962219,0.537367105484009,0.0694498717784882,-0.243639498949051,-0.967376053333282,0.220681175589561,-0.279628455638886,-0.934402287006378,0.0685686022043228,-0.195197850465775,-0.978363931179047,0.327760189771652,-0.449723869562149,-0.830855906009674,0.220681175589561,-0.279628455638886,-0.934402287006378,0.178027421236038,-0.376230776309967,-0.909261524677277,0.603381931781769,-0.503465950489044,-0.618427097797394,0.327760189771652,-0.449723869562149,-0.830855906009674,0.569060683250427,-0.632414758205414,-0.525567591190338,0.679137527942657,-0.678981602191925,-0.27884766459465,0.731515288352966,-0.610370516777039,-0.303863555192947,0.569060683250427,-0.632414758205414,-0.525567591190338,0.538591325283051,-0.732020914554596,-0.417210638523102,0.623779773712158,-0.675291478633881,-0.393548011779785,0.564758598804474,-0.761623561382294,-0.317768931388855,0.538591325283051,-0.732020914554596,-0.417210638523102,0.552311420440674,-0.672141671180725,-0.493130147457123,0.623779773712158,-0.675291478633881,-0.393548011779785, +0.691637456417084,-0.698186278343201,-0.184860527515411,0.603683292865753,-0.766315698623657,-0.219832956790924,0.653153777122498,-0.72777533531189,-0.209124520421028,0.679137527942657,-0.678981602191925,-0.27884766459465,0.629380762577057,-0.7384192943573,-0.24210898578167,0.691637456417084,-0.698186278343201,-0.184860527515411,0.604139387607574,-0.7543985247612,-0.256706595420837,0.653153777122498,-0.72777533531189,-0.209124520421028,0.581222474575043,-0.772816240787506,-0.254824042320251,0.574822664260864,-0.766007542610168,-0.287769317626953,0.564758598804474,-0.761623561382294,-0.317768931388855,0.604139387607574,-0.7543985247612,-0.256706595420837,0.789687871932983,-0.457640141248703,-0.408605486154556,0.526396095752716,-0.665083587169647,-0.529689311981201,0.686307370662689,-0.614455699920654,-0.389135360717773,0.639328300952911,-0.540497124195099,-0.546920597553253,0.789687871932983,-0.457640141248703,-0.408605486154556,0.872139453887939,-0.300076693296433,-0.38642817735672,0.538591325283051,-0.732020914554596,-0.417210638523102,0.686307370662689,-0.614455699920654,-0.389135360717773,0.526396095752716,-0.665083587169647,-0.529689311981201,0.639328300952911,-0.540497124195099,-0.546920597553253,0.872139453887939,-0.300076693296433,-0.38642817735672,0.736971020698547,-0.387532562017441,-0.553797960281372,0.730636835098267,-0.202308744192123,-0.652104914188385,0.736971020698547,-0.387532562017441,-0.553797960281372,0.876197099685669,-0.190329879522324,-0.442778885364532,0.271816283464432,-0.327851980924606,-0.904781103134155,0.324741184711456,-0.204104751348495,-0.923517346382141,0.264180034399033,-0.324005872011185,-0.908421158790588,0.137511804699898,-0.344733208417892,-0.928573846817017,0.271816283464432,-0.327851980924606,-0.904781103134155,0.264180034399033,-0.324005872011185,-0.908421158790588,0.137511804699898,-0.344733208417892,-0.928573846817017,0.0351591259241104,-0.332751035690308,-0.942359030246735,0.145978778600693,-0.310242980718613,-0.939382433891296,0.538435637950897,-0.109293751418591,-0.83554881811142, +0.607297956943512,-0.11163467913866,-0.786591827869415,0.676005244255066,-0.171507328748703,-0.71666032075882,0.538435637950897,-0.109293751418591,-0.83554881811142,0.447589695453644,-0.12448013573885,-0.885532677173615,0.505612194538116,-0.0862507000565529,-0.858438551425934,0.505612194538116,-0.0862507000565529,-0.858438551425934,0.447589695453644,-0.12448013573885,-0.885532677173615,0.385784804821014,-0.173191785812378,-0.906186819076538,0.324741184711456,-0.204104751348495,-0.923517346382141,0.430418729782104,-0.19074285030365,-0.882245302200317,0.385784804821014,-0.173191785812378,-0.906186819076538,0.730636835098267,-0.202308744192123,-0.652104914188385,0.806763172149658,-0.201846897602081,-0.555329501628876,0.676005244255066,-0.171507328748703,-0.71666032075882,0.949435293674469,-0.310529887676239,-0.0462975911796093,0.955990076065063,-0.288337558507919,0.0542616359889507,0.932419061660767,-0.360883712768555,0.0189088843762875,0.930170238018036,-0.311860710382462,-0.193716377019882,0.949435293674469,-0.310529887676239,-0.0462975911796093,0.928279101848602,-0.352952182292938,-0.117143124341965,0.77934867143631,-0.531836926937103,-0.331308156251907,0.741886615753174,-0.509963095188141,-0.43536388874054,0.804768800735474,-0.367822736501694,-0.465889990329742,0.909788370132446,-0.329163044691086,-0.252856612205505,0.928279101848602,-0.352952182292938,-0.117143124341965,0.899893939495087,-0.401437640190125,-0.170407116413116,0.899893939495087,-0.401437640190125,-0.170407116413116,0.823440253734589,-0.527704954147339,-0.208503022789955,0.892597615718842,-0.363973349332809,-0.266069054603577,0.823440253734589,-0.527704954147339,-0.208503022789955,0.77934867143631,-0.531836926937103,-0.331308156251907,0.853956937789917,-0.372074782848358,-0.363755106925964,0.674787998199463,-0.508593559265137,-0.534783661365509,0.741886615753174,-0.509963095188141,-0.43536388874054,0.683374106884003,-0.61285787820816,-0.39674299955368,0.674787998199463,-0.508593559265137,-0.534783661365509,0.62163782119751,-0.591553866863251,-0.513449311256409, +0.596915066242218,-0.478820025920868,-0.643757402896881,0.596915066242218,-0.478820025920868,-0.643757402896881,0.62163782119751,-0.591553866863251,-0.513449311256409,0.555940628051758,-0.564490854740143,-0.610147416591644,0.479820877313614,-0.502831399440765,-0.718980073928833,0.555940628051758,-0.564490854740143,-0.610147416591644,0.482480525970459,-0.637502074241638,-0.600669205188751,0.334909796714783,-0.628960132598877,-0.701601386070251,0.28803014755249,-0.569406509399414,-0.769944667816162,0.359783113002777,-0.453989893198013,-0.815137505531311,0.28803014755249,-0.569406509399414,-0.769944667816162,0.228927999734879,-0.530000746250153,-0.816511511802673,0.208737909793854,-0.427034497261047,-0.87981241941452,0.482480525970459,-0.637502074241638,-0.600669205188751,0.402071952819824,-0.635098934173584,-0.659535646438599,0.479820877313614,-0.502831399440765,-0.718980073928833,0.334909796714783,-0.628960132598877,-0.701601386070251,0.359783113002777,-0.453989893198013,-0.815137505531311,0.402071952819824,-0.635098934173584,-0.659535646438599,0.0817298367619514,-0.306247889995575,-0.948436796665192,0.199501812458038,-0.407474100589752,-0.891158699989319,0.160610005259514,-0.474987328052521,-0.865211725234985,0.0694498717784882,-0.243639498949051,-0.967376053333282,0.0685686022043228,-0.195197850465775,-0.978363931179047,0.0817298367619514,-0.306247889995575,-0.948436796665192,0.162542730569839,-0.414484977722168,-0.89542281627655,0.228927999734879,-0.530000746250153,-0.816511511802673,0.260213911533356,-0.498987674713135,-0.826619565486908,0.260213911533356,-0.498987674713135,-0.826619565486908,0.277806550264359,-0.508620321750641,-0.814940929412842,0.199501812458038,-0.407474100589752,-0.891158699989319,0.943977952003479,-0.312062084674835,0.107344038784504,0.953539431095123,-0.235065281391144,0.188432320952415,0.940094292163849,-0.28944393992424,0.18012447655201,0.953539431095123,-0.235065281391144,0.188432320952415,0.943977952003479,-0.312062084674835,0.107344038784504,0.965255260467529,-0.232284337282181,0.119691982865334, +0.955990076065063,-0.288337558507919,0.0542616359889507,0.965255260467529,-0.232284337282181,0.119691982865334,0.943977952003479,-0.312062084674835,0.107344038784504,0.835454940795898,-0.270389169454575,0.478439778089523,0.771929562091827,-0.270482540130615,0.575294494628906,0.738793075084686,-0.397019654512405,0.544573247432709,0.835454940795898,-0.270389169454575,0.478439778089523,0.738793075084686,-0.397019654512405,0.544573247432709,0.831655621528625,-0.387141674757004,0.398083060979843,0.904810965061188,-0.36812362074852,0.214013934135437,0.906941473484039,-0.292563915252686,0.303089797496796,0.831655621528625,-0.387141674757004,0.398083060979843,0.906941473484039,-0.292563915252686,0.303089797496796,0.904810965061188,-0.36812362074852,0.214013934135437,0.940094292163849,-0.28944393992424,0.18012447655201,0.541393756866455,-0.575668692588806,0.612779021263123,0.587513506412506,-0.551960587501526,0.591749250888824,0.573668122291565,-0.508787095546722,0.641903698444366,0.580141603946686,-0.482462227344513,0.656251311302185,0.587513506412506,-0.551960587501526,0.591749250888824,0.638442516326904,-0.509985387325287,0.576459765434265,0.738793075084686,-0.397019654512405,0.544573247432709,0.659471035003662,-0.415870577096939,0.626218378543854,0.638442516326904,-0.509985387325287,0.576459765434265,0.202862411737442,-0.799380600452423,0.565541744232178,0.247458085417748,-0.848811864852905,0.467207431793213,0.28773757815361,-0.825198948383331,0.486059278249741,0.28773757815361,-0.825198948383331,0.486059278249741,0.324611246585846,-0.854252457618713,0.40605440735817,0.38670215010643,-0.811047077178955,0.43893501162529,0.38670215010643,-0.811047077178955,0.43893501162529,0.424845576286316,-0.820532977581024,0.382402628660202,0.424862533807755,-0.779196381568909,0.46080869436264,0.437753558158875,-0.720838665962219,0.537367105484009,0.404292851686478,-0.745663642883301,0.529653489589691,0.424862533807755,-0.779196381568909,0.46080869436264,0.243718072772026,-0.886866569519043,0.392516255378723,0.247458085417748,-0.848811864852905,0.467207431793213, +0.241858214139938,-0.837083041667938,0.490710139274597,0.243718072772026,-0.886866569519043,0.392516255378723,0.241858214139938,-0.837083041667938,0.490710139274597,0.263385146856308,-0.887956738471985,0.377042412757874,0.486788839101791,-0.65315967798233,0.580016314983368,0.545256972312927,-0.632359206676483,0.55028760433197,0.541393756866455,-0.575668692588806,0.612779021263123,0.437753558158875,-0.720838665962219,0.537367105484009,0.487753838300705,-0.701559543609619,0.519528865814209,0.486788839101791,-0.65315967798233,0.580016314983368,0.112325459718704,-0.399146139621735,-0.909980893135071,0.220681175589561,-0.279628455638886,-0.934402287006378,0.0694498717784882,-0.243639498949051,-0.967376053333282,0.178027421236038,-0.376230776309967,-0.909261524677277,0.220681175589561,-0.279628455638886,-0.934402287006378,0.112325459718704,-0.399146139621735,-0.909980893135071,0.327760189771652,-0.449723869562149,-0.830855906009674,0.178027421236038,-0.376230776309967,-0.909261524677277,0.176205426454544,-0.468516409397125,-0.865704298019409,0.461405098438263,-0.614696443080902,-0.639729201793671,0.569060683250427,-0.632414758205414,-0.525567591190338,0.327760189771652,-0.449723869562149,-0.830855906009674,0.61866557598114,-0.683611392974854,-0.38720566034317,0.679137527942657,-0.678981602191925,-0.27884766459465,0.569060683250427,-0.632414758205414,-0.525567591190338,0.627333045005798,-0.73214191198349,-0.265370100736618,0.538591325283051,-0.732020914554596,-0.417210638523102,0.564758598804474,-0.761623561382294,-0.317768931388855,0.603683292865753,-0.766315698623657,-0.219832956790924,0.691637456417084,-0.698186278343201,-0.184860527515411,0.629380762577057,-0.7384192943573,-0.24210898578167,0.581222474575043,-0.772816240787506,-0.254824042320251,0.653153777122498,-0.72777533531189,-0.209124520421028,0.603683292865753,-0.766315698623657,-0.219832956790924,0.61866557598114,-0.683611392974854,-0.38720566034317,0.629380762577057,-0.7384192943573,-0.24210898578167,0.679137527942657,-0.678981602191925,-0.27884766459465,0.574822664260864,-0.766007542610168,-0.287769317626953, +0.604139387607574,-0.7543985247612,-0.256706595420837,0.581222474575043,-0.772816240787506,-0.254824042320251,0.627333045005798,-0.73214191198349,-0.265370100736618,0.564758598804474,-0.761623561382294,-0.317768931388855,0.574822664260864,-0.766007542610168,-0.287769317626953,0.789687871932983,-0.457640141248703,-0.408605486154556,0.686307370662689,-0.614455699920654,-0.389135360717773,0.863511562347412,-0.439077287912369,-0.248110666871071,0.899975657463074,-0.347292721271515,-0.263498365879059,0.872139453887939,-0.300076693296433,-0.38642817735672,0.789687871932983,-0.457640141248703,-0.408605486154556,0.538591325283051,-0.732020914554596,-0.417210638523102,0.627333045005798,-0.73214191198349,-0.265370100736618,0.686307370662689,-0.614455699920654,-0.389135360717773,0.876197099685669,-0.190329879522324,-0.442778885364532,0.736971020698547,-0.387532562017441,-0.553797960281372,0.872139453887939,-0.300076693296433,-0.38642817735672,0.876197099685669,-0.190329879522324,-0.442778885364532,0.806763172149658,-0.201846897602081,-0.555329501628876,0.730636835098267,-0.202308744192123,-0.652104914188385,0.324741184711456,-0.204104751348495,-0.923517346382141,0.385784804821014,-0.173191785812378,-0.906186819076538,0.264180034399033,-0.324005872011185,-0.908421158790588,0.229662716388702,-0.363244950771332,-0.902944087982178,0.137511804699898,-0.344733208417892,-0.928573846817017,0.264180034399033,-0.324005872011185,-0.908421158790588,0.137511804699898,-0.344733208417892,-0.928573846817017,0.0323366522789001,-0.370839953422546,-0.928133547306061,0.0351591259241104,-0.332751035690308,-0.942359030246735,0.538435637950897,-0.109293751418591,-0.83554881811142,0.676005244255066,-0.171507328748703,-0.71666032075882,0.53332656621933,-0.311947226524353,-0.786289751529694,0.538435637950897,-0.109293751418591,-0.83554881811142,0.40187931060791,-0.311384826898575,-0.861122786998749,0.447589695453644,-0.12448013573885,-0.885532677173615,0.447589695453644,-0.12448013573885,-0.885532677173615,0.40187931060791,-0.311384826898575,-0.861122786998749, +0.385784804821014,-0.173191785812378,-0.906186819076538,0.720714390277863,-0.380926162004471,-0.579194128513336,0.676005244255066,-0.171507328748703,-0.71666032075882,0.806763172149658,-0.201846897602081,-0.555329501628876,0.932419061660767,-0.360883712768555,0.0189088843762875,0.955990076065063,-0.288337558507919,0.0542616359889507,0.943977952003479,-0.312062084674835,0.107344038784504,0.949435293674469,-0.310529887676239,-0.0462975911796093,0.932419061660767,-0.360883712768555,0.0189088843762875,0.928279101848602,-0.352952182292938,-0.117143124341965,0.77934867143631,-0.531836926937103,-0.331308156251907,0.702548742294312,-0.652252435684204,-0.284590721130371,0.741886615753174,-0.509963095188141,-0.43536388874054,0.899893939495087,-0.401437640190125,-0.170407116413116,0.928279101848602,-0.352952182292938,-0.117143124341965,0.897641539573669,-0.436258971691132,-0.0625893548130989,0.834791243076324,-0.542406439781189,-0.0944395735859871,0.823440253734589,-0.527704954147339,-0.208503022789955,0.899893939495087,-0.401437640190125,-0.170407116413116,0.823440253734589,-0.527704954147339,-0.208503022789955,0.716276288032532,-0.665262043476105,-0.210652679204941,0.77934867143631,-0.531836926937103,-0.331308156251907,0.741886615753174,-0.509963095188141,-0.43536388874054,0.702548742294312,-0.652252435684204,-0.284590721130371,0.683374106884003,-0.61285787820816,-0.39674299955368,0.683374106884003,-0.61285787820816,-0.39674299955368,0.62163782119751,-0.591553866863251,-0.513449311256409,0.674787998199463,-0.508593559265137,-0.534783661365509,0.62163782119751,-0.591553866863251,-0.513449311256409,0.538263082504272,-0.650817513465881,-0.535452365875244,0.555940628051758,-0.564490854740143,-0.610147416591644,0.538263082504272,-0.650817513465881,-0.535452365875244,0.482480525970459,-0.637502074241638,-0.600669205188751,0.555940628051758,-0.564490854740143,-0.610147416591644,0.334909796714783,-0.628960132598877,-0.701601386070251,0.37244975566864,-0.693966269493103,-0.616191387176514,0.28803014755249,-0.569406509399414,-0.769944667816162, +0.28803014755249,-0.569406509399414,-0.769944667816162,0.360432863235474,-0.641102433204651,-0.677551209926605,0.228927999734879,-0.530000746250153,-0.816511511802673,0.482480525970459,-0.637502074241638,-0.600669205188751,0.43299400806427,-0.726230382919312,-0.533952713012695,0.402071952819824,-0.635098934173584,-0.659535646438599,0.334909796714783,-0.628960132598877,-0.701601386070251,0.402071952819824,-0.635098934173584,-0.659535646438599,0.36204394698143,-0.72858852148056,-0.581448972225189,0.160610005259514,-0.474987328052521,-0.865211725234985,0.199501812458038,-0.407474100589752,-0.891158699989319,0.277806550264359,-0.508620321750641,-0.814940929412842,0.160610005259514,-0.474987328052521,-0.865211725234985,0.112325459718704,-0.399146139621735,-0.909980893135071,0.0817298367619514,-0.306247889995575,-0.948436796665192,0.0694498717784882,-0.243639498949051,-0.967376053333282,0.0817298367619514,-0.306247889995575,-0.948436796665192,0.112325459718704,-0.399146139621735,-0.909980893135071,0.324411034584045,-0.585119903087616,-0.743230879306793,0.260213911533356,-0.498987674713135,-0.826619565486908,0.228927999734879,-0.530000746250153,-0.816511511802673,0.277806550264359,-0.508620321750641,-0.814940929412842,0.260213911533356,-0.498987674713135,-0.826619565486908,0.384783744812012,-0.593780219554901,-0.706658601760864,0.927272737026215,-0.359832584857941,0.103371903300285,0.943977952003479,-0.312062084674835,0.107344038784504,0.940094292163849,-0.28944393992424,0.18012447655201,0.753288626670837,-0.495452642440796,0.432530701160431,0.831655621528625,-0.387141674757004,0.398083060979843,0.738793075084686,-0.397019654512405,0.544573247432709,0.904810965061188,-0.36812362074852,0.214013934135437,0.831655621528625,-0.387141674757004,0.398083060979843,0.846029579639435,-0.472371816635132,0.247181579470634,0.927272737026215,-0.359832584857941,0.103371903300285,0.940094292163849,-0.28944393992424,0.18012447655201,0.904810965061188,-0.36812362074852,0.214013934135437,0.545256972312927,-0.632359206676483,0.55028760433197, +0.587513506412506,-0.551960587501526,0.591749250888824,0.541393756866455,-0.575668692588806,0.612779021263123,0.638442516326904,-0.509985387325287,0.576459765434265,0.587513506412506,-0.551960587501526,0.591749250888824,0.614880979061127,-0.583878040313721,0.530101537704468,0.683216273784637,-0.503210723400116,0.529144942760468,0.738793075084686,-0.397019654512405,0.544573247432709,0.638442516326904,-0.509985387325287,0.576459765434265,0.247458085417748,-0.848811864852905,0.467207431793213,0.324611246585846,-0.854252457618713,0.40605440735817,0.28773757815361,-0.825198948383331,0.486059278249741,0.324611246585846,-0.854252457618713,0.40605440735817,0.385232716798782,-0.857079148292542,0.342068582773209,0.38670215010643,-0.811047077178955,0.43893501162529,0.38670215010643,-0.811047077178955,0.43893501162529,0.385232716798782,-0.857079148292542,0.342068582773209,0.424845576286316,-0.820532977581024,0.382402628660202,0.433050990104675,-0.817644596099854,0.379373222589493,0.424862533807755,-0.779196381568909,0.46080869436264,0.424845576286316,-0.820532977581024,0.382402628660202,0.447517931461334,-0.766533076763153,0.460602402687073,0.437753558158875,-0.720838665962219,0.537367105484009,0.424862533807755,-0.779196381568909,0.46080869436264,0.30123370885849,-0.885816931724548,0.352968126535416,0.247458085417748,-0.848811864852905,0.467207431793213,0.243718072772026,-0.886866569519043,0.392516255378723,0.243718072772026,-0.886866569519043,0.392516255378723,0.263385146856308,-0.887956738471985,0.377042412757874,0.243824228644371,-0.914848804473877,0.3218714594841,0.486788839101791,-0.65315967798233,0.580016314983368,0.487753838300705,-0.701559543609619,0.519528865814209,0.545256972312927,-0.632359206676483,0.55028760433197,0.437753558158875,-0.720838665962219,0.537367105484009,0.447517931461334,-0.766533076763153,0.460602402687073,0.487753838300705,-0.701559543609619,0.519528865814209,0.178027421236038,-0.376230776309967,-0.909261524677277,0.112325459718704,-0.399146139621735,-0.909980893135071,0.176205426454544,-0.468516409397125,-0.865704298019409, +0.327760189771652,-0.449723869562149,-0.830855906009674,0.176205426454544,-0.468516409397125,-0.865704298019409,0.249037459492683,-0.489138215780258,-0.835897147655487,0.461405098438263,-0.614696443080902,-0.639729201793671,0.61866557598114,-0.683611392974854,-0.38720566034317,0.569060683250427,-0.632414758205414,-0.525567591190338,0.461405098438263,-0.614696443080902,-0.639729201793671,0.327760189771652,-0.449723869562149,-0.830855906009674,0.249037459492683,-0.489138215780258,-0.835897147655487,0.629380762577057,-0.7384192943573,-0.24210898578167,0.637076318264008,-0.72201943397522,-0.269854962825775,0.603683292865753,-0.766315698623657,-0.219832956790924,0.581222474575043,-0.772816240787506,-0.254824042320251,0.603683292865753,-0.766315698623657,-0.219832956790924,0.681593775749207,-0.693611621856689,-0.233093708753586,0.628200471401215,-0.704455494880676,-0.33031290769577,0.629380762577057,-0.7384192943573,-0.24210898578167,0.61866557598114,-0.683611392974854,-0.38720566034317,0.574822664260864,-0.766007542610168,-0.287769317626953,0.581222474575043,-0.772816240787506,-0.254824042320251,0.681593775749207,-0.693611621856689,-0.233093708753586,0.627333045005798,-0.73214191198349,-0.265370100736618,0.574822664260864,-0.766007542610168,-0.287769317626953,0.686333000659943,-0.686554372310638,-0.239979341626167,0.863511562347412,-0.439077287912369,-0.248110666871071,0.686307370662689,-0.614455699920654,-0.389135360717773,0.816489040851593,-0.542169451713562,-0.198488667607307,0.899975657463074,-0.347292721271515,-0.263498365879059,0.789687871932983,-0.457640141248703,-0.408605486154556,0.863511562347412,-0.439077287912369,-0.248110666871071,0.842103660106659,-0.369900792837143,-0.392472505569458,0.872139453887939,-0.300076693296433,-0.38642817735672,0.899975657463074,-0.347292721271515,-0.263498365879059,0.627333045005798,-0.73214191198349,-0.265370100736618,0.816489040851593,-0.542169451713562,-0.198488667607307,0.686307370662689,-0.614455699920654,-0.389135360717773,0.876197099685669,-0.190329879522324,-0.442778885364532, +0.872139453887939,-0.300076693296433,-0.38642817735672,0.842103660106659,-0.369900792837143,-0.392472505569458,0.876197099685669,-0.190329879522324,-0.442778885364532,0.842103660106659,-0.369900792837143,-0.392472505569458,0.806763172149658,-0.201846897602081,-0.555329501628876,0.40187931060791,-0.311384826898575,-0.861122786998749,0.264180034399033,-0.324005872011185,-0.908421158790588,0.385784804821014,-0.173191785812378,-0.906186819076538,0.229662716388702,-0.363244950771332,-0.902944087982178,0.122939303517342,-0.290094465017319,-0.949068546295166,0.137511804699898,-0.344733208417892,-0.928573846817017,0.345387160778046,-0.446389526128769,-0.825496256351471,0.229662716388702,-0.363244950771332,-0.902944087982178,0.264180034399033,-0.324005872011185,-0.908421158790588,0.122939303517342,-0.290094465017319,-0.949068546295166,0.0323366522789001,-0.370839953422546,-0.928133547306061,0.137511804699898,-0.344733208417892,-0.928573846817017,0.609108924865723,-0.457159668207169,-0.6480672955513,0.53332656621933,-0.311947226524353,-0.786289751529694,0.676005244255066,-0.171507328748703,-0.71666032075882,0.538435637950897,-0.109293751418591,-0.83554881811142,0.53332656621933,-0.311947226524353,-0.786289751529694,0.40187931060791,-0.311384826898575,-0.861122786998749,0.720714390277863,-0.380926162004471,-0.579194128513336,0.609108924865723,-0.457159668207169,-0.6480672955513,0.676005244255066,-0.171507328748703,-0.71666032075882,0.720714390277863,-0.380926162004471,-0.579194128513336,0.806763172149658,-0.201846897602081,-0.555329501628876,0.842103660106659,-0.369900792837143,-0.392472505569458,0.932419061660767,-0.360883712768555,0.0189088843762875,0.943977952003479,-0.312062084674835,0.107344038784504,0.927272737026215,-0.359832584857941,0.103371903300285,0.932419061660767,-0.360883712768555,0.0189088843762875,0.897641539573669,-0.436258971691132,-0.0625893548130989,0.928279101848602,-0.352952182292938,-0.117143124341965,0.716276288032532,-0.665262043476105,-0.210652679204941,0.702548742294312,-0.652252435684204,-0.284590721130371, +0.77934867143631,-0.531836926937103,-0.331308156251907,0.899893939495087,-0.401437640190125,-0.170407116413116,0.897641539573669,-0.436258971691132,-0.0625893548130989,0.834791243076324,-0.542406439781189,-0.0944395735859871,0.834791243076324,-0.542406439781189,-0.0944395735859871,0.730987548828125,-0.669993996620178,-0.129480138421059,0.823440253734589,-0.527704954147339,-0.208503022789955,0.716276288032532,-0.665262043476105,-0.210652679204941,0.823440253734589,-0.527704954147339,-0.208503022789955,0.730987548828125,-0.669993996620178,-0.129480138421059,0.676041305065155,-0.689907848834991,-0.258834421634674,0.683374106884003,-0.61285787820816,-0.39674299955368,0.702548742294312,-0.652252435684204,-0.284590721130371,0.642943143844604,-0.667517006397247,-0.375559538602829,0.62163782119751,-0.591553866863251,-0.513449311256409,0.683374106884003,-0.61285787820816,-0.39674299955368,0.538263082504272,-0.650817513465881,-0.535452365875244,0.62163782119751,-0.591553866863251,-0.513449311256409,0.588127493858337,-0.649973452091217,-0.481290459632874,0.538263082504272,-0.650817513465881,-0.535452365875244,0.43299400806427,-0.726230382919312,-0.533952713012695,0.482480525970459,-0.637502074241638,-0.600669205188751,0.37244975566864,-0.693966269493103,-0.616191387176514,0.334909796714783,-0.628960132598877,-0.701601386070251,0.36204394698143,-0.72858852148056,-0.581448972225189,0.37244975566864,-0.693966269493103,-0.616191387176514,0.360432863235474,-0.641102433204651,-0.677551209926605,0.28803014755249,-0.569406509399414,-0.769944667816162,0.324411034584045,-0.585119903087616,-0.743230879306793,0.228927999734879,-0.530000746250153,-0.816511511802673,0.360432863235474,-0.641102433204651,-0.677551209926605,0.43299400806427,-0.726230382919312,-0.533952713012695,0.36204394698143,-0.72858852148056,-0.581448972225189,0.402071952819824,-0.635098934173584,-0.659535646438599,0.160610005259514,-0.474987328052521,-0.865211725234985,0.277806550264359,-0.508620321750641,-0.814940929412842,0.252474337816238,-0.574197947978973,-0.778815269470215, +0.160610005259514,-0.474987328052521,-0.865211725234985,0.136885747313499,-0.531291663646698,-0.836057007312775,0.112325459718704,-0.399146139621735,-0.909980893135071,0.324411034584045,-0.585119903087616,-0.743230879306793,0.384783744812012,-0.593780219554901,-0.706658601760864,0.260213911533356,-0.498987674713135,-0.826619565486908,0.384783744812012,-0.593780219554901,-0.706658601760864,0.252474337816238,-0.574197947978973,-0.778815269470215,0.277806550264359,-0.508620321750641,-0.814940929412842,0.831655621528625,-0.387141674757004,0.398083060979843,0.753288626670837,-0.495452642440796,0.432530701160431,0.846029579639435,-0.472371816635132,0.247181579470634,0.683216273784637,-0.503210723400116,0.529144942760468,0.753288626670837,-0.495452642440796,0.432530701160431,0.738793075084686,-0.397019654512405,0.544573247432709,0.886249542236328,-0.450310558080673,0.108543790876865,0.904810965061188,-0.36812362074852,0.214013934135437,0.846029579639435,-0.472371816635132,0.247181579470634,0.927272737026215,-0.359832584857941,0.103371903300285,0.904810965061188,-0.36812362074852,0.214013934135437,0.886249542236328,-0.450310558080673,0.108543790876865,0.587513506412506,-0.551960587501526,0.591749250888824,0.545256972312927,-0.632359206676483,0.55028760433197,0.614880979061127,-0.583878040313721,0.530101537704468,0.638442516326904,-0.509985387325287,0.576459765434265,0.614880979061127,-0.583878040313721,0.530101537704468,0.64184844493866,-0.551427960395813,0.53287672996521,0.64184844493866,-0.551427960395813,0.53287672996521,0.683216273784637,-0.503210723400116,0.529144942760468,0.638442516326904,-0.509985387325287,0.576459765434265,0.247458085417748,-0.848811864852905,0.467207431793213,0.30123370885849,-0.885816931724548,0.352968126535416,0.324611246585846,-0.854252457618713,0.40605440735817,0.30123370885849,-0.885816931724548,0.352968126535416,0.385232716798782,-0.857079148292542,0.342068582773209,0.324611246585846,-0.854252457618713,0.40605440735817,0.435038894414902,-0.843002140522003,0.316367536783218,0.424845576286316,-0.820532977581024,0.382402628660202, +0.385232716798782,-0.857079148292542,0.342068582773209,0.424862533807755,-0.779196381568909,0.46080869436264,0.433050990104675,-0.817644596099854,0.379373222589493,0.447517931461334,-0.766533076763153,0.460602402687073,0.435038894414902,-0.843002140522003,0.316367536783218,0.433050990104675,-0.817644596099854,0.379373222589493,0.424845576286316,-0.820532977581024,0.382402628660202,0.30123370885849,-0.885816931724548,0.352968126535416,0.243718072772026,-0.886866569519043,0.392516255378723,0.266067236661911,-0.901758670806885,0.340645521879196,0.266067236661911,-0.901758670806885,0.340645521879196,0.243718072772026,-0.886866569519043,0.392516255378723,0.243824228644371,-0.914848804473877,0.3218714594841,0.545256972312927,-0.632359206676483,0.55028760433197,0.487753838300705,-0.701559543609619,0.519528865814209,0.56738144159317,-0.656154334545136,0.49753350019455,0.447517931461334,-0.766533076763153,0.460602402687073,0.524366796016693,-0.722476303577423,0.450629830360413,0.487753838300705,-0.701559543609619,0.519528865814209,0.139880657196045,-0.508958041667938,-0.849349737167358,0.176205426454544,-0.468516409397125,-0.865704298019409,0.112325459718704,-0.399146139621735,-0.909980893135071,0.266495436429977,-0.512512028217316,-0.816278994083405,0.249037459492683,-0.489138215780258,-0.835897147655487,0.176205426454544,-0.468516409397125,-0.865704298019409,0.461405098438263,-0.614696443080902,-0.639729201793671,0.55337256193161,-0.587979435920715,-0.589965105056763,0.61866557598114,-0.683611392974854,-0.38720566034317,0.249037459492683,-0.489138215780258,-0.835897147655487,0.395704209804535,-0.535148203372955,-0.746347367763519,0.461405098438263,-0.614696443080902,-0.639729201793671,0.628200471401215,-0.704455494880676,-0.33031290769577,0.637076318264008,-0.72201943397522,-0.269854962825775,0.629380762577057,-0.7384192943573,-0.24210898578167,0.681593775749207,-0.693611621856689,-0.233093708753586,0.603683292865753,-0.766315698623657,-0.219832956790924,0.637076318264008,-0.72201943397522,-0.269854962825775,0.61866557598114,-0.683611392974854,-0.38720566034317, +0.636350333690643,-0.635093867778778,-0.437851399183273,0.628200471401215,-0.704455494880676,-0.33031290769577,0.731234729290009,-0.623825192451477,-0.275930613279343,0.574822664260864,-0.766007542610168,-0.287769317626953,0.681593775749207,-0.693611621856689,-0.233093708753586,0.731234729290009,-0.623825192451477,-0.275930613279343,0.686333000659943,-0.686554372310638,-0.239979341626167,0.574822664260864,-0.766007542610168,-0.287769317626953,0.686333000659943,-0.686554372310638,-0.239979341626167,0.816489040851593,-0.542169451713562,-0.198488667607307,0.627333045005798,-0.73214191198349,-0.265370100736618,0.863511562347412,-0.439077287912369,-0.248110666871071,0.816489040851593,-0.542169451713562,-0.198488667607307,0.868540942668915,-0.465822398662567,-0.169251188635826,0.899975657463074,-0.347292721271515,-0.263498365879059,0.863511562347412,-0.439077287912369,-0.248110666871071,0.844900012016296,-0.476962566375732,-0.242178663611412,0.842103660106659,-0.369900792837143,-0.392472505569458,0.899975657463074,-0.347292721271515,-0.263498365879059,0.844900012016296,-0.476962566375732,-0.242178663611412,0.40187931060791,-0.311384826898575,-0.861122786998749,0.345387160778046,-0.446389526128769,-0.825496256351471,0.264180034399033,-0.324005872011185,-0.908421158790588,0.229662716388702,-0.363244950771332,-0.902944087982178,0.244076743721962,-0.198354139924049,-0.949253439903259,0.122939303517342,-0.290094465017319,-0.949068546295166,0.355026990175247,-0.413212448358536,-0.838576853275299,0.229662716388702,-0.363244950771332,-0.902944087982178,0.345387160778046,-0.446389526128769,-0.825496256351471,0.0668484568595886,-0.200863599777222,-0.977335691452026,0.0323366522789001,-0.370839953422546,-0.928133547306061,0.122939303517342,-0.290094465017319,-0.949068546295166,0.609108924865723,-0.457159668207169,-0.6480672955513,0.462845683097839,-0.481603145599365,-0.744198977947235,0.53332656621933,-0.311947226524353,-0.786289751529694,0.40187931060791,-0.311384826898575,-0.861122786998749,0.53332656621933,-0.311947226524353,-0.786289751529694, +0.462845683097839,-0.481603145599365,-0.744198977947235,0.692213118076324,-0.530620515346527,-0.489165276288986,0.609108924865723,-0.457159668207169,-0.6480672955513,0.720714390277863,-0.380926162004471,-0.579194128513336,0.842103660106659,-0.369900792837143,-0.392472505569458,0.692213118076324,-0.530620515346527,-0.489165276288986,0.720714390277863,-0.380926162004471,-0.579194128513336,0.932419061660767,-0.360883712768555,0.0189088843762875,0.927272737026215,-0.359832584857941,0.103371903300285,0.900867700576782,-0.432963192462921,0.0313084051012993,0.897641539573669,-0.436258971691132,-0.0625893548130989,0.932419061660767,-0.360883712768555,0.0189088843762875,0.900867700576782,-0.432963192462921,0.0313084051012993,0.716276288032532,-0.665262043476105,-0.210652679204941,0.670491278171539,-0.720428645610809,-0.177267625927925,0.702548742294312,-0.652252435684204,-0.284590721130371,0.838153898715973,-0.545166492462158,0.0170739125460386,0.834791243076324,-0.542406439781189,-0.0944395735859871,0.897641539573669,-0.436258971691132,-0.0625893548130989,0.730987548828125,-0.669993996620178,-0.129480138421059,0.834791243076324,-0.542406439781189,-0.0944395735859871,0.767698884010315,-0.638492465019226,-0.0544574372470379,0.730987548828125,-0.669993996620178,-0.129480138421059,0.670491278171539,-0.720428645610809,-0.177267625927925,0.716276288032532,-0.665262043476105,-0.210652679204941,0.676041305065155,-0.689907848834991,-0.258834421634674,0.642943143844604,-0.667517006397247,-0.375559538602829,0.683374106884003,-0.61285787820816,-0.39674299955368,0.702548742294312,-0.652252435684204,-0.284590721130371,0.670491278171539,-0.720428645610809,-0.177267625927925,0.676041305065155,-0.689907848834991,-0.258834421634674,0.642943143844604,-0.667517006397247,-0.375559538602829,0.588127493858337,-0.649973452091217,-0.481290459632874,0.62163782119751,-0.591553866863251,-0.513449311256409,0.538263082504272,-0.650817513465881,-0.535452365875244,0.588127493858337,-0.649973452091217,-0.481290459632874,0.520097196102142,-0.707392394542694,-0.478638410568237, +0.538263082504272,-0.650817513465881,-0.535452365875244,0.520097196102142,-0.707392394542694,-0.478638410568237,0.43299400806427,-0.726230382919312,-0.533952713012695,0.435529619455338,-0.723916411399841,-0.535031616687775,0.37244975566864,-0.693966269493103,-0.616191387176514,0.36204394698143,-0.72858852148056,-0.581448972225189,0.360432863235474,-0.641102433204651,-0.677551209926605,0.37244975566864,-0.693966269493103,-0.616191387176514,0.488681137561798,-0.689758539199829,-0.534250617027283,0.451299548149109,-0.642460227012634,-0.619332909584045,0.324411034584045,-0.585119903087616,-0.743230879306793,0.360432863235474,-0.641102433204651,-0.677551209926605,0.43299400806427,-0.726230382919312,-0.533952713012695,0.399704217910767,-0.751795470714569,-0.524442553520203,0.36204394698143,-0.72858852148056,-0.581448972225189,0.136885747313499,-0.531291663646698,-0.836057007312775,0.160610005259514,-0.474987328052521,-0.865211725234985,0.252474337816238,-0.574197947978973,-0.778815269470215,0.139880657196045,-0.508958041667938,-0.849349737167358,0.112325459718704,-0.399146139621735,-0.909980893135071,0.136885747313499,-0.531291663646698,-0.836057007312775,0.384783744812012,-0.593780219554901,-0.706658601760864,0.324411034584045,-0.585119903087616,-0.743230879306793,0.451299548149109,-0.642460227012634,-0.619332909584045,0.384783744812012,-0.593780219554901,-0.706658601760864,0.336410313844681,-0.681464970111847,-0.64994877576828,0.252474337816238,-0.574197947978973,-0.778815269470215,0.768582284450531,-0.572151124477386,0.28622379899025,0.846029579639435,-0.472371816635132,0.247181579470634,0.753288626670837,-0.495452642440796,0.432530701160431,0.753288626670837,-0.495452642440796,0.432530701160431,0.683216273784637,-0.503210723400116,0.529144942760468,0.667404115200043,-0.580221951007843,0.466812670230865,0.846029579639435,-0.472371816635132,0.247181579470634,0.818790853023529,-0.559719562530518,0.127653434872627,0.886249542236328,-0.450310558080673,0.108543790876865,0.886249542236328,-0.450310558080673,0.108543790876865, +0.900867700576782,-0.432963192462921,0.0313084051012993,0.927272737026215,-0.359832584857941,0.103371903300285,0.545256972312927,-0.632359206676483,0.55028760433197,0.56738144159317,-0.656154334545136,0.49753350019455,0.614880979061127,-0.583878040313721,0.530101537704468,0.64184844493866,-0.551427960395813,0.53287672996521,0.614880979061127,-0.583878040313721,0.530101537704468,0.627027690410614,-0.611715376377106,0.48232826590538,0.64184844493866,-0.551427960395813,0.53287672996521,0.667404115200043,-0.580221951007843,0.466812670230865,0.683216273784637,-0.503210723400116,0.529144942760468,0.30123370885849,-0.885816931724548,0.352968126535416,0.350975513458252,-0.894027888774872,0.2784423828125,0.385232716798782,-0.857079148292542,0.342068582773209,0.435038894414902,-0.843002140522003,0.316367536783218,0.385232716798782,-0.857079148292542,0.342068582773209,0.393164664506912,-0.882657408714294,0.257560521364212,0.433050990104675,-0.817644596099854,0.379373222589493,0.515483140945435,-0.776065051555634,0.363318026065826,0.447517931461334,-0.766533076763153,0.460602402687073,0.433050990104675,-0.817644596099854,0.379373222589493,0.435038894414902,-0.843002140522003,0.316367536783218,0.515483140945435,-0.776065051555634,0.363318026065826,0.30123370885849,-0.885816931724548,0.352968126535416,0.266067236661911,-0.901758670806885,0.340645521879196,0.29641729593277,-0.909375309944153,0.291844546794891,0.243824228644371,-0.914848804473877,0.3218714594841,0.29641729593277,-0.909375309944153,0.291844546794891,0.266067236661911,-0.901758670806885,0.340645521879196,0.524366796016693,-0.722476303577423,0.450629830360413,0.56738144159317,-0.656154334545136,0.49753350019455,0.487753838300705,-0.701559543609619,0.519528865814209,0.447517931461334,-0.766533076763153,0.460602402687073,0.515483140945435,-0.776065051555634,0.363318026065826,0.524366796016693,-0.722476303577423,0.450629830360413,0.139880657196045,-0.508958041667938,-0.849349737167358,0.160525009036064,-0.568779289722443,-0.806673228740692,0.176205426454544,-0.468516409397125,-0.865704298019409, +0.249037459492683,-0.489138215780258,-0.835897147655487,0.266495436429977,-0.512512028217316,-0.816278994083405,0.395704209804535,-0.535148203372955,-0.746347367763519,0.210522830486298,-0.55304890871048,-0.806112170219421,0.266495436429977,-0.512512028217316,-0.816278994083405,0.176205426454544,-0.468516409397125,-0.865704298019409,0.461405098438263,-0.614696443080902,-0.639729201793671,0.395704209804535,-0.535148203372955,-0.746347367763519,0.55337256193161,-0.587979435920715,-0.589965105056763,0.636350333690643,-0.635093867778778,-0.437851399183273,0.61866557598114,-0.683611392974854,-0.38720566034317,0.55337256193161,-0.587979435920715,-0.589965105056763,0.628200471401215,-0.704455494880676,-0.33031290769577,0.698465406894684,-0.623523533344269,-0.351232528686523,0.637076318264008,-0.72201943397522,-0.269854962825775,0.681593775749207,-0.693611621856689,-0.233093708753586,0.637076318264008,-0.72201943397522,-0.269854962825775,0.760299623012543,-0.590544641017914,-0.270557761192322,0.636350333690643,-0.635093867778778,-0.437851399183273,0.698465406894684,-0.623523533344269,-0.351232528686523,0.628200471401215,-0.704455494880676,-0.33031290769577,0.731234729290009,-0.623825192451477,-0.275930613279343,0.681593775749207,-0.693611621856689,-0.233093708753586,0.833641350269318,-0.525093495845795,-0.171226531267166,0.731234729290009,-0.623825192451477,-0.275930613279343,0.816489040851593,-0.542169451713562,-0.198488667607307,0.686333000659943,-0.686554372310638,-0.239979341626167,0.868540942668915,-0.465822398662567,-0.169251188635826,0.816489040851593,-0.542169451713562,-0.198488667607307,0.833641350269318,-0.525093495845795,-0.171226531267166,0.844900012016296,-0.476962566375732,-0.242178663611412,0.863511562347412,-0.439077287912369,-0.248110666871071,0.868540942668915,-0.465822398662567,-0.169251188635826,0.844900012016296,-0.476962566375732,-0.242178663611412,0.740516245365143,-0.540427803993225,-0.399466246366501,0.842103660106659,-0.369900792837143,-0.392472505569458,0.40187931060791,-0.311384826898575,-0.861122786998749, +0.462845683097839,-0.481603145599365,-0.744198977947235,0.345387160778046,-0.446389526128769,-0.825496256351471,0.322173118591309,-0.289665639400482,-0.901275873184204,0.244076743721962,-0.198354139924049,-0.949253439903259,0.229662716388702,-0.363244950771332,-0.902944087982178,0.244076743721962,-0.198354139924049,-0.949253439903259,0.152033463120461,-0.110295854508877,-0.982201874256134,0.122939303517342,-0.290094465017319,-0.949068546295166,0.355026990175247,-0.413212448358536,-0.838576853275299,0.322173118591309,-0.289665639400482,-0.901275873184204,0.229662716388702,-0.363244950771332,-0.902944087982178,0.355026990175247,-0.413212448358536,-0.838576853275299,0.345387160778046,-0.446389526128769,-0.825496256351471,0.454459249973297,-0.464697241783142,-0.759949445724487,0.0668484568595886,-0.200863599777222,-0.977335691452026,0.122939303517342,-0.290094465017319,-0.949068546295166,0.152033463120461,-0.110295854508877,-0.982201874256134,0.5339475274086,-0.50883013010025,-0.67527174949646,0.462845683097839,-0.481603145599365,-0.744198977947235,0.609108924865723,-0.457159668207169,-0.6480672955513,0.625402212142944,-0.541607260704041,-0.561723649501801,0.609108924865723,-0.457159668207169,-0.6480672955513,0.692213118076324,-0.530620515346527,-0.489165276288986,0.740516245365143,-0.540427803993225,-0.399466246366501,0.692213118076324,-0.530620515346527,-0.489165276288986,0.842103660106659,-0.369900792837143,-0.392472505569458,0.897641539573669,-0.436258971691132,-0.0625893548130989,0.900867700576782,-0.432963192462921,0.0313084051012993,0.838153898715973,-0.545166492462158,0.0170739125460386,0.838153898715973,-0.545166492462158,0.0170739125460386,0.767698884010315,-0.638492465019226,-0.0544574372470379,0.834791243076324,-0.542406439781189,-0.0944395735859871,0.701232850551605,-0.711355209350586,-0.0473938658833504,0.730987548828125,-0.669993996620178,-0.129480138421059,0.767698884010315,-0.638492465019226,-0.0544574372470379,0.672300696372986,-0.728870332241058,-0.129459545016289,0.670491278171539,-0.720428645610809,-0.177267625927925, +0.730987548828125,-0.669993996620178,-0.129480138421059,0.676041305065155,-0.689907848834991,-0.258834421634674,0.64277309179306,-0.732212126255035,-0.225184664130211,0.642943143844604,-0.667517006397247,-0.375559538602829,0.670491278171539,-0.720428645610809,-0.177267625927925,0.64277309179306,-0.732212126255035,-0.225184664130211,0.676041305065155,-0.689907848834991,-0.258834421634674,0.642943143844604,-0.667517006397247,-0.375559538602829,0.584830045700073,-0.714724719524384,-0.383591204881668,0.588127493858337,-0.649973452091217,-0.481290459632874,0.520097196102142,-0.707392394542694,-0.478638410568237,0.588127493858337,-0.649973452091217,-0.481290459632874,0.584830045700073,-0.714724719524384,-0.383591204881668,0.43299400806427,-0.726230382919312,-0.533952713012695,0.520097196102142,-0.707392394542694,-0.478638410568237,0.450616866350174,-0.745077192783356,-0.491735965013504,0.435529619455338,-0.723916411399841,-0.535031616687775,0.488681137561798,-0.689758539199829,-0.534250617027283,0.37244975566864,-0.693966269493103,-0.616191387176514,0.435529619455338,-0.723916411399841,-0.535031616687775,0.36204394698143,-0.72858852148056,-0.581448972225189,0.399704217910767,-0.751795470714569,-0.524442553520203,0.451299548149109,-0.642460227012634,-0.619332909584045,0.360432863235474,-0.641102433204651,-0.677551209926605,0.488681137561798,-0.689758539199829,-0.534250617027283,0.43299400806427,-0.726230382919312,-0.533952713012695,0.450616866350174,-0.745077192783356,-0.491735965013504,0.399704217910767,-0.751795470714569,-0.524442553520203,0.180091679096222,-0.641555309295654,-0.745636463165283,0.136885747313499,-0.531291663646698,-0.836057007312775,0.252474337816238,-0.574197947978973,-0.778815269470215,0.139880657196045,-0.508958041667938,-0.849349737167358,0.136885747313499,-0.531291663646698,-0.836057007312775,0.160525009036064,-0.568779289722443,-0.806673228740692,0.468646138906479,-0.680307328701019,-0.563517987728119,0.384783744812012,-0.593780219554901,-0.706658601760864,0.451299548149109,-0.642460227012634,-0.619332909584045, +0.384783744812012,-0.593780219554901,-0.706658601760864,0.468646138906479,-0.680307328701019,-0.563517987728119,0.336410313844681,-0.681464970111847,-0.64994877576828,0.336410313844681,-0.681464970111847,-0.64994877576828,0.251641809940338,-0.678631186485291,-0.690026044845581,0.252474337816238,-0.574197947978973,-0.778815269470215,0.768582284450531,-0.572151124477386,0.28622379899025,0.818790853023529,-0.559719562530518,0.127653434872627,0.846029579639435,-0.472371816635132,0.247181579470634,0.768582284450531,-0.572151124477386,0.28622379899025,0.753288626670837,-0.495452642440796,0.432530701160431,0.707140326499939,-0.573814988136292,0.41314497590065,0.707140326499939,-0.573814988136292,0.41314497590065,0.753288626670837,-0.495452642440796,0.432530701160431,0.667404115200043,-0.580221951007843,0.466812670230865,0.818790853023529,-0.559719562530518,0.127653434872627,0.838153898715973,-0.545166492462158,0.0170739125460386,0.886249542236328,-0.450310558080673,0.108543790876865,0.886249542236328,-0.450310558080673,0.108543790876865,0.838153898715973,-0.545166492462158,0.0170739125460386,0.900867700576782,-0.432963192462921,0.0313084051012993,0.627027690410614,-0.611715376377106,0.48232826590538,0.614880979061127,-0.583878040313721,0.530101537704468,0.56738144159317,-0.656154334545136,0.49753350019455,0.627027690410614,-0.611715376377106,0.48232826590538,0.667404115200043,-0.580221951007843,0.466812670230865,0.64184844493866,-0.551427960395813,0.53287672996521,0.350975513458252,-0.894027888774872,0.2784423828125,0.30123370885849,-0.885816931724548,0.352968126535416,0.29641729593277,-0.909375309944153,0.291844546794891,0.385232716798782,-0.857079148292542,0.342068582773209,0.350975513458252,-0.894027888774872,0.2784423828125,0.393164664506912,-0.882657408714294,0.257560521364212,0.393164664506912,-0.882657408714294,0.257560521364212,0.424195379018784,-0.872898995876312,0.241050705313683,0.435038894414902,-0.843002140522003,0.316367536783218,0.48275163769722,-0.822339177131653,0.301179498434067,0.515483140945435,-0.776065051555634,0.363318026065826, +0.435038894414902,-0.843002140522003,0.316367536783218,0.29641729593277,-0.909375309944153,0.291844546794891,0.243824228644371,-0.914848804473877,0.3218714594841,0.265630483627319,-0.930368602275848,0.252694606781006,0.583477735519409,-0.682602345943451,0.440008461475372,0.56738144159317,-0.656154334545136,0.49753350019455,0.524366796016693,-0.722476303577423,0.450629830360413,0.515483140945435,-0.776065051555634,0.363318026065826,0.583477735519409,-0.682602345943451,0.440008461475372,0.524366796016693,-0.722476303577423,0.450629830360413,0.160525009036064,-0.568779289722443,-0.806673228740692,0.210522830486298,-0.55304890871048,-0.806112170219421,0.176205426454544,-0.468516409397125,-0.865704298019409,0.436568349599838,-0.543877005577087,-0.716663002967834,0.395704209804535,-0.535148203372955,-0.746347367763519,0.266495436429977,-0.512512028217316,-0.816278994083405,0.240207985043526,-0.626799941062927,-0.741229891777039,0.266495436429977,-0.512512028217316,-0.816278994083405,0.210522830486298,-0.55304890871048,-0.806112170219421,0.436568349599838,-0.543877005577087,-0.716663002967834,0.55337256193161,-0.587979435920715,-0.589965105056763,0.395704209804535,-0.535148203372955,-0.746347367763519,0.636350333690643,-0.635093867778778,-0.437851399183273,0.55337256193161,-0.587979435920715,-0.589965105056763,0.610610723495483,-0.621021032333374,-0.491413503885269,0.760299623012543,-0.590544641017914,-0.270557761192322,0.637076318264008,-0.72201943397522,-0.269854962825775,0.698465406894684,-0.623523533344269,-0.351232528686523,0.821296393871307,-0.541034460067749,-0.180980116128922,0.681593775749207,-0.693611621856689,-0.233093708753586,0.760299623012543,-0.590544641017914,-0.270557761192322,0.636350333690643,-0.635093867778778,-0.437851399183273,0.610610723495483,-0.621021032333374,-0.491413503885269,0.698465406894684,-0.623523533344269,-0.351232528686523,0.821296393871307,-0.541034460067749,-0.180980116128922,0.833641350269318,-0.525093495845795,-0.171226531267166,0.681593775749207,-0.693611621856689,-0.233093708753586, +0.731234729290009,-0.623825192451477,-0.275930613279343,0.833641350269318,-0.525093495845795,-0.171226531267166,0.816489040851593,-0.542169451713562,-0.198488667607307,0.868540942668915,-0.465822398662567,-0.169251188635826,0.833641350269318,-0.525093495845795,-0.171226531267166,0.857326984405518,-0.49099725484848,-0.154635354876518,0.843123972415924,-0.502171218395233,-0.192265182733536,0.844900012016296,-0.476962566375732,-0.242178663611412,0.868540942668915,-0.465822398662567,-0.169251188635826,0.844900012016296,-0.476962566375732,-0.242178663611412,0.787794351577759,-0.542647063732147,-0.291400134563446,0.740516245365143,-0.540427803993225,-0.399466246366501,0.462845683097839,-0.481603145599365,-0.744198977947235,0.454459249973297,-0.464697241783142,-0.759949445724487,0.345387160778046,-0.446389526128769,-0.825496256351471,0.322173118591309,-0.289665639400482,-0.901275873184204,0.32833331823349,-0.32012090086937,-0.888661742210388,0.244076743721962,-0.198354139924049,-0.949253439903259,0.202221229672432,-0.227769672870636,-0.952484905719757,0.152033463120461,-0.110295854508877,-0.982201874256134,0.244076743721962,-0.198354139924049,-0.949253439903259,0.446808993816376,-0.372137695550919,-0.813557088375092,0.322173118591309,-0.289665639400482,-0.901275873184204,0.355026990175247,-0.413212448358536,-0.838576853275299,0.446808993816376,-0.372137695550919,-0.813557088375092,0.355026990175247,-0.413212448358536,-0.838576853275299,0.454459249973297,-0.464697241783142,-0.759949445724487,0.0668484568595886,-0.200863599777222,-0.977335691452026,0.152033463120461,-0.110295854508877,-0.982201874256134,0.164365291595459,-0.0135819036513567,-0.986306011676788,0.462845683097839,-0.481603145599365,-0.744198977947235,0.5339475274086,-0.50883013010025,-0.67527174949646,0.454459249973297,-0.464697241783142,-0.759949445724487,0.5339475274086,-0.50883013010025,-0.67527174949646,0.609108924865723,-0.457159668207169,-0.6480672955513,0.625402212142944,-0.541607260704041,-0.561723649501801,0.692213118076324,-0.530620515346527,-0.489165276288986, +0.740516245365143,-0.540427803993225,-0.399466246366501,0.625402212142944,-0.541607260704041,-0.561723649501801,0.754258990287781,-0.654953360557556,0.0461443923413754,0.767698884010315,-0.638492465019226,-0.0544574372470379,0.838153898715973,-0.545166492462158,0.0170739125460386,0.701232850551605,-0.711355209350586,-0.0473938658833504,0.672300696372986,-0.728870332241058,-0.129459545016289,0.730987548828125,-0.669993996620178,-0.129480138421059,0.767698884010315,-0.638492465019226,-0.0544574372470379,0.754258990287781,-0.654953360557556,0.0461443923413754,0.701232850551605,-0.711355209350586,-0.0473938658833504,0.672300696372986,-0.728870332241058,-0.129459545016289,0.650623798370361,-0.745788633823395,-0.143135666847229,0.670491278171539,-0.720428645610809,-0.177267625927925,0.584830045700073,-0.714724719524384,-0.383591204881668,0.642943143844604,-0.667517006397247,-0.375559538602829,0.64277309179306,-0.732212126255035,-0.225184664130211,0.650623798370361,-0.745788633823395,-0.143135666847229,0.64277309179306,-0.732212126255035,-0.225184664130211,0.670491278171539,-0.720428645610809,-0.177267625927925,0.520097196102142,-0.707392394542694,-0.478638410568237,0.584830045700073,-0.714724719524384,-0.383591204881668,0.505868852138519,-0.75824236869812,-0.411296755075455,0.505868852138519,-0.75824236869812,-0.411296755075455,0.450616866350174,-0.745077192783356,-0.491735965013504,0.520097196102142,-0.707392394542694,-0.478638410568237,0.488681137561798,-0.689758539199829,-0.534250617027283,0.435529619455338,-0.723916411399841,-0.535031616687775,0.488046586513519,-0.74779349565506,-0.450128018856049,0.458293408155441,-0.766017436981201,-0.450759679079056,0.435529619455338,-0.723916411399841,-0.535031616687775,0.399704217910767,-0.751795470714569,-0.524442553520203,0.468646138906479,-0.680307328701019,-0.563517987728119,0.451299548149109,-0.642460227012634,-0.619332909584045,0.488681137561798,-0.689758539199829,-0.534250617027283,0.450616866350174,-0.745077192783356,-0.491735965013504,0.458293408155441,-0.766017436981201,-0.450759679079056, +0.399704217910767,-0.751795470714569,-0.524442553520203,0.180091679096222,-0.641555309295654,-0.745636463165283,0.156465515494347,-0.625400364398956,-0.764455854892731,0.136885747313499,-0.531291663646698,-0.836057007312775,0.251641809940338,-0.678631186485291,-0.690026044845581,0.180091679096222,-0.641555309295654,-0.745636463165283,0.252474337816238,-0.574197947978973,-0.778815269470215,0.156465515494347,-0.625400364398956,-0.764455854892731,0.160525009036064,-0.568779289722443,-0.806673228740692,0.136885747313499,-0.531291663646698,-0.836057007312775,0.371241062879562,-0.748905003070831,-0.548927307128906,0.336410313844681,-0.681464970111847,-0.64994877576828,0.468646138906479,-0.680307328701019,-0.563517987728119,0.336410313844681,-0.681464970111847,-0.64994877576828,0.28491136431694,-0.794103562831879,-0.536865890026093,0.251641809940338,-0.678631186485291,-0.690026044845581,0.768582284450531,-0.572151124477386,0.28622379899025,0.731265127658844,-0.654688775539398,0.191399440169334,0.818790853023529,-0.559719562530518,0.127653434872627,0.768582284450531,-0.572151124477386,0.28622379899025,0.707140326499939,-0.573814988136292,0.41314497590065,0.681099355220795,-0.635966658592224,0.362835854291916,0.681099355220795,-0.635966658592224,0.362835854291916,0.707140326499939,-0.573814988136292,0.41314497590065,0.667404115200043,-0.580221951007843,0.466812670230865,0.754258990287781,-0.654953360557556,0.0461443923413754,0.838153898715973,-0.545166492462158,0.0170739125460386,0.818790853023529,-0.559719562530518,0.127653434872627,0.583477735519409,-0.682602345943451,0.440008461475372,0.627027690410614,-0.611715376377106,0.48232826590538,0.56738144159317,-0.656154334545136,0.49753350019455,0.627027690410614,-0.611715376377106,0.48232826590538,0.62207818031311,-0.69235497713089,0.365599781274796,0.667404115200043,-0.580221951007843,0.466812670230865,0.29641729593277,-0.909375309944153,0.291844546794891,0.332043319940567,-0.919685900211334,0.209582284092903,0.350975513458252,-0.894027888774872,0.2784423828125,0.350975513458252,-0.894027888774872,0.2784423828125, +0.332043319940567,-0.919685900211334,0.209582284092903,0.393164664506912,-0.882657408714294,0.257560521364212,0.393164664506912,-0.882657408714294,0.257560521364212,0.399795562028885,-0.895191431045532,0.196966111660004,0.424195379018784,-0.872898995876312,0.241050705313683,0.424195379018784,-0.872898995876312,0.241050705313683,0.464682877063751,-0.856969356536865,0.222874879837036,0.435038894414902,-0.843002140522003,0.316367536783218,0.48275163769722,-0.822339177131653,0.301179498434067,0.548576772212982,-0.790987432003021,0.270928710699081,0.515483140945435,-0.776065051555634,0.363318026065826,0.48275163769722,-0.822339177131653,0.301179498434067,0.435038894414902,-0.843002140522003,0.316367536783218,0.464682877063751,-0.856969356536865,0.222874879837036,0.29641729593277,-0.909375309944153,0.291844546794891,0.265630483627319,-0.930368602275848,0.252694606781006,0.332043319940567,-0.919685900211334,0.209582284092903,0.583477735519409,-0.682602345943451,0.440008461475372,0.515483140945435,-0.776065051555634,0.363318026065826,0.62207818031311,-0.69235497713089,0.365599781274796,0.160525009036064,-0.568779289722443,-0.806673228740692,0.1958277374506,-0.644141137599945,-0.739414393901825,0.210522830486298,-0.55304890871048,-0.806112170219421,0.436568349599838,-0.543877005577087,-0.716663002967834,0.266495436429977,-0.512512028217316,-0.816278994083405,0.338613659143448,-0.627122759819031,-0.701468229293823,0.240207985043526,-0.626799941062927,-0.741229891777039,0.338613659143448,-0.627122759819031,-0.701468229293823,0.266495436429977,-0.512512028217316,-0.816278994083405,0.240207985043526,-0.626799941062927,-0.741229891777039,0.210522830486298,-0.55304890871048,-0.806112170219421,0.1958277374506,-0.644141137599945,-0.739414393901825,0.484327763319016,-0.60351550579071,-0.633399903774261,0.55337256193161,-0.587979435920715,-0.589965105056763,0.436568349599838,-0.543877005577087,-0.716663002967834,0.484327763319016,-0.60351550579071,-0.633399903774261,0.610610723495483,-0.621021032333374,-0.491413503885269,0.55337256193161,-0.587979435920715,-0.589965105056763, +0.760299623012543,-0.590544641017914,-0.270557761192322,0.698465406894684,-0.623523533344269,-0.351232528686523,0.785150229930878,-0.55833500623703,-0.267957031726837,0.821296393871307,-0.541034460067749,-0.180980116128922,0.760299623012543,-0.590544641017914,-0.270557761192322,0.828979551792145,-0.518274247646332,-0.210201129317284,0.736960232257843,-0.58683443069458,-0.335432231426239,0.698465406894684,-0.623523533344269,-0.351232528686523,0.610610723495483,-0.621021032333374,-0.491413503885269,0.821296393871307,-0.541034460067749,-0.180980116128922,0.857326984405518,-0.49099725484848,-0.154635354876518,0.833641350269318,-0.525093495845795,-0.171226531267166,0.857326984405518,-0.49099725484848,-0.154635354876518,0.843123972415924,-0.502171218395233,-0.192265182733536,0.868540942668915,-0.465822398662567,-0.169251188635826,0.844900012016296,-0.476962566375732,-0.242178663611412,0.843123972415924,-0.502171218395233,-0.192265182733536,0.787794351577759,-0.542647063732147,-0.291400134563446,0.715816736221313,-0.595136523246765,-0.365265309810638,0.740516245365143,-0.540427803993225,-0.399466246366501,0.787794351577759,-0.542647063732147,-0.291400134563446,0.358130186796188,-0.436141282320023,-0.82554429769516,0.32833331823349,-0.32012090086937,-0.888661742210388,0.322173118591309,-0.289665639400482,-0.901275873184204,0.244076743721962,-0.198354139924049,-0.949253439903259,0.32833331823349,-0.32012090086937,-0.888661742210388,0.202221229672432,-0.227769672870636,-0.952484905719757,0.202221229672432,-0.227769672870636,-0.952484905719757,0.198604092001915,-0.220106452703476,-0.955044209957123,0.152033463120461,-0.110295854508877,-0.982201874256134,0.358130186796188,-0.436141282320023,-0.82554429769516,0.322173118591309,-0.289665639400482,-0.901275873184204,0.446808993816376,-0.372137695550919,-0.813557088375092,0.446808993816376,-0.372137695550919,-0.813557088375092,0.454459249973297,-0.464697241783142,-0.759949445724487,0.571815609931946,-0.449990481138229,-0.685955762863159,0.198604092001915,-0.220106452703476,-0.955044209957123, +0.164365291595459,-0.0135819036513567,-0.986306011676788,0.152033463120461,-0.110295854508877,-0.982201874256134,0.5339475274086,-0.50883013010025,-0.67527174949646,0.571815609931946,-0.449990481138229,-0.685955762863159,0.454459249973297,-0.464697241783142,-0.759949445724487,0.5339475274086,-0.50883013010025,-0.67527174949646,0.625402212142944,-0.541607260704041,-0.561723649501801,0.571815609931946,-0.449990481138229,-0.685955762863159,0.646908581256866,-0.592556118965149,-0.479985743761063,0.625402212142944,-0.541607260704041,-0.561723649501801,0.740516245365143,-0.540427803993225,-0.399466246366501,0.701232850551605,-0.711355209350586,-0.0473938658833504,0.649480879306793,-0.754826366901398,-0.091715469956398,0.672300696372986,-0.728870332241058,-0.129459545016289,0.754258990287781,-0.654953360557556,0.0461443923413754,0.688948214054108,-0.722849011421204,0.0532872155308723,0.701232850551605,-0.711355209350586,-0.0473938658833504,0.672300696372986,-0.728870332241058,-0.129459545016289,0.649480879306793,-0.754826366901398,-0.091715469956398,0.650623798370361,-0.745788633823395,-0.143135666847229,0.584830045700073,-0.714724719524384,-0.383591204881668,0.64277309179306,-0.732212126255035,-0.225184664130211,0.556405186653137,-0.778175830841064,-0.291299909353256,0.62274956703186,-0.772313833236694,-0.125355437397957,0.64277309179306,-0.732212126255035,-0.225184664130211,0.650623798370361,-0.745788633823395,-0.143135666847229,0.584830045700073,-0.714724719524384,-0.383591204881668,0.556405186653137,-0.778175830841064,-0.291299909353256,0.505868852138519,-0.75824236869812,-0.411296755075455,0.458293408155441,-0.766017436981201,-0.450759679079056,0.450616866350174,-0.745077192783356,-0.491735965013504,0.505868852138519,-0.75824236869812,-0.411296755075455,0.458293408155441,-0.766017436981201,-0.450759679079056,0.488046586513519,-0.74779349565506,-0.450128018856049,0.435529619455338,-0.723916411399841,-0.535031616687775,0.488681137561798,-0.689758539199829,-0.534250617027283,0.488046586513519,-0.74779349565506,-0.450128018856049, +0.464058756828308,-0.745718419551849,-0.478072553873062,0.468646138906479,-0.680307328701019,-0.563517987728119,0.488681137561798,-0.689758539199829,-0.534250617027283,0.464058756828308,-0.745718419551849,-0.478072553873062,0.180091679096222,-0.641555309295654,-0.745636463165283,0.220006495714188,-0.740315794944763,-0.635239720344543,0.156465515494347,-0.625400364398956,-0.764455854892731,0.251641809940338,-0.678631186485291,-0.690026044845581,0.241534113883972,-0.764366388320923,-0.597833693027496,0.180091679096222,-0.641555309295654,-0.745636463165283,0.156465515494347,-0.625400364398956,-0.764455854892731,0.191041350364685,-0.669448435306549,-0.717873215675354,0.160525009036064,-0.568779289722443,-0.806673228740692,0.371241062879562,-0.748905003070831,-0.548927307128906,0.28491136431694,-0.794103562831879,-0.536865890026093,0.336410313844681,-0.681464970111847,-0.64994877576828,0.371241062879562,-0.748905003070831,-0.548927307128906,0.468646138906479,-0.680307328701019,-0.563517987728119,0.464058756828308,-0.745718419551849,-0.478072553873062,0.241534113883972,-0.764366388320923,-0.597833693027496,0.251641809940338,-0.678631186485291,-0.690026044845581,0.28491136431694,-0.794103562831879,-0.536865890026093,0.768582284450531,-0.572151124477386,0.28622379899025,0.681099355220795,-0.635966658592224,0.362835854291916,0.731265127658844,-0.654688775539398,0.191399440169334,0.818790853023529,-0.559719562530518,0.127653434872627,0.731265127658844,-0.654688775539398,0.191399440169334,0.754258990287781,-0.654953360557556,0.0461443923413754,0.667404115200043,-0.580221951007843,0.466812670230865,0.62207818031311,-0.69235497713089,0.365599781274796,0.681099355220795,-0.635966658592224,0.362835854291916,0.583477735519409,-0.682602345943451,0.440008461475372,0.62207818031311,-0.69235497713089,0.365599781274796,0.627027690410614,-0.611715376377106,0.48232826590538,0.399795562028885,-0.895191431045532,0.196966111660004,0.393164664506912,-0.882657408714294,0.257560521364212,0.332043319940567,-0.919685900211334,0.209582284092903, +0.399795562028885,-0.895191431045532,0.196966111660004,0.42962259054184,-0.88315612077713,0.18830694258213,0.424195379018784,-0.872898995876312,0.241050705313683,0.464682877063751,-0.856969356536865,0.222874879837036,0.424195379018784,-0.872898995876312,0.241050705313683,0.42962259054184,-0.88315612077713,0.18830694258213,0.464682877063751,-0.856969356536865,0.222874879837036,0.548576772212982,-0.790987432003021,0.270928710699081,0.48275163769722,-0.822339177131653,0.301179498434067,0.548576772212982,-0.790987432003021,0.270928710699081,0.62207818031311,-0.69235497713089,0.365599781274796,0.515483140945435,-0.776065051555634,0.363318026065826,0.332043319940567,-0.919685900211334,0.209582284092903,0.265630483627319,-0.930368602275848,0.252694606781006,0.267794132232666,-0.944221198558807,0.191657438874245,0.191041350364685,-0.669448435306549,-0.717873215675354,0.1958277374506,-0.644141137599945,-0.739414393901825,0.160525009036064,-0.568779289722443,-0.806673228740692,0.484327763319016,-0.60351550579071,-0.633399903774261,0.436568349599838,-0.543877005577087,-0.716663002967834,0.338613659143448,-0.627122759819031,-0.701468229293823,0.238263323903084,-0.710022151470184,-0.662645518779755,0.338613659143448,-0.627122759819031,-0.701468229293823,0.240207985043526,-0.626799941062927,-0.741229891777039,0.217165425419807,-0.755588829517365,-0.618000328540802,0.240207985043526,-0.626799941062927,-0.741229891777039,0.1958277374506,-0.644141137599945,-0.739414393901825,0.484327763319016,-0.60351550579071,-0.633399903774261,0.461897224187851,-0.713753640651703,-0.526504039764404,0.610610723495483,-0.621021032333374,-0.491413503885269,0.736960232257843,-0.58683443069458,-0.335432231426239,0.785150229930878,-0.55833500623703,-0.267957031726837,0.698465406894684,-0.623523533344269,-0.351232528686523,0.828979551792145,-0.518274247646332,-0.210201129317284,0.760299623012543,-0.590544641017914,-0.270557761192322,0.785150229930878,-0.55833500623703,-0.267957031726837,0.821296393871307,-0.541034460067749,-0.180980116128922,0.828979551792145,-0.518274247646332,-0.210201129317284, +0.857326984405518,-0.49099725484848,-0.154635354876518,0.610610723495483,-0.621021032333374,-0.491413503885269,0.666936457157135,-0.647988200187683,-0.367840796709061,0.736960232257843,-0.58683443069458,-0.335432231426239,0.843123972415924,-0.502171218395233,-0.192265182733536,0.857326984405518,-0.49099725484848,-0.154635354876518,0.787183046340942,-0.589440822601318,-0.181389316916466,0.843123972415924,-0.502171218395233,-0.192265182733536,0.786391735076904,-0.55153489112854,-0.278203427791595,0.787794351577759,-0.542647063732147,-0.291400134563446,0.715816736221313,-0.595136523246765,-0.365265309810638,0.646908581256866,-0.592556118965149,-0.479985743761063,0.740516245365143,-0.540427803993225,-0.399466246366501,0.715816736221313,-0.595136523246765,-0.365265309810638,0.787794351577759,-0.542647063732147,-0.291400134563446,0.707827150821686,-0.636716306209564,-0.305896669626236,0.358130186796188,-0.436141282320023,-0.82554429769516,0.248133972287178,-0.733278512954712,-0.633033990859985,0.32833331823349,-0.32012090086937,-0.888661742210388,0.32833331823349,-0.32012090086937,-0.888661742210388,0.271798759698868,-0.455852448940277,-0.847539901733398,0.202221229672432,-0.227769672870636,-0.952484905719757,0.202221229672432,-0.227769672870636,-0.952484905719757,0.17342820763588,-0.612953305244446,-0.770850658416748,0.198604092001915,-0.220106452703476,-0.955044209957123,0.446808993816376,-0.372137695550919,-0.813557088375092,0.551910519599915,-0.482124388217926,-0.680404841899872,0.358130186796188,-0.436141282320023,-0.82554429769516,0.571815609931946,-0.449990481138229,-0.685955762863159,0.551910519599915,-0.482124388217926,-0.680404841899872,0.446808993816376,-0.372137695550919,-0.813557088375092,0.198604092001915,-0.220106452703476,-0.955044209957123,0.176001712679863,-0.21756748855114,-0.960045695304871,0.164365291595459,-0.0135819036513567,-0.986306011676788,0.625402212142944,-0.541607260704041,-0.561723649501801,0.603388786315918,-0.612666845321655,-0.510451853275299,0.571815609931946,-0.449990481138229,-0.685955762863159, +0.603388786315918,-0.612666845321655,-0.510451853275299,0.625402212142944,-0.541607260704041,-0.561723649501801,0.646908581256866,-0.592556118965149,-0.479985743761063,0.654519855976105,-0.756013512611389,-0.00687018828466535,0.649480879306793,-0.754826366901398,-0.091715469956398,0.701232850551605,-0.711355209350586,-0.0473938658833504,0.688948214054108,-0.722849011421204,0.0532872155308723,0.754258990287781,-0.654953360557556,0.0461443923413754,0.680770039558411,-0.72195965051651,0.123799256980419,0.654519855976105,-0.756013512611389,-0.00687018828466535,0.701232850551605,-0.711355209350586,-0.0473938658833504,0.688948214054108,-0.722849011421204,0.0532872155308723,0.649480879306793,-0.754826366901398,-0.091715469956398,0.625253319740295,-0.775462448596954,-0.0878421366214752,0.650623798370361,-0.745788633823395,-0.143135666847229,0.556405186653137,-0.778175830841064,-0.291299909353256,0.64277309179306,-0.732212126255035,-0.225184664130211,0.589184522628784,-0.784888625144959,-0.191862627863884,0.62274956703186,-0.772313833236694,-0.125355437397957,0.589184522628784,-0.784888625144959,-0.191862627863884,0.64277309179306,-0.732212126255035,-0.225184664130211,0.62274956703186,-0.772313833236694,-0.125355437397957,0.650623798370361,-0.745788633823395,-0.143135666847229,0.625253319740295,-0.775462448596954,-0.0878421366214752,0.505868852138519,-0.75824236869812,-0.411296755075455,0.556405186653137,-0.778175830841064,-0.291299909353256,0.501381635665894,-0.81242173910141,-0.297636061906815,0.458293408155441,-0.766017436981201,-0.450759679079056,0.505868852138519,-0.75824236869812,-0.411296755075455,0.501381635665894,-0.81242173910141,-0.297636061906815,0.439893841743469,-0.841007113456726,-0.314960807561874,0.488046586513519,-0.74779349565506,-0.450128018856049,0.458293408155441,-0.766017436981201,-0.450759679079056,0.410102128982544,-0.830467700958252,-0.377013951539993,0.464058756828308,-0.745718419551849,-0.478072553873062,0.488046586513519,-0.74779349565506,-0.450128018856049,0.220006495714188,-0.740315794944763,-0.635239720344543, +0.180091679096222,-0.641555309295654,-0.745636463165283,0.183669075369835,-0.746026635169983,-0.640085756778717,0.191041350364685,-0.669448435306549,-0.717873215675354,0.156465515494347,-0.625400364398956,-0.764455854892731,0.220006495714188,-0.740315794944763,-0.635239720344543,0.241534113883972,-0.764366388320923,-0.597833693027496,0.183669075369835,-0.746026635169983,-0.640085756778717,0.180091679096222,-0.641555309295654,-0.745636463165283,0.371241062879562,-0.748905003070831,-0.548927307128906,0.334189713001251,-0.826843500137329,-0.452379167079926,0.28491136431694,-0.794103562831879,-0.536865890026093,0.371241062879562,-0.748905003070831,-0.548927307128906,0.464058756828308,-0.745718419551849,-0.478072553873062,0.334189713001251,-0.826843500137329,-0.452379167079926,0.241534113883972,-0.764366388320923,-0.597833693027496,0.28491136431694,-0.794103562831879,-0.536865890026093,0.274392902851105,-0.859211027622223,-0.431815832853317,0.653657913208008,-0.712258100509644,0.255772441625595,0.731265127658844,-0.654688775539398,0.191399440169334,0.681099355220795,-0.635966658592224,0.362835854291916,0.680770039558411,-0.72195965051651,0.123799256980419,0.754258990287781,-0.654953360557556,0.0461443923413754,0.731265127658844,-0.654688775539398,0.191399440169334,0.681099355220795,-0.635966658592224,0.362835854291916,0.62207818031311,-0.69235497713089,0.365599781274796,0.653657913208008,-0.712258100509644,0.255772441625595,0.399795562028885,-0.895191431045532,0.196966111660004,0.332043319940567,-0.919685900211334,0.209582284092903,0.361380815505981,-0.916058123111725,0.173900216817856,0.399795562028885,-0.895191431045532,0.196966111660004,0.416236251592636,-0.897680997848511,0.144624069333076,0.42962259054184,-0.88315612077713,0.18830694258213,0.464682877063751,-0.856969356536865,0.222874879837036,0.42962259054184,-0.88315612077713,0.18830694258213,0.445550888776779,-0.88513058423996,0.134268999099731,0.54208517074585,-0.82343578338623,0.167621225118637,0.548576772212982,-0.790987432003021,0.270928710699081,0.464682877063751,-0.856969356536865,0.222874879837036, +0.598068118095398,-0.76970362663269,0.223317578434944,0.62207818031311,-0.69235497713089,0.365599781274796,0.548576772212982,-0.790987432003021,0.270928710699081,0.332043319940567,-0.919685900211334,0.209582284092903,0.267794132232666,-0.944221198558807,0.191657438874245,0.299707859754562,-0.935646414756775,0.186388939619064,0.188441410660744,-0.769905269145966,-0.609701156616211,0.1958277374506,-0.644141137599945,-0.739414393901825,0.191041350364685,-0.669448435306549,-0.717873215675354,0.461897224187851,-0.713753640651703,-0.526504039764404,0.484327763319016,-0.60351550579071,-0.633399903774261,0.338613659143448,-0.627122759819031,-0.701468229293823,0.285710036754608,-0.730037331581116,-0.620818078517914,0.338613659143448,-0.627122759819031,-0.701468229293823,0.238263323903084,-0.710022151470184,-0.662645518779755,0.217165425419807,-0.755588829517365,-0.618000328540802,0.238263323903084,-0.710022151470184,-0.662645518779755,0.240207985043526,-0.626799941062927,-0.741229891777039,0.188441410660744,-0.769905269145966,-0.609701156616211,0.217165425419807,-0.755588829517365,-0.618000328540802,0.1958277374506,-0.644141137599945,-0.739414393901825,0.610610723495483,-0.621021032333374,-0.491413503885269,0.461897224187851,-0.713753640651703,-0.526504039764404,0.666936457157135,-0.647988200187683,-0.367840796709061,0.736960232257843,-0.58683443069458,-0.335432231426239,0.798614323139191,-0.559031248092651,-0.222932904958725,0.785150229930878,-0.55833500623703,-0.267957031726837,0.798614323139191,-0.559031248092651,-0.222932904958725,0.828979551792145,-0.518274247646332,-0.210201129317284,0.785150229930878,-0.55833500623703,-0.267957031726837,0.839303970336914,-0.518018901348114,-0.164999634027481,0.857326984405518,-0.49099725484848,-0.154635354876518,0.828979551792145,-0.518274247646332,-0.210201129317284,0.857326984405518,-0.49099725484848,-0.154635354876518,0.858033835887909,-0.491454541683197,-0.149164363741875,0.787183046340942,-0.589440822601318,-0.181389316916466,0.786391735076904,-0.55153489112854,-0.278203427791595, +0.843123972415924,-0.502171218395233,-0.192265182733536,0.787183046340942,-0.589440822601318,-0.181389316916466,0.787794351577759,-0.542647063732147,-0.291400134563446,0.786391735076904,-0.55153489112854,-0.278203427791595,0.707827150821686,-0.636716306209564,-0.305896669626236,0.715816736221313,-0.595136523246765,-0.365265309810638,0.566555082798004,-0.755024790763855,-0.330079883337021,0.646908581256866,-0.592556118965149,-0.479985743761063,0.715816736221313,-0.595136523246765,-0.365265309810638,0.707827150821686,-0.636716306209564,-0.305896669626236,0.566555082798004,-0.755024790763855,-0.330079883337021,0.248133972287178,-0.733278512954712,-0.633033990859985,0.358130186796188,-0.436141282320023,-0.82554429769516,0.385798990726471,-0.698710918426514,-0.60246330499649,0.32833331823349,-0.32012090086937,-0.888661742210388,0.248133972287178,-0.733278512954712,-0.633033990859985,0.271798759698868,-0.455852448940277,-0.847539901733398,0.17342820763588,-0.612953305244446,-0.770850658416748,0.202221229672432,-0.227769672870636,-0.952484905719757,0.271798759698868,-0.455852448940277,-0.847539901733398,0.199778869748116,-0.533118605613709,-0.822114825248718,0.198604092001915,-0.220106452703476,-0.955044209957123,0.17342820763588,-0.612953305244446,-0.770850658416748,0.385798990726471,-0.698710918426514,-0.60246330499649,0.358130186796188,-0.436141282320023,-0.82554429769516,0.551910519599915,-0.482124388217926,-0.680404841899872,0.603388786315918,-0.612666845321655,-0.510451853275299,0.551910519599915,-0.482124388217926,-0.680404841899872,0.571815609931946,-0.449990481138229,-0.685955762863159,0.198604092001915,-0.220106452703476,-0.955044209957123,0.126468554139137,-0.451952517032623,-0.88303142786026,0.176001712679863,-0.21756748855114,-0.960045695304871,0.603388786315918,-0.612666845321655,-0.510451853275299,0.646908581256866,-0.592556118965149,-0.479985743761063,0.566555082798004,-0.755024790763855,-0.330079883337021,0.654519855976105,-0.756013512611389,-0.00687018828466535,0.610448777675629,-0.792052865028381,-0.00210157781839371, +0.649480879306793,-0.754826366901398,-0.091715469956398,0.634536504745483,-0.769953608512878,0.067340612411499,0.688948214054108,-0.722849011421204,0.0532872155308723,0.680770039558411,-0.72195965051651,0.123799256980419,0.654519855976105,-0.756013512611389,-0.00687018828466535,0.688948214054108,-0.722849011421204,0.0532872155308723,0.634536504745483,-0.769953608512878,0.067340612411499,0.610448777675629,-0.792052865028381,-0.00210157781839371,0.625253319740295,-0.775462448596954,-0.0878421366214752,0.649480879306793,-0.754826366901398,-0.091715469956398,0.524328351020813,-0.826568782329559,-0.204606115818024,0.556405186653137,-0.778175830841064,-0.291299909353256,0.589184522628784,-0.784888625144959,-0.191862627863884,0.62274956703186,-0.772313833236694,-0.125355437397957,0.559909641742706,-0.818618893623352,-0.127922236919403,0.589184522628784,-0.784888625144959,-0.191862627863884,0.62274956703186,-0.772313833236694,-0.125355437397957,0.625253319740295,-0.775462448596954,-0.0878421366214752,0.564051926136017,-0.823917269706726,-0.0548220239579678,0.524328351020813,-0.826568782329559,-0.204606115818024,0.501381635665894,-0.81242173910141,-0.297636061906815,0.556405186653137,-0.778175830841064,-0.291299909353256,0.474240094423294,-0.809118270874023,-0.347021341323853,0.458293408155441,-0.766017436981201,-0.450759679079056,0.501381635665894,-0.81242173910141,-0.297636061906815,0.439893841743469,-0.841007113456726,-0.314960807561874,0.410102128982544,-0.830467700958252,-0.377013951539993,0.488046586513519,-0.74779349565506,-0.450128018856049,0.458293408155441,-0.766017436981201,-0.450759679079056,0.474240094423294,-0.809118270874023,-0.347021341323853,0.439893841743469,-0.841007113456726,-0.314960807561874,0.410102128982544,-0.830467700958252,-0.377013951539993,0.334189713001251,-0.826843500137329,-0.452379167079926,0.464058756828308,-0.745718419551849,-0.478072553873062,0.220006495714188,-0.740315794944763,-0.635239720344543,0.183669075369835,-0.746026635169983,-0.640085756778717,0.233927592635155,-0.842274844646454,-0.48564475774765, +0.254022479057312,-0.786029696464539,-0.563586473464966,0.191041350364685,-0.669448435306549,-0.717873215675354,0.220006495714188,-0.740315794944763,-0.635239720344543,0.241534113883972,-0.764366388320923,-0.597833693027496,0.233927592635155,-0.842274844646454,-0.48564475774765,0.183669075369835,-0.746026635169983,-0.640085756778717,0.334189713001251,-0.826843500137329,-0.452379167079926,0.294162899255753,-0.89172351360321,-0.34394371509552,0.28491136431694,-0.794103562831879,-0.536865890026093,0.294162899255753,-0.89172351360321,-0.34394371509552,0.274392902851105,-0.859211027622223,-0.431815832853317,0.28491136431694,-0.794103562831879,-0.536865890026093,0.241534113883972,-0.764366388320923,-0.597833693027496,0.274392902851105,-0.859211027622223,-0.431815832853317,0.233927592635155,-0.842274844646454,-0.48564475774765,0.680770039558411,-0.72195965051651,0.123799256980419,0.731265127658844,-0.654688775539398,0.191399440169334,0.653657913208008,-0.712258100509644,0.255772441625595,0.598068118095398,-0.76970362663269,0.223317578434944,0.653657913208008,-0.712258100509644,0.255772441625595,0.62207818031311,-0.69235497713089,0.365599781274796,0.332043319940567,-0.919685900211334,0.209582284092903,0.299707859754562,-0.935646414756775,0.186388939619064,0.361380815505981,-0.916058123111725,0.173900216817856,0.416236251592636,-0.897680997848511,0.144624069333076,0.399795562028885,-0.895191431045532,0.196966111660004,0.361380815505981,-0.916058123111725,0.173900216817856,0.416236251592636,-0.897680997848511,0.144624069333076,0.445550888776779,-0.88513058423996,0.134268999099731,0.42962259054184,-0.88315612077713,0.18830694258213,0.464682877063751,-0.856969356536865,0.222874879837036,0.445550888776779,-0.88513058423996,0.134268999099731,0.489234805107117,-0.864750325679779,0.113384440541267,0.54208517074585,-0.82343578338623,0.167621225118637,0.598068118095398,-0.76970362663269,0.223317578434944,0.548576772212982,-0.790987432003021,0.270928710699081,0.54208517074585,-0.82343578338623,0.167621225118637,0.464682877063751,-0.856969356536865,0.222874879837036, +0.489234805107117,-0.864750325679779,0.113384440541267,0.188441410660744,-0.769905269145966,-0.609701156616211,0.191041350364685,-0.669448435306549,-0.717873215675354,0.254022479057312,-0.786029696464539,-0.563586473464966,0.461897224187851,-0.713753640651703,-0.526504039764404,0.338613659143448,-0.627122759819031,-0.701468229293823,0.285710036754608,-0.730037331581116,-0.620818078517914,0.285710036754608,-0.730037331581116,-0.620818078517914,0.238263323903084,-0.710022151470184,-0.662645518779755,0.237382546067238,-0.800963044166565,-0.549643158912659,0.217165425419807,-0.755588829517365,-0.618000328540802,0.237382546067238,-0.800963044166565,-0.549643158912659,0.238263323903084,-0.710022151470184,-0.662645518779755,0.211453884840012,-0.867722153663635,-0.449828267097473,0.217165425419807,-0.755588829517365,-0.618000328540802,0.188441410660744,-0.769905269145966,-0.609701156616211,0.461897224187851,-0.713753640651703,-0.526504039764404,0.593249201774597,-0.720966875553131,-0.358136862516403,0.666936457157135,-0.647988200187683,-0.367840796709061,0.736960232257843,-0.58683443069458,-0.335432231426239,0.778610348701477,-0.587314128875732,-0.220970332622528,0.798614323139191,-0.559031248092651,-0.222932904958725,0.839303970336914,-0.518018901348114,-0.164999634027481,0.828979551792145,-0.518274247646332,-0.210201129317284,0.798614323139191,-0.559031248092651,-0.222932904958725,0.858033835887909,-0.491454541683197,-0.149164363741875,0.857326984405518,-0.49099725484848,-0.154635354876518,0.839303970336914,-0.518018901348114,-0.164999634027481,0.858033835887909,-0.491454541683197,-0.149164363741875,0.798410177230835,-0.586962759494781,-0.134223222732544,0.787183046340942,-0.589440822601318,-0.181389316916466,0.596324443817139,-0.744018852710724,-0.301385104656219,0.786391735076904,-0.55153489112854,-0.278203427791595,0.787183046340942,-0.589440822601318,-0.181389316916466,0.707827150821686,-0.636716306209564,-0.305896669626236,0.786391735076904,-0.55153489112854,-0.278203427791595,0.596324443817139,-0.744018852710724,-0.301385104656219, +0.566555082798004,-0.755024790763855,-0.330079883337021,0.707827150821686,-0.636716306209564,-0.305896669626236,0.452243894338608,-0.865673661231995,-0.214672848582268,0.248133972287178,-0.733278512954712,-0.633033990859985,0.385798990726471,-0.698710918426514,-0.60246330499649,0.242208883166313,-0.897458732128143,-0.36864960193634,0.248133972287178,-0.733278512954712,-0.633033990859985,0.17342820763588,-0.612953305244446,-0.770850658416748,0.271798759698868,-0.455852448940277,-0.847539901733398,0.199778869748116,-0.533118605613709,-0.822114825248718,0.126468554139137,-0.451952517032623,-0.88303142786026,0.198604092001915,-0.220106452703476,-0.955044209957123,0.199778869748116,-0.533118605613709,-0.822114825248718,0.17342820763588,-0.612953305244446,-0.770850658416748,0.13045234978199,-0.822402536869049,-0.553747355937958,0.516441166400909,-0.698851525783539,-0.494868576526642,0.385798990726471,-0.698710918426514,-0.60246330499649,0.551910519599915,-0.482124388217926,-0.680404841899872,0.603388786315918,-0.612666845321655,-0.510451853275299,0.516441166400909,-0.698851525783539,-0.494868576526642,0.551910519599915,-0.482124388217926,-0.680404841899872,0.414952874183655,-0.863338530063629,-0.287159621715546,0.603388786315918,-0.612666845321655,-0.510451853275299,0.566555082798004,-0.755024790763855,-0.330079883337021,0.654519855976105,-0.756013512611389,-0.00687018828466535,0.634536504745483,-0.769953608512878,0.067340612411499,0.610448777675629,-0.792052865028381,-0.00210157781839371,0.629978179931641,-0.763570070266724,0.141732469201088,0.634536504745483,-0.769953608512878,0.067340612411499,0.680770039558411,-0.72195965051651,0.123799256980419,0.610448777675629,-0.792052865028381,-0.00210157781839371,0.564051926136017,-0.823917269706726,-0.0548220239579678,0.625253319740295,-0.775462448596954,-0.0878421366214752,0.589184522628784,-0.784888625144959,-0.191862627863884,0.559909641742706,-0.818618893623352,-0.127922236919403,0.524328351020813,-0.826568782329559,-0.204606115818024,0.559909641742706,-0.818618893623352,-0.127922236919403, +0.62274956703186,-0.772313833236694,-0.125355437397957,0.564051926136017,-0.823917269706726,-0.0548220239579678,0.524328351020813,-0.826568782329559,-0.204606115818024,0.489237666130066,-0.854553043842316,-0.174314200878143,0.501381635665894,-0.81242173910141,-0.297636061906815,0.474240094423294,-0.809118270874023,-0.347021341323853,0.501381635665894,-0.81242173910141,-0.297636061906815,0.476224422454834,-0.841858744621277,-0.253937035799026,0.439893841743469,-0.841007113456726,-0.314960807561874,0.353582978248596,-0.892283499240875,-0.280729651451111,0.410102128982544,-0.830467700958252,-0.377013951539993,0.439893841743469,-0.841007113456726,-0.314960807561874,0.474240094423294,-0.809118270874023,-0.347021341323853,0.476224422454834,-0.841858744621277,-0.253937035799026,0.410102128982544,-0.830467700958252,-0.377013951539993,0.294162899255753,-0.89172351360321,-0.34394371509552,0.334189713001251,-0.826843500137329,-0.452379167079926,0.289625972509384,-0.854568600654602,-0.431079030036926,0.220006495714188,-0.740315794944763,-0.635239720344543,0.233927592635155,-0.842274844646454,-0.48564475774765,0.220006495714188,-0.740315794944763,-0.635239720344543,0.289625972509384,-0.854568600654602,-0.431079030036926,0.254022479057312,-0.786029696464539,-0.563586473464966,0.285124480724335,-0.901707291603088,-0.325004458427429,0.274392902851105,-0.859211027622223,-0.431815832853317,0.294162899255753,-0.89172351360321,-0.34394371509552,0.233927592635155,-0.842274844646454,-0.48564475774765,0.274392902851105,-0.859211027622223,-0.431815832853317,0.285124480724335,-0.901707291603088,-0.325004458427429,0.680770039558411,-0.72195965051651,0.123799256980419,0.653657913208008,-0.712258100509644,0.255772441625595,0.629978179931641,-0.763570070266724,0.141732469201088,0.598068118095398,-0.76970362663269,0.223317578434944,0.629978179931641,-0.763570070266724,0.141732469201088,0.653657913208008,-0.712258100509644,0.255772441625595,0.309051543474197,-0.939855754375458,0.145458459854126,0.361380815505981,-0.916058123111725,0.173900216817856, +0.299707859754562,-0.935646414756775,0.186388939619064,0.412685573101044,-0.903518080711365,0.115523390471935,0.416236251592636,-0.897680997848511,0.144624069333076,0.361380815505981,-0.916058123111725,0.173900216817856,0.416236251592636,-0.897680997848511,0.144624069333076,0.434042096138,-0.897269129753113,0.0807184725999832,0.445550888776779,-0.88513058423996,0.134268999099731,0.458184748888016,-0.88761693239212,0.0469341315329075,0.489234805107117,-0.864750325679779,0.113384440541267,0.445550888776779,-0.88513058423996,0.134268999099731,0.591474115848541,-0.798871159553528,0.109375931322575,0.598068118095398,-0.76970362663269,0.223317578434944,0.54208517074585,-0.82343578338623,0.167621225118637,0.54208517074585,-0.82343578338623,0.167621225118637,0.489234805107117,-0.864750325679779,0.113384440541267,0.553909659385681,-0.827583372592926,0.0910476893186569,0.188441410660744,-0.769905269145966,-0.609701156616211,0.254022479057312,-0.786029696464539,-0.563586473464966,0.222455561161041,-0.872956335544586,-0.434120267629623,0.37223282456398,-0.738109529018402,-0.562704980373383,0.461897224187851,-0.713753640651703,-0.526504039764404,0.285710036754608,-0.730037331581116,-0.620818078517914,0.311445504426956,-0.780799031257629,-0.541622042655945,0.285710036754608,-0.730037331581116,-0.620818078517914,0.237382546067238,-0.800963044166565,-0.549643158912659,0.217165425419807,-0.755588829517365,-0.618000328540802,0.224150136113167,-0.85746818780899,-0.4631467461586,0.237382546067238,-0.800963044166565,-0.549643158912659,0.211453884840012,-0.867722153663635,-0.449828267097473,0.224150136113167,-0.85746818780899,-0.4631467461586,0.217165425419807,-0.755588829517365,-0.618000328540802,0.222455561161041,-0.872956335544586,-0.434120267629623,0.211453884840012,-0.867722153663635,-0.449828267097473,0.188441410660744,-0.769905269145966,-0.609701156616211,0.461897224187851,-0.713753640651703,-0.526504039764404,0.37223282456398,-0.738109529018402,-0.562704980373383,0.593249201774597,-0.720966875553131,-0.358136862516403,0.778610348701477,-0.587314128875732,-0.220970332622528, +0.839303970336914,-0.518018901348114,-0.164999634027481,0.798614323139191,-0.559031248092651,-0.222932904958725,0.798410177230835,-0.586962759494781,-0.134223222732544,0.858033835887909,-0.491454541683197,-0.149164363741875,0.839303970336914,-0.518018901348114,-0.164999634027481,0.596324443817139,-0.744018852710724,-0.301385104656219,0.787183046340942,-0.589440822601318,-0.181389316916466,0.44307205080986,-0.882459819316864,-0.157961055636406,0.707827150821686,-0.636716306209564,-0.305896669626236,0.596324443817139,-0.744018852710724,-0.301385104656219,0.452243894338608,-0.865673661231995,-0.214672848582268,0.566555082798004,-0.755024790763855,-0.330079883337021,0.452243894338608,-0.865673661231995,-0.214672848582268,0.310342520475388,-0.937049448490143,-0.160080641508102,0.313239485025406,-0.883481502532959,-0.348340779542923,0.242208883166313,-0.897458732128143,-0.36864960193634,0.385798990726471,-0.698710918426514,-0.60246330499649,0.139191508293152,-0.949877917766571,-0.279923766851425,0.248133972287178,-0.733278512954712,-0.633033990859985,0.242208883166313,-0.897458732128143,-0.36864960193634,0.248133972287178,-0.733278512954712,-0.633033990859985,0.147956669330597,-0.913846909999847,-0.378143578767776,0.17342820763588,-0.612953305244446,-0.770850658416748,0.199778869748116,-0.533118605613709,-0.822114825248718,0.13045234978199,-0.822402536869049,-0.553747355937958,0.126468554139137,-0.451952517032623,-0.88303142786026,0.13045234978199,-0.822402536869049,-0.553747355937958,0.17342820763588,-0.612953305244446,-0.770850658416748,0.147956669330597,-0.913846909999847,-0.378143578767776,0.516441166400909,-0.698851525783539,-0.494868576526642,0.313239485025406,-0.883481502532959,-0.348340779542923,0.385798990726471,-0.698710918426514,-0.60246330499649,0.603388786315918,-0.612666845321655,-0.510451853275299,0.414952874183655,-0.863338530063629,-0.287159621715546,0.516441166400909,-0.698851525783539,-0.494868576526642,0.414952874183655,-0.863338530063629,-0.287159621715546,0.566555082798004,-0.755024790763855,-0.330079883337021, +0.310342520475388,-0.937049448490143,-0.160080641508102,0.610448777675629,-0.792052865028381,-0.00210157781839371,0.634536504745483,-0.769953608512878,0.067340612411499,0.590633690357208,-0.804468929767609,0.0630985647439957,0.629978179931641,-0.763570070266724,0.141732469201088,0.591474115848541,-0.798871159553528,0.109375931322575,0.634536504745483,-0.769953608512878,0.067340612411499,0.538187623023987,-0.842007577419281,0.0371108613908291,0.564051926136017,-0.823917269706726,-0.0548220239579678,0.610448777675629,-0.792052865028381,-0.00210157781839371,0.559909641742706,-0.818618893623352,-0.127922236919403,0.498237550258636,-0.861423790454865,-0.0985307767987251,0.524328351020813,-0.826568782329559,-0.204606115818024,0.559909641742706,-0.818618893623352,-0.127922236919403,0.564051926136017,-0.823917269706726,-0.0548220239579678,0.498237550258636,-0.861423790454865,-0.0985307767987251,0.489237666130066,-0.854553043842316,-0.174314200878143,0.524328351020813,-0.826568782329559,-0.204606115818024,0.498237550258636,-0.861423790454865,-0.0985307767987251,0.476224422454834,-0.841858744621277,-0.253937035799026,0.501381635665894,-0.81242173910141,-0.297636061906815,0.489237666130066,-0.854553043842316,-0.174314200878143,0.439893841743469,-0.841007113456726,-0.314960807561874,0.343513876199722,-0.913314461708069,-0.218757331371307,0.353582978248596,-0.892283499240875,-0.280729651451111,0.294162899255753,-0.89172351360321,-0.34394371509552,0.410102128982544,-0.830467700958252,-0.377013951539993,0.353582978248596,-0.892283499240875,-0.280729651451111,0.439893841743469,-0.841007113456726,-0.314960807561874,0.476224422454834,-0.841858744621277,-0.253937035799026,0.435058087110519,-0.879856407642365,-0.191251441836357,0.289625972509384,-0.854568600654602,-0.431079030036926,0.233927592635155,-0.842274844646454,-0.48564475774765,0.285124480724335,-0.901707291603088,-0.325004458427429,0.222455561161041,-0.872956335544586,-0.434120267629623,0.254022479057312,-0.786029696464539,-0.563586473464966,0.289625972509384,-0.854568600654602,-0.431079030036926, +0.285124480724335,-0.901707291603088,-0.325004458427429,0.294162899255753,-0.89172351360321,-0.34394371509552,0.312246412038803,-0.921148121356964,-0.23235359787941,0.591474115848541,-0.798871159553528,0.109375931322575,0.629978179931641,-0.763570070266724,0.141732469201088,0.598068118095398,-0.76970362663269,0.223317578434944,0.309051543474197,-0.939855754375458,0.145458459854126,0.38189709186554,-0.916236162185669,0.121102415025234,0.361380815505981,-0.916058123111725,0.173900216817856,0.434042096138,-0.897269129753113,0.0807184725999832,0.416236251592636,-0.897680997848511,0.144624069333076,0.412685573101044,-0.903518080711365,0.115523390471935,0.412685573101044,-0.903518080711365,0.115523390471935,0.361380815505981,-0.916058123111725,0.173900216817856,0.402630776166916,-0.903153717517853,0.149002686142921,0.458184748888016,-0.88761693239212,0.0469341315329075,0.445550888776779,-0.88513058423996,0.134268999099731,0.434042096138,-0.897269129753113,0.0807184725999832,0.458184748888016,-0.88761693239212,0.0469341315329075,0.538187623023987,-0.842007577419281,0.0371108613908291,0.489234805107117,-0.864750325679779,0.113384440541267,0.553909659385681,-0.827583372592926,0.0910476893186569,0.591474115848541,-0.798871159553528,0.109375931322575,0.54208517074585,-0.82343578338623,0.167621225118637,0.489234805107117,-0.864750325679779,0.113384440541267,0.538187623023987,-0.842007577419281,0.0371108613908291,0.553909659385681,-0.827583372592926,0.0910476893186569,0.37223282456398,-0.738109529018402,-0.562704980373383,0.285710036754608,-0.730037331581116,-0.620818078517914,0.311445504426956,-0.780799031257629,-0.541622042655945,0.311445504426956,-0.780799031257629,-0.541622042655945,0.237382546067238,-0.800963044166565,-0.549643158912659,0.273695230484009,-0.885812759399414,-0.37473526597023,0.224150136113167,-0.85746818780899,-0.4631467461586,0.22250971198082,-0.895494341850281,-0.385459423065186,0.237382546067238,-0.800963044166565,-0.549643158912659,0.211453884840012,-0.867722153663635,-0.449828267097473,0.21283908188343,-0.932673692703247,-0.29123729467392, +0.224150136113167,-0.85746818780899,-0.4631467461586,0.222455561161041,-0.872956335544586,-0.434120267629623,0.206492960453033,-0.929435670375824,-0.305793881416321,0.211453884840012,-0.867722153663635,-0.449828267097473,0.798410177230835,-0.586962759494781,-0.134223222732544,0.839303970336914,-0.518018901348114,-0.164999634027481,0.778610348701477,-0.587314128875732,-0.220970332622528,0.256227433681488,-0.958962798118591,-0.12139917165041,0.596324443817139,-0.744018852710724,-0.301385104656219,0.44307205080986,-0.882459819316864,-0.157961055636406,0.452243894338608,-0.865673661231995,-0.214672848582268,0.596324443817139,-0.744018852710724,-0.301385104656219,0.256227433681488,-0.958962798118591,-0.12139917165041,0.310342520475388,-0.937049448490143,-0.160080641508102,0.452243894338608,-0.865673661231995,-0.214672848582268,0.214405000209808,-0.975381731987,-0.0515841580927372,0.313239485025406,-0.883481502532959,-0.348340779542923,0.118634842336178,-0.985062658786774,-0.124808788299561,0.242208883166313,-0.897458732128143,-0.36864960193634,0.147956669330597,-0.913846909999847,-0.378143578767776,0.248133972287178,-0.733278512954712,-0.633033990859985,0.139191508293152,-0.949877917766571,-0.279923766851425,0.118634842336178,-0.985062658786774,-0.124808788299561,0.139191508293152,-0.949877917766571,-0.279923766851425,0.242208883166313,-0.897458732128143,-0.36864960193634,0.414952874183655,-0.863338530063629,-0.287159621715546,0.313239485025406,-0.883481502532959,-0.348340779542923,0.516441166400909,-0.698851525783539,-0.494868576526642,0.139507234096527,-0.988946676254272,-0.0502199158072472,0.414952874183655,-0.863338530063629,-0.287159621715546,0.310342520475388,-0.937049448490143,-0.160080641508102,0.590633690357208,-0.804468929767609,0.0630985647439957,0.634536504745483,-0.769953608512878,0.067340612411499,0.591474115848541,-0.798871159553528,0.109375931322575,0.610448777675629,-0.792052865028381,-0.00210157781839371,0.590633690357208,-0.804468929767609,0.0630985647439957,0.538187623023987,-0.842007577419281,0.0371108613908291, +0.498722285032272,-0.866669058799744,-0.0126786390319467,0.564051926136017,-0.823917269706726,-0.0548220239579678,0.538187623023987,-0.842007577419281,0.0371108613908291,0.498237550258636,-0.861423790454865,-0.0985307767987251,0.564051926136017,-0.823917269706726,-0.0548220239579678,0.498722285032272,-0.866669058799744,-0.0126786390319467,0.489237666130066,-0.854553043842316,-0.174314200878143,0.498237550258636,-0.861423790454865,-0.0985307767987251,0.458232790231705,-0.885345757007599,-0.0786478221416473,0.435058087110519,-0.879856407642365,-0.191251441836357,0.476224422454834,-0.841858744621277,-0.253937035799026,0.489237666130066,-0.854553043842316,-0.174314200878143,0.435058087110519,-0.879856407642365,-0.191251441836357,0.343513876199722,-0.913314461708069,-0.218757331371307,0.439893841743469,-0.841007113456726,-0.314960807561874,0.294162899255753,-0.89172351360321,-0.34394371509552,0.353582978248596,-0.892283499240875,-0.280729651451111,0.343513876199722,-0.913314461708069,-0.218757331371307,0.245850116014481,-0.916014790534973,-0.316977232694626,0.289625972509384,-0.854568600654602,-0.431079030036926,0.285124480724335,-0.901707291603088,-0.325004458427429,0.222455561161041,-0.872956335544586,-0.434120267629623,0.289625972509384,-0.854568600654602,-0.431079030036926,0.245850116014481,-0.916014790534973,-0.316977232694626,0.312246412038803,-0.921148121356964,-0.23235359787941,0.294162899255753,-0.89172351360321,-0.34394371509552,0.343513876199722,-0.913314461708069,-0.218757331371307,0.265495628118515,-0.938710510730743,-0.219851046800613,0.285124480724335,-0.901707291603088,-0.325004458427429,0.312246412038803,-0.921148121356964,-0.23235359787941,0.38189709186554,-0.916236162185669,0.121102415025234,0.309051543474197,-0.939855754375458,0.145458459854126,0.382312715053558,-0.923962235450745,0.0114310858771205,0.38189709186554,-0.916236162185669,0.121102415025234,0.402630776166916,-0.903153717517853,0.149002686142921,0.361380815505981,-0.916058123111725,0.173900216817856,0.434042096138,-0.897269129753113,0.0807184725999832, +0.412685573101044,-0.903518080711365,0.115523390471935,0.439016044139862,-0.897693395614624,0.0375689752399921,0.429024577140808,-0.899597883224487,0.081617645919323,0.412685573101044,-0.903518080711365,0.115523390471935,0.402630776166916,-0.903153717517853,0.149002686142921,0.439016044139862,-0.897693395614624,0.0375689752399921,0.458184748888016,-0.88761693239212,0.0469341315329075,0.434042096138,-0.897269129753113,0.0807184725999832,0.498722285032272,-0.866669058799744,-0.0126786390319467,0.538187623023987,-0.842007577419281,0.0371108613908291,0.458184748888016,-0.88761693239212,0.0469341315329075,0.590633690357208,-0.804468929767609,0.0630985647439957,0.591474115848541,-0.798871159553528,0.109375931322575,0.553909659385681,-0.827583372592926,0.0910476893186569,0.538187623023987,-0.842007577419281,0.0371108613908291,0.590633690357208,-0.804468929767609,0.0630985647439957,0.553909659385681,-0.827583372592926,0.0910476893186569,0.22250971198082,-0.895494341850281,-0.385459423065186,0.273695230484009,-0.885812759399414,-0.37473526597023,0.237382546067238,-0.800963044166565,-0.549643158912659,0.224150136113167,-0.85746818780899,-0.4631467461586,0.21283908188343,-0.932673692703247,-0.29123729467392,0.22250971198082,-0.895494341850281,-0.385459423065186,0.206492960453033,-0.929435670375824,-0.305793881416321,0.21283908188343,-0.932673692703247,-0.29123729467392,0.211453884840012,-0.867722153663635,-0.449828267097473,0.245850116014481,-0.916014790534973,-0.316977232694626,0.206492960453033,-0.929435670375824,-0.305793881416321,0.222455561161041,-0.872956335544586,-0.434120267629623,0.256227433681488,-0.958962798118591,-0.12139917165041,0.214405000209808,-0.975381731987,-0.0515841580927372,0.452243894338608,-0.865673661231995,-0.214672848582268,0.310342520475388,-0.937049448490143,-0.160080641508102,0.214405000209808,-0.975381731987,-0.0515841580927372,0.139507234096527,-0.988946676254272,-0.0502199158072472,0.118634842336178,-0.985062658786774,-0.124808788299561,0.313239485025406,-0.883481502532959,-0.348340779542923, +0.223627433180809,-0.959580838680267,-0.170866101980209,0.414952874183655,-0.863338530063629,-0.287159621715546,0.223627433180809,-0.959580838680267,-0.170866101980209,0.313239485025406,-0.883481502532959,-0.348340779542923,0.139507234096527,-0.988946676254272,-0.0502199158072472,0.223627433180809,-0.959580838680267,-0.170866101980209,0.414952874183655,-0.863338530063629,-0.287159621715546,0.498237550258636,-0.861423790454865,-0.0985307767987251,0.498722285032272,-0.866669058799744,-0.0126786390319467,0.447539687156677,-0.893960118293762,-0.0233130287379026,0.498237550258636,-0.861423790454865,-0.0985307767987251,0.447539687156677,-0.893960118293762,-0.0233130287379026,0.458232790231705,-0.885345757007599,-0.0786478221416473,0.458232790231705,-0.885345757007599,-0.0786478221416473,0.465568631887436,-0.877507328987122,-0.115006722509861,0.489237666130066,-0.854553043842316,-0.174314200878143,0.435058087110519,-0.879856407642365,-0.191251441836357,0.489237666130066,-0.854553043842316,-0.174314200878143,0.465568631887436,-0.877507328987122,-0.115006722509861,0.435058087110519,-0.879856407642365,-0.191251441836357,0.402044057846069,-0.906310617923737,-0.13023641705513,0.343513876199722,-0.913314461708069,-0.218757331371307,0.245850116014481,-0.916014790534973,-0.316977232694626,0.285124480724335,-0.901707291603088,-0.325004458427429,0.265495628118515,-0.938710510730743,-0.219851046800613,0.312246412038803,-0.921148121356964,-0.23235359787941,0.343513876199722,-0.913314461708069,-0.218757331371307,0.352408051490784,-0.923263549804688,-0.152947261929512,0.265495628118515,-0.938710510730743,-0.219851046800613,0.312246412038803,-0.921148121356964,-0.23235359787941,0.31026354432106,-0.93649286031723,-0.163455083966255,0.429024577140808,-0.899597883224487,0.081617645919323,0.38189709186554,-0.916236162185669,0.121102415025234,0.382312715053558,-0.923962235450745,0.0114310858771205,0.38189709186554,-0.916236162185669,0.121102415025234,0.429024577140808,-0.899597883224487,0.081617645919323,0.402630776166916,-0.903153717517853,0.149002686142921, +0.429024577140808,-0.899597883224487,0.081617645919323,0.439016044139862,-0.897693395614624,0.0375689752399921,0.412685573101044,-0.903518080711365,0.115523390471935,0.439016044139862,-0.897693395614624,0.0375689752399921,0.447539687156677,-0.893960118293762,-0.0233130287379026,0.458184748888016,-0.88761693239212,0.0469341315329075,0.447539687156677,-0.893960118293762,-0.0233130287379026,0.498722285032272,-0.866669058799744,-0.0126786390319467,0.458184748888016,-0.88761693239212,0.0469341315329075,0.245850116014481,-0.916014790534973,-0.316977232694626,0.184030428528786,-0.961094319820404,-0.205986544489861,0.206492960453033,-0.929435670375824,-0.305793881416321,0.118634842336178,-0.985062658786774,-0.124808788299561,0.223627433180809,-0.959580838680267,-0.170866101980209,0.139507234096527,-0.988946676254272,-0.0502199158072472,0.447816014289856,-0.894059002399445,-0.0109221199527383,0.458232790231705,-0.885345757007599,-0.0786478221416473,0.447539687156677,-0.893960118293762,-0.0233130287379026,0.458232790231705,-0.885345757007599,-0.0786478221416473,0.421361297369003,-0.904233515262604,-0.069399930536747,0.465568631887436,-0.877507328987122,-0.115006722509861,0.435058087110519,-0.879856407642365,-0.191251441836357,0.465568631887436,-0.877507328987122,-0.115006722509861,0.402044057846069,-0.906310617923737,-0.13023641705513,0.343513876199722,-0.913314461708069,-0.218757331371307,0.402044057846069,-0.906310617923737,-0.13023641705513,0.352408051490784,-0.923263549804688,-0.152947261929512,0.245850116014481,-0.916014790534973,-0.316977232694626,0.265495628118515,-0.938710510730743,-0.219851046800613,0.184030428528786,-0.961094319820404,-0.205986544489861,0.31026354432106,-0.93649286031723,-0.163455083966255,0.312246412038803,-0.921148121356964,-0.23235359787941,0.352408051490784,-0.923263549804688,-0.152947261929512,0.429024577140808,-0.899597883224487,0.081617645919323,0.382312715053558,-0.923962235450745,0.0114310858771205,0.447529822587967,-0.89425653219223,0.00472063478082418,0.429024577140808,-0.899597883224487,0.081617645919323, +0.447529822587967,-0.89425653219223,0.00472063478082418,0.439016044139862,-0.897693395614624,0.0375689752399921,0.447816014289856,-0.894059002399445,-0.0109221199527383,0.447539687156677,-0.893960118293762,-0.0233130287379026,0.439016044139862,-0.897693395614624,0.0375689752399921,0.447816014289856,-0.894059002399445,-0.0109221199527383,0.421361297369003,-0.904233515262604,-0.069399930536747,0.458232790231705,-0.885345757007599,-0.0786478221416473,0.421361297369003,-0.904233515262604,-0.069399930536747,0.402044057846069,-0.906310617923737,-0.13023641705513,0.465568631887436,-0.877507328987122,-0.115006722509861,0.402044057846069,-0.906310617923737,-0.13023641705513,0.421361297369003,-0.904233515262604,-0.069399930536747,0.352408051490784,-0.923263549804688,-0.152947261929512,0.31026354432106,-0.93649286031723,-0.163455083966255,0.352408051490784,-0.923263549804688,-0.152947261929512,0.335968643426895,-0.936915814876556,-0.0965075865387917,0.447529822587967,-0.89425653219223,0.00472063478082418,0.382312715053558,-0.923962235450745,0.0114310858771205,0.421361297369003,-0.904233515262604,-0.069399930536747,0.439016044139862,-0.897693395614624,0.0375689752399921,0.447529822587967,-0.89425653219223,0.00472063478082418,0.447816014289856,-0.894059002399445,-0.0109221199527383,0.447529822587967,-0.89425653219223,0.00472063478082418,0.421361297369003,-0.904233515262604,-0.069399930536747,0.447816014289856,-0.894059002399445,-0.0109221199527383,0.421361297369003,-0.904233515262604,-0.069399930536747,0.335968643426895,-0.936915814876556,-0.0965075865387917,0.352408051490784,-0.923263549804688,-0.152947261929512,0.335968643426895,-0.936915814876556,-0.0965075865387917,0.421361297369003,-0.904233515262604,-0.069399930536747,0.382312715053558,-0.923962235450745,0.0114310858771205,0.0142970327287912,0.999828279018402,0.0117898434400558,0.058421827852726,0.995316565036774,-0.0770178139209747,0.15328124165535,0.987413644790649,-0.0389753393828869,0.0142970327287912,0.999828279018402,0.0117898434400558,-0.0293134655803442,0.997489154338837,-0.0644667744636536, +0.058421827852726,0.995316565036774,-0.0770178139209747,0.058421827852726,0.995316565036774,-0.0770178139209747,0.090916246175766,0.986892998218536,-0.133328288793564,0.15328124165535,0.987413644790649,-0.0389753393828869,0.133612409234047,0.981656074523926,0.136010870337486,0.0142970327287912,0.999828279018402,0.0117898434400558,0.15328124165535,0.987413644790649,-0.0389753393828869,-0.0293134655803442,0.997489154338837,-0.0644667744636536,0.0142970327287912,0.999828279018402,0.0117898434400558,-0.112784087657928,0.993136882781982,-0.0309652928262949,-0.0293134655803442,0.997489154338837,-0.0644667744636536,-0.0467619113624096,0.995759248733521,-0.0792259499430656,0.058421827852726,0.995316565036774,-0.0770178139209747,0.0630213469266891,0.992009878158569,-0.109291680157185,0.090916246175766,0.986892998218536,-0.133328288793564,0.058421827852726,0.995316565036774,-0.0770178139209747,0.148183107376099,0.979433834552765,-0.136934459209442,0.15328124165535,0.987413644790649,-0.0389753393828869,0.090916246175766,0.986892998218536,-0.133328288793564,0.0142970327287912,0.999828279018402,0.0117898434400558,0.133612409234047,0.981656074523926,0.136010870337486,-0.0281403791159391,0.99388200044632,0.106801480054855,0.133612409234047,0.981656074523926,0.136010870337486,0.15328124165535,0.987413644790649,-0.0389753393828869,0.256092578172684,0.966634154319763,-0.00590858841314912,0.0142970327287912,0.999828279018402,0.0117898434400558,-0.19455523788929,0.97447657585144,0.111998401582241,-0.112784087657928,0.993136882781982,-0.0309652928262949,-0.0293134655803442,0.997489154338837,-0.0644667744636536,-0.112784087657928,0.993136882781982,-0.0309652928262949,-0.107527330517769,0.990080952644348,-0.090429350733757,-0.107527330517769,0.990080952644348,-0.090429350733757,-0.0467619113624096,0.995759248733521,-0.0792259499430656,-0.0293134655803442,0.997489154338837,-0.0644667744636536,0.058421827852726,0.995316565036774,-0.0770178139209747,-0.0467619113624096,0.995759248733521,-0.0792259499430656,0.0108544398099184,0.998093843460083,-0.0607514530420303, +0.0630213469266891,0.992009878158569,-0.109291680157185,0.0107758939266205,0.990470230579376,-0.137304380536079,0.090916246175766,0.986892998218536,-0.133328288793564,0.058421827852726,0.995316565036774,-0.0770178139209747,0.0108544398099184,0.998093843460083,-0.0607514530420303,0.0630213469266891,0.992009878158569,-0.109291680157185,0.15328124165535,0.987413644790649,-0.0389753393828869,0.148183107376099,0.979433834552765,-0.136934459209442,0.256092578172684,0.966634154319763,-0.00590858841314912,0.090916246175766,0.986892998218536,-0.133328288793564,0.0785765647888184,0.968389689922333,-0.236742496490479,0.148183107376099,0.979433834552765,-0.136934459209442,0.133612409234047,0.981656074523926,0.136010870337486,-0.0892600938677788,0.969965398311615,0.226273462176323,-0.0281403791159391,0.99388200044632,0.106801480054855,-0.19455523788929,0.97447657585144,0.111998401582241,0.0142970327287912,0.999828279018402,0.0117898434400558,-0.0281403791159391,0.99388200044632,0.106801480054855,0.293724179267883,0.94146054983139,0.165463283658028,0.133612409234047,0.981656074523926,0.136010870337486,0.256092578172684,0.966634154319763,-0.00590858841314912,-0.19455523788929,0.97447657585144,0.111998401582241,-0.213530316948891,0.975617825984955,-0.0507396571338177,-0.112784087657928,0.993136882781982,-0.0309652928262949,-0.112784087657928,0.993136882781982,-0.0309652928262949,-0.167811691761017,0.980767607688904,-0.0996698513627052,-0.107527330517769,0.990080952644348,-0.090429350733757,-0.107527330517769,0.990080952644348,-0.090429350733757,-0.115341827273369,0.989807367324829,-0.0835313126444817,-0.0467619113624096,0.995759248733521,-0.0792259499430656,0.0108544398099184,0.998093843460083,-0.0607514530420303,-0.0467619113624096,0.995759248733521,-0.0792259499430656,-0.065079040825367,0.997696399688721,-0.0191451981663704,0.0107758939266205,0.990470230579376,-0.137304380536079,0.0630213469266891,0.992009878158569,-0.109291680157185,0.0228174161165953,0.995811522006989,-0.0885365009307861,0.090916246175766,0.986892998218536,-0.133328288793564, +0.0107758939266205,0.990470230579376,-0.137304380536079,-0.0331210233271122,0.982174813747406,-0.185028403997421,0.0630213469266891,0.992009878158569,-0.109291680157185,0.0108544398099184,0.998093843460083,-0.0607514530420303,0.0228174161165953,0.995811522006989,-0.0885365009307861,0.148183107376099,0.979433834552765,-0.136934459209442,0.203528389334679,0.96239697933197,-0.179911509156227,0.256092578172684,0.966634154319763,-0.00590858841314912,0.0785765647888184,0.968389689922333,-0.236742496490479,0.090916246175766,0.986892998218536,-0.133328288793564,-0.0331210233271122,0.982174813747406,-0.185028403997421,0.0785765647888184,0.968389689922333,-0.236742496490479,0.203528389334679,0.96239697933197,-0.179911509156227,0.148183107376099,0.979433834552765,-0.136934459209442,0.0236522741615772,0.948586940765381,0.315631479024887,-0.0892600938677788,0.969965398311615,0.226273462176323,0.133612409234047,0.981656074523926,0.136010870337486,-0.0892600938677788,0.969965398311615,0.226273462176323,-0.19455523788929,0.97447657585144,0.111998401582241,-0.0281403791159391,0.99388200044632,0.106801480054855,0.133612409234047,0.981656074523926,0.136010870337486,0.293724179267883,0.94146054983139,0.165463283658028,0.236255660653114,0.932922005653381,0.2717345058918,0.293724179267883,0.94146054983139,0.165463283658028,0.256092578172684,0.966634154319763,-0.00590858841314912,0.412426888942719,0.903505921363831,0.116537787020206,-0.213530316948891,0.975617825984955,-0.0507396571338177,-0.19455523788929,0.97447657585144,0.111998401582241,-0.326176375150681,0.94166088104248,0.08296749740839,-0.112784087657928,0.993136882781982,-0.0309652928262949,-0.213530316948891,0.975617825984955,-0.0507396571338177,-0.167811691761017,0.980767607688904,-0.0996698513627052,-0.167811691761017,0.980767607688904,-0.0996698513627052,-0.115341827273369,0.989807367324829,-0.0835313126444817,-0.107527330517769,0.990080952644348,-0.090429350733757,-0.115341827273369,0.989807367324829,-0.0835313126444817,-0.065079040825367,0.997696399688721,-0.0191451981663704, +-0.0467619113624096,0.995759248733521,-0.0792259499430656,0.0108544398099184,0.998093843460083,-0.0607514530420303,-0.065079040825367,0.997696399688721,-0.0191451981663704,-0.0219664685428143,0.999294817447662,-0.0304507147520781,0.0228174161165953,0.995811522006989,-0.0885365009307861,-0.050262127071619,0.991793274879456,-0.117557547986507,0.0107758939266205,0.990470230579376,-0.137304380536079,-0.0331210233271122,0.982174813747406,-0.185028403997421,0.0107758939266205,0.990470230579376,-0.137304380536079,-0.129696547985077,0.98085606098175,-0.145258694887161,0.00682557001709938,0.998278617858887,-0.0582500323653221,0.0228174161165953,0.995811522006989,-0.0885365009307861,0.0108544398099184,0.998093843460083,-0.0607514530420303,0.368829339742661,0.92647111415863,-0.0749388486146927,0.256092578172684,0.966634154319763,-0.00590858841314912,0.203528389334679,0.96239697933197,-0.179911509156227,-0.0331210233271122,0.982174813747406,-0.185028403997421,-0.0691766366362572,0.952756702899933,-0.295751869678497,0.0785765647888184,0.968389689922333,-0.236742496490479,0.0785765647888184,0.968389689922333,-0.236742496490479,0.228925094008446,0.93485426902771,-0.2713682949543,0.203528389334679,0.96239697933197,-0.179911509156227,-0.164000809192657,0.925649583339691,0.340993046760559,-0.0892600938677788,0.969965398311615,0.226273462176323,0.0236522741615772,0.948586940765381,0.315631479024887,0.133612409234047,0.981656074523926,0.136010870337486,0.236255660653114,0.932922005653381,0.2717345058918,0.0236522741615772,0.948586940765381,0.315631479024887,-0.260050505399704,0.944589018821716,0.200313091278076,-0.19455523788929,0.97447657585144,0.111998401582241,-0.0892600938677788,0.969965398311615,0.226273462176323,0.293724179267883,0.94146054983139,0.165463283658028,0.372278302907944,0.897622883319855,0.235970348119736,0.236255660653114,0.932922005653381,0.2717345058918,0.368829339742661,0.92647111415863,-0.0749388486146927,0.412426888942719,0.903505921363831,0.116537787020206,0.256092578172684,0.966634154319763,-0.00590858841314912, +0.372278302907944,0.897622883319855,0.235970348119736,0.293724179267883,0.94146054983139,0.165463283658028,0.412426888942719,0.903505921363831,0.116537787020206,-0.19455523788929,0.97447657585144,0.111998401582241,-0.320623904466629,0.924439013004303,0.206428393721581,-0.326176375150681,0.94166088104248,0.08296749740839,-0.241790056228638,0.967304825782776,-0.0765435248613358,-0.213530316948891,0.975617825984955,-0.0507396571338177,-0.326176375150681,0.94166088104248,0.08296749740839,-0.213530316948891,0.975617825984955,-0.0507396571338177,-0.219712123274803,0.969643950462341,-0.107317470014095,-0.167811691761017,0.980767607688904,-0.0996698513627052,-0.115341827273369,0.989807367324829,-0.0835313126444817,-0.167811691761017,0.980767607688904,-0.0996698513627052,-0.169512927532196,0.983515977859497,-0.0629412829875946,-0.115341827273369,0.989807367324829,-0.0835313126444817,-0.169512927532196,0.983515977859497,-0.0629412829875946,-0.065079040825367,0.997696399688721,-0.0191451981663704,-0.0494554489850998,0.998550891876221,0.0212191045284271,-0.0219664685428143,0.999294817447662,-0.0304507147520781,-0.065079040825367,0.997696399688721,-0.0191451981663704,0.0108544398099184,0.998093843460083,-0.0607514530420303,-0.0219664685428143,0.999294817447662,-0.0304507147520781,0.00682557001709938,0.998278617858887,-0.0582500323653221,0.00157871784176677,0.998530268669128,-0.0541731268167496,-0.050262127071619,0.991793274879456,-0.117557547986507,0.0228174161165953,0.995811522006989,-0.0885365009307861,-0.050262127071619,0.991793274879456,-0.117557547986507,-0.129696547985077,0.98085606098175,-0.145258694887161,0.0107758939266205,0.990470230579376,-0.137304380536079,-0.129696547985077,0.98085606098175,-0.145258694887161,-0.238876968622208,0.950758397579193,-0.197474434971809,-0.0331210233271122,0.982174813747406,-0.185028403997421,0.0228174161165953,0.995811522006989,-0.0885365009307861,0.00682557001709938,0.998278617858887,-0.0582500323653221,0.00323489075526595,0.999240398406982,-0.0388334318995476,0.368829339742661,0.92647111415863,-0.0749388486146927, +0.203528389334679,0.96239697933197,-0.179911509156227,0.228925094008446,0.93485426902771,-0.2713682949543,-0.0331210233271122,0.982174813747406,-0.185028403997421,-0.238876968622208,0.950758397579193,-0.197474434971809,-0.0691766366362572,0.952756702899933,-0.295751869678497,-0.0691766366362572,0.952756702899933,-0.295751869678497,0.113043025135994,0.918766438961029,-0.378271698951721,0.0785765647888184,0.968389689922333,-0.236742496490479,0.0785765647888184,0.968389689922333,-0.236742496490479,0.113043025135994,0.918766438961029,-0.378271698951721,0.228925094008446,0.93485426902771,-0.2713682949543,-0.0892600938677788,0.969965398311615,0.226273462176323,-0.164000809192657,0.925649583339691,0.340993046760559,-0.287136614322662,0.923939347267151,0.252761691808701,0.0236522741615772,0.948586940765381,0.315631479024887,-0.0592985674738884,0.9101522564888,0.410007864236832,-0.164000809192657,0.925649583339691,0.340993046760559,0.175770208239555,0.901526689529419,0.395416647195816,0.0236522741615772,0.948586940765381,0.315631479024887,0.236255660653114,0.932922005653381,0.2717345058918,-0.320623904466629,0.924439013004303,0.206428393721581,-0.19455523788929,0.97447657585144,0.111998401582241,-0.260050505399704,0.944589018821716,0.200313091278076,-0.287136614322662,0.923939347267151,0.252761691808701,-0.260050505399704,0.944589018821716,0.200313091278076,-0.0892600938677788,0.969965398311615,0.226273462176323,0.419721007347107,0.841974973678589,0.338987112045288,0.236255660653114,0.932922005653381,0.2717345058918,0.372278302907944,0.897622883319855,0.235970348119736,0.368829339742661,0.92647111415863,-0.0749388486146927,0.510259330272675,0.858007073402405,0.0588152408599854,0.412426888942719,0.903505921363831,0.116537787020206,0.372278302907944,0.897622883319855,0.235970348119736,0.412426888942719,0.903505921363831,0.116537787020206,0.489562630653381,0.839463531970978,0.235858678817749,-0.320623904466629,0.924439013004303,0.206428393721581,-0.321613937616348,0.923950612545013,0.207073420286179,-0.326176375150681,0.94166088104248,0.08296749740839, +-0.219712123274803,0.969643950462341,-0.107317470014095,-0.213530316948891,0.975617825984955,-0.0507396571338177,-0.241790056228638,0.967304825782776,-0.0765435248613358,-0.31016594171524,0.944184958934784,-0.110958613455296,-0.241790056228638,0.967304825782776,-0.0765435248613358,-0.326176375150681,0.94166088104248,0.08296749740839,-0.219712123274803,0.969643950462341,-0.107317470014095,-0.232420578598976,0.963991582393646,-0.129231512546539,-0.167811691761017,0.980767607688904,-0.0996698513627052,-0.206346571445465,0.971328914165497,-0.118072398006916,-0.169512927532196,0.983515977859497,-0.0629412829875946,-0.167811691761017,0.980767607688904,-0.0996698513627052,-0.065079040825367,0.997696399688721,-0.0191451981663704,-0.169512927532196,0.983515977859497,-0.0629412829875946,-0.135770604014397,0.990666389465332,0.0120955780148506,0.00323489075526595,0.999240398406982,-0.0388334318995476,-0.0219664685428143,0.999294817447662,-0.0304507147520781,-0.0494554489850998,0.998550891876221,0.0212191045284271,-0.0494554489850998,0.998550891876221,0.0212191045284271,-0.065079040825367,0.997696399688721,-0.0191451981663704,-0.135770604014397,0.990666389465332,0.0120955780148506,0.00682557001709938,0.998278617858887,-0.0582500323653221,-0.0219664685428143,0.999294817447662,-0.0304507147520781,0.00323489075526595,0.999240398406982,-0.0388334318995476,0.00157871784176677,0.998530268669128,-0.0541731268167496,-0.117607653141022,0.992458879947662,-0.034550916403532,-0.050262127071619,0.991793274879456,-0.117557547986507,0.0364157892763615,0.998748064041138,-0.0342948921024799,0.00157871784176677,0.998530268669128,-0.0541731268167496,0.0228174161165953,0.995811522006989,-0.0885365009307861,-0.050262127071619,0.991793274879456,-0.117557547986507,-0.181151375174522,0.978978931903839,-0.0937244296073914,-0.129696547985077,0.98085606098175,-0.145258694887161,-0.129696547985077,0.98085606098175,-0.145258694887161,-0.331768661737442,0.94053703546524,-0.0729348063468933,-0.238876968622208,0.950758397579193,-0.197474434971809,0.0228174161165953,0.995811522006989,-0.0885365009307861, +0.00323489075526595,0.999240398406982,-0.0388334318995476,0.0281323399394751,0.99873560667038,-0.04166055098176,0.452070146799088,0.869819939136505,-0.197599783539772,0.368829339742661,0.92647111415863,-0.0749388486146927,0.228925094008446,0.93485426902771,-0.2713682949543,-0.0691766366362572,0.952756702899933,-0.295751869678497,-0.238876968622208,0.950758397579193,-0.197474434971809,-0.314004749059677,0.879623830318451,-0.357299447059631,0.113043025135994,0.918766438961029,-0.378271698951721,-0.0691766366362572,0.952756702899933,-0.295751869678497,-0.0120747610926628,0.891639769077301,-0.452584445476532,0.295998364686966,0.884146749973297,-0.361482322216034,0.228925094008446,0.93485426902771,-0.2713682949543,0.113043025135994,0.918766438961029,-0.378271698951721,0.175770208239555,0.901526689529419,0.395416647195816,-0.0592985674738884,0.9101522564888,0.410007864236832,0.0236522741615772,0.948586940765381,0.315631479024887,-0.164000809192657,0.925649583339691,0.340993046760559,-0.0592985674738884,0.9101522564888,0.410007864236832,-0.272386968135834,0.88256049156189,0.383265137672424,0.419721007347107,0.841974973678589,0.338987112045288,0.175770208239555,0.901526689529419,0.395416647195816,0.236255660653114,0.932922005653381,0.2717345058918,-0.321613937616348,0.923950612545013,0.207073420286179,-0.320623904466629,0.924439013004303,0.206428393721581,-0.260050505399704,0.944589018821716,0.200313091278076,-0.260050505399704,0.944589018821716,0.200313091278076,-0.287136614322662,0.923939347267151,0.252761691808701,-0.321613937616348,0.923950612545013,0.207073420286179,0.372278302907944,0.897622883319855,0.235970348119736,0.489562630653381,0.839463531970978,0.235858678817749,0.419721007347107,0.841974973678589,0.338987112045288,0.510259330272675,0.858007073402405,0.0588152408599854,0.368829339742661,0.92647111415863,-0.0749388486146927,0.600354909896851,0.799195945262909,0.0293193608522415,0.510259330272675,0.858007073402405,0.0588152408599854,0.558926343917847,0.803890109062195,0.203375861048698,0.412426888942719,0.903505921363831,0.116537787020206, +0.412426888942719,0.903505921363831,0.116537787020206,0.558926343917847,0.803890109062195,0.203375861048698,0.489562630653381,0.839463531970978,0.235858678817749,-0.232420578598976,0.963991582393646,-0.129231512546539,-0.219712123274803,0.969643950462341,-0.107317470014095,-0.241790056228638,0.967304825782776,-0.0765435248613358,-0.232420578598976,0.963991582393646,-0.129231512546539,-0.241790056228638,0.967304825782776,-0.0765435248613358,-0.31016594171524,0.944184958934784,-0.110958613455296,-0.232420578598976,0.963991582393646,-0.129231512546539,-0.206346571445465,0.971328914165497,-0.118072398006916,-0.167811691761017,0.980767607688904,-0.0996698513627052,-0.169512927532196,0.983515977859497,-0.0629412829875946,-0.206346571445465,0.971328914165497,-0.118072398006916,-0.232413709163666,0.96880841255188,-0.0859884694218636,-0.227079346776009,0.973808407783508,0.0114938067272305,-0.135770604014397,0.990666389465332,0.0120955780148506,-0.169512927532196,0.983515977859497,-0.0629412829875946,0.00323489075526595,0.999240398406982,-0.0388334318995476,-0.0494554489850998,0.998550891876221,0.0212191045284271,0.0177941489964724,0.999837577342987,0.00284654600545764,-0.107768632471561,0.992487013339996,0.057925883680582,-0.0494554489850998,0.998550891876221,0.0212191045284271,-0.135770604014397,0.990666389465332,0.0120955780148506,0.00157871784176677,0.998530268669128,-0.0541731268167496,-0.0523837842047215,0.998184204101563,0.0297352969646454,-0.117607653141022,0.992458879947662,-0.034550916403532,-0.117607653141022,0.992458879947662,-0.034550916403532,-0.181151375174522,0.978978931903839,-0.0937244296073914,-0.050262127071619,0.991793274879456,-0.117557547986507,0.0520113706588745,0.998310327529907,0.025908125564456,0.00157871784176677,0.998530268669128,-0.0541731268167496,0.0364157892763615,0.998748064041138,-0.0342948921024799,0.0364157892763615,0.998748064041138,-0.0342948921024799,0.0228174161165953,0.995811522006989,-0.0885365009307861,0.0281323399394751,0.99873560667038,-0.04166055098176,-0.181151375174522,0.978978931903839,-0.0937244296073914, +-0.331768661737442,0.94053703546524,-0.0729348063468933,-0.129696547985077,0.98085606098175,-0.145258694887161,-0.516415774822235,0.841756999492645,-0.157352268695831,-0.238876968622208,0.950758397579193,-0.197474434971809,-0.331768661737442,0.94053703546524,-0.0729348063468933,0.00323489075526595,0.999240398406982,-0.0388334318995476,0.0177941489964724,0.999837577342987,0.00284654600545764,0.0281323399394751,0.99873560667038,-0.04166055098176,0.368829339742661,0.92647111415863,-0.0749388486146927,0.452070146799088,0.869819939136505,-0.197599783539772,0.600354909896851,0.799195945262909,0.0293193608522415,0.452070146799088,0.869819939136505,-0.197599783539772,0.228925094008446,0.93485426902771,-0.2713682949543,0.295998364686966,0.884146749973297,-0.361482322216034,-0.238876968622208,0.950758397579193,-0.197474434971809,-0.516415774822235,0.841756999492645,-0.157352268695831,-0.314004749059677,0.879623830318451,-0.357299447059631,-0.314004749059677,0.879623830318451,-0.357299447059631,-0.0120747610926628,0.891639769077301,-0.452584445476532,-0.0691766366362572,0.952756702899933,-0.295751869678497,-0.0120747610926628,0.891639769077301,-0.452584445476532,0.283147424459457,0.826739847660065,-0.48613640666008,0.113043025135994,0.918766438961029,-0.378271698951721,0.295998364686966,0.884146749973297,-0.361482322216034,0.113043025135994,0.918766438961029,-0.378271698951721,0.283147424459457,0.826739847660065,-0.48613640666008,0.0908106416463852,0.886210262775421,0.454295754432678,-0.0592985674738884,0.9101522564888,0.410007864236832,0.175770208239555,0.901526689529419,0.395416647195816,-0.192159965634346,0.87401294708252,0.44629117846489,-0.272386968135834,0.88256049156189,0.383265137672424,-0.0592985674738884,0.9101522564888,0.410007864236832,0.371407568454742,0.823914527893066,0.428043335676193,0.175770208239555,0.901526689529419,0.395416647195816,0.419721007347107,0.841974973678589,0.338987112045288,0.489562630653381,0.839463531970978,0.235858678817749,0.569215655326843,0.757168114185333,0.320452690124512,0.419721007347107,0.841974973678589,0.338987112045288, +0.600354909896851,0.799195945262909,0.0293193608522415,0.604560732841492,0.78177684545517,0.152744919061661,0.510259330272675,0.858007073402405,0.0588152408599854,0.604560732841492,0.78177684545517,0.152744919061661,0.558926343917847,0.803890109062195,0.203375861048698,0.510259330272675,0.858007073402405,0.0588152408599854,0.558926343917847,0.803890109062195,0.203375861048698,0.569215655326843,0.757168114185333,0.320452690124512,0.489562630653381,0.839463531970978,0.235858678817749,-0.232420578598976,0.963991582393646,-0.129231512546539,-0.258948415517807,0.954689562320709,-0.146674886345863,-0.206346571445465,0.971328914165497,-0.118072398006916,-0.232413709163666,0.96880841255188,-0.0859884694218636,-0.206346571445465,0.971328914165497,-0.118072398006916,-0.258948415517807,0.954689562320709,-0.146674886345863,-0.232413709163666,0.96880841255188,-0.0859884694218636,-0.227079346776009,0.973808407783508,0.0114938067272305,-0.169512927532196,0.983515977859497,-0.0629412829875946,-0.135770604014397,0.990666389465332,0.0120955780148506,-0.227079346776009,0.973808407783508,0.0114938067272305,-0.16644187271595,0.983967900276184,0.0640638545155525,0.0118720727041364,0.996349096298218,0.0845423638820648,0.0177941489964724,0.999837577342987,0.00284654600545764,-0.0494554489850998,0.998550891876221,0.0212191045284271,-0.0494554489850998,0.998550891876221,0.0212191045284271,-0.107768632471561,0.992487013339996,0.057925883680582,-0.0602736473083496,0.993838131427765,0.0930201932787895,-0.107768632471561,0.992487013339996,0.057925883680582,-0.135770604014397,0.990666389465332,0.0120955780148506,-0.16644187271595,0.983967900276184,0.0640638545155525,-0.0523837842047215,0.998184204101563,0.0297352969646454,0.00157871784176677,0.998530268669128,-0.0541731268167496,0.0520113706588745,0.998310327529907,0.025908125564456,-0.221847623586655,0.96906453371048,0.108153782784939,-0.117607653141022,0.992458879947662,-0.034550916403532,-0.0523837842047215,0.998184204101563,0.0297352969646454,-0.117607653141022,0.992458879947662,-0.034550916403532, +-0.331873089075089,0.942857384681702,0.0296677798032761,-0.181151375174522,0.978978931903839,-0.0937244296073914,0.0364157892763615,0.998748064041138,-0.0342948921024799,0.0853656902909279,0.996336698532104,-0.0050760698504746,0.0520113706588745,0.998310327529907,0.025908125564456,0.0177941489964724,0.999837577342987,0.00284654600545764,0.0364157892763615,0.998748064041138,-0.0342948921024799,0.0281323399394751,0.99873560667038,-0.04166055098176,-0.331873089075089,0.942857384681702,0.0296677798032761,-0.331768661737442,0.94053703546524,-0.0729348063468933,-0.181151375174522,0.978978931903839,-0.0937244296073914,-0.516415774822235,0.841756999492645,-0.157352268695831,-0.331768661737442,0.94053703546524,-0.0729348063468933,-0.533792614936829,0.841562926769257,0.0826870873570442,0.600354909896851,0.799195945262909,0.0293193608522415,0.452070146799088,0.869819939136505,-0.197599783539772,0.685121655464172,0.719395101070404,-0.114363513886929,0.295998364686966,0.884146749973297,-0.361482322216034,0.501465618610382,0.800948917865753,-0.327128350734711,0.452070146799088,0.869819939136505,-0.197599783539772,-0.526836156845093,0.763889849185944,-0.372714012861252,-0.314004749059677,0.879623830318451,-0.357299447059631,-0.516415774822235,0.841756999492645,-0.157352268695831,-0.0120747610926628,0.891639769077301,-0.452584445476532,-0.314004749059677,0.879623830318451,-0.357299447059631,-0.248039156198502,0.82061105966568,-0.514853239059448,-0.0120747610926628,0.891639769077301,-0.452584445476532,0.107203759253025,0.785555064678192,-0.609434425830841,0.283147424459457,0.826739847660065,-0.48613640666008,0.295998364686966,0.884146749973297,-0.361482322216034,0.283147424459457,0.826739847660065,-0.48613640666008,0.501465618610382,0.800948917865753,-0.327128350734711,0.0908106416463852,0.886210262775421,0.454295754432678,-0.192159965634346,0.87401294708252,0.44629117846489,-0.0592985674738884,0.9101522564888,0.410007864236832,0.175770208239555,0.901526689529419,0.395416647195816,0.371407568454742,0.823914527893066,0.428043335676193, +0.0908106416463852,0.886210262775421,0.454295754432678,0.419721007347107,0.841974973678589,0.338987112045288,0.53059446811676,0.751374304294586,0.392308562994003,0.371407568454742,0.823914527893066,0.428043335676193,0.419721007347107,0.841974973678589,0.338987112045288,0.569215655326843,0.757168114185333,0.320452690124512,0.53059446811676,0.751374304294586,0.392308562994003,0.604560732841492,0.78177684545517,0.152744919061661,0.600354909896851,0.799195945262909,0.0293193608522415,0.694797694683075,0.69339507818222,0.190943077206612,0.558926343917847,0.803890109062195,0.203375861048698,0.604560732841492,0.78177684545517,0.152744919061661,0.624843657016754,0.738489627838135,0.253383755683899,0.558926343917847,0.803890109062195,0.203375861048698,0.624843657016754,0.738489627838135,0.253383755683899,0.569215655326843,0.757168114185333,0.320452690124512,-0.297655403614044,0.947603464126587,-0.115969084203243,-0.232413709163666,0.96880841255188,-0.0859884694218636,-0.258948415517807,0.954689562320709,-0.146674886345863,-0.227079346776009,0.973808407783508,0.0114938067272305,-0.232413709163666,0.96880841255188,-0.0859884694218636,-0.277956783771515,0.960026264190674,-0.0330077223479748,-0.16644187271595,0.983967900276184,0.0640638545155525,-0.227079346776009,0.973808407783508,0.0114938067272305,-0.246141254901886,0.965832233428955,0.0811330080032349,0.0555991940200329,0.997293829917908,0.0481004528701305,0.0177941489964724,0.999837577342987,0.00284654600545764,0.0118720727041364,0.996349096298218,0.0845423638820648,-0.0494554489850998,0.998550891876221,0.0212191045284271,-0.0602736473083496,0.993838131427765,0.0930201932787895,0.0118720727041364,0.996349096298218,0.0845423638820648,-0.0602736473083496,0.993838131427765,0.0930201932787895,-0.107768632471561,0.992487013339996,0.057925883680582,-0.125159278512001,0.985474109649658,0.114785946905613,-0.16644187271595,0.983967900276184,0.0640638545155525,-0.125159278512001,0.985474109649658,0.114785946905613,-0.107768632471561,0.992487013339996,0.057925883680582,0.0520113706588745,0.998310327529907,0.025908125564456, +-0.0832415148615837,0.983401536941528,0.161220848560333,-0.0523837842047215,0.998184204101563,0.0297352969646454,-0.221847623586655,0.96906453371048,0.108153782784939,-0.331873089075089,0.942857384681702,0.0296677798032761,-0.117607653141022,0.992458879947662,-0.034550916403532,-0.221847623586655,0.96906453371048,0.108153782784939,-0.0523837842047215,0.998184204101563,0.0297352969646454,-0.0832415148615837,0.983401536941528,0.161220848560333,0.0622443780303001,0.997971832752228,0.0133332721889019,0.0853656902909279,0.996336698532104,-0.0050760698504746,0.0364157892763615,0.998748064041138,-0.0342948921024799,0.0853656902909279,0.996336698532104,-0.0050760698504746,0.163312301039696,0.98602432012558,0.0329391956329346,0.0520113706588745,0.998310327529907,0.025908125564456,0.0177941489964724,0.999837577342987,0.00284654600545764,0.0622443780303001,0.997971832752228,0.0133332721889019,0.0364157892763615,0.998748064041138,-0.0342948921024799,-0.331768661737442,0.94053703546524,-0.0729348063468933,-0.331873089075089,0.942857384681702,0.0296677798032761,-0.533792614936829,0.841562926769257,0.0826870873570442,-0.516415774822235,0.841756999492645,-0.157352268695831,-0.533792614936829,0.841562926769257,0.0826870873570442,-0.679566502571106,0.732906043529511,0.0322175547480583,0.501465618610382,0.800948917865753,-0.327128350734711,0.685121655464172,0.719395101070404,-0.114363513886929,0.452070146799088,0.869819939136505,-0.197599783539772,0.600354909896851,0.799195945262909,0.0293193608522415,0.685121655464172,0.719395101070404,-0.114363513886929,0.740318357944489,0.668422698974609,0.0716921985149384,-0.526836156845093,0.763889849185944,-0.372714012861252,-0.418959945440292,0.784328639507294,-0.457494288682938,-0.314004749059677,0.879623830318451,-0.357299447059631,-0.516415774822235,0.841756999492645,-0.157352268695831,-0.723345994949341,0.651722729206085,-0.22809624671936,-0.526836156845093,0.763889849185944,-0.372714012861252,-0.418959945440292,0.784328639507294,-0.457494288682938,-0.248039156198502,0.82061105966568,-0.514853239059448, +-0.314004749059677,0.879623830318451,-0.357299447059631,-0.248039156198502,0.82061105966568,-0.514853239059448,0.107203759253025,0.785555064678192,-0.609434425830841,-0.0120747610926628,0.891639769077301,-0.452584445476532,0.0908106416463852,0.886210262775421,0.454295754432678,-0.00351573736406863,0.876084446907043,0.482144773006439,-0.192159965634346,0.87401294708252,0.44629117846489,0.371407568454742,0.823914527893066,0.428043335676193,0.26896134018898,0.84368896484375,0.464595019817352,0.0908106416463852,0.886210262775421,0.454295754432678,0.53059446811676,0.751374304294586,0.392308562994003,0.561604201793671,0.714595556259155,0.417077600955963,0.371407568454742,0.823914527893066,0.428043335676193,0.53059446811676,0.751374304294586,0.392308562994003,0.569215655326843,0.757168114185333,0.320452690124512,0.631501257419586,0.676442503929138,0.378987669944763,0.694797694683075,0.69339507818222,0.190943077206612,0.600354909896851,0.799195945262909,0.0293193608522415,0.740318357944489,0.668422698974609,0.0716921985149384,0.604560732841492,0.78177684545517,0.152744919061661,0.694797694683075,0.69339507818222,0.190943077206612,0.624843657016754,0.738489627838135,0.253383755683899,0.67240047454834,0.673280417919159,0.307523727416992,0.569215655326843,0.757168114185333,0.320452690124512,0.624843657016754,0.738489627838135,0.253383755683899,-0.232413709163666,0.96880841255188,-0.0859884694218636,-0.297655403614044,0.947603464126587,-0.115969084203243,-0.277956783771515,0.960026264190674,-0.0330077223479748,-0.281123667955399,0.95934385061264,0.0250750575214624,-0.227079346776009,0.973808407783508,0.0114938067272305,-0.277956783771515,0.960026264190674,-0.0330077223479748,-0.327125757932663,0.942834138870239,0.0636584088206291,-0.246141254901886,0.965832233428955,0.0811330080032349,-0.227079346776009,0.973808407783508,0.0114938067272305,-0.21959362924099,0.967770338058472,0.123284861445427,-0.16644187271595,0.983967900276184,0.0640638545155525,-0.246141254901886,0.965832233428955,0.0811330080032349,0.0177941489964724,0.999837577342987,0.00284654600545764, +0.0555991940200329,0.997293829917908,0.0481004528701305,0.0622443780303001,0.997971832752228,0.0133332721889019,0.0118720727041364,0.996349096298218,0.0845423638820648,0.0699790418148041,0.990323603153229,0.119841456413269,0.0555991940200329,0.997293829917908,0.0481004528701305,-0.0602736473083496,0.993838131427765,0.0930201932787895,0.00753531837835908,0.98579329252243,0.167793437838554,0.0118720727041364,0.996349096298218,0.0845423638820648,-0.0635147988796234,0.987681686878204,0.143005877733231,-0.0602736473083496,0.993838131427765,0.0930201932787895,-0.125159278512001,0.985474109649658,0.114785946905613,-0.125159278512001,0.985474109649658,0.114785946905613,-0.16644187271595,0.983967900276184,0.0640638545155525,-0.21959362924099,0.967770338058472,0.123284861445427,0.146395012736321,0.983099281787872,0.10992818325758,-0.0832415148615837,0.983401536941528,0.161220848560333,0.0520113706588745,0.998310327529907,0.025908125564456,-0.221847623586655,0.96906453371048,0.108153782784939,-0.433952957391739,0.877756118774414,0.203049063682556,-0.331873089075089,0.942857384681702,0.0296677798032761,-0.286712288856506,0.925540924072266,0.247325137257576,-0.221847623586655,0.96906453371048,0.108153782784939,-0.0832415148615837,0.983401536941528,0.161220848560333,0.11984471231699,0.992126524448395,0.0363617539405823,0.0853656902909279,0.996336698532104,-0.0050760698504746,0.0622443780303001,0.997971832752228,0.0133332721889019,0.11984471231699,0.992126524448395,0.0363617539405823,0.163312301039696,0.98602432012558,0.0329391956329346,0.0853656902909279,0.996336698532104,-0.0050760698504746,0.146395012736321,0.983099281787872,0.10992818325758,0.0520113706588745,0.998310327529907,0.025908125564456,0.163312301039696,0.98602432012558,0.0329391956329346,-0.433952957391739,0.877756118774414,0.203049063682556,-0.533792614936829,0.841562926769257,0.0826870873570442,-0.331873089075089,0.942857384681702,0.0296677798032761,-0.679566502571106,0.732906043529511,0.0322175547480583,-0.533792614936829,0.841562926769257,0.0826870873570442,-0.589625835418701,0.761332094669342,0.269656658172607, +-0.516415774822235,0.841756999492645,-0.157352268695831,-0.679566502571106,0.732906043529511,0.0322175547480583,-0.723345994949341,0.651722729206085,-0.22809624671936,0.6829714179039,0.685764849185944,-0.251548379659653,0.685121655464172,0.719395101070404,-0.114363513886929,0.501465618610382,0.800948917865753,-0.327128350734711,0.831233382225037,0.554014801979065,0.0460272952914238,0.740318357944489,0.668422698974609,0.0716921985149384,0.685121655464172,0.719395101070404,-0.114363513886929,-0.418959945440292,0.784328639507294,-0.457494288682938,-0.526836156845093,0.763889849185944,-0.372714012861252,-0.449537098407745,0.684517741203308,-0.573891639709473,-0.666253566741943,0.555219352245331,-0.497832804918289,-0.526836156845093,0.763889849185944,-0.372714012861252,-0.723345994949341,0.651722729206085,-0.22809624671936,-0.248039156198502,0.82061105966568,-0.514853239059448,-0.418959945440292,0.784328639507294,-0.457494288682938,-0.449537098407745,0.684517741203308,-0.573891639709473,0.107203759253025,0.785555064678192,-0.609434425830841,-0.248039156198502,0.82061105966568,-0.514853239059448,-0.160410523414612,0.728954017162323,-0.665503025054932,-0.00351573736406863,0.876084446907043,0.482144773006439,0.0908106416463852,0.886210262775421,0.454295754432678,0.26896134018898,0.84368896484375,0.464595019817352,-0.271856188774109,0.839541018009186,0.47038808465004,-0.192159965634346,0.87401294708252,0.44629117846489,-0.00351573736406863,0.876084446907043,0.482144773006439,0.476441770792007,0.764257490634918,0.434641927480698,0.26896134018898,0.84368896484375,0.464595019817352,0.371407568454742,0.823914527893066,0.428043335676193,0.53059446811676,0.751374304294586,0.392308562994003,0.631501257419586,0.676442503929138,0.378987669944763,0.561604201793671,0.714595556259155,0.417077600955963,0.476441770792007,0.764257490634918,0.434641927480698,0.371407568454742,0.823914527893066,0.428043335676193,0.561604201793671,0.714595556259155,0.417077600955963,0.569215655326843,0.757168114185333,0.320452690124512,0.67240047454834,0.673280417919159,0.307523727416992, +0.631501257419586,0.676442503929138,0.378987669944763,0.740318357944489,0.668422698974609,0.0716921985149384,0.774113655090332,0.611384272575378,0.164186373353004,0.694797694683075,0.69339507818222,0.190943077206612,0.694797694683075,0.69339507818222,0.190943077206612,0.67240047454834,0.673280417919159,0.307523727416992,0.624843657016754,0.738489627838135,0.253383755683899,-0.277956783771515,0.960026264190674,-0.0330077223479748,-0.297655403614044,0.947603464126587,-0.115969084203243,-0.334258258342743,0.941270470619202,-0.0477618277072906,-0.327125757932663,0.942834138870239,0.0636584088206291,-0.227079346776009,0.973808407783508,0.0114938067272305,-0.281123667955399,0.95934385061264,0.0250750575214624,-0.324928402900696,0.945726871490479,0.00470078736543655,-0.281123667955399,0.95934385061264,0.0250750575214624,-0.277956783771515,0.960026264190674,-0.0330077223479748,-0.315815269947052,0.940986812114716,0.121673434972763,-0.246141254901886,0.965832233428955,0.0811330080032349,-0.327125757932663,0.942834138870239,0.0636584088206291,-0.315815269947052,0.940986812114716,0.121673434972763,-0.21959362924099,0.967770338058472,0.123284861445427,-0.246141254901886,0.965832233428955,0.0811330080032349,0.106560327112675,0.990182816982269,0.0904589518904686,0.0622443780303001,0.997971832752228,0.0133332721889019,0.0555991940200329,0.997293829917908,0.0481004528701305,0.0699790418148041,0.990323603153229,0.119841456413269,0.0118720727041364,0.996349096298218,0.0845423638820648,0.0648589208722115,0.983692228794098,0.167758271098137,0.106560327112675,0.990182816982269,0.0904589518904686,0.0555991940200329,0.997293829917908,0.0481004528701305,0.0699790418148041,0.990323603153229,0.119841456413269,0.00753531837835908,0.98579329252243,0.167793437838554,-0.0602736473083496,0.993838131427765,0.0930201932787895,-0.0635147988796234,0.987681686878204,0.143005877733231,0.0648589208722115,0.983692228794098,0.167758271098137,0.0118720727041364,0.996349096298218,0.0845423638820648,0.00753531837835908,0.98579329252243,0.167793437838554,-0.0918019041419029,0.981686890125275,0.166922748088837, +-0.0635147988796234,0.987681686878204,0.143005877733231,-0.125159278512001,0.985474109649658,0.114785946905613,-0.21959362924099,0.967770338058472,0.123284861445427,-0.131832525134087,0.971439361572266,0.197295993566513,-0.125159278512001,0.985474109649658,0.114785946905613,0.0254585165530443,0.950948894023895,0.308298528194427,-0.0832415148615837,0.983401536941528,0.161220848560333,0.146395012736321,0.983099281787872,0.10992818325758,-0.286712288856506,0.925540924072266,0.247325137257576,-0.433952957391739,0.877756118774414,0.203049063682556,-0.221847623586655,0.96906453371048,0.108153782784939,-0.206228822469711,0.908302068710327,0.363946288824081,-0.286712288856506,0.925540924072266,0.247325137257576,-0.0832415148615837,0.983401536941528,0.161220848560333,0.0622443780303001,0.997971832752228,0.0133332721889019,0.106560327112675,0.990182816982269,0.0904589518904686,0.11984471231699,0.992126524448395,0.0363617539405823,0.186201572418213,0.97596275806427,0.113250315189362,0.163312301039696,0.98602432012558,0.0329391956329346,0.11984471231699,0.992126524448395,0.0363617539405823,0.248089879751205,0.967271864414215,0.0532577782869339,0.146395012736321,0.983099281787872,0.10992818325758,0.163312301039696,0.98602432012558,0.0329391956329346,-0.589625835418701,0.761332094669342,0.269656658172607,-0.533792614936829,0.841562926769257,0.0826870873570442,-0.433952957391739,0.877756118774414,0.203049063682556,-0.679566502571106,0.732906043529511,0.0322175547480583,-0.589625835418701,0.761332094669342,0.269656658172607,-0.731932520866394,0.679377675056458,0.0521593615412712,-0.679566502571106,0.732906043529511,0.0322175547480583,-0.731932520866394,0.679377675056458,0.0521593615412712,-0.723345994949341,0.651722729206085,-0.22809624671936,0.685121655464172,0.719395101070404,-0.114363513886929,0.6829714179039,0.685764849185944,-0.251548379659653,0.748039484024048,0.637404680252075,-0.184802740812302,0.831233382225037,0.554014801979065,0.0460272952914238,0.774113655090332,0.611384272575378,0.164186373353004,0.740318357944489,0.668422698974609,0.0716921985149384, +0.685121655464172,0.719395101070404,-0.114363513886929,0.748039484024048,0.637404680252075,-0.184802740812302,0.831233382225037,0.554014801979065,0.0460272952914238,-0.526836156845093,0.763889849185944,-0.372714012861252,-0.666253566741943,0.555219352245331,-0.497832804918289,-0.449537098407745,0.684517741203308,-0.573891639709473,-0.747530043125153,0.519581973552704,-0.413803517818451,-0.666253566741943,0.555219352245331,-0.497832804918289,-0.723345994949341,0.651722729206085,-0.22809624671936,-0.160410523414612,0.728954017162323,-0.665503025054932,-0.248039156198502,0.82061105966568,-0.514853239059448,-0.449537098407745,0.684517741203308,-0.573891639709473,0.126971155405045,0.872871398925781,0.47114086151123,-0.00351573736406863,0.876084446907043,0.482144773006439,0.26896134018898,0.84368896484375,0.464595019817352,-0.271856188774109,0.839541018009186,0.47038808465004,-0.00351573736406863,0.876084446907043,0.482144773006439,-0.11601384729147,0.872711658477783,0.474252015352249,0.390396118164063,0.80004757642746,0.45553782582283,0.26896134018898,0.84368896484375,0.464595019817352,0.476441770792007,0.764257490634918,0.434641927480698,0.663681983947754,0.643982172012329,0.380543053150177,0.561604201793671,0.714595556259155,0.417077600955963,0.631501257419586,0.676442503929138,0.378987669944763,0.561604201793671,0.714595556259155,0.417077600955963,0.604498505592346,0.685723006725311,0.405419945716858,0.476441770792007,0.764257490634918,0.434641927480698,0.723754644393921,0.600360512733459,0.340215057134628,0.631501257419586,0.676442503929138,0.378987669944763,0.67240047454834,0.673280417919159,0.307523727416992,0.694797694683075,0.69339507818222,0.190943077206612,0.774113655090332,0.611384272575378,0.164186373353004,0.765905499458313,0.58992475271225,0.255689978599548,0.694797694683075,0.69339507818222,0.190943077206612,0.765905499458313,0.58992475271225,0.255689978599548,0.67240047454834,0.673280417919159,0.307523727416992,-0.277956783771515,0.960026264190674,-0.0330077223479748,-0.334258258342743,0.941270470619202,-0.0477618277072906, +-0.324928402900696,0.945726871490479,0.00470078736543655,-0.324928402900696,0.945726871490479,0.00470078736543655,-0.327125757932663,0.942834138870239,0.0636584088206291,-0.281123667955399,0.95934385061264,0.0250750575214624,-0.327125757932663,0.942834138870239,0.0636584088206291,-0.386761456727982,0.909971535205841,0.149557262659073,-0.315815269947052,0.940986812114716,0.121673434972763,-0.21959362924099,0.967770338058472,0.123284861445427,-0.315815269947052,0.940986812114716,0.121673434972763,-0.328301697969437,0.928815007209778,0.171815678477287,0.127725839614868,0.97404271364212,0.186886996030808,0.0699790418148041,0.990323603153229,0.119841456413269,0.0648589208722115,0.983692228794098,0.167758271098137,0.106560327112675,0.990182816982269,0.0904589518904686,0.0699790418148041,0.990323603153229,0.119841456413269,0.127725839614868,0.97404271364212,0.186886996030808,0.00753531837835908,0.98579329252243,0.167793437838554,-0.0635147988796234,0.987681686878204,0.143005877733231,-0.0609910152852535,0.974968373775482,0.213814601302147,0.0648589208722115,0.983692228794098,0.167758271098137,0.00753531837835908,0.98579329252243,0.167793437838554,0.0805414617061615,0.969505965709686,0.231453955173492,-0.0918019041419029,0.981686890125275,0.166922748088837,-0.0609910152852535,0.974968373775482,0.213814601302147,-0.0635147988796234,0.987681686878204,0.143005877733231,-0.0918019041419029,0.981686890125275,0.166922748088837,-0.125159278512001,0.985474109649658,0.114785946905613,-0.131832525134087,0.971439361572266,0.197295993566513,-0.131832525134087,0.971439361572266,0.197295993566513,-0.21959362924099,0.967770338058472,0.123284861445427,-0.241778925061226,0.953291118144989,0.181049332022667,0.0254585165530443,0.950948894023895,0.308298528194427,-0.206228822469711,0.908302068710327,0.363946288824081,-0.0832415148615837,0.983401536941528,0.161220848560333,0.146395012736321,0.983099281787872,0.10992818325758,0.246797323226929,0.93962550163269,0.237054631114006,0.0254585165530443,0.950948894023895,0.308298528194427,-0.286712288856506,0.925540924072266,0.247325137257576, +-0.406894862651825,0.835706174373627,0.368824601173401,-0.433952957391739,0.877756118774414,0.203049063682556,-0.206228822469711,0.908302068710327,0.363946288824081,-0.406894862651825,0.835706174373627,0.368824601173401,-0.286712288856506,0.925540924072266,0.247325137257576,0.11984471231699,0.992126524448395,0.0363617539405823,0.106560327112675,0.990182816982269,0.0904589518904686,0.186201572418213,0.97596275806427,0.113250315189362,0.186201572418213,0.97596275806427,0.113250315189362,0.256928443908691,0.963822066783905,0.0709554255008698,0.163312301039696,0.98602432012558,0.0329391956329346,0.283867597579956,0.953420042991638,0.102026090025902,0.146395012736321,0.983099281787872,0.10992818325758,0.248089879751205,0.967271864414215,0.0532577782869339,0.163312301039696,0.98602432012558,0.0329391956329346,0.256928443908691,0.963822066783905,0.0709554255008698,0.248089879751205,0.967271864414215,0.0532577782869339,-0.433952957391739,0.877756118774414,0.203049063682556,-0.406894862651825,0.835706174373627,0.368824601173401,-0.589625835418701,0.761332094669342,0.269656658172607,-0.589625835418701,0.761332094669342,0.269656658172607,-0.633681535720825,0.74906462430954,0.193260654807091,-0.731932520866394,0.679377675056458,0.0521593615412712,-0.723345994949341,0.651722729206085,-0.22809624671936,-0.731932520866394,0.679377675056458,0.0521593615412712,-0.753865242004395,0.622160315513611,-0.211195543408394,0.774113655090332,0.611384272575378,0.164186373353004,0.831233382225037,0.554014801979065,0.0460272952914238,0.827482342720032,0.539750039577484,0.154734283685684,-0.545680463314056,0.508948564529419,-0.66573566198349,-0.449537098407745,0.684517741203308,-0.573891639709473,-0.666253566741943,0.555219352245331,-0.497832804918289,-0.666253566741943,0.555219352245331,-0.497832804918289,-0.747530043125153,0.519581973552704,-0.413803517818451,-0.750631332397461,0.404550731182098,-0.522389829158783,-0.723345994949341,0.651722729206085,-0.22809624671936,-0.753865242004395,0.622160315513611,-0.211195543408394,-0.747530043125153,0.519581973552704,-0.413803517818451, +-0.00351573736406863,0.876084446907043,0.482144773006439,0.126971155405045,0.872871398925781,0.47114086151123,-0.11601384729147,0.872711658477783,0.474252015352249,0.126971155405045,0.872871398925781,0.47114086151123,0.26896134018898,0.84368896484375,0.464595019817352,0.390396118164063,0.80004757642746,0.45553782582283,-0.330566346645355,0.827818274497986,0.453257769346237,-0.271856188774109,0.839541018009186,0.47038808465004,-0.11601384729147,0.872711658477783,0.474252015352249,0.390396118164063,0.80004757642746,0.45553782582283,0.476441770792007,0.764257490634918,0.434641927480698,0.56444650888443,0.717238545417786,0.408618211746216,0.561604201793671,0.714595556259155,0.417077600955963,0.663681983947754,0.643982172012329,0.380543053150177,0.604498505592346,0.685723006725311,0.405419945716858,0.663681983947754,0.643982172012329,0.380543053150177,0.631501257419586,0.676442503929138,0.378987669944763,0.712674856185913,0.587182581424713,0.383811116218567,0.604498505592346,0.685723006725311,0.405419945716858,0.56444650888443,0.717238545417786,0.408618211746216,0.476441770792007,0.764257490634918,0.434641927480698,0.712674856185913,0.587182581424713,0.383811116218567,0.631501257419586,0.676442503929138,0.378987669944763,0.723754644393921,0.600360512733459,0.340215057134628,0.723754644393921,0.600360512733459,0.340215057134628,0.67240047454834,0.673280417919159,0.307523727416992,0.765905499458313,0.58992475271225,0.255689978599548,0.765905499458313,0.58992475271225,0.255689978599548,0.774113655090332,0.611384272575378,0.164186373353004,0.827482342720032,0.539750039577484,0.154734283685684,-0.328301697969437,0.928815007209778,0.171815678477287,-0.315815269947052,0.940986812114716,0.121673434972763,-0.386761456727982,0.909971535205841,0.149557262659073,-0.21959362924099,0.967770338058472,0.123284861445427,-0.328301697969437,0.928815007209778,0.171815678477287,-0.241778925061226,0.953291118144989,0.181049332022667,0.127725839614868,0.97404271364212,0.186886996030808,0.0648589208722115,0.983692228794098,0.167758271098137,0.0805414617061615,0.969505965709686,0.231453955173492, +0.186201572418213,0.97596275806427,0.113250315189362,0.106560327112675,0.990182816982269,0.0904589518904686,0.127725839614868,0.97404271364212,0.186886996030808,-0.0609910152852535,0.974968373775482,0.213814601302147,0.00915193278342485,0.965999364852905,0.25838229060173,0.00753531837835908,0.98579329252243,0.167793437838554,0.00915193278342485,0.965999364852905,0.25838229060173,0.0805414617061615,0.969505965709686,0.231453955173492,0.00753531837835908,0.98579329252243,0.167793437838554,-0.131832525134087,0.971439361572266,0.197295993566513,-0.0609910152852535,0.974968373775482,0.213814601302147,-0.0918019041419029,0.981686890125275,0.166922748088837,-0.131832525134087,0.971439361572266,0.197295993566513,-0.241778925061226,0.953291118144989,0.181049332022667,-0.238091439008713,0.938219904899597,0.251109063625336,-0.206228822469711,0.908302068710327,0.363946288824081,0.0254585165530443,0.950948894023895,0.308298528194427,-0.102763593196869,0.86041533946991,0.499124199151993,0.283867597579956,0.953420042991638,0.102026090025902,0.246797323226929,0.93962550163269,0.237054631114006,0.146395012736321,0.983099281787872,0.10992818325758,0.246797323226929,0.93962550163269,0.237054631114006,0.175822988152504,0.880849659442902,0.439533978700638,0.0254585165530443,0.950948894023895,0.308298528194427,-0.206228822469711,0.908302068710327,0.363946288824081,-0.316236197948456,0.80233496427536,0.506214499473572,-0.406894862651825,0.835706174373627,0.368824601173401,0.186201572418213,0.97596275806427,0.113250315189362,0.236045375466347,0.964314699172974,0.119915395975113,0.256928443908691,0.963822066783905,0.0709554255008698,0.283867597579956,0.953420042991638,0.102026090025902,0.248089879751205,0.967271864414215,0.0532577782869339,0.315141260623932,0.947694599628448,0.0506051108241081,0.256928443908691,0.963822066783905,0.0709554255008698,0.315141260623932,0.947694599628448,0.0506051108241081,0.248089879751205,0.967271864414215,0.0532577782869339,-0.468492656946182,0.765876412391663,0.440395087003708,-0.589625835418701,0.761332094669342,0.269656658172607, +-0.406894862651825,0.835706174373627,0.368824601173401,-0.589625835418701,0.761332094669342,0.269656658172607,-0.51675009727478,0.765368163585663,0.383641451597214,-0.633681535720825,0.74906462430954,0.193260654807091,-0.68340790271759,0.72945648431778,-0.0290983617305756,-0.731932520866394,0.679377675056458,0.0521593615412712,-0.633681535720825,0.74906462430954,0.193260654807091,-0.68340790271759,0.72945648431778,-0.0290983617305756,-0.753865242004395,0.622160315513611,-0.211195543408394,-0.731932520866394,0.679377675056458,0.0521593615412712,0.831233382225037,0.554014801979065,0.0460272952914238,0.899106860160828,0.421982973814011,0.116349421441555,0.827482342720032,0.539750039577484,0.154734283685684,-0.666253566741943,0.555219352245331,-0.497832804918289,-0.649209976196289,0.372879147529602,-0.662938416004181,-0.545680463314056,0.508948564529419,-0.66573566198349,-0.746529042720795,0.607063472270966,-0.272338539361954,-0.750631332397461,0.404550731182098,-0.522389829158783,-0.747530043125153,0.519581973552704,-0.413803517818451,-0.666253566741943,0.555219352245331,-0.497832804918289,-0.750631332397461,0.404550731182098,-0.522389829158783,-0.649209976196289,0.372879147529602,-0.662938416004181,-0.746529042720795,0.607063472270966,-0.272338539361954,-0.747530043125153,0.519581973552704,-0.413803517818451,-0.753865242004395,0.622160315513611,-0.211195543408394,-0.11601384729147,0.872711658477783,0.474252015352249,0.126971155405045,0.872871398925781,0.47114086151123,-0.160849809646606,0.87466424703598,0.457263261079788,0.336141854524612,0.823432207107544,0.457130044698715,0.126971155405045,0.872871398925781,0.47114086151123,0.390396118164063,0.80004757642746,0.45553782582283,-0.11601384729147,0.872711658477783,0.474252015352249,-0.160849809646606,0.87466424703598,0.457263261079788,-0.330566346645355,0.827818274497986,0.453257769346237,0.56444650888443,0.717238545417786,0.408618211746216,0.505096316337585,0.742151081562042,0.440555691719055,0.390396118164063,0.80004757642746,0.45553782582283,0.604498505592346,0.685723006725311,0.405419945716858, +0.663681983947754,0.643982172012329,0.380543053150177,0.56444650888443,0.717238545417786,0.408618211746216,0.663681983947754,0.643982172012329,0.380543053150177,0.712674856185913,0.587182581424713,0.383811116218567,0.749521613121033,0.556763768196106,0.358093976974487,0.712674856185913,0.587182581424713,0.383811116218567,0.723754644393921,0.600360512733459,0.340215057134628,0.78470641374588,0.509037613868713,0.353717923164368,0.805216431617737,0.507887840270996,0.306065768003464,0.723754644393921,0.600360512733459,0.340215057134628,0.765905499458313,0.58992475271225,0.255689978599548,0.765905499458313,0.58992475271225,0.255689978599548,0.827482342720032,0.539750039577484,0.154734283685684,0.831363618373871,0.507734894752502,0.225919306278229,-0.386761456727982,0.909971535205841,0.149557262659073,-0.384335696697235,0.895751357078552,0.223417714238167,-0.328301697969437,0.928815007209778,0.171815678477287,-0.328301697969437,0.928815007209778,0.171815678477287,-0.312427312135696,0.924107730388641,0.220031648874283,-0.241778925061226,0.953291118144989,0.181049332022667,0.0805414617061615,0.969505965709686,0.231453955173492,0.132118299603462,0.948549449443817,0.287747502326965,0.127725839614868,0.97404271364212,0.186886996030808,0.186201572418213,0.97596275806427,0.113250315189362,0.127725839614868,0.97404271364212,0.186886996030808,0.240029871463776,0.946222484111786,0.216906979680061,-0.0685873851180077,0.953611969947815,0.293120831251144,0.00915193278342485,0.965999364852905,0.25838229060173,-0.0609910152852535,0.974968373775482,0.213814601302147,0.00915193278342485,0.965999364852905,0.25838229060173,0.0455286465585232,0.955208241939545,0.292410999536514,0.0805414617061615,0.969505965709686,0.231453955173492,-0.131832525134087,0.971439361572266,0.197295993566513,-0.0685873851180077,0.953611969947815,0.293120831251144,-0.0609910152852535,0.974968373775482,0.213814601302147,-0.238091439008713,0.938219904899597,0.251109063625336,-0.241778925061226,0.953291118144989,0.181049332022667,-0.312427312135696,0.924107730388641,0.220031648874283, +-0.238091439008713,0.938219904899597,0.251109063625336,-0.142181798815727,0.95288223028183,0.267954587936401,-0.131832525134087,0.971439361572266,0.197295993566513,-0.102763593196869,0.86041533946991,0.499124199151993,0.0254585165530443,0.950948894023895,0.308298528194427,0.175822988152504,0.880849659442902,0.439533978700638,-0.206228822469711,0.908302068710327,0.363946288824081,-0.102763593196869,0.86041533946991,0.499124199151993,-0.316236197948456,0.80233496427536,0.506214499473572,0.423523873090744,0.89539647102356,0.137450277805328,0.246797323226929,0.93962550163269,0.237054631114006,0.283867597579956,0.953420042991638,0.102026090025902,0.414090543985367,0.840113878250122,0.350339233875275,0.175822988152504,0.880849659442902,0.439533978700638,0.246797323226929,0.93962550163269,0.237054631114006,-0.316236197948456,0.80233496427536,0.506214499473572,-0.468492656946182,0.765876412391663,0.440395087003708,-0.406894862651825,0.835706174373627,0.368824601173401,0.186201572418213,0.97596275806427,0.113250315189362,0.296633422374725,0.942808270454407,0.152056530117989,0.236045375466347,0.964314699172974,0.119915395975113,0.236045375466347,0.964314699172974,0.119915395975113,0.296633422374725,0.942808270454407,0.152056530117989,0.256928443908691,0.963822066783905,0.0709554255008698,0.283867597579956,0.953420042991638,0.102026090025902,0.315141260623932,0.947694599628448,0.0506051108241081,0.423523873090744,0.89539647102356,0.137450277805328,0.400802761316299,0.91427880525589,0.058747798204422,0.315141260623932,0.947694599628448,0.0506051108241081,0.256928443908691,0.963822066783905,0.0709554255008698,-0.51675009727478,0.765368163585663,0.383641451597214,-0.589625835418701,0.761332094669342,0.269656658172607,-0.468492656946182,0.765876412391663,0.440395087003708,-0.51675009727478,0.765368163585663,0.383641451597214,-0.585017263889313,0.780795037746429,0.219348475337029,-0.633681535720825,0.74906462430954,0.193260654807091,-0.68340790271759,0.72945648431778,-0.0290983617305756,-0.633681535720825,0.74906462430954,0.193260654807091, +-0.585017263889313,0.780795037746429,0.219348475337029,-0.68340790271759,0.72945648431778,-0.0290983617305756,-0.746529042720795,0.607063472270966,-0.272338539361954,-0.753865242004395,0.622160315513611,-0.211195543408394,0.827482342720032,0.539750039577484,0.154734283685684,0.899106860160828,0.421982973814011,0.116349421441555,0.831363618373871,0.507734894752502,0.225919306278229,-0.776183247566223,0.533254384994507,-0.336420863866806,-0.750631332397461,0.404550731182098,-0.522389829158783,-0.746529042720795,0.607063472270966,-0.272338539361954,-0.750631332397461,0.404550731182098,-0.522389829158783,-0.693003118038177,0.275843530893326,-0.666075706481934,-0.649209976196289,0.372879147529602,-0.662938416004181,0.126971155405045,0.872871398925781,0.47114086151123,-0.00927667506039143,0.893964827060699,0.448040992021561,-0.160849809646606,0.87466424703598,0.457263261079788,0.126971155405045,0.872871398925781,0.47114086151123,0.336141854524612,0.823432207107544,0.457130044698715,0.200547784566879,0.871106803417206,0.448278248310089,0.390396118164063,0.80004757642746,0.45553782582283,0.505096316337585,0.742151081562042,0.440555691719055,0.336141854524612,0.823432207107544,0.457130044698715,-0.390920788049698,0.817485928535461,0.422962993383408,-0.330566346645355,0.827818274497986,0.453257769346237,-0.160849809646606,0.87466424703598,0.457263261079788,0.56444650888443,0.717238545417786,0.408618211746216,0.611018359661102,0.677554368972778,0.409361094236374,0.505096316337585,0.742151081562042,0.440555691719055,0.652943909168243,0.656075656414032,0.378455847501755,0.56444650888443,0.717238545417786,0.408618211746216,0.663681983947754,0.643982172012329,0.380543053150177,0.749521613121033,0.556763768196106,0.358093976974487,0.712674856185913,0.587182581424713,0.383811116218567,0.78470641374588,0.509037613868713,0.353717923164368,0.728707492351532,0.596628785133362,0.336183488368988,0.663681983947754,0.643982172012329,0.380543053150177,0.749521613121033,0.556763768196106,0.358093976974487,0.805216431617737,0.507887840270996,0.306065768003464, +0.78470641374588,0.509037613868713,0.353717923164368,0.723754644393921,0.600360512733459,0.340215057134628,0.765905499458313,0.58992475271225,0.255689978599548,0.831363618373871,0.507734894752502,0.225919306278229,0.805216431617737,0.507887840270996,0.306065768003464,-0.384335696697235,0.895751357078552,0.223417714238167,-0.386761456727982,0.909971535205841,0.149557262659073,-0.47488859295845,0.854191780090332,0.211747720837593,-0.384335696697235,0.895751357078552,0.223417714238167,-0.312427312135696,0.924107730388641,0.220031648874283,-0.328301697969437,0.928815007209778,0.171815678477287,0.0455286465585232,0.955208241939545,0.292410999536514,0.132118299603462,0.948549449443817,0.287747502326965,0.0805414617061615,0.969505965709686,0.231453955173492,0.127725839614868,0.97404271364212,0.186886996030808,0.132118299603462,0.948549449443817,0.287747502326965,0.17295815050602,0.954431116580963,0.243200927972794,0.240029871463776,0.946222484111786,0.216906979680061,0.127725839614868,0.97404271364212,0.186886996030808,0.17295815050602,0.954431116580963,0.243200927972794,0.186201572418213,0.97596275806427,0.113250315189362,0.240029871463776,0.946222484111786,0.216906979680061,0.296633422374725,0.942808270454407,0.152056530117989,0.0124405659735203,0.942123353481293,0.335035353899002,0.00915193278342485,0.965999364852905,0.25838229060173,-0.0685873851180077,0.953611969947815,0.293120831251144,0.0452889055013657,0.947264969348907,0.317234843969345,0.0455286465585232,0.955208241939545,0.292410999536514,0.00915193278342485,0.965999364852905,0.25838229060173,-0.131832525134087,0.971439361572266,0.197295993566513,-0.142181798815727,0.95288223028183,0.267954587936401,-0.0685873851180077,0.953611969947815,0.293120831251144,-0.332358658313751,0.905089437961578,0.265237092971802,-0.238091439008713,0.938219904899597,0.251109063625336,-0.312427312135696,0.924107730388641,0.220031648874283,-0.238091439008713,0.938219904899597,0.251109063625336,-0.196796864271164,0.928145945072174,0.315936774015427,-0.142181798815727,0.95288223028183,0.267954587936401, +0.0615507550537586,0.786284863948822,0.614790678024292,-0.102763593196869,0.86041533946991,0.499124199151993,0.175822988152504,0.880849659442902,0.439533978700638,-0.178909987211227,0.755734980106354,0.6299649477005,-0.316236197948456,0.80233496427536,0.506214499473572,-0.102763593196869,0.86041533946991,0.499124199151993,0.423523873090744,0.89539647102356,0.137450277805328,0.414090543985367,0.840113878250122,0.350339233875275,0.246797323226929,0.93962550163269,0.237054631114006,0.414090543985367,0.840113878250122,0.350339233875275,0.352027088403702,0.751341104507446,0.558178603649139,0.175822988152504,0.880849659442902,0.439533978700638,-0.316236197948456,0.80233496427536,0.506214499473572,-0.371115833520889,0.753432333469391,0.542782247066498,-0.468492656946182,0.765876412391663,0.440395087003708,0.256928443908691,0.963822066783905,0.0709554255008698,0.296633422374725,0.942808270454407,0.152056530117989,0.412384271621704,0.904653489589691,0.107429757714272,0.400802761316299,0.91427880525589,0.058747798204422,0.423523873090744,0.89539647102356,0.137450277805328,0.315141260623932,0.947694599628448,0.0506051108241081,0.400802761316299,0.91427880525589,0.058747798204422,0.256928443908691,0.963822066783905,0.0709554255008698,0.412384271621704,0.904653489589691,0.107429757714272,-0.51675009727478,0.765368163585663,0.383641451597214,-0.468492656946182,0.765876412391663,0.440395087003708,-0.371115833520889,0.753432333469391,0.542782247066498,-0.452004313468933,0.771512627601624,0.447727888822556,-0.585017263889313,0.780795037746429,0.219348475337029,-0.51675009727478,0.765368163585663,0.383641451597214,-0.68340790271759,0.72945648431778,-0.0290983617305756,-0.585017263889313,0.780795037746429,0.219348475337029,-0.680832028388977,0.732434332370758,0.00274606212042272,-0.68340790271759,0.72945648431778,-0.0290983617305756,-0.680832028388977,0.732434332370758,0.00274606212042272,-0.746529042720795,0.607063472270966,-0.272338539361954,0.872471988201141,0.428458124399185,0.234981194138527,0.831363618373871,0.507734894752502,0.225919306278229, +0.899106860160828,0.421982973814011,0.116349421441555,-0.766865074634552,0.464047014713287,-0.443371415138245,-0.750631332397461,0.404550731182098,-0.522389829158783,-0.776183247566223,0.533254384994507,-0.336420863866806,-0.776183247566223,0.533254384994507,-0.336420863866806,-0.746529042720795,0.607063472270966,-0.272338539361954,-0.720622062683105,0.682523369789124,-0.121924221515656,-0.750631332397461,0.404550731182098,-0.522389829158783,-0.747297346591949,0.340000540018082,-0.570916891098022,-0.693003118038177,0.275843530893326,-0.666075706481934,0.126971155405045,0.872871398925781,0.47114086151123,0.200547784566879,0.871106803417206,0.448278248310089,-0.00927667506039143,0.893964827060699,0.448040992021561,-0.225755333900452,0.870906412601471,0.436527609825134,-0.160849809646606,0.87466424703598,0.457263261079788,-0.00927667506039143,0.893964827060699,0.448040992021561,0.40284988284111,0.813345849514008,0.419738441705704,0.200547784566879,0.871106803417206,0.448278248310089,0.336141854524612,0.823432207107544,0.457130044698715,0.516729414463043,0.740926206111908,0.428974270820618,0.336141854524612,0.823432207107544,0.457130044698715,0.505096316337585,0.742151081562042,0.440555691719055,-0.225755333900452,0.870906412601471,0.436527609825134,-0.390920788049698,0.817485928535461,0.422962993383408,-0.160849809646606,0.87466424703598,0.457263261079788,0.611018359661102,0.677554368972778,0.409361094236374,0.56444650888443,0.717238545417786,0.408618211746216,0.652943909168243,0.656075656414032,0.378455847501755,0.505096316337585,0.742151081562042,0.440555691719055,0.611018359661102,0.677554368972778,0.409361094236374,0.609616696834564,0.668630480766296,0.425794094800949,0.663681983947754,0.643982172012329,0.380543053150177,0.728707492351532,0.596628785133362,0.336183488368988,0.652943909168243,0.656075656414032,0.378455847501755,0.816699147224426,0.478557586669922,0.322467058897018,0.749521613121033,0.556763768196106,0.358093976974487,0.78470641374588,0.509037613868713,0.353717923164368,0.816699147224426,0.478557586669922,0.322467058897018, +0.728707492351532,0.596628785133362,0.336183488368988,0.749521613121033,0.556763768196106,0.358093976974487,0.805216431617737,0.507887840270996,0.306065768003464,0.8530433177948,0.423667848110199,0.304668068885803,0.78470641374588,0.509037613868713,0.353717923164368,0.872471988201141,0.428458124399185,0.234981194138527,0.805216431617737,0.507887840270996,0.306065768003464,0.831363618373871,0.507734894752502,0.225919306278229,-0.47488859295845,0.854191780090332,0.211747720837593,-0.456569045782089,0.841997385025024,0.287376046180725,-0.384335696697235,0.895751357078552,0.223417714238167,-0.384335696697235,0.895751357078552,0.223417714238167,-0.332358658313751,0.905089437961578,0.265237092971802,-0.312427312135696,0.924107730388641,0.220031648874283,0.0455286465585232,0.955208241939545,0.292410999536514,0.0815758481621742,0.944970607757568,0.316821426153183,0.132118299603462,0.948549449443817,0.287747502326965,0.0124405659735203,0.942123353481293,0.335035353899002,0.0452889055013657,0.947264969348907,0.317234843969345,0.00915193278342485,0.965999364852905,0.25838229060173,-0.0685873851180077,0.953611969947815,0.293120831251144,-0.0399769321084023,0.918779075145721,0.39274263381958,0.0124405659735203,0.942123353481293,0.335035353899002,0.0455286465585232,0.955208241939545,0.292410999536514,0.0452889055013657,0.947264969348907,0.317234843969345,0.0370180159807205,0.944538235664368,0.326308369636536,-0.0685873851180077,0.953611969947815,0.293120831251144,-0.142181798815727,0.95288223028183,0.267954587936401,-0.119040869176388,0.931482434272766,0.343758255243301,-0.332358658313751,0.905089437961578,0.265237092971802,-0.280761659145355,0.907453596591949,0.312570810317993,-0.238091439008713,0.938219904899597,0.251109063625336,-0.196796864271164,0.928145945072174,0.315936774015427,-0.238091439008713,0.938219904899597,0.251109063625336,-0.280761659145355,0.907453596591949,0.312570810317993,-0.142181798815727,0.95288223028183,0.267954587936401,-0.196796864271164,0.928145945072174,0.315936774015427,-0.119040869176388,0.931482434272766,0.343758255243301, +0.0615507550537586,0.786284863948822,0.614790678024292,-0.178909987211227,0.755734980106354,0.6299649477005,-0.102763593196869,0.86041533946991,0.499124199151993,0.0615507550537586,0.786284863948822,0.614790678024292,0.175822988152504,0.880849659442902,0.439533978700638,0.352027088403702,0.751341104507446,0.558178603649139,-0.178909987211227,0.755734980106354,0.6299649477005,-0.371115833520889,0.753432333469391,0.542782247066498,-0.316236197948456,0.80233496427536,0.506214499473572,0.589521050453186,0.756693363189697,0.282630413770676,0.414090543985367,0.840113878250122,0.350339233875275,0.423523873090744,0.89539647102356,0.137450277805328,0.352027088403702,0.751341104507446,0.558178603649139,0.414090543985367,0.840113878250122,0.350339233875275,0.485381722450256,0.775485813617706,0.403765141963959,0.423523873090744,0.89539647102356,0.137450277805328,0.400802761316299,0.91427880525589,0.058747798204422,0.564694344997406,0.819302439689636,0.0993159338831902,0.412384271621704,0.904653489589691,0.107429757714272,0.502258479595184,0.862272143363953,0.0649860948324203,0.400802761316299,0.91427880525589,0.058747798204422,-0.452004313468933,0.771512627601624,0.447727888822556,-0.51675009727478,0.765368163585663,0.383641451597214,-0.371115833520889,0.753432333469391,0.542782247066498,-0.531592845916748,0.794857501983643,0.292592853307724,-0.585017263889313,0.780795037746429,0.219348475337029,-0.452004313468933,0.771512627601624,0.447727888822556,-0.625558972358704,0.77270781993866,0.107696421444416,-0.680832028388977,0.732434332370758,0.00274606212042272,-0.585017263889313,0.780795037746429,0.219348475337029,-0.680832028388977,0.732434332370758,0.00274606212042272,-0.720622062683105,0.682523369789124,-0.121924221515656,-0.746529042720795,0.607063472270966,-0.272338539361954,-0.750631332397461,0.404550731182098,-0.522389829158783,-0.766865074634552,0.464047014713287,-0.443371415138245,-0.747297346591949,0.340000540018082,-0.570916891098022,-0.766865074634552,0.464047014713287,-0.443371415138245,-0.776183247566223,0.533254384994507,-0.336420863866806, +-0.744646847248077,0.635796189308167,-0.203135594725609,-0.744646847248077,0.635796189308167,-0.203135594725609,-0.776183247566223,0.533254384994507,-0.336420863866806,-0.720622062683105,0.682523369789124,-0.121924221515656,-0.684755086898804,0.232766196131706,-0.690601348876953,-0.693003118038177,0.275843530893326,-0.666075706481934,-0.747297346591949,0.340000540018082,-0.570916891098022,0.200547784566879,0.871106803417206,0.448278248310089,0.140000775456429,0.8920978307724,0.42960587143898,-0.00927667506039143,0.893964827060699,0.448040992021561,-0.00927667506039143,0.893964827060699,0.448040992021561,-0.131261244416237,0.898248374462128,0.419428408145905,-0.225755333900452,0.870906412601471,0.436527609825134,0.282035499811172,0.860876023769379,0.423495352268219,0.200547784566879,0.871106803417206,0.448278248310089,0.40284988284111,0.813345849514008,0.419738441705704,0.40284988284111,0.813345849514008,0.419738441705704,0.336141854524612,0.823432207107544,0.457130044698715,0.516729414463043,0.740926206111908,0.428974270820618,0.516729414463043,0.740926206111908,0.428974270820618,0.505096316337585,0.742151081562042,0.440555691719055,0.609616696834564,0.668630480766296,0.425794094800949,-0.225755333900452,0.870906412601471,0.436527609825134,-0.34477636218071,0.844029068946838,0.410784691572189,-0.390920788049698,0.817485928535461,0.422962993383408,0.680645763874054,0.622765839099884,0.385854780673981,0.611018359661102,0.677554368972778,0.409361094236374,0.652943909168243,0.656075656414032,0.378455847501755,0.609616696834564,0.668630480766296,0.425794094800949,0.611018359661102,0.677554368972778,0.409361094236374,0.680645763874054,0.622765839099884,0.385854780673981,0.652943909168243,0.656075656414032,0.378455847501755,0.728707492351532,0.596628785133362,0.336183488368988,0.680645763874054,0.622765839099884,0.385854780673981,0.816699147224426,0.478557586669922,0.322467058897018,0.78470641374588,0.509037613868713,0.353717923164368,0.8530433177948,0.423667848110199,0.304668068885803,0.728707492351532,0.596628785133362,0.336183488368988, +0.816699147224426,0.478557586669922,0.322467058897018,0.813469469547272,0.492053896188736,0.310081034898758,0.805216431617737,0.507887840270996,0.306065768003464,0.872471988201141,0.428458124399185,0.234981194138527,0.8530433177948,0.423667848110199,0.304668068885803,-0.47488859295845,0.854191780090332,0.211747720837593,-0.562416851520538,0.768422424793243,0.3053098320961,-0.456569045782089,0.841997385025024,0.287376046180725,-0.456569045782089,0.841997385025024,0.287376046180725,-0.402364999055862,0.867863774299622,0.291401356458664,-0.384335696697235,0.895751357078552,0.223417714238167,-0.384335696697235,0.895751357078552,0.223417714238167,-0.402364999055862,0.867863774299622,0.291401356458664,-0.332358658313751,0.905089437961578,0.265237092971802,0.0455286465585232,0.955208241939545,0.292410999536514,0.0210793167352676,0.934243619441986,0.356011837720871,0.0815758481621742,0.944970607757568,0.316821426153183,0.0124405659735203,0.942123353481293,0.335035353899002,0.0370180159807205,0.944538235664368,0.326308369636536,0.0452889055013657,0.947264969348907,0.317234843969345,-0.0737321674823761,0.927636742591858,0.366133213043213,-0.0399769321084023,0.918779075145721,0.39274263381958,-0.0685873851180077,0.953611969947815,0.293120831251144,-0.0399769321084023,0.918779075145721,0.39274263381958,0.00504047749564052,0.912324905395508,0.409435838460922,0.0124405659735203,0.942123353481293,0.335035353899002,0.00099968898575753,0.944439470767975,0.328683614730835,0.0455286465585232,0.955208241939545,0.292410999536514,0.0370180159807205,0.944538235664368,0.326308369636536,-0.0737321674823761,0.927636742591858,0.366133213043213,-0.0685873851180077,0.953611969947815,0.293120831251144,-0.119040869176388,0.931482434272766,0.343758255243301,-0.332358658313751,0.905089437961578,0.265237092971802,-0.356675505638123,0.881681382656097,0.308902084827423,-0.280761659145355,0.907453596591949,0.312570810317993,-0.196796864271164,0.928145945072174,0.315936774015427,-0.280761659145355,0.907453596591949,0.312570810317993,-0.243454650044441,0.89489209651947,0.374029159545898, +-0.196796864271164,0.928145945072174,0.315936774015427,-0.163400262594223,0.903527617454529,0.396154075860977,-0.119040869176388,0.931482434272766,0.343758255243301,0.0615507550537586,0.786284863948822,0.614790678024292,-0.00710782175883651,0.699150860309601,0.714938759803772,-0.178909987211227,0.755734980106354,0.6299649477005,0.200045228004456,0.685127973556519,0.700415134429932,0.0615507550537586,0.786284863948822,0.614790678024292,0.352027088403702,0.751341104507446,0.558178603649139,-0.230970978736877,0.712756633758545,0.662291646003723,-0.371115833520889,0.753432333469391,0.542782247066498,-0.178909987211227,0.755734980106354,0.6299649477005,0.589521050453186,0.756693363189697,0.282630413770676,0.485381722450256,0.775485813617706,0.403765141963959,0.414090543985367,0.840113878250122,0.350339233875275,0.423523873090744,0.89539647102356,0.137450277805328,0.564694344997406,0.819302439689636,0.0993159338831902,0.589521050453186,0.756693363189697,0.282630413770676,0.565264761447906,0.667678415775299,0.484439015388489,0.352027088403702,0.751341104507446,0.558178603649139,0.485381722450256,0.775485813617706,0.403765141963959,0.564694344997406,0.819302439689636,0.0993159338831902,0.400802761316299,0.91427880525589,0.058747798204422,0.502258479595184,0.862272143363953,0.0649860948324203,0.412384271621704,0.904653489589691,0.107429757714272,0.562582015991211,0.822545289993286,0.0831891745328903,0.502258479595184,0.862272143363953,0.0649860948324203,-0.371115833520889,0.753432333469391,0.542782247066498,-0.303604960441589,0.718661367893219,0.625579476356506,-0.452004313468933,0.771512627601624,0.447727888822556,-0.625558972358704,0.77270781993866,0.107696421444416,-0.585017263889313,0.780795037746429,0.219348475337029,-0.531592845916748,0.794857501983643,0.292592853307724,-0.506270945072174,0.78833395242691,0.349598348140717,-0.531592845916748,0.794857501983643,0.292592853307724,-0.452004313468933,0.771512627601624,0.447727888822556,-0.680832028388977,0.732434332370758,0.00274606212042272,-0.625558972358704,0.77270781993866,0.107696421444416, +-0.720622062683105,0.682523369789124,-0.121924221515656,-0.771622538566589,0.535571694374084,-0.343164056539536,-0.747297346591949,0.340000540018082,-0.570916891098022,-0.766865074634552,0.464047014713287,-0.443371415138245,-0.771622538566589,0.535571694374084,-0.343164056539536,-0.766865074634552,0.464047014713287,-0.443371415138245,-0.744646847248077,0.635796189308167,-0.203135594725609,-0.744646847248077,0.635796189308167,-0.203135594725609,-0.720622062683105,0.682523369789124,-0.121924221515656,-0.625558972358704,0.77270781993866,0.107696421444416,-0.747297346591949,0.340000540018082,-0.570916891098022,-0.717185020446777,0.308430403470993,-0.624912917613983,-0.684755086898804,0.232766196131706,-0.690601348876953,0.282035499811172,0.860876023769379,0.423495352268219,0.140000775456429,0.8920978307724,0.42960587143898,0.200547784566879,0.871106803417206,0.448278248310089,-0.00927667506039143,0.893964827060699,0.448040992021561,0.140000775456429,0.8920978307724,0.42960587143898,-0.131261244416237,0.898248374462128,0.419428408145905,-0.225755333900452,0.870906412601471,0.436527609825134,-0.131261244416237,0.898248374462128,0.419428408145905,-0.34477636218071,0.844029068946838,0.410784691572189,0.40284988284111,0.813345849514008,0.419738441705704,0.425497531890869,0.825517654418945,0.370772540569305,0.282035499811172,0.860876023769379,0.423495352268219,0.516729414463043,0.740926206111908,0.428974270820618,0.585967361927032,0.712411463260651,0.386150181293488,0.40284988284111,0.813345849514008,0.419738441705704,0.516729414463043,0.740926206111908,0.428974270820618,0.609616696834564,0.668630480766296,0.425794094800949,0.656721949577332,0.643489122390747,0.39324015378952,0.656721949577332,0.643489122390747,0.39324015378952,0.609616696834564,0.668630480766296,0.425794094800949,0.680645763874054,0.622765839099884,0.385854780673981,0.740961253643036,0.571200609207153,0.353137522935867,0.680645763874054,0.622765839099884,0.385854780673981,0.728707492351532,0.596628785133362,0.336183488368988,0.813469469547272,0.492053896188736,0.310081034898758, +0.740961253643036,0.571200609207153,0.353137522935867,0.728707492351532,0.596628785133362,0.336183488368988,-0.508468925952911,0.789303302764893,0.344179391860962,-0.456569045782089,0.841997385025024,0.287376046180725,-0.562416851520538,0.768422424793243,0.3053098320961,-0.508468925952911,0.789303302764893,0.344179391860962,-0.402364999055862,0.867863774299622,0.291401356458664,-0.456569045782089,0.841997385025024,0.287376046180725,-0.332358658313751,0.905089437961578,0.265237092971802,-0.402364999055862,0.867863774299622,0.291401356458664,-0.356675505638123,0.881681382656097,0.308902084827423,-0.00165920460131019,0.942564904689789,0.334018737077713,0.0210793167352676,0.934243619441986,0.356011837720871,0.0455286465585232,0.955208241939545,0.292410999536514,0.0370180159807205,0.944538235664368,0.326308369636536,0.0124405659735203,0.942123353481293,0.335035353899002,0.0149575555697083,0.937722444534302,0.347063153982162,-0.0399769321084023,0.918779075145721,0.39274263381958,-0.0737321674823761,0.927636742591858,0.366133213043213,-0.0827180966734886,0.896940350532532,0.434345126152039,-0.0399769321084023,0.918779075145721,0.39274263381958,-0.0220568105578423,0.875001907348633,0.4836166203022,0.00504047749564052,0.912324905395508,0.409435838460922,0.00504047749564052,0.912324905395508,0.409435838460922,0.0149575555697083,0.937722444534302,0.347063153982162,0.0124405659735203,0.942123353481293,0.335035353899002,0.0455286465585232,0.955208241939545,0.292410999536514,0.00099968898575753,0.944439470767975,0.328683614730835,-0.00165920460131019,0.942564904689789,0.334018737077713,0.0149575555697083,0.937722444534302,0.347063153982162,0.00099968898575753,0.944439470767975,0.328683614730835,0.0370180159807205,0.944538235664368,0.326308369636536,-0.119040869176388,0.931482434272766,0.343758255243301,-0.0827180966734886,0.896940350532532,0.434345126152039,-0.0737321674823761,0.927636742591858,0.366133213043213,-0.280761659145355,0.907453596591949,0.312570810317993,-0.356675505638123,0.881681382656097,0.308902084827423,-0.326088964939117,0.869036853313446,0.372076332569122, +-0.326088964939117,0.869036853313446,0.372076332569122,-0.243454650044441,0.89489209651947,0.374029159545898,-0.280761659145355,0.907453596591949,0.312570810317993,-0.196796864271164,0.928145945072174,0.315936774015427,-0.243454650044441,0.89489209651947,0.374029159545898,-0.163400262594223,0.903527617454529,0.396154075860977,-0.163400262594223,0.903527617454529,0.396154075860977,-0.0827180966734886,0.896940350532532,0.434345126152039,-0.119040869176388,0.931482434272766,0.343758255243301,-0.00710782175883651,0.699150860309601,0.714938759803772,0.0615507550537586,0.786284863948822,0.614790678024292,0.200045228004456,0.685127973556519,0.700415134429932,-0.00710782175883651,0.699150860309601,0.714938759803772,-0.144438967108727,0.702415764331818,0.696957170963287,-0.178909987211227,0.755734980106354,0.6299649477005,0.352027088403702,0.751341104507446,0.558178603649139,0.403216242790222,0.575127720832825,0.711789727210999,0.200045228004456,0.685127973556519,0.700415134429932,-0.303604960441589,0.718661367893219,0.625579476356506,-0.371115833520889,0.753432333469391,0.542782247066498,-0.230970978736877,0.712756633758545,0.662291646003723,-0.230970978736877,0.712756633758545,0.662291646003723,-0.178909987211227,0.755734980106354,0.6299649477005,-0.144438967108727,0.702415764331818,0.696957170963287,0.485381722450256,0.775485813617706,0.403765141963959,0.589521050453186,0.756693363189697,0.282630413770676,0.568126499652863,0.732693731784821,0.374689400196075,0.728622317314148,0.667804062366486,0.152141824364662,0.589521050453186,0.756693363189697,0.282630413770676,0.564694344997406,0.819302439689636,0.0993159338831902,0.403216242790222,0.575127720832825,0.711789727210999,0.352027088403702,0.751341104507446,0.558178603649139,0.565264761447906,0.667678415775299,0.484439015388489,0.565264761447906,0.667678415775299,0.484439015388489,0.485381722450256,0.775485813617706,0.403765141963959,0.568126499652863,0.732693731784821,0.374689400196075,0.564694344997406,0.819302439689636,0.0993159338831902,0.502258479595184,0.862272143363953,0.0649860948324203, +0.655722379684448,0.750401079654694,0.0832246690988541,0.562582015991211,0.822545289993286,0.0831891745328903,0.655722379684448,0.750401079654694,0.0832246690988541,0.502258479595184,0.862272143363953,0.0649860948324203,-0.415074288845062,0.756134450435638,0.505938589572906,-0.452004313468933,0.771512627601624,0.447727888822556,-0.303604960441589,0.718661367893219,0.625579476356506,-0.506270945072174,0.78833395242691,0.349598348140717,-0.625558972358704,0.77270781993866,0.107696421444416,-0.531592845916748,0.794857501983643,0.292592853307724,-0.415074288845062,0.756134450435638,0.505938589572906,-0.506270945072174,0.78833395242691,0.349598348140717,-0.452004313468933,0.771512627601624,0.447727888822556,-0.749557852745056,0.457023978233337,-0.478844404220581,-0.747297346591949,0.340000540018082,-0.570916891098022,-0.771622538566589,0.535571694374084,-0.343164056539536,-0.771622538566589,0.535571694374084,-0.343164056539536,-0.744646847248077,0.635796189308167,-0.203135594725609,-0.711636543273926,0.698741257190704,-0.0730339512228966,-0.625558972358704,0.77270781993866,0.107696421444416,-0.711636543273926,0.698741257190704,-0.0730339512228966,-0.744646847248077,0.635796189308167,-0.203135594725609,-0.747297346591949,0.340000540018082,-0.570916891098022,-0.749557852745056,0.457023978233337,-0.478844404220581,-0.717185020446777,0.308430403470993,-0.624912917613983,-0.71440201997757,0.384066343307495,-0.584912478923798,-0.684755086898804,0.232766196131706,-0.690601348876953,-0.717185020446777,0.308430403470993,-0.624912917613983,0.28486368060112,0.870667159557343,0.400987833738327,0.140000775456429,0.8920978307724,0.42960587143898,0.282035499811172,0.860876023769379,0.423495352268219,0.140000775456429,0.8920978307724,0.42960587143898,0.0628877878189087,0.912785232067108,0.403569251298904,-0.131261244416237,0.898248374462128,0.419428408145905,-0.348508179187775,0.848460733890533,0.398316979408264,-0.34477636218071,0.844029068946838,0.410784691572189,-0.131261244416237,0.898248374462128,0.419428408145905,0.40284988284111,0.813345849514008,0.419738441705704, +0.534934163093567,0.760536730289459,0.368007034063339,0.425497531890869,0.825517654418945,0.370772540569305,0.282035499811172,0.860876023769379,0.423495352268219,0.425497531890869,0.825517654418945,0.370772540569305,0.28486368060112,0.870667159557343,0.400987833738327,0.516729414463043,0.740926206111908,0.428974270820618,0.656721949577332,0.643489122390747,0.39324015378952,0.585967361927032,0.712411463260651,0.386150181293488,0.40284988284111,0.813345849514008,0.419738441705704,0.585967361927032,0.712411463260651,0.386150181293488,0.534934163093567,0.760536730289459,0.368007034063339,0.656721949577332,0.643489122390747,0.39324015378952,0.680645763874054,0.622765839099884,0.385854780673981,0.740961253643036,0.571200609207153,0.353137522935867,0.740961253643036,0.571200609207153,0.353137522935867,0.813469469547272,0.492053896188736,0.310081034898758,0.773432850837708,0.546832025051117,0.320587426424026,-0.508468925952911,0.789303302764893,0.344179391860962,-0.562416851520538,0.768422424793243,0.3053098320961,-0.631599545478821,0.675979554653168,0.379649370908737,-0.41354101896286,0.840723216533661,0.349525600671768,-0.402364999055862,0.867863774299622,0.291401356458664,-0.508468925952911,0.789303302764893,0.344179391860962,-0.41354101896286,0.840723216533661,0.349525600671768,-0.356675505638123,0.881681382656097,0.308902084827423,-0.402364999055862,0.867863774299622,0.291401356458664,0.0210793167352676,0.934243619441986,0.356011837720871,-0.00165920460131019,0.942564904689789,0.334018737077713,0.0184278078377247,0.914194524288177,0.404856353998184,-0.0220568105578423,0.875001907348633,0.4836166203022,-0.0399769321084023,0.918779075145721,0.39274263381958,-0.0827180966734886,0.896940350532532,0.434345126152039,-0.0220568105578423,0.875001907348633,0.4836166203022,0.0462571904063225,0.858748018741608,0.51030570268631,0.00504047749564052,0.912324905395508,0.409435838460922,0.0184278078377247,0.914194524288177,0.404856353998184,0.0149575555697083,0.937722444534302,0.347063153982162,0.00504047749564052,0.912324905395508,0.409435838460922, +-0.00165920460131019,0.942564904689789,0.334018737077713,0.00099968898575753,0.944439470767975,0.328683614730835,0.0184278078377247,0.914194524288177,0.404856353998184,0.00099968898575753,0.944439470767975,0.328683614730835,0.0149575555697083,0.937722444534302,0.347063153982162,0.0184278078377247,0.914194524288177,0.404856353998184,-0.41354101896286,0.840723216533661,0.349525600671768,-0.326088964939117,0.869036853313446,0.372076332569122,-0.356675505638123,0.881681382656097,0.308902084827423,-0.326088964939117,0.869036853313446,0.372076332569122,-0.296371966600418,0.851617157459259,0.432332843542099,-0.243454650044441,0.89489209651947,0.374029159545898,-0.21868622303009,0.869014382362366,0.443835824728012,-0.163400262594223,0.903527617454529,0.396154075860977,-0.243454650044441,0.89489209651947,0.374029159545898,-0.163400262594223,0.903527617454529,0.396154075860977,-0.136990383267403,0.861192524433136,0.489470094442368,-0.0827180966734886,0.896940350532532,0.434345126152039,0.177898719906807,0.569624483585358,0.80242121219635,-0.00710782175883651,0.699150860309601,0.714938759803772,0.200045228004456,0.685127973556519,0.700415134429932,-0.00710782175883651,0.699150860309601,0.714938759803772,-0.103250041604042,0.65054452419281,0.752416849136353,-0.144438967108727,0.702415764331818,0.696957170963287,0.177898719906807,0.569624483585358,0.80242121219635,0.200045228004456,0.685127973556519,0.700415134429932,0.403216242790222,0.575127720832825,0.711789727210999,-0.230970978736877,0.712756633758545,0.662291646003723,-0.204632475972176,0.683543920516968,0.700637638568878,-0.303604960441589,0.718661367893219,0.625579476356506,-0.103250041604042,0.65054452419281,0.752416849136353,-0.230970978736877,0.712756633758545,0.662291646003723,-0.144438967108727,0.702415764331818,0.696957170963287,0.568126499652863,0.732693731784821,0.374689400196075,0.589521050453186,0.756693363189697,0.282630413770676,0.648679733276367,0.668572425842285,0.363628059625626,0.728622317314148,0.667804062366486,0.152141824364662,0.702343225479126,0.663754045963287,0.257185816764832, +0.589521050453186,0.756693363189697,0.282630413770676,0.655722379684448,0.750401079654694,0.0832246690988541,0.728622317314148,0.667804062366486,0.152141824364662,0.564694344997406,0.819302439689636,0.0993159338831902,0.565264761447906,0.667678415775299,0.484439015388489,0.568126499652863,0.732693731784821,0.374689400196075,0.648679733276367,0.668572425842285,0.363628059625626,-0.415074288845062,0.756134450435638,0.505938589572906,-0.303604960441589,0.718661367893219,0.625579476356506,-0.407414078712463,0.733083844184875,0.544611513614655,-0.625558972358704,0.77270781993866,0.107696421444416,-0.506270945072174,0.78833395242691,0.349598348140717,-0.572573006153107,0.777385354042053,0.260445773601532,-0.506270945072174,0.78833395242691,0.349598348140717,-0.415074288845062,0.756134450435638,0.505938589572906,-0.503086626529694,0.769778847694397,0.392866611480713,-0.771622538566589,0.535571694374084,-0.343164056539536,-0.734208405017853,0.623535692691803,-0.268590867519379,-0.749557852745056,0.457023978233337,-0.478844404220581,-0.771622538566589,0.535571694374084,-0.343164056539536,-0.711636543273926,0.698741257190704,-0.0730339512228966,-0.734208405017853,0.623535692691803,-0.268590867519379,-0.649244844913483,0.756180107593536,0.081685945391655,-0.711636543273926,0.698741257190704,-0.0730339512228966,-0.625558972358704,0.77270781993866,0.107696421444416,-0.71440201997757,0.384066343307495,-0.584912478923798,-0.717185020446777,0.308430403470993,-0.624912917613983,-0.749557852745056,0.457023978233337,-0.478844404220581,-0.710354268550873,0.295562565326691,-0.638779640197754,-0.684755086898804,0.232766196131706,-0.690601348876953,-0.71440201997757,0.384066343307495,-0.584912478923798,0.140000775456429,0.8920978307724,0.42960587143898,0.28486368060112,0.870667159557343,0.400987833738327,0.0628877878189087,0.912785232067108,0.403569251298904,-0.131261244416237,0.898248374462128,0.419428408145905,0.0628877878189087,0.912785232067108,0.403569251298904,-0.200770318508148,0.900176703929901,0.386488109827042,-0.131261244416237,0.898248374462128,0.419428408145905, +-0.200770318508148,0.900176703929901,0.386488109827042,-0.348508179187775,0.848460733890533,0.398316979408264,0.584873735904694,0.746033310890198,0.318365901708603,0.425497531890869,0.825517654418945,0.370772540569305,0.534934163093567,0.760536730289459,0.368007034063339,0.425497531890869,0.825517654418945,0.370772540569305,0.409736573696136,0.835191786289215,0.36683851480484,0.28486368060112,0.870667159557343,0.400987833738327,0.656721949577332,0.643489122390747,0.39324015378952,0.706528067588806,0.606877267360687,0.364030212163925,0.585967361927032,0.712411463260651,0.386150181293488,0.585967361927032,0.712411463260651,0.386150181293488,0.65792590379715,0.668955445289612,0.345878452062607,0.534934163093567,0.760536730289459,0.368007034063339,0.740961253643036,0.571200609207153,0.353137522935867,0.706528067588806,0.606877267360687,0.364030212163925,0.656721949577332,0.643489122390747,0.39324015378952,0.773432850837708,0.546832025051117,0.320587426424026,0.813469469547272,0.492053896188736,0.310081034898758,0.834587514400482,0.479792833328247,0.270670175552368,0.706528067588806,0.606877267360687,0.364030212163925,0.740961253643036,0.571200609207153,0.353137522935867,0.773432850837708,0.546832025051117,0.320587426424026,-0.631599545478821,0.675979554653168,0.379649370908737,-0.518918097019196,0.76610666513443,0.379215508699417,-0.508468925952911,0.789303302764893,0.344179391860962,-0.508468925952911,0.789303302764893,0.344179391860962,-0.518918097019196,0.76610666513443,0.379215508699417,-0.41354101896286,0.840723216533661,0.349525600671768,-0.0220568105578423,0.875001907348633,0.4836166203022,-0.0827180966734886,0.896940350532532,0.434345126152039,-0.0572907291352749,0.846901178359985,0.528654992580414,0.0462571904063225,0.858748018741608,0.51030570268631,-0.0220568105578423,0.875001907348633,0.4836166203022,0.0357358604669571,0.808654189109802,0.587197721004486,0.00504047749564052,0.912324905395508,0.409435838460922,0.0462571904063225,0.858748018741608,0.51030570268631,0.0184278078377247,0.914194524288177,0.404856353998184, +-0.41354101896286,0.840723216533661,0.349525600671768,-0.380710005760193,0.818871200084686,0.429545909166336,-0.326088964939117,0.869036853313446,0.372076332569122,-0.380710005760193,0.818871200084686,0.429545909166336,-0.296371966600418,0.851617157459259,0.432332843542099,-0.326088964939117,0.869036853313446,0.372076332569122,-0.21868622303009,0.869014382362366,0.443835824728012,-0.243454650044441,0.89489209651947,0.374029159545898,-0.296371966600418,0.851617157459259,0.432332843542099,-0.21868622303009,0.869014382362366,0.443835824728012,-0.136990383267403,0.861192524433136,0.489470094442368,-0.163400262594223,0.903527617454529,0.396154075860977,-0.0572907291352749,0.846901178359985,0.528654992580414,-0.0827180966734886,0.896940350532532,0.434345126152039,-0.136990383267403,0.861192524433136,0.489470094442368,-0.00710782175883651,0.699150860309601,0.714938759803772,0.177898719906807,0.569624483585358,0.80242121219635,-0.103250041604042,0.65054452419281,0.752416849136353,-0.230970978736877,0.712756633758545,0.662291646003723,-0.103250041604042,0.65054452419281,0.752416849136353,-0.204632475972176,0.683543920516968,0.700637638568878,-0.204632475972176,0.683543920516968,0.700637638568878,-0.122283548116684,0.634320259094238,0.763337671756744,-0.303604960441589,0.718661367893219,0.625579476356506,0.648679733276367,0.668572425842285,0.363628059625626,0.589521050453186,0.756693363189697,0.282630413770676,0.631123781204224,0.707494676113129,0.31801575422287,0.702343225479126,0.663754045963287,0.257185816764832,0.728622317314148,0.667804062366486,0.152141824364662,0.792878091335297,0.55015617609024,0.26205387711525,0.663009285926819,0.671489715576172,0.330938100814819,0.589521050453186,0.756693363189697,0.282630413770676,0.702343225479126,0.663754045963287,0.257185816764832,0.648679733276367,0.668572425842285,0.363628059625626,0.643102586269379,0.681853175163269,0.348561525344849,0.565264761447906,0.667678415775299,0.484439015388489,-0.303604960441589,0.718661367893219,0.625579476356506,-0.27138477563858,0.665755093097687,0.695068597793579, +-0.407414078712463,0.733083844184875,0.544611513614655,-0.415074288845062,0.756134450435638,0.505938589572906,-0.407414078712463,0.733083844184875,0.544611513614655,-0.503086626529694,0.769778847694397,0.392866611480713,-0.506270945072174,0.78833395242691,0.349598348140717,-0.503086626529694,0.769778847694397,0.392866611480713,-0.572573006153107,0.777385354042053,0.260445773601532,-0.625558972358704,0.77270781993866,0.107696421444416,-0.572573006153107,0.777385354042053,0.260445773601532,-0.649244844913483,0.756180107593536,0.081685945391655,-0.733263373374939,0.574238359928131,-0.36410841345787,-0.749557852745056,0.457023978233337,-0.478844404220581,-0.734208405017853,0.623535692691803,-0.268590867519379,-0.711636543273926,0.698741257190704,-0.0730339512228966,-0.69564026594162,0.706728458404541,-0.128916040062904,-0.734208405017853,0.623535692691803,-0.268590867519379,-0.711636543273926,0.698741257190704,-0.0730339512228966,-0.649244844913483,0.756180107593536,0.081685945391655,-0.69564026594162,0.706728458404541,-0.128916040062904,-0.71440201997757,0.384066343307495,-0.584912478923798,-0.749557852745056,0.457023978233337,-0.478844404220581,-0.733263373374939,0.574238359928131,-0.36410841345787,-0.684755086898804,0.232766196131706,-0.690601348876953,-0.710354268550873,0.295562565326691,-0.638779640197754,-0.656244695186615,0.167765647172928,-0.735661208629608,-0.71440201997757,0.384066343307495,-0.584912478923798,-0.736679971218109,0.481523275375366,-0.474803030490875,-0.710354268550873,0.295562565326691,-0.638779640197754,0.28486368060112,0.870667159557343,0.400987833738327,0.206814229488373,0.900929152965546,0.381515920162201,0.0628877878189087,0.912785232067108,0.403569251298904,-0.200770318508148,0.900176703929901,0.386488109827042,0.0628877878189087,0.912785232067108,0.403569251298904,-0.0257141757756472,0.928844511508942,0.369576275348663,-0.410857200622559,0.837581336498261,0.360074609518051,-0.348508179187775,0.848460733890533,0.398316979408264,-0.200770318508148,0.900176703929901,0.386488109827042,0.425497531890869,0.825517654418945,0.370772540569305, +0.584873735904694,0.746033310890198,0.318365901708603,0.525031328201294,0.784231781959534,0.330639481544495,0.584873735904694,0.746033310890198,0.318365901708603,0.534934163093567,0.760536730289459,0.368007034063339,0.65792590379715,0.668955445289612,0.345878452062607,0.425497531890869,0.825517654418945,0.370772540569305,0.525031328201294,0.784231781959534,0.330639481544495,0.409736573696136,0.835191786289215,0.36683851480484,0.370445489883423,0.851837635040283,0.370327740907669,0.28486368060112,0.870667159557343,0.400987833738327,0.409736573696136,0.835191786289215,0.36683851480484,0.585967361927032,0.712411463260651,0.386150181293488,0.706528067588806,0.606877267360687,0.364030212163925,0.65792590379715,0.668955445289612,0.345878452062607,0.834587514400482,0.479792833328247,0.270670175552368,0.757834613323212,0.601945221424103,0.251691490411758,0.773432850837708,0.546832025051117,0.320587426424026,0.739832520484924,0.594964683055878,0.314109563827515,0.706528067588806,0.606877267360687,0.364030212163925,0.773432850837708,0.546832025051117,0.320587426424026,-0.607724189758301,0.685403048992157,0.40111568570137,-0.518918097019196,0.76610666513443,0.379215508699417,-0.631599545478821,0.675979554653168,0.379649370908737,-0.434059888124466,0.801290690898895,0.411734193563461,-0.41354101896286,0.840723216533661,0.349525600671768,-0.518918097019196,0.76610666513443,0.379215508699417,0.0357358604669571,0.808654189109802,0.587197721004486,-0.0220568105578423,0.875001907348633,0.4836166203022,-0.0572907291352749,0.846901178359985,0.528654992580414,0.0462571904063225,0.858748018741608,0.51030570268631,0.0357358604669571,0.808654189109802,0.587197721004486,0.11349905282259,0.769034266471863,0.629050135612488,-0.434059888124466,0.801290690898895,0.411734193563461,-0.380710005760193,0.818871200084686,0.429545909166336,-0.41354101896286,0.840723216533661,0.349525600671768,-0.380710005760193,0.818871200084686,0.429545909166336,-0.34439817070961,0.814282596111298,0.46726182103157,-0.296371966600418,0.851617157459259,0.432332843542099, +-0.21868622303009,0.869014382362366,0.443835824728012,-0.296371966600418,0.851617157459259,0.432332843542099,-0.255912095308304,0.83516263961792,0.486839056015015,-0.136990383267403,0.861192524433136,0.489470094442368,-0.21868622303009,0.869014382362366,0.443835824728012,-0.255912095308304,0.83516263961792,0.486839056015015,-0.125539153814316,0.816528499126434,0.563490033149719,-0.0572907291352749,0.846901178359985,0.528654992580414,-0.136990383267403,0.861192524433136,0.489470094442368,0.070015549659729,0.537744641304016,0.840195417404175,-0.103250041604042,0.65054452419281,0.752416849136353,0.177898719906807,0.569624483585358,0.80242121219635,-0.103250041604042,0.65054452419281,0.752416849136353,-0.122283548116684,0.634320259094238,0.763337671756744,-0.204632475972176,0.683543920516968,0.700637638568878,-0.303604960441589,0.718661367893219,0.625579476356506,-0.122283548116684,0.634320259094238,0.763337671756744,-0.27138477563858,0.665755093097687,0.695068597793579,0.631123781204224,0.707494676113129,0.31801575422287,0.589521050453186,0.756693363189697,0.282630413770676,0.663009285926819,0.671489715576172,0.330938100814819,0.643102586269379,0.681853175163269,0.348561525344849,0.648679733276367,0.668572425842285,0.363628059625626,0.631123781204224,0.707494676113129,0.31801575422287,0.663009285926819,0.671489715576172,0.330938100814819,0.702343225479126,0.663754045963287,0.257185816764832,0.792878091335297,0.55015617609024,0.26205387711525,-0.407414078712463,0.733083844184875,0.544611513614655,-0.27138477563858,0.665755093097687,0.695068597793579,-0.364991903305054,0.712450742721558,0.599328637123108,-0.407414078712463,0.733083844184875,0.544611513614655,-0.45462641119957,0.772541880607605,0.443276107311249,-0.503086626529694,0.769778847694397,0.392866611480713,-0.503086626529694,0.769778847694397,0.392866611480713,-0.572954773902893,0.785195529460907,0.234926968812943,-0.572573006153107,0.777385354042053,0.260445773601532,-0.572954773902893,0.785195529460907,0.234926968812943,-0.649244844913483,0.756180107593536,0.081685945391655, +-0.572573006153107,0.777385354042053,0.260445773601532,-0.733263373374939,0.574238359928131,-0.36410841345787,-0.734208405017853,0.623535692691803,-0.268590867519379,-0.69564026594162,0.706728458404541,-0.128916040062904,-0.704932451248169,0.70012354850769,-0.113565295934677,-0.69564026594162,0.706728458404541,-0.128916040062904,-0.649244844913483,0.756180107593536,0.081685945391655,-0.71440201997757,0.384066343307495,-0.584912478923798,-0.733263373374939,0.574238359928131,-0.36410841345787,-0.736679971218109,0.481523275375366,-0.474803030490875,-0.656244695186615,0.167765647172928,-0.735661208629608,-0.710354268550873,0.295562565326691,-0.638779640197754,-0.672021389007568,0.235303074121475,-0.702153503894806,-0.744723618030548,0.425731688737869,-0.513944506645203,-0.710354268550873,0.295562565326691,-0.638779640197754,-0.736679971218109,0.481523275375366,-0.474803030490875,0.28486368060112,0.870667159557343,0.400987833738327,0.370445489883423,0.851837635040283,0.370327740907669,0.206814229488373,0.900929152965546,0.381515920162201,0.206814229488373,0.900929152965546,0.381515920162201,-0.0257141757756472,0.928844511508942,0.369576275348663,0.0628877878189087,0.912785232067108,0.403569251298904,-0.26441678404808,0.898087739944458,0.351456969976425,-0.200770318508148,0.900176703929901,0.386488109827042,-0.0257141757756472,0.928844511508942,0.369576275348663,-0.26441678404808,0.898087739944458,0.351456969976425,-0.410857200622559,0.837581336498261,0.360074609518051,-0.200770318508148,0.900176703929901,0.386488109827042,0.584873735904694,0.746033310890198,0.318365901708603,0.651388585567474,0.708035290241241,0.272724986076355,0.525031328201294,0.784231781959534,0.330639481544495,0.584873735904694,0.746033310890198,0.318365901708603,0.65792590379715,0.668955445289612,0.345878452062607,0.701638877391815,0.6561039686203,0.277903109788895,0.477895528078079,0.811493635177612,0.336293995380402,0.409736573696136,0.835191786289215,0.36683851480484,0.525031328201294,0.784231781959534,0.330639481544495,0.370445489883423,0.851837635040283,0.370327740907669, +0.409736573696136,0.835191786289215,0.36683851480484,0.477895528078079,0.811493635177612,0.336293995380402,0.739832520484924,0.594964683055878,0.314109563827515,0.65792590379715,0.668955445289612,0.345878452062607,0.706528067588806,0.606877267360687,0.364030212163925,0.757834613323212,0.601945221424103,0.251691490411758,0.834587514400482,0.479792833328247,0.270670175552368,0.856891870498657,0.481830984354019,0.18323515355587,0.739832520484924,0.594964683055878,0.314109563827515,0.773432850837708,0.546832025051117,0.320587426424026,0.757834613323212,0.601945221424103,0.251691490411758,-0.607724189758301,0.685403048992157,0.40111568570137,-0.502315402030945,0.74101585149765,0.445617079734802,-0.518918097019196,0.76610666513443,0.379215508699417,-0.607724189758301,0.685403048992157,0.40111568570137,-0.631599545478821,0.675979554653168,0.379649370908737,-0.710453391075134,0.573210060596466,0.40827202796936,-0.434059888124466,0.801290690898895,0.411734193563461,-0.518918097019196,0.76610666513443,0.379215508699417,-0.502315402030945,0.74101585149765,0.445617079734802,0.0357358604669571,0.808654189109802,0.587197721004486,-0.0572907291352749,0.846901178359985,0.528654992580414,-0.00917328894138336,0.803559899330139,0.595153033733368,0.11349905282259,0.769034266471863,0.629050135612488,0.0357358604669571,0.808654189109802,0.587197721004486,0.171767801046371,0.695141613483429,0.698049902915955,-0.434059888124466,0.801290690898895,0.411734193563461,-0.502315402030945,0.74101585149765,0.445617079734802,-0.380710005760193,0.818871200084686,0.429545909166336,-0.34439817070961,0.814282596111298,0.46726182103157,-0.380710005760193,0.818871200084686,0.429545909166336,-0.420775949954987,0.771332919597626,0.477486222982407,-0.34439817070961,0.814282596111298,0.46726182103157,-0.255912095308304,0.83516263961792,0.486839056015015,-0.296371966600418,0.851617157459259,0.432332843542099,-0.180099248886108,0.834104299545288,0.521377265453339,-0.136990383267403,0.861192524433136,0.489470094442368,-0.255912095308304,0.83516263961792,0.486839056015015, +-0.125539153814316,0.816528499126434,0.563490033149719,-0.0566790737211704,0.805033981800079,0.590514719486237,-0.0572907291352749,0.846901178359985,0.528654992580414,-0.136990383267403,0.861192524433136,0.489470094442368,-0.180099248886108,0.834104299545288,0.521377265453339,-0.125539153814316,0.816528499126434,0.563490033149719,-0.103250041604042,0.65054452419281,0.752416849136353,0.070015549659729,0.537744641304016,0.840195417404175,0.0103870760649443,0.565562665462494,0.824639797210693,-0.103250041604042,0.65054452419281,0.752416849136353,0.0103870760649443,0.565562665462494,0.824639797210693,-0.122283548116684,0.634320259094238,0.763337671756744,-0.0878424122929573,0.566415309906006,0.81942492723465,-0.27138477563858,0.665755093097687,0.695068597793579,-0.122283548116684,0.634320259094238,0.763337671756744,0.66301017999649,0.671490252017975,0.33093535900116,0.631123781204224,0.707494676113129,0.31801575422287,0.663009285926819,0.671489715576172,0.330938100814819,0.643102586269379,0.681853175163269,0.348561525344849,0.631123781204224,0.707494676113129,0.31801575422287,0.66301017999649,0.671490252017975,0.33093535900116,0.66301017999649,0.671490252017975,0.33093535900116,0.663009285926819,0.671489715576172,0.330938100814819,0.792878091335297,0.55015617609024,0.26205387711525,-0.27138477563858,0.665755093097687,0.695068597793579,-0.211153164505959,0.63484263420105,0.743228793144226,-0.364991903305054,0.712450742721558,0.599328637123108,-0.407414078712463,0.733083844184875,0.544611513614655,-0.364991903305054,0.712450742721558,0.599328637123108,-0.45462641119957,0.772541880607605,0.443276107311249,-0.503086626529694,0.769778847694397,0.392866611480713,-0.45462641119957,0.772541880607605,0.443276107311249,-0.572954773902893,0.785195529460907,0.234926968812943,-0.572954773902893,0.785195529460907,0.234926968812943,-0.685977935791016,0.726748824119568,0.0356402434408665,-0.649244844913483,0.756180107593536,0.081685945391655,-0.733263373374939,0.574238359928131,-0.36410841345787,-0.69564026594162,0.706728458404541,-0.128916040062904, +-0.723692715167999,0.636235415935516,-0.267344951629639,-0.704932451248169,0.70012354850769,-0.113565295934677,-0.723692715167999,0.636235415935516,-0.267344951629639,-0.69564026594162,0.706728458404541,-0.128916040062904,-0.704932451248169,0.70012354850769,-0.113565295934677,-0.649244844913483,0.756180107593536,0.081685945391655,-0.685977935791016,0.726748824119568,0.0356402434408665,-0.733263373374939,0.574238359928131,-0.36410841345787,-0.723692715167999,0.636235415935516,-0.267344951629639,-0.736679971218109,0.481523275375366,-0.474803030490875,-0.719912886619568,0.385700732469559,-0.577027022838593,-0.672021389007568,0.235303074121475,-0.702153503894806,-0.710354268550873,0.295562565326691,-0.638779640197754,-0.63151079416275,0.161138862371445,-0.758437991142273,-0.656244695186615,0.167765647172928,-0.735661208629608,-0.672021389007568,0.235303074121475,-0.702153503894806,-0.719912886619568,0.385700732469559,-0.577027022838593,-0.710354268550873,0.295562565326691,-0.638779640197754,-0.744723618030548,0.425731688737869,-0.513944506645203,-0.744723618030548,0.425731688737869,-0.513944506645203,-0.736679971218109,0.481523275375366,-0.474803030490875,-0.735906541347504,0.583010017871857,-0.344297617673874,0.339800775051117,0.877041697502136,0.339607506990433,0.206814229488373,0.900929152965546,0.381515920162201,0.370445489883423,0.851837635040283,0.370327740907669,0.120664469897747,0.930035948753357,0.34709233045578,-0.0257141757756472,0.928844511508942,0.369576275348663,0.206814229488373,0.900929152965546,0.381515920162201,-0.0933549478650093,0.941437005996704,0.324007898569107,-0.26441678404808,0.898087739944458,0.351456969976425,-0.0257141757756472,0.928844511508942,0.369576275348663,-0.456542074680328,0.822449326515198,0.339332163333893,-0.410857200622559,0.837581336498261,0.360074609518051,-0.26441678404808,0.898087739944458,0.351456969976425,0.584873735904694,0.746033310890198,0.318365901708603,0.701638877391815,0.6561039686203,0.277903109788895,0.651388585567474,0.708035290241241,0.272724986076355,0.651388585567474,0.708035290241241,0.272724986076355, +0.589702844619751,0.750986874103546,0.297101110219955,0.525031328201294,0.784231781959534,0.330639481544495,0.701638877391815,0.6561039686203,0.277903109788895,0.65792590379715,0.668955445289612,0.345878452062607,0.739832520484924,0.594964683055878,0.314109563827515,0.477895528078079,0.811493635177612,0.336293995380402,0.525031328201294,0.784231781959534,0.330639481544495,0.589702844619751,0.750986874103546,0.297101110219955,0.477895528078079,0.811493635177612,0.336293995380402,0.465856403112412,0.814514815807343,0.34575030207634,0.370445489883423,0.851837635040283,0.370327740907669,0.856891870498657,0.481830984354019,0.18323515355587,0.814760744571686,0.548341810703278,0.188377380371094,0.757834613323212,0.601945221424103,0.251691490411758,0.757834613323212,0.601945221424103,0.251691490411758,0.701638877391815,0.6561039686203,0.277903109788895,0.739832520484924,0.594964683055878,0.314109563827515,-0.607724189758301,0.685403048992157,0.40111568570137,-0.661540448665619,0.62185800075531,0.419114142656326,-0.502315402030945,0.74101585149765,0.445617079734802,-0.710453391075134,0.573210060596466,0.40827202796936,-0.661540448665619,0.62185800075531,0.419114142656326,-0.607724189758301,0.685403048992157,0.40111568570137,-0.00917328894138336,0.803559899330139,0.595153033733368,-0.0572907291352749,0.846901178359985,0.528654992580414,-0.0566790737211704,0.805033981800079,0.590514719486237,0.0357358604669571,0.808654189109802,0.587197721004486,-0.00917328894138336,0.803559899330139,0.595153033733368,0.0688415914773941,0.750557005405426,0.657209813594818,0.171767801046371,0.695141613483429,0.698049902915955,0.0357358604669571,0.808654189109802,0.587197721004486,0.0688415914773941,0.750557005405426,0.657209813594818,-0.380710005760193,0.818871200084686,0.429545909166336,-0.502315402030945,0.74101585149765,0.445617079734802,-0.420775949954987,0.771332919597626,0.477486222982407,-0.350852310657501,0.792908728122711,0.498194992542267,-0.34439817070961,0.814282596111298,0.46726182103157,-0.420775949954987,0.771332919597626,0.477486222982407, +-0.350852310657501,0.792908728122711,0.498194992542267,-0.255912095308304,0.83516263961792,0.486839056015015,-0.34439817070961,0.814282596111298,0.46726182103157,-0.244451001286507,0.809322655200958,0.534078896045685,-0.180099248886108,0.834104299545288,0.521377265453339,-0.255912095308304,0.83516263961792,0.486839056015015,-0.0566790737211704,0.805033981800079,0.590514719486237,-0.125539153814316,0.816528499126434,0.563490033149719,-0.10995526611805,0.763472318649292,0.636411547660828,-0.125539153814316,0.816528499126434,0.563490033149719,-0.180099248886108,0.834104299545288,0.521377265453339,-0.244451001286507,0.809322655200958,0.534078896045685,-0.211153164505959,0.63484263420105,0.743228793144226,-0.27138477563858,0.665755093097687,0.695068597793579,-0.0878424122929573,0.566415309906006,0.81942492723465,-0.345043480396271,0.744973540306091,0.570928394794464,-0.364991903305054,0.712450742721558,0.599328637123108,-0.211153164505959,0.63484263420105,0.743228793144226,-0.345043480396271,0.744973540306091,0.570928394794464,-0.45462641119957,0.772541880607605,0.443276107311249,-0.364991903305054,0.712450742721558,0.599328637123108,-0.45462641119957,0.772541880607605,0.443276107311249,-0.454120934009552,0.818123996257782,0.352770686149597,-0.572954773902893,0.785195529460907,0.234926968812943,-0.648440957069397,0.760834038257599,0.025604797527194,-0.685977935791016,0.726748824119568,0.0356402434408665,-0.572954773902893,0.785195529460907,0.234926968812943,-0.735906541347504,0.583010017871857,-0.344297617673874,-0.723692715167999,0.636235415935516,-0.267344951629639,-0.704932451248169,0.70012354850769,-0.113565295934677,-0.704932451248169,0.70012354850769,-0.113565295934677,-0.685977935791016,0.726748824119568,0.0356402434408665,-0.747195243835449,0.636458158493042,-0.191363915801048,-0.735906541347504,0.583010017871857,-0.344297617673874,-0.736679971218109,0.481523275375366,-0.474803030490875,-0.723692715167999,0.636235415935516,-0.267344951629639,-0.719912886619568,0.385700732469559,-0.577027022838593,-0.699513852596283,0.335512816905975,-0.630960643291473, +-0.672021389007568,0.235303074121475,-0.702153503894806,-0.605161845684052,0.0932225584983826,-0.790625393390656,-0.656244695186615,0.167765647172928,-0.735661208629608,-0.63151079416275,0.161138862371445,-0.758437991142273,-0.641756534576416,0.219540387392044,-0.734813213348389,-0.63151079416275,0.161138862371445,-0.758437991142273,-0.672021389007568,0.235303074121475,-0.702153503894806,-0.719912886619568,0.385700732469559,-0.577027022838593,-0.744723618030548,0.425731688737869,-0.513944506645203,-0.743501663208008,0.515210628509521,-0.426337003707886,-0.743501663208008,0.515210628509521,-0.426337003707886,-0.744723618030548,0.425731688737869,-0.513944506645203,-0.735906541347504,0.583010017871857,-0.344297617673874,0.120664469897747,0.930035948753357,0.34709233045578,0.206814229488373,0.900929152965546,0.381515920162201,0.339800775051117,0.877041697502136,0.339607506990433,0.370445489883423,0.851837635040283,0.370327740907669,0.454468876123428,0.827707409858704,0.329178035259247,0.339800775051117,0.877041697502136,0.339607506990433,0.120664469897747,0.930035948753357,0.34709233045578,-0.0933549478650093,0.941437005996704,0.324007898569107,-0.0257141757756472,0.928844511508942,0.369576275348663,-0.331681579351425,0.888959407806396,0.31581375002861,-0.26441678404808,0.898087739944458,0.351456969976425,-0.0933549478650093,0.941437005996704,0.324007898569107,-0.331681579351425,0.888959407806396,0.31581375002861,-0.456542074680328,0.822449326515198,0.339332163333893,-0.26441678404808,0.898087739944458,0.351456969976425,0.701638877391815,0.6561039686203,0.277903109788895,0.757834613323212,0.601945221424103,0.251691490411758,0.651388585567474,0.708035290241241,0.272724986076355,0.687060594558716,0.679798424243927,0.256557255983353,0.589702844619751,0.750986874103546,0.297101110219955,0.651388585567474,0.708035290241241,0.272724986076355,0.531353354454041,0.785781741142273,0.316560417413712,0.477895528078079,0.811493635177612,0.336293995380402,0.589702844619751,0.750986874103546,0.297101110219955,0.477895528078079,0.811493635177612,0.336293995380402, +0.531353354454041,0.785781741142273,0.316560417413712,0.465856403112412,0.814514815807343,0.34575030207634,0.370445489883423,0.851837635040283,0.370327740907669,0.465856403112412,0.814514815807343,0.34575030207634,0.454468876123428,0.827707409858704,0.329178035259247,0.814760744571686,0.548341810703278,0.188377380371094,0.856891870498657,0.481830984354019,0.18323515355587,0.882639110088348,0.444853037595749,0.151835307478905,0.753814578056335,0.625589370727539,0.201000884175301,0.757834613323212,0.601945221424103,0.251691490411758,0.814760744571686,0.548341810703278,0.188377380371094,-0.661540448665619,0.62185800075531,0.419114142656326,-0.592370271682739,0.661886096000671,0.459351807832718,-0.502315402030945,0.74101585149765,0.445617079734802,-0.661540448665619,0.62185800075531,0.419114142656326,-0.710453391075134,0.573210060596466,0.40827202796936,-0.779942750930786,0.47905033826828,0.40274053812027,-0.0566790737211704,0.805033981800079,0.590514719486237,-0.00222995993681252,0.758724629878998,0.651407539844513,-0.00917328894138336,0.803559899330139,0.595153033733368,-0.00917328894138336,0.803559899330139,0.595153033733368,-0.00222995993681252,0.758724629878998,0.651407539844513,0.0688415914773941,0.750557005405426,0.657209813594818,0.170656859874725,0.672255575656891,0.720380902290344,0.171767801046371,0.695141613483429,0.698049902915955,0.0688415914773941,0.750557005405426,0.657209813594818,-0.508196234703064,0.703434944152832,0.496906071901321,-0.420775949954987,0.771332919597626,0.477486222982407,-0.502315402030945,0.74101585149765,0.445617079734802,-0.45082688331604,0.732257544994354,0.510444760322571,-0.350852310657501,0.792908728122711,0.498194992542267,-0.420775949954987,0.771332919597626,0.477486222982407,-0.350852310657501,0.792908728122711,0.498194992542267,-0.244451001286507,0.809322655200958,0.534078896045685,-0.255912095308304,0.83516263961792,0.486839056015015,-0.125539153814316,0.816528499126434,0.563490033149719,-0.244941562414169,0.766732037067413,0.593401610851288,-0.10995526611805,0.763472318649292,0.636411547660828, +-0.10995526611805,0.763472318649292,0.636411547660828,-0.00222995993681252,0.758724629878998,0.651407539844513,-0.0566790737211704,0.805033981800079,0.590514719486237,-0.125539153814316,0.816528499126434,0.563490033149719,-0.244451001286507,0.809322655200958,0.534078896045685,-0.244941562414169,0.766732037067413,0.593401610851288,-0.211153164505959,0.63484263420105,0.743228793144226,-0.0878424122929573,0.566415309906006,0.81942492723465,-0.0166128817945719,0.487799763679504,0.87279736995697,-0.273892372846603,0.741438210010529,0.612578272819519,-0.345043480396271,0.744973540306091,0.570928394794464,-0.211153164505959,0.63484263420105,0.743228793144226,-0.45462641119957,0.772541880607605,0.443276107311249,-0.345043480396271,0.744973540306091,0.570928394794464,-0.372545152902603,0.80467277765274,0.462289720773697,-0.454120934009552,0.818123996257782,0.352770686149597,-0.45462641119957,0.772541880607605,0.443276107311249,-0.372545152902603,0.80467277765274,0.462289720773697,-0.572954773902893,0.785195529460907,0.234926968812943,-0.454120934009552,0.818123996257782,0.352770686149597,-0.535518169403076,0.820754408836365,0.198952734470367,-0.685977935791016,0.726748824119568,0.0356402434408665,-0.648440957069397,0.760834038257599,0.025604797527194,-0.725331544876099,0.679474115371704,-0.110493935644627,-0.648440957069397,0.760834038257599,0.025604797527194,-0.572954773902893,0.785195529460907,0.234926968812943,-0.535518169403076,0.820754408836365,0.198952734470367,-0.704932451248169,0.70012354850769,-0.113565295934677,-0.747195243835449,0.636458158493042,-0.191363915801048,-0.735906541347504,0.583010017871857,-0.344297617673874,-0.747195243835449,0.636458158493042,-0.191363915801048,-0.685977935791016,0.726748824119568,0.0356402434408665,-0.725331544876099,0.679474115371704,-0.110493935644627,-0.74332731962204,0.482900619506836,-0.462894558906555,-0.699513852596283,0.335512816905975,-0.630960643291473,-0.719912886619568,0.385700732469559,-0.577027022838593,-0.699513852596283,0.335512816905975,-0.630960643291473,-0.671750426292419,0.293438702821732,-0.680180072784424, +-0.672021389007568,0.235303074121475,-0.702153503894806,-0.605085909366608,0.128365859389305,-0.785743653774261,-0.605161845684052,0.0932225584983826,-0.790625393390656,-0.63151079416275,0.161138862371445,-0.758437991142273,-0.641756534576416,0.219540387392044,-0.734813213348389,-0.605085909366608,0.128365859389305,-0.785743653774261,-0.63151079416275,0.161138862371445,-0.758437991142273,-0.671750426292419,0.293438702821732,-0.680180072784424,-0.641756534576416,0.219540387392044,-0.734813213348389,-0.672021389007568,0.235303074121475,-0.702153503894806,-0.752916395664215,0.558657944202423,-0.347876518964767,-0.719912886619568,0.385700732469559,-0.577027022838593,-0.743501663208008,0.515210628509521,-0.426337003707886,-0.743501663208008,0.515210628509521,-0.426337003707886,-0.735906541347504,0.583010017871857,-0.344297617673874,-0.747195243835449,0.636458158493042,-0.191363915801048,0.259863883256912,0.916297256946564,0.304745703935623,0.120664469897747,0.930035948753357,0.34709233045578,0.339800775051117,0.877041697502136,0.339607506990433,0.454468876123428,0.827707409858704,0.329178035259247,0.499427616596222,0.821781814098358,0.274311006069183,0.339800775051117,0.877041697502136,0.339607506990433,-0.0933549478650093,0.941437005996704,0.324007898569107,0.120664469897747,0.930035948753357,0.34709233045578,0.0816365703940392,0.953413069248199,0.290411591529846,-0.331681579351425,0.888959407806396,0.31581375002861,-0.0933549478650093,0.941437005996704,0.324007898569107,-0.144808739423752,0.93427848815918,0.325812876224518,0.687060594558716,0.679798424243927,0.256557255983353,0.651388585567474,0.708035290241241,0.272724986076355,0.757834613323212,0.601945221424103,0.251691490411758,0.603921234607697,0.745817482471466,0.281132161617279,0.589702844619751,0.750986874103546,0.297101110219955,0.687060594558716,0.679798424243927,0.256557255983353,0.603921234607697,0.745817482471466,0.281132161617279,0.531353354454041,0.785781741142273,0.316560417413712,0.589702844619751,0.750986874103546,0.297101110219955,0.530259847640991,0.784792244434357,0.320819973945618, +0.465856403112412,0.814514815807343,0.34575030207634,0.531353354454041,0.785781741142273,0.316560417413712,0.530259847640991,0.784792244434357,0.320819973945618,0.454468876123428,0.827707409858704,0.329178035259247,0.465856403112412,0.814514815807343,0.34575030207634,0.814760744571686,0.548341810703278,0.188377380371094,0.882639110088348,0.444853037595749,0.151835307478905,0.875136613845825,0.461039930582047,0.146894499659538,0.757834613323212,0.601945221424103,0.251691490411758,0.753814578056335,0.625589370727539,0.201000884175301,0.687060594558716,0.679798424243927,0.256557255983353,0.814760744571686,0.548341810703278,0.188377380371094,0.835196971893311,0.530384182929993,0.145391151309013,0.753814578056335,0.625589370727539,0.201000884175301,-0.661540448665619,0.62185800075531,0.419114142656326,-0.728385210037231,0.55082643032074,0.407486438751221,-0.592370271682739,0.661886096000671,0.459351807832718,-0.592370271682739,0.661886096000671,0.459351807832718,-0.508196234703064,0.703434944152832,0.496906071901321,-0.502315402030945,0.74101585149765,0.445617079734802,-0.779942750930786,0.47905033826828,0.40274053812027,-0.728385210037231,0.55082643032074,0.407486438751221,-0.661540448665619,0.62185800075531,0.419114142656326,0.0842999070882797,0.694846153259277,0.714200377464294,0.0688415914773941,0.750557005405426,0.657209813594818,-0.00222995993681252,0.758724629878998,0.651407539844513,0.170656859874725,0.672255575656891,0.720380902290344,0.326419830322266,0.588403582572937,0.739750742912292,0.171767801046371,0.695141613483429,0.698049902915955,0.170656859874725,0.672255575656891,0.720380902290344,0.0688415914773941,0.750557005405426,0.657209813594818,0.0842999070882797,0.694846153259277,0.714200377464294,-0.508196234703064,0.703434944152832,0.496906071901321,-0.45082688331604,0.732257544994354,0.510444760322571,-0.420775949954987,0.771332919597626,0.477486222982407,-0.45082688331604,0.732257544994354,0.510444760322571,-0.361551642417908,0.763765871524811,0.534735381603241,-0.350852310657501,0.792908728122711,0.498194992542267, +-0.350852310657501,0.792908728122711,0.498194992542267,-0.361551642417908,0.763765871524811,0.534735381603241,-0.244451001286507,0.809322655200958,0.534078896045685,-0.244941562414169,0.766732037067413,0.593401610851288,-0.190008848905563,0.738026797771454,0.647466540336609,-0.10995526611805,0.763472318649292,0.636411547660828,-0.10995526611805,0.763472318649292,0.636411547660828,0.0011579969432205,0.704622626304626,0.709581196308136,-0.00222995993681252,0.758724629878998,0.651407539844513,-0.361551642417908,0.763765871524811,0.534735381603241,-0.244941562414169,0.766732037067413,0.593401610851288,-0.244451001286507,0.809322655200958,0.534078896045685,0.0184622779488564,0.476772278547287,0.878832876682281,-0.211153164505959,0.63484263420105,0.743228793144226,-0.0166128817945719,0.487799763679504,0.87279736995697,-0.273892372846603,0.741438210010529,0.612578272819519,-0.372545152902603,0.80467277765274,0.462289720773697,-0.345043480396271,0.744973540306091,0.570928394794464,-0.211153164505959,0.63484263420105,0.743228793144226,-0.154047563672066,0.628877758979797,0.762090504169464,-0.273892372846603,0.741438210010529,0.612578272819519,-0.454120934009552,0.818123996257782,0.352770686149597,-0.372545152902603,0.80467277765274,0.462289720773697,-0.443687349557877,0.841512560844421,0.308217406272888,-0.454120934009552,0.818123996257782,0.352770686149597,-0.443687349557877,0.841512560844421,0.308217406272888,-0.535518169403076,0.820754408836365,0.198952734470367,-0.730887770652771,0.644415378570557,-0.22479259967804,-0.725331544876099,0.679474115371704,-0.110493935644627,-0.648440957069397,0.760834038257599,0.025604797527194,-0.648440957069397,0.760834038257599,0.025604797527194,-0.535518169403076,0.820754408836365,0.198952734470367,-0.622681200504303,0.782305538654327,-0.0163095109164715,-0.747195243835449,0.636458158493042,-0.191363915801048,-0.725331544876099,0.679474115371704,-0.110493935644627,-0.752916395664215,0.558657944202423,-0.347876518964767,-0.699513852596283,0.335512816905975,-0.630960643291473,-0.74332731962204,0.482900619506836,-0.462894558906555, +-0.714353203773499,0.398155003786087,-0.5754753947258,-0.74332731962204,0.482900619506836,-0.462894558906555,-0.719912886619568,0.385700732469559,-0.577027022838593,-0.752916395664215,0.558657944202423,-0.347876518964767,-0.699513852596283,0.335512816905975,-0.630960643291473,-0.714353203773499,0.398155003786087,-0.5754753947258,-0.671750426292419,0.293438702821732,-0.680180072784424,-0.544984877109528,0.033917386084795,-0.837759494781494,-0.605161845684052,0.0932225584983826,-0.790625393390656,-0.605085909366608,0.128365859389305,-0.785743653774261,-0.617087304592133,0.196266785264015,-0.762025237083435,-0.605085909366608,0.128365859389305,-0.785743653774261,-0.641756534576416,0.219540387392044,-0.734813213348389,-0.641756534576416,0.219540387392044,-0.734813213348389,-0.671750426292419,0.293438702821732,-0.680180072784424,-0.676755666732788,0.323770403862,-0.661191582679749,-0.752916395664215,0.558657944202423,-0.347876518964767,-0.743501663208008,0.515210628509521,-0.426337003707886,-0.747195243835449,0.636458158493042,-0.191363915801048,0.259863883256912,0.916297256946564,0.304745703935623,0.0816365703940392,0.953413069248199,0.290411591529846,0.120664469897747,0.930035948753357,0.34709233045578,0.339800775051117,0.877041697502136,0.339607506990433,0.405967473983765,0.871344029903412,0.275590032339096,0.259863883256912,0.916297256946564,0.304745703935623,0.454468876123428,0.827707409858704,0.329178035259247,0.545378625392914,0.787507832050323,0.287042766809464,0.499427616596222,0.821781814098358,0.274311006069183,0.405967473983765,0.871344029903412,0.275590032339096,0.339800775051117,0.877041697502136,0.339607506990433,0.499427616596222,0.821781814098358,0.274311006069183,-0.0933549478650093,0.941437005996704,0.324007898569107,0.0816365703940392,0.953413069248199,0.290411591529846,-0.144808739423752,0.93427848815918,0.325812876224518,-0.400785028934479,0.842192709445953,0.360669791698456,-0.331681579351425,0.888959407806396,0.31581375002861,-0.144808739423752,0.93427848815918,0.325812876224518,0.687060594558716,0.679798424243927,0.256557255983353, +0.66792494058609,0.704096972942352,0.241088509559631,0.603921234607697,0.745817482471466,0.281132161617279,0.530259847640991,0.784792244434357,0.320819973945618,0.531353354454041,0.785781741142273,0.316560417413712,0.603921234607697,0.745817482471466,0.281132161617279,0.454468876123428,0.827707409858704,0.329178035259247,0.530259847640991,0.784792244434357,0.320819973945618,0.545378625392914,0.787507832050323,0.287042766809464,0.814760744571686,0.548341810703278,0.188377380371094,0.875136613845825,0.461039930582047,0.146894499659538,0.835196971893311,0.530384182929993,0.145391151309013,0.687060594558716,0.679798424243927,0.256557255983353,0.753814578056335,0.625589370727539,0.201000884175301,0.66792494058609,0.704096972942352,0.241088509559631,0.835196971893311,0.530384182929993,0.145391151309013,0.8096644282341,0.570172369480133,0.139092966914177,0.753814578056335,0.625589370727539,0.201000884175301,-0.728385210037231,0.55082643032074,0.407486438751221,-0.648044109344482,0.60447496175766,0.463301956653595,-0.592370271682739,0.661886096000671,0.459351807832718,-0.592370271682739,0.661886096000671,0.459351807832718,-0.648044109344482,0.60447496175766,0.463301956653595,-0.508196234703064,0.703434944152832,0.496906071901321,-0.779942750930786,0.47905033826828,0.40274053812027,-0.839265704154968,0.412689298391342,0.354006350040436,-0.728385210037231,0.55082643032074,0.407486438751221,-0.00222995993681252,0.758724629878998,0.651407539844513,0.0011579969432205,0.704622626304626,0.709581196308136,0.0842999070882797,0.694846153259277,0.714200377464294,0.326419830322266,0.588403582572937,0.739750742912292,0.170656859874725,0.672255575656891,0.720380902290344,0.300563395023346,0.580818891525269,0.75651228427887,0.170656859874725,0.672255575656891,0.720380902290344,0.0842999070882797,0.694846153259277,0.714200377464294,0.171050116419792,0.63865339756012,0.750242352485657,-0.508196234703064,0.703434944152832,0.496906071901321,-0.509385049343109,0.682417333126068,0.524245262145996,-0.45082688331604,0.732257544994354,0.510444760322571, +-0.45082688331604,0.732257544994354,0.510444760322571,-0.412628054618835,0.699079036712646,0.583974659442902,-0.361551642417908,0.763765871524811,0.534735381603241,-0.260677695274353,0.707086980342865,0.657324194908142,-0.190008848905563,0.738026797771454,0.647466540336609,-0.244941562414169,0.766732037067413,0.593401610851288,-0.190008848905563,0.738026797771454,0.647466540336609,-0.102347299456596,0.688555359840393,0.717925071716309,-0.10995526611805,0.763472318649292,0.636411547660828,-0.102347299456596,0.688555359840393,0.717925071716309,0.0011579969432205,0.704622626304626,0.709581196308136,-0.10995526611805,0.763472318649292,0.636411547660828,-0.361551642417908,0.763765871524811,0.534735381603241,-0.412628054618835,0.699079036712646,0.583974659442902,-0.244941562414169,0.766732037067413,0.593401610851288,-0.211153164505959,0.63484263420105,0.743228793144226,0.0184622779488564,0.476772278547287,0.878832876682281,-0.154047563672066,0.628877758979797,0.762090504169464,-0.273892372846603,0.741438210010529,0.612578272819519,-0.310253471136093,0.794792354106903,0.521581828594208,-0.372545152902603,0.80467277765274,0.462289720773697,-0.154047563672066,0.628877758979797,0.762090504169464,-0.0803898870944977,0.634847104549408,0.768444180488586,-0.273892372846603,0.741438210010529,0.612578272819519,-0.362296760082245,0.822969853878021,0.437563180923462,-0.443687349557877,0.841512560844421,0.308217406272888,-0.372545152902603,0.80467277765274,0.462289720773697,-0.538714408874512,0.833391427993774,0.123472064733505,-0.535518169403076,0.820754408836365,0.198952734470367,-0.443687349557877,0.841512560844421,0.308217406272888,-0.730887770652771,0.644415378570557,-0.22479259967804,-0.752916395664215,0.558657944202423,-0.347876518964767,-0.725331544876099,0.679474115371704,-0.110493935644627,-0.648440957069397,0.760834038257599,0.025604797527194,-0.690782606601715,0.706211686134338,-0.155191019177437,-0.730887770652771,0.644415378570557,-0.22479259967804,-0.622681200504303,0.782305538654327,-0.0163095109164715,-0.535518169403076,0.820754408836365,0.198952734470367, +-0.538714408874512,0.833391427993774,0.123472064733505,-0.648440957069397,0.760834038257599,0.025604797527194,-0.622681200504303,0.782305538654327,-0.0163095109164715,-0.690782606601715,0.706211686134338,-0.155191019177437,-0.727391958236694,0.576219022274017,-0.372655838727951,-0.714353203773499,0.398155003786087,-0.5754753947258,-0.74332731962204,0.482900619506836,-0.462894558906555,-0.752916395664215,0.558657944202423,-0.347876518964767,-0.730887770652771,0.644415378570557,-0.22479259967804,-0.74332731962204,0.482900619506836,-0.462894558906555,-0.688008725643158,0.356131613254547,-0.632308542728424,-0.671750426292419,0.293438702821732,-0.680180072784424,-0.714353203773499,0.398155003786087,-0.5754753947258,-0.544984877109528,0.033917386084795,-0.837759494781494,-0.605085909366608,0.128365859389305,-0.785743653774261,-0.592650353908539,0.0857202559709549,-0.800885379314423,-0.617087304592133,0.196266785264015,-0.762025237083435,-0.592650353908539,0.0857202559709549,-0.800885379314423,-0.605085909366608,0.128365859389305,-0.785743653774261,-0.676755666732788,0.323770403862,-0.661191582679749,-0.617087304592133,0.196266785264015,-0.762025237083435,-0.641756534576416,0.219540387392044,-0.734813213348389,-0.676755666732788,0.323770403862,-0.661191582679749,-0.671750426292419,0.293438702821732,-0.680180072784424,-0.699749410152435,0.412620484828949,-0.583176553249359,0.288249582052231,0.922927916049957,0.255178570747375,0.0816365703940392,0.953413069248199,0.290411591529846,0.259863883256912,0.916297256946564,0.304745703935623,0.288249582052231,0.922927916049957,0.255178570747375,0.259863883256912,0.916297256946564,0.304745703935623,0.405967473983765,0.871344029903412,0.275590032339096,0.499427616596222,0.821781814098358,0.274311006069183,0.545378625392914,0.787507832050323,0.287042766809464,0.594240605831146,0.76239538192749,0.256185978651047,0.463186770677567,0.857273399829865,0.224811419844627,0.405967473983765,0.871344029903412,0.275590032339096,0.499427616596222,0.821781814098358,0.274311006069183,0.0364857390522957,0.949636042118073,0.311223536729813, +-0.144808739423752,0.93427848815918,0.325812876224518,0.0816365703940392,0.953413069248199,0.290411591529846,-0.144808739423752,0.93427848815918,0.325812876224518,-0.242881640791893,0.880402266979218,0.407308518886566,-0.400785028934479,0.842192709445953,0.360669791698456,0.603921234607697,0.745817482471466,0.281132161617279,0.66792494058609,0.704096972942352,0.241088509559631,0.594240605831146,0.76239538192749,0.256185978651047,0.603921234607697,0.745817482471466,0.281132161617279,0.545378625392914,0.787507832050323,0.287042766809464,0.530259847640991,0.784792244434357,0.320819973945618,0.892905056476593,0.43718808889389,0.107643201947212,0.835196971893311,0.530384182929993,0.145391151309013,0.875136613845825,0.461039930582047,0.146894499659538,0.707447111606598,0.681337416172028,0.187876492738724,0.66792494058609,0.704096972942352,0.241088509559631,0.753814578056335,0.625589370727539,0.201000884175301,0.835196971893311,0.530384182929993,0.145391151309013,0.846612989902496,0.517091929912567,0.125945329666138,0.8096644282341,0.570172369480133,0.139092966914177,0.753814578056335,0.625589370727539,0.201000884175301,0.8096644282341,0.570172369480133,0.139092966914177,0.747774243354797,0.644554853439331,0.159319013357162,-0.728385210037231,0.55082643032074,0.407486438751221,-0.792511641979218,0.490354537963867,0.362598329782486,-0.648044109344482,0.60447496175766,0.463301956653595,-0.508196234703064,0.703434944152832,0.496906071901321,-0.648044109344482,0.60447496175766,0.463301956653595,-0.592954397201538,0.638482749462128,0.490657389163971,-0.792511641979218,0.490354537963867,0.362598329782486,-0.728385210037231,0.55082643032074,0.407486438751221,-0.839265704154968,0.412689298391342,0.354006350040436,0.0842999070882797,0.694846153259277,0.714200377464294,0.0011579969432205,0.704622626304626,0.709581196308136,0.120986878871918,0.631951987743378,0.76550555229187,0.170656859874725,0.672255575656891,0.720380902290344,0.171050116419792,0.63865339756012,0.750242352485657,0.300563395023346,0.580818891525269,0.75651228427887, +0.326419830322266,0.588403582572937,0.739750742912292,0.300563395023346,0.580818891525269,0.75651228427887,0.418978989124298,0.51156222820282,0.750173568725586,0.0842999070882797,0.694846153259277,0.714200377464294,0.120986878871918,0.631951987743378,0.76550555229187,0.171050116419792,0.63865339756012,0.750242352485657,-0.508196234703064,0.703434944152832,0.496906071901321,-0.592954397201538,0.638482749462128,0.490657389163971,-0.509385049343109,0.682417333126068,0.524245262145996,-0.412628054618835,0.699079036712646,0.583974659442902,-0.45082688331604,0.732257544994354,0.510444760322571,-0.509385049343109,0.682417333126068,0.524245262145996,-0.102347299456596,0.688555359840393,0.717925071716309,-0.190008848905563,0.738026797771454,0.647466540336609,-0.260677695274353,0.707086980342865,0.657324194908142,-0.244941562414169,0.766732037067413,0.593401610851288,-0.412628054618835,0.699079036712646,0.583974659442902,-0.260677695274353,0.707086980342865,0.657324194908142,0.0011579969432205,0.704622626304626,0.709581196308136,-0.102347299456596,0.688555359840393,0.717925071716309,0.0241209678351879,0.669620335102081,0.742311656475067,-0.154047563672066,0.628877758979797,0.762090504169464,0.0184622779488564,0.476772278547287,0.878832876682281,-0.0803898870944977,0.634847104549408,0.768444180488586,-0.185941785573959,0.728787183761597,0.659010529518127,-0.310253471136093,0.794792354106903,0.521581828594208,-0.273892372846603,0.741438210010529,0.612578272819519,-0.362296760082245,0.822969853878021,0.437563180923462,-0.372545152902603,0.80467277765274,0.462289720773697,-0.310253471136093,0.794792354106903,0.521581828594208,-0.273892372846603,0.741438210010529,0.612578272819519,-0.0803898870944977,0.634847104549408,0.768444180488586,-0.185941785573959,0.728787183761597,0.659010529518127,-0.362296760082245,0.822969853878021,0.437563180923462,-0.400089293718338,0.839020669460297,0.368744790554047,-0.443687349557877,0.841512560844421,0.308217406272888,-0.538714408874512,0.833391427993774,0.123472064733505,-0.443687349557877,0.841512560844421,0.308217406272888, +-0.527909100055695,0.836934685707092,0.144402861595154,-0.727391958236694,0.576219022274017,-0.372655838727951,-0.730887770652771,0.644415378570557,-0.22479259967804,-0.690782606601715,0.706211686134338,-0.155191019177437,-0.622681200504303,0.782305538654327,-0.0163095109164715,-0.538714408874512,0.833391427993774,0.123472064733505,-0.613965153694153,0.786671102046967,-0.0647704377770424,-0.706036865711212,0.662036240100861,-0.251435399055481,-0.690782606601715,0.706211686134338,-0.155191019177437,-0.622681200504303,0.782305538654327,-0.0163095109164715,-0.727391958236694,0.576219022274017,-0.372655838727951,-0.71488094329834,0.499371916055679,-0.489461570978165,-0.714353203773499,0.398155003786087,-0.5754753947258,-0.727391958236694,0.576219022274017,-0.372655838727951,-0.74332731962204,0.482900619506836,-0.462894558906555,-0.730887770652771,0.644415378570557,-0.22479259967804,-0.699749410152435,0.412620484828949,-0.583176553249359,-0.671750426292419,0.293438702821732,-0.680180072784424,-0.688008725643158,0.356131613254547,-0.632308542728424,-0.688008725643158,0.356131613254547,-0.632308542728424,-0.714353203773499,0.398155003786087,-0.5754753947258,-0.71488094329834,0.499371916055679,-0.489461570978165,-0.524719893932343,-0.0277547519654036,-0.850822269916534,-0.544984877109528,0.033917386084795,-0.837759494781494,-0.592650353908539,0.0857202559709549,-0.800885379314423,-0.617087304592133,0.196266785264015,-0.762025237083435,-0.58278226852417,0.0832837745547295,-0.808349251747131,-0.592650353908539,0.0857202559709549,-0.800885379314423,-0.639146089553833,0.326437622308731,-0.696369588375092,-0.617087304592133,0.196266785264015,-0.762025237083435,-0.676755666732788,0.323770403862,-0.661191582679749,-0.676755666732788,0.323770403862,-0.661191582679749,-0.699749410152435,0.412620484828949,-0.583176553249359,-0.70680445432663,0.5099818110466,-0.490250915288925,0.0816365703940392,0.953413069248199,0.290411591529846,0.288249582052231,0.922927916049957,0.255178570747375,0.145258456468582,0.949949622154236,0.276578217744827, +0.405967473983765,0.871344029903412,0.275590032339096,0.463186770677567,0.857273399829865,0.224811419844627,0.288249582052231,0.922927916049957,0.255178570747375,0.603921234607697,0.745817482471466,0.281132161617279,0.594240605831146,0.76239538192749,0.256185978651047,0.545378625392914,0.787507832050323,0.287042766809464,0.594240605831146,0.76239538192749,0.256185978651047,0.568870484828949,0.793772757053375,0.215200021862984,0.499427616596222,0.821781814098358,0.274311006069183,0.499427616596222,0.821781814098358,0.274311006069183,0.568870484828949,0.793772757053375,0.215200021862984,0.463186770677567,0.857273399829865,0.224811419844627,0.0364857390522957,0.949636042118073,0.311223536729813,0.0200152564793825,0.924578607082367,0.380465060472488,-0.144808739423752,0.93427848815918,0.325812876224518,0.0364857390522957,0.949636042118073,0.311223536729813,0.0816365703940392,0.953413069248199,0.290411591529846,0.145258456468582,0.949949622154236,0.276578217744827,-0.144808739423752,0.93427848815918,0.325812876224518,0.0200152564793825,0.924578607082367,0.380465060472488,-0.242881640791893,0.880402266979218,0.407308518886566,-0.242881640791893,0.880402266979218,0.407308518886566,-0.403034508228302,0.800877153873444,0.442898362874985,-0.400785028934479,0.842192709445953,0.360669791698456,0.63687264919281,0.742748022079468,0.206684440374374,0.594240605831146,0.76239538192749,0.256185978651047,0.66792494058609,0.704096972942352,0.241088509559631,0.892905056476593,0.43718808889389,0.107643201947212,0.876342535018921,0.469281286001205,0.108622267842293,0.835196971893311,0.530384182929993,0.145391151309013,0.66792494058609,0.704096972942352,0.241088509559631,0.707447111606598,0.681337416172028,0.187876492738724,0.63687264919281,0.742748022079468,0.206684440374374,0.753814578056335,0.625589370727539,0.201000884175301,0.747774243354797,0.644554853439331,0.159319013357162,0.707447111606598,0.681337416172028,0.187876492738724,0.846612989902496,0.517091929912567,0.125945329666138,0.835196971893311,0.530384182929993,0.145391151309013, +0.876342535018921,0.469281286001205,0.108622267842293,0.846612989902496,0.517091929912567,0.125945329666138,0.860349118709564,0.497326880693436,0.111648008227348,0.8096644282341,0.570172369480133,0.139092966914177,0.8096644282341,0.570172369480133,0.139092966914177,0.783766031265259,0.600842177867889,0.157159611582756,0.747774243354797,0.644554853439331,0.159319013357162,-0.648044109344482,0.60447496175766,0.463301956653595,-0.792511641979218,0.490354537963867,0.362598329782486,-0.736732006072998,0.531391441822052,0.418149441480637,-0.648044109344482,0.60447496175766,0.463301956653595,-0.68760085105896,0.569115519523621,0.450901955366135,-0.592954397201538,0.638482749462128,0.490657389163971,-0.839265704154968,0.412689298391342,0.354006350040436,-0.891540706157684,0.366050094366074,0.266762763261795,-0.792511641979218,0.490354537963867,0.362598329782486,0.120986878871918,0.631951987743378,0.76550555229187,0.0011579969432205,0.704622626304626,0.709581196308136,0.0241209678351879,0.669620335102081,0.742311656475067,0.300563395023346,0.580818891525269,0.75651228427887,0.171050116419792,0.63865339756012,0.750242352485657,0.261984586715698,0.567845344543457,0.780330419540405,0.418978989124298,0.51156222820282,0.750173568725586,0.300563395023346,0.580818891525269,0.75651228427887,0.49820551276207,0.420292675495148,0.758383274078369,0.261984586715698,0.567845344543457,0.780330419540405,0.171050116419792,0.63865339756012,0.750242352485657,0.120986878871918,0.631951987743378,0.76550555229187,-0.509385049343109,0.682417333126068,0.524245262145996,-0.592954397201538,0.638482749462128,0.490657389163971,-0.549903213977814,0.636286973953247,0.54105931520462,-0.412628054618835,0.699079036712646,0.583974659442902,-0.509385049343109,0.682417333126068,0.524245262145996,-0.549903213977814,0.636286973953247,0.54105931520462,-0.102347299456596,0.688555359840393,0.717925071716309,-0.260677695274353,0.707086980342865,0.657324194908142,-0.208596363663673,0.660843849182129,0.720952689647675,-0.351289689540863,0.659364759922028,0.664705574512482, +-0.260677695274353,0.707086980342865,0.657324194908142,-0.412628054618835,0.699079036712646,0.583974659442902,-0.102347299456596,0.688555359840393,0.717925071716309,0.0254380498081446,0.606053113937378,0.795017242431641,0.0241209678351879,0.669620335102081,0.742311656475067,0.0184622779488564,0.476772278547287,0.878832876682281,0.116317607462406,0.443737328052521,0.888576030731201,-0.0803898870944977,0.634847104549408,0.768444180488586,-0.27314618229866,0.774528563022614,0.570522964000702,-0.310253471136093,0.794792354106903,0.521581828594208,-0.185941785573959,0.728787183761597,0.659010529518127,-0.27314618229866,0.774528563022614,0.570522964000702,-0.362296760082245,0.822969853878021,0.437563180923462,-0.310253471136093,0.794792354106903,0.521581828594208,0.011230206117034,0.564097344875336,0.82563179731369,-0.185941785573959,0.728787183761597,0.659010529518127,-0.0803898870944977,0.634847104549408,0.768444180488586,-0.327199876308441,0.813726305961609,0.480405628681183,-0.400089293718338,0.839020669460297,0.368744790554047,-0.362296760082245,0.822969853878021,0.437563180923462,-0.400089293718338,0.839020669460297,0.368744790554047,-0.501677632331848,0.847726047039032,0.172278687357903,-0.443687349557877,0.841512560844421,0.308217406272888,-0.527909100055695,0.836934685707092,0.144402861595154,-0.443687349557877,0.841512560844421,0.308217406272888,-0.501677632331848,0.847726047039032,0.172278687357903,-0.538714408874512,0.833391427993774,0.123472064733505,-0.527909100055695,0.836934685707092,0.144402861595154,-0.613965153694153,0.786671102046967,-0.0647704377770424,-0.706036865711212,0.662036240100861,-0.251435399055481,-0.727391958236694,0.576219022274017,-0.372655838727951,-0.690782606601715,0.706211686134338,-0.155191019177437,-0.622681200504303,0.782305538654327,-0.0163095109164715,-0.613965153694153,0.786671102046967,-0.0647704377770424,-0.675960004329681,0.69608747959137,-0.24195072054863,-0.706036865711212,0.662036240100861,-0.251435399055481,-0.622681200504303,0.782305538654327,-0.0163095109164715,-0.675960004329681,0.69608747959137,-0.24195072054863, +-0.727391958236694,0.576219022274017,-0.372655838727951,-0.706036865711212,0.662036240100861,-0.251435399055481,-0.71488094329834,0.499371916055679,-0.489461570978165,-0.699749410152435,0.412620484828949,-0.583176553249359,-0.688008725643158,0.356131613254547,-0.632308542728424,-0.71488094329834,0.499371916055679,-0.489461570978165,-0.592650353908539,0.0857202559709549,-0.800885379314423,-0.58278226852417,0.0832837745547295,-0.808349251747131,-0.524719893932343,-0.0277547519654036,-0.850822269916534,-0.617087304592133,0.196266785264015,-0.762025237083435,-0.546463429927826,0.11729883402586,-0.829227685928345,-0.58278226852417,0.0832837745547295,-0.808349251747131,-0.639146089553833,0.326437622308731,-0.696369588375092,-0.585403859615326,0.271871358156204,-0.763798475265503,-0.617087304592133,0.196266785264015,-0.762025237083435,-0.639146089553833,0.326437622308731,-0.696369588375092,-0.676755666732788,0.323770403862,-0.661191582679749,-0.690977692604065,0.434093236923218,-0.578024864196777,-0.718159914016724,0.569795608520508,-0.399473577737808,-0.70680445432663,0.5099818110466,-0.490250915288925,-0.699749410152435,0.412620484828949,-0.583176553249359,-0.676755666732788,0.323770403862,-0.661191582679749,-0.70680445432663,0.5099818110466,-0.490250915288925,-0.690977692604065,0.434093236923218,-0.578024864196777,0.288249582052231,0.922927916049957,0.255178570747375,0.265717655420303,0.916456818580627,0.299167156219482,0.145258456468582,0.949949622154236,0.276578217744827,0.463186770677567,0.857273399829865,0.224811419844627,0.390396535396576,0.880937099456787,0.267470002174377,0.288249582052231,0.922927916049957,0.255178570747375,0.594240605831146,0.76239538192749,0.256185978651047,0.63687264919281,0.742748022079468,0.206684440374374,0.568870484828949,0.793772757053375,0.215200021862984,0.568870484828949,0.793772757053375,0.215200021862984,0.552407145500183,0.807692587375641,0.206104338169098,0.463186770677567,0.857273399829865,0.224811419844627,0.0364857390522957,0.949636042118073,0.311223536729813,0.184882327914238,0.92285680770874,0.337866574525833, +0.0200152564793825,0.924578607082367,0.380465060472488,0.0364857390522957,0.949636042118073,0.311223536729813,0.145258456468582,0.949949622154236,0.276578217744827,0.184882327914238,0.92285680770874,0.337866574525833,-0.242881640791893,0.880402266979218,0.407308518886566,0.0200152564793825,0.924578607082367,0.380465060472488,-0.009155398234725,0.893359899520874,0.449248462915421,-0.237477317452431,0.858974397182465,0.45361590385437,-0.403034508228302,0.800877153873444,0.442898362874985,-0.242881640791893,0.880402266979218,0.407308518886566,0.646117091178894,0.738522887229919,0.192656427621841,0.63687264919281,0.742748022079468,0.206684440374374,0.707447111606598,0.681337416172028,0.187876492738724,0.707447111606598,0.681337416172028,0.187876492738724,0.747774243354797,0.644554853439331,0.159319013357162,0.646117091178894,0.738522887229919,0.192656427621841,0.846612989902496,0.517091929912567,0.125945329666138,0.876342535018921,0.469281286001205,0.108622267842293,0.860349118709564,0.497326880693436,0.111648008227348,0.860349118709564,0.497326880693436,0.111648008227348,0.842124700546265,0.525092899799347,0.122894547879696,0.8096644282341,0.570172369480133,0.139092966914177,0.8096644282341,0.570172369480133,0.139092966914177,0.842124700546265,0.525092899799347,0.122894547879696,0.783766031265259,0.600842177867889,0.157159611582756,0.747774243354797,0.644554853439331,0.159319013357162,0.783766031265259,0.600842177867889,0.157159611582756,0.706259191036224,0.677004337310791,0.207033976912498,-0.825855731964111,0.446470558643341,0.344421595335007,-0.736732006072998,0.531391441822052,0.418149441480637,-0.792511641979218,0.490354537963867,0.362598329782486,-0.648044109344482,0.60447496175766,0.463301956653595,-0.736732006072998,0.531391441822052,0.418149441480637,-0.68760085105896,0.569115519523621,0.450901955366135,-0.680203020572662,0.56591272354126,0.465903997421265,-0.592954397201538,0.638482749462128,0.490657389163971,-0.68760085105896,0.569115519523621,0.450901955366135,-0.860946714878082,0.414618968963623,0.294723182916641, +-0.792511641979218,0.490354537963867,0.362598329782486,-0.891540706157684,0.366050094366074,0.266762763261795,0.0254380498081446,0.606053113937378,0.795017242431641,0.120986878871918,0.631951987743378,0.76550555229187,0.0241209678351879,0.669620335102081,0.742311656475067,0.300563395023346,0.580818891525269,0.75651228427887,0.261984586715698,0.567845344543457,0.780330419540405,0.37799209356308,0.517256021499634,0.767833352088928,0.37799209356308,0.517256021499634,0.767833352088928,0.49820551276207,0.420292675495148,0.758383274078369,0.300563395023346,0.580818891525269,0.75651228427887,0.120986878871918,0.631951987743378,0.76550555229187,0.263522386550903,0.544507622718811,0.796283364295959,0.261984586715698,0.567845344543457,0.780330419540405,-0.680203020572662,0.56591272354126,0.465903997421265,-0.549903213977814,0.636286973953247,0.54105931520462,-0.592954397201538,0.638482749462128,0.490657389163971,-0.549903213977814,0.636286973953247,0.54105931520462,-0.466901630163193,0.646242797374725,0.603633105754852,-0.412628054618835,0.699079036712646,0.583974659442902,-0.351289689540863,0.659364759922028,0.664705574512482,-0.208596363663673,0.660843849182129,0.720952689647675,-0.260677695274353,0.707086980342865,0.657324194908142,-0.128338530659676,0.619668841362,0.774299383163452,-0.102347299456596,0.688555359840393,0.717925071716309,-0.208596363663673,0.660843849182129,0.720952689647675,-0.351289689540863,0.659364759922028,0.664705574512482,-0.412628054618835,0.699079036712646,0.583974659442902,-0.466901630163193,0.646242797374725,0.603633105754852,-0.128338530659676,0.619668841362,0.774299383163452,0.0254380498081446,0.606053113937378,0.795017242431641,-0.102347299456596,0.688555359840393,0.717925071716309,0.011230206117034,0.564097344875336,0.82563179731369,-0.0803898870944977,0.634847104549408,0.768444180488586,0.116317607462406,0.443737328052521,0.888576030731201,-0.185941785573959,0.728787183761597,0.659010529518127,-0.0635645464062691,0.621780097484589,0.780608057975769,-0.27314618229866,0.774528563022614,0.570522964000702, +-0.27314618229866,0.774528563022614,0.570522964000702,-0.327199876308441,0.813726305961609,0.480405628681183,-0.362296760082245,0.822969853878021,0.437563180923462,0.011230206117034,0.564097344875336,0.82563179731369,-0.0635645464062691,0.621780097484589,0.780608057975769,-0.185941785573959,0.728787183761597,0.659010529518127,-0.400089293718338,0.839020669460297,0.368744790554047,-0.327199876308441,0.813726305961609,0.480405628681183,-0.383863806724548,0.84446108341217,0.373542338609695,-0.501677632331848,0.847726047039032,0.172278687357903,-0.400089293718338,0.839020669460297,0.368744790554047,-0.46557343006134,0.855300843715668,0.227380305528641,-0.527909100055695,0.836934685707092,0.144402861595154,-0.501677632331848,0.847726047039032,0.172278687357903,-0.573498666286469,0.81918728351593,0.0056042424403131,-0.527909100055695,0.836934685707092,0.144402861595154,-0.573498666286469,0.81918728351593,0.0056042424403131,-0.613965153694153,0.786671102046967,-0.0647704377770424,-0.675960004329681,0.69608747959137,-0.24195072054863,-0.613965153694153,0.786671102046967,-0.0647704377770424,-0.691980600357056,0.627856075763702,-0.356313735246658,-0.706036865711212,0.662036240100861,-0.251435399055481,-0.675960004329681,0.69608747959137,-0.24195072054863,-0.718159914016724,0.569795608520508,-0.399473577737808,-0.71488094329834,0.499371916055679,-0.489461570978165,-0.706036865711212,0.662036240100861,-0.251435399055481,-0.718159914016724,0.569795608520508,-0.399473577737808,-0.71488094329834,0.499371916055679,-0.489461570978165,-0.718159914016724,0.569795608520508,-0.399473577737808,-0.699749410152435,0.412620484828949,-0.583176553249359,-0.524719893932343,-0.0277547519654036,-0.850822269916534,-0.58278226852417,0.0832837745547295,-0.808349251747131,-0.521974503993988,0.0146251274272799,-0.852835595607758,-0.617087304592133,0.196266785264015,-0.762025237083435,-0.564139485359192,0.197782903909683,-0.801641047000885,-0.546463429927826,0.11729883402586,-0.829227685928345,-0.546463429927826,0.11729883402586,-0.829227685928345,-0.521974503993988,0.0146251274272799,-0.852835595607758, +-0.58278226852417,0.0832837745547295,-0.808349251747131,-0.639146089553833,0.326437622308731,-0.696369588375092,-0.635617733001709,0.397580206394196,-0.661755084991455,-0.585403859615326,0.271871358156204,-0.763798475265503,-0.617087304592133,0.196266785264015,-0.762025237083435,-0.585403859615326,0.271871358156204,-0.763798475265503,-0.564139485359192,0.197782903909683,-0.801641047000885,-0.660521626472473,0.469179302453995,-0.586158514022827,-0.639146089553833,0.326437622308731,-0.696369588375092,-0.690977692604065,0.434093236923218,-0.578024864196777,-0.718159914016724,0.569795608520508,-0.399473577737808,-0.675960004329681,0.69608747959137,-0.24195072054863,-0.70680445432663,0.5099818110466,-0.490250915288925,-0.70680445432663,0.5099818110466,-0.490250915288925,-0.691980600357056,0.627856075763702,-0.356313735246658,-0.690977692604065,0.434093236923218,-0.578024864196777,0.288249582052231,0.922927916049957,0.255178570747375,0.390396535396576,0.880937099456787,0.267470002174377,0.265717655420303,0.916456818580627,0.299167156219482,0.145258456468582,0.949949622154236,0.276578217744827,0.265717655420303,0.916456818580627,0.299167156219482,0.184882327914238,0.92285680770874,0.337866574525833,0.484383851289749,0.839725613594055,0.245424181222916,0.390396535396576,0.880937099456787,0.267470002174377,0.463186770677567,0.857273399829865,0.224811419844627,0.568870484828949,0.793772757053375,0.215200021862984,0.63687264919281,0.742748022079468,0.206684440374374,0.597040891647339,0.781618237495422,0.180595591664314,0.552407145500183,0.807692587375641,0.206104338169098,0.568870484828949,0.793772757053375,0.215200021862984,0.597040891647339,0.781618237495422,0.180595591664314,0.463186770677567,0.857273399829865,0.224811419844627,0.552407145500183,0.807692587375641,0.206104338169098,0.484383851289749,0.839725613594055,0.245424181222916,0.184882327914238,0.92285680770874,0.337866574525833,0.171892672777176,0.898648977279663,0.403587400913239,0.0200152564793825,0.924578607082367,0.380465060472488,0.0200152564793825,0.924578607082367,0.380465060472488, +0.171892672777176,0.898648977279663,0.403587400913239,-0.009155398234725,0.893359899520874,0.449248462915421,-0.237477317452431,0.858974397182465,0.45361590385437,-0.242881640791893,0.880402266979218,0.407308518886566,-0.009155398234725,0.893359899520874,0.449248462915421,-0.267654329538345,0.845619261264801,0.461832344532013,-0.403034508228302,0.800877153873444,0.442898362874985,-0.237477317452431,0.858974397182465,0.45361590385437,0.63687264919281,0.742748022079468,0.206684440374374,0.646117091178894,0.738522887229919,0.192656427621841,0.597040891647339,0.781618237495422,0.180595591664314,0.747774243354797,0.644554853439331,0.159319013357162,0.706259191036224,0.677004337310791,0.207033976912498,0.646117091178894,0.738522887229919,0.192656427621841,0.868348121643066,0.487024039030075,0.0936967432498932,0.842124700546265,0.525092899799347,0.122894547879696,0.860349118709564,0.497326880693436,0.111648008227348,0.851085543632507,0.498769700527191,0.163957580924034,0.783766031265259,0.600842177867889,0.157159611582756,0.842124700546265,0.525092899799347,0.122894547879696,0.783766031265259,0.600842177867889,0.157159611582756,0.758150935173035,0.604945361614227,0.243409395217896,0.706259191036224,0.677004337310791,0.207033976912498,-0.825855731964111,0.446470558643341,0.344421595335007,-0.770488619804382,0.503888428211212,0.390440046787262,-0.736732006072998,0.531391441822052,0.418149441480637,-0.860946714878082,0.414618968963623,0.294723182916641,-0.825855731964111,0.446470558643341,0.344421595335007,-0.792511641979218,0.490354537963867,0.362598329782486,-0.736732006072998,0.531391441822052,0.418149441480637,-0.770488619804382,0.503888428211212,0.390440046787262,-0.68760085105896,0.569115519523621,0.450901955366135,-0.770488619804382,0.503888428211212,0.390440046787262,-0.680203020572662,0.56591272354126,0.465903997421265,-0.68760085105896,0.569115519523621,0.450901955366135,-0.919818937778473,0.314502596855164,0.234565928578377,-0.860946714878082,0.414618968963623,0.294723182916641,-0.891540706157684,0.366050094366074,0.266762763261795, +0.120986878871918,0.631951987743378,0.76550555229187,0.0254380498081446,0.606053113937378,0.795017242431641,0.159146755933762,0.566214203834534,0.808748245239258,0.40602308511734,0.45788300037384,0.790878176689148,0.37799209356308,0.517256021499634,0.767833352088928,0.261984586715698,0.567845344543457,0.780330419540405,0.40602308511734,0.45788300037384,0.790878176689148,0.49820551276207,0.420292675495148,0.758383274078369,0.37799209356308,0.517256021499634,0.767833352088928,0.263522386550903,0.544507622718811,0.796283364295959,0.120986878871918,0.631951987743378,0.76550555229187,0.159146755933762,0.566214203834534,0.808748245239258,0.261984586715698,0.567845344543457,0.780330419540405,0.263522386550903,0.544507622718811,0.796283364295959,0.40602308511734,0.45788300037384,0.790878176689148,-0.680203020572662,0.56591272354126,0.465903997421265,-0.628184080123901,0.549940764904022,0.550408661365509,-0.549903213977814,0.636286973953247,0.54105931520462,-0.466901630163193,0.646242797374725,0.603633105754852,-0.549903213977814,0.636286973953247,0.54105931520462,-0.544105887413025,0.607621312141418,0.578571438789368,-0.26858925819397,0.619090855121613,0.737960815429688,-0.208596363663673,0.660843849182129,0.720952689647675,-0.351289689540863,0.659364759922028,0.664705574512482,-0.208596363663673,0.660843849182129,0.720952689647675,-0.26858925819397,0.619090855121613,0.737960815429688,-0.128338530659676,0.619668841362,0.774299383163452,-0.466302990913391,0.613103449344635,0.6377032995224,-0.351289689540863,0.659364759922028,0.664705574512482,-0.466901630163193,0.646242797374725,0.603633105754852,-0.0635645464062691,0.621780097484589,0.780608057975769,-0.149653360247612,0.694210112094879,0.704042613506317,-0.27314618229866,0.774528563022614,0.570522964000702,-0.183405965566635,0.749204218387604,0.636439383029938,-0.327199876308441,0.813726305961609,0.480405628681183,-0.27314618229866,0.774528563022614,0.570522964000702,-0.276927828788757,0.798900663852692,0.533918082714081,-0.383863806724548,0.84446108341217,0.373542338609695, +-0.327199876308441,0.813726305961609,0.480405628681183,-0.400089293718338,0.839020669460297,0.368744790554047,-0.383863806724548,0.84446108341217,0.373542338609695,-0.46557343006134,0.855300843715668,0.227380305528641,-0.501677632331848,0.847726047039032,0.172278687357903,-0.46557343006134,0.855300843715668,0.227380305528641,-0.573977649211884,0.818601965904236,0.0209864564239979,-0.573498666286469,0.81918728351593,0.0056042424403131,-0.501677632331848,0.847726047039032,0.172278687357903,-0.606313824653625,0.790479302406311,-0.0867516398429871,-0.613965153694153,0.786671102046967,-0.0647704377770424,-0.573498666286469,0.81918728351593,0.0056042424403131,-0.657613575458527,0.721205353736877,-0.21773162484169,-0.613965153694153,0.786671102046967,-0.0647704377770424,-0.657613575458527,0.721205353736877,-0.21773162484169,-0.691980600357056,0.627856075763702,-0.356313735246658,-0.70680445432663,0.5099818110466,-0.490250915288925,-0.675960004329681,0.69608747959137,-0.24195072054863,-0.691980600357056,0.627856075763702,-0.356313735246658,-0.546463429927826,0.11729883402586,-0.829227685928345,-0.564139485359192,0.197782903909683,-0.801641047000885,-0.551661312580109,0.172047913074493,-0.816130578517914,-0.521974503993988,0.0146251274272799,-0.852835595607758,-0.546463429927826,0.11729883402586,-0.829227685928345,-0.527705132961273,0.0681223496794701,-0.846691370010376,-0.660521626472473,0.469179302453995,-0.586158514022827,-0.635617733001709,0.397580206394196,-0.661755084991455,-0.639146089553833,0.326437622308731,-0.696369588375092,-0.601247727870941,0.362778425216675,-0.711964070796967,-0.585403859615326,0.271871358156204,-0.763798475265503,-0.635617733001709,0.397580206394196,-0.661755084991455,-0.551661312580109,0.172047913074493,-0.816130578517914,-0.564139485359192,0.197782903909683,-0.801641047000885,-0.585403859615326,0.271871358156204,-0.763798475265503,-0.660521626472473,0.469179302453995,-0.586158514022827,-0.690977692604065,0.434093236923218,-0.578024864196777,-0.690818130970001,0.561285078525543,-0.455773174762726, +-0.691980600357056,0.627856075763702,-0.356313735246658,-0.690818130970001,0.561285078525543,-0.455773174762726,-0.690977692604065,0.434093236923218,-0.578024864196777,0.377804607152939,0.859749853610992,0.343647629022598,0.265717655420303,0.916456818580627,0.299167156219482,0.390396535396576,0.880937099456787,0.267470002174377,0.184882327914238,0.92285680770874,0.337866574525833,0.265717655420303,0.916456818580627,0.299167156219482,0.29305562376976,0.880894601345062,0.371675908565521,0.482952743768692,0.817994296550751,0.312476873397827,0.390396535396576,0.880937099456787,0.267470002174377,0.484383851289749,0.839725613594055,0.245424181222916,0.646117091178894,0.738522887229919,0.192656427621841,0.552407145500183,0.807692587375641,0.206104338169098,0.597040891647339,0.781618237495422,0.180595591664314,0.552407145500183,0.807692587375641,0.206104338169098,0.555991113185883,0.788590967655182,0.262674957513809,0.484383851289749,0.839725613594055,0.245424181222916,0.184882327914238,0.92285680770874,0.337866574525833,0.29305562376976,0.880894601345062,0.371675908565521,0.171892672777176,0.898648977279663,0.403587400913239,-0.009155398234725,0.893359899520874,0.449248462915421,0.171892672777176,0.898648977279663,0.403587400913239,0.159315586090088,0.885041356086731,0.437401741743088,-0.237477317452431,0.858974397182465,0.45361590385437,-0.009155398234725,0.893359899520874,0.449248462915421,-0.267654329538345,0.845619261264801,0.461832344532013,-0.267654329538345,0.845619261264801,0.461832344532013,-0.47083368897438,0.766032695770264,0.437617868185043,-0.403034508228302,0.800877153873444,0.442898362874985,0.646117091178894,0.738522887229919,0.192656427621841,0.706259191036224,0.677004337310791,0.207033976912498,0.637507259845734,0.725578665733337,0.259075105190277,0.842124700546265,0.525092899799347,0.122894547879696,0.868348121643066,0.487024039030075,0.0936967432498932,0.901633322238922,0.419955462217331,0.103415042161942,0.783766031265259,0.600842177867889,0.157159611582756,0.851085543632507,0.498769700527191,0.163957580924034, +0.758150935173035,0.604945361614227,0.243409395217896,0.842124700546265,0.525092899799347,0.122894547879696,0.901633322238922,0.419955462217331,0.103415042161942,0.851085543632507,0.498769700527191,0.163957580924034,0.672112882137299,0.687358558177948,0.275322258472443,0.706259191036224,0.677004337310791,0.207033976912498,0.758150935173035,0.604945361614227,0.243409395217896,-0.770488619804382,0.503888428211212,0.390440046787262,-0.825855731964111,0.446470558643341,0.344421595335007,-0.848228871822357,0.41873174905777,0.324301511049271,-0.825855731964111,0.446470558643341,0.344421595335007,-0.860946714878082,0.414618968963623,0.294723182916641,-0.919818937778473,0.314502596855164,0.234565928578377,-0.770488619804382,0.503888428211212,0.390440046787262,-0.787233114242554,0.466529607772827,0.403254270553589,-0.680203020572662,0.56591272354126,0.465903997421265,0.600937366485596,0.319480210542679,0.732670783996582,0.49820551276207,0.420292675495148,0.758383274078369,0.40602308511734,0.45788300037384,0.790878176689148,0.263522386550903,0.544507622718811,0.796283364295959,0.159146755933762,0.566214203834534,0.808748245239258,0.26116144657135,0.488227128982544,0.832723736763,0.263522386550903,0.544507622718811,0.796283364295959,0.26116144657135,0.488227128982544,0.832723736763,0.40602308511734,0.45788300037384,0.790878176689148,-0.680203020572662,0.56591272354126,0.465903997421265,-0.709786474704742,0.492521196603775,0.50361293554306,-0.628184080123901,0.549940764904022,0.550408661365509,-0.544105887413025,0.607621312141418,0.578571438789368,-0.549903213977814,0.636286973953247,0.54105931520462,-0.628184080123901,0.549940764904022,0.550408661365509,-0.466901630163193,0.646242797374725,0.603633105754852,-0.544105887413025,0.607621312141418,0.578571438789368,-0.51011598110199,0.605409026145935,0.610951244831085,-0.26858925819397,0.619090855121613,0.737960815429688,-0.351289689540863,0.659364759922028,0.664705574512482,-0.392163425683975,0.604910552501678,0.69303023815155,-0.351289689540863,0.659364759922028,0.664705574512482, +-0.466302990913391,0.613103449344635,0.6377032995224,-0.392163425683975,0.604910552501678,0.69303023815155,-0.51011598110199,0.605409026145935,0.610951244831085,-0.466302990913391,0.613103449344635,0.6377032995224,-0.466901630163193,0.646242797374725,0.603633105754852,-0.183405965566635,0.749204218387604,0.636439383029938,-0.27314618229866,0.774528563022614,0.570522964000702,-0.149653360247612,0.694210112094879,0.704042613506317,-0.276927828788757,0.798900663852692,0.533918082714081,-0.327199876308441,0.813726305961609,0.480405628681183,-0.183405965566635,0.749204218387604,0.636439383029938,-0.276927828788757,0.798900663852692,0.533918082714081,-0.360918819904327,0.837525367736816,0.41023001074791,-0.383863806724548,0.84446108341217,0.373542338609695,-0.383863806724548,0.84446108341217,0.373542338609695,-0.442334949970245,0.871755123138428,0.210671961307526,-0.46557343006134,0.855300843715668,0.227380305528641,-0.511341869831085,0.857872605323792,0.0508325845003128,-0.573977649211884,0.818601965904236,0.0209864564239979,-0.46557343006134,0.855300843715668,0.227380305528641,-0.501677632331848,0.847726047039032,0.172278687357903,-0.573977649211884,0.818601965904236,0.0209864564239979,-0.606313824653625,0.790479302406311,-0.0867516398429871,-0.573498666286469,0.81918728351593,0.0056042424403131,-0.606313824653625,0.790479302406311,-0.0867516398429871,-0.657613575458527,0.721205353736877,-0.21773162484169,-0.691980600357056,0.627856075763702,-0.356313735246658,-0.657613575458527,0.721205353736877,-0.21773162484169,-0.690818130970001,0.561285078525543,-0.455773174762726,-0.551661312580109,0.172047913074493,-0.816130578517914,-0.527705132961273,0.0681223496794701,-0.846691370010376,-0.546463429927826,0.11729883402586,-0.829227685928345,-0.660521626472473,0.469179302453995,-0.586158514022827,-0.658711910247803,0.561524212360382,-0.500788390636444,-0.635617733001709,0.397580206394196,-0.661755084991455,-0.585403859615326,0.271871358156204,-0.763798475265503,-0.601247727870941,0.362778425216675,-0.711964070796967,-0.575878202915192,0.269976764917374,-0.77167135477066, +-0.635617733001709,0.397580206394196,-0.661755084991455,-0.637403726577759,0.445638477802277,-0.628587961196899,-0.601247727870941,0.362778425216675,-0.711964070796967,-0.585403859615326,0.271871358156204,-0.763798475265503,-0.575878202915192,0.269976764917374,-0.77167135477066,-0.551661312580109,0.172047913074493,-0.816130578517914,-0.690818130970001,0.561285078525543,-0.455773174762726,-0.666723132133484,0.650707483291626,-0.363400429487228,-0.660521626472473,0.469179302453995,-0.586158514022827,0.377804607152939,0.859749853610992,0.343647629022598,0.29305562376976,0.880894601345062,0.371675908565521,0.265717655420303,0.916456818580627,0.299167156219482,0.390396535396576,0.880937099456787,0.267470002174377,0.482952743768692,0.817994296550751,0.312476873397827,0.377804607152939,0.859749853610992,0.343647629022598,0.482952743768692,0.817994296550751,0.312476873397827,0.484383851289749,0.839725613594055,0.245424181222916,0.555991113185883,0.788590967655182,0.262674957513809,0.555991113185883,0.788590967655182,0.262674957513809,0.552407145500183,0.807692587375641,0.206104338169098,0.646117091178894,0.738522887229919,0.192656427621841,0.261658042669296,0.860169470310211,0.437770932912827,0.171892672777176,0.898648977279663,0.403587400913239,0.29305562376976,0.880894601345062,0.371675908565521,0.171892672777176,0.898648977279663,0.403587400913239,0.261658042669296,0.860169470310211,0.437770932912827,0.159315586090088,0.885041356086731,0.437401741743088,0.150712102651596,0.860377073287964,0.486864477396011,-0.009155398234725,0.893359899520874,0.449248462915421,0.159315586090088,0.885041356086731,0.437401741743088,-0.0998131930828094,0.876826643943787,0.470332086086273,-0.267654329538345,0.845619261264801,0.461832344532013,-0.009155398234725,0.893359899520874,0.449248462915421,-0.267654329538345,0.845619261264801,0.461832344532013,-0.511714220046997,0.761099457740784,0.398592561483383,-0.47083368897438,0.766032695770264,0.437617868185043,0.706259191036224,0.677004337310791,0.207033976912498,0.672112882137299,0.687358558177948,0.275322258472443, +0.637507259845734,0.725578665733337,0.259075105190277,0.555991113185883,0.788590967655182,0.262674957513809,0.646117091178894,0.738522887229919,0.192656427621841,0.637507259845734,0.725578665733337,0.259075105190277,0.758150935173035,0.604945361614227,0.243409395217896,0.851085543632507,0.498769700527191,0.163957580924034,0.825121164321899,0.517062544822693,0.227642744779587,0.938232481479645,0.328345358371735,0.109127521514893,0.851085543632507,0.498769700527191,0.163957580924034,0.901633322238922,0.419955462217331,0.103415042161942,0.758150935173035,0.604945361614227,0.243409395217896,0.712359070777893,0.631084322929382,0.307045519351959,0.672112882137299,0.687358558177948,0.275322258472443,-0.825855731964111,0.446470558643341,0.344421595335007,-0.919818937778473,0.314502596855164,0.234565928578377,-0.848228871822357,0.41873174905777,0.324301511049271,-0.787233114242554,0.466529607772827,0.403254270553589,-0.770488619804382,0.503888428211212,0.390440046787262,-0.848228871822357,0.41873174905777,0.324301511049271,-0.709786474704742,0.492521196603775,0.50361293554306,-0.680203020572662,0.56591272354126,0.465903997421265,-0.787233114242554,0.466529607772827,0.403254270553589,0.530267596244812,0.342416167259216,0.775607645511627,0.600937366485596,0.319480210542679,0.732670783996582,0.40602308511734,0.45788300037384,0.790878176689148,0.40602308511734,0.45788300037384,0.790878176689148,0.26116144657135,0.488227128982544,0.832723736763,0.378113329410553,0.406171917915344,0.831898212432861,-0.731009006500244,0.444979727268219,0.517318785190582,-0.628184080123901,0.549940764904022,0.550408661365509,-0.709786474704742,0.492521196603775,0.50361293554306,-0.57852429151535,0.547211647033691,0.604870915412903,-0.544105887413025,0.607621312141418,0.578571438789368,-0.628184080123901,0.549940764904022,0.550408661365509,-0.544105887413025,0.607621312141418,0.578571438789368,-0.57852429151535,0.547211647033691,0.604870915412903,-0.51011598110199,0.605409026145935,0.610951244831085,-0.392163425683975,0.604910552501678,0.69303023815155, +-0.466302990913391,0.613103449344635,0.6377032995224,-0.487113237380981,0.570039868354797,0.661645829677582,-0.466302990913391,0.613103449344635,0.6377032995224,-0.51011598110199,0.605409026145935,0.610951244831085,-0.57852429151535,0.547211647033691,0.604870915412903,-0.276927828788757,0.798900663852692,0.533918082714081,-0.151554778218269,0.752554297447205,0.640853345394135,-0.360918819904327,0.837525367736816,0.41023001074791,-0.429028570652008,0.862834811210632,0.267302304506302,-0.383863806724548,0.84446108341217,0.373542338609695,-0.360918819904327,0.837525367736816,0.41023001074791,-0.429028570652008,0.862834811210632,0.267302304506302,-0.442334949970245,0.871755123138428,0.210671961307526,-0.383863806724548,0.84446108341217,0.373542338609695,-0.511341869831085,0.857872605323792,0.0508325845003128,-0.46557343006134,0.855300843715668,0.227380305528641,-0.442334949970245,0.871755123138428,0.210671961307526,-0.511341869831085,0.857872605323792,0.0508325845003128,-0.601589322090149,0.782873272895813,-0.158743664622307,-0.573977649211884,0.818601965904236,0.0209864564239979,-0.573977649211884,0.818601965904236,0.0209864564239979,-0.644067049026489,0.726614117622375,-0.239184871315956,-0.606313824653625,0.790479302406311,-0.0867516398429871,-0.606313824653625,0.790479302406311,-0.0867516398429871,-0.666723132133484,0.650707483291626,-0.363400429487228,-0.657613575458527,0.721205353736877,-0.21773162484169,-0.690818130970001,0.561285078525543,-0.455773174762726,-0.657613575458527,0.721205353736877,-0.21773162484169,-0.666723132133484,0.650707483291626,-0.363400429487228,-0.527705132961273,0.0681223496794701,-0.846691370010376,-0.551661312580109,0.172047913074493,-0.816130578517914,-0.494953453540802,0.061847273260355,-0.866715550422668,-0.666723132133484,0.650707483291626,-0.363400429487228,-0.658711910247803,0.561524212360382,-0.500788390636444,-0.660521626472473,0.469179302453995,-0.586158514022827,-0.635617733001709,0.397580206394196,-0.661755084991455,-0.658711910247803,0.561524212360382,-0.500788390636444,-0.65474408864975,0.501548230648041,-0.565472662448883, +-0.601247727870941,0.362778425216675,-0.711964070796967,-0.587620556354523,0.389685779809952,-0.709116995334625,-0.575878202915192,0.269976764917374,-0.77167135477066,-0.635617733001709,0.397580206394196,-0.661755084991455,-0.65474408864975,0.501548230648041,-0.565472662448883,-0.637403726577759,0.445638477802277,-0.628587961196899,-0.601247727870941,0.362778425216675,-0.711964070796967,-0.637403726577759,0.445638477802277,-0.628587961196899,-0.634137451648712,0.505336046218872,-0.585239410400391,-0.508451044559479,0.161097154021263,-0.845887243747711,-0.551661312580109,0.172047913074493,-0.816130578517914,-0.575878202915192,0.269976764917374,-0.77167135477066,0.402418792247772,0.826232969760895,0.394205629825592,0.29305562376976,0.880894601345062,0.371675908565521,0.377804607152939,0.859749853610992,0.343647629022598,0.482952743768692,0.817994296550751,0.312476873397827,0.4463130235672,0.826139807701111,0.343944072723389,0.377804607152939,0.859749853610992,0.343647629022598,0.609281122684479,0.731109380722046,0.307010412216187,0.482952743768692,0.817994296550751,0.312476873397827,0.555991113185883,0.788590967655182,0.262674957513809,0.29305562376976,0.880894601345062,0.371675908565521,0.402418792247772,0.826232969760895,0.394205629825592,0.261658042669296,0.860169470310211,0.437770932912827,0.159315586090088,0.885041356086731,0.437401741743088,0.261658042669296,0.860169470310211,0.437770932912827,0.150712102651596,0.860377073287964,0.486864477396011,-0.009155398234725,0.893359899520874,0.449248462915421,0.150712102651596,0.860377073287964,0.486864477396011,-0.0998131930828094,0.876826643943787,0.470332086086273,-0.298480838537216,0.844037592411041,0.445544183254242,-0.267654329538345,0.845619261264801,0.461832344532013,-0.0998131930828094,0.876826643943787,0.470332086086273,-0.267654329538345,0.845619261264801,0.461832344532013,-0.298480838537216,0.844037592411041,0.445544183254242,-0.511714220046997,0.761099457740784,0.398592561483383,0.609281122684479,0.731109380722046,0.307010412216187,0.637507259845734,0.725578665733337,0.259075105190277, +0.672112882137299,0.687358558177948,0.275322258472443,0.637507259845734,0.725578665733337,0.259075105190277,0.609281122684479,0.731109380722046,0.307010412216187,0.555991113185883,0.788590967655182,0.262674957513809,0.851085543632507,0.498769700527191,0.163957580924034,0.901952028274536,0.393876612186432,0.177040711045265,0.825121164321899,0.517062544822693,0.227642744779587,0.796214938163757,0.536249816417694,0.28013876080513,0.758150935173035,0.604945361614227,0.243409395217896,0.825121164321899,0.517062544822693,0.227642744779587,0.851085543632507,0.498769700527191,0.163957580924034,0.938232481479645,0.328345358371735,0.109127521514893,0.901952028274536,0.393876612186432,0.177040711045265,0.796214938163757,0.536249816417694,0.28013876080513,0.712359070777893,0.631084322929382,0.307045519351959,0.758150935173035,0.604945361614227,0.243409395217896,0.672112882137299,0.687358558177948,0.275322258472443,0.712359070777893,0.631084322929382,0.307045519351959,0.609281122684479,0.731109380722046,0.307010412216187,-0.919818937778473,0.314502596855164,0.234565928578377,-0.87627637386322,0.354456752538681,0.326343297958374,-0.848228871822357,0.41873174905777,0.324301511049271,-0.87627637386322,0.354456752538681,0.326343297958374,-0.787233114242554,0.466529607772827,0.403254270553589,-0.848228871822357,0.41873174905777,0.324301511049271,-0.811087369918823,0.390369892120361,0.435601234436035,-0.709786474704742,0.492521196603775,0.50361293554306,-0.787233114242554,0.466529607772827,0.403254270553589,0.378113329410553,0.406171917915344,0.831898212432861,0.530267596244812,0.342416167259216,0.775607645511627,0.40602308511734,0.45788300037384,0.790878176689148,-0.677463173866272,0.482017248868942,0.555610358715057,-0.628184080123901,0.549940764904022,0.550408661365509,-0.731009006500244,0.444979727268219,0.517318785190582,-0.811087369918823,0.390369892120361,0.435601234436035,-0.731009006500244,0.444979727268219,0.517318785190582,-0.709786474704742,0.492521196603775,0.50361293554306,-0.677463173866272,0.482017248868942,0.555610358715057, +-0.57852429151535,0.547211647033691,0.604870915412903,-0.628184080123901,0.549940764904022,0.550408661365509,-0.487113237380981,0.570039868354797,0.661645829677582,-0.466302990913391,0.613103449344635,0.6377032995224,-0.57852429151535,0.547211647033691,0.604870915412903,-0.360918819904327,0.837525367736816,0.41023001074791,-0.151554778218269,0.752554297447205,0.640853345394135,-0.23018179833889,0.768166780471802,0.59744119644165,-0.429028570652008,0.862834811210632,0.267302304506302,-0.360918819904327,0.837525367736816,0.41023001074791,-0.458230584859848,0.863097190856934,0.212338849902153,-0.487231105566025,0.86642462015152,0.109151877462864,-0.442334949970245,0.871755123138428,0.210671961307526,-0.429028570652008,0.862834811210632,0.267302304506302,-0.511341869831085,0.857872605323792,0.0508325845003128,-0.442334949970245,0.871755123138428,0.210671961307526,-0.487231105566025,0.86642462015152,0.109151877462864,-0.601589322090149,0.782873272895813,-0.158743664622307,-0.511341869831085,0.857872605323792,0.0508325845003128,-0.558522820472717,0.822829306125641,-0.104900680482388,-0.601589322090149,0.782873272895813,-0.158743664622307,-0.644067049026489,0.726614117622375,-0.239184871315956,-0.573977649211884,0.818601965904236,0.0209864564239979,-0.644067049026489,0.726614117622375,-0.239184871315956,-0.666723132133484,0.650707483291626,-0.363400429487228,-0.606313824653625,0.790479302406311,-0.0867516398429871,-0.508451044559479,0.161097154021263,-0.845887243747711,-0.494953453540802,0.061847273260355,-0.866715550422668,-0.551661312580109,0.172047913074493,-0.816130578517914,-0.666723132133484,0.650707483291626,-0.363400429487228,-0.644067049026489,0.726614117622375,-0.239184871315956,-0.658711910247803,0.561524212360382,-0.500788390636444,-0.658711910247803,0.561524212360382,-0.500788390636444,-0.65696918964386,0.645508408546448,-0.389500111341476,-0.65474408864975,0.501548230648041,-0.565472662448883,-0.601247727870941,0.362778425216675,-0.711964070796967,-0.592806696891785,0.465836554765701,-0.656944692134857,-0.587620556354523,0.389685779809952,-0.709116995334625, +-0.575878202915192,0.269976764917374,-0.77167135477066,-0.587620556354523,0.389685779809952,-0.709116995334625,-0.583683252334595,0.341956794261932,-0.736464023590088,-0.65474408864975,0.501548230648041,-0.565472662448883,-0.653972387313843,0.552564799785614,-0.516712725162506,-0.637403726577759,0.445638477802277,-0.628587961196899,-0.634137451648712,0.505336046218872,-0.585239410400391,-0.637403726577759,0.445638477802277,-0.628587961196899,-0.653972387313843,0.552564799785614,-0.516712725162506,-0.592806696891785,0.465836554765701,-0.656944692134857,-0.601247727870941,0.362778425216675,-0.711964070796967,-0.634137451648712,0.505336046218872,-0.585239410400391,-0.508451044559479,0.161097154021263,-0.845887243747711,-0.575878202915192,0.269976764917374,-0.77167135477066,-0.54646635055542,0.258401244878769,-0.796619832515717,0.4463130235672,0.826139807701111,0.343944072723389,0.402418792247772,0.826232969760895,0.394205629825592,0.377804607152939,0.859749853610992,0.343647629022598,0.482952743768692,0.817994296550751,0.312476873397827,0.512023568153381,0.767262101173401,0.386187255382538,0.4463130235672,0.826139807701111,0.343944072723389,0.609281122684479,0.731109380722046,0.307010412216187,0.584149599075317,0.723407447338104,0.368036389350891,0.482952743768692,0.817994296550751,0.312476873397827,0.402418792247772,0.826232969760895,0.394205629825592,0.348606705665588,0.831585645675659,0.432363927364349,0.261658042669296,0.860169470310211,0.437770932912827,0.261658042669296,0.860169470310211,0.437770932912827,0.245644748210907,0.825435876846313,0.508246123790741,0.150712102651596,0.860377073287964,0.486864477396011,0.150712102651596,0.860377073287964,0.486864477396011,0.0905180051922798,0.866768658161163,0.49042683839798,-0.0998131930828094,0.876826643943787,0.470332086086273,-0.350924611091614,0.828971028327942,0.435498356819153,-0.298480838537216,0.844037592411041,0.445544183254242,-0.0998131930828094,0.876826643943787,0.470332086086273,-0.298480838537216,0.844037592411041,0.445544183254242,-0.350924611091614,0.828971028327942,0.435498356819153, +-0.511714220046997,0.761099457740784,0.398592561483383,0.87881463766098,0.423620402812958,0.21961435675621,0.825121164321899,0.517062544822693,0.227642744779587,0.901952028274536,0.393876612186432,0.177040711045265,0.796214938163757,0.536249816417694,0.28013876080513,0.825121164321899,0.517062544822693,0.227642744779587,0.87881463766098,0.423620402812958,0.21961435675621,0.796214938163757,0.536249816417694,0.28013876080513,0.773859202861786,0.540296494960785,0.330486744642258,0.712359070777893,0.631084322929382,0.307045519351959,0.712359070777893,0.631084322929382,0.307045519351959,0.691468238830566,0.626133263111115,0.360317438840866,0.609281122684479,0.731109380722046,0.307010412216187,-0.919818937778473,0.314502596855164,0.234565928578377,-0.924719512462616,0.282402098178864,0.255230814218521,-0.87627637386322,0.354456752538681,0.326343297958374,-0.787233114242554,0.466529607772827,0.403254270553589,-0.87627637386322,0.354456752538681,0.326343297958374,-0.811087369918823,0.390369892120361,0.435601234436035,0.530267596244812,0.342416167259216,0.775607645511627,0.378113329410553,0.406171917915344,0.831898212432861,0.532677888870239,0.303108781576157,0.790176749229431,-0.360918819904327,0.837525367736816,0.41023001074791,-0.23018179833889,0.768166780471802,0.59744119644165,-0.427334904670715,0.850153744220734,0.307609260082245,-0.427334904670715,0.850153744220734,0.307609260082245,-0.458230584859848,0.863097190856934,0.212338849902153,-0.360918819904327,0.837525367736816,0.41023001074791,-0.429028570652008,0.862834811210632,0.267302304506302,-0.458230584859848,0.863097190856934,0.212338849902153,-0.487231105566025,0.86642462015152,0.109151877462864,-0.487231105566025,0.86642462015152,0.109151877462864,-0.558522820472717,0.822829306125641,-0.104900680482388,-0.511341869831085,0.857872605323792,0.0508325845003128,-0.601589322090149,0.782873272895813,-0.158743664622307,-0.558522820472717,0.822829306125641,-0.104900680482388,-0.627122104167938,0.686923921108246,-0.367223739624023,-0.601589322090149,0.782873272895813,-0.158743664622307, +-0.65696918964386,0.645508408546448,-0.389500111341476,-0.644067049026489,0.726614117622375,-0.239184871315956,-0.508451044559479,0.161097154021263,-0.845887243747711,-0.407360076904297,0.0100348247215152,-0.913212478160858,-0.494953453540802,0.061847273260355,-0.866715550422668,-0.658711910247803,0.561524212360382,-0.500788390636444,-0.644067049026489,0.726614117622375,-0.239184871315956,-0.65696918964386,0.645508408546448,-0.389500111341476,-0.65474408864975,0.501548230648041,-0.565472662448883,-0.65696918964386,0.645508408546448,-0.389500111341476,-0.653972387313843,0.552564799785614,-0.516712725162506,-0.594453692436218,0.528504967689514,-0.606058657169342,-0.587620556354523,0.389685779809952,-0.709116995334625,-0.592806696891785,0.465836554765701,-0.656944692134857,-0.597305059432983,0.441627860069275,-0.669471025466919,-0.583683252334595,0.341956794261932,-0.736464023590088,-0.587620556354523,0.389685779809952,-0.709116995334625,-0.575878202915192,0.269976764917374,-0.77167135477066,-0.583683252334595,0.341956794261932,-0.736464023590088,-0.54646635055542,0.258401244878769,-0.796619832515717,-0.627122104167938,0.686923921108246,-0.367223739624023,-0.634137451648712,0.505336046218872,-0.585239410400391,-0.653972387313843,0.552564799785614,-0.516712725162506,-0.592806696891785,0.465836554765701,-0.656944692134857,-0.634137451648712,0.505336046218872,-0.585239410400391,-0.604511678218842,0.609216451644897,-0.513245165348053,-0.54646635055542,0.258401244878769,-0.796619832515717,-0.514981985092163,0.20886655151844,-0.83136522769928,-0.508451044559479,0.161097154021263,-0.845887243747711,0.4463130235672,0.826139807701111,0.343944072723389,0.512023568153381,0.767262101173401,0.386187255382538,0.402418792247772,0.826232969760895,0.394205629825592,0.482952743768692,0.817994296550751,0.312476873397827,0.584149599075317,0.723407447338104,0.368036389350891,0.512023568153381,0.767262101173401,0.386187255382538,0.584149599075317,0.723407447338104,0.368036389350891,0.609281122684479,0.731109380722046,0.307010412216187,0.691468238830566,0.626133263111115,0.360317438840866, +0.402418792247772,0.826232969760895,0.394205629825592,0.426951110363007,0.776730895042419,0.46303528547287,0.348606705665588,0.831585645675659,0.432363927364349,0.261658042669296,0.860169470310211,0.437770932912827,0.348606705665588,0.831585645675659,0.432363927364349,0.349624037742615,0.797326624393463,0.491968661546707,0.261658042669296,0.860169470310211,0.437770932912827,0.349624037742615,0.797326624393463,0.491968661546707,0.245644748210907,0.825435876846313,0.508246123790741,0.0905180051922798,0.866768658161163,0.49042683839798,0.150712102651596,0.860377073287964,0.486864477396011,0.245644748210907,0.825435876846313,0.508246123790741,-0.210136875510216,0.90447986125946,0.371158480644226,-0.0998131930828094,0.876826643943787,0.470332086086273,0.0905180051922798,0.866768658161163,0.49042683839798,-0.350924611091614,0.828971028327942,0.435498356819153,-0.0998131930828094,0.876826643943787,0.470332086086273,-0.210136875510216,0.90447986125946,0.371158480644226,0.836996853351593,0.447030484676361,0.315594613552094,0.796214938163757,0.536249816417694,0.28013876080513,0.87881463766098,0.423620402812958,0.21961435675621,0.796214938163757,0.536249816417694,0.28013876080513,0.836996853351593,0.447030484676361,0.315594613552094,0.773859202861786,0.540296494960785,0.330486744642258,0.712359070777893,0.631084322929382,0.307045519351959,0.773859202861786,0.540296494960785,0.330486744642258,0.691468238830566,0.626133263111115,0.360317438840866,-0.924719512462616,0.282402098178864,0.255230814218521,-0.919818937778473,0.314502596855164,0.234565928578377,-0.956210970878601,0.216835767030716,0.196577414870262,-0.906066536903381,0.269435584545136,0.326263338327408,-0.87627637386322,0.354456752538681,0.326343297958374,-0.924719512462616,0.282402098178864,0.255230814218521,-0.811087369918823,0.390369892120361,0.435601234436035,-0.87627637386322,0.354456752538681,0.326343297958374,-0.906066536903381,0.269435584545136,0.326263338327408,-0.427334904670715,0.850153744220734,0.307609260082245,-0.23018179833889,0.768166780471802,0.59744119644165, +-0.321639955043793,0.809638142585754,0.490951865911484,-0.427334904670715,0.850153744220734,0.307609260082245,-0.484741598367691,0.867333590984344,0.11295074224472,-0.458230584859848,0.863097190856934,0.212338849902153,-0.487231105566025,0.86642462015152,0.109151877462864,-0.458230584859848,0.863097190856934,0.212338849902153,-0.524860560894012,0.851132750511169,0.00971077475696802,-0.487231105566025,0.86642462015152,0.109151877462864,-0.524860560894012,0.851132750511169,0.00971077475696802,-0.558522820472717,0.822829306125641,-0.104900680482388,-0.558522820472717,0.822829306125641,-0.104900680482388,-0.582898199558258,0.769349873065948,-0.261400640010834,-0.627122104167938,0.686923921108246,-0.367223739624023,-0.627122104167938,0.686923921108246,-0.367223739624023,-0.65696918964386,0.645508408546448,-0.389500111341476,-0.601589322090149,0.782873272895813,-0.158743664622307,-0.459750056266785,0.0972322821617126,-0.882709264755249,-0.407360076904297,0.0100348247215152,-0.913212478160858,-0.508451044559479,0.161097154021263,-0.845887243747711,-0.627122104167938,0.686923921108246,-0.367223739624023,-0.653972387313843,0.552564799785614,-0.516712725162506,-0.65696918964386,0.645508408546448,-0.389500111341476,-0.597305059432983,0.441627860069275,-0.669471025466919,-0.587620556354523,0.389685779809952,-0.709116995334625,-0.594453692436218,0.528504967689514,-0.606058657169342,-0.592806696891785,0.465836554765701,-0.656944692134857,-0.604511678218842,0.609216451644897,-0.513245165348053,-0.594453692436218,0.528504967689514,-0.606058657169342,-0.583683252334595,0.341956794261932,-0.736464023590088,-0.597305059432983,0.441627860069275,-0.669471025466919,-0.572552919387817,0.337881207466125,-0.747006893157959,-0.583683252334595,0.341956794261932,-0.736464023590088,-0.572552919387817,0.337881207466125,-0.747006893157959,-0.54646635055542,0.258401244878769,-0.796619832515717,-0.627122104167938,0.686923921108246,-0.367223739624023,-0.604511678218842,0.609216451644897,-0.513245165348053,-0.634137451648712,0.505336046218872,-0.585239410400391, +-0.54646635055542,0.258401244878769,-0.796619832515717,-0.572552919387817,0.337881207466125,-0.747006893157959,-0.514981985092163,0.20886655151844,-0.83136522769928,-0.508451044559479,0.161097154021263,-0.845887243747711,-0.514981985092163,0.20886655151844,-0.83136522769928,-0.459750056266785,0.0972322821617126,-0.882709264755249,0.402418792247772,0.826232969760895,0.394205629825592,0.512023568153381,0.767262101173401,0.386187255382538,0.497952878475189,0.739930629730225,0.452266991138458,0.596405208110809,0.683103919029236,0.421508848667145,0.512023568153381,0.767262101173401,0.386187255382538,0.584149599075317,0.723407447338104,0.368036389350891,0.584149599075317,0.723407447338104,0.368036389350891,0.691468238830566,0.626133263111115,0.360317438840866,0.660298705101013,0.637327075004578,0.397265255451202,0.497952878475189,0.739930629730225,0.452266991138458,0.426951110363007,0.776730895042419,0.46303528547287,0.402418792247772,0.826232969760895,0.394205629825592,0.426951110363007,0.776730895042419,0.46303528547287,0.349624037742615,0.797326624393463,0.491968661546707,0.348606705665588,0.831585645675659,0.432363927364349,0.349624037742615,0.797326624393463,0.491968661546707,0.300776153802872,0.795089304447174,0.526655972003937,0.245644748210907,0.825435876846313,0.508246123790741,0.300776153802872,0.795089304447174,0.526655972003937,0.0905180051922798,0.866768658161163,0.49042683839798,0.245644748210907,0.825435876846313,0.508246123790741,0.836996853351593,0.447030484676361,0.315594613552094,0.750735998153687,0.535763442516327,0.386461913585663,0.773859202861786,0.540296494960785,0.330486744642258,0.691468238830566,0.626133263111115,0.360317438840866,0.773859202861786,0.540296494960785,0.330486744642258,0.750735998153687,0.535763442516327,0.386461913585663,-0.906066536903381,0.269435584545136,0.326263338327408,-0.924719512462616,0.282402098178864,0.255230814218521,-0.956210970878601,0.216835767030716,0.196577414870262,-0.427334904670715,0.850153744220734,0.307609260082245,-0.321639955043793,0.809638142585754,0.490951865911484, +-0.462112188339233,0.862537980079651,0.206107869744301,-0.484741598367691,0.867333590984344,0.11295074224472,-0.427334904670715,0.850153744220734,0.307609260082245,-0.462112188339233,0.862537980079651,0.206107869744301,-0.524860560894012,0.851132750511169,0.00971077475696802,-0.458230584859848,0.863097190856934,0.212338849902153,-0.484741598367691,0.867333590984344,0.11295074224472,-0.558522820472717,0.822829306125641,-0.104900680482388,-0.524860560894012,0.851132750511169,0.00971077475696802,-0.582898199558258,0.769349873065948,-0.261400640010834,-0.627122104167938,0.686923921108246,-0.367223739624023,-0.582898199558258,0.769349873065948,-0.261400640010834,-0.604511678218842,0.609216451644897,-0.513245165348053,-0.459750056266785,0.0972322821617126,-0.882709264755249,-0.364160031080246,-0.0694103538990021,-0.928746223449707,-0.407360076904297,0.0100348247215152,-0.913212478160858,-0.597305059432983,0.441627860069275,-0.669471025466919,-0.594453692436218,0.528504967689514,-0.606058657169342,-0.601918816566467,0.563291907310486,-0.566035151481628,-0.604511678218842,0.609216451644897,-0.513245165348053,-0.58868396282196,0.693271458148956,-0.415723115205765,-0.594453692436218,0.528504967689514,-0.606058657169342,-0.603194713592529,0.430930435657501,-0.671159386634827,-0.572552919387817,0.337881207466125,-0.747006893157959,-0.597305059432983,0.441627860069275,-0.669471025466919,-0.570390641689301,0.277815312147141,-0.772963762283325,-0.514981985092163,0.20886655151844,-0.83136522769928,-0.572552919387817,0.337881207466125,-0.747006893157959,-0.514981985092163,0.20886655151844,-0.83136522769928,-0.532723307609558,0.177413240075111,-0.827484309673309,-0.459750056266785,0.0972322821617126,-0.882709264755249,0.497952878475189,0.739930629730225,0.452266991138458,0.512023568153381,0.767262101173401,0.386187255382538,0.591892719268799,0.669566452503204,0.448713272809982,0.591892719268799,0.669566452503204,0.448713272809982,0.512023568153381,0.767262101173401,0.386187255382538,0.596405208110809,0.683103919029236,0.421508848667145, +0.584149599075317,0.723407447338104,0.368036389350891,0.660298705101013,0.637327075004578,0.397265255451202,0.596405208110809,0.683103919029236,0.421508848667145,0.691468238830566,0.626133263111115,0.360317438840866,0.750735998153687,0.535763442516327,0.386461913585663,0.660298705101013,0.637327075004578,0.397265255451202,0.426951110363007,0.776730895042419,0.46303528547287,0.497952878475189,0.739930629730225,0.452266991138458,0.540722846984863,0.683929264545441,0.489754438400269,0.349624037742615,0.797326624393463,0.491968661546707,0.426951110363007,0.776730895042419,0.46303528547287,0.452442407608032,0.731148600578308,0.510605096817017,0.300776153802872,0.795089304447174,0.526655972003937,0.349624037742615,0.797326624393463,0.491968661546707,0.409930467605591,0.745723426342011,0.525217592716217,0.0905180051922798,0.866768658161163,0.49042683839798,0.300776153802872,0.795089304447174,0.526655972003937,0.142591893672943,0.888154745101929,0.436862170696259,0.828401207923889,0.41530305147171,0.37586522102356,0.750735998153687,0.535763442516327,0.386461913585663,0.836996853351593,0.447030484676361,0.315594613552094,-0.342672348022461,0.86136132478714,0.375009626150131,-0.462112188339233,0.862537980079651,0.206107869744301,-0.321639955043793,0.809638142585754,0.490951865911484,-0.484741598367691,0.867333590984344,0.11295074224472,-0.462112188339233,0.862537980079651,0.206107869744301,-0.515995681285858,0.856571733951569,0.00577075034379959,-0.524860560894012,0.851132750511169,0.00971077475696802,-0.484741598367691,0.867333590984344,0.11295074224472,-0.545130968093872,0.828467667102814,-0.128348886966705,-0.545130968093872,0.828467667102814,-0.128348886966705,-0.582898199558258,0.769349873065948,-0.261400640010834,-0.524860560894012,0.851132750511169,0.00971077475696802,-0.604511678218842,0.609216451644897,-0.513245165348053,-0.582898199558258,0.769349873065948,-0.261400640010834,-0.58868396282196,0.693271458148956,-0.415723115205765,-0.364160031080246,-0.0694103538990021,-0.928746223449707,-0.459750056266785,0.0972322821617126,-0.882709264755249, +-0.418920934200287,-0.0193157885223627,-0.907817184925079,-0.601918816566467,0.563291907310486,-0.566035151481628,-0.594453692436218,0.528504967689514,-0.606058657169342,-0.598351895809174,0.634355545043945,-0.489456743001938,-0.613148272037506,0.53017270565033,-0.585632920265198,-0.597305059432983,0.441627860069275,-0.669471025466919,-0.601918816566467,0.563291907310486,-0.566035151481628,-0.58868396282196,0.693271458148956,-0.415723115205765,-0.598351895809174,0.634355545043945,-0.489456743001938,-0.594453692436218,0.528504967689514,-0.606058657169342,-0.603970468044281,0.384756147861481,-0.697984397411346,-0.572552919387817,0.337881207466125,-0.747006893157959,-0.603194713592529,0.430930435657501,-0.671159386634827,-0.603194713592529,0.430930435657501,-0.671159386634827,-0.597305059432983,0.441627860069275,-0.669471025466919,-0.613148272037506,0.53017270565033,-0.585632920265198,-0.514981985092163,0.20886655151844,-0.83136522769928,-0.570390641689301,0.277815312147141,-0.772963762283325,-0.532723307609558,0.177413240075111,-0.827484309673309,-0.570390641689301,0.277815312147141,-0.772963762283325,-0.572552919387817,0.337881207466125,-0.747006893157959,-0.603970468044281,0.384756147861481,-0.697984397411346,-0.498001843690872,0.102496072649956,-0.86109733581543,-0.459750056266785,0.0972322821617126,-0.882709264755249,-0.532723307609558,0.177413240075111,-0.827484309673309,0.497952878475189,0.739930629730225,0.452266991138458,0.591892719268799,0.669566452503204,0.448713272809982,0.540722846984863,0.683929264545441,0.489754438400269,0.596405208110809,0.683103919029236,0.421508848667145,0.65297132730484,0.630314409732819,0.419919222593308,0.591892719268799,0.669566452503204,0.448713272809982,0.596405208110809,0.683103919029236,0.421508848667145,0.660298705101013,0.637327075004578,0.397265255451202,0.65297132730484,0.630314409732819,0.419919222593308,0.660298705101013,0.637327075004578,0.397265255451202,0.750735998153687,0.535763442516327,0.386461913585663,0.65297132730484,0.630314409732819,0.419919222593308,0.540722846984863,0.683929264545441,0.489754438400269, +0.452442407608032,0.731148600578308,0.510605096817017,0.426951110363007,0.776730895042419,0.46303528547287,0.349624037742615,0.797326624393463,0.491968661546707,0.452442407608032,0.731148600578308,0.510605096817017,0.409930467605591,0.745723426342011,0.525217592716217,0.316875010728836,0.818814098834991,0.478678941726685,0.300776153802872,0.795089304447174,0.526655972003937,0.409930467605591,0.745723426342011,0.525217592716217,0.316875010728836,0.818814098834991,0.478678941726685,0.142591893672943,0.888154745101929,0.436862170696259,0.300776153802872,0.795089304447174,0.526655972003937,0.828401207923889,0.41530305147171,0.37586522102356,0.775676548480988,0.477862000465393,0.412278771400452,0.750735998153687,0.535763442516327,0.386461913585663,-0.462112188339233,0.862537980079651,0.206107869744301,-0.342672348022461,0.86136132478714,0.375009626150131,-0.503922522068024,0.855032205581665,0.122400559484959,-0.515995681285858,0.856571733951569,0.00577075034379959,-0.462112188339233,0.862537980079651,0.206107869744301,-0.503922522068024,0.855032205581665,0.122400559484959,-0.484741598367691,0.867333590984344,0.11295074224472,-0.515995681285858,0.856571733951569,0.00577075034379959,-0.545130968093872,0.828467667102814,-0.128348886966705,-0.545130968093872,0.828467667102814,-0.128348886966705,-0.58868396282196,0.693271458148956,-0.415723115205765,-0.582898199558258,0.769349873065948,-0.261400640010834,-0.498001843690872,0.102496072649956,-0.86109733581543,-0.418920934200287,-0.0193157885223627,-0.907817184925079,-0.459750056266785,0.0972322821617126,-0.882709264755249,-0.601918816566467,0.563291907310486,-0.566035151481628,-0.598351895809174,0.634355545043945,-0.489456743001938,-0.593866527080536,0.705117166042328,-0.387468874454498,-0.613148272037506,0.53017270565033,-0.585632920265198,-0.601918816566467,0.563291907310486,-0.566035151481628,-0.6094109416008,0.638543128967285,-0.469979584217072,-0.58868396282196,0.693271458148956,-0.415723115205765,-0.571420788764954,0.776230871677399,-0.266352951526642,-0.598351895809174,0.634355545043945,-0.489456743001938, +-0.603970468044281,0.384756147861481,-0.697984397411346,-0.603194713592529,0.430930435657501,-0.671159386634827,-0.624941110610962,0.498441398143768,-0.600836575031281,-0.603194713592529,0.430930435657501,-0.671159386634827,-0.613148272037506,0.53017270565033,-0.585632920265198,-0.624941110610962,0.498441398143768,-0.600836575031281,-0.5747309923172,0.206217020750046,-0.791933536529541,-0.532723307609558,0.177413240075111,-0.827484309673309,-0.570390641689301,0.277815312147141,-0.772963762283325,-0.603970468044281,0.384756147861481,-0.697984397411346,-0.633405029773712,0.383961349725723,-0.67184191942215,-0.570390641689301,0.277815312147141,-0.772963762283325,-0.5747309923172,0.206217020750046,-0.791933536529541,-0.498001843690872,0.102496072649956,-0.86109733581543,-0.532723307609558,0.177413240075111,-0.827484309673309,0.540722846984863,0.683929264545441,0.489754438400269,0.591892719268799,0.669566452503204,0.448713272809982,0.670316934585571,0.576715052127838,0.466984778642654,0.698527634143829,0.562221467494965,0.442680418491364,0.591892719268799,0.669566452503204,0.448713272809982,0.65297132730484,0.630314409732819,0.419919222593308,0.698527634143829,0.562221467494965,0.442680418491364,0.65297132730484,0.630314409732819,0.419919222593308,0.750735998153687,0.535763442516327,0.386461913585663,0.540722846984863,0.683929264545441,0.489754438400269,0.549006879329681,0.66605281829834,0.504940450191498,0.452442407608032,0.731148600578308,0.510605096817017,0.452442407608032,0.731148600578308,0.510605096817017,0.488112449645996,0.702195167541504,0.518331944942474,0.409930467605591,0.745723426342011,0.525217592716217,0.458853900432587,0.733976662158966,0.500730693340302,0.316875010728836,0.818814098834991,0.478678941726685,0.409930467605591,0.745723426342011,0.525217592716217,0.775676548480988,0.477862000465393,0.412278771400452,0.828401207923889,0.41530305147171,0.37586522102356,0.759390354156494,0.483645588159561,0.435216188430786,0.775676548480988,0.477862000465393,0.412278771400452,0.698527634143829,0.562221467494965,0.442680418491364, +0.750735998153687,0.535763442516327,0.386461913585663,-0.454541802406311,0.845846235752106,0.279169917106628,-0.503922522068024,0.855032205581665,0.122400559484959,-0.342672348022461,0.86136132478714,0.375009626150131,-0.515995681285858,0.856571733951569,0.00577075034379959,-0.503922522068024,0.855032205581665,0.122400559484959,-0.552923500537872,0.825827360153198,-0.110836073756218,-0.545130968093872,0.828467667102814,-0.128348886966705,-0.515995681285858,0.856571733951569,0.00577075034379959,-0.571420788764954,0.776230871677399,-0.266352951526642,-0.545130968093872,0.828467667102814,-0.128348886966705,-0.571420788764954,0.776230871677399,-0.266352951526642,-0.58868396282196,0.693271458148956,-0.415723115205765,-0.418920934200287,-0.0193157885223627,-0.907817184925079,-0.498001843690872,0.102496072649956,-0.86109733581543,-0.439672410488129,-0.0124896224588156,-0.898071348667145,-0.571420788764954,0.776230871677399,-0.266352951526642,-0.593866527080536,0.705117166042328,-0.387468874454498,-0.598351895809174,0.634355545043945,-0.489456743001938,-0.6094109416008,0.638543128967285,-0.469979584217072,-0.601918816566467,0.563291907310486,-0.566035151481628,-0.593866527080536,0.705117166042328,-0.387468874454498,-0.614745318889618,0.655145943164825,-0.439171701669693,-0.613148272037506,0.53017270565033,-0.585632920265198,-0.6094109416008,0.638543128967285,-0.469979584217072,-0.624941110610962,0.498441398143768,-0.600836575031281,-0.633405029773712,0.383961349725723,-0.67184191942215,-0.603970468044281,0.384756147861481,-0.697984397411346,-0.613148272037506,0.53017270565033,-0.585632920265198,-0.631432056427002,0.601221203804016,-0.489720791578293,-0.624941110610962,0.498441398143768,-0.600836575031281,-0.633405029773712,0.383961349725723,-0.67184191942215,-0.5747309923172,0.206217020750046,-0.791933536529541,-0.570390641689301,0.277815312147141,-0.772963762283325,-0.5747309923172,0.206217020750046,-0.791933536529541,-0.52548348903656,0.128259256482124,-0.841080546379089,-0.498001843690872,0.102496072649956,-0.86109733581543, +0.698527634143829,0.562221467494965,0.442680418491364,0.670316934585571,0.576715052127838,0.466984778642654,0.591892719268799,0.669566452503204,0.448713272809982,0.64325624704361,0.586629211902618,0.492023944854736,0.540722846984863,0.683929264545441,0.489754438400269,0.670316934585571,0.576715052127838,0.466984778642654,0.64325624704361,0.586629211902618,0.492023944854736,0.549006879329681,0.66605281829834,0.504940450191498,0.540722846984863,0.683929264545441,0.489754438400269,0.488112449645996,0.702195167541504,0.518331944942474,0.452442407608032,0.731148600578308,0.510605096817017,0.549006879329681,0.66605281829834,0.504940450191498,0.458853900432587,0.733976662158966,0.500730693340302,0.409930467605591,0.745723426342011,0.525217592716217,0.488112449645996,0.702195167541504,0.518331944942474,0.759390354156494,0.483645588159561,0.435216188430786,0.828401207923889,0.41530305147171,0.37586522102356,0.810283303260803,0.43376213312149,0.394070088863373,0.759390354156494,0.483645588159561,0.435216188430786,0.698527634143829,0.562221467494965,0.442680418491364,0.775676548480988,0.477862000465393,0.412278771400452,-0.538090527057648,0.84279590845108,0.0123941134661436,-0.503922522068024,0.855032205581665,0.122400559484959,-0.454541802406311,0.845846235752106,0.279169917106628,-0.538090527057648,0.84279590845108,0.0123941134661436,-0.552923500537872,0.825827360153198,-0.110836073756218,-0.503922522068024,0.855032205581665,0.122400559484959,-0.571420788764954,0.776230871677399,-0.266352951526642,-0.515995681285858,0.856571733951569,0.00577075034379959,-0.552923500537872,0.825827360153198,-0.110836073756218,-0.481568545103073,0.0376892127096653,-0.875597596168518,-0.439672410488129,-0.0124896224588156,-0.898071348667145,-0.498001843690872,0.102496072649956,-0.86109733581543,-0.418920934200287,-0.0193157885223627,-0.907817184925079,-0.439672410488129,-0.0124896224588156,-0.898071348667145,-0.368102520704269,-0.141905561089516,-0.918892383575439,-0.571420788764954,0.776230871677399,-0.266352951526642,-0.552923500537872,0.825827360153198,-0.110836073756218, +-0.593866527080536,0.705117166042328,-0.387468874454498,-0.578608989715576,0.777478396892548,-0.246452838182449,-0.6094109416008,0.638543128967285,-0.469979584217072,-0.593866527080536,0.705117166042328,-0.387468874454498,-0.613148272037506,0.53017270565033,-0.585632920265198,-0.614745318889618,0.655145943164825,-0.439171701669693,-0.631432056427002,0.601221203804016,-0.489720791578293,-0.614745318889618,0.655145943164825,-0.439171701669693,-0.6094109416008,0.638543128967285,-0.469979584217072,-0.595498621463776,0.733287632465363,-0.328132003545761,-0.624941110610962,0.498441398143768,-0.600836575031281,-0.671700716018677,0.542140007019043,-0.504878342151642,-0.633405029773712,0.383961349725723,-0.67184191942215,-0.624941110610962,0.498441398143768,-0.600836575031281,-0.631432056427002,0.601221203804016,-0.489720791578293,-0.645511031150818,0.620466947555542,-0.445349454879761,-0.636881828308105,0.28457710146904,-0.716517448425293,-0.5747309923172,0.206217020750046,-0.791933536529541,-0.633405029773712,0.383961349725723,-0.67184191942215,-0.5747309923172,0.206217020750046,-0.791933536529541,-0.527621626853943,0.0734969079494476,-0.846293985843658,-0.52548348903656,0.128259256482124,-0.841080546379089,-0.52548348903656,0.128259256482124,-0.841080546379089,-0.481568545103073,0.0376892127096653,-0.875597596168518,-0.498001843690872,0.102496072649956,-0.86109733581543,0.759390354156494,0.483645588159561,0.435216188430786,0.670316934585571,0.576715052127838,0.466984778642654,0.698527634143829,0.562221467494965,0.442680418491364,0.64325624704361,0.586629211902618,0.492023944854736,0.670316934585571,0.576715052127838,0.466984778642654,0.731936037540436,0.512130737304688,0.449434727430344,0.549006879329681,0.66605281829834,0.504940450191498,0.64325624704361,0.586629211902618,0.492023944854736,0.612678110599518,0.609837651252747,0.50271600484848,0.552429914474487,0.681873083114624,0.479447722434998,0.488112449645996,0.702195167541504,0.518331944942474,0.549006879329681,0.66605281829834,0.504940450191498,0.458853900432587,0.733976662158966,0.500730693340302, +0.488112449645996,0.702195167541504,0.518331944942474,0.552429914474487,0.681873083114624,0.479447722434998,0.810283303260803,0.43376213312149,0.394070088863373,0.828401207923889,0.41530305147171,0.37586522102356,0.890762150287628,0.310849130153656,0.331535071134567,0.759390354156494,0.483645588159561,0.435216188430786,0.810283303260803,0.43376213312149,0.394070088863373,0.731936037540436,0.512130737304688,0.449434727430344,-0.454541802406311,0.845846235752106,0.279169917106628,-0.495883941650391,0.856540560722351,0.14295893907547,-0.538090527057648,0.84279590845108,0.0123941134661436,-0.552923500537872,0.825827360153198,-0.110836073756218,-0.538090527057648,0.84279590845108,0.0123941134661436,-0.578608989715576,0.777478396892548,-0.246452838182449,-0.390964508056641,-0.116596542298794,-0.912990629673004,-0.439672410488129,-0.0124896224588156,-0.898071348667145,-0.481568545103073,0.0376892127096653,-0.875597596168518,-0.389855921268463,-0.117274388670921,-0.913377821445465,-0.368102520704269,-0.141905561089516,-0.918892383575439,-0.439672410488129,-0.0124896224588156,-0.898071348667145,-0.578608989715576,0.777478396892548,-0.246452838182449,-0.593866527080536,0.705117166042328,-0.387468874454498,-0.552923500537872,0.825827360153198,-0.110836073756218,-0.595498621463776,0.733287632465363,-0.328132003545761,-0.6094109416008,0.638543128967285,-0.469979584217072,-0.578608989715576,0.777478396892548,-0.246452838182449,-0.632303059101105,0.706325948238373,-0.318270772695541,-0.631432056427002,0.601221203804016,-0.489720791578293,-0.614745318889618,0.655145943164825,-0.439171701669693,-0.614745318889618,0.655145943164825,-0.439171701669693,-0.595498621463776,0.733287632465363,-0.328132003545761,-0.604365050792694,0.768926620483398,-0.208553537726402,-0.671700716018677,0.542140007019043,-0.504878342151642,-0.624941110610962,0.498441398143768,-0.600836575031281,-0.645511031150818,0.620466947555542,-0.445349454879761,-0.680809378623962,0.463560372591019,-0.56710684299469,-0.633405029773712,0.383961349725723,-0.67184191942215, +-0.671700716018677,0.542140007019043,-0.504878342151642,-0.645511031150818,0.620466947555542,-0.445349454879761,-0.631432056427002,0.601221203804016,-0.489720791578293,-0.627355456352234,0.668622970581055,-0.399209588766098,-0.606212615966797,0.165624067187309,-0.777865529060364,-0.5747309923172,0.206217020750046,-0.791933536529541,-0.636881828308105,0.28457710146904,-0.716517448425293,-0.633405029773712,0.383961349725723,-0.67184191942215,-0.678488850593567,0.382864892482758,-0.626950681209564,-0.636881828308105,0.28457710146904,-0.716517448425293,-0.606212615966797,0.165624067187309,-0.777865529060364,-0.527621626853943,0.0734969079494476,-0.846293985843658,-0.5747309923172,0.206217020750046,-0.791933536529541,-0.527621626853943,0.0734969079494476,-0.846293985843658,-0.481568545103073,0.0376892127096653,-0.875597596168518,-0.52548348903656,0.128259256482124,-0.841080546379089,0.670316934585571,0.576715052127838,0.466984778642654,0.759390354156494,0.483645588159561,0.435216188430786,0.731936037540436,0.512130737304688,0.449434727430344,0.678956270217896,0.588558197021484,0.438882082700729,0.64325624704361,0.586629211902618,0.492023944854736,0.731936037540436,0.512130737304688,0.449434727430344,0.612678110599518,0.609837651252747,0.50271600484848,0.64325624704361,0.586629211902618,0.492023944854736,0.678956270217896,0.588558197021484,0.438882082700729,0.549006879329681,0.66605281829834,0.504940450191498,0.612678110599518,0.609837651252747,0.50271600484848,0.552429914474487,0.681873083114624,0.479447722434998,0.890762150287628,0.310849130153656,0.331535071134567,0.906070530414581,0.321478396654129,0.275113970041275,0.810283303260803,0.43376213312149,0.394070088863373,0.678956270217896,0.588558197021484,0.438882082700729,0.731936037540436,0.512130737304688,0.449434727430344,0.810283303260803,0.43376213312149,0.394070088863373,-0.538090527057648,0.84279590845108,0.0123941134661436,-0.495883941650391,0.856540560722351,0.14295893907547,-0.561582624912262,0.820180118083954,-0.109221681952477,-0.538090527057648,0.84279590845108,0.0123941134661436, +-0.561582624912262,0.820180118083954,-0.109221681952477,-0.578608989715576,0.777478396892548,-0.246452838182449,-0.390964508056641,-0.116596542298794,-0.912990629673004,-0.389855921268463,-0.117274388670921,-0.913377821445465,-0.439672410488129,-0.0124896224588156,-0.898071348667145,-0.447687596082687,-0.0633089691400528,-0.891946017742157,-0.390964508056641,-0.116596542298794,-0.912990629673004,-0.481568545103073,0.0376892127096653,-0.875597596168518,-0.368102520704269,-0.141905561089516,-0.918892383575439,-0.389855921268463,-0.117274388670921,-0.913377821445465,-0.316790461540222,-0.239248141646385,-0.917825698852539,-0.595498621463776,0.733287632465363,-0.328132003545761,-0.578608989715576,0.777478396892548,-0.246452838182449,-0.561582624912262,0.820180118083954,-0.109221681952477,-0.632303059101105,0.706325948238373,-0.318270772695541,-0.627355456352234,0.668622970581055,-0.399209588766098,-0.631432056427002,0.601221203804016,-0.489720791578293,-0.632303059101105,0.706325948238373,-0.318270772695541,-0.614745318889618,0.655145943164825,-0.439171701669693,-0.604365050792694,0.768926620483398,-0.208553537726402,-0.561582624912262,0.820180118083954,-0.109221681952477,-0.604365050792694,0.768926620483398,-0.208553537726402,-0.595498621463776,0.733287632465363,-0.328132003545761,-0.645511031150818,0.620466947555542,-0.445349454879761,-0.666199326515198,0.684379577636719,-0.296315550804138,-0.671700716018677,0.542140007019043,-0.504878342151642,-0.633405029773712,0.383961349725723,-0.67184191942215,-0.680809378623962,0.463560372591019,-0.56710684299469,-0.678488850593567,0.382864892482758,-0.626950681209564,-0.671700716018677,0.542140007019043,-0.504878342151642,-0.694572925567627,0.527949869632721,-0.488709807395935,-0.680809378623962,0.463560372591019,-0.56710684299469,-0.627355456352234,0.668622970581055,-0.399209588766098,-0.621035695075989,0.746946573257446,-0.237455934286118,-0.645511031150818,0.620466947555542,-0.445349454879761,-0.606212615966797,0.165624067187309,-0.777865529060364,-0.636881828308105,0.28457710146904,-0.716517448425293, +-0.672644913196564,0.307976245880127,-0.672829329967499,-0.636881828308105,0.28457710146904,-0.716517448425293,-0.678488850593567,0.382864892482758,-0.626950681209564,-0.672644913196564,0.307976245880127,-0.672829329967499,-0.526162803173065,0.0131309060379863,-0.850282371044159,-0.527621626853943,0.0734969079494476,-0.846293985843658,-0.606212615966797,0.165624067187309,-0.777865529060364,-0.447687596082687,-0.0633089691400528,-0.891946017742157,-0.481568545103073,0.0376892127096653,-0.875597596168518,-0.527621626853943,0.0734969079494476,-0.846293985843658,0.552429914474487,0.681873083114624,0.479447722434998,0.612678110599518,0.609837651252747,0.50271600484848,0.678956270217896,0.588558197021484,0.438882082700729,0.906070530414581,0.321478396654129,0.275113970041275,0.86332380771637,0.446198761463165,0.235751062631607,0.810283303260803,0.43376213312149,0.394070088863373,0.810283303260803,0.43376213312149,0.394070088863373,0.78973776102066,0.517282128334045,0.329747319221497,0.678956270217896,0.588558197021484,0.438882082700729,-0.561582624912262,0.820180118083954,-0.109221681952477,-0.495883941650391,0.856540560722351,0.14295893907547,-0.550345599651337,0.833755731582642,0.0443950071930885,-0.389855921268463,-0.117274388670921,-0.913377821445465,-0.390964508056641,-0.116596542298794,-0.912990629673004,-0.316790461540222,-0.239248141646385,-0.917825698852539,-0.348726838827133,-0.230862691998482,-0.908345699310303,-0.390964508056641,-0.116596542298794,-0.912990629673004,-0.447687596082687,-0.0633089691400528,-0.891946017742157,-0.621035695075989,0.746946573257446,-0.237455934286118,-0.627355456352234,0.668622970581055,-0.399209588766098,-0.632303059101105,0.706325948238373,-0.318270772695541,-0.604365050792694,0.768926620483398,-0.208553537726402,-0.580990374088287,0.811691522598267,-0.0600578673183918,-0.632303059101105,0.706325948238373,-0.318270772695541,-0.561582624912262,0.820180118083954,-0.109221681952477,-0.550345599651337,0.833755731582642,0.0443950071930885,-0.604365050792694,0.768926620483398,-0.208553537726402, +-0.621035695075989,0.746946573257446,-0.237455934286118,-0.666199326515198,0.684379577636719,-0.296315550804138,-0.645511031150818,0.620466947555542,-0.445349454879761,-0.705883681774139,0.618047654628754,-0.346042335033417,-0.671700716018677,0.542140007019043,-0.504878342151642,-0.666199326515198,0.684379577636719,-0.296315550804138,-0.718138933181763,0.471635401248932,-0.511699497699738,-0.678488850593567,0.382864892482758,-0.626950681209564,-0.680809378623962,0.463560372591019,-0.56710684299469,-0.705883681774139,0.618047654628754,-0.346042335033417,-0.694572925567627,0.527949869632721,-0.488709807395935,-0.671700716018677,0.542140007019043,-0.504878342151642,-0.718138933181763,0.471635401248932,-0.511699497699738,-0.680809378623962,0.463560372591019,-0.56710684299469,-0.694572925567627,0.527949869632721,-0.488709807395935,-0.689566969871521,0.239300772547722,-0.683544039726257,-0.606212615966797,0.165624067187309,-0.777865529060364,-0.672644913196564,0.307976245880127,-0.672829329967499,-0.722514390945435,0.387846529483795,-0.572318017482758,-0.672644913196564,0.307976245880127,-0.672829329967499,-0.678488850593567,0.382864892482758,-0.626950681209564,-0.467223107814789,-0.0359724648296833,-0.883407294750214,-0.527621626853943,0.0734969079494476,-0.846293985843658,-0.526162803173065,0.0131309060379863,-0.850282371044159,-0.605700314044952,0.0966121926903725,-0.789805769920349,-0.526162803173065,0.0131309060379863,-0.850282371044159,-0.606212615966797,0.165624067187309,-0.777865529060364,-0.467223107814789,-0.0359724648296833,-0.883407294750214,-0.447687596082687,-0.0633089691400528,-0.891946017742157,-0.527621626853943,0.0734969079494476,-0.846293985843658,0.86332380771637,0.446198761463165,0.235751062631607,0.906070530414581,0.321478396654129,0.275113970041275,0.950215816497803,0.274013519287109,0.148345306515694,0.810283303260803,0.43376213312149,0.394070088863373,0.86332380771637,0.446198761463165,0.235751062631607,0.78973776102066,0.517282128334045,0.329747319221497,-0.390964508056641,-0.116596542298794,-0.912990629673004, +-0.283517301082611,-0.296481937170029,-0.911984860897064,-0.316790461540222,-0.239248141646385,-0.917825698852539,-0.390964508056641,-0.116596542298794,-0.912990629673004,-0.348726838827133,-0.230862691998482,-0.908345699310303,-0.283517301082611,-0.296481937170029,-0.911984860897064,-0.370571672916412,-0.175268784165382,-0.912116944789886,-0.348726838827133,-0.230862691998482,-0.908345699310303,-0.447687596082687,-0.0633089691400528,-0.891946017742157,-0.621035695075989,0.746946573257446,-0.237455934286118,-0.632303059101105,0.706325948238373,-0.318270772695541,-0.580990374088287,0.811691522598267,-0.0600578673183918,-0.550345599651337,0.833755731582642,0.0443950071930885,-0.580990374088287,0.811691522598267,-0.0600578673183918,-0.604365050792694,0.768926620483398,-0.208553537726402,-0.722514390945435,0.387846529483795,-0.572318017482758,-0.678488850593567,0.382864892482758,-0.626950681209564,-0.718138933181763,0.471635401248932,-0.511699497699738,-0.705883681774139,0.618047654628754,-0.346042335033417,-0.724854290485382,0.610236823558807,-0.319682627916336,-0.694572925567627,0.527949869632721,-0.488709807395935,-0.724854290485382,0.610236823558807,-0.319682627916336,-0.718138933181763,0.471635401248932,-0.511699497699738,-0.694572925567627,0.527949869632721,-0.488709807395935,-0.689566969871521,0.239300772547722,-0.683544039726257,-0.605700314044952,0.0966121926903725,-0.789805769920349,-0.606212615966797,0.165624067187309,-0.777865529060364,-0.672644913196564,0.307976245880127,-0.672829329967499,-0.722514390945435,0.387846529483795,-0.572318017482758,-0.689566969871521,0.239300772547722,-0.683544039726257,-0.526162803173065,0.0131309060379863,-0.850282371044159,-0.443098306655884,-0.120227672159672,-0.888374269008636,-0.467223107814789,-0.0359724648296833,-0.883407294750214,-0.526162803173065,0.0131309060379863,-0.850282371044159,-0.605700314044952,0.0966121926903725,-0.789805769920349,-0.556937873363495,-0.00989363994449377,-0.830495119094849,-0.467223107814789,-0.0359724648296833,-0.883407294750214,-0.370571672916412,-0.175268784165382,-0.912116944789886, +-0.447687596082687,-0.0633089691400528,-0.891946017742157,-0.722514390945435,0.387846529483795,-0.572318017482758,-0.718138933181763,0.471635401248932,-0.511699497699738,-0.728639245033264,0.53993821144104,-0.421368449926376,-0.724854290485382,0.610236823558807,-0.319682627916336,-0.728639245033264,0.53993821144104,-0.421368449926376,-0.718138933181763,0.471635401248932,-0.511699497699738,-0.661200404167175,0.115732997655869,-0.741228520870209,-0.605700314044952,0.0966121926903725,-0.789805769920349,-0.689566969871521,0.239300772547722,-0.683544039726257,-0.722514390945435,0.387846529483795,-0.572318017482758,-0.726642906665802,0.303746700286865,-0.616220593452454,-0.689566969871521,0.239300772547722,-0.683544039726257,-0.526162803173065,0.0131309060379863,-0.850282371044159,-0.512227177619934,-0.121180310845375,-0.850257873535156,-0.443098306655884,-0.120227672159672,-0.888374269008636,-0.443098306655884,-0.120227672159672,-0.888374269008636,-0.370571672916412,-0.175268784165382,-0.912116944789886,-0.467223107814789,-0.0359724648296833,-0.883407294750214,-0.6090087890625,0.0108974613249302,-0.793088495731354,-0.556937873363495,-0.00989363994449377,-0.830495119094849,-0.605700314044952,0.0966121926903725,-0.789805769920349,-0.526162803173065,0.0131309060379863,-0.850282371044159,-0.556937873363495,-0.00989363994449377,-0.830495119094849,-0.512227177619934,-0.121180310845375,-0.850257873535156,-0.722514390945435,0.387846529483795,-0.572318017482758,-0.728639245033264,0.53993821144104,-0.421368449926376,-0.730559408664703,0.467718034982681,-0.497516453266144,-0.724854290485382,0.610236823558807,-0.319682627916336,-0.61747819185257,0.756037056446075,-0.217091232538223,-0.728639245033264,0.53993821144104,-0.421368449926376,-0.661200404167175,0.115732997655869,-0.741228520870209,-0.6090087890625,0.0108974613249302,-0.793088495731354,-0.605700314044952,0.0966121926903725,-0.789805769920349,-0.661200404167175,0.115732997655869,-0.741228520870209,-0.689566969871521,0.239300772547722,-0.683544039726257,-0.691051065921783,0.207061693072319,-0.692512631416321, +-0.722514390945435,0.387846529483795,-0.572318017482758,-0.730559408664703,0.467718034982681,-0.497516453266144,-0.726642906665802,0.303746700286865,-0.616220593452454,-0.689566969871521,0.239300772547722,-0.683544039726257,-0.726642906665802,0.303746700286865,-0.616220593452454,-0.691051065921783,0.207061693072319,-0.692512631416321,-0.579700529575348,-0.0822879374027252,-0.810663819313049,-0.556937873363495,-0.00989363994449377,-0.830495119094849,-0.6090087890625,0.0108974613249302,-0.793088495731354,-0.512227177619934,-0.121180310845375,-0.850257873535156,-0.556937873363495,-0.00989363994449377,-0.830495119094849,-0.579700529575348,-0.0822879374027252,-0.810663819313049,-0.728639245033264,0.53993821144104,-0.421368449926376,-0.677449107170105,0.673013865947723,-0.296841531991959,-0.730559408664703,0.467718034982681,-0.497516453266144,-0.677449107170105,0.673013865947723,-0.296841531991959,-0.728639245033264,0.53993821144104,-0.421368449926376,-0.61747819185257,0.756037056446075,-0.217091232538223,-0.6090087890625,0.0108974613249302,-0.793088495731354,-0.661200404167175,0.115732997655869,-0.741228520870209,-0.655326008796692,0.0171364936977625,-0.755151629447937,-0.661200404167175,0.115732997655869,-0.741228520870209,-0.691051065921783,0.207061693072319,-0.692512631416321,-0.688764095306396,0.144073083996773,-0.710525691509247,-0.730884075164795,0.428036332130432,-0.531594932079315,-0.726642906665802,0.303746700286865,-0.616220593452454,-0.730559408664703,0.467718034982681,-0.497516453266144,-0.726642906665802,0.303746700286865,-0.616220593452454,-0.688764095306396,0.144073083996773,-0.710525691509247,-0.691051065921783,0.207061693072319,-0.692512631416321,-0.579700529575348,-0.0822879374027252,-0.810663819313049,-0.6090087890625,0.0108974613249302,-0.793088495731354,-0.625492095947266,-0.0806195214390755,-0.776054084300995,-0.662547588348389,0.641905009746552,-0.3859903216362,-0.730559408664703,0.467718034982681,-0.497516453266144,-0.677449107170105,0.673013865947723,-0.296841531991959,-0.661200404167175,0.115732997655869,-0.741228520870209, +-0.688764095306396,0.144073083996773,-0.710525691509247,-0.655326008796692,0.0171364936977625,-0.755151629447937,-0.6090087890625,0.0108974613249302,-0.793088495731354,-0.655326008796692,0.0171364936977625,-0.755151629447937,-0.625492095947266,-0.0806195214390755,-0.776054084300995,-0.707949042320251,0.39030647277832,-0.588616013526917,-0.726642906665802,0.303746700286865,-0.616220593452454,-0.730884075164795,0.428036332130432,-0.531594932079315,-0.662547588348389,0.641905009746552,-0.3859903216362,-0.730884075164795,0.428036332130432,-0.531594932079315,-0.730559408664703,0.467718034982681,-0.497516453266144,-0.688764095306396,0.144073083996773,-0.710525691509247,-0.726642906665802,0.303746700286865,-0.616220593452454,-0.701952636241913,0.233277916908264,-0.672936677932739,-0.681756556034088,0.0554599091410637,-0.729473829269409,-0.655326008796692,0.0171364936977625,-0.755151629447937,-0.688764095306396,0.144073083996773,-0.710525691509247,-0.640103876590729,-0.0466098114848137,-0.766873121261597,-0.625492095947266,-0.0806195214390755,-0.776054084300995,-0.655326008796692,0.0171364936977625,-0.755151629447937,-0.701952636241913,0.233277916908264,-0.672936677932739,-0.726642906665802,0.303746700286865,-0.616220593452454,-0.707949042320251,0.39030647277832,-0.588616013526917,-0.707949042320251,0.39030647277832,-0.588616013526917,-0.730884075164795,0.428036332130432,-0.531594932079315,-0.674749493598938,0.540060937404633,-0.503037869930267,-0.730884075164795,0.428036332130432,-0.531594932079315,-0.662547588348389,0.641905009746552,-0.3859903216362,-0.674749493598938,0.540060937404633,-0.503037869930267,-0.681756556034088,0.0554599091410637,-0.729473829269409,-0.688764095306396,0.144073083996773,-0.710525691509247,-0.701952636241913,0.233277916908264,-0.672936677932739,-0.681756556034088,0.0554599091410637,-0.729473829269409,-0.640103876590729,-0.0466098114848137,-0.766873121261597,-0.655326008796692,0.0171364936977625,-0.755151629447937,-0.632649719715118,0.484614938497543,-0.60407155752182,-0.701952636241913,0.233277916908264,-0.672936677932739, +-0.707949042320251,0.39030647277832,-0.588616013526917,-0.581838607788086,0.626670718193054,-0.518408536911011,-0.707949042320251,0.39030647277832,-0.588616013526917,-0.674749493598938,0.540060937404633,-0.503037869930267,-0.674749493598938,0.540060937404633,-0.503037869930267,-0.662547588348389,0.641905009746552,-0.3859903216362,-0.486489176750183,0.799892067909241,-0.351426810026169,-0.678711473941803,0.183860048651695,-0.711017608642578,-0.681756556034088,0.0554599091410637,-0.729473829269409,-0.701952636241913,0.233277916908264,-0.672936677932739,-0.60426938533783,0.108210250735283,-0.789397835731506,-0.640103876590729,-0.0466098114848137,-0.766873121261597,-0.681756556034088,0.0554599091410637,-0.729473829269409,-0.582265615463257,0.464549511671066,-0.667203366756439,-0.701952636241913,0.233277916908264,-0.672936677932739,-0.632649719715118,0.484614938497543,-0.60407155752182,-0.632649719715118,0.484614938497543,-0.60407155752182,-0.707949042320251,0.39030647277832,-0.588616013526917,-0.581838607788086,0.626670718193054,-0.518408536911011,-0.581838607788086,0.626670718193054,-0.518408536911011,-0.674749493598938,0.540060937404633,-0.503037869930267,-0.486489176750183,0.799892067909241,-0.351426810026169,-0.678711473941803,0.183860048651695,-0.711017608642578,-0.60426938533783,0.108210250735283,-0.789397835731506,-0.681756556034088,0.0554599091410637,-0.729473829269409,-0.678711473941803,0.183860048651695,-0.711017608642578,-0.701952636241913,0.233277916908264,-0.672936677932739,-0.582265615463257,0.464549511671066,-0.667203366756439,-0.60426938533783,0.108210250735283,-0.789397835731506,-0.52064836025238,0.0178776364773512,-0.853583931922913,-0.640103876590729,-0.0466098114848137,-0.766873121261597,-0.678711473941803,0.183860048651695,-0.711017608642578,-0.542790949344635,0.403749734163284,-0.736453652381897,-0.60426938533783,0.108210250735283,-0.789397835731506,-0.582265615463257,0.464549511671066,-0.667203366756439,-0.542790949344635,0.403749734163284,-0.736453652381897,-0.678711473941803,0.183860048651695,-0.711017608642578, +-0.340127378702164,0.348741143941879,-0.873322904109955,-0.52064836025238,0.0178776364773512,-0.853583931922913,-0.60426938533783,0.108210250735283,-0.789397835731506,-0.542790949344635,0.403749734163284,-0.736453652381897,-0.405961364507675,0.404996901750565,-0.819251298904419,-0.60426938533783,0.108210250735283,-0.789397835731506,-0.52064836025238,0.0178776364773512,-0.853583931922913,-0.340127378702164,0.348741143941879,-0.873322904109955,-0.246586918830872,0.201044395565987,-0.948037981987,-0.405961364507675,0.404996901750565,-0.819251298904419,-0.340127378702164,0.348741143941879,-0.873322904109955,-0.60426938533783,0.108210250735283,-0.789397835731506,-0.441103577613831,0.476117581129074,0.760749399662018,-0.569938480854034,0.582862854003906,0.579172551631927,-0.547999382019043,0.399513840675354,0.734904885292053,-0.569938480854034,0.582862854003906,0.579172551631927,-0.441103577613831,0.476117581129074,0.760749399662018,-0.38905069231987,0.636371195316315,0.666086435317993,-0.569938480854034,0.582862854003906,0.579172551631927,-0.687473833560944,0.431083887815475,0.58441960811615,-0.547999382019043,0.399513840675354,0.734904885292053,-0.547999382019043,0.399513840675354,0.734904885292053,-0.539709568023682,0.342293620109558,0.769121885299683,-0.441103577613831,0.476117581129074,0.760749399662018,-0.28565502166748,0.625778138637543,0.725811779499054,-0.38905069231987,0.636371195316315,0.666086435317993,-0.441103577613831,0.476117581129074,0.760749399662018,-0.569938480854034,0.582862854003906,0.579172551631927,-0.38905069231987,0.636371195316315,0.666086435317993,-0.393343806266785,0.781876862049103,0.483682930469513,-0.687473833560944,0.431083887815475,0.58441960811615,-0.60818749666214,0.317489773035049,0.727535605430603,-0.547999382019043,0.399513840675354,0.734904885292053,-0.547999382019043,0.399513840675354,0.734904885292053,-0.579853951931,0.298899859189987,0.757910430431366,-0.539709568023682,0.342293620109558,0.769121885299683,-0.441103577613831,0.476117581129074,0.760749399662018,-0.539709568023682,0.342293620109558,0.769121885299683, +-0.407255440950394,0.383061498403549,0.829099953174591,-0.38905069231987,0.636371195316315,0.666086435317993,-0.28565502166748,0.625778138637543,0.725811779499054,-0.244812369346619,0.777147233486176,0.579749047756195,-0.441103577613831,0.476117581129074,0.760749399662018,-0.316013425588608,0.489627540111542,0.812650144100189,-0.28565502166748,0.625778138637543,0.725811779499054,-0.393343806266785,0.781876862049103,0.483682930469513,-0.38905069231987,0.636371195316315,0.666086435317993,-0.244812369346619,0.777147233486176,0.579749047756195,-0.729375958442688,0.30582869052887,0.611947178840637,-0.60818749666214,0.317489773035049,0.727535605430603,-0.687473833560944,0.431083887815475,0.58441960811615,-0.547999382019043,0.399513840675354,0.734904885292053,-0.60818749666214,0.317489773035049,0.727535605430603,-0.579853951931,0.298899859189987,0.757910430431366,-0.579853951931,0.298899859189987,0.757910430431366,-0.558627724647522,0.235206410288811,0.795369684696198,-0.539709568023682,0.342293620109558,0.769121885299683,-0.407255440950394,0.383061498403549,0.829099953174591,-0.539709568023682,0.342293620109558,0.769121885299683,-0.443694591522217,0.222318708896637,0.868164420127869,-0.441103577613831,0.476117581129074,0.760749399662018,-0.407255440950394,0.383061498403549,0.829099953174591,-0.316013425588608,0.489627540111542,0.812650144100189,-0.244812369346619,0.777147233486176,0.579749047756195,-0.28565502166748,0.625778138637543,0.725811779499054,-0.116189055144787,0.747070252895355,0.654511988162994,-0.28565502166748,0.625778138637543,0.725811779499054,-0.316013425588608,0.489627540111542,0.812650144100189,-0.182830989360809,0.622873604297638,0.760658442974091,-0.393343806266785,0.781876862049103,0.483682930469513,-0.244812369346619,0.777147233486176,0.579749047756195,-0.244275391101837,0.870165824890137,0.427949577569962,-0.729375958442688,0.30582869052887,0.611947178840637,-0.640461206436157,0.240721583366394,0.729288935661316,-0.60818749666214,0.317489773035049,0.727535605430603,-0.729375958442688,0.30582869052887,0.611947178840637, +-0.687473833560944,0.431083887815475,0.58441960811615,-0.810965895652771,0.361705422401428,0.459894955158234,-0.60818749666214,0.317489773035049,0.727535605430603,-0.640461206436157,0.240721583366394,0.729288935661316,-0.579853951931,0.298899859189987,0.757910430431366,-0.558627724647522,0.235206410288811,0.795369684696198,-0.579853951931,0.298899859189987,0.757910430431366,-0.640461206436157,0.240721583366394,0.729288935661316,-0.558627724647522,0.235206410288811,0.795369684696198,-0.443694591522217,0.222318708896637,0.868164420127869,-0.539709568023682,0.342293620109558,0.769121885299683,-0.407255440950394,0.383061498403549,0.829099953174591,-0.443694591522217,0.222318708896637,0.868164420127869,-0.194982424378395,0.24812239408493,0.948903024196625,-0.407255440950394,0.383061498403549,0.829099953174591,-0.203174635767937,0.394196540117264,0.896286249160767,-0.316013425588608,0.489627540111542,0.812650144100189,-0.28565502166748,0.625778138637543,0.725811779499054,-0.182830989360809,0.622873604297638,0.760658442974091,-0.116189055144787,0.747070252895355,0.654511988162994,-0.244812369346619,0.777147233486176,0.579749047756195,-0.116189055144787,0.747070252895355,0.654511988162994,-0.110622301697731,0.837216973304749,0.535565376281738,-0.182830989360809,0.622873604297638,0.760658442974091,-0.316013425588608,0.489627540111542,0.812650144100189,-0.122788064181805,0.495302021503448,0.859999358654022,-0.244812369346619,0.777147233486176,0.579749047756195,-0.110622301697731,0.837216973304749,0.535565376281738,-0.244275391101837,0.870165824890137,0.427949577569962,-0.750923693180084,0.179025143384933,0.635659873485565,-0.640461206436157,0.240721583366394,0.729288935661316,-0.729375958442688,0.30582869052887,0.611947178840637,-0.835808515548706,0.270195215940475,0.477931559085846,-0.729375958442688,0.30582869052887,0.611947178840637,-0.810965895652771,0.361705422401428,0.459894955158234,-0.558627724647522,0.235206410288811,0.795369684696198,-0.640461206436157,0.240721583366394,0.729288935661316,-0.633638739585876,0.0945182740688324,0.767833352088928, +-0.443694591522217,0.222318708896637,0.868164420127869,-0.558627724647522,0.235206410288811,0.795369684696198,-0.37664121389389,0.0365834347903728,0.925636470317841,-0.227692067623138,0.0662259608507156,0.971478462219238,-0.194982424378395,0.24812239408493,0.948903024196625,-0.443694591522217,0.222318708896637,0.868164420127869,-0.194982424378395,0.24812239408493,0.948903024196625,-0.203174635767937,0.394196540117264,0.896286249160767,-0.407255440950394,0.383061498403549,0.829099953174591,-0.122788064181805,0.495302021503448,0.859999358654022,-0.316013425588608,0.489627540111542,0.812650144100189,-0.203174635767937,0.394196540117264,0.896286249160767,-0.0511995255947113,0.729468941688538,0.682094931602478,-0.116189055144787,0.747070252895355,0.654511988162994,-0.182830989360809,0.622873604297638,0.760658442974091,-0.0365821495652199,0.815835535526276,0.577125668525696,-0.110622301697731,0.837216973304749,0.535565376281738,-0.116189055144787,0.747070252895355,0.654511988162994,-0.122788064181805,0.495302021503448,0.859999358654022,-0.00814407970756292,0.629247963428497,0.777161836624146,-0.182830989360809,0.622873604297638,0.760658442974091,-0.244275391101837,0.870165824890137,0.427949577569962,-0.110622301697731,0.837216973304749,0.535565376281738,-0.125852674245834,0.908014118671417,0.399588882923126,-0.665712237358093,0.126838967204094,0.735349535942078,-0.640461206436157,0.240721583366394,0.729288935661316,-0.750923693180084,0.179025143384933,0.635659873485565,-0.835808515548706,0.270195215940475,0.477931559085846,-0.750923693180084,0.179025143384933,0.635659873485565,-0.729375958442688,0.30582869052887,0.611947178840637,-0.633638739585876,0.0945182740688324,0.767833352088928,-0.640461206436157,0.240721583366394,0.729288935661316,-0.665712237358093,0.126838967204094,0.735349535942078,-0.506726324558258,0.0641938075423241,0.859713554382324,-0.558627724647522,0.235206410288811,0.795369684696198,-0.633638739585876,0.0945182740688324,0.767833352088928,-0.558627724647522,0.235206410288811,0.795369684696198,-0.506726324558258,0.0641938075423241,0.859713554382324, +-0.37664121389389,0.0365834347903728,0.925636470317841,-0.227692067623138,0.0662259608507156,0.971478462219238,-0.443694591522217,0.222318708896637,0.868164420127869,-0.37664121389389,0.0365834347903728,0.925636470317841,-0.227692067623138,0.0662259608507156,0.971478462219238,-0.0568626783788204,0.040442630648613,0.99756246805191,-0.194982424378395,0.24812239408493,0.948903024196625,-0.194982424378395,0.24812239408493,0.948903024196625,0.0089757377281785,0.352875739336014,0.935627043247223,-0.203174635767937,0.394196540117264,0.896286249160767,0.0089757377281785,0.352875739336014,0.935627043247223,-0.122788064181805,0.495302021503448,0.859999358654022,-0.203174635767937,0.394196540117264,0.896286249160767,-0.0511995255947113,0.729468941688538,0.682094931602478,-0.0365821495652199,0.815835535526276,0.577125668525696,-0.116189055144787,0.747070252895355,0.654511988162994,-0.00814407970756292,0.629247963428497,0.777161836624146,-0.0511995255947113,0.729468941688538,0.682094931602478,-0.182830989360809,0.622873604297638,0.760658442974091,-0.0365821495652199,0.815835535526276,0.577125668525696,-0.125852674245834,0.908014118671417,0.399588882923126,-0.110622301697731,0.837216973304749,0.535565376281738,-0.122788064181805,0.495302021503448,0.859999358654022,0.084514781832695,0.481422513723373,0.872404396533966,-0.00814407970756292,0.629247963428497,0.777161836624146,-0.125852674245834,0.908014118671417,0.399588882923126,-0.214483082294464,0.920911192893982,0.325452715158463,-0.244275391101837,0.870165824890137,0.427949577569962,-0.665712237358093,0.126838967204094,0.735349535942078,-0.750923693180084,0.179025143384933,0.635659873485565,-0.67411994934082,-0.0543180927634239,0.736621797084808,-0.876842677593231,0.00274545722641051,0.480769425630569,-0.750923693180084,0.179025143384933,0.635659873485565,-0.835808515548706,0.270195215940475,0.477931559085846,-0.633638739585876,0.0945182740688324,0.767833352088928,-0.665712237358093,0.126838967204094,0.735349535942078,-0.655468225479126,-0.104056507349014,0.748019695281982,-0.633638739585876,0.0945182740688324,0.767833352088928, +-0.541308283805847,-0.127333670854568,0.831126511096954,-0.506726324558258,0.0641938075423241,0.859713554382324,-0.37664121389389,0.0365834347903728,0.925636470317841,-0.506726324558258,0.0641938075423241,0.859713554382324,-0.321058213710785,-0.238226220011711,0.916607737541199,-0.227692067623138,0.0662259608507156,0.971478462219238,-0.37664121389389,0.0365834347903728,0.925636470317841,-0.144134894013405,-0.101524598896503,0.984336256980896,-0.0568626783788204,0.040442630648613,0.99756246805191,-0.227692067623138,0.0662259608507156,0.971478462219238,-0.144134894013405,-0.101524598896503,0.984336256980896,0.0212333593517542,0.200104355812073,0.979544460773468,-0.194982424378395,0.24812239408493,0.948903024196625,-0.0568626783788204,0.040442630648613,0.99756246805191,0.0089757377281785,0.352875739336014,0.935627043247223,-0.194982424378395,0.24812239408493,0.948903024196625,0.0212333593517542,0.200104355812073,0.979544460773468,-0.122788064181805,0.495302021503448,0.859999358654022,0.0089757377281785,0.352875739336014,0.935627043247223,0.084514781832695,0.481422513723373,0.872404396533966,-0.0511995255947113,0.729468941688538,0.682094931602478,0.0528640747070313,0.737977206707001,0.672751724720001,-0.0365821495652199,0.815835535526276,0.577125668525696,-0.0511995255947113,0.729468941688538,0.682094931602478,-0.00814407970756292,0.629247963428497,0.777161836624146,0.0528640747070313,0.737977206707001,0.672751724720001,-0.0365821495652199,0.815835535526276,0.577125668525696,0.00789041258394718,0.878008723258972,0.478579491376877,-0.125852674245834,0.908014118671417,0.399588882923126,0.172357693314552,0.616545259952545,0.76822167634964,-0.00814407970756292,0.629247963428497,0.777161836624146,0.084514781832695,0.481422513723373,0.872404396533966,-0.125852674245834,0.908014118671417,0.399588882923126,-0.182840242981911,0.954139173030853,0.237039655447006,-0.214483082294464,0.920911192893982,0.325452715158463,-0.750923693180084,0.179025143384933,0.635659873485565,-0.777651607990265,-0.172501429915428,0.604566872119904,-0.67411994934082,-0.0543180927634239,0.736621797084808, +-0.67411994934082,-0.0543180927634239,0.736621797084808,-0.655468225479126,-0.104056507349014,0.748019695281982,-0.665712237358093,0.126838967204094,0.735349535942078,-0.777651607990265,-0.172501429915428,0.604566872119904,-0.750923693180084,0.179025143384933,0.635659873485565,-0.876842677593231,0.00274545722641051,0.480769425630569,-0.655468225479126,-0.104056507349014,0.748019695281982,-0.603235423564911,-0.290574342012405,0.742747187614441,-0.633638739585876,0.0945182740688324,0.767833352088928,-0.541308283805847,-0.127333670854568,0.831126511096954,-0.633638739585876,0.0945182740688324,0.767833352088928,-0.603235423564911,-0.290574342012405,0.742747187614441,-0.541308283805847,-0.127333670854568,0.831126511096954,-0.321058213710785,-0.238226220011711,0.916607737541199,-0.506726324558258,0.0641938075423241,0.859713554382324,-0.37664121389389,0.0365834347903728,0.925636470317841,-0.321058213710785,-0.238226220011711,0.916607737541199,-0.144134894013405,-0.101524598896503,0.984336256980896,0.0283637493848801,-0.209406122565269,0.977417230606079,-0.0568626783788204,0.040442630648613,0.99756246805191,-0.144134894013405,-0.101524598896503,0.984336256980896,0.0212333593517542,0.200104355812073,0.979544460773468,-0.0568626783788204,0.040442630648613,0.99756246805191,0.0790220350027084,0.048538863658905,0.995690405368805,0.0089757377281785,0.352875739336014,0.935627043247223,0.0212333593517542,0.200104355812073,0.979544460773468,0.198055386543274,0.241575136780739,0.949955463409424,0.0089757377281785,0.352875739336014,0.935627043247223,0.171070665121078,0.364367514848709,0.915407538414001,0.084514781832695,0.481422513723373,0.872404396533966,0.097278319299221,0.814509987831116,0.571935534477234,-0.0365821495652199,0.815835535526276,0.577125668525696,0.0528640747070313,0.737977206707001,0.672751724720001,0.172357693314552,0.616545259952545,0.76822167634964,0.0528640747070313,0.737977206707001,0.672751724720001,-0.00814407970756292,0.629247963428497,0.777161836624146,0.097278319299221,0.814509987831116,0.571935534477234, +0.00789041258394718,0.878008723258972,0.478579491376877,-0.0365821495652199,0.815835535526276,0.577125668525696,-0.125852674245834,0.908014118671417,0.399588882923126,0.00789041258394718,0.878008723258972,0.478579491376877,-0.112687975168228,0.941569685935974,0.317407965660095,0.249043464660645,0.458871930837631,0.852885544300079,0.172357693314552,0.616545259952545,0.76822167634964,0.084514781832695,0.481422513723373,0.872404396533966,-0.202017724514008,0.961330771446228,0.187167957425117,-0.182840242981911,0.954139173030853,0.237039655447006,-0.125852674245834,0.908014118671417,0.399588882923126,-0.67411994934082,-0.0543180927634239,0.736621797084808,-0.777651607990265,-0.172501429915428,0.604566872119904,-0.659643352031708,-0.360523074865341,0.659464538097382,-0.67411994934082,-0.0543180927634239,0.736621797084808,-0.555008709430695,-0.513909637928009,0.654111742973328,-0.655468225479126,-0.104056507349014,0.748019695281982,-0.655468225479126,-0.104056507349014,0.748019695281982,-0.555008709430695,-0.513909637928009,0.654111742973328,-0.603235423564911,-0.290574342012405,0.742747187614441,-0.541308283805847,-0.127333670854568,0.831126511096954,-0.603235423564911,-0.290574342012405,0.742747187614441,-0.391969114542007,-0.533656060695648,0.749380588531494,-0.541308283805847,-0.127333670854568,0.831126511096954,-0.391969114542007,-0.533656060695648,0.749380588531494,-0.321058213710785,-0.238226220011711,0.916607737541199,-0.0793507546186447,-0.374822586774826,0.923694431781769,-0.144134894013405,-0.101524598896503,0.984336256980896,-0.321058213710785,-0.238226220011711,0.916607737541199,0.0790220350027084,0.048538863658905,0.995690405368805,-0.0568626783788204,0.040442630648613,0.99756246805191,0.0283637493848801,-0.209406122565269,0.977417230606079,0.0283637493848801,-0.209406122565269,0.977417230606079,-0.144134894013405,-0.101524598896503,0.984336256980896,-0.0793507546186447,-0.374822586774826,0.923694431781769,0.0790220350027084,0.048538863658905,0.995690405368805,0.198055386543274,0.241575136780739,0.949955463409424, +0.0212333593517542,0.200104355812073,0.979544460773468,0.0089757377281785,0.352875739336014,0.935627043247223,0.198055386543274,0.241575136780739,0.949955463409424,0.171070665121078,0.364367514848709,0.915407538414001,0.249043464660645,0.458871930837631,0.852885544300079,0.084514781832695,0.481422513723373,0.872404396533966,0.171070665121078,0.364367514848709,0.915407538414001,0.0528640747070313,0.737977206707001,0.672751724720001,0.165392771363258,0.736308872699738,0.656120657920837,0.097278319299221,0.814509987831116,0.571935534477234,0.172357693314552,0.616545259952545,0.76822167634964,0.165392771363258,0.736308872699738,0.656120657920837,0.0528640747070313,0.737977206707001,0.672751724720001,0.00789041258394718,0.878008723258972,0.478579491376877,0.097278319299221,0.814509987831116,0.571935534477234,0.0867692977190018,0.859437823295593,0.503823041915894,-0.112687975168228,0.941569685935974,0.317407965660095,0.00789041258394718,0.878008723258972,0.478579491376877,-0.0794412866234779,0.902164161205292,0.424015045166016,-0.125852674245834,0.908014118671417,0.399588882923126,-0.112687975168228,0.941569685935974,0.317407965660095,-0.202017724514008,0.961330771446228,0.187167957425117,0.172357693314552,0.616545259952545,0.76822167634964,0.249043464660645,0.458871930837631,0.852885544300079,0.248038366436958,0.561010599136353,0.789774596691132,-0.659643352031708,-0.360523074865341,0.659464538097382,-0.777651607990265,-0.172501429915428,0.604566872119904,-0.54243540763855,-0.705175459384918,0.456608414649963,-0.555008709430695,-0.513909637928009,0.654111742973328,-0.67411994934082,-0.0543180927634239,0.736621797084808,-0.659643352031708,-0.360523074865341,0.659464538097382,-0.603235423564911,-0.290574342012405,0.742747187614441,-0.555008709430695,-0.513909637928009,0.654111742973328,-0.404557645320892,-0.753462672233582,0.518292307853699,-0.404557645320892,-0.753462672233582,0.518292307853699,-0.391969114542007,-0.533656060695648,0.749380588531494,-0.603235423564911,-0.290574342012405,0.742747187614441,-0.391969114542007,-0.533656060695648,0.749380588531494, +-0.161670550704002,-0.645384430885315,0.746553003787994,-0.321058213710785,-0.238226220011711,0.916607737541199,-0.0793507546186447,-0.374822586774826,0.923694431781769,-0.321058213710785,-0.238226220011711,0.916607737541199,-0.161670550704002,-0.645384430885315,0.746553003787994,0.0283637493848801,-0.209406122565269,0.977417230606079,0.15245521068573,-0.124816119670868,0.98039698600769,0.0790220350027084,0.048538863658905,0.995690405368805,-0.0793507546186447,-0.374822586774826,0.923694431781769,0.00303992116823792,-0.6611088514328,0.750283718109131,0.0283637493848801,-0.209406122565269,0.977417230606079,0.222430720925331,0.0796700417995453,0.971687793731689,0.198055386543274,0.241575136780739,0.949955463409424,0.0790220350027084,0.048538863658905,0.995690405368805,0.325413942337036,0.324632465839386,0.888098776340485,0.171070665121078,0.364367514848709,0.915407538414001,0.198055386543274,0.241575136780739,0.949955463409424,0.325413942337036,0.324632465839386,0.888098776340485,0.249043464660645,0.458871930837631,0.852885544300079,0.171070665121078,0.364367514848709,0.915407538414001,0.097278319299221,0.814509987831116,0.571935534477234,0.165392771363258,0.736308872699738,0.656120657920837,0.140123188495636,0.785226106643677,0.603146076202393,0.230189740657806,0.695835471153259,0.680312871932983,0.165392771363258,0.736308872699738,0.656120657920837,0.172357693314552,0.616545259952545,0.76822167634964,0.097278319299221,0.814509987831116,0.571935534477234,0.140123188495636,0.785226106643677,0.603146076202393,0.0867692977190018,0.859437823295593,0.503823041915894,0.00789041258394718,0.878008723258972,0.478579491376877,0.0867692977190018,0.859437823295593,0.503823041915894,-0.0794412866234779,0.902164161205292,0.424015045166016,-0.112687975168228,0.941569685935974,0.317407965660095,-0.0794412866234779,0.902164161205292,0.424015045166016,-0.238525524735451,0.929032802581787,0.282848954200745,-0.238525524735451,0.929032802581787,0.282848954200745,-0.202017724514008,0.961330771446228,0.187167957425117,-0.112687975168228,0.941569685935974,0.317407965660095, +0.298032939434052,0.39349302649498,0.869677782058716,0.248038366436958,0.561010599136353,0.789774596691132,0.249043464660645,0.458871930837631,0.852885544300079,0.172357693314552,0.616545259952545,0.76822167634964,0.248038366436958,0.561010599136353,0.789774596691132,0.230189740657806,0.695835471153259,0.680312871932983,-0.555008709430695,-0.513909637928009,0.654111742973328,-0.659643352031708,-0.360523074865341,0.659464538097382,-0.54243540763855,-0.705175459384918,0.456608414649963,-0.404557645320892,-0.753462672233582,0.518292307853699,-0.555008709430695,-0.513909637928009,0.654111742973328,-0.300626397132874,-0.897688806056976,0.322146534919739,-0.404557645320892,-0.753462672233582,0.518292307853699,-0.182423084974289,-0.867673337459564,0.462455004453659,-0.391969114542007,-0.533656060695648,0.749380588531494,-0.391969114542007,-0.533656060695648,0.749380588531494,-0.182423084974289,-0.867673337459564,0.462455004453659,-0.161670550704002,-0.645384430885315,0.746553003787994,0.00303992116823792,-0.6611088514328,0.750283718109131,-0.0793507546186447,-0.374822586774826,0.923694431781769,-0.161670550704002,-0.645384430885315,0.746553003787994,0.0283637493848801,-0.209406122565269,0.977417230606079,0.0705010667443275,-0.502725124359131,0.861566603183746,0.15245521068573,-0.124816119670868,0.98039698600769,0.222430720925331,0.0796700417995453,0.971687793731689,0.0790220350027084,0.048538863658905,0.995690405368805,0.15245521068573,-0.124816119670868,0.98039698600769,0.00303992116823792,-0.6611088514328,0.750283718109131,0.0705010667443275,-0.502725124359131,0.861566603183746,0.0283637493848801,-0.209406122565269,0.977417230606079,0.222430720925331,0.0796700417995453,0.971687793731689,0.326537221670151,0.151559293270111,0.932954013347626,0.198055386543274,0.241575136780739,0.949955463409424,0.325413942337036,0.324632465839386,0.888098776340485,0.198055386543274,0.241575136780739,0.949955463409424,0.342823445796967,0.241968169808388,0.907702267169952,0.298032939434052,0.39349302649498,0.869677782058716,0.249043464660645,0.458871930837631,0.852885544300079, +0.325413942337036,0.324632465839386,0.888098776340485,0.230189740657806,0.695835471153259,0.680312871932983,0.140123188495636,0.785226106643677,0.603146076202393,0.165392771363258,0.736308872699738,0.656120657920837,0.018778970465064,0.815672159194946,0.578209519386292,0.0867692977190018,0.859437823295593,0.503823041915894,0.140123188495636,0.785226106643677,0.603146076202393,-0.0794412866234779,0.902164161205292,0.424015045166016,0.0867692977190018,0.859437823295593,0.503823041915894,-0.0297581311315298,0.868080377578735,0.495530843734741,-0.0794412866234779,0.902164161205292,0.424015045166016,-0.394805371761322,0.81106024980545,0.431636363267899,-0.238525524735451,0.929032802581787,0.282848954200745,0.298032939434052,0.39349302649498,0.869677782058716,0.183928370475769,0.392045915126801,0.90137130022049,0.248038366436958,0.561010599136353,0.789774596691132,0.230189740657806,0.695835471153259,0.680312871932983,0.248038366436958,0.561010599136353,0.789774596691132,0.1427201628685,0.691427648067474,0.708208084106445,-0.54243540763855,-0.705175459384918,0.456608414649963,-0.300626397132874,-0.897688806056976,0.322146534919739,-0.555008709430695,-0.513909637928009,0.654111742973328,-0.404557645320892,-0.753462672233582,0.518292307853699,-0.300626397132874,-0.897688806056976,0.322146534919739,-0.174143970012665,-0.954230546951294,0.24314147233963,-0.182423084974289,-0.867673337459564,0.462455004453659,-0.404557645320892,-0.753462672233582,0.518292307853699,-0.174143970012665,-0.954230546951294,0.24314147233963,-0.0489890575408936,-0.884610593318939,0.463749945163727,-0.161670550704002,-0.645384430885315,0.746553003787994,-0.182423084974289,-0.867673337459564,0.462455004453659,0.00303992116823792,-0.6611088514328,0.750283718109131,-0.161670550704002,-0.645384430885315,0.746553003787994,-0.0489890575408936,-0.884610593318939,0.463749945163727,0.15245521068573,-0.124816119670868,0.98039698600769,0.0705010667443275,-0.502725124359131,0.861566603183746,0.206651493906975,-0.356509149074554,0.911151051521301,0.298939406871796,-0.0469877235591412,0.95311450958252, +0.222430720925331,0.0796700417995453,0.971687793731689,0.15245521068573,-0.124816119670868,0.98039698600769,0.0705010667443275,-0.502725124359131,0.861566603183746,0.00303992116823792,-0.6611088514328,0.750283718109131,0.0373286306858063,-0.84039431810379,0.540688276290894,0.222430720925331,0.0796700417995453,0.971687793731689,0.298939406871796,-0.0469877235591412,0.95311450958252,0.326537221670151,0.151559293270111,0.932954013347626,0.326537221670151,0.151559293270111,0.932954013347626,0.342823445796967,0.241968169808388,0.907702267169952,0.198055386543274,0.241575136780739,0.949955463409424,0.325413942337036,0.324632465839386,0.888098776340485,0.342823445796967,0.241968169808388,0.907702267169952,0.3611880838871,0.214528247714043,0.907480418682098,0.325413942337036,0.324632465839386,0.888098776340485,0.327484369277954,0.291634321212769,0.898723125457764,0.298032939434052,0.39349302649498,0.869677782058716,0.230189740657806,0.695835471153259,0.680312871932983,0.1427201628685,0.691427648067474,0.708208084106445,0.140123188495636,0.785226106643677,0.603146076202393,0.018778970465064,0.815672159194946,0.578209519386292,-0.0297581311315298,0.868080377578735,0.495530843734741,0.0867692977190018,0.859437823295593,0.503823041915894,0.140123188495636,0.785226106643677,0.603146076202393,-0.0259360056370497,0.754523813724518,0.655759811401367,0.018778970465064,0.815672159194946,0.578209519386292,-0.197436690330505,0.81797856092453,0.540305137634277,-0.0794412866234779,0.902164161205292,0.424015045166016,-0.0297581311315298,0.868080377578735,0.495530843734741,-0.197436690330505,0.81797856092453,0.540305137634277,-0.394805371761322,0.81106024980545,0.431636363267899,-0.0794412866234779,0.902164161205292,0.424015045166016,-0.238525524735451,0.929032802581787,0.282848954200745,-0.394805371761322,0.81106024980545,0.431636363267899,-0.568931758403778,0.725353717803955,0.38752880692482,0.298032939434052,0.39349302649498,0.869677782058716,0.218003019690514,0.297935754060745,0.929359376430511,0.183928370475769,0.392045915126801,0.90137130022049, +0.248038366436958,0.561010599136353,0.789774596691132,0.183928370475769,0.392045915126801,0.90137130022049,0.11199539154768,0.564670324325562,0.817682266235352,0.248038366436958,0.561010599136353,0.789774596691132,0.11199539154768,0.564670324325562,0.817682266235352,0.1427201628685,0.691427648067474,0.708208084106445,-0.182423084974289,-0.867673337459564,0.462455004453659,-0.174143970012665,-0.954230546951294,0.24314147233963,-0.0467874854803085,-0.978813529014587,0.199336230754852,-0.0489890575408936,-0.884610593318939,0.463749945163727,-0.182423084974289,-0.867673337459564,0.462455004453659,-0.0467874854803085,-0.978813529014587,0.199336230754852,-0.0489890575408936,-0.884610593318939,0.463749945163727,0.0237970929592848,-0.884401857852936,0.466119021177292,0.00303992116823792,-0.6611088514328,0.750283718109131,0.103848218917847,-0.727927625179291,0.677743971347809,0.206651493906975,-0.356509149074554,0.911151051521301,0.0705010667443275,-0.502725124359131,0.861566603183746,0.298939406871796,-0.0469877235591412,0.95311450958252,0.15245521068573,-0.124816119670868,0.98039698600769,0.206651493906975,-0.356509149074554,0.911151051521301,0.0237970929592848,-0.884401857852936,0.466119021177292,0.0373286306858063,-0.84039431810379,0.540688276290894,0.00303992116823792,-0.6611088514328,0.750283718109131,0.103848218917847,-0.727927625179291,0.677743971347809,0.0705010667443275,-0.502725124359131,0.861566603183746,0.0373286306858063,-0.84039431810379,0.540688276290894,0.326537221670151,0.151559293270111,0.932954013347626,0.298939406871796,-0.0469877235591412,0.95311450958252,0.3611880838871,0.214528247714043,0.907480418682098,0.326537221670151,0.151559293270111,0.932954013347626,0.3611880838871,0.214528247714043,0.907480418682098,0.342823445796967,0.241968169808388,0.907702267169952,0.3611880838871,0.214528247714043,0.907480418682098,0.327484369277954,0.291634321212769,0.898723125457764,0.325413942337036,0.324632465839386,0.888098776340485,0.327484369277954,0.291634321212769,0.898723125457764,0.218003019690514,0.297935754060745,0.929359376430511, +0.298032939434052,0.39349302649498,0.869677782058716,0.140123188495636,0.785226106643677,0.603146076202393,0.1427201628685,0.691427648067474,0.708208084106445,0.0677250400185585,0.728395581245422,0.681801319122314,0.018778970465064,0.815672159194946,0.578209519386292,-0.197436690330505,0.81797856092453,0.540305137634277,-0.0297581311315298,0.868080377578735,0.495530843734741,0.0677250400185585,0.728395581245422,0.681801319122314,-0.0259360056370497,0.754523813724518,0.655759811401367,0.140123188495636,0.785226106643677,0.603146076202393,-0.205756530165672,0.716248989105225,0.666821897029877,0.018778970465064,0.815672159194946,0.578209519386292,-0.0259360056370497,0.754523813724518,0.655759811401367,-0.197436690330505,0.81797856092453,0.540305137634277,-0.516723215579987,0.614378571510315,0.59626829624176,-0.394805371761322,0.81106024980545,0.431636363267899,-0.647234082221985,0.576736330986023,0.498460859060287,-0.568931758403778,0.725353717803955,0.38752880692482,-0.394805371761322,0.81106024980545,0.431636363267899,0.218003019690514,0.297935754060745,0.929359376430511,0.205332607030869,0.284477889537811,0.936435163021088,0.183928370475769,0.392045915126801,0.90137130022049,0.183928370475769,0.392045915126801,0.90137130022049,0.165170133113861,0.387283205986023,0.907044887542725,0.11199539154768,0.564670324325562,0.817682266235352,0.1427201628685,0.691427648067474,0.708208084106445,0.11199539154768,0.564670324325562,0.817682266235352,0.0198673661798239,0.674179673194885,0.738300025463104,0.0269863288849592,-0.968023240566254,0.249404564499855,-0.0489890575408936,-0.884610593318939,0.463749945163727,-0.0467874854803085,-0.978813529014587,0.199336230754852,-0.0489890575408936,-0.884610593318939,0.463749945163727,0.0269863288849592,-0.968023240566254,0.249404564499855,0.0237970929592848,-0.884401857852936,0.466119021177292,0.215122237801552,-0.598580002784729,0.771637380123138,0.206651493906975,-0.356509149074554,0.911151051521301,0.103848218917847,-0.727927625179291,0.677743971347809,0.215122237801552,-0.598580002784729,0.771637380123138, +0.298939406871796,-0.0469877235591412,0.95311450958252,0.206651493906975,-0.356509149074554,0.911151051521301,0.0269863288849592,-0.968023240566254,0.249404564499855,0.0373286306858063,-0.84039431810379,0.540688276290894,0.0237970929592848,-0.884401857852936,0.466119021177292,0.103848218917847,-0.727927625179291,0.677743971347809,0.0373286306858063,-0.84039431810379,0.540688276290894,0.056921798735857,-0.922482848167419,0.381818234920502,0.298939406871796,-0.0469877235591412,0.95311450958252,0.275118917226791,0.0805407613515854,0.958030581474304,0.3611880838871,0.214528247714043,0.907480418682098,0.3611880838871,0.214528247714043,0.907480418682098,0.25140854716301,0.256675094366074,0.933226406574249,0.327484369277954,0.291634321212769,0.898723125457764,0.218003019690514,0.297935754060745,0.929359376430511,0.327484369277954,0.291634321212769,0.898723125457764,0.25140854716301,0.256675094366074,0.933226406574249,0.0677250400185585,0.728395581245422,0.681801319122314,0.1427201628685,0.691427648067474,0.708208084106445,0.0061349393799901,0.682318270206451,0.731029391288757,-0.197436690330505,0.81797856092453,0.540305137634277,0.018778970465064,0.815672159194946,0.578209519386292,-0.205756530165672,0.716248989105225,0.666821897029877,0.0677250400185585,0.728395581245422,0.681801319122314,-0.0807997584342957,0.647597074508667,0.757686853408813,-0.0259360056370497,0.754523813724518,0.655759811401367,-0.236310616135597,0.614356637001038,0.752810120582581,-0.205756530165672,0.716248989105225,0.666821897029877,-0.0259360056370497,0.754523813724518,0.655759811401367,-0.197436690330505,0.81797856092453,0.540305137634277,-0.205756530165672,0.716248989105225,0.666821897029877,-0.516723215579987,0.614378571510315,0.59626829624176,-0.516723215579987,0.614378571510315,0.59626829624176,-0.647234082221985,0.576736330986023,0.498460859060287,-0.394805371761322,0.81106024980545,0.431636363267899,-0.731558442115784,0.411041975021362,0.543936133384705,-0.568931758403778,0.725353717803955,0.38752880692482,-0.647234082221985,0.576736330986023,0.498460859060287, +0.218003019690514,0.297935754060745,0.929359376430511,0.258895933628082,0.242918446660042,0.934860110282898,0.205332607030869,0.284477889537811,0.936435163021088,0.183928370475769,0.392045915126801,0.90137130022049,0.205332607030869,0.284477889537811,0.936435163021088,0.165170133113861,0.387283205986023,0.907044887542725,0.11199539154768,0.564670324325562,0.817682266235352,0.165170133113861,0.387283205986023,0.907044887542725,0.187148913741112,0.48580613732338,0.853795945644379,0.11199539154768,0.564670324325562,0.817682266235352,0.107288524508476,0.618943750858307,0.778073012828827,0.0198673661798239,0.674179673194885,0.738300025463104,0.0061349393799901,0.682318270206451,0.731029391288757,0.1427201628685,0.691427648067474,0.708208084106445,0.0198673661798239,0.674179673194885,0.738300025463104,0.056921798735857,-0.922482848167419,0.381818234920502,0.215122237801552,-0.598580002784729,0.771637380123138,0.103848218917847,-0.727927625179291,0.677743971347809,0.218375355005264,-0.355886429548264,0.908656656742096,0.298939406871796,-0.0469877235591412,0.95311450958252,0.215122237801552,-0.598580002784729,0.771637380123138,0.056921798735857,-0.922482848167419,0.381818234920502,0.0373286306858063,-0.84039431810379,0.540688276290894,0.0269863288849592,-0.968023240566254,0.249404564499855,0.298939406871796,-0.0469877235591412,0.95311450958252,0.218375355005264,-0.355886429548264,0.908656656742096,0.275118917226791,0.0805407613515854,0.958030581474304,0.3611880838871,0.214528247714043,0.907480418682098,0.275118917226791,0.0805407613515854,0.958030581474304,0.25140854716301,0.256675094366074,0.933226406574249,0.25140854716301,0.256675094366074,0.933226406574249,0.258895933628082,0.242918446660042,0.934860110282898,0.218003019690514,0.297935754060745,0.929359376430511,0.0677250400185585,0.728395581245422,0.681801319122314,0.0061349393799901,0.682318270206451,0.731029391288757,-0.0807997584342957,0.647597074508667,0.757686853408813,-0.236310616135597,0.614356637001038,0.752810120582581,-0.0259360056370497,0.754523813724518,0.655759811401367, +-0.0807997584342957,0.647597074508667,0.757686853408813,-0.236310616135597,0.614356637001038,0.752810120582581,-0.426622420549393,0.490711539983749,0.759733736515045,-0.205756530165672,0.716248989105225,0.666821897029877,-0.516723215579987,0.614378571510315,0.59626829624176,-0.205756530165672,0.716248989105225,0.666821897029877,-0.426622420549393,0.490711539983749,0.759733736515045,-0.516723215579987,0.614378571510315,0.59626829624176,-0.731558442115784,0.411041975021362,0.543936133384705,-0.647234082221985,0.576736330986023,0.498460859060287,-0.799638450145721,0.407566636800766,0.440984815359116,-0.568931758403778,0.725353717803955,0.38752880692482,-0.731558442115784,0.411041975021362,0.543936133384705,0.205332607030869,0.284477889537811,0.936435163021088,0.258895933628082,0.242918446660042,0.934860110282898,0.283771425485611,0.333592563867569,0.898993670940399,0.205332607030869,0.284477889537811,0.936435163021088,0.283771425485611,0.333592563867569,0.898993670940399,0.165170133113861,0.387283205986023,0.907044887542725,0.165170133113861,0.387283205986023,0.907044887542725,0.283771425485611,0.333592563867569,0.898993670940399,0.187148913741112,0.48580613732338,0.853795945644379,0.11199539154768,0.564670324325562,0.817682266235352,0.187148913741112,0.48580613732338,0.853795945644379,0.107288524508476,0.618943750858307,0.778073012828827,-0.0611965395510197,0.645125687122345,0.761621654033661,0.0198673661798239,0.674179673194885,0.738300025463104,0.107288524508476,0.618943750858307,0.778073012828827,0.0061349393799901,0.682318270206451,0.731029391288757,0.0198673661798239,0.674179673194885,0.738300025463104,-0.0611965395510197,0.645125687122345,0.761621654033661,0.134191811084747,-0.844798266887665,0.517984867095947,0.215122237801552,-0.598580002784729,0.771637380123138,0.056921798735857,-0.922482848167419,0.381818234920502,0.218375355005264,-0.355886429548264,0.908656656742096,0.215122237801552,-0.598580002784729,0.771637380123138,0.134191811084747,-0.844798266887665,0.517984867095947,0.238180324435234,0.0818521678447723,0.967765629291534, +0.275118917226791,0.0805407613515854,0.958030581474304,0.218375355005264,-0.355886429548264,0.908656656742096,0.238180324435234,0.0818521678447723,0.967765629291534,0.25140854716301,0.256675094366074,0.933226406574249,0.275118917226791,0.0805407613515854,0.958030581474304,0.238180324435234,0.0818521678447723,0.967765629291534,0.258895933628082,0.242918446660042,0.934860110282898,0.25140854716301,0.256675094366074,0.933226406574249,-0.0807997584342957,0.647597074508667,0.757686853408813,0.0061349393799901,0.682318270206451,0.731029391288757,-0.0941085815429688,0.581249892711639,0.808264791965485,-0.236310616135597,0.614356637001038,0.752810120582581,-0.0807997584342957,0.647597074508667,0.757686853408813,-0.237145707011223,0.5391446352005,0.808136641979218,-0.426622420549393,0.490711539983749,0.759733736515045,-0.236310616135597,0.614356637001038,0.752810120582581,-0.350394487380981,0.377439469099045,0.857183158397675,-0.426622420549393,0.490711539983749,0.759733736515045,-0.612712323665619,0.348511546850204,0.709311723709106,-0.516723215579987,0.614378571510315,0.59626829624176,-0.516723215579987,0.614378571510315,0.59626829624176,-0.612712323665619,0.348511546850204,0.709311723709106,-0.731558442115784,0.411041975021362,0.543936133384705,-0.811605870723724,0.217904180288315,0.542045712471008,-0.799638450145721,0.407566636800766,0.440984815359116,-0.731558442115784,0.411041975021362,0.543936133384705,0.258895933628082,0.242918446660042,0.934860110282898,0.320160180330276,0.278063416481018,0.905636847019196,0.283771425485611,0.333592563867569,0.898993670940399,0.187148913741112,0.48580613732338,0.853795945644379,0.283771425485611,0.333592563867569,0.898993670940399,0.221720889210701,0.455565512180328,0.862148404121399,0.187148913741112,0.48580613732338,0.853795945644379,0.221720889210701,0.455565512180328,0.862148404121399,0.107288524508476,0.618943750858307,0.778073012828827,0.107288524508476,0.618943750858307,0.778073012828827,0.10983694344759,0.579224407672882,0.807734370231628,-0.0611965395510197,0.645125687122345,0.761621654033661, +0.0061349393799901,0.682318270206451,0.731029391288757,-0.0611965395510197,0.645125687122345,0.761621654033661,-0.0941085815429688,0.581249892711639,0.808264791965485,0.218316376209259,-0.721683084964752,0.656895220279694,0.218375355005264,-0.355886429548264,0.908656656742096,0.134191811084747,-0.844798266887665,0.517984867095947,0.218375355005264,-0.355886429548264,0.908656656742096,0.246797189116478,-0.275167912244797,0.929179012775421,0.238180324435234,0.0818521678447723,0.967765629291534,0.238180324435234,0.0818521678447723,0.967765629291534,0.287190824747086,0.0519231520593166,0.956465005874634,0.258895933628082,0.242918446660042,0.934860110282898,-0.0807997584342957,0.647597074508667,0.757686853408813,-0.0941085815429688,0.581249892711639,0.808264791965485,-0.215099915862083,0.460791409015656,0.861047744750977,-0.237145707011223,0.5391446352005,0.808136641979218,-0.0807997584342957,0.647597074508667,0.757686853408813,-0.215099915862083,0.460791409015656,0.861047744750977,-0.236310616135597,0.614356637001038,0.752810120582581,-0.237145707011223,0.5391446352005,0.808136641979218,-0.350394487380981,0.377439469099045,0.857183158397675,-0.498147815465927,0.236402615904808,0.834243595600128,-0.426622420549393,0.490711539983749,0.759733736515045,-0.350394487380981,0.377439469099045,0.857183158397675,-0.426622420549393,0.490711539983749,0.759733736515045,-0.498147815465927,0.236402615904808,0.834243595600128,-0.612712323665619,0.348511546850204,0.709311723709106,-0.731558442115784,0.411041975021362,0.543936133384705,-0.612712323665619,0.348511546850204,0.709311723709106,-0.740013778209686,0.248467698693275,0.62501448392868,-0.860896348953247,0.182480692863464,0.474929600954056,-0.799638450145721,0.407566636800766,0.440984815359116,-0.811605870723724,0.217904180288315,0.542045712471008,-0.811605870723724,0.217904180288315,0.542045712471008,-0.731558442115784,0.411041975021362,0.543936133384705,-0.740013778209686,0.248467698693275,0.62501448392868,0.353599220514297,0.222115471959114,0.908643066883087,0.320160180330276,0.278063416481018,0.905636847019196, +0.258895933628082,0.242918446660042,0.934860110282898,0.320160180330276,0.278063416481018,0.905636847019196,0.221720889210701,0.455565512180328,0.862148404121399,0.283771425485611,0.333592563867569,0.898993670940399,0.107288524508476,0.618943750858307,0.778073012828827,0.221720889210701,0.455565512180328,0.862148404121399,0.10983694344759,0.579224407672882,0.807734370231628,0.10983694344759,0.579224407672882,0.807734370231628,-0.0815657302737236,0.498664200305939,0.862948954105377,-0.0611965395510197,0.645125687122345,0.761621654033661,-0.0941085815429688,0.581249892711639,0.808264791965485,-0.0611965395510197,0.645125687122345,0.761621654033661,-0.0815657302737236,0.498664200305939,0.862948954105377,0.218375355005264,-0.355886429548264,0.908656656742096,0.218316376209259,-0.721683084964752,0.656895220279694,0.246797189116478,-0.275167912244797,0.929179012775421,0.289119124412537,-0.385168790817261,0.876387357711792,0.238180324435234,0.0818521678447723,0.967765629291534,0.246797189116478,-0.275167912244797,0.929179012775421,0.287190824747086,0.0519231520593166,0.956465005874634,0.238180324435234,0.0818521678447723,0.967765629291534,0.289119124412537,-0.385168790817261,0.876387357711792,0.350079596042633,0.124095611274242,0.928463518619537,0.258895933628082,0.242918446660042,0.934860110282898,0.287190824747086,0.0519231520593166,0.956465005874634,-0.215099915862083,0.460791409015656,0.861047744750977,-0.0941085815429688,0.581249892711639,0.808264791965485,-0.0815657302737236,0.498664200305939,0.862948954105377,-0.215099915862083,0.460791409015656,0.861047744750977,-0.350394487380981,0.377439469099045,0.857183158397675,-0.237145707011223,0.5391446352005,0.808136641979218,-0.389128267765045,0.126762434840202,0.912420094013214,-0.498147815465927,0.236402615904808,0.834243595600128,-0.350394487380981,0.377439469099045,0.857183158397675,-0.648662567138672,0.158552512526512,0.744377493858337,-0.612712323665619,0.348511546850204,0.709311723709106,-0.498147815465927,0.236402615904808,0.834243595600128,-0.648662567138672,0.158552512526512,0.744377493858337, +-0.740013778209686,0.248467698693275,0.62501448392868,-0.612712323665619,0.348511546850204,0.709311723709106,-0.860896348953247,0.182480692863464,0.474929600954056,-0.811605870723724,0.217904180288315,0.542045712471008,-0.857041656970978,0.0945139825344086,0.506504237651825,-0.773741066455841,0.106499463319778,0.624485790729523,-0.811605870723724,0.217904180288315,0.542045712471008,-0.740013778209686,0.248467698693275,0.62501448392868,0.320160180330276,0.278063416481018,0.905636847019196,0.353599220514297,0.222115471959114,0.908643066883087,0.336163431406021,0.20139591395855,0.920018315315247,0.258895933628082,0.242918446660042,0.934860110282898,0.350079596042633,0.124095611274242,0.928463518619537,0.353599220514297,0.222115471959114,0.908643066883087,0.320160180330276,0.278063416481018,0.905636847019196,0.278646051883698,0.292701721191406,0.914703190326691,0.221720889210701,0.455565512180328,0.862148404121399,0.221720889210701,0.455565512180328,0.862148404121399,0.0575704649090767,0.494084626436234,0.867505609989166,0.10983694344759,0.579224407672882,0.807734370231628,0.0575704649090767,0.494084626436234,0.867505609989166,-0.0815657302737236,0.498664200305939,0.862948954105377,0.10983694344759,0.579224407672882,0.807734370231628,0.289119124412537,-0.385168790817261,0.876387357711792,0.246797189116478,-0.275167912244797,0.929179012775421,0.218316376209259,-0.721683084964752,0.656895220279694,0.289119124412537,-0.385168790817261,0.876387357711792,0.296407639980316,-0.277374416589737,0.913895964622498,0.287190824747086,0.0519231520593166,0.956465005874634,0.350079596042633,0.124095611274242,0.928463518619537,0.287190824747086,0.0519231520593166,0.956465005874634,0.296407639980316,-0.277374416589737,0.913895964622498,-0.215099915862083,0.460791409015656,0.861047744750977,-0.0815657302737236,0.498664200305939,0.862948954105377,-0.174573332071304,0.298412680625916,0.938335716724396,-0.215099915862083,0.460791409015656,0.861047744750977,-0.324248850345612,0.262217611074448,0.908902883529663,-0.350394487380981,0.377439469099045,0.857183158397675, +-0.389128267765045,0.126762434840202,0.912420094013214,-0.524828314781189,0.044887974858284,0.850023627281189,-0.498147815465927,0.236402615904808,0.834243595600128,-0.350394487380981,0.377439469099045,0.857183158397675,-0.324248850345612,0.262217611074448,0.908902883529663,-0.389128267765045,0.126762434840202,0.912420094013214,-0.648662567138672,0.158552512526512,0.744377493858337,-0.498147815465927,0.236402615904808,0.834243595600128,-0.524828314781189,0.044887974858284,0.850023627281189,-0.648662567138672,0.158552512526512,0.744377493858337,-0.773741066455841,0.106499463319778,0.624485790729523,-0.740013778209686,0.248467698693275,0.62501448392868,-0.811605870723724,0.217904180288315,0.542045712471008,-0.773741066455841,0.106499463319778,0.624485790729523,-0.857041656970978,0.0945139825344086,0.506504237651825,0.397479861974716,0.147707730531693,0.905644536018372,0.336163431406021,0.20139591395855,0.920018315315247,0.353599220514297,0.222115471959114,0.908643066883087,0.320160180330276,0.278063416481018,0.905636847019196,0.336163431406021,0.20139591395855,0.920018315315247,0.278646051883698,0.292701721191406,0.914703190326691,0.350079596042633,0.124095611274242,0.928463518619537,0.397479861974716,0.147707730531693,0.905644536018372,0.353599220514297,0.222115471959114,0.908643066883087,0.278646051883698,0.292701721191406,0.914703190326691,0.101489208638668,0.397484332323074,0.911979198455811,0.221720889210701,0.455565512180328,0.862148404121399,0.101489208638668,0.397484332323074,0.911979198455811,0.0575704649090767,0.494084626436234,0.867505609989166,0.221720889210701,0.455565512180328,0.862148404121399,-0.0815657302737236,0.498664200305939,0.862948954105377,0.0575704649090767,0.494084626436234,0.867505609989166,-0.0487884469330311,0.388375580310822,0.920208632946014,0.18120077252388,-0.85315728187561,0.489171624183655,0.289119124412537,-0.385168790817261,0.876387357711792,0.218316376209259,-0.721683084964752,0.656895220279694,0.289119124412537,-0.385168790817261,0.876387357711792,0.190357357263565,-0.734283208847046,0.6516073346138, +0.296407639980316,-0.277374416589737,0.913895964622498,0.296407639980316,-0.277374416589737,0.913895964622498,0.380091905593872,-0.136675447225571,0.914794862270355,0.350079596042633,0.124095611274242,0.928463518619537,-0.0487884469330311,0.388375580310822,0.920208632946014,-0.174573332071304,0.298412680625916,0.938335716724396,-0.0815657302737236,0.498664200305939,0.862948954105377,-0.215099915862083,0.460791409015656,0.861047744750977,-0.174573332071304,0.298412680625916,0.938335716724396,-0.324248850345612,0.262217611074448,0.908902883529663,-0.524828314781189,0.044887974858284,0.850023627281189,-0.389128267765045,0.126762434840202,0.912420094013214,-0.435273826122284,-0.0532935746014118,0.898719310760498,-0.279482245445251,0.173636257648468,0.944319903850555,-0.389128267765045,0.126762434840202,0.912420094013214,-0.324248850345612,0.262217611074448,0.908902883529663,-0.524828314781189,0.044887974858284,0.850023627281189,-0.674713850021362,0.0405274368822575,0.736965835094452,-0.648662567138672,0.158552512526512,0.744377493858337,-0.674713850021362,0.0405274368822575,0.736965835094452,-0.773741066455841,0.106499463319778,0.624485790729523,-0.648662567138672,0.158552512526512,0.744377493858337,-0.773741066455841,0.106499463319778,0.624485790729523,-0.824711382389069,0.00748538551852107,0.565504133701324,-0.857041656970978,0.0945139825344086,0.506504237651825,0.336163431406021,0.20139591395855,0.920018315315247,0.397479861974716,0.147707730531693,0.905644536018372,0.210018455982208,0.138713732361794,0.967807114124298,0.255923420190811,0.25581818819046,0.932233989238739,0.278646051883698,0.292701721191406,0.914703190326691,0.336163431406021,0.20139591395855,0.920018315315247,0.350079596042633,0.124095611274242,0.928463518619537,0.380091905593872,-0.136675447225571,0.914794862270355,0.397479861974716,0.147707730531693,0.905644536018372,0.278646051883698,0.292701721191406,0.914703190326691,0.255923420190811,0.25581818819046,0.932233989238739,0.101489208638668,0.397484332323074,0.911979198455811,0.0575704649090767,0.494084626436234,0.867505609989166, +0.101489208638668,0.397484332323074,0.911979198455811,-0.0487884469330311,0.388375580310822,0.920208632946014,0.289119124412537,-0.385168790817261,0.876387357711792,0.18120077252388,-0.85315728187561,0.489171624183655,0.190357357263565,-0.734283208847046,0.6516073346138,0.252474784851074,-0.664206862449646,0.703623116016388,0.296407639980316,-0.277374416589737,0.913895964622498,0.190357357263565,-0.734283208847046,0.6516073346138,0.252474784851074,-0.664206862449646,0.703623116016388,0.380091905593872,-0.136675447225571,0.914794862270355,0.296407639980316,-0.277374416589737,0.913895964622498,-0.0487884469330311,0.388375580310822,0.920208632946014,-0.00613200152292848,0.263835549354553,0.964548110961914,-0.174573332071304,0.298412680625916,0.938335716724396,-0.279482245445251,0.173636257648468,0.944319903850555,-0.324248850345612,0.262217611074448,0.908902883529663,-0.174573332071304,0.298412680625916,0.938335716724396,-0.389128267765045,0.126762434840202,0.912420094013214,-0.288489192724228,0.001648323610425,0.957481682300568,-0.435273826122284,-0.0532935746014118,0.898719310760498,-0.524828314781189,0.044887974858284,0.850023627281189,-0.435273826122284,-0.0532935746014118,0.898719310760498,-0.573379278182983,-0.0416153520345688,0.818232357501984,-0.279482245445251,0.173636257648468,0.944319903850555,-0.288489192724228,0.001648323610425,0.957481682300568,-0.389128267765045,0.126762434840202,0.912420094013214,-0.524828314781189,0.044887974858284,0.850023627281189,-0.573379278182983,-0.0416153520345688,0.818232357501984,-0.674713850021362,0.0405274368822575,0.736965835094452,-0.674713850021362,0.0405274368822575,0.736965835094452,-0.770534634590149,0.0104323038831353,0.637312650680542,-0.773741066455841,0.106499463319778,0.624485790729523,-0.773741066455841,0.106499463319778,0.624485790729523,-0.770534634590149,0.0104323038831353,0.637312650680542,-0.824711382389069,0.00748538551852107,0.565504133701324,-0.857041656970978,0.0945139825344086,0.506504237651825,-0.824711382389069,0.00748538551852107,0.565504133701324, +-0.879416227340698,0.011167086660862,0.475922554731369,0.33131530880928,-0.172719866037369,0.9275763630867,0.210018455982208,0.138713732361794,0.967807114124298,0.397479861974716,0.147707730531693,0.905644536018372,-0.0141718368977308,0.237838119268417,0.971201360225677,0.336163431406021,0.20139591395855,0.920018315315247,0.210018455982208,0.138713732361794,0.967807114124298,0.255923420190811,0.25581818819046,0.932233989238739,0.336163431406021,0.20139591395855,0.920018315315247,-0.0141718368977308,0.237838119268417,0.971201360225677,0.380091905593872,-0.136675447225571,0.914794862270355,0.33131530880928,-0.172719866037369,0.9275763630867,0.397479861974716,0.147707730531693,0.905644536018372,0.101489208638668,0.397484332323074,0.911979198455811,0.255923420190811,0.25581818819046,0.932233989238739,0.198185980319977,0.357987344264984,0.912451207637787,0.0273442789912224,0.388423651456833,0.921075046062469,-0.0487884469330311,0.388375580310822,0.920208632946014,0.101489208638668,0.397484332323074,0.911979198455811,0.319517523050308,-0.53386390209198,0.782877862453461,0.380091905593872,-0.136675447225571,0.914794862270355,0.252474784851074,-0.664206862449646,0.703623116016388,-0.0487884469330311,0.388375580310822,0.920208632946014,0.0273442789912224,0.388423651456833,0.921075046062469,-0.00613200152292848,0.263835549354553,0.964548110961914,-0.174573332071304,0.298412680625916,0.938335716724396,-0.00613200152292848,0.263835549354553,0.964548110961914,-0.121384583413601,0.137785449624062,0.982995867729187,-0.279482245445251,0.173636257648468,0.944319903850555,-0.174573332071304,0.298412680625916,0.938335716724396,-0.121384583413601,0.137785449624062,0.982995867729187,-0.288489192724228,0.001648323610425,0.957481682300568,-0.369893908500671,-0.112040020525455,0.922293543815613,-0.435273826122284,-0.0532935746014118,0.898719310760498,-0.487274169921875,-0.086381770670414,0.868966042995453,-0.573379278182983,-0.0416153520345688,0.818232357501984,-0.435273826122284,-0.0532935746014118,0.898719310760498,-0.121384583413601,0.137785449624062,0.982995867729187, +-0.288489192724228,0.001648323610425,0.957481682300568,-0.279482245445251,0.173636257648468,0.944319903850555,-0.674713850021362,0.0405274368822575,0.736965835094452,-0.573379278182983,-0.0416153520345688,0.818232357501984,-0.712190270423889,-0.017360981553793,0.701771676540375,-0.712190270423889,-0.017360981553793,0.701771676540375,-0.770534634590149,0.0104323038831353,0.637312650680542,-0.674713850021362,0.0405274368822575,0.736965835094452,-0.824711382389069,0.00748538551852107,0.565504133701324,-0.770534634590149,0.0104323038831353,0.637312650680542,-0.8191077709198,-0.0735566467046738,0.568903982639313,-0.824711382389069,0.00748538551852107,0.565504133701324,-0.867402493953705,-0.104538455605507,0.486502319574356,-0.879416227340698,0.011167086660862,0.475922554731369,0.210018455982208,0.138713732361794,0.967807114124298,0.33131530880928,-0.172719866037369,0.9275763630867,0.0204367060214281,-0.199286758899689,0.979728043079376,-0.419056236743927,0.115671657025814,0.900561928749084,-0.0141718368977308,0.237838119268417,0.971201360225677,0.210018455982208,0.138713732361794,0.967807114124298,-0.0249519273638725,0.270054936408997,0.962521493434906,0.255923420190811,0.25581818819046,0.932233989238739,-0.0141718368977308,0.237838119268417,0.971201360225677,0.380091905593872,-0.136675447225571,0.914794862270355,0.319517523050308,-0.53386390209198,0.782877862453461,0.33131530880928,-0.172719866037369,0.9275763630867,0.255923420190811,0.25581818819046,0.932233989238739,0.152209937572479,0.348825424909592,0.924744784832001,0.198185980319977,0.357987344264984,0.912451207637787,0.0273442789912224,0.388423651456833,0.921075046062469,0.101489208638668,0.397484332323074,0.911979198455811,0.198185980319977,0.357987344264984,0.912451207637787,-0.00613200152292848,0.263835549354553,0.964548110961914,0.0273442789912224,0.388423651456833,0.921075046062469,0.142272219061852,0.359188586473465,0.922356784343719,-0.121384583413601,0.137785449624062,0.982995867729187,-0.00613200152292848,0.263835549354553,0.964548110961914,0.0117640560492873,0.0907051786780357,0.995808243751526, +-0.288489192724228,0.001648323610425,0.957481682300568,-0.196299910545349,-0.102691859006882,0.975151598453522,-0.369893908500671,-0.112040020525455,0.922293543815613,-0.369893908500671,-0.112040020525455,0.922293543815613,-0.487274169921875,-0.086381770670414,0.868966042995453,-0.435273826122284,-0.0532935746014118,0.898719310760498,-0.487274169921875,-0.086381770670414,0.868966042995453,-0.574878931045532,-0.0613475032150745,0.815935373306274,-0.573379278182983,-0.0416153520345688,0.818232357501984,-0.121384583413601,0.137785449624062,0.982995867729187,-0.106130473315716,-0.00179772975388914,0.994350552558899,-0.288489192724228,0.001648323610425,0.957481682300568,-0.652038395404816,-0.0638953074812889,0.755488693714142,-0.712190270423889,-0.017360981553793,0.701771676540375,-0.573379278182983,-0.0416153520345688,0.818232357501984,-0.777776956558228,-0.0449403673410416,0.626931548118591,-0.770534634590149,0.0104323038831353,0.637312650680542,-0.712190270423889,-0.017360981553793,0.701771676540375,-0.770534634590149,0.0104323038831353,0.637312650680542,-0.777776956558228,-0.0449403673410416,0.626931548118591,-0.8191077709198,-0.0735566467046738,0.568903982639313,-0.824711382389069,0.00748538551852107,0.565504133701324,-0.8191077709198,-0.0735566467046738,0.568903982639313,-0.867402493953705,-0.104538455605507,0.486502319574356,-0.419056236743927,0.115671657025814,0.900561928749084,0.210018455982208,0.138713732361794,0.967807114124298,0.0204367060214281,-0.199286758899689,0.979728043079376,-0.0141718368977308,0.237838119268417,0.971201360225677,-0.419056236743927,0.115671657025814,0.900561928749084,-0.705471813678741,0.249749213457108,0.663275718688965,-0.0249519273638725,0.270054936408997,0.962521493434906,0.152209937572479,0.348825424909592,0.924744784832001,0.255923420190811,0.25581818819046,0.932233989238739,-0.0249519273638725,0.270054936408997,0.962521493434906,-0.0141718368977308,0.237838119268417,0.971201360225677,-0.529488325119019,0.332409024238586,0.780478179454803,0.152209937572479,0.348825424909592,0.924744784832001, +0.222225874662399,0.35578066110611,0.907764136791229,0.198185980319977,0.357987344264984,0.912451207637787,0.198185980319977,0.357987344264984,0.912451207637787,0.142272219061852,0.359188586473465,0.922356784343719,0.0273442789912224,0.388423651456833,0.921075046062469,-0.00613200152292848,0.263835549354553,0.964548110961914,0.142272219061852,0.359188586473465,0.922356784343719,0.0818490907549858,0.206332668662071,0.975052535533905,-0.00613200152292848,0.263835549354553,0.964548110961914,0.0818490907549858,0.206332668662071,0.975052535533905,0.0117640560492873,0.0907051786780357,0.995808243751526,0.0117640560492873,0.0907051786780357,0.995808243751526,-0.106130473315716,-0.00179772975388914,0.994350552558899,-0.121384583413601,0.137785449624062,0.982995867729187,-0.196299910545349,-0.102691859006882,0.975151598453522,-0.288489192724228,0.001648323610425,0.957481682300568,-0.106130473315716,-0.00179772975388914,0.994350552558899,-0.20721822977066,-0.149217173457146,0.966847836971283,-0.369893908500671,-0.112040020525455,0.922293543815613,-0.196299910545349,-0.102691859006882,0.975151598453522,-0.369893908500671,-0.112040020525455,0.922293543815613,-0.539721667766571,-0.097270093858242,0.836205065250397,-0.487274169921875,-0.086381770670414,0.868966042995453,-0.574878931045532,-0.0613475032150745,0.815935373306274,-0.487274169921875,-0.086381770670414,0.868966042995453,-0.539721667766571,-0.097270093858242,0.836205065250397,-0.573379278182983,-0.0416153520345688,0.818232357501984,-0.574878931045532,-0.0613475032150745,0.815935373306274,-0.652038395404816,-0.0638953074812889,0.755488693714142,-0.737063944339752,-0.0735678821802139,0.671806871891022,-0.712190270423889,-0.017360981553793,0.701771676540375,-0.652038395404816,-0.0638953074812889,0.755488693714142,-0.712190270423889,-0.017360981553793,0.701771676540375,-0.737063944339752,-0.0735678821802139,0.671806871891022,-0.777776956558228,-0.0449403673410416,0.626931548118591,-0.776937425136566,-0.139912456274033,0.613834321498871,-0.8191077709198,-0.0735566467046738,0.568903982639313, +-0.777776956558228,-0.0449403673410416,0.626931548118591,-0.867402493953705,-0.104538455605507,0.486502319574356,-0.8191077709198,-0.0735566467046738,0.568903982639313,-0.791254043579102,-0.240793749690056,0.562081217765808,-0.511537253856659,-0.228545039892197,0.828309535980225,-0.419056236743927,0.115671657025814,0.900561928749084,0.0204367060214281,-0.199286758899689,0.979728043079376,-0.419056236743927,0.115671657025814,0.900561928749084,-0.796772658824921,0.1327755600214,0.589511394500732,-0.705471813678741,0.249749213457108,0.663275718688965,-0.705471813678741,0.249749213457108,0.663275718688965,-0.529488325119019,0.332409024238586,0.780478179454803,-0.0141718368977308,0.237838119268417,0.971201360225677,-0.0249519273638725,0.270054936408997,0.962521493434906,-0.327570140361786,0.465397536754608,0.822254717350006,0.152209937572479,0.348825424909592,0.924744784832001,-0.327570140361786,0.465397536754608,0.822254717350006,-0.0249519273638725,0.270054936408997,0.962521493434906,-0.529488325119019,0.332409024238586,0.780478179454803,0.152209937572479,0.348825424909592,0.924744784832001,0.00105744879692793,0.451491415500641,0.892274737358093,0.222225874662399,0.35578066110611,0.907764136791229,0.198185980319977,0.357987344264984,0.912451207637787,0.222225874662399,0.35578066110611,0.907764136791229,0.142272219061852,0.359188586473465,0.922356784343719,0.142272219061852,0.359188586473465,0.922356784343719,0.144554018974304,0.319296479225159,0.936564862728119,0.0818490907549858,0.206332668662071,0.975052535533905,0.124696351587772,0.0287098288536072,0.991779446601868,0.0117640560492873,0.0907051786780357,0.995808243751526,0.0818490907549858,0.206332668662071,0.975052535533905,0.0117640560492873,0.0907051786780357,0.995808243751526,0.0375596582889557,-0.0231424029916525,0.999026358127594,-0.106130473315716,-0.00179772975388914,0.994350552558899,-0.196299910545349,-0.102691859006882,0.975151598453522,-0.106130473315716,-0.00179772975388914,0.994350552558899,-0.019493293017149,-0.126048877835274,0.991832435131073,-0.20721822977066,-0.149217173457146,0.966847836971283, +-0.267993211746216,-0.147157415747643,0.952115535736084,-0.369893908500671,-0.112040020525455,0.922293543815613,-0.20721822977066,-0.149217173457146,0.966847836971283,-0.196299910545349,-0.102691859006882,0.975151598453522,-0.019493293017149,-0.126048877835274,0.991832435131073,-0.369893908500671,-0.112040020525455,0.922293543815613,-0.429535955190659,-0.139939904212952,0.892140984535217,-0.539721667766571,-0.097270093858242,0.836205065250397,-0.652038395404816,-0.0638953074812889,0.755488693714142,-0.574878931045532,-0.0613475032150745,0.815935373306274,-0.539721667766571,-0.097270093858242,0.836205065250397,-0.6630899310112,-0.125742182135582,0.737902760505676,-0.737063944339752,-0.0735678821802139,0.671806871891022,-0.652038395404816,-0.0638953074812889,0.755488693714142,-0.737063944339752,-0.0735678821802139,0.671806871891022,-0.776937425136566,-0.139912456274033,0.613834321498871,-0.777776956558228,-0.0449403673410416,0.626931548118591,-0.791254043579102,-0.240793749690056,0.562081217765808,-0.8191077709198,-0.0735566467046738,0.568903982639313,-0.776937425136566,-0.139912456274033,0.613834321498871,-0.419056236743927,0.115671657025814,0.900561928749084,-0.511537253856659,-0.228545039892197,0.828309535980225,-0.73626446723938,-0.0511607863008976,0.67475700378418,-0.73626446723938,-0.0511607863008976,0.67475700378418,-0.796772658824921,0.1327755600214,0.589511394500732,-0.419056236743927,0.115671657025814,0.900561928749084,-0.793591320514679,0.19418129324913,0.57663357257843,-0.705471813678741,0.249749213457108,0.663275718688965,-0.796772658824921,0.1327755600214,0.589511394500732,-0.529488325119019,0.332409024238586,0.780478179454803,-0.705471813678741,0.249749213457108,0.663275718688965,-0.810319662094116,0.346996903419495,0.472202301025391,0.00105744879692793,0.451491415500641,0.892274737358093,0.152209937572479,0.348825424909592,0.924744784832001,-0.327570140361786,0.465397536754608,0.822254717350006,-0.327570140361786,0.465397536754608,0.822254717350006,-0.529488325119019,0.332409024238586,0.780478179454803, +-0.737279295921326,0.499063402414322,0.455362290143967,-0.00619745999574661,0.37236088514328,0.928067147731781,0.222225874662399,0.35578066110611,0.907764136791229,0.00105744879692793,0.451491415500641,0.892274737358093,0.222225874662399,0.35578066110611,0.907764136791229,0.144554018974304,0.319296479225159,0.936564862728119,0.142272219061852,0.359188586473465,0.922356784343719,0.0398642681539059,0.300693362951279,0.952887296676636,0.0818490907549858,0.206332668662071,0.975052535533905,0.144554018974304,0.319296479225159,0.936564862728119,0.0117640560492873,0.0907051786780357,0.995808243751526,0.124696351587772,0.0287098288536072,0.991779446601868,0.0375596582889557,-0.0231424029916525,0.999026358127594,0.169040203094482,0.155326336622238,0.973292887210846,0.124696351587772,0.0287098288536072,0.991779446601868,0.0818490907549858,0.206332668662071,0.975052535533905,0.0375596582889557,-0.0231424029916525,0.999026358127594,-0.019493293017149,-0.126048877835274,0.991832435131073,-0.106130473315716,-0.00179772975388914,0.994350552558899,-0.20721822977066,-0.149217173457146,0.966847836971283,-0.105382353067398,-0.158963710069656,0.981644034385681,-0.267993211746216,-0.147157415747643,0.952115535736084,-0.369893908500671,-0.112040020525455,0.922293543815613,-0.267993211746216,-0.147157415747643,0.952115535736084,-0.429535955190659,-0.139939904212952,0.892140984535217,-0.019493293017149,-0.126048877835274,0.991832435131073,-0.105382353067398,-0.158963710069656,0.981644034385681,-0.20721822977066,-0.149217173457146,0.966847836971283,-0.539721667766571,-0.097270093858242,0.836205065250397,-0.429535955190659,-0.139939904212952,0.892140984535217,-0.47234570980072,-0.101257182657719,0.875577747821808,-0.552315831184387,-0.116374276578426,0.825472056865692,-0.652038395404816,-0.0638953074812889,0.755488693714142,-0.539721667766571,-0.097270093858242,0.836205065250397,-0.6630899310112,-0.125742182135582,0.737902760505676,-0.697158455848694,-0.209907874464989,0.685498833656311,-0.737063944339752,-0.0735678821802139,0.671806871891022, +-0.652038395404816,-0.0638953074812889,0.755488693714142,-0.552315831184387,-0.116374276578426,0.825472056865692,-0.6630899310112,-0.125742182135582,0.737902760505676,-0.737063944339752,-0.0735678821802139,0.671806871891022,-0.697158455848694,-0.209907874464989,0.685498833656311,-0.776937425136566,-0.139912456274033,0.613834321498871,-0.791254043579102,-0.240793749690056,0.562081217765808,-0.776937425136566,-0.139912456274033,0.613834321498871,-0.657468378543854,-0.380891978740692,0.650120437145233,-0.566608309745789,-0.488668888807297,0.663443744182587,-0.73626446723938,-0.0511607863008976,0.67475700378418,-0.511537253856659,-0.228545039892197,0.828309535980225,-0.790399849414825,0.0745906084775925,0.608033061027527,-0.796772658824921,0.1327755600214,0.589511394500732,-0.73626446723938,-0.0511607863008976,0.67475700378418,-0.775766253471375,0.329986482858658,0.537861943244934,-0.705471813678741,0.249749213457108,0.663275718688965,-0.793591320514679,0.19418129324913,0.57663357257843,-0.790399849414825,0.0745906084775925,0.608033061027527,-0.793591320514679,0.19418129324913,0.57663357257843,-0.796772658824921,0.1327755600214,0.589511394500732,-0.810319662094116,0.346996903419495,0.472202301025391,-0.705471813678741,0.249749213457108,0.663275718688965,-0.775766253471375,0.329986482858658,0.537861943244934,-0.737279295921326,0.499063402414322,0.455362290143967,-0.529488325119019,0.332409024238586,0.780478179454803,-0.810319662094116,0.346996903419495,0.472202301025391,-0.421322762966156,0.516362547874451,0.745557963848114,0.00105744879692793,0.451491415500641,0.892274737358093,-0.327570140361786,0.465397536754608,0.822254717350006,-0.421322762966156,0.516362547874451,0.745557963848114,-0.327570140361786,0.465397536754608,0.822254717350006,-0.737279295921326,0.499063402414322,0.455362290143967,-0.00619745999574661,0.37236088514328,0.928067147731781,0.144554018974304,0.319296479225159,0.936564862728119,0.222225874662399,0.35578066110611,0.907764136791229,-0.00619745999574661,0.37236088514328,0.928067147731781,0.00105744879692793,0.451491415500641,0.892274737358093, +-0.421322762966156,0.516362547874451,0.745557963848114,0.169040203094482,0.155326336622238,0.973292887210846,0.0818490907549858,0.206332668662071,0.975052535533905,0.0398642681539059,0.300693362951279,0.952887296676636,-0.00619745999574661,0.37236088514328,0.928067147731781,0.0398642681539059,0.300693362951279,0.952887296676636,0.144554018974304,0.319296479225159,0.936564862728119,0.119083918631077,-0.0739057511091232,0.990129709243774,0.0375596582889557,-0.0231424029916525,0.999026358127594,0.124696351587772,0.0287098288536072,0.991779446601868,0.169040203094482,0.155326336622238,0.973292887210846,0.269744843244553,0.0379557199776173,0.96218341588974,0.124696351587772,0.0287098288536072,0.991779446601868,0.119083918631077,-0.0739057511091232,0.990129709243774,-0.019493293017149,-0.126048877835274,0.991832435131073,0.0375596582889557,-0.0231424029916525,0.999026358127594,-0.267993211746216,-0.147157415747643,0.952115535736084,-0.105382353067398,-0.158963710069656,0.981644034385681,-0.189223185181618,-0.186048477888107,0.964147508144379,-0.267993211746216,-0.147157415747643,0.952115535736084,-0.312478959560394,-0.13835683465004,0.939794719219208,-0.429535955190659,-0.139939904212952,0.892140984535217,-0.019493293017149,-0.126048877835274,0.991832435131073,0.0219513513147831,-0.187619835138321,0.981996357440948,-0.105382353067398,-0.158963710069656,0.981644034385681,-0.429535955190659,-0.139939904212952,0.892140984535217,-0.312478959560394,-0.13835683465004,0.939794719219208,-0.47234570980072,-0.101257182657719,0.875577747821808,-0.539721667766571,-0.097270093858242,0.836205065250397,-0.47234570980072,-0.101257182657719,0.875577747821808,-0.552315831184387,-0.116374276578426,0.825472056865692,-0.697158455848694,-0.209907874464989,0.685498833656311,-0.6630899310112,-0.125742182135582,0.737902760505676,-0.606621086597443,-0.252755433320999,0.753740906715393,-0.552315831184387,-0.116374276578426,0.825472056865692,-0.53921914100647,-0.224370002746582,0.811726987361908,-0.6630899310112,-0.125742182135582,0.737902760505676, +-0.657468378543854,-0.380891978740692,0.650120437145233,-0.776937425136566,-0.139912456274033,0.613834321498871,-0.697158455848694,-0.209907874464989,0.685498833656311,-0.673218607902527,-0.304341197013855,0.673908710479736,-0.73626446723938,-0.0511607863008976,0.67475700378418,-0.566608309745789,-0.488668888807297,0.663443744182587,-0.765105664730072,-0.0868626981973648,0.638018906116486,-0.790399849414825,0.0745906084775925,0.608033061027527,-0.73626446723938,-0.0511607863008976,0.67475700378418,-0.775766253471375,0.329986482858658,0.537861943244934,-0.793591320514679,0.19418129324913,0.57663357257843,-0.781157910823822,0.258900880813599,0.56812185049057,-0.793591320514679,0.19418129324913,0.57663357257843,-0.790399849414825,0.0745906084775925,0.608033061027527,-0.810243606567383,0.111291743814945,0.575429737567902,-0.810319662094116,0.346996903419495,0.472202301025391,-0.775766253471375,0.329986482858658,0.537861943244934,-0.786263823509216,0.434414744377136,0.439400613307953,-0.786263823509216,0.434414744377136,0.439400613307953,-0.737279295921326,0.499063402414322,0.455362290143967,-0.810319662094116,0.346996903419495,0.472202301025391,-0.629855632781982,0.581296145915985,0.515147030353546,-0.421322762966156,0.516362547874451,0.745557963848114,-0.737279295921326,0.499063402414322,0.455362290143967,-0.284408807754517,0.460590809583664,0.84081369638443,-0.00619745999574661,0.37236088514328,0.928067147731781,-0.421322762966156,0.516362547874451,0.745557963848114,0.101366989314556,0.307748824357986,0.946052491664886,0.169040203094482,0.155326336622238,0.973292887210846,0.0398642681539059,0.300693362951279,0.952887296676636,-0.00619745999574661,0.37236088514328,0.928067147731781,-0.284408807754517,0.460590809583664,0.84081369638443,0.0398642681539059,0.300693362951279,0.952887296676636,0.124696351587772,0.0287098288536072,0.991779446601868,0.241990029811859,-0.102335780858994,0.964866876602173,0.119083918631077,-0.0739057511091232,0.990129709243774,0.169040203094482,0.155326336622238,0.973292887210846,0.215157672762871,0.20783819258213,0.954206705093384, +0.269744843244553,0.0379557199776173,0.96218341588974,0.124696351587772,0.0287098288536072,0.991779446601868,0.269744843244553,0.0379557199776173,0.96218341588974,0.241990029811859,-0.102335780858994,0.964866876602173,0.13447168469429,-0.181898981332779,0.974079072475433,-0.019493293017149,-0.126048877835274,0.991832435131073,0.119083918631077,-0.0739057511091232,0.990129709243774,-0.105382353067398,-0.158963710069656,0.981644034385681,-0.0754650682210922,-0.216229453682899,0.973421633243561,-0.189223185181618,-0.186048477888107,0.964147508144379,-0.267993211746216,-0.147157415747643,0.952115535736084,-0.189223185181618,-0.186048477888107,0.964147508144379,-0.312478959560394,-0.13835683465004,0.939794719219208,0.13447168469429,-0.181898981332779,0.974079072475433,0.0219513513147831,-0.187619835138321,0.981996357440948,-0.019493293017149,-0.126048877835274,0.991832435131073,-0.105382353067398,-0.158963710069656,0.981644034385681,0.0219513513147831,-0.187619835138321,0.981996357440948,-0.0754650682210922,-0.216229453682899,0.973421633243561,-0.312478959560394,-0.13835683465004,0.939794719219208,-0.361204236745834,-0.101794086396694,0.926913857460022,-0.47234570980072,-0.101257182657719,0.875577747821808,-0.361204236745834,-0.101794086396694,0.926913857460022,-0.552315831184387,-0.116374276578426,0.825472056865692,-0.47234570980072,-0.101257182657719,0.875577747821808,-0.53921914100647,-0.224370002746582,0.811726987361908,-0.606621086597443,-0.252755433320999,0.753740906715393,-0.6630899310112,-0.125742182135582,0.737902760505676,-0.697158455848694,-0.209907874464989,0.685498833656311,-0.606621086597443,-0.252755433320999,0.753740906715393,-0.641543745994568,-0.283227950334549,0.712883830070496,-0.552315831184387,-0.116374276578426,0.825472056865692,-0.408538341522217,-0.245138049125671,0.879206299781799,-0.53921914100647,-0.224370002746582,0.811726987361908,-0.697158455848694,-0.209907874464989,0.685498833656311,-0.56592321395874,-0.430073410272598,0.703397274017334,-0.657468378543854,-0.380891978740692,0.650120437145233, +-0.673218607902527,-0.304341197013855,0.673908710479736,-0.765105664730072,-0.0868626981973648,0.638018906116486,-0.73626446723938,-0.0511607863008976,0.67475700378418,-0.673218607902527,-0.304341197013855,0.673908710479736,-0.566608309745789,-0.488668888807297,0.663443744182587,-0.444866180419922,-0.734166622161865,0.51292622089386,-0.795577168464661,-0.00257485546171665,0.605846643447876,-0.790399849414825,0.0745906084775925,0.608033061027527,-0.765105664730072,-0.0868626981973648,0.638018906116486,-0.793591320514679,0.19418129324913,0.57663357257843,-0.810243606567383,0.111291743814945,0.575429737567902,-0.781157910823822,0.258900880813599,0.56812185049057,-0.752257943153381,0.393467456102371,0.528480112552643,-0.775766253471375,0.329986482858658,0.537861943244934,-0.781157910823822,0.258900880813599,0.56812185049057,-0.810243606567383,0.111291743814945,0.575429737567902,-0.790399849414825,0.0745906084775925,0.608033061027527,-0.795577168464661,-0.00257485546171665,0.605846643447876,-0.694475829601288,0.440881431102753,0.56861823797226,-0.786263823509216,0.434414744377136,0.439400613307953,-0.775766253471375,0.329986482858658,0.537861943244934,-0.786263823509216,0.434414744377136,0.439400613307953,-0.710740208625793,0.538954377174377,0.452080011367798,-0.737279295921326,0.499063402414322,0.455362290143967,-0.284408807754517,0.460590809583664,0.84081369638443,-0.421322762966156,0.516362547874451,0.745557963848114,-0.629855632781982,0.581296145915985,0.515147030353546,-0.629855632781982,0.581296145915985,0.515147030353546,-0.737279295921326,0.499063402414322,0.455362290143967,-0.695606708526611,0.613502383232117,0.373826146125793,0.169040203094482,0.155326336622238,0.973292887210846,0.101366989314556,0.307748824357986,0.946052491664886,0.215157672762871,0.20783819258213,0.954206705093384,-0.102126315236092,0.454168409109116,0.885043084621429,0.101366989314556,0.307748824357986,0.946052491664886,0.0398642681539059,0.300693362951279,0.952887296676636,-0.102126315236092,0.454168409109116,0.885043084621429,0.0398642681539059,0.300693362951279,0.952887296676636, +-0.284408807754517,0.460590809583664,0.84081369638443,0.119083918631077,-0.0739057511091232,0.990129709243774,0.241990029811859,-0.102335780858994,0.964866876602173,0.13447168469429,-0.181898981332779,0.974079072475433,0.215157672762871,0.20783819258213,0.954206705093384,0.25754576921463,0.177567407488823,0.949810326099396,0.269744843244553,0.0379557199776173,0.96218341588974,0.324032008647919,-0.0440292023122311,0.945020973682404,0.241990029811859,-0.102335780858994,0.964866876602173,0.269744843244553,0.0379557199776173,0.96218341588974,-0.189223185181618,-0.186048477888107,0.964147508144379,-0.0754650682210922,-0.216229453682899,0.973421633243561,-0.179938271641731,-0.195095598697662,0.964136838912964,-0.179938271641731,-0.195095598697662,0.964136838912964,-0.312478959560394,-0.13835683465004,0.939794719219208,-0.189223185181618,-0.186048477888107,0.964147508144379,0.0219513513147831,-0.187619835138321,0.981996357440948,0.13447168469429,-0.181898981332779,0.974079072475433,0.097467765212059,-0.245669409632683,0.964441001415253,-0.0754650682210922,-0.216229453682899,0.973421633243561,0.0219513513147831,-0.187619835138321,0.981996357440948,0.097467765212059,-0.245669409632683,0.964441001415253,-0.312478959560394,-0.13835683465004,0.939794719219208,-0.213286489248276,-0.0933218449354172,0.972522377967834,-0.361204236745834,-0.101794086396694,0.926913857460022,-0.361204236745834,-0.101794086396694,0.926913857460022,-0.408538341522217,-0.245138049125671,0.879206299781799,-0.552315831184387,-0.116374276578426,0.825472056865692,-0.53921914100647,-0.224370002746582,0.811726987361908,-0.477441400289536,-0.3483527302742,0.806659817695618,-0.606621086597443,-0.252755433320999,0.753740906715393,-0.641543745994568,-0.283227950334549,0.712883830070496,-0.606621086597443,-0.252755433320999,0.753740906715393,-0.529405832290649,-0.386903166770935,0.755006730556488,-0.56592321395874,-0.430073410272598,0.703397274017334,-0.697158455848694,-0.209907874464989,0.685498833656311,-0.641543745994568,-0.283227950334549,0.712883830070496, +-0.394611328840256,-0.358055353164673,0.846214056015015,-0.53921914100647,-0.224370002746582,0.811726987361908,-0.408538341522217,-0.245138049125671,0.879206299781799,-0.452228933572769,-0.559684455394745,0.694436550140381,-0.657468378543854,-0.380891978740692,0.650120437145233,-0.56592321395874,-0.430073410272598,0.703397274017334,-0.673218607902527,-0.304341197013855,0.673908710479736,-0.669870674610138,-0.456257253885269,0.585749447345734,-0.765105664730072,-0.0868626981973648,0.638018906116486,-0.673218607902527,-0.304341197013855,0.673908710479736,-0.444866180419922,-0.734166622161865,0.51292622089386,-0.669870674610138,-0.456257253885269,0.585749447345734,-0.795577168464661,-0.00257485546171665,0.605846643447876,-0.765105664730072,-0.0868626981973648,0.638018906116486,-0.778539299964905,-0.255279809236526,0.573331236839294,-0.810243606567383,0.111291743814945,0.575429737567902,-0.806196808815002,0.249289333820343,0.536564409732819,-0.781157910823822,0.258900880813599,0.56812185049057,-0.694475829601288,0.440881431102753,0.56861823797226,-0.775766253471375,0.329986482858658,0.537861943244934,-0.752257943153381,0.393467456102371,0.528480112552643,-0.752257943153381,0.393467456102371,0.528480112552643,-0.781157910823822,0.258900880813599,0.56812185049057,-0.806196808815002,0.249289333820343,0.536564409732819,-0.810243606567383,0.111291743814945,0.575429737567902,-0.795577168464661,-0.00257485546171665,0.605846643447876,-0.813344120979309,-0.105015233159065,0.572226464748383,-0.694475829601288,0.440881431102753,0.56861823797226,-0.710740208625793,0.538954377174377,0.452080011367798,-0.786263823509216,0.434414744377136,0.439400613307953,-0.710740208625793,0.538954377174377,0.452080011367798,-0.695606708526611,0.613502383232117,0.373826146125793,-0.737279295921326,0.499063402414322,0.455362290143967,-0.450719952583313,0.633539736270905,0.628871023654938,-0.284408807754517,0.460590809583664,0.84081369638443,-0.629855632781982,0.581296145915985,0.515147030353546,-0.695606708526611,0.613502383232117,0.373826146125793, +-0.652040481567383,0.659188985824585,0.374583691358566,-0.629855632781982,0.581296145915985,0.515147030353546,-0.00611633760854602,0.431445360183716,0.902118265628815,0.215157672762871,0.20783819258213,0.954206705093384,0.101366989314556,0.307748824357986,0.946052491664886,-0.102126315236092,0.454168409109116,0.885043084621429,-0.131994813680649,0.528706967830658,0.838478446006775,0.101366989314556,0.307748824357986,0.946052491664886,-0.450719952583313,0.633539736270905,0.628871023654938,-0.102126315236092,0.454168409109116,0.885043084621429,-0.284408807754517,0.460590809583664,0.84081369638443,0.276560455560684,-0.224262520670891,0.93446272611618,0.13447168469429,-0.181898981332779,0.974079072475433,0.241990029811859,-0.102335780858994,0.964866876602173,0.0890409275889397,0.350285410881042,0.932401061058044,0.25754576921463,0.177567407488823,0.949810326099396,0.215157672762871,0.20783819258213,0.954206705093384,0.324032008647919,-0.0440292023122311,0.945020973682404,0.269744843244553,0.0379557199776173,0.96218341588974,0.25754576921463,0.177567407488823,0.949810326099396,0.345960080623627,-0.153627172112465,0.925586402416229,0.241990029811859,-0.102335780858994,0.964866876602173,0.324032008647919,-0.0440292023122311,0.945020973682404,-0.179938271641731,-0.195095598697662,0.964136838912964,-0.0754650682210922,-0.216229453682899,0.973421633243561,-0.00671576242893934,-0.215617939829826,0.976454675197601,-0.312478959560394,-0.13835683465004,0.939794719219208,-0.179938271641731,-0.195095598697662,0.964136838912964,-0.213286489248276,-0.0933218449354172,0.972522377967834,0.097467765212059,-0.245669409632683,0.964441001415253,0.13447168469429,-0.181898981332779,0.974079072475433,0.276560455560684,-0.224262520670891,0.93446272611618,-0.0224604625254869,-0.26274386048317,0.964604079723358,-0.0754650682210922,-0.216229453682899,0.973421633243561,0.097467765212059,-0.245669409632683,0.964441001415253,-0.213286489248276,-0.0933218449354172,0.972522377967834,-0.198228061199188,-0.10276210308075,0.974754095077515,-0.361204236745834,-0.101794086396694,0.926913857460022, +-0.361204236745834,-0.101794086396694,0.926913857460022,-0.300045013427734,-0.224285453557968,0.927183330059052,-0.408538341522217,-0.245138049125671,0.879206299781799,-0.477441400289536,-0.3483527302742,0.806659817695618,-0.53921914100647,-0.224370002746582,0.811726987361908,-0.394611328840256,-0.358055353164673,0.846214056015015,-0.529405832290649,-0.386903166770935,0.755006730556488,-0.606621086597443,-0.252755433320999,0.753740906715393,-0.477441400289536,-0.3483527302742,0.806659817695618,-0.56592321395874,-0.430073410272598,0.703397274017334,-0.641543745994568,-0.283227950334549,0.712883830070496,-0.529405832290649,-0.386903166770935,0.755006730556488,-0.394611328840256,-0.358055353164673,0.846214056015015,-0.408538341522217,-0.245138049125671,0.879206299781799,-0.268775105476379,-0.327284336090088,0.90589451789856,-0.318495690822601,-0.588527739048004,0.743098616600037,-0.452228933572769,-0.559684455394745,0.694436550140381,-0.56592321395874,-0.430073410272598,0.703397274017334,-0.669870674610138,-0.456257253885269,0.585749447345734,-0.778539299964905,-0.255279809236526,0.573331236839294,-0.765105664730072,-0.0868626981973648,0.638018906116486,-0.36576721072197,-0.8657146692276,0.341690331697464,-0.669870674610138,-0.456257253885269,0.585749447345734,-0.444866180419922,-0.734166622161865,0.51292622089386,-0.795577168464661,-0.00257485546171665,0.605846643447876,-0.778539299964905,-0.255279809236526,0.573331236839294,-0.813344120979309,-0.105015233159065,0.572226464748383,-0.810243606567383,0.111291743814945,0.575429737567902,-0.809087634086609,0.0589048154652119,0.584728479385376,-0.806196808815002,0.249289333820343,0.536564409732819,-0.656515955924988,0.513158440589905,0.552860915660858,-0.694475829601288,0.440881431102753,0.56861823797226,-0.752257943153381,0.393467456102371,0.528480112552643,-0.722746670246124,0.42024153470993,0.548665642738342,-0.752257943153381,0.393467456102371,0.528480112552643,-0.806196808815002,0.249289333820343,0.536564409732819,-0.813344120979309,-0.105015233159065,0.572226464748383, +-0.809087634086609,0.0589048154652119,0.584728479385376,-0.810243606567383,0.111291743814945,0.575429737567902,-0.710740208625793,0.538954377174377,0.452080011367798,-0.694475829601288,0.440881431102753,0.56861823797226,-0.599746942520142,0.533644497394562,0.596260845661163,-0.710740208625793,0.538954377174377,0.452080011367798,-0.60805469751358,0.605964362621307,0.512909829616547,-0.695606708526611,0.613502383232117,0.373826146125793,-0.450719952583313,0.633539736270905,0.628871023654938,-0.629855632781982,0.581296145915985,0.515147030353546,-0.652040481567383,0.659188985824585,0.374583691358566,-0.652040481567383,0.659188985824585,0.374583691358566,-0.695606708526611,0.613502383232117,0.373826146125793,-0.594041466712952,0.67406153678894,0.439039409160614,-0.00611633760854602,0.431445360183716,0.902118265628815,0.0890409275889397,0.350285410881042,0.932401061058044,0.215157672762871,0.20783819258213,0.954206705093384,-0.00611633760854602,0.431445360183716,0.902118265628815,0.101366989314556,0.307748824357986,0.946052491664886,-0.131994813680649,0.528706967830658,0.838478446006775,-0.102126315236092,0.454168409109116,0.885043084621429,-0.450719952583313,0.633539736270905,0.628871023654938,-0.131994813680649,0.528706967830658,0.838478446006775,0.241990029811859,-0.102335780858994,0.964866876602173,0.345960080623627,-0.153627172112465,0.925586402416229,0.276560455560684,-0.224262520670891,0.93446272611618,-0.0373099334537983,0.529941618442535,0.847212851047516,0.25754576921463,0.177567407488823,0.949810326099396,0.0890409275889397,0.350285410881042,0.932401061058044,0.324032008647919,-0.0440292023122311,0.945020973682404,0.25754576921463,0.177567407488823,0.949810326099396,0.325155913829803,0.0189409237354994,0.945470631122589,0.324032008647919,-0.0440292023122311,0.945020973682404,0.325155913829803,0.0189409237354994,0.945470631122589,0.345960080623627,-0.153627172112465,0.925586402416229,-0.0224604625254869,-0.26274386048317,0.964604079723358,-0.00671576242893934,-0.215617939829826,0.976454675197601,-0.0754650682210922,-0.216229453682899,0.973421633243561, +-0.179938271641731,-0.195095598697662,0.964136838912964,-0.00671576242893934,-0.215617939829826,0.976454675197601,-0.0976392030715942,-0.127415031194687,0.987031877040863,-0.179938271641731,-0.195095598697662,0.964136838912964,-0.0976392030715942,-0.127415031194687,0.987031877040863,-0.213286489248276,-0.0933218449354172,0.972522377967834,0.263909906148911,-0.301178723573685,0.916320264339447,0.097467765212059,-0.245669409632683,0.964441001415253,0.276560455560684,-0.224262520670891,0.93446272611618,0.097467765212059,-0.245669409632683,0.964441001415253,0.114189513027668,-0.282916963100433,0.952322721481323,-0.0224604625254869,-0.26274386048317,0.964604079723358,-0.213286489248276,-0.0933218449354172,0.972522377967834,-0.0976392030715942,-0.127415031194687,0.987031877040863,-0.198228061199188,-0.10276210308075,0.974754095077515,-0.198228061199188,-0.10276210308075,0.974754095077515,-0.300045013427734,-0.224285453557968,0.927183330059052,-0.361204236745834,-0.101794086396694,0.926913857460022,-0.268775105476379,-0.327284336090088,0.90589451789856,-0.408538341522217,-0.245138049125671,0.879206299781799,-0.300045013427734,-0.224285453557968,0.927183330059052,-0.394611328840256,-0.358055353164673,0.846214056015015,-0.460606157779694,-0.383755743503571,0.800358295440674,-0.477441400289536,-0.3483527302742,0.806659817695618,-0.460606157779694,-0.383755743503571,0.800358295440674,-0.529405832290649,-0.386903166770935,0.755006730556488,-0.477441400289536,-0.3483527302742,0.806659817695618,-0.56592321395874,-0.430073410272598,0.703397274017334,-0.529405832290649,-0.386903166770935,0.755006730556488,-0.473286420106888,-0.462700933218002,0.749605000019073,-0.284940034151077,-0.332196474075317,0.899141013622284,-0.394611328840256,-0.358055353164673,0.846214056015015,-0.268775105476379,-0.327284336090088,0.90589451789856,-0.46800422668457,-0.449166148900986,0.761066138744354,-0.318495690822601,-0.588527739048004,0.743098616600037,-0.56592321395874,-0.430073410272598,0.703397274017334,-0.669870674610138,-0.456257253885269,0.585749447345734, +-0.587612748146057,-0.680154800415039,0.438292741775513,-0.778539299964905,-0.255279809236526,0.573331236839294,-0.36576721072197,-0.8657146692276,0.341690331697464,-0.587612748146057,-0.680154800415039,0.438292741775513,-0.669870674610138,-0.456257253885269,0.585749447345734,-0.778539299964905,-0.255279809236526,0.573331236839294,-0.695576131343842,-0.481532782316208,0.53319776058197,-0.813344120979309,-0.105015233159065,0.572226464748383,-0.809087634086609,0.0589048154652119,0.584728479385376,-0.685100853443146,0.231854453682899,0.69056510925293,-0.806196808815002,0.249289333820343,0.536564409732819,-0.599746942520142,0.533644497394562,0.596260845661163,-0.694475829601288,0.440881431102753,0.56861823797226,-0.656515955924988,0.513158440589905,0.552860915660858,-0.656515955924988,0.513158440589905,0.552860915660858,-0.752257943153381,0.393467456102371,0.528480112552643,-0.708158433437347,0.544266581535339,0.449761569499969,-0.722746670246124,0.42024153470993,0.548665642738342,-0.708158433437347,0.544266581535339,0.449761569499969,-0.752257943153381,0.393467456102371,0.528480112552643,-0.722746670246124,0.42024153470993,0.548665642738342,-0.806196808815002,0.249289333820343,0.536564409732819,-0.685100853443146,0.231854453682899,0.69056510925293,-0.773645162582397,-0.153492450714111,0.614746332168579,-0.809087634086609,0.0589048154652119,0.584728479385376,-0.813344120979309,-0.105015233159065,0.572226464748383,-0.710740208625793,0.538954377174377,0.452080011367798,-0.599746942520142,0.533644497394562,0.596260845661163,-0.60805469751358,0.605964362621307,0.512909829616547,-0.594041466712952,0.67406153678894,0.439039409160614,-0.695606708526611,0.613502383232117,0.373826146125793,-0.60805469751358,0.605964362621307,0.512909829616547,-0.450719952583313,0.633539736270905,0.628871023654938,-0.652040481567383,0.659188985824585,0.374583691358566,-0.586949408054352,0.715733051300049,0.378439426422119,-0.652040481567383,0.659188985824585,0.374583691358566,-0.594041466712952,0.67406153678894,0.439039409160614,-0.563925087451935,0.730785250663757,0.384631305932999, +-0.00611633760854602,0.431445360183716,0.902118265628815,-0.189750388264656,0.570288181304932,0.799228310585022,0.0890409275889397,0.350285410881042,0.932401061058044,-0.00611633760854602,0.431445360183716,0.902118265628815,-0.131994813680649,0.528706967830658,0.838478446006775,-0.375306457281113,0.650558054447174,0.660241663455963,-0.375306457281113,0.650558054447174,0.660241663455963,-0.131994813680649,0.528706967830658,0.838478446006775,-0.450719952583313,0.633539736270905,0.628871023654938,0.276560455560684,-0.224262520670891,0.93446272611618,0.345960080623627,-0.153627172112465,0.925586402416229,0.390716791152954,-0.223422572016716,0.892985224723816,0.135088846087456,0.393550544977188,0.909323275089264,0.25754576921463,0.177567407488823,0.949810326099396,-0.0373099334537983,0.529941618442535,0.847212851047516,-0.0373099334537983,0.529941618442535,0.847212851047516,0.0890409275889397,0.350285410881042,0.932401061058044,-0.189750388264656,0.570288181304932,0.799228310585022,0.135088846087456,0.393550544977188,0.909323275089264,0.325155913829803,0.0189409237354994,0.945470631122589,0.25754576921463,0.177567407488823,0.949810326099396,0.345960080623627,-0.153627172112465,0.925586402416229,0.325155913829803,0.0189409237354994,0.945470631122589,0.352488189935684,-0.0914708077907562,0.931335091590881,-0.0224604625254869,-0.26274386048317,0.964604079723358,0.114189513027668,-0.282916963100433,0.952322721481323,-0.00671576242893934,-0.215617939829826,0.976454675197601,-0.0976392030715942,-0.127415031194687,0.987031877040863,-0.00671576242893934,-0.215617939829826,0.976454675197601,0.0314075648784637,-0.0777726843953133,0.996476233005524,0.263909906148911,-0.301178723573685,0.916320264339447,0.114189513027668,-0.282916963100433,0.952322721481323,0.097467765212059,-0.245669409632683,0.964441001415253,0.276560455560684,-0.224262520670891,0.93446272611618,0.397892862558365,-0.268749415874481,0.877185761928558,0.263909906148911,-0.301178723573685,0.916320264339447,-0.0976392030715942,-0.127415031194687,0.987031877040863,-0.0660252124071121,-0.0564356781542301,0.996220648288727, +-0.198228061199188,-0.10276210308075,0.974754095077515,-0.300045013427734,-0.224285453557968,0.927183330059052,-0.198228061199188,-0.10276210308075,0.974754095077515,-0.148019000887871,-0.202228307723999,0.968087792396545,-0.300045013427734,-0.224285453557968,0.927183330059052,-0.148019000887871,-0.202228307723999,0.968087792396545,-0.268775105476379,-0.327284336090088,0.90589451789856,-0.460606157779694,-0.383755743503571,0.800358295440674,-0.394611328840256,-0.358055353164673,0.846214056015015,-0.400810897350311,-0.358039557933807,0.843301951885223,-0.460606157779694,-0.383755743503571,0.800358295440674,-0.473286420106888,-0.462700933218002,0.749605000019073,-0.529405832290649,-0.386903166770935,0.755006730556488,-0.56592321395874,-0.430073410272598,0.703397274017334,-0.473286420106888,-0.462700933218002,0.749605000019073,-0.46800422668457,-0.449166148900986,0.761066138744354,-0.400810897350311,-0.358039557933807,0.843301951885223,-0.394611328840256,-0.358055353164673,0.846214056015015,-0.284940034151077,-0.332196474075317,0.899141013622284,-0.268775105476379,-0.327284336090088,0.90589451789856,-0.102661363780499,-0.223194599151611,0.969352722167969,-0.284940034151077,-0.332196474075317,0.899141013622284,-0.46800422668457,-0.449166148900986,0.761066138744354,-0.273612946271896,-0.483155876398087,0.831682741641998,-0.318495690822601,-0.588527739048004,0.743098616600037,-0.587612748146057,-0.680154800415039,0.438292741775513,-0.695576131343842,-0.481532782316208,0.53319776058197,-0.778539299964905,-0.255279809236526,0.573331236839294,-0.245746552944183,-0.941833317279816,0.22925665974617,-0.587612748146057,-0.680154800415039,0.438292741775513,-0.36576721072197,-0.8657146692276,0.341690331697464,-0.739045262336731,-0.329217821359634,0.587730884552002,-0.813344120979309,-0.105015233159065,0.572226464748383,-0.695576131343842,-0.481532782316208,0.53319776058197,-0.706309199333191,0.00598905375227332,0.707877993583679,-0.685100853443146,0.231854453682899,0.69056510925293,-0.809087634086609,0.0589048154652119,0.584728479385376, +-0.545836865901947,0.590200006961823,0.594748556613922,-0.599746942520142,0.533644497394562,0.596260845661163,-0.656515955924988,0.513158440589905,0.552860915660858,-0.708158433437347,0.544266581535339,0.449761569499969,-0.624029755592346,0.640156924724579,0.448091298341751,-0.656515955924988,0.513158440589905,0.552860915660858,-0.722746670246124,0.42024153470993,0.548665642738342,-0.63034451007843,0.541417717933655,0.556356430053711,-0.708158433437347,0.544266581535339,0.449761569499969,-0.722746670246124,0.42024153470993,0.548665642738342,-0.685100853443146,0.231854453682899,0.69056510925293,-0.579710364341736,0.412778288125992,0.702531099319458,-0.773645162582397,-0.153492450714111,0.614746332168579,-0.706309199333191,0.00598905375227332,0.707877993583679,-0.809087634086609,0.0589048154652119,0.584728479385376,-0.773645162582397,-0.153492450714111,0.614746332168579,-0.813344120979309,-0.105015233159065,0.572226464748383,-0.739045262336731,-0.329217821359634,0.587730884552002,-0.508990883827209,0.627527236938477,0.589183866977692,-0.60805469751358,0.605964362621307,0.512909829616547,-0.599746942520142,0.533644497394562,0.596260845661163,-0.508990883827209,0.627527236938477,0.589183866977692,-0.594041466712952,0.67406153678894,0.439039409160614,-0.60805469751358,0.605964362621307,0.512909829616547,-0.586949408054352,0.715733051300049,0.378439426422119,-0.652040481567383,0.659188985824585,0.374583691358566,-0.563925087451935,0.730785250663757,0.384631305932999,-0.450719952583313,0.633539736270905,0.628871023654938,-0.586949408054352,0.715733051300049,0.378439426422119,-0.375306457281113,0.650558054447174,0.660241663455963,-0.563925087451935,0.730785250663757,0.384631305932999,-0.594041466712952,0.67406153678894,0.439039409160614,-0.43961900472641,0.71623420715332,0.541981220245361,-0.189750388264656,0.570288181304932,0.799228310585022,-0.00611633760854602,0.431445360183716,0.902118265628815,-0.375306457281113,0.650558054447174,0.660241663455963,0.345960080623627,-0.153627172112465,0.925586402416229,0.380151271820068,-0.184472814202309,0.906341254711151, +0.390716791152954,-0.223422572016716,0.892985224723816,0.390716791152954,-0.223422572016716,0.892985224723816,0.397892862558365,-0.268749415874481,0.877185761928558,0.276560455560684,-0.224262520670891,0.93446272611618,-0.0373099334537983,0.529941618442535,0.847212851047516,-0.194314926862717,0.703900992870331,0.683201968669891,0.135088846087456,0.393550544977188,0.909323275089264,-0.0373099334537983,0.529941618442535,0.847212851047516,-0.189750388264656,0.570288181304932,0.799228310585022,-0.418818205595016,0.73913836479187,0.527509033679962,0.231636002659798,0.184967756271362,0.955055773258209,0.325155913829803,0.0189409237354994,0.945470631122589,0.135088846087456,0.393550544977188,0.909323275089264,0.231636002659798,0.184967756271362,0.955055773258209,0.352488189935684,-0.0914708077907562,0.931335091590881,0.325155913829803,0.0189409237354994,0.945470631122589,0.345960080623627,-0.153627172112465,0.925586402416229,0.352488189935684,-0.0914708077907562,0.931335091590881,0.380151271820068,-0.184472814202309,0.906341254711151,0.114189513027668,-0.282916963100433,0.952322721481323,0.178814366459847,-0.240504547953606,0.954035043716431,-0.00671576242893934,-0.215617939829826,0.976454675197601,0.0314075648784637,-0.0777726843953133,0.996476233005524,-0.00671576242893934,-0.215617939829826,0.976454675197601,0.141379252076149,-0.111214518547058,0.983688533306122,-0.0976392030715942,-0.127415031194687,0.987031877040863,0.0314075648784637,-0.0777726843953133,0.996476233005524,-0.0660252124071121,-0.0564356781542301,0.996220648288727,0.114189513027668,-0.282916963100433,0.952322721481323,0.263909906148911,-0.301178723573685,0.916320264339447,0.178814366459847,-0.240504547953606,0.954035043716431,0.263909906148911,-0.301178723573685,0.916320264339447,0.397892862558365,-0.268749415874481,0.877185761928558,0.314726442098618,-0.258485496044159,0.913308501243591,-0.0470021888613701,-0.0898429080843925,0.994846165180206,-0.198228061199188,-0.10276210308075,0.974754095077515,-0.0660252124071121,-0.0564356781542301,0.996220648288727, +-0.198228061199188,-0.10276210308075,0.974754095077515,-0.0470021888613701,-0.0898429080843925,0.994846165180206,-0.148019000887871,-0.202228307723999,0.968087792396545,-0.148019000887871,-0.202228307723999,0.968087792396545,-0.102661363780499,-0.223194599151611,0.969352722167969,-0.268775105476379,-0.327284336090088,0.90589451789856,-0.415416538715363,-0.434425234794617,0.799189388751984,-0.460606157779694,-0.383755743503571,0.800358295440674,-0.400810897350311,-0.358039557933807,0.843301951885223,-0.460606157779694,-0.383755743503571,0.800358295440674,-0.46800422668457,-0.449166148900986,0.761066138744354,-0.473286420106888,-0.462700933218002,0.749605000019073,-0.263697236776352,-0.318229734897614,0.910600602626801,-0.400810897350311,-0.358039557933807,0.843301951885223,-0.284940034151077,-0.332196474075317,0.899141013622284,-0.224711120128632,-0.183930441737175,0.956908762454987,-0.284940034151077,-0.332196474075317,0.899141013622284,-0.102661363780499,-0.223194599151611,0.969352722167969,-0.273612946271896,-0.483155876398087,0.831682741641998,-0.46800422668457,-0.449166148900986,0.761066138744354,-0.431128740310669,-0.390964508056641,0.813187956809998,-0.318495690822601,-0.588527739048004,0.743098616600037,-0.273612946271896,-0.483155876398087,0.831682741641998,-0.0555759146809578,-0.541666805744171,0.838753998279572,-0.587612748146057,-0.680154800415039,0.438292741775513,-0.380785286426544,-0.865480899810791,0.325492233037949,-0.695576131343842,-0.481532782316208,0.53319776058197,-0.587612748146057,-0.680154800415039,0.438292741775513,-0.245746552944183,-0.941833317279816,0.22925665974617,-0.380785286426544,-0.865480899810791,0.325492233037949,-0.739045262336731,-0.329217821359634,0.587730884552002,-0.695576131343842,-0.481532782316208,0.53319776058197,-0.55600780248642,-0.686326742172241,0.468839764595032,-0.561913311481476,0.0931704938411713,0.821932196617126,-0.685100853443146,0.231854453682899,0.69056510925293,-0.706309199333191,0.00598905375227332,0.707877993583679,-0.545836865901947,0.590200006961823,0.594748556613922, +-0.508990883827209,0.627527236938477,0.589183866977692,-0.599746942520142,0.533644497394562,0.596260845661163,-0.545836865901947,0.590200006961823,0.594748556613922,-0.656515955924988,0.513158440589905,0.552860915660858,-0.624029755592346,0.640156924724579,0.448091298341751,-0.708158433437347,0.544266581535339,0.449761569499969,-0.612928032875061,0.654981434345245,0.441948533058167,-0.624029755592346,0.640156924724579,0.448091298341751,-0.722746670246124,0.42024153470993,0.548665642738342,-0.579710364341736,0.412778288125992,0.702531099319458,-0.63034451007843,0.541417717933655,0.556356430053711,-0.708158433437347,0.544266581535339,0.449761569499969,-0.63034451007843,0.541417717933655,0.556356430053711,-0.612928032875061,0.654981434345245,0.441948533058167,-0.518901586532593,0.255862206220627,0.815644204616547,-0.579710364341736,0.412778288125992,0.702531099319458,-0.685100853443146,0.231854453682899,0.69056510925293,-0.773645162582397,-0.153492450714111,0.614746332168579,-0.648585617542267,-0.248195856809616,0.719538331031799,-0.706309199333191,0.00598905375227332,0.707877993583679,-0.662944197654724,-0.480157971382141,0.574415564537048,-0.773645162582397,-0.153492450714111,0.614746332168579,-0.739045262336731,-0.329217821359634,0.587730884552002,-0.508990883827209,0.627527236938477,0.589183866977692,-0.43961900472641,0.71623420715332,0.541981220245361,-0.594041466712952,0.67406153678894,0.439039409160614,-0.586949408054352,0.715733051300049,0.378439426422119,-0.563925087451935,0.730785250663757,0.384631305932999,-0.499369263648987,0.799538552761078,0.333718836307526,-0.375306457281113,0.650558054447174,0.660241663455963,-0.586949408054352,0.715733051300049,0.378439426422119,-0.418818205595016,0.73913836479187,0.527509033679962,-0.40128892660141,0.817748129367828,0.412619769573212,-0.563925087451935,0.730785250663757,0.384631305932999,-0.43961900472641,0.71623420715332,0.541981220245361,-0.189750388264656,0.570288181304932,0.799228310585022,-0.375306457281113,0.650558054447174,0.660241663455963,-0.418818205595016,0.73913836479187,0.527509033679962, +0.390716791152954,-0.223422572016716,0.892985224723816,0.380151271820068,-0.184472814202309,0.906341254711151,0.409927040338516,-0.185765042901039,0.893001139163971,0.390716791152954,-0.223422572016716,0.892985224723816,0.464754343032837,-0.227592840790749,0.855689644813538,0.397892862558365,-0.268749415874481,0.877185761928558,-0.0373099334537983,0.529941618442535,0.847212851047516,-0.418818205595016,0.73913836479187,0.527509033679962,-0.194314926862717,0.703900992870331,0.683201968669891,-0.102668851613998,0.632838129997253,0.767447054386139,0.135088846087456,0.393550544977188,0.909323275089264,-0.194314926862717,0.703900992870331,0.683201968669891,0.231636002659798,0.184967756271362,0.955055773258209,0.135088846087456,0.393550544977188,0.909323275089264,-0.102668851613998,0.632838129997253,0.767447054386139,0.295208811759949,-0.0315925404429436,0.954910278320313,0.352488189935684,-0.0914708077907562,0.931335091590881,0.231636002659798,0.184967756271362,0.955055773258209,0.352488189935684,-0.0914708077907562,0.931335091590881,0.350361555814743,-0.173207238316536,0.920459628105164,0.380151271820068,-0.184472814202309,0.906341254711151,0.178814366459847,-0.240504547953606,0.954035043716431,0.141379252076149,-0.111214518547058,0.983688533306122,-0.00671576242893934,-0.215617939829826,0.976454675197601,0.141379252076149,-0.111214518547058,0.983688533306122,0.110032014548779,-0.0681025236845016,0.991592109203339,0.0314075648784637,-0.0777726843953133,0.996476233005524,0.0314075648784637,-0.0777726843953133,0.996476233005524,0.0031071852426976,-0.0528655238449574,0.998596787452698,-0.0660252124071121,-0.0564356781542301,0.996220648288727,0.263909906148911,-0.301178723573685,0.916320264339447,0.314726442098618,-0.258485496044159,0.913308501243591,0.178814366459847,-0.240504547953606,0.954035043716431,0.397892862558365,-0.268749415874481,0.877185761928558,0.431777000427246,-0.190016314387321,0.881738245487213,0.314726442098618,-0.258485496044159,0.913308501243591,-0.0470021888613701,-0.0898429080843925,0.994846165180206, +-0.0660252124071121,-0.0564356781542301,0.996220648288727,0.0031071852426976,-0.0528655238449574,0.998596787452698,-0.148019000887871,-0.202228307723999,0.968087792396545,-0.0470021888613701,-0.0898429080843925,0.994846165180206,0.0666878148913383,-0.180006667971611,0.981402158737183,-0.148019000887871,-0.202228307723999,0.968087792396545,0.0666878148913383,-0.180006667971611,0.981402158737183,-0.102661363780499,-0.223194599151611,0.969352722167969,-0.431128740310669,-0.390964508056641,0.813187956809998,-0.460606157779694,-0.383755743503571,0.800358295440674,-0.415416538715363,-0.434425234794617,0.799189388751984,-0.415416538715363,-0.434425234794617,0.799189388751984,-0.400810897350311,-0.358039557933807,0.843301951885223,-0.327667474746704,-0.437128633260727,0.837587296962738,-0.460606157779694,-0.383755743503571,0.800358295440674,-0.431128740310669,-0.390964508056641,0.813187956809998,-0.46800422668457,-0.449166148900986,0.761066138744354,-0.327667474746704,-0.437128633260727,0.837587296962738,-0.400810897350311,-0.358039557933807,0.843301951885223,-0.263697236776352,-0.318229734897614,0.910600602626801,-0.224711120128632,-0.183930441737175,0.956908762454987,-0.263697236776352,-0.318229734897614,0.910600602626801,-0.284940034151077,-0.332196474075317,0.899141013622284,-0.102661363780499,-0.223194599151611,0.969352722167969,-0.143712624907494,-0.0992607027292252,0.984628796577454,-0.224711120128632,-0.183930441737175,0.956908762454987,-0.273612946271896,-0.483155876398087,0.831682741641998,-0.431128740310669,-0.390964508056641,0.813187956809998,-0.164810180664063,-0.530693829059601,0.831385314464569,-0.0555759146809578,-0.541666805744171,0.838753998279572,-0.273612946271896,-0.483155876398087,0.831682741641998,-0.0387369655072689,-0.5057612657547,0.861803293228149,-0.380785286426544,-0.865480899810791,0.325492233037949,-0.55600780248642,-0.686326742172241,0.468839764595032,-0.695576131343842,-0.481532782316208,0.53319776058197,-0.0542549192905426,-0.993161499500275,0.103375740349293,-0.380785286426544,-0.865480899810791,0.325492233037949, +-0.245746552944183,-0.941833317279816,0.22925665974617,-0.662944197654724,-0.480157971382141,0.574415564537048,-0.739045262336731,-0.329217821359634,0.587730884552002,-0.55600780248642,-0.686326742172241,0.468839764595032,-0.518901586532593,0.255862206220627,0.815644204616547,-0.685100853443146,0.231854453682899,0.69056510925293,-0.561913311481476,0.0931704938411713,0.821932196617126,-0.571340978145599,-0.0719692930579185,0.817551076412201,-0.561913311481476,0.0931704938411713,0.821932196617126,-0.706309199333191,0.00598905375227332,0.707877993583679,-0.545836865901947,0.590200006961823,0.594748556613922,-0.48935878276825,0.674024939537048,0.553369879722595,-0.508990883827209,0.627527236938477,0.589183866977692,-0.624029755592346,0.640156924724579,0.448091298341751,-0.48935878276825,0.674024939537048,0.553369879722595,-0.545836865901947,0.590200006961823,0.594748556613922,-0.624029755592346,0.640156924724579,0.448091298341751,-0.612928032875061,0.654981434345245,0.441948533058167,-0.578180074691772,0.709997951984406,0.402008295059204,-0.579710364341736,0.412778288125992,0.702531099319458,-0.533217370510101,0.548888266086578,0.643739640712738,-0.63034451007843,0.541417717933655,0.556356430053711,-0.63034451007843,0.541417717933655,0.556356430053711,-0.533217370510101,0.548888266086578,0.643739640712738,-0.612928032875061,0.654981434345245,0.441948533058167,-0.579710364341736,0.412778288125992,0.702531099319458,-0.518901586532593,0.255862206220627,0.815644204616547,-0.44504451751709,0.406295776367188,0.798034429550171,-0.662944197654724,-0.480157971382141,0.574415564537048,-0.648585617542267,-0.248195856809616,0.719538331031799,-0.773645162582397,-0.153492450714111,0.614746332168579,-0.706309199333191,0.00598905375227332,0.707877993583679,-0.648585617542267,-0.248195856809616,0.719538331031799,-0.571340978145599,-0.0719692930579185,0.817551076412201,-0.508990883827209,0.627527236938477,0.589183866977692,-0.48935878276825,0.674024939537048,0.553369879722595,-0.43961900472641,0.71623420715332,0.541981220245361,-0.40128892660141,0.817748129367828,0.412619769573212, +-0.499369263648987,0.799538552761078,0.333718836307526,-0.563925087451935,0.730785250663757,0.384631305932999,-0.418818205595016,0.73913836479187,0.527509033679962,-0.586949408054352,0.715733051300049,0.378439426422119,-0.499369263648987,0.799538552761078,0.333718836307526,-0.40128892660141,0.817748129367828,0.412619769573212,-0.43961900472641,0.71623420715332,0.541981220245361,-0.335538506507874,0.818264484405518,0.466751664876938,0.340772986412048,-0.174140959978104,0.923876941204071,0.409927040338516,-0.185765042901039,0.893001139163971,0.380151271820068,-0.184472814202309,0.906341254711151,0.409927040338516,-0.185765042901039,0.893001139163971,0.464754343032837,-0.227592840790749,0.855689644813538,0.390716791152954,-0.223422572016716,0.892985224723816,0.397892862558365,-0.268749415874481,0.877185761928558,0.464754343032837,-0.227592840790749,0.855689644813538,0.505820453166962,-0.214274987578392,0.835602641105652,-0.194314926862717,0.703900992870331,0.683201968669891,-0.418818205595016,0.73913836479187,0.527509033679962,-0.383407801389694,0.815798938274384,0.432978540658951,-0.102668851613998,0.632838129997253,0.767447054386139,-0.194314926862717,0.703900992870331,0.683201968669891,-0.383407801389694,0.815798938274384,0.432978540658951,0.0641973614692688,0.390269637107849,0.91845965385437,0.231636002659798,0.184967756271362,0.955055773258209,-0.102668851613998,0.632838129997253,0.767447054386139,0.295208811759949,-0.0315925404429436,0.954910278320313,0.350361555814743,-0.173207238316536,0.920459628105164,0.352488189935684,-0.0914708077907562,0.931335091590881,0.0641973614692688,0.390269637107849,0.91845965385437,0.295208811759949,-0.0315925404429436,0.954910278320313,0.231636002659798,0.184967756271362,0.955055773258209,0.380151271820068,-0.184472814202309,0.906341254711151,0.350361555814743,-0.173207238316536,0.920459628105164,0.340772986412048,-0.174140959978104,0.923876941204071,0.276325702667236,-0.135071247816086,0.951524972915649,0.141379252076149,-0.111214518547058,0.983688533306122,0.178814366459847,-0.240504547953606,0.954035043716431, +0.141379252076149,-0.111214518547058,0.983688533306122,0.229912921786308,-0.099325992166996,0.968129277229309,0.110032014548779,-0.0681025236845016,0.991592109203339,0.0314075648784637,-0.0777726843953133,0.996476233005524,0.110032014548779,-0.0681025236845016,0.991592109203339,0.0031071852426976,-0.0528655238449574,0.998596787452698,0.314726442098618,-0.258485496044159,0.913308501243591,0.276325702667236,-0.135071247816086,0.951524972915649,0.178814366459847,-0.240504547953606,0.954035043716431,0.397892862558365,-0.268749415874481,0.877185761928558,0.505820453166962,-0.214274987578392,0.835602641105652,0.431777000427246,-0.190016314387321,0.881738245487213,0.314726442098618,-0.258485496044159,0.913308501243591,0.431777000427246,-0.190016314387321,0.881738245487213,0.276325702667236,-0.135071247816086,0.951524972915649,-0.0470021888613701,-0.0898429080843925,0.994846165180206,0.0031071852426976,-0.0528655238449574,0.998596787452698,0.0443808920681477,-0.112643696367741,0.992643773555756,0.0666878148913383,-0.180006667971611,0.981402158737183,-0.0470021888613701,-0.0898429080843925,0.994846165180206,0.0443808920681477,-0.112643696367741,0.992643773555756,-0.102661363780499,-0.223194599151611,0.969352722167969,0.0666878148913383,-0.180006667971611,0.981402158737183,-0.0198070537298918,-0.149236992001534,0.988602995872498,-0.431128740310669,-0.390964508056641,0.813187956809998,-0.415416538715363,-0.434425234794617,0.799189388751984,-0.294914931058884,-0.555328905582428,0.777582764625549,-0.327667474746704,-0.437128633260727,0.837587296962738,-0.217655703425407,-0.560177028179169,0.799266874790192,-0.415416538715363,-0.434425234794617,0.799189388751984,-0.327667474746704,-0.437128633260727,0.837587296962738,-0.263697236776352,-0.318229734897614,0.910600602626801,-0.0267621986567974,-0.520098209381104,0.853686988353729,-0.224711120128632,-0.183930441737175,0.956908762454987,-0.144463822245598,-0.181960836052895,0.972635746002197,-0.263697236776352,-0.318229734897614,0.910600602626801,-0.102661363780499,-0.223194599151611,0.969352722167969, +-0.0198070537298918,-0.149236992001534,0.988602995872498,-0.143712624907494,-0.0992607027292252,0.984628796577454,-0.143712624907494,-0.0992607027292252,0.984628796577454,-0.141512960195541,-0.0688803046941757,0.987537086009979,-0.224711120128632,-0.183930441737175,0.956908762454987,-0.164810180664063,-0.530693829059601,0.831385314464569,-0.431128740310669,-0.390964508056641,0.813187956809998,-0.294914931058884,-0.555328905582428,0.777582764625549,-0.0387369655072689,-0.5057612657547,0.861803293228149,-0.273612946271896,-0.483155876398087,0.831682741641998,-0.164810180664063,-0.530693829059601,0.831385314464569,-0.0555759146809578,-0.541666805744171,0.838753998279572,-0.0387369655072689,-0.5057612657547,0.861803293228149,0.033658504486084,-0.549572587013245,0.834767580032349,-0.380785286426544,-0.865480899810791,0.325492233037949,-0.219953805208206,-0.952970266342163,0.208489686250687,-0.55600780248642,-0.686326742172241,0.468839764595032,-0.0542549192905426,-0.993161499500275,0.103375740349293,-0.219953805208206,-0.952970266342163,0.208489686250687,-0.380785286426544,-0.865480899810791,0.325492233037949,-0.380884230136871,-0.851779639720917,0.359720021486282,-0.662944197654724,-0.480157971382141,0.574415564537048,-0.55600780248642,-0.686326742172241,0.468839764595032,-0.559828639030457,0.140318632125854,0.816640913486481,-0.518901586532593,0.255862206220627,0.815644204616547,-0.561913311481476,0.0931704938411713,0.821932196617126,-0.571340978145599,-0.0719692930579185,0.817551076412201,-0.574942409992218,-0.0352784804999828,0.817432880401611,-0.561913311481476,0.0931704938411713,0.821932196617126,-0.624029755592346,0.640156924724579,0.448091298341751,-0.578180074691772,0.709997951984406,0.402008295059204,-0.48935878276825,0.674024939537048,0.553369879722595,-0.578180074691772,0.709997951984406,0.402008295059204,-0.612928032875061,0.654981434345245,0.441948533058167,-0.558717787265778,0.71848601102829,0.414261072874069,-0.579710364341736,0.412778288125992,0.702531099319458,-0.44504451751709,0.406295776367188,0.798034429550171, +-0.533217370510101,0.548888266086578,0.643739640712738,-0.545115649700165,0.661677002906799,0.514812827110291,-0.612928032875061,0.654981434345245,0.441948533058167,-0.533217370510101,0.548888266086578,0.643739640712738,-0.513365089893341,0.312465906143188,0.799262881278992,-0.44504451751709,0.406295776367188,0.798034429550171,-0.518901586532593,0.255862206220627,0.815644204616547,-0.662944197654724,-0.480157971382141,0.574415564537048,-0.507065713405609,-0.691029071807861,0.515133917331696,-0.648585617542267,-0.248195856809616,0.719538331031799,-0.571340978145599,-0.0719692930579185,0.817551076412201,-0.648585617542267,-0.248195856809616,0.719538331031799,-0.574942409992218,-0.0352784804999828,0.817432880401611,-0.48935878276825,0.674024939537048,0.553369879722595,-0.427721947431564,0.711725294589996,0.557226061820984,-0.43961900472641,0.71623420715332,0.541981220245361,-0.351843118667603,0.863495826721191,0.361360311508179,-0.499369263648987,0.799538552761078,0.333718836307526,-0.40128892660141,0.817748129367828,0.412619769573212,-0.418818205595016,0.73913836479187,0.527509033679962,-0.499369263648987,0.799538552761078,0.333718836307526,-0.383407801389694,0.815798938274384,0.432978540658951,-0.335538506507874,0.818264484405518,0.466751664876938,-0.43961900472641,0.71623420715332,0.541981220245361,-0.427721947431564,0.711725294589996,0.557226061820984,-0.40128892660141,0.817748129367828,0.412619769573212,-0.335538506507874,0.818264484405518,0.466751664876938,-0.270370244979858,0.883161127567291,0.38330951333046,0.409927040338516,-0.185765042901039,0.893001139163971,0.340772986412048,-0.174140959978104,0.923876941204071,0.390996128320694,-0.173892140388489,0.903816044330597,0.464754343032837,-0.227592840790749,0.855689644813538,0.409927040338516,-0.185765042901039,0.893001139163971,0.483458489179611,-0.18731527030468,0.855091094970703,0.464754343032837,-0.227592840790749,0.855689644813538,0.483458489179611,-0.18731527030468,0.855091094970703,0.505820453166962,-0.214274987578392,0.835602641105652,-0.235315352678299,0.770782828330994,0.592047572135925, +-0.102668851613998,0.632838129997253,0.767447054386139,-0.383407801389694,0.815798938274384,0.432978540658951,-0.102668851613998,0.632838129997253,0.767447054386139,-0.235315352678299,0.770782828330994,0.592047572135925,0.0641973614692688,0.390269637107849,0.91845965385437,0.295208811759949,-0.0315925404429436,0.954910278320313,0.200956359505653,-0.16824871301651,0.965043425559998,0.350361555814743,-0.173207238316536,0.920459628105164,0.0522254630923271,0.0406727008521557,0.997806668281555,0.295208811759949,-0.0315925404429436,0.954910278320313,0.0641973614692688,0.390269637107849,0.91845965385437,0.350361555814743,-0.173207238316536,0.920459628105164,0.218460947275162,-0.19774517416954,0.955600082874298,0.340772986412048,-0.174140959978104,0.923876941204071,0.141379252076149,-0.111214518547058,0.983688533306122,0.276325702667236,-0.135071247816086,0.951524972915649,0.229912921786308,-0.099325992166996,0.968129277229309,0.186357215046883,-0.102378934621811,0.977133274078369,0.110032014548779,-0.0681025236845016,0.991592109203339,0.229912921786308,-0.099325992166996,0.968129277229309,0.083479143679142,-0.086411751806736,0.992755830287933,0.0031071852426976,-0.0528655238449574,0.998596787452698,0.110032014548779,-0.0681025236845016,0.991592109203339,0.431777000427246,-0.190016314387321,0.881738245487213,0.505820453166962,-0.214274987578392,0.835602641105652,0.490390062332153,-0.174937590956688,0.853764772415161,0.431777000427246,-0.190016314387321,0.881738245487213,0.378619164228439,-0.141308233141899,0.914701819419861,0.276325702667236,-0.135071247816086,0.951524972915649,0.0031071852426976,-0.0528655238449574,0.998596787452698,0.0396978594362736,-0.0738398432731628,0.996479630470276,0.0443808920681477,-0.112643696367741,0.992643773555756,0.0666878148913383,-0.180006667971611,0.981402158737183,0.0443808920681477,-0.112643696367741,0.992643773555756,0.137466281652451,-0.163354650139809,0.976943254470825,-0.0198070537298918,-0.149236992001534,0.988602995872498,0.0666878148913383,-0.180006667971611,0.981402158737183,0.15920826792717,-0.16646870970726,0.97310882806778, +-0.213452324271202,-0.655660390853882,0.724256455898285,-0.294914931058884,-0.555328905582428,0.777582764625549,-0.415416538715363,-0.434425234794617,0.799189388751984,-0.327667474746704,-0.437128633260727,0.837587296962738,-0.0267621986567974,-0.520098209381104,0.853686988353729,-0.217655703425407,-0.560177028179169,0.799266874790192,-0.213452324271202,-0.655660390853882,0.724256455898285,-0.415416538715363,-0.434425234794617,0.799189388751984,-0.217655703425407,-0.560177028179169,0.799266874790192,0.0626502186059952,-0.337417423725128,0.939267933368683,-0.0267621986567974,-0.520098209381104,0.853686988353729,-0.263697236776352,-0.318229734897614,0.910600602626801,-0.144463822245598,-0.181960836052895,0.972635746002197,-0.224711120128632,-0.183930441737175,0.956908762454987,-0.141512960195541,-0.0688803046941757,0.987537086009979,-0.144463822245598,-0.181960836052895,0.972635746002197,0.0626502186059952,-0.337417423725128,0.939267933368683,-0.263697236776352,-0.318229734897614,0.910600602626801,-0.196828693151474,-0.0433219335973263,0.979480266571045,-0.143712624907494,-0.0992607027292252,0.984628796577454,-0.0198070537298918,-0.149236992001534,0.988602995872498,-0.196828693151474,-0.0433219335973263,0.979480266571045,-0.141512960195541,-0.0688803046941757,0.987537086009979,-0.143712624907494,-0.0992607027292252,0.984628796577454,-0.164810180664063,-0.530693829059601,0.831385314464569,-0.294914931058884,-0.555328905582428,0.777582764625549,-0.0954393371939659,-0.673530220985413,0.732972204685211,-0.0387369655072689,-0.5057612657547,0.861803293228149,-0.164810180664063,-0.530693829059601,0.831385314464569,0.00295156240463257,-0.594367861747742,0.804187834262848,0.033658504486084,-0.549572587013245,0.834767580032349,-0.0387369655072689,-0.5057612657547,0.861803293228149,0.00295156240463257,-0.594367861747742,0.804187834262848,-0.380884230136871,-0.851779639720917,0.359720021486282,-0.55600780248642,-0.686326742172241,0.468839764595032,-0.219953805208206,-0.952970266342163,0.208489686250687,-0.219953805208206,-0.952970266342163,0.208489686250687, +-0.0542549192905426,-0.993161499500275,0.103375740349293,-0.028345474973321,-0.998417794704437,0.0485625267028809,-0.380884230136871,-0.851779639720917,0.359720021486282,-0.507065713405609,-0.691029071807861,0.515133917331696,-0.662944197654724,-0.480157971382141,0.574415564537048,-0.513365089893341,0.312465906143188,0.799262881278992,-0.518901586532593,0.255862206220627,0.815644204616547,-0.559828639030457,0.140318632125854,0.816640913486481,-0.559828639030457,0.140318632125854,0.816640913486481,-0.561913311481476,0.0931704938411713,0.821932196617126,-0.574942409992218,-0.0352784804999828,0.817432880401611,-0.578180074691772,0.709997951984406,0.402008295059204,-0.474376946687698,0.751678109169006,0.458199024200439,-0.48935878276825,0.674024939537048,0.553369879722595,-0.545115649700165,0.661677002906799,0.514812827110291,-0.558717787265778,0.71848601102829,0.414261072874069,-0.612928032875061,0.654981434345245,0.441948533058167,-0.506280958652496,0.774712979793549,0.378812909126282,-0.578180074691772,0.709997951984406,0.402008295059204,-0.558717787265778,0.71848601102829,0.414261072874069,-0.44504451751709,0.406295776367188,0.798034429550171,-0.443563848733902,0.471589386463165,0.762138068675995,-0.533217370510101,0.548888266086578,0.643739640712738,-0.46871218085289,0.565223753452301,0.678845226764679,-0.545115649700165,0.661677002906799,0.514812827110291,-0.533217370510101,0.548888266086578,0.643739640712738,-0.44504451751709,0.406295776367188,0.798034429550171,-0.513365089893341,0.312465906143188,0.799262881278992,-0.40729296207428,0.464868426322937,0.786135911941528,-0.507065713405609,-0.691029071807861,0.515133917331696,-0.501479029655457,-0.546675562858582,0.670570194721222,-0.648585617542267,-0.248195856809616,0.719538331031799,-0.582018911838531,-0.248193919658661,0.774373054504395,-0.574942409992218,-0.0352784804999828,0.817432880401611,-0.648585617542267,-0.248195856809616,0.719538331031799,-0.48935878276825,0.674024939537048,0.553369879722595,-0.474376946687698,0.751678109169006,0.458199024200439,-0.427721947431564,0.711725294589996,0.557226061820984, +-0.351843118667603,0.863495826721191,0.361360311508179,-0.383407801389694,0.815798938274384,0.432978540658951,-0.499369263648987,0.799538552761078,0.333718836307526,-0.351843118667603,0.863495826721191,0.361360311508179,-0.40128892660141,0.817748129367828,0.412619769573212,-0.270370244979858,0.883161127567291,0.38330951333046,-0.427721947431564,0.711725294589996,0.557226061820984,-0.474376946687698,0.751678109169006,0.458199024200439,-0.335538506507874,0.818264484405518,0.466751664876938,-0.335538506507874,0.818264484405518,0.466751664876938,-0.273800253868103,0.881358861923218,0.385019212961197,-0.270370244979858,0.883161127567291,0.38330951333046,0.390996128320694,-0.173892140388489,0.903816044330597,0.340772986412048,-0.174140959978104,0.923876941204071,0.287455141544342,-0.193425983190537,0.938059568405151,0.409927040338516,-0.185765042901039,0.893001139163971,0.390996128320694,-0.173892140388489,0.903816044330597,0.483458489179611,-0.18731527030468,0.855091094970703,0.490390062332153,-0.174937590956688,0.853764772415161,0.505820453166962,-0.214274987578392,0.835602641105652,0.483458489179611,-0.18731527030468,0.855091094970703,-0.235315352678299,0.770782828330994,0.592047572135925,-0.383407801389694,0.815798938274384,0.432978540658951,-0.351843118667603,0.863495826721191,0.361360311508179,-0.208436146378517,0.50494509935379,0.837606489658356,0.0641973614692688,0.390269637107849,0.91845965385437,-0.235315352678299,0.770782828330994,0.592047572135925,0.0522254630923271,0.0406727008521557,0.997806668281555,0.200956359505653,-0.16824871301651,0.965043425559998,0.295208811759949,-0.0315925404429436,0.954910278320313,0.200956359505653,-0.16824871301651,0.965043425559998,0.218460947275162,-0.19774517416954,0.955600082874298,0.350361555814743,-0.173207238316536,0.920459628105164,0.0522254630923271,0.0406727008521557,0.997806668281555,0.0641973614692688,0.390269637107849,0.91845965385437,-0.208436146378517,0.50494509935379,0.837606489658356,0.153352037072182,-0.207983046770096,0.966036260128021,0.340772986412048,-0.174140959978104,0.923876941204071, +0.218460947275162,-0.19774517416954,0.955600082874298,0.276325702667236,-0.135071247816086,0.951524972915649,0.378619164228439,-0.141308233141899,0.914701819419861,0.229912921786308,-0.099325992166996,0.968129277229309,0.110032014548779,-0.0681025236845016,0.991592109203339,0.186357215046883,-0.102378934621811,0.977133274078369,0.083479143679142,-0.086411751806736,0.992755830287933,0.186357215046883,-0.102378934621811,0.977133274078369,0.229912921786308,-0.099325992166996,0.968129277229309,0.31865319609642,-0.10807716101408,0.941689670085907,0.083479143679142,-0.086411751806736,0.992755830287933,0.033440139144659,-0.0440122708678246,0.998471140861511,0.0031071852426976,-0.0528655238449574,0.998596787452698,0.431777000427246,-0.190016314387321,0.881738245487213,0.490390062332153,-0.174937590956688,0.853764772415161,0.378619164228439,-0.141308233141899,0.914701819419861,0.033440139144659,-0.0440122708678246,0.998471140861511,0.0396978594362736,-0.0738398432731628,0.996479630470276,0.0031071852426976,-0.0528655238449574,0.998596787452698,0.0443808920681477,-0.112643696367741,0.992643773555756,0.0396978594362736,-0.0738398432731628,0.996479630470276,0.137466281652451,-0.163354650139809,0.976943254470825,0.15920826792717,-0.16646870970726,0.97310882806778,0.0666878148913383,-0.180006667971611,0.981402158737183,0.137466281652451,-0.163354650139809,0.976943254470825,-0.0170143414288759,-0.0530225411057472,0.998448312282562,-0.0198070537298918,-0.149236992001534,0.988602995872498,0.15920826792717,-0.16646870970726,0.97310882806778,-0.213452324271202,-0.655660390853882,0.724256455898285,-0.0954393371939659,-0.673530220985413,0.732972204685211,-0.294914931058884,-0.555328905582428,0.777582764625549,-0.217655703425407,-0.560177028179169,0.799266874790192,-0.0267621986567974,-0.520098209381104,0.853686988353729,-0.0716290175914764,-0.665059328079224,0.74334728717804,-0.213452324271202,-0.655660390853882,0.724256455898285,-0.217655703425407,-0.560177028179169,0.799266874790192,-0.0716290175914764,-0.665059328079224,0.74334728717804, +0.221067145466805,-0.462594121694565,0.858566224575043,-0.0267621986567974,-0.520098209381104,0.853686988353729,0.0626502186059952,-0.337417423725128,0.939267933368683,-0.141512960195541,-0.0688803046941757,0.987537086009979,0.161775797605515,-0.184477403759956,0.969431042671204,-0.144463822245598,-0.181960836052895,0.972635746002197,0.0626502186059952,-0.337417423725128,0.939267933368683,-0.144463822245598,-0.181960836052895,0.972635746002197,0.161775797605515,-0.184477403759956,0.969431042671204,-0.150807499885559,-0.100726760923862,0.983418107032776,-0.196828693151474,-0.0433219335973263,0.979480266571045,-0.0198070537298918,-0.149236992001534,0.988602995872498,-0.196828693151474,-0.0433219335973263,0.979480266571045,-0.163495436310768,-0.0025797919370234,0.986540675163269,-0.141512960195541,-0.0688803046941757,0.987537086009979,0.00295156240463257,-0.594367861747742,0.804187834262848,-0.164810180664063,-0.530693829059601,0.831385314464569,-0.0954393371939659,-0.673530220985413,0.732972204685211,0.033658504486084,-0.549572587013245,0.834767580032349,0.00295156240463257,-0.594367861747742,0.804187834262848,-0.0514361150562763,-0.624460935592651,0.779360473155975,-0.115342497825623,-0.983064472675323,0.142408803105354,-0.380884230136871,-0.851779639720917,0.359720021486282,-0.219953805208206,-0.952970266342163,0.208489686250687,-0.115342497825623,-0.983064472675323,0.142408803105354,-0.219953805208206,-0.952970266342163,0.208489686250687,-0.028345474973321,-0.998417794704437,0.0485625267028809,-0.222466319799423,-0.941189348697662,0.254305392503738,-0.507065713405609,-0.691029071807861,0.515133917331696,-0.380884230136871,-0.851779639720917,0.359720021486282,-0.513365089893341,0.312465906143188,0.799262881278992,-0.559828639030457,0.140318632125854,0.816640913486481,-0.606581568717957,0.229565739631653,0.761155843734741,-0.559828639030457,0.140318632125854,0.816640913486481,-0.574942409992218,-0.0352784804999828,0.817432880401611,-0.595393419265747,0.0176242273300886,0.803240835666656,-0.506280958652496,0.774712979793549,0.378812909126282, +-0.474376946687698,0.751678109169006,0.458199024200439,-0.578180074691772,0.709997951984406,0.402008295059204,-0.558717787265778,0.71848601102829,0.414261072874069,-0.545115649700165,0.661677002906799,0.514812827110291,-0.495732396841049,0.6594078540802,0.565181970596313,-0.506280958652496,0.774712979793549,0.378812909126282,-0.558717787265778,0.71848601102829,0.414261072874069,-0.451784640550613,0.765387713909149,0.458336293697357,-0.381396740674973,0.461058348417282,0.801225066184998,-0.443563848733902,0.471589386463165,0.762138068675995,-0.44504451751709,0.406295776367188,0.798034429550171,-0.46871218085289,0.565223753452301,0.678845226764679,-0.533217370510101,0.548888266086578,0.643739640712738,-0.443563848733902,0.471589386463165,0.762138068675995,-0.545115649700165,0.661677002906799,0.514812827110291,-0.46871218085289,0.565223753452301,0.678845226764679,-0.495732396841049,0.6594078540802,0.565181970596313,-0.40729296207428,0.464868426322937,0.786135911941528,-0.513365089893341,0.312465906143188,0.799262881278992,-0.478237330913544,0.368777126073837,0.797052264213562,-0.40729296207428,0.464868426322937,0.786135911941528,-0.381396740674973,0.461058348417282,0.801225066184998,-0.44504451751709,0.406295776367188,0.798034429550171,-0.315700471401215,-0.857515156269073,0.406202912330627,-0.501479029655457,-0.546675562858582,0.670570194721222,-0.507065713405609,-0.691029071807861,0.515133917331696,-0.582018911838531,-0.248193919658661,0.774373054504395,-0.648585617542267,-0.248195856809616,0.719538331031799,-0.501479029655457,-0.546675562858582,0.670570194721222,-0.574942409992218,-0.0352784804999828,0.817432880401611,-0.582018911838531,-0.248193919658661,0.774373054504395,-0.595393419265747,0.0176242273300886,0.803240835666656,-0.351843118667603,0.863495826721191,0.361360311508179,-0.270370244979858,0.883161127567291,0.38330951333046,-0.290658831596375,0.818032443523407,0.496326833963394,-0.335538506507874,0.818264484405518,0.466751664876938,-0.474376946687698,0.751678109169006,0.458199024200439,-0.331545919179916,0.855856418609619,0.396971970796585, +-0.335538506507874,0.818264484405518,0.466751664876938,-0.331545919179916,0.855856418609619,0.396971970796585,-0.273800253868103,0.881358861923218,0.385019212961197,-0.372336059808731,0.800163269042969,0.47021758556366,-0.270370244979858,0.883161127567291,0.38330951333046,-0.273800253868103,0.881358861923218,0.385019212961197,0.153352037072182,-0.207983046770096,0.966036260128021,0.287455141544342,-0.193425983190537,0.938059568405151,0.340772986412048,-0.174140959978104,0.923876941204071,0.388414025306702,-0.186600655317307,0.902393817901611,0.390996128320694,-0.173892140388489,0.903816044330597,0.287455141544342,-0.193425983190537,0.938059568405151,0.469379007816315,-0.176011607050896,0.865276336669922,0.483458489179611,-0.18731527030468,0.855091094970703,0.390996128320694,-0.173892140388489,0.903816044330597,0.490390062332153,-0.174937590956688,0.853764772415161,0.483458489179611,-0.18731527030468,0.855091094970703,0.469379007816315,-0.176011607050896,0.865276336669922,-0.290658831596375,0.818032443523407,0.496326833963394,-0.235315352678299,0.770782828330994,0.592047572135925,-0.351843118667603,0.863495826721191,0.361360311508179,-0.290658831596375,0.818032443523407,0.496326833963394,-0.208436146378517,0.50494509935379,0.837606489658356,-0.235315352678299,0.770782828330994,0.592047572135925,0.0522254630923271,0.0406727008521557,0.997806668281555,-0.164674699306488,-0.155776143074036,0.973969161510468,0.200956359505653,-0.16824871301651,0.965043425559998,0.200956359505653,-0.16824871301651,0.965043425559998,-0.164674699306488,-0.155776143074036,0.973969161510468,0.218460947275162,-0.19774517416954,0.955600082874298,-0.32646107673645,0.0894949585199356,0.940964221954346,0.0522254630923271,0.0406727008521557,0.997806668281555,-0.208436146378517,0.50494509935379,0.837606489658356,0.153352037072182,-0.207983046770096,0.966036260128021,0.218460947275162,-0.19774517416954,0.955600082874298,-0.161412000656128,-0.211774408817291,0.963897109031677,0.31865319609642,-0.10807716101408,0.941689670085907,0.229912921786308,-0.099325992166996,0.968129277229309, +0.378619164228439,-0.141308233141899,0.914701819419861,0.186357215046883,-0.102378934621811,0.977133274078369,0.164344787597656,-0.0411333218216896,0.985544860363007,0.083479143679142,-0.086411751806736,0.992755830287933,0.186357215046883,-0.102378934621811,0.977133274078369,0.31865319609642,-0.10807716101408,0.941689670085907,0.164344787597656,-0.0411333218216896,0.985544860363007,0.033440139144659,-0.0440122708678246,0.998471140861511,0.083479143679142,-0.086411751806736,0.992755830287933,0.164344787597656,-0.0411333218216896,0.985544860363007,0.378619164228439,-0.141308233141899,0.914701819419861,0.490390062332153,-0.174937590956688,0.853764772415161,0.450342625379562,-0.143555790185928,0.881239593029022,0.0396978594362736,-0.0738398432731628,0.996479630470276,0.033440139144659,-0.0440122708678246,0.998471140861511,0.102542050182819,-0.0433928184211254,0.993781685829163,0.137466281652451,-0.163354650139809,0.976943254470825,0.0396978594362736,-0.0738398432731628,0.996479630470276,0.178901568055153,-0.14026851952076,0.973816633224487,0.15920826792717,-0.16646870970726,0.97310882806778,0.137466281652451,-0.163354650139809,0.976943254470825,0.178901568055153,-0.14026851952076,0.973816633224487,-0.0170143414288759,-0.0530225411057472,0.998448312282562,-0.150807499885559,-0.100726760923862,0.983418107032776,-0.0198070537298918,-0.149236992001534,0.988602995872498,-0.0170143414288759,-0.0530225411057472,0.998448312282562,0.15920826792717,-0.16646870970726,0.97310882806778,0.0224788151681423,-0.0569044277071953,0.99812638759613,-0.213452324271202,-0.655660390853882,0.724256455898285,-0.100042462348938,-0.700702726840973,0.706404268741608,-0.0954393371939659,-0.673530220985413,0.732972204685211,-0.0565965995192528,-0.612739264965057,0.78825581073761,-0.0716290175914764,-0.665059328079224,0.74334728717804,-0.0267621986567974,-0.520098209381104,0.853686988353729,-0.213452324271202,-0.655660390853882,0.724256455898285,-0.0716290175914764,-0.665059328079224,0.74334728717804,-0.100042462348938,-0.700702726840973,0.706404268741608, +0.221067145466805,-0.462594121694565,0.858566224575043,0.0882282704114914,-0.491815179586411,0.866217970848084,-0.0267621986567974,-0.520098209381104,0.853686988353729,0.352357059717178,-0.326991498470306,0.87688136100769,0.221067145466805,-0.462594121694565,0.858566224575043,0.0626502186059952,-0.337417423725128,0.939267933368683,-0.141512960195541,-0.0688803046941757,0.987537086009979,0.0763081014156342,-0.0731613337993622,0.994396507740021,0.161775797605515,-0.184477403759956,0.969431042671204,0.352357059717178,-0.326991498470306,0.87688136100769,0.0626502186059952,-0.337417423725128,0.939267933368683,0.161775797605515,-0.184477403759956,0.969431042671204,-0.194237917661667,0.0417128875851631,0.980067133903503,-0.196828693151474,-0.0433219335973263,0.979480266571045,-0.150807499885559,-0.100726760923862,0.983418107032776,-0.163495436310768,-0.0025797919370234,0.986540675163269,-0.196828693151474,-0.0433219335973263,0.979480266571045,-0.16071680188179,0.0744341984391212,0.984189689159393,-0.141512960195541,-0.0688803046941757,0.987537086009979,-0.163495436310768,-0.0025797919370234,0.986540675163269,0.0763081014156342,-0.0731613337993622,0.994396507740021,-0.0954393371939659,-0.673530220985413,0.732972204685211,-0.0514361150562763,-0.624460935592651,0.779360473155975,0.00295156240463257,-0.594367861747742,0.804187834262848,0.033658504486084,-0.549572587013245,0.834767580032349,-0.0514361150562763,-0.624460935592651,0.779360473155975,-0.00439899042248726,-0.581065595149994,0.813844740390778,-0.222466319799423,-0.941189348697662,0.254305392503738,-0.380884230136871,-0.851779639720917,0.359720021486282,-0.115342497825623,-0.983064472675323,0.142408803105354,-0.028345474973321,-0.998417794704437,0.0485625267028809,-0.0509613677859306,-0.995998799800873,0.0734114050865173,-0.115342497825623,-0.983064472675323,0.142408803105354,-0.315700471401215,-0.857515156269073,0.406202912330627,-0.507065713405609,-0.691029071807861,0.515133917331696,-0.222466319799423,-0.941189348697662,0.254305392503738,-0.559828639030457,0.140318632125854,0.816640913486481, +-0.595393419265747,0.0176242273300886,0.803240835666656,-0.606581568717957,0.229565739631653,0.761155843734741,-0.606581568717957,0.229565739631653,0.761155843734741,-0.478237330913544,0.368777126073837,0.797052264213562,-0.513365089893341,0.312465906143188,0.799262881278992,-0.506280958652496,0.774712979793549,0.378812909126282,-0.394278436899185,0.844654679298401,0.362081259489059,-0.474376946687698,0.751678109169006,0.458199024200439,-0.451784640550613,0.765387713909149,0.458336293697357,-0.558717787265778,0.71848601102829,0.414261072874069,-0.495732396841049,0.6594078540802,0.565181970596313,-0.506280958652496,0.774712979793549,0.378812909126282,-0.451784640550613,0.765387713909149,0.458336293697357,-0.310225039720535,0.872610092163086,0.377242475748062,-0.381396740674973,0.461058348417282,0.801225066184998,-0.46871218085289,0.565223753452301,0.678845226764679,-0.443563848733902,0.471589386463165,0.762138068675995,-0.46871218085289,0.565223753452301,0.678845226764679,-0.415276646614075,0.529877603054047,0.739442229270935,-0.495732396841049,0.6594078540802,0.565181970596313,-0.440154790878296,0.557658910751343,0.703761398792267,-0.40729296207428,0.464868426322937,0.786135911941528,-0.478237330913544,0.368777126073837,0.797052264213562,-0.40729296207428,0.464868426322937,0.786135911941528,-0.304201424121857,0.468979120254517,0.829168200492859,-0.381396740674973,0.461058348417282,0.801225066184998,-0.397147595882416,-0.681302070617676,0.614899277687073,-0.501479029655457,-0.546675562858582,0.670570194721222,-0.315700471401215,-0.857515156269073,0.406202912330627,-0.397147595882416,-0.681302070617676,0.614899277687073,-0.582018911838531,-0.248193919658661,0.774373054504395,-0.501479029655457,-0.546675562858582,0.670570194721222,-0.582018911838531,-0.248193919658661,0.774373054504395,-0.532091915607452,-0.250997632741928,0.808627367019653,-0.595393419265747,0.0176242273300886,0.803240835666656,-0.372336059808731,0.800163269042969,0.47021758556366,-0.290658831596375,0.818032443523407,0.496326833963394,-0.270370244979858,0.883161127567291,0.38330951333046, +-0.394278436899185,0.844654679298401,0.362081259489059,-0.331545919179916,0.855856418609619,0.396971970796585,-0.474376946687698,0.751678109169006,0.458199024200439,-0.293789386749268,0.887247562408447,0.355639457702637,-0.273800253868103,0.881358861923218,0.385019212961197,-0.331545919179916,0.855856418609619,0.396971970796585,-0.372336059808731,0.800163269042969,0.47021758556366,-0.273800253868103,0.881358861923218,0.385019212961197,-0.487061202526093,0.728934824466705,0.481066793203354,0.153352037072182,-0.207983046770096,0.966036260128021,-0.00354176363907754,-0.256456702947617,0.966549158096313,0.287455141544342,-0.193425983190537,0.938059568405151,0.388414025306702,-0.186600655317307,0.902393817901611,0.469379007816315,-0.176011607050896,0.865276336669922,0.390996128320694,-0.173892140388489,0.903816044330597,0.213638499379158,-0.200652599334717,0.956084251403809,0.388414025306702,-0.186600655317307,0.902393817901611,0.287455141544342,-0.193425983190537,0.938059568405151,0.490390062332153,-0.174937590956688,0.853764772415161,0.469379007816315,-0.176011607050896,0.865276336669922,0.450342625379562,-0.143555790185928,0.881239593029022,-0.523542463779449,0.432531446218491,0.73404335975647,-0.208436146378517,0.50494509935379,0.837606489658356,-0.290658831596375,0.818032443523407,0.496326833963394,-0.32646107673645,0.0894949585199356,0.940964221954346,-0.164674699306488,-0.155776143074036,0.973969161510468,0.0522254630923271,0.0406727008521557,0.997806668281555,-0.164674699306488,-0.155776143074036,0.973969161510468,-0.161412000656128,-0.211774408817291,0.963897109031677,0.218460947275162,-0.19774517416954,0.955600082874298,-0.523542463779449,0.432531446218491,0.73404335975647,-0.32646107673645,0.0894949585199356,0.940964221954346,-0.208436146378517,0.50494509935379,0.837606489658356,-0.161412000656128,-0.211774408817291,0.963897109031677,-0.248817533254623,-0.262585490942001,0.93227607011795,0.153352037072182,-0.207983046770096,0.966036260128021,0.450342625379562,-0.143555790185928,0.881239593029022,0.31865319609642,-0.10807716101408,0.941689670085907, +0.378619164228439,-0.141308233141899,0.914701819419861,0.31865319609642,-0.10807716101408,0.941689670085907,0.299040645360947,-0.0463435091078281,0.95311427116394,0.164344787597656,-0.0411333218216896,0.985544860363007,0.164344787597656,-0.0411333218216896,0.985544860363007,0.102542050182819,-0.0433928184211254,0.993781685829163,0.033440139144659,-0.0440122708678246,0.998471140861511,0.0396978594362736,-0.0738398432731628,0.996479630470276,0.102542050182819,-0.0433928184211254,0.993781685829163,0.178901568055153,-0.14026851952076,0.973816633224487,0.140460401773453,-0.197421088814735,0.970203936100006,0.15920826792717,-0.16646870970726,0.97310882806778,0.178901568055153,-0.14026851952076,0.973816633224487,-0.194237917661667,0.0417128875851631,0.980067133903503,-0.150807499885559,-0.100726760923862,0.983418107032776,-0.0170143414288759,-0.0530225411057472,0.998448312282562,0.0224788151681423,-0.0569044277071953,0.99812638759613,0.15920826792717,-0.16646870970726,0.97310882806778,0.140460401773453,-0.197421088814735,0.970203936100006,-0.0170143414288759,-0.0530225411057472,0.998448312282562,0.0224788151681423,-0.0569044277071953,0.99812638759613,-0.111433021724224,0.104804582893848,0.988230049610138,-0.0954393371939659,-0.673530220985413,0.732972204685211,-0.100042462348938,-0.700702726840973,0.706404268741608,-0.0514361150562763,-0.624460935592651,0.779360473155975,-0.0565965995192528,-0.612739264965057,0.78825581073761,-0.100042462348938,-0.700702726840973,0.706404268741608,-0.0716290175914764,-0.665059328079224,0.74334728717804,-0.0565965995192528,-0.612739264965057,0.78825581073761,-0.0267621986567974,-0.520098209381104,0.853686988353729,0.0882282704114914,-0.491815179586411,0.866217970848084,0.221067145466805,-0.462594121694565,0.858566224575043,0.261463314294815,-0.39000004529953,0.882913768291473,0.0882282704114914,-0.491815179586411,0.866217970848084,0.221067145466805,-0.462594121694565,0.858566224575043,0.352357059717178,-0.326991498470306,0.87688136100769,0.261463314294815,-0.39000004529953,0.882913768291473, +0.161775797605515,-0.184477403759956,0.969431042671204,0.0763081014156342,-0.0731613337993622,0.994396507740021,0.40736049413681,-0.193679645657539,0.892493963241577,0.161775797605515,-0.184477403759956,0.969431042671204,0.40736049413681,-0.193679645657539,0.892493963241577,0.352357059717178,-0.326991498470306,0.87688136100769,-0.194237917661667,0.0417128875851631,0.980067133903503,-0.16071680188179,0.0744341984391212,0.984189689159393,-0.196828693151474,-0.0433219335973263,0.979480266571045,-0.163495436310768,-0.0025797919370234,0.986540675163269,-0.16071680188179,0.0744341984391212,0.984189689159393,0.0763081014156342,-0.0731613337993622,0.994396507740021,-0.0514361150562763,-0.624460935592651,0.779360473155975,-0.113663963973522,-0.518281936645508,0.847622692584991,-0.00439899042248726,-0.581065595149994,0.813844740390778,-0.222466319799423,-0.941189348697662,0.254305392503738,-0.115342497825623,-0.983064472675323,0.142408803105354,-0.0509613677859306,-0.995998799800873,0.0734114050865173,-0.0509613677859306,-0.995998799800873,0.0734114050865173,-0.028345474973321,-0.998417794704437,0.0485625267028809,-0.0100736701861024,-0.998942077159882,0.0448658689856529,-0.139794141054153,-0.972367405891418,0.186973810195923,-0.315700471401215,-0.857515156269073,0.406202912330627,-0.222466319799423,-0.941189348697662,0.254305392503738,-0.478376567363739,0.16590741276741,0.862340092658997,-0.606581568717957,0.229565739631653,0.761155843734741,-0.595393419265747,0.0176242273300886,0.803240835666656,-0.478376567363739,0.16590741276741,0.862340092658997,-0.478237330913544,0.368777126073837,0.797052264213562,-0.606581568717957,0.229565739631653,0.761155843734741,-0.310225039720535,0.872610092163086,0.377242475748062,-0.394278436899185,0.844654679298401,0.362081259489059,-0.506280958652496,0.774712979793549,0.378812909126282,-0.375573992729187,0.63676643371582,0.673403680324554,-0.451784640550613,0.765387713909149,0.458336293697357,-0.495732396841049,0.6594078540802,0.565181970596313,-0.288873732089996,0.798907995223999,0.527539432048798, +-0.310225039720535,0.872610092163086,0.377242475748062,-0.451784640550613,0.765387713909149,0.458336293697357,-0.381396740674973,0.461058348417282,0.801225066184998,-0.415276646614075,0.529877603054047,0.739442229270935,-0.46871218085289,0.565223753452301,0.678845226764679,-0.375573992729187,0.63676643371582,0.673403680324554,-0.495732396841049,0.6594078540802,0.565181970596313,-0.415276646614075,0.529877603054047,0.739442229270935,-0.40729296207428,0.464868426322937,0.786135911941528,-0.440154790878296,0.557658910751343,0.703761398792267,-0.343054413795471,0.482546359300613,0.805892407894135,-0.478237330913544,0.368777126073837,0.797052264213562,-0.435522824525833,0.499097019433975,0.749147415161133,-0.440154790878296,0.557658910751343,0.703761398792267,-0.40729296207428,0.464868426322937,0.786135911941528,-0.343054413795471,0.482546359300613,0.805892407894135,-0.304201424121857,0.468979120254517,0.829168200492859,-0.381396740674973,0.461058348417282,0.801225066184998,-0.304201424121857,0.468979120254517,0.829168200492859,-0.415276646614075,0.529877603054047,0.739442229270935,-0.315700471401215,-0.857515156269073,0.406202912330627,-0.21694353222847,-0.913355946540833,0.344552308320999,-0.397147595882416,-0.681302070617676,0.614899277687073,-0.397147595882416,-0.681302070617676,0.614899277687073,-0.445789664983749,-0.610234200954437,0.654893577098846,-0.582018911838531,-0.248193919658661,0.774373054504395,-0.532091915607452,-0.250997632741928,0.808627367019653,-0.582018911838531,-0.248193919658661,0.774373054504395,-0.445789664983749,-0.610234200954437,0.654893577098846,-0.532091915607452,-0.250997632741928,0.808627367019653,-0.364603221416473,-0.0935108289122581,0.926455676555634,-0.595393419265747,0.0176242273300886,0.803240835666656,-0.372336059808731,0.800163269042969,0.47021758556366,-0.523542463779449,0.432531446218491,0.73404335975647,-0.290658831596375,0.818032443523407,0.496326833963394,-0.394278436899185,0.844654679298401,0.362081259489059,-0.293789386749268,0.887247562408447,0.355639457702637,-0.331545919179916,0.855856418609619,0.396971970796585, +-0.293789386749268,0.887247562408447,0.355639457702637,-0.487061202526093,0.728934824466705,0.481066793203354,-0.273800253868103,0.881358861923218,0.385019212961197,-0.372336059808731,0.800163269042969,0.47021758556366,-0.487061202526093,0.728934824466705,0.481066793203354,-0.676074087619781,0.421560108661652,0.604326665401459,0.153352037072182,-0.207983046770096,0.966036260128021,-0.248817533254623,-0.262585490942001,0.93227607011795,-0.00354176363907754,-0.256456702947617,0.966549158096313,0.213638499379158,-0.200652599334717,0.956084251403809,0.287455141544342,-0.193425983190537,0.938059568405151,-0.00354176363907754,-0.256456702947617,0.966549158096313,0.388414025306702,-0.186600655317307,0.902393817901611,0.307048887014389,-0.157957285642624,0.938493549823761,0.469379007816315,-0.176011607050896,0.865276336669922,0.388414025306702,-0.186600655317307,0.902393817901611,0.213638499379158,-0.200652599334717,0.956084251403809,0.307048887014389,-0.157957285642624,0.938493549823761,0.438626289367676,-0.119536347687244,0.890683948993683,0.450342625379562,-0.143555790185928,0.881239593029022,0.469379007816315,-0.176011607050896,0.865276336669922,-0.32646107673645,0.0894949585199356,0.940964221954346,-0.558538794517517,0.00860494282096624,0.829433679580688,-0.164674699306488,-0.155776143074036,0.973969161510468,-0.164674699306488,-0.155776143074036,0.973969161510468,-0.564785242080688,-0.122736498713493,0.816059648990631,-0.161412000656128,-0.211774408817291,0.963897109031677,-0.32646107673645,0.0894949585199356,0.940964221954346,-0.523542463779449,0.432531446218491,0.73404335975647,-0.558538794517517,0.00860494282096624,0.829433679580688,-0.161412000656128,-0.211774408817291,0.963897109031677,-0.55163186788559,-0.207157373428345,0.80795294046402,-0.248817533254623,-0.262585490942001,0.93227607011795,0.450342625379562,-0.143555790185928,0.881239593029022,0.361560612916946,-0.0988655164837837,0.927091896533966,0.31865319609642,-0.10807716101408,0.941689670085907,0.31865319609642,-0.10807716101408,0.941689670085907,0.361560612916946,-0.0988655164837837,0.927091896533966, +0.299040645360947,-0.0463435091078281,0.95311427116394,0.164344787597656,-0.0411333218216896,0.985544860363007,0.299040645360947,-0.0463435091078281,0.95311427116394,0.206172972917557,-0.0262801703065634,0.978162527084351,0.164344787597656,-0.0411333218216896,0.985544860363007,0.206172972917557,-0.0262801703065634,0.978162527084351,0.102542050182819,-0.0433928184211254,0.993781685829163,0.204705893993378,-0.179055541753769,0.96230685710907,0.178901568055153,-0.14026851952076,0.973816633224487,0.102542050182819,-0.0433928184211254,0.993781685829163,0.140460401773453,-0.197421088814735,0.970203936100006,0.178901568055153,-0.14026851952076,0.973816633224487,0.204705893993378,-0.179055541753769,0.96230685710907,-0.194237917661667,0.0417128875851631,0.980067133903503,-0.0170143414288759,-0.0530225411057472,0.998448312282562,-0.111433021724224,0.104804582893848,0.988230049610138,-0.126916840672493,-0.147845029830933,0.980833292007446,0.0224788151681423,-0.0569044277071953,0.99812638759613,0.140460401773453,-0.197421088814735,0.970203936100006,-0.111433021724224,0.104804582893848,0.988230049610138,0.0224788151681423,-0.0569044277071953,0.99812638759613,-0.217976301908493,-0.0267680250108242,0.975586891174316,-0.162805154919624,-0.59548431634903,0.786697387695313,-0.0514361150562763,-0.624460935592651,0.779360473155975,-0.100042462348938,-0.700702726840973,0.706404268741608,-0.162805154919624,-0.59548431634903,0.786697387695313,-0.100042462348938,-0.700702726840973,0.706404268741608,-0.0565965995192528,-0.612739264965057,0.78825581073761,-0.127352818846703,-0.433258771896362,0.89222639799118,-0.0565965995192528,-0.612739264965057,0.78825581073761,0.0882282704114914,-0.491815179586411,0.866217970848084,0.0157685093581676,-0.355926632881165,0.934380769729614,0.0882282704114914,-0.491815179586411,0.866217970848084,0.261463314294815,-0.39000004529953,0.882913768291473,0.261463314294815,-0.39000004529953,0.882913768291473,0.352357059717178,-0.326991498470306,0.87688136100769,0.39519727230072,-0.215044096112251,0.893070578575134, +0.273959994316101,-0.0724981427192688,0.959004640579224,0.40736049413681,-0.193679645657539,0.892493963241577,0.0763081014156342,-0.0731613337993622,0.994396507740021,0.352357059717178,-0.326991498470306,0.87688136100769,0.40736049413681,-0.193679645657539,0.892493963241577,0.39519727230072,-0.215044096112251,0.893070578575134,-0.194237917661667,0.0417128875851631,0.980067133903503,-0.228308826684952,0.192634359002113,0.954341113567352,-0.16071680188179,0.0744341984391212,0.984189689159393,0.273959994316101,-0.0724981427192688,0.959004640579224,0.0763081014156342,-0.0731613337993622,0.994396507740021,-0.16071680188179,0.0744341984391212,0.984189689159393,-0.0514361150562763,-0.624460935592651,0.779360473155975,-0.162805154919624,-0.59548431634903,0.786697387695313,-0.113663963973522,-0.518281936645508,0.847622692584991,0.0383730679750443,-0.512682557106018,0.857720196247101,-0.00439899042248726,-0.581065595149994,0.813844740390778,-0.113663963973522,-0.518281936645508,0.847622692584991,-0.139794141054153,-0.972367405891418,0.186973810195923,-0.222466319799423,-0.941189348697662,0.254305392503738,-0.0509613677859306,-0.995998799800873,0.0734114050865173,-0.0100736701861024,-0.998942077159882,0.0448658689856529,-0.0475020594894886,-0.994978845119476,0.0880940034985542,-0.0509613677859306,-0.995998799800873,0.0734114050865173,-0.315700471401215,-0.857515156269073,0.406202912330627,-0.139794141054153,-0.972367405891418,0.186973810195923,-0.21694353222847,-0.913355946540833,0.344552308320999,-0.478376567363739,0.16590741276741,0.862340092658997,-0.595393419265747,0.0176242273300886,0.803240835666656,-0.364603221416473,-0.0935108289122581,0.926455676555634,-0.478376567363739,0.16590741276741,0.862340092658997,-0.278668284416199,0.141343146562576,0.949929475784302,-0.478237330913544,0.368777126073837,0.797052264213562,-0.310225039720535,0.872610092163086,0.377242475748062,-0.244895085692406,0.91308867931366,0.326029628515244,-0.394278436899185,0.844654679298401,0.362081259489059,-0.451784640550613,0.765387713909149,0.458336293697357, +-0.375573992729187,0.63676643371582,0.673403680324554,-0.288873732089996,0.798907995223999,0.527539432048798,-0.310225039720535,0.872610092163086,0.377242475748062,-0.288873732089996,0.798907995223999,0.527539432048798,-0.11702997982502,0.907395303249359,0.403655350208282,-0.415276646614075,0.529877603054047,0.739442229270935,-0.304201424121857,0.468979120254517,0.829168200492859,-0.375573992729187,0.63676643371582,0.673403680324554,-0.440154790878296,0.557658910751343,0.703761398792267,-0.431750446557999,0.540298283100128,0.722266674041748,-0.343054413795471,0.482546359300613,0.805892407894135,-0.478237330913544,0.368777126073837,0.797052264213562,-0.319305539131165,0.286774158477783,0.903218924999237,-0.435522824525833,0.499097019433975,0.749147415161133,-0.440154790878296,0.557658910751343,0.703761398792267,-0.435522824525833,0.499097019433975,0.749147415161133,-0.414161741733551,0.580064117908478,0.7014240026474,-0.343054413795471,0.482546359300613,0.805892407894135,-0.289380580186844,0.61431747674942,0.734079539775848,-0.304201424121857,0.468979120254517,0.829168200492859,-0.397147595882416,-0.681302070617676,0.614899277687073,-0.21694353222847,-0.913355946540833,0.344552308320999,-0.445789664983749,-0.610234200954437,0.654893577098846,-0.532091915607452,-0.250997632741928,0.808627367019653,-0.445789664983749,-0.610234200954437,0.654893577098846,-0.377853274345398,-0.433413714170456,0.818156123161316,-0.377853274345398,-0.433413714170456,0.818156123161316,-0.364603221416473,-0.0935108289122581,0.926455676555634,-0.532091915607452,-0.250997632741928,0.808627367019653,-0.523542463779449,0.432531446218491,0.73404335975647,-0.372336059808731,0.800163269042969,0.47021758556366,-0.676074087619781,0.421560108661652,0.604326665401459,-0.293789386749268,0.887247562408447,0.355639457702637,-0.394278436899185,0.844654679298401,0.362081259489059,-0.244895085692406,0.91308867931366,0.326029628515244,-0.477936893701553,0.688281357288361,0.545751810073853,-0.487061202526093,0.728934824466705,0.481066793203354,-0.293789386749268,0.887247562408447,0.355639457702637, +-0.487061202526093,0.728934824466705,0.481066793203354,-0.772599220275879,0.247870966792107,0.584508657455444,-0.676074087619781,0.421560108661652,0.604326665401459,-0.384720206260681,-0.29187136888504,0.875671982765198,-0.00354176363907754,-0.256456702947617,0.966549158096313,-0.248817533254623,-0.262585490942001,0.93227607011795,-0.0695150643587112,-0.238347440958023,0.96868884563446,0.213638499379158,-0.200652599334717,0.956084251403809,-0.00354176363907754,-0.256456702947617,0.966549158096313,0.307048887014389,-0.157957285642624,0.938493549823761,0.438626289367676,-0.119536347687244,0.890683948993683,0.469379007816315,-0.176011607050896,0.865276336669922,0.102541148662567,-0.208203002810478,0.972695589065552,0.307048887014389,-0.157957285642624,0.938493549823761,0.213638499379158,-0.200652599334717,0.956084251403809,0.450342625379562,-0.143555790185928,0.881239593029022,0.438626289367676,-0.119536347687244,0.890683948993683,0.361560612916946,-0.0988655164837837,0.927091896533966,-0.558538794517517,0.00860494282096624,0.829433679580688,-0.564785242080688,-0.122736498713493,0.816059648990631,-0.164674699306488,-0.155776143074036,0.973969161510468,-0.55163186788559,-0.207157373428345,0.80795294046402,-0.161412000656128,-0.211774408817291,0.963897109031677,-0.564785242080688,-0.122736498713493,0.816059648990631,-0.558538794517517,0.00860494282096624,0.829433679580688,-0.523542463779449,0.432531446218491,0.73404335975647,-0.746733009815216,0.0201941058039665,0.664817154407501,-0.55163186788559,-0.207157373428345,0.80795294046402,-0.619708657264709,-0.268308311700821,0.737544357776642,-0.248817533254623,-0.262585490942001,0.93227607011795,0.226194575428963,-0.0537937991321087,0.972595453262329,0.299040645360947,-0.0463435091078281,0.95311427116394,0.361560612916946,-0.0988655164837837,0.927091896533966,0.206172972917557,-0.0262801703065634,0.978162527084351,0.299040645360947,-0.0463435091078281,0.95311427116394,0.226194575428963,-0.0537937991321087,0.972595453262329,0.102542050182819,-0.0433928184211254,0.993781685829163, +0.206172972917557,-0.0262801703065634,0.978162527084351,0.265547335147858,-0.157824918627739,0.951091885566711,0.265547335147858,-0.157824918627739,0.951091885566711,0.204705893993378,-0.179055541753769,0.96230685710907,0.102542050182819,-0.0433928184211254,0.993781685829163,0.140460401773453,-0.197421088814735,0.970203936100006,0.204705893993378,-0.179055541753769,0.96230685710907,0.237868815660477,-0.265816956758499,0.9342160820961,-0.111433021724224,0.104804582893848,0.988230049610138,-0.228308826684952,0.192634359002113,0.954341113567352,-0.194237917661667,0.0417128875851631,0.980067133903503,-0.126916840672493,-0.147845029830933,0.980833292007446,-0.217976301908493,-0.0267680250108242,0.975586891174316,0.0224788151681423,-0.0569044277071953,0.99812638759613,0.140460401773453,-0.197421088814735,0.970203936100006,0.0580896772444248,-0.194635882973671,0.979153871536255,-0.126916840672493,-0.147845029830933,0.980833292007446,-0.240260392427444,0.135954365134239,0.961140632629395,-0.111433021724224,0.104804582893848,0.988230049610138,-0.217976301908493,-0.0267680250108242,0.975586891174316,-0.0565965995192528,-0.612739264965057,0.78825581073761,-0.127352818846703,-0.433258771896362,0.89222639799118,-0.162805154919624,-0.59548431634903,0.786697387695313,-0.127352818846703,-0.433258771896362,0.89222639799118,0.0882282704114914,-0.491815179586411,0.866217970848084,0.0157685093581676,-0.355926632881165,0.934380769729614,0.193221494555473,-0.248928979039192,0.949051976203918,0.0157685093581676,-0.355926632881165,0.934380769729614,0.261463314294815,-0.39000004529953,0.882913768291473,0.193221494555473,-0.248928979039192,0.949051976203918,0.261463314294815,-0.39000004529953,0.882913768291473,0.39519727230072,-0.215044096112251,0.893070578575134,0.273959994316101,-0.0724981427192688,0.959004640579224,0.466334879398346,-0.190621063113213,0.863825917243958,0.40736049413681,-0.193679645657539,0.892493963241577,0.40736049413681,-0.193679645657539,0.892493963241577,0.466334879398346,-0.190621063113213,0.863825917243958,0.39519727230072,-0.215044096112251,0.893070578575134, +-0.16071680188179,0.0744341984391212,0.984189689159393,-0.228308826684952,0.192634359002113,0.954341113567352,-0.177391916513443,0.154893234372139,0.971874535083771,-0.16071680188179,0.0744341984391212,0.984189689159393,0.0118759525939822,0.0527588278055191,0.998536586761475,0.273959994316101,-0.0724981427192688,0.959004640579224,-0.113663963973522,-0.518281936645508,0.847622692584991,-0.162805154919624,-0.59548431634903,0.786697387695313,-0.127352818846703,-0.433258771896362,0.89222639799118,0.0383730679750443,-0.512682557106018,0.857720196247101,-0.113663963973522,-0.518281936645508,0.847622692584991,-0.0450594238936901,-0.394887834787369,0.91762363910675,-0.0475020594894886,-0.994978845119476,0.0880940034985542,-0.139794141054153,-0.972367405891418,0.186973810195923,-0.0509613677859306,-0.995998799800873,0.0734114050865173,-0.0475020594894886,-0.994978845119476,0.0880940034985542,-0.0100736701861024,-0.998942077159882,0.0448658689856529,0.0173398144543171,-0.999464869499207,0.0277342367917299,-0.139794141054153,-0.972367405891418,0.186973810195923,-0.0475020594894886,-0.994978845119476,0.0880940034985542,-0.21694353222847,-0.913355946540833,0.344552308320999,-0.478376567363739,0.16590741276741,0.862340092658997,-0.364603221416473,-0.0935108289122581,0.926455676555634,-0.278668284416199,0.141343146562576,0.949929475784302,-0.319305539131165,0.286774158477783,0.903218924999237,-0.478237330913544,0.368777126073837,0.797052264213562,-0.278668284416199,0.141343146562576,0.949929475784302,-0.146152347326279,0.911755084991455,0.383851498365402,-0.244895085692406,0.91308867931366,0.326029628515244,-0.310225039720535,0.872610092163086,0.377242475748062,-0.375573992729187,0.63676643371582,0.673403680324554,-0.289380580186844,0.61431747674942,0.734079539775848,-0.288873732089996,0.798907995223999,0.527539432048798,-0.120868302881718,0.836556077003479,0.534382462501526,-0.11702997982502,0.907395303249359,0.403655350208282,-0.288873732089996,0.798907995223999,0.527539432048798,-0.310225039720535,0.872610092163086,0.377242475748062, +-0.11702997982502,0.907395303249359,0.403655350208282,-0.146152347326279,0.911755084991455,0.383851498365402,-0.304201424121857,0.468979120254517,0.829168200492859,-0.289380580186844,0.61431747674942,0.734079539775848,-0.375573992729187,0.63676643371582,0.673403680324554,-0.440154790878296,0.557658910751343,0.703761398792267,-0.414161741733551,0.580064117908478,0.7014240026474,-0.431750446557999,0.540298283100128,0.722266674041748,-0.436210960149765,0.525105237960815,0.730742275714874,-0.343054413795471,0.482546359300613,0.805892407894135,-0.431750446557999,0.540298283100128,0.722266674041748,-0.330352991819382,0.442888677120209,0.833496451377869,-0.435522824525833,0.499097019433975,0.749147415161133,-0.319305539131165,0.286774158477783,0.903218924999237,-0.414161741733551,0.580064117908478,0.7014240026474,-0.435522824525833,0.499097019433975,0.749147415161133,-0.330352991819382,0.442888677120209,0.833496451377869,-0.289380580186844,0.61431747674942,0.734079539775848,-0.343054413795471,0.482546359300613,0.805892407894135,-0.436210960149765,0.525105237960815,0.730742275714874,-0.229966551065445,-0.810457944869995,0.538770020008087,-0.445789664983749,-0.610234200954437,0.654893577098846,-0.21694353222847,-0.913355946540833,0.344552308320999,-0.377853274345398,-0.433413714170456,0.818156123161316,-0.445789664983749,-0.610234200954437,0.654893577098846,-0.229966551065445,-0.810457944869995,0.538770020008087,-0.163129508495331,-0.340247809886932,0.926077783107758,-0.364603221416473,-0.0935108289122581,0.926455676555634,-0.377853274345398,-0.433413714170456,0.818156123161316,-0.523542463779449,0.432531446218491,0.73404335975647,-0.676074087619781,0.421560108661652,0.604326665401459,-0.746733009815216,0.0201941058039665,0.664817154407501,-0.293789386749268,0.887247562408447,0.355639457702637,-0.244895085692406,0.91308867931366,0.326029628515244,-0.146152347326279,0.911755084991455,0.383851498365402,-0.477936893701553,0.688281357288361,0.545751810073853,-0.772599220275879,0.247870966792107,0.584508657455444,-0.487061202526093,0.728934824466705,0.481066793203354, +-0.477936893701553,0.688281357288361,0.545751810073853,-0.293789386749268,0.887247562408447,0.355639457702637,-0.146152347326279,0.911755084991455,0.383851498365402,-0.746733009815216,0.0201941058039665,0.664817154407501,-0.676074087619781,0.421560108661652,0.604326665401459,-0.772599220275879,0.247870966792107,0.584508657455444,-0.445694237947464,-0.296582847833633,0.84462708234787,-0.00354176363907754,-0.256456702947617,0.966549158096313,-0.384720206260681,-0.29187136888504,0.875671982765198,-0.384720206260681,-0.29187136888504,0.875671982765198,-0.248817533254623,-0.262585490942001,0.93227607011795,-0.619708657264709,-0.268308311700821,0.737544357776642,0.102541148662567,-0.208203002810478,0.972695589065552,0.213638499379158,-0.200652599334717,0.956084251403809,-0.0695150643587112,-0.238347440958023,0.96868884563446,-0.0695150643587112,-0.238347440958023,0.96868884563446,-0.00354176363907754,-0.256456702947617,0.966549158096313,-0.445694237947464,-0.296582847833633,0.84462708234787,0.438626289367676,-0.119536347687244,0.890683948993683,0.307048887014389,-0.157957285642624,0.938493549823761,0.361560612916946,-0.0988655164837837,0.927091896533966,0.307048887014389,-0.157957285642624,0.938493549823761,0.102541148662567,-0.208203002810478,0.972695589065552,-0.0241483151912689,-0.229352712631226,0.973043739795685,-0.558538794517517,0.00860494282096624,0.829433679580688,-0.746733009815216,0.0201941058039665,0.664817154407501,-0.564785242080688,-0.122736498713493,0.816059648990631,-0.739116430282593,-0.140131831169128,0.658839762210846,-0.55163186788559,-0.207157373428345,0.80795294046402,-0.564785242080688,-0.122736498713493,0.816059648990631,-0.55163186788559,-0.207157373428345,0.80795294046402,-0.784388720989227,-0.219320580363274,0.580200493335724,-0.619708657264709,-0.268308311700821,0.737544357776642,0.361560612916946,-0.0988655164837837,0.927091896533966,0.11600086838007,-0.136004462838173,0.983893573284149,0.226194575428963,-0.0537937991321087,0.972595453262329,0.206172972917557,-0.0262801703065634,0.978162527084351, +0.226194575428963,-0.0537937991321087,0.972595453262329,0.169184565544128,-0.0835080444812775,0.982040166854858,0.317139148712158,-0.133206874132156,0.938977420330048,0.265547335147858,-0.157824918627739,0.951091885566711,0.206172972917557,-0.0262801703065634,0.978162527084351,0.204705893993378,-0.179055541753769,0.96230685710907,0.265547335147858,-0.157824918627739,0.951091885566711,0.237868815660477,-0.265816956758499,0.9342160820961,0.0580896772444248,-0.194635882973671,0.979153871536255,0.140460401773453,-0.197421088814735,0.970203936100006,0.237868815660477,-0.265816956758499,0.9342160820961,-0.111433021724224,0.104804582893848,0.988230049610138,-0.240260392427444,0.135954365134239,0.961140632629395,-0.228308826684952,0.192634359002113,0.954341113567352,-0.126916840672493,-0.147845029830933,0.980833292007446,-0.325964152812958,-0.105690851807594,0.939455509185791,-0.217976301908493,-0.0267680250108242,0.975586891174316,-0.126916840672493,-0.147845029830933,0.980833292007446,0.0580896772444248,-0.194635882973671,0.979153871536255,-0.153898611664772,-0.0720584392547607,0.985455572605133,-0.240260392427444,0.135954365134239,0.961140632629395,-0.217976301908493,-0.0267680250108242,0.975586891174316,-0.352481216192245,-0.0564413890242577,0.93411523103714,-0.127352818846703,-0.433258771896362,0.89222639799118,0.0157685093581676,-0.355926632881165,0.934380769729614,-0.141345337033272,-0.273588925600052,0.951404452323914,0.193221494555473,-0.248928979039192,0.949051976203918,-0.0047671115025878,-0.201478838920593,0.979481101036072,0.0157685093581676,-0.355926632881165,0.934380769729614,0.193221494555473,-0.248928979039192,0.949051976203918,0.39519727230072,-0.215044096112251,0.893070578575134,0.144673675298691,-0.0946375802159309,0.984943270683289,0.273959994316101,-0.0724981427192688,0.959004640579224,0.398428201675415,-0.211757823824883,0.892419993877411,0.466334879398346,-0.190621063113213,0.863825917243958,0.39519727230072,-0.215044096112251,0.893070578575134,0.466334879398346,-0.190621063113213,0.863825917243958, +0.293607711791992,-0.14343486726284,0.945103585720062,-0.177391916513443,0.154893234372139,0.971874535083771,-0.228308826684952,0.192634359002113,0.954341113567352,-0.240260392427444,0.135954365134239,0.961140632629395,-0.16071680188179,0.0744341984391212,0.984189689159393,-0.177391916513443,0.154893234372139,0.971874535083771,0.0118759525939822,0.0527588278055191,0.998536586761475,0.273959994316101,-0.0724981427192688,0.959004640579224,0.0118759525939822,0.0527588278055191,0.998536586761475,0.219923168420792,-0.0924736708402634,0.971124231815338,-0.127352818846703,-0.433258771896362,0.89222639799118,-0.0450594238936901,-0.394887834787369,0.91762363910675,-0.113663963973522,-0.518281936645508,0.847622692584991,0.0383730679750443,-0.512682557106018,0.857720196247101,-0.0450594238936901,-0.394887834787369,0.91762363910675,0.0973838344216347,-0.466481178998947,0.879153907299042,0.0173398144543171,-0.999464869499207,0.0277342367917299,-0.0175798106938601,-0.996267914772034,0.0845049247145653,-0.0475020594894886,-0.994978845119476,0.0880940034985542,-0.0475020594894886,-0.994978845119476,0.0880940034985542,-0.0711373761296272,-0.952527225017548,0.296025782823563,-0.21694353222847,-0.913355946540833,0.344552308320999,-0.364603221416473,-0.0935108289122581,0.926455676555634,-0.160343259572983,-0.0881806835532188,0.98311448097229,-0.278668284416199,0.141343146562576,0.949929475784302,-0.278668284416199,0.141343146562576,0.949929475784302,-0.137755572795868,0.0957367643713951,0.985828459262848,-0.319305539131165,0.286774158477783,0.903218924999237,-0.120868302881718,0.836556077003479,0.534382462501526,-0.288873732089996,0.798907995223999,0.527539432048798,-0.289380580186844,0.61431747674942,0.734079539775848,-0.120868302881718,0.836556077003479,0.534382462501526,-0.0705331042408943,0.916513979434967,0.393734812736511,-0.11702997982502,0.907395303249359,0.403655350208282,-0.0705331042408943,0.916513979434967,0.393734812736511,-0.146152347326279,0.911755084991455,0.383851498365402,-0.11702997982502,0.907395303249359,0.403655350208282, +-0.436210960149765,0.525105237960815,0.730742275714874,-0.431750446557999,0.540298283100128,0.722266674041748,-0.414161741733551,0.580064117908478,0.7014240026474,-0.330352991819382,0.442888677120209,0.833496451377869,-0.319305539131165,0.286774158477783,0.903218924999237,-0.176161035895348,0.223729267716408,0.958599150180817,-0.252534747123718,0.402767956256866,0.879774987697601,-0.414161741733551,0.580064117908478,0.7014240026474,-0.330352991819382,0.442888677120209,0.833496451377869,-0.289380580186844,0.61431747674942,0.734079539775848,-0.436210960149765,0.525105237960815,0.730742275714874,-0.255754560232162,0.682918906211853,0.684259593486786,-0.229966551065445,-0.810457944869995,0.538770020008087,-0.21694353222847,-0.913355946540833,0.344552308320999,-0.0711373761296272,-0.952527225017548,0.296025782823563,-0.377853274345398,-0.433413714170456,0.818156123161316,-0.229966551065445,-0.810457944869995,0.538770020008087,-0.157330855727196,-0.590206384658813,0.791772246360779,-0.364603221416473,-0.0935108289122581,0.926455676555634,-0.163129508495331,-0.340247809886932,0.926077783107758,-0.160343259572983,-0.0881806835532188,0.98311448097229,-0.377853274345398,-0.433413714170456,0.818156123161316,-0.157330855727196,-0.590206384658813,0.791772246360779,-0.163129508495331,-0.340247809886932,0.926077783107758,-0.772599220275879,0.247870966792107,0.584508657455444,-0.477936893701553,0.688281357288361,0.545751810073853,-0.76361483335495,0.170142322778702,0.622851371765137,-0.477936893701553,0.688281357288361,0.545751810073853,-0.146152347326279,0.911755084991455,0.383851498365402,-0.433416396379471,0.677848279476166,0.593861699104309,-0.772599220275879,0.247870966792107,0.584508657455444,-0.821983277797699,-0.0318028517067432,0.568622767925262,-0.746733009815216,0.0201941058039665,0.664817154407501,-0.445694237947464,-0.296582847833633,0.84462708234787,-0.384720206260681,-0.29187136888504,0.875671982765198,-0.663960099220276,-0.266481339931488,0.698673367500305,-0.663960099220276,-0.266481339931488,0.698673367500305,-0.384720206260681,-0.29187136888504,0.875671982765198, +-0.619708657264709,-0.268308311700821,0.737544357776642,-0.285956233739853,-0.283978879451752,0.915196657180786,0.102541148662567,-0.208203002810478,0.972695589065552,-0.0695150643587112,-0.238347440958023,0.96868884563446,-0.285956233739853,-0.283978879451752,0.915196657180786,-0.0695150643587112,-0.238347440958023,0.96868884563446,-0.445694237947464,-0.296582847833633,0.84462708234787,0.307048887014389,-0.157957285642624,0.938493549823761,0.11600086838007,-0.136004462838173,0.983893573284149,0.361560612916946,-0.0988655164837837,0.927091896533966,0.102541148662567,-0.208203002810478,0.972695589065552,-0.285956233739853,-0.283978879451752,0.915196657180786,-0.0241483151912689,-0.229352712631226,0.973043739795685,0.307048887014389,-0.157957285642624,0.938493549823761,-0.0241483151912689,-0.229352712631226,0.973043739795685,0.11600086838007,-0.136004462838173,0.983893573284149,-0.746733009815216,0.0201941058039665,0.664817154407501,-0.772845387458801,-0.0688670352101326,0.630846381187439,-0.564785242080688,-0.122736498713493,0.816059648990631,-0.784388720989227,-0.219320580363274,0.580200493335724,-0.55163186788559,-0.207157373428345,0.80795294046402,-0.739116430282593,-0.140131831169128,0.658839762210846,-0.772845387458801,-0.0688670352101326,0.630846381187439,-0.739116430282593,-0.140131831169128,0.658839762210846,-0.564785242080688,-0.122736498713493,0.816059648990631,-0.619708657264709,-0.268308311700821,0.737544357776642,-0.784388720989227,-0.219320580363274,0.580200493335724,-0.797156691551209,-0.251889377832413,0.548719346523285,0.226194575428963,-0.0537937991321087,0.972595453262329,0.11600086838007,-0.136004462838173,0.983893573284149,-0.0871662572026253,-0.119820781052113,0.988961577415466,0.169184565544128,-0.0835080444812775,0.982040166854858,0.226194575428963,-0.0537937991321087,0.972595453262329,-0.0871662572026253,-0.119820781052113,0.988961577415466,0.206172972917557,-0.0262801703065634,0.978162527084351,0.169184565544128,-0.0835080444812775,0.982040166854858,0.317139148712158,-0.133206874132156,0.938977420330048, +0.265547335147858,-0.157824918627739,0.951091885566711,0.317139148712158,-0.133206874132156,0.938977420330048,0.386125892400742,-0.226190239191055,0.894284427165985,0.386125892400742,-0.226190239191055,0.894284427165985,0.237868815660477,-0.265816956758499,0.9342160820961,0.265547335147858,-0.157824918627739,0.951091885566711,0.0580896772444248,-0.194635882973671,0.979153871536255,0.237868815660477,-0.265816956758499,0.9342160820961,0.29196360707283,-0.228741630911827,0.928673446178436,-0.325964152812958,-0.105690851807594,0.939455509185791,-0.126916840672493,-0.147845029830933,0.980833292007446,-0.153898611664772,-0.0720584392547607,0.985455572605133,-0.352481216192245,-0.0564413890242577,0.93411523103714,-0.217976301908493,-0.0267680250108242,0.975586891174316,-0.325964152812958,-0.105690851807594,0.939455509185791,0.0580896772444248,-0.194635882973671,0.979153871536255,0.0575676783919334,-0.0663142502307892,0.996136665344238,-0.153898611664772,-0.0720584392547607,0.985455572605133,-0.291539967060089,0.03199552744627,0.956023335456848,-0.240260392427444,0.135954365134239,0.961140632629395,-0.352481216192245,-0.0564413890242577,0.93411523103714,0.0157685093581676,-0.355926632881165,0.934380769729614,-0.0047671115025878,-0.201478838920593,0.979481101036072,-0.141345337033272,-0.273588925600052,0.951404452323914,-0.156948953866959,-0.304449766874313,0.939509034156799,-0.127352818846703,-0.433258771896362,0.89222639799118,-0.141345337033272,-0.273588925600052,0.951404452323914,0.193221494555473,-0.248928979039192,0.949051976203918,0.144673675298691,-0.0946375802159309,0.984943270683289,-0.0047671115025878,-0.201478838920593,0.979481101036072,0.293607711791992,-0.14343486726284,0.945103585720062,0.144673675298691,-0.0946375802159309,0.984943270683289,0.39519727230072,-0.215044096112251,0.893070578575134,0.273959994316101,-0.0724981427192688,0.959004640579224,0.219923168420792,-0.0924736708402634,0.971124231815338,0.398428201675415,-0.211757823824883,0.892419993877411,0.398428201675415,-0.211757823824883,0.892419993877411, +0.414411991834641,-0.248218670487404,0.875585556030273,0.466334879398346,-0.190621063113213,0.863825917243958,0.414411991834641,-0.248218670487404,0.875585556030273,0.293607711791992,-0.14343486726284,0.945103585720062,0.466334879398346,-0.190621063113213,0.863825917243958,-0.177391916513443,0.154893234372139,0.971874535083771,-0.240260392427444,0.135954365134239,0.961140632629395,-0.291539967060089,0.03199552744627,0.956023335456848,-0.177391916513443,0.154893234372139,0.971874535083771,0.115563131868839,-0.0767128020524979,0.990333378314972,0.0118759525939822,0.0527588278055191,0.998536586761475,0.219923168420792,-0.0924736708402634,0.971124231815338,0.0118759525939822,0.0527588278055191,0.998536586761475,0.115563131868839,-0.0767128020524979,0.990333378314972,-0.156948953866959,-0.304449766874313,0.939509034156799,-0.0450594238936901,-0.394887834787369,0.91762363910675,-0.127352818846703,-0.433258771896362,0.89222639799118,-0.0450594238936901,-0.394887834787369,0.91762363910675,0.126714363694191,-0.397639006376266,0.908749997615814,0.0973838344216347,-0.466481178998947,0.879153907299042,-0.0175798106938601,-0.996267914772034,0.0845049247145653,-0.0711373761296272,-0.952527225017548,0.296025782823563,-0.0475020594894886,-0.994978845119476,0.0880940034985542,-0.278668284416199,0.141343146562576,0.949929475784302,-0.160343259572983,-0.0881806835532188,0.98311448097229,-0.137755572795868,0.0957367643713951,0.985828459262848,-0.319305539131165,0.286774158477783,0.903218924999237,-0.137755572795868,0.0957367643713951,0.985828459262848,-0.176161035895348,0.223729267716408,0.958599150180817,-0.13632433116436,0.844241857528687,0.518335163593292,-0.120868302881718,0.836556077003479,0.534382462501526,-0.289380580186844,0.61431747674942,0.734079539775848,-0.13632433116436,0.844241857528687,0.518335163593292,-0.0705331042408943,0.916513979434967,0.393734812736511,-0.120868302881718,0.836556077003479,0.534382462501526,-0.0705331042408943,0.916513979434967,0.393734812736511,-0.2931989133358,0.83392721414566,0.467546463012695, +-0.146152347326279,0.911755084991455,0.383851498365402,-0.373917877674103,0.504134178161621,0.778481841087341,-0.436210960149765,0.525105237960815,0.730742275714874,-0.414161741733551,0.580064117908478,0.7014240026474,-0.252534747123718,0.402767956256866,0.879774987697601,-0.330352991819382,0.442888677120209,0.833496451377869,-0.176161035895348,0.223729267716408,0.958599150180817,-0.373917877674103,0.504134178161621,0.778481841087341,-0.414161741733551,0.580064117908478,0.7014240026474,-0.252534747123718,0.402767956256866,0.879774987697601,-0.390548378229141,0.554526627063751,0.734827876091003,-0.255754560232162,0.682918906211853,0.684259593486786,-0.436210960149765,0.525105237960815,0.730742275714874,-0.289380580186844,0.61431747674942,0.734079539775848,-0.255754560232162,0.682918906211853,0.684259593486786,-0.13632433116436,0.844241857528687,0.518335163593292,-0.229966551065445,-0.810457944869995,0.538770020008087,-0.0711373761296272,-0.952527225017548,0.296025782823563,-0.0558799803256989,-0.741046607494354,0.669124186038971,-0.229966551065445,-0.810457944869995,0.538770020008087,-0.0558799803256989,-0.741046607494354,0.669124186038971,-0.157330855727196,-0.590206384658813,0.791772246360779,-0.163129508495331,-0.340247809886932,0.926077783107758,-0.0714400112628937,-0.47624483704567,0.876405775547028,-0.160343259572983,-0.0881806835532188,0.98311448097229,-0.163129508495331,-0.340247809886932,0.926077783107758,-0.157330855727196,-0.590206384658813,0.791772246360779,-0.0558799803256989,-0.741046607494354,0.669124186038971,-0.477936893701553,0.688281357288361,0.545751810073853,-0.433416396379471,0.677848279476166,0.593861699104309,-0.76361483335495,0.170142322778702,0.622851371765137,-0.772599220275879,0.247870966792107,0.584508657455444,-0.76361483335495,0.170142322778702,0.622851371765137,-0.821983277797699,-0.0318028517067432,0.568622767925262,-0.433416396379471,0.677848279476166,0.593861699104309,-0.146152347326279,0.911755084991455,0.383851498365402,-0.2931989133358,0.83392721414566,0.467546463012695,-0.772845387458801,-0.0688670352101326,0.630846381187439, +-0.746733009815216,0.0201941058039665,0.664817154407501,-0.821983277797699,-0.0318028517067432,0.568622767925262,-0.723026216030121,-0.301338523626328,0.621633350849152,-0.445694237947464,-0.296582847833633,0.84462708234787,-0.663960099220276,-0.266481339931488,0.698673367500305,-0.663960099220276,-0.266481339931488,0.698673367500305,-0.619708657264709,-0.268308311700821,0.737544357776642,-0.797156691551209,-0.251889377832413,0.548719346523285,-0.68075954914093,-0.354263812303543,0.641142249107361,-0.285956233739853,-0.283978879451752,0.915196657180786,-0.445694237947464,-0.296582847833633,0.84462708234787,-0.47792860865593,-0.313395321369171,0.82058972120285,-0.0241483151912689,-0.229352712631226,0.973043739795685,-0.285956233739853,-0.283978879451752,0.915196657180786,-0.393083304166794,-0.254169464111328,0.883675992488861,0.11600086838007,-0.136004462838173,0.983893573284149,-0.0241483151912689,-0.229352712631226,0.973043739795685,-0.784388720989227,-0.219320580363274,0.580200493335724,-0.739116430282593,-0.140131831169128,0.658839762210846,-0.816469550132751,-0.117876440286636,0.565227806568146,-0.772845387458801,-0.0688670352101326,0.630846381187439,-0.816469550132751,-0.117876440286636,0.565227806568146,-0.739116430282593,-0.140131831169128,0.658839762210846,-0.797156691551209,-0.251889377832413,0.548719346523285,-0.784388720989227,-0.219320580363274,0.580200493335724,-0.846360385417938,-0.264100879430771,0.462519913911819,0.11600086838007,-0.136004462838173,0.983893573284149,-0.393083304166794,-0.254169464111328,0.883675992488861,-0.0871662572026253,-0.119820781052113,0.988961577415466,-0.227313667535782,-0.151371970772743,0.961984872817993,0.169184565544128,-0.0835080444812775,0.982040166854858,-0.0871662572026253,-0.119820781052113,0.988961577415466,0.169184565544128,-0.0835080444812775,0.982040166854858,0.147477179765701,-0.125765100121498,0.981036961078644,0.317139148712158,-0.133206874132156,0.938977420330048,0.386125892400742,-0.226190239191055,0.894284427165985,0.317139148712158,-0.133206874132156,0.938977420330048, +0.393700629472733,-0.13298237323761,0.909568667411804,0.29196360707283,-0.228741630911827,0.928673446178436,0.237868815660477,-0.265816956758499,0.9342160820961,0.386125892400742,-0.226190239191055,0.894284427165985,0.261158466339111,-0.114368878304958,0.958496689796448,0.0580896772444248,-0.194635882973671,0.979153871536255,0.29196360707283,-0.228741630911827,0.928673446178436,-0.325964152812958,-0.105690851807594,0.939455509185791,-0.153898611664772,-0.0720584392547607,0.985455572605133,-0.338354170322418,0.0282481256872416,0.940594673156738,-0.352481216192245,-0.0564413890242577,0.93411523103714,-0.325964152812958,-0.105690851807594,0.939455509185791,-0.311173170804977,-0.0647886469960213,0.948142170906067,0.0580896772444248,-0.194635882973671,0.979153871536255,0.261158466339111,-0.114368878304958,0.958496689796448,0.0575676783919334,-0.0663142502307892,0.996136665344238,0.0575676783919334,-0.0663142502307892,0.996136665344238,0.07610734552145,0.0711347386240959,0.994558930397034,-0.153898611664772,-0.0720584392547607,0.985455572605133,-0.291539967060089,0.03199552744627,0.956023335456848,-0.352481216192245,-0.0564413890242577,0.93411523103714,-0.311173170804977,-0.0647886469960213,0.948142170906067,-0.0047671115025878,-0.201478838920593,0.979481101036072,0.00341219757683575,-0.167559832334518,0.985855996608734,-0.141345337033272,-0.273588925600052,0.951404452323914,-0.156948953866959,-0.304449766874313,0.939509034156799,-0.141345337033272,-0.273588925600052,0.951404452323914,-0.150248140096664,-0.236867278814316,0.959853768348694,-0.0047671115025878,-0.201478838920593,0.979481101036072,0.144673675298691,-0.0946375802159309,0.984943270683289,0.00341219757683575,-0.167559832334518,0.985855996608734,0.0994726344943047,-0.0982692241668701,0.990175902843475,0.144673675298691,-0.0946375802159309,0.984943270683289,0.293607711791992,-0.14343486726284,0.945103585720062,0.398428201675415,-0.211757823824883,0.892419993877411,0.219923168420792,-0.0924736708402634,0.971124231815338,0.115563131868839,-0.0767128020524979,0.990333378314972, +0.414411991834641,-0.248218670487404,0.875585556030273,0.398428201675415,-0.211757823824883,0.892419993877411,0.408219397068024,-0.20943857729435,0.888533771038055,0.414411991834641,-0.248218670487404,0.875585556030273,0.21330814063549,-0.217368245124817,0.952497005462646,0.293607711791992,-0.14343486726284,0.945103585720062,-0.177391916513443,0.154893234372139,0.971874535083771,-0.291539967060089,0.03199552744627,0.956023335456848,-0.0524028800427914,-0.0567919909954071,0.997009813785553,0.115563131868839,-0.0767128020524979,0.990333378314972,-0.177391916513443,0.154893234372139,0.971874535083771,-0.0524028800427914,-0.0567919909954071,0.997009813785553,-0.0450594238936901,-0.394887834787369,0.91762363910675,-0.156948953866959,-0.304449766874313,0.939509034156799,-0.0407275594770908,-0.300698399543762,0.952849209308624,-0.0450594238936901,-0.394887834787369,0.91762363910675,-0.0407275594770908,-0.300698399543762,0.952849209308624,0.126714363694191,-0.397639006376266,0.908749997615814,0.126714363694191,-0.397639006376266,0.908749997615814,0.0168348383158445,-0.399657636880875,0.916509807109833,0.0973838344216347,-0.466481178998947,0.879153907299042,-0.0711373761296272,-0.952527225017548,0.296025782823563,-0.0175798106938601,-0.996267914772034,0.0845049247145653,0.0134741431102157,-0.943760275840759,0.330355703830719,-0.00889919977635145,-0.0740088149905205,0.997217833995819,-0.137755572795868,0.0957367643713951,0.985828459262848,-0.160343259572983,-0.0881806835532188,0.98311448097229,-0.176161035895348,0.223729267716408,0.958599150180817,-0.137755572795868,0.0957367643713951,0.985828459262848,-0.00607497710734606,0.0896936282515526,0.995950818061829,-0.13632433116436,0.844241857528687,0.518335163593292,-0.0546527616679668,0.897554218769073,0.437503606081009,-0.0705331042408943,0.916513979434967,0.393734812736511,-0.353324681520462,0.784324526786804,0.509898543357849,-0.2931989133358,0.83392721414566,0.467546463012695,-0.0705331042408943,0.916513979434967,0.393734812736511,-0.373917877674103,0.504134178161621,0.778481841087341, +-0.390548378229141,0.554526627063751,0.734827876091003,-0.436210960149765,0.525105237960815,0.730742275714874,-0.058765284717083,0.183881565928459,0.981190145015717,-0.252534747123718,0.402767956256866,0.879774987697601,-0.176161035895348,0.223729267716408,0.958599150180817,-0.373917877674103,0.504134178161621,0.778481841087341,-0.252534747123718,0.402767956256866,0.879774987697601,-0.155815795063972,0.347256392240524,0.924734771251678,-0.197902977466583,0.610064446926117,0.767238974571228,-0.255754560232162,0.682918906211853,0.684259593486786,-0.390548378229141,0.554526627063751,0.734827876091003,-0.13632433116436,0.844241857528687,0.518335163593292,-0.255754560232162,0.682918906211853,0.684259593486786,-0.0317212641239166,0.855202794075012,0.517321705818176,-0.0558799803256989,-0.741046607494354,0.669124186038971,-0.0711373761296272,-0.952527225017548,0.296025782823563,-0.0318503193557262,-0.821918725967407,0.568713426589966,-0.163129508495331,-0.340247809886932,0.926077783107758,-0.0558799803256989,-0.741046607494354,0.669124186038971,-0.0714400112628937,-0.47624483704567,0.876405775547028,-0.00889919977635145,-0.0740088149905205,0.997217833995819,-0.160343259572983,-0.0881806835532188,0.98311448097229,-0.0714400112628937,-0.47624483704567,0.876405775547028,-0.76361483335495,0.170142322778702,0.622851371765137,-0.433416396379471,0.677848279476166,0.593861699104309,-0.67246425151825,0.42130634188652,0.608516752719879,-0.76361483335495,0.170142322778702,0.622851371765137,-0.826086044311523,-0.0564828552305698,0.56070613861084,-0.821983277797699,-0.0318028517067432,0.568622767925262,-0.433416396379471,0.677848279476166,0.593861699104309,-0.2931989133358,0.83392721414566,0.467546463012695,-0.67246425151825,0.42130634188652,0.608516752719879,-0.772845387458801,-0.0688670352101326,0.630846381187439,-0.821983277797699,-0.0318028517067432,0.568622767925262,-0.824592530727386,-0.057133860886097,0.562834501266479,-0.68075954914093,-0.354263812303543,0.641142249107361,-0.445694237947464,-0.296582847833633,0.84462708234787, +-0.723026216030121,-0.301338523626328,0.621633350849152,-0.797156691551209,-0.251889377832413,0.548719346523285,-0.723026216030121,-0.301338523626328,0.621633350849152,-0.663960099220276,-0.266481339931488,0.698673367500305,-0.47792860865593,-0.313395321369171,0.82058972120285,-0.285956233739853,-0.283978879451752,0.915196657180786,-0.68075954914093,-0.354263812303543,0.641142249107361,-0.393083304166794,-0.254169464111328,0.883675992488861,-0.0241483151912689,-0.229352712631226,0.973043739795685,-0.47792860865593,-0.313395321369171,0.82058972120285,-0.784388720989227,-0.219320580363274,0.580200493335724,-0.816469550132751,-0.117876440286636,0.565227806568146,-0.808285117149353,-0.170589983463287,0.563537120819092,-0.772845387458801,-0.0688670352101326,0.630846381187439,-0.824592530727386,-0.057133860886097,0.562834501266479,-0.816469550132751,-0.117876440286636,0.565227806568146,-0.784388720989227,-0.219320580363274,0.580200493335724,-0.816214144229889,-0.263301938772202,0.514262914657593,-0.846360385417938,-0.264100879430771,0.462519913911819,-0.823355138301849,-0.314300507307053,0.472547739744186,-0.797156691551209,-0.251889377832413,0.548719346523285,-0.846360385417938,-0.264100879430771,0.462519913911819,-0.393083304166794,-0.254169464111328,0.883675992488861,-0.576873660087585,-0.220574006438255,0.78648829460144,-0.0871662572026253,-0.119820781052113,0.988961577415466,0.147477179765701,-0.125765100121498,0.981036961078644,0.169184565544128,-0.0835080444812775,0.982040166854858,-0.227313667535782,-0.151371970772743,0.961984872817993,-0.227313667535782,-0.151371970772743,0.961984872817993,-0.0871662572026253,-0.119820781052113,0.988961577415466,-0.576873660087585,-0.220574006438255,0.78648829460144,0.317139148712158,-0.133206874132156,0.938977420330048,0.147477179765701,-0.125765100121498,0.981036961078644,0.393700629472733,-0.13298237323761,0.909568667411804,0.44231653213501,-0.130667001008987,0.8872891664505,0.386125892400742,-0.226190239191055,0.894284427165985,0.393700629472733,-0.13298237323761,0.909568667411804, +0.44231653213501,-0.130667001008987,0.8872891664505,0.29196360707283,-0.228741630911827,0.928673446178436,0.386125892400742,-0.226190239191055,0.894284427165985,0.261158466339111,-0.114368878304958,0.958496689796448,0.29196360707283,-0.228741630911827,0.928673446178436,0.44231653213501,-0.130667001008987,0.8872891664505,-0.338354170322418,0.0282481256872416,0.940594673156738,-0.153898611664772,-0.0720584392547607,0.985455572605133,-0.152664631605148,0.0801939368247986,0.985018968582153,-0.325964152812958,-0.105690851807594,0.939455509185791,-0.338354170322418,0.0282481256872416,0.940594673156738,-0.311173170804977,-0.0647886469960213,0.948142170906067,0.261158466339111,-0.114368878304958,0.958496689796448,0.333060890436172,0.0180662851780653,0.942732155323029,0.0575676783919334,-0.0663142502307892,0.996136665344238,0.333060890436172,0.0180662851780653,0.942732155323029,0.07610734552145,0.0711347386240959,0.994558930397034,0.0575676783919334,-0.0663142502307892,0.996136665344238,0.07610734552145,0.0711347386240959,0.994558930397034,-0.152664631605148,0.0801939368247986,0.985018968582153,-0.153898611664772,-0.0720584392547607,0.985455572605133,-0.291539967060089,0.03199552744627,0.956023335456848,-0.311173170804977,-0.0647886469960213,0.948142170906067,-0.0524028800427914,-0.0567919909954071,0.997009813785553,0.00341219757683575,-0.167559832334518,0.985855996608734,-0.150248140096664,-0.236867278814316,0.959853768348694,-0.141345337033272,-0.273588925600052,0.951404452323914,-0.0407275594770908,-0.300698399543762,0.952849209308624,-0.156948953866959,-0.304449766874313,0.939509034156799,-0.150248140096664,-0.236867278814316,0.959853768348694,0.00341219757683575,-0.167559832334518,0.985855996608734,0.144673675298691,-0.0946375802159309,0.984943270683289,0.0994726344943047,-0.0982692241668701,0.990175902843475,0.21330814063549,-0.217368245124817,0.952497005462646,0.0994726344943047,-0.0982692241668701,0.990175902843475,0.293607711791992,-0.14343486726284,0.945103585720062,0.398428201675415,-0.211757823824883,0.892419993877411, +0.115563131868839,-0.0767128020524979,0.990333378314972,0.257168292999268,-0.217758536338806,0.941512405872345,0.398428201675415,-0.211757823824883,0.892419993877411,0.257168292999268,-0.217758536338806,0.941512405872345,0.408219397068024,-0.20943857729435,0.888533771038055,0.408219397068024,-0.20943857729435,0.888533771038055,0.455505281686783,-0.17781800031662,0.872293293476105,0.414411991834641,-0.248218670487404,0.875585556030273,0.356207579374313,-0.198406040668488,0.913099706172943,0.21330814063549,-0.217368245124817,0.952497005462646,0.414411991834641,-0.248218670487404,0.875585556030273,-0.0524028800427914,-0.0567919909954071,0.997009813785553,0.257168292999268,-0.217758536338806,0.941512405872345,0.115563131868839,-0.0767128020524979,0.990333378314972,0.126714363694191,-0.397639006376266,0.908749997615814,-0.0407275594770908,-0.300698399543762,0.952849209308624,0.173064768314362,-0.296894252300262,0.939096510410309,0.126714363694191,-0.397639006376266,0.908749997615814,0.0831922739744186,-0.274438142776489,0.957999289035797,0.0168348383158445,-0.399657636880875,0.916509807109833,-0.0106217451393604,-0.426216453313828,0.904558777809143,0.0973838344216347,-0.466481178998947,0.879153907299042,0.0168348383158445,-0.399657636880875,0.916509807109833,0.0134741431102157,-0.943760275840759,0.330355703830719,-0.0175798106938601,-0.996267914772034,0.0845049247145653,0.0172833688557148,-0.984961867332459,0.171905055642128,-0.0711373761296272,-0.952527225017548,0.296025782823563,0.0134741431102157,-0.943760275840759,0.330355703830719,-0.0318503193557262,-0.821918725967407,0.568713426589966,-0.137755572795868,0.0957367643713951,0.985828459262848,-0.00889919977635145,-0.0740088149905205,0.997217833995819,-0.00607497710734606,0.0896936282515526,0.995950818061829,-0.058765284717083,0.183881565928459,0.981190145015717,-0.176161035895348,0.223729267716408,0.958599150180817,-0.00607497710734606,0.0896936282515526,0.995950818061829,-0.13632433116436,0.844241857528687,0.518335163593292,-0.0317212641239166,0.855202794075012,0.517321705818176, +-0.0546527616679668,0.897554218769073,0.437503606081009,-0.0705331042408943,0.916513979434967,0.393734812736511,-0.0546527616679668,0.897554218769073,0.437503606081009,-0.353324681520462,0.784324526786804,0.509898543357849,-0.353324681520462,0.784324526786804,0.509898543357849,-0.67246425151825,0.42130634188652,0.608516752719879,-0.2931989133358,0.83392721414566,0.467546463012695,-0.373917877674103,0.504134178161621,0.778481841087341,-0.172664120793343,0.467684328556061,0.866866946220398,-0.390548378229141,0.554526627063751,0.734827876091003,-0.058765284717083,0.183881565928459,0.981190145015717,-0.155815795063972,0.347256392240524,0.924734771251678,-0.252534747123718,0.402767956256866,0.879774987697601,-0.172664120793343,0.467684328556061,0.866866946220398,-0.373917877674103,0.504134178161621,0.778481841087341,-0.155815795063972,0.347256392240524,0.924734771251678,-0.197902977466583,0.610064446926117,0.767238974571228,0.0233260430395603,0.762180030345917,0.646944582462311,-0.255754560232162,0.682918906211853,0.684259593486786,-0.390548378229141,0.554526627063751,0.734827876091003,-0.172664120793343,0.467684328556061,0.866866946220398,-0.197902977466583,0.610064446926117,0.767238974571228,-0.255754560232162,0.682918906211853,0.684259593486786,0.0233260430395603,0.762180030345917,0.646944582462311,-0.0317212641239166,0.855202794075012,0.517321705818176,-0.0558799803256989,-0.741046607494354,0.669124186038971,-0.0318503193557262,-0.821918725967407,0.568713426589966,-0.0714400112628937,-0.47624483704567,0.876405775547028,0.102423794567585,-0.329578906297684,0.938555836677551,-0.00889919977635145,-0.0740088149905205,0.997217833995819,-0.0714400112628937,-0.47624483704567,0.876405775547028,-0.76361483335495,0.170142322778702,0.622851371765137,-0.67246425151825,0.42130634188652,0.608516752719879,-0.805970370769501,-0.0258600171655416,0.591390550136566,-0.76361483335495,0.170142322778702,0.622851371765137,-0.805970370769501,-0.0258600171655416,0.591390550136566,-0.826086044311523,-0.0564828552305698,0.56070613861084,-0.826086044311523,-0.0564828552305698,0.56070613861084, +-0.824592530727386,-0.057133860886097,0.562834501266479,-0.821983277797699,-0.0318028517067432,0.568622767925262,-0.68075954914093,-0.354263812303543,0.641142249107361,-0.723026216030121,-0.301338523626328,0.621633350849152,-0.823355138301849,-0.314300507307053,0.472547739744186,-0.823355138301849,-0.314300507307053,0.472547739744186,-0.723026216030121,-0.301338523626328,0.621633350849152,-0.797156691551209,-0.251889377832413,0.548719346523285,-0.755599737167358,-0.345978140830994,0.556208610534668,-0.47792860865593,-0.313395321369171,0.82058972120285,-0.68075954914093,-0.354263812303543,0.641142249107361,-0.47792860865593,-0.313395321369171,0.82058972120285,-0.755599737167358,-0.345978140830994,0.556208610534668,-0.393083304166794,-0.254169464111328,0.883675992488861,-0.808285117149353,-0.170589983463287,0.563537120819092,-0.816469550132751,-0.117876440286636,0.565227806568146,-0.812196254730225,-0.0905849188566208,0.576308488845825,-0.784388720989227,-0.219320580363274,0.580200493335724,-0.808285117149353,-0.170589983463287,0.563537120819092,-0.816214144229889,-0.263301938772202,0.514262914657593,-0.816469550132751,-0.117876440286636,0.565227806568146,-0.824592530727386,-0.057133860886097,0.562834501266479,-0.812196254730225,-0.0905849188566208,0.576308488845825,-0.816214144229889,-0.263301938772202,0.514262914657593,-0.823027729988098,-0.299589991569519,0.482567012310028,-0.846360385417938,-0.264100879430771,0.462519913911819,-0.841383934020996,-0.273562401533127,0.4660864174366,-0.823355138301849,-0.314300507307053,0.472547739744186,-0.846360385417938,-0.264100879430771,0.462519913911819,-0.393083304166794,-0.254169464111328,0.883675992488861,-0.756577014923096,-0.277303367853165,0.592194139957428,-0.576873660087585,-0.220574006438255,0.78648829460144,0.147477179765701,-0.125765100121498,0.981036961078644,-0.227313667535782,-0.151371970772743,0.961984872817993,-0.350826323032379,-0.155140668153763,0.923499941825867,-0.576873660087585,-0.220574006438255,0.78648829460144,-0.681823194026947,-0.196932435035706,0.704510092735291, +-0.227313667535782,-0.151371970772743,0.961984872817993,0.147477179765701,-0.125765100121498,0.981036961078644,0.0846942514181137,-0.190347999334335,0.97805643081665,0.393700629472733,-0.13298237323761,0.909568667411804,0.44231653213501,-0.130667001008987,0.8872891664505,0.393700629472733,-0.13298237323761,0.909568667411804,0.430589586496353,-0.0537573732435703,0.900945425033569,0.261158466339111,-0.114368878304958,0.958496689796448,0.44231653213501,-0.130667001008987,0.8872891664505,0.333060890436172,0.0180662851780653,0.942732155323029,-0.152664631605148,0.0801939368247986,0.985018968582153,-0.336743742227554,0.0802155211567879,0.938173234462738,-0.338354170322418,0.0282481256872416,0.940594673156738,-0.154522150754929,0.0463163778185844,0.986903011798859,-0.311173170804977,-0.0647886469960213,0.948142170906067,-0.338354170322418,0.0282481256872416,0.940594673156738,0.333060890436172,0.0180662851780653,0.942732155323029,0.313508599996567,0.145011425018311,0.938447594642639,0.07610734552145,0.0711347386240959,0.994558930397034,0.07610734552145,0.0711347386240959,0.994558930397034,0.153654903173447,0.127233162522316,0.979898869991302,-0.152664631605148,0.0801939368247986,0.985018968582153,0.0982541441917419,-0.118523202836514,0.988078057765961,-0.0524028800427914,-0.0567919909954071,0.997009813785553,-0.311173170804977,-0.0647886469960213,0.948142170906067,0.00341219757683575,-0.167559832334518,0.985855996608734,-0.0407275594770908,-0.300698399543762,0.952849209308624,-0.150248140096664,-0.236867278814316,0.959853768348694,0.00341219757683575,-0.167559832334518,0.985855996608734,0.0994726344943047,-0.0982692241668701,0.990175902843475,0.0708308219909668,-0.203226417303085,0.97656637430191,0.21330814063549,-0.217368245124817,0.952497005462646,0.0708308219909668,-0.203226417303085,0.97656637430191,0.0994726344943047,-0.0982692241668701,0.990175902843475,0.0982541441917419,-0.118523202836514,0.988078057765961,0.408219397068024,-0.20943857729435,0.888533771038055,0.257168292999268,-0.217758536338806,0.941512405872345, +0.362617462873459,0.00429626507684588,0.931928098201752,0.455505281686783,-0.17781800031662,0.872293293476105,0.408219397068024,-0.20943857729435,0.888533771038055,0.356207579374313,-0.198406040668488,0.913099706172943,0.414411991834641,-0.248218670487404,0.875585556030273,0.455505281686783,-0.17781800031662,0.872293293476105,0.179731979966164,-0.249402418732643,0.951574921607971,0.21330814063549,-0.217368245124817,0.952497005462646,0.356207579374313,-0.198406040668488,0.913099706172943,0.0982541441917419,-0.118523202836514,0.988078057765961,0.257168292999268,-0.217758536338806,0.941512405872345,-0.0524028800427914,-0.0567919909954071,0.997009813785553,0.00341219757683575,-0.167559832334518,0.985855996608734,0.173064768314362,-0.296894252300262,0.939096510410309,-0.0407275594770908,-0.300698399543762,0.952849209308624,0.0831922739744186,-0.274438142776489,0.957999289035797,0.126714363694191,-0.397639006376266,0.908749997615814,0.173064768314362,-0.296894252300262,0.939096510410309,0.0831922739744186,-0.274438142776489,0.957999289035797,-0.200614348053932,-0.228392943739891,0.952675461769104,0.0168348383158445,-0.399657636880875,0.916509807109833,-0.201746940612793,-0.310738831758499,0.928837716579437,-0.0106217451393604,-0.426216453313828,0.904558777809143,0.0168348383158445,-0.399657636880875,0.916509807109833,0.0134741431102157,-0.943760275840759,0.330355703830719,0.0172833688557148,-0.984961867332459,0.171905055642128,0.0643405988812447,-0.898112237453461,0.435033947229385,-0.0318503193557262,-0.821918725967407,0.568713426589966,0.0134741431102157,-0.943760275840759,0.330355703830719,0.0967430025339127,-0.715134680271149,0.69225937128067,-0.00889919977635145,-0.0740088149905205,0.997217833995819,0.140494927763939,-0.0047673131339252,0.99006986618042,-0.00607497710734606,0.0896936282515526,0.995950818061829,-0.00607497710734606,0.0896936282515526,0.995950818061829,0.104603014886379,0.0956704244017601,0.989901661872864,-0.058765284717083,0.183881565928459,0.981190145015717,0.0458277054131031,0.874239981174469,0.483326256275177, +-0.0546527616679668,0.897554218769073,0.437503606081009,-0.0317212641239166,0.855202794075012,0.517321705818176,-0.356016933917999,0.688874661922455,0.6314297914505,-0.353324681520462,0.784324526786804,0.509898543357849,-0.0546527616679668,0.897554218769073,0.437503606081009,-0.67246425151825,0.42130634188652,0.608516752719879,-0.353324681520462,0.784324526786804,0.509898543357849,-0.701355397701263,0.267240345478058,0.660819947719574,-0.058765284717083,0.183881565928459,0.981190145015717,0.0555927604436874,0.26450103521347,0.962781667709351,-0.155815795063972,0.347256392240524,0.924734771251678,-0.172664120793343,0.467684328556061,0.866866946220398,-0.155815795063972,0.347256392240524,0.924734771251678,0.0555927604436874,0.26450103521347,0.962781667709351,-0.197902977466583,0.610064446926117,0.767238974571228,0.0300147235393524,0.552456498146057,0.83300107717514,0.0233260430395603,0.762180030345917,0.646944582462311,-0.197902977466583,0.610064446926117,0.767238974571228,-0.172664120793343,0.467684328556061,0.866866946220398,0.0300147235393524,0.552456498146057,0.83300107717514,-0.0317212641239166,0.855202794075012,0.517321705818176,0.0233260430395603,0.762180030345917,0.646944582462311,0.0458277054131031,0.874239981174469,0.483326256275177,-0.0318503193557262,-0.821918725967407,0.568713426589966,0.0967430025339127,-0.715134680271149,0.69225937128067,-0.0714400112628937,-0.47624483704567,0.876405775547028,-0.00889919977635145,-0.0740088149905205,0.997217833995819,0.102423794567585,-0.329578906297684,0.938555836677551,0.140494927763939,-0.0047673131339252,0.99006986618042,0.102423794567585,-0.329578906297684,0.938555836677551,-0.0714400112628937,-0.47624483704567,0.876405775547028,0.0967430025339127,-0.715134680271149,0.69225937128067,-0.67246425151825,0.42130634188652,0.608516752719879,-0.701355397701263,0.267240345478058,0.660819947719574,-0.805970370769501,-0.0258600171655416,0.591390550136566,-0.797183096408844,-0.126290559768677,0.590380907058716,-0.826086044311523,-0.0564828552305698,0.56070613861084,-0.805970370769501,-0.0258600171655416,0.591390550136566, +-0.818835556507111,-0.0458643920719624,0.57219272851944,-0.824592530727386,-0.057133860886097,0.562834501266479,-0.826086044311523,-0.0564828552305698,0.56070613861084,-0.80653190612793,-0.369375109672546,0.461593091487885,-0.68075954914093,-0.354263812303543,0.641142249107361,-0.823355138301849,-0.314300507307053,0.472547739744186,-0.68075954914093,-0.354263812303543,0.641142249107361,-0.80653190612793,-0.369375109672546,0.461593091487885,-0.755599737167358,-0.345978140830994,0.556208610534668,-0.756577014923096,-0.277303367853165,0.592194139957428,-0.393083304166794,-0.254169464111328,0.883675992488861,-0.755599737167358,-0.345978140830994,0.556208610534668,-0.808285117149353,-0.170589983463287,0.563537120819092,-0.812196254730225,-0.0905849188566208,0.576308488845825,-0.815834522247314,-0.125088587403297,0.564594268798828,-0.802007973194122,-0.211934104561806,0.558450520038605,-0.816214144229889,-0.263301938772202,0.514262914657593,-0.808285117149353,-0.170589983463287,0.563537120819092,-0.818835556507111,-0.0458643920719624,0.57219272851944,-0.812196254730225,-0.0905849188566208,0.576308488845825,-0.824592530727386,-0.057133860886097,0.562834501266479,-0.823027729988098,-0.299589991569519,0.482567012310028,-0.816214144229889,-0.263301938772202,0.514262914657593,-0.819623053073883,-0.23813858628273,0.521064221858978,-0.841383934020996,-0.273562401533127,0.4660864174366,-0.846360385417938,-0.264100879430771,0.462519913911819,-0.823027729988098,-0.299589991569519,0.482567012310028,-0.823355138301849,-0.314300507307053,0.472547739744186,-0.841383934020996,-0.273562401533127,0.4660864174366,-0.814732611179352,-0.343433737754822,0.4671870470047,-0.826117038726807,-0.242748260498047,0.508530974388123,-0.576873660087585,-0.220574006438255,0.78648829460144,-0.756577014923096,-0.277303367853165,0.592194139957428,-0.681823194026947,-0.196932435035706,0.704510092735291,-0.350826323032379,-0.155140668153763,0.923499941825867,-0.227313667535782,-0.151371970772743,0.961984872817993,0.147477179765701,-0.125765100121498,0.981036961078644, +-0.350826323032379,-0.155140668153763,0.923499941825867,0.0846942514181137,-0.190347999334335,0.97805643081665,-0.576873660087585,-0.220574006438255,0.78648829460144,-0.826117038726807,-0.242748260498047,0.508530974388123,-0.681823194026947,-0.196932435035706,0.704510092735291,0.393700629472733,-0.13298237323761,0.909568667411804,0.0846942514181137,-0.190347999334335,0.97805643081665,0.311309576034546,-0.164290025830269,0.93599945306778,0.430589586496353,-0.0537573732435703,0.900945425033569,0.393700629472733,-0.13298237323761,0.909568667411804,0.311309576034546,-0.164290025830269,0.93599945306778,0.333060890436172,0.0180662851780653,0.942732155323029,0.44231653213501,-0.130667001008987,0.8872891664505,0.430589586496353,-0.0537573732435703,0.900945425033569,-0.104161158204079,0.0582981146872044,0.992850303649902,-0.336743742227554,0.0802155211567879,0.938173234462738,-0.152664631605148,0.0801939368247986,0.985018968582153,-0.338354170322418,0.0282481256872416,0.940594673156738,-0.336743742227554,0.0802155211567879,0.938173234462738,-0.339970886707306,0.0639315024018288,0.938260316848755,-0.154522150754929,0.0463163778185844,0.986903011798859,0.0982541441917419,-0.118523202836514,0.988078057765961,-0.311173170804977,-0.0647886469960213,0.948142170906067,-0.154522150754929,0.0463163778185844,0.986903011798859,-0.338354170322418,0.0282481256872416,0.940594673156738,-0.339970886707306,0.0639315024018288,0.938260316848755,0.333060890436172,0.0180662851780653,0.942732155323029,0.295775443315506,0.0390343852341175,0.954459547996521,0.313508599996567,0.145011425018311,0.938447594642639,0.313508599996567,0.145011425018311,0.938447594642639,0.153654903173447,0.127233162522316,0.979898869991302,0.07610734552145,0.0711347386240959,0.994558930397034,-0.104161158204079,0.0582981146872044,0.992850303649902,-0.152664631605148,0.0801939368247986,0.985018968582153,0.153654903173447,0.127233162522316,0.979898869991302,0.0708308219909668,-0.203226417303085,0.97656637430191,0.06996189057827,-0.273859441280365,0.959221720695496,0.00341219757683575,-0.167559832334518,0.985855996608734, +0.179731979966164,-0.249402418732643,0.951574921607971,0.0708308219909668,-0.203226417303085,0.97656637430191,0.21330814063549,-0.217368245124817,0.952497005462646,0.0982541441917419,-0.118523202836514,0.988078057765961,0.362617462873459,0.00429626507684588,0.931928098201752,0.408219397068024,-0.20943857729435,0.888533771038055,0.362617462873459,0.00429626507684588,0.931928098201752,0.447360903024673,-0.045225877314806,0.893209099769592,0.455505281686783,-0.17781800031662,0.872293293476105,0.356207579374313,-0.198406040668488,0.913099706172943,0.455505281686783,-0.17781800031662,0.872293293476105,0.447360903024673,-0.045225877314806,0.893209099769592,0.356207579374313,-0.198406040668488,0.913099706172943,0.355810612440109,-0.0515304356813431,0.933136284351349,0.179731979966164,-0.249402418732643,0.951574921607971,0.172075927257538,-0.248609483242035,0.953196227550507,0.173064768314362,-0.296894252300262,0.939096510410309,0.00341219757683575,-0.167559832334518,0.985855996608734,0.189177721738815,-0.215131804347038,0.958086609840393,0.0831922739744186,-0.274438142776489,0.957999289035797,0.173064768314362,-0.296894252300262,0.939096510410309,-0.258978396654129,-0.0869297310709953,0.96196323633194,-0.200614348053932,-0.228392943739891,0.952675461769104,0.0831922739744186,-0.274438142776489,0.957999289035797,0.0168348383158445,-0.399657636880875,0.916509807109833,-0.200614348053932,-0.228392943739891,0.952675461769104,-0.201746940612793,-0.310738831758499,0.928837716579437,-0.0106217451393604,-0.426216453313828,0.904558777809143,-0.201746940612793,-0.310738831758499,0.928837716579437,-0.144637927412987,-0.326926231384277,0.933915913105011,0.0643405988812447,-0.898112237453461,0.435033947229385,0.0967430025339127,-0.715134680271149,0.69225937128067,0.0134741431102157,-0.943760275840759,0.330355703830719,0.140494927763939,-0.0047673131339252,0.99006986618042,0.104603014886379,0.0956704244017601,0.989901661872864,-0.00607497710734606,0.0896936282515526,0.995950818061829,0.104603014886379,0.0956704244017601,0.989901661872864, +0.0555927604436874,0.26450103521347,0.962781667709351,-0.058765284717083,0.183881565928459,0.981190145015717,-0.0546527616679668,0.897554218769073,0.437503606081009,0.0458277054131031,0.874239981174469,0.483326256275177,-0.0956436395645142,0.856047511100769,0.507971286773682,-0.356016933917999,0.688874661922455,0.6314297914505,-0.701355397701263,0.267240345478058,0.660819947719574,-0.353324681520462,0.784324526786804,0.509898543357849,-0.0546527616679668,0.897554218769073,0.437503606081009,-0.0956436395645142,0.856047511100769,0.507971286773682,-0.356016933917999,0.688874661922455,0.6314297914505,-0.172664120793343,0.467684328556061,0.866866946220398,0.0555927604436874,0.26450103521347,0.962781667709351,0.0538966991007328,0.421619653701782,0.905169546604156,0.0300147235393524,0.552456498146057,0.83300107717514,0.164258480072021,0.633351862430573,0.756230354309082,0.0233260430395603,0.762180030345917,0.646944582462311,-0.172664120793343,0.467684328556061,0.866866946220398,0.0538966991007328,0.421619653701782,0.905169546604156,0.0300147235393524,0.552456498146057,0.83300107717514,0.0233260430395603,0.762180030345917,0.646944582462311,0.173280224204063,0.784994602203369,0.594775021076202,0.0458277054131031,0.874239981174469,0.483326256275177,0.102423794567585,-0.329578906297684,0.938555836677551,0.232231959700584,-0.235388413071632,0.943748116493225,0.140494927763939,-0.0047673131339252,0.99006986618042,0.102423794567585,-0.329578906297684,0.938555836677551,0.0967430025339127,-0.715134680271149,0.69225937128067,0.232231959700584,-0.235388413071632,0.943748116493225,-0.797183096408844,-0.126290559768677,0.590380907058716,-0.805970370769501,-0.0258600171655416,0.591390550136566,-0.701355397701263,0.267240345478058,0.660819947719574,-0.797183096408844,-0.126290559768677,0.590380907058716,-0.799006879329681,-0.108401574194431,0.591470122337341,-0.826086044311523,-0.0564828552305698,0.56070613861084,-0.833774089813232,-0.0327894687652588,0.551131069660187,-0.818835556507111,-0.0458643920719624,0.57219272851944,-0.826086044311523,-0.0564828552305698,0.56070613861084, +-0.823355138301849,-0.314300507307053,0.472547739744186,-0.814732611179352,-0.343433737754822,0.4671870470047,-0.80653190612793,-0.369375109672546,0.461593091487885,-0.820860683917999,-0.345227986574173,0.454978257417679,-0.755599737167358,-0.345978140830994,0.556208610534668,-0.80653190612793,-0.369375109672546,0.461593091487885,-0.755599737167358,-0.345978140830994,0.556208610534668,-0.848888278007507,-0.279975354671478,0.448332816362381,-0.756577014923096,-0.277303367853165,0.592194139957428,-0.820937275886536,-0.0508270114660263,0.568751633167267,-0.815834522247314,-0.125088587403297,0.564594268798828,-0.812196254730225,-0.0905849188566208,0.576308488845825,-0.802007973194122,-0.211934104561806,0.558450520038605,-0.808285117149353,-0.170589983463287,0.563537120819092,-0.815834522247314,-0.125088587403297,0.564594268798828,-0.819623053073883,-0.23813858628273,0.521064221858978,-0.816214144229889,-0.263301938772202,0.514262914657593,-0.802007973194122,-0.211934104561806,0.558450520038605,-0.820937275886536,-0.0508270114660263,0.568751633167267,-0.812196254730225,-0.0905849188566208,0.576308488845825,-0.818835556507111,-0.0458643920719624,0.57219272851944,-0.823475480079651,-0.280983358621597,0.492885738611221,-0.823027729988098,-0.299589991569519,0.482567012310028,-0.819623053073883,-0.23813858628273,0.521064221858978,-0.823027729988098,-0.299589991569519,0.482567012310028,-0.832329928874969,-0.272888034582138,0.482450842857361,-0.841383934020996,-0.273562401533127,0.4660864174366,-0.841383934020996,-0.273562401533127,0.4660864174366,-0.830778658390045,-0.291433691978455,0.474207848310471,-0.814732611179352,-0.343433737754822,0.4671870470047,-0.826117038726807,-0.242748260498047,0.508530974388123,-0.756577014923096,-0.277303367853165,0.592194139957428,-0.848888278007507,-0.279975354671478,0.448332816362381,-0.681823194026947,-0.196932435035706,0.704510092735291,-0.764453053474426,-0.148790150880814,0.627274036407471,-0.350826323032379,-0.155140668153763,0.923499941825867,-0.350826323032379,-0.155140668153763,0.923499941825867, +-0.440117299556732,-0.259275048971176,0.859693646430969,0.0846942514181137,-0.190347999334335,0.97805643081665,-0.853699505329132,-0.200731500983238,0.480524599552155,-0.681823194026947,-0.196932435035706,0.704510092735291,-0.826117038726807,-0.242748260498047,0.508530974388123,0.311309576034546,-0.164290025830269,0.93599945306778,0.0846942514181137,-0.190347999334335,0.97805643081665,-0.0469791293144226,-0.360823780298233,0.931449949741364,0.311309576034546,-0.164290025830269,0.93599945306778,0.199232205748558,-0.176230192184448,0.963975787162781,0.430589586496353,-0.0537573732435703,0.900945425033569,0.333060890436172,0.0180662851780653,0.942732155323029,0.430589586496353,-0.0537573732435703,0.900945425033569,0.295775443315506,0.0390343852341175,0.954459547996521,-0.336743742227554,0.0802155211567879,0.938173234462738,-0.104161158204079,0.0582981146872044,0.992850303649902,-0.325323820114136,0.0271954145282507,0.945211470127106,-0.293114989995956,0.0762312710285187,0.953033208847046,-0.339970886707306,0.0639315024018288,0.938260316848755,-0.336743742227554,0.0802155211567879,0.938173234462738,0.0982541441917419,-0.118523202836514,0.988078057765961,-0.154522150754929,0.0463163778185844,0.986903011798859,0.362617462873459,0.00429626507684588,0.931928098201752,-0.154522150754929,0.0463163778185844,0.986903011798859,-0.339970886707306,0.0639315024018288,0.938260316848755,-0.174690589308739,0.0292537081986666,0.984188675880432,0.295775443315506,0.0390343852341175,0.954459547996521,0.241225987672806,0.0323146507143974,0.969930768013,0.313508599996567,0.145011425018311,0.938447594642639,0.241225987672806,0.0323146507143974,0.969930768013,0.153654903173447,0.127233162522316,0.979898869991302,0.313508599996567,0.145011425018311,0.938447594642639,0.142305195331573,-0.0422404743731022,0.988921105861664,-0.104161158204079,0.0582981146872044,0.992850303649902,0.153654903173447,0.127233162522316,0.979898869991302,0.0708308219909668,-0.203226417303085,0.97656637430191,0.179731979966164,-0.249402418732643,0.951574921607971,0.06996189057827,-0.273859441280365,0.959221720695496, +0.06996189057827,-0.273859441280365,0.959221720695496,0.172075927257538,-0.248609483242035,0.953196227550507,0.00341219757683575,-0.167559832334518,0.985855996608734,0.362617462873459,0.00429626507684588,0.931928098201752,0.458694487810135,0.166139096021652,0.872924387454987,0.447360903024673,-0.045225877314806,0.893209099769592,0.356207579374313,-0.198406040668488,0.913099706172943,0.447360903024673,-0.045225877314806,0.893209099769592,0.355810612440109,-0.0515304356813431,0.933136284351349,0.179731979966164,-0.249402418732643,0.951574921607971,0.355810612440109,-0.0515304356813431,0.933136284351349,0.155769914388657,-0.0566526800394058,0.986167371273041,0.189177721738815,-0.215131804347038,0.958086609840393,0.173064768314362,-0.296894252300262,0.939096510410309,0.172075927257538,-0.248609483242035,0.953196227550507,0.0831922739744186,-0.274438142776489,0.957999289035797,0.189177721738815,-0.215131804347038,0.958086609840393,-0.0480612441897392,-0.101396970450878,0.993684411048889,-0.339850097894669,-0.130288347601891,0.931411147117615,-0.200614348053932,-0.228392943739891,0.952675461769104,-0.258978396654129,-0.0869297310709953,0.96196323633194,0.0831922739744186,-0.274438142776489,0.957999289035797,-0.0480612441897392,-0.101396970450878,0.993684411048889,-0.258978396654129,-0.0869297310709953,0.96196323633194,-0.339850097894669,-0.130288347601891,0.931411147117615,-0.201746940612793,-0.310738831758499,0.928837716579437,-0.200614348053932,-0.228392943739891,0.952675461769104,-0.201746940612793,-0.310738831758499,0.928837716579437,-0.250261634588242,-0.227919191122055,0.940968573093414,-0.144637927412987,-0.326926231384277,0.933915913105011,0.0967430025339127,-0.715134680271149,0.69225937128067,0.0643405988812447,-0.898112237453461,0.435033947229385,0.186159580945969,-0.558516979217529,0.8083336353302,0.140494927763939,-0.0047673131339252,0.99006986618042,0.235850736498833,0.029978821054101,0.971326768398285,0.104603014886379,0.0956704244017601,0.989901661872864,0.104603014886379,0.0956704244017601,0.989901661872864, +0.213349238038063,0.140481293201447,0.966823160648346,0.0555927604436874,0.26450103521347,0.962781667709351,0.0458277054131031,0.874239981174469,0.483326256275177,-0.126151546835899,0.814640820026398,0.566079437732697,-0.0956436395645142,0.856047511100769,0.507971286773682,-0.695945620536804,0.0891267582774162,0.712541878223419,-0.701355397701263,0.267240345478058,0.660819947719574,-0.356016933917999,0.688874661922455,0.6314297914505,-0.356016933917999,0.688874661922455,0.6314297914505,-0.0956436395645142,0.856047511100769,0.507971286773682,-0.406927347183228,0.621432244777679,0.66950124502182,0.0555927604436874,0.26450103521347,0.962781667709351,0.177126869559288,0.326664417982101,0.928394496440887,0.0538966991007328,0.421619653701782,0.905169546604156,0.0300147235393524,0.552456498146057,0.83300107717514,0.23486165702343,0.395221382379532,0.888054013252258,0.164258480072021,0.633351862430573,0.756230354309082,0.0233260430395603,0.762180030345917,0.646944582462311,0.164258480072021,0.633351862430573,0.756230354309082,0.173280224204063,0.784994602203369,0.594775021076202,0.177126869559288,0.326664417982101,0.928394496440887,0.0300147235393524,0.552456498146057,0.83300107717514,0.0538966991007328,0.421619653701782,0.905169546604156,0.114651814103127,0.834331095218658,0.539209067821503,0.0458277054131031,0.874239981174469,0.483326256275177,0.173280224204063,0.784994602203369,0.594775021076202,0.232231959700584,-0.235388413071632,0.943748116493225,0.235850736498833,0.029978821054101,0.971326768398285,0.140494927763939,-0.0047673131339252,0.99006986618042,0.186159580945969,-0.558516979217529,0.8083336353302,0.232231959700584,-0.235388413071632,0.943748116493225,0.0967430025339127,-0.715134680271149,0.69225937128067,-0.797183096408844,-0.126290559768677,0.590380907058716,-0.701355397701263,0.267240345478058,0.660819947719574,-0.695945620536804,0.0891267582774162,0.712541878223419,-0.746086776256561,-0.223437413573265,0.627240002155304,-0.799006879329681,-0.108401574194431,0.591470122337341,-0.797183096408844,-0.126290559768677,0.590380907058716, +-0.826086044311523,-0.0564828552305698,0.56070613861084,-0.799006879329681,-0.108401574194431,0.591470122337341,-0.833774089813232,-0.0327894687652588,0.551131069660187,-0.833774089813232,-0.0327894687652588,0.551131069660187,-0.820937275886536,-0.0508270114660263,0.568751633167267,-0.818835556507111,-0.0458643920719624,0.57219272851944,-0.814732611179352,-0.343433737754822,0.4671870470047,-0.820860683917999,-0.345227986574173,0.454978257417679,-0.80653190612793,-0.369375109672546,0.461593091487885,-0.755599737167358,-0.345978140830994,0.556208610534668,-0.820860683917999,-0.345227986574173,0.454978257417679,-0.848888278007507,-0.279975354671478,0.448332816362381,-0.834292232990265,-0.0518974363803864,0.548874318599701,-0.815834522247314,-0.125088587403297,0.564594268798828,-0.820937275886536,-0.0508270114660263,0.568751633167267,-0.819623053073883,-0.23813858628273,0.521064221858978,-0.802007973194122,-0.211934104561806,0.558450520038605,-0.815834522247314,-0.125088587403297,0.564594268798828,-0.823027729988098,-0.299589991569519,0.482567012310028,-0.823475480079651,-0.280983358621597,0.492885738611221,-0.823170483112335,-0.310922414064407,0.475097417831421,-0.819623053073883,-0.23813858628273,0.521064221858978,-0.828672349452972,-0.20328988134861,0.521512389183044,-0.823475480079651,-0.280983358621597,0.492885738611221,-0.823170483112335,-0.310922414064407,0.475097417831421,-0.832329928874969,-0.272888034582138,0.482450842857361,-0.823027729988098,-0.299589991569519,0.482567012310028,-0.832329928874969,-0.272888034582138,0.482450842857361,-0.830778658390045,-0.291433691978455,0.474207848310471,-0.841383934020996,-0.273562401533127,0.4660864174366,-0.814732611179352,-0.343433737754822,0.4671870470047,-0.830778658390045,-0.291433691978455,0.474207848310471,-0.815653860569,-0.354654490947723,0.457087337970734,-0.848888278007507,-0.279975354671478,0.448332816362381,-0.836845815181732,-0.300623714923859,0.457508832216263,-0.826117038726807,-0.242748260498047,0.508530974388123,-0.681823194026947,-0.196932435035706,0.704510092735291, +-0.853699505329132,-0.200731500983238,0.480524599552155,-0.764453053474426,-0.148790150880814,0.627274036407471,-0.350826323032379,-0.155140668153763,0.923499941825867,-0.764453053474426,-0.148790150880814,0.627274036407471,-0.440117299556732,-0.259275048971176,0.859693646430969,-0.440117299556732,-0.259275048971176,0.859693646430969,-0.0469791293144226,-0.360823780298233,0.931449949741364,0.0846942514181137,-0.190347999334335,0.97805643081665,-0.871073305606842,-0.279849648475647,0.403627753257751,-0.853699505329132,-0.200731500983238,0.480524599552155,-0.826117038726807,-0.242748260498047,0.508530974388123,0.311309576034546,-0.164290025830269,0.93599945306778,-0.0469791293144226,-0.360823780298233,0.931449949741364,0.199232205748558,-0.176230192184448,0.963975787162781,0.430589586496353,-0.0537573732435703,0.900945425033569,0.199232205748558,-0.176230192184448,0.963975787162781,0.295775443315506,0.0390343852341175,0.954459547996521,-0.0951415151357651,-0.0616662576794624,0.993551731109619,-0.325323820114136,0.0271954145282507,0.945211470127106,-0.104161158204079,0.0582981146872044,0.992850303649902,-0.336743742227554,0.0802155211567879,0.938173234462738,-0.325323820114136,0.0271954145282507,0.945211470127106,-0.293114989995956,0.0762312710285187,0.953033208847046,-0.293114989995956,0.0762312710285187,0.953033208847046,-0.140993565320969,0.0102173909544945,0.989957749843597,-0.339970886707306,0.0639315024018288,0.938260316848755,0.135034561157227,0.0457062907516956,0.989786088466644,0.362617462873459,0.00429626507684588,0.931928098201752,-0.154522150754929,0.0463163778185844,0.986903011798859,-0.174690589308739,0.0292537081986666,0.984188675880432,-0.339970886707306,0.0639315024018288,0.938260316848755,-0.140993565320969,0.0102173909544945,0.989957749843597,-0.154522150754929,0.0463163778185844,0.986903011798859,-0.174690589308739,0.0292537081986666,0.984188675880432,0.135034561157227,0.0457062907516956,0.989786088466644,0.295775443315506,0.0390343852341175,0.954459547996521,0.129954546689987,-0.064116433262825,0.989444673061371, +0.241225987672806,0.0323146507143974,0.969930768013,0.241225987672806,0.0323146507143974,0.969930768013,0.142305195331573,-0.0422404743731022,0.988921105861664,0.153654903173447,0.127233162522316,0.979898869991302,0.142305195331573,-0.0422404743731022,0.988921105861664,-0.0951415151357651,-0.0616662576794624,0.993551731109619,-0.104161158204079,0.0582981146872044,0.992850303649902,0.179731979966164,-0.249402418732643,0.951574921607971,0.0647046864032745,-0.264986783266068,0.96207857131958,0.06996189057827,-0.273859441280365,0.959221720695496,0.172075927257538,-0.248609483242035,0.953196227550507,0.06996189057827,-0.273859441280365,0.959221720695496,0.0383862853050232,-0.2437863945961,0.969068944454193,0.425332844257355,0.140095874667168,0.894128084182739,0.458694487810135,0.166139096021652,0.872924387454987,0.362617462873459,0.00429626507684588,0.931928098201752,0.355810612440109,-0.0515304356813431,0.933136284351349,0.447360903024673,-0.045225877314806,0.893209099769592,0.458694487810135,0.166139096021652,0.872924387454987,0.155769914388657,-0.0566526800394058,0.986167371273041,0.355810612440109,-0.0515304356813431,0.933136284351349,0.321335434913635,0.140460699796677,0.93649035692215,0.179731979966164,-0.249402418732643,0.951574921607971,0.155769914388657,-0.0566526800394058,0.986167371273041,0.0647046864032745,-0.264986783266068,0.96207857131958,0.166944310069084,-0.220820441842079,0.96092027425766,0.189177721738815,-0.215131804347038,0.958086609840393,0.172075927257538,-0.248609483242035,0.953196227550507,-0.0480612441897392,-0.101396970450878,0.993684411048889,0.189177721738815,-0.215131804347038,0.958086609840393,0.0404357127845287,-0.136061996221542,0.989874720573425,-0.339850097894669,-0.130288347601891,0.931411147117615,-0.258978396654129,-0.0869297310709953,0.96196323633194,-0.3063845038414,-0.075774297118187,0.948887050151825,-0.258978396654129,-0.0869297310709953,0.96196323633194,-0.0480612441897392,-0.101396970450878,0.993684411048889,-0.251651376485825,0.00124196929391474,0.967817068099976,-0.201746940612793,-0.310738831758499,0.928837716579437, +-0.339850097894669,-0.130288347601891,0.931411147117615,-0.250261634588242,-0.227919191122055,0.940968573093414,0.104603014886379,0.0956704244017601,0.989901661872864,0.235850736498833,0.029978821054101,0.971326768398285,0.213349238038063,0.140481293201447,0.966823160648346,0.0555927604436874,0.26450103521347,0.962781667709351,0.213349238038063,0.140481293201447,0.966823160648346,0.177126869559288,0.326664417982101,0.928394496440887,0.114651814103127,0.834331095218658,0.539209067821503,-0.126151546835899,0.814640820026398,0.566079437732697,0.0458277054131031,0.874239981174469,0.483326256275177,-0.126151546835899,0.814640820026398,0.566079437732697,-0.406927347183228,0.621432244777679,0.66950124502182,-0.0956436395645142,0.856047511100769,0.507971286773682,-0.356016933917999,0.688874661922455,0.6314297914505,-0.406927347183228,0.621432244777679,0.66950124502182,-0.695945620536804,0.0891267582774162,0.712541878223419,0.23486165702343,0.395221382379532,0.888054013252258,0.0300147235393524,0.552456498146057,0.83300107717514,0.177126869559288,0.326664417982101,0.928394496440887,0.164258480072021,0.633351862430573,0.756230354309082,0.23486165702343,0.395221382379532,0.888054013252258,0.300942361354828,0.582365870475769,0.755171179771423,0.164258480072021,0.633351862430573,0.756230354309082,0.300942361354828,0.582365870475769,0.755171179771423,0.173280224204063,0.784994602203369,0.594775021076202,0.173280224204063,0.784994602203369,0.594775021076202,0.270060509443283,0.758142352104187,0.593537986278534,0.114651814103127,0.834331095218658,0.539209067821503,0.282409846782684,-0.111748047173023,0.9527627825737,0.235850736498833,0.029978821054101,0.971326768398285,0.232231959700584,-0.235388413071632,0.943748116493225,-0.695945620536804,0.0891267582774162,0.712541878223419,-0.746086776256561,-0.223437413573265,0.627240002155304,-0.797183096408844,-0.126290559768677,0.590380907058716,-0.746086776256561,-0.223437413573265,0.627240002155304,-0.746117770671844,-0.182780385017395,0.640233874320984,-0.799006879329681,-0.108401574194431,0.591470122337341, +-0.833774089813232,-0.0327894687652588,0.551131069660187,-0.799006879329681,-0.108401574194431,0.591470122337341,-0.829958140850067,-0.0325051620602608,0.556877553462982,-0.820937275886536,-0.0508270114660263,0.568751633167267,-0.833774089813232,-0.0327894687652588,0.551131069660187,-0.829958140850067,-0.0325051620602608,0.556877553462982,-0.814732611179352,-0.343433737754822,0.4671870470047,-0.814619660377502,-0.375479966402054,0.442051440477371,-0.820860683917999,-0.345227986574173,0.454978257417679,-0.820860683917999,-0.345227986574173,0.454978257417679,-0.836845815181732,-0.300623714923859,0.457508832216263,-0.848888278007507,-0.279975354671478,0.448332816362381,-0.815834522247314,-0.125088587403297,0.564594268798828,-0.834292232990265,-0.0518974363803864,0.548874318599701,-0.832832932472229,-0.0866648927330971,0.546697795391083,-0.834292232990265,-0.0518974363803864,0.548874318599701,-0.820937275886536,-0.0508270114660263,0.568751633167267,-0.829958140850067,-0.0325051620602608,0.556877553462982,-0.815834522247314,-0.125088587403297,0.564594268798828,-0.831189155578613,-0.132482931017876,0.539974689483643,-0.819623053073883,-0.23813858628273,0.521064221858978,-0.823475480079651,-0.280983358621597,0.492885738611221,-0.805922329425812,-0.335584789514542,0.487721085548401,-0.823170483112335,-0.310922414064407,0.475097417831421,-0.819623053073883,-0.23813858628273,0.521064221858978,-0.830185055732727,-0.140271842479706,0.53955203294754,-0.828672349452972,-0.20328988134861,0.521512389183044,-0.828672349452972,-0.20328988134861,0.521512389183044,-0.832154035568237,-0.214240416884422,0.511488556861877,-0.823475480079651,-0.280983358621597,0.492885738611221,-0.832326352596283,-0.290708839893341,0.471933335065842,-0.832329928874969,-0.272888034582138,0.482450842857361,-0.823170483112335,-0.310922414064407,0.475097417831421,-0.832326352596283,-0.290708839893341,0.471933335065842,-0.830778658390045,-0.291433691978455,0.474207848310471,-0.832329928874969,-0.272888034582138,0.482450842857361,-0.830778658390045,-0.291433691978455,0.474207848310471, +-0.825440883636475,-0.319022089242935,0.465695351362228,-0.815653860569,-0.354654490947723,0.457087337970734,-0.814619660377502,-0.375479966402054,0.442051440477371,-0.814732611179352,-0.343433737754822,0.4671870470047,-0.815653860569,-0.354654490947723,0.457087337970734,-0.871073305606842,-0.279849648475647,0.403627753257751,-0.826117038726807,-0.242748260498047,0.508530974388123,-0.836845815181732,-0.300623714923859,0.457508832216263,-0.764453053474426,-0.148790150880814,0.627274036407471,-0.853699505329132,-0.200731500983238,0.480524599552155,-0.878174960613251,-0.141201600432396,0.457023859024048,-0.740607798099518,-0.173787221312523,0.649074792861938,-0.440117299556732,-0.259275048971176,0.859693646430969,-0.764453053474426,-0.148790150880814,0.627274036407471,-0.440117299556732,-0.259275048971176,0.859693646430969,-0.422390550374985,-0.384741872549057,0.820706844329834,-0.0469791293144226,-0.360823780298233,0.931449949741364,-0.853699505329132,-0.200731500983238,0.480524599552155,-0.871073305606842,-0.279849648475647,0.403627753257751,-0.893654882907867,-0.195783078670502,0.403794229030609,0.199232205748558,-0.176230192184448,0.963975787162781,-0.0469791293144226,-0.360823780298233,0.931449949741364,-0.097446009516716,-0.375238299369812,0.921791970729828,0.199232205748558,-0.176230192184448,0.963975787162781,-0.00251052970997989,-0.195446833968163,0.980711042881012,0.295775443315506,0.0390343852341175,0.954459547996521,-0.246261030435562,-0.122272215783596,0.961459755897522,-0.325323820114136,0.0271954145282507,0.945211470127106,-0.0951415151357651,-0.0616662576794624,0.993551731109619,-0.396495968103409,0.107867866754532,0.911677181720734,-0.293114989995956,0.0762312710285187,0.953033208847046,-0.325323820114136,0.0271954145282507,0.945211470127106,-0.293114989995956,0.0762312710285187,0.953033208847046,-0.0234697591513395,0.0607546269893646,0.997876703739166,-0.140993565320969,0.0102173909544945,0.989957749843597,0.135034561157227,0.0457062907516956,0.989786088466644,0.425332844257355,0.140095874667168,0.894128084182739, +0.362617462873459,0.00429626507684588,0.931928098201752,0.135034561157227,0.0457062907516956,0.989786088466644,-0.174690589308739,0.0292537081986666,0.984188675880432,-0.140993565320969,0.0102173909544945,0.989957749843597,-0.00251052970997989,-0.195446833968163,0.980711042881012,0.129954546689987,-0.064116433262825,0.989444673061371,0.295775443315506,0.0390343852341175,0.954459547996521,0.129954546689987,-0.064116433262825,0.989444673061371,-0.0316389910876751,-0.2207340747118,0.974820673465729,0.241225987672806,0.0323146507143974,0.969930768013,0.241225987672806,0.0323146507143974,0.969930768013,0.113690003752708,-0.126888811588287,0.985379993915558,0.142305195331573,-0.0422404743731022,0.988921105861664,-0.0951415151357651,-0.0616662576794624,0.993551731109619,0.142305195331573,-0.0422404743731022,0.988921105861664,-0.0333993695676327,-0.208129301667213,0.977530837059021,0.0647046864032745,-0.264986783266068,0.96207857131958,0.0383862853050232,-0.2437863945961,0.969068944454193,0.06996189057827,-0.273859441280365,0.959221720695496,0.0383862853050232,-0.2437863945961,0.969068944454193,0.166944310069084,-0.220820441842079,0.96092027425766,0.172075927257538,-0.248609483242035,0.953196227550507,0.425332844257355,0.140095874667168,0.894128084182739,0.361270755529404,0.132260873913765,0.92303329706192,0.458694487810135,0.166139096021652,0.872924387454987,0.321335434913635,0.140460699796677,0.93649035692215,0.355810612440109,-0.0515304356813431,0.933136284351349,0.458694487810135,0.166139096021652,0.872924387454987,0.140187084674835,0.166530504822731,0.976019978523254,0.155769914388657,-0.0566526800394058,0.986167371273041,0.321335434913635,0.140460699796677,0.93649035692215,0.155769914388657,-0.0566526800394058,0.986167371273041,0.00619217846542597,-0.118456855416298,0.992939829826355,0.0647046864032745,-0.264986783266068,0.96207857131958,0.189177721738815,-0.215131804347038,0.958086609840393,0.166944310069084,-0.220820441842079,0.96092027425766,0.0404357127845287,-0.136061996221542,0.989874720573425,-0.141630694270134,0.0101165184751153,0.989867806434631, +-0.0480612441897392,-0.101396970450878,0.993684411048889,0.0404357127845287,-0.136061996221542,0.989874720573425,-0.3063845038414,-0.075774297118187,0.948887050151825,-0.258978396654129,-0.0869297310709953,0.96196323633194,-0.295357078313828,-0.00676836771890521,0.955362915992737,-0.226490527391434,-0.117226220667362,0.966933310031891,-0.339850097894669,-0.130288347601891,0.931411147117615,-0.3063845038414,-0.075774297118187,0.948887050151825,-0.141630694270134,0.0101165184751153,0.989867806434631,-0.251651376485825,0.00124196929391474,0.967817068099976,-0.0480612441897392,-0.101396970450878,0.993684411048889,-0.251651376485825,0.00124196929391474,0.967817068099976,-0.295357078313828,-0.00676836771890521,0.955362915992737,-0.258978396654129,-0.0869297310709953,0.96196323633194,-0.339850097894669,-0.130288347601891,0.931411147117615,-0.295964300632477,-0.115398913621902,0.948202550411224,-0.250261634588242,-0.227919191122055,0.940968573093414,0.235850736498833,0.029978821054101,0.971326768398285,0.290418893098831,0.0508739911019802,0.955546259880066,0.213349238038063,0.140481293201447,0.966823160648346,0.29212361574173,0.188057228922844,0.937709033489227,0.177126869559288,0.326664417982101,0.928394496440887,0.213349238038063,0.140481293201447,0.966823160648346,0.114651814103127,0.834331095218658,0.539209067821503,-0.0948617458343506,0.677053928375244,0.729793846607208,-0.126151546835899,0.814640820026398,0.566079437732697,-0.406927347183228,0.621432244777679,0.66950124502182,-0.126151546835899,0.814640820026398,0.566079437732697,-0.4941665828228,0.400876611471176,0.771425426006317,-0.695945620536804,0.0891267582774162,0.712541878223419,-0.406927347183228,0.621432244777679,0.66950124502182,-0.4941665828228,0.400876611471176,0.771425426006317,0.23486165702343,0.395221382379532,0.888054013252258,0.177126869559288,0.326664417982101,0.928394496440887,0.29212361574173,0.188057228922844,0.937709033489227,0.342121034860611,0.37125638127327,0.86320436000824,0.300942361354828,0.582365870475769,0.755171179771423,0.23486165702343,0.395221382379532,0.888054013252258, +0.173280224204063,0.784994602203369,0.594775021076202,0.300942361354828,0.582365870475769,0.755171179771423,0.270060509443283,0.758142352104187,0.593537986278534,0.125289261341095,0.767785370349884,0.628337502479553,0.114651814103127,0.834331095218658,0.539209067821503,0.270060509443283,0.758142352104187,0.593537986278534,0.235850736498833,0.029978821054101,0.971326768398285,0.282409846782684,-0.111748047173023,0.9527627825737,0.290418893098831,0.0508739911019802,0.955546259880066,-0.695945620536804,0.0891267582774162,0.712541878223419,-0.702136337757111,-0.15756867825985,0.694389343261719,-0.746086776256561,-0.223437413573265,0.627240002155304,-0.746117770671844,-0.182780385017395,0.640233874320984,-0.746086776256561,-0.223437413573265,0.627240002155304,-0.728563725948334,-0.233660325407982,0.643892526626587,-0.799006879329681,-0.108401574194431,0.591470122337341,-0.746117770671844,-0.182780385017395,0.640233874320984,-0.756844580173492,-0.14027439057827,0.638364493846893,-0.799006879329681,-0.108401574194431,0.591470122337341,-0.781458020210266,-0.081707164645195,0.618584811687469,-0.829958140850067,-0.0325051620602608,0.556877553462982,-0.820860683917999,-0.345227986574173,0.454978257417679,-0.814619660377502,-0.375479966402054,0.442051440477371,-0.836845815181732,-0.300623714923859,0.457508832216263,-0.83429217338562,-0.0518967621028423,0.54887443780899,-0.832832932472229,-0.0866648927330971,0.546697795391083,-0.834292232990265,-0.0518974363803864,0.548874318599701,-0.815834522247314,-0.125088587403297,0.564594268798828,-0.832832932472229,-0.0866648927330971,0.546697795391083,-0.831189155578613,-0.132482931017876,0.539974689483643,-0.83429217338562,-0.0518967621028423,0.54887443780899,-0.834292232990265,-0.0518974363803864,0.548874318599701,-0.829958140850067,-0.0325051620602608,0.556877553462982,-0.830185055732727,-0.140271842479706,0.53955203294754,-0.819623053073883,-0.23813858628273,0.521064221858978,-0.831189155578613,-0.132482931017876,0.539974689483643,-0.823475480079651,-0.280983358621597,0.492885738611221, +-0.795192241668701,-0.293361604213715,0.5306676030159,-0.805922329425812,-0.335584789514542,0.487721085548401,-0.823170483112335,-0.310922414064407,0.475097417831421,-0.805922329425812,-0.335584789514542,0.487721085548401,-0.832326352596283,-0.290708839893341,0.471933335065842,-0.828584015369415,-0.151938110589981,0.538853585720062,-0.828672349452972,-0.20328988134861,0.521512389183044,-0.830185055732727,-0.140271842479706,0.53955203294754,-0.832154035568237,-0.214240416884422,0.511488556861877,-0.828672349452972,-0.20328988134861,0.521512389183044,-0.828584015369415,-0.151938110589981,0.538853585720062,-0.83078795671463,-0.232601538300514,0.505655765533447,-0.823475480079651,-0.280983358621597,0.492885738611221,-0.832154035568237,-0.214240416884422,0.511488556861877,-0.830778658390045,-0.291433691978455,0.474207848310471,-0.832326352596283,-0.290708839893341,0.471933335065842,-0.825440883636475,-0.319022089242935,0.465695351362228,-0.80511087179184,-0.402527302503586,0.435623943805695,-0.815653860569,-0.354654490947723,0.457087337970734,-0.825440883636475,-0.319022089242935,0.465695351362228,-0.80511087179184,-0.402527302503586,0.435623943805695,-0.814619660377502,-0.375479966402054,0.442051440477371,-0.815653860569,-0.354654490947723,0.457087337970734,-0.847625195980072,-0.338436543941498,0.408646672964096,-0.871073305606842,-0.279849648475647,0.403627753257751,-0.836845815181732,-0.300623714923859,0.457508832216263,-0.853699505329132,-0.200731500983238,0.480524599552155,-0.893654882907867,-0.195783078670502,0.403794229030609,-0.878174960613251,-0.141201600432396,0.457023859024048,-0.764453053474426,-0.148790150880814,0.627274036407471,-0.878174960613251,-0.141201600432396,0.457023859024048,-0.874464392662048,-0.0631158575415611,0.480966031551361,-0.422390550374985,-0.384741872549057,0.820706844329834,-0.440117299556732,-0.259275048971176,0.859693646430969,-0.740607798099518,-0.173787221312523,0.649074792861938,-0.740607798099518,-0.173787221312523,0.649074792861938,-0.764453053474426,-0.148790150880814,0.627274036407471, +-0.874464392662048,-0.0631158575415611,0.480966031551361,-0.422390550374985,-0.384741872549057,0.820706844329834,-0.178742215037346,-0.433247178792953,0.883373081684113,-0.0469791293144226,-0.360823780298233,0.931449949741364,-0.893654882907867,-0.195783078670502,0.403794229030609,-0.871073305606842,-0.279849648475647,0.403627753257751,-0.897639334201813,-0.170227363705635,0.40652933716774,-0.178742215037346,-0.433247178792953,0.883373081684113,-0.097446009516716,-0.375238299369812,0.921791970729828,-0.0469791293144226,-0.360823780298233,0.931449949741364,-0.00251052970997989,-0.195446833968163,0.980711042881012,0.199232205748558,-0.176230192184448,0.963975787162781,-0.097446009516716,-0.375238299369812,0.921791970729828,-0.246261030435562,-0.122272215783596,0.961459755897522,-0.385106265544891,0.0403490327298641,0.921989738941193,-0.325323820114136,0.0271954145282507,0.945211470127106,-0.246261030435562,-0.122272215783596,0.961459755897522,-0.0951415151357651,-0.0616662576794624,0.993551731109619,-0.0333993695676327,-0.208129301667213,0.977530837059021,-0.293114989995956,0.0762312710285187,0.953033208847046,-0.396495968103409,0.107867866754532,0.911677181720734,-0.213205829262733,0.108822345733643,0.970927834510803,-0.385106265544891,0.0403490327298641,0.921989738941193,-0.396495968103409,0.107867866754532,0.911677181720734,-0.325323820114136,0.0271954145282507,0.945211470127106,-0.293114989995956,0.0762312710285187,0.953033208847046,-0.213205829262733,0.108822345733643,0.970927834510803,-0.0234697591513395,0.0607546269893646,0.997876703739166,0.0794710293412209,-0.00966635067015886,0.9967902302742,-0.140993565320969,0.0102173909544945,0.989957749843597,-0.0234697591513395,0.0607546269893646,0.997876703739166,0.256466329097748,0.024246271699667,0.966248989105225,0.425332844257355,0.140095874667168,0.894128084182739,0.135034561157227,0.0457062907516956,0.989786088466644,0.135034561157227,0.0457062907516956,0.989786088466644,-0.140993565320969,0.0102173909544945,0.989957749843597,0.0794710293412209,-0.00966635067015886,0.9967902302742, +-0.00251052970997989,-0.195446833968163,0.980711042881012,-0.0316389910876751,-0.2207340747118,0.974820673465729,0.129954546689987,-0.064116433262825,0.989444673061371,-0.0316389910876751,-0.2207340747118,0.974820673465729,0.113690003752708,-0.126888811588287,0.985379993915558,0.241225987672806,0.0323146507143974,0.969930768013,0.142305195331573,-0.0422404743731022,0.988921105861664,0.113690003752708,-0.126888811588287,0.985379993915558,-0.0333993695676327,-0.208129301667213,0.977530837059021,0.0647046864032745,-0.264986783266068,0.96207857131958,0.00619217846542597,-0.118456855416298,0.992939829826355,0.0383862853050232,-0.2437863945961,0.969068944454193,0.166944310069084,-0.220820441842079,0.96092027425766,0.0383862853050232,-0.2437863945961,0.969068944454193,0.0404357127845287,-0.136061996221542,0.989874720573425,0.425332844257355,0.140095874667168,0.894128084182739,0.256466329097748,0.024246271699667,0.966248989105225,0.361270755529404,0.132260873913765,0.92303329706192,0.458694487810135,0.166139096021652,0.872924387454987,0.361270755529404,0.132260873913765,0.92303329706192,0.357262551784515,0.237679675221443,0.903256177902222,0.321335434913635,0.140460699796677,0.93649035692215,0.458694487810135,0.166139096021652,0.872924387454987,0.353386253118515,0.295734733343124,0.887501537799835,-0.017038881778717,0.103870369493961,0.994444727897644,0.155769914388657,-0.0566526800394058,0.986167371273041,0.140187084674835,0.166530504822731,0.976019978523254,0.140187084674835,0.166530504822731,0.976019978523254,0.321335434913635,0.140460699796677,0.93649035692215,0.217835068702698,0.278962373733521,0.935268819332123,0.155769914388657,-0.0566526800394058,0.986167371273041,-0.017038881778717,0.103870369493961,0.994444727897644,0.00619217846542597,-0.118456855416298,0.992939829826355,-0.0611234828829765,-0.0539376735687256,0.996671736240387,-0.141630694270134,0.0101165184751153,0.989867806434631,0.0404357127845287,-0.136061996221542,0.989874720573425,-0.140961021184921,-0.0786711946129799,0.986884355545044,-0.3063845038414,-0.075774297118187,0.948887050151825, +-0.295357078313828,-0.00676836771890521,0.955362915992737,-0.339850097894669,-0.130288347601891,0.931411147117615,-0.226490527391434,-0.117226220667362,0.966933310031891,-0.295964300632477,-0.115398913621902,0.948202550411224,-0.3063845038414,-0.075774297118187,0.948887050151825,-0.0967063754796982,-0.168901309370995,0.980877220630646,-0.226490527391434,-0.117226220667362,0.966933310031891,-0.141630694270134,0.0101165184751153,0.989867806434631,-0.220432609319687,0.0859226733446121,0.971610367298126,-0.251651376485825,0.00124196929391474,0.967817068099976,-0.251651376485825,0.00124196929391474,0.967817068099976,-0.220432609319687,0.0859226733446121,0.971610367298126,-0.295357078313828,-0.00676836771890521,0.955362915992737,0.29212361574173,0.188057228922844,0.937709033489227,0.213349238038063,0.140481293201447,0.966823160648346,0.290418893098831,0.0508739911019802,0.955546259880066,-0.0948617458343506,0.677053928375244,0.729793846607208,0.114651814103127,0.834331095218658,0.539209067821503,-0.011271620169282,0.642446875572205,0.76624721288681,-0.0948617458343506,0.677053928375244,0.729793846607208,-0.4941665828228,0.400876611471176,0.771425426006317,-0.126151546835899,0.814640820026398,0.566079437732697,-0.695945620536804,0.0891267582774162,0.712541878223419,-0.4941665828228,0.400876611471176,0.771425426006317,-0.702136337757111,-0.15756867825985,0.694389343261719,0.342121034860611,0.37125638127327,0.86320436000824,0.23486165702343,0.395221382379532,0.888054013252258,0.29212361574173,0.188057228922844,0.937709033489227,0.300942361354828,0.582365870475769,0.755171179771423,0.342121034860611,0.37125638127327,0.86320436000824,0.325209617614746,0.608420252799988,0.723922193050385,0.270060509443283,0.758142352104187,0.593537986278534,0.300942361354828,0.582365870475769,0.755171179771423,0.325209617614746,0.608420252799988,0.723922193050385,0.125289261341095,0.767785370349884,0.628337502479553,-0.011271620169282,0.642446875572205,0.76624721288681,0.114651814103127,0.834331095218658,0.539209067821503,0.258796125650406,0.740000486373901,0.620824992656708, +0.125289261341095,0.767785370349884,0.628337502479553,0.270060509443283,0.758142352104187,0.593537986278534,0.282409846782684,-0.111748047173023,0.9527627825737,0.361224353313446,-0.105485685169697,0.926493227481842,0.290418893098831,0.0508739911019802,0.955546259880066,-0.702136337757111,-0.15756867825985,0.694389343261719,-0.679487705230713,-0.296241998672485,0.671220600605011,-0.746086776256561,-0.223437413573265,0.627240002155304,-0.728563725948334,-0.233660325407982,0.643892526626587,-0.746086776256561,-0.223437413573265,0.627240002155304,-0.679487705230713,-0.296241998672485,0.671220600605011,-0.746117770671844,-0.182780385017395,0.640233874320984,-0.728563725948334,-0.233660325407982,0.643892526626587,-0.739192306995392,-0.165791347622871,0.652769446372986,-0.746117770671844,-0.182780385017395,0.640233874320984,-0.739192306995392,-0.165791347622871,0.652769446372986,-0.756844580173492,-0.14027439057827,0.638364493846893,-0.799006879329681,-0.108401574194431,0.591470122337341,-0.756844580173492,-0.14027439057827,0.638364493846893,-0.781458020210266,-0.081707164645195,0.618584811687469,-0.781458020210266,-0.081707164645195,0.618584811687469,-0.775872230529785,-0.0934301242232323,0.623933553695679,-0.829958140850067,-0.0325051620602608,0.556877553462982,-0.847625195980072,-0.338436543941498,0.408646672964096,-0.836845815181732,-0.300623714923859,0.457508832216263,-0.814619660377502,-0.375479966402054,0.442051440477371,-0.832832932472229,-0.0866648927330971,0.546697795391083,-0.83429217338562,-0.0518967621028423,0.54887443780899,-0.83309805393219,-0.0897516384720802,0.54579496383667,-0.83309805393219,-0.0897516384720802,0.54579496383667,-0.831189155578613,-0.132482931017876,0.539974689483643,-0.832832932472229,-0.0866648927330971,0.546697795391083,-0.833885610103607,-0.055635217577219,0.549125969409943,-0.83429217338562,-0.0518967621028423,0.54887443780899,-0.829958140850067,-0.0325051620602608,0.556877553462982,-0.831189155578613,-0.132482931017876,0.539974689483643,-0.834296822547913,-0.105185851454735,0.54118824005127, +-0.830185055732727,-0.140271842479706,0.53955203294754,-0.823475480079651,-0.280983358621597,0.492885738611221,-0.828378736972809,-0.247428610920906,0.502561092376709,-0.795192241668701,-0.293361604213715,0.5306676030159,-0.795192241668701,-0.293361604213715,0.5306676030159,-0.766654014587402,-0.359145015478134,0.532218277454376,-0.805922329425812,-0.335584789514542,0.487721085548401,-0.786629498004913,-0.301113039255142,0.539022207260132,-0.832326352596283,-0.290708839893341,0.471933335065842,-0.805922329425812,-0.335584789514542,0.487721085548401,-0.828584015369415,-0.151938110589981,0.538853585720062,-0.830185055732727,-0.140271842479706,0.53955203294754,-0.834294855594635,-0.105181477963924,0.54119199514389,-0.828584015369415,-0.151938110589981,0.538853585720062,-0.828673303127289,-0.203286394476891,0.521512269973755,-0.832154035568237,-0.214240416884422,0.511488556861877,-0.828378736972809,-0.247428610920906,0.502561092376709,-0.823475480079651,-0.280983358621597,0.492885738611221,-0.83078795671463,-0.232601538300514,0.505655765533447,-0.832157552242279,-0.231414467096329,0.503945589065552,-0.83078795671463,-0.232601538300514,0.505655765533447,-0.832154035568237,-0.214240416884422,0.511488556861877,-0.825440883636475,-0.319022089242935,0.465695351362228,-0.832326352596283,-0.290708839893341,0.471933335065842,-0.787312924861908,-0.278825521469116,0.549904108047485,-0.760657608509064,-0.350558996200562,0.546359181404114,-0.80511087179184,-0.402527302503586,0.435623943805695,-0.825440883636475,-0.319022089242935,0.465695351362228,-0.814619660377502,-0.375479966402054,0.442051440477371,-0.80511087179184,-0.402527302503586,0.435623943805695,-0.848116815090179,-0.374147832393646,0.375114947557449,-0.847625195980072,-0.338436543941498,0.408646672964096,-0.848116815090179,-0.374147832393646,0.375114947557449,-0.871073305606842,-0.279849648475647,0.403627753257751,-0.878174960613251,-0.141201600432396,0.457023859024048,-0.893654882907867,-0.195783078670502,0.403794229030609,-0.908415138721466,-0.0962201878428459,0.406845778226852, +-0.878174960613251,-0.141201600432396,0.457023859024048,-0.908415138721466,-0.0962201878428459,0.406845778226852,-0.874464392662048,-0.0631158575415611,0.480966031551361,-0.608489453792572,-0.191731154918671,0.770051658153534,-0.422390550374985,-0.384741872549057,0.820706844329834,-0.740607798099518,-0.173787221312523,0.649074792861938,-0.874464392662048,-0.0631158575415611,0.480966031551361,-0.839544594287872,0.00168733368627727,0.543287992477417,-0.740607798099518,-0.173787221312523,0.649074792861938,-0.257595211267471,-0.3176489174366,0.912547945976257,-0.178742215037346,-0.433247178792953,0.883373081684113,-0.422390550374985,-0.384741872549057,0.820706844329834,-0.897639334201813,-0.170227363705635,0.40652933716774,-0.871073305606842,-0.279849648475647,0.403627753257751,-0.871530413627625,-0.309887439012527,0.380005806684494,-0.893654882907867,-0.195783078670502,0.403794229030609,-0.897639334201813,-0.170227363705635,0.40652933716774,-0.908415138721466,-0.0962201878428459,0.406845778226852,-0.155963897705078,-0.380558907985687,0.911509811878204,-0.097446009516716,-0.375238299369812,0.921791970729828,-0.178742215037346,-0.433247178792953,0.883373081684113,-0.00251052970997989,-0.195446833968163,0.980711042881012,-0.097446009516716,-0.375238299369812,0.921791970729828,-0.225815400481224,-0.340446650981903,0.912744998931885,-0.295140117406845,0.0392885655164719,0.954645812511444,-0.385106265544891,0.0403490327298641,0.921989738941193,-0.246261030435562,-0.122272215783596,0.961459755897522,-0.246261030435562,-0.122272215783596,0.961459755897522,-0.0333993695676327,-0.208129301667213,0.977530837059021,-0.225815400481224,-0.340446650981903,0.912744998931885,-0.213205829262733,0.108822345733643,0.970927834510803,-0.396495968103409,0.107867866754532,0.911677181720734,-0.326790809631348,0.190435588359833,0.925711631774902,-0.385106265544891,0.0403490327298641,0.921989738941193,-0.350418090820313,0.194547459483147,0.916165053844452,-0.396495968103409,0.107867866754532,0.911677181720734,0.0806540101766586,0.0704495832324028,0.994249284267426, +-0.0234697591513395,0.0607546269893646,0.997876703739166,-0.213205829262733,0.108822345733643,0.970927834510803,0.0794710293412209,-0.00966635067015886,0.9967902302742,-0.0234697591513395,0.0607546269893646,0.997876703739166,0.175966873764992,0.0217771455645561,0.984155118465424,0.256466329097748,0.024246271699667,0.966248989105225,0.135034561157227,0.0457062907516956,0.989786088466644,0.0794710293412209,-0.00966635067015886,0.9967902302742,-0.00251052970997989,-0.195446833968163,0.980711042881012,-0.225815400481224,-0.340446650981903,0.912744998931885,-0.0316389910876751,-0.2207340747118,0.974820673465729,-0.0316389910876751,-0.2207340747118,0.974820673465729,-0.0333993695676327,-0.208129301667213,0.977530837059021,0.113690003752708,-0.126888811588287,0.985379993915558,0.00619217846542597,-0.118456855416298,0.992939829826355,-0.0611234828829765,-0.0539376735687256,0.996671736240387,0.0383862853050232,-0.2437863945961,0.969068944454193,-0.0611234828829765,-0.0539376735687256,0.996671736240387,0.0404357127845287,-0.136061996221542,0.989874720573425,0.0383862853050232,-0.2437863945961,0.969068944454193,0.361270755529404,0.132260873913765,0.92303329706192,0.256466329097748,0.024246271699667,0.966248989105225,0.261734902858734,-0.0114431036636233,0.9650719165802,0.295863956212997,0.0439518950879574,0.954218327999115,0.357262551784515,0.237679675221443,0.903256177902222,0.361270755529404,0.132260873913765,0.92303329706192,0.458694487810135,0.166139096021652,0.872924387454987,0.357262551784515,0.237679675221443,0.903256177902222,0.353386253118515,0.295734733343124,0.887501537799835,0.217835068702698,0.278962373733521,0.935268819332123,0.321335434913635,0.140460699796677,0.93649035692215,0.353386253118515,0.295734733343124,0.887501537799835,-0.017038881778717,0.103870369493961,0.994444727897644,0.140187084674835,0.166530504822731,0.976019978523254,0.0551361329853535,0.293952792882919,0.954228281974792,0.217835068702698,0.278962373733521,0.935268819332123,0.0551361329853535,0.293952792882919,0.954228281974792,0.140187084674835,0.166530504822731,0.976019978523254, +-0.017038881778717,0.103870369493961,0.994444727897644,-0.0611234828829765,-0.0539376735687256,0.996671736240387,0.00619217846542597,-0.118456855416298,0.992939829826355,-0.0611234828829765,-0.0539376735687256,0.996671736240387,-0.155405029654503,0.144466429948807,0.977230072021484,-0.141630694270134,0.0101165184751153,0.989867806434631,-0.3063845038414,-0.075774297118187,0.948887050151825,-0.140961021184921,-0.0786711946129799,0.986884355545044,-0.0967063754796982,-0.168901309370995,0.980877220630646,-0.295357078313828,-0.00676836771890521,0.955362915992737,-0.171142712235451,-0.0369378924369812,0.984553515911102,-0.140961021184921,-0.0786711946129799,0.986884355545044,-0.155405029654503,0.144466429948807,0.977230072021484,-0.220432609319687,0.0859226733446121,0.971610367298126,-0.141630694270134,0.0101165184751153,0.989867806434631,-0.295357078313828,-0.00676836771890521,0.955362915992737,-0.220432609319687,0.0859226733446121,0.971610367298126,-0.171142712235451,-0.0369378924369812,0.984553515911102,0.290418893098831,0.0508739911019802,0.955546259880066,0.345624148845673,0.0336072444915771,0.937770962715149,0.29212361574173,0.188057228922844,0.937709033489227,-0.0948617458343506,0.677053928375244,0.729793846607208,-0.011271620169282,0.642446875572205,0.76624721288681,-0.464308798313141,0.0998914390802383,0.88002210855484,-0.4941665828228,0.400876611471176,0.771425426006317,-0.0948617458343506,0.677053928375244,0.729793846607208,-0.464308798313141,0.0998914390802383,0.88002210855484,-0.4941665828228,0.400876611471176,0.771425426006317,-0.464308798313141,0.0998914390802383,0.88002210855484,-0.702136337757111,-0.15756867825985,0.694389343261719,0.29212361574173,0.188057228922844,0.937709033489227,0.345349073410034,0.209656730294228,0.914755702018738,0.342121034860611,0.37125638127327,0.86320436000824,0.342121034860611,0.37125638127327,0.86320436000824,0.339701473712921,0.428171932697296,0.83741956949234,0.325209617614746,0.608420252799988,0.723922193050385,0.325209617614746,0.608420252799988,0.723922193050385,0.258796125650406,0.740000486373901,0.620824992656708, +0.270060509443283,0.758142352104187,0.593537986278534,0.125289261341095,0.767785370349884,0.628337502479553,-0.23334738612175,0.341908246278763,0.910300850868225,-0.011271620169282,0.642446875572205,0.76624721288681,0.258796125650406,0.740000486373901,0.620824992656708,0.0194037482142448,0.58470219373703,0.811015903949738,0.125289261341095,0.767785370349884,0.628337502479553,0.345624148845673,0.0336072444915771,0.937770962715149,0.290418893098831,0.0508739911019802,0.955546259880066,0.361224353313446,-0.105485685169697,0.926493227481842,-0.679487705230713,-0.296241998672485,0.671220600605011,-0.702136337757111,-0.15756867825985,0.694389343261719,-0.464308798313141,0.0998914390802383,0.88002210855484,-0.675507247447968,-0.269232273101807,0.686442852020264,-0.728563725948334,-0.233660325407982,0.643892526626587,-0.679487705230713,-0.296241998672485,0.671220600605011,-0.728563725948334,-0.233660325407982,0.643892526626587,-0.675507247447968,-0.269232273101807,0.686442852020264,-0.739192306995392,-0.165791347622871,0.652769446372986,-0.775872230529785,-0.0934301242232323,0.623933553695679,-0.756844580173492,-0.14027439057827,0.638364493846893,-0.739192306995392,-0.165791347622871,0.652769446372986,-0.756844580173492,-0.14027439057827,0.638364493846893,-0.775872230529785,-0.0934301242232323,0.623933553695679,-0.781458020210266,-0.081707164645195,0.618584811687469,-0.775872230529785,-0.0934301242232323,0.623933553695679,-0.814217865467072,-0.0867237821221352,0.574045360088348,-0.829958140850067,-0.0325051620602608,0.556877553462982,-0.847625195980072,-0.338436543941498,0.408646672964096,-0.814619660377502,-0.375479966402054,0.442051440477371,-0.848116815090179,-0.374147832393646,0.375114947557449,-0.833885610103607,-0.055635217577219,0.549125969409943,-0.83309805393219,-0.0897516384720802,0.54579496383667,-0.83429217338562,-0.0518967621028423,0.54887443780899,-0.831189155578613,-0.132482931017876,0.539974689483643,-0.83309805393219,-0.0897516384720802,0.54579496383667,-0.834296822547913,-0.105185851454735,0.54118824005127, +-0.834876894950867,-0.0462953113019466,0.548486053943634,-0.833885610103607,-0.055635217577219,0.549125969409943,-0.829958140850067,-0.0325051620602608,0.556877553462982,-0.834294676780701,-0.105184271931648,0.541191756725311,-0.830185055732727,-0.140271842479706,0.53955203294754,-0.834296822547913,-0.105185851454735,0.54118824005127,-0.828378736972809,-0.247428610920906,0.502561092376709,-0.81096738576889,-0.230772510170937,0.537657678127289,-0.795192241668701,-0.293361604213715,0.5306676030159,-0.795192241668701,-0.293361604213715,0.5306676030159,-0.728903472423553,-0.296345502138138,0.617153882980347,-0.766654014587402,-0.359145015478134,0.532218277454376,-0.786629498004913,-0.301113039255142,0.539022207260132,-0.805922329425812,-0.335584789514542,0.487721085548401,-0.766654014587402,-0.359145015478134,0.532218277454376,-0.832326352596283,-0.290708839893341,0.471933335065842,-0.786629498004913,-0.301113039255142,0.539022207260132,-0.787312924861908,-0.278825521469116,0.549904108047485,-0.834294855594635,-0.105181477963924,0.54119199514389,-0.830185055732727,-0.140271842479706,0.53955203294754,-0.834294676780701,-0.105184271931648,0.541191756725311,-0.834298133850098,-0.105186805129051,0.541185915470123,-0.828584015369415,-0.151938110589981,0.538853585720062,-0.834294855594635,-0.105181477963924,0.54119199514389,-0.828673303127289,-0.203286394476891,0.521512269973755,-0.828584015369415,-0.151938110589981,0.538853585720062,-0.830492794513702,-0.137932226061821,0.539681613445282,-0.832154035568237,-0.214240416884422,0.511488556861877,-0.828673303127289,-0.203286394476891,0.521512269973755,-0.832157552242279,-0.231414467096329,0.503945589065552,-0.83078795671463,-0.232601538300514,0.505655765533447,-0.82828164100647,-0.243282660841942,0.504740417003632,-0.828378736972809,-0.247428610920906,0.502561092376709,-0.828033983707428,-0.234967976808548,0.509067416191101,-0.83078795671463,-0.232601538300514,0.505655765533447,-0.832157552242279,-0.231414467096329,0.503945589065552,-0.787312924861908,-0.278825521469116,0.549904108047485, +-0.760657608509064,-0.350558996200562,0.546359181404114,-0.825440883636475,-0.319022089242935,0.465695351362228,-0.741219937801361,-0.421827018260956,0.52216362953186,-0.80511087179184,-0.402527302503586,0.435623943805695,-0.760657608509064,-0.350558996200562,0.546359181404114,-0.807399451732636,-0.397370219230652,0.436122536659241,-0.848116815090179,-0.374147832393646,0.375114947557449,-0.80511087179184,-0.402527302503586,0.435623943805695,-0.871530413627625,-0.309887439012527,0.380005806684494,-0.871073305606842,-0.279849648475647,0.403627753257751,-0.848116815090179,-0.374147832393646,0.375114947557449,-0.874464392662048,-0.0631158575415611,0.480966031551361,-0.908415138721466,-0.0962201878428459,0.406845778226852,-0.904523313045502,-0.00128865905571729,0.42642205953598,-0.257595211267471,-0.3176489174366,0.912547945976257,-0.422390550374985,-0.384741872549057,0.820706844329834,-0.608489453792572,-0.191731154918671,0.770051658153534,-0.740607798099518,-0.173787221312523,0.649074792861938,-0.839544594287872,0.00168733368627727,0.543287992477417,-0.608489453792572,-0.191731154918671,0.770051658153534,-0.874464392662048,-0.0631158575415611,0.480966031551361,-0.904523313045502,-0.00128865905571729,0.42642205953598,-0.839544594287872,0.00168733368627727,0.543287992477417,-0.0235366337001324,-0.273163884878159,0.961679458618164,-0.178742215037346,-0.433247178792953,0.883373081684113,-0.257595211267471,-0.3176489174366,0.912547945976257,-0.840591728687286,-0.284989029169083,0.460637241601944,-0.897639334201813,-0.170227363705635,0.40652933716774,-0.871530413627625,-0.309887439012527,0.380005806684494,-0.908415138721466,-0.0962201878428459,0.406845778226852,-0.897639334201813,-0.170227363705635,0.40652933716774,-0.90630966424942,-0.0203148312866688,0.422125637531281,-0.225815400481224,-0.340446650981903,0.912744998931885,-0.097446009516716,-0.375238299369812,0.921791970729828,-0.155963897705078,-0.380558907985687,0.911509811878204,-0.155963897705078,-0.380558907985687,0.911509811878204,-0.178742215037346,-0.433247178792953,0.883373081684113, +-0.0235366337001324,-0.273163884878159,0.961679458618164,-0.295140117406845,0.0392885655164719,0.954645812511444,-0.350418090820313,0.194547459483147,0.916165053844452,-0.385106265544891,0.0403490327298641,0.921989738941193,-0.246261030435562,-0.122272215783596,0.961459755897522,-0.247164532542229,-0.170539319515228,0.953847944736481,-0.295140117406845,0.0392885655164719,0.954645812511444,-0.0333993695676327,-0.208129301667213,0.977530837059021,-0.0316389910876751,-0.2207340747118,0.974820673465729,-0.225815400481224,-0.340446650981903,0.912744998931885,-0.246261030435562,-0.122272215783596,0.961459755897522,-0.225815400481224,-0.340446650981903,0.912744998931885,-0.247164532542229,-0.170539319515228,0.953847944736481,-0.326790809631348,0.190435588359833,0.925711631774902,-0.396495968103409,0.107867866754532,0.911677181720734,-0.350418090820313,0.194547459483147,0.916165053844452,-0.213205829262733,0.108822345733643,0.970927834510803,-0.326790809631348,0.190435588359833,0.925711631774902,-0.10142569988966,0.130874589085579,0.986197054386139,-0.0234697591513395,0.0607546269893646,0.997876703739166,0.0806540101766586,0.0704495832324028,0.994249284267426,0.175966873764992,0.0217771455645561,0.984155118465424,-0.213205829262733,0.108822345733643,0.970927834510803,-0.10142569988966,0.130874589085579,0.986197054386139,0.0806540101766586,0.0704495832324028,0.994249284267426,0.256466329097748,0.024246271699667,0.966248989105225,0.0794710293412209,-0.00966635067015886,0.9967902302742,0.175966873764992,0.0217771455645561,0.984155118465424,0.261734902858734,-0.0114431036636233,0.9650719165802,0.256466329097748,0.024246271699667,0.966248989105225,0.255437970161438,0.0111616710200906,0.9667609333992,0.295863956212997,0.0439518950879574,0.954218327999115,0.361270755529404,0.132260873913765,0.92303329706192,0.261734902858734,-0.0114431036636233,0.9650719165802,0.295863956212997,0.0439518950879574,0.954218327999115,0.264777094125748,0.0371403619647026,0.963594138622284,0.357262551784515,0.237679675221443,0.903256177902222,0.357262551784515,0.237679675221443,0.903256177902222, +0.141892090439796,0.269623994827271,0.952454447746277,0.353386253118515,0.295734733343124,0.887501537799835,0.217835068702698,0.278962373733521,0.935268819332123,0.353386253118515,0.295734733343124,0.887501537799835,0.141892090439796,0.269623994827271,0.952454447746277,-0.0641909390687943,0.254517495632172,0.96493536233902,-0.017038881778717,0.103870369493961,0.994444727897644,0.0551361329853535,0.293952792882919,0.954228281974792,0.217835068702698,0.278962373733521,0.935268819332123,0.141892090439796,0.269623994827271,0.952454447746277,0.0551361329853535,0.293952792882919,0.954228281974792,-0.155405029654503,0.144466429948807,0.977230072021484,-0.0611234828829765,-0.0539376735687256,0.996671736240387,-0.017038881778717,0.103870369493961,0.994444727897644,0.0931530594825745,-0.173983111977577,0.980332732200623,-0.0967063754796982,-0.168901309370995,0.980877220630646,-0.140961021184921,-0.0786711946129799,0.986884355545044,-0.140961021184921,-0.0786711946129799,0.986884355545044,-0.171142712235451,-0.0369378924369812,0.984553515911102,-0.0323194898664951,-0.149572864174843,0.988222301006317,-0.155405029654503,0.144466429948807,0.977230072021484,-0.0845852345228195,0.182911604642868,0.979483842849731,-0.220432609319687,0.0859226733446121,0.971610367298126,-0.171142712235451,-0.0369378924369812,0.984553515911102,-0.220432609319687,0.0859226733446121,0.971610367298126,-0.0429119318723679,0.0139887146651745,0.99898087978363,0.345349073410034,0.209656730294228,0.914755702018738,0.29212361574173,0.188057228922844,0.937709033489227,0.345624148845673,0.0336072444915771,0.937770962715149,-0.464308798313141,0.0998914390802383,0.88002210855484,-0.011271620169282,0.642446875572205,0.76624721288681,-0.23334738612175,0.341908246278763,0.910300850868225,0.342121034860611,0.37125638127327,0.86320436000824,0.345349073410034,0.209656730294228,0.914755702018738,0.339701473712921,0.428171932697296,0.83741956949234,0.314835429191589,0.617192447185516,0.721076965332031,0.325209617614746,0.608420252799988,0.723922193050385,0.339701473712921,0.428171932697296,0.83741956949234, +0.258796125650406,0.740000486373901,0.620824992656708,0.325209617614746,0.608420252799988,0.723922193050385,0.218698620796204,0.675657451152802,0.704029738903046,0.0194037482142448,0.58470219373703,0.811015903949738,-0.23334738612175,0.341908246278763,0.910300850868225,0.125289261341095,0.767785370349884,0.628337502479553,0.258796125650406,0.740000486373901,0.620824992656708,0.218698620796204,0.675657451152802,0.704029738903046,0.0194037482142448,0.58470219373703,0.811015903949738,0.345624148845673,0.0336072444915771,0.937770962715149,0.361224353313446,-0.105485685169697,0.926493227481842,0.390386551618576,-0.045778825879097,0.919512093067169,-0.679487705230713,-0.296241998672485,0.671220600605011,-0.464308798313141,0.0998914390802383,0.88002210855484,-0.514543354511261,-0.292595475912094,0.805998086929321,-0.675507247447968,-0.269232273101807,0.686442852020264,-0.679487705230713,-0.296241998672485,0.671220600605011,-0.595521450042725,-0.397923320531845,0.697861790657043,-0.675507247447968,-0.269232273101807,0.686442852020264,-0.702161908149719,-0.18866591155529,0.686566591262817,-0.739192306995392,-0.165791347622871,0.652769446372986,-0.758701026439667,-0.138536155223846,0.636537790298462,-0.775872230529785,-0.0934301242232323,0.623933553695679,-0.739192306995392,-0.165791347622871,0.652769446372986,-0.814217865467072,-0.0867237821221352,0.574045360088348,-0.775872230529785,-0.0934301242232323,0.623933553695679,-0.758701026439667,-0.138536155223846,0.636537790298462,-0.829958140850067,-0.0325051620602608,0.556877553462982,-0.814217865467072,-0.0867237821221352,0.574045360088348,-0.835568308830261,-0.0819094106554985,0.54324609041214,-0.833522081375122,-0.0948996320366859,0.544274568557739,-0.83309805393219,-0.0897516384720802,0.54579496383667,-0.833885610103607,-0.055635217577219,0.549125969409943,-0.833522081375122,-0.0948996320366859,0.544274568557739,-0.834296822547913,-0.105185851454735,0.54118824005127,-0.83309805393219,-0.0897516384720802,0.54579496383667,-0.834876894950867,-0.0462953113019466,0.548486053943634, +-0.832832098007202,-0.0866648703813553,0.546698927879334,-0.833885610103607,-0.055635217577219,0.549125969409943,-0.835568308830261,-0.0819094106554985,0.54324609041214,-0.834876894950867,-0.0462953113019466,0.548486053943634,-0.829958140850067,-0.0325051620602608,0.556877553462982,-0.834294676780701,-0.105184271931648,0.541191756725311,-0.834296822547913,-0.105185851454735,0.54118824005127,-0.833522081375122,-0.0948996320366859,0.544274568557739,-0.81096738576889,-0.230772510170937,0.537657678127289,-0.828378736972809,-0.247428610920906,0.502561092376709,-0.82828164100647,-0.243282660841942,0.504740417003632,-0.728903472423553,-0.296345502138138,0.617153882980347,-0.795192241668701,-0.293361604213715,0.5306676030159,-0.81096738576889,-0.230772510170937,0.537657678127289,-0.728903472423553,-0.296345502138138,0.617153882980347,-0.715626120567322,-0.337344199419022,0.611619234085083,-0.766654014587402,-0.359145015478134,0.532218277454376,-0.786629498004913,-0.301113039255142,0.539022207260132,-0.766654014587402,-0.359145015478134,0.532218277454376,-0.715626120567322,-0.337344199419022,0.611619234085083,-0.787312924861908,-0.278825521469116,0.549904108047485,-0.786629498004913,-0.301113039255142,0.539022207260132,-0.687593400478363,-0.287507146596909,0.66674941778183,-0.834296345710754,-0.105185247957706,0.541189014911652,-0.834294855594635,-0.105181477963924,0.54119199514389,-0.834294676780701,-0.105184271931648,0.541191756725311,-0.830492794513702,-0.137932226061821,0.539681613445282,-0.828584015369415,-0.151938110589981,0.538853585720062,-0.834298133850098,-0.105186805129051,0.541185915470123,-0.834296345710754,-0.105185247957706,0.541189014911652,-0.834298133850098,-0.105186805129051,0.541185915470123,-0.834294855594635,-0.105181477963924,0.54119199514389,-0.837155342102051,-0.16553570330143,0.521314442157745,-0.828673303127289,-0.203286394476891,0.521512269973755,-0.830492794513702,-0.137932226061821,0.539681613445282,-0.837155342102051,-0.16553570330143,0.521314442157745,-0.832157552242279,-0.231414467096329,0.503945589065552, +-0.828673303127289,-0.203286394476891,0.521512269973755,-0.82828164100647,-0.243282660841942,0.504740417003632,-0.83078795671463,-0.232601538300514,0.505655765533447,-0.828033983707428,-0.234967976808548,0.509067416191101,-0.788246214389801,-0.189307823777199,0.585517108440399,-0.828033983707428,-0.234967976808548,0.509067416191101,-0.832157552242279,-0.231414467096329,0.503945589065552,-0.687593400478363,-0.287507146596909,0.66674941778183,-0.760657608509064,-0.350558996200562,0.546359181404114,-0.787312924861908,-0.278825521469116,0.549904108047485,-0.807399451732636,-0.397370219230652,0.436122536659241,-0.80511087179184,-0.402527302503586,0.435623943805695,-0.741219937801361,-0.421827018260956,0.52216362953186,-0.642198145389557,-0.400802403688431,0.653405666351318,-0.741219937801361,-0.421827018260956,0.52216362953186,-0.760657608509064,-0.350558996200562,0.546359181404114,-0.871530413627625,-0.309887439012527,0.380005806684494,-0.848116815090179,-0.374147832393646,0.375114947557449,-0.807399451732636,-0.397370219230652,0.436122536659241,-0.904523313045502,-0.00128865905571729,0.42642205953598,-0.908415138721466,-0.0962201878428459,0.406845778226852,-0.90630966424942,-0.0203148312866688,0.422125637531281,-0.382798045873642,-0.111290358006954,0.917104125022888,-0.257595211267471,-0.3176489174366,0.912547945976257,-0.608489453792572,-0.191731154918671,0.770051658153534,-0.608489453792572,-0.191731154918671,0.770051658153534,-0.839544594287872,0.00168733368627727,0.543287992477417,-0.726461708545685,0.0142742376774549,0.687058627605438,-0.839544594287872,0.00168733368627727,0.543287992477417,-0.904523313045502,-0.00128865905571729,0.42642205953598,-0.899621307849884,0.0676669925451279,0.431396037340164,-0.0235366337001324,-0.273163884878159,0.961679458618164,-0.257595211267471,-0.3176489174366,0.912547945976257,-0.0701776146888733,-0.148271054029465,0.986453592777252,-0.86310201883316,-0.132731795310974,0.487275123596191,-0.897639334201813,-0.170227363705635,0.40652933716774,-0.840591728687286,-0.284989029169083,0.460637241601944, +-0.840591728687286,-0.284989029169083,0.460637241601944,-0.871530413627625,-0.309887439012527,0.380005806684494,-0.807399451732636,-0.397370219230652,0.436122536659241,-0.90630966424942,-0.0203148312866688,0.422125637531281,-0.897639334201813,-0.170227363705635,0.40652933716774,-0.882111668586731,0.0287177506834269,0.470164030790329,-0.225815400481224,-0.340446650981903,0.912744998931885,-0.155963897705078,-0.380558907985687,0.911509811878204,-0.19716614484787,-0.292160093784332,0.935824751853943,-0.155963897705078,-0.380558907985687,0.911509811878204,-0.0235366337001324,-0.273163884878159,0.961679458618164,0.00230746250599623,-0.194611310958862,0.980877697467804,-0.257097452878952,0.199196204543114,0.945632934570313,-0.350418090820313,0.194547459483147,0.916165053844452,-0.295140117406845,0.0392885655164719,0.954645812511444,-0.295140117406845,0.0392885655164719,0.954645812511444,-0.247164532542229,-0.170539319515228,0.953847944736481,-0.119287498295307,0.0371639393270016,0.992163896560669,-0.247164532542229,-0.170539319515228,0.953847944736481,-0.225815400481224,-0.340446650981903,0.912744998931885,-0.19716614484787,-0.292160093784332,0.935824751853943,-0.326790809631348,0.190435588359833,0.925711631774902,-0.350418090820313,0.194547459483147,0.916165053844452,-0.314410865306854,0.256148368120193,0.914075314998627,-0.10142569988966,0.130874589085579,0.986197054386139,-0.326790809631348,0.190435588359833,0.925711631774902,-0.240075647830963,0.227970108389854,0.943606495857239,0.0806540101766586,0.0704495832324028,0.994249284267426,0.255437970161438,0.0111616710200906,0.9667609333992,0.175966873764992,0.0217771455645561,0.984155118465424,0.0806540101766586,0.0704495832324028,0.994249284267426,-0.10142569988966,0.130874589085579,0.986197054386139,0.166547030210495,0.0851986184716225,0.982345759868622,0.256466329097748,0.024246271699667,0.966248989105225,0.175966873764992,0.0217771455645561,0.984155118465424,0.255437970161438,0.0111616710200906,0.9667609333992,0.295863956212997,0.0439518950879574,0.954218327999115,0.261734902858734,-0.0114431036636233,0.9650719165802, +0.255437970161438,0.0111616710200906,0.9667609333992,0.295863956212997,0.0439518950879574,0.954218327999115,0.325282394886017,0.0094844913110137,0.945569276809692,0.264777094125748,0.0371403619647026,0.963594138622284,0.357262551784515,0.237679675221443,0.903256177902222,0.264777094125748,0.0371403619647026,0.963594138622284,0.141892090439796,0.269623994827271,0.952454447746277,-0.155405029654503,0.144466429948807,0.977230072021484,-0.017038881778717,0.103870369493961,0.994444727897644,-0.0641909390687943,0.254517495632172,0.96493536233902,-0.0641909390687943,0.254517495632172,0.96493536233902,0.0551361329853535,0.293952792882919,0.954228281974792,0.0373438037931919,0.281801640987396,0.958745658397675,0.141892090439796,0.269623994827271,0.952454447746277,0.00841090176254511,0.275603145360947,0.961234629154205,0.0551361329853535,0.293952792882919,0.954228281974792,-0.140961021184921,-0.0786711946129799,0.986884355545044,-0.0323194898664951,-0.149572864174843,0.988222301006317,0.0931530594825745,-0.173983111977577,0.980332732200623,-0.0349026434123516,-0.124397993087769,0.991618275642395,-0.0323194898664951,-0.149572864174843,0.988222301006317,-0.171142712235451,-0.0369378924369812,0.984553515911102,-0.0641909390687943,0.254517495632172,0.96493536233902,-0.0845852345228195,0.182911604642868,0.979483842849731,-0.155405029654503,0.144466429948807,0.977230072021484,-0.0429119318723679,0.0139887146651745,0.99898087978363,-0.220432609319687,0.0859226733446121,0.971610367298126,-0.0845852345228195,0.182911604642868,0.979483842849731,-0.171142712235451,-0.0369378924369812,0.984553515911102,-0.0429119318723679,0.0139887146651745,0.99898087978363,-0.0349026434123516,-0.124397993087769,0.991618275642395,0.348101675510406,0.0731238201260567,0.934600472450256,0.345349073410034,0.209656730294228,0.914755702018738,0.345624148845673,0.0336072444915771,0.937770962715149,-0.514543354511261,-0.292595475912094,0.805998086929321,-0.464308798313141,0.0998914390802383,0.88002210855484,-0.23334738612175,0.341908246278763,0.910300850868225, +0.345349073410034,0.209656730294228,0.914755702018738,0.339432567358017,0.204613417387009,0.918106079101563,0.339701473712921,0.428171932697296,0.83741956949234,0.314835429191589,0.617192447185516,0.721076965332031,0.218698620796204,0.675657451152802,0.704029738903046,0.325209617614746,0.608420252799988,0.723922193050385,0.256976157426834,0.538812279701233,0.802274525165558,0.314835429191589,0.617192447185516,0.721076965332031,0.339701473712921,0.428171932697296,0.83741956949234,0.0194037482142448,0.58470219373703,0.811015903949738,-0.367138534784317,-0.0246010180562735,0.929840803146362,-0.23334738612175,0.341908246278763,0.910300850868225,0.0194037482142448,0.58470219373703,0.811015903949738,0.218698620796204,0.675657451152802,0.704029738903046,0.0741535797715187,0.490441173315048,0.868313610553741,0.361224353313446,-0.105485685169697,0.926493227481842,0.353288650512695,-0.363729119300842,0.861909568309784,0.390386551618576,-0.045778825879097,0.919512093067169,0.390386551618576,-0.045778825879097,0.919512093067169,0.368037462234497,-0.108105413615704,0.923505008220673,0.345624148845673,0.0336072444915771,0.937770962715149,-0.679487705230713,-0.296241998672485,0.671220600605011,-0.514543354511261,-0.292595475912094,0.805998086929321,-0.595521450042725,-0.397923320531845,0.697861790657043,-0.595521450042725,-0.397923320531845,0.697861790657043,-0.516842305660248,-0.442344337701797,0.732942938804626,-0.675507247447968,-0.269232273101807,0.686442852020264,-0.675507247447968,-0.269232273101807,0.686442852020264,-0.563275933265686,-0.283142358064651,0.77624124288559,-0.702161908149719,-0.18866591155529,0.686566591262817,-0.758701026439667,-0.138536155223846,0.636537790298462,-0.739192306995392,-0.165791347622871,0.652769446372986,-0.702161908149719,-0.18866591155529,0.686566591262817,-0.814217865467072,-0.0867237821221352,0.574045360088348,-0.758701026439667,-0.138536155223846,0.636537790298462,-0.785303592681885,-0.154125824570656,0.599619328975677,-0.835568308830261,-0.0819094106554985,0.54324609041214,-0.814217865467072,-0.0867237821221352,0.574045360088348, +-0.828989684581757,-0.112420491874218,0.547848165035248,-0.832832098007202,-0.0866648703813553,0.546698927879334,-0.833522081375122,-0.0948996320366859,0.544274568557739,-0.833885610103607,-0.055635217577219,0.549125969409943,-0.834876894950867,-0.0462953113019466,0.548486053943634,-0.835568308830261,-0.0819094106554985,0.54324609041214,-0.832832098007202,-0.0866648703813553,0.546698927879334,-0.83429479598999,-0.105180487036705,0.541192293167114,-0.834294676780701,-0.105184271931648,0.541191756725311,-0.833522081375122,-0.0948996320366859,0.544274568557739,-0.788246214389801,-0.189307823777199,0.585517108440399,-0.81096738576889,-0.230772510170937,0.537657678127289,-0.82828164100647,-0.243282660841942,0.504740417003632,-0.788246214389801,-0.189307823777199,0.585517108440399,-0.728903472423553,-0.296345502138138,0.617153882980347,-0.81096738576889,-0.230772510170937,0.537657678127289,-0.728903472423553,-0.296345502138138,0.617153882980347,-0.614774405956268,-0.354444175958633,0.704571902751923,-0.715626120567322,-0.337344199419022,0.611619234085083,-0.687593400478363,-0.287507146596909,0.66674941778183,-0.786629498004913,-0.301113039255142,0.539022207260132,-0.715626120567322,-0.337344199419022,0.611619234085083,-0.83429479598999,-0.105180487036705,0.541192293167114,-0.834296345710754,-0.105185247957706,0.541189014911652,-0.834294676780701,-0.105184271931648,0.541191756725311,-0.834298133850098,-0.105186805129051,0.541185915470123,-0.835568308830261,-0.0819094106554985,0.54324609041214,-0.830492794513702,-0.137932226061821,0.539681613445282,-0.834296345710754,-0.105185247957706,0.541189014911652,-0.835568308830261,-0.0819094106554985,0.54324609041214,-0.834298133850098,-0.105186805129051,0.541185915470123,-0.837155342102051,-0.16553570330143,0.521314442157745,-0.830492794513702,-0.137932226061821,0.539681613445282,-0.835568308830261,-0.0819094106554985,0.54324609041214,-0.788246214389801,-0.189307823777199,0.585517108440399,-0.832157552242279,-0.231414467096329,0.503945589065552,-0.837155342102051,-0.16553570330143,0.521314442157745, +-0.788246214389801,-0.189307823777199,0.585517108440399,-0.82828164100647,-0.243282660841942,0.504740417003632,-0.828033983707428,-0.234967976808548,0.509067416191101,-0.687593400478363,-0.287507146596909,0.66674941778183,-0.642198145389557,-0.400802403688431,0.653405666351318,-0.760657608509064,-0.350558996200562,0.546359181404114,-0.731210231781006,-0.405097454786301,0.548842072486877,-0.807399451732636,-0.397370219230652,0.436122536659241,-0.741219937801361,-0.421827018260956,0.52216362953186,-0.642198145389557,-0.400802403688431,0.653405666351318,-0.731210231781006,-0.405097454786301,0.548842072486877,-0.741219937801361,-0.421827018260956,0.52216362953186,-0.904523313045502,-0.00128865905571729,0.42642205953598,-0.90630966424942,-0.0203148312866688,0.422125637531281,-0.899621307849884,0.0676669925451279,0.431396037340164,-0.382798045873642,-0.111290358006954,0.917104125022888,-0.0701776146888733,-0.148271054029465,0.986453592777252,-0.257595211267471,-0.3176489174366,0.912547945976257,-0.382798045873642,-0.111290358006954,0.917104125022888,-0.608489453792572,-0.191731154918671,0.770051658153534,-0.726461708545685,0.0142742376774549,0.687058627605438,-0.726461708545685,0.0142742376774549,0.687058627605438,-0.839544594287872,0.00168733368627727,0.543287992477417,-0.872055232524872,0.10458717495203,0.478101551532745,-0.872055232524872,0.10458717495203,0.478101551532745,-0.839544594287872,0.00168733368627727,0.543287992477417,-0.899621307849884,0.0676669925451279,0.431396037340164,-0.0701776146888733,-0.148271054029465,0.986453592777252,0.040844764560461,-0.105703577399254,0.993558466434479,-0.0235366337001324,-0.273163884878159,0.961679458618164,-0.86310201883316,-0.132731795310974,0.487275123596191,-0.882111668586731,0.0287177506834269,0.470164030790329,-0.897639334201813,-0.170227363705635,0.40652933716774,-0.731093943119049,-0.299623876810074,0.612965762615204,-0.86310201883316,-0.132731795310974,0.487275123596191,-0.840591728687286,-0.284989029169083,0.460637241601944,-0.840591728687286,-0.284989029169083,0.460637241601944, +-0.807399451732636,-0.397370219230652,0.436122536659241,-0.731210231781006,-0.405097454786301,0.548842072486877,-0.872726559638977,0.130334660410881,0.470490217208862,-0.90630966424942,-0.0203148312866688,0.422125637531281,-0.882111668586731,0.0287177506834269,0.470164030790329,0.00230746250599623,-0.194611310958862,0.980877697467804,-0.19716614484787,-0.292160093784332,0.935824751853943,-0.155963897705078,-0.380558907985687,0.911509811878204,-0.0235366337001324,-0.273163884878159,0.961679458618164,0.040844764560461,-0.105703577399254,0.993558466434479,0.00230746250599623,-0.194611310958862,0.980877697467804,-0.257097452878952,0.199196204543114,0.945632934570313,-0.271898984909058,0.288408160209656,0.918091297149658,-0.350418090820313,0.194547459483147,0.916165053844452,-0.295140117406845,0.0392885655164719,0.954645812511444,-0.119287498295307,0.0371639393270016,0.992163896560669,-0.257097452878952,0.199196204543114,0.945632934570313,-0.082728810608387,-0.107395127415657,0.990768432617188,-0.119287498295307,0.0371639393270016,0.992163896560669,-0.247164532542229,-0.170539319515228,0.953847944736481,-0.247164532542229,-0.170539319515228,0.953847944736481,-0.19716614484787,-0.292160093784332,0.935824751853943,-0.082728810608387,-0.107395127415657,0.990768432617188,-0.350418090820313,0.194547459483147,0.916165053844452,-0.271898984909058,0.288408160209656,0.918091297149658,-0.314410865306854,0.256148368120193,0.914075314998627,-0.240075647830963,0.227970108389854,0.943606495857239,-0.326790809631348,0.190435588359833,0.925711631774902,-0.314410865306854,0.256148368120193,0.914075314998627,-0.10142569988966,0.130874589085579,0.986197054386139,-0.240075647830963,0.227970108389854,0.943606495857239,0.0231080409139395,0.191585093736649,0.98120391368866,0.0806540101766586,0.0704495832324028,0.994249284267426,0.166547030210495,0.0851986184716225,0.982345759868622,0.255437970161438,0.0111616710200906,0.9667609333992,0.166547030210495,0.0851986184716225,0.982345759868622,-0.10142569988966,0.130874589085579,0.986197054386139, +0.0231080409139395,0.191585093736649,0.98120391368866,0.295863956212997,0.0439518950879574,0.954218327999115,0.255437970161438,0.0111616710200906,0.9667609333992,0.325282394886017,0.0094844913110137,0.945569276809692,0.264777094125748,0.0371403619647026,0.963594138622284,0.325282394886017,0.0094844913110137,0.945569276809692,0.245804384350777,0.00950873550027609,0.969272792339325,0.264777094125748,0.0371403619647026,0.963594138622284,0.0116201778873801,0.0318341441452503,0.999425530433655,0.141892090439796,0.269623994827271,0.952454447746277,0.0373438037931919,0.281801640987396,0.958745658397675,0.0551361329853535,0.293952792882919,0.954228281974792,0.00841090176254511,0.275603145360947,0.961234629154205,-0.0845852345228195,0.182911604642868,0.979483842849731,-0.0641909390687943,0.254517495632172,0.96493536233902,0.0373438037931919,0.281801640987396,0.958745658397675,0.141892090439796,0.269623994827271,0.952454447746277,-0.0864608138799667,0.102909207344055,0.990925908088684,0.00841090176254511,0.275603145360947,0.961234629154205,0.0931530594825745,-0.173983111977577,0.980332732200623,-0.0323194898664951,-0.149572864174843,0.988222301006317,0.0790323987603188,-0.132623955607414,0.988010466098785,-0.0349026434123516,-0.124397993087769,0.991618275642395,0.0289385095238686,-0.142718940973282,0.98934006690979,-0.0323194898664951,-0.149572864174843,0.988222301006317,-0.0429119318723679,0.0139887146651745,0.99898087978363,-0.0845852345228195,0.182911604642868,0.979483842849731,0.155403897166252,0.140237912535667,0.977846026420593,-0.0349026434123516,-0.124397993087769,0.991618275642395,-0.0429119318723679,0.0139887146651745,0.99898087978363,0.153409376740456,-0.0428806021809578,0.987231850624084,0.345349073410034,0.209656730294228,0.914755702018738,0.348101675510406,0.0731238201260567,0.934600472450256,0.339432567358017,0.204613417387009,0.918106079101563,0.348101675510406,0.0731238201260567,0.934600472450256,0.345624148845673,0.0336072444915771,0.937770962715149,0.330818802118301,0.00386521266773343,0.943686366081238,-0.514543354511261,-0.292595475912094,0.805998086929321, +-0.23334738612175,0.341908246278763,0.910300850868225,-0.367138534784317,-0.0246010180562735,0.929840803146362,0.311844974756241,0.253272861242294,0.915754020214081,0.339701473712921,0.428171932697296,0.83741956949234,0.339432567358017,0.204613417387009,0.918106079101563,0.218698620796204,0.675657451152802,0.704029738903046,0.314835429191589,0.617192447185516,0.721076965332031,0.197001159191132,0.542958617210388,0.816324889659882,0.256976157426834,0.538812279701233,0.802274525165558,0.197001159191132,0.542958617210388,0.816324889659882,0.314835429191589,0.617192447185516,0.721076965332031,0.299879461526871,0.482208728790283,0.823132395744324,0.256976157426834,0.538812279701233,0.802274525165558,0.339701473712921,0.428171932697296,0.83741956949234,-0.23119843006134,-0.0584687255322933,0.971148073673248,-0.367138534784317,-0.0246010180562735,0.929840803146362,0.0194037482142448,0.58470219373703,0.811015903949738,0.218698620796204,0.675657451152802,0.704029738903046,-0.029831575229764,0.298790127038956,0.953852415084839,0.0741535797715187,0.490441173315048,0.868313610553741,0.0194037482142448,0.58470219373703,0.811015903949738,0.0741535797715187,0.490441173315048,0.868313610553741,-0.23119843006134,-0.0584687255322933,0.971148073673248,0.390386551618576,-0.045778825879097,0.919512093067169,0.353288650512695,-0.363729119300842,0.861909568309784,0.368037462234497,-0.108105413615704,0.923505008220673,0.345624148845673,0.0336072444915771,0.937770962715149,0.368037462234497,-0.108105413615704,0.923505008220673,0.316503047943115,-0.0431359708309174,0.947610139846802,-0.474770665168762,-0.433703005313873,0.765829205513,-0.595521450042725,-0.397923320531845,0.697861790657043,-0.514543354511261,-0.292595475912094,0.805998086929321,-0.595521450042725,-0.397923320531845,0.697861790657043,-0.474770665168762,-0.433703005313873,0.765829205513,-0.516842305660248,-0.442344337701797,0.732942938804626,-0.563275933265686,-0.283142358064651,0.77624124288559,-0.675507247447968,-0.269232273101807,0.686442852020264,-0.516842305660248,-0.442344337701797,0.732942938804626, +-0.739016175270081,-0.168271437287331,0.652333974838257,-0.702161908149719,-0.18866591155529,0.686566591262817,-0.563275933265686,-0.283142358064651,0.77624124288559,-0.785303592681885,-0.154125824570656,0.599619328975677,-0.758701026439667,-0.138536155223846,0.636537790298462,-0.702161908149719,-0.18866591155529,0.686566591262817,-0.785303592681885,-0.154125824570656,0.599619328975677,-0.828989684581757,-0.112420491874218,0.547848165035248,-0.814217865467072,-0.0867237821221352,0.574045360088348,-0.835568308830261,-0.0819094106554985,0.54324609041214,-0.828989684581757,-0.112420491874218,0.547848165035248,-0.837155342102051,-0.16553570330143,0.521314442157745,-0.832832098007202,-0.0866648703813553,0.546698927879334,-0.83429479598999,-0.105180487036705,0.541192293167114,-0.833522081375122,-0.0948996320366859,0.544274568557739,-0.832832098007202,-0.0866648703813553,0.546698927879334,-0.835568308830261,-0.0819094106554985,0.54324609041214,-0.83429479598999,-0.105180487036705,0.541192293167114,-0.670564353466034,-0.257506430149078,0.69572526216507,-0.728903472423553,-0.296345502138138,0.617153882980347,-0.788246214389801,-0.189307823777199,0.585517108440399,-0.670564353466034,-0.257506430149078,0.69572526216507,-0.614774405956268,-0.354444175958633,0.704571902751923,-0.728903472423553,-0.296345502138138,0.617153882980347,-0.614774405956268,-0.354444175958633,0.704571902751923,-0.614542543888092,-0.303032487630844,0.728360235691071,-0.715626120567322,-0.337344199419022,0.611619234085083,-0.715626120567322,-0.337344199419022,0.611619234085083,-0.614542543888092,-0.303032487630844,0.728360235691071,-0.687593400478363,-0.287507146596909,0.66674941778183,-0.83429479598999,-0.105180487036705,0.541192293167114,-0.835568308830261,-0.0819094106554985,0.54324609041214,-0.834296345710754,-0.105185247957706,0.541189014911652,-0.788246214389801,-0.189307823777199,0.585517108440399,-0.837155342102051,-0.16553570330143,0.521314442157745,-0.828989684581757,-0.112420491874218,0.547848165035248,-0.687593400478363,-0.287507146596909,0.66674941778183, +-0.544327735900879,-0.351293385028839,0.761774301528931,-0.642198145389557,-0.400802403688431,0.653405666351318,-0.642198145389557,-0.400802403688431,0.653405666351318,-0.611404597759247,-0.412387728691101,0.675366997718811,-0.731210231781006,-0.405097454786301,0.548842072486877,-0.872726559638977,0.130334660410881,0.470490217208862,-0.899621307849884,0.0676669925451279,0.431396037340164,-0.90630966424942,-0.0203148312866688,0.422125637531281,-0.382798045873642,-0.111290358006954,0.917104125022888,-0.163771867752075,-0.046034000813961,0.985423505306244,-0.0701776146888733,-0.148271054029465,0.986453592777252,-0.546998798847198,0.0910764336585999,0.832164168357849,-0.382798045873642,-0.111290358006954,0.917104125022888,-0.726461708545685,0.0142742376774549,0.687058627605438,-0.810148179531097,0.110347591340542,0.57574588060379,-0.726461708545685,0.0142742376774549,0.687058627605438,-0.872055232524872,0.10458717495203,0.478101551532745,-0.872726559638977,0.130334660410881,0.470490217208862,-0.872055232524872,0.10458717495203,0.478101551532745,-0.899621307849884,0.0676669925451279,0.431396037340164,-0.0701776146888733,-0.148271054029465,0.986453592777252,-0.163771867752075,-0.046034000813961,0.985423505306244,0.040844764560461,-0.105703577399254,0.993558466434479,-0.882111668586731,0.0287177506834269,0.470164030790329,-0.86310201883316,-0.132731795310974,0.487275123596191,-0.850709855556488,0.00375630683265626,0.525622010231018,-0.757779479026794,-0.122000575065613,0.641003847122192,-0.86310201883316,-0.132731795310974,0.487275123596191,-0.731093943119049,-0.299623876810074,0.612965762615204,-0.731093943119049,-0.299623876810074,0.612965762615204,-0.840591728687286,-0.284989029169083,0.460637241601944,-0.731210231781006,-0.405097454786301,0.548842072486877,-0.844881951808929,0.178671419620514,0.504232943058014,-0.872726559638977,0.130334660410881,0.470490217208862,-0.882111668586731,0.0287177506834269,0.470164030790329,-0.082728810608387,-0.107395127415657,0.990768432617188,-0.19716614484787,-0.292160093784332,0.935824751853943, +0.00230746250599623,-0.194611310958862,0.980877697467804,0.00230746250599623,-0.194611310958862,0.980877697467804,0.040844764560461,-0.105703577399254,0.993558466434479,0.0577900931239128,-0.0536722801625729,0.996884882450104,-0.271898984909058,0.288408160209656,0.918091297149658,-0.257097452878952,0.199196204543114,0.945632934570313,-0.293582201004028,0.275208920240402,0.915461361408234,-0.171587005257607,0.117550827562809,0.978130638599396,-0.257097452878952,0.199196204543114,0.945632934570313,-0.119287498295307,0.0371639393270016,0.992163896560669,-0.082728810608387,-0.107395127415657,0.990768432617188,0.0577900931239128,-0.0536722801625729,0.996884882450104,-0.119287498295307,0.0371639393270016,0.992163896560669,-0.249598264694214,0.322196930646896,0.913175642490387,-0.314410865306854,0.256148368120193,0.914075314998627,-0.271898984909058,0.288408160209656,0.918091297149658,-0.240075647830963,0.227970108389854,0.943606495857239,-0.314410865306854,0.256148368120193,0.914075314998627,-0.249598264694214,0.322196930646896,0.913175642490387,-0.175418630242348,0.272577196359634,0.946007311344147,0.0231080409139395,0.191585093736649,0.98120391368866,-0.240075647830963,0.227970108389854,0.943606495857239,0.166547030210495,0.0851986184716225,0.982345759868622,0.22576005756855,0.109542436897755,0.968004524707794,0.255437970161438,0.0111616710200906,0.9667609333992,0.166547030210495,0.0851986184716225,0.982345759868622,0.0231080409139395,0.191585093736649,0.98120391368866,0.26573920249939,0.183240294456482,0.946470081806183,0.282691359519959,0.0592185705900192,0.957381129264832,0.325282394886017,0.0094844913110137,0.945569276809692,0.255437970161438,0.0111616710200906,0.9667609333992,0.245804384350777,0.00950873550027609,0.969272792339325,0.325282394886017,0.0094844913110137,0.945569276809692,0.274680644273758,0.171310946345329,0.946151673793793,-0.0402381718158722,-0.0378856770694256,0.998471558094025,0.264777094125748,0.0371403619647026,0.963594138622284,0.245804384350777,0.00950873550027609,0.969272792339325,0.264777094125748,0.0371403619647026,0.963594138622284, +-0.0402381718158722,-0.0378856770694256,0.998471558094025,0.0116201778873801,0.0318341441452503,0.999425530433655,0.0116201778873801,0.0318341441452503,0.999425530433655,-0.0864608138799667,0.102909207344055,0.990925908088684,0.141892090439796,0.269623994827271,0.952454447746277,0.0640028044581413,0.191854327917099,0.9793341755867,0.0373438037931919,0.281801640987396,0.958745658397675,0.00841090176254511,0.275603145360947,0.961234629154205,0.0373438037931919,0.281801640987396,0.958745658397675,0.155403897166252,0.140237912535667,0.977846026420593,-0.0845852345228195,0.182911604642868,0.979483842849731,0.0640028044581413,0.191854327917099,0.9793341755867,0.00841090176254511,0.275603145360947,0.961234629154205,-0.0864608138799667,0.102909207344055,0.990925908088684,0.0790323987603188,-0.132623955607414,0.988010466098785,-0.0323194898664951,-0.149572864174843,0.988222301006317,0.0289385095238686,-0.142718940973282,0.98934006690979,0.0289385095238686,-0.142718940973282,0.98934006690979,-0.0349026434123516,-0.124397993087769,0.991618275642395,0.153409376740456,-0.0428806021809578,0.987231850624084,0.155403897166252,0.140237912535667,0.977846026420593,0.153409376740456,-0.0428806021809578,0.987231850624084,-0.0429119318723679,0.0139887146651745,0.99898087978363,0.348101675510406,0.0731238201260567,0.934600472450256,0.315026342868805,0.0811562836170197,0.945606648921967,0.339432567358017,0.204613417387009,0.918106079101563,0.330818802118301,0.00386521266773343,0.943686366081238,0.345624148845673,0.0336072444915771,0.937770962715149,0.316503047943115,-0.0431359708309174,0.947610139846802,0.330818802118301,0.00386521266773343,0.943686366081238,0.306882530450821,0.0207295641303062,0.951521575450897,0.348101675510406,0.0731238201260567,0.934600472450256,-0.367138534784317,-0.0246010180562735,0.929840803146362,-0.474770665168762,-0.433703005313873,0.765829205513,-0.514543354511261,-0.292595475912094,0.805998086929321,0.299879461526871,0.482208728790283,0.823132395744324,0.339701473712921,0.428171932697296,0.83741956949234,0.311844974756241,0.253272861242294,0.915754020214081, +0.311844974756241,0.253272861242294,0.915754020214081,0.339432567358017,0.204613417387009,0.918106079101563,0.315026342868805,0.0811562836170197,0.945606648921967,-0.029831575229764,0.298790127038956,0.953852415084839,0.218698620796204,0.675657451152802,0.704029738903046,0.197001159191132,0.542958617210388,0.816324889659882,0.256976157426834,0.538812279701233,0.802274525165558,0.0452983155846596,0.280518293380737,0.958779156208038,0.197001159191132,0.542958617210388,0.816324889659882,0.256976157426834,0.538812279701233,0.802274525165558,0.299879461526871,0.482208728790283,0.823132395744324,0.217617809772491,0.410790383815765,0.885377645492554,-0.23119843006134,-0.0584687255322933,0.971148073673248,-0.474770665168762,-0.433703005313873,0.765829205513,-0.367138534784317,-0.0246010180562735,0.929840803146362,-0.029831575229764,0.298790127038956,0.953852415084839,-0.23119843006134,-0.0584687255322933,0.971148073673248,0.0741535797715187,0.490441173315048,0.868313610553741,0.302004158496857,-0.574054956436157,0.761087536811829,0.368037462234497,-0.108105413615704,0.923505008220673,0.353288650512695,-0.363729119300842,0.861909568309784,0.277099609375,-0.362266838550568,0.889931678771973,0.316503047943115,-0.0431359708309174,0.947610139846802,0.368037462234497,-0.108105413615704,0.923505008220673,-0.3775275349617,-0.502535462379456,0.777773022651672,-0.516842305660248,-0.442344337701797,0.732942938804626,-0.474770665168762,-0.433703005313873,0.765829205513,-0.563275933265686,-0.283142358064651,0.77624124288559,-0.516842305660248,-0.442344337701797,0.732942938804626,-0.405032515525818,-0.473313689231873,0.782254874706268,-0.785303592681885,-0.154125824570656,0.599619328975677,-0.702161908149719,-0.18866591155529,0.686566591262817,-0.739016175270081,-0.168271437287331,0.652333974838257,-0.613590776920319,-0.184753149747849,0.767705976963043,-0.739016175270081,-0.168271437287331,0.652333974838257,-0.563275933265686,-0.283142358064651,0.77624124288559,-0.785303592681885,-0.154125824570656,0.599619328975677,-0.739016175270081,-0.168271437287331,0.652333974838257, +-0.828989684581757,-0.112420491874218,0.547848165035248,-0.670564353466034,-0.257506430149078,0.69572526216507,-0.788246214389801,-0.189307823777199,0.585517108440399,-0.66752678155899,-0.161179915070534,0.726931154727936,-0.614774405956268,-0.354444175958633,0.704571902751923,-0.670564353466034,-0.257506430149078,0.69572526216507,-0.584030032157898,-0.242542564868927,0.774649500846863,-0.614542543888092,-0.303032487630844,0.728360235691071,-0.614774405956268,-0.354444175958633,0.704571902751923,-0.515070021152496,-0.332558065652847,0.790004968643188,-0.58588308095932,-0.259748488664627,0.767640233039856,-0.687593400478363,-0.287507146596909,0.66674941778183,-0.614542543888092,-0.303032487630844,0.728360235691071,-0.739016175270081,-0.168271437287331,0.652333974838257,-0.788246214389801,-0.189307823777199,0.585517108440399,-0.828989684581757,-0.112420491874218,0.547848165035248,-0.687593400478363,-0.287507146596909,0.66674941778183,-0.58588308095932,-0.259748488664627,0.767640233039856,-0.544327735900879,-0.351293385028839,0.761774301528931,-0.642198145389557,-0.400802403688431,0.653405666351318,-0.544327735900879,-0.351293385028839,0.761774301528931,-0.519602477550507,-0.427895992994308,0.739539086818695,-0.519602477550507,-0.427895992994308,0.739539086818695,-0.611404597759247,-0.412387728691101,0.675366997718811,-0.642198145389557,-0.400802403688431,0.653405666351318,-0.731210231781006,-0.405097454786301,0.548842072486877,-0.611404597759247,-0.412387728691101,0.675366997718811,-0.731093943119049,-0.299623876810074,0.612965762615204,-0.382798045873642,-0.111290358006954,0.917104125022888,-0.546998798847198,0.0910764336585999,0.832164168357849,-0.163771867752075,-0.046034000813961,0.985423505306244,-0.546998798847198,0.0910764336585999,0.832164168357849,-0.726461708545685,0.0142742376774549,0.687058627605438,-0.810148179531097,0.110347591340542,0.57574588060379,-0.866900444030762,0.15913550555706,0.47239750623703,-0.810148179531097,0.110347591340542,0.57574588060379,-0.872055232524872,0.10458717495203,0.478101551532745, +-0.872726559638977,0.130334660410881,0.470490217208862,-0.847534477710724,0.220260724425316,0.482877224683762,-0.872055232524872,0.10458717495203,0.478101551532745,-0.27339118719101,0.060657937079668,0.959988415241241,0.040844764560461,-0.105703577399254,0.993558466434479,-0.163771867752075,-0.046034000813961,0.985423505306244,-0.86310201883316,-0.132731795310974,0.487275123596191,-0.757779479026794,-0.122000575065613,0.641003847122192,-0.850709855556488,0.00375630683265626,0.525622010231018,-0.882111668586731,0.0287177506834269,0.470164030790329,-0.850709855556488,0.00375630683265626,0.525622010231018,-0.835689961910248,0.141228675842285,0.530732095241547,-0.614895045757294,-0.28420615196228,0.735615909099579,-0.757779479026794,-0.122000575065613,0.641003847122192,-0.731093943119049,-0.299623876810074,0.612965762615204,-0.872726559638977,0.130334660410881,0.470490217208862,-0.844881951808929,0.178671419620514,0.504232943058014,-0.812917709350586,0.275775462388992,0.512944936752319,-0.844881951808929,0.178671419620514,0.504232943058014,-0.882111668586731,0.0287177506834269,0.470164030790329,-0.835689961910248,0.141228675842285,0.530732095241547,-0.082728810608387,-0.107395127415657,0.990768432617188,0.00230746250599623,-0.194611310958862,0.980877697467804,0.0577900931239128,-0.0536722801625729,0.996884882450104,0.040844764560461,-0.105703577399254,0.993558466434479,0.0604284964501858,-0.0833671912550926,0.994684994220734,0.0577900931239128,-0.0536722801625729,0.996884882450104,-0.171587005257607,0.117550827562809,0.978130638599396,-0.293582201004028,0.275208920240402,0.915461361408234,-0.257097452878952,0.199196204543114,0.945632934570313,-0.285839140415192,0.35606461763382,0.889670610427856,-0.271898984909058,0.288408160209656,0.918091297149658,-0.293582201004028,0.275208920240402,0.915461361408234,-0.0178426448255777,0.00390160526148975,0.999833166599274,-0.171587005257607,0.117550827562809,0.978130638599396,-0.119287498295307,0.0371639393270016,0.992163896560669,-0.0178426448255777,0.00390160526148975,0.999833166599274, +-0.119287498295307,0.0371639393270016,0.992163896560669,0.0577900931239128,-0.0536722801625729,0.996884882450104,-0.249598264694214,0.322196930646896,0.913175642490387,-0.271898984909058,0.288408160209656,0.918091297149658,-0.285839140415192,0.35606461763382,0.889670610427856,-0.240075647830963,0.227970108389854,0.943606495857239,-0.249598264694214,0.322196930646896,0.913175642490387,-0.175418630242348,0.272577196359634,0.946007311344147,-0.175418630242348,0.272577196359634,0.946007311344147,0.0819288417696953,0.279268205165863,0.95671147108078,0.0231080409139395,0.191585093736649,0.98120391368866,0.22576005756855,0.109542436897755,0.968004524707794,0.166547030210495,0.0851986184716225,0.982345759868622,0.26573920249939,0.183240294456482,0.946470081806183,0.22576005756855,0.109542436897755,0.968004524707794,0.282691359519959,0.0592185705900192,0.957381129264832,0.255437970161438,0.0111616710200906,0.9667609333992,0.0819288417696953,0.279268205165863,0.95671147108078,0.26573920249939,0.183240294456482,0.946470081806183,0.0231080409139395,0.191585093736649,0.98120391368866,0.282691359519959,0.0592185705900192,0.957381129264832,0.281884551048279,0.128238409757614,0.950839579105377,0.325282394886017,0.0094844913110137,0.945569276809692,0.325282394886017,0.0094844913110137,0.945569276809692,0.281884551048279,0.128238409757614,0.950839579105377,0.274680644273758,0.171310946345329,0.946151673793793,-0.0844032615423203,0.148407429456711,0.985317826271057,0.245804384350777,0.00950873550027609,0.969272792339325,0.274680644273758,0.171310946345329,0.946151673793793,-0.0844032615423203,0.148407429456711,0.985317826271057,-0.0402381718158722,-0.0378856770694256,0.998471558094025,0.245804384350777,0.00950873550027609,0.969272792339325,-0.190558359026909,-0.0541414171457291,0.980181694030762,0.0116201778873801,0.0318341441452503,0.999425530433655,-0.0402381718158722,-0.0378856770694256,0.998471558094025,0.0116201778873801,0.0318341441452503,0.999425530433655,-0.190558359026909,-0.0541414171457291,0.980181694030762,-0.0864608138799667,0.102909207344055,0.990925908088684, +0.0640028044581413,0.191854327917099,0.9793341755867,0.155403897166252,0.140237912535667,0.977846026420593,0.0373438037931919,0.281801640987396,0.958745658397675,0.0640028044581413,0.191854327917099,0.9793341755867,-0.0864608138799667,0.102909207344055,0.990925908088684,-0.177837505936623,0.0507919862866402,0.9827481508255,0.0790323987603188,-0.132623955607414,0.988010466098785,0.0289385095238686,-0.142718940973282,0.98934006690979,0.000299491046462208,-0.0144837042316794,0.999895036220551,0.0289385095238686,-0.142718940973282,0.98934006690979,0.153409376740456,-0.0428806021809578,0.987231850624084,0.156244426965714,0.045113530009985,0.98668760061264,0.155403897166252,0.140237912535667,0.977846026420593,0.274679213762283,0.10904535651207,0.955332577228546,0.153409376740456,-0.0428806021809578,0.987231850624084,0.348101675510406,0.0731238201260567,0.934600472450256,0.306882530450821,0.0207295641303062,0.951521575450897,0.315026342868805,0.0811562836170197,0.945606648921967,0.305764406919479,-0.0739916115999222,0.949227690696716,0.330818802118301,0.00386521266773343,0.943686366081238,0.316503047943115,-0.0431359708309174,0.947610139846802,0.276518255472183,-0.16714258491993,0.946361899375916,0.306882530450821,0.0207295641303062,0.951521575450897,0.330818802118301,0.00386521266773343,0.943686366081238,0.311844974756241,0.253272861242294,0.915754020214081,0.310118585824966,0.345167636871338,0.885824859142303,0.299879461526871,0.482208728790283,0.823132395744324,0.315026342868805,0.0811562836170197,0.945606648921967,0.29873588681221,0.0950129926204681,0.949594259262085,0.311844974756241,0.253272861242294,0.915754020214081,-0.029831575229764,0.298790127038956,0.953852415084839,0.197001159191132,0.542958617210388,0.816324889659882,-0.208346024155617,-0.0328470319509506,0.977503418922424,0.00852910056710243,0.0883650034666061,0.996051490306854,0.0452983155846596,0.280518293380737,0.958779156208038,0.256976157426834,0.538812279701233,0.802274525165558,0.197001159191132,0.542958617210388,0.816324889659882,0.0452983155846596,0.280518293380737,0.958779156208038, +-0.208346024155617,-0.0328470319509506,0.977503418922424,0.299879461526871,0.482208728790283,0.823132395744324,0.236056387424469,0.317885637283325,0.918273389339447,0.217617809772491,0.410790383815765,0.885377645492554,0.256976157426834,0.538812279701233,0.802274525165558,0.217617809772491,0.410790383815765,0.885377645492554,0.00852910056710243,0.0883650034666061,0.996051490306854,-0.23119843006134,-0.0584687255322933,0.971148073673248,-0.3775275349617,-0.502535462379456,0.777773022651672,-0.474770665168762,-0.433703005313873,0.765829205513,-0.23119843006134,-0.0584687255322933,0.971148073673248,-0.029831575229764,0.298790127038956,0.953852415084839,-0.342580884695053,-0.356272399425507,0.869314789772034,0.277099609375,-0.362266838550568,0.889931678771973,0.368037462234497,-0.108105413615704,0.923505008220673,0.302004158496857,-0.574054956436157,0.761087536811829,0.277099609375,-0.362266838550568,0.889931678771973,0.29061895608902,-0.229689627885818,0.928861260414124,0.316503047943115,-0.0431359708309174,0.947610139846802,-0.516842305660248,-0.442344337701797,0.732942938804626,-0.3775275349617,-0.502535462379456,0.777773022651672,-0.405032515525818,-0.473313689231873,0.782254874706268,-0.405032515525818,-0.473313689231873,0.782254874706268,-0.36033833026886,-0.330161958932877,0.872438669204712,-0.563275933265686,-0.283142358064651,0.77624124288559,-0.788246214389801,-0.189307823777199,0.585517108440399,-0.739016175270081,-0.168271437287331,0.652333974838257,-0.613590776920319,-0.184753149747849,0.767705976963043,-0.613590776920319,-0.184753149747849,0.767705976963043,-0.563275933265686,-0.283142358064651,0.77624124288559,-0.39089161157608,-0.23914922773838,0.888825833797455,-0.788246214389801,-0.189307823777199,0.585517108440399,-0.613590776920319,-0.184753149747849,0.767705976963043,-0.66752678155899,-0.161179915070534,0.726931154727936,-0.670564353466034,-0.257506430149078,0.69572526216507,-0.66752678155899,-0.161179915070534,0.726931154727936,-0.584030032157898,-0.242542564868927,0.774649500846863,-0.584030032157898,-0.242542564868927,0.774649500846863, +-0.515070021152496,-0.332558065652847,0.790004968643188,-0.614774405956268,-0.354444175958633,0.704571902751923,-0.515070021152496,-0.332558065652847,0.790004968643188,-0.517318904399872,-0.271538138389587,0.811571300029755,-0.614542543888092,-0.303032487630844,0.728360235691071,-0.58588308095932,-0.259748488664627,0.767640233039856,-0.614542543888092,-0.303032487630844,0.728360235691071,-0.517318904399872,-0.271538138389587,0.811571300029755,-0.480898290872574,-0.309650957584381,0.820276141166687,-0.544327735900879,-0.351293385028839,0.761774301528931,-0.58588308095932,-0.259748488664627,0.767640233039856,-0.448306918144226,-0.404077589511871,0.797334313392639,-0.519602477550507,-0.427895992994308,0.739539086818695,-0.544327735900879,-0.351293385028839,0.761774301528931,-0.507237911224365,-0.409857898950577,0.758106887340546,-0.611404597759247,-0.412387728691101,0.675366997718811,-0.519602477550507,-0.427895992994308,0.739539086818695,-0.731093943119049,-0.299623876810074,0.612965762615204,-0.611404597759247,-0.412387728691101,0.675366997718811,-0.507237911224365,-0.409857898950577,0.758106887340546,-0.27339118719101,0.060657937079668,0.959988415241241,-0.163771867752075,-0.046034000813961,0.985423505306244,-0.546998798847198,0.0910764336585999,0.832164168357849,-0.794561862945557,0.253921836614609,0.551538705825806,-0.546998798847198,0.0910764336585999,0.832164168357849,-0.810148179531097,0.110347591340542,0.57574588060379,-0.810148179531097,0.110347591340542,0.57574588060379,-0.866900444030762,0.15913550555706,0.47239750623703,-0.794561862945557,0.253921836614609,0.551538705825806,-0.866900444030762,0.15913550555706,0.47239750623703,-0.872055232524872,0.10458717495203,0.478101551532745,-0.847534477710724,0.220260724425316,0.482877224683762,-0.812917709350586,0.275775462388992,0.512944936752319,-0.847534477710724,0.220260724425316,0.482877224683762,-0.872726559638977,0.130334660410881,0.470490217208862,0.040844764560461,-0.105703577399254,0.993558466434479,-0.27339118719101,0.060657937079668,0.959988415241241,-0.0716846510767937,-0.125787794589996,0.989463806152344, +-0.850709855556488,0.00375630683265626,0.525622010231018,-0.757779479026794,-0.122000575065613,0.641003847122192,-0.750884175300598,0.0874963328242302,0.654612243175507,-0.835689961910248,0.141228675842285,0.530732095241547,-0.850709855556488,0.00375630683265626,0.525622010231018,-0.750884175300598,0.0874963328242302,0.654612243175507,-0.567163169384003,-0.147161141037941,0.810351371765137,-0.757779479026794,-0.122000575065613,0.641003847122192,-0.614895045757294,-0.28420615196228,0.735615909099579,-0.507237911224365,-0.409857898950577,0.758106887340546,-0.614895045757294,-0.28420615196228,0.735615909099579,-0.731093943119049,-0.299623876810074,0.612965762615204,-0.812917709350586,0.275775462388992,0.512944936752319,-0.844881951808929,0.178671419620514,0.504232943058014,-0.771921515464783,0.300421535968781,0.560253441333771,-0.835689961910248,0.141228675842285,0.530732095241547,-0.815106928348541,0.217329561710358,0.536999464035034,-0.844881951808929,0.178671419620514,0.504232943058014,0.040844764560461,-0.105703577399254,0.993558466434479,-0.0716846510767937,-0.125787794589996,0.989463806152344,0.0604284964501858,-0.0833671912550926,0.994684994220734,-0.0178426448255777,0.00390160526148975,0.999833166599274,0.0577900931239128,-0.0536722801625729,0.996884882450104,0.0604284964501858,-0.0833671912550926,0.994684994220734,-0.293582201004028,0.275208920240402,0.915461361408234,-0.171587005257607,0.117550827562809,0.978130638599396,-0.191774770617485,0.246372789144516,0.950011968612671,-0.285839140415192,0.35606461763382,0.889670610427856,-0.293582201004028,0.275208920240402,0.915461361408234,-0.280762284994125,0.367747992277145,0.886529088020325,-0.171587005257607,0.117550827562809,0.978130638599396,-0.0178426448255777,0.00390160526148975,0.999833166599274,-0.0698349103331566,-0.0789294242858887,0.99443107843399,-0.249598264694214,0.322196930646896,0.913175642490387,-0.285839140415192,0.35606461763382,0.889670610427856,-0.287240982055664,0.426977604627609,0.857427895069122,-0.225824803113937,0.378002643585205,0.897840261459351, +-0.175418630242348,0.272577196359634,0.946007311344147,-0.249598264694214,0.322196930646896,0.913175642490387,-0.175418630242348,0.272577196359634,0.946007311344147,-0.140961483120918,0.337814599275589,0.930597126483917,0.0819288417696953,0.279268205165863,0.95671147108078,0.22576005756855,0.109542436897755,0.968004524707794,0.26573920249939,0.183240294456482,0.946470081806183,0.212998434901237,0.199246034026146,0.956521093845367,0.282691359519959,0.0592185705900192,0.957381129264832,0.22576005756855,0.109542436897755,0.968004524707794,0.281884551048279,0.128238409757614,0.950839579105377,0.26573920249939,0.183240294456482,0.946470081806183,0.0819288417696953,0.279268205165863,0.95671147108078,0.323086380958557,0.261728465557098,0.909457683563232,0.274680644273758,0.171310946345329,0.946151673793793,0.281884551048279,0.128238409757614,0.950839579105377,0.316532820463181,0.249423786997795,0.915201961994171,-0.0844032615423203,0.148407429456711,0.985317826271057,0.274680644273758,0.171310946345329,0.946151673793793,-0.0147538594901562,0.291810601949692,0.956362247467041,-0.177837505936623,0.0507919862866402,0.9827481508255,-0.0402381718158722,-0.0378856770694256,0.998471558094025,-0.0844032615423203,0.148407429456711,0.985317826271057,-0.0402381718158722,-0.0378856770694256,0.998471558094025,-0.177837505936623,0.0507919862866402,0.9827481508255,-0.190558359026909,-0.0541414171457291,0.980181694030762,-0.0864608138799667,0.102909207344055,0.990925908088684,-0.190558359026909,-0.0541414171457291,0.980181694030762,-0.177837505936623,0.0507919862866402,0.9827481508255,0.0640028044581413,0.191854327917099,0.9793341755867,0.265059143304825,0.228096127510071,0.936864793300629,0.155403897166252,0.140237912535667,0.977846026420593,0.0534307770431042,0.210744023323059,0.976079940795898,0.0640028044581413,0.191854327917099,0.9793341755867,-0.177837505936623,0.0507919862866402,0.9827481508255,0.000299491046462208,-0.0144837042316794,0.999895036220551,0.0289385095238686,-0.142718940973282,0.98934006690979,0.156244426965714,0.045113530009985,0.98668760061264, +0.00173809041734785,0.0180379059165716,0.999835789203644,0.0790323987603188,-0.132623955607414,0.988010466098785,0.000299491046462208,-0.0144837042316794,0.999895036220551,0.153409376740456,-0.0428806021809578,0.987231850624084,0.274679213762283,0.10904535651207,0.955332577228546,0.156244426965714,0.045113530009985,0.98668760061264,0.155403897166252,0.140237912535667,0.977846026420593,0.265059143304825,0.228096127510071,0.936864793300629,0.274679213762283,0.10904535651207,0.955332577228546,0.306882530450821,0.0207295641303062,0.951521575450897,0.29873588681221,0.0950129926204681,0.949594259262085,0.315026342868805,0.0811562836170197,0.945606648921967,0.305764406919479,-0.0739916115999222,0.949227690696716,0.276518255472183,-0.16714258491993,0.946361899375916,0.330818802118301,0.00386521266773343,0.943686366081238,0.305764406919479,-0.0739916115999222,0.949227690696716,0.316503047943115,-0.0431359708309174,0.947610139846802,0.29061895608902,-0.229689627885818,0.928861260414124,0.276518255472183,-0.16714258491993,0.946361899375916,0.27564799785614,0.0145710995420814,0.961148142814636,0.306882530450821,0.0207295641303062,0.951521575450897,0.311844974756241,0.253272861242294,0.915754020214081,0.29873588681221,0.0950129926204681,0.949594259262085,0.310118585824966,0.345167636871338,0.885824859142303,0.310118585824966,0.345167636871338,0.885824859142303,0.278208315372467,0.420680373907089,0.863497614860535,0.299879461526871,0.482208728790283,0.823132395744324,-0.029831575229764,0.298790127038956,0.953852415084839,-0.208346024155617,-0.0328470319509506,0.977503418922424,-0.342580884695053,-0.356272399425507,0.869314789772034,0.00852910056710243,0.0883650034666061,0.996051490306854,-0.30596199631691,-0.313151150941849,0.899068176746368,0.0452983155846596,0.280518293380737,0.958779156208038,0.0452983155846596,0.280518293380737,0.958779156208038,-0.30596199631691,-0.313151150941849,0.899068176746368,-0.208346024155617,-0.0328470319509506,0.977503418922424,0.236056387424469,0.317885637283325,0.918273389339447,0.299879461526871,0.482208728790283,0.823132395744324, +0.235776096582413,0.231674626469612,0.943788349628448,0.0275759045034647,-0.114965014159679,0.992986679077148,0.217617809772491,0.410790383815765,0.885377645492554,0.236056387424469,0.317885637283325,0.918273389339447,0.0275759045034647,-0.114965014159679,0.992986679077148,0.00852910056710243,0.0883650034666061,0.996051490306854,0.217617809772491,0.410790383815765,0.885377645492554,-0.3775275349617,-0.502535462379456,0.777773022651672,-0.23119843006134,-0.0584687255322933,0.971148073673248,-0.342580884695053,-0.356272399425507,0.869314789772034,0.277099609375,-0.362266838550568,0.889931678771973,0.205523788928986,-0.679157733917236,0.704630732536316,0.29061895608902,-0.229689627885818,0.928861260414124,-0.405032515525818,-0.473313689231873,0.782254874706268,-0.3775275349617,-0.502535462379456,0.777773022651672,-0.322486758232117,-0.458847165107727,0.827925980091095,-0.405032515525818,-0.473313689231873,0.782254874706268,-0.322486758232117,-0.458847165107727,0.827925980091095,-0.36033833026886,-0.330161958932877,0.872438669204712,-0.36033833026886,-0.330161958932877,0.872438669204712,-0.39089161157608,-0.23914922773838,0.888825833797455,-0.563275933265686,-0.283142358064651,0.77624124288559,-0.406570971012115,-0.29946157336235,0.863146960735321,-0.613590776920319,-0.184753149747849,0.767705976963043,-0.39089161157608,-0.23914922773838,0.888825833797455,-0.50259256362915,-0.226412817835808,0.834348678588867,-0.66752678155899,-0.161179915070534,0.726931154727936,-0.613590776920319,-0.184753149747849,0.767705976963043,-0.66752678155899,-0.161179915070534,0.726931154727936,-0.50259256362915,-0.226412817835808,0.834348678588867,-0.584030032157898,-0.242542564868927,0.774649500846863,-0.515070021152496,-0.332558065652847,0.790004968643188,-0.584030032157898,-0.242542564868927,0.774649500846863,-0.393541276454926,-0.277537405490875,0.876412093639374,-0.470191359519959,-0.315123736858368,0.824388861656189,-0.517318904399872,-0.271538138389587,0.811571300029755,-0.515070021152496,-0.332558065652847,0.790004968643188,-0.58588308095932,-0.259748488664627,0.767640233039856, +-0.517318904399872,-0.271538138389587,0.811571300029755,-0.550819098949432,-0.246227964758873,0.797477245330811,-0.448306918144226,-0.404077589511871,0.797334313392639,-0.544327735900879,-0.351293385028839,0.761774301528931,-0.480898290872574,-0.309650957584381,0.820276141166687,-0.550819098949432,-0.246227964758873,0.797477245330811,-0.480898290872574,-0.309650957584381,0.820276141166687,-0.58588308095932,-0.259748488664627,0.767640233039856,-0.519602477550507,-0.427895992994308,0.739539086818695,-0.448306918144226,-0.404077589511871,0.797334313392639,-0.507237911224365,-0.409857898950577,0.758106887340546,-0.546998798847198,0.0910764336585999,0.832164168357849,-0.547647655010223,0.211131721735001,0.809632837772369,-0.27339118719101,0.060657937079668,0.959988415241241,-0.546998798847198,0.0910764336585999,0.832164168357849,-0.794561862945557,0.253921836614609,0.551538705825806,-0.547647655010223,0.211131721735001,0.809632837772369,-0.794561862945557,0.253921836614609,0.551538705825806,-0.866900444030762,0.15913550555706,0.47239750623703,-0.816873967647552,0.298540532588959,0.493548691272736,-0.847534477710724,0.220260724425316,0.482877224683762,-0.816873967647552,0.298540532588959,0.493548691272736,-0.866900444030762,0.15913550555706,0.47239750623703,-0.812917709350586,0.275775462388992,0.512944936752319,-0.768181025981903,0.362770467996597,0.527537167072296,-0.847534477710724,0.220260724425316,0.482877224683762,-0.27339118719101,0.060657937079668,0.959988415241241,-0.368574798107147,-0.0492913909256458,0.92829030752182,-0.0716846510767937,-0.125787794589996,0.989463806152344,-0.757779479026794,-0.122000575065613,0.641003847122192,-0.611378788948059,-0.0145747577771544,0.791203737258911,-0.750884175300598,0.0874963328242302,0.654612243175507,-0.750884175300598,0.0874963328242302,0.654612243175507,-0.723879158496857,0.251553326845169,0.642432689666748,-0.835689961910248,0.141228675842285,0.530732095241547,-0.757779479026794,-0.122000575065613,0.641003847122192,-0.567163169384003,-0.147161141037941,0.810351371765137, +-0.611378788948059,-0.0145747577771544,0.791203737258911,-0.614895045757294,-0.28420615196228,0.735615909099579,-0.450801998376846,-0.318067908287048,0.834032535552979,-0.567163169384003,-0.147161141037941,0.810351371765137,-0.614895045757294,-0.28420615196228,0.735615909099579,-0.507237911224365,-0.409857898950577,0.758106887340546,-0.450801998376846,-0.318067908287048,0.834032535552979,-0.844881951808929,0.178671419620514,0.504232943058014,-0.815106928348541,0.217329561710358,0.536999464035034,-0.771921515464783,0.300421535968781,0.560253441333771,-0.812917709350586,0.275775462388992,0.512944936752319,-0.771921515464783,0.300421535968781,0.560253441333771,-0.723761260509491,0.418872743844986,0.548374950885773,-0.835689961910248,0.141228675842285,0.530732095241547,-0.723879158496857,0.251553326845169,0.642432689666748,-0.815106928348541,0.217329561710358,0.536999464035034,-0.0716846510767937,-0.125787794589996,0.989463806152344,-0.0698349103331566,-0.0789294242858887,0.99443107843399,0.0604284964501858,-0.0833671912550926,0.994684994220734,-0.0178426448255777,0.00390160526148975,0.999833166599274,0.0604284964501858,-0.0833671912550926,0.994684994220734,-0.0698349103331566,-0.0789294242858887,0.99443107843399,-0.171587005257607,0.117550827562809,0.978130638599396,-0.149508386850357,0.0584179237484932,0.987033188343048,-0.191774770617485,0.246372789144516,0.950011968612671,-0.293582201004028,0.275208920240402,0.915461361408234,-0.191774770617485,0.246372789144516,0.950011968612671,-0.280762284994125,0.367747992277145,0.886529088020325,-0.285839140415192,0.35606461763382,0.889670610427856,-0.280762284994125,0.367747992277145,0.886529088020325,-0.287240982055664,0.426977604627609,0.857427895069122,-0.171587005257607,0.117550827562809,0.978130638599396,-0.0698349103331566,-0.0789294242858887,0.99443107843399,-0.149508386850357,0.0584179237484932,0.987033188343048,-0.249598264694214,0.322196930646896,0.913175642490387,-0.287240982055664,0.426977604627609,0.857427895069122,-0.225824803113937,0.378002643585205,0.897840261459351, +-0.140961483120918,0.337814599275589,0.930597126483917,-0.175418630242348,0.272577196359634,0.946007311344147,-0.225824803113937,0.378002643585205,0.897840261459351,0.0819288417696953,0.279268205165863,0.95671147108078,-0.140961483120918,0.337814599275589,0.930597126483917,-0.0148559240624309,0.374038904905319,0.927293956279755,0.26573920249939,0.183240294456482,0.946470081806183,0.366166591644287,0.251160144805908,0.896013677120209,0.212998434901237,0.199246034026146,0.956521093845367,0.22576005756855,0.109542436897755,0.968004524707794,0.212998434901237,0.199246034026146,0.956521093845367,0.0611381828784943,0.179349884390831,0.981883704662323,0.281884551048279,0.128238409757614,0.950839579105377,0.22576005756855,0.109542436897755,0.968004524707794,0.161179721355438,0.19114425778389,0.968238055706024,0.323086380958557,0.261728465557098,0.909457683563232,0.0819288417696953,0.279268205165863,0.95671147108078,0.198135867714882,0.313905566930771,0.928550124168396,0.26573920249939,0.183240294456482,0.946470081806183,0.323086380958557,0.261728465557098,0.909457683563232,0.366166591644287,0.251160144805908,0.896013677120209,0.316532820463181,0.249423786997795,0.915201961994171,0.281884551048279,0.128238409757614,0.950839579105377,0.161179721355438,0.19114425778389,0.968238055706024,0.274680644273758,0.171310946345329,0.946151673793793,0.316532820463181,0.249423786997795,0.915201961994171,0.24602784216404,0.339038670063019,0.908032476902008,0.274680644273758,0.171310946345329,0.946151673793793,0.24602784216404,0.339038670063019,0.908032476902008,-0.0147538594901562,0.291810601949692,0.956362247467041,-0.227579534053802,0.248930767178535,0.941403687000275,-0.0844032615423203,0.148407429456711,0.985317826271057,-0.0147538594901562,0.291810601949692,0.956362247467041,-0.188786968588829,0.169787734746933,0.967228770256042,-0.177837505936623,0.0507919862866402,0.9827481508255,-0.0844032615423203,0.148407429456711,0.985317826271057,0.0534307770431042,0.210744023323059,0.976079940795898,0.265059143304825,0.228096127510071,0.936864793300629, +0.0640028044581413,0.191854327917099,0.9793341755867,0.0534307770431042,0.210744023323059,0.976079940795898,-0.177837505936623,0.0507919862866402,0.9827481508255,-0.188786968588829,0.169787734746933,0.967228770256042,0.000299491046462208,-0.0144837042316794,0.999895036220551,0.156244426965714,0.045113530009985,0.98668760061264,0.0886930823326111,0.227541297674179,0.969720780849457,0.00173809041734785,0.0180379059165716,0.999835789203644,0.000299491046462208,-0.0144837042316794,0.999895036220551,-0.0212020799517632,0.162111476063728,0.986544609069824,0.156244426965714,0.045113530009985,0.98668760061264,0.274679213762283,0.10904535651207,0.955332577228546,0.268700033426285,0.261891305446625,0.926937460899353,0.268700033426285,0.261891305446625,0.926937460899353,0.274679213762283,0.10904535651207,0.955332577228546,0.265059143304825,0.228096127510071,0.936864793300629,0.306882530450821,0.0207295641303062,0.951521575450897,0.280861258506775,0.0404330529272556,0.958896279335022,0.29873588681221,0.0950129926204681,0.949594259262085,0.305764406919479,-0.0739916115999222,0.949227690696716,0.267917186021805,-0.481245338916779,0.834639549255371,0.276518255472183,-0.16714258491993,0.946361899375916,0.29061895608902,-0.229689627885818,0.928861260414124,0.267917186021805,-0.481245338916779,0.834639549255371,0.305764406919479,-0.0739916115999222,0.949227690696716,0.27564799785614,0.0145710995420814,0.961148142814636,0.276518255472183,-0.16714258491993,0.946361899375916,0.291687965393066,-0.184123456478119,0.938624858856201,0.306882530450821,0.0207295641303062,0.951521575450897,0.27564799785614,0.0145710995420814,0.961148142814636,0.280861258506775,0.0404330529272556,0.958896279335022,0.294447273015976,0.35137552022934,0.888727128505707,0.310118585824966,0.345167636871338,0.885824859142303,0.29873588681221,0.0950129926204681,0.949594259262085,0.294447273015976,0.35137552022934,0.888727128505707,0.278208315372467,0.420680373907089,0.863497614860535,0.310118585824966,0.345167636871338,0.885824859142303,0.278208315372467,0.420680373907089,0.863497614860535, +0.235776096582413,0.231674626469612,0.943788349628448,0.299879461526871,0.482208728790283,0.823132395744324,-0.440851867198944,-0.460037797689438,0.770723521709442,-0.342580884695053,-0.356272399425507,0.869314789772034,-0.208346024155617,-0.0328470319509506,0.977503418922424,-0.30596199631691,-0.313151150941849,0.899068176746368,0.00852910056710243,0.0883650034666061,0.996051490306854,-0.25767657160759,-0.484305799007416,0.836092412471771,-0.208346024155617,-0.0328470319509506,0.977503418922424,-0.30596199631691,-0.313151150941849,0.899068176746368,-0.440851867198944,-0.460037797689438,0.770723521709442,0.236056387424469,0.317885637283325,0.918273389339447,0.235776096582413,0.231674626469612,0.943788349628448,0.0652306601405144,-0.259792476892471,0.963458716869354,0.0275759045034647,-0.114965014159679,0.992986679077148,0.236056387424469,0.317885637283325,0.918273389339447,0.0652306601405144,-0.259792476892471,0.963458716869354,0.0275759045034647,-0.114965014159679,0.992986679077148,-0.25767657160759,-0.484305799007416,0.836092412471771,0.00852910056710243,0.0883650034666061,0.996051490306854,-0.3775275349617,-0.502535462379456,0.777773022651672,-0.342580884695053,-0.356272399425507,0.869314789772034,-0.322486758232117,-0.458847165107727,0.827925980091095,0.29061895608902,-0.229689627885818,0.928861260414124,0.205523788928986,-0.679157733917236,0.704630732536316,0.267917186021805,-0.481245338916779,0.834639549255371,-0.322486758232117,-0.458847165107727,0.827925980091095,-0.183543220162392,-0.279210150241852,0.942525088787079,-0.36033833026886,-0.330161958932877,0.872438669204712,-0.36033833026886,-0.330161958932877,0.872438669204712,-0.183543220162392,-0.279210150241852,0.942525088787079,-0.39089161157608,-0.23914922773838,0.888825833797455,-0.50259256362915,-0.226412817835808,0.834348678588867,-0.613590776920319,-0.184753149747849,0.767705976963043,-0.406570971012115,-0.29946157336235,0.863146960735321,-0.406570971012115,-0.29946157336235,0.863146960735321,-0.39089161157608,-0.23914922773838,0.888825833797455,-0.220294743776321,-0.291857004165649,0.930746793746948, +-0.50259256362915,-0.226412817835808,0.834348678588867,-0.417526125907898,-0.155350536108017,0.895286560058594,-0.584030032157898,-0.242542564868927,0.774649500846863,-0.393541276454926,-0.277537405490875,0.876412093639374,-0.584030032157898,-0.242542564868927,0.774649500846863,-0.417526125907898,-0.155350536108017,0.895286560058594,-0.393541276454926,-0.277537405490875,0.876412093639374,-0.470191359519959,-0.315123736858368,0.824388861656189,-0.515070021152496,-0.332558065652847,0.790004968643188,-0.43344509601593,-0.292476266622543,0.852398157119751,-0.517318904399872,-0.271538138389587,0.811571300029755,-0.470191359519959,-0.315123736858368,0.824388861656189,-0.47955596446991,-0.228416338562965,0.847261428833008,-0.550819098949432,-0.246227964758873,0.797477245330811,-0.517318904399872,-0.271538138389587,0.811571300029755,-0.381730914115906,-0.379836052656174,0.842618465423584,-0.448306918144226,-0.404077589511871,0.797334313392639,-0.480898290872574,-0.309650957584381,0.820276141166687,-0.480898290872574,-0.309650957584381,0.820276141166687,-0.550819098949432,-0.246227964758873,0.797477245330811,-0.47955596446991,-0.228416338562965,0.847261428833008,-0.507237911224365,-0.409857898950577,0.758106887340546,-0.448306918144226,-0.404077589511871,0.797334313392639,-0.381730914115906,-0.379836052656174,0.842618465423584,-0.27339118719101,0.060657937079668,0.959988415241241,-0.547647655010223,0.211131721735001,0.809632837772369,-0.368574798107147,-0.0492913909256458,0.92829030752182,-0.768202126026154,0.357100814580917,0.531360805034637,-0.547647655010223,0.211131721735001,0.809632837772369,-0.794561862945557,0.253921836614609,0.551538705825806,-0.794561862945557,0.253921836614609,0.551538705825806,-0.816873967647552,0.298540532588959,0.493548691272736,-0.781966388225555,0.393921971321106,0.48306730389595,-0.816873967647552,0.298540532588959,0.493548691272736,-0.847534477710724,0.220260724425316,0.482877224683762,-0.768181025981903,0.362770467996597,0.527537167072296,-0.768181025981903,0.362770467996597,0.527537167072296, +-0.812917709350586,0.275775462388992,0.512944936752319,-0.723761260509491,0.418872743844986,0.548374950885773,-0.368574798107147,-0.0492913909256458,0.92829030752182,-0.18082632124424,-0.224410399794579,0.957570731639862,-0.0716846510767937,-0.125787794589996,0.989463806152344,-0.628749549388886,0.112374156713486,0.769445180892944,-0.750884175300598,0.0874963328242302,0.654612243175507,-0.611378788948059,-0.0145747577771544,0.791203737258911,-0.750884175300598,0.0874963328242302,0.654612243175507,-0.62299919128418,0.215462476015091,0.751962602138519,-0.723879158496857,0.251553326845169,0.642432689666748,-0.567163169384003,-0.147161141037941,0.810351371765137,-0.472108691930771,-0.0527706407010555,0.879959404468536,-0.611378788948059,-0.0145747577771544,0.791203737258911,-0.567163169384003,-0.147161141037941,0.810351371765137,-0.450801998376846,-0.318067908287048,0.834032535552979,-0.44268211722374,-0.192050188779831,0.875870525836945,-0.450801998376846,-0.318067908287048,0.834032535552979,-0.507237911224365,-0.409857898950577,0.758106887340546,-0.381730914115906,-0.379836052656174,0.842618465423584,-0.723879158496857,0.251553326845169,0.642432689666748,-0.771921515464783,0.300421535968781,0.560253441333771,-0.815106928348541,0.217329561710358,0.536999464035034,-0.629867970943451,0.385348051786423,0.674368619918823,-0.723761260509491,0.418872743844986,0.548374950885773,-0.771921515464783,0.300421535968781,0.560253441333771,-0.0698349103331566,-0.0789294242858887,0.99443107843399,-0.0716846510767937,-0.125787794589996,0.989463806152344,-0.114835299551487,-0.173146039247513,0.97817850112915,-0.149508386850357,0.0584179237484932,0.987033188343048,-0.0112852230668068,0.299653649330139,0.953981280326843,-0.191774770617485,0.246372789144516,0.950011968612671,-0.0854602381587029,0.406855821609497,0.909485995769501,-0.280762284994125,0.367747992277145,0.886529088020325,-0.191774770617485,0.246372789144516,0.950011968612671,-0.260193228721619,0.462161093950272,0.847765624523163,-0.287240982055664,0.426977604627609,0.857427895069122, +-0.280762284994125,0.367747992277145,0.886529088020325,-0.0698349103331566,-0.0789294242858887,0.99443107843399,-0.114835299551487,-0.173146039247513,0.97817850112915,-0.149508386850357,0.0584179237484932,0.987033188343048,-0.225824803113937,0.378002643585205,0.897840261459351,-0.287240982055664,0.426977604627609,0.857427895069122,-0.151033982634544,0.454980313777924,0.877599835395813,-0.140961483120918,0.337814599275589,0.930597126483917,-0.225824803113937,0.378002643585205,0.897840261459351,-0.151033982634544,0.454980313777924,0.877599835395813,-0.0148559240624309,0.374038904905319,0.927293956279755,-0.140961483120918,0.337814599275589,0.930597126483917,-0.151033982634544,0.454980313777924,0.877599835395813,0.0819288417696953,0.279268205165863,0.95671147108078,-0.0148559240624309,0.374038904905319,0.927293956279755,0.198135867714882,0.313905566930771,0.928550124168396,0.212998434901237,0.199246034026146,0.956521093845367,0.366166591644287,0.251160144805908,0.896013677120209,0.210851907730103,0.339987516403198,0.916487812995911,0.0611381828784943,0.179349884390831,0.981883704662323,0.212998434901237,0.199246034026146,0.956521093845367,0.0267036035656929,0.266716927289963,0.963404834270477,0.22576005756855,0.109542436897755,0.968004524707794,0.0611381828784943,0.179349884390831,0.981883704662323,0.161179721355438,0.19114425778389,0.968238055706024,0.198135867714882,0.313905566930771,0.928550124168396,0.348293662071228,0.301887094974518,0.887443244457245,0.323086380958557,0.261728465557098,0.909457683563232,0.323086380958557,0.261728465557098,0.909457683563232,0.348293662071228,0.301887094974518,0.887443244457245,0.366166591644287,0.251160144805908,0.896013677120209,0.161179721355438,0.19114425778389,0.968238055706024,0.223671555519104,0.321366280317307,0.920160114765167,0.316532820463181,0.249423786997795,0.915201961994171,0.24602784216404,0.339038670063019,0.908032476902008,0.316532820463181,0.249423786997795,0.915201961994171,0.223671555519104,0.321366280317307,0.920160114765167,-0.0147538594901562,0.291810601949692,0.956362247467041, +0.24602784216404,0.339038670063019,0.908032476902008,0.0357851162552834,0.42984676361084,0.902192413806915,-0.227579534053802,0.248930767178535,0.941403687000275,-0.188786968588829,0.169787734746933,0.967228770256042,-0.0844032615423203,0.148407429456711,0.985317826271057,-0.0147538594901562,0.291810601949692,0.956362247467041,-0.190063312649727,0.359921514987946,0.913417935371399,-0.227579534053802,0.248930767178535,0.941403687000275,0.209412813186646,0.363791555166245,0.90763533115387,0.265059143304825,0.228096127510071,0.936864793300629,0.0534307770431042,0.210744023323059,0.976079940795898,0.0534307770431042,0.210744023323059,0.976079940795898,-0.188786968588829,0.169787734746933,0.967228770256042,-0.0267785228788853,0.23379772901535,0.971916377544403,0.0886930823326111,0.227541297674179,0.969720780849457,0.156244426965714,0.045113530009985,0.98668760061264,0.268700033426285,0.261891305446625,0.926937460899353,0.0886930823326111,0.227541297674179,0.969720780849457,-0.0212020799517632,0.162111476063728,0.986544609069824,0.000299491046462208,-0.0144837042316794,0.999895036220551,-0.0762558132410049,0.213511079549789,0.973959982395172,0.00173809041734785,0.0180379059165716,0.999835789203644,-0.0212020799517632,0.162111476063728,0.986544609069824,0.209412813186646,0.363791555166245,0.90763533115387,0.268700033426285,0.261891305446625,0.926937460899353,0.265059143304825,0.228096127510071,0.936864793300629,0.299044817686081,0.0283797830343246,0.953816890716553,0.29873588681221,0.0950129926204681,0.949594259262085,0.280861258506775,0.0404330529272556,0.958896279335022,0.267917186021805,-0.481245338916779,0.834639549255371,0.177646741271019,-0.750194430351257,0.636906385421753,0.276518255472183,-0.16714258491993,0.946361899375916,0.276518255472183,-0.16714258491993,0.946361899375916,0.207897424697876,-0.61188817024231,0.763132572174072,0.291687965393066,-0.184123456478119,0.938624858856201,0.27564799785614,0.0145710995420814,0.961148142814636,0.291687965393066,-0.184123456478119,0.938624858856201,0.248926490545273,-0.412970989942551,0.876065194606781, +0.282634675502777,-0.0593121312558651,0.95739209651947,0.280861258506775,0.0404330529272556,0.958896279335022,0.27564799785614,0.0145710995420814,0.961148142814636,0.29873588681221,0.0950129926204681,0.949594259262085,0.308654546737671,0.146264389157295,0.939861118793488,0.294447273015976,0.35137552022934,0.888727128505707,0.228516042232513,0.337344855070114,0.913224339485168,0.278208315372467,0.420680373907089,0.863497614860535,0.294447273015976,0.35137552022934,0.888727128505707,0.146219566464424,-0.00181043182965368,0.989250421524048,0.235776096582413,0.231674626469612,0.943788349628448,0.278208315372467,0.420680373907089,0.863497614860535,-0.440851867198944,-0.460037797689438,0.770723521709442,-0.322486758232117,-0.458847165107727,0.827925980091095,-0.342580884695053,-0.356272399425507,0.869314789772034,-0.30596199631691,-0.313151150941849,0.899068176746368,-0.25767657160759,-0.484305799007416,0.836092412471771,-0.437429189682007,-0.497583597898483,0.749043464660645,-0.437429189682007,-0.497583597898483,0.749043464660645,-0.440851867198944,-0.460037797689438,0.770723521709442,-0.30596199631691,-0.313151150941849,0.899068176746368,0.0482234582304955,-0.347167521715164,0.936562418937683,0.0652306601405144,-0.259792476892471,0.963458716869354,0.235776096582413,0.231674626469612,0.943788349628448,0.0652306601405144,-0.259792476892471,0.963458716869354,-0.14106921851635,-0.565365731716156,0.812687456607819,0.0275759045034647,-0.114965014159679,0.992986679077148,0.0275759045034647,-0.114965014159679,0.992986679077148,-0.14106921851635,-0.565365731716156,0.812687456607819,-0.25767657160759,-0.484305799007416,0.836092412471771,-0.322486758232117,-0.458847165107727,0.827925980091095,-0.264587908983231,-0.315759122371674,0.911202132701874,-0.183543220162392,-0.279210150241852,0.942525088787079,-0.220294743776321,-0.291857004165649,0.930746793746948,-0.39089161157608,-0.23914922773838,0.888825833797455,-0.183543220162392,-0.279210150241852,0.942525088787079,-0.50259256362915,-0.226412817835808,0.834348678588867,-0.406570971012115,-0.29946157336235,0.863146960735321, +-0.354357033967972,-0.37569996714592,0.85631799697876,-0.406570971012115,-0.29946157336235,0.863146960735321,-0.220294743776321,-0.291857004165649,0.930746793746948,-0.354357033967972,-0.37569996714592,0.85631799697876,-0.50259256362915,-0.226412817835808,0.834348678588867,-0.45914751291275,-0.0865375399589539,0.884135007858276,-0.417526125907898,-0.155350536108017,0.895286560058594,-0.393541276454926,-0.277537405490875,0.876412093639374,-0.417526125907898,-0.155350536108017,0.895286560058594,-0.215847447514534,-0.170162081718445,0.961485624313354,-0.393541276454926,-0.277537405490875,0.876412093639374,-0.43344509601593,-0.292476266622543,0.852398157119751,-0.470191359519959,-0.315123736858368,0.824388861656189,-0.517318904399872,-0.271538138389587,0.811571300029755,-0.43344509601593,-0.292476266622543,0.852398157119751,-0.444471001625061,-0.253340125083923,0.859223067760468,-0.444471001625061,-0.253340125083923,0.859223067760468,-0.47955596446991,-0.228416338562965,0.847261428833008,-0.517318904399872,-0.271538138389587,0.811571300029755,-0.381730914115906,-0.379836052656174,0.842618465423584,-0.480898290872574,-0.309650957584381,0.820276141166687,-0.353995352983475,-0.260671943426132,0.898185551166534,-0.353995352983475,-0.260671943426132,0.898185551166534,-0.480898290872574,-0.309650957584381,0.820276141166687,-0.47955596446991,-0.228416338562965,0.847261428833008,-0.368574798107147,-0.0492913909256458,0.92829030752182,-0.547647655010223,0.211131721735001,0.809632837772369,-0.24667689204216,-0.14749912917614,0.957807123661041,-0.547647655010223,0.211131721735001,0.809632837772369,-0.768202126026154,0.357100814580917,0.531360805034637,-0.671155273914337,0.498823404312134,0.548384547233582,-0.768202126026154,0.357100814580917,0.531360805034637,-0.794561862945557,0.253921836614609,0.551538705825806,-0.781966388225555,0.393921971321106,0.48306730389595,-0.781966388225555,0.393921971321106,0.48306730389595,-0.816873967647552,0.298540532588959,0.493548691272736,-0.736575245857239,0.396892726421356,0.547661304473877,-0.816873967647552,0.298540532588959,0.493548691272736, +-0.768181025981903,0.362770467996597,0.527537167072296,-0.736575245857239,0.396892726421356,0.547661304473877,-0.768181025981903,0.362770467996597,0.527537167072296,-0.723761260509491,0.418872743844986,0.548374950885773,-0.700007915496826,0.477078557014465,0.531398952007294,-0.18082632124424,-0.224410399794579,0.957570731639862,-0.368574798107147,-0.0492913909256458,0.92829030752182,-0.24667689204216,-0.14749912917614,0.957807123661041,-0.18082632124424,-0.224410399794579,0.957570731639862,-0.114835299551487,-0.173146039247513,0.97817850112915,-0.0716846510767937,-0.125787794589996,0.989463806152344,-0.628749549388886,0.112374156713486,0.769445180892944,-0.62299919128418,0.215462476015091,0.751962602138519,-0.750884175300598,0.0874963328242302,0.654612243175507,-0.497143477201462,0.0973778367042542,0.8621866106987,-0.628749549388886,0.112374156713486,0.769445180892944,-0.611378788948059,-0.0145747577771544,0.791203737258911,-0.723879158496857,0.251553326845169,0.642432689666748,-0.62299919128418,0.215462476015091,0.751962602138519,-0.573001444339752,0.320152223110199,0.754434704780579,-0.567163169384003,-0.147161141037941,0.810351371765137,-0.44268211722374,-0.192050188779831,0.875870525836945,-0.472108691930771,-0.0527706407010555,0.879959404468536,-0.611378788948059,-0.0145747577771544,0.791203737258911,-0.472108691930771,-0.0527706407010555,0.879959404468536,-0.497143477201462,0.0973778367042542,0.8621866106987,-0.450801998376846,-0.318067908287048,0.834032535552979,-0.293450683355331,-0.341643989086151,0.892841517925262,-0.44268211722374,-0.192050188779831,0.875870525836945,-0.450801998376846,-0.318067908287048,0.834032535552979,-0.381730914115906,-0.379836052656174,0.842618465423584,-0.293450683355331,-0.341643989086151,0.892841517925262,-0.723879158496857,0.251553326845169,0.642432689666748,-0.629867970943451,0.385348051786423,0.674368619918823,-0.771921515464783,0.300421535968781,0.560253441333771,-0.601086437702179,0.495438903570175,0.627084791660309,-0.723761260509491,0.418872743844986,0.548374950885773,-0.629867970943451,0.385348051786423,0.674368619918823, +-0.149508386850357,0.0584179237484932,0.987033188343048,-0.0220004096627235,0.101968504488468,0.994544267654419,-0.0112852230668068,0.299653649330139,0.953981280326843,-0.0112852230668068,0.299653649330139,0.953981280326843,-0.0854602381587029,0.406855821609497,0.909485995769501,-0.191774770617485,0.246372789144516,0.950011968612671,-0.280762284994125,0.367747992277145,0.886529088020325,-0.0854602381587029,0.406855821609497,0.909485995769501,-0.260193228721619,0.462161093950272,0.847765624523163,-0.401801139116287,0.454067289829254,0.795222342014313,-0.287240982055664,0.426977604627609,0.857427895069122,-0.260193228721619,0.462161093950272,0.847765624523163,-0.149508386850357,0.0584179237484932,0.987033188343048,-0.114835299551487,-0.173146039247513,0.97817850112915,-0.0220004096627235,0.101968504488468,0.994544267654419,-0.287240982055664,0.426977604627609,0.857427895069122,-0.278763324022293,0.474724858999252,0.83482164144516,-0.151033982634544,0.454980313777924,0.877599835395813,-0.0148559240624309,0.374038904905319,0.927293956279755,-0.151033982634544,0.454980313777924,0.877599835395813,0.031970351934433,0.459809422492981,0.887441873550415,-0.0148559240624309,0.374038904905319,0.927293956279755,0.199078485369682,0.38610965013504,0.900714755058289,0.198135867714882,0.313905566930771,0.928550124168396,0.36633089184761,0.365843951702118,0.855546474456787,0.210851907730103,0.339987516403198,0.916487812995911,0.366166591644287,0.251160144805908,0.896013677120209,0.210851907730103,0.339987516403198,0.916487812995911,0.0267036035656929,0.266716927289963,0.963404834270477,0.212998434901237,0.199246034026146,0.956521093845367,0.0267036035656929,0.266716927289963,0.963404834270477,-0.0060020862147212,0.273110121488571,0.961964011192322,0.0611381828784943,0.179349884390831,0.981883704662323,0.0611381828784943,0.179349884390831,0.981883704662323,0.0544517450034618,0.219662219285965,0.974055171012878,0.161179721355438,0.19114425778389,0.968238055706024,0.198135867714882,0.313905566930771,0.928550124168396,0.199078485369682,0.38610965013504,0.900714755058289, +0.348293662071228,0.301887094974518,0.887443244457245,0.36633089184761,0.365843951702118,0.855546474456787,0.366166591644287,0.251160144805908,0.896013677120209,0.348293662071228,0.301887094974518,0.887443244457245,0.0544517450034618,0.219662219285965,0.974055171012878,0.223671555519104,0.321366280317307,0.920160114765167,0.161179721355438,0.19114425778389,0.968238055706024,0.24602784216404,0.339038670063019,0.908032476902008,0.223671555519104,0.321366280317307,0.920160114765167,0.237124502658844,0.469708621501923,0.850379765033722,0.24602784216404,0.339038670063019,0.908032476902008,0.237124502658844,0.469708621501923,0.850379765033722,0.0357851162552834,0.42984676361084,0.902192413806915,-0.0147538594901562,0.291810601949692,0.956362247467041,0.0357851162552834,0.42984676361084,0.902192413806915,-0.190063312649727,0.359921514987946,0.913417935371399,-0.227579534053802,0.248930767178535,0.941403687000275,-0.182232171297073,0.291981071233749,0.938902795314789,-0.188786968588829,0.169787734746933,0.967228770256042,-0.227579534053802,0.248930767178535,0.941403687000275,-0.190063312649727,0.359921514987946,0.913417935371399,-0.182232171297073,0.291981071233749,0.938902795314789,0.0534307770431042,0.210744023323059,0.976079940795898,0.094586469233036,0.340464115142822,0.935487806797028,0.209412813186646,0.363791555166245,0.90763533115387,-0.188786968588829,0.169787734746933,0.967228770256042,-0.182232171297073,0.291981071233749,0.938902795314789,-0.0267785228788853,0.23379772901535,0.971916377544403,0.0534307770431042,0.210744023323059,0.976079940795898,-0.0267785228788853,0.23379772901535,0.971916377544403,0.0309427361935377,0.19627334177494,0.980060815811157,0.0886930823326111,0.227541297674179,0.969720780849457,0.268700033426285,0.261891305446625,0.926937460899353,0.136618614196777,0.423962980508804,0.895315945148468,0.0886930823326111,0.227541297674179,0.969720780849457,-0.0226036328822374,0.374068170785904,0.927125632762909,-0.0212020799517632,0.162111476063728,0.986544609069824,-0.0212020799517632,0.162111476063728,0.986544609069824, +-0.0226036328822374,0.374068170785904,0.927125632762909,-0.0762558132410049,0.213511079549789,0.973959982395172,0.209412813186646,0.363791555166245,0.90763533115387,0.136618614196777,0.423962980508804,0.895315945148468,0.268700033426285,0.261891305446625,0.926937460899353,0.29873588681221,0.0950129926204681,0.949594259262085,0.299044817686081,0.0283797830343246,0.953816890716553,0.308654546737671,0.146264389157295,0.939861118793488,0.289669722318649,0.0577834844589233,0.955380797386169,0.299044817686081,0.0283797830343246,0.953816890716553,0.280861258506775,0.0404330529272556,0.958896279335022,0.177646741271019,-0.750194430351257,0.636906385421753,0.207897424697876,-0.61188817024231,0.763132572174072,0.276518255472183,-0.16714258491993,0.946361899375916,0.248926490545273,-0.412970989942551,0.876065194606781,0.291687965393066,-0.184123456478119,0.938624858856201,0.207897424697876,-0.61188817024231,0.763132572174072,0.248926490545273,-0.412970989942551,0.876065194606781,0.245692268013954,-0.24162757396698,0.938749849796295,0.27564799785614,0.0145710995420814,0.961148142814636,0.282634675502777,-0.0593121312558651,0.95739209651947,0.276407986879349,0.0273561291396618,0.96065092086792,0.280861258506775,0.0404330529272556,0.958896279335022,0.282634675502777,-0.0593121312558651,0.95739209651947,0.27564799785614,0.0145710995420814,0.961148142814636,0.245692268013954,-0.24162757396698,0.938749849796295,0.308654546737671,0.146264389157295,0.939861118793488,0.30853146314621,0.245821341872215,0.918901562690735,0.294447273015976,0.35137552022934,0.888727128505707,0.228516042232513,0.337344855070114,0.913224339485168,0.172458738088608,0.0686039701104164,0.982624769210815,0.278208315372467,0.420680373907089,0.863497614860535,0.294447273015976,0.35137552022934,0.888727128505707,0.231172353029251,0.2387335896492,0.943167686462402,0.228516042232513,0.337344855070114,0.913224339485168,0.146219566464424,-0.00181043182965368,0.989250421524048,0.0482234582304955,-0.347167521715164,0.936562418937683,0.235776096582413,0.231674626469612,0.943788349628448, +0.146219566464424,-0.00181043182965368,0.989250421524048,0.278208315372467,0.420680373907089,0.863497614860535,0.172458738088608,0.0686039701104164,0.982624769210815,-0.411466836929321,-0.442168802022934,0.796982824802399,-0.322486758232117,-0.458847165107727,0.827925980091095,-0.440851867198944,-0.460037797689438,0.770723521709442,-0.317292362451553,-0.541742026805878,0.778357863426209,-0.437429189682007,-0.497583597898483,0.749043464660645,-0.25767657160759,-0.484305799007416,0.836092412471771,-0.437429189682007,-0.497583597898483,0.749043464660645,-0.411466836929321,-0.442168802022934,0.796982824802399,-0.440851867198944,-0.460037797689438,0.770723521709442,0.0482234582304955,-0.347167521715164,0.936562418937683,-0.0902806520462036,-0.627527475357056,0.773342430591583,0.0652306601405144,-0.259792476892471,0.963458716869354,-0.14106921851635,-0.565365731716156,0.812687456607819,0.0652306601405144,-0.259792476892471,0.963458716869354,-0.0902806520462036,-0.627527475357056,0.773342430591583,-0.317292362451553,-0.541742026805878,0.778357863426209,-0.25767657160759,-0.484305799007416,0.836092412471771,-0.14106921851635,-0.565365731716156,0.812687456607819,-0.411466836929321,-0.442168802022934,0.796982824802399,-0.264587908983231,-0.315759122371674,0.911202132701874,-0.322486758232117,-0.458847165107727,0.827925980091095,-0.264587908983231,-0.315759122371674,0.911202132701874,-0.133802995085716,-0.255438387393951,0.957521736621857,-0.183543220162392,-0.279210150241852,0.942525088787079,-0.220294743776321,-0.291857004165649,0.930746793746948,-0.183543220162392,-0.279210150241852,0.942525088787079,-0.133802995085716,-0.255438387393951,0.957521736621857,-0.50259256362915,-0.226412817835808,0.834348678588867,-0.354357033967972,-0.37569996714592,0.85631799697876,-0.459690183401108,-0.343426823616028,0.818988919258118,-0.220294743776321,-0.291857004165649,0.930746793746948,-0.303190767765045,-0.278617709875107,0.911288857460022,-0.354357033967972,-0.37569996714592,0.85631799697876,-0.50259256362915,-0.226412817835808,0.834348678588867, +-0.459690183401108,-0.343426823616028,0.818988919258118,-0.45914751291275,-0.0865375399589539,0.884135007858276,-0.417526125907898,-0.155350536108017,0.895286560058594,-0.45914751291275,-0.0865375399589539,0.884135007858276,-0.297859698534012,0.00669507728889585,0.954586088657379,-0.417526125907898,-0.155350536108017,0.895286560058594,-0.297859698534012,0.00669507728889585,0.954586088657379,-0.215847447514534,-0.170162081718445,0.961485624313354,-0.0938081294298172,-0.268718898296356,0.958639681339264,-0.393541276454926,-0.277537405490875,0.876412093639374,-0.215847447514534,-0.170162081718445,0.961485624313354,-0.393541276454926,-0.277537405490875,0.876412093639374,-0.281401038169861,-0.23745234310627,0.92974716424942,-0.43344509601593,-0.292476266622543,0.852398157119751,-0.444471001625061,-0.253340125083923,0.859223067760468,-0.43344509601593,-0.292476266622543,0.852398157119751,-0.281401038169861,-0.23745234310627,0.92974716424942,-0.444471001625061,-0.253340125083923,0.859223067760468,-0.371466189622879,-0.20850433409214,0.904731273651123,-0.47955596446991,-0.228416338562965,0.847261428833008,-0.381730914115906,-0.379836052656174,0.842618465423584,-0.353995352983475,-0.260671943426132,0.898185551166534,-0.252442002296448,-0.338712900876999,0.906391978263855,-0.353995352983475,-0.260671943426132,0.898185551166534,-0.47955596446991,-0.228416338562965,0.847261428833008,-0.371466189622879,-0.20850433409214,0.904731273651123,-0.547647655010223,0.211131721735001,0.809632837772369,-0.0253782197833061,0.0764647945761681,0.996749222278595,-0.24667689204216,-0.14749912917614,0.957807123661041,-0.768202126026154,0.357100814580917,0.531360805034637,-0.781966388225555,0.393921971321106,0.48306730389595,-0.671155273914337,0.498823404312134,0.548384547233582,-0.335065901279449,0.410105288028717,0.848259627819061,-0.547647655010223,0.211131721735001,0.809632837772369,-0.671155273914337,0.498823404312134,0.548384547233582,-0.705836117267609,0.5106121301651,0.490989297628403,-0.781966388225555,0.393921971321106,0.48306730389595, +-0.736575245857239,0.396892726421356,0.547661304473877,-0.768181025981903,0.362770467996597,0.527537167072296,-0.700007915496826,0.477078557014465,0.531398952007294,-0.736575245857239,0.396892726421356,0.547661304473877,-0.723761260509491,0.418872743844986,0.548374950885773,-0.689777791500092,0.512739598751068,0.511179685592651,-0.700007915496826,0.477078557014465,0.531398952007294,-0.18082632124424,-0.224410399794579,0.957570731639862,-0.24667689204216,-0.14749912917614,0.957807123661041,-0.114835299551487,-0.173146039247513,0.97817850112915,-0.497143477201462,0.0973778367042542,0.8621866106987,-0.62299919128418,0.215462476015091,0.751962602138519,-0.628749549388886,0.112374156713486,0.769445180892944,-0.573001444339752,0.320152223110199,0.754434704780579,-0.62299919128418,0.215462476015091,0.751962602138519,-0.472552567720413,0.238754838705063,0.848345458507538,-0.723879158496857,0.251553326845169,0.642432689666748,-0.573001444339752,0.320152223110199,0.754434704780579,-0.629867970943451,0.385348051786423,0.674368619918823,-0.44268211722374,-0.192050188779831,0.875870525836945,-0.279840916395187,-0.147536441683769,0.948642134666443,-0.472108691930771,-0.0527706407010555,0.879959404468536,-0.472108691930771,-0.0527706407010555,0.879959404468536,-0.369284838438034,0.0356708206236362,0.928631365299225,-0.497143477201462,0.0973778367042542,0.8621866106987,-0.44268211722374,-0.192050188779831,0.875870525836945,-0.293450683355331,-0.341643989086151,0.892841517925262,-0.279840916395187,-0.147536441683769,0.948642134666443,-0.252442002296448,-0.338712900876999,0.906391978263855,-0.293450683355331,-0.341643989086151,0.892841517925262,-0.381730914115906,-0.379836052656174,0.842618465423584,-0.723761260509491,0.418872743844986,0.548374950885773,-0.601086437702179,0.495438903570175,0.627084791660309,-0.689777791500092,0.512739598751068,0.511179685592651,-0.601086437702179,0.495438903570175,0.627084791660309,-0.629867970943451,0.385348051786423,0.674368619918823,-0.534764170646667,0.438399821519852,0.722379982471466,0.221398919820786,0.32357656955719,0.91993510723114, +-0.0112852230668068,0.299653649330139,0.953981280326843,-0.0220004096627235,0.101968504488468,0.994544267654419,-0.0112852230668068,0.299653649330139,0.953981280326843,0.13478696346283,0.405199497938156,0.904237627983093,-0.0854602381587029,0.406855821609497,0.909485995769501,-0.12575401365757,0.480429619550705,0.867970705032349,-0.260193228721619,0.462161093950272,0.847765624523163,-0.0854602381587029,0.406855821609497,0.909485995769501,-0.287240982055664,0.426977604627609,0.857427895069122,-0.401801139116287,0.454067289829254,0.795222342014313,-0.278763324022293,0.474724858999252,0.83482164144516,-0.260193228721619,0.462161093950272,0.847765624523163,-0.278763324022293,0.474724858999252,0.83482164144516,-0.401801139116287,0.454067289829254,0.795222342014313,0.0183836482465267,-0.0222958847880363,0.999582231044769,-0.0220004096627235,0.101968504488468,0.994544267654419,-0.114835299551487,-0.173146039247513,0.97817850112915,-0.0997840166091919,0.461065888404846,0.881737649440765,-0.151033982634544,0.454980313777924,0.877599835395813,-0.278763324022293,0.474724858999252,0.83482164144516,-0.0997840166091919,0.461065888404846,0.881737649440765,0.031970351934433,0.459809422492981,0.887441873550415,-0.151033982634544,0.454980313777924,0.877599835395813,-0.0148559240624309,0.374038904905319,0.927293956279755,0.031970351934433,0.459809422492981,0.887441873550415,0.199078485369682,0.38610965013504,0.900714755058289,0.210851907730103,0.339987516403198,0.916487812995911,0.36633089184761,0.365843951702118,0.855546474456787,0.144646883010864,0.484331071376801,0.862844467163086,0.210851907730103,0.339987516403198,0.916487812995911,0.0155981173738837,0.409218490123749,0.912303030490875,0.0267036035656929,0.266716927289963,0.963404834270477,-0.0060020862147212,0.273110121488571,0.961964011192322,0.0267036035656929,0.266716927289963,0.963404834270477,-0.150894448161125,0.327793836593628,0.932621002197266,-0.0060020862147212,0.273110121488571,0.961964011192322,0.0544517450034618,0.219662219285965,0.974055171012878,0.0611381828784943,0.179349884390831,0.981883704662323, +0.199078485369682,0.38610965013504,0.900714755058289,0.392720013856888,0.384200841188431,0.835560083389282,0.348293662071228,0.301887094974518,0.887443244457245,0.36633089184761,0.365843951702118,0.855546474456787,0.348293662071228,0.301887094974518,0.887443244457245,0.392720013856888,0.384200841188431,0.835560083389282,0.0544517450034618,0.219662219285965,0.974055171012878,-0.0060020862147212,0.273110121488571,0.961964011192322,0.223671555519104,0.321366280317307,0.920160114765167,0.167693793773651,0.403976023197174,0.899267494678497,0.237124502658844,0.469708621501923,0.850379765033722,0.223671555519104,0.321366280317307,0.920160114765167,0.237124502658844,0.469708621501923,0.850379765033722,0.0713720172643662,0.538539171218872,0.839572191238403,0.0357851162552834,0.42984676361084,0.902192413806915,-0.190063312649727,0.359921514987946,0.913417935371399,0.0357851162552834,0.42984676361084,0.902192413806915,-0.127938777208328,0.473729997873306,0.87132740020752,-0.0863652005791664,0.390618085861206,0.916492462158203,-0.182232171297073,0.291981071233749,0.938902795314789,-0.190063312649727,0.359921514987946,0.913417935371399,0.094586469233036,0.340464115142822,0.935487806797028,0.0534307770431042,0.210744023323059,0.976079940795898,0.0309427361935377,0.19627334177494,0.980060815811157,0.099195584654808,0.430413246154785,0.897164702415466,0.209412813186646,0.363791555166245,0.90763533115387,0.094586469233036,0.340464115142822,0.935487806797028,0.116519115865231,0.281676322221756,0.952408313751221,-0.0267785228788853,0.23379772901535,0.971916377544403,-0.182232171297073,0.291981071233749,0.938902795314789,0.0309427361935377,0.19627334177494,0.980060815811157,-0.0267785228788853,0.23379772901535,0.971916377544403,0.129524633288383,0.182934284210205,0.974555432796478,0.136618614196777,0.423962980508804,0.895315945148468,-0.0226036328822374,0.374068170785904,0.927125632762909,0.0886930823326111,0.227541297674179,0.969720780849457,-0.0762558132410049,0.213511079549789,0.973959982395172,-0.0226036328822374,0.374068170785904,0.927125632762909, +-0.170585066080093,0.371656179428101,0.912563562393188,0.099195584654808,0.430413246154785,0.897164702415466,0.136618614196777,0.423962980508804,0.895315945148468,0.209412813186646,0.363791555166245,0.90763533115387,0.299974471330643,0.0885767713189125,0.949826002120972,0.308654546737671,0.146264389157295,0.939861118793488,0.299044817686081,0.0283797830343246,0.953816890716553,0.299974471330643,0.0885767713189125,0.949826002120972,0.299044817686081,0.0283797830343246,0.953816890716553,0.289669722318649,0.0577834844589233,0.955380797386169,0.289669722318649,0.0577834844589233,0.955380797386169,0.280861258506775,0.0404330529272556,0.958896279335022,0.276407986879349,0.0273561291396618,0.96065092086792,0.248926490545273,-0.412970989942551,0.876065194606781,0.16749107837677,-0.711831212043762,0.682087182998657,0.245692268013954,-0.24162757396698,0.938749849796295,0.282634675502777,-0.0593121312558651,0.95739209651947,0.247418656945229,-0.355897039175034,0.901177644729614,0.276407986879349,0.0273561291396618,0.96065092086792,0.245692268013954,-0.24162757396698,0.938749849796295,0.218509346246719,-0.556130886077881,0.801855385303497,0.282634675502777,-0.0593121312558651,0.95739209651947,0.308654546737671,0.146264389157295,0.939861118793488,0.299974471330643,0.0885767713189125,0.949826002120972,0.30853146314621,0.245821341872215,0.918901562690735,0.294447273015976,0.35137552022934,0.888727128505707,0.30853146314621,0.245821341872215,0.918901562690735,0.22350849211216,0.130906105041504,0.965871334075928,0.172458738088608,0.0686039701104164,0.982624769210815,0.228516042232513,0.337344855070114,0.913224339485168,0.0875439494848251,-0.145833566784859,0.985428094863892,0.22350849211216,0.130906105041504,0.965871334075928,0.231172353029251,0.2387335896492,0.943167686462402,0.294447273015976,0.35137552022934,0.888727128505707,0.231172353029251,0.2387335896492,0.943167686462402,0.0875439494848251,-0.145833566784859,0.985428094863892,0.228516042232513,0.337344855070114,0.913224339485168,-0.0259303692728281,-0.512676000595093,0.858190417289734, +0.0482234582304955,-0.347167521715164,0.936562418937683,0.146219566464424,-0.00181043182965368,0.989250421524048,0.146219566464424,-0.00181043182965368,0.989250421524048,0.172458738088608,0.0686039701104164,0.982624769210815,-0.0259303692728281,-0.512676000595093,0.858190417289734,-0.317292362451553,-0.541742026805878,0.778357863426209,-0.379826217889786,-0.363878905773163,0.850484609603882,-0.437429189682007,-0.497583597898483,0.749043464660645,-0.411466836929321,-0.442168802022934,0.796982824802399,-0.437429189682007,-0.497583597898483,0.749043464660645,-0.379826217889786,-0.363878905773163,0.850484609603882,-0.0259303692728281,-0.512676000595093,0.858190417289734,-0.0902806520462036,-0.627527475357056,0.773342430591583,0.0482234582304955,-0.347167521715164,0.936562418937683,-0.14106921851635,-0.565365731716156,0.812687456607819,-0.0902806520462036,-0.627527475357056,0.773342430591583,-0.205875590443611,-0.551023662090302,0.808695316314697,-0.317292362451553,-0.541742026805878,0.778357863426209,-0.14106921851635,-0.565365731716156,0.812687456607819,-0.205875590443611,-0.551023662090302,0.808695316314697,-0.411466836929321,-0.442168802022934,0.796982824802399,-0.379826217889786,-0.363878905773163,0.850484609603882,-0.264587908983231,-0.315759122371674,0.911202132701874,-0.313559919595718,-0.228925079107285,0.921560168266296,-0.133802995085716,-0.255438387393951,0.957521736621857,-0.264587908983231,-0.315759122371674,0.911202132701874,-0.133802995085716,-0.255438387393951,0.957521736621857,-0.303190767765045,-0.278617709875107,0.911288857460022,-0.220294743776321,-0.291857004165649,0.930746793746948,-0.447878748178482,-0.442914187908173,0.776679813861847,-0.459690183401108,-0.343426823616028,0.818988919258118,-0.354357033967972,-0.37569996714592,0.85631799697876,-0.354357033967972,-0.37569996714592,0.85631799697876,-0.303190767765045,-0.278617709875107,0.911288857460022,-0.413030952215195,-0.38897779583931,0.823469221591949,-0.45914751291275,-0.0865375399589539,0.884135007858276,-0.459690183401108,-0.343426823616028,0.818988919258118, +-0.448075652122498,-0.228849858045578,0.864208221435547,-0.297859698534012,0.00669507728889585,0.954586088657379,-0.45914751291275,-0.0865375399589539,0.884135007858276,-0.446030735969543,0.141368255019188,0.88378244638443,-0.297859698534012,0.00669507728889585,0.954586088657379,-0.10231702029705,-0.120261050760746,0.987455546855927,-0.215847447514534,-0.170162081718445,0.961485624313354,-0.0938081294298172,-0.268718898296356,0.958639681339264,-0.00572862662374973,-0.247331276535988,0.968914031982422,-0.393541276454926,-0.277537405490875,0.876412093639374,-0.0938081294298172,-0.268718898296356,0.958639681339264,-0.215847447514534,-0.170162081718445,0.961485624313354,-0.10231702029705,-0.120261050760746,0.987455546855927,-0.281401038169861,-0.23745234310627,0.92974716424942,-0.393541276454926,-0.277537405490875,0.876412093639374,-0.00572862662374973,-0.247331276535988,0.968914031982422,-0.281401038169861,-0.23745234310627,0.92974716424942,-0.371466189622879,-0.20850433409214,0.904731273651123,-0.444471001625061,-0.253340125083923,0.859223067760468,-0.252442002296448,-0.338712900876999,0.906391978263855,-0.353995352983475,-0.260671943426132,0.898185551166534,-0.217601418495178,-0.224231988191605,0.94993132352829,-0.353995352983475,-0.260671943426132,0.898185551166534,-0.371466189622879,-0.20850433409214,0.904731273651123,-0.217601418495178,-0.224231988191605,0.94993132352829,-0.547647655010223,0.211131721735001,0.809632837772369,-0.335065901279449,0.410105288028717,0.848259627819061,-0.0253782197833061,0.0764647945761681,0.996749222278595,0.0183836482465267,-0.0222958847880363,0.999582231044769,-0.24667689204216,-0.14749912917614,0.957807123661041,-0.0253782197833061,0.0764647945761681,0.996749222278595,-0.705836117267609,0.5106121301651,0.490989297628403,-0.671155273914337,0.498823404312134,0.548384547233582,-0.781966388225555,0.393921971321106,0.48306730389595,-0.539243817329407,0.549969434738159,0.637769222259521,-0.335065901279449,0.410105288028717,0.848259627819061,-0.671155273914337,0.498823404312134,0.548384547233582, +-0.705836117267609,0.5106121301651,0.490989297628403,-0.736575245857239,0.396892726421356,0.547661304473877,-0.700007915496826,0.477078557014465,0.531398952007294,-0.640441060066223,0.605327248573303,0.472667038440704,-0.700007915496826,0.477078557014465,0.531398952007294,-0.689777791500092,0.512739598751068,0.511179685592651,0.0183836482465267,-0.0222958847880363,0.999582231044769,-0.114835299551487,-0.173146039247513,0.97817850112915,-0.24667689204216,-0.14749912917614,0.957807123661041,-0.472552567720413,0.238754838705063,0.848345458507538,-0.62299919128418,0.215462476015091,0.751962602138519,-0.497143477201462,0.0973778367042542,0.8621866106987,-0.444357246160507,0.347853809595108,0.825556933879852,-0.573001444339752,0.320152223110199,0.754434704780579,-0.472552567720413,0.238754838705063,0.848345458507538,-0.573001444339752,0.320152223110199,0.754434704780579,-0.522037029266357,0.39647588133812,0.755171537399292,-0.629867970943451,0.385348051786423,0.674368619918823,-0.369284838438034,0.0356708206236362,0.928631365299225,-0.472108691930771,-0.0527706407010555,0.879959404468536,-0.279840916395187,-0.147536441683769,0.948642134666443,-0.369284838438034,0.0356708206236362,0.928631365299225,-0.375087261199951,0.183337077498436,0.908678650856018,-0.497143477201462,0.0973778367042542,0.8621866106987,-0.293450683355331,-0.341643989086151,0.892841517925262,-0.0471365563571453,-0.292251408100128,0.955179154872894,-0.279840916395187,-0.147536441683769,0.948642134666443,-0.293450683355331,-0.341643989086151,0.892841517925262,-0.252442002296448,-0.338712900876999,0.906391978263855,-0.0886774361133575,-0.354688882827759,0.930769562721252,-0.689777791500092,0.512739598751068,0.511179685592651,-0.601086437702179,0.495438903570175,0.627084791660309,-0.603323459625244,0.5991450548172,0.526332557201386,-0.629867970943451,0.385348051786423,0.674368619918823,-0.522037029266357,0.39647588133812,0.755171537399292,-0.534764170646667,0.438399821519852,0.722379982471466,-0.601086437702179,0.495438903570175,0.627084791660309,-0.534764170646667,0.438399821519852,0.722379982471466, +-0.48348468542099,0.494127154350281,0.722551584243774,0.13478696346283,0.405199497938156,0.904237627983093,-0.0112852230668068,0.299653649330139,0.953981280326843,0.221398919820786,0.32357656955719,0.91993510723114,0.0183836482465267,-0.0222958847880363,0.999582231044769,0.221398919820786,0.32357656955719,0.91993510723114,-0.0220004096627235,0.101968504488468,0.994544267654419,-0.0854602381587029,0.406855821609497,0.909485995769501,0.13478696346283,0.405199497938156,0.904237627983093,0.0124767227098346,0.425440669059753,0.904900252819061,-0.260193228721619,0.462161093950272,0.847765624523163,-0.12575401365757,0.480429619550705,0.867970705032349,-0.238917529582977,0.473097741603851,0.847995758056641,-0.0854602381587029,0.406855821609497,0.909485995769501,0.0124767227098346,0.425440669059753,0.904900252819061,-0.12575401365757,0.480429619550705,0.867970705032349,-0.260193228721619,0.462161093950272,0.847765624523163,-0.238917529582977,0.473097741603851,0.847995758056641,-0.278763324022293,0.474724858999252,0.83482164144516,-0.0997840166091919,0.461065888404846,0.881737649440765,-0.278763324022293,0.474724858999252,0.83482164144516,-0.205172345042229,0.444188982248306,0.872124016284943,-0.0997840166091919,0.461065888404846,0.881737649440765,0.123494826257229,0.414531618356705,0.901616632938385,0.031970351934433,0.459809422492981,0.887441873550415,0.199078485369682,0.38610965013504,0.900714755058289,0.031970351934433,0.459809422492981,0.887441873550415,0.261794298887253,0.415505439043045,0.871102094650269,0.36633089184761,0.365843951702118,0.855546474456787,0.338591575622559,0.448234498500824,0.827309787273407,0.144646883010864,0.484331071376801,0.862844467163086,0.0155981173738837,0.409218490123749,0.912303030490875,0.210851907730103,0.339987516403198,0.916487812995911,0.144646883010864,0.484331071376801,0.862844467163086,0.0155981173738837,0.409218490123749,0.912303030490875,-0.150894448161125,0.327793836593628,0.932621002197266,0.0267036035656929,0.266716927289963,0.963404834270477,-0.0060020862147212,0.273110121488571,0.961964011192322, +-0.150894448161125,0.327793836593628,0.932621002197266,-0.0413791313767433,0.339169234037399,0.939814805984497,0.199078485369682,0.38610965013504,0.900714755058289,0.261794298887253,0.415505439043045,0.871102094650269,0.392720013856888,0.384200841188431,0.835560083389282,0.36633089184761,0.365843951702118,0.855546474456787,0.392720013856888,0.384200841188431,0.835560083389282,0.338591575622559,0.448234498500824,0.827309787273407,0.167693793773651,0.403976023197174,0.899267494678497,0.223671555519104,0.321366280317307,0.920160114765167,-0.0060020862147212,0.273110121488571,0.961964011192322,0.237124502658844,0.469708621501923,0.850379765033722,0.167693793773651,0.403976023197174,0.899267494678497,0.0606982745230198,0.479367136955261,0.875512838363647,0.0713720172643662,0.538539171218872,0.839572191238403,0.237124502658844,0.469708621501923,0.850379765033722,0.0606982745230198,0.479367136955261,0.875512838363647,-0.127938777208328,0.473729997873306,0.87132740020752,0.0357851162552834,0.42984676361084,0.902192413806915,0.0713720172643662,0.538539171218872,0.839572191238403,-0.127938777208328,0.473729997873306,0.87132740020752,-0.0863652005791664,0.390618085861206,0.916492462158203,-0.190063312649727,0.359921514987946,0.913417935371399,0.116519115865231,0.281676322221756,0.952408313751221,-0.182232171297073,0.291981071233749,0.938902795314789,-0.0863652005791664,0.390618085861206,0.916492462158203,-0.0138370776548982,0.249558001756668,0.968260943889618,0.094586469233036,0.340464115142822,0.935487806797028,0.0309427361935377,0.19627334177494,0.980060815811157,-0.0138370776548982,0.249558001756668,0.968260943889618,0.099195584654808,0.430413246154785,0.897164702415466,0.094586469233036,0.340464115142822,0.935487806797028,0.116519115865231,0.281676322221756,0.952408313751221,0.129524633288383,0.182934284210205,0.974555432796478,-0.0267785228788853,0.23379772901535,0.971916377544403,0.0309427361935377,0.19627334177494,0.980060815811157,0.129524633288383,0.182934284210205,0.974555432796478,0.00826482754200697,0.0969062224030495,0.995259165763855, +0.136618614196777,0.423962980508804,0.895315945148468,0.0160410609096289,0.393268972635269,0.919283509254456,-0.0226036328822374,0.374068170785904,0.927125632762909,-0.170585066080093,0.371656179428101,0.912563562393188,-0.0226036328822374,0.374068170785904,0.927125632762909,-0.115861721336842,0.396198451519012,0.910825312137604,0.0160410609096289,0.393268972635269,0.919283509254456,0.136618614196777,0.423962980508804,0.895315945148468,0.099195584654808,0.430413246154785,0.897164702415466,0.289669722318649,0.0577834844589233,0.955380797386169,0.28500509262085,0.0446630083024502,0.957484841346741,0.299974471330643,0.0885767713189125,0.949826002120972,0.289669722318649,0.0577834844589233,0.955380797386169,0.276407986879349,0.0273561291396618,0.96065092086792,0.284545183181763,-0.120181113481522,0.951099574565887,0.245692268013954,-0.24162757396698,0.938749849796295,0.16749107837677,-0.711831212043762,0.682087182998657,0.218509346246719,-0.556130886077881,0.801855385303497,0.247418656945229,-0.355897039175034,0.901177644729614,0.282634675502777,-0.0593121312558651,0.95739209651947,0.218509346246719,-0.556130886077881,0.801855385303497,0.284545183181763,-0.120181113481522,0.951099574565887,0.276407986879349,0.0273561291396618,0.96065092086792,0.247418656945229,-0.355897039175034,0.901177644729614,0.30853146314621,0.245821341872215,0.918901562690735,0.299974471330643,0.0885767713189125,0.949826002120972,0.278272151947021,0.185657814145088,0.942388296127319,0.22350849211216,0.130906105041504,0.965871334075928,0.30853146314621,0.245821341872215,0.918901562690735,0.204497382044792,-0.0537295006215572,0.977391242980957,0.172458738088608,0.0686039701104164,0.982624769210815,0.0875439494848251,-0.145833566784859,0.985428094863892,-0.0259303692728281,-0.512676000595093,0.858190417289734,0.22350849211216,0.130906105041504,0.965871334075928,0.0214574746787548,-0.310620427131653,0.950291752815247,0.231172353029251,0.2387335896492,0.943167686462402,0.0875439494848251,-0.145833566784859,0.985428094863892,0.231172353029251,0.2387335896492,0.943167686462402, +0.0214574746787548,-0.310620427131653,0.950291752815247,-0.317292362451553,-0.541742026805878,0.778357863426209,-0.205875590443611,-0.551023662090302,0.808695316314697,-0.379826217889786,-0.363878905773163,0.850484609603882,-0.0259303692728281,-0.512676000595093,0.858190417289734,-0.132649108767509,-0.688486158847809,0.71301531791687,-0.0902806520462036,-0.627527475357056,0.773342430591583,-0.205875590443611,-0.551023662090302,0.808695316314697,-0.0902806520462036,-0.627527475357056,0.773342430591583,-0.174205154180527,-0.565521717071533,0.806125044822693,-0.313559919595718,-0.228925079107285,0.921560168266296,-0.264587908983231,-0.315759122371674,0.911202132701874,-0.379826217889786,-0.363878905773163,0.850484609603882,-0.303190767765045,-0.278617709875107,0.911288857460022,-0.133802995085716,-0.255438387393951,0.957521736621857,-0.313559919595718,-0.228925079107285,0.921560168266296,-0.459690183401108,-0.343426823616028,0.818988919258118,-0.447878748178482,-0.442914187908173,0.776679813861847,-0.41497415304184,-0.43052014708519,0.801528990268707,-0.447878748178482,-0.442914187908173,0.776679813861847,-0.354357033967972,-0.37569996714592,0.85631799697876,-0.413030952215195,-0.38897779583931,0.823469221591949,-0.303190767765045,-0.278617709875107,0.911288857460022,-0.381822735071182,-0.294540882110596,0.876046240329742,-0.413030952215195,-0.38897779583931,0.823469221591949,-0.459690183401108,-0.343426823616028,0.818988919258118,-0.394739300012589,-0.362034112215042,0.844459593296051,-0.448075652122498,-0.228849858045578,0.864208221435547,-0.45914751291275,-0.0865375399589539,0.884135007858276,-0.448075652122498,-0.228849858045578,0.864208221435547,-0.438236474990845,0.0115110147744417,0.898785948753357,-0.438236474990845,0.0115110147744417,0.898785948753357,-0.446030735969543,0.141368255019188,0.88378244638443,-0.45914751291275,-0.0865375399589539,0.884135007858276,-0.297859698534012,0.00669507728889585,0.954586088657379,-0.446030735969543,0.141368255019188,0.88378244638443,-0.323461532592773,0.0612037219107151,0.944259822368622, +-0.10231702029705,-0.120261050760746,0.987455546855927,-0.297859698534012,0.00669507728889585,0.954586088657379,-0.323461532592773,0.0612037219107151,0.944259822368622,-0.0938081294298172,-0.268718898296356,0.958639681339264,0.101315304636955,-0.2437494546175,0.964531660079956,-0.00572862662374973,-0.247331276535988,0.968914031982422,-0.10231702029705,-0.120261050760746,0.987455546855927,0.101315304636955,-0.2437494546175,0.964531660079956,-0.0938081294298172,-0.268718898296356,0.958639681339264,-0.00572862662374973,-0.247331276535988,0.968914031982422,-0.0334517136216164,-0.208664044737816,0.977415025234222,-0.281401038169861,-0.23745234310627,0.92974716424942,-0.281401038169861,-0.23745234310627,0.92974716424942,-0.217601418495178,-0.224231988191605,0.94993132352829,-0.371466189622879,-0.20850433409214,0.904731273651123,-0.209770813584328,-0.269928157329559,0.939752578735352,-0.252442002296448,-0.338712900876999,0.906391978263855,-0.217601418495178,-0.224231988191605,0.94993132352829,0.0648594722151756,0.330625355243683,0.941530644893646,-0.0253782197833061,0.0764647945761681,0.996749222278595,-0.335065901279449,0.410105288028717,0.848259627819061,-0.0253782197833061,0.0764647945761681,0.996749222278595,0.260425508022308,0.201003059744835,0.944339036941528,0.0183836482465267,-0.0222958847880363,0.999582231044769,-0.636635839939117,0.632672071456909,0.440931648015976,-0.671155273914337,0.498823404312134,0.548384547233582,-0.705836117267609,0.5106121301651,0.490989297628403,-0.315874487161636,0.443325936794281,0.838859498500824,-0.335065901279449,0.410105288028717,0.848259627819061,-0.539243817329407,0.549969434738159,0.637769222259521,-0.636635839939117,0.632672071456909,0.440931648015976,-0.539243817329407,0.549969434738159,0.637769222259521,-0.671155273914337,0.498823404312134,0.548384547233582,-0.700007915496826,0.477078557014465,0.531398952007294,-0.635668337345123,0.626442015171051,0.451105266809464,-0.705836117267609,0.5106121301651,0.490989297628403,-0.640441060066223,0.605327248573303,0.472667038440704,-0.635668337345123,0.626442015171051,0.451105266809464, +-0.700007915496826,0.477078557014465,0.531398952007294,-0.603323459625244,0.5991450548172,0.526332557201386,-0.640441060066223,0.605327248573303,0.472667038440704,-0.689777791500092,0.512739598751068,0.511179685592651,-0.497143477201462,0.0973778367042542,0.8621866106987,-0.375087261199951,0.183337077498436,0.908678650856018,-0.472552567720413,0.238754838705063,0.848345458507538,-0.573001444339752,0.320152223110199,0.754434704780579,-0.444357246160507,0.347853809595108,0.825556933879852,-0.522037029266357,0.39647588133812,0.755171537399292,-0.472552567720413,0.238754838705063,0.848345458507538,-0.360474288463593,0.28840047121048,0.887064456939697,-0.444357246160507,0.347853809595108,0.825556933879852,-0.279840916395187,-0.147536441683769,0.948642134666443,-0.152312874794006,0.00693594291806221,0.988307952880859,-0.369284838438034,0.0356708206236362,0.928631365299225,-0.369284838438034,0.0356708206236362,0.928631365299225,-0.18723401427269,0.173806369304657,0.966816663742065,-0.375087261199951,0.183337077498436,0.908678650856018,-0.293450683355331,-0.341643989086151,0.892841517925262,-0.0886774361133575,-0.354688882827759,0.930769562721252,-0.0471365563571453,-0.292251408100128,0.955179154872894,-0.0471365563571453,-0.292251408100128,0.955179154872894,0.0784733891487122,-0.129872739315033,0.988420426845551,-0.279840916395187,-0.147536441683769,0.948642134666443,-0.209770813584328,-0.269928157329559,0.939752578735352,-0.0886774361133575,-0.354688882827759,0.930769562721252,-0.252442002296448,-0.338712900876999,0.906391978263855,-0.603323459625244,0.5991450548172,0.526332557201386,-0.601086437702179,0.495438903570175,0.627084791660309,-0.507077217102051,0.606642067432404,0.612256407737732,-0.522037029266357,0.39647588133812,0.755171537399292,-0.441208571195602,0.414508998394012,0.795937895774841,-0.534764170646667,0.438399821519852,0.722379982471466,-0.48348468542099,0.494127154350281,0.722551584243774,-0.534764170646667,0.438399821519852,0.722379982471466,-0.441208571195602,0.414508998394012,0.795937895774841,-0.601086437702179,0.495438903570175,0.627084791660309, +-0.48348468542099,0.494127154350281,0.722551584243774,-0.507077217102051,0.606642067432404,0.612256407737732,0.13478696346283,0.405199497938156,0.904237627983093,0.221398919820786,0.32357656955719,0.91993510723114,0.265602320432663,0.382017701864243,0.885165393352509,0.260425508022308,0.201003059744835,0.944339036941528,0.221398919820786,0.32357656955719,0.91993510723114,0.0183836482465267,-0.0222958847880363,0.999582231044769,0.0636734738945961,0.342715442180634,0.937278926372528,0.0124767227098346,0.425440669059753,0.904900252819061,0.13478696346283,0.405199497938156,0.904237627983093,-0.149759024381638,0.533650279045105,0.832339823246002,-0.238917529582977,0.473097741603851,0.847995758056641,-0.12575401365757,0.480429619550705,0.867970705032349,-0.0967390164732933,0.408581286668777,0.907580733299255,-0.12575401365757,0.480429619550705,0.867970705032349,0.0124767227098346,0.425440669059753,0.904900252819061,-0.278763324022293,0.474724858999252,0.83482164144516,-0.238917529582977,0.473097741603851,0.847995758056641,-0.205172345042229,0.444188982248306,0.872124016284943,-0.146359711885452,0.458258777856827,0.876685559749603,-0.0997840166091919,0.461065888404846,0.881737649440765,-0.205172345042229,0.444188982248306,0.872124016284943,0.00277008465491235,0.454153031110764,0.890919327735901,0.123494826257229,0.414531618356705,0.901616632938385,-0.0997840166091919,0.461065888404846,0.881737649440765,0.031970351934433,0.459809422492981,0.887441873550415,0.123494826257229,0.414531618356705,0.901616632938385,0.261794298887253,0.415505439043045,0.871102094650269,0.144646883010864,0.484331071376801,0.862844467163086,0.338591575622559,0.448234498500824,0.827309787273407,0.178815573453903,0.562302052974701,0.807366847991943,0.0155981173738837,0.409218490123749,0.912303030490875,0.144646883010864,0.484331071376801,0.862844467163086,-0.075469397008419,0.476377457380295,0.875995874404907,0.0155981173738837,0.409218490123749,0.912303030490875,-0.075469397008419,0.476377457380295,0.875995874404907,-0.150894448161125,0.327793836593628,0.932621002197266, +-0.207679361104965,0.353434801101685,0.912114560604095,-0.0413791313767433,0.339169234037399,0.939814805984497,-0.150894448161125,0.327793836593628,0.932621002197266,-0.0060020862147212,0.273110121488571,0.961964011192322,-0.0413791313767433,0.339169234037399,0.939814805984497,0.167693793773651,0.403976023197174,0.899267494678497,0.284897685050964,0.411706954240799,0.865638792514801,0.392720013856888,0.384200841188431,0.835560083389282,0.261794298887253,0.415505439043045,0.871102094650269,0.338591575622559,0.448234498500824,0.827309787273407,0.392720013856888,0.384200841188431,0.835560083389282,0.322305023670197,0.478769451379776,0.816638946533203,0.0606982745230198,0.479367136955261,0.875512838363647,0.167693793773651,0.403976023197174,0.899267494678497,-0.0413791313767433,0.339169234037399,0.939814805984497,0.0606982745230198,0.479367136955261,0.875512838363647,0.00529352389276028,0.501917958259583,0.864898920059204,0.0713720172643662,0.538539171218872,0.839572191238403,-0.127938777208328,0.473729997873306,0.87132740020752,0.0713720172643662,0.538539171218872,0.839572191238403,-0.0174383465200663,0.495700091123581,0.868318617343903,-0.127938777208328,0.473729997873306,0.87132740020752,-0.0174383465200663,0.495700091123581,0.868318617343903,-0.0863652005791664,0.390618085861206,0.916492462158203,0.116519115865231,0.281676322221756,0.952408313751221,-0.0863652005791664,0.390618085861206,0.916492462158203,0.202450111508369,0.351367443799973,0.914086818695068,-0.0138370776548982,0.249558001756668,0.968260943889618,0.0309427361935377,0.19627334177494,0.980060815811157,0.00826482754200697,0.0969062224030495,0.995259165763855,0.023600235581398,0.334802091121674,0.941992819309235,0.099195584654808,0.430413246154785,0.897164702415466,-0.0138370776548982,0.249558001756668,0.968260943889618,0.140619903802872,0.203772723674774,0.968866646289825,0.129524633288383,0.182934284210205,0.974555432796478,0.116519115865231,0.281676322221756,0.952408313751221,0.00826482754200697,0.0969062224030495,0.995259165763855,0.129524633288383,0.182934284210205,0.974555432796478, +0.140619903802872,0.203772723674774,0.968866646289825,0.0160410609096289,0.393268972635269,0.919283509254456,-0.115861721336842,0.396198451519012,0.910825312137604,-0.0226036328822374,0.374068170785904,0.927125632762909,-0.115861721336842,0.396198451519012,0.910825312137604,-0.222731307148933,0.354214578866959,0.908252537250519,-0.170585066080093,0.371656179428101,0.912563562393188,0.0160410609096289,0.393268972635269,0.919283509254456,0.099195584654808,0.430413246154785,0.897164702415466,0.023600235581398,0.334802091121674,0.941992819309235,0.28500509262085,0.0446630083024502,0.957484841346741,0.289669722318649,0.0577834844589233,0.955380797386169,0.284545183181763,-0.120181113481522,0.951099574565887,0.299974471330643,0.0885767713189125,0.949826002120972,0.28500509262085,0.0446630083024502,0.957484841346741,0.238079339265823,0.0721782967448235,0.968559980392456,0.234387576580048,0.162383526563644,0.958485245704651,0.278272151947021,0.185657814145088,0.942388296127319,0.299974471330643,0.0885767713189125,0.949826002120972,0.30853146314621,0.245821341872215,0.918901562690735,0.278272151947021,0.185657814145088,0.942388296127319,0.204497382044792,-0.0537295006215572,0.977391242980957,0.22350849211216,0.130906105041504,0.965871334075928,0.204497382044792,-0.0537295006215572,0.977391242980957,0.0641911253333092,-0.438263207674026,0.896551549434662,-0.0259303692728281,-0.512676000595093,0.858190417289734,0.0875439494848251,-0.145833566784859,0.985428094863892,-0.0780157446861267,-0.616507112979889,0.783474564552307,0.22350849211216,0.130906105041504,0.965871334075928,0.0641911253333092,-0.438263207674026,0.896551549434662,0.0214574746787548,-0.310620427131653,0.950291752815247,0.0875439494848251,-0.145833566784859,0.985428094863892,0.0214574746787548,-0.310620427131653,0.950291752815247,-0.0780157446861267,-0.616507112979889,0.783474564552307,-0.240078449249268,-0.384884089231491,0.891193807125092,-0.379826217889786,-0.363878905773163,0.850484609603882,-0.205875590443611,-0.551023662090302,0.808695316314697,-0.0259303692728281,-0.512676000595093,0.858190417289734, +-0.0780157446861267,-0.616507112979889,0.783474564552307,-0.132649108767509,-0.688486158847809,0.71301531791687,-0.174205154180527,-0.565521717071533,0.806125044822693,-0.0902806520462036,-0.627527475357056,0.773342430591583,-0.132649108767509,-0.688486158847809,0.71301531791687,-0.205875590443611,-0.551023662090302,0.808695316314697,-0.174205154180527,-0.565521717071533,0.806125044822693,-0.240078449249268,-0.384884089231491,0.891193807125092,-0.379826217889786,-0.363878905773163,0.850484609603882,-0.347861707210541,-0.239952698349953,0.906319379806519,-0.313559919595718,-0.228925079107285,0.921560168266296,-0.313559919595718,-0.228925079107285,0.921560168266296,-0.347861707210541,-0.239952698349953,0.906319379806519,-0.303190767765045,-0.278617709875107,0.911288857460022,-0.447878748178482,-0.442914187908173,0.776679813861847,-0.411789327859879,-0.417485773563385,0.810021698474884,-0.41497415304184,-0.43052014708519,0.801528990268707,-0.394739300012589,-0.362034112215042,0.844459593296051,-0.459690183401108,-0.343426823616028,0.818988919258118,-0.41497415304184,-0.43052014708519,0.801528990268707,-0.411789327859879,-0.417485773563385,0.810021698474884,-0.447878748178482,-0.442914187908173,0.776679813861847,-0.413030952215195,-0.38897779583931,0.823469221591949,-0.381822735071182,-0.294540882110596,0.876046240329742,-0.303190767765045,-0.278617709875107,0.911288857460022,-0.347861707210541,-0.239952698349953,0.906319379806519,-0.411789327859879,-0.417485773563385,0.810021698474884,-0.413030952215195,-0.38897779583931,0.823469221591949,-0.381822735071182,-0.294540882110596,0.876046240329742,-0.350214272737503,-0.187934219837189,0.917622208595276,-0.448075652122498,-0.228849858045578,0.864208221435547,-0.394739300012589,-0.362034112215042,0.844459593296051,-0.438236474990845,0.0115110147744417,0.898785948753357,-0.448075652122498,-0.228849858045578,0.864208221435547,-0.350214272737503,-0.187934219837189,0.917622208595276,-0.34295517206192,0.132272988557816,0.929992079734802,-0.446030735969543,0.141368255019188,0.88378244638443, +-0.438236474990845,0.0115110147744417,0.898785948753357,-0.382714509963989,0.0484229698777199,0.92259669303894,-0.323461532592773,0.0612037219107151,0.944259822368622,-0.446030735969543,0.141368255019188,0.88378244638443,-0.323461532592773,0.0612037219107151,0.944259822368622,-0.382714509963989,0.0484229698777199,0.92259669303894,-0.10231702029705,-0.120261050760746,0.987455546855927,0.101315304636955,-0.2437494546175,0.964531660079956,0.0275514479726553,-0.231069773435593,0.972546994686127,-0.00572862662374973,-0.247331276535988,0.968914031982422,0.101315304636955,-0.2437494546175,0.964531660079956,-0.10231702029705,-0.120261050760746,0.987455546855927,0.0275514479726553,-0.231069773435593,0.972546994686127,-0.00572862662374973,-0.247331276535988,0.968914031982422,0.119882509112358,-0.216166958212852,0.968968451023102,-0.0334517136216164,-0.208664044737816,0.977415025234222,-0.0334517136216164,-0.208664044737816,0.977415025234222,-0.217601418495178,-0.224231988191605,0.94993132352829,-0.281401038169861,-0.23745234310627,0.92974716424942,-0.209770813584328,-0.269928157329559,0.939752578735352,-0.217601418495178,-0.224231988191605,0.94993132352829,-0.199443563818932,-0.258914470672607,0.945084929466248,0.0648594722151756,0.330625355243683,0.941530644893646,0.260425508022308,0.201003059744835,0.944339036941528,-0.0253782197833061,0.0764647945761681,0.996749222278595,0.0648594722151756,0.330625355243683,0.941530644893646,-0.335065901279449,0.410105288028717,0.848259627819061,-0.315874487161636,0.443325936794281,0.838859498500824,-0.635668337345123,0.626442015171051,0.451105266809464,-0.636635839939117,0.632672071456909,0.440931648015976,-0.705836117267609,0.5106121301651,0.490989297628403,-0.315874487161636,0.443325936794281,0.838859498500824,-0.539243817329407,0.549969434738159,0.637769222259521,-0.433520287275314,0.266040325164795,0.860977709293365,-0.539243817329407,0.549969434738159,0.637769222259521,-0.636635839939117,0.632672071456909,0.440931648015976,-0.556917250156403,0.639157056808472,0.530397236347198,-0.640441060066223,0.605327248573303,0.472667038440704, +-0.551063477993011,0.742854118347168,0.380127161741257,-0.635668337345123,0.626442015171051,0.451105266809464,-0.603323459625244,0.5991450548172,0.526332557201386,-0.518564462661743,0.714755177497864,0.469271510839462,-0.640441060066223,0.605327248573303,0.472667038440704,-0.472552567720413,0.238754838705063,0.848345458507538,-0.375087261199951,0.183337077498436,0.908678650856018,-0.360474288463593,0.28840047121048,0.887064456939697,-0.444357246160507,0.347853809595108,0.825556933879852,-0.441208571195602,0.414508998394012,0.795937895774841,-0.522037029266357,0.39647588133812,0.755171537399292,-0.328831642866135,0.339123517274857,0.881399393081665,-0.444357246160507,0.347853809595108,0.825556933879852,-0.360474288463593,0.28840047121048,0.887064456939697,0.0784733891487122,-0.129872739315033,0.988420426845551,-0.152312874794006,0.00693594291806221,0.988307952880859,-0.279840916395187,-0.147536441683769,0.948642134666443,-0.369284838438034,0.0356708206236362,0.928631365299225,-0.152312874794006,0.00693594291806221,0.988307952880859,-0.18723401427269,0.173806369304657,0.966816663742065,-0.18723401427269,0.173806369304657,0.966816663742065,-0.20365247130394,0.280730247497559,0.937931776046753,-0.375087261199951,0.183337077498436,0.908678650856018,-0.0886774361133575,-0.354688882827759,0.930769562721252,0.145753160119057,-0.257337868213654,0.955265998840332,-0.0471365563571453,-0.292251408100128,0.955179154872894,-0.0471365563571453,-0.292251408100128,0.955179154872894,0.145753160119057,-0.257337868213654,0.955265998840332,0.0784733891487122,-0.129872739315033,0.988420426845551,-0.0886774361133575,-0.354688882827759,0.930769562721252,-0.209770813584328,-0.269928157329559,0.939752578735352,-0.00888291280716658,-0.25619649887085,0.966583847999573,-0.603323459625244,0.5991450548172,0.526332557201386,-0.507077217102051,0.606642067432404,0.612256407737732,-0.518564462661743,0.714755177497864,0.469271510839462,-0.48348468542099,0.494127154350281,0.722551584243774,-0.441208571195602,0.414508998394012,0.795937895774841,-0.354392647743225,0.48661482334137,0.798505961894989, +-0.507077217102051,0.606642067432404,0.612256407737732,-0.48348468542099,0.494127154350281,0.722551584243774,-0.42052149772644,0.588859856128693,0.69022136926651,0.221398919820786,0.32357656955719,0.91993510723114,0.145258784294128,0.284676551818848,0.947554230690002,0.265602320432663,0.382017701864243,0.885165393352509,0.0636734738945961,0.342715442180634,0.937278926372528,0.13478696346283,0.405199497938156,0.904237627983093,0.265602320432663,0.382017701864243,0.885165393352509,0.221398919820786,0.32357656955719,0.91993510723114,0.260425508022308,0.201003059744835,0.944339036941528,0.145258784294128,0.284676551818848,0.947554230690002,-0.0967390164732933,0.408581286668777,0.907580733299255,0.0124767227098346,0.425440669059753,0.904900252819061,0.0636734738945961,0.342715442180634,0.937278926372528,-0.238917529582977,0.473097741603851,0.847995758056641,-0.149759024381638,0.533650279045105,0.832339823246002,-0.203341916203499,0.490234702825546,0.847538709640503,-0.149759024381638,0.533650279045105,0.832339823246002,-0.12575401365757,0.480429619550705,0.867970705032349,-0.144358798861504,0.543385446071625,0.826978027820587,-0.0967390164732933,0.408581286668777,0.907580733299255,-0.154226958751678,0.485750824213028,0.860383689403534,-0.12575401365757,0.480429619550705,0.867970705032349,-0.238917529582977,0.473097741603851,0.847995758056641,-0.203341916203499,0.490234702825546,0.847538709640503,-0.205172345042229,0.444188982248306,0.872124016284943,-0.0997840166091919,0.461065888404846,0.881737649440765,-0.146359711885452,0.458258777856827,0.876685559749603,0.00277008465491235,0.454153031110764,0.890919327735901,-0.203341916203499,0.490234702825546,0.847538709640503,-0.146359711885452,0.458258777856827,0.876685559749603,-0.205172345042229,0.444188982248306,0.872124016284943,0.146157950162888,0.42800235748291,0.891880869865417,0.123494826257229,0.414531618356705,0.901616632938385,0.00277008465491235,0.454153031110764,0.890919327735901,0.284897685050964,0.411706954240799,0.865638792514801,0.261794298887253,0.415505439043045,0.871102094650269, +0.123494826257229,0.414531618356705,0.901616632938385,0.178815573453903,0.562302052974701,0.807366847991943,0.338591575622559,0.448234498500824,0.827309787273407,0.322305023670197,0.478769451379776,0.816638946533203,0.0478980652987957,0.568480312824249,0.821301221847534,0.144646883010864,0.484331071376801,0.862844467163086,0.178815573453903,0.562302052974701,0.807366847991943,0.144646883010864,0.484331071376801,0.862844467163086,0.0478980652987957,0.568480312824249,0.821301221847534,-0.075469397008419,0.476377457380295,0.875995874404907,-0.150894448161125,0.327793836593628,0.932621002197266,-0.075469397008419,0.476377457380295,0.875995874404907,-0.210894584655762,0.363800972700119,0.907288372516632,-0.207679361104965,0.353434801101685,0.912114560604095,0.0606982745230198,0.479367136955261,0.875512838363647,-0.0413791313767433,0.339169234037399,0.939814805984497,-0.207679361104965,0.353434801101685,0.912114560604095,-0.150894448161125,0.327793836593628,0.932621002197266,-0.210894584655762,0.363800972700119,0.907288372516632,0.392720013856888,0.384200841188431,0.835560083389282,0.284897685050964,0.411706954240799,0.865638792514801,0.322305023670197,0.478769451379776,0.816638946533203,0.0606982745230198,0.479367136955261,0.875512838363647,-0.119992017745972,0.433786779642105,0.892989814281464,0.00529352389276028,0.501917958259583,0.864898920059204,0.0713720172643662,0.538539171218872,0.839572191238403,0.00529352389276028,0.501917958259583,0.864898920059204,-0.0174383465200663,0.495700091123581,0.868318617343903,-0.0863652005791664,0.390618085861206,0.916492462158203,-0.0174383465200663,0.495700091123581,0.868318617343903,0.0556429587304592,0.399742692708969,0.914936900138855,0.0556429587304592,0.399742692708969,0.914936900138855,0.202450111508369,0.351367443799973,0.914086818695068,-0.0863652005791664,0.390618085861206,0.916492462158203,0.202450111508369,0.351367443799973,0.914086818695068,0.18863944709301,0.328736305236816,0.925390481948853,0.116519115865231,0.281676322221756,0.952408313751221,-0.0138370776548982,0.249558001756668,0.968260943889618, +0.00826482754200697,0.0969062224030495,0.995259165763855,-0.0554574616253376,0.153167769312859,0.986642777919769,-0.0138370776548982,0.249558001756668,0.968260943889618,-0.0554574616253376,0.153167769312859,0.986642777919769,0.023600235581398,0.334802091121674,0.941992819309235,0.18863944709301,0.328736305236816,0.925390481948853,0.140619903802872,0.203772723674774,0.968866646289825,0.116519115865231,0.281676322221756,0.952408313751221,-0.0446717888116837,0.117344312369823,0.992085993289948,0.00826482754200697,0.0969062224030495,0.995259165763855,0.140619903802872,0.203772723674774,0.968866646289825,0.0160410609096289,0.393268972635269,0.919283509254456,-0.103978648781776,0.236527606844902,0.966045081615448,-0.115861721336842,0.396198451519012,0.910825312137604,-0.115861721336842,0.396198451519012,0.910825312137604,-0.103978648781776,0.236527606844902,0.966045081615448,-0.222731307148933,0.354214578866959,0.908252537250519,0.023600235581398,0.334802091121674,0.941992819309235,-0.0554574616253376,0.153167769312859,0.986642777919769,0.0160410609096289,0.393268972635269,0.919283509254456,0.28500509262085,0.0446630083024502,0.957484841346741,0.284545183181763,-0.120181113481522,0.951099574565887,0.287048995494843,-0.331043183803558,0.898895502090454,0.28500509262085,0.0446630083024502,0.957484841346741,0.232683315873146,-0.116002723574638,0.965609550476074,0.238079339265823,0.0721782967448235,0.968559980392456,0.234387576580048,0.162383526563644,0.958485245704651,0.299974471330643,0.0885767713189125,0.949826002120972,0.238079339265823,0.0721782967448235,0.968559980392456,0.234387576580048,0.162383526563644,0.958485245704651,0.170557156205177,0.047172199934721,0.984217941761017,0.278272151947021,0.185657814145088,0.942388296127319,0.204497382044792,-0.0537295006215572,0.977391242980957,0.278272151947021,0.185657814145088,0.942388296127319,0.13853295147419,-0.142608046531677,0.980036497116089,0.0641911253333092,-0.438263207674026,0.896551549434662,0.204497382044792,-0.0537295006215572,0.977391242980957,0.0536942556500435,-0.477733433246613,0.876862347126007, +0.0641911253333092,-0.438263207674026,0.896551549434662,-0.104609645903111,-0.660065054893494,0.743889033794403,0.0214574746787548,-0.310620427131653,0.950291752815247,-0.104609645903111,-0.660065054893494,0.743889033794403,-0.0780157446861267,-0.616507112979889,0.783474564552307,0.0214574746787548,-0.310620427131653,0.950291752815247,-0.240078449249268,-0.384884089231491,0.891193807125092,-0.347861707210541,-0.239952698349953,0.906319379806519,-0.379826217889786,-0.363878905773163,0.850484609603882,-0.104609645903111,-0.660065054893494,0.743889033794403,-0.132649108767509,-0.688486158847809,0.71301531791687,-0.0780157446861267,-0.616507112979889,0.783474564552307,-0.172486573457718,-0.549630165100098,0.817407429218292,-0.174205154180527,-0.565521717071533,0.806125044822693,-0.132649108767509,-0.688486158847809,0.71301531791687,-0.209282353520393,-0.411310106515884,0.887144148349762,-0.240078449249268,-0.384884089231491,0.891193807125092,-0.174205154180527,-0.565521717071533,0.806125044822693,-0.411789327859879,-0.417485773563385,0.810021698474884,-0.312497198581696,-0.451758295297623,0.835619390010834,-0.41497415304184,-0.43052014708519,0.801528990268707,-0.299234688282013,-0.451841235160828,0.840415358543396,-0.394739300012589,-0.362034112215042,0.844459593296051,-0.41497415304184,-0.43052014708519,0.801528990268707,-0.381822735071182,-0.294540882110596,0.876046240329742,-0.347861707210541,-0.239952698349953,0.906319379806519,-0.253126084804535,-0.303161978721619,0.918705523014069,-0.295555889606476,-0.355148434638977,0.886857450008392,-0.411789327859879,-0.417485773563385,0.810021698474884,-0.381822735071182,-0.294540882110596,0.876046240329742,-0.350214272737503,-0.187934219837189,0.917622208595276,-0.394739300012589,-0.362034112215042,0.844459593296051,-0.267946690320969,-0.334486454725266,0.903506100177765,-0.438236474990845,0.0115110147744417,0.898785948753357,-0.350214272737503,-0.187934219837189,0.917622208595276,-0.324292033910751,-0.00854876916855574,0.945918321609497,-0.34295517206192,0.132272988557816,0.929992079734802, +-0.36165127158165,0.131866320967674,0.922940731048584,-0.446030735969543,0.141368255019188,0.88378244638443,-0.438236474990845,0.0115110147744417,0.898785948753357,-0.324292033910751,-0.00854876916855574,0.945918321609497,-0.34295517206192,0.132272988557816,0.929992079734802,-0.382714509963989,0.0484229698777199,0.92259669303894,-0.446030735969543,0.141368255019188,0.88378244638443,-0.36165127158165,0.131866320967674,0.922940731048584,-0.10231702029705,-0.120261050760746,0.987455546855927,-0.382714509963989,0.0484229698777199,0.92259669303894,-0.28510046005249,-0.135200932621956,0.948914289474487,0.0275514479726553,-0.231069773435593,0.972546994686127,0.119882509112358,-0.216166958212852,0.968968451023102,-0.00572862662374973,-0.247331276535988,0.968914031982422,-0.10231702029705,-0.120261050760746,0.987455546855927,-0.28510046005249,-0.135200932621956,0.948914289474487,0.0275514479726553,-0.231069773435593,0.972546994686127,-0.0999661087989807,-0.32399308681488,0.940763056278229,-0.0334517136216164,-0.208664044737816,0.977415025234222,0.119882509112358,-0.216166958212852,0.968968451023102,-0.217601418495178,-0.224231988191605,0.94993132352829,-0.0334517136216164,-0.208664044737816,0.977415025234222,-0.199443563818932,-0.258914470672607,0.945084929466248,-0.209770813584328,-0.269928157329559,0.939752578735352,-0.199443563818932,-0.258914470672607,0.945084929466248,-0.230247750878334,-0.320855557918549,0.918715178966522,0.0648594722151756,0.330625355243683,0.941530644893646,0.145258784294128,0.284676551818848,0.947554230690002,0.260425508022308,0.201003059744835,0.944339036941528,-0.187902331352234,0.264447927474976,0.94591748714447,0.0648594722151756,0.330625355243683,0.941530644893646,-0.315874487161636,0.443325936794281,0.838859498500824,-0.565682291984558,0.714127719402313,0.412340849637985,-0.636635839939117,0.632672071456909,0.440931648015976,-0.635668337345123,0.626442015171051,0.451105266809464,-0.433520287275314,0.266040325164795,0.860977709293365,-0.539243817329407,0.549969434738159,0.637769222259521,-0.482998996973038,0.416776418685913,0.770070910453796, +-0.187902331352234,0.264447927474976,0.94591748714447,-0.315874487161636,0.443325936794281,0.838859498500824,-0.433520287275314,0.266040325164795,0.860977709293365,-0.565682291984558,0.714127719402313,0.412340849637985,-0.556917250156403,0.639157056808472,0.530397236347198,-0.636635839939117,0.632672071456909,0.440931648015976,-0.539243817329407,0.549969434738159,0.637769222259521,-0.556917250156403,0.639157056808472,0.530397236347198,-0.482998996973038,0.416776418685913,0.770070910453796,-0.551063477993011,0.742854118347168,0.380127161741257,-0.640441060066223,0.605327248573303,0.472667038440704,-0.518564462661743,0.714755177497864,0.469271510839462,-0.551063477993011,0.742854118347168,0.380127161741257,-0.565682291984558,0.714127719402313,0.412340849637985,-0.635668337345123,0.626442015171051,0.451105266809464,-0.20365247130394,0.280730247497559,0.937931776046753,-0.360474288463593,0.28840047121048,0.887064456939697,-0.375087261199951,0.183337077498436,0.908678650856018,-0.328831642866135,0.339123517274857,0.881399393081665,-0.441208571195602,0.414508998394012,0.795937895774841,-0.444357246160507,0.347853809595108,0.825556933879852,-0.20365247130394,0.280730247497559,0.937931776046753,-0.328831642866135,0.339123517274857,0.881399393081665,-0.360474288463593,0.28840047121048,0.887064456939697,0.0784733891487122,-0.129872739315033,0.988420426845551,0.135554596781731,0.082500085234642,0.987329006195068,-0.152312874794006,0.00693594291806221,0.988307952880859,-0.152312874794006,0.00693594291806221,0.988307952880859,0.135554596781731,0.082500085234642,0.987329006195068,-0.18723401427269,0.173806369304657,0.966816663742065,-0.18723401427269,0.173806369304657,0.966816663742065,0.0383744612336159,0.223438069224358,0.973962366580963,-0.20365247130394,0.280730247497559,0.937931776046753,-0.00888291280716658,-0.25619649887085,0.966583847999573,0.145753160119057,-0.257337868213654,0.955265998840332,-0.0886774361133575,-0.354688882827759,0.930769562721252,0.0784733891487122,-0.129872739315033,0.988420426845551,0.145753160119057,-0.257337868213654,0.955265998840332, +0.227777644991875,-0.0686473324894905,0.971290230751038,-0.127467215061188,-0.153074339032173,0.979959309101105,-0.00888291280716658,-0.25619649887085,0.966583847999573,-0.209770813584328,-0.269928157329559,0.939752578735352,-0.507077217102051,0.606642067432404,0.612256407737732,-0.426413357257843,0.706568419933319,0.564741134643555,-0.518564462661743,0.714755177497864,0.469271510839462,-0.371123343706131,0.384023010730743,0.845454692840576,-0.354392647743225,0.48661482334137,0.798505961894989,-0.441208571195602,0.414508998394012,0.795937895774841,-0.48348468542099,0.494127154350281,0.722551584243774,-0.354392647743225,0.48661482334137,0.798505961894989,-0.42052149772644,0.588859856128693,0.69022136926651,-0.507077217102051,0.606642067432404,0.612256407737732,-0.42052149772644,0.588859856128693,0.69022136926651,-0.426413357257843,0.706568419933319,0.564741134643555,0.145258784294128,0.284676551818848,0.947554230690002,0.0223141238093376,0.205385744571686,0.97842663526535,0.265602320432663,0.382017701864243,0.885165393352509,0.0636734738945961,0.342715442180634,0.937278926372528,0.265602320432663,0.382017701864243,0.885165393352509,0.0223141238093376,0.205385744571686,0.97842663526535,-0.0967390164732933,0.408581286668777,0.907580733299255,0.0636734738945961,0.342715442180634,0.937278926372528,-0.16793030500412,0.293921172618866,0.940962076187134,-0.203341916203499,0.490234702825546,0.847538709640503,-0.149759024381638,0.533650279045105,0.832339823246002,-0.13331313431263,0.575436592102051,0.806907773017883,-0.144358798861504,0.543385446071625,0.826978027820587,-0.12575401365757,0.480429619550705,0.867970705032349,-0.154226958751678,0.485750824213028,0.860383689403534,-0.144358798861504,0.543385446071625,0.826978027820587,-0.112820535898209,0.601291179656982,0.791024804115295,-0.149759024381638,0.533650279045105,0.832339823246002,-0.0967390164732933,0.408581286668777,0.907580733299255,-0.221785336732864,0.435822635889053,0.8722785115242,-0.154226958751678,0.485750824213028,0.860383689403534,-0.0898682102560997,0.526589512825012,0.845356166362762, +0.00277008465491235,0.454153031110764,0.890919327735901,-0.146359711885452,0.458258777856827,0.876685559749603,-0.203341916203499,0.490234702825546,0.847538709640503,-0.13331313431263,0.575436592102051,0.806907773017883,-0.146359711885452,0.458258777856827,0.876685559749603,0.146157950162888,0.42800235748291,0.891880869865417,0.284897685050964,0.411706954240799,0.865638792514801,0.123494826257229,0.414531618356705,0.901616632938385,0.00277008465491235,0.454153031110764,0.890919327735901,0.129363998770714,0.497384965419769,0.857830464839935,0.146157950162888,0.42800235748291,0.891880869865417,0.178815573453903,0.562302052974701,0.807366847991943,0.322305023670197,0.478769451379776,0.816638946533203,0.154508769512177,0.602203369140625,0.783248364925385,0.0478980652987957,0.568480312824249,0.821301221847534,0.178815573453903,0.562302052974701,0.807366847991943,0.0188094787299633,0.607549667358398,0.794058859348297,-0.075469397008419,0.476377457380295,0.875995874404907,0.0478980652987957,0.568480312824249,0.821301221847534,0.0188094787299633,0.607549667358398,0.794058859348297,-0.210894584655762,0.363800972700119,0.907288372516632,-0.075469397008419,0.476377457380295,0.875995874404907,-0.216210544109344,0.366797596216202,0.904827296733856,-0.207679361104965,0.353434801101685,0.912114560604095,-0.119992017745972,0.433786779642105,0.892989814281464,0.0606982745230198,0.479367136955261,0.875512838363647,-0.210894584655762,0.363800972700119,0.907288372516632,-0.216210544109344,0.366797596216202,0.904827296733856,-0.207679361104965,0.353434801101685,0.912114560604095,0.322305023670197,0.478769451379776,0.816638946533203,0.284897685050964,0.411706954240799,0.865638792514801,0.256551146507263,0.52603942155838,0.81084144115448,-0.203229486942291,0.36670109629631,0.90786999464035,0.00529352389276028,0.501917958259583,0.864898920059204,-0.119992017745972,0.433786779642105,0.892989814281464,0.0961935371160507,0.458669751882553,0.883384823799133,-0.0174383465200663,0.495700091123581,0.868318617343903,0.00529352389276028,0.501917958259583,0.864898920059204, +0.126146882772446,0.411300659179688,0.90272843837738,0.0556429587304592,0.399742692708969,0.914936900138855,-0.0174383465200663,0.495700091123581,0.868318617343903,0.0556429587304592,0.399742692708969,0.914936900138855,0.167197108268738,0.369580388069153,0.914032459259033,0.202450111508369,0.351367443799973,0.914086818695068,0.202450111508369,0.351367443799973,0.914086818695068,0.208391189575195,0.388018250465393,0.89778333902359,0.18863944709301,0.328736305236816,0.925390481948853,0.00826482754200697,0.0969062224030495,0.995259165763855,-0.0446717888116837,0.117344312369823,0.992085993289948,-0.0554574616253376,0.153167769312859,0.986642777919769,-0.0120590049773455,0.281187474727631,0.959577023983002,0.140619903802872,0.203772723674774,0.968866646289825,0.18863944709301,0.328736305236816,0.925390481948853,-0.0120590049773455,0.281187474727631,0.959577023983002,-0.0446717888116837,0.117344312369823,0.992085993289948,0.140619903802872,0.203772723674774,0.968866646289825,-0.103978648781776,0.236527606844902,0.966045081615448,0.0160410609096289,0.393268972635269,0.919283509254456,-0.0554574616253376,0.153167769312859,0.986642777919769,-0.103978648781776,0.236527606844902,0.966045081615448,-0.15008307993412,0.175075009465218,0.973048627376556,-0.222731307148933,0.354214578866959,0.908252537250519,0.287048995494843,-0.331043183803558,0.898895502090454,0.232683315873146,-0.116002723574638,0.965609550476074,0.28500509262085,0.0446630083024502,0.957484841346741,0.238079339265823,0.0721782967448235,0.968559980392456,0.232683315873146,-0.116002723574638,0.965609550476074,0.195252776145935,-0.0552942343056202,0.979192972183228,0.13868559896946,-0.0591722913086414,0.988567054271698,0.234387576580048,0.162383526563644,0.958485245704651,0.238079339265823,0.0721782967448235,0.968559980392456,0.170557156205177,0.047172199934721,0.984217941761017,0.234387576580048,0.162383526563644,0.958485245704651,0.106981366872787,-0.0440753884613514,0.993283569812775,0.189247697591782,-0.156319320201874,0.969406723976135,0.278272151947021,0.185657814145088,0.942388296127319, +0.170557156205177,0.047172199934721,0.984217941761017,0.189247697591782,-0.156319320201874,0.969406723976135,0.13853295147419,-0.142608046531677,0.980036497116089,0.278272151947021,0.185657814145088,0.942388296127319,0.204497382044792,-0.0537295006215572,0.977391242980957,0.13853295147419,-0.142608046531677,0.980036497116089,0.0135263269767165,-0.529814898967743,0.848005354404449,0.0536942556500435,-0.477733433246613,0.876862347126007,0.204497382044792,-0.0537295006215572,0.977391242980957,0.0135263269767165,-0.529814898967743,0.848005354404449,0.0641911253333092,-0.438263207674026,0.896551549434662,0.0536942556500435,-0.477733433246613,0.876862347126007,-0.0543682835996151,-0.701073467731476,0.71101325750351,-0.104609645903111,-0.660065054893494,0.743889033794403,0.0641911253333092,-0.438263207674026,0.896551549434662,-0.0543682835996151,-0.701073467731476,0.71101325750351,-0.253126084804535,-0.303161978721619,0.918705523014069,-0.347861707210541,-0.239952698349953,0.906319379806519,-0.240078449249268,-0.384884089231491,0.891193807125092,-0.132649108767509,-0.688486158847809,0.71301531791687,-0.104609645903111,-0.660065054893494,0.743889033794403,-0.0543682835996151,-0.701073467731476,0.71101325750351,-0.172486573457718,-0.549630165100098,0.817407429218292,-0.209282353520393,-0.411310106515884,0.887144148349762,-0.174205154180527,-0.565521717071533,0.806125044822693,-0.172486573457718,-0.549630165100098,0.817407429218292,-0.132649108767509,-0.688486158847809,0.71301531791687,-0.154656007885933,-0.583430826663971,0.797301590442657,-0.209282353520393,-0.411310106515884,0.887144148349762,-0.253126084804535,-0.303161978721619,0.918705523014069,-0.240078449249268,-0.384884089231491,0.891193807125092,-0.295555889606476,-0.355148434638977,0.886857450008392,-0.312497198581696,-0.451758295297623,0.835619390010834,-0.411789327859879,-0.417485773563385,0.810021698474884,-0.299234688282013,-0.451841235160828,0.840415358543396,-0.41497415304184,-0.43052014708519,0.801528990268707,-0.312497198581696,-0.451758295297623,0.835619390010834, +-0.299234688282013,-0.451841235160828,0.840415358543396,-0.267946690320969,-0.334486454725266,0.903506100177765,-0.394739300012589,-0.362034112215042,0.844459593296051,-0.253126084804535,-0.303161978721619,0.918705523014069,-0.295555889606476,-0.355148434638977,0.886857450008392,-0.381822735071182,-0.294540882110596,0.876046240329742,-0.350214272737503,-0.187934219837189,0.917622208595276,-0.267946690320969,-0.334486454725266,0.903506100177765,-0.214699983596802,-0.146673306822777,0.965603828430176,-0.324292033910751,-0.00854876916855574,0.945918321609497,-0.350214272737503,-0.187934219837189,0.917622208595276,-0.214699983596802,-0.146673306822777,0.965603828430176,-0.34295517206192,0.132272988557816,0.929992079734802,-0.228587999939919,0.125682130455971,0.965376317501068,-0.36165127158165,0.131866320967674,0.922940731048584,-0.324292033910751,-0.00854876916855574,0.945918321609497,-0.198687642812729,0.0247589386999607,0.979749917984009,-0.34295517206192,0.132272988557816,0.929992079734802,-0.382714509963989,0.0484229698777199,0.92259669303894,-0.36165127158165,0.131866320967674,0.922940731048584,-0.378439873456955,-0.0175850111991167,0.92545872926712,-0.28510046005249,-0.135200932621956,0.948914289474487,-0.382714509963989,0.0484229698777199,0.92259669303894,-0.378439873456955,-0.0175850111991167,0.92545872926712,0.0275514479726553,-0.231069773435593,0.972546994686127,-0.0999661087989807,-0.32399308681488,0.940763056278229,0.119882509112358,-0.216166958212852,0.968968451023102,-0.28510046005249,-0.135200932621956,0.948914289474487,-0.305228352546692,-0.307656824588776,0.901211857795715,0.0275514479726553,-0.231069773435593,0.972546994686127,-0.102210082113743,-0.309917002916336,0.945253670215607,-0.0334517136216164,-0.208664044737816,0.977415025234222,-0.0999661087989807,-0.32399308681488,0.940763056278229,-0.102210082113743,-0.309917002916336,0.945253670215607,-0.199443563818932,-0.258914470672607,0.945084929466248,-0.0334517136216164,-0.208664044737816,0.977415025234222,-0.230247750878334,-0.320855557918549,0.918715178966522, +-0.199443563818932,-0.258914470672607,0.945084929466248,-0.102210082113743,-0.309917002916336,0.945253670215607,-0.230247750878334,-0.320855557918549,0.918715178966522,-0.206393525004387,-0.19865582883358,0.958090543746948,-0.209770813584328,-0.269928157329559,0.939752578735352,0.145258784294128,0.284676551818848,0.947554230690002,0.0648594722151756,0.330625355243683,0.941530644893646,-0.187902331352234,0.264447927474976,0.94591748714447,-0.433520287275314,0.266040325164795,0.860977709293365,-0.482998996973038,0.416776418685913,0.770070910453796,-0.327665328979492,0.0728094130754471,0.941984176635742,-0.187902331352234,0.264447927474976,0.94591748714447,-0.433520287275314,0.266040325164795,0.860977709293365,-0.254100352525711,0.0124188400804996,0.96709805727005,-0.556917250156403,0.639157056808472,0.530397236347198,-0.565682291984558,0.714127719402313,0.412340849637985,-0.467866331338882,0.588923692703247,0.658991515636444,-0.556917250156403,0.639157056808472,0.530397236347198,-0.467866331338882,0.588923692703247,0.658991515636444,-0.482998996973038,0.416776418685913,0.770070910453796,-0.551063477993011,0.742854118347168,0.380127161741257,-0.518564462661743,0.714755177497864,0.469271510839462,-0.467525482177734,0.81559830904007,0.340909481048584,-0.551063477993011,0.742854118347168,0.380127161741257,-0.454387277364731,0.719729423522949,0.524901509284973,-0.565682291984558,0.714127719402313,0.412340849637985,-0.328831642866135,0.339123517274857,0.881399393081665,-0.371123343706131,0.384023010730743,0.845454692840576,-0.441208571195602,0.414508998394012,0.795937895774841,-0.20365247130394,0.280730247497559,0.937931776046753,-0.153740763664246,0.225317642092705,0.962078809738159,-0.328831642866135,0.339123517274857,0.881399393081665,0.0784733891487122,-0.129872739315033,0.988420426845551,0.227777644991875,-0.0686473324894905,0.971290230751038,0.135554596781731,0.082500085234642,0.987329006195068,0.135554596781731,0.082500085234642,0.987329006195068,0.0383744612336159,0.223438069224358,0.973962366580963,-0.18723401427269,0.173806369304657,0.966816663742065, +-0.20365247130394,0.280730247497559,0.937931776046753,0.0383744612336159,0.223438069224358,0.973962366580963,-0.00996533408761024,0.252672135829926,0.967500567436218,-0.00888291280716658,-0.25619649887085,0.966583847999573,0.0836957916617393,-0.159856617450714,0.983585715293884,0.145753160119057,-0.257337868213654,0.955265998840332,0.227777644991875,-0.0686473324894905,0.971290230751038,0.145753160119057,-0.257337868213654,0.955265998840332,0.0836957916617393,-0.159856617450714,0.983585715293884,-0.00888291280716658,-0.25619649887085,0.966583847999573,-0.127467215061188,-0.153074339032173,0.979959309101105,0.0836957916617393,-0.159856617450714,0.983585715293884,-0.206393525004387,-0.19865582883358,0.958090543746948,-0.127467215061188,-0.153074339032173,0.979959309101105,-0.209770813584328,-0.269928157329559,0.939752578735352,-0.395905762910843,0.815633475780487,0.421901136636734,-0.518564462661743,0.714755177497864,0.469271510839462,-0.426413357257843,0.706568419933319,0.564741134643555,-0.244199857115746,0.34387993812561,0.906704425811768,-0.354392647743225,0.48661482334137,0.798505961894989,-0.371123343706131,0.384023010730743,0.845454692840576,-0.42052149772644,0.588859856128693,0.69022136926651,-0.354392647743225,0.48661482334137,0.798505961894989,-0.342094719409943,0.597184479236603,0.725494146347046,-0.426413357257843,0.706568419933319,0.564741134643555,-0.42052149772644,0.588859856128693,0.69022136926651,-0.368748366832733,0.6710125207901,0.643247008323669,-0.185875207185745,0.0435255393385887,0.981608688831329,0.0223141238093376,0.205385744571686,0.97842663526535,0.145258784294128,0.284676551818848,0.947554230690002,0.0636734738945961,0.342715442180634,0.937278926372528,0.0223141238093376,0.205385744571686,0.97842663526535,-0.16793030500412,0.293921172618866,0.940962076187134,-0.221785336732864,0.435822635889053,0.8722785115242,-0.0967390164732933,0.408581286668777,0.907580733299255,-0.16793030500412,0.293921172618866,0.940962076187134,-0.13331313431263,0.575436592102051,0.806907773017883,-0.149759024381638,0.533650279045105,0.832339823246002, +-0.112820535898209,0.601291179656982,0.791024804115295,-0.154226958751678,0.485750824213028,0.860383689403534,-0.270678579807281,0.522927463054657,0.808257341384888,-0.144358798861504,0.543385446071625,0.826978027820587,-0.144358798861504,0.543385446071625,0.826978027820587,-0.215041399002075,0.59374988079071,0.775382518768311,-0.112820535898209,0.601291179656982,0.791024804115295,-0.221785336732864,0.435822635889053,0.8722785115242,-0.253222078084946,0.470214396715164,0.845444738864899,-0.154226958751678,0.485750824213028,0.860383689403534,0.00277008465491235,0.454153031110764,0.890919327735901,-0.0898682102560997,0.526589512825012,0.845356166362762,0.0814967676997185,0.551981747150421,0.829864084720612,-0.13331313431263,0.575436592102051,0.806907773017883,-0.0898682102560997,0.526589512825012,0.845356166362762,-0.146359711885452,0.458258777856827,0.876685559749603,0.187154442071915,0.492489367723465,0.849957227706909,0.284897685050964,0.411706954240799,0.865638792514801,0.146157950162888,0.42800235748291,0.891880869865417,0.129363998770714,0.497384965419769,0.857830464839935,0.00277008465491235,0.454153031110764,0.890919327735901,0.0814967676997185,0.551981747150421,0.829864084720612,0.146157950162888,0.42800235748291,0.891880869865417,0.129363998770714,0.497384965419769,0.857830464839935,0.187154442071915,0.492489367723465,0.849957227706909,0.154508769512177,0.602203369140625,0.783248364925385,0.322305023670197,0.478769451379776,0.816638946533203,0.256551146507263,0.52603942155838,0.81084144115448,0.154508769512177,0.602203369140625,0.783248364925385,0.0813170522451401,0.636084139347076,0.767322838306427,0.178815573453903,0.562302052974701,0.807366847991943,0.0813170522451401,0.636084139347076,0.767322838306427,0.0188094787299633,0.607549667358398,0.794058859348297,0.178815573453903,0.562302052974701,0.807366847991943,-0.138451859354973,0.465445697307587,0.874180316925049,-0.075469397008419,0.476377457380295,0.875995874404907,0.0188094787299633,0.607549667358398,0.794058859348297,-0.138451859354973,0.465445697307587,0.874180316925049, +-0.216210544109344,0.366797596216202,0.904827296733856,-0.075469397008419,0.476377457380295,0.875995874404907,-0.203229486942291,0.36670109629631,0.90786999464035,-0.119992017745972,0.433786779642105,0.892989814281464,-0.207679361104965,0.353434801101685,0.912114560604095,-0.216210544109344,0.366797596216202,0.904827296733856,-0.203229486942291,0.36670109629631,0.90786999464035,-0.207679361104965,0.353434801101685,0.912114560604095,0.187154442071915,0.492489367723465,0.849957227706909,0.256551146507263,0.52603942155838,0.81084144115448,0.284897685050964,0.411706954240799,0.865638792514801,-0.0997171252965927,0.397240579128265,0.912280857563019,0.00529352389276028,0.501917958259583,0.864898920059204,-0.203229486942291,0.36670109629631,0.90786999464035,0.0961935371160507,0.458669751882553,0.883384823799133,0.126146882772446,0.411300659179688,0.90272843837738,-0.0174383465200663,0.495700091123581,0.868318617343903,-0.0997171252965927,0.397240579128265,0.912280857563019,0.0961935371160507,0.458669751882553,0.883384823799133,0.00529352389276028,0.501917958259583,0.864898920059204,0.126146882772446,0.411300659179688,0.90272843837738,0.167197108268738,0.369580388069153,0.914032459259033,0.0556429587304592,0.399742692708969,0.914936900138855,0.208391189575195,0.388018250465393,0.89778333902359,0.202450111508369,0.351367443799973,0.914086818695068,0.167197108268738,0.369580388069153,0.914032459259033,0.18863944709301,0.328736305236816,0.925390481948853,0.208391189575195,0.388018250465393,0.89778333902359,0.0751755014061928,0.407830208539963,0.909957706928253,-0.0446717888116837,0.117344312369823,0.992085993289948,-0.101666465401649,0.140243783593178,0.984883487224579,-0.0554574616253376,0.153167769312859,0.986642777919769,-0.0120590049773455,0.281187474727631,0.959577023983002,0.18863944709301,0.328736305236816,0.925390481948853,0.0751755014061928,0.407830208539963,0.909957706928253,-0.0120590049773455,0.281187474727631,0.959577023983002,-0.101666465401649,0.140243783593178,0.984883487224579,-0.0446717888116837,0.117344312369823,0.992085993289948, +-0.103978648781776,0.236527606844902,0.966045081615448,-0.0554574616253376,0.153167769312859,0.986642777919769,-0.101666465401649,0.140243783593178,0.984883487224579,-0.15008307993412,0.175075009465218,0.973048627376556,-0.103978648781776,0.236527606844902,0.966045081615448,-0.10918502509594,0.167230203747749,0.979853332042694,0.148108243942261,0.0651188716292381,0.986824929714203,0.238079339265823,0.0721782967448235,0.968559980392456,0.195252776145935,-0.0552942343056202,0.979192972183228,0.106981366872787,-0.0440753884613514,0.993283569812775,0.234387576580048,0.162383526563644,0.958485245704651,0.13868559896946,-0.0591722913086414,0.988567054271698,0.148108243942261,0.0651188716292381,0.986824929714203,0.13868559896946,-0.0591722913086414,0.988567054271698,0.238079339265823,0.0721782967448235,0.968559980392456,0.170557156205177,0.047172199934721,0.984217941761017,0.106981366872787,-0.0440753884613514,0.993283569812775,-0.0281032584607601,-0.364659011363983,0.930716872215271,0.189247697591782,-0.156319320201874,0.969406723976135,0.170557156205177,0.047172199934721,0.984217941761017,0.20653560757637,-0.240160018205643,0.948507308959961,0.189247697591782,-0.156319320201874,0.969406723976135,0.0135263269767165,-0.529814898967743,0.848005354404449,0.13853295147419,-0.142608046531677,0.980036497116089,0.0536942556500435,-0.477733433246613,0.876862347126007,0.0135263269767165,-0.529814898967743,0.848005354404449,-0.0543682835996151,-0.701073467731476,0.71101325750351,-0.132649108767509,-0.688486158847809,0.71301531791687,-0.0543682835996151,-0.701073467731476,0.71101325750351,-0.107299014925957,-0.726344168186188,0.678904294967651,-0.172486573457718,-0.549630165100098,0.817407429218292,-0.228922426700592,-0.451514661312103,0.862397253513336,-0.209282353520393,-0.411310106515884,0.887144148349762,-0.154656007885933,-0.583430826663971,0.797301590442657,-0.132649108767509,-0.688486158847809,0.71301531791687,-0.193365931510925,-0.624986410140991,0.756307780742645,-0.172486573457718,-0.549630165100098,0.817407429218292,-0.154656007885933,-0.583430826663971,0.797301590442657, +-0.228922426700592,-0.451514661312103,0.862397253513336,-0.253126084804535,-0.303161978721619,0.918705523014069,-0.209282353520393,-0.411310106515884,0.887144148349762,-0.228922426700592,-0.451514661312103,0.862397253513336,-0.295555889606476,-0.355148434638977,0.886857450008392,-0.219923377037048,-0.399911612272263,0.889777541160584,-0.312497198581696,-0.451758295297623,0.835619390010834,-0.299234688282013,-0.451841235160828,0.840415358543396,-0.312497198581696,-0.451758295297623,0.835619390010834,-0.219923377037048,-0.399911612272263,0.889777541160584,-0.299234688282013,-0.451841235160828,0.840415358543396,-0.0814951732754707,-0.43065270781517,0.898830771446228,-0.267946690320969,-0.334486454725266,0.903506100177765,-0.253126084804535,-0.303161978721619,0.918705523014069,-0.277587652206421,-0.311597973108292,0.908763825893402,-0.295555889606476,-0.355148434638977,0.886857450008392,-0.267946690320969,-0.334486454725266,0.903506100177765,-0.0905354097485542,-0.2999666929245,0.949643731117249,-0.214699983596802,-0.146673306822777,0.965603828430176,-0.324292033910751,-0.00854876916855574,0.945918321609497,-0.214699983596802,-0.146673306822777,0.965603828430176,-0.198687642812729,0.0247589386999607,0.979749917984009,-0.198687642812729,0.0247589386999607,0.979749917984009,-0.228587999939919,0.125682130455971,0.965376317501068,-0.34295517206192,0.132272988557816,0.929992079734802,-0.261419743299484,-0.00387935643084347,0.965217351913452,-0.36165127158165,0.131866320967674,0.922940731048584,-0.228587999939919,0.125682130455971,0.965376317501068,-0.378439873456955,-0.0175850111991167,0.92545872926712,-0.36165127158165,0.131866320967674,0.922940731048584,-0.261419743299484,-0.00387935643084347,0.965217351913452,-0.28510046005249,-0.135200932621956,0.948914289474487,-0.378439873456955,-0.0175850111991167,0.92545872926712,-0.351191103458405,-0.199609413743019,0.914779126644135,-0.0999661087989807,-0.32399308681488,0.940763056278229,0.0275514479726553,-0.231069773435593,0.972546994686127,-0.305228352546692,-0.307656824588776,0.901211857795715, +-0.28510046005249,-0.135200932621956,0.948914289474487,-0.351191103458405,-0.199609413743019,0.914779126644135,-0.305228352546692,-0.307656824588776,0.901211857795715,-0.230247750878334,-0.320855557918549,0.918715178966522,-0.102210082113743,-0.309917002916336,0.945253670215607,-0.0999661087989807,-0.32399308681488,0.940763056278229,-0.206393525004387,-0.19865582883358,0.958090543746948,-0.230247750878334,-0.320855557918549,0.918715178966522,-0.213679328560829,-0.261355996131897,0.941293835639954,-0.187902331352234,0.264447927474976,0.94591748714447,-0.254100352525711,0.0124188400804996,0.96709805727005,0.145258784294128,0.284676551818848,0.947554230690002,-0.264112889766693,0.274795740842819,0.924516916275024,-0.327665328979492,0.0728094130754471,0.941984176635742,-0.482998996973038,0.416776418685913,0.770070910453796,-0.433520287275314,0.266040325164795,0.860977709293365,-0.327665328979492,0.0728094130754471,0.941984176635742,-0.254100352525711,0.0124188400804996,0.96709805727005,-0.454387277364731,0.719729423522949,0.524901509284973,-0.467866331338882,0.588923692703247,0.658991515636444,-0.565682291984558,0.714127719402313,0.412340849637985,-0.264112889766693,0.274795740842819,0.924516916275024,-0.482998996973038,0.416776418685913,0.770070910453796,-0.467866331338882,0.588923692703247,0.658991515636444,-0.467525482177734,0.81559830904007,0.340909481048584,-0.518564462661743,0.714755177497864,0.469271510839462,-0.395905762910843,0.815633475780487,0.421901136636734,-0.551063477993011,0.742854118347168,0.380127161741257,-0.467525482177734,0.81559830904007,0.340909481048584,-0.436146110296249,0.79842084646225,0.415091037750244,-0.436146110296249,0.79842084646225,0.415091037750244,-0.454387277364731,0.719729423522949,0.524901509284973,-0.551063477993011,0.742854118347168,0.380127161741257,-0.244199857115746,0.34387993812561,0.906704425811768,-0.371123343706131,0.384023010730743,0.845454692840576,-0.328831642866135,0.339123517274857,0.881399393081665,-0.20365247130394,0.280730247497559,0.937931776046753,-0.00996533408761024,0.252672135829926,0.967500567436218, +-0.153740763664246,0.225317642092705,0.962078809738159,-0.244199857115746,0.34387993812561,0.906704425811768,-0.328831642866135,0.339123517274857,0.881399393081665,-0.153740763664246,0.225317642092705,0.962078809738159,0.146785333752632,0.0417352132499218,0.988287448883057,0.135554596781731,0.082500085234642,0.987329006195068,0.227777644991875,-0.0686473324894905,0.971290230751038,0.135554596781731,0.082500085234642,0.987329006195068,0.0563478171825409,0.0842642486095428,0.994848906993866,0.0383744612336159,0.223438069224358,0.973962366580963,0.0383744612336159,0.223438069224358,0.973962366580963,0.0103465896099806,0.167325541377068,0.985847353935242,-0.00996533408761024,0.252672135829926,0.967500567436218,0.227777644991875,-0.0686473324894905,0.971290230751038,0.0836957916617393,-0.159856617450714,0.983585715293884,-0.0553450658917427,-0.0623061023652554,0.996521353721619,-0.115296490490437,-0.0926408469676971,0.9890016913414,0.0836957916617393,-0.159856617450714,0.983585715293884,-0.127467215061188,-0.153074339032173,0.979959309101105,-0.127467215061188,-0.153074339032173,0.979959309101105,-0.206393525004387,-0.19865582883358,0.958090543746948,-0.201329484581947,-0.0951989516615868,0.974886417388916,-0.358920603990555,0.784794092178345,0.505246520042419,-0.395905762910843,0.815633475780487,0.421901136636734,-0.426413357257843,0.706568419933319,0.564741134643555,-0.212375774979591,0.4824458360672,0.849789619445801,-0.354392647743225,0.48661482334137,0.798505961894989,-0.244199857115746,0.34387993812561,0.906704425811768,-0.193550124764442,0.590336620807648,0.783607602119446,-0.342094719409943,0.597184479236603,0.725494146347046,-0.354392647743225,0.48661482334137,0.798505961894989,-0.42052149772644,0.588859856128693,0.69022136926651,-0.342094719409943,0.597184479236603,0.725494146347046,-0.368748366832733,0.6710125207901,0.643247008323669,-0.426413357257843,0.706568419933319,0.564741134643555,-0.368748366832733,0.6710125207901,0.643247008323669,-0.358920603990555,0.784794092178345,0.505246520042419,-0.228179141879082,0.150714114308357,0.961883306503296, +0.0223141238093376,0.205385744571686,0.97842663526535,-0.185875207185745,0.0435255393385887,0.981608688831329,-0.185875207185745,0.0435255393385887,0.981608688831329,0.145258784294128,0.284676551818848,0.947554230690002,-0.254100352525711,0.0124188400804996,0.96709805727005,-0.228179141879082,0.150714114308357,0.961883306503296,-0.16793030500412,0.293921172618866,0.940962076187134,0.0223141238093376,0.205385744571686,0.97842663526535,-0.221785336732864,0.435822635889053,0.8722785115242,-0.16793030500412,0.293921172618866,0.940962076187134,-0.263103157281876,0.337349623441696,0.903864920139313,-0.101863130927086,0.611777245998383,0.784443974494934,-0.13331313431263,0.575436592102051,0.806907773017883,-0.112820535898209,0.601291179656982,0.791024804115295,-0.154226958751678,0.485750824213028,0.860383689403534,-0.253222078084946,0.470214396715164,0.845444738864899,-0.270678579807281,0.522927463054657,0.808257341384888,-0.270678579807281,0.522927463054657,0.808257341384888,-0.215041399002075,0.59374988079071,0.775382518768311,-0.144358798861504,0.543385446071625,0.826978027820587,-0.129246816039085,0.628013908863068,0.767394065856934,-0.112820535898209,0.601291179656982,0.791024804115295,-0.215041399002075,0.59374988079071,0.775382518768311,-0.221785336732864,0.435822635889053,0.8722785115242,-0.260773599147797,0.461763441562653,0.847803950309753,-0.253222078084946,0.470214396715164,0.845444738864899,-0.0898682102560997,0.526589512825012,0.845356166362762,-0.0808609426021576,0.605528473854065,0.791704893112183,0.0814967676997185,0.551981747150421,0.829864084720612,-0.13331313431263,0.575436592102051,0.806907773017883,-0.0808609426021576,0.605528473854065,0.791704893112183,-0.0898682102560997,0.526589512825012,0.845356166362762,0.124823749065399,0.549116849899292,0.826371312141418,0.129363998770714,0.497384965419769,0.857830464839935,0.0814967676997185,0.551981747150421,0.829864084720612,0.099610224366188,0.525090932846069,0.845196545124054,0.187154442071915,0.492489367723465,0.849957227706909,0.129363998770714,0.497384965419769,0.857830464839935, +0.13122695684433,0.573379039764404,0.808712422847748,0.154508769512177,0.602203369140625,0.783248364925385,0.256551146507263,0.52603942155838,0.81084144115448,0.0126438951119781,0.647016882896423,0.762370705604553,0.0813170522451401,0.636084139347076,0.767322838306427,0.154508769512177,0.602203369140625,0.783248364925385,0.0188094787299633,0.607549667358398,0.794058859348297,0.0813170522451401,0.636084139347076,0.767322838306427,0.0285270549356937,0.680732429027557,0.731976389884949,-0.138451859354973,0.465445697307587,0.874180316925049,0.0188094787299633,0.607549667358398,0.794058859348297,-0.105803988873959,0.575798332691193,0.81071674823761,-0.193615481257439,0.343994498252869,0.918793082237244,-0.216210544109344,0.366797596216202,0.904827296733856,-0.138451859354973,0.465445697307587,0.874180316925049,-0.216210544109344,0.366797596216202,0.904827296733856,-0.193615481257439,0.343994498252869,0.918793082237244,-0.203229486942291,0.36670109629631,0.90786999464035,0.187154442071915,0.492489367723465,0.849957227706909,0.13122695684433,0.573379039764404,0.808712422847748,0.256551146507263,0.52603942155838,0.81084144115448,-0.0997171252965927,0.397240579128265,0.912280857563019,-0.203229486942291,0.36670109629631,0.90786999464035,-0.193615481257439,0.343994498252869,0.918793082237244,0.126146882772446,0.411300659179688,0.90272843837738,0.0961935371160507,0.458669751882553,0.883384823799133,0.0447802841663361,0.392762809991837,0.918548822402954,-0.0997171252965927,0.397240579128265,0.912280857563019,0.0447802841663361,0.392762809991837,0.918548822402954,0.0961935371160507,0.458669751882553,0.883384823799133,0.155844211578369,0.431243091821671,0.888674259185791,0.167197108268738,0.369580388069153,0.914032459259033,0.126146882772446,0.411300659179688,0.90272843837738,0.15597540140152,0.408130019903183,0.899500548839569,0.208391189575195,0.388018250465393,0.89778333902359,0.167197108268738,0.369580388069153,0.914032459259033,0.121623747050762,0.446964293718338,0.886245131492615,0.0751755014061928,0.407830208539963,0.909957706928253, +0.208391189575195,0.388018250465393,0.89778333902359,-0.0692095458507538,0.396191656589508,0.915555596351624,-0.0120590049773455,0.281187474727631,0.959577023983002,0.0751755014061928,0.407830208539963,0.909957706928253,-0.110742457211018,0.238883882761002,0.964712679386139,-0.101666465401649,0.140243783593178,0.984883487224579,-0.0120590049773455,0.281187474727631,0.959577023983002,-0.10918502509594,0.167230203747749,0.979853332042694,-0.103978648781776,0.236527606844902,0.966045081615448,-0.101666465401649,0.140243783593178,0.984883487224579,-0.10918502509594,0.167230203747749,0.979853332042694,-0.186008542776108,0.15044005215168,0.970962703227997,-0.15008307993412,0.175075009465218,0.973048627376556,0.199213624000549,-0.169640943408012,0.965161025524139,0.148108243942261,0.0651188716292381,0.986824929714203,0.195252776145935,-0.0552942343056202,0.979192972183228,0.13868559896946,-0.0591722913086414,0.988567054271698,-0.00265303067862988,-0.487260490655899,0.87325257062912,0.106981366872787,-0.0440753884613514,0.993283569812775,0.0692684724926949,-0.206985965371132,0.975888609886169,0.13868559896946,-0.0591722913086414,0.988567054271698,0.148108243942261,0.0651188716292381,0.986824929714203,-0.00265303067862988,-0.487260490655899,0.87325257062912,-0.0281032584607601,-0.364659011363983,0.930716872215271,0.106981366872787,-0.0440753884613514,0.993283569812775,-0.0281032584607601,-0.364659011363983,0.930716872215271,-0.00786607153713703,-0.412341594696045,0.910995304584503,0.170557156205177,0.047172199934721,0.984217941761017,0.20653560757637,-0.240160018205643,0.948507308959961,0.170557156205177,0.047172199934721,0.984217941761017,-0.00786607153713703,-0.412341594696045,0.910995304584503,0.189247697591782,-0.156319320201874,0.969406723976135,0.20653560757637,-0.240160018205643,0.948507308959961,0.040744211524725,-0.615674436092377,0.786946475505829,0.0135263269767165,-0.529814898967743,0.848005354404449,0.189247697591782,-0.156319320201874,0.969406723976135,0.040744211524725,-0.615674436092377,0.786946475505829,-0.0543682835996151,-0.701073467731476,0.71101325750351, +0.0135263269767165,-0.529814898967743,0.848005354404449,-0.0597732178866863,-0.741435408592224,0.668356597423553,-0.0543682835996151,-0.701073467731476,0.71101325750351,-0.0597732178866863,-0.741435408592224,0.668356597423553,-0.107299014925957,-0.726344168186188,0.678904294967651,-0.132649108767509,-0.688486158847809,0.71301531791687,-0.107299014925957,-0.726344168186188,0.678904294967651,-0.193365931510925,-0.624986410140991,0.756307780742645,-0.154656007885933,-0.583430826663971,0.797301590442657,-0.193365931510925,-0.624986410140991,0.756307780742645,-0.228922426700592,-0.451514661312103,0.862397253513336,-0.313921988010406,-0.332227021455765,0.889425694942474,-0.253126084804535,-0.303161978721619,0.918705523014069,-0.228922426700592,-0.451514661312103,0.862397253513336,-0.295555889606476,-0.355148434638977,0.886857450008392,-0.277587652206421,-0.311597973108292,0.908763825893402,-0.219923377037048,-0.399911612272263,0.889777541160584,-0.299234688282013,-0.451841235160828,0.840415358543396,-0.219923377037048,-0.399911612272263,0.889777541160584,-0.0814951732754707,-0.43065270781517,0.898830771446228,-0.0905354097485542,-0.2999666929245,0.949643731117249,-0.267946690320969,-0.334486454725266,0.903506100177765,-0.0814951732754707,-0.43065270781517,0.898830771446228,-0.313921988010406,-0.332227021455765,0.889425694942474,-0.277587652206421,-0.311597973108292,0.908763825893402,-0.253126084804535,-0.303161978721619,0.918705523014069,-0.0905354097485542,-0.2999666929245,0.949643731117249,-0.0310634039342403,-0.168853968381882,0.985151410102844,-0.214699983596802,-0.146673306822777,0.965603828430176,-0.198687642812729,0.0247589386999607,0.979749917984009,-0.214699983596802,-0.146673306822777,0.965603828430176,-0.0310634039342403,-0.168853968381882,0.985151410102844,-0.15954464673996,0.0799979418516159,0.983943998813629,-0.228587999939919,0.125682130455971,0.965376317501068,-0.198687642812729,0.0247589386999607,0.979749917984009,-0.15954464673996,0.0799979418516159,0.983943998813629,-0.261419743299484,-0.00387935643084347,0.965217351913452, +-0.228587999939919,0.125682130455971,0.965376317501068,-0.378439873456955,-0.0175850111991167,0.92545872926712,-0.261419743299484,-0.00387935643084347,0.965217351913452,-0.351191103458405,-0.199609413743019,0.914779126644135,-0.308242738246918,-0.345413863658905,0.886383414268494,-0.0999661087989807,-0.32399308681488,0.940763056278229,-0.305228352546692,-0.307656824588776,0.901211857795715,-0.351191103458405,-0.199609413743019,0.914779126644135,-0.351289957761765,-0.331517517566681,0.875609159469604,-0.305228352546692,-0.307656824588776,0.901211857795715,-0.230247750878334,-0.320855557918549,0.918715178966522,-0.0999661087989807,-0.32399308681488,0.940763056278229,-0.308242738246918,-0.345413863658905,0.886383414268494,-0.308242738246918,-0.345413863658905,0.886383414268494,-0.213679328560829,-0.261355996131897,0.941293835639954,-0.230247750878334,-0.320855557918549,0.918715178966522,-0.206393525004387,-0.19865582883358,0.958090543746948,-0.213679328560829,-0.261355996131897,0.941293835639954,-0.186724990606308,-0.202559903264046,0.961302876472473,-0.117534317076206,0.112793676555157,0.986642360687256,-0.327665328979492,0.0728094130754471,0.941984176635742,-0.264112889766693,0.274795740842819,0.924516916275024,-0.327665328979492,0.0728094130754471,0.941984176635742,-0.255089312791824,0.0274212155491114,0.966528534889221,-0.254100352525711,0.0124188400804996,0.96709805727005,-0.454387277364731,0.719729423522949,0.524901509284973,-0.239522457122803,0.46712538599968,0.851130247116089,-0.467866331338882,0.588923692703247,0.658991515636444,-0.264112889766693,0.274795740842819,0.924516916275024,-0.467866331338882,0.588923692703247,0.658991515636444,-0.239522457122803,0.46712538599968,0.851130247116089,-0.467525482177734,0.81559830904007,0.340909481048584,-0.395905762910843,0.815633475780487,0.421901136636734,-0.383523255586624,0.860610485076904,0.335051298141479,-0.378378599882126,0.828564763069153,0.412686169147491,-0.436146110296249,0.79842084646225,0.415091037750244,-0.467525482177734,0.81559830904007,0.340909481048584, +-0.454387277364731,0.719729423522949,0.524901509284973,-0.436146110296249,0.79842084646225,0.415091037750244,-0.256511002779007,0.635345041751862,0.728380799293518,0.0103465896099806,0.167325541377068,0.985847353935242,-0.153740763664246,0.225317642092705,0.962078809738159,-0.00996533408761024,0.252672135829926,0.967500567436218,-0.15250451862812,0.196065083146095,0.968659281730652,-0.244199857115746,0.34387993812561,0.906704425811768,-0.153740763664246,0.225317642092705,0.962078809738159,0.146785333752632,0.0417352132499218,0.988287448883057,0.0563478171825409,0.0842642486095428,0.994848906993866,0.135554596781731,0.082500085234642,0.987329006195068,0.146785333752632,0.0417352132499218,0.988287448883057,0.227777644991875,-0.0686473324894905,0.971290230751038,-0.0553450658917427,-0.0623061023652554,0.996521353721619,0.0383744612336159,0.223438069224358,0.973962366580963,0.0563478171825409,0.0842642486095428,0.994848906993866,0.0103465896099806,0.167325541377068,0.985847353935242,-0.0553450658917427,-0.0623061023652554,0.996521353721619,0.0836957916617393,-0.159856617450714,0.983585715293884,-0.115296490490437,-0.0926408469676971,0.9890016913414,-0.115296490490437,-0.0926408469676971,0.9890016913414,-0.127467215061188,-0.153074339032173,0.979959309101105,-0.201329484581947,-0.0951989516615868,0.974886417388916,-0.206393525004387,-0.19865582883358,0.958090543746948,-0.186724990606308,-0.202559903264046,0.961302876472473,-0.201329484581947,-0.0951989516615868,0.974886417388916,-0.358920603990555,0.784794092178345,0.505246520042419,-0.34325984120369,0.868830859661102,0.356798946857452,-0.395905762910843,0.815633475780487,0.421901136636734,-0.212375774979591,0.4824458360672,0.849789619445801,-0.193550124764442,0.590336620807648,0.783607602119446,-0.354392647743225,0.48661482334137,0.798505961894989,-0.212375774979591,0.4824458360672,0.849789619445801,-0.244199857115746,0.34387993812561,0.906704425811768,-0.157589688897133,0.501818716526031,0.850495934486389,-0.221694365143776,0.698627054691315,0.680273234844208,-0.342094719409943,0.597184479236603,0.725494146347046, +-0.193550124764442,0.590336620807648,0.783607602119446,-0.221694365143776,0.698627054691315,0.680273234844208,-0.368748366832733,0.6710125207901,0.643247008323669,-0.342094719409943,0.597184479236603,0.725494146347046,-0.221694365143776,0.698627054691315,0.680273234844208,-0.358920603990555,0.784794092178345,0.505246520042419,-0.368748366832733,0.6710125207901,0.643247008323669,-0.228179141879082,0.150714114308357,0.961883306503296,-0.185875207185745,0.0435255393385887,0.981608688831329,-0.274871498346329,0.198435977101326,0.940780937671661,-0.254100352525711,0.0124188400804996,0.96709805727005,-0.255089312791824,0.0274212155491114,0.966528534889221,-0.185875207185745,0.0435255393385887,0.981608688831329,-0.263103157281876,0.337349623441696,0.903864920139313,-0.16793030500412,0.293921172618866,0.940962076187134,-0.228179141879082,0.150714114308357,0.961883306503296,-0.221785336732864,0.435822635889053,0.8722785115242,-0.263103157281876,0.337349623441696,0.903864920139313,-0.230110391974449,0.424787849187851,0.875559449195862,-0.11784466356039,0.609064757823944,0.784316658973694,-0.13331313431263,0.575436592102051,0.806907773017883,-0.101863130927086,0.611777245998383,0.784443974494934,-0.129246816039085,0.628013908863068,0.767394065856934,-0.101863130927086,0.611777245998383,0.784443974494934,-0.112820535898209,0.601291179656982,0.791024804115295,-0.300031065940857,0.508646070957184,0.807007014751434,-0.270678579807281,0.522927463054657,0.808257341384888,-0.253222078084946,0.470214396715164,0.845444738864899,-0.270678579807281,0.522927463054657,0.808257341384888,-0.344692260026932,0.582880973815918,0.73582398891449,-0.215041399002075,0.59374988079071,0.775382518768311,-0.215041399002075,0.59374988079071,0.775382518768311,-0.257578313350677,0.639456570148468,0.724395275115967,-0.129246816039085,0.628013908863068,0.767394065856934,-0.221785336732864,0.435822635889053,0.8722785115242,-0.230110391974449,0.424787849187851,0.875559449195862,-0.260773599147797,0.461763441562653,0.847803950309753,-0.253222078084946,0.470214396715164,0.845444738864899, +-0.260773599147797,0.461763441562653,0.847803950309753,-0.300031065940857,0.508646070957184,0.807007014751434,-0.0808609426021576,0.605528473854065,0.791704893112183,0.0466975085437298,0.612105906009674,0.789395689964294,0.0814967676997185,0.551981747150421,0.829864084720612,-0.13331313431263,0.575436592102051,0.806907773017883,-0.11784466356039,0.609064757823944,0.784316658973694,-0.0808609426021576,0.605528473854065,0.791704893112183,0.124823749065399,0.549116849899292,0.826371312141418,0.099610224366188,0.525090932846069,0.845196545124054,0.129363998770714,0.497384965419769,0.857830464839935,0.124823749065399,0.549116849899292,0.826371312141418,0.0814967676997185,0.551981747150421,0.829864084720612,0.163395509123802,0.599611043930054,0.783433675765991,0.099610224366188,0.525090932846069,0.845196545124054,0.13122695684433,0.573379039764404,0.808712422847748,0.187154442071915,0.492489367723465,0.849957227706909,0.154508769512177,0.602203369140625,0.783248364925385,0.13122695684433,0.573379039764404,0.808712422847748,0.0182680934667587,0.611121952533722,0.791325569152832,0.0813170522451401,0.636084139347076,0.767322838306427,0.0126438951119781,0.647016882896423,0.762370705604553,0.0285270549356937,0.680732429027557,0.731976389884949,0.0182680934667587,0.611121952533722,0.791325569152832,0.0126438951119781,0.647016882896423,0.762370705604553,0.154508769512177,0.602203369140625,0.783248364925385,-0.0165920779109001,0.674281001091003,0.738288402557373,0.0188094787299633,0.607549667358398,0.794058859348297,0.0285270549356937,0.680732429027557,0.731976389884949,0.0188094787299633,0.607549667358398,0.794058859348297,-0.0165920779109001,0.674281001091003,0.738288402557373,-0.105803988873959,0.575798332691193,0.81071674823761,-0.126084223389626,0.428514540195465,0.894694328308105,-0.138451859354973,0.465445697307587,0.874180316925049,-0.105803988873959,0.575798332691193,0.81071674823761,-0.126084223389626,0.428514540195465,0.894694328308105,-0.193615481257439,0.343994498252869,0.918793082237244,-0.138451859354973,0.465445697307587,0.874180316925049, +0.0447802841663361,0.392762809991837,0.918548822402954,-0.0997171252965927,0.397240579128265,0.912280857563019,-0.193615481257439,0.343994498252869,0.918793082237244,0.126146882772446,0.411300659179688,0.90272843837738,0.0447802841663361,0.392762809991837,0.918548822402954,0.201184317469597,0.439421594142914,0.875461876392365,0.15597540140152,0.408130019903183,0.899500548839569,0.167197108268738,0.369580388069153,0.914032459259033,0.155844211578369,0.431243091821671,0.888674259185791,0.201184317469597,0.439421594142914,0.875461876392365,0.155844211578369,0.431243091821671,0.888674259185791,0.126146882772446,0.411300659179688,0.90272843837738,0.15597540140152,0.408130019903183,0.899500548839569,0.121623747050762,0.446964293718338,0.886245131492615,0.208391189575195,0.388018250465393,0.89778333902359,0.0751755014061928,0.407830208539963,0.909957706928253,0.121623747050762,0.446964293718338,0.886245131492615,0.00678121671080589,0.477274954319,0.878727793693542,-0.110742457211018,0.238883882761002,0.964712679386139,-0.0120590049773455,0.281187474727631,0.959577023983002,-0.0692095458507538,0.396191656589508,0.915555596351624,-0.0692095458507538,0.396191656589508,0.915555596351624,0.0751755014061928,0.407830208539963,0.909957706928253,0.00678121671080589,0.477274954319,0.878727793693542,-0.110742457211018,0.238883882761002,0.964712679386139,-0.10918502509594,0.167230203747749,0.979853332042694,-0.101666465401649,0.140243783593178,0.984883487224579,-0.186008542776108,0.15044005215168,0.970962703227997,-0.10918502509594,0.167230203747749,0.979853332042694,-0.163330540060997,0.289626717567444,0.943100929260254,0.199213624000549,-0.169640943408012,0.965161025524139,0.136822134256363,-0.111212283372879,0.984332978725433,0.148108243942261,0.0651188716292381,0.986824929714203,-0.014226570725441,-0.51861572265625,0.85488897562027,-0.00265303067862988,-0.487260490655899,0.87325257062912,0.13868559896946,-0.0591722913086414,0.988567054271698,0.0692684724926949,-0.206985965371132,0.975888609886169,-0.014226570725441,-0.51861572265625,0.85488897562027, +0.13868559896946,-0.0591722913086414,0.988567054271698,0.0692684724926949,-0.206985965371132,0.975888609886169,0.148108243942261,0.0651188716292381,0.986824929714203,0.120994731783867,0.0707344859838486,0.990129709243774,-0.00265303067862988,-0.487260490655899,0.87325257062912,-0.104612536728382,-0.708353996276855,0.698062181472778,-0.0281032584607601,-0.364659011363983,0.930716872215271,-0.0281032584607601,-0.364659011363983,0.930716872215271,-0.104612536728382,-0.708353996276855,0.698062181472778,-0.00786607153713703,-0.412341594696045,0.910995304584503,0.040744211524725,-0.615674436092377,0.786946475505829,0.20653560757637,-0.240160018205643,0.948507308959961,-0.00786607153713703,-0.412341594696045,0.910995304584503,0.0135263269767165,-0.529814898967743,0.848005354404449,0.040744211524725,-0.615674436092377,0.786946475505829,-0.0597732178866863,-0.741435408592224,0.668356597423553,-0.0597732178866863,-0.741435408592224,0.668356597423553,-0.107564650475979,-0.757838189601898,0.643514573574066,-0.107299014925957,-0.726344168186188,0.678904294967651,-0.178355470299721,-0.675301373004913,0.71565169095993,-0.193365931510925,-0.624986410140991,0.756307780742645,-0.107299014925957,-0.726344168186188,0.678904294967651,-0.228922426700592,-0.451514661312103,0.862397253513336,-0.193365931510925,-0.624986410140991,0.756307780742645,-0.281969338655472,-0.509728670120239,0.812815964221954,-0.281969338655472,-0.509728670120239,0.812815964221954,-0.313921988010406,-0.332227021455765,0.889425694942474,-0.228922426700592,-0.451514661312103,0.862397253513336,-0.219923377037048,-0.399911612272263,0.889777541160584,-0.277587652206421,-0.311597973108292,0.908763825893402,-0.23735049366951,-0.191121995449066,0.952437400817871,-0.0491985790431499,-0.42323762178421,0.904681861400604,-0.0814951732754707,-0.43065270781517,0.898830771446228,-0.219923377037048,-0.399911612272263,0.889777541160584,-0.0905354097485542,-0.2999666929245,0.949643731117249,-0.0814951732754707,-0.43065270781517,0.898830771446228,0.0759221017360687,-0.351094454526901,0.933256924152374, +-0.23735049366951,-0.191121995449066,0.952437400817871,-0.277587652206421,-0.311597973108292,0.908763825893402,-0.313921988010406,-0.332227021455765,0.889425694942474,0.0759221017360687,-0.351094454526901,0.933256924152374,-0.0310634039342403,-0.168853968381882,0.985151410102844,-0.0905354097485542,-0.2999666929245,0.949643731117249,-0.0672307163476944,-0.00660892203450203,0.997715413570404,-0.198687642812729,0.0247589386999607,0.979749917984009,-0.0310634039342403,-0.168853968381882,0.985151410102844,-0.0672307163476944,-0.00660892203450203,0.997715413570404,-0.15954464673996,0.0799979418516159,0.983943998813629,-0.198687642812729,0.0247589386999607,0.979749917984009,-0.15954464673996,0.0799979418516159,0.983943998813629,-0.213000357151031,-0.086077556014061,0.973253011703491,-0.261419743299484,-0.00387935643084347,0.965217351913452,-0.270241945981979,-0.250923067331314,0.929519653320313,-0.351191103458405,-0.199609413743019,0.914779126644135,-0.261419743299484,-0.00387935643084347,0.965217351913452,-0.305228352546692,-0.307656824588776,0.901211857795715,-0.351289957761765,-0.331517517566681,0.875609159469604,-0.308242738246918,-0.345413863658905,0.886383414268494,-0.270241945981979,-0.250923067331314,0.929519653320313,-0.351289957761765,-0.331517517566681,0.875609159469604,-0.351191103458405,-0.199609413743019,0.914779126644135,-0.308242738246918,-0.345413863658905,0.886383414268494,-0.338733583688736,-0.278161764144897,0.898824512958527,-0.213679328560829,-0.261355996131897,0.941293835639954,-0.186724990606308,-0.202559903264046,0.961302876472473,-0.213679328560829,-0.261355996131897,0.941293835639954,-0.239680618047714,-0.186049520969391,0.952858150005341,-0.327665328979492,0.0728094130754471,0.941984176635742,-0.117534317076206,0.112793676555157,0.986642360687256,-0.255089312791824,0.0274212155491114,0.966528534889221,-0.0378654822707176,0.235399231314659,0.971160769462585,-0.117534317076206,0.112793676555157,0.986642360687256,-0.264112889766693,0.274795740842819,0.924516916275024,-0.454387277364731,0.719729423522949,0.524901509284973, +-0.256511002779007,0.635345041751862,0.728380799293518,-0.239522457122803,0.46712538599968,0.851130247116089,-0.0378654822707176,0.235399231314659,0.971160769462585,-0.264112889766693,0.274795740842819,0.924516916275024,-0.239522457122803,0.46712538599968,0.851130247116089,-0.34325984120369,0.868830859661102,0.356798946857452,-0.383523255586624,0.860610485076904,0.335051298141479,-0.395905762910843,0.815633475780487,0.421901136636734,-0.383523255586624,0.860610485076904,0.335051298141479,-0.378378599882126,0.828564763069153,0.412686169147491,-0.467525482177734,0.81559830904007,0.340909481048584,-0.378378599882126,0.828564763069153,0.412686169147491,-0.295472472906113,0.732084810733795,0.613797724246979,-0.436146110296249,0.79842084646225,0.415091037750244,-0.256511002779007,0.635345041751862,0.728380799293518,-0.436146110296249,0.79842084646225,0.415091037750244,-0.295472472906113,0.732084810733795,0.613797724246979,0.0103465896099806,0.167325541377068,0.985847353935242,-0.122280202805996,0.0971738621592522,0.987727046012878,-0.153740763664246,0.225317642092705,0.962078809738159,-0.0533705577254295,0.258902609348297,0.964427649974823,-0.244199857115746,0.34387993812561,0.906704425811768,-0.15250451862812,0.196065083146095,0.968659281730652,-0.153740763664246,0.225317642092705,0.962078809738159,-0.122280202805996,0.0971738621592522,0.987727046012878,-0.15250451862812,0.196065083146095,0.968659281730652,0.146785333752632,0.0417352132499218,0.988287448883057,-0.132743492722511,0.0135575849562883,0.991057634353638,0.0563478171825409,0.0842642486095428,0.994848906993866,0.146785333752632,0.0417352132499218,0.988287448883057,-0.0553450658917427,-0.0623061023652554,0.996521353721619,-0.132743492722511,0.0135575849562883,0.991057634353638,0.0103465896099806,0.167325541377068,0.985847353935242,0.0563478171825409,0.0842642486095428,0.994848906993866,-0.122280202805996,0.0971738621592522,0.987727046012878,-0.0553450658917427,-0.0623061023652554,0.996521353721619,-0.115296490490437,-0.0926408469676971,0.9890016913414,-0.265487670898438,-0.0899147167801857,0.959912300109863, +-0.115296490490437,-0.0926408469676971,0.9890016913414,-0.201329484581947,-0.0951989516615868,0.974886417388916,-0.265487670898438,-0.0899147167801857,0.959912300109863,-0.186724990606308,-0.202559903264046,0.961302876472473,-0.276037275791168,-0.131297796964645,0.952136635780334,-0.201329484581947,-0.0951989516615868,0.974886417388916,-0.34325984120369,0.868830859661102,0.356798946857452,-0.358920603990555,0.784794092178345,0.505246520042419,-0.318130731582642,0.870106339454651,0.376440942287445,-0.212375774979591,0.4824458360672,0.849789619445801,-0.157589688897133,0.501818716526031,0.850495934486389,-0.193550124764442,0.590336620807648,0.783607602119446,-0.0533705577254295,0.258902609348297,0.964427649974823,-0.157589688897133,0.501818716526031,0.850495934486389,-0.244199857115746,0.34387993812561,0.906704425811768,-0.193550124764442,0.590336620807648,0.783607602119446,-0.137270584702492,0.652341604232788,0.74539053440094,-0.221694365143776,0.698627054691315,0.680273234844208,-0.241529792547226,0.765996336936951,0.59574556350708,-0.358920603990555,0.784794092178345,0.505246520042419,-0.221694365143776,0.698627054691315,0.680273234844208,-0.255089312791824,0.0274212155491114,0.966528534889221,-0.274871498346329,0.198435977101326,0.940780937671661,-0.185875207185745,0.0435255393385887,0.981608688831329,-0.263103157281876,0.337349623441696,0.903864920139313,-0.228179141879082,0.150714114308357,0.961883306503296,-0.274871498346329,0.198435977101326,0.940780937671661,-0.263103157281876,0.337349623441696,0.903864920139313,-0.187370419502258,0.345458060503006,0.91953843832016,-0.230110391974449,0.424787849187851,0.875559449195862,-0.101863130927086,0.611777245998383,0.784443974494934,-0.0734006762504578,0.624806046485901,0.777322053909302,-0.11784466356039,0.609064757823944,0.784316658973694,-0.0734006762504578,0.624806046485901,0.777322053909302,-0.101863130927086,0.611777245998383,0.784443974494934,-0.129246816039085,0.628013908863068,0.767394065856934,-0.300031065940857,0.508646070957184,0.807007014751434,-0.344692260026932,0.582880973815918,0.73582398891449, +-0.270678579807281,0.522927463054657,0.808257341384888,-0.215041399002075,0.59374988079071,0.775382518768311,-0.344692260026932,0.582880973815918,0.73582398891449,-0.257578313350677,0.639456570148468,0.724395275115967,-0.143788293004036,0.638352155685425,0.756195247173309,-0.129246816039085,0.628013908863068,0.767394065856934,-0.257578313350677,0.639456570148468,0.724395275115967,-0.260773599147797,0.461763441562653,0.847803950309753,-0.230110391974449,0.424787849187851,0.875559449195862,-0.19723841547966,0.465813785791397,0.862620651721954,-0.300031065940857,0.508646070957184,0.807007014751434,-0.260773599147797,0.461763441562653,0.847803950309753,-0.19723841547966,0.465813785791397,0.862620651721954,-0.0808609426021576,0.605528473854065,0.791704893112183,-0.0943541526794434,0.610206067562103,0.786603987216949,0.0466975085437298,0.612105906009674,0.789395689964294,0.164749771356583,0.585913896560669,0.793449580669403,0.0814967676997185,0.551981747150421,0.829864084720612,0.0466975085437298,0.612105906009674,0.789395689964294,-0.11784466356039,0.609064757823944,0.784316658973694,-0.0943541526794434,0.610206067562103,0.786603987216949,-0.0808609426021576,0.605528473854065,0.791704893112183,0.124823749065399,0.549116849899292,0.826371312141418,0.0408790111541748,0.589746713638306,0.806552886962891,0.099610224366188,0.525090932846069,0.845196545124054,0.164749771356583,0.585913896560669,0.793449580669403,0.163395509123802,0.599611043930054,0.783433675765991,0.0814967676997185,0.551981747150421,0.829864084720612,0.0408790111541748,0.589746713638306,0.806552886962891,0.124823749065399,0.549116849899292,0.826371312141418,0.163395509123802,0.599611043930054,0.783433675765991,0.13122695684433,0.573379039764404,0.808712422847748,0.099610224366188,0.525090932846069,0.845196545124054,0.0408790111541748,0.589746713638306,0.806552886962891,0.13122695684433,0.573379039764404,0.808712422847748,0.0408790111541748,0.589746713638306,0.806552886962891,0.0182680934667587,0.611121952533722,0.791325569152832,0.0126438951119781,0.647016882896423,0.762370705604553, +-0.0273397080600262,0.676782608032227,0.735674977302551,0.0285270549356937,0.680732429027557,0.731976389884949,0.0182680934667587,0.611121952533722,0.791325569152832,-0.0403720028698444,0.631038010120392,0.77470064163208,0.0126438951119781,0.647016882896423,0.762370705604553,-0.0165920779109001,0.674281001091003,0.738288402557373,0.0285270549356937,0.680732429027557,0.731976389884949,0.0313306488096714,0.681641578674316,0.731015026569366,-0.0394677966833115,0.638499081134796,0.768609821796417,-0.105803988873959,0.575798332691193,0.81071674823761,-0.0165920779109001,0.674281001091003,0.738288402557373,-0.0736152604222298,0.533828496932983,0.842382252216339,-0.126084223389626,0.428514540195465,0.894694328308105,-0.105803988873959,0.575798332691193,0.81071674823761,-0.126084223389626,0.428514540195465,0.894694328308105,0.0447802841663361,0.392762809991837,0.918548822402954,-0.193615481257439,0.343994498252869,0.918793082237244,0.201184317469597,0.439421594142914,0.875461876392365,0.0447802841663361,0.392762809991837,0.918548822402954,0.057147528976202,0.459615439176559,0.886277437210083,0.15597540140152,0.408130019903183,0.899500548839569,0.155844211578369,0.431243091821671,0.888674259185791,0.0861893966794014,0.461974173784256,0.882695376873016,0.127389028668404,0.52800977230072,0.839629411697388,0.155844211578369,0.431243091821671,0.888674259185791,0.201184317469597,0.439421594142914,0.875461876392365,0.15597540140152,0.408130019903183,0.899500548839569,0.0449520125985146,0.510544955730438,0.858675181865692,0.121623747050762,0.446964293718338,0.886245131492615,0.00678121671080589,0.477274954319,0.878727793693542,0.121623747050762,0.446964293718338,0.886245131492615,0.0449520125985146,0.510544955730438,0.858675181865692,-0.163330540060997,0.289626717567444,0.943100929260254,-0.110742457211018,0.238883882761002,0.964712679386139,-0.0692095458507538,0.396191656589508,0.915555596351624,-0.0692095458507538,0.396191656589508,0.915555596351624,0.00678121671080589,0.477274954319,0.878727793693542,-0.0808006152510643,0.497795552015305,0.863522291183472, +-0.163330540060997,0.289626717567444,0.943100929260254,-0.10918502509594,0.167230203747749,0.979853332042694,-0.110742457211018,0.238883882761002,0.964712679386139,-0.163330540060997,0.289626717567444,0.943100929260254,-0.289223611354828,0.285745799541473,0.913618624210358,-0.186008542776108,0.15044005215168,0.970962703227997,0.136822134256363,-0.111212283372879,0.984332978725433,0.131407126784325,-0.0619342401623726,0.9893918633461,0.148108243942261,0.0651188716292381,0.986824929714203,-0.014226570725441,-0.51861572265625,0.85488897562027,-0.0808166563510895,-0.746587038040161,0.660360753536224,-0.00265303067862988,-0.487260490655899,0.87325257062912,-0.0430256873369217,-0.643864214420319,0.763929009437561,-0.014226570725441,-0.51861572265625,0.85488897562027,0.0692684724926949,-0.206985965371132,0.975888609886169,0.148108243942261,0.0651188716292381,0.986824929714203,0.131407126784325,-0.0619342401623726,0.9893918633461,0.120994731783867,0.0707344859838486,0.990129709243774,0.0692684724926949,-0.206985965371132,0.975888609886169,0.120994731783867,0.0707344859838486,0.990129709243774,0.112780079245567,-0.162548288702965,0.98023396730423,-0.104612536728382,-0.708353996276855,0.698062181472778,-0.00265303067862988,-0.487260490655899,0.87325257062912,-0.0808166563510895,-0.746587038040161,0.660360753536224,0.040744211524725,-0.615674436092377,0.786946475505829,-0.00786607153713703,-0.412341594696045,0.910995304584503,-0.104612536728382,-0.708353996276855,0.698062181472778,-0.0597732178866863,-0.741435408592224,0.668356597423553,0.040744211524725,-0.615674436092377,0.786946475505829,-0.111132420599461,-0.762474179267883,0.637403011322021,-0.0597732178866863,-0.741435408592224,0.668356597423553,-0.111132420599461,-0.762474179267883,0.637403011322021,-0.107564650475979,-0.757838189601898,0.643514573574066,-0.178355470299721,-0.675301373004913,0.71565169095993,-0.107299014925957,-0.726344168186188,0.678904294967651,-0.107564650475979,-0.757838189601898,0.643514573574066,-0.178355470299721,-0.675301373004913,0.71565169095993, +-0.281969338655472,-0.509728670120239,0.812815964221954,-0.193365931510925,-0.624986410140991,0.756307780742645,-0.29437193274498,-0.286476463079453,0.911743521690369,-0.313921988010406,-0.332227021455765,0.889425694942474,-0.281969338655472,-0.509728670120239,0.812815964221954,-0.0495379008352757,-0.261851876974106,0.963835835456848,-0.219923377037048,-0.399911612272263,0.889777541160584,-0.23735049366951,-0.191121995449066,0.952437400817871,-0.0491985790431499,-0.42323762178421,0.904681861400604,0.10025629401207,-0.393304914236069,0.913925528526306,-0.0814951732754707,-0.43065270781517,0.898830771446228,-0.0491985790431499,-0.42323762178421,0.904681861400604,-0.219923377037048,-0.399911612272263,0.889777541160584,-0.0495379008352757,-0.261851876974106,0.963835835456848,0.0759221017360687,-0.351094454526901,0.933256924152374,-0.0814951732754707,-0.43065270781517,0.898830771446228,0.10025629401207,-0.393304914236069,0.913925528526306,-0.23735049366951,-0.191121995449066,0.952437400817871,-0.313921988010406,-0.332227021455765,0.889425694942474,-0.29437193274498,-0.286476463079453,0.911743521690369,0.0759221017360687,-0.351094454526901,0.933256924152374,0.106468506157398,-0.326004147529602,0.939353823661804,-0.0310634039342403,-0.168853968381882,0.985151410102844,-0.0672307163476944,-0.00660892203450203,0.997715413570404,-0.0310634039342403,-0.168853968381882,0.985151410102844,-0.0213475823402405,-0.11724254488945,0.992873787879944,-0.0672307163476944,-0.00660892203450203,0.997715413570404,-0.0822720527648926,0.010066338814795,0.996559023857117,-0.15954464673996,0.0799979418516159,0.983943998813629,-0.165552452206612,-0.0626979619264603,0.984205901622772,-0.213000357151031,-0.086077556014061,0.973253011703491,-0.15954464673996,0.0799979418516159,0.983943998813629,-0.270241945981979,-0.250923067331314,0.929519653320313,-0.261419743299484,-0.00387935643084347,0.965217351913452,-0.213000357151031,-0.086077556014061,0.973253011703491,-0.308242738246918,-0.345413863658905,0.886383414268494,-0.351289957761765,-0.331517517566681,0.875609159469604, +-0.338733583688736,-0.278161764144897,0.898824512958527,-0.270241945981979,-0.250923067331314,0.929519653320313,-0.309330314397812,-0.383841961622238,0.870045959949493,-0.351289957761765,-0.331517517566681,0.875609159469604,-0.239680618047714,-0.186049520969391,0.952858150005341,-0.213679328560829,-0.261355996131897,0.941293835639954,-0.338733583688736,-0.278161764144897,0.898824512958527,-0.19063763320446,-0.18367426097393,0.964324057102203,-0.186724990606308,-0.202559903264046,0.961302876472473,-0.239680618047714,-0.186049520969391,0.952858150005341,-0.0880421847105026,0.210058704018593,0.973716497421265,-0.255089312791824,0.0274212155491114,0.966528534889221,-0.117534317076206,0.112793676555157,0.986642360687256,-0.117534317076206,0.112793676555157,0.986642360687256,-0.0378654822707176,0.235399231314659,0.971160769462585,-0.0880421847105026,0.210058704018593,0.973716497421265,-0.0119927721098065,0.297957509756088,0.954503774642944,-0.239522457122803,0.46712538599968,0.851130247116089,-0.256511002779007,0.635345041751862,0.728380799293518,-0.0119927721098065,0.297957509756088,0.954503774642944,-0.0378654822707176,0.235399231314659,0.971160769462585,-0.239522457122803,0.46712538599968,0.851130247116089,-0.34325984120369,0.868830859661102,0.356798946857452,-0.345222979784012,0.832892656326294,0.432563036680222,-0.383523255586624,0.860610485076904,0.335051298141479,-0.383523255586624,0.860610485076904,0.335051298141479,-0.345222979784012,0.832892656326294,0.432563036680222,-0.378378599882126,0.828564763069153,0.412686169147491,-0.148011118173599,0.672079980373383,0.725535035133362,-0.295472472906113,0.732084810733795,0.613797724246979,-0.378378599882126,0.828564763069153,0.412686169147491,-0.256511002779007,0.635345041751862,0.728380799293518,-0.295472472906113,0.732084810733795,0.613797724246979,-0.0481461025774479,0.492816805839539,0.868800044059753,-0.15250451862812,0.196065083146095,0.968659281730652,0.0157581400126219,0.130627289414406,0.991306245326996,-0.0533705577254295,0.258902609348297,0.964427649974823,-0.15250451862812,0.196065083146095,0.968659281730652, +-0.122280202805996,0.0971738621592522,0.987727046012878,0.0157581400126219,0.130627289414406,0.991306245326996,0.0563478171825409,0.0842642486095428,0.994848906993866,-0.132743492722511,0.0135575849562883,0.991057634353638,-0.157269462943077,0.0403628535568714,0.986730515956879,-0.252416759729385,-0.00136262062005699,0.967617630958557,-0.132743492722511,0.0135575849562883,0.991057634353638,-0.0553450658917427,-0.0623061023652554,0.996521353721619,0.0563478171825409,0.0842642486095428,0.994848906993866,-0.157269462943077,0.0403628535568714,0.986730515956879,-0.122280202805996,0.0971738621592522,0.987727046012878,-0.0553450658917427,-0.0623061023652554,0.996521353721619,-0.265487670898438,-0.0899147167801857,0.959912300109863,-0.252416759729385,-0.00136262062005699,0.967617630958557,-0.201329484581947,-0.0951989516615868,0.974886417388916,-0.276037275791168,-0.131297796964645,0.952136635780334,-0.265487670898438,-0.0899147167801857,0.959912300109863,-0.276037275791168,-0.131297796964645,0.952136635780334,-0.186724990606308,-0.202559903264046,0.961302876472473,-0.217048168182373,-0.187892526388168,0.957907259464264,-0.245418563485146,0.825142562389374,0.508831322193146,-0.318130731582642,0.870106339454651,0.376440942287445,-0.358920603990555,0.784794092178345,0.505246520042419,-0.34325984120369,0.868830859661102,0.356798946857452,-0.318130731582642,0.870106339454651,0.376440942287445,-0.270971089601517,0.869038641452789,0.413940072059631,-0.193550124764442,0.590336620807648,0.783607602119446,-0.157589688897133,0.501818716526031,0.850495934486389,-0.137270584702492,0.652341604232788,0.74539053440094,-0.0991649925708771,0.413793861865997,0.904953479766846,-0.157589688897133,0.501818716526031,0.850495934486389,-0.0533705577254295,0.258902609348297,0.964427649974823,-0.182099252939224,0.711992800235748,0.678163647651672,-0.221694365143776,0.698627054691315,0.680273234844208,-0.137270584702492,0.652341604232788,0.74539053440094,-0.241529792547226,0.765996336936951,0.59574556350708,-0.245418563485146,0.825142562389374,0.508831322193146, +-0.358920603990555,0.784794092178345,0.505246520042419,-0.221694365143776,0.698627054691315,0.680273234844208,-0.15339732170105,0.776742279529572,0.610852301120758,-0.241529792547226,0.765996336936951,0.59574556350708,-0.0880421847105026,0.210058704018593,0.973716497421265,-0.274871498346329,0.198435977101326,0.940780937671661,-0.255089312791824,0.0274212155491114,0.966528534889221,-0.263103157281876,0.337349623441696,0.903864920139313,-0.274871498346329,0.198435977101326,0.940780937671661,-0.187370419502258,0.345458060503006,0.91953843832016,-0.133433401584625,0.398495227098465,0.907412230968475,-0.230110391974449,0.424787849187851,0.875559449195862,-0.187370419502258,0.345458060503006,0.91953843832016,-0.0734006762504578,0.624806046485901,0.777322053909302,-0.122721269726753,0.612933874130249,0.780545592308044,-0.11784466356039,0.609064757823944,0.784316658973694,-0.143788293004036,0.638352155685425,0.756195247173309,-0.0734006762504578,0.624806046485901,0.777322053909302,-0.129246816039085,0.628013908863068,0.767394065856934,-0.300031065940857,0.508646070957184,0.807007014751434,-0.410612344741821,0.594025194644928,0.691759645938873,-0.344692260026932,0.582880973815918,0.73582398891449,-0.257578313350677,0.639456570148468,0.724395275115967,-0.344692260026932,0.582880973815918,0.73582398891449,-0.389988541603088,0.626154184341431,0.675158977508545,-0.143788293004036,0.638352155685425,0.756195247173309,-0.257578313350677,0.639456570148468,0.724395275115967,-0.351733475923538,0.612692415714264,0.707736790180206,-0.19723841547966,0.465813785791397,0.862620651721954,-0.230110391974449,0.424787849187851,0.875559449195862,-0.133433401584625,0.398495227098465,0.907412230968475,-0.300031065940857,0.508646070957184,0.807007014751434,-0.19723841547966,0.465813785791397,0.862620651721954,-0.225123718380928,0.521547675132751,0.822986721992493,0.0466975085437298,0.612105906009674,0.789395689964294,-0.0943541526794434,0.610206067562103,0.786603987216949,0.11588941514492,0.593560934066772,0.79640120267868,0.11588941514492,0.593560934066772,0.79640120267868, +0.164749771356583,0.585913896560669,0.793449580669403,0.0466975085437298,0.612105906009674,0.789395689964294,-0.0943541526794434,0.610206067562103,0.786603987216949,-0.11784466356039,0.609064757823944,0.784316658973694,-0.122721269726753,0.612933874130249,0.780545592308044,0.11588941514492,0.593560934066772,0.79640120267868,0.163395509123802,0.599611043930054,0.783433675765991,0.164749771356583,0.585913896560669,0.793449580669403,0.0118015566840768,0.649717330932617,0.76008415222168,0.0408790111541748,0.589746713638306,0.806552886962891,0.163395509123802,0.599611043930054,0.783433675765991,0.0182680934667587,0.611121952533722,0.791325569152832,0.0408790111541748,0.589746713638306,0.806552886962891,-0.0403720028698444,0.631038010120392,0.77470064163208,-0.0273397080600262,0.676782608032227,0.735674977302551,0.0126438951119781,0.647016882896423,0.762370705604553,-0.0403720028698444,0.631038010120392,0.77470064163208,-0.0273397080600262,0.676782608032227,0.735674977302551,0.0313306488096714,0.681641578674316,0.731015026569366,0.0285270549356937,0.680732429027557,0.731976389884949,-0.0394677966833115,0.638499081134796,0.768609821796417,-0.0165920779109001,0.674281001091003,0.738288402557373,0.0313306488096714,0.681641578674316,0.731015026569366,-0.0736152604222298,0.533828496932983,0.842382252216339,-0.105803988873959,0.575798332691193,0.81071674823761,-0.0394677966833115,0.638499081134796,0.768609821796417,-0.126084223389626,0.428514540195465,0.894694328308105,-0.0736152604222298,0.533828496932983,0.842382252216339,0.057147528976202,0.459615439176559,0.886277437210083,-0.126084223389626,0.428514540195465,0.894694328308105,0.057147528976202,0.459615439176559,0.886277437210083,0.0447802841663361,0.392762809991837,0.918548822402954,0.201184317469597,0.439421594142914,0.875461876392365,0.057147528976202,0.459615439176559,0.886277437210083,0.127389028668404,0.52800977230072,0.839629411697388,0.0861893966794014,0.461974173784256,0.882695376873016,0.155844211578369,0.431243091821671,0.888674259185791,0.0679269284009933,0.559387505054474,0.826118290424347, +0.15597540140152,0.408130019903183,0.899500548839569,0.0861893966794014,0.461974173784256,0.882695376873016,0.0449520125985146,0.510544955730438,0.858675181865692,0.0679269284009933,0.559387505054474,0.826118290424347,0.155844211578369,0.431243091821671,0.888674259185791,0.127389028668404,0.52800977230072,0.839629411697388,0.00678121671080589,0.477274954319,0.878727793693542,0.0449520125985146,0.510544955730438,0.858675181865692,-0.0606788545846939,0.556630074977875,0.828541398048401,-0.139198750257492,0.404264092445374,0.903987884521484,-0.163330540060997,0.289626717567444,0.943100929260254,-0.0692095458507538,0.396191656589508,0.915555596351624,0.00678121671080589,0.477274954319,0.878727793693542,-0.0606788545846939,0.556630074977875,0.828541398048401,-0.0808006152510643,0.497795552015305,0.863522291183472,-0.125791221857071,0.470518589019775,0.873377799987793,-0.0692095458507538,0.396191656589508,0.915555596351624,-0.0808006152510643,0.497795552015305,0.863522291183472,-0.289223611354828,0.285745799541473,0.913618624210358,-0.163330540060997,0.289626717567444,0.943100929260254,-0.224903836846352,0.427642107009888,0.875522911548615,-0.0430256873369217,-0.643864214420319,0.763929009437561,-0.0808166563510895,-0.746587038040161,0.660360753536224,-0.014226570725441,-0.51861572265625,0.85488897562027,0.109254233539104,-0.585358619689941,0.803379476070404,-0.0430256873369217,-0.643864214420319,0.763929009437561,0.0692684724926949,-0.206985965371132,0.975888609886169,0.131407126784325,-0.0619342401623726,0.9893918633461,0.162875175476074,-0.0189905539155006,0.986463844776154,0.120994731783867,0.0707344859838486,0.990129709243774,0.17294317483902,-0.271946340799332,0.946644425392151,0.112780079245567,-0.162548288702965,0.98023396730423,0.120994731783867,0.0707344859838486,0.990129709243774,0.112780079245567,-0.162548288702965,0.98023396730423,0.109254233539104,-0.585358619689941,0.803379476070404,0.0692684724926949,-0.206985965371132,0.975888609886169,-0.104612536728382,-0.708353996276855,0.698062181472778,-0.0808166563510895,-0.746587038040161,0.660360753536224, +-0.105984009802341,-0.753260016441345,0.649127542972565,-0.104612536728382,-0.708353996276855,0.698062181472778,-0.111132420599461,-0.762474179267883,0.637403011322021,0.040744211524725,-0.615674436092377,0.786946475505829,-0.111132420599461,-0.762474179267883,0.637403011322021,-0.0339388512074947,-0.725036978721619,0.687873065471649,-0.107564650475979,-0.757838189601898,0.643514573574066,-0.101948812603951,-0.696193635463715,0.710577726364136,-0.178355470299721,-0.675301373004913,0.71565169095993,-0.107564650475979,-0.757838189601898,0.643514573574066,-0.232030302286148,-0.527782797813416,0.81707227230072,-0.281969338655472,-0.509728670120239,0.812815964221954,-0.178355470299721,-0.675301373004913,0.71565169095993,-0.232030302286148,-0.527782797813416,0.81707227230072,-0.29437193274498,-0.286476463079453,0.911743521690369,-0.281969338655472,-0.509728670120239,0.812815964221954,-0.23735049366951,-0.191121995449066,0.952437400817871,-0.012083038687706,-0.0640560984611511,0.99787312746048,-0.0495379008352757,-0.261851876974106,0.963835835456848,-0.0491985790431499,-0.42323762178421,0.904681861400604,-0.0495379008352757,-0.261851876974106,0.963835835456848,0.10025629401207,-0.393304914236069,0.913925528526306,0.0759221017360687,-0.351094454526901,0.933256924152374,0.10025629401207,-0.393304914236069,0.913925528526306,0.233304426074028,-0.401558667421341,0.885618150234222,-0.23735049366951,-0.191121995449066,0.952437400817871,-0.29437193274498,-0.286476463079453,0.911743521690369,-0.202821299433708,0.0160295628011227,0.979084491729736,0.106468506157398,-0.326004147529602,0.939353823661804,0.0759221017360687,-0.351094454526901,0.933256924152374,0.233304426074028,-0.401558667421341,0.885618150234222,0.106468506157398,-0.326004147529602,0.939353823661804,-0.0213475823402405,-0.11724254488945,0.992873787879944,-0.0310634039342403,-0.168853968381882,0.985151410102844,-0.0672307163476944,-0.00660892203450203,0.997715413570404,-0.0213475823402405,-0.11724254488945,0.992873787879944,-0.0822720527648926,0.010066338814795,0.996559023857117, +-0.165552452206612,-0.0626979619264603,0.984205901622772,-0.15954464673996,0.0799979418516159,0.983943998813629,-0.0822720527648926,0.010066338814795,0.996559023857117,-0.165552452206612,-0.0626979619264603,0.984205901622772,-0.223378613591194,-0.337788969278336,0.9143306016922,-0.213000357151031,-0.086077556014061,0.973253011703491,-0.223378613591194,-0.337788969278336,0.9143306016922,-0.270241945981979,-0.250923067331314,0.929519653320313,-0.213000357151031,-0.086077556014061,0.973253011703491,-0.351289957761765,-0.331517517566681,0.875609159469604,-0.309330314397812,-0.383841961622238,0.870045959949493,-0.338733583688736,-0.278161764144897,0.898824512958527,-0.270241945981979,-0.250923067331314,0.929519653320313,-0.223378613591194,-0.337788969278336,0.9143306016922,-0.309330314397812,-0.383841961622238,0.870045959949493,-0.239680618047714,-0.186049520969391,0.952858150005341,-0.338733583688736,-0.278161764144897,0.898824512958527,-0.376330018043518,-0.153854489326477,0.913621544837952,-0.186724990606308,-0.202559903264046,0.961302876472473,-0.19063763320446,-0.18367426097393,0.964324057102203,-0.217048168182373,-0.187892526388168,0.957907259464264,-0.19063763320446,-0.18367426097393,0.964324057102203,-0.239680618047714,-0.186049520969391,0.952858150005341,-0.327875137329102,-0.0905591920018196,0.940370619297028,-0.0880421847105026,0.210058704018593,0.973716497421265,-0.0378654822707176,0.235399231314659,0.971160769462585,-0.0119927721098065,0.297957509756088,0.954503774642944,-0.0119927721098065,0.297957509756088,0.954503774642944,-0.256511002779007,0.635345041751862,0.728380799293518,-0.0481461025774479,0.492816805839539,0.868800044059753,-0.270971089601517,0.869038641452789,0.413940072059631,-0.345222979784012,0.832892656326294,0.432563036680222,-0.34325984120369,0.868830859661102,0.356798946857452,-0.256465643644333,0.756111264228821,0.60209721326828,-0.378378599882126,0.828564763069153,0.412686169147491,-0.345222979784012,0.832892656326294,0.432563036680222,-0.295472472906113,0.732084810733795,0.613797724246979, +-0.148011118173599,0.672079980373383,0.725535035133362,-0.0481461025774479,0.492816805839539,0.868800044059753,-0.148011118173599,0.672079980373383,0.725535035133362,-0.378378599882126,0.828564763069153,0.412686169147491,-0.256465643644333,0.756111264228821,0.60209721326828,0.0157581400126219,0.130627289414406,0.991306245326996,-0.0386221744120121,0.0993533730506897,0.994302332401276,-0.0533705577254295,0.258902609348297,0.964427649974823,-0.073194645345211,0.08730149269104,0.993489265441895,0.0157581400126219,0.130627289414406,0.991306245326996,-0.122280202805996,0.0971738621592522,0.987727046012878,-0.157269462943077,0.0403628535568714,0.986730515956879,-0.132743492722511,0.0135575849562883,0.991057634353638,-0.252416759729385,-0.00136262062005699,0.967617630958557,-0.073194645345211,0.08730149269104,0.993489265441895,-0.122280202805996,0.0971738621592522,0.987727046012878,-0.157269462943077,0.0403628535568714,0.986730515956879,-0.268483102321625,-0.0831951126456261,0.959685027599335,-0.252416759729385,-0.00136262062005699,0.967617630958557,-0.265487670898438,-0.0899147167801857,0.959912300109863,-0.276037275791168,-0.131297796964645,0.952136635780334,-0.268483102321625,-0.0831951126456261,0.959685027599335,-0.265487670898438,-0.0899147167801857,0.959912300109863,-0.276037275791168,-0.131297796964645,0.952136635780334,-0.217048168182373,-0.187892526388168,0.957907259464264,-0.268483102321625,-0.0831951126456261,0.959685027599335,-0.217170044779778,0.85335111618042,0.473950326442719,-0.318130731582642,0.870106339454651,0.376440942287445,-0.245418563485146,0.825142562389374,0.508831322193146,-0.264501363039017,0.879896938800812,0.394740790128708,-0.270971089601517,0.869038641452789,0.413940072059631,-0.318130731582642,0.870106339454651,0.376440942287445,-0.137270584702492,0.652341604232788,0.74539053440094,-0.157589688897133,0.501818716526031,0.850495934486389,-0.210961937904358,0.62172269821167,0.754291594028473,-0.157589688897133,0.501818716526031,0.850495934486389,-0.0991649925708771,0.413793861865997,0.904953479766846, +-0.210961937904358,0.62172269821167,0.754291594028473,0.00446295458823442,0.189411550760269,0.981887578964233,-0.0991649925708771,0.413793861865997,0.904953479766846,-0.0533705577254295,0.258902609348297,0.964427649974823,-0.182099252939224,0.711992800235748,0.678163647651672,-0.15339732170105,0.776742279529572,0.610852301120758,-0.221694365143776,0.698627054691315,0.680273234844208,-0.137270584702492,0.652341604232788,0.74539053440094,-0.210961937904358,0.62172269821167,0.754291594028473,-0.182099252939224,0.711992800235748,0.678163647651672,-0.245418563485146,0.825142562389374,0.508831322193146,-0.241529792547226,0.765996336936951,0.59574556350708,-0.15339732170105,0.776742279529572,0.610852301120758,-0.0880421847105026,0.210058704018593,0.973716497421265,-0.187370419502258,0.345458060503006,0.91953843832016,-0.274871498346329,0.198435977101326,0.940780937671661,-0.187370419502258,0.345458060503006,0.91953843832016,-0.0674514770507813,0.295584857463837,0.952932178974152,-0.133433401584625,0.398495227098465,0.907412230968475,-0.0734006762504578,0.624806046485901,0.777322053909302,-0.0686390846967697,0.659193158149719,0.748834371566772,-0.122721269726753,0.612933874130249,0.780545592308044,-0.143788293004036,0.638352155685425,0.756195247173309,-0.0953855961561203,0.650668025016785,0.753347635269165,-0.0734006762504578,0.624806046485901,0.777322053909302,-0.309463143348694,0.566630840301514,0.763650357723236,-0.410612344741821,0.594025194644928,0.691759645938873,-0.300031065940857,0.508646070957184,0.807007014751434,-0.344692260026932,0.582880973815918,0.73582398891449,-0.410612344741821,0.594025194644928,0.691759645938873,-0.389988541603088,0.626154184341431,0.675158977508545,-0.389988541603088,0.626154184341431,0.675158977508545,-0.351733475923538,0.612692415714264,0.707736790180206,-0.257578313350677,0.639456570148468,0.724395275115967,-0.143788293004036,0.638352155685425,0.756195247173309,-0.351733475923538,0.612692415714264,0.707736790180206,-0.261588990688324,0.629579305648804,0.731574296951294,-0.19723841547966,0.465813785791397,0.862620651721954, +-0.133433401584625,0.398495227098465,0.907412230968475,-0.123819634318352,0.410911530256271,0.903227746486664,-0.225123718380928,0.521547675132751,0.822986721992493,-0.19723841547966,0.465813785791397,0.862620651721954,-0.177660554647446,0.493786305189133,0.851241230964661,-0.225123718380928,0.521547675132751,0.822986721992493,-0.309463143348694,0.566630840301514,0.763650357723236,-0.300031065940857,0.508646070957184,0.807007014751434,-0.051984928548336,0.562686920166016,0.825033843517303,0.11588941514492,0.593560934066772,0.79640120267868,-0.0943541526794434,0.610206067562103,0.786603987216949,-0.100811943411827,0.628901422023773,0.770921409130096,-0.0943541526794434,0.610206067562103,0.786603987216949,-0.122721269726753,0.612933874130249,0.780545592308044,0.163395509123802,0.599611043930054,0.783433675765991,0.11588941514492,0.593560934066772,0.79640120267868,0.150182843208313,0.583920121192932,0.797798454761505,0.0118015566840768,0.649717330932617,0.76008415222168,-0.0403720028698444,0.631038010120392,0.77470064163208,0.0408790111541748,0.589746713638306,0.806552886962891,0.163395509123802,0.599611043930054,0.783433675765991,0.0198324155062437,0.609198749065399,0.792769432067871,0.0118015566840768,0.649717330932617,0.76008415222168,-0.0273397080600262,0.676782608032227,0.735674977302551,-0.0403720028698444,0.631038010120392,0.77470064163208,-0.099539689719677,0.688498139381409,0.71837455034256,0.0313306488096714,0.681641578674316,0.731015026569366,-0.0273397080600262,0.676782608032227,0.735674977302551,0.110229775309563,0.667213082313538,0.736665487289429,0.0313306488096714,0.681641578674316,0.731015026569366,0.0380522310733795,0.645900905132294,0.762472212314606,-0.0394677966833115,0.638499081134796,0.768609821796417,-0.0394677966833115,0.638499081134796,0.768609821796417,-0.0267707575112581,0.584549605846405,0.810916066169739,-0.0736152604222298,0.533828496932983,0.842382252216339,0.0149742718786001,0.541386187076569,0.840640604496002,0.057147528976202,0.459615439176559,0.886277437210083,-0.0736152604222298,0.533828496932983,0.842382252216339, +0.127389028668404,0.52800977230072,0.839629411697388,0.057147528976202,0.459615439176559,0.886277437210083,0.0149742718786001,0.541386187076569,0.840640604496002,0.0679269284009933,0.559387505054474,0.826118290424347,0.0449520125985146,0.510544955730438,0.858675181865692,0.0861893966794014,0.461974173784256,0.882695376873016,0.0679269284009933,0.559387505054474,0.826118290424347,0.127389028668404,0.52800977230072,0.839629411697388,0.0110830031335354,0.60471248626709,0.796366631984711,-0.0606788545846939,0.556630074977875,0.828541398048401,0.0449520125985146,0.510544955730438,0.858675181865692,-0.031187916174531,0.603022336959839,0.797114372253418,-0.163330540060997,0.289626717567444,0.943100929260254,-0.139198750257492,0.404264092445374,0.903987884521484,-0.224903836846352,0.427642107009888,0.875522911548615,-0.139198750257492,0.404264092445374,0.903987884521484,-0.0692095458507538,0.396191656589508,0.915555596351624,-0.125791221857071,0.470518589019775,0.873377799987793,-0.0819044709205627,0.536246180534363,0.840078294277191,-0.0808006152510643,0.497795552015305,0.863522291183472,-0.0606788545846939,0.556630074977875,0.828541398048401,-0.0819044709205627,0.536246180534363,0.840078294277191,-0.125791221857071,0.470518589019775,0.873377799987793,-0.0808006152510643,0.497795552015305,0.863522291183472,-0.224903836846352,0.427642107009888,0.875522911548615,-0.321447730064392,0.406912297010422,0.85504013299942,-0.289223611354828,0.285745799541473,0.913618624210358,-0.0430256873369217,-0.643864214420319,0.763929009437561,-0.00945391412824392,-0.717294931411743,0.696705520153046,-0.0808166563510895,-0.746587038040161,0.660360753536224,-0.0430256873369217,-0.643864214420319,0.763929009437561,0.109254233539104,-0.585358619689941,0.803379476070404,-0.00945391412824392,-0.717294931411743,0.696705520153046,0.156430020928383,0.0250704232603312,0.987370789051056,0.120994731783867,0.0707344859838486,0.990129709243774,0.162875175476074,-0.0189905539155006,0.986463844776154,0.17294317483902,-0.271946340799332,0.946644425392151,0.109254233539104,-0.585358619689941,0.803379476070404, +0.112780079245567,-0.162548288702965,0.98023396730423,0.171211868524551,-0.0983381941914558,0.980314195156097,0.17294317483902,-0.271946340799332,0.946644425392151,0.120994731783867,0.0707344859838486,0.990129709243774,-0.105984009802341,-0.753260016441345,0.649127542972565,-0.0808166563510895,-0.746587038040161,0.660360753536224,-0.0770908370614052,-0.721940100193024,0.687647700309753,-0.111132420599461,-0.762474179267883,0.637403011322021,-0.104612536728382,-0.708353996276855,0.698062181472778,-0.105984009802341,-0.753260016441345,0.649127542972565,-0.111132420599461,-0.762474179267883,0.637403011322021,-0.105984009802341,-0.753260016441345,0.649127542972565,-0.0339388512074947,-0.725036978721619,0.687873065471649,-0.101948812603951,-0.696193635463715,0.710577726364136,-0.107564650475979,-0.757838189601898,0.643514573574066,-0.0339388512074947,-0.725036978721619,0.687873065471649,-0.101948812603951,-0.696193635463715,0.710577726364136,-0.232030302286148,-0.527782797813416,0.81707227230072,-0.178355470299721,-0.675301373004913,0.71565169095993,-0.242558911442757,-0.233623474836349,0.941586494445801,-0.29437193274498,-0.286476463079453,0.911743521690369,-0.232030302286148,-0.527782797813416,0.81707227230072,-0.23735049366951,-0.191121995449066,0.952437400817871,-0.202821299433708,0.0160295628011227,0.979084491729736,-0.012083038687706,-0.0640560984611511,0.99787312746048,-0.0495379008352757,-0.261851876974106,0.963835835456848,-0.012083038687706,-0.0640560984611511,0.99787312746048,0.176335111260414,-0.293715596199036,0.93948757648468,-0.0495379008352757,-0.261851876974106,0.963835835456848,0.176335111260414,-0.293715596199036,0.93948757648468,0.10025629401207,-0.393304914236069,0.913925528526306,0.233304426074028,-0.401558667421341,0.885618150234222,0.10025629401207,-0.393304914236069,0.913925528526306,0.176335111260414,-0.293715596199036,0.93948757648468,-0.242558911442757,-0.233623474836349,0.941586494445801,-0.202821299433708,0.0160295628011227,0.979084491729736,-0.29437193274498,-0.286476463079453,0.911743521690369, +0.106468506157398,-0.326004147529602,0.939353823661804,0.233304426074028,-0.401558667421341,0.885618150234222,0.219772964715958,-0.400614380836487,0.88949853181839,-0.128650680184364,-0.26903161406517,0.954500317573547,-0.0213475823402405,-0.11724254488945,0.992873787879944,0.106468506157398,-0.326004147529602,0.939353823661804,-0.0822720527648926,0.010066338814795,0.996559023857117,-0.0213475823402405,-0.11724254488945,0.992873787879944,-0.149436682462692,-0.0773435011506081,0.98574161529541,-0.149436682462692,-0.0773435011506081,0.98574161529541,-0.165552452206612,-0.0626979619264603,0.984205901622772,-0.0822720527648926,0.010066338814795,0.996559023857117,-0.223378613591194,-0.337788969278336,0.9143306016922,-0.165552452206612,-0.0626979619264603,0.984205901622772,-0.150983273983002,-0.352173358201981,0.923676311969757,-0.338733583688736,-0.278161764144897,0.898824512958527,-0.309330314397812,-0.383841961622238,0.870045959949493,-0.329666703939438,-0.316288381814957,0.889539957046509,-0.309330314397812,-0.383841961622238,0.870045959949493,-0.223378613591194,-0.337788969278336,0.9143306016922,-0.329666703939438,-0.316288381814957,0.889539957046509,-0.338733583688736,-0.278161764144897,0.898824512958527,-0.329666703939438,-0.316288381814957,0.889539957046509,-0.376330018043518,-0.153854489326477,0.913621544837952,-0.376330018043518,-0.153854489326477,0.913621544837952,-0.327875137329102,-0.0905591920018196,0.940370619297028,-0.239680618047714,-0.186049520969391,0.952858150005341,-0.19063763320446,-0.18367426097393,0.964324057102203,-0.147883132100105,-0.179127633571625,0.972647786140442,-0.217048168182373,-0.187892526388168,0.957907259464264,-0.19063763320446,-0.18367426097393,0.964324057102203,-0.327875137329102,-0.0905591920018196,0.940370619297028,-0.32762011885643,-0.0219999328255653,0.944553196430206,-0.0880421847105026,0.210058704018593,0.973716497421265,-0.0119927721098065,0.297957509756088,0.954503774642944,-0.0674514770507813,0.295584857463837,0.952932178974152,-0.0119927721098065,0.297957509756088,0.954503774642944, +-0.0481461025774479,0.492816805839539,0.868800044059753,0.12606543302536,0.269345194101334,0.954756796360016,-0.270971089601517,0.869038641452789,0.413940072059631,-0.178592994809151,0.634656608104706,0.751874566078186,-0.345222979784012,0.832892656326294,0.432563036680222,-0.282919645309448,0.574541985988617,0.768022000789642,-0.256465643644333,0.756111264228821,0.60209721326828,-0.345222979784012,0.832892656326294,0.432563036680222,-0.0481461025774479,0.492816805839539,0.868800044059753,-0.148011118173599,0.672079980373383,0.725535035133362,0.0944771096110344,0.378253191709518,0.920868337154388,-0.148011118173599,0.672079980373383,0.725535035133362,-0.256465643644333,0.756111264228821,0.60209721326828,-0.0541347153484821,0.507229685783386,0.860108911991119,0.0157581400126219,0.130627289414406,0.991306245326996,-0.00999101810157299,0.143679618835449,0.989573776721954,-0.0386221744120121,0.0993533730506897,0.994302332401276,0.00446295458823442,0.189411550760269,0.981887578964233,-0.0533705577254295,0.258902609348297,0.964427649974823,-0.0386221744120121,0.0993533730506897,0.994302332401276,0.0157581400126219,0.130627289414406,0.991306245326996,-0.073194645345211,0.08730149269104,0.993489265441895,-0.020547442138195,0.176797851920128,0.98403263092041,-0.252416759729385,-0.00136262062005699,0.967617630958557,-0.119200311601162,0.111742615699768,0.986562073230743,-0.157269462943077,0.0403628535568714,0.986730515956879,-0.119200311601162,0.111742615699768,0.986562073230743,-0.073194645345211,0.08730149269104,0.993489265441895,-0.157269462943077,0.0403628535568714,0.986730515956879,-0.189327761530876,0.0545093826949596,0.98039972782135,-0.252416759729385,-0.00136262062005699,0.967617630958557,-0.268483102321625,-0.0831951126456261,0.959685027599335,-0.147883132100105,-0.179127633571625,0.972647786140442,-0.268483102321625,-0.0831951126456261,0.959685027599335,-0.217048168182373,-0.187892526388168,0.957907259464264,-0.264501363039017,0.879896938800812,0.394740790128708,-0.318130731582642,0.870106339454651,0.376440942287445, +-0.217170044779778,0.85335111618042,0.473950326442719,-0.217170044779778,0.85335111618042,0.473950326442719,-0.245418563485146,0.825142562389374,0.508831322193146,-0.15339732170105,0.776742279529572,0.610852301120758,-0.270971089601517,0.869038641452789,0.413940072059631,-0.264501363039017,0.879896938800812,0.394740790128708,-0.25182718038559,0.84276956319809,0.475733637809753,-0.0991649925708771,0.413793861865997,0.904953479766846,-0.11361825466156,0.538382291793823,0.83500611782074,-0.210961937904358,0.62172269821167,0.754291594028473,-0.0991649925708771,0.413793861865997,0.904953479766846,0.00446295458823442,0.189411550760269,0.981887578964233,-0.0338647365570068,0.321719259023666,0.946229219436646,-0.204256385564804,0.747137308120728,0.632506906986237,-0.15339732170105,0.776742279529572,0.610852301120758,-0.182099252939224,0.711992800235748,0.678163647651672,-0.239367216825485,0.706599116325378,0.665898561477661,-0.182099252939224,0.711992800235748,0.678163647651672,-0.210961937904358,0.62172269821167,0.754291594028473,-0.0880421847105026,0.210058704018593,0.973716497421265,-0.0674514770507813,0.295584857463837,0.952932178974152,-0.187370419502258,0.345458060503006,0.91953843832016,-0.0220105890184641,0.368910312652588,0.929204285144806,-0.133433401584625,0.398495227098465,0.907412230968475,-0.0674514770507813,0.295584857463837,0.952932178974152,-0.0686390846967697,0.659193158149719,0.748834371566772,-0.0734006762504578,0.624806046485901,0.777322053909302,-0.0953855961561203,0.650668025016785,0.753347635269165,-0.0686390846967697,0.659193158149719,0.748834371566772,-0.100811943411827,0.628901422023773,0.770921409130096,-0.122721269726753,0.612933874130249,0.780545592308044,-0.143788293004036,0.638352155685425,0.756195247173309,-0.261588990688324,0.629579305648804,0.731574296951294,-0.0953855961561203,0.650668025016785,0.753347635269165,-0.376448482275009,0.597138285636902,0.708316564559937,-0.410612344741821,0.594025194644928,0.691759645938873,-0.309463143348694,0.566630840301514,0.763650357723236,-0.389988541603088,0.626154184341431,0.675158977508545, +-0.410612344741821,0.594025194644928,0.691759645938873,-0.465013414621353,0.593971252441406,0.656475841999054,-0.351733475923538,0.612692415714264,0.707736790180206,-0.389988541603088,0.626154184341431,0.675158977508545,-0.465013414621353,0.593971252441406,0.656475841999054,-0.261588990688324,0.629579305648804,0.731574296951294,-0.351733475923538,0.612692415714264,0.707736790180206,-0.417334169149399,0.604882538318634,0.678195595741272,-0.133433401584625,0.398495227098465,0.907412230968475,-0.032447811216116,0.363450616598129,0.931048154830933,-0.123819634318352,0.410911530256271,0.903227746486664,-0.177660554647446,0.493786305189133,0.851241230964661,-0.19723841547966,0.465813785791397,0.862620651721954,-0.123819634318352,0.410911530256271,0.903227746486664,-0.225123718380928,0.521547675132751,0.822986721992493,-0.177660554647446,0.493786305189133,0.851241230964661,-0.189457625150681,0.548098981380463,0.814673721790314,-0.225123718380928,0.521547675132751,0.822986721992493,-0.25105431675911,0.580020189285278,0.774950385093689,-0.309463143348694,0.566630840301514,0.763650357723236,-0.051984928548336,0.562686920166016,0.825033843517303,0.0392943471670151,0.524312555789948,0.850618660449982,0.11588941514492,0.593560934066772,0.79640120267868,-0.051984928548336,0.562686920166016,0.825033843517303,-0.0943541526794434,0.610206067562103,0.786603987216949,-0.0463941171765327,0.60364431142807,0.795902609825134,-0.0943541526794434,0.610206067562103,0.786603987216949,-0.100811943411827,0.628901422023773,0.770921409130096,-0.0463941171765327,0.60364431142807,0.795902609825134,0.0840629488229752,0.534413695335388,0.841032266616821,0.150182843208313,0.583920121192932,0.797798454761505,0.11588941514492,0.593560934066772,0.79640120267868,0.150182843208313,0.583920121192932,0.797798454761505,0.0198324155062437,0.609198749065399,0.792769432067871,0.163395509123802,0.599611043930054,0.783433675765991,0.0118015566840768,0.649717330932617,0.76008415222168,-0.099539689719677,0.688498139381409,0.71837455034256,-0.0403720028698444,0.631038010120392,0.77470064163208, +0.0118015566840768,0.649717330932617,0.76008415222168,0.0198324155062437,0.609198749065399,0.792769432067871,-0.0900026261806488,0.674315929412842,0.732937514781952,-0.0538960732519627,0.711629867553711,0.700484156608582,-0.0273397080600262,0.676782608032227,0.735674977302551,-0.099539689719677,0.688498139381409,0.71837455034256,0.173695281147957,0.653365015983582,0.736847281455994,0.110229775309563,0.667213082313538,0.736665487289429,-0.0273397080600262,0.676782608032227,0.735674977302551,0.0819162428379059,0.64330005645752,0.761219143867493,0.0313306488096714,0.681641578674316,0.731015026569366,0.110229775309563,0.667213082313538,0.736665487289429,0.0380522310733795,0.645900905132294,0.762472212314606,0.0313306488096714,0.681641578674316,0.731015026569366,0.0819162428379059,0.64330005645752,0.761219143867493,-0.0394677966833115,0.638499081134796,0.768609821796417,0.0380522310733795,0.645900905132294,0.762472212314606,0.036897350102663,0.598807215690613,0.800042688846588,-0.0394677966833115,0.638499081134796,0.768609821796417,0.036897350102663,0.598807215690613,0.800042688846588,-0.0267707575112581,0.584549605846405,0.810916066169739,-0.0267707575112581,0.584549605846405,0.810916066169739,0.0149742718786001,0.541386187076569,0.840640604496002,-0.0736152604222298,0.533828496932983,0.842382252216339,0.127389028668404,0.52800977230072,0.839629411697388,0.0149742718786001,0.541386187076569,0.840640604496002,0.0110830031335354,0.60471248626709,0.796366631984711,0.0679269284009933,0.559387505054474,0.826118290424347,-0.031187916174531,0.603022336959839,0.797114372253418,0.0449520125985146,0.510544955730438,0.858675181865692,0.0679269284009933,0.559387505054474,0.826118290424347,0.0110830031335354,0.60471248626709,0.796366631984711,-0.031187916174531,0.603022336959839,0.797114372253418,-0.0606788545846939,0.556630074977875,0.828541398048401,-0.031187916174531,0.603022336959839,0.797114372253418,-0.049249742180109,0.579795598983765,0.813271939754486,-0.139198750257492,0.404264092445374,0.903987884521484,-0.125791221857071,0.470518589019775,0.873377799987793, +-0.224903836846352,0.427642107009888,0.875522911548615,-0.0606788545846939,0.556630074977875,0.828541398048401,-0.049249742180109,0.579795598983765,0.813271939754486,-0.0819044709205627,0.536246180534363,0.840078294277191,-0.0819044709205627,0.536246180534363,0.840078294277191,-0.101487137377262,0.497115552425385,0.861728727817535,-0.125791221857071,0.470518589019775,0.873377799987793,-0.321447730064392,0.406912297010422,0.85504013299942,-0.224903836846352,0.427642107009888,0.875522911548615,-0.255332142114639,0.450516164302826,0.855476796627045,-0.0770908370614052,-0.721940100193024,0.687647700309753,-0.0808166563510895,-0.746587038040161,0.660360753536224,-0.00945391412824392,-0.717294931411743,0.696705520153046,0.109254233539104,-0.585358619689941,0.803379476070404,0.182815313339233,-0.686289250850677,0.703978300094604,-0.00945391412824392,-0.717294931411743,0.696705520153046,0.156430020928383,0.0250704232603312,0.987370789051056,0.1105095744133,0.0975717902183533,0.989073932170868,0.120994731783867,0.0707344859838486,0.990129709243774,0.162875175476074,-0.0189905539155006,0.986463844776154,0.201260134577751,-0.11511142551899,0.972750544548035,0.156430020928383,0.0250704232603312,0.987370789051056,0.198529466986656,-0.619115173816681,0.75979095697403,0.109254233539104,-0.585358619689941,0.803379476070404,0.17294317483902,-0.271946340799332,0.946644425392151,0.171211868524551,-0.0983381941914558,0.980314195156097,0.251847565174103,-0.586135566234589,0.770076453685761,0.17294317483902,-0.271946340799332,0.946644425392151,0.120994731783867,0.0707344859838486,0.990129709243774,0.1105095744133,0.0975717902183533,0.989073932170868,0.171211868524551,-0.0983381941914558,0.980314195156097,-0.105984009802341,-0.753260016441345,0.649127542972565,-0.0770908370614052,-0.721940100193024,0.687647700309753,-0.0315115079283714,-0.63968825340271,0.76798814535141,-0.0339388512074947,-0.725036978721619,0.687873065471649,-0.105984009802341,-0.753260016441345,0.649127542972565,-0.0315115079283714,-0.63968825340271,0.76798814535141,-0.101948812603951,-0.696193635463715,0.710577726364136, +-0.0339388512074947,-0.725036978721619,0.687873065471649,0.152017936110497,-0.626445055007935,0.764497876167297,-0.0792260989546776,-0.518146395683289,0.851614594459534,-0.232030302286148,-0.527782797813416,0.81707227230072,-0.101948812603951,-0.696193635463715,0.710577726364136,-0.0792260989546776,-0.518146395683289,0.851614594459534,-0.242558911442757,-0.233623474836349,0.941586494445801,-0.232030302286148,-0.527782797813416,0.81707227230072,-0.202821299433708,0.0160295628011227,0.979084491729736,-0.0565488710999489,-0.01905850879848,0.998217880725861,-0.012083038687706,-0.0640560984611511,0.99787312746048,0.176335111260414,-0.293715596199036,0.93948757648468,-0.012083038687706,-0.0640560984611511,0.99787312746048,0.141459360718727,-0.189408853650093,0.971655011177063,0.219772964715958,-0.400614380836487,0.88949853181839,0.233304426074028,-0.401558667421341,0.885618150234222,0.176335111260414,-0.293715596199036,0.93948757648468,-0.202821299433708,0.0160295628011227,0.979084491729736,-0.242558911442757,-0.233623474836349,0.941586494445801,-0.131743982434273,0.0294429548084736,0.990846395492554,-0.0122099900618196,-0.449315011501312,0.893289864063263,0.106468506157398,-0.326004147529602,0.939353823661804,0.219772964715958,-0.400614380836487,0.88949853181839,-0.128650680184364,-0.26903161406517,0.954500317573547,-0.149436682462692,-0.0773435011506081,0.98574161529541,-0.0213475823402405,-0.11724254488945,0.992873787879944,-0.0122099900618196,-0.449315011501312,0.893289864063263,-0.128650680184364,-0.26903161406517,0.954500317573547,0.106468506157398,-0.326004147529602,0.939353823661804,-0.120117612183094,-0.0219547841697931,0.992516815662384,-0.165552452206612,-0.0626979619264603,0.984205901622772,-0.149436682462692,-0.0773435011506081,0.98574161529541,-0.150983273983002,-0.352173358201981,0.923676311969757,-0.165552452206612,-0.0626979619264603,0.984205901622772,-0.0743235945701599,-0.0860858932137489,0.993511497974396,-0.223378613591194,-0.337788969278336,0.9143306016922,-0.150983273983002,-0.352173358201981,0.923676311969757, +-0.216517806053162,-0.357741564512253,0.908372700214386,-0.223378613591194,-0.337788969278336,0.9143306016922,-0.216517806053162,-0.357741564512253,0.908372700214386,-0.329666703939438,-0.316288381814957,0.889539957046509,-0.358136683702469,-0.114762619137764,0.92658919095993,-0.376330018043518,-0.153854489326477,0.913621544837952,-0.329666703939438,-0.316288381814957,0.889539957046509,-0.376330018043518,-0.153854489326477,0.913621544837952,-0.358136683702469,-0.114762619137764,0.92658919095993,-0.327875137329102,-0.0905591920018196,0.940370619297028,-0.19063763320446,-0.18367426097393,0.964324057102203,-0.215213358402252,-0.075236476957798,0.973664402961731,-0.147883132100105,-0.179127633571625,0.972647786140442,-0.358136683702469,-0.114762619137764,0.92658919095993,-0.32762011885643,-0.0219999328255653,0.944553196430206,-0.327875137329102,-0.0905591920018196,0.940370619297028,-0.19063763320446,-0.18367426097393,0.964324057102203,-0.32762011885643,-0.0219999328255653,0.944553196430206,-0.215213358402252,-0.075236476957798,0.973664402961731,0.0923661515116692,0.286449909210205,0.953632473945618,-0.0674514770507813,0.295584857463837,0.952932178974152,-0.0119927721098065,0.297957509756088,0.954503774642944,-0.0481461025774479,0.492816805839539,0.868800044059753,0.0944771096110344,0.378253191709518,0.920868337154388,0.12606543302536,0.269345194101334,0.954756796360016,0.0923661515116692,0.286449909210205,0.953632473945618,-0.0119927721098065,0.297957509756088,0.954503774642944,0.12606543302536,0.269345194101334,0.954756796360016,-0.226041451096535,0.752825975418091,0.61818939447403,-0.178592994809151,0.634656608104706,0.751874566078186,-0.270971089601517,0.869038641452789,0.413940072059631,-0.178592994809151,0.634656608104706,0.751874566078186,-0.282919645309448,0.574541985988617,0.768022000789642,-0.345222979784012,0.832892656326294,0.432563036680222,-0.282919645309448,0.574541985988617,0.768022000789642,-0.0541347153484821,0.507229685783386,0.860108911991119,-0.256465643644333,0.756111264228821,0.60209721326828,-0.0541347153484821,0.507229685783386,0.860108911991119, +0.0944771096110344,0.378253191709518,0.920868337154388,-0.148011118173599,0.672079980373383,0.725535035133362,0.0157581400126219,0.130627289414406,0.991306245326996,-0.020547442138195,0.176797851920128,0.98403263092041,-0.00999101810157299,0.143679618835449,0.989573776721954,-0.0386221744120121,0.0993533730506897,0.994302332401276,-0.00999101810157299,0.143679618835449,0.989573776721954,-0.173235356807709,0.141144588589668,0.97471410036087,0.00446295458823442,0.189411550760269,0.981887578964233,-0.0386221744120121,0.0993533730506897,0.994302332401276,-0.0776444748044014,0.231598868966103,0.969707787036896,-0.119200311601162,0.111742615699768,0.986562073230743,-0.020547442138195,0.176797851920128,0.98403263092041,-0.073194645345211,0.08730149269104,0.993489265441895,-0.189327761530876,0.0545093826949596,0.98039972782135,-0.119200311601162,0.111742615699768,0.986562073230743,-0.252416759729385,-0.00136262062005699,0.967617630958557,-0.115331344306469,-0.0331142693758011,0.992774903774261,-0.189327761530876,0.0545093826949596,0.98039972782135,-0.268483102321625,-0.0831951126456261,0.959685027599335,-0.147883132100105,-0.179127633571625,0.972647786140442,-0.115331344306469,-0.0331142693758011,0.992774903774261,-0.268483102321625,-0.0831951126456261,0.959685027599335,-0.217170044779778,0.85335111618042,0.473950326442719,-0.192873433232307,0.818727493286133,0.540818810462952,-0.264501363039017,0.879896938800812,0.394740790128708,-0.192873433232307,0.818727493286133,0.540818810462952,-0.217170044779778,0.85335111618042,0.473950326442719,-0.15339732170105,0.776742279529572,0.610852301120758,-0.25182718038559,0.84276956319809,0.475733637809753,-0.264501363039017,0.879896938800812,0.394740790128708,-0.23705767095089,0.891262173652649,0.386594504117966,-0.226041451096535,0.752825975418091,0.61818939447403,-0.270971089601517,0.869038641452789,0.413940072059631,-0.25182718038559,0.84276956319809,0.475733637809753,-0.0991649925708771,0.413793861865997,0.904953479766846,-0.0338647365570068,0.321719259023666,0.946229219436646,-0.11361825466156,0.538382291793823,0.83500611782074, +-0.239367216825485,0.706599116325378,0.665898561477661,-0.210961937904358,0.62172269821167,0.754291594028473,-0.11361825466156,0.538382291793823,0.83500611782074,0.00446295458823442,0.189411550760269,0.981887578964233,-0.0776444748044014,0.231598868966103,0.969707787036896,-0.0338647365570068,0.321719259023666,0.946229219436646,-0.192873433232307,0.818727493286133,0.540818810462952,-0.15339732170105,0.776742279529572,0.610852301120758,-0.204256385564804,0.747137308120728,0.632506906986237,-0.239367216825485,0.706599116325378,0.665898561477661,-0.204256385564804,0.747137308120728,0.632506906986237,-0.182099252939224,0.711992800235748,0.678163647651672,-0.133433401584625,0.398495227098465,0.907412230968475,-0.0220105890184641,0.368910312652588,0.929204285144806,-0.032447811216116,0.363450616598129,0.931048154830933,0.0923661515116692,0.286449909210205,0.953632473945618,-0.0220105890184641,0.368910312652588,0.929204285144806,-0.0674514770507813,0.295584857463837,0.952932178974152,-0.0686390846967697,0.659193158149719,0.748834371566772,-0.0953855961561203,0.650668025016785,0.753347635269165,-0.124917268753052,0.700715780258179,0.702419340610504,-0.0686390846967697,0.659193158149719,0.748834371566772,-0.0313311591744423,0.687329888343811,0.725669324398041,-0.100811943411827,0.628901422023773,0.770921409130096,-0.124917268753052,0.700715780258179,0.702419340610504,-0.0953855961561203,0.650668025016785,0.753347635269165,-0.261588990688324,0.629579305648804,0.731574296951294,-0.410612344741821,0.594025194644928,0.691759645938873,-0.376448482275009,0.597138285636902,0.708316564559937,-0.467254847288132,0.583591759204865,0.6641486287117,-0.309463143348694,0.566630840301514,0.763650357723236,-0.25105431675911,0.580020189285278,0.774950385093689,-0.376448482275009,0.597138285636902,0.708316564559937,-0.410612344741821,0.594025194644928,0.691759645938873,-0.467254847288132,0.583591759204865,0.6641486287117,-0.465013414621353,0.593971252441406,0.656475841999054,-0.351733475923538,0.612692415714264,0.707736790180206,-0.465013414621353,0.593971252441406,0.656475841999054, +-0.417334169149399,0.604882538318634,0.678195595741272,-0.261588990688324,0.629579305648804,0.731574296951294,-0.417334169149399,0.604882538318634,0.678195595741272,-0.312922924757004,0.702220797538757,0.639503717422485,-0.032447811216116,0.363450616598129,0.931048154830933,-0.0204369947314262,0.348831683397293,0.936962485313416,-0.123819634318352,0.410911530256271,0.903227746486664,-0.196416527032852,0.460635364055634,0.865583896636963,-0.177660554647446,0.493786305189133,0.851241230964661,-0.123819634318352,0.410911530256271,0.903227746486664,-0.177660554647446,0.493786305189133,0.851241230964661,-0.199882343411446,0.524718165397644,0.827476739883423,-0.189457625150681,0.548098981380463,0.814673721790314,-0.189457625150681,0.548098981380463,0.814673721790314,-0.25105431675911,0.580020189285278,0.774950385093689,-0.225123718380928,0.521547675132751,0.822986721992493,0.0392943471670151,0.524312555789948,0.850618660449982,-0.051984928548336,0.562686920166016,0.825033843517303,-0.0180345177650452,0.538604378700256,0.842365682125092,0.11588941514492,0.593560934066772,0.79640120267868,0.0392943471670151,0.524312555789948,0.850618660449982,0.0840629488229752,0.534413695335388,0.841032266616821,-0.051984928548336,0.562686920166016,0.825033843517303,-0.0463941171765327,0.60364431142807,0.795902609825134,-0.0180345177650452,0.538604378700256,0.842365682125092,-0.0313311591744423,0.687329888343811,0.725669324398041,-0.0463941171765327,0.60364431142807,0.795902609825134,-0.100811943411827,0.628901422023773,0.770921409130096,0.0840629488229752,0.534413695335388,0.841032266616821,0.0198324155062437,0.609198749065399,0.792769432067871,0.150182843208313,0.583920121192932,0.797798454761505,0.0118015566840768,0.649717330932617,0.76008415222168,-0.0900026261806488,0.674315929412842,0.732937514781952,-0.099539689719677,0.688498139381409,0.71837455034256,-0.130473122000694,0.682144403457642,0.719482898712158,-0.0900026261806488,0.674315929412842,0.732937514781952,0.0198324155062437,0.609198749065399,0.792769432067871,-0.0538960732519627,0.711629867553711,0.700484156608582, +0.173695281147957,0.653365015983582,0.736847281455994,-0.0273397080600262,0.676782608032227,0.735674977302551,-0.0538960732519627,0.711629867553711,0.700484156608582,-0.099539689719677,0.688498139381409,0.71837455034256,-0.135149076581001,0.732500374317169,0.667216420173645,0.173695281147957,0.653365015983582,0.736847281455994,0.272372096776962,0.544255435466766,0.7934730052948,0.110229775309563,0.667213082313538,0.736665487289429,0.161560669541359,0.575781643390656,0.801482081413269,0.0819162428379059,0.64330005645752,0.761219143867493,0.110229775309563,0.667213082313538,0.736665487289429,0.0819162428379059,0.64330005645752,0.761219143867493,0.036897350102663,0.598807215690613,0.800042688846588,0.0380522310733795,0.645900905132294,0.762472212314606,0.036897350102663,0.598807215690613,0.800042688846588,0.0479695051908493,0.530550599098206,0.846294760704041,-0.0267707575112581,0.584549605846405,0.810916066169739,0.0110830031335354,0.60471248626709,0.796366631984711,0.0149742718786001,0.541386187076569,0.840640604496002,-0.0267707575112581,0.584549605846405,0.810916066169739,-0.031187916174531,0.603022336959839,0.797114372253418,0.0110830031335354,0.60471248626709,0.796366631984711,-0.00741205317899585,0.571354806423187,0.820669651031494,-0.031187916174531,0.603022336959839,0.797114372253418,-0.00741205317899585,0.571354806423187,0.820669651031494,-0.049249742180109,0.579795598983765,0.813271939754486,-0.224903836846352,0.427642107009888,0.875522911548615,-0.125791221857071,0.470518589019775,0.873377799987793,-0.138013869524002,0.486159771680832,0.862902462482452,-0.049249742180109,0.579795598983765,0.813271939754486,-0.0283082779496908,0.547417402267456,0.83638072013855,-0.0819044709205627,0.536246180534363,0.840078294277191,-0.0615903437137604,0.515091001987457,0.854919791221619,-0.101487137377262,0.497115552425385,0.861728727817535,-0.0819044709205627,0.536246180534363,0.840078294277191,-0.138013869524002,0.486159771680832,0.862902462482452,-0.125791221857071,0.470518589019775,0.873377799987793,-0.101487137377262,0.497115552425385,0.861728727817535, +-0.194861397147179,0.430331200361252,0.881387531757355,-0.255332142114639,0.450516164302826,0.855476796627045,-0.224903836846352,0.427642107009888,0.875522911548615,-0.321447730064392,0.406912297010422,0.85504013299942,-0.255332142114639,0.450516164302826,0.855476796627045,-0.258470416069031,0.407200694084167,0.876002550125122,-0.00945391412824392,-0.717294931411743,0.696705520153046,-0.0232259891927242,-0.607206404209137,0.794204533100128,-0.0770908370614052,-0.721940100193024,0.687647700309753,0.198529466986656,-0.619115173816681,0.75979095697403,0.182815313339233,-0.686289250850677,0.703978300094604,0.109254233539104,-0.585358619689941,0.803379476070404,0.166385605931282,-0.584491968154907,0.794156670570374,-0.00945391412824392,-0.717294931411743,0.696705520153046,0.182815313339233,-0.686289250850677,0.703978300094604,0.156430020928383,0.0250704232603312,0.987370789051056,0.146805837750435,-0.0176062732934952,0.989008545875549,0.1105095744133,0.0975717902183533,0.989073932170868,0.156430020928383,0.0250704232603312,0.987370789051056,0.201260134577751,-0.11511142551899,0.972750544548035,0.146805837750435,-0.0176062732934952,0.989008545875549,0.251847565174103,-0.586135566234589,0.770076453685761,0.198529466986656,-0.619115173816681,0.75979095697403,0.17294317483902,-0.271946340799332,0.946644425392151,0.251847565174103,-0.586135566234589,0.770076453685761,0.171211868524551,-0.0983381941914558,0.980314195156097,0.268917500972748,-0.442458868026733,0.855519354343414,0.173991307616234,-0.0366918034851551,0.984063327312469,0.171211868524551,-0.0983381941914558,0.980314195156097,0.1105095744133,0.0975717902183533,0.989073932170868,-0.0315115079283714,-0.63968825340271,0.76798814535141,-0.0770908370614052,-0.721940100193024,0.687647700309753,-0.0232259891927242,-0.607206404209137,0.794204533100128,-0.0339388512074947,-0.725036978721619,0.687873065471649,-0.0315115079283714,-0.63968825340271,0.76798814535141,0.11336924880743,-0.578736484050751,0.807596027851105,0.11336924880743,-0.578736484050751,0.807596027851105,0.152017936110497,-0.626445055007935,0.764497876167297, +-0.0339388512074947,-0.725036978721619,0.687873065471649,-0.101948812603951,-0.696193635463715,0.710577726364136,0.152017936110497,-0.626445055007935,0.764497876167297,-0.0792260989546776,-0.518146395683289,0.851614594459534,-0.242558911442757,-0.233623474836349,0.941586494445801,-0.0792260989546776,-0.518146395683289,0.851614594459534,-0.0562808588147163,-0.261790931224823,0.963482141494751,-0.227341488003731,-0.042752493172884,0.972876131534576,-0.0565488710999489,-0.01905850879848,0.998217880725861,-0.202821299433708,0.0160295628011227,0.979084491729736,0.141459360718727,-0.189408853650093,0.971655011177063,-0.012083038687706,-0.0640560984611511,0.99787312746048,-0.0565488710999489,-0.01905850879848,0.998217880725861,0.219772964715958,-0.400614380836487,0.88949853181839,0.176335111260414,-0.293715596199036,0.93948757648468,0.141459360718727,-0.189408853650093,0.971655011177063,-0.242558911442757,-0.233623474836349,0.941586494445801,-0.0562808588147163,-0.261790931224823,0.963482141494751,-0.131743982434273,0.0294429548084736,0.990846395492554,-0.131743982434273,0.0294429548084736,0.990846395492554,-0.227341488003731,-0.042752493172884,0.972876131534576,-0.202821299433708,0.0160295628011227,0.979084491729736,-0.014423088170588,-0.474319934844971,0.880234360694885,-0.0122099900618196,-0.449315011501312,0.893289864063263,0.219772964715958,-0.400614380836487,0.88949853181839,-0.128650680184364,-0.26903161406517,0.954500317573547,-0.147401675581932,-0.161986127495766,0.975721836090088,-0.149436682462692,-0.0773435011506081,0.98574161529541,-0.0122099900618196,-0.449315011501312,0.893289864063263,-0.260012865066528,-0.431379169225693,0.863889575004578,-0.128650680184364,-0.26903161406517,0.954500317573547,-0.120117612183094,-0.0219547841697931,0.992516815662384,-0.0743235945701599,-0.0860858932137489,0.993511497974396,-0.165552452206612,-0.0626979619264603,0.984205901622772,-0.149436682462692,-0.0773435011506081,0.98574161529541,-0.147401675581932,-0.161986127495766,0.975721836090088,-0.120117612183094,-0.0219547841697931,0.992516815662384, +-0.0845209807157516,-0.287738591432571,0.953971982002258,-0.150983273983002,-0.352173358201981,0.923676311969757,-0.0743235945701599,-0.0860858932137489,0.993511497974396,-0.100644998252392,-0.37034347653389,0.92342621088028,-0.216517806053162,-0.357741564512253,0.908372700214386,-0.150983273983002,-0.352173358201981,0.923676311969757,-0.358136683702469,-0.114762619137764,0.92658919095993,-0.329666703939438,-0.316288381814957,0.889539957046509,-0.216517806053162,-0.357741564512253,0.908372700214386,-0.147883132100105,-0.179127633571625,0.972647786140442,-0.215213358402252,-0.075236476957798,0.973664402961731,0.00129990337882191,-0.127854317426682,0.99179208278656,-0.335730224847794,0.0672629848122597,0.939553499221802,-0.32762011885643,-0.0219999328255653,0.944553196430206,-0.358136683702469,-0.114762619137764,0.92658919095993,-0.32762011885643,-0.0219999328255653,0.944553196430206,-0.262798398733139,0.0461656488478184,0.963745594024658,-0.215213358402252,-0.075236476957798,0.973664402961731,0.120045907795429,0.240620285272598,0.963167071342468,0.12606543302536,0.269345194101334,0.954756796360016,0.0944771096110344,0.378253191709518,0.920868337154388,0.120045907795429,0.240620285272598,0.963167071342468,0.0923661515116692,0.286449909210205,0.953632473945618,0.12606543302536,0.269345194101334,0.954756796360016,-0.226041451096535,0.752825975418091,0.61818939447403,-0.0605320520699024,0.450463026762009,0.890740573406219,-0.178592994809151,0.634656608104706,0.751874566078186,-0.282919645309448,0.574541985988617,0.768022000789642,-0.178592994809151,0.634656608104706,0.751874566078186,-0.15862087905407,0.271374106407166,0.949313163757324,-0.282919645309448,0.574541985988617,0.768022000789642,-0.113042682409287,0.257388353347778,0.95967310667038,-0.0541347153484821,0.507229685783386,0.860108911991119,0.038891214877367,0.214674293994904,0.975911021232605,0.0944771096110344,0.378253191709518,0.920868337154388,-0.0541347153484821,0.507229685783386,0.860108911991119,-0.020547442138195,0.176797851920128,0.98403263092041,-0.173235356807709,0.141144588589668,0.97471410036087, +-0.00999101810157299,0.143679618835449,0.989573776721954,-0.0386221744120121,0.0993533730506897,0.994302332401276,-0.173235356807709,0.141144588589668,0.97471410036087,-0.168193697929382,0.158832713961601,0.972873568534851,-0.168193697929382,0.158832713961601,0.972873568534851,-0.0776444748044014,0.231598868966103,0.969707787036896,-0.0386221744120121,0.0993533730506897,0.994302332401276,-0.119200311601162,0.111742615699768,0.986562073230743,-0.0880128666758537,0.15910068154335,0.983331382274628,-0.020547442138195,0.176797851920128,0.98403263092041,-0.0415970534086227,0.102985605597496,0.993812620639801,-0.119200311601162,0.111742615699768,0.986562073230743,-0.189327761530876,0.0545093826949596,0.98039972782135,-0.0415970534086227,0.102985605597496,0.993812620639801,-0.189327761530876,0.0545093826949596,0.98039972782135,-0.115331344306469,-0.0331142693758011,0.992774903774261,-0.147883132100105,-0.179127633571625,0.972647786140442,0.00129990337882191,-0.127854317426682,0.99179208278656,-0.115331344306469,-0.0331142693758011,0.992774903774261,-0.264501363039017,0.879896938800812,0.394740790128708,-0.192873433232307,0.818727493286133,0.540818810462952,-0.233316957950592,0.848070442676544,0.475751638412476,-0.264501363039017,0.879896938800812,0.394740790128708,-0.233316957950592,0.848070442676544,0.475751638412476,-0.23705767095089,0.891262173652649,0.386594504117966,-0.25182718038559,0.84276956319809,0.475733637809753,-0.23705767095089,0.891262173652649,0.386594504117966,-0.195545688271523,0.841771006584167,0.503173232078552,-0.226041451096535,0.752825975418091,0.61818939447403,-0.25182718038559,0.84276956319809,0.475733637809753,-0.193079262971878,0.575070261955261,0.794993340969086,-0.0338647365570068,0.321719259023666,0.946229219436646,-0.0332843475043774,0.381644368171692,0.923709690570831,-0.11361825466156,0.538382291793823,0.83500611782074,-0.143056958913803,0.655778586864471,0.741275310516357,-0.239367216825485,0.706599116325378,0.665898561477661,-0.11361825466156,0.538382291793823,0.83500611782074,-0.0332843475043774,0.381644368171692,0.923709690570831, +-0.0338647365570068,0.321719259023666,0.946229219436646,-0.0776444748044014,0.231598868966103,0.969707787036896,-0.229820966720581,0.784670174121857,0.575738549232483,-0.192873433232307,0.818727493286133,0.540818810462952,-0.204256385564804,0.747137308120728,0.632506906986237,-0.204256385564804,0.747137308120728,0.632506906986237,-0.239367216825485,0.706599116325378,0.665898561477661,-0.229820966720581,0.784670174121857,0.575738549232483,-0.032447811216116,0.363450616598129,0.931048154830933,-0.0220105890184641,0.368910312652588,0.929204285144806,0.0518649704754353,0.326932609081268,0.94362336397171,0.0518649704754353,0.326932609081268,0.94362336397171,-0.0220105890184641,0.368910312652588,0.929204285144806,0.0923661515116692,0.286449909210205,0.953632473945618,-0.0686390846967697,0.659193158149719,0.748834371566772,-0.124917268753052,0.700715780258179,0.702419340610504,-0.0313311591744423,0.687329888343811,0.725669324398041,-0.124917268753052,0.700715780258179,0.702419340610504,-0.261588990688324,0.629579305648804,0.731574296951294,-0.213507503271103,0.741544723510742,0.636023461818695,-0.406545013189316,0.632723748683929,0.659076333045959,-0.467254847288132,0.583591759204865,0.6641486287117,-0.376448482275009,0.597138285636902,0.708316564559937,-0.312861323356628,0.624599695205688,0.715536832809448,-0.376448482275009,0.597138285636902,0.708316564559937,-0.25105431675911,0.580020189285278,0.774950385093689,-0.417334169149399,0.604882538318634,0.678195595741272,-0.465013414621353,0.593971252441406,0.656475841999054,-0.467254847288132,0.583591759204865,0.6641486287117,-0.361485421657562,0.708280920982361,0.606354892253876,-0.312922924757004,0.702220797538757,0.639503717422485,-0.417334169149399,0.604882538318634,0.678195595741272,-0.312922924757004,0.702220797538757,0.639503717422485,-0.213507503271103,0.741544723510742,0.636023461818695,-0.261588990688324,0.629579305648804,0.731574296951294,-0.0204369947314262,0.348831683397293,0.936962485313416,-0.032447811216116,0.363450616598129,0.931048154830933,-0.0466550178825855,0.308889776468277,0.949952781200409, +-0.0945578441023827,0.320887386798859,0.942385256290436,-0.123819634318352,0.410911530256271,0.903227746486664,-0.0204369947314262,0.348831683397293,0.936962485313416,-0.196416527032852,0.460635364055634,0.865583896636963,-0.199882343411446,0.524718165397644,0.827476739883423,-0.177660554647446,0.493786305189133,0.851241230964661,-0.123819634318352,0.410911530256271,0.903227746486664,-0.201051980257034,0.378958731889725,0.90330958366394,-0.196416527032852,0.460635364055634,0.865583896636963,-0.199882343411446,0.524718165397644,0.827476739883423,-0.226706236600876,0.547712683677673,0.805366337299347,-0.189457625150681,0.548098981380463,0.814673721790314,-0.25105431675911,0.580020189285278,0.774950385093689,-0.189457625150681,0.548098981380463,0.814673721790314,-0.226706236600876,0.547712683677673,0.805366337299347,0.0392943471670151,0.524312555789948,0.850618660449982,-0.0180345177650452,0.538604378700256,0.842365682125092,0.0302358791232109,0.544053196907043,0.838505685329437,0.0840629488229752,0.534413695335388,0.841032266616821,0.0392943471670151,0.524312555789948,0.850618660449982,0.0302358791232109,0.544053196907043,0.838505685329437,-0.0463941171765327,0.60364431142807,0.795902609825134,0.0947011783719063,0.635367810726166,0.766380608081818,-0.0180345177650452,0.538604378700256,0.842365682125092,-0.0313311591744423,0.687329888343811,0.725669324398041,0.098351426422596,0.693352997303009,0.713854670524597,-0.0463941171765327,0.60364431142807,0.795902609825134,0.0840629488229752,0.534413695335388,0.841032266616821,0.0302358791232109,0.544053196907043,0.838505685329437,0.0198324155062437,0.609198749065399,0.792769432067871,-0.099539689719677,0.688498139381409,0.71837455034256,-0.0900026261806488,0.674315929412842,0.732937514781952,-0.180644050240517,0.714027404785156,0.676411509513855,-0.180644050240517,0.714027404785156,0.676411509513855,-0.0900026261806488,0.674315929412842,0.732937514781952,-0.130473122000694,0.682144403457642,0.719482898712158,0.0198324155062437,0.609198749065399,0.792769432067871,0.053541149944067,0.668681204319,0.741618931293488, +-0.130473122000694,0.682144403457642,0.719482898712158,0.0799226388335228,0.720150113105774,0.689199566841125,0.173695281147957,0.653365015983582,0.736847281455994,-0.0538960732519627,0.711629867553711,0.700484156608582,-0.135149076581001,0.732500374317169,0.667216420173645,-0.099539689719677,0.688498139381409,0.71837455034256,-0.152619794011116,0.720435202121735,0.676520526409149,0.0799226388335228,0.720150113105774,0.689199566841125,-0.0538960732519627,0.711629867553711,0.700484156608582,-0.135149076581001,0.732500374317169,0.667216420173645,0.173695281147957,0.653365015983582,0.736847281455994,0.434510976076126,0.465211719274521,0.771218597888947,0.272372096776962,0.544255435466766,0.7934730052948,0.272372096776962,0.544255435466766,0.7934730052948,0.161560669541359,0.575781643390656,0.801482081413269,0.110229775309563,0.667213082313538,0.736665487289429,0.161560669541359,0.575781643390656,0.801482081413269,0.036897350102663,0.598807215690613,0.800042688846588,0.0819162428379059,0.64330005645752,0.761219143867493,0.100870192050934,0.508322656154633,0.855238616466522,0.0479695051908493,0.530550599098206,0.846294760704041,0.036897350102663,0.598807215690613,0.800042688846588,-0.01217439211905,0.581019639968872,0.813798367977142,-0.0267707575112581,0.584549605846405,0.810916066169739,0.0479695051908493,0.530550599098206,0.846294760704041,-0.01217439211905,0.581019639968872,0.813798367977142,0.0110830031335354,0.60471248626709,0.796366631984711,-0.0267707575112581,0.584549605846405,0.810916066169739,-0.01217439211905,0.581019639968872,0.813798367977142,-0.00741205317899585,0.571354806423187,0.820669651031494,0.0110830031335354,0.60471248626709,0.796366631984711,0.00675608450546861,0.489828318357468,0.871792674064636,-0.049249742180109,0.579795598983765,0.813271939754486,-0.00741205317899585,0.571354806423187,0.820669651031494,-0.224903836846352,0.427642107009888,0.875522911548615,-0.138013869524002,0.486159771680832,0.862902462482452,-0.194861397147179,0.430331200361252,0.881387531757355,-0.0283082779496908,0.547417402267456,0.83638072013855, +-0.049249742180109,0.579795598983765,0.813271939754486,0.0837863832712173,0.436996281147003,0.895552337169647,-0.0615903437137604,0.515091001987457,0.854919791221619,-0.0819044709205627,0.536246180534363,0.840078294277191,-0.0283082779496908,0.547417402267456,0.83638072013855,-0.101487137377262,0.497115552425385,0.861728727817535,-0.0615903437137604,0.515091001987457,0.854919791221619,-0.138013869524002,0.486159771680832,0.862902462482452,-0.255332142114639,0.450516164302826,0.855476796627045,-0.194861397147179,0.430331200361252,0.881387531757355,-0.226979091763496,0.428359836339951,0.874636054039001,-0.258470416069031,0.407200694084167,0.876002550125122,-0.255332142114639,0.450516164302826,0.855476796627045,-0.226979091763496,0.428359836339951,0.874636054039001,0.166385605931282,-0.584491968154907,0.794156670570374,-0.0232259891927242,-0.607206404209137,0.794204533100128,-0.00945391412824392,-0.717294931411743,0.696705520153046,0.198529466986656,-0.619115173816681,0.75979095697403,0.251847565174103,-0.586135566234589,0.770076453685761,0.182815313339233,-0.686289250850677,0.703978300094604,0.182815313339233,-0.686289250850677,0.703978300094604,0.287063628435135,-0.53775417804718,0.792726159095764,0.166385605931282,-0.584491968154907,0.794156670570374,0.146805837750435,-0.0176062732934952,0.989008545875549,0.12624055147171,-0.043350987136364,0.991051912307739,0.1105095744133,0.0975717902183533,0.989073932170868,0.184904679656029,-0.110358953475952,0.976540386676788,0.146805837750435,-0.0176062732934952,0.989008545875549,0.201260134577751,-0.11511142551899,0.972750544548035,0.173991307616234,-0.0366918034851551,0.984063327312469,0.268917500972748,-0.442458868026733,0.855519354343414,0.171211868524551,-0.0983381941914558,0.980314195156097,0.251847565174103,-0.586135566234589,0.770076453685761,0.268917500972748,-0.442458868026733,0.855519354343414,0.329152077436447,-0.680687785148621,0.654463827610016,0.159363210201263,0.0132382707670331,0.987131237983704,0.173991307616234,-0.0366918034851551,0.984063327312469,0.1105095744133,0.0975717902183533,0.989073932170868, +-0.0125361997634172,-0.505977094173431,0.862455725669861,-0.0315115079283714,-0.63968825340271,0.76798814535141,-0.0232259891927242,-0.607206404209137,0.794204533100128,0.11336924880743,-0.578736484050751,0.807596027851105,-0.0315115079283714,-0.63968825340271,0.76798814535141,-0.0125361997634172,-0.505977094173431,0.862455725669861,0.11336924880743,-0.578736484050751,0.807596027851105,0.196881100535393,-0.464235693216324,0.863552510738373,0.152017936110497,-0.626445055007935,0.764497876167297,-0.0792260989546776,-0.518146395683289,0.851614594459534,0.152017936110497,-0.626445055007935,0.764497876167297,0.232502058148384,-0.433547616004944,0.870620012283325,-0.0792260989546776,-0.518146395683289,0.851614594459534,0.232502058148384,-0.433547616004944,0.870620012283325,-0.0562808588147163,-0.261790931224823,0.963482141494751,-0.227341488003731,-0.042752493172884,0.972876131534576,-0.0017994602676481,-0.265932410955429,0.963989973068237,-0.0565488710999489,-0.01905850879848,0.998217880725861,-0.0565488710999489,-0.01905850879848,0.998217880725861,-0.0017994602676481,-0.265932410955429,0.963989973068237,0.141459360718727,-0.189408853650093,0.971655011177063,-0.0017994602676481,-0.265932410955429,0.963989973068237,0.219772964715958,-0.400614380836487,0.88949853181839,0.141459360718727,-0.189408853650093,0.971655011177063,-0.131743982434273,0.0294429548084736,0.990846395492554,-0.0562808588147163,-0.261790931224823,0.963482141494751,0.257212817668915,-0.178263276815414,0.949770331382751,-0.227341488003731,-0.042752493172884,0.972876131534576,-0.131743982434273,0.0294429548084736,0.990846395492554,-0.149914711713791,-0.0273417327553034,0.988320767879486,-0.0122099900618196,-0.449315011501312,0.893289864063263,-0.014423088170588,-0.474319934844971,0.880234360694885,-0.260012865066528,-0.431379169225693,0.863889575004578,-0.0017994602676481,-0.265932410955429,0.963989973068237,-0.014423088170588,-0.474319934844971,0.880234360694885,0.219772964715958,-0.400614380836487,0.88949853181839,-0.128650680184364,-0.26903161406517,0.954500317573547, +-0.260012865066528,-0.431379169225693,0.863889575004578,-0.147401675581932,-0.161986127495766,0.975721836090088,0.0224286690354347,0.0487700030207634,0.998558104038239,-0.0743235945701599,-0.0860858932137489,0.993511497974396,-0.120117612183094,-0.0219547841697931,0.992516815662384,-0.147401675581932,-0.161986127495766,0.975721836090088,0.0224286690354347,0.0487700030207634,0.998558104038239,-0.120117612183094,-0.0219547841697931,0.992516815662384,-0.0845209807157516,-0.287738591432571,0.953971982002258,-0.0141846183687449,-0.419681042432785,0.907560765743256,-0.150983273983002,-0.352173358201981,0.923676311969757,0.10300724953413,-0.258839339017868,0.960412204265594,-0.0845209807157516,-0.287738591432571,0.953971982002258,-0.0743235945701599,-0.0860858932137489,0.993511497974396,-0.100644998252392,-0.37034347653389,0.92342621088028,-0.250228494405746,-0.165925443172455,0.953862845897675,-0.216517806053162,-0.357741564512253,0.908372700214386,-0.100644998252392,-0.37034347653389,0.92342621088028,-0.150983273983002,-0.352173358201981,0.923676311969757,-0.0141846183687449,-0.419681042432785,0.907560765743256,-0.250228494405746,-0.165925443172455,0.953862845897675,-0.358136683702469,-0.114762619137764,0.92658919095993,-0.216517806053162,-0.357741564512253,0.908372700214386,-0.215213358402252,-0.075236476957798,0.973664402961731,-0.0538215078413486,-0.0231157429516315,0.998282968997955,0.00129990337882191,-0.127854317426682,0.99179208278656,-0.32762011885643,-0.0219999328255653,0.944553196430206,-0.335730224847794,0.0672629848122597,0.939553499221802,-0.262798398733139,0.0461656488478184,0.963745594024658,-0.250228494405746,-0.165925443172455,0.953862845897675,-0.335730224847794,0.0672629848122597,0.939553499221802,-0.358136683702469,-0.114762619137764,0.92658919095993,-0.257654935121536,0.0282595325261354,0.965823590755463,-0.215213358402252,-0.075236476957798,0.973664402961731,-0.262798398733139,0.0461656488478184,0.963745594024658,0.120045907795429,0.240620285272598,0.963167071342468,0.0944771096110344,0.378253191709518,0.920868337154388, +0.038891214877367,0.214674293994904,0.975911021232605,0.0518649704754353,0.326932609081268,0.94362336397171,0.0923661515116692,0.286449909210205,0.953632473945618,0.120045907795429,0.240620285272598,0.963167071342468,-0.0605320520699024,0.450463026762009,0.890740573406219,-0.226041451096535,0.752825975418091,0.61818939447403,-0.193079262971878,0.575070261955261,0.794993340969086,-0.0605320520699024,0.450463026762009,0.890740573406219,0.00970063079148531,0.336856424808502,0.941506028175354,-0.178592994809151,0.634656608104706,0.751874566078186,0.00970063079148531,0.336856424808502,0.941506028175354,-0.15862087905407,0.271374106407166,0.949313163757324,-0.178592994809151,0.634656608104706,0.751874566078186,-0.15862087905407,0.271374106407166,0.949313163757324,-0.113042682409287,0.257388353347778,0.95967310667038,-0.282919645309448,0.574541985988617,0.768022000789642,-0.0541347153484821,0.507229685783386,0.860108911991119,-0.113042682409287,0.257388353347778,0.95967310667038,0.038891214877367,0.214674293994904,0.975911021232605,-0.020547442138195,0.176797851920128,0.98403263092041,-0.0880128666758537,0.15910068154335,0.983331382274628,-0.173235356807709,0.141144588589668,0.97471410036087,-0.156987547874451,0.114630095660686,0.980925440788269,-0.168193697929382,0.158832713961601,0.972873568534851,-0.173235356807709,0.141144588589668,0.97471410036087,-0.168193697929382,0.158832713961601,0.972873568534851,-0.0392148867249489,0.246009230613709,0.968473851680756,-0.0776444748044014,0.231598868966103,0.969707787036896,-0.0415970534086227,0.102985605597496,0.993812620639801,-0.0880128666758537,0.15910068154335,0.983331382274628,-0.119200311601162,0.111742615699768,0.986562073230743,-0.0415970534086227,0.102985605597496,0.993812620639801,-0.115331344306469,-0.0331142693758011,0.992774903774261,0.0837384909391403,-0.00583482254296541,0.996470630168915,-0.115331344306469,-0.0331142693758011,0.992774903774261,0.00129990337882191,-0.127854317426682,0.99179208278656,0.0837384909391403,-0.00583482254296541,0.996470630168915,-0.229820966720581,0.784670174121857,0.575738549232483, +-0.233316957950592,0.848070442676544,0.475751638412476,-0.192873433232307,0.818727493286133,0.540818810462952,-0.233316957950592,0.848070442676544,0.475751638412476,-0.190941512584686,0.839529097080231,0.508657097816467,-0.23705767095089,0.891262173652649,0.386594504117966,-0.186557188630104,0.922202229499817,0.338731974363327,-0.195545688271523,0.841771006584167,0.503173232078552,-0.23705767095089,0.891262173652649,0.386594504117966,-0.25182718038559,0.84276956319809,0.475733637809753,-0.195545688271523,0.841771006584167,0.503173232078552,-0.162590056657791,0.613435029983521,0.7728271484375,-0.193079262971878,0.575070261955261,0.794993340969086,-0.25182718038559,0.84276956319809,0.475733637809753,-0.162590056657791,0.613435029983521,0.7728271484375,-0.0534790754318237,0.504545152187347,0.861727356910706,-0.11361825466156,0.538382291793823,0.83500611782074,-0.0332843475043774,0.381644368171692,0.923709690570831,-0.0793817266821861,0.702696621417999,0.7070472240448,-0.239367216825485,0.706599116325378,0.665898561477661,-0.143056958913803,0.655778586864471,0.741275310516357,-0.0473899021744728,0.611922860145569,0.789496302604675,-0.143056958913803,0.655778586864471,0.741275310516357,-0.11361825466156,0.538382291793823,0.83500611782074,-0.0593701042234898,0.381881505250931,0.922302305698395,-0.0332843475043774,0.381644368171692,0.923709690570831,-0.0776444748044014,0.231598868966103,0.969707787036896,-0.239367216825485,0.706599116325378,0.665898561477661,-0.143906101584435,0.773058950901031,0.617795050144196,-0.229820966720581,0.784670174121857,0.575738549232483,-0.032447811216116,0.363450616598129,0.931048154830933,0.0518649704754353,0.326932609081268,0.94362336397171,-0.0466550178825855,0.308889776468277,0.949952781200409,-0.124917268753052,0.700715780258179,0.702419340610504,-0.082286424934864,0.736061215400696,0.671894729137421,-0.0313311591744423,0.687329888343811,0.725669324398041,-0.213507503271103,0.741544723510742,0.636023461818695,-0.082286424934864,0.736061215400696,0.671894729137421,-0.124917268753052,0.700715780258179,0.702419340610504, +-0.417334169149399,0.604882538318634,0.678195595741272,-0.467254847288132,0.583591759204865,0.6641486287117,-0.406545013189316,0.632723748683929,0.659076333045959,-0.406545013189316,0.632723748683929,0.659076333045959,-0.376448482275009,0.597138285636902,0.708316564559937,-0.312861323356628,0.624599695205688,0.715536832809448,-0.312861323356628,0.624599695205688,0.715536832809448,-0.25105431675911,0.580020189285278,0.774950385093689,-0.256236463785172,0.600708603858948,0.757292449474335,-0.361485421657562,0.708280920982361,0.606354892253876,-0.327628135681152,0.788933873176575,0.519849002361298,-0.312922924757004,0.702220797538757,0.639503717422485,-0.417334169149399,0.604882538318634,0.678195595741272,-0.406545013189316,0.632723748683929,0.659076333045959,-0.361485421657562,0.708280920982361,0.606354892253876,-0.286925762891769,0.801416993141174,0.524789810180664,-0.213507503271103,0.741544723510742,0.636023461818695,-0.312922924757004,0.702220797538757,0.639503717422485,-0.0204369947314262,0.348831683397293,0.936962485313416,-0.0466550178825855,0.308889776468277,0.949952781200409,-0.0656129196286201,0.281799733638763,0.957227110862732,-0.123819634318352,0.410911530256271,0.903227746486664,-0.0945578441023827,0.320887386798859,0.942385256290436,-0.201051980257034,0.378958731889725,0.90330958366394,-0.000610767514444888,0.304598033428192,0.952480733394623,-0.0945578441023827,0.320887386798859,0.942385256290436,-0.0204369947314262,0.348831683397293,0.936962485313416,-0.199882343411446,0.524718165397644,0.827476739883423,-0.196416527032852,0.460635364055634,0.865583896636963,-0.228288352489471,0.479163199663162,0.847518086433411,-0.196416527032852,0.460635364055634,0.865583896636963,-0.201051980257034,0.378958731889725,0.90330958366394,-0.228288352489471,0.479163199663162,0.847518086433411,-0.226706236600876,0.547712683677673,0.805366337299347,-0.199882343411446,0.524718165397644,0.827476739883423,-0.275321006774902,0.508504211902618,0.815856397151947,-0.256236463785172,0.600708603858948,0.757292449474335,-0.25105431675911,0.580020189285278,0.774950385093689, +-0.226706236600876,0.547712683677673,0.805366337299347,-0.0180345177650452,0.538604378700256,0.842365682125092,0.0947011783719063,0.635367810726166,0.766380608081818,0.0302358791232109,0.544053196907043,0.838505685329437,0.0947011783719063,0.635367810726166,0.766380608081818,-0.0463941171765327,0.60364431142807,0.795902609825134,0.098351426422596,0.693352997303009,0.713854670524597,0.098351426422596,0.693352997303009,0.713854670524597,-0.0313311591744423,0.687329888343811,0.725669324398041,0.0305317845195532,0.743206381797791,0.668365061283112,0.0302358791232109,0.544053196907043,0.838505685329437,0.053541149944067,0.668681204319,0.741618931293488,0.0198324155062437,0.609198749065399,0.792769432067871,-0.152619794011116,0.720435202121735,0.676520526409149,-0.099539689719677,0.688498139381409,0.71837455034256,-0.180644050240517,0.714027404785156,0.676411509513855,-0.180644050240517,0.714027404785156,0.676411509513855,-0.130473122000694,0.682144403457642,0.719482898712158,-0.227212265133858,0.758272290229797,0.61106264591217,-0.130473122000694,0.682144403457642,0.719482898712158,0.053541149944067,0.668681204319,0.741618931293488,-0.054279338568449,0.763355195522308,0.643694400787354,0.0799226388335228,0.720150113105774,0.689199566841125,0.46461895108223,0.565212249755859,0.681662797927856,0.173695281147957,0.653365015983582,0.736847281455994,-0.135149076581001,0.732500374317169,0.667216420173645,-0.152619794011116,0.720435202121735,0.676520526409149,-0.197519242763519,0.745759308338165,0.636261761188507,-0.0242114067077637,0.713628351688385,0.700105845928192,0.0799226388335228,0.720150113105774,0.689199566841125,-0.135149076581001,0.732500374317169,0.667216420173645,0.434510976076126,0.465211719274521,0.771218597888947,0.173695281147957,0.653365015983582,0.736847281455994,0.46461895108223,0.565212249755859,0.681662797927856,0.527648866176605,0.247794568538666,0.812517285346985,0.272372096776962,0.544255435466766,0.7934730052948,0.434510976076126,0.465211719274521,0.771218597888947,0.161560669541359,0.575781643390656,0.801482081413269, +0.272372096776962,0.544255435466766,0.7934730052948,0.387563794851303,0.3086818754673,0.868625164031982,0.161560669541359,0.575781643390656,0.801482081413269,0.221606194972992,0.456430673599243,0.861720144748688,0.036897350102663,0.598807215690613,0.800042688846588,0.154901206493378,0.443378955125809,0.882848024368286,0.0479695051908493,0.530550599098206,0.846294760704041,0.100870192050934,0.508322656154633,0.855238616466522,0.100870192050934,0.508322656154633,0.855238616466522,0.036897350102663,0.598807215690613,0.800042688846588,0.221606194972992,0.456430673599243,0.861720144748688,0.116993464529514,0.410933405160904,0.904127299785614,-0.01217439211905,0.581019639968872,0.813798367977142,0.0479695051908493,0.530550599098206,0.846294760704041,-0.01217439211905,0.581019639968872,0.813798367977142,0.116993464529514,0.410933405160904,0.904127299785614,-0.00741205317899585,0.571354806423187,0.820669651031494,0.0837863832712173,0.436996281147003,0.895552337169647,-0.049249742180109,0.579795598983765,0.813271939754486,0.00675608450546861,0.489828318357468,0.871792674064636,0.00675608450546861,0.489828318357468,0.871792674064636,-0.00741205317899585,0.571354806423187,0.820669651031494,0.0605771765112877,0.29670387506485,0.953046202659607,-0.194861397147179,0.430331200361252,0.881387531757355,-0.138013869524002,0.486159771680832,0.862902462482452,-0.0187679436057806,0.383020609617233,0.923549056053162,0.0471741370856762,0.445571511983871,0.894002497196198,-0.0283082779496908,0.547417402267456,0.83638072013855,0.0837863832712173,0.436996281147003,0.895552337169647,-0.0615903437137604,0.515091001987457,0.854919791221619,-0.0283082779496908,0.547417402267456,0.83638072013855,0.0471741370856762,0.445571511983871,0.894002497196198,-0.138013869524002,0.486159771680832,0.862902462482452,-0.0615903437137604,0.515091001987457,0.854919791221619,-0.0187679436057806,0.383020609617233,0.923549056053162,-0.226979091763496,0.428359836339951,0.874636054039001,-0.194861397147179,0.430331200361252,0.881387531757355,-0.193161398172379,0.399019032716751,0.89636617898941, +-0.258470416069031,0.407200694084167,0.876002550125122,-0.226979091763496,0.428359836339951,0.874636054039001,-0.193161398172379,0.399019032716751,0.89636617898941,0.166385605931282,-0.584491968154907,0.794156670570374,0.11159535497427,-0.514164924621582,0.850400328636169,-0.0232259891927242,-0.607206404209137,0.794204533100128,0.341270416975021,-0.645865440368652,0.68292909860611,0.182815313339233,-0.686289250850677,0.703978300094604,0.251847565174103,-0.586135566234589,0.770076453685761,0.341270416975021,-0.645865440368652,0.68292909860611,0.287063628435135,-0.53775417804718,0.792726159095764,0.182815313339233,-0.686289250850677,0.703978300094604,0.166385605931282,-0.584491968154907,0.794156670570374,0.287063628435135,-0.53775417804718,0.792726159095764,0.290923655033112,-0.451200276613235,0.843671560287476,0.185575127601624,-0.0918116569519043,0.978331446647644,0.12624055147171,-0.043350987136364,0.991051912307739,0.146805837750435,-0.0176062732934952,0.989008545875549,0.101697213947773,0.086746908724308,0.991026043891907,0.1105095744133,0.0975717902183533,0.989073932170868,0.12624055147171,-0.043350987136364,0.991051912307739,0.185575127601624,-0.0918116569519043,0.978331446647644,0.146805837750435,-0.0176062732934952,0.989008545875549,0.184904679656029,-0.110358953475952,0.976540386676788,0.265449792146683,-0.292839854955673,0.918575584888458,0.268917500972748,-0.442458868026733,0.855519354343414,0.173991307616234,-0.0366918034851551,0.984063327312469,0.268917500972748,-0.442458868026733,0.855519354343414,0.390424907207489,-0.598195791244507,0.699807167053223,0.329152077436447,-0.680687785148621,0.654463827610016,0.341270416975021,-0.645865440368652,0.68292909860611,0.251847565174103,-0.586135566234589,0.770076453685761,0.329152077436447,-0.680687785148621,0.654463827610016,0.159363210201263,0.0132382707670331,0.987131237983704,0.265449792146683,-0.292839854955673,0.918575584888458,0.173991307616234,-0.0366918034851551,0.984063327312469,0.159363210201263,0.0132382707670331,0.987131237983704,0.1105095744133,0.0975717902183533,0.989073932170868, +0.106777712702751,0.154336988925934,0.982231378555298,-0.0232259891927242,-0.607206404209137,0.794204533100128,-0.0629183501005173,-0.489520907402039,0.869718611240387,-0.0125361997634172,-0.505977094173431,0.862455725669861,0.11336924880743,-0.578736484050751,0.807596027851105,-0.0125361997634172,-0.505977094173431,0.862455725669861,0.196881100535393,-0.464235693216324,0.863552510738373,0.196881100535393,-0.464235693216324,0.863552510738373,0.232502058148384,-0.433547616004944,0.870620012283325,0.152017936110497,-0.626445055007935,0.764497876167297,0.257212817668915,-0.178263276815414,0.949770331382751,-0.0562808588147163,-0.261790931224823,0.963482141494751,0.232502058148384,-0.433547616004944,0.870620012283325,-0.0017994602676481,-0.265932410955429,0.963989973068237,-0.227341488003731,-0.042752493172884,0.972876131534576,-0.221592351794243,-0.356437683105469,0.907661199569702,-0.131743982434273,0.0294429548084736,0.990846395492554,0.257212817668915,-0.178263276815414,0.949770331382751,0.123140119016171,0.0137670915573835,0.992293775081635,-0.149914711713791,-0.0273417327553034,0.988320767879486,-0.131743982434273,0.0294429548084736,0.990846395492554,0.02005510404706,0.079396940767765,0.996641278266907,-0.227341488003731,-0.042752493172884,0.972876131534576,-0.149914711713791,-0.0273417327553034,0.988320767879486,-0.219233587384224,-0.370671451091766,0.902518272399902,-0.260012865066528,-0.431379169225693,0.863889575004578,-0.014423088170588,-0.474319934844971,0.880234360694885,-0.221592351794243,-0.356437683105469,0.907661199569702,-0.0017994602676481,-0.265932410955429,0.963989973068237,-0.221592351794243,-0.356437683105469,0.907661199569702,-0.014423088170588,-0.474319934844971,0.880234360694885,-0.147401675581932,-0.161986127495766,0.975721836090088,-0.260012865066528,-0.431379169225693,0.863889575004578,-0.126909241080284,-0.310957700014114,0.941912531852722,0.0224286690354347,0.0487700030207634,0.998558104038239,0.0766169726848602,-0.0365135744214058,0.996391773223877,-0.0743235945701599,-0.0860858932137489,0.993511497974396, +-0.147401675581932,-0.161986127495766,0.975721836090088,-0.0199179798364639,-0.0855913087725639,0.996131181716919,0.0224286690354347,0.0487700030207634,0.998558104038239,0.10300724953413,-0.258839339017868,0.960412204265594,-0.0141846183687449,-0.419681042432785,0.907560765743256,-0.0845209807157516,-0.287738591432571,0.953971982002258,0.10300724953413,-0.258839339017868,0.960412204265594,-0.0743235945701599,-0.0860858932137489,0.993511497974396,0.0766169726848602,-0.0365135744214058,0.996391773223877,-0.103896856307983,-0.193920880556107,0.975499868392944,-0.250228494405746,-0.165925443172455,0.953862845897675,-0.100644998252392,-0.37034347653389,0.92342621088028,-0.0141846183687449,-0.419681042432785,0.907560765743256,0.0752870813012123,-0.354339361190796,0.932081162929535,-0.100644998252392,-0.37034347653389,0.92342621088028,-0.257654935121536,0.0282595325261354,0.965823590755463,-0.0538215078413486,-0.0231157429516315,0.998282968997955,-0.215213358402252,-0.075236476957798,0.973664402961731,-0.0538215078413486,-0.0231157429516315,0.998282968997955,0.0837384909391403,-0.00583482254296541,0.996470630168915,0.00129990337882191,-0.127854317426682,0.99179208278656,-0.335730224847794,0.0672629848122597,0.939553499221802,-0.227460741996765,0.201054602861404,0.952805638313293,-0.262798398733139,0.0461656488478184,0.963745594024658,-0.250228494405746,-0.165925443172455,0.953862845897675,-0.214518412947655,-0.0220794342458248,0.976470291614532,-0.335730224847794,0.0672629848122597,0.939553499221802,-0.262798398733139,0.0461656488478184,0.963745594024658,-0.075280137360096,0.0645792633295059,0.995069026947021,-0.257654935121536,0.0282595325261354,0.965823590755463,0.120045907795429,0.240620285272598,0.963167071342468,0.038891214877367,0.214674293994904,0.975911021232605,-0.0359027944505215,0.204282462596893,0.978253364562988,0.0518649704754353,0.326932609081268,0.94362336397171,0.120045907795429,0.240620285272598,0.963167071342468,-0.0359027944505215,0.204282462596893,0.978253364562988,-0.0605320520699024,0.450463026762009,0.890740573406219, +-0.193079262971878,0.575070261955261,0.794993340969086,-0.0972970277070999,0.216253533959389,0.971477031707764,-0.0605320520699024,0.450463026762009,0.890740573406219,-0.0344541184604168,0.24917733669281,0.967844724655151,0.00970063079148531,0.336856424808502,0.941506028175354,0.00970063079148531,0.336856424808502,0.941506028175354,0.0450653433799744,0.253192096948624,0.96636575460434,-0.15862087905407,0.271374106407166,0.949313163757324,-0.15862087905407,0.271374106407166,0.949313163757324,-0.0396667383611202,0.127929106354713,0.990989685058594,-0.113042682409287,0.257388353347778,0.95967310667038,-0.113042682409287,0.257388353347778,0.95967310667038,-0.0396667383611202,0.127929106354713,0.990989685058594,0.038891214877367,0.214674293994904,0.975911021232605,-0.0880128666758537,0.15910068154335,0.983331382274628,-0.156987547874451,0.114630095660686,0.980925440788269,-0.173235356807709,0.141144588589668,0.97471410036087,-0.168193697929382,0.158832713961601,0.972873568534851,-0.156987547874451,0.114630095660686,0.980925440788269,-0.0585360042750835,0.137408122420311,0.988783299922943,-0.168193697929382,0.158832713961601,0.972873568534851,-0.0585360042750835,0.137408122420311,0.988783299922943,-0.0392148867249489,0.246009230613709,0.968473851680756,-0.0392148867249489,0.246009230613709,0.968473851680756,-0.0593701042234898,0.381881505250931,0.922302305698395,-0.0776444748044014,0.231598868966103,0.969707787036896,-0.0880128666758537,0.15910068154335,0.983331382274628,-0.0415970534086227,0.102985605597496,0.993812620639801,0.0540977194905281,0.136341333389282,0.989183664321899,-0.0415970534086227,0.102985605597496,0.993812620639801,0.0837384909391403,-0.00583482254296541,0.996470630168915,0.168660268187523,0.117426283657551,0.978654563426971,-0.233316957950592,0.848070442676544,0.475751638412476,-0.229820966720581,0.784670174121857,0.575738549232483,-0.190941512584686,0.839529097080231,0.508657097816467,-0.128584966063499,0.888906896114349,0.439670771360397,-0.23705767095089,0.891262173652649,0.386594504117966,-0.190941512584686,0.839529097080231,0.508657097816467, +-0.222803950309753,0.876215934753418,0.427321761846542,-0.195545688271523,0.841771006584167,0.503173232078552,-0.186557188630104,0.922202229499817,0.338731974363327,-0.23705767095089,0.891262173652649,0.386594504117966,-0.128584966063499,0.888906896114349,0.439670771360397,-0.186557188630104,0.922202229499817,0.338731974363327,-0.162590056657791,0.613435029983521,0.7728271484375,-0.195545688271523,0.841771006584167,0.503173232078552,-0.170713424682617,0.476669132709503,0.862347602844238,-0.193079262971878,0.575070261955261,0.794993340969086,-0.162590056657791,0.613435029983521,0.7728271484375,-0.0972970277070999,0.216253533959389,0.971477031707764,-0.0534790754318237,0.504545152187347,0.861727356910706,-0.0473899021744728,0.611922860145569,0.789496302604675,-0.11361825466156,0.538382291793823,0.83500611782074,-0.0593701042234898,0.381881505250931,0.922302305698395,-0.0534790754318237,0.504545152187347,0.861727356910706,-0.0332843475043774,0.381644368171692,0.923709690570831,-0.0793817266821861,0.702696621417999,0.7070472240448,-0.143906101584435,0.773058950901031,0.617795050144196,-0.239367216825485,0.706599116325378,0.665898561477661,-0.0473899021744728,0.611922860145569,0.789496302604675,-0.0793817266821861,0.702696621417999,0.7070472240448,-0.143056958913803,0.655778586864471,0.741275310516357,-0.143906101584435,0.773058950901031,0.617795050144196,-0.190941512584686,0.839529097080231,0.508657097816467,-0.229820966720581,0.784670174121857,0.575738549232483,-0.0466550178825855,0.308889776468277,0.949952781200409,0.0518649704754353,0.326932609081268,0.94362336397171,-0.0359027944505215,0.204282462596893,0.978253364562988,0.0305317845195532,0.743206381797791,0.668365061283112,-0.0313311591744423,0.687329888343811,0.725669324398041,-0.082286424934864,0.736061215400696,0.671894729137421,-0.0833474770188332,0.796281099319458,0.599157273769379,-0.082286424934864,0.736061215400696,0.671894729137421,-0.213507503271103,0.741544723510742,0.636023461818695,-0.406545013189316,0.632723748683929,0.659076333045959,-0.312861323356628,0.624599695205688,0.715536832809448, +-0.309366345405579,0.696086883544922,0.647885262966156,-0.312861323356628,0.624599695205688,0.715536832809448,-0.256236463785172,0.600708603858948,0.757292449474335,-0.309366345405579,0.696086883544922,0.647885262966156,-0.331635117530823,0.770946443080902,0.543745815753937,-0.327628135681152,0.788933873176575,0.519849002361298,-0.361485421657562,0.708280920982361,0.606354892253876,-0.327628135681152,0.788933873176575,0.519849002361298,-0.286925762891769,0.801416993141174,0.524789810180664,-0.312922924757004,0.702220797538757,0.639503717422485,-0.361485421657562,0.708280920982361,0.606354892253876,-0.406545013189316,0.632723748683929,0.659076333045959,-0.309366345405579,0.696086883544922,0.647885262966156,-0.286925762891769,0.801416993141174,0.524789810180664,-0.195249542593956,0.844354391098022,0.498942047357559,-0.213507503271103,0.741544723510742,0.636023461818695,-0.0656129196286201,0.281799733638763,0.957227110862732,-0.0466550178825855,0.308889776468277,0.949952781200409,-0.0359027944505215,0.204282462596893,0.978253364562988,-0.0204369947314262,0.348831683397293,0.936962485313416,-0.0656129196286201,0.281799733638763,0.957227110862732,0.0284648351371288,0.258694231510162,0.965539693832397,-0.201051980257034,0.378958731889725,0.90330958366394,-0.0945578441023827,0.320887386798859,0.942385256290436,-0.229722335934639,0.297050803899765,0.92681622505188,-0.000610767514444888,0.304598033428192,0.952480733394623,-0.21654962003231,0.233944416046143,0.947827100753784,-0.0945578441023827,0.320887386798859,0.942385256290436,-0.0204369947314262,0.348831683397293,0.936962485313416,0.0284648351371288,0.258694231510162,0.965539693832397,-0.000610767514444888,0.304598033428192,0.952480733394623,-0.199882343411446,0.524718165397644,0.827476739883423,-0.228288352489471,0.479163199663162,0.847518086433411,-0.275321006774902,0.508504211902618,0.815856397151947,-0.201051980257034,0.378958731889725,0.90330958366394,-0.198294073343277,0.3648941218853,0.909687638282776,-0.228288352489471,0.479163199663162,0.847518086433411,-0.226706236600876,0.547712683677673,0.805366337299347, +-0.275321006774902,0.508504211902618,0.815856397151947,-0.311139583587646,0.542808830738068,0.780096471309662,-0.256236463785172,0.600708603858948,0.757292449474335,-0.226706236600876,0.547712683677673,0.805366337299347,-0.311139583587646,0.542808830738068,0.780096471309662,0.0947011783719063,0.635367810726166,0.766380608081818,0.053541149944067,0.668681204319,0.741618931293488,0.0302358791232109,0.544053196907043,0.838505685329437,0.0947011783719063,0.635367810726166,0.766380608081818,0.098351426422596,0.693352997303009,0.713854670524597,0.205336511135101,0.733333945274353,0.648118913173676,0.098351426422596,0.693352997303009,0.713854670524597,0.0305317845195532,0.743206381797791,0.668365061283112,0.149500042200089,0.802258729934692,0.577953815460205,-0.197519242763519,0.745759308338165,0.636261761188507,-0.152619794011116,0.720435202121735,0.676520526409149,-0.180644050240517,0.714027404785156,0.676411509513855,-0.054279338568449,0.763355195522308,0.643694400787354,-0.227212265133858,0.758272290229797,0.61106264591217,-0.130473122000694,0.682144403457642,0.719482898712158,-0.227212265133858,0.758272290229797,0.61106264591217,-0.197519242763519,0.745759308338165,0.636261761188507,-0.180644050240517,0.714027404785156,0.676411509513855,0.143511161208153,0.761146903038025,0.632502794265747,-0.054279338568449,0.763355195522308,0.643694400787354,0.053541149944067,0.668681204319,0.741618931293488,0.257043153047562,0.657340228557587,0.708401381969452,0.46461895108223,0.565212249755859,0.681662797927856,0.0799226388335228,0.720150113105774,0.689199566841125,-0.197519242763519,0.745759308338165,0.636261761188507,-0.136140897870064,0.757287979125977,0.638733446598053,-0.135149076581001,0.732500374317169,0.667216420173645,-0.0242114067077637,0.713628351688385,0.700105845928192,0.257043153047562,0.657340228557587,0.708401381969452,0.0799226388335228,0.720150113105774,0.689199566841125,-0.136140897870064,0.757287979125977,0.638733446598053,-0.0242114067077637,0.713628351688385,0.700105845928192,-0.135149076581001,0.732500374317169,0.667216420173645, +0.73720794916153,0.22472882270813,0.637197971343994,0.434510976076126,0.465211719274521,0.771218597888947,0.46461895108223,0.565212249755859,0.681662797927856,0.527648866176605,0.247794568538666,0.812517285346985,0.387563794851303,0.3086818754673,0.868625164031982,0.272372096776962,0.544255435466766,0.7934730052948,0.527648866176605,0.247794568538666,0.812517285346985,0.434510976076126,0.465211719274521,0.771218597888947,0.73720794916153,0.22472882270813,0.637197971343994,0.221606194972992,0.456430673599243,0.861720144748688,0.161560669541359,0.575781643390656,0.801482081413269,0.387563794851303,0.3086818754673,0.868625164031982,0.154901206493378,0.443378955125809,0.882848024368286,0.272845298051834,0.314617305994034,0.909159660339355,0.0479695051908493,0.530550599098206,0.846294760704041,0.154901206493378,0.443378955125809,0.882848024368286,0.100870192050934,0.508322656154633,0.855238616466522,0.320148795843124,0.283552080392838,0.90393739938736,0.100870192050934,0.508322656154633,0.855238616466522,0.221606194972992,0.456430673599243,0.861720144748688,0.320148795843124,0.283552080392838,0.90393739938736,0.116993464529514,0.410933405160904,0.904127299785614,0.0479695051908493,0.530550599098206,0.846294760704041,0.272845298051834,0.314617305994034,0.909159660339355,0.0605771765112877,0.29670387506485,0.953046202659607,-0.00741205317899585,0.571354806423187,0.820669651031494,0.116993464529514,0.410933405160904,0.904127299785614,0.0837863832712173,0.436996281147003,0.895552337169647,0.00675608450546861,0.489828318357468,0.871792674064636,0.0887652933597565,0.181576564908028,0.979362308979034,0.0605771765112877,0.29670387506485,0.953046202659607,0.0887652933597565,0.181576564908028,0.979362308979034,0.00675608450546861,0.489828318357468,0.871792674064636,-0.0187679436057806,0.383020609617233,0.923549056053162,-0.10029511898756,0.408503502607346,0.907229661941528,-0.194861397147179,0.430331200361252,0.881387531757355,0.192061573266983,0.325655460357666,0.925775766372681,0.0471741370856762,0.445571511983871,0.894002497196198, +0.0837863832712173,0.436996281147003,0.895552337169647,-0.0615903437137604,0.515091001987457,0.854919791221619,0.0471741370856762,0.445571511983871,0.894002497196198,-0.0187679436057806,0.383020609617233,0.923549056053162,-0.18752783536911,0.396434545516968,0.898706257343292,-0.193161398172379,0.399019032716751,0.89636617898941,-0.194861397147179,0.430331200361252,0.881387531757355,-0.258470416069031,0.407200694084167,0.876002550125122,-0.193161398172379,0.399019032716751,0.89636617898941,-0.170063838362694,0.292211562395096,0.941111385822296,0.166385605931282,-0.584491968154907,0.794156670570374,0.288958251476288,-0.482811003923416,0.826677978038788,0.11159535497427,-0.514164924621582,0.850400328636169,0.11159535497427,-0.514164924621582,0.850400328636169,-0.0629183501005173,-0.489520907402039,0.869718611240387,-0.0232259891927242,-0.607206404209137,0.794204533100128,0.381415337324142,-0.542632520198822,0.748379588127136,0.287063628435135,-0.53775417804718,0.792726159095764,0.341270416975021,-0.645865440368652,0.68292909860611,0.362351417541504,-0.475482046604156,0.801634669303894,0.290923655033112,-0.451200276613235,0.843671560287476,0.287063628435135,-0.53775417804718,0.792726159095764,0.290923655033112,-0.451200276613235,0.843671560287476,0.288958251476288,-0.482811003923416,0.826677978038788,0.166385605931282,-0.584491968154907,0.794156670570374,0.146812319755554,0.0130253145471215,0.98907858133316,0.12624055147171,-0.043350987136364,0.991051912307739,0.185575127601624,-0.0918116569519043,0.978331446647644,0.101697213947773,0.086746908724308,0.991026043891907,0.106777712702751,0.154336988925934,0.982231378555298,0.1105095744133,0.0975717902183533,0.989073932170868,0.146812319755554,0.0130253145471215,0.98907858133316,0.101697213947773,0.086746908724308,0.991026043891907,0.12624055147171,-0.043350987136364,0.991051912307739,0.185575127601624,-0.0918116569519043,0.978331446647644,0.184904679656029,-0.110358953475952,0.976540386676788,0.319532662630081,-0.232398837804794,0.918634593486786,0.265449792146683,-0.292839854955673,0.918575584888458, +0.390424907207489,-0.598195791244507,0.699807167053223,0.268917500972748,-0.442458868026733,0.855519354343414,0.447318464517593,-0.638982057571411,0.625785887241364,0.329152077436447,-0.680687785148621,0.654463827610016,0.390424907207489,-0.598195791244507,0.699807167053223,0.341270416975021,-0.645865440368652,0.68292909860611,0.329152077436447,-0.680687785148621,0.654463827610016,0.447318464517593,-0.638982057571411,0.625785887241364,0.265449792146683,-0.292839854955673,0.918575584888458,0.159363210201263,0.0132382707670331,0.987131237983704,0.350747585296631,-0.343234419822693,0.871301412582397,0.159363210201263,0.0132382707670331,0.987131237983704,0.106777712702751,0.154336988925934,0.982231378555298,0.293739974498749,-0.161486059427261,0.942145943641663,-0.0125361997634172,-0.505977094173431,0.862455725669861,-0.0629183501005173,-0.489520907402039,0.869718611240387,-0.0321397967636585,-0.379517823457718,0.924625992774963,0.196881100535393,-0.464235693216324,0.863552510738373,-0.0125361997634172,-0.505977094173431,0.862455725669861,-0.0321397967636585,-0.379517823457718,0.924625992774963,0.240957483649254,-0.266357153654099,0.933270156383514,0.232502058148384,-0.433547616004944,0.870620012283325,0.196881100535393,-0.464235693216324,0.863552510738373,0.240957483649254,-0.266357153654099,0.933270156383514,0.257212817668915,-0.178263276815414,0.949770331382751,0.232502058148384,-0.433547616004944,0.870620012283325,-0.219233587384224,-0.370671451091766,0.902518272399902,-0.221592351794243,-0.356437683105469,0.907661199569702,-0.227341488003731,-0.042752493172884,0.972876131534576,0.276267230510712,-0.108231507241726,0.954967141151428,0.123140119016171,0.0137670915573835,0.992293775081635,0.257212817668915,-0.178263276815414,0.949770331382751,-0.131743982434273,0.0294429548084736,0.990846395492554,0.123140119016171,0.0137670915573835,0.992293775081635,0.02005510404706,0.079396940767765,0.996641278266907,0.00566980335861444,-0.174700856208801,0.984605193138123,-0.149914711713791,-0.0273417327553034,0.988320767879486, +0.02005510404706,0.079396940767765,0.996641278266907,0.00566980335861444,-0.174700856208801,0.984605193138123,-0.219233587384224,-0.370671451091766,0.902518272399902,-0.149914711713791,-0.0273417327553034,0.988320767879486,-0.219233587384224,-0.370671451091766,0.902518272399902,-0.260012865066528,-0.431379169225693,0.863889575004578,-0.221592351794243,-0.356437683105469,0.907661199569702,-0.126909241080284,-0.310957700014114,0.941912531852722,-0.260012865066528,-0.431379169225693,0.863889575004578,-0.169357299804688,-0.473162144422531,0.864543557167053,-0.147401675581932,-0.161986127495766,0.975721836090088,-0.126909241080284,-0.310957700014114,0.941912531852722,-0.0199179798364639,-0.0855913087725639,0.996131181716919,0.0224286690354347,0.0487700030207634,0.998558104038239,0.161756560206413,0.0369205363094807,0.986139714717865,0.0766169726848602,-0.0365135744214058,0.996391773223877,0.107151426374912,-0.0107422303408384,0.994184672832489,0.0224286690354347,0.0487700030207634,0.998558104038239,-0.0199179798364639,-0.0855913087725639,0.996131181716919,0.10300724953413,-0.258839339017868,0.960412204265594,0.150016576051712,-0.375462591648102,0.914616227149963,-0.0141846183687449,-0.419681042432785,0.907560765743256,0.10300724953413,-0.258839339017868,0.960412204265594,0.0766169726848602,-0.0365135744214058,0.996391773223877,0.187596142292023,-0.135644391179085,0.972835123538971,-0.103896856307983,-0.193920880556107,0.975499868392944,-0.214518412947655,-0.0220794342458248,0.976470291614532,-0.250228494405746,-0.165925443172455,0.953862845897675,-0.103896856307983,-0.193920880556107,0.975499868392944,-0.100644998252392,-0.37034347653389,0.92342621088028,0.0752870813012123,-0.354339361190796,0.932081162929535,0.150016576051712,-0.375462591648102,0.914616227149963,0.0752870813012123,-0.354339361190796,0.932081162929535,-0.0141846183687449,-0.419681042432785,0.907560765743256,-0.257654935121536,0.0282595325261354,0.965823590755463,-0.075280137360096,0.0645792633295059,0.995069026947021,-0.0538215078413486,-0.0231157429516315,0.998282968997955, +0.136438995599747,0.0785231664776802,0.98753148317337,0.0837384909391403,-0.00583482254296541,0.996470630168915,-0.0538215078413486,-0.0231157429516315,0.998282968997955,-0.335730224847794,0.0672629848122597,0.939553499221802,-0.18891566991806,0.177170291543007,0.96587860584259,-0.227460741996765,0.201054602861404,0.952805638313293,-0.262798398733139,0.0461656488478184,0.963745594024658,-0.227460741996765,0.201054602861404,0.952805638313293,-0.075280137360096,0.0645792633295059,0.995069026947021,-0.141969472169876,0.0915418192744255,0.985629081726074,-0.335730224847794,0.0672629848122597,0.939553499221802,-0.214518412947655,-0.0220794342458248,0.976470291614532,-0.0359027944505215,0.204282462596893,0.978253364562988,0.038891214877367,0.214674293994904,0.975911021232605,-0.0396667383611202,0.127929106354713,0.990989685058594,-0.0344541184604168,0.24917733669281,0.967844724655151,-0.0605320520699024,0.450463026762009,0.890740573406219,-0.0972970277070999,0.216253533959389,0.971477031707764,0.00970063079148531,0.336856424808502,0.941506028175354,-0.0344541184604168,0.24917733669281,0.967844724655151,0.0450653433799744,0.253192096948624,0.96636575460434,-0.15862087905407,0.271374106407166,0.949313163757324,0.0450653433799744,0.253192096948624,0.96636575460434,-0.0396667383611202,0.127929106354713,0.990989685058594,0.0306681673973799,0.0857032313942909,0.995848536491394,-0.156987547874451,0.114630095660686,0.980925440788269,-0.0880128666758537,0.15910068154335,0.983331382274628,0.0306681673973799,0.0857032313942909,0.995848536491394,-0.0585360042750835,0.137408122420311,0.988783299922943,-0.156987547874451,0.114630095660686,0.980925440788269,-0.0585360042750835,0.137408122420311,0.988783299922943,0.0445712506771088,0.0955776274204254,0.994423568248749,-0.0392148867249489,0.246009230613709,0.968473851680756,0.050901360809803,0.33620896935463,0.940410792827606,-0.0593701042234898,0.381881505250931,0.922302305698395,-0.0392148867249489,0.246009230613709,0.968473851680756,0.0540977194905281,0.136341333389282,0.989183664321899, +-0.0415970534086227,0.102985605597496,0.993812620639801,0.168660268187523,0.117426283657551,0.978654563426971,0.0306681673973799,0.0857032313942909,0.995848536491394,-0.0880128666758537,0.15910068154335,0.983331382274628,0.0540977194905281,0.136341333389282,0.989183664321899,0.168660268187523,0.117426283657551,0.978654563426971,0.0837384909391403,-0.00583482254296541,0.996470630168915,0.136438995599747,0.0785231664776802,0.98753148317337,-0.128584966063499,0.888906896114349,0.439670771360397,-0.190941512584686,0.839529097080231,0.508657097816467,-0.0648908540606499,0.826115667819977,0.559751629829407,-0.195545688271523,0.841771006584167,0.503173232078552,-0.222803950309753,0.876215934753418,0.427321761846542,-0.233824923634529,0.774148166179657,0.588234961032867,-0.0366731323301792,0.93647027015686,0.348824322223663,-0.222803950309753,0.876215934753418,0.427321761846542,-0.186557188630104,0.922202229499817,0.338731974363327,-0.128584966063499,0.888906896114349,0.439670771360397,-0.0765166059136391,0.923467397689819,0.375969499349594,-0.186557188630104,0.922202229499817,0.338731974363327,-0.107926897704601,0.538069605827332,0.835962176322937,-0.170713424682617,0.476669132709503,0.862347602844238,-0.195545688271523,0.841771006584167,0.503173232078552,-0.162590056657791,0.613435029983521,0.7728271484375,-0.170713424682617,0.476669132709503,0.862347602844238,-0.0972970277070999,0.216253533959389,0.971477031707764,-0.0473899021744728,0.611922860145569,0.789496302604675,-0.0534790754318237,0.504545152187347,0.861727356910706,-0.0214262902736664,0.595738649368286,0.8028923869133,-0.0534790754318237,0.504545152187347,0.861727356910706,-0.0593701042234898,0.381881505250931,0.922302305698395,-0.0249356366693974,0.473632723093033,0.880369305610657,-0.143906101584435,0.773058950901031,0.617795050144196,-0.0793817266821861,0.702696621417999,0.7070472240448,-0.0311659015715122,0.759183526039124,0.650129914283752,-0.0473899021744728,0.611922860145569,0.789496302604675,-0.0214262902736664,0.595738649368286,0.8028923869133,-0.0793817266821861,0.702696621417999,0.7070472240448, +-0.0648908540606499,0.826115667819977,0.559751629829407,-0.190941512584686,0.839529097080231,0.508657097816467,-0.143906101584435,0.773058950901031,0.617795050144196,-0.0833474770188332,0.796281099319458,0.599157273769379,0.0305317845195532,0.743206381797791,0.668365061283112,-0.082286424934864,0.736061215400696,0.671894729137421,-0.0833474770188332,0.796281099319458,0.599157273769379,-0.213507503271103,0.741544723510742,0.636023461818695,-0.195249542593956,0.844354391098022,0.498942047357559,-0.256236463785172,0.600708603858948,0.757292449474335,-0.302320837974548,0.651773393154144,0.695552587509155,-0.309366345405579,0.696086883544922,0.647885262966156,-0.331635117530823,0.770946443080902,0.543745815753937,-0.317676484584808,0.823823094367981,0.469464600086212,-0.327628135681152,0.788933873176575,0.519849002361298,-0.361485421657562,0.708280920982361,0.606354892253876,-0.309366345405579,0.696086883544922,0.647885262966156,-0.331635117530823,0.770946443080902,0.543745815753937,-0.286925762891769,0.801416993141174,0.524789810180664,-0.327628135681152,0.788933873176575,0.519849002361298,-0.280360400676727,0.86076819896698,0.424824714660645,-0.195249542593956,0.844354391098022,0.498942047357559,-0.286925762891769,0.801416993141174,0.524789810180664,-0.280360400676727,0.86076819896698,0.424824714660645,0.0284648351371288,0.258694231510162,0.965539693832397,-0.0656129196286201,0.281799733638763,0.957227110862732,-0.0359027944505215,0.204282462596893,0.978253364562988,-0.229722335934639,0.297050803899765,0.92681622505188,-0.0945578441023827,0.320887386798859,0.942385256290436,-0.21654962003231,0.233944416046143,0.947827100753784,-0.201051980257034,0.378958731889725,0.90330958366394,-0.229722335934639,0.297050803899765,0.92681622505188,-0.198294073343277,0.3648941218853,0.909687638282776,-0.209809094667435,0.19437862932682,0.958225965499878,-0.21654962003231,0.233944416046143,0.947827100753784,-0.000610767514444888,0.304598033428192,0.952480733394623,-0.000610767514444888,0.304598033428192,0.952480733394623,0.0284648351371288,0.258694231510162,0.965539693832397, +0.0450653433799744,0.253192096948624,0.96636575460434,-0.239671558141708,0.494082391262054,0.835727214813232,-0.275321006774902,0.508504211902618,0.815856397151947,-0.228288352489471,0.479163199663162,0.847518086433411,-0.198294073343277,0.3648941218853,0.909687638282776,-0.179466485977173,0.445418149232864,0.877151250839233,-0.228288352489471,0.479163199663162,0.847518086433411,-0.262550711631775,0.515943586826324,0.81539511680603,-0.311139583587646,0.542808830738068,0.780096471309662,-0.275321006774902,0.508504211902618,0.815856397151947,-0.311139583587646,0.542808830738068,0.780096471309662,-0.302320837974548,0.651773393154144,0.695552587509155,-0.256236463785172,0.600708603858948,0.757292449474335,0.0947011783719063,0.635367810726166,0.766380608081818,0.205336511135101,0.733333945274353,0.648118913173676,0.053541149944067,0.668681204319,0.741618931293488,0.098351426422596,0.693352997303009,0.713854670524597,0.149500042200089,0.802258729934692,0.577953815460205,0.205336511135101,0.733333945274353,0.648118913173676,0.0352721326053143,0.819829642772675,0.57151997089386,0.149500042200089,0.802258729934692,0.577953815460205,0.0305317845195532,0.743206381797791,0.668365061283112,-0.054279338568449,0.763355195522308,0.643694400787354,-0.136804059147835,0.836160004138947,0.531150579452515,-0.227212265133858,0.758272290229797,0.61106264591217,-0.197519242763519,0.745759308338165,0.636261761188507,-0.227212265133858,0.758272290229797,0.61106264591217,-0.208728075027466,0.782859742641449,0.586142539978027,0.143511161208153,0.761146903038025,0.632502794265747,0.0841712802648544,0.833515524864197,0.546046614646912,-0.054279338568449,0.763355195522308,0.643694400787354,0.053541149944067,0.668681204319,0.741618931293488,0.205336511135101,0.733333945274353,0.648118913173676,0.143511161208153,0.761146903038025,0.632502794265747,0.257043153047562,0.657340228557587,0.708401381969452,0.625897467136383,0.433305025100708,0.648458898067474,0.46461895108223,0.565212249755859,0.681662797927856,-0.136140897870064,0.757287979125977,0.638733446598053, +-0.197519242763519,0.745759308338165,0.636261761188507,-0.208728075027466,0.782859742641449,0.586142539978027,0.310053110122681,0.563990592956543,0.76536363363266,0.257043153047562,0.657340228557587,0.708401381969452,-0.0242114067077637,0.713628351688385,0.700105845928192,0.103447236120701,0.704618215560913,0.702005445957184,-0.0242114067077637,0.713628351688385,0.700105845928192,-0.136140897870064,0.757287979125977,0.638733446598053,0.73720794916153,0.22472882270813,0.637197971343994,0.46461895108223,0.565212249755859,0.681662797927856,0.625897467136383,0.433305025100708,0.648458898067474,0.527648866176605,0.247794568538666,0.812517285346985,0.655100345611572,-0.0740783363580704,0.75190144777298,0.387563794851303,0.3086818754673,0.868625164031982,0.73720794916153,0.22472882270813,0.637197971343994,0.755359947681427,-0.0326073989272118,0.654498338699341,0.527648866176605,0.247794568538666,0.812517285346985,0.221606194972992,0.456430673599243,0.861720144748688,0.387563794851303,0.3086818754673,0.868625164031982,0.486402809619904,0.0946260988712311,0.868595480918884,0.272845298051834,0.314617305994034,0.909159660339355,0.154901206493378,0.443378955125809,0.882848024368286,0.377433091402054,0.173426494002342,0.909652352333069,0.154901206493378,0.443378955125809,0.882848024368286,0.320148795843124,0.283552080392838,0.90393739938736,0.377433091402054,0.173426494002342,0.909652352333069,0.486402809619904,0.0946260988712311,0.868595480918884,0.320148795843124,0.283552080392838,0.90393739938736,0.221606194972992,0.456430673599243,0.861720144748688,0.359223783016205,0.0969588831067085,0.928201019763947,0.116993464529514,0.410933405160904,0.904127299785614,0.272845298051834,0.314617305994034,0.909159660339355,0.249607965350151,-0.047825314104557,0.967165172100067,0.0605771765112877,0.29670387506485,0.953046202659607,0.116993464529514,0.410933405160904,0.904127299785614,0.206829100847244,0.042377058416605,0.977458834648132,0.0837863832712173,0.436996281147003,0.895552337169647,0.0887652933597565,0.181576564908028,0.979362308979034, +0.0605771765112877,0.29670387506485,0.953046202659607,0.1746576577425,-0.194435954093933,0.965240478515625,0.0887652933597565,0.181576564908028,0.979362308979034,-0.10029511898756,0.408503502607346,0.907229661941528,-0.0187679436057806,0.383020609617233,0.923549056053162,-0.0353925339877605,0.398872494697571,0.916323065757751,-0.194861397147179,0.430331200361252,0.881387531757355,-0.10029511898756,0.408503502607346,0.907229661941528,-0.204336926341057,0.415452033281326,0.886366665363312,0.0954413041472435,0.384494304656982,0.918180286884308,0.0471741370856762,0.445571511983871,0.894002497196198,0.192061573266983,0.325655460357666,0.925775766372681,0.192061573266983,0.325655460357666,0.925775766372681,0.0837863832712173,0.436996281147003,0.895552337169647,0.29939004778862,0.0987574085593224,0.949006080627441,0.0991846397519112,0.302877336740494,0.947854220867157,-0.0187679436057806,0.383020609617233,0.923549056053162,0.0471741370856762,0.445571511983871,0.894002497196198,-0.193161398172379,0.399019032716751,0.89636617898941,-0.18752783536911,0.396434545516968,0.898706257343292,-0.170063838362694,0.292211562395096,0.941111385822296,-0.193165183067322,0.399012953042984,0.896368086338043,-0.18752783536911,0.396434545516968,0.898706257343292,-0.194861397147179,0.430331200361252,0.881387531757355,0.294784754514694,-0.340628653764725,0.892789959907532,0.11159535497427,-0.514164924621582,0.850400328636169,0.288958251476288,-0.482811003923416,0.826677978038788,0.0616459362208843,-0.316750884056091,0.946503341197968,-0.0629183501005173,-0.489520907402039,0.869718611240387,0.11159535497427,-0.514164924621582,0.850400328636169,0.381415337324142,-0.542632520198822,0.748379588127136,0.362351417541504,-0.475482046604156,0.801634669303894,0.287063628435135,-0.53775417804718,0.792726159095764,0.381415337324142,-0.542632520198822,0.748379588127136,0.341270416975021,-0.645865440368652,0.68292909860611,0.470308512449265,-0.547529280185699,0.692113757133484,0.224455267190933,-0.357591331005096,0.906503260135651,0.290923655033112,-0.451200276613235,0.843671560287476, +0.362351417541504,-0.475482046604156,0.801634669303894,0.290923655033112,-0.451200276613235,0.843671560287476,0.294938921928406,-0.334873199462891,0.894913852214813,0.288958251476288,-0.482811003923416,0.826677978038788,0.185575127601624,-0.0918116569519043,0.978331446647644,0.240496903657913,-0.0552168302237988,0.969078063964844,0.146812319755554,0.0130253145471215,0.98907858133316,0.106777712702751,0.154336988925934,0.982231378555298,0.101697213947773,0.086746908724308,0.991026043891907,0.0984918177127838,0.19842541217804,0.97515469789505,0.0984918177127838,0.19842541217804,0.97515469789505,0.101697213947773,0.086746908724308,0.991026043891907,0.146812319755554,0.0130253145471215,0.98907858133316,0.319532662630081,-0.232398837804794,0.918634593486786,0.240496903657913,-0.0552168302237988,0.969078063964844,0.185575127601624,-0.0918116569519043,0.978331446647644,0.265449792146683,-0.292839854955673,0.918575584888458,0.350747585296631,-0.343234419822693,0.871301412582397,0.390424907207489,-0.598195791244507,0.699807167053223,0.390424907207489,-0.598195791244507,0.699807167053223,0.476447969675064,-0.535488128662109,0.697315990924835,0.447318464517593,-0.638982057571411,0.625785887241364,0.341270416975021,-0.645865440368652,0.68292909860611,0.447318464517593,-0.638982057571411,0.625785887241364,0.470308512449265,-0.547529280185699,0.692113757133484,0.293739974498749,-0.161486059427261,0.942145943641663,0.350747585296631,-0.343234419822693,0.871301412582397,0.159363210201263,0.0132382707670331,0.987131237983704,0.293739974498749,-0.161486059427261,0.942145943641663,0.106777712702751,0.154336988925934,0.982231378555298,0.204431846737862,0.0182346776127815,0.978710889816284,0.0616459362208843,-0.316750884056091,0.946503341197968,-0.0321397967636585,-0.379517823457718,0.924625992774963,-0.0629183501005173,-0.489520907402039,0.869718611240387,0.196881100535393,-0.464235693216324,0.863552510738373,-0.0321397967636585,-0.379517823457718,0.924625992774963,0.240957483649254,-0.266357153654099,0.933270156383514,0.240957483649254,-0.266357153654099,0.933270156383514, +0.357314199209213,-0.150065764784813,0.92184966802597,0.257212817668915,-0.178263276815414,0.949770331382751,0.276267230510712,-0.108231507241726,0.954967141151428,0.02005510404706,0.079396940767765,0.996641278266907,0.123140119016171,0.0137670915573835,0.992293775081635,0.357314199209213,-0.150065764784813,0.92184966802597,0.276267230510712,-0.108231507241726,0.954967141151428,0.257212817668915,-0.178263276815414,0.949770331382751,0.00566980335861444,-0.174700856208801,0.984605193138123,0.02005510404706,0.079396940767765,0.996641278266907,0.276267230510712,-0.108231507241726,0.954967141151428,0.00566980335861444,-0.174700856208801,0.984605193138123,-0.0363474227488041,-0.441734462976456,0.896409153938293,-0.219233587384224,-0.370671451091766,0.902518272399902,-0.219233587384224,-0.370671451091766,0.902518272399902,-0.169357299804688,-0.473162144422531,0.864543557167053,-0.260012865066528,-0.431379169225693,0.863889575004578,0.0314857624471188,-0.434105068445206,0.900311827659607,-0.126909241080284,-0.310957700014114,0.941912531852722,-0.169357299804688,-0.473162144422531,0.864543557167053,-0.0199179798364639,-0.0855913087725639,0.996131181716919,-0.126909241080284,-0.310957700014114,0.941912531852722,0.0333672314882278,-0.220617383718491,0.974789440631866,0.161756560206413,0.0369205363094807,0.986139714717865,0.0224286690354347,0.0487700030207634,0.998558104038239,0.0921158045530319,0.150636166334152,0.984288215637207,0.161756560206413,0.0369205363094807,0.986139714717865,0.187596142292023,-0.135644391179085,0.972835123538971,0.0766169726848602,-0.0365135744214058,0.996391773223877,0.107151426374912,-0.0107422303408384,0.994184672832489,0.0995567888021469,0.158068910241127,0.982396364212036,0.0224286690354347,0.0487700030207634,0.998558104038239,0.0333672314882278,-0.220617383718491,0.974789440631866,0.107151426374912,-0.0107422303408384,0.994184672832489,-0.0199179798364639,-0.0855913087725639,0.996131181716919,0.10300724953413,-0.258839339017868,0.960412204265594,0.245437145233154,-0.359061539173126,0.900463938713074, +0.150016576051712,-0.375462591648102,0.914616227149963,0.278270453214645,-0.291475147008896,0.915209054946899,0.10300724953413,-0.258839339017868,0.960412204265594,0.187596142292023,-0.135644391179085,0.972835123538971,-0.103896856307983,-0.193920880556107,0.975499868392944,-0.0561226084828377,-0.0295643620193005,0.997986018657684,-0.214518412947655,-0.0220794342458248,0.976470291614532,-0.103896856307983,-0.193920880556107,0.975499868392944,0.0752870813012123,-0.354339361190796,0.932081162929535,0.023940509185195,-0.175576597452164,0.98417454957962,0.245437145233154,-0.359061539173126,0.900463938713074,0.0752870813012123,-0.354339361190796,0.932081162929535,0.150016576051712,-0.375462591648102,0.914616227149963,-0.075280137360096,0.0645792633295059,0.995069026947021,0.136438995599747,0.0785231664776802,0.98753148317337,-0.0538215078413486,-0.0231157429516315,0.998282968997955,-0.141969472169876,0.0915418192744255,0.985629081726074,-0.18891566991806,0.177170291543007,0.96587860584259,-0.335730224847794,0.0672629848122597,0.939553499221802,-0.0962034314870834,0.249013096094131,0.963710129261017,-0.227460741996765,0.201054602861404,0.952805638313293,-0.18891566991806,0.177170291543007,0.96587860584259,-0.075280137360096,0.0645792633295059,0.995069026947021,-0.227460741996765,0.201054602861404,0.952805638313293,-0.011087330058217,0.169858664274216,0.985406041145325,-0.141969472169876,0.0915418192744255,0.985629081726074,-0.214518412947655,-0.0220794342458248,0.976470291614532,-0.0561226084828377,-0.0295643620193005,0.997986018657684,-0.0359027944505215,0.204282462596893,0.978253364562988,-0.0396667383611202,0.127929106354713,0.990989685058594,0.0284648351371288,0.258694231510162,0.965539693832397,-0.0344541184604168,0.24917733669281,0.967844724655151,-0.0972970277070999,0.216253533959389,0.971477031707764,-0.186030298471451,0.122593089938164,0.974865913391113,-0.0344541184604168,0.24917733669281,0.967844724655151,-0.000610767514444888,0.304598033428192,0.952480733394623,0.0450653433799744,0.253192096948624,0.96636575460434, +0.0450653433799744,0.253192096948624,0.96636575460434,0.0284648351371288,0.258694231510162,0.965539693832397,-0.0396667383611202,0.127929106354713,0.990989685058594,0.0306681673973799,0.0857032313942909,0.995848536491394,0.0445712506771088,0.0955776274204254,0.994423568248749,-0.0585360042750835,0.137408122420311,0.988783299922943,-0.0392148867249489,0.246009230613709,0.968473851680756,0.0445712506771088,0.0955776274204254,0.994423568248749,0.0760542303323746,0.1807921230793,0.980576276779175,0.050901360809803,0.33620896935463,0.940410792827606,-0.0249356366693974,0.473632723093033,0.880369305610657,-0.0593701042234898,0.381881505250931,0.922302305698395,-0.0392148867249489,0.246009230613709,0.968473851680756,0.0760542303323746,0.1807921230793,0.980576276779175,0.050901360809803,0.33620896935463,0.940410792827606,0.0540977194905281,0.136341333389282,0.989183664321899,0.168660268187523,0.117426283657551,0.978654563426971,0.17932653427124,0.0778496786952019,0.980704545974731,0.0540977194905281,0.136341333389282,0.989183664321899,0.17932653427124,0.0778496786952019,0.980704545974731,0.0306681673973799,0.0857032313942909,0.995848536491394,0.123144499957561,0.0805843770503998,0.989111483097076,0.168660268187523,0.117426283657551,0.978654563426971,0.136438995599747,0.0785231664776802,0.98753148317337,-0.128584966063499,0.888906896114349,0.439670771360397,-0.0648908540606499,0.826115667819977,0.559751629829407,-0.0251308865845203,0.857396721839905,0.5140420794487,-0.222803950309753,0.876215934753418,0.427321761846542,-0.200093865394592,0.584151804447174,0.786593317985535,-0.233824923634529,0.774148166179657,0.588234961032867,-0.195545688271523,0.841771006584167,0.503173232078552,-0.233824923634529,0.774148166179657,0.588234961032867,-0.107926897704601,0.538069605827332,0.835962176322937,-0.0366731323301792,0.93647027015686,0.348824322223663,0.0369631312787533,0.766337811946869,0.641373455524445,-0.222803950309753,0.876215934753418,0.427321761846542,-0.0366731323301792,0.93647027015686,0.348824322223663,-0.186557188630104,0.922202229499817,0.338731974363327, +-0.0765166059136391,0.923467397689819,0.375969499349594,-0.128584966063499,0.888906896114349,0.439670771360397,-0.0251308865845203,0.857396721839905,0.5140420794487,-0.0765166059136391,0.923467397689819,0.375969499349594,-0.107926897704601,0.538069605827332,0.835962176322937,-0.0514198020100594,0.175295516848564,0.983172118663788,-0.170713424682617,0.476669132709503,0.862347602844238,-0.0972970277070999,0.216253533959389,0.971477031707764,-0.170713424682617,0.476669132709503,0.862347602844238,-0.0514198020100594,0.175295516848564,0.983172118663788,-0.0534790754318237,0.504545152187347,0.861727356910706,-0.0249356366693974,0.473632723093033,0.880369305610657,-0.0214262902736664,0.595738649368286,0.8028923869133,-0.0793817266821861,0.702696621417999,0.7070472240448,-0.0164599251002073,0.673517286777496,0.738988101482391,-0.0311659015715122,0.759183526039124,0.650129914283752,-0.143906101584435,0.773058950901031,0.617795050144196,-0.0311659015715122,0.759183526039124,0.650129914283752,-0.0648908540606499,0.826115667819977,0.559751629829407,-0.0793817266821861,0.702696621417999,0.7070472240448,-0.0214262902736664,0.595738649368286,0.8028923869133,-0.0164599251002073,0.673517286777496,0.738988101482391,-0.0833474770188332,0.796281099319458,0.599157273769379,0.0352721326053143,0.819829642772675,0.57151997089386,0.0305317845195532,0.743206381797791,0.668365061283112,-0.0833474770188332,0.796281099319458,0.599157273769379,-0.195249542593956,0.844354391098022,0.498942047357559,-0.0578498840332031,0.861983418464661,0.503624677658081,-0.309366345405579,0.696086883544922,0.647885262966156,-0.302320837974548,0.651773393154144,0.695552587509155,-0.302961528301239,0.743799567222595,0.595798909664154,-0.331635117530823,0.770946443080902,0.543745815753937,-0.321463942527771,0.80355167388916,0.500964522361755,-0.317676484584808,0.823823094367981,0.469464600086212,-0.317676484584808,0.823823094367981,0.469464600086212,-0.315922141075134,0.857251405715942,0.40658712387085,-0.327628135681152,0.788933873176575,0.519849002361298,-0.293890386819839,0.76807302236557,0.568939447402954, +-0.331635117530823,0.770946443080902,0.543745815753937,-0.309366345405579,0.696086883544922,0.647885262966156,-0.280360400676727,0.86076819896698,0.424824714660645,-0.327628135681152,0.788933873176575,0.519849002361298,-0.315922141075134,0.857251405715942,0.40658712387085,-0.280360400676727,0.86076819896698,0.424824714660645,-0.0675052776932716,0.898881018161774,0.432961672544479,-0.195249542593956,0.844354391098022,0.498942047357559,-0.229722335934639,0.297050803899765,0.92681622505188,-0.21654962003231,0.233944416046143,0.947827100753784,-0.22087188065052,0.281852751970291,0.933688640594482,-0.198294073343277,0.3648941218853,0.909687638282776,-0.229722335934639,0.297050803899765,0.92681622505188,-0.22087188065052,0.281852751970291,0.933688640594482,-0.209809094667435,0.19437862932682,0.958225965499878,-0.206702321767807,0.180810734629631,0.961551666259766,-0.21654962003231,0.233944416046143,0.947827100753784,-0.0344541184604168,0.24917733669281,0.967844724655151,-0.209809094667435,0.19437862932682,0.958225965499878,-0.000610767514444888,0.304598033428192,0.952480733394623,-0.275321006774902,0.508504211902618,0.815856397151947,-0.239671558141708,0.494082391262054,0.835727214813232,-0.262550711631775,0.515943586826324,0.81539511680603,-0.239671558141708,0.494082391262054,0.835727214813232,-0.228288352489471,0.479163199663162,0.847518086433411,-0.211268708109856,0.494062811136246,0.843366682529449,-0.179466485977173,0.445418149232864,0.877151250839233,-0.198294073343277,0.3648941218853,0.909687638282776,-0.154365971684456,0.352395623922348,0.923032164573669,-0.179466485977173,0.445418149232864,0.877151250839233,-0.211268708109856,0.494062811136246,0.843366682529449,-0.228288352489471,0.479163199663162,0.847518086433411,-0.262550711631775,0.515943586826324,0.81539511680603,-0.283676415681839,0.624607741832733,0.727593779563904,-0.311139583587646,0.542808830738068,0.780096471309662,-0.311139583587646,0.542808830738068,0.780096471309662,-0.283676415681839,0.624607741832733,0.727593779563904,-0.302320837974548,0.651773393154144,0.695552587509155, +0.149500042200089,0.802258729934692,0.577953815460205,0.264530509710312,0.781427919864655,0.565149426460266,0.205336511135101,0.733333945274353,0.648118913173676,0.0311300754547119,0.868121743202209,0.49537405371666,0.149500042200089,0.802258729934692,0.577953815460205,0.0352721326053143,0.819829642772675,0.57151997089386,0.0841712802648544,0.833515524864197,0.546046614646912,-0.136804059147835,0.836160004138947,0.531150579452515,-0.054279338568449,0.763355195522308,0.643694400787354,-0.227212265133858,0.758272290229797,0.61106264591217,-0.136804059147835,0.836160004138947,0.531150579452515,-0.230580165982246,0.827055811882019,0.512651205062866,-0.227212265133858,0.758272290229797,0.61106264591217,-0.230580165982246,0.827055811882019,0.512651205062866,-0.208728075027466,0.782859742641449,0.586142539978027,0.229706928133965,0.790425300598145,0.567857623100281,0.0841712802648544,0.833515524864197,0.546046614646912,0.143511161208153,0.761146903038025,0.632502794265747,0.205336511135101,0.733333945274353,0.648118913173676,0.229706928133965,0.790425300598145,0.567857623100281,0.143511161208153,0.761146903038025,0.632502794265747,0.310053110122681,0.563990592956543,0.76536363363266,0.625897467136383,0.433305025100708,0.648458898067474,0.257043153047562,0.657340228557587,0.708401381969452,-0.136140897870064,0.757287979125977,0.638733446598053,-0.208728075027466,0.782859742641449,0.586142539978027,-0.0594217628240585,0.806098580360413,0.58879029750824,0.103447236120701,0.704618215560913,0.702005445957184,0.310053110122681,0.563990592956543,0.76536363363266,-0.0242114067077637,0.713628351688385,0.700105845928192,0.103447236120701,0.704618215560913,0.702005445957184,-0.136140897870064,0.757287979125977,0.638733446598053,-0.0594217628240585,0.806098580360413,0.58879029750824,0.73720794916153,0.22472882270813,0.637197971343994,0.625897467136383,0.433305025100708,0.648458898067474,0.85932058095932,0.106064178049564,0.500318288803101,0.527648866176605,0.247794568538666,0.812517285346985,0.755359947681427,-0.0326073989272118,0.654498338699341, +0.655100345611572,-0.0740783363580704,0.75190144777298,0.579960405826569,-0.0726286321878433,0.811400532722473,0.387563794851303,0.3086818754673,0.868625164031982,0.655100345611572,-0.0740783363580704,0.75190144777298,0.73720794916153,0.22472882270813,0.637197971343994,0.881500959396362,0.0227612666785717,0.471633195877075,0.755359947681427,-0.0326073989272118,0.654498338699341,0.486402809619904,0.0946260988712311,0.868595480918884,0.387563794851303,0.3086818754673,0.868625164031982,0.579960405826569,-0.0726286321878433,0.811400532722473,0.272845298051834,0.314617305994034,0.909159660339355,0.377433091402054,0.173426494002342,0.909652352333069,0.538105368614197,-0.0783922970294952,0.839224100112915,0.377433091402054,0.173426494002342,0.909652352333069,0.320148795843124,0.283552080392838,0.90393739938736,0.575068295001984,-0.148228332400322,0.804564952850342,0.486402809619904,0.0946260988712311,0.868595480918884,0.575068295001984,-0.148228332400322,0.804564952850342,0.320148795843124,0.283552080392838,0.90393739938736,0.116993464529514,0.410933405160904,0.904127299785614,0.359223783016205,0.0969588831067085,0.928201019763947,0.249607965350151,-0.047825314104557,0.967165172100067,0.359223783016205,0.0969588831067085,0.928201019763947,0.272845298051834,0.314617305994034,0.909159660339355,0.538105368614197,-0.0783922970294952,0.839224100112915,0.0605771765112877,0.29670387506485,0.953046202659607,0.249607965350151,-0.047825314104557,0.967165172100067,0.1746576577425,-0.194435954093933,0.965240478515625,0.206829100847244,0.042377058416605,0.977458834648132,0.29939004778862,0.0987574085593224,0.949006080627441,0.0837863832712173,0.436996281147003,0.895552337169647,0.0887652933597565,0.181576564908028,0.979362308979034,0.195334628224373,-0.321067929267883,0.926692843437195,0.206829100847244,0.042377058416605,0.977458834648132,0.195334628224373,-0.321067929267883,0.926692843437195,0.0887652933597565,0.181576564908028,0.979362308979034,0.1746576577425,-0.194435954093933,0.965240478515625,-0.0353925339877605,0.398872494697571,0.916323065757751, +-0.0187679436057806,0.383020609617233,0.923549056053162,-0.0498861782252789,0.263812780380249,0.963282942771912,-0.116507895290852,0.410639643669128,0.904323399066925,-0.10029511898756,0.408503502607346,0.907229661941528,-0.0353925339877605,0.398872494697571,0.916323065757751,-0.116507895290852,0.410639643669128,0.904323399066925,-0.204336926341057,0.415452033281326,0.886366665363312,-0.10029511898756,0.408503502607346,0.907229661941528,-0.194861397147179,0.430331200361252,0.881387531757355,-0.204336926341057,0.415452033281326,0.886366665363312,-0.215590953826904,0.40918493270874,0.886616110801697,0.0471741370856762,0.445571511983871,0.894002497196198,0.0954413041472435,0.384494304656982,0.918180286884308,0.0991846397519112,0.302877336740494,0.947854220867157,0.214117780327797,0.194863140583038,0.957173764705658,0.0954413041472435,0.384494304656982,0.918180286884308,0.192061573266983,0.325655460357666,0.925775766372681,0.429453462362289,-0.0933390259742737,0.898252427577972,0.192061573266983,0.325655460357666,0.925775766372681,0.29939004778862,0.0987574085593224,0.949006080627441,0.0987894013524055,0.230888366699219,0.967952013015747,-0.0187679436057806,0.383020609617233,0.923549056053162,0.0991846397519112,0.302877336740494,0.947854220867157,-0.18752783536911,0.396434545516968,0.898706257343292,-0.193165183067322,0.399012953042984,0.896368086338043,-0.170063838362694,0.292211562395096,0.941111385822296,-0.194861397147179,0.430331200361252,0.881387531757355,-0.215590953826904,0.40918493270874,0.886616110801697,-0.193165183067322,0.399012953042984,0.896368086338043,0.0616459362208843,-0.316750884056091,0.946503341197968,0.11159535497427,-0.514164924621582,0.850400328636169,0.294784754514694,-0.340628653764725,0.892789959907532,0.294938921928406,-0.334873199462891,0.894913852214813,0.294784754514694,-0.340628653764725,0.892789959907532,0.288958251476288,-0.482811003923416,0.826677978038788,0.470308512449265,-0.547529280185699,0.692113757133484,0.362351417541504,-0.475482046604156,0.801634669303894,0.381415337324142,-0.542632520198822,0.748379588127136, +0.224455267190933,-0.357591331005096,0.906503260135651,0.294938921928406,-0.334873199462891,0.894913852214813,0.290923655033112,-0.451200276613235,0.843671560287476,0.224455267190933,-0.357591331005096,0.906503260135651,0.362351417541504,-0.475482046604156,0.801634669303894,0.321039617061615,-0.401533633470535,0.857731878757477,0.240496903657913,-0.0552168302237988,0.969078063964844,0.182783305644989,0.165355131030083,0.969147980213165,0.146812319755554,0.0130253145471215,0.98907858133316,0.106777712702751,0.154336988925934,0.982231378555298,0.0984918177127838,0.19842541217804,0.97515469789505,0.204431846737862,0.0182346776127815,0.978710889816284,0.182783305644989,0.165355131030083,0.969147980213165,0.0984918177127838,0.19842541217804,0.97515469789505,0.146812319755554,0.0130253145471215,0.98907858133316,0.240496903657913,-0.0552168302237988,0.969078063964844,0.319532662630081,-0.232398837804794,0.918634593486786,0.381828218698502,-0.192163974046707,0.904035449028015,0.390424907207489,-0.598195791244507,0.699807167053223,0.350747585296631,-0.343234419822693,0.871301412582397,0.476447969675064,-0.535488128662109,0.697315990924835,0.447318464517593,-0.638982057571411,0.625785887241364,0.476447969675064,-0.535488128662109,0.697315990924835,0.536342620849609,-0.566439688205719,0.625685632228851,0.470308512449265,-0.547529280185699,0.692113757133484,0.447318464517593,-0.638982057571411,0.625785887241364,0.536342620849609,-0.566439688205719,0.625685632228851,0.293739974498749,-0.161486059427261,0.942145943641663,0.476447969675064,-0.535488128662109,0.697315990924835,0.350747585296631,-0.343234419822693,0.871301412582397,0.293739974498749,-0.161486059427261,0.942145943641663,0.204431846737862,0.0182346776127815,0.978710889816284,0.37608078122139,-0.376599907875061,0.846602380275726,-0.0321397967636585,-0.379517823457718,0.924625992774963,0.0616459362208843,-0.316750884056091,0.946503341197968,0.0383210368454456,-0.132730752229691,0.990410983562469,-0.0321397967636585,-0.379517823457718,0.924625992774963,0.0383210368454456,-0.132730752229691,0.990410983562469, +0.240957483649254,-0.266357153654099,0.933270156383514,0.357314199209213,-0.150065764784813,0.92184966802597,0.240957483649254,-0.266357153654099,0.933270156383514,0.171009436249733,-0.0784017071127892,0.982145011425018,0.242217808961868,-0.188653439283371,0.951703906059265,0.276267230510712,-0.108231507241726,0.954967141151428,0.357314199209213,-0.150065764784813,0.92184966802597,0.00566980335861444,-0.174700856208801,0.984605193138123,0.276267230510712,-0.108231507241726,0.954967141151428,0.143168196082115,-0.310673266649246,0.939672768115997,0.00566980335861444,-0.174700856208801,0.984605193138123,0.143168196082115,-0.310673266649246,0.939672768115997,-0.0363474227488041,-0.441734462976456,0.896409153938293,-0.169357299804688,-0.473162144422531,0.864543557167053,-0.219233587384224,-0.370671451091766,0.902518272399902,-0.0363474227488041,-0.441734462976456,0.896409153938293,-0.126909241080284,-0.310957700014114,0.941912531852722,0.0314857624471188,-0.434105068445206,0.900311827659607,0.0333672314882278,-0.220617383718491,0.974789440631866,0.0314857624471188,-0.434105068445206,0.900311827659607,-0.169357299804688,-0.473162144422531,0.864543557167053,-0.0363474227488041,-0.441734462976456,0.896409153938293,0.0995567888021469,0.158068910241127,0.982396364212036,0.0921158045530319,0.150636166334152,0.984288215637207,0.0224286690354347,0.0487700030207634,0.998558104038239,0.161756560206413,0.0369205363094807,0.986139714717865,0.0921158045530319,0.150636166334152,0.984288215637207,0.141233041882515,0.118398100137711,0.982870697975159,0.244865775108337,-0.0780725851655006,0.966408491134644,0.187596142292023,-0.135644391179085,0.972835123538971,0.161756560206413,0.0369205363094807,0.986139714717865,0.0995567888021469,0.158068910241127,0.982396364212036,0.107151426374912,-0.0107422303408384,0.994184672832489,0.238197445869446,0.106113001704216,0.965402483940125,0.0333672314882278,-0.220617383718491,0.974789440631866,0.193904742598534,-0.255643784999847,0.947125673294067,0.107151426374912,-0.0107422303408384,0.994184672832489, +0.278270453214645,-0.291475147008896,0.915209054946899,0.245437145233154,-0.359061539173126,0.900463938713074,0.10300724953413,-0.258839339017868,0.960412204265594,0.278270453214645,-0.291475147008896,0.915209054946899,0.187596142292023,-0.135644391179085,0.972835123538971,0.345019370317459,-0.19679693877697,0.917732238769531,-0.103896856307983,-0.193920880556107,0.975499868392944,0.023940509185195,-0.175576597452164,0.98417454957962,-0.0561226084828377,-0.0295643620193005,0.997986018657684,0.0752870813012123,-0.354339361190796,0.932081162929535,0.211873054504395,-0.267101377248764,0.94008857011795,0.023940509185195,-0.175576597452164,0.98417454957962,0.245437145233154,-0.359061539173126,0.900463938713074,0.211873054504395,-0.267101377248764,0.94008857011795,0.0752870813012123,-0.354339361190796,0.932081162929535,-0.075280137360096,0.0645792633295059,0.995069026947021,-0.011087330058217,0.169858664274216,0.985406041145325,0.136438995599747,0.0785231664776802,0.98753148317337,-0.0245893653482199,0.158123657107353,0.987113058567047,-0.18891566991806,0.177170291543007,0.96587860584259,-0.141969472169876,0.0915418192744255,0.985629081726074,-0.0962034314870834,0.249013096094131,0.963710129261017,-0.0685457140207291,0.19324816763401,0.978752553462982,-0.227460741996765,0.201054602861404,0.952805638313293,-0.0245893653482199,0.158123657107353,0.987113058567047,-0.0962034314870834,0.249013096094131,0.963710129261017,-0.18891566991806,0.177170291543007,0.96587860584259,-0.227460741996765,0.201054602861404,0.952805638313293,-0.0685457140207291,0.19324816763401,0.978752553462982,-0.011087330058217,0.169858664274216,0.985406041145325,-0.141969472169876,0.0915418192744255,0.985629081726074,-0.0561226084828377,-0.0295643620193005,0.997986018657684,0.0530214086174965,0.0709187760949135,0.996071875095367,-0.0972970277070999,0.216253533959389,0.971477031707764,-0.0944886654615402,0.107248216867447,0.989732086658478,-0.186030298471451,0.122593089938164,0.974865913391113,-0.0344541184604168,0.24917733669281,0.967844724655151,-0.186030298471451,0.122593089938164,0.974865913391113, +-0.209809094667435,0.19437862932682,0.958225965499878,0.0445712506771088,0.0955776274204254,0.994423568248749,0.0306681673973799,0.0857032313942909,0.995848536491394,0.0616091936826706,0.0120958294719458,0.99802702665329,0.0445712506771088,0.0955776274204254,0.994423568248749,-0.0105868661776185,0.0439645834267139,0.998976945877075,0.0760542303323746,0.1807921230793,0.980576276779175,0.050901360809803,0.33620896935463,0.940410792827606,0.05396344140172,0.468706637620926,0.881703972816467,-0.0249356366693974,0.473632723093033,0.880369305610657,0.050901360809803,0.33620896935463,0.940410792827606,0.0760542303323746,0.1807921230793,0.980576276779175,0.121466927230358,0.210624292492867,0.969991326332092,0.168660268187523,0.117426283657551,0.978654563426971,0.123144499957561,0.0805843770503998,0.989111483097076,0.17932653427124,0.0778496786952019,0.980704545974731,0.0306681673973799,0.0857032313942909,0.995848536491394,0.17932653427124,0.0778496786952019,0.980704545974731,0.0616091936826706,0.0120958294719458,0.99802702665329,0.123144499957561,0.0805843770503998,0.989111483097076,0.136438995599747,0.0785231664776802,0.98753148317337,-0.011087330058217,0.169858664274216,0.985406041145325,-0.0648908540606499,0.826115667819977,0.559751629829407,-0.0311659015715122,0.759183526039124,0.650129914283752,-0.0251308865845203,0.857396721839905,0.5140420794487,-0.200093865394592,0.584151804447174,0.786593317985535,-0.222803950309753,0.876215934753418,0.427321761846542,0.0369631312787533,0.766337811946869,0.641373455524445,-0.107926897704601,0.538069605827332,0.835962176322937,-0.233824923634529,0.774148166179657,0.588234961032867,-0.200093865394592,0.584151804447174,0.786593317985535,0.0369631312787533,0.766337811946869,0.641373455524445,-0.0366731323301792,0.93647027015686,0.348824322223663,0.177549853920937,0.839820384979248,0.513008415699005,-0.0366731323301792,0.93647027015686,0.348824322223663,-0.0765166059136391,0.923467397689819,0.375969499349594,-0.0158139653503895,0.957235038280487,0.288878589868546,-0.0213953144848347,0.889397442340851,0.456633627414703, +-0.0765166059136391,0.923467397689819,0.375969499349594,-0.0251308865845203,0.857396721839905,0.5140420794487,-0.107926897704601,0.538069605827332,0.835962176322937,-0.0945523679256439,0.324324071407318,0.941208600997925,-0.0514198020100594,0.175295516848564,0.983172118663788,-0.0972970277070999,0.216253533959389,0.971477031707764,-0.0514198020100594,0.175295516848564,0.983172118663788,-0.0944886654615402,0.107248216867447,0.989732086658478,-0.0214262902736664,0.595738649368286,0.8028923869133,-0.0249356366693974,0.473632723093033,0.880369305610657,0.05396344140172,0.468706637620926,0.881703972816467,-0.0164599251002073,0.673517286777496,0.738988101482391,0.0140959154814482,0.633044362068176,0.773987054824829,-0.0311659015715122,0.759183526039124,0.650129914283752,-0.0214262902736664,0.595738649368286,0.8028923869133,0.0297022331506014,0.568653523921967,0.822040617465973,-0.0164599251002073,0.673517286777496,0.738988101482391,-0.0578498840332031,0.861983418464661,0.503624677658081,0.0352721326053143,0.819829642772675,0.57151997089386,-0.0833474770188332,0.796281099319458,0.599157273769379,-0.0578498840332031,0.861983418464661,0.503624677658081,-0.195249542593956,0.844354391098022,0.498942047357559,-0.0675052776932716,0.898881018161774,0.432961672544479,-0.301093220710754,0.709899008274078,0.636699378490448,-0.302961528301239,0.743799567222595,0.595798909664154,-0.302320837974548,0.651773393154144,0.695552587509155,-0.302961528301239,0.743799567222595,0.595798909664154,-0.293890386819839,0.76807302236557,0.568939447402954,-0.309366345405579,0.696086883544922,0.647885262966156,-0.293890386819839,0.76807302236557,0.568939447402954,-0.321463942527771,0.80355167388916,0.500964522361755,-0.331635117530823,0.770946443080902,0.543745815753937,-0.321463942527771,0.80355167388916,0.500964522361755,-0.312516659498215,0.855161309242249,0.413560539484024,-0.317676484584808,0.823823094367981,0.469464600086212,-0.315922141075134,0.857251405715942,0.40658712387085,-0.317676484584808,0.823823094367981,0.469464600086212,-0.312516659498215,0.855161309242249,0.413560539484024, +-0.280360400676727,0.86076819896698,0.424824714660645,-0.315922141075134,0.857251405715942,0.40658712387085,-0.28417444229126,0.884436368942261,0.370158135890961,-0.144640982151031,0.897597312927246,0.416410893201828,-0.0675052776932716,0.898881018161774,0.432961672544479,-0.280360400676727,0.86076819896698,0.424824714660645,-0.206702321767807,0.180810734629631,0.961551666259766,-0.22087188065052,0.281852751970291,0.933688640594482,-0.21654962003231,0.233944416046143,0.947827100753784,-0.22087188065052,0.281852751970291,0.933688640594482,-0.118112944066525,0.226643905043602,0.966789424419403,-0.198294073343277,0.3648941218853,0.909687638282776,-0.209809094667435,0.19437862932682,0.958225965499878,-0.186030298471451,0.122593089938164,0.974865913391113,-0.206702321767807,0.180810734629631,0.961551666259766,-0.200769975781441,0.497674435377121,0.843807756900787,-0.262550711631775,0.515943586826324,0.81539511680603,-0.239671558141708,0.494082391262054,0.835727214813232,-0.239671558141708,0.494082391262054,0.835727214813232,-0.211268708109856,0.494062811136246,0.843366682529449,-0.200769975781441,0.497674435377121,0.843807756900787,-0.118112944066525,0.226643905043602,0.966789424419403,-0.154365971684456,0.352395623922348,0.923032164573669,-0.198294073343277,0.3648941218853,0.909687638282776,-0.0828673914074898,0.435338646173477,0.896444737911224,-0.179466485977173,0.445418149232864,0.877151250839233,-0.154365971684456,0.352395623922348,0.923032164573669,-0.179466485977173,0.445418149232864,0.877151250839233,-0.158026993274689,0.498767912387848,0.852207720279694,-0.211268708109856,0.494062811136246,0.843366682529449,-0.283676415681839,0.624607741832733,0.727593779563904,-0.262550711631775,0.515943586826324,0.81539511680603,-0.158606812357903,0.606247663497925,0.779299437999725,-0.302320837974548,0.651773393154144,0.695552587509155,-0.283676415681839,0.624607741832733,0.727593779563904,-0.301093220710754,0.709899008274078,0.636699378490448,0.149500042200089,0.802258729934692,0.577953815460205,0.268829077482224,0.82608562707901,0.495291233062744, +0.264530509710312,0.781427919864655,0.565149426460266,0.264530509710312,0.781427919864655,0.565149426460266,0.229706928133965,0.790425300598145,0.567857623100281,0.205336511135101,0.733333945274353,0.648118913173676,0.149500042200089,0.802258729934692,0.577953815460205,0.0311300754547119,0.868121743202209,0.49537405371666,0.123520046472549,0.88137823343277,0.455977082252502,-0.0578498840332031,0.861983418464661,0.503624677658081,0.0311300754547119,0.868121743202209,0.49537405371666,0.0352721326053143,0.819829642772675,0.57151997089386,0.0841712802648544,0.833515524864197,0.546046614646912,0.0538204722106457,0.882174611091614,0.467836707830429,-0.136804059147835,0.836160004138947,0.531150579452515,-0.136804059147835,0.836160004138947,0.531150579452515,-0.176605939865112,0.865476965904236,0.468785434961319,-0.230580165982246,0.827055811882019,0.512651205062866,-0.0594217628240585,0.806098580360413,0.58879029750824,-0.208728075027466,0.782859742641449,0.586142539978027,-0.230580165982246,0.827055811882019,0.512651205062866,0.229706928133965,0.790425300598145,0.567857623100281,0.22693595290184,0.851723372936249,0.472299933433533,0.0841712802648544,0.833515524864197,0.546046614646912,0.698833703994751,0.263904839754105,0.664819955825806,0.625897467136383,0.433305025100708,0.648458898067474,0.310053110122681,0.563990592956543,0.76536363363266,0.310053110122681,0.563990592956543,0.76536363363266,0.103447236120701,0.704618215560913,0.702005445957184,0.571781277656555,0.402737647294998,0.714750587940216,0.103447236120701,0.704618215560913,0.702005445957184,-0.0594217628240585,0.806098580360413,0.58879029750824,0.294198483228683,0.688182532787323,0.663213312625885,0.698833703994751,0.263904839754105,0.664819955825806,0.85932058095932,0.106064178049564,0.500318288803101,0.625897467136383,0.433305025100708,0.648458898067474,0.73720794916153,0.22472882270813,0.637197971343994,0.85932058095932,0.106064178049564,0.500318288803101,0.881500959396362,0.0227612666785717,0.471633195877075,0.836142897605896,-0.0450863316655159,0.546655356884003, +0.655100345611572,-0.0740783363580704,0.75190144777298,0.755359947681427,-0.0326073989272118,0.654498338699341,0.655100345611572,-0.0740783363580704,0.75190144777298,0.670956015586853,-0.264512985944748,0.692712604999542,0.579960405826569,-0.0726286321878433,0.811400532722473,0.836142897605896,-0.0450863316655159,0.546655356884003,0.755359947681427,-0.0326073989272118,0.654498338699341,0.881500959396362,0.0227612666785717,0.471633195877075,0.486402809619904,0.0946260988712311,0.868595480918884,0.579960405826569,-0.0726286321878433,0.811400532722473,0.633164703845978,-0.22199758887291,0.741498053073883,0.377433091402054,0.173426494002342,0.909652352333069,0.575068295001984,-0.148228332400322,0.804564952850342,0.538105368614197,-0.0783922970294952,0.839224100112915,0.575068295001984,-0.148228332400322,0.804564952850342,0.486402809619904,0.0946260988712311,0.868595480918884,0.633164703845978,-0.22199758887291,0.741498053073883,0.359223783016205,0.0969588831067085,0.928201019763947,0.516926825046539,-0.323344171047211,0.792612791061401,0.249607965350151,-0.047825314104557,0.967165172100067,0.516926825046539,-0.323344171047211,0.792612791061401,0.359223783016205,0.0969588831067085,0.928201019763947,0.538105368614197,-0.0783922970294952,0.839224100112915,0.1746576577425,-0.194435954093933,0.965240478515625,0.249607965350151,-0.047825314104557,0.967165172100067,0.349001109600067,-0.466373682022095,0.812830686569214,0.380833387374878,-0.371999353170395,0.846511840820313,0.29939004778862,0.0987574085593224,0.949006080627441,0.206829100847244,0.042377058416605,0.977458834648132,0.380833387374878,-0.371999353170395,0.846511840820313,0.206829100847244,0.042377058416605,0.977458834648132,0.195334628224373,-0.321067929267883,0.926692843437195,0.195334628224373,-0.321067929267883,0.926692843437195,0.1746576577425,-0.194435954093933,0.965240478515625,0.226469725370407,-0.531719088554382,0.81607973575592,-0.0498861782252789,0.263812780380249,0.963282942771912,-0.0187679436057806,0.383020609617233,0.923549056053162,0.0987894013524055,0.230888366699219,0.967952013015747, +-0.0498861782252789,0.263812780380249,0.963282942771912,-0.0475290790200233,0.286867141723633,0.956790566444397,-0.0353925339877605,0.398872494697571,0.916323065757751,-0.116507895290852,0.410639643669128,0.904323399066925,-0.0353925339877605,0.398872494697571,0.916323065757751,-0.0475290790200233,0.286867141723633,0.956790566444397,-0.204336926341057,0.415452033281326,0.886366665363312,-0.116507895290852,0.410639643669128,0.904323399066925,-0.206212520599365,0.414413273334503,0.886418640613556,-0.206212520599365,0.414413273334503,0.886418640613556,-0.215590953826904,0.40918493270874,0.886616110801697,-0.204336926341057,0.415452033281326,0.886366665363312,0.214117780327797,0.194863140583038,0.957173764705658,0.0991846397519112,0.302877336740494,0.947854220867157,0.0954413041472435,0.384494304656982,0.918180286884308,0.192061573266983,0.325655460357666,0.925775766372681,0.429453462362289,-0.0933390259742737,0.898252427577972,0.214117780327797,0.194863140583038,0.957173764705658,0.29939004778862,0.0987574085593224,0.949006080627441,0.380833387374878,-0.371999353170395,0.846511840820313,0.429453462362289,-0.0933390259742737,0.898252427577972,0.214117780327797,0.194863140583038,0.957173764705658,0.0987894013524055,0.230888366699219,0.967952013015747,0.0991846397519112,0.302877336740494,0.947854220867157,-0.193165183067322,0.399012953042984,0.896368086338043,-0.19316354393959,0.399017781019211,0.8963662981987,-0.170063838362694,0.292211562395096,0.941111385822296,-0.19316354393959,0.399017781019211,0.8963662981987,-0.193165183067322,0.399012953042984,0.896368086338043,-0.215590953826904,0.40918493270874,0.886616110801697,0.277465254068375,-0.143271073698998,0.949992835521698,0.0616459362208843,-0.316750884056091,0.946503341197968,0.294784754514694,-0.340628653764725,0.892789959907532,0.294938921928406,-0.334873199462891,0.894913852214813,0.304726809263229,-0.182384088635445,0.934814155101776,0.294784754514694,-0.340628653764725,0.892789959907532,0.515210807323456,-0.472400456666946,0.715119183063507,0.362351417541504,-0.475482046604156,0.801634669303894, +0.470308512449265,-0.547529280185699,0.692113757133484,0.141635119915009,-0.228774756193161,0.963120698928833,0.294938921928406,-0.334873199462891,0.894913852214813,0.224455267190933,-0.357591331005096,0.906503260135651,0.515210807323456,-0.472400456666946,0.715119183063507,0.321039617061615,-0.401533633470535,0.857731878757477,0.362351417541504,-0.475482046604156,0.801634669303894,0.224455267190933,-0.357591331005096,0.906503260135651,0.321039617061615,-0.401533633470535,0.857731878757477,0.110097415745258,-0.252197772264481,0.961392045021057,0.360401719808578,-0.0427653640508652,0.931816339492798,0.182783305644989,0.165355131030083,0.969147980213165,0.240496903657913,-0.0552168302237988,0.969078063964844,0.204431846737862,0.0182346776127815,0.978710889816284,0.0984918177127838,0.19842541217804,0.97515469789505,0.172686040401459,0.21707771718502,0.96075838804245,0.182783305644989,0.165355131030083,0.969147980213165,0.172686040401459,0.21707771718502,0.96075838804245,0.0984918177127838,0.19842541217804,0.97515469789505,0.319532662630081,-0.232398837804794,0.918634593486786,0.484358608722687,-0.396458089351654,0.779883086681366,0.381828218698502,-0.192163974046707,0.904035449028015,0.360401719808578,-0.0427653640508652,0.931816339492798,0.240496903657913,-0.0552168302237988,0.969078063964844,0.381828218698502,-0.192163974046707,0.904035449028015,0.536342620849609,-0.566439688205719,0.625685632228851,0.476447969675064,-0.535488128662109,0.697315990924835,0.453352749347687,-0.562883019447327,0.691110670566559,0.536342620849609,-0.566439688205719,0.625685632228851,0.543717384338379,-0.515437424182892,0.662340879440308,0.470308512449265,-0.547529280185699,0.692113757133484,0.293739974498749,-0.161486059427261,0.942145943641663,0.37608078122139,-0.376599907875061,0.846602380275726,0.476447969675064,-0.535488128662109,0.697315990924835,0.350025534629822,-0.365515172481537,0.86248517036438,0.37608078122139,-0.376599907875061,0.846602380275726,0.204431846737862,0.0182346776127815,0.978710889816284,0.154079109430313,-0.0518250875174999,0.986698389053345, +0.0383210368454456,-0.132730752229691,0.990410983562469,0.0616459362208843,-0.316750884056091,0.946503341197968,0.0383210368454456,-0.132730752229691,0.990410983562469,0.171009436249733,-0.0784017071127892,0.982145011425018,0.240957483649254,-0.266357153654099,0.933270156383514,0.242217808961868,-0.188653439283371,0.951703906059265,0.357314199209213,-0.150065764784813,0.92184966802597,0.171009436249733,-0.0784017071127892,0.982145011425018,0.242217808961868,-0.188653439283371,0.951703906059265,0.225929945707321,-0.386457145214081,0.894207119941711,0.276267230510712,-0.108231507241726,0.954967141151428,0.225929945707321,-0.386457145214081,0.894207119941711,0.143168196082115,-0.310673266649246,0.939672768115997,0.276267230510712,-0.108231507241726,0.954967141151428,-0.0363474227488041,-0.441734462976456,0.896409153938293,0.143168196082115,-0.310673266649246,0.939672768115997,0.113590382039547,-0.504742920398712,0.855763852596283,0.0333672314882278,-0.220617383718491,0.974789440631866,0.0314857624471188,-0.434105068445206,0.900311827659607,0.193904742598534,-0.255643784999847,0.947125673294067,0.0314857624471188,-0.434105068445206,0.900311827659607,-0.0363474227488041,-0.441734462976456,0.896409153938293,0.113590382039547,-0.504742920398712,0.855763852596283,0.141233041882515,0.118398100137711,0.982870697975159,0.0921158045530319,0.150636166334152,0.984288215637207,0.0995567888021469,0.158068910241127,0.982396364212036,0.161756560206413,0.0369205363094807,0.986139714717865,0.141233041882515,0.118398100137711,0.982870697975159,0.244865775108337,-0.0780725851655006,0.966408491134644,0.244865775108337,-0.0780725851655006,0.966408491134644,0.345019370317459,-0.19679693877697,0.917732238769531,0.187596142292023,-0.135644391179085,0.972835123538971,0.268612563610077,-0.0722378119826317,0.960535705089569,0.238197445869446,0.106113001704216,0.965402483940125,0.107151426374912,-0.0107422303408384,0.994184672832489,0.141116693615913,0.130605041980743,0.981340050697327,0.0995567888021469,0.158068910241127,0.982396364212036,0.238197445869446,0.106113001704216,0.965402483940125, +0.268612563610077,-0.0722378119826317,0.960535705089569,0.107151426374912,-0.0107422303408384,0.994184672832489,0.193904742598534,-0.255643784999847,0.947125673294067,0.278270453214645,-0.291475147008896,0.915209054946899,0.370119392871857,-0.292474985122681,0.881742537021637,0.245437145233154,-0.359061539173126,0.900463938713074,0.345019370317459,-0.19679693877697,0.917732238769531,0.457254499197006,-0.254931151866913,0.852014243602753,0.278270453214645,-0.291475147008896,0.915209054946899,0.141391679644585,-0.0835231617093086,0.986423969268799,-0.0561226084828377,-0.0295643620193005,0.997986018657684,0.023940509185195,-0.175576597452164,0.98417454957962,0.023940509185195,-0.175576597452164,0.98417454957962,0.211873054504395,-0.267101377248764,0.94008857011795,0.141391679644585,-0.0835231617093086,0.986423969268799,0.245437145233154,-0.359061539173126,0.900463938713074,0.370119392871857,-0.292474985122681,0.881742537021637,0.211873054504395,-0.267101377248764,0.94008857011795,-0.141969472169876,0.0915418192744255,0.985629081726074,0.0530214086174965,0.0709187760949135,0.996071875095367,-0.0245893653482199,0.158123657107353,0.987113058567047,-0.0685457140207291,0.19324816763401,0.978752553462982,-0.0962034314870834,0.249013096094131,0.963710129261017,0.104236483573914,0.218462377786636,0.970262229442596,-0.0962034314870834,0.249013096094131,0.963710129261017,-0.0245893653482199,0.158123657107353,0.987113058567047,0.104236483573914,0.218462377786636,0.970262229442596,-0.0685457140207291,0.19324816763401,0.978752553462982,-0.0918020531535149,0.0717685595154762,0.993187546730042,-0.011087330058217,0.169858664274216,0.985406041145325,0.141391679644585,-0.0835231617093086,0.986423969268799,0.0530214086174965,0.0709187760949135,0.996071875095367,-0.0561226084828377,-0.0295643620193005,0.997986018657684,-0.186030298471451,0.122593089938164,0.974865913391113,-0.0944886654615402,0.107248216867447,0.989732086658478,-0.206702321767807,0.180810734629631,0.961551666259766,-0.0105868661776185,0.0439645834267139,0.998976945877075, +0.0445712506771088,0.0955776274204254,0.994423568248749,0.0616091936826706,0.0120958294719458,0.99802702665329,0.0481184758245945,0.159732326865196,0.985986888408661,0.0760542303323746,0.1807921230793,0.980576276779175,-0.0105868661776185,0.0439645834267139,0.998976945877075,0.05396344140172,0.468706637620926,0.881703972816467,0.050901360809803,0.33620896935463,0.940410792827606,0.10322343558073,0.314330607652664,0.943684816360474,0.0760542303323746,0.1807921230793,0.980576276779175,0.0481184758245945,0.159732326865196,0.985986888408661,0.121466927230358,0.210624292492867,0.969991326332092,0.10322343558073,0.314330607652664,0.943684816360474,0.050901360809803,0.33620896935463,0.940410792827606,0.121466927230358,0.210624292492867,0.969991326332092,0.123144499957561,0.0805843770503998,0.989111483097076,0.0616091936826706,0.0120958294719458,0.99802702665329,0.17932653427124,0.0778496786952019,0.980704545974731,-0.011087330058217,0.169858664274216,0.985406041145325,-0.0918020531535149,0.0717685595154762,0.993187546730042,0.123144499957561,0.0805843770503998,0.989111483097076,-0.0251308865845203,0.857396721839905,0.5140420794487,-0.0311659015715122,0.759183526039124,0.650129914283752,-0.0286849662661552,0.817149579524994,0.575711369514465,0.0369631312787533,0.766337811946869,0.641373455524445,0.0222943108528852,0.293574810028076,0.955676019191742,-0.200093865394592,0.584151804447174,0.786593317985535,-0.107926897704601,0.538069605827332,0.835962176322937,-0.200093865394592,0.584151804447174,0.786593317985535,-0.0945523679256439,0.324324071407318,0.941208600997925,-0.0366731323301792,0.93647027015686,0.348824322223663,0.0465957298874855,0.940351188182831,0.33699905872345,0.177549853920937,0.839820384979248,0.513008415699005,0.115128502249718,0.46953010559082,0.87537807226181,0.0369631312787533,0.766337811946869,0.641373455524445,0.177549853920937,0.839820384979248,0.513008415699005,-0.0213953144848347,0.889397442340851,0.456633627414703,-0.0158139653503895,0.957235038280487,0.288878589868546,-0.0765166059136391,0.923467397689819,0.375969499349594, +-0.0366731323301792,0.93647027015686,0.348824322223663,-0.0158139653503895,0.957235038280487,0.288878589868546,0.0465957298874855,0.940351188182831,0.33699905872345,-0.0251308865845203,0.857396721839905,0.5140420794487,-0.0286849662661552,0.817149579524994,0.575711369514465,-0.0213953144848347,0.889397442340851,0.456633627414703,-0.0514198020100594,0.175295516848564,0.983172118663788,-0.0945523679256439,0.324324071407318,0.941208600997925,-0.0731688365340233,0.146398484706879,0.986515939235687,-0.0514198020100594,0.175295516848564,0.983172118663788,-0.0532539747655392,0.10844498872757,0.992675006389618,-0.0944886654615402,0.107248216867447,0.989732086658478,-0.0214262902736664,0.595738649368286,0.8028923869133,0.05396344140172,0.468706637620926,0.881703972816467,0.0297022331506014,0.568653523921967,0.822040617465973,0.0297022331506014,0.568653523921967,0.822040617465973,0.0140959154814482,0.633044362068176,0.773987054824829,-0.0164599251002073,0.673517286777496,0.738988101482391,-0.0311659015715122,0.759183526039124,0.650129914283752,0.0140959154814482,0.633044362068176,0.773987054824829,0.00401627318933606,0.727492332458496,0.686103940010071,-0.0578498840332031,0.861983418464661,0.503624677658081,-0.0675052776932716,0.898881018161774,0.432961672544479,0.0311300754547119,0.868121743202209,0.49537405371666,-0.302961528301239,0.743799567222595,0.595798909664154,-0.301093220710754,0.709899008274078,0.636699378490448,-0.261051893234253,0.760264217853546,0.594852983951569,-0.302961528301239,0.743799567222595,0.595798909664154,-0.321463942527771,0.80355167388916,0.500964522361755,-0.293890386819839,0.76807302236557,0.568939447402954,-0.321463942527771,0.80355167388916,0.500964522361755,-0.346914261579514,0.828899025917053,0.438835710287094,-0.312516659498215,0.855161309242249,0.413560539484024,-0.315922141075134,0.857251405715942,0.40658712387085,-0.312516659498215,0.855161309242249,0.413560539484024,-0.342901080846787,0.867042183876038,0.361464619636536,-0.28417444229126,0.884436368942261,0.370158135890961,-0.315922141075134,0.857251405715942,0.40658712387085, +-0.327250510454178,0.87444019317627,0.358135879039764,-0.28417444229126,0.884436368942261,0.370158135890961,-0.319101423025131,0.869186699390411,0.377741515636444,-0.280360400676727,0.86076819896698,0.424824714660645,-0.0675052776932716,0.898881018161774,0.432961672544479,-0.144640982151031,0.897597312927246,0.416410893201828,0.0512110628187656,0.906310975551605,0.419497102499008,-0.144640982151031,0.897597312927246,0.416410893201828,-0.280360400676727,0.86076819896698,0.424824714660645,-0.319101423025131,0.869186699390411,0.377741515636444,-0.22087188065052,0.281852751970291,0.933688640594482,-0.206702321767807,0.180810734629631,0.961551666259766,-0.118112944066525,0.226643905043602,0.966789424419403,-0.200769975781441,0.497674435377121,0.843807756900787,-0.177574038505554,0.524432301521301,0.832729279994965,-0.262550711631775,0.515943586826324,0.81539511680603,-0.200769975781441,0.497674435377121,0.843807756900787,-0.211268708109856,0.494062811136246,0.843366682529449,-0.158026993274689,0.498767912387848,0.852207720279694,-0.154365971684456,0.352395623922348,0.923032164573669,-0.118112944066525,0.226643905043602,0.966789424419403,-0.117864608764648,0.344730883836746,0.931272447109222,-0.179466485977173,0.445418149232864,0.877151250839233,-0.0828673914074898,0.435338646173477,0.896444737911224,-0.158026993274689,0.498767912387848,0.852207720279694,-0.154365971684456,0.352395623922348,0.923032164573669,-0.117864608764648,0.344730883836746,0.931272447109222,-0.0828673914074898,0.435338646173477,0.896444737911224,-0.262550711631775,0.515943586826324,0.81539511680603,-0.177574038505554,0.524432301521301,0.832729279994965,-0.158606812357903,0.606247663497925,0.779299437999725,-0.283676415681839,0.624607741832733,0.727593779563904,-0.158606812357903,0.606247663497925,0.779299437999725,-0.227422684431076,0.698331832885742,0.678683578968048,-0.227422684431076,0.698331832885742,0.678683578968048,-0.301093220710754,0.709899008274078,0.636699378490448,-0.283676415681839,0.624607741832733,0.727593779563904,0.268829077482224,0.82608562707901,0.495291233062744, +0.149500042200089,0.802258729934692,0.577953815460205,0.123520046472549,0.88137823343277,0.455977082252502,0.268829077482224,0.82608562707901,0.495291233062744,0.305301517248154,0.803956031799316,0.510338604450226,0.264530509710312,0.781427919864655,0.565149426460266,0.264530509710312,0.781427919864655,0.565149426460266,0.305301517248154,0.803956031799316,0.510338604450226,0.229706928133965,0.790425300598145,0.567857623100281,0.123520046472549,0.88137823343277,0.455977082252502,0.0311300754547119,0.868121743202209,0.49537405371666,-0.0675052776932716,0.898881018161774,0.432961672544479,0.22693595290184,0.851723372936249,0.472299933433533,0.0538204722106457,0.882174611091614,0.467836707830429,0.0841712802648544,0.833515524864197,0.546046614646912,0.0538204722106457,0.882174611091614,0.467836707830429,-0.176605939865112,0.865476965904236,0.468785434961319,-0.136804059147835,0.836160004138947,0.531150579452515,-0.176605939865112,0.865476965904236,0.468785434961319,-0.160103425383568,0.850501298904419,0.501013398170471,-0.230580165982246,0.827055811882019,0.512651205062866,-0.0594217628240585,0.806098580360413,0.58879029750824,-0.230580165982246,0.827055811882019,0.512651205062866,-0.160103425383568,0.850501298904419,0.501013398170471,0.229706928133965,0.790425300598145,0.567857623100281,0.305301517248154,0.803956031799316,0.510338604450226,0.22693595290184,0.851723372936249,0.472299933433533,0.571781277656555,0.402737647294998,0.714750587940216,0.698833703994751,0.263904839754105,0.664819955825806,0.310053110122681,0.563990592956543,0.76536363363266,0.103447236120701,0.704618215560913,0.702005445957184,0.294198483228683,0.688182532787323,0.663213312625885,0.571781277656555,0.402737647294998,0.714750587940216,0.319304376840591,0.691225290298462,0.648268580436707,0.294198483228683,0.688182532787323,0.663213312625885,-0.0594217628240585,0.806098580360413,0.58879029750824,0.698833703994751,0.263904839754105,0.664819955825806,0.821823179721832,0.0141316317021847,0.569567322731018,0.85932058095932,0.106064178049564,0.500318288803101, +0.86904376745224,-0.00911622773855925,0.494651079177856,0.881500959396362,0.0227612666785717,0.471633195877075,0.85932058095932,0.106064178049564,0.500318288803101,0.655100345611572,-0.0740783363580704,0.75190144777298,0.836142897605896,-0.0450863316655159,0.546655356884003,0.74127721786499,-0.131764367222786,0.658138334751129,0.655100345611572,-0.0740783363580704,0.75190144777298,0.74127721786499,-0.131764367222786,0.658138334751129,0.670956015586853,-0.264512985944748,0.692712604999542,0.670956015586853,-0.264512985944748,0.692712604999542,0.633164703845978,-0.22199758887291,0.741498053073883,0.579960405826569,-0.0726286321878433,0.811400532722473,0.836142897605896,-0.0450863316655159,0.546655356884003,0.881500959396362,0.0227612666785717,0.471633195877075,0.86904376745224,-0.00911622773855925,0.494651079177856,0.625141739845276,-0.343693524599075,0.700765550136566,0.538105368614197,-0.0783922970294952,0.839224100112915,0.575068295001984,-0.148228332400322,0.804564952850342,0.667778253555298,-0.327114015817642,0.668631792068481,0.575068295001984,-0.148228332400322,0.804564952850342,0.633164703845978,-0.22199758887291,0.741498053073883,0.349001109600067,-0.466373682022095,0.812830686569214,0.249607965350151,-0.047825314104557,0.967165172100067,0.516926825046539,-0.323344171047211,0.792612791061401,0.516926825046539,-0.323344171047211,0.792612791061401,0.538105368614197,-0.0783922970294952,0.839224100112915,0.625141739845276,-0.343693524599075,0.700765550136566,0.226469725370407,-0.531719088554382,0.81607973575592,0.1746576577425,-0.194435954093933,0.965240478515625,0.349001109600067,-0.466373682022095,0.812830686569214,0.380833387374878,-0.371999353170395,0.846511840820313,0.195334628224373,-0.321067929267883,0.926692843437195,0.274013012647629,-0.593513906002045,0.756741642951965,0.274013012647629,-0.593513906002045,0.756741642951965,0.195334628224373,-0.321067929267883,0.926692843437195,0.226469725370407,-0.531719088554382,0.81607973575592,0.0987894013524055,0.230888366699219,0.967952013015747,0.0460068061947823,0.211392968893051,0.976317703723907, +-0.0498861782252789,0.263812780380249,0.963282942771912,-0.0475290790200233,0.286867141723633,0.956790566444397,-0.0498861782252789,0.263812780380249,0.963282942771912,0.0460068061947823,0.211392968893051,0.976317703723907,-0.0396724566817284,0.250813543796539,0.967222094535828,-0.116507895290852,0.410639643669128,0.904323399066925,-0.0475290790200233,0.286867141723633,0.956790566444397,-0.0396724566817284,0.250813543796539,0.967222094535828,-0.206212520599365,0.414413273334503,0.886418640613556,-0.116507895290852,0.410639643669128,0.904323399066925,-0.215590953826904,0.40918493270874,0.886616110801697,-0.206212520599365,0.414413273334503,0.886418640613556,-0.19316354393959,0.399017781019211,0.8963662981987,0.429453462362289,-0.0933390259742737,0.898252427577972,0.508974194526672,-0.299754649400711,0.806902885437012,0.214117780327797,0.194863140583038,0.957173764705658,0.429453462362289,-0.0933390259742737,0.898252427577972,0.380833387374878,-0.371999353170395,0.846511840820313,0.579841077327728,-0.48977255821228,0.651081383228302,0.0987894013524055,0.230888366699219,0.967952013015747,0.214117780327797,0.194863140583038,0.957173764705658,0.0460068061947823,0.211392968893051,0.976317703723907,-0.19316354393959,0.399017781019211,0.8963662981987,-0.144715830683708,0.351668685674667,0.92487096786499,-0.170063838362694,0.292211562395096,0.941111385822296,0.277465254068375,-0.143271073698998,0.949992835521698,0.154079109430313,-0.0518250875174999,0.986698389053345,0.0616459362208843,-0.316750884056091,0.946503341197968,0.277465254068375,-0.143271073698998,0.949992835521698,0.294784754514694,-0.340628653764725,0.892789959907532,0.304726809263229,-0.182384088635445,0.934814155101776,0.141635119915009,-0.228774756193161,0.963120698928833,0.304726809263229,-0.182384088635445,0.934814155101776,0.294938921928406,-0.334873199462891,0.894913852214813,0.515210807323456,-0.472400456666946,0.715119183063507,0.470308512449265,-0.547529280185699,0.692113757133484,0.543717384338379,-0.515437424182892,0.662340879440308,0.224455267190933,-0.357591331005096,0.906503260135651, +0.110097415745258,-0.252197772264481,0.961392045021057,0.141635119915009,-0.228774756193161,0.963120698928833,0.538480341434479,-0.374638617038727,0.754774570465088,0.321039617061615,-0.401533633470535,0.857731878757477,0.515210807323456,-0.472400456666946,0.715119183063507,0.341279804706573,-0.261055886745453,0.902982711791992,0.110097415745258,-0.252197772264481,0.961392045021057,0.321039617061615,-0.401533633470535,0.857731878757477,0.351388424634933,0.132021114230156,0.926874577999115,0.182783305644989,0.165355131030083,0.969147980213165,0.360401719808578,-0.0427653640508652,0.931816339492798,0.204431846737862,0.0182346776127815,0.978710889816284,0.172686040401459,0.21707771718502,0.96075838804245,0.312040716409683,-0.169968754053116,0.934741199016571,0.238296136260033,0.301764577627182,0.923121333122253,0.172686040401459,0.21707771718502,0.96075838804245,0.182783305644989,0.165355131030083,0.969147980213165,0.470881640911102,-0.241609305143356,0.848466455936432,0.381828218698502,-0.192163974046707,0.904035449028015,0.484358608722687,-0.396458089351654,0.779883086681366,0.360401719808578,-0.0427653640508652,0.931816339492798,0.381828218698502,-0.192163974046707,0.904035449028015,0.469417363405228,-0.169011503458023,0.86665004491806,0.476447969675064,-0.535488128662109,0.697315990924835,0.37608078122139,-0.376599907875061,0.846602380275726,0.453352749347687,-0.562883019447327,0.691110670566559,0.491221815347672,-0.560847938060761,0.666446208953857,0.536342620849609,-0.566439688205719,0.625685632228851,0.453352749347687,-0.562883019447327,0.691110670566559,0.536342620849609,-0.566439688205719,0.625685632228851,0.509695708751678,-0.514814496040344,0.689330220222473,0.543717384338379,-0.515437424182892,0.662340879440308,0.350025534629822,-0.365515172481537,0.86248517036438,0.453352749347687,-0.562883019447327,0.691110670566559,0.37608078122139,-0.376599907875061,0.846602380275726,0.312040716409683,-0.169968754053116,0.934741199016571,0.350025534629822,-0.365515172481537,0.86248517036438,0.204431846737862,0.0182346776127815,0.978710889816284, +0.125377282500267,-0.0810925662517548,0.988789260387421,0.0383210368454456,-0.132730752229691,0.990410983562469,0.154079109430313,-0.0518250875174999,0.986698389053345,0.0383210368454456,-0.132730752229691,0.990410983562469,0.125377282500267,-0.0810925662517548,0.988789260387421,0.171009436249733,-0.0784017071127892,0.982145011425018,0.125377282500267,-0.0810925662517548,0.988789260387421,0.242217808961868,-0.188653439283371,0.951703906059265,0.171009436249733,-0.0784017071127892,0.982145011425018,0.225929945707321,-0.386457145214081,0.894207119941711,0.242217808961868,-0.188653439283371,0.951703906059265,0.207866907119751,-0.342667102813721,0.916171610355377,0.225929945707321,-0.386457145214081,0.894207119941711,0.113590382039547,-0.504742920398712,0.855763852596283,0.143168196082115,-0.310673266649246,0.939672768115997,0.0314857624471188,-0.434105068445206,0.900311827659607,0.202385470271111,-0.452852576971054,0.868311285972595,0.193904742598534,-0.255643784999847,0.947125673294067,0.202385470271111,-0.452852576971054,0.868311285972595,0.0314857624471188,-0.434105068445206,0.900311827659607,0.113590382039547,-0.504742920398712,0.855763852596283,0.141116693615913,0.130605041980743,0.981340050697327,0.141233041882515,0.118398100137711,0.982870697975159,0.0995567888021469,0.158068910241127,0.982396364212036,0.14206662774086,-0.00240575941279531,0.989854156970978,0.244865775108337,-0.0780725851655006,0.966408491134644,0.141233041882515,0.118398100137711,0.982870697975159,0.244865775108337,-0.0780725851655006,0.966408491134644,0.227408066391945,-0.122943341732025,0.966007471084595,0.345019370317459,-0.19679693877697,0.917732238769531,0.338836014270782,-0.113080225884914,0.93402510881424,0.238197445869446,0.106113001704216,0.965402483940125,0.268612563610077,-0.0722378119826317,0.960535705089569,0.190370127558708,0.0261179655790329,0.981364846229553,0.141116693615913,0.130605041980743,0.981340050697327,0.238197445869446,0.106113001704216,0.965402483940125,0.330106168985367,-0.30880731344223,0.892002165317535,0.268612563610077,-0.0722378119826317,0.960535705089569, +0.193904742598534,-0.255643784999847,0.947125673294067,0.457254499197006,-0.254931151866913,0.852014243602753,0.370119392871857,-0.292474985122681,0.881742537021637,0.278270453214645,-0.291475147008896,0.915209054946899,0.345019370317459,-0.19679693877697,0.917732238769531,0.524641633033752,-0.158042415976524,0.836524724960327,0.457254499197006,-0.254931151866913,0.852014243602753,0.359436810016632,-0.160319536924362,0.919294655323029,0.141391679644585,-0.0835231617093086,0.986423969268799,0.211873054504395,-0.267101377248764,0.94008857011795,0.359436810016632,-0.160319536924362,0.919294655323029,0.211873054504395,-0.267101377248764,0.94008857011795,0.370119392871857,-0.292474985122681,0.881742537021637,-0.0245893653482199,0.158123657107353,0.987113058567047,0.0530214086174965,0.0709187760949135,0.996071875095367,0.104236483573914,0.218462377786636,0.970262229442596,-0.0685457140207291,0.19324816763401,0.978752553462982,0.104236483573914,0.218462377786636,0.970262229442596,0.066582590341568,0.208219885826111,0.975813090801239,-0.0685457140207291,0.19324816763401,0.978752553462982,-0.128358438611031,0.0388894304633141,0.990964889526367,-0.0918020531535149,0.0717685595154762,0.993187546730042,0.259693384170532,0.0318061858415604,0.965167164802551,0.0530214086174965,0.0709187760949135,0.996071875095367,0.141391679644585,-0.0835231617093086,0.986423969268799,-0.0944886654615402,0.107248216867447,0.989732086658478,-0.118112944066525,0.226643905043602,0.966789424419403,-0.206702321767807,0.180810734629631,0.961551666259766,-0.0105868661776185,0.0439645834267139,0.998976945877075,0.0616091936826706,0.0120958294719458,0.99802702665329,0.123144499957561,0.0805843770503998,0.989111483097076,0.0481184758245945,0.159732326865196,0.985986888408661,-0.0105868661776185,0.0439645834267139,0.998976945877075,-0.102870747447014,0.0613149702548981,0.99280309677124,0.0657772421836853,0.450890600681305,0.890152156352997,0.05396344140172,0.468706637620926,0.881703972816467,0.10322343558073,0.314330607652664,0.943684816360474,0.0756721943616867,0.198664948344231,0.977141678333282, +0.121466927230358,0.210624292492867,0.969991326332092,0.0481184758245945,0.159732326865196,0.985986888408661,0.117201961576939,0.209685459733009,0.9707190990448,0.10322343558073,0.314330607652664,0.943684816360474,0.121466927230358,0.210624292492867,0.969991326332092,-0.0918020531535149,0.0717685595154762,0.993187546730042,-0.0105868661776185,0.0439645834267139,0.998976945877075,0.123144499957561,0.0805843770503998,0.989111483097076,-0.0311659015715122,0.759183526039124,0.650129914283752,0.00401627318933606,0.727492332458496,0.686103940010071,-0.0286849662661552,0.817149579524994,0.575711369514465,0.115128502249718,0.46953010559082,0.87537807226181,0.0222943108528852,0.293574810028076,0.955676019191742,0.0369631312787533,0.766337811946869,0.641373455524445,-0.0731688365340233,0.146398484706879,0.986515939235687,-0.200093865394592,0.584151804447174,0.786593317985535,0.0222943108528852,0.293574810028076,0.955676019191742,-0.0731688365340233,0.146398484706879,0.986515939235687,-0.0945523679256439,0.324324071407318,0.941208600997925,-0.200093865394592,0.584151804447174,0.786593317985535,0.0465957298874855,0.940351188182831,0.33699905872345,0.0547534115612507,0.721443355083466,0.690305292606354,0.177549853920937,0.839820384979248,0.513008415699005,0.115128502249718,0.46953010559082,0.87537807226181,0.177549853920937,0.839820384979248,0.513008415699005,0.0547534115612507,0.721443355083466,0.690305292606354,-0.0158139653503895,0.957235038280487,0.288878589868546,-0.0213953144848347,0.889397442340851,0.456633627414703,0.00939250458031893,0.934576094150543,0.355639100074768,0.0465957298874855,0.940351188182831,0.33699905872345,-0.0158139653503895,0.957235038280487,0.288878589868546,0.0112745547667146,0.966052532196045,0.258099287748337,-0.0213953144848347,0.889397442340851,0.456633627414703,-0.0286849662661552,0.817149579524994,0.575711369514465,-0.00204519764520228,0.810361266136169,0.585926830768585,-0.0731688365340233,0.146398484706879,0.986515939235687,-0.0532539747655392,0.10844498872757,0.992675006389618,-0.0514198020100594,0.175295516848564,0.983172118663788, +-0.0944886654615402,0.107248216867447,0.989732086658478,-0.0532539747655392,0.10844498872757,0.992675006389618,-0.118112944066525,0.226643905043602,0.966789424419403,0.0657772421836853,0.450890600681305,0.890152156352997,0.0297022331506014,0.568653523921967,0.822040617465973,0.05396344140172,0.468706637620926,0.881703972816467,0.0140959154814482,0.633044362068176,0.773987054824829,0.0297022331506014,0.568653523921967,0.822040617465973,0.045506376773119,0.519245266914368,0.853412806987762,0.121039420366287,0.635125458240509,0.762866258621216,0.00401627318933606,0.727492332458496,0.686103940010071,0.0140959154814482,0.633044362068176,0.773987054824829,-0.227422684431076,0.698331832885742,0.678683578968048,-0.261051893234253,0.760264217853546,0.594852983951569,-0.301093220710754,0.709899008274078,0.636699378490448,-0.302961528301239,0.743799567222595,0.595798909664154,-0.261051893234253,0.760264217853546,0.594852983951569,-0.323049247264862,0.790066599845886,0.520993113517761,-0.323049247264862,0.790066599845886,0.520993113517761,-0.321463942527771,0.80355167388916,0.500964522361755,-0.302961528301239,0.743799567222595,0.595798909664154,-0.321463942527771,0.80355167388916,0.500964522361755,-0.388793081045151,0.802856028079987,0.451953560113907,-0.346914261579514,0.828899025917053,0.438835710287094,-0.361561417579651,0.841005206108093,0.4024718105793,-0.312516659498215,0.855161309242249,0.413560539484024,-0.346914261579514,0.828899025917053,0.438835710287094,-0.342901080846787,0.867042183876038,0.361464619636536,-0.312516659498215,0.855161309242249,0.413560539484024,-0.361561417579651,0.841005206108093,0.4024718105793,-0.342901080846787,0.867042183876038,0.361464619636536,-0.327250510454178,0.87444019317627,0.358135879039764,-0.315922141075134,0.857251405715942,0.40658712387085,-0.327250510454178,0.87444019317627,0.358135879039764,-0.267341136932373,0.896661520004272,0.35288342833519,-0.28417444229126,0.884436368942261,0.370158135890961,-0.288142174482346,0.889558255672455,0.354485601186752,-0.319101423025131,0.869186699390411,0.377741515636444, +-0.28417444229126,0.884436368942261,0.370158135890961,0.190814599394798,0.86520129442215,0.463698595762253,0.0512110628187656,0.906310975551605,0.419497102499008,-0.144640982151031,0.897597312927246,0.416410893201828,-0.0675052776932716,0.898881018161774,0.432961672544479,0.0512110628187656,0.906310975551605,0.419497102499008,0.123520046472549,0.88137823343277,0.455977082252502,-0.144640982151031,0.897597312927246,0.416410893201828,-0.319101423025131,0.869186699390411,0.377741515636444,-0.28252387046814,0.886219918727875,0.367143511772156,-0.177574038505554,0.524432301521301,0.832729279994965,-0.200769975781441,0.497674435377121,0.843807756900787,-0.111864432692528,0.545822441577911,0.830399930477142,-0.111864432692528,0.545822441577911,0.830399930477142,-0.200769975781441,0.497674435377121,0.843807756900787,-0.158026993274689,0.498767912387848,0.852207720279694,-0.118112944066525,0.226643905043602,0.966789424419403,-0.167187631130219,0.224380508065224,0.960052907466888,-0.117864608764648,0.344730883836746,0.931272447109222,-0.0828673914074898,0.435338646173477,0.896444737911224,-0.0295670256018639,0.492189437150955,0.86998575925827,-0.158026993274689,0.498767912387848,0.852207720279694,-0.117864608764648,0.344730883836746,0.931272447109222,-0.010741226375103,0.421107977628708,0.906946837902069,-0.0828673914074898,0.435338646173477,0.896444737911224,-0.158606812357903,0.606247663497925,0.779299437999725,-0.177574038505554,0.524432301521301,0.832729279994965,-0.111864432692528,0.545822441577911,0.830399930477142,-0.158606812357903,0.606247663497925,0.779299437999725,-0.149838164448738,0.6593017578125,0.736796855926514,-0.227422684431076,0.698331832885742,0.678683578968048,0.190814599394798,0.86520129442215,0.463698595762253,0.268829077482224,0.82608562707901,0.495291233062744,0.123520046472549,0.88137823343277,0.455977082252502,0.305301517248154,0.803956031799316,0.510338604450226,0.268829077482224,0.82608562707901,0.495291233062744,0.319999933242798,0.824891209602356,0.465998411178589,0.0538204722106457,0.882174611091614,0.467836707830429, +0.22693595290184,0.851723372936249,0.472299933433533,0.196796029806137,0.887250900268555,0.417201548814774,-0.176605939865112,0.865476965904236,0.468785434961319,0.0538204722106457,0.882174611091614,0.467836707830429,-0.0595025457441807,0.905492722988129,0.420169323682785,-0.073917917907238,0.86688894033432,0.492990553379059,-0.160103425383568,0.850501298904419,0.501013398170471,-0.176605939865112,0.865476965904236,0.468785434961319,-0.0594217628240585,0.806098580360413,0.58879029750824,-0.160103425383568,0.850501298904419,0.501013398170471,0.159882545471191,0.811274290084839,0.562380194664001,0.305301517248154,0.803956031799316,0.510338604450226,0.29393744468689,0.845030069351196,0.446682035923004,0.22693595290184,0.851723372936249,0.472299933433533,0.571781277656555,0.402737647294998,0.714750587940216,0.821823179721832,0.0141316317021847,0.569567322731018,0.698833703994751,0.263904839754105,0.664819955825806,0.294198483228683,0.688182532787323,0.663213312625885,0.681636214256287,0.386375278234482,0.621358335018158,0.571781277656555,0.402737647294998,0.714750587940216,0.319304376840591,0.691225290298462,0.648268580436707,0.681636214256287,0.386375278234482,0.621358335018158,0.294198483228683,0.688182532787323,0.663213312625885,0.159882545471191,0.811274290084839,0.562380194664001,0.319304376840591,0.691225290298462,0.648268580436707,-0.0594217628240585,0.806098580360413,0.58879029750824,0.86904376745224,-0.00911622773855925,0.494651079177856,0.85932058095932,0.106064178049564,0.500318288803101,0.821823179721832,0.0141316317021847,0.569567322731018,0.788499474525452,0.0463692955672741,0.613284945487976,0.74127721786499,-0.131764367222786,0.658138334751129,0.836142897605896,-0.0450863316655159,0.546655356884003,0.711509823799133,-0.188614770770073,0.676888525485992,0.670956015586853,-0.264512985944748,0.692712604999542,0.74127721786499,-0.131764367222786,0.658138334751129,0.633164703845978,-0.22199758887291,0.741498053073883,0.670956015586853,-0.264512985944748,0.692712604999542,0.667778253555298,-0.327114015817642,0.668631792068481, +0.836142897605896,-0.0450863316655159,0.546655356884003,0.86904376745224,-0.00911622773855925,0.494651079177856,0.816521406173706,0.0584375895559788,0.574349820613861,0.667778253555298,-0.327114015817642,0.668631792068481,0.625141739845276,-0.343693524599075,0.700765550136566,0.575068295001984,-0.148228332400322,0.804564952850342,0.516926825046539,-0.323344171047211,0.792612791061401,0.492316842079163,-0.416996002197266,0.764027714729309,0.349001109600067,-0.466373682022095,0.812830686569214,0.625141739845276,-0.343693524599075,0.700765550136566,0.632216513156891,-0.348908185958862,0.691784083843231,0.516926825046539,-0.323344171047211,0.792612791061401,0.226469725370407,-0.531719088554382,0.81607973575592,0.349001109600067,-0.466373682022095,0.812830686569214,0.293579995632172,-0.598074555397034,0.745732843875885,0.441819697618485,-0.610599756240845,0.657239019870758,0.380833387374878,-0.371999353170395,0.846511840820313,0.274013012647629,-0.593513906002045,0.756741642951965,0.274013012647629,-0.593513906002045,0.756741642951965,0.226469725370407,-0.531719088554382,0.81607973575592,0.293579995632172,-0.598074555397034,0.745732843875885,0.192994356155396,-0.0209497734904289,0.980976164340973,-0.0475290790200233,0.286867141723633,0.956790566444397,0.0460068061947823,0.211392968893051,0.976317703723907,-0.0396724566817284,0.250813543796539,0.967222094535828,-0.0475290790200233,0.286867141723633,0.956790566444397,0.192994356155396,-0.0209497734904289,0.980976164340973,-0.206212520599365,0.414413273334503,0.886418640613556,-0.0396724566817284,0.250813543796539,0.967222094535828,-0.144715830683708,0.351668685674667,0.92487096786499,-0.144715830683708,0.351668685674667,0.92487096786499,-0.19316354393959,0.399017781019211,0.8963662981987,-0.206212520599365,0.414413273334503,0.886418640613556,0.508974194526672,-0.299754649400711,0.806902885437012,0.429453462362289,-0.0933390259742737,0.898252427577972,0.579841077327728,-0.48977255821228,0.651081383228302,0.214117780327797,0.194863140583038,0.957173764705658,0.508974194526672,-0.299754649400711,0.806902885437012, +0.192994356155396,-0.0209497734904289,0.980976164340973,0.441819697618485,-0.610599756240845,0.657239019870758,0.579841077327728,-0.48977255821228,0.651081383228302,0.380833387374878,-0.371999353170395,0.846511840820313,0.192994356155396,-0.0209497734904289,0.980976164340973,0.0460068061947823,0.211392968893051,0.976317703723907,0.214117780327797,0.194863140583038,0.957173764705658,-0.144715830683708,0.351668685674667,0.92487096786499,0.085183173418045,-0.0245090182870626,0.996063768863678,-0.170063838362694,0.292211562395096,0.941111385822296,0.280864298343658,-0.0524371638894081,0.958313882350922,0.154079109430313,-0.0518250875174999,0.986698389053345,0.277465254068375,-0.143271073698998,0.949992835521698,0.280864298343658,-0.0524371638894081,0.958313882350922,0.277465254068375,-0.143271073698998,0.949992835521698,0.304726809263229,-0.182384088635445,0.934814155101776,0.185323014855385,-0.134073868393898,0.973488330841064,0.304726809263229,-0.182384088635445,0.934814155101776,0.141635119915009,-0.228774756193161,0.963120698928833,0.548263430595398,-0.449575424194336,0.705187201499939,0.515210807323456,-0.472400456666946,0.715119183063507,0.543717384338379,-0.515437424182892,0.662340879440308,0.0651161596179008,-0.123993672430515,0.990144073963165,0.141635119915009,-0.228774756193161,0.963120698928833,0.110097415745258,-0.252197772264481,0.961392045021057,0.538480341434479,-0.374638617038727,0.754774570465088,0.341279804706573,-0.261055886745453,0.902982711791992,0.321039617061615,-0.401533633470535,0.857731878757477,0.515210807323456,-0.472400456666946,0.715119183063507,0.535665512084961,-0.399341583251953,0.744035363197327,0.538480341434479,-0.374638617038727,0.754774570465088,0.110097415745258,-0.252197772264481,0.961392045021057,0.341279804706573,-0.261055886745453,0.902982711791992,0.172259241342545,-0.0737808346748352,0.982284605503082,0.351388424634933,0.132021114230156,0.926874577999115,0.238296136260033,0.301764577627182,0.923121333122253,0.182783305644989,0.165355131030083,0.969147980213165,0.360401719808578,-0.0427653640508652,0.931816339492798, +0.493319451808929,-0.0645067766308784,0.86745297908783,0.351388424634933,0.132021114230156,0.926874577999115,0.312040716409683,-0.169968754053116,0.934741199016571,0.172686040401459,0.21707771718502,0.96075838804245,0.31482794880867,-0.0679018646478653,0.946716725826263,0.238296136260033,0.301764577627182,0.923121333122253,0.34716522693634,0.0807160884141922,0.934323906898499,0.172686040401459,0.21707771718502,0.96075838804245,0.470881640911102,-0.241609305143356,0.848466455936432,0.469417363405228,-0.169011503458023,0.86665004491806,0.381828218698502,-0.192163974046707,0.904035449028015,0.484358608722687,-0.396458089351654,0.779883086681366,0.521891057491302,-0.326715558767319,0.787963509559631,0.470881640911102,-0.241609305143356,0.848466455936432,0.360401719808578,-0.0427653640508652,0.931816339492798,0.469417363405228,-0.169011503458023,0.86665004491806,0.493319451808929,-0.0645067766308784,0.86745297908783,0.536342620849609,-0.566439688205719,0.625685632228851,0.491221815347672,-0.560847938060761,0.666446208953857,0.509695708751678,-0.514814496040344,0.689330220222473,0.435147136449814,-0.491290688514709,0.754506647586823,0.491221815347672,-0.560847938060761,0.666446208953857,0.453352749347687,-0.562883019447327,0.691110670566559,0.548263430595398,-0.449575424194336,0.705187201499939,0.543717384338379,-0.515437424182892,0.662340879440308,0.509695708751678,-0.514814496040344,0.689330220222473,0.435147136449814,-0.491290688514709,0.754506647586823,0.453352749347687,-0.562883019447327,0.691110670566559,0.350025534629822,-0.365515172481537,0.86248517036438,0.350025534629822,-0.365515172481537,0.86248517036438,0.312040716409683,-0.169968754053116,0.934741199016571,0.435147136449814,-0.491290688514709,0.754506647586823,0.206685096025467,-0.104900427162647,0.97276771068573,0.125377282500267,-0.0810925662517548,0.988789260387421,0.154079109430313,-0.0518250875174999,0.986698389053345,0.207866907119751,-0.342667102813721,0.916171610355377,0.242217808961868,-0.188653439283371,0.951703906059265,0.125377282500267,-0.0810925662517548,0.988789260387421, +0.225929945707321,-0.386457145214081,0.894207119941711,0.207866907119751,-0.342667102813721,0.916171610355377,0.231584221124649,-0.515248358249664,0.825159192085266,0.231584221124649,-0.515248358249664,0.825159192085266,0.113590382039547,-0.504742920398712,0.855763852596283,0.225929945707321,-0.386457145214081,0.894207119941711,0.330106168985367,-0.30880731344223,0.892002165317535,0.193904742598534,-0.255643784999847,0.947125673294067,0.202385470271111,-0.452852576971054,0.868311285972595,0.202385470271111,-0.452852576971054,0.868311285972595,0.113590382039547,-0.504742920398712,0.855763852596283,0.231584221124649,-0.515248358249664,0.825159192085266,0.141116693615913,0.130605041980743,0.981340050697327,0.14206662774086,-0.00240575941279531,0.989854156970978,0.141233041882515,0.118398100137711,0.982870697975159,0.14206662774086,-0.00240575941279531,0.989854156970978,0.227408066391945,-0.122943341732025,0.966007471084595,0.244865775108337,-0.0780725851655006,0.966408491134644,0.227408066391945,-0.122943341732025,0.966007471084595,0.279004245996475,-0.109212450683117,0.954059302806854,0.345019370317459,-0.19679693877697,0.917732238769531,0.238197445869446,0.106113001704216,0.965402483940125,0.338836014270782,-0.113080225884914,0.93402510881424,0.331478923559189,0.0326187126338482,0.942898571491241,0.330106168985367,-0.30880731344223,0.892002165317535,0.338836014270782,-0.113080225884914,0.93402510881424,0.268612563610077,-0.0722378119826317,0.960535705089569,0.190370127558708,0.0261179655790329,0.981364846229553,0.0911807343363762,-0.0312887094914913,0.995342671871185,0.141116693615913,0.130605041980743,0.981340050697327,0.238197445869446,0.106113001704216,0.965402483940125,0.331478923559189,0.0326187126338482,0.942898571491241,0.190370127558708,0.0261179655790329,0.981364846229553,0.509767770767212,-0.185980647802353,0.839968979358673,0.370119392871857,-0.292474985122681,0.881742537021637,0.457254499197006,-0.254931151866913,0.852014243602753,0.279004245996475,-0.109212450683117,0.954059302806854,0.524641633033752,-0.158042415976524,0.836524724960327, +0.345019370317459,-0.19679693877697,0.917732238769531,0.509767770767212,-0.185980647802353,0.839968979358673,0.457254499197006,-0.254931151866913,0.852014243602753,0.524641633033752,-0.158042415976524,0.836524724960327,0.359436810016632,-0.160319536924362,0.919294655323029,0.259693384170532,0.0318061858415604,0.965167164802551,0.141391679644585,-0.0835231617093086,0.986423969268799,0.359436810016632,-0.160319536924362,0.919294655323029,0.370119392871857,-0.292474985122681,0.881742537021637,0.509767770767212,-0.185980647802353,0.839968979358673,0.104236483573914,0.218462377786636,0.970262229442596,0.0530214086174965,0.0709187760949135,0.996071875095367,0.259693384170532,0.0318061858415604,0.965167164802551,0.066582590341568,0.208219885826111,0.975813090801239,0.104236483573914,0.218462377786636,0.970262229442596,0.188291743397713,0.210640773177147,0.959258377552032,-0.00504655903205276,0.051175482571125,0.998676896095276,-0.0685457140207291,0.19324816763401,0.978752553462982,0.066582590341568,0.208219885826111,0.975813090801239,-0.0685457140207291,0.19324816763401,0.978752553462982,-0.00504655903205276,0.051175482571125,0.998676896095276,-0.128358438611031,0.0388894304633141,0.990964889526367,-0.128358438611031,0.0388894304633141,0.990964889526367,-0.102870747447014,0.0613149702548981,0.99280309677124,-0.0918020531535149,0.0717685595154762,0.993187546730042,-0.0918020531535149,0.0717685595154762,0.993187546730042,-0.102870747447014,0.0613149702548981,0.99280309677124,-0.0105868661776185,0.0439645834267139,0.998976945877075,-0.0626468360424042,0.0792129710316658,0.994887113571167,0.0481184758245945,0.159732326865196,0.985986888408661,-0.102870747447014,0.0613149702548981,0.99280309677124,0.106319591403008,0.394990116357803,0.912512362003326,0.0657772421836853,0.450890600681305,0.890152156352997,0.10322343558073,0.314330607652664,0.943684816360474,0.117201961576939,0.209685459733009,0.9707190990448,0.121466927230358,0.210624292492867,0.969991326332092,0.0756721943616867,0.198664948344231,0.977141678333282,0.0481184758245945,0.159732326865196,0.985986888408661, +0.00445905653759837,0.195166260004044,0.980759978294373,0.0756721943616867,0.198664948344231,0.977141678333282,0.10322343558073,0.314330607652664,0.943684816360474,0.117201961576939,0.209685459733009,0.9707190990448,0.158996641635895,0.268071621656418,0.950188159942627,-0.00204519764520228,0.810361266136169,0.585926830768585,-0.0286849662661552,0.817149579524994,0.575711369514465,0.00401627318933606,0.727492332458496,0.686103940010071,0.115128502249718,0.46953010559082,0.87537807226181,-0.0702708140015602,0.0109441531822085,0.997467756271362,0.0222943108528852,0.293574810028076,0.955676019191742,-0.0731688365340233,0.146398484706879,0.986515939235687,0.0222943108528852,0.293574810028076,0.955676019191742,-0.0772864669561386,-0.0484077595174313,0.995833039283752,0.0496192313730717,0.782712638378143,0.620401978492737,0.0547534115612507,0.721443355083466,0.690305292606354,0.0465957298874855,0.940351188182831,0.33699905872345,0.0547534115612507,0.721443355083466,0.690305292606354,-0.0715653225779533,0.220032408833504,0.972863852977753,0.115128502249718,0.46953010559082,0.87537807226181,0.0496785417199135,0.860121965408325,0.507663369178772,0.00939250458031893,0.934576094150543,0.355639100074768,-0.0213953144848347,0.889397442340851,0.456633627414703,-0.0158139653503895,0.957235038280487,0.288878589868546,0.00939250458031893,0.934576094150543,0.355639100074768,-0.00447735283523798,0.972510516643524,0.232815697789192,0.0112745547667146,0.966052532196045,0.258099287748337,-0.0158139653503895,0.957235038280487,0.288878589868546,-0.00447735283523798,0.972510516643524,0.232815697789192,0.0465957298874855,0.940351188182831,0.33699905872345,0.0112745547667146,0.966052532196045,0.258099287748337,0.0496192313730717,0.782712638378143,0.620401978492737,0.0496785417199135,0.860121965408325,0.507663369178772,-0.0213953144848347,0.889397442340851,0.456633627414703,-0.00204519764520228,0.810361266136169,0.585926830768585,-0.0731688365340233,0.146398484706879,0.986515939235687,-0.165010556578636,0.121589690446854,0.978768289089203,-0.0532539747655392,0.10844498872757,0.992675006389618, +-0.165010556578636,0.121589690446854,0.978768289089203,-0.118112944066525,0.226643905043602,0.966789424419403,-0.0532539747655392,0.10844498872757,0.992675006389618,0.0657772421836853,0.450890600681305,0.890152156352997,0.045506376773119,0.519245266914368,0.853412806987762,0.0297022331506014,0.568653523921967,0.822040617465973,0.045506376773119,0.519245266914368,0.853412806987762,0.107997708022594,0.520256280899048,0.847153902053833,0.0140959154814482,0.633044362068176,0.773987054824829,0.133795946836472,0.746883988380432,0.651354610919952,0.00401627318933606,0.727492332458496,0.686103940010071,0.121039420366287,0.635125458240509,0.762866258621216,0.121039420366287,0.635125458240509,0.762866258621216,0.0140959154814482,0.633044362068176,0.773987054824829,0.107997708022594,0.520256280899048,0.847153902053833,-0.261051893234253,0.760264217853546,0.594852983951569,-0.227422684431076,0.698331832885742,0.678683578968048,-0.225907981395721,0.746692597866058,0.625632107257843,-0.224417150020599,0.816890299320221,0.531344532966614,-0.323049247264862,0.790066599845886,0.520993113517761,-0.261051893234253,0.760264217853546,0.594852983951569,-0.321463942527771,0.80355167388916,0.500964522361755,-0.323049247264862,0.790066599845886,0.520993113517761,-0.388793081045151,0.802856028079987,0.451953560113907,-0.388793081045151,0.802856028079987,0.451953560113907,-0.361561417579651,0.841005206108093,0.4024718105793,-0.346914261579514,0.828899025917053,0.438835710287094,-0.378954887390137,0.838237762451172,0.392110347747803,-0.342901080846787,0.867042183876038,0.361464619636536,-0.361561417579651,0.841005206108093,0.4024718105793,-0.327250510454178,0.87444019317627,0.358135879039764,-0.342901080846787,0.867042183876038,0.361464619636536,-0.378954887390137,0.838237762451172,0.392110347747803,-0.329680740833282,0.880092322826386,0.341684013605118,-0.267341136932373,0.896661520004272,0.35288342833519,-0.327250510454178,0.87444019317627,0.358135879039764,-0.267341136932373,0.896661520004272,0.35288342833519,-0.288142174482346,0.889558255672455,0.354485601186752, +-0.28417444229126,0.884436368942261,0.370158135890961,-0.288142174482346,0.889558255672455,0.354485601186752,-0.28252387046814,0.886219918727875,0.367143511772156,-0.319101423025131,0.869186699390411,0.377741515636444,0.190814599394798,0.86520129442215,0.463698595762253,0.123520046472549,0.88137823343277,0.455977082252502,0.0512110628187656,0.906310975551605,0.419497102499008,0.190814599394798,0.86520129442215,0.463698595762253,-0.144640982151031,0.897597312927246,0.416410893201828,0.0568487904965878,0.895864903926849,0.440674692392349,-0.144640982151031,0.897597312927246,0.416410893201828,-0.28252387046814,0.886219918727875,0.367143511772156,-0.175146922469139,0.895134150981903,0.409949243068695,-0.0295670256018639,0.492189437150955,0.86998575925827,-0.111864432692528,0.545822441577911,0.830399930477142,-0.158026993274689,0.498767912387848,0.852207720279694,-0.167187631130219,0.224380508065224,0.960052907466888,-0.118112944066525,0.226643905043602,0.966789424419403,-0.165010556578636,0.121589690446854,0.978768289089203,-0.117864608764648,0.344730883836746,0.931272447109222,-0.167187631130219,0.224380508065224,0.960052907466888,-0.150593146681786,0.252001345157623,0.955937743186951,-0.0828673914074898,0.435338646173477,0.896444737911224,-0.0236153304576874,0.458257704973221,0.888505518436432,-0.0295670256018639,0.492189437150955,0.86998575925827,-0.028650525957346,0.326502531766891,0.944761991500854,-0.010741226375103,0.421107977628708,0.906946837902069,-0.117864608764648,0.344730883836746,0.931272447109222,-0.010741226375103,0.421107977628708,0.906946837902069,-0.0236153304576874,0.458257704973221,0.888505518436432,-0.0828673914074898,0.435338646173477,0.896444737911224,-0.111864432692528,0.545822441577911,0.830399930477142,-0.100852631032467,0.58144474029541,0.807310700416565,-0.158606812357903,0.606247663497925,0.779299437999725,-0.110477574169636,0.622964382171631,0.774409413337708,-0.149838164448738,0.6593017578125,0.736796855926514,-0.158606812357903,0.606247663497925,0.779299437999725,-0.227422684431076,0.698331832885742,0.678683578968048, +-0.149838164448738,0.6593017578125,0.736796855926514,-0.19915409386158,0.729276537895203,0.654593944549561,0.190814599394798,0.86520129442215,0.463698595762253,0.319999933242798,0.824891209602356,0.465998411178589,0.268829077482224,0.82608562707901,0.495291233062744,0.305301517248154,0.803956031799316,0.510338604450226,0.319999933242798,0.824891209602356,0.465998411178589,0.29393744468689,0.845030069351196,0.446682035923004,0.196796029806137,0.887250900268555,0.417201548814774,0.22693595290184,0.851723372936249,0.472299933433533,0.237675786018372,0.889008045196533,0.391375482082367,0.0997990518808365,0.90709924697876,0.408914387226105,0.0538204722106457,0.882174611091614,0.467836707830429,0.196796029806137,0.887250900268555,0.417201548814774,0.0997990518808365,0.90709924697876,0.408914387226105,-0.0595025457441807,0.905492722988129,0.420169323682785,0.0538204722106457,0.882174611091614,0.467836707830429,-0.0232548415660858,0.873414874076843,0.486421167850494,-0.176605939865112,0.865476965904236,0.468785434961319,-0.0595025457441807,0.905492722988129,0.420169323682785,-0.160103425383568,0.850501298904419,0.501013398170471,-0.073917917907238,0.86688894033432,0.492990553379059,0.159882545471191,0.811274290084839,0.562380194664001,-0.0232548415660858,0.873414874076843,0.486421167850494,-0.073917917907238,0.86688894033432,0.492990553379059,-0.176605939865112,0.865476965904236,0.468785434961319,0.29393744468689,0.845030069351196,0.446682035923004,0.237675786018372,0.889008045196533,0.391375482082367,0.22693595290184,0.851723372936249,0.472299933433533,0.859439492225647,0.0908604338765144,0.503098428249359,0.821823179721832,0.0141316317021847,0.569567322731018,0.571781277656555,0.402737647294998,0.714750587940216,0.681636214256287,0.386375278234482,0.621358335018158,0.859439492225647,0.0908604338765144,0.503098428249359,0.571781277656555,0.402737647294998,0.714750587940216,0.607379853725433,0.543282330036163,0.579598009586334,0.681636214256287,0.386375278234482,0.621358335018158,0.319304376840591,0.691225290298462,0.648268580436707, +0.159882545471191,0.811274290084839,0.562380194664001,0.607379853725433,0.543282330036163,0.579598009586334,0.319304376840591,0.691225290298462,0.648268580436707,0.86904376745224,-0.00911622773855925,0.494651079177856,0.821823179721832,0.0141316317021847,0.569567322731018,0.869013845920563,-0.048482745885849,0.492406666278839,0.788499474525452,0.0463692955672741,0.613284945487976,0.754453659057617,-0.0261592641472816,0.655831694602966,0.74127721786499,-0.131764367222786,0.658138334751129,0.788499474525452,0.0463692955672741,0.613284945487976,0.836142897605896,-0.0450863316655159,0.546655356884003,0.816521406173706,0.0584375895559788,0.574349820613861,0.684021532535553,-0.279578238725662,0.673758387565613,0.670956015586853,-0.264512985944748,0.692712604999542,0.711509823799133,-0.188614770770073,0.676888525485992,0.711509823799133,-0.188614770770073,0.676888525485992,0.74127721786499,-0.131764367222786,0.658138334751129,0.754453659057617,-0.0261592641472816,0.655831694602966,0.684021532535553,-0.279578238725662,0.673758387565613,0.667778253555298,-0.327114015817642,0.668631792068481,0.670956015586853,-0.264512985944748,0.692712604999542,0.816521406173706,0.0584375895559788,0.574349820613861,0.86904376745224,-0.00911622773855925,0.494651079177856,0.845514535903931,0.034278754144907,0.532850801944733,0.625141739845276,-0.343693524599075,0.700765550136566,0.667778253555298,-0.327114015817642,0.668631792068481,0.632216513156891,-0.348908185958862,0.691784083843231,0.516926825046539,-0.323344171047211,0.792612791061401,0.632216513156891,-0.348908185958862,0.691784083843231,0.492316842079163,-0.416996002197266,0.764027714729309,0.385927557945251,-0.476688414812088,0.789827764034271,0.349001109600067,-0.466373682022095,0.812830686569214,0.492316842079163,-0.416996002197266,0.764027714729309,0.385927557945251,-0.476688414812088,0.789827764034271,0.293579995632172,-0.598074555397034,0.745732843875885,0.349001109600067,-0.466373682022095,0.812830686569214,0.441819697618485,-0.610599756240845,0.657239019870758,0.274013012647629,-0.593513906002045,0.756741642951965, +0.389585107564926,-0.624979019165039,0.676479518413544,0.274013012647629,-0.593513906002045,0.756741642951965,0.293579995632172,-0.598074555397034,0.745732843875885,0.389585107564926,-0.624979019165039,0.676479518413544,0.192994356155396,-0.0209497734904289,0.980976164340973,0.228182777762413,-0.296950876712799,0.927228510379791,-0.0396724566817284,0.250813543796539,0.967222094535828,0.085183173418045,-0.0245090182870626,0.996063768863678,-0.144715830683708,0.351668685674667,0.92487096786499,-0.0396724566817284,0.250813543796539,0.967222094535828,0.643270194530487,-0.562820374965668,0.519072890281677,0.508974194526672,-0.299754649400711,0.806902885437012,0.579841077327728,-0.48977255821228,0.651081383228302,0.508974194526672,-0.299754649400711,0.806902885437012,0.519362688064575,-0.493750900030136,0.697475671768188,0.192994356155396,-0.0209497734904289,0.980976164340973,0.441819697618485,-0.610599756240845,0.657239019870758,0.579044759273529,-0.588093042373657,0.564671158790588,0.579841077327728,-0.48977255821228,0.651081383228302,0.206685096025467,-0.104900427162647,0.97276771068573,0.154079109430313,-0.0518250875174999,0.986698389053345,0.280864298343658,-0.0524371638894081,0.958313882350922,0.185323014855385,-0.134073868393898,0.973488330841064,0.280864298343658,-0.0524371638894081,0.958313882350922,0.304726809263229,-0.182384088635445,0.934814155101776,0.0651161596179008,-0.123993672430515,0.990144073963165,0.185323014855385,-0.134073868393898,0.973488330841064,0.141635119915009,-0.228774756193161,0.963120698928833,0.548263430595398,-0.449575424194336,0.705187201499939,0.535665512084961,-0.399341583251953,0.744035363197327,0.515210807323456,-0.472400456666946,0.715119183063507,0.110097415745258,-0.252197772264481,0.961392045021057,0.172259241342545,-0.0737808346748352,0.982284605503082,0.0651161596179008,-0.123993672430515,0.990144073963165,0.538480341434479,-0.374638617038727,0.754774570465088,0.569280862808228,-0.250347048044205,0.783100008964539,0.341279804706573,-0.261055886745453,0.902982711791992,0.611268937587738,-0.302311152219772,0.731408357620239, +0.538480341434479,-0.374638617038727,0.754774570465088,0.535665512084961,-0.399341583251953,0.744035363197327,0.462737858295441,-0.0702100619673729,0.883710384368896,0.172259241342545,-0.0737808346748352,0.982284605503082,0.341279804706573,-0.261055886745453,0.902982711791992,0.355117648839951,0.293870389461517,0.887429714202881,0.238296136260033,0.301764577627182,0.923121333122253,0.351388424634933,0.132021114230156,0.926874577999115,0.498282194137573,0.0770204067230225,0.863587021827698,0.351388424634933,0.132021114230156,0.926874577999115,0.493319451808929,-0.0645067766308784,0.86745297908783,0.31482794880867,-0.0679018646478653,0.946716725826263,0.172686040401459,0.21707771718502,0.96075838804245,0.34716522693634,0.0807160884141922,0.934323906898499,0.312040716409683,-0.169968754053116,0.934741199016571,0.31482794880867,-0.0679018646478653,0.946716725826263,0.410685688257217,-0.36911553144455,0.833721101284027,0.34716522693634,0.0807160884141922,0.934323906898499,0.238296136260033,0.301764577627182,0.923121333122253,0.354949861764908,0.227069184184074,0.906890332698822,0.469417363405228,-0.169011503458023,0.86665004491806,0.470881640911102,-0.241609305143356,0.848466455936432,0.521891057491302,-0.326715558767319,0.787963509559631,0.484358608722687,-0.396458089351654,0.779883086681366,0.549715757369995,-0.59162175655365,0.589742362499237,0.521891057491302,-0.326715558767319,0.787963509559631,0.493319451808929,-0.0645067766308784,0.86745297908783,0.469417363405228,-0.169011503458023,0.86665004491806,0.593823134899139,-0.216114103794098,0.775028109550476,0.509695708751678,-0.514814496040344,0.689330220222473,0.491221815347672,-0.560847938060761,0.666446208953857,0.435147136449814,-0.491290688514709,0.754506647586823,0.42683419585228,-0.497022897005081,0.755500316619873,0.548263430595398,-0.449575424194336,0.705187201499939,0.509695708751678,-0.514814496040344,0.689330220222473,0.312040716409683,-0.169968754053116,0.934741199016571,0.410685688257217,-0.36911553144455,0.833721101284027,0.435147136449814,-0.491290688514709,0.754506647586823, +0.206685096025467,-0.104900427162647,0.97276771068573,0.207866907119751,-0.342667102813721,0.916171610355377,0.125377282500267,-0.0810925662517548,0.988789260387421,0.231584221124649,-0.515248358249664,0.825159192085266,0.207866907119751,-0.342667102813721,0.916171610355377,0.332927405834198,-0.434002727270126,0.837138533592224,0.330106168985367,-0.30880731344223,0.892002165317535,0.202385470271111,-0.452852576971054,0.868311285972595,0.317990660667419,-0.450438648462296,0.834258258342743,0.317990660667419,-0.450438648462296,0.834258258342743,0.202385470271111,-0.452852576971054,0.868311285972595,0.231584221124649,-0.515248358249664,0.825159192085266,0.141116693615913,0.130605041980743,0.981340050697327,0.0911807343363762,-0.0312887094914913,0.995342671871185,0.14206662774086,-0.00240575941279531,0.989854156970978,0.14206662774086,-0.00240575941279531,0.989854156970978,0.0790688768029213,-0.0962335765361786,0.992213249206543,0.227408066391945,-0.122943341732025,0.966007471084595,0.227408066391945,-0.122943341732025,0.966007471084595,0.0358700305223465,-0.130511805415154,0.990797638893127,0.279004245996475,-0.109212450683117,0.954059302806854,0.338836014270782,-0.113080225884914,0.93402510881424,0.424636393785477,-0.188246324658394,0.885577261447906,0.331478923559189,0.0326187126338482,0.942898571491241,0.401609867811203,-0.359731465578079,0.842201054096222,0.338836014270782,-0.113080225884914,0.93402510881424,0.330106168985367,-0.30880731344223,0.892002165317535,0.0880391746759415,-0.137878462672234,0.986528515815735,0.0911807343363762,-0.0312887094914913,0.995342671871185,0.190370127558708,0.0261179655790329,0.981364846229553,0.278207957744598,0.0166163500398397,0.960377037525177,0.190370127558708,0.0261179655790329,0.981364846229553,0.331478923559189,0.0326187126338482,0.942898571491241,0.279004245996475,-0.109212450683117,0.954059302806854,0.386414736509323,-0.0481171458959579,0.921069145202637,0.524641633033752,-0.158042415976524,0.836524724960327,0.524641633033752,-0.158042415976524,0.836524724960327,0.500188171863556,-0.0413050875067711,0.864930927753448, +0.509767770767212,-0.185980647802353,0.839968979358673,0.359436810016632,-0.160319536924362,0.919294655323029,0.500188171863556,-0.0413050875067711,0.864930927753448,0.259693384170532,0.0318061858415604,0.965167164802551,0.359436810016632,-0.160319536924362,0.919294655323029,0.509767770767212,-0.185980647802353,0.839968979358673,0.500188171863556,-0.0413050875067711,0.864930927753448,0.341392546892166,0.162806004285812,0.925713360309601,0.104236483573914,0.218462377786636,0.970262229442596,0.259693384170532,0.0318061858415604,0.965167164802551,0.188291743397713,0.210640773177147,0.959258377552032,0.104236483573914,0.218462377786636,0.970262229442596,0.341392546892166,0.162806004285812,0.925713360309601,0.188291743397713,0.210640773177147,0.959258377552032,0.0898893475532532,0.0892948880791664,0.99194061756134,0.066582590341568,0.208219885826111,0.975813090801239,0.0898893475532532,0.0892948880791664,0.99194061756134,-0.00504655903205276,0.051175482571125,0.998676896095276,0.066582590341568,0.208219885826111,0.975813090801239,-0.128358438611031,0.0388894304633141,0.990964889526367,-0.00504655903205276,0.051175482571125,0.998676896095276,-0.0626468360424042,0.0792129710316658,0.994887113571167,-0.128358438611031,0.0388894304633141,0.990964889526367,-0.0626468360424042,0.0792129710316658,0.994887113571167,-0.102870747447014,0.0613149702548981,0.99280309677124,-0.0626468360424042,0.0792129710316658,0.994887113571167,0.00445905653759837,0.195166260004044,0.980759978294373,0.0481184758245945,0.159732326865196,0.985986888408661,0.106319591403008,0.394990116357803,0.912512362003326,0.045506376773119,0.519245266914368,0.853412806987762,0.0657772421836853,0.450890600681305,0.890152156352997,0.10322343558073,0.314330607652664,0.943684816360474,0.158996641635895,0.268071621656418,0.950188159942627,0.106319591403008,0.394990116357803,0.912512362003326,0.117201961576939,0.209685459733009,0.9707190990448,0.0756721943616867,0.198664948344231,0.977141678333282,0.0667813345789909,0.240893915295601,0.968251168727875,0.0756721943616867,0.198664948344231,0.977141678333282, +0.00445905653759837,0.195166260004044,0.980759978294373,0.0667813345789909,0.240893915295601,0.968251168727875,0.137911349534988,0.255326420068741,0.956968545913696,0.158996641635895,0.268071621656418,0.950188159942627,0.117201961576939,0.209685459733009,0.9707190990448,-0.00204519764520228,0.810361266136169,0.585926830768585,0.00401627318933606,0.727492332458496,0.686103940010071,0.133795946836472,0.746883988380432,0.651354610919952,-0.0715653225779533,0.220032408833504,0.972863852977753,-0.0702708140015602,0.0109441531822085,0.997467756271362,0.115128502249718,0.46953010559082,0.87537807226181,-0.0772864669561386,-0.0484077595174313,0.995833039283752,0.0222943108528852,0.293574810028076,0.955676019191742,-0.0702708140015602,0.0109441531822085,0.997467756271362,-0.0731688365340233,0.146398484706879,0.986515939235687,-0.0772864669561386,-0.0484077595174313,0.995833039283752,-0.151409164071083,0.00987077318131924,0.988421857357025,0.0496192313730717,0.782712638378143,0.620401978492737,-0.0715653225779533,0.220032408833504,0.972863852977753,0.0547534115612507,0.721443355083466,0.690305292606354,0.00939250458031893,0.934576094150543,0.355639100074768,0.0496785417199135,0.860121965408325,0.507663369178772,0.129757806658745,0.898173391819,0.420056343078613,0.0720953866839409,0.952698290348053,0.29524239897728,-0.00447735283523798,0.972510516643524,0.232815697789192,0.00939250458031893,0.934576094150543,0.355639100074768,0.00109900732059032,0.952879071235657,0.303348302841187,0.0112745547667146,0.966052532196045,0.258099287748337,-0.00447735283523798,0.972510516643524,0.232815697789192,0.0112745547667146,0.966052532196045,0.258099287748337,0.00109900732059032,0.952879071235657,0.303348302841187,0.0496192313730717,0.782712638378143,0.620401978492737,-0.00204519764520228,0.810361266136169,0.585926830768585,0.133795946836472,0.746883988380432,0.651354610919952,0.0496785417199135,0.860121965408325,0.507663369178772,-0.0731688365340233,0.146398484706879,0.986515939235687,-0.151409164071083,0.00987077318131924,0.988421857357025, +-0.165010556578636,0.121589690446854,0.978768289089203,0.045506376773119,0.519245266914368,0.853412806987762,0.106319591403008,0.394990116357803,0.912512362003326,0.107997708022594,0.520256280899048,0.847153902053833,0.121039420366287,0.635125458240509,0.762866258621216,0.239288210868835,0.647522807121277,0.723502039909363,0.133795946836472,0.746883988380432,0.651354610919952,0.234011828899384,0.542003512382507,0.807137250900269,0.121039420366287,0.635125458240509,0.762866258621216,0.107997708022594,0.520256280899048,0.847153902053833,-0.225907981395721,0.746692597866058,0.625632107257843,-0.227422684431076,0.698331832885742,0.678683578968048,-0.19915409386158,0.729276537895203,0.654593944549561,-0.225907981395721,0.746692597866058,0.625632107257843,-0.203598886728287,0.79917311668396,0.565570294857025,-0.261051893234253,0.760264217853546,0.594852983951569,-0.224417150020599,0.816890299320221,0.531344532966614,-0.268790543079376,0.83925324678421,0.472658038139343,-0.323049247264862,0.790066599845886,0.520993113517761,-0.224417150020599,0.816890299320221,0.531344532966614,-0.261051893234253,0.760264217853546,0.594852983951569,-0.203598886728287,0.79917311668396,0.565570294857025,-0.388793081045151,0.802856028079987,0.451953560113907,-0.323049247264862,0.790066599845886,0.520993113517761,-0.350593030452728,0.817860543727875,0.456276774406433,-0.388793081045151,0.802856028079987,0.451953560113907,-0.371899574995041,0.831559658050537,0.412551939487457,-0.361561417579651,0.841005206108093,0.4024718105793,-0.371899574995041,0.831559658050537,0.412551939487457,-0.378954887390137,0.838237762451172,0.392110347747803,-0.361561417579651,0.841005206108093,0.4024718105793,-0.378954887390137,0.838237762451172,0.392110347747803,-0.382426023483276,0.862344324588776,0.331831902265549,-0.327250510454178,0.87444019317627,0.358135879039764,-0.234829664230347,0.921063184738159,0.310640633106232,-0.267341136932373,0.896661520004272,0.35288342833519,-0.329680740833282,0.880092322826386,0.341684013605118,-0.327250510454178,0.87444019317627,0.358135879039764, +-0.382426023483276,0.862344324588776,0.331831902265549,-0.329680740833282,0.880092322826386,0.341684013605118,-0.288142174482346,0.889558255672455,0.354485601186752,-0.267341136932373,0.896661520004272,0.35288342833519,-0.28252387046814,0.886219918727875,0.367143511772156,0.0568487904965878,0.895864903926849,0.440674692392349,-0.144640982151031,0.897597312927246,0.416410893201828,-0.175146922469139,0.895134150981903,0.409949243068695,0.0568487904965878,0.895864903926849,0.440674692392349,0.239254668354988,0.877859473228455,0.414873242378235,0.190814599394798,0.86520129442215,0.463698595762253,-0.267341136932373,0.896661520004272,0.35288342833519,-0.175146922469139,0.895134150981903,0.409949243068695,-0.28252387046814,0.886219918727875,0.367143511772156,-0.0295670256018639,0.492189437150955,0.86998575925827,-0.0912581086158752,0.530861854553223,0.842530429363251,-0.111864432692528,0.545822441577911,0.830399930477142,-0.165010556578636,0.121589690446854,0.978768289089203,-0.150593146681786,0.252001345157623,0.955937743186951,-0.167187631130219,0.224380508065224,0.960052907466888,-0.028650525957346,0.326502531766891,0.944761991500854,-0.117864608764648,0.344730883836746,0.931272447109222,-0.150593146681786,0.252001345157623,0.955937743186951,-0.0236153304576874,0.458257704973221,0.888505518436432,-0.0434849821031094,0.474163919687271,0.879361987113953,-0.0295670256018639,0.492189437150955,0.86998575925827,-0.028650525957346,0.326502531766891,0.944761991500854,0.0353103689849377,0.329119145870209,0.943627953529358,-0.010741226375103,0.421107977628708,0.906946837902069,-0.0236153304576874,0.458257704973221,0.888505518436432,-0.010741226375103,0.421107977628708,0.906946837902069,-0.0743836984038353,0.421213239431381,0.903906166553497,-0.0912581086158752,0.530861854553223,0.842530429363251,-0.100852631032467,0.58144474029541,0.807310700416565,-0.111864432692528,0.545822441577911,0.830399930477142,-0.100852631032467,0.58144474029541,0.807310700416565,-0.110477574169636,0.622964382171631,0.774409413337708,-0.158606812357903,0.606247663497925,0.779299437999725, +-0.110477574169636,0.622964382171631,0.774409413337708,-0.140205100178719,0.691294848918915,0.708839774131775,-0.149838164448738,0.6593017578125,0.736796855926514,-0.140205100178719,0.691294848918915,0.708839774131775,-0.19915409386158,0.729276537895203,0.654593944549561,-0.149838164448738,0.6593017578125,0.736796855926514,0.286287754774094,0.851420104503632,0.439457625150681,0.319999933242798,0.824891209602356,0.465998411178589,0.190814599394798,0.86520129442215,0.463698595762253,0.29393744468689,0.845030069351196,0.446682035923004,0.319999933242798,0.824891209602356,0.465998411178589,0.286287754774094,0.851420104503632,0.439457625150681,0.167736500501633,0.921648263931274,0.349898338317871,0.196796029806137,0.887250900268555,0.417201548814774,0.237675786018372,0.889008045196533,0.391375482082367,0.0997990518808365,0.90709924697876,0.408914387226105,0.196796029806137,0.887250900268555,0.417201548814774,0.167736500501633,0.921648263931274,0.349898338317871,0.0997990518808365,0.90709924697876,0.408914387226105,0.0114222317934036,0.937671184539795,0.347335934638977,-0.0595025457441807,0.905492722988129,0.420169323682785,-0.0232548415660858,0.873414874076843,0.486421167850494,-0.0595025457441807,0.905492722988129,0.420169323682785,-0.104090474545956,0.913772940635681,0.392662793397903,0.381621122360229,0.787517905235291,0.483922213315964,0.159882545471191,0.811274290084839,0.562380194664001,-0.073917917907238,0.86688894033432,0.492990553379059,-0.0232548415660858,0.873414874076843,0.486421167850494,0.381621122360229,0.787517905235291,0.483922213315964,-0.073917917907238,0.86688894033432,0.492990553379059,0.237675786018372,0.889008045196533,0.391375482082367,0.29393744468689,0.845030069351196,0.446682035923004,0.247626379132271,0.891215980052948,0.380019903182983,0.859439492225647,0.0908604338765144,0.503098428249359,0.869013845920563,-0.048482745885849,0.492406666278839,0.821823179721832,0.0141316317021847,0.569567322731018,0.681636214256287,0.386375278234482,0.621358335018158,0.861381411552429,0.159530833363533,0.482257038354874, +0.859439492225647,0.0908604338765144,0.503098428249359,0.607379853725433,0.543282330036163,0.579598009586334,0.849613189697266,0.251917123794556,0.463352024555206,0.681636214256287,0.386375278234482,0.621358335018158,0.381621122360229,0.787517905235291,0.483922213315964,0.607379853725433,0.543282330036163,0.579598009586334,0.159882545471191,0.811274290084839,0.562380194664001,0.86904376745224,-0.00911622773855925,0.494651079177856,0.869013845920563,-0.048482745885849,0.492406666278839,0.845514535903931,0.034278754144907,0.532850801944733,0.753895342350006,0.10707651078701,0.648210048675537,0.754453659057617,-0.0261592641472816,0.655831694602966,0.788499474525452,0.0463692955672741,0.613284945487976,0.788499474525452,0.0463692955672741,0.613284945487976,0.816521406173706,0.0584375895559788,0.574349820613861,0.761091649532318,0.112224392592907,0.638862311840057,0.650203287601471,-0.215958446264267,0.728421211242676,0.684021532535553,-0.279578238725662,0.673758387565613,0.711509823799133,-0.188614770770073,0.676888525485992,0.733306288719177,-0.0754149407148361,0.675702929496765,0.711509823799133,-0.188614770770073,0.676888525485992,0.754453659057617,-0.0261592641472816,0.655831694602966,0.684021532535553,-0.279578238725662,0.673758387565613,0.632216513156891,-0.348908185958862,0.691784083843231,0.667778253555298,-0.327114015817642,0.668631792068481,0.795047760009766,0.144300177693367,0.589131891727448,0.816521406173706,0.0584375895559788,0.574349820613861,0.845514535903931,0.034278754144907,0.532850801944733,0.632216513156891,-0.348908185958862,0.691784083843231,0.518583714962006,-0.259198158979416,0.81479275226593,0.492316842079163,-0.416996002197266,0.764027714729309,0.492316842079163,-0.416996002197266,0.764027714729309,0.456511974334717,-0.336588084697723,0.823592841625214,0.385927557945251,-0.476688414812088,0.789827764034271,0.420312404632568,-0.529822945594788,0.736630797386169,0.293579995632172,-0.598074555397034,0.745732843875885,0.385927557945251,-0.476688414812088,0.789827764034271,0.441819697618485,-0.610599756240845,0.657239019870758, +0.389585107564926,-0.624979019165039,0.676479518413544,0.579044759273529,-0.588093042373657,0.564671158790588,0.389585107564926,-0.624979019165039,0.676479518413544,0.293579995632172,-0.598074555397034,0.745732843875885,0.420312404632568,-0.529822945594788,0.736630797386169,0.519362688064575,-0.493750900030136,0.697475671768188,0.228182777762413,-0.296950876712799,0.927228510379791,0.192994356155396,-0.0209497734904289,0.980976164340973,0.085183173418045,-0.0245090182870626,0.996063768863678,-0.0396724566817284,0.250813543796539,0.967222094535828,0.228182777762413,-0.296950876712799,0.927228510379791,0.508974194526672,-0.299754649400711,0.806902885437012,0.643270194530487,-0.562820374965668,0.519072890281677,0.519362688064575,-0.493750900030136,0.697475671768188,0.643270194530487,-0.562820374965668,0.519072890281677,0.579841077327728,-0.48977255821228,0.651081383228302,0.579044759273529,-0.588093042373657,0.564671158790588,0.280864298343658,-0.0524371638894081,0.958313882350922,0.185323014855385,-0.134073868393898,0.973488330841064,0.206685096025467,-0.104900427162647,0.97276771068573,0.196403384208679,-0.153244316577911,0.968473970890045,0.185323014855385,-0.134073868393898,0.973488330841064,0.0651161596179008,-0.123993672430515,0.990144073963165,0.42683419585228,-0.497022897005081,0.755500316619873,0.535665512084961,-0.399341583251953,0.744035363197327,0.548263430595398,-0.449575424194336,0.705187201499939,0.172259241342545,-0.0737808346748352,0.982284605503082,0.158412784337997,-0.0286261644214392,0.986957848072052,0.0651161596179008,-0.123993672430515,0.990144073963165,0.538480341434479,-0.374638617038727,0.754774570465088,0.611268937587738,-0.302311152219772,0.731408357620239,0.569280862808228,-0.250347048044205,0.783100008964539,0.341279804706573,-0.261055886745453,0.902982711791992,0.569280862808228,-0.250347048044205,0.783100008964539,0.462737858295441,-0.0702100619673729,0.883710384368896,0.611268937587738,-0.302311152219772,0.731408357620239,0.535665512084961,-0.399341583251953,0.744035363197327,0.442123591899872,-0.335992395877838,0.83164644241333, +0.462737858295441,-0.0702100619673729,0.883710384368896,0.330249428749084,0.0170612670481205,0.943739414215088,0.172259241342545,-0.0737808346748352,0.982284605503082,0.238296136260033,0.301764577627182,0.923121333122253,0.355117648839951,0.293870389461517,0.887429714202881,0.354949861764908,0.227069184184074,0.906890332698822,0.498282194137573,0.0770204067230225,0.863587021827698,0.355117648839951,0.293870389461517,0.887429714202881,0.351388424634933,0.132021114230156,0.926874577999115,0.577619969844818,-0.069207675755024,0.813366651535034,0.498282194137573,0.0770204067230225,0.863587021827698,0.493319451808929,-0.0645067766308784,0.86745297908783,0.31482794880867,-0.0679018646478653,0.946716725826263,0.34716522693634,0.0807160884141922,0.934323906898499,0.449176847934723,-0.317531019449234,0.835113227367401,0.449176847934723,-0.317531019449234,0.835113227367401,0.410685688257217,-0.36911553144455,0.833721101284027,0.31482794880867,-0.0679018646478653,0.946716725826263,0.34716522693634,0.0807160884141922,0.934323906898499,0.354949861764908,0.227069184184074,0.906890332698822,0.457970947027206,-0.223447516560555,0.860426485538483,0.593823134899139,-0.216114103794098,0.775028109550476,0.469417363405228,-0.169011503458023,0.86665004491806,0.521891057491302,-0.326715558767319,0.787963509559631,0.549715757369995,-0.59162175655365,0.589742362499237,0.652537822723389,-0.449162155389786,0.610284805297852,0.521891057491302,-0.326715558767319,0.787963509559631,0.577619969844818,-0.069207675755024,0.813366651535034,0.493319451808929,-0.0645067766308784,0.86745297908783,0.593823134899139,-0.216114103794098,0.775028109550476,0.45675590634346,-0.515695035457611,0.724867224693298,0.509695708751678,-0.514814496040344,0.689330220222473,0.435147136449814,-0.491290688514709,0.754506647586823,0.45675590634346,-0.515695035457611,0.724867224693298,0.42683419585228,-0.497022897005081,0.755500316619873,0.509695708751678,-0.514814496040344,0.689330220222473,0.45675590634346,-0.515695035457611,0.724867224693298,0.435147136449814,-0.491290688514709,0.754506647586823, +0.410685688257217,-0.36911553144455,0.833721101284027,0.207866907119751,-0.342667102813721,0.916171610355377,0.206685096025467,-0.104900427162647,0.97276771068573,0.227175056934357,-0.265602827072144,0.936934649944305,0.207866907119751,-0.342667102813721,0.916171610355377,0.227175056934357,-0.265602827072144,0.936934649944305,0.332927405834198,-0.434002727270126,0.837138533592224,0.231584221124649,-0.515248358249664,0.825159192085266,0.332927405834198,-0.434002727270126,0.837138533592224,0.317990660667419,-0.450438648462296,0.834258258342743,0.330106168985367,-0.30880731344223,0.892002165317535,0.317990660667419,-0.450438648462296,0.834258258342743,0.332927405834198,-0.434002727270126,0.837138533592224,0.14206662774086,-0.00240575941279531,0.989854156970978,0.0911807343363762,-0.0312887094914913,0.995342671871185,0.0790688768029213,-0.0962335765361786,0.992213249206543,0.0358700305223465,-0.130511805415154,0.990797638893127,0.227408066391945,-0.122943341732025,0.966007471084595,0.0790688768029213,-0.0962335765361786,0.992213249206543,0.279004245996475,-0.109212450683117,0.954059302806854,0.0358700305223465,-0.130511805415154,0.990797638893127,0.0267279967665672,-0.0226760450750589,0.999385476112366,0.338836014270782,-0.113080225884914,0.93402510881424,0.401609867811203,-0.359731465578079,0.842201054096222,0.424636393785477,-0.188246324658394,0.885577261447906,0.424636393785477,-0.188246324658394,0.885577261447906,0.50696188211441,-0.0489546768367291,0.86057710647583,0.331478923559189,0.0326187126338482,0.942898571491241,0.401609867811203,-0.359731465578079,0.842201054096222,0.330106168985367,-0.30880731344223,0.892002165317535,0.332927405834198,-0.434002727270126,0.837138533592224,0.0880391746759415,-0.137878462672234,0.986528515815735,-0.00970171578228474,-0.163583785295486,0.986481666564941,0.0911807343363762,-0.0312887094914913,0.995342671871185,0.0880391746759415,-0.137878462672234,0.986528515815735,0.190370127558708,0.0261179655790329,0.981364846229553,0.196599990129471,-0.16146445274353,0.967097461223602,0.236759230494499,-0.0632953196763992,0.969504356384277, +0.190370127558708,0.0261179655790329,0.981364846229553,0.278207957744598,0.0166163500398397,0.960377037525177,0.479864090681076,-0.0362855084240437,0.876592099666595,0.278207957744598,0.0166163500398397,0.960377037525177,0.331478923559189,0.0326187126338482,0.942898571491241,0.386414736509323,-0.0481171458959579,0.921069145202637,0.279004245996475,-0.109212450683117,0.954059302806854,0.0267279967665672,-0.0226760450750589,0.999385476112366,0.386414736509323,-0.0481171458959579,0.921069145202637,0.500188171863556,-0.0413050875067711,0.864930927753448,0.524641633033752,-0.158042415976524,0.836524724960327,0.341392546892166,0.162806004285812,0.925713360309601,0.259693384170532,0.0318061858415604,0.965167164802551,0.500188171863556,-0.0413050875067711,0.864930927753448,0.341392546892166,0.162806004285812,0.925713360309601,0.338858515024185,0.17530058324337,0.924361705780029,0.188291743397713,0.210640773177147,0.959258377552032,0.194042965769768,0.064727783203125,0.97885525226593,0.0898893475532532,0.0892948880791664,0.99194061756134,0.188291743397713,0.210640773177147,0.959258377552032,0.0421166867017746,-0.0331572629511356,0.998562276363373,-0.00504655903205276,0.051175482571125,0.998676896095276,0.0898893475532532,0.0892948880791664,0.99194061756134,0.00388403725810349,0.0494643598794937,0.998768329620361,-0.0626468360424042,0.0792129710316658,0.994887113571167,-0.00504655903205276,0.051175482571125,0.998676896095276,0.00445905653759837,0.195166260004044,0.980759978294373,-0.0626468360424042,0.0792129710316658,0.994887113571167,0.00388403725810349,0.0494643598794937,0.998768329620361,0.106319591403008,0.394990116357803,0.912512362003326,0.158996641635895,0.268071621656418,0.950188159942627,0.202332332730293,0.380738258361816,0.90227484703064,0.137911349534988,0.255326420068741,0.956968545913696,0.117201961576939,0.209685459733009,0.9707190990448,0.0667813345789909,0.240893915295601,0.968251168727875,0.0667813345789909,0.240893915295601,0.968251168727875,0.00445905653759837,0.195166260004044,0.980759978294373,0.0170439686626196,0.198112040758133,0.980031132698059, +0.158996641635895,0.268071621656418,0.950188159942627,0.137911349534988,0.255326420068741,0.956968545913696,0.208017364144325,0.315430462360382,0.925868391990662,-0.0715653225779533,0.220032408833504,0.972863852977753,-0.0963509976863861,-0.0946151912212372,0.990840196609497,-0.0702708140015602,0.0109441531822085,0.997467756271362,-0.0702708140015602,0.0109441531822085,0.997467756271362,-0.0963509976863861,-0.0946151912212372,0.990840196609497,-0.0772864669561386,-0.0484077595174313,0.995833039283752,-0.0866729840636253,-0.0116001218557358,0.996169209480286,-0.151409164071083,0.00987077318131924,0.988421857357025,-0.0772864669561386,-0.0484077595174313,0.995833039283752,0.0433850064873695,0.261097699403763,0.96433687210083,-0.0715653225779533,0.220032408833504,0.972863852977753,0.0496192313730717,0.782712638378143,0.620401978492737,0.0496785417199135,0.860121965408325,0.507663369178772,0.180904254317284,0.824076890945435,0.536815404891968,0.129757806658745,0.898173391819,0.420056343078613,0.0720953866839409,0.952698290348053,0.29524239897728,0.00939250458031893,0.934576094150543,0.355639100074768,0.129757806658745,0.898173391819,0.420056343078613,0.0720953866839409,0.952698290348053,0.29524239897728,-0.0064420597627759,0.960979998111725,0.276542663574219,-0.00447735283523798,0.972510516643524,0.232815697789192,-0.0064420597627759,0.960979998111725,0.276542663574219,0.00109900732059032,0.952879071235657,0.303348302841187,-0.00447735283523798,0.972510516643524,0.232815697789192,0.0496192313730717,0.782712638378143,0.620401978492737,0.00109900732059032,0.952879071235657,0.303348302841187,0.0108866281807423,0.679473221302032,0.733619391918182,0.0496785417199135,0.860121965408325,0.507663369178772,0.133795946836472,0.746883988380432,0.651354610919952,0.180904254317284,0.824076890945435,0.536815404891968,-0.151409164071083,0.00987077318131924,0.988421857357025,-0.125651016831398,0.143703296780586,0.981611490249634,-0.165010556578636,0.121589690446854,0.978768289089203,0.107997708022594,0.520256280899048,0.847153902053833, +0.106319591403008,0.394990116357803,0.912512362003326,0.202332332730293,0.380738258361816,0.90227484703064,0.234011828899384,0.542003512382507,0.807137250900269,0.239288210868835,0.647522807121277,0.723502039909363,0.121039420366287,0.635125458240509,0.762866258621216,0.245776548981667,0.75172483921051,0.611966907978058,0.133795946836472,0.746883988380432,0.651354610919952,0.239288210868835,0.647522807121277,0.723502039909363,0.234011828899384,0.542003512382507,0.807137250900269,0.107997708022594,0.520256280899048,0.847153902053833,0.202332332730293,0.380738258361816,0.90227484703064,-0.225907981395721,0.746692597866058,0.625632107257843,-0.19915409386158,0.729276537895203,0.654593944549561,-0.203598886728287,0.79917311668396,0.565570294857025,-0.224417150020599,0.816890299320221,0.531344532966614,-0.218974053859711,0.833771049976349,0.506829380989075,-0.268790543079376,0.83925324678421,0.472658038139343,-0.323049247264862,0.790066599845886,0.520993113517761,-0.268790543079376,0.83925324678421,0.472658038139343,-0.350593030452728,0.817860543727875,0.456276774406433,-0.224417150020599,0.816890299320221,0.531344532966614,-0.203598886728287,0.79917311668396,0.565570294857025,-0.218974053859711,0.833771049976349,0.506829380989075,-0.371899574995041,0.831559658050537,0.412551939487457,-0.388793081045151,0.802856028079987,0.451953560113907,-0.350593030452728,0.817860543727875,0.456276774406433,-0.371899574995041,0.831559658050537,0.412551939487457,-0.371809244155884,0.842246532440186,0.390356987714767,-0.378954887390137,0.838237762451172,0.392110347747803,-0.378954887390137,0.838237762451172,0.392110347747803,-0.370282590389252,0.856281757354736,0.360100328922272,-0.382426023483276,0.862344324588776,0.331831902265549,-0.234829664230347,0.921063184738159,0.310640633106232,-0.175146922469139,0.895134150981903,0.409949243068695,-0.267341136932373,0.896661520004272,0.35288342833519,-0.0675895884633064,0.92728579044342,0.36820188164711,0.0568487904965878,0.895864903926849,0.440674692392349,-0.175146922469139,0.895134150981903,0.409949243068695, +0.239254668354988,0.877859473228455,0.414873242378235,0.0568487904965878,0.895864903926849,0.440674692392349,0.159702852368355,0.939021587371826,0.304521471261978,0.239254668354988,0.877859473228455,0.414873242378235,0.286287754774094,0.851420104503632,0.439457625150681,0.190814599394798,0.86520129442215,0.463698595762253,-0.0434849821031094,0.474163919687271,0.879361987113953,-0.0912581086158752,0.530861854553223,0.842530429363251,-0.0295670256018639,0.492189437150955,0.86998575925827,-0.125651016831398,0.143703296780586,0.981611490249634,-0.150593146681786,0.252001345157623,0.955937743186951,-0.165010556578636,0.121589690446854,0.978768289089203,-0.125651016831398,0.143703296780586,0.981611490249634,-0.028650525957346,0.326502531766891,0.944761991500854,-0.150593146681786,0.252001345157623,0.955937743186951,-0.131611049175262,0.468630582094193,0.87353527545929,-0.0434849821031094,0.474163919687271,0.879361987113953,-0.0236153304576874,0.458257704973221,0.888505518436432,-0.028650525957346,0.326502531766891,0.944761991500854,-0.0115144234150648,0.182289108633995,0.983177483081818,0.0353103689849377,0.329119145870209,0.943627953529358,0.0353103689849377,0.329119145870209,0.943627953529358,-0.0216795839369297,0.378441274166107,0.925371289253235,-0.010741226375103,0.421107977628708,0.906946837902069,-0.010741226375103,0.421107977628708,0.906946837902069,-0.0216795839369297,0.378441274166107,0.925371289253235,-0.0743836984038353,0.421213239431381,0.903906166553497,-0.0236153304576874,0.458257704973221,0.888505518436432,-0.0743836984038353,0.421213239431381,0.903906166553497,-0.131611049175262,0.468630582094193,0.87353527545929,-0.0919720605015755,0.603517055511475,0.792027950286865,-0.100852631032467,0.58144474029541,0.807310700416565,-0.0912581086158752,0.530861854553223,0.842530429363251,-0.110477574169636,0.622964382171631,0.774409413337708,-0.100852631032467,0.58144474029541,0.807310700416565,-0.0919720605015755,0.603517055511475,0.792027950286865,-0.110477574169636,0.622964382171631,0.774409413337708,-0.0776412412524223,0.678701937198639,0.730298101902008, +-0.140205100178719,0.691294848918915,0.708839774131775,-0.140205100178719,0.691294848918915,0.708839774131775,-0.190191775560379,0.776064872741699,0.601290464401245,-0.19915409386158,0.729276537895203,0.654593944549561,0.286287754774094,0.851420104503632,0.439457625150681,0.247626379132271,0.891215980052948,0.380019903182983,0.29393744468689,0.845030069351196,0.446682035923004,0.167736500501633,0.921648263931274,0.349898338317871,0.237675786018372,0.889008045196533,0.391375482082367,0.214313089847565,0.921440839767456,0.32406222820282,0.0997990518808365,0.90709924697876,0.408914387226105,0.167736500501633,0.921648263931274,0.349898338317871,0.0114222317934036,0.937671184539795,0.347335934638977,-0.104090474545956,0.913772940635681,0.392662793397903,-0.0595025457441807,0.905492722988129,0.420169323682785,0.0114222317934036,0.937671184539795,0.347335934638977,-0.0232548415660858,0.873414874076843,0.486421167850494,-0.104090474545956,0.913772940635681,0.392662793397903,-0.0262400489300489,0.888054549694061,0.45898848772049,0.381621122360229,0.787517905235291,0.483922213315964,-0.0232548415660858,0.873414874076843,0.486421167850494,0.487268507480621,0.696035504341125,0.527355492115021,0.237675786018372,0.889008045196533,0.391375482082367,0.247626379132271,0.891215980052948,0.380019903182983,0.214313089847565,0.921440839767456,0.32406222820282,0.859439492225647,0.0908604338765144,0.503098428249359,0.889515936374664,0.062331173568964,0.452632457017899,0.869013845920563,-0.048482745885849,0.492406666278839,0.849613189697266,0.251917123794556,0.463352024555206,0.861381411552429,0.159530833363533,0.482257038354874,0.681636214256287,0.386375278234482,0.621358335018158,0.861381411552429,0.159530833363533,0.482257038354874,0.901516497135162,0.123198769986629,0.414837181568146,0.859439492225647,0.0908604338765144,0.503098428249359,0.607379853725433,0.543282330036163,0.579598009586334,0.749042332172394,0.501021683216095,0.433488965034485,0.849613189697266,0.251917123794556,0.463352024555206,0.381621122360229,0.787517905235291,0.483922213315964, +0.749042332172394,0.501021683216095,0.433488965034485,0.607379853725433,0.543282330036163,0.579598009586334,0.889515936374664,0.062331173568964,0.452632457017899,0.845514535903931,0.034278754144907,0.532850801944733,0.869013845920563,-0.048482745885849,0.492406666278839,0.733306288719177,-0.0754149407148361,0.675702929496765,0.754453659057617,-0.0261592641472816,0.655831694602966,0.753895342350006,0.10707651078701,0.648210048675537,0.788499474525452,0.0463692955672741,0.613284945487976,0.761091649532318,0.112224392592907,0.638862311840057,0.753895342350006,0.10707651078701,0.648210048675537,0.761091649532318,0.112224392592907,0.638862311840057,0.816521406173706,0.0584375895559788,0.574349820613861,0.795047760009766,0.144300177693367,0.589131891727448,0.632216513156891,-0.348908185958862,0.691784083843231,0.684021532535553,-0.279578238725662,0.673758387565613,0.650203287601471,-0.215958446264267,0.728421211242676,0.650203287601471,-0.215958446264267,0.728421211242676,0.711509823799133,-0.188614770770073,0.676888525485992,0.733306288719177,-0.0754149407148361,0.675702929496765,0.795047760009766,0.144300177693367,0.589131891727448,0.845514535903931,0.034278754144907,0.532850801944733,0.870846688747406,0.165614768862724,0.462814927101135,0.650203287601471,-0.215958446264267,0.728421211242676,0.518583714962006,-0.259198158979416,0.81479275226593,0.632216513156891,-0.348908185958862,0.691784083843231,0.492316842079163,-0.416996002197266,0.764027714729309,0.518583714962006,-0.259198158979416,0.81479275226593,0.456511974334717,-0.336588084697723,0.823592841625214,0.511068761348724,-0.383843779563904,0.769072473049164,0.385927557945251,-0.476688414812088,0.789827764034271,0.456511974334717,-0.336588084697723,0.823592841625214,0.385927557945251,-0.476688414812088,0.789827764034271,0.511068761348724,-0.383843779563904,0.769072473049164,0.420312404632568,-0.529822945594788,0.736630797386169,0.389585107564926,-0.624979019165039,0.676479518413544,0.420312404632568,-0.529822945594788,0.736630797386169,0.579044759273529,-0.588093042373657,0.564671158790588, +0.519362688064575,-0.493750900030136,0.697475671768188,0.496982485055923,-0.668016731739044,0.553860902786255,0.228182777762413,-0.296950876712799,0.927228510379791,0.228182777762413,-0.296950876712799,0.927228510379791,0.306534439325333,-0.433536976575851,0.847397327423096,0.085183173418045,-0.0245090182870626,0.996063768863678,0.643270194530487,-0.562820374965668,0.519072890281677,0.654901027679443,-0.624111235141754,0.426133364439011,0.519362688064575,-0.493750900030136,0.697475671768188,0.579044759273529,-0.588093042373657,0.564671158790588,0.704958975315094,-0.577041625976563,0.41237798333168,0.643270194530487,-0.562820374965668,0.519072890281677,0.185323014855385,-0.134073868393898,0.973488330841064,0.227175056934357,-0.265602827072144,0.936934649944305,0.206685096025467,-0.104900427162647,0.97276771068573,0.196403384208679,-0.153244316577911,0.968473970890045,0.227175056934357,-0.265602827072144,0.936934649944305,0.185323014855385,-0.134073868393898,0.973488330841064,0.196403384208679,-0.153244316577911,0.968473970890045,0.0651161596179008,-0.123993672430515,0.990144073963165,0.158412784337997,-0.0286261644214392,0.986957848072052,0.42683419585228,-0.497022897005081,0.755500316619873,0.31122362613678,-0.450541436672211,0.836750984191895,0.535665512084961,-0.399341583251953,0.744035363197327,0.158412784337997,-0.0286261644214392,0.986957848072052,0.172259241342545,-0.0737808346748352,0.982284605503082,0.330249428749084,0.0170612670481205,0.943739414215088,0.638917148113251,-0.119618460536003,0.759918510913849,0.569280862808228,-0.250347048044205,0.783100008964539,0.611268937587738,-0.302311152219772,0.731408357620239,0.462737858295441,-0.0702100619673729,0.883710384368896,0.569280862808228,-0.250347048044205,0.783100008964539,0.638917148113251,-0.119618460536003,0.759918510913849,0.31122362613678,-0.450541436672211,0.836750984191895,0.442123591899872,-0.335992395877838,0.83164644241333,0.535665512084961,-0.399341583251953,0.744035363197327,0.442123591899872,-0.335992395877838,0.83164644241333,0.579087018966675,-0.185492888092995,0.793883144855499, +0.611268937587738,-0.302311152219772,0.731408357620239,0.462737858295441,-0.0702100619673729,0.883710384368896,0.548048377037048,0.0629874095320702,0.834071576595306,0.330249428749084,0.0170612670481205,0.943739414215088,0.355117648839951,0.293870389461517,0.887429714202881,0.380480974912643,0.270206719636917,0.884433388710022,0.354949861764908,0.227069184184074,0.906890332698822,0.498282194137573,0.0770204067230225,0.863587021827698,0.486893236637115,0.221341729164124,0.844951272010803,0.355117648839951,0.293870389461517,0.887429714202881,0.577619969844818,-0.069207675755024,0.813366651535034,0.581034898757935,0.0350375585258007,0.813124001026154,0.498282194137573,0.0770204067230225,0.863587021827698,0.457970947027206,-0.223447516560555,0.860426485538483,0.449176847934723,-0.317531019449234,0.835113227367401,0.34716522693634,0.0807160884141922,0.934323906898499,0.449176847934723,-0.317531019449234,0.835113227367401,0.45675590634346,-0.515695035457611,0.724867224693298,0.410685688257217,-0.36911553144455,0.833721101284027,0.473797857761383,-0.10476515442133,0.874379634857178,0.457970947027206,-0.223447516560555,0.860426485538483,0.354949861764908,0.227069184184074,0.906890332698822,0.593823134899139,-0.216114103794098,0.775028109550476,0.521891057491302,-0.326715558767319,0.787963509559631,0.652537822723389,-0.449162155389786,0.610284805297852,0.652537822723389,-0.449162155389786,0.610284805297852,0.549715757369995,-0.59162175655365,0.589742362499237,0.642636895179749,-0.650201082229614,0.405285507440567,0.644232928752899,-0.169619619846344,0.745783448219299,0.577619969844818,-0.069207675755024,0.813366651535034,0.593823134899139,-0.216114103794098,0.775028109550476,0.3779356777668,-0.580151438713074,0.721518397331238,0.42683419585228,-0.497022897005081,0.755500316619873,0.45675590634346,-0.515695035457611,0.724867224693298,0.332927405834198,-0.434002727270126,0.837138533592224,0.227175056934357,-0.265602827072144,0.936934649944305,0.346138834953308,-0.330932378768921,0.877879023551941,0.0911807343363762,-0.0312887094914913,0.995342671871185, +-0.00970171578228474,-0.163583785295486,0.986481666564941,0.0790688768029213,-0.0962335765361786,0.992213249206543,-0.00970171578228474,-0.163583785295486,0.986481666564941,0.0358700305223465,-0.130511805415154,0.990797638893127,0.0790688768029213,-0.0962335765361786,0.992213249206543,0.0358700305223465,-0.130511805415154,0.990797638893127,-0.0777115076780319,-0.136967435479164,0.987522542476654,0.0267279967665672,-0.0226760450750589,0.999385476112366,0.533834278583527,-0.3728067278862,0.758970320224762,0.424636393785477,-0.188246324658394,0.885577261447906,0.401609867811203,-0.359731465578079,0.842201054096222,0.424636393785477,-0.188246324658394,0.885577261447906,0.609364092350006,-0.202266320586205,0.766657412052155,0.50696188211441,-0.0489546768367291,0.86057710647583,0.479864090681076,-0.0362855084240437,0.876592099666595,0.331478923559189,0.0326187126338482,0.942898571491241,0.50696188211441,-0.0489546768367291,0.86057710647583,0.401609867811203,-0.359731465578079,0.842201054096222,0.332927405834198,-0.434002727270126,0.837138533592224,0.424105048179626,-0.421229779720306,0.801685869693756,0.0880391746759415,-0.137878462672234,0.986528515815735,0.0660471841692925,-0.160469442605972,0.984828531742096,-0.00970171578228474,-0.163583785295486,0.986481666564941,0.236759230494499,-0.0632953196763992,0.969504356384277,0.196599990129471,-0.16146445274353,0.967097461223602,0.190370127558708,0.0261179655790329,0.981364846229553,0.0880391746759415,-0.137878462672234,0.986528515815735,0.196599990129471,-0.16146445274353,0.967097461223602,0.0660471841692925,-0.160469442605972,0.984828531742096,0.334105134010315,-0.105962336063385,0.936560571193695,0.236759230494499,-0.0632953196763992,0.969504356384277,0.278207957744598,0.0166163500398397,0.960377037525177,0.334105134010315,-0.105962336063385,0.936560571193695,0.278207957744598,0.0166163500398397,0.960377037525177,0.479864090681076,-0.0362855084240437,0.876592099666595,0.386414736509323,-0.0481171458959579,0.921069145202637,0.0267279967665672,-0.0226760450750589,0.999385476112366, +0.222118750214577,0.022307651117444,0.974764347076416,0.386414736509323,-0.0481171458959579,0.921069145202637,0.450994789600372,-0.0293684490025043,0.892043173313141,0.500188171863556,-0.0413050875067711,0.864930927753448,0.470000982284546,0.0902432426810265,0.878040492534637,0.341392546892166,0.162806004285812,0.925713360309601,0.500188171863556,-0.0413050875067711,0.864930927753448,0.470000982284546,0.0902432426810265,0.878040492534637,0.338858515024185,0.17530058324337,0.924361705780029,0.341392546892166,0.162806004285812,0.925713360309601,0.194042965769768,0.064727783203125,0.97885525226593,0.188291743397713,0.210640773177147,0.959258377552032,0.338858515024185,0.17530058324337,0.924361705780029,0.194042965769768,0.064727783203125,0.97885525226593,0.0421166867017746,-0.0331572629511356,0.998562276363373,0.0898893475532532,0.0892948880791664,0.99194061756134,0.0421166867017746,-0.0331572629511356,0.998562276363373,0.00388403725810349,0.0494643598794937,0.998768329620361,-0.00504655903205276,0.051175482571125,0.998676896095276,0.00445905653759837,0.195166260004044,0.980759978294373,0.00388403725810349,0.0494643598794937,0.998768329620361,0.0170439686626196,0.198112040758133,0.980031132698059,0.158996641635895,0.268071621656418,0.950188159942627,0.208017364144325,0.315430462360382,0.925868391990662,0.202332332730293,0.380738258361816,0.90227484703064,0.137911349534988,0.255326420068741,0.956968545913696,0.0667813345789909,0.240893915295601,0.968251168727875,0.0582083575427532,0.295616030693054,0.953531801700592,0.0667813345789909,0.240893915295601,0.968251168727875,0.0170439686626196,0.198112040758133,0.980031132698059,0.0582083575427532,0.295616030693054,0.953531801700592,0.137911349534988,0.255326420068741,0.956968545913696,0.112164318561554,0.346320927143097,0.931386530399323,0.208017364144325,0.315430462360382,0.925868391990662,-0.0356251336634159,-0.0482506081461906,0.998199701309204,-0.0963509976863861,-0.0946151912212372,0.990840196609497,-0.0715653225779533,0.220032408833504,0.972863852977753,-0.0772864669561386,-0.0484077595174313,0.995833039283752, +-0.0963509976863861,-0.0946151912212372,0.990840196609497,-0.0866729840636253,-0.0116001218557358,0.996169209480286,-0.0866729840636253,-0.0116001218557358,0.996169209480286,-0.125651016831398,0.143703296780586,0.981611490249634,-0.151409164071083,0.00987077318131924,0.988421857357025,0.0433850064873695,0.261097699403763,0.96433687210083,-0.0356251336634159,-0.0482506081461906,0.998199701309204,-0.0715653225779533,0.220032408833504,0.972863852977753,0.0496192313730717,0.782712638378143,0.620401978492737,0.0108866281807423,0.679473221302032,0.733619391918182,0.0433850064873695,0.261097699403763,0.96433687210083,0.212573423981667,0.872259438037872,0.44042694568634,0.129757806658745,0.898173391819,0.420056343078613,0.180904254317284,0.824076890945435,0.536815404891968,0.0720953866839409,0.952698290348053,0.29524239897728,0.129757806658745,0.898173391819,0.420056343078613,0.196115657687187,0.91387152671814,0.355495870113373,0.10782714933157,0.940842747688293,0.321229100227356,-0.0064420597627759,0.960979998111725,0.276542663574219,0.0720953866839409,0.952698290348053,0.29524239897728,-0.0064420597627759,0.960979998111725,0.276542663574219,-0.112749569118023,0.78090500831604,0.614389717578888,0.00109900732059032,0.952879071235657,0.303348302841187,-0.112749569118023,0.78090500831604,0.614389717578888,0.0108866281807423,0.679473221302032,0.733619391918182,0.00109900732059032,0.952879071235657,0.303348302841187,0.245776548981667,0.75172483921051,0.611966907978058,0.180904254317284,0.824076890945435,0.536815404891968,0.133795946836472,0.746883988380432,0.651354610919952,0.234011828899384,0.542003512382507,0.807137250900269,0.313047915697098,0.526129424571991,0.790688753128052,0.239288210868835,0.647522807121277,0.723502039909363,0.239288210868835,0.647522807121277,0.723502039909363,0.310542374849319,0.655100047588348,0.688772201538086,0.245776548981667,0.75172483921051,0.611966907978058,0.30412358045578,0.409574717283249,0.8600914478302,0.234011828899384,0.542003512382507,0.807137250900269,0.202332332730293,0.380738258361816,0.90227484703064, +-0.190191775560379,0.776064872741699,0.601290464401245,-0.203598886728287,0.79917311668396,0.565570294857025,-0.19915409386158,0.729276537895203,0.654593944549561,-0.247785419225693,0.865954995155334,0.434424102306366,-0.268790543079376,0.83925324678421,0.472658038139343,-0.218974053859711,0.833771049976349,0.506829380989075,-0.268790543079376,0.83925324678421,0.472658038139343,-0.311251819133759,0.849400460720062,0.426193654537201,-0.350593030452728,0.817860543727875,0.456276774406433,-0.218974053859711,0.833771049976349,0.506829380989075,-0.203598886728287,0.79917311668396,0.565570294857025,-0.203125864267349,0.835331201553345,0.510843932628632,-0.311251819133759,0.849400460720062,0.426193654537201,-0.371899574995041,0.831559658050537,0.412551939487457,-0.350593030452728,0.817860543727875,0.456276774406433,-0.371809244155884,0.842246532440186,0.390356987714767,-0.371899574995041,0.831559658050537,0.412551939487457,-0.32106676697731,0.869420945644379,0.37553071975708,-0.371809244155884,0.842246532440186,0.390356987714767,-0.370282590389252,0.856281757354736,0.360100328922272,-0.378954887390137,0.838237762451172,0.392110347747803,-0.175146922469139,0.895134150981903,0.409949243068695,-0.234829664230347,0.921063184738159,0.310640633106232,-0.0675895884633064,0.92728579044342,0.36820188164711,-0.0675895884633064,0.92728579044342,0.36820188164711,0.159702852368355,0.939021587371826,0.304521471261978,0.0568487904965878,0.895864903926849,0.440674692392349,0.159702852368355,0.939021587371826,0.304521471261978,0.261161178350449,0.907848596572876,0.328032970428467,0.239254668354988,0.877859473228455,0.414873242378235,0.239254668354988,0.877859473228455,0.414873242378235,0.261161178350449,0.907848596572876,0.328032970428467,0.286287754774094,0.851420104503632,0.439457625150681,-0.0912581086158752,0.530861854553223,0.842530429363251,-0.0434849821031094,0.474163919687271,0.879361987113953,-0.131611049175262,0.468630582094193,0.87353527545929,-0.125651016831398,0.143703296780586,0.981611490249634,-0.0115144234150648,0.182289108633995,0.983177483081818, +-0.028650525957346,0.326502531766891,0.944761991500854,0.0353103689849377,0.329119145870209,0.943627953529358,-0.0115144234150648,0.182289108633995,0.983177483081818,0.083567887544632,0.240023568272591,0.967163383960724,-0.0216795839369297,0.378441274166107,0.925371289253235,0.0353103689849377,0.329119145870209,0.943627953529358,-0.0272205043584108,0.35104975104332,0.935961008071899,-0.0272205043584108,0.35104975104332,0.935961008071899,-0.0743836984038353,0.421213239431381,0.903906166553497,-0.0216795839369297,0.378441274166107,0.925371289253235,-0.131611049175262,0.468630582094193,0.87353527545929,-0.0743836984038353,0.421213239431381,0.903906166553497,-0.137862369418144,0.43934965133667,0.887674331665039,-0.0912581086158752,0.530861854553223,0.842530429363251,-0.115046732127666,0.537694454193115,0.835253715515137,-0.0919720605015755,0.603517055511475,0.792027950286865,-0.110477574169636,0.622964382171631,0.774409413337708,-0.0919720605015755,0.603517055511475,0.792027950286865,-0.0776412412524223,0.678701937198639,0.730298101902008,-0.133227825164795,0.754687547683716,0.642414808273315,-0.140205100178719,0.691294848918915,0.708839774131775,-0.0776412412524223,0.678701937198639,0.730298101902008,-0.190191775560379,0.776064872741699,0.601290464401245,-0.140205100178719,0.691294848918915,0.708839774131775,-0.133227825164795,0.754687547683716,0.642414808273315,0.247626379132271,0.891215980052948,0.380019903182983,0.286287754774094,0.851420104503632,0.439457625150681,0.261161178350449,0.907848596572876,0.328032970428467,0.167736500501633,0.921648263931274,0.349898338317871,0.214313089847565,0.921440839767456,0.32406222820282,0.128392115235329,0.957290768623352,0.259055018424988,0.128392115235329,0.957290768623352,0.259055018424988,0.0114222317934036,0.937671184539795,0.347335934638977,0.167736500501633,0.921648263931274,0.349898338317871,-0.0278551820665598,0.930348932743073,0.365615665912628,-0.104090474545956,0.913772940635681,0.392662793397903,0.0114222317934036,0.937671184539795,0.347335934638977,-0.104090474545956,0.913772940635681,0.392662793397903, +-0.0278551820665598,0.930348932743073,0.365615665912628,-0.0262400489300489,0.888054549694061,0.45898848772049,-0.0232548415660858,0.873414874076843,0.486421167850494,-0.0262400489300489,0.888054549694061,0.45898848772049,0.332922548055649,0.755561828613281,0.564170837402344,0.487268507480621,0.696035504341125,0.527355492115021,-0.0232548415660858,0.873414874076843,0.486421167850494,0.332922548055649,0.755561828613281,0.564170837402344,0.381621122360229,0.787517905235291,0.483922213315964,0.487268507480621,0.696035504341125,0.527355492115021,0.703368842601776,0.604275524616241,0.374330371618271,0.248310551047325,0.930973052978516,0.267639428377151,0.214313089847565,0.921440839767456,0.32406222820282,0.247626379132271,0.891215980052948,0.380019903182983,0.901516497135162,0.123198769986629,0.414837181568146,0.889515936374664,0.062331173568964,0.452632457017899,0.859439492225647,0.0908604338765144,0.503098428249359,0.849613189697266,0.251917123794556,0.463352024555206,0.901516497135162,0.123198769986629,0.414837181568146,0.861381411552429,0.159530833363533,0.482257038354874,0.870687305927277,0.334379255771637,0.360685497522354,0.849613189697266,0.251917123794556,0.463352024555206,0.749042332172394,0.501021683216095,0.433488965034485,0.749042332172394,0.501021683216095,0.433488965034485,0.381621122360229,0.787517905235291,0.483922213315964,0.703368842601776,0.604275524616241,0.374330371618271,0.889515936374664,0.062331173568964,0.452632457017899,0.870846688747406,0.165614768862724,0.462814927101135,0.845514535903931,0.034278754144907,0.532850801944733,0.753895342350006,0.10707651078701,0.648210048675537,0.725337684154511,0.09644815325737,0.681603133678436,0.733306288719177,-0.0754149407148361,0.675702929496765,0.753895342350006,0.10707651078701,0.648210048675537,0.761091649532318,0.112224392592907,0.638862311840057,0.717521369457245,0.176224857568741,0.673875153064728,0.761091649532318,0.112224392592907,0.638862311840057,0.795047760009766,0.144300177693367,0.589131891727448,0.717521369457245,0.176224857568741,0.673875153064728, +0.733306288719177,-0.0754149407148361,0.675702929496765,0.684216737747192,-0.0822338908910751,0.724627435207367,0.650203287601471,-0.215958446264267,0.728421211242676,0.795047760009766,0.144300177693367,0.589131891727448,0.870846688747406,0.165614768862724,0.462814927101135,0.833220779895782,0.258167296648026,0.488970994949341,0.650203287601471,-0.215958446264267,0.728421211242676,0.563770413398743,-0.101601220667362,0.819658398628235,0.518583714962006,-0.259198158979416,0.81479275226593,0.525852859020233,-0.238959208130836,0.816319227218628,0.456511974334717,-0.336588084697723,0.823592841625214,0.518583714962006,-0.259198158979416,0.81479275226593,0.511068761348724,-0.383843779563904,0.769072473049164,0.456511974334717,-0.336588084697723,0.823592841625214,0.525852859020233,-0.238959208130836,0.816319227218628,0.576517879962921,-0.489757806062698,0.65403687953949,0.420312404632568,-0.529822945594788,0.736630797386169,0.511068761348724,-0.383843779563904,0.769072473049164,0.579044759273529,-0.588093042373657,0.564671158790588,0.420312404632568,-0.529822945594788,0.736630797386169,0.576517879962921,-0.489757806062698,0.65403687953949,0.496982485055923,-0.668016731739044,0.553860902786255,0.519362688064575,-0.493750900030136,0.697475671768188,0.654901027679443,-0.624111235141754,0.426133364439011,0.228182777762413,-0.296950876712799,0.927228510379791,0.496982485055923,-0.668016731739044,0.553860902786255,0.306534439325333,-0.433536976575851,0.847397327423096,0.643270194530487,-0.562820374965668,0.519072890281677,0.704958975315094,-0.577041625976563,0.41237798333168,0.654901027679443,-0.624111235141754,0.426133364439011,0.675114154815674,-0.517472326755524,0.525778532028198,0.704958975315094,-0.577041625976563,0.41237798333168,0.579044759273529,-0.588093042373657,0.564671158790588,0.196403384208679,-0.153244316577911,0.968473970890045,0.346138834953308,-0.330932378768921,0.877879023551941,0.227175056934357,-0.265602827072144,0.936934649944305,0.196403384208679,-0.153244316577911,0.968473970890045,0.158412784337997,-0.0286261644214392,0.986957848072052, +0.332726091146469,-0.147056326270103,0.931486785411835,0.42683419585228,-0.497022897005081,0.755500316619873,0.273366361856461,-0.570750534534454,0.774283170700073,0.31122362613678,-0.450541436672211,0.836750984191895,0.158412784337997,-0.0286261644214392,0.986957848072052,0.330249428749084,0.0170612670481205,0.943739414215088,0.332726091146469,-0.147056326270103,0.931486785411835,0.579087018966675,-0.185492888092995,0.793883144855499,0.638917148113251,-0.119618460536003,0.759918510913849,0.611268937587738,-0.302311152219772,0.731408357620239,0.462737858295441,-0.0702100619673729,0.883710384368896,0.638917148113251,-0.119618460536003,0.759918510913849,0.548048377037048,0.0629874095320702,0.834071576595306,0.211570799350739,-0.365890234708786,0.906290233135223,0.442123591899872,-0.335992395877838,0.83164644241333,0.31122362613678,-0.450541436672211,0.836750984191895,0.442123591899872,-0.335992395877838,0.83164644241333,0.395094573497772,-0.235732704401016,0.887879610061646,0.579087018966675,-0.185492888092995,0.793883144855499,0.330249428749084,0.0170612670481205,0.943739414215088,0.548048377037048,0.0629874095320702,0.834071576595306,0.533571779727936,0.0664401799440384,0.843140959739685,0.486893236637115,0.221341729164124,0.844951272010803,0.380480974912643,0.270206719636917,0.884433388710022,0.355117648839951,0.293870389461517,0.887429714202881,0.380480974912643,0.270206719636917,0.884433388710022,0.473797857761383,-0.10476515442133,0.874379634857178,0.354949861764908,0.227069184184074,0.906890332698822,0.498282194137573,0.0770204067230225,0.863587021827698,0.581034898757935,0.0350375585258007,0.813124001026154,0.486893236637115,0.221341729164124,0.844951272010803,0.577619969844818,-0.069207675755024,0.813366651535034,0.644232928752899,-0.169619619846344,0.745783448219299,0.581034898757935,0.0350375585258007,0.813124001026154,0.457970947027206,-0.223447516560555,0.860426485538483,0.431529104709625,-0.524264693260193,0.734117865562439,0.449176847934723,-0.317531019449234,0.835113227367401,0.45675590634346,-0.515695035457611,0.724867224693298, +0.449176847934723,-0.317531019449234,0.835113227367401,0.431529104709625,-0.524264693260193,0.734117865562439,0.473797857761383,-0.10476515442133,0.874379634857178,0.459507435560226,-0.551141798496246,0.69648802280426,0.457970947027206,-0.223447516560555,0.860426485538483,0.727962851524353,-0.350361049175262,0.589336097240448,0.593823134899139,-0.216114103794098,0.775028109550476,0.652537822723389,-0.449162155389786,0.610284805297852,0.652537822723389,-0.449162155389786,0.610284805297852,0.642636895179749,-0.650201082229614,0.405285507440567,0.725247621536255,-0.551386713981628,0.412296622991562,0.644232928752899,-0.169619619846344,0.745783448219299,0.593823134899139,-0.216114103794098,0.775028109550476,0.727962851524353,-0.350361049175262,0.589336097240448,0.3779356777668,-0.580151438713074,0.721518397331238,0.273366361856461,-0.570750534534454,0.774283170700073,0.42683419585228,-0.497022897005081,0.755500316619873,0.431529104709625,-0.524264693260193,0.734117865562439,0.3779356777668,-0.580151438713074,0.721518397331238,0.45675590634346,-0.515695035457611,0.724867224693298,0.346138834953308,-0.330932378768921,0.877879023551941,0.424105048179626,-0.421229779720306,0.801685869693756,0.332927405834198,-0.434002727270126,0.837138533592224,-0.0777115076780319,-0.136967435479164,0.987522542476654,0.0358700305223465,-0.130511805415154,0.990797638893127,-0.00970171578228474,-0.163583785295486,0.986481666564941,0.0267279967665672,-0.0226760450750589,0.999385476112366,-0.0777115076780319,-0.136967435479164,0.987522542476654,-0.0352551713585854,-0.00724665774032474,0.999352037906647,0.424636393785477,-0.188246324658394,0.885577261447906,0.533834278583527,-0.3728067278862,0.758970320224762,0.609364092350006,-0.202266320586205,0.766657412052155,0.533834278583527,-0.3728067278862,0.758970320224762,0.401609867811203,-0.359731465578079,0.842201054096222,0.424105048179626,-0.421229779720306,0.801685869693756,0.609364092350006,-0.202266320586205,0.766657412052155,0.479864090681076,-0.0362855084240437,0.876592099666595,0.50696188211441,-0.0489546768367291,0.86057710647583, +-0.0777115076780319,-0.136967435479164,0.987522542476654,-0.00970171578228474,-0.163583785295486,0.986481666564941,0.0660471841692925,-0.160469442605972,0.984828531742096,0.236759230494499,-0.0632953196763992,0.969504356384277,0.334105134010315,-0.105962336063385,0.936560571193695,0.196599990129471,-0.16146445274353,0.967097461223602,0.196599990129471,-0.16146445274353,0.967097461223602,0.210591197013855,-0.146390616893768,0.966551125049591,0.0660471841692925,-0.160469442605972,0.984828531742096,0.479864090681076,-0.0362855084240437,0.876592099666595,0.384144246578217,-0.167515695095062,0.907949149608612,0.334105134010315,-0.105962336063385,0.936560571193695,0.222118750214577,0.022307651117444,0.974764347076416,0.0267279967665672,-0.0226760450750589,0.999385476112366,0.0181596595793962,0.0964839830994606,0.995168805122375,0.386414736509323,-0.0481171458959579,0.921069145202637,0.222118750214577,0.022307651117444,0.974764347076416,0.450994789600372,-0.0293684490025043,0.892043173313141,0.450994789600372,-0.0293684490025043,0.892043173313141,0.470000982284546,0.0902432426810265,0.878040492534637,0.500188171863556,-0.0413050875067711,0.864930927753448,0.338858515024185,0.17530058324337,0.924361705780029,0.470000982284546,0.0902432426810265,0.878040492534637,0.383732378482819,0.0719972550868988,0.920633316040039,0.338858515024185,0.17530058324337,0.924361705780029,0.383732378482819,0.0719972550868988,0.920633316040039,0.194042965769768,0.064727783203125,0.97885525226593,0.158430337905884,-0.105434514582157,0.981724679470062,0.0421166867017746,-0.0331572629511356,0.998562276363373,0.194042965769768,0.064727783203125,0.97885525226593,0.0421166867017746,-0.0331572629511356,0.998562276363373,0.0540701262652874,-0.00424614734947681,0.998528063297272,0.00388403725810349,0.0494643598794937,0.998768329620361,0.0540701262652874,-0.00424614734947681,0.998528063297272,0.0170439686626196,0.198112040758133,0.980031132698059,0.00388403725810349,0.0494643598794937,0.998768329620361,0.30412358045578,0.409574717283249,0.8600914478302, +0.202332332730293,0.380738258361816,0.90227484703064,0.208017364144325,0.315430462360382,0.925868391990662,0.112164318561554,0.346320927143097,0.931386530399323,0.137911349534988,0.255326420068741,0.956968545913696,0.0582083575427532,0.295616030693054,0.953531801700592,0.0707326158881187,0.295081377029419,0.952850341796875,0.0582083575427532,0.295616030693054,0.953531801700592,0.0170439686626196,0.198112040758133,0.980031132698059,0.197703123092651,0.407277196645737,0.89164936542511,0.208017364144325,0.315430462360382,0.925868391990662,0.112164318561554,0.346320927143097,0.931386530399323,-0.00723437825217843,-0.0348329469561577,0.999366939067841,-0.0963509976863861,-0.0946151912212372,0.990840196609497,-0.0356251336634159,-0.0482506081461906,0.998199701309204,-0.00723437825217843,-0.0348329469561577,0.999366939067841,-0.0866729840636253,-0.0116001218557358,0.996169209480286,-0.0963509976863861,-0.0946151912212372,0.990840196609497,-0.125651016831398,0.143703296780586,0.981611490249634,-0.0866729840636253,-0.0116001218557358,0.996169209480286,-0.0115144234150648,0.182289108633995,0.983177483081818,0.0433850064873695,0.261097699403763,0.96433687210083,-0.101764678955078,0.235011115670204,0.966650724411011,-0.0356251336634159,-0.0482506081461906,0.998199701309204,0.0433850064873695,0.261097699403763,0.96433687210083,0.0108866281807423,0.679473221302032,0.733619391918182,-0.101764678955078,0.235011115670204,0.966650724411011,0.212573423981667,0.872259438037872,0.44042694568634,0.196115657687187,0.91387152671814,0.355495870113373,0.129757806658745,0.898173391819,0.420056343078613,0.180904254317284,0.824076890945435,0.536815404891968,0.227061703801155,0.845456182956696,0.483370184898376,0.212573423981667,0.872259438037872,0.44042694568634,0.10782714933157,0.940842747688293,0.321229100227356,0.0720953866839409,0.952698290348053,0.29524239897728,0.196115657687187,0.91387152671814,0.355495870113373,0.10782714933157,0.940842747688293,0.321229100227356,-0.0201575793325901,0.86247992515564,0.50568950176239,-0.0064420597627759,0.960979998111725,0.276542663574219, +-0.112749569118023,0.78090500831604,0.614389717578888,-0.0064420597627759,0.960979998111725,0.276542663574219,-0.0201575793325901,0.86247992515564,0.50568950176239,-0.112749569118023,0.78090500831604,0.614389717578888,-0.101764678955078,0.235011115670204,0.966650724411011,0.0108866281807423,0.679473221302032,0.733619391918182,0.180904254317284,0.824076890945435,0.536815404891968,0.245776548981667,0.75172483921051,0.611966907978058,0.227061703801155,0.845456182956696,0.483370184898376,0.234011828899384,0.542003512382507,0.807137250900269,0.30412358045578,0.409574717283249,0.8600914478302,0.313047915697098,0.526129424571991,0.790688753128052,0.239288210868835,0.647522807121277,0.723502039909363,0.313047915697098,0.526129424571991,0.790688753128052,0.310542374849319,0.655100047588348,0.688772201538086,0.310542374849319,0.655100047588348,0.688772201538086,0.251410961151123,0.802416682243347,0.541220664978027,0.245776548981667,0.75172483921051,0.611966907978058,-0.190191775560379,0.776064872741699,0.601290464401245,-0.134479597210884,0.814412713050842,0.564488291740417,-0.203598886728287,0.79917311668396,0.565570294857025,-0.247785419225693,0.865954995155334,0.434424102306366,-0.311251819133759,0.849400460720062,0.426193654537201,-0.268790543079376,0.83925324678421,0.472658038139343,-0.203125864267349,0.835331201553345,0.510843932628632,-0.247785419225693,0.865954995155334,0.434424102306366,-0.218974053859711,0.833771049976349,0.506829380989075,-0.203125864267349,0.835331201553345,0.510843932628632,-0.203598886728287,0.79917311668396,0.565570294857025,-0.130151435732841,0.824181258678436,0.551167547702789,-0.371899574995041,0.831559658050537,0.412551939487457,-0.311251819133759,0.849400460720062,0.426193654537201,-0.32106676697731,0.869420945644379,0.37553071975708,-0.370282590389252,0.856281757354736,0.360100328922272,-0.371809244155884,0.842246532440186,0.390356987714767,-0.32106676697731,0.869420945644379,0.37553071975708,-0.234829664230347,0.921063184738159,0.310640633106232,-0.110555455088615,0.961312830448151,0.252299427986145, +-0.0675895884633064,0.92728579044342,0.36820188164711,0.159702852368355,0.939021587371826,0.304521471261978,-0.0675895884633064,0.92728579044342,0.36820188164711,0.0166161507368088,0.969983041286469,0.242603942751884,0.159702852368355,0.939021587371826,0.304521471261978,0.284644275903702,0.943514883518219,0.16957950592041,0.261161178350449,0.907848596572876,0.328032970428467,-0.0912581086158752,0.530861854553223,0.842530429363251,-0.131611049175262,0.468630582094193,0.87353527545929,-0.115046732127666,0.537694454193115,0.835253715515137,0.083567887544632,0.240023568272591,0.967163383960724,-0.0115144234150648,0.182289108633995,0.983177483081818,0.0132211623713374,0.0785951241850853,0.996818900108337,0.083567887544632,0.240023568272591,0.967163383960724,0.0514616444706917,0.279963612556458,0.958630263805389,0.0353103689849377,0.329119145870209,0.943627953529358,-0.0272205043584108,0.35104975104332,0.935961008071899,0.0353103689849377,0.329119145870209,0.943627953529358,0.0514616444706917,0.279963612556458,0.958630263805389,-0.0743836984038353,0.421213239431381,0.903906166553497,-0.0272205043584108,0.35104975104332,0.935961008071899,-0.0547223053872585,0.428312569856644,0.901972115039825,-0.0743836984038353,0.421213239431381,0.903906166553497,-0.0547223053872585,0.428312569856644,0.901972115039825,-0.137862369418144,0.43934965133667,0.887674331665039,-0.131611049175262,0.468630582094193,0.87353527545929,-0.137862369418144,0.43934965133667,0.887674331665039,-0.125923648476601,0.487240254878998,0.864141225814819,-0.115046732127666,0.537694454193115,0.835253715515137,-0.0019079118501395,0.575022280216217,0.818135499954224,-0.0919720605015755,0.603517055511475,0.792027950286865,-0.0776412412524223,0.678701937198639,0.730298101902008,-0.0919720605015755,0.603517055511475,0.792027950286865,-0.0353757329285145,0.696689307689667,0.716500103473663,-0.133227825164795,0.754687547683716,0.642414808273315,-0.0776412412524223,0.678701937198639,0.730298101902008,-0.0699245110154152,0.730570137500763,0.679247975349426,-0.190191775560379,0.776064872741699,0.601290464401245, +-0.133227825164795,0.754687547683716,0.642414808273315,-0.134479597210884,0.814412713050842,0.564488291740417,0.261161178350449,0.907848596572876,0.328032970428467,0.248310551047325,0.930973052978516,0.267639428377151,0.247626379132271,0.891215980052948,0.380019903182983,0.128392115235329,0.957290768623352,0.259055018424988,0.214313089847565,0.921440839767456,0.32406222820282,0.248310551047325,0.930973052978516,0.267639428377151,0.128392115235329,0.957290768623352,0.259055018424988,0.075224258005619,0.947177827358246,0.311761826276779,0.0114222317934036,0.937671184539795,0.347335934638977,-0.0278551820665598,0.930348932743073,0.365615665912628,0.0114222317934036,0.937671184539795,0.347335934638977,0.075224258005619,0.947177827358246,0.311761826276779,-0.0262400489300489,0.888054549694061,0.45898848772049,-0.0278551820665598,0.930348932743073,0.365615665912628,0.235151126980782,0.870574414730072,0.432208240032196,-0.0262400489300489,0.888054549694061,0.45898848772049,0.235151126980782,0.870574414730072,0.432208240032196,0.332922548055649,0.755561828613281,0.564170837402344,0.487268507480621,0.696035504341125,0.527355492115021,0.332922548055649,0.755561828613281,0.564170837402344,0.721217513084412,0.444100230932236,0.531620264053345,0.703368842601776,0.604275524616241,0.374330371618271,0.487268507480621,0.696035504341125,0.527355492115021,0.79304975271225,0.43667808175087,0.424716770648956,0.889515936374664,0.062331173568964,0.452632457017899,0.901516497135162,0.123198769986629,0.414837181568146,0.870846688747406,0.165614768862724,0.462814927101135,0.890147149562836,0.21664223074913,0.400879055261612,0.901516497135162,0.123198769986629,0.414837181568146,0.849613189697266,0.251917123794556,0.463352024555206,0.870687305927277,0.334379255771637,0.360685497522354,0.89800900220871,0.260620057582855,0.354481130838394,0.849613189697266,0.251917123794556,0.463352024555206,0.749042332172394,0.501021683216095,0.433488965034485,0.703368842601776,0.604275524616241,0.374330371618271,0.870687305927277,0.334379255771637,0.360685497522354, +0.753895342350006,0.10707651078701,0.648210048675537,0.708331108093262,0.205853700637817,0.675197124481201,0.725337684154511,0.09644815325737,0.681603133678436,0.733306288719177,-0.0754149407148361,0.675702929496765,0.725337684154511,0.09644815325737,0.681603133678436,0.684216737747192,-0.0822338908910751,0.724627435207367,0.753895342350006,0.10707651078701,0.648210048675537,0.717521369457245,0.176224857568741,0.673875153064728,0.708331108093262,0.205853700637817,0.675197124481201,0.741834938526154,0.263561874628067,0.616616487503052,0.717521369457245,0.176224857568741,0.673875153064728,0.795047760009766,0.144300177693367,0.589131891727448,0.563770413398743,-0.101601220667362,0.819658398628235,0.650203287601471,-0.215958446264267,0.728421211242676,0.684216737747192,-0.0822338908910751,0.724627435207367,0.890147149562836,0.21664223074913,0.400879055261612,0.833220779895782,0.258167296648026,0.488970994949341,0.870846688747406,0.165614768862724,0.462814927101135,0.741834938526154,0.263561874628067,0.616616487503052,0.795047760009766,0.144300177693367,0.589131891727448,0.833220779895782,0.258167296648026,0.488970994949341,0.515542209148407,-0.0974207893013954,0.851308047771454,0.518583714962006,-0.259198158979416,0.81479275226593,0.563770413398743,-0.101601220667362,0.819658398628235,0.525852859020233,-0.238959208130836,0.816319227218628,0.518583714962006,-0.259198158979416,0.81479275226593,0.515542209148407,-0.0974207893013954,0.851308047771454,0.525852859020233,-0.238959208130836,0.816319227218628,0.668386161327362,-0.288619518280029,0.685535311698914,0.511068761348724,-0.383843779563904,0.769072473049164,0.678755879402161,-0.428910702466965,0.596092164516449,0.576517879962921,-0.489757806062698,0.65403687953949,0.511068761348724,-0.383843779563904,0.769072473049164,0.579044759273529,-0.588093042373657,0.564671158790588,0.576517879962921,-0.489757806062698,0.65403687953949,0.675114154815674,-0.517472326755524,0.525778532028198,0.654901027679443,-0.624111235141754,0.426133364439011,0.683156430721283,-0.660563468933105,0.311372846364975, +0.496982485055923,-0.668016731739044,0.553860902786255,0.654901027679443,-0.624111235141754,0.426133364439011,0.704958975315094,-0.577041625976563,0.41237798333168,0.683156430721283,-0.660563468933105,0.311372846364975,0.704958975315094,-0.577041625976563,0.41237798333168,0.675114154815674,-0.517472326755524,0.525778532028198,0.773318886756897,-0.465731561183929,0.430199891328812,0.196403384208679,-0.153244316577911,0.968473970890045,0.332726091146469,-0.147056326270103,0.931486785411835,0.346138834953308,-0.330932378768921,0.877879023551941,0.31122362613678,-0.450541436672211,0.836750984191895,0.273366361856461,-0.570750534534454,0.774283170700073,0.188344940543175,-0.509777724742889,0.839435994625092,0.332726091146469,-0.147056326270103,0.931486785411835,0.330249428749084,0.0170612670481205,0.943739414215088,0.513966500759125,-0.127381563186646,0.848299622535706,0.579087018966675,-0.185492888092995,0.793883144855499,0.602113425731659,7.33628257876262e-005,0.798410475254059,0.638917148113251,-0.119618460536003,0.759918510913849,0.548048377037048,0.0629874095320702,0.834071576595306,0.638917148113251,-0.119618460536003,0.759918510913849,0.602113425731659,7.33628257876262e-005,0.798410475254059,0.211570799350739,-0.365890234708786,0.906290233135223,0.395094573497772,-0.235732704401016,0.887879610061646,0.442123591899872,-0.335992395877838,0.83164644241333,0.31122362613678,-0.450541436672211,0.836750984191895,0.188344940543175,-0.509777724742889,0.839435994625092,0.211570799350739,-0.365890234708786,0.906290233135223,0.52545702457428,-0.0928211286664009,0.84574168920517,0.579087018966675,-0.185492888092995,0.793883144855499,0.395094573497772,-0.235732704401016,0.887879610061646,0.548048377037048,0.0629874095320702,0.834071576595306,0.57683664560318,0.0730307176709175,0.813588261604309,0.533571779727936,0.0664401799440384,0.843140959739685,0.330249428749084,0.0170612670481205,0.943739414215088,0.533571779727936,0.0664401799440384,0.843140959739685,0.513966500759125,-0.127381563186646,0.848299622535706,0.439580261707306,0.250936239957809,0.862438440322876, +0.380480974912643,0.270206719636917,0.884433388710022,0.486893236637115,0.221341729164124,0.844951272010803,0.471370249986649,0.00124359678011388,0.881934463977814,0.473797857761383,-0.10476515442133,0.874379634857178,0.380480974912643,0.270206719636917,0.884433388710022,0.569673001766205,0.126119762659073,0.812136888504028,0.486893236637115,0.221341729164124,0.844951272010803,0.581034898757935,0.0350375585258007,0.813124001026154,0.643970370292664,-0.0537489913403988,0.763159930706024,0.581034898757935,0.0350375585258007,0.813124001026154,0.644232928752899,-0.169619619846344,0.745783448219299,0.459507435560226,-0.551141798496246,0.69648802280426,0.431529104709625,-0.524264693260193,0.734117865562439,0.457970947027206,-0.223447516560555,0.860426485538483,0.459507435560226,-0.551141798496246,0.69648802280426,0.473797857761383,-0.10476515442133,0.874379634857178,0.54112046957016,-0.4202581346035,0.728403449058533,0.727962851524353,-0.350361049175262,0.589336097240448,0.652537822723389,-0.449162155389786,0.610284805297852,0.725247621536255,-0.551386713981628,0.412296622991562,0.678994357585907,-0.677961111068726,0.281664997339249,0.725247621536255,-0.551386713981628,0.412296622991562,0.642636895179749,-0.650201082229614,0.405285507440567,0.727962851524353,-0.350361049175262,0.589336097240448,0.712035417556763,-0.286907225847244,0.640850722789764,0.644232928752899,-0.169619619846344,0.745783448219299,0.3779356777668,-0.580151438713074,0.721518397331238,0.319755643606186,-0.635137319564819,0.703105032444,0.273366361856461,-0.570750534534454,0.774283170700073,0.3779356777668,-0.580151438713074,0.721518397331238,0.431529104709625,-0.524264693260193,0.734117865562439,0.319755643606186,-0.635137319564819,0.703105032444,0.491368323564529,-0.338214308023453,0.802600860595703,0.424105048179626,-0.421229779720306,0.801685869693756,0.346138834953308,-0.330932378768921,0.877879023551941,0.0660471841692925,-0.160469442605972,0.984828531742096,-0.0352551713585854,-0.00724665774032474,0.999352037906647,-0.0777115076780319,-0.136967435479164,0.987522542476654, +0.0267279967665672,-0.0226760450750589,0.999385476112366,-0.0352551713585854,-0.00724665774032474,0.999352037906647,0.0181596595793962,0.0964839830994606,0.995168805122375,0.533834278583527,-0.3728067278862,0.758970320224762,0.619894444942474,-0.311094373464584,0.720382630825043,0.609364092350006,-0.202266320586205,0.766657412052155,0.533834278583527,-0.3728067278862,0.758970320224762,0.424105048179626,-0.421229779720306,0.801685869693756,0.491368323564529,-0.338214308023453,0.802600860595703,0.609364092350006,-0.202266320586205,0.766657412052155,0.44224813580513,-0.22270679473877,0.868802726268768,0.479864090681076,-0.0362855084240437,0.876592099666595,0.316795140504837,-0.154013782739639,0.935906231403351,0.196599990129471,-0.16146445274353,0.967097461223602,0.334105134010315,-0.105962336063385,0.936560571193695,0.316795140504837,-0.154013782739639,0.935906231403351,0.210591197013855,-0.146390616893768,0.966551125049591,0.196599990129471,-0.16146445274353,0.967097461223602,0.0660471841692925,-0.160469442605972,0.984828531742096,0.210591197013855,-0.146390616893768,0.966551125049591,0.127677500247955,-0.00961600989103317,0.991769075393677,0.384144246578217,-0.167515695095062,0.907949149608612,0.479864090681076,-0.0362855084240437,0.876592099666595,0.44224813580513,-0.22270679473877,0.868802726268768,0.39928925037384,-0.100698843598366,0.911278069019318,0.334105134010315,-0.105962336063385,0.936560571193695,0.384144246578217,-0.167515695095062,0.907949149608612,0.0181596595793962,0.0964839830994606,0.995168805122375,0.276928007602692,-0.0188802964985371,0.960705101490021,0.222118750214577,0.022307651117444,0.974764347076416,0.450994789600372,-0.0293684490025043,0.892043173313141,0.222118750214577,0.022307651117444,0.974764347076416,0.276928007602692,-0.0188802964985371,0.960705101490021,0.470000982284546,0.0902432426810265,0.878040492534637,0.450994789600372,-0.0293684490025043,0.892043173313141,0.383732378482819,0.0719972550868988,0.920633316040039,0.194042965769768,0.064727783203125,0.97885525226593,0.383732378482819,0.0719972550868988,0.920633316040039, +0.311840623617172,-0.0737160891294479,0.947270452976227,0.0540701262652874,-0.00424614734947681,0.998528063297272,0.0421166867017746,-0.0331572629511356,0.998562276363373,0.158430337905884,-0.105434514582157,0.981724679470062,0.194042965769768,0.064727783203125,0.97885525226593,0.311840623617172,-0.0737160891294479,0.947270452976227,0.158430337905884,-0.105434514582157,0.981724679470062,0.0540701262652874,-0.00424614734947681,0.998528063297272,0.0795867219567299,0.130899995565414,0.988195836544037,0.0170439686626196,0.198112040758133,0.980031132698059,0.30412358045578,0.409574717283249,0.8600914478302,0.208017364144325,0.315430462360382,0.925868391990662,0.27626770734787,0.382918566465378,0.881504118442535,0.0707326158881187,0.295081377029419,0.952850341796875,0.112164318561554,0.346320927143097,0.931386530399323,0.0582083575427532,0.295616030693054,0.953531801700592,0.0707326158881187,0.295081377029419,0.952850341796875,0.0170439686626196,0.198112040758133,0.980031132698059,0.0795867219567299,0.130899995565414,0.988195836544037,0.197703123092651,0.407277196645737,0.89164936542511,0.27626770734787,0.382918566465378,0.881504118442535,0.208017364144325,0.315430462360382,0.925868391990662,0.197703123092651,0.407277196645737,0.89164936542511,0.112164318561554,0.346320927143097,0.931386530399323,0.122164316475391,0.387442201375961,0.913763701915741,-0.0356251336634159,-0.0482506081461906,0.998199701309204,-0.00410858355462551,0.000159960676683113,0.999991476535797,-0.00723437825217843,-0.0348329469561577,0.999366939067841,-0.0866729840636253,-0.0116001218557358,0.996169209480286,-0.00723437825217843,-0.0348329469561577,0.999366939067841,0.0132211623713374,0.0785951241850853,0.996818900108337,0.0132211623713374,0.0785951241850853,0.996818900108337,-0.0115144234150648,0.182289108633995,0.983177483081818,-0.0866729840636253,-0.0116001218557358,0.996169209480286,-0.0356251336634159,-0.0482506081461906,0.998199701309204,-0.101764678955078,0.235011115670204,0.966650724411011,-0.00410858355462551,0.000159960676683113,0.999991476535797, +0.172042667865753,0.896263182163239,0.408795267343521,0.196115657687187,0.91387152671814,0.355495870113373,0.212573423981667,0.872259438037872,0.44042694568634,0.172042667865753,0.896263182163239,0.408795267343521,0.212573423981667,0.872259438037872,0.44042694568634,0.227061703801155,0.845456182956696,0.483370184898376,0.10782714933157,0.940842747688293,0.321229100227356,0.196115657687187,0.91387152671814,0.355495870113373,0.172042667865753,0.896263182163239,0.408795267343521,-0.0201575793325901,0.86247992515564,0.50568950176239,0.10782714933157,0.940842747688293,0.321229100227356,0.00946624763309956,0.847232937812805,0.531137049198151,-0.112749569118023,0.78090500831604,0.614389717578888,-0.0201575793325901,0.86247992515564,0.50568950176239,-0.0763430818915367,0.492704629898071,0.8668412566185,-0.131930530071259,0.26743084192276,0.954502463340759,-0.101764678955078,0.235011115670204,0.966650724411011,-0.112749569118023,0.78090500831604,0.614389717578888,0.227061703801155,0.845456182956696,0.483370184898376,0.245776548981667,0.75172483921051,0.611966907978058,0.251410961151123,0.802416682243347,0.541220664978027,0.30412358045578,0.409574717283249,0.8600914478302,0.348604291677475,0.428204417228699,0.833736121654511,0.313047915697098,0.526129424571991,0.790688753128052,0.341940134763718,0.480908334255219,0.807343780994415,0.310542374849319,0.655100047588348,0.688772201538086,0.313047915697098,0.526129424571991,0.790688753128052,0.262873411178589,0.755711019039154,0.599831879138947,0.251410961151123,0.802416682243347,0.541220664978027,0.310542374849319,0.655100047588348,0.688772201538086,-0.203598886728287,0.79917311668396,0.565570294857025,-0.134479597210884,0.814412713050842,0.564488291740417,-0.130151435732841,0.824181258678436,0.551167547702789,-0.311251819133759,0.849400460720062,0.426193654537201,-0.247785419225693,0.865954995155334,0.434424102306366,-0.32106676697731,0.869420945644379,0.37553071975708,-0.0675895884633064,0.92728579044342,0.36820188164711,-0.110555455088615,0.961312830448151,0.252299427986145, +0.0166161507368088,0.969983041286469,0.242603942751884,0.159702852368355,0.939021587371826,0.304521471261978,0.0166161507368088,0.969983041286469,0.242603942751884,0.113144584000111,0.98102331161499,0.157453000545502,0.284644275903702,0.943514883518219,0.16957950592041,0.159702852368355,0.939021587371826,0.304521471261978,0.113144584000111,0.98102331161499,0.157453000545502,0.261161178350449,0.907848596572876,0.328032970428467,0.284644275903702,0.943514883518219,0.16957950592041,0.248310551047325,0.930973052978516,0.267639428377151,-0.125923648476601,0.487240254878998,0.864141225814819,-0.115046732127666,0.537694454193115,0.835253715515137,-0.131611049175262,0.468630582094193,0.87353527545929,0.083567887544632,0.240023568272591,0.967163383960724,0.0132211623713374,0.0785951241850853,0.996818900108337,0.125151544809341,0.150098383426666,0.980717837810516,0.0514616444706917,0.279963612556458,0.958630263805389,0.083567887544632,0.240023568272591,0.967163383960724,0.125196561217308,0.250160127878189,0.960075855255127,-0.0272205043584108,0.35104975104332,0.935961008071899,0.0514616444706917,0.279963612556458,0.958630263805389,0.0100334007292986,0.312331259250641,0.949920237064362,-0.0272205043584108,0.35104975104332,0.935961008071899,0.0100334007292986,0.312331259250641,0.949920237064362,-0.0547223053872585,0.428312569856644,0.901972115039825,-0.0547223053872585,0.428312569856644,0.901972115039825,-0.125923648476601,0.487240254878998,0.864141225814819,-0.137862369418144,0.43934965133667,0.887674331665039,-0.115046732127666,0.537694454193115,0.835253715515137,-0.0298803467303514,0.513960301876068,0.857293307781219,-0.0019079118501395,0.575022280216217,0.818135499954224,-0.0108718099072576,0.639894366264343,0.768385887145996,-0.0919720605015755,0.603517055511475,0.792027950286865,-0.0019079118501395,0.575022280216217,0.818135499954224,-0.0108718099072576,0.639894366264343,0.768385887145996,-0.0353757329285145,0.696689307689667,0.716500103473663,-0.0919720605015755,0.603517055511475,0.792027950286865,-0.0776412412524223,0.678701937198639,0.730298101902008, +-0.0353757329285145,0.696689307689667,0.716500103473663,-0.0320500247180462,0.774002730846405,0.632370471954346,-0.0699245110154152,0.730570137500763,0.679247975349426,-0.0776412412524223,0.678701937198639,0.730298101902008,-0.0320500247180462,0.774002730846405,0.632370471954346,-0.133227825164795,0.754687547683716,0.642414808273315,-0.0699245110154152,0.730570137500763,0.679247975349426,-0.0320500247180462,0.774002730846405,0.632370471954346,-0.133227825164795,0.754687547683716,0.642414808273315,-0.0320500247180462,0.774002730846405,0.632370471954346,-0.134479597210884,0.814412713050842,0.564488291740417,0.241195008158684,0.952982842922211,0.183435320854187,0.128392115235329,0.957290768623352,0.259055018424988,0.248310551047325,0.930973052978516,0.267639428377151,0.128392115235329,0.957290768623352,0.259055018424988,0.10290739685297,0.969109237194061,0.224136829376221,0.075224258005619,0.947177827358246,0.311761826276779,0.075224258005619,0.947177827358246,0.311761826276779,0.235151126980782,0.870574414730072,0.432208240032196,-0.0278551820665598,0.930348932743073,0.365615665912628,0.332922548055649,0.755561828613281,0.564170837402344,0.235151126980782,0.870574414730072,0.432208240032196,0.629519820213318,0.61295074224472,0.477489441633224,0.629519820213318,0.61295074224472,0.477489441633224,0.721217513084412,0.444100230932236,0.531620264053345,0.332922548055649,0.755561828613281,0.564170837402344,0.79304975271225,0.43667808175087,0.424716770648956,0.487268507480621,0.696035504341125,0.527355492115021,0.721217513084412,0.444100230932236,0.531620264053345,0.870687305927277,0.334379255771637,0.360685497522354,0.703368842601776,0.604275524616241,0.374330371618271,0.79304975271225,0.43667808175087,0.424716770648956,0.890147149562836,0.21664223074913,0.400879055261612,0.870846688747406,0.165614768862724,0.462814927101135,0.901516497135162,0.123198769986629,0.414837181568146,0.849613189697266,0.251917123794556,0.463352024555206,0.89800900220871,0.260620057582855,0.354481130838394,0.890147149562836,0.21664223074913,0.400879055261612, +0.89800900220871,0.260620057582855,0.354481130838394,0.870687305927277,0.334379255771637,0.360685497522354,0.888113737106323,0.253452062606812,0.383426487445831,0.708331108093262,0.205853700637817,0.675197124481201,0.682342350482941,0.23908469080925,0.690830886363983,0.725337684154511,0.09644815325737,0.681603133678436,0.725337684154511,0.09644815325737,0.681603133678436,0.641032159328461,0.0760904848575592,0.763732850551605,0.684216737747192,-0.0822338908910751,0.724627435207367,0.708331108093262,0.205853700637817,0.675197124481201,0.717521369457245,0.176224857568741,0.673875153064728,0.671477377414703,0.208224073052406,0.711168467998505,0.741834938526154,0.263561874628067,0.616616487503052,0.673548877239227,0.256690800189972,0.693138897418976,0.717521369457245,0.176224857568741,0.673875153064728,0.563770413398743,-0.101601220667362,0.819658398628235,0.684216737747192,-0.0822338908910751,0.724627435207367,0.641032159328461,0.0760904848575592,0.763732850551605,0.860473275184631,0.310579299926758,0.403888702392578,0.833220779895782,0.258167296648026,0.488970994949341,0.890147149562836,0.21664223074913,0.400879055261612,0.833220779895782,0.258167296648026,0.488970994949341,0.78267240524292,0.357104510068893,0.509804129600525,0.741834938526154,0.263561874628067,0.616616487503052,0.515542209148407,-0.0974207893013954,0.851308047771454,0.563770413398743,-0.101601220667362,0.819658398628235,0.489927351474762,0.0631547048687935,0.869472563266754,0.515542209148407,-0.0974207893013954,0.851308047771454,0.655546426773071,-0.127061918377876,0.744388341903687,0.525852859020233,-0.238959208130836,0.816319227218628,0.668386161327362,-0.288619518280029,0.685535311698914,0.525852859020233,-0.238959208130836,0.816319227218628,0.655546426773071,-0.127061918377876,0.744388341903687,0.678755879402161,-0.428910702466965,0.596092164516449,0.511068761348724,-0.383843779563904,0.769072473049164,0.668386161327362,-0.288619518280029,0.685535311698914,0.678755879402161,-0.428910702466965,0.596092164516449,0.675114154815674,-0.517472326755524,0.525778532028198, +0.576517879962921,-0.489757806062698,0.65403687953949,0.704958975315094,-0.577041625976563,0.41237798333168,0.780604600906372,-0.532097578048706,0.327915459871292,0.683156430721283,-0.660563468933105,0.311372846364975,0.773318886756897,-0.465731561183929,0.430199891328812,0.675114154815674,-0.517472326755524,0.525778532028198,0.678755879402161,-0.428910702466965,0.596092164516449,0.704958975315094,-0.577041625976563,0.41237798333168,0.773318886756897,-0.465731561183929,0.430199891328812,0.780604600906372,-0.532097578048706,0.327915459871292,0.491368323564529,-0.338214308023453,0.802600860595703,0.346138834953308,-0.330932378768921,0.877879023551941,0.332726091146469,-0.147056326270103,0.931486785411835,0.273366361856461,-0.570750534534454,0.774283170700073,0.243449300527573,-0.612166047096252,0.752319753170013,0.188344940543175,-0.509777724742889,0.839435994625092,0.332726091146469,-0.147056326270103,0.931486785411835,0.513966500759125,-0.127381563186646,0.848299622535706,0.491368323564529,-0.338214308023453,0.802600860595703,0.52545702457428,-0.0928211286664009,0.84574168920517,0.602113425731659,7.33628257876262e-005,0.798410475254059,0.579087018966675,-0.185492888092995,0.793883144855499,0.548048377037048,0.0629874095320702,0.834071576595306,0.602113425731659,7.33628257876262e-005,0.798410475254059,0.57683664560318,0.0730307176709175,0.813588261604309,0.395094573497772,-0.235732704401016,0.887879610061646,0.211570799350739,-0.365890234708786,0.906290233135223,0.20089316368103,-0.250614911317825,0.947013199329376,0.211570799350739,-0.365890234708786,0.906290233135223,0.188344940543175,-0.509777724742889,0.839435994625092,0.204588130116463,-0.417424738407135,0.885381400585175,0.52545702457428,-0.0928211286664009,0.84574168920517,0.395094573497772,-0.235732704401016,0.887879610061646,0.346834003925323,-0.147999092936516,0.926176190376282,0.556100606918335,-0.0494062155485153,0.829645156860352,0.533571779727936,0.0664401799440384,0.843140959739685,0.57683664560318,0.0730307176709175,0.813588261604309,0.556100606918335,-0.0494062155485153,0.829645156860352, +0.513966500759125,-0.127381563186646,0.848299622535706,0.533571779727936,0.0664401799440384,0.843140959739685,0.439580261707306,0.250936239957809,0.862438440322876,0.471370249986649,0.00124359678011388,0.881934463977814,0.380480974912643,0.270206719636917,0.884433388710022,0.510115444660187,0.0850097462534904,0.855894505977631,0.439580261707306,0.250936239957809,0.862438440322876,0.486893236637115,0.221341729164124,0.844951272010803,0.471370249986649,0.00124359678011388,0.881934463977814,0.54112046957016,-0.4202581346035,0.728403449058533,0.473797857761383,-0.10476515442133,0.874379634857178,0.569673001766205,0.126119762659073,0.812136888504028,0.510115444660187,0.0850097462534904,0.855894505977631,0.486893236637115,0.221341729164124,0.844951272010803,0.643970370292664,-0.0537489913403988,0.763159930706024,0.569673001766205,0.126119762659073,0.812136888504028,0.581034898757935,0.0350375585258007,0.813124001026154,0.712035417556763,-0.286907225847244,0.640850722789764,0.643970370292664,-0.0537489913403988,0.763159930706024,0.644232928752899,-0.169619619846344,0.745783448219299,0.459507435560226,-0.551141798496246,0.69648802280426,0.319755643606186,-0.635137319564819,0.703105032444,0.431529104709625,-0.524264693260193,0.734117865562439,0.459507435560226,-0.551141798496246,0.69648802280426,0.54112046957016,-0.4202581346035,0.728403449058533,0.519939303398132,-0.645437121391296,0.559530019760132,0.725247621536255,-0.551386713981628,0.412296622991562,0.737560570240021,-0.465059906244278,0.489615678787231,0.727962851524353,-0.350361049175262,0.589336097240448,0.725247621536255,-0.551386713981628,0.412296622991562,0.678994357585907,-0.677961111068726,0.281664997339249,0.714482843875885,-0.616353750228882,0.331092298030853,0.727962851524353,-0.350361049175262,0.589336097240448,0.737560570240021,-0.465059906244278,0.489615678787231,0.712035417556763,-0.286907225847244,0.640850722789764,0.243449300527573,-0.612166047096252,0.752319753170013,0.273366361856461,-0.570750534534454,0.774283170700073,0.319755643606186,-0.635137319564819,0.703105032444, +-0.0352551713585854,-0.00724665774032474,0.999352037906647,0.0660471841692925,-0.160469442605972,0.984828531742096,0.127677500247955,-0.00961600989103317,0.991769075393677,0.0181596595793962,0.0964839830994606,0.995168805122375,-0.0352551713585854,-0.00724665774032474,0.999352037906647,0.022150756791234,0.124972723424435,0.991912841796875,0.533834278583527,-0.3728067278862,0.758970320224762,0.491368323564529,-0.338214308023453,0.802600860595703,0.619894444942474,-0.311094373464584,0.720382630825043,0.607026278972626,-0.283796936273575,0.742279171943665,0.609364092350006,-0.202266320586205,0.766657412052155,0.619894444942474,-0.311094373464584,0.720382630825043,0.609364092350006,-0.202266320586205,0.766657412052155,0.607026278972626,-0.283796936273575,0.742279171943665,0.44224813580513,-0.22270679473877,0.868802726268768,0.39928925037384,-0.100698843598366,0.911278069019318,0.316795140504837,-0.154013782739639,0.935906231403351,0.334105134010315,-0.105962336063385,0.936560571193695,0.280007004737854,-0.0505081303417683,0.958668291568756,0.210591197013855,-0.146390616893768,0.966551125049591,0.316795140504837,-0.154013782739639,0.935906231403351,0.127677500247955,-0.00961600989103317,0.991769075393677,0.210591197013855,-0.146390616893768,0.966551125049591,0.280007004737854,-0.0505081303417683,0.958668291568756,0.367658585309982,-0.220539763569832,0.903431951999664,0.384144246578217,-0.167515695095062,0.907949149608612,0.44224813580513,-0.22270679473877,0.868802726268768,0.39928925037384,-0.100698843598366,0.911278069019318,0.384144246578217,-0.167515695095062,0.907949149608612,0.367658585309982,-0.220539763569832,0.903431951999664,0.153472140431404,0.0121060498058796,0.988078773021698,0.276928007602692,-0.0188802964985371,0.960705101490021,0.0181596595793962,0.0964839830994606,0.995168805122375,0.276928007602692,-0.0188802964985371,0.960705101490021,0.300763428211212,-0.144975259900093,0.942615211009979,0.450994789600372,-0.0293684490025043,0.892043173313141,0.383732378482819,0.0719972550868988,0.920633316040039,0.450994789600372,-0.0293684490025043,0.892043173313141, +0.311840623617172,-0.0737160891294479,0.947270452976227,0.0540701262652874,-0.00424614734947681,0.998528063297272,0.158430337905884,-0.105434514582157,0.981724679470062,0.176204815506935,-0.0524153225123882,0.982956945896149,0.263052016496658,-0.211196288466454,0.941381812095642,0.158430337905884,-0.105434514582157,0.981724679470062,0.311840623617172,-0.0737160891294479,0.947270452976227,0.176204815506935,-0.0524153225123882,0.982956945896149,0.0795867219567299,0.130899995565414,0.988195836544037,0.0540701262652874,-0.00424614734947681,0.998528063297272,0.348604291677475,0.428204417228699,0.833736121654511,0.30412358045578,0.409574717283249,0.8600914478302,0.27626770734787,0.382918566465378,0.881504118442535,0.0707326158881187,0.295081377029419,0.952850341796875,0.122164316475391,0.387442201375961,0.913763701915741,0.112164318561554,0.346320927143097,0.931386530399323,0.0795867219567299,0.130899995565414,0.988195836544037,0.202096506953239,0.113540336489677,0.972761809825897,0.0707326158881187,0.295081377029419,0.952850341796875,0.27626770734787,0.382918566465378,0.881504118442535,0.197703123092651,0.407277196645737,0.89164936542511,0.267225861549377,0.438919067382813,0.857869625091553,0.122164316475391,0.387442201375961,0.913763701915741,0.196179538965225,0.378707110881805,0.904485702514648,0.197703123092651,0.407277196645737,0.89164936542511,-0.00410858355462551,0.000159960676683113,0.999991476535797,0.125151544809341,0.150098383426666,0.980717837810516,-0.00723437825217843,-0.0348329469561577,0.999366939067841,0.125151544809341,0.150098383426666,0.980717837810516,0.0132211623713374,0.0785951241850853,0.996818900108337,-0.00723437825217843,-0.0348329469561577,0.999366939067841,-0.131930530071259,0.26743084192276,0.954502463340759,-0.00410858355462551,0.000159960676683113,0.999991476535797,-0.101764678955078,0.235011115670204,0.966650724411011,0.133035317063332,0.858216226100922,0.495748341083527,0.172042667865753,0.896263182163239,0.408795267343521,0.227061703801155,0.845456182956696,0.483370184898376,0.10782714933157,0.940842747688293,0.321229100227356, +0.172042667865753,0.896263182163239,0.408795267343521,0.00946624763309956,0.847232937812805,0.531137049198151,-0.0201575793325901,0.86247992515564,0.50568950176239,0.00946624763309956,0.847232937812805,0.531137049198151,0.0174745563417673,0.612232744693756,0.790484368801117,-0.0763430818915367,0.492704629898071,0.8668412566185,-0.0201575793325901,0.86247992515564,0.50568950176239,0.0174745563417673,0.612232744693756,0.790484368801117,-0.0763430818915367,0.492704629898071,0.8668412566185,-0.131930530071259,0.26743084192276,0.954502463340759,-0.112749569118023,0.78090500831604,0.614389717578888,0.227061703801155,0.845456182956696,0.483370184898376,0.251410961151123,0.802416682243347,0.541220664978027,0.133035317063332,0.858216226100922,0.495748341083527,0.341940134763718,0.480908334255219,0.807343780994415,0.313047915697098,0.526129424571991,0.790688753128052,0.348604291677475,0.428204417228699,0.833736121654511,0.341940134763718,0.480908334255219,0.807343780994415,0.339070081710815,0.525049269199371,0.7806116938591,0.310542374849319,0.655100047588348,0.688772201538086,0.262873411178589,0.755711019039154,0.599831879138947,0.0675790384411812,0.790684998035431,0.608481824398041,0.251410961151123,0.802416682243347,0.541220664978027,0.323511332273483,0.66647607088089,0.671676933765411,0.262873411178589,0.755711019039154,0.599831879138947,0.310542374849319,0.655100047588348,0.688772201538086,-0.130151435732841,0.824181258678436,0.551167547702789,-0.134479597210884,0.814412713050842,0.564488291740417,-0.0317195355892181,0.793773710727692,0.607385456562042,0.0166161507368088,0.969983041286469,0.242603942751884,-0.110555455088615,0.961312830448151,0.252299427986145,-0.0151908276602626,0.98775315284729,0.155283078551292,0.113144584000111,0.98102331161499,0.157453000545502,0.0166161507368088,0.969983041286469,0.242603942751884,-0.0151908276602626,0.98775315284729,0.155283078551292,0.113144584000111,0.98102331161499,0.157453000545502,0.168862327933311,0.98376077413559,0.0608289316296577,0.284644275903702,0.943514883518219,0.16957950592041, +0.248310551047325,0.930973052978516,0.267639428377151,0.284644275903702,0.943514883518219,0.16957950592041,0.241195008158684,0.952982842922211,0.183435320854187,-0.115046732127666,0.537694454193115,0.835253715515137,-0.125923648476601,0.487240254878998,0.864141225814819,-0.0298803467303514,0.513960301876068,0.857293307781219,0.125151544809341,0.150098383426666,0.980717837810516,0.125196561217308,0.250160127878189,0.960075855255127,0.083567887544632,0.240023568272591,0.967163383960724,0.125196561217308,0.250160127878189,0.960075855255127,0.0622172057628632,0.188094243407249,0.98017817735672,0.0514616444706917,0.279963612556458,0.958630263805389,0.0622172057628632,0.188094243407249,0.98017817735672,0.0100334007292986,0.312331259250641,0.949920237064362,0.0514616444706917,0.279963612556458,0.958630263805389,0.0100334007292986,0.312331259250641,0.949920237064362,0.0713144913315773,0.450381398200989,0.889983534812927,-0.0547223053872585,0.428312569856644,0.901972115039825,-0.0547223053872585,0.428312569856644,0.901972115039825,-0.0298803467303514,0.513960301876068,0.857293307781219,-0.125923648476601,0.487240254878998,0.864141225814819,-0.0298803467303514,0.513960301876068,0.857293307781219,0.0882005840539932,0.507813811302185,0.856939554214478,-0.0019079118501395,0.575022280216217,0.818135499954224,-0.0108718099072576,0.639894366264343,0.768385887145996,-0.0019079118501395,0.575022280216217,0.818135499954224,0.0985825657844543,0.628763675689697,0.771321952342987,-0.0353757329285145,0.696689307689667,0.716500103473663,-0.0108718099072576,0.639894366264343,0.768385887145996,0.0403314493596554,0.714066982269287,0.698914647102356,-0.0320500247180462,0.774002730846405,0.632370471954346,-0.0353757329285145,0.696689307689667,0.716500103473663,0.0172291044145823,0.769647896289825,0.638235926628113,-0.0317195355892181,0.793773710727692,0.607385456562042,-0.134479597210884,0.814412713050842,0.564488291740417,-0.0320500247180462,0.774002730846405,0.632370471954346,0.241195008158684,0.952982842922211,0.183435320854187,0.141424059867859,0.971049606800079,0.192514479160309, +0.128392115235329,0.957290768623352,0.259055018424988,0.10290739685297,0.969109237194061,0.224136829376221,0.128392115235329,0.957290768623352,0.259055018424988,0.141424059867859,0.971049606800079,0.192514479160309,0.10290739685297,0.969109237194061,0.224136829376221,0.187167480587959,0.939340889453888,0.287414312362671,0.075224258005619,0.947177827358246,0.311761826276779,0.075224258005619,0.947177827358246,0.311761826276779,0.331274658441544,0.881245195865631,0.337140679359436,0.235151126980782,0.870574414730072,0.432208240032196,0.235151126980782,0.870574414730072,0.432208240032196,0.542016208171844,0.761074721813202,0.356347501277924,0.629519820213318,0.61295074224472,0.477489441633224,0.629519820213318,0.61295074224472,0.477489441633224,0.851179659366608,0.35236930847168,0.389010280370712,0.721217513084412,0.444100230932236,0.531620264053345,0.79304975271225,0.43667808175087,0.424716770648956,0.721217513084412,0.444100230932236,0.531620264053345,0.888113737106323,0.253452062606812,0.383426487445831,0.79304975271225,0.43667808175087,0.424716770648956,0.888113737106323,0.253452062606812,0.383426487445831,0.870687305927277,0.334379255771637,0.360685497522354,0.89800900220871,0.260620057582855,0.354481130838394,0.860473275184631,0.310579299926758,0.403888702392578,0.890147149562836,0.21664223074913,0.400879055261612,0.905253231525421,0.279196530580521,0.320259034633636,0.89800900220871,0.260620057582855,0.354481130838394,0.888113737106323,0.253452062606812,0.383426487445831,0.682342350482941,0.23908469080925,0.690830886363983,0.708331108093262,0.205853700637817,0.675197124481201,0.670446753501892,0.276777803897858,0.688400328159332,0.725337684154511,0.09644815325737,0.681603133678436,0.682342350482941,0.23908469080925,0.690830886363983,0.641032159328461,0.0760904848575592,0.763732850551605,0.673548877239227,0.256690800189972,0.693138897418976,0.671477377414703,0.208224073052406,0.711168467998505,0.717521369457245,0.176224857568741,0.673875153064728,0.671477377414703,0.208224073052406,0.711168467998505,0.670446753501892,0.276777803897858,0.688400328159332, +0.708331108093262,0.205853700637817,0.675197124481201,0.741834938526154,0.263561874628067,0.616616487503052,0.664383471012115,0.332575857639313,0.669318854808807,0.673548877239227,0.256690800189972,0.693138897418976,0.641032159328461,0.0760904848575592,0.763732850551605,0.489927351474762,0.0631547048687935,0.869472563266754,0.563770413398743,-0.101601220667362,0.819658398628235,0.860473275184631,0.310579299926758,0.403888702392578,0.78267240524292,0.357104510068893,0.509804129600525,0.833220779895782,0.258167296648026,0.488970994949341,0.78267240524292,0.357104510068893,0.509804129600525,0.704952239990234,0.351573795080185,0.61598539352417,0.741834938526154,0.263561874628067,0.616616487503052,0.526422083377838,0.0854881256818771,0.845914542675018,0.515542209148407,-0.0974207893013954,0.851308047771454,0.489927351474762,0.0631547048687935,0.869472563266754,0.515542209148407,-0.0974207893013954,0.851308047771454,0.649829685688019,0.0461880341172218,0.758675098419189,0.655546426773071,-0.127061918377876,0.744388341903687,0.790592193603516,-0.224941268563271,0.569530725479126,0.668386161327362,-0.288619518280029,0.685535311698914,0.655546426773071,-0.127061918377876,0.744388341903687,0.668386161327362,-0.288619518280029,0.685535311698914,0.788371682167053,-0.361921191215515,0.497476667165756,0.678755879402161,-0.428910702466965,0.596092164516449,0.788371682167053,-0.361921191215515,0.497476667165756,0.773318886756897,-0.465731561183929,0.430199891328812,0.678755879402161,-0.428910702466965,0.596092164516449,0.773318886756897,-0.465731561183929,0.430199891328812,0.834701478481293,-0.411269217729568,0.366239041090012,0.780604600906372,-0.532097578048706,0.327915459871292,0.294819504022598,-0.525945603847504,0.797785997390747,0.188344940543175,-0.509777724742889,0.839435994625092,0.243449300527573,-0.612166047096252,0.752319753170013,0.619894444942474,-0.311094373464584,0.720382630825043,0.491368323564529,-0.338214308023453,0.802600860595703,0.513966500759125,-0.127381563186646,0.848299622535706,0.498067706823349,-0.0894015282392502,0.862517118453979, +0.602113425731659,7.33628257876262e-005,0.798410475254059,0.52545702457428,-0.0928211286664009,0.84574168920517,0.498067706823349,-0.0894015282392502,0.862517118453979,0.57683664560318,0.0730307176709175,0.813588261604309,0.602113425731659,7.33628257876262e-005,0.798410475254059,0.20089316368103,-0.250614911317825,0.947013199329376,0.211570799350739,-0.365890234708786,0.906290233135223,0.208701744675636,-0.274956881999969,0.938531935214996,0.395094573497772,-0.235732704401016,0.887879610061646,0.20089316368103,-0.250614911317825,0.947013199329376,0.346834003925323,-0.147999092936516,0.926176190376282,0.204588130116463,-0.417424738407135,0.885381400585175,0.188344940543175,-0.509777724742889,0.839435994625092,0.294819504022598,-0.525945603847504,0.797785997390747,0.204588130116463,-0.417424738407135,0.885381400585175,0.208701744675636,-0.274956881999969,0.938531935214996,0.211570799350739,-0.365890234708786,0.906290233135223,0.498067706823349,-0.0894015282392502,0.862517118453979,0.52545702457428,-0.0928211286664009,0.84574168920517,0.346834003925323,-0.147999092936516,0.926176190376282,0.556100606918335,-0.0494062155485153,0.829645156860352,0.57683664560318,0.0730307176709175,0.813588261604309,0.498067706823349,-0.0894015282392502,0.862517118453979,0.556100606918335,-0.0494062155485153,0.829645156860352,0.590862035751343,-0.227593511343002,0.774004578590393,0.513966500759125,-0.127381563186646,0.848299622535706,0.510115444660187,0.0850097462534904,0.855894505977631,0.471370249986649,0.00124359678011388,0.881934463977814,0.439580261707306,0.250936239957809,0.862438440322876,0.497714698314667,-0.317995965480804,0.806943893432617,0.54112046957016,-0.4202581346035,0.728403449058533,0.471370249986649,0.00124359678011388,0.881934463977814,0.510115444660187,0.0850097462534904,0.855894505977631,0.569673001766205,0.126119762659073,0.812136888504028,0.526898860931396,-0.0422754473984241,0.848875880241394,0.643970370292664,-0.0537489913403988,0.763159930706024,0.603840231895447,0.0263564214110374,0.79666942358017,0.569673001766205,0.126119762659073,0.812136888504028, +0.643970370292664,-0.0537489913403988,0.763159930706024,0.712035417556763,-0.286907225847244,0.640850722789764,0.731761813163757,-0.168248355388641,0.660467267036438,0.459507435560226,-0.551141798496246,0.69648802280426,0.421246021986008,-0.620599329471588,0.661368310451508,0.319755643606186,-0.635137319564819,0.703105032444,0.519939303398132,-0.645437121391296,0.559530019760132,0.54112046957016,-0.4202581346035,0.728403449058533,0.504042625427246,-0.553920865058899,0.662655651569366,0.459507435560226,-0.551141798496246,0.69648802280426,0.519939303398132,-0.645437121391296,0.559530019760132,0.421246021986008,-0.620599329471588,0.661368310451508,0.725247621536255,-0.551386713981628,0.412296622991562,0.714482843875885,-0.616353750228882,0.331092298030853,0.737560570240021,-0.465059906244278,0.489615678787231,0.655960619449615,-0.724235415458679,0.212599441409111,0.714482843875885,-0.616353750228882,0.331092298030853,0.678994357585907,-0.677961111068726,0.281664997339249,0.782142698764801,-0.372656613588333,0.499379426240921,0.712035417556763,-0.286907225847244,0.640850722789764,0.737560570240021,-0.465059906244278,0.489615678787231,0.421246021986008,-0.620599329471588,0.661368310451508,0.243449300527573,-0.612166047096252,0.752319753170013,0.319755643606186,-0.635137319564819,0.703105032444,-0.0352551713585854,-0.00724665774032474,0.999352037906647,0.127677500247955,-0.00961600989103317,0.991769075393677,0.022150756791234,0.124972723424435,0.991912841796875,0.0533662401139736,0.146562337875366,0.987760841846466,0.0181596595793962,0.0964839830994606,0.995168805122375,0.022150756791234,0.124972723424435,0.991912841796875,0.607026278972626,-0.283796936273575,0.742279171943665,0.619894444942474,-0.311094373464584,0.720382630825043,0.590862035751343,-0.227593511343002,0.774004578590393,0.44224813580513,-0.22270679473877,0.868802726268768,0.607026278972626,-0.283796936273575,0.742279171943665,0.420005142688751,-0.325333267450333,0.847203493118286,0.316795140504837,-0.154013782739639,0.935906231403351,0.39928925037384,-0.100698843598366,0.911278069019318, +0.441951245069504,-0.0830669701099396,0.893184661865234,0.280007004737854,-0.0505081303417683,0.958668291568756,0.316795140504837,-0.154013782739639,0.935906231403351,0.420309662818909,-0.0927163064479828,0.902631342411041,0.280007004737854,-0.0505081303417683,0.958668291568756,0.134500235319138,0.12159176915884,0.983425140380859,0.127677500247955,-0.00961600989103317,0.991769075393677,0.44224813580513,-0.22270679473877,0.868802726268768,0.392128705978394,-0.337384879589081,0.855807423591614,0.367658585309982,-0.220539763569832,0.903431951999664,0.367658585309982,-0.220539763569832,0.903431951999664,0.47293809056282,-0.0888934880495071,0.876599907875061,0.39928925037384,-0.100698843598366,0.911278069019318,0.300763428211212,-0.144975259900093,0.942615211009979,0.276928007602692,-0.0188802964985371,0.960705101490021,0.153472140431404,0.0121060498058796,0.988078773021698,0.153472140431404,0.0121060498058796,0.988078773021698,0.0181596595793962,0.0964839830994606,0.995168805122375,0.0533662401139736,0.146562337875366,0.987760841846466,0.311840623617172,-0.0737160891294479,0.947270452976227,0.450994789600372,-0.0293684490025043,0.892043173313141,0.300763428211212,-0.144975259900093,0.942615211009979,0.2423445135355,-0.207427456974983,0.947756767272949,0.176204815506935,-0.0524153225123882,0.982956945896149,0.158430337905884,-0.105434514582157,0.981724679470062,0.2423445135355,-0.207427456974983,0.947756767272949,0.158430337905884,-0.105434514582157,0.981724679470062,0.263052016496658,-0.211196288466454,0.941381812095642,0.311840623617172,-0.0737160891294479,0.947270452976227,0.300763428211212,-0.144975259900093,0.942615211009979,0.263052016496658,-0.211196288466454,0.941381812095642,0.176204815506935,-0.0524153225123882,0.982956945896149,0.202096506953239,0.113540336489677,0.972761809825897,0.0795867219567299,0.130899995565414,0.988195836544037,0.348604291677475,0.428204417228699,0.833736121654511,0.27626770734787,0.382918566465378,0.881504118442535,0.267225861549377,0.438919067382813,0.857869625091553,0.0707326158881187,0.295081377029419,0.952850341796875, +0.183695614337921,0.272750854492188,0.944384753704071,0.122164316475391,0.387442201375961,0.913763701915741,0.0707326158881187,0.295081377029419,0.952850341796875,0.202096506953239,0.113540336489677,0.972761809825897,0.183695614337921,0.272750854492188,0.944384753704071,0.197703123092651,0.407277196645737,0.89164936542511,0.212854743003845,0.423279881477356,0.880640029907227,0.267225861549377,0.438919067382813,0.857869625091553,0.183695614337921,0.272750854492188,0.944384753704071,0.196179538965225,0.378707110881805,0.904485702514648,0.122164316475391,0.387442201375961,0.913763701915741,0.196179538965225,0.378707110881805,0.904485702514648,0.284088909626007,0.317713260650635,0.904627919197083,0.197703123092651,0.407277196645737,0.89164936542511,0.125151544809341,0.150098383426666,0.980717837810516,-0.00410858355462551,0.000159960676683113,0.999991476535797,0.123679496347904,0.247575983405113,0.960941970348358,-0.0270052310079336,0.157849922776222,0.987093687057495,-0.00410858355462551,0.000159960676683113,0.999991476535797,-0.131930530071259,0.26743084192276,0.954502463340759,0.133035317063332,0.858216226100922,0.495748341083527,-0.0266329143196344,0.834496200084686,0.550369501113892,0.172042667865753,0.896263182163239,0.408795267343521,-0.0266329143196344,0.834496200084686,0.550369501113892,0.00946624763309956,0.847232937812805,0.531137049198151,0.172042667865753,0.896263182163239,0.408795267343521,0.0174745563417673,0.612232744693756,0.790484368801117,0.00946624763309956,0.847232937812805,0.531137049198151,-0.00296406168490648,0.638069748878479,0.769972681999207,-0.0763430818915367,0.492704629898071,0.8668412566185,0.0174745563417673,0.612232744693756,0.790484368801117,0.123679496347904,0.247575983405113,0.960941970348358,-0.0270052310079336,0.157849922776222,0.987093687057495,-0.131930530071259,0.26743084192276,0.954502463340759,-0.0763430818915367,0.492704629898071,0.8668412566185,0.133035317063332,0.858216226100922,0.495748341083527,0.251410961151123,0.802416682243347,0.541220664978027,0.0675790384411812,0.790684998035431,0.608481824398041, +0.303067952394485,0.457902848720551,0.835747957229614,0.341940134763718,0.480908334255219,0.807343780994415,0.348604291677475,0.428204417228699,0.833736121654511,0.341940134763718,0.480908334255219,0.807343780994415,0.303067952394485,0.457902848720551,0.835747957229614,0.339070081710815,0.525049269199371,0.7806116938591,0.323511332273483,0.66647607088089,0.671676933765411,0.310542374849319,0.655100047588348,0.688772201538086,0.339070081710815,0.525049269199371,0.7806116938591,0.262873411178589,0.755711019039154,0.599831879138947,0.0523612163960934,0.688206434249878,0.723622858524323,0.0675790384411812,0.790684998035431,0.608481824398041,0.213782727718353,0.700187087059021,0.681201100349426,0.262873411178589,0.755711019039154,0.599831879138947,0.323511332273483,0.66647607088089,0.671676933765411,-0.0281199868768454,0.805395483970642,0.592070341110229,-0.130151435732841,0.824181258678436,0.551167547702789,-0.0317195355892181,0.793773710727692,0.607385456562042,0.113144584000111,0.98102331161499,0.157453000545502,-0.0151908276602626,0.98775315284729,0.155283078551292,0.0370265580713749,0.994041860103607,0.1025170981884,0.113144584000111,0.98102331161499,0.157453000545502,0.0370265580713749,0.994041860103607,0.1025170981884,0.168862327933311,0.98376077413559,0.0608289316296577,0.284644275903702,0.943514883518219,0.16957950592041,0.168862327933311,0.98376077413559,0.0608289316296577,0.305551648139954,0.949666500091553,0.0690770819783211,0.241195008158684,0.952982842922211,0.183435320854187,0.284644275903702,0.943514883518219,0.16957950592041,0.287783026695251,0.954533517360687,0.0777596682310104,0.237830072641373,0.203379124403,0.949775576591492,0.125196561217308,0.250160127878189,0.960075855255127,0.125151544809341,0.150098383426666,0.980717837810516,0.125196561217308,0.250160127878189,0.960075855255127,0.237830072641373,0.203379124403,0.949775576591492,0.0622172057628632,0.188094243407249,0.98017817735672,0.147948831319809,0.243292838335037,0.958602964878082,0.0100334007292986,0.312331259250641,0.949920237064362,0.0622172057628632,0.188094243407249,0.98017817735672, +0.138674452900887,0.383616268634796,0.913021266460419,0.0713144913315773,0.450381398200989,0.889983534812927,0.0100334007292986,0.312331259250641,0.949920237064362,-0.0298803467303514,0.513960301876068,0.857293307781219,-0.0547223053872585,0.428312569856644,0.901972115039825,0.0713144913315773,0.450381398200989,0.889983534812927,0.0713144913315773,0.450381398200989,0.889983534812927,0.0882005840539932,0.507813811302185,0.856939554214478,-0.0298803467303514,0.513960301876068,0.857293307781219,0.130434736609459,0.580640733242035,0.803643524646759,-0.0019079118501395,0.575022280216217,0.818135499954224,0.0882005840539932,0.507813811302185,0.856939554214478,0.130434736609459,0.580640733242035,0.803643524646759,0.0985825657844543,0.628763675689697,0.771321952342987,-0.0019079118501395,0.575022280216217,0.818135499954224,-0.0108718099072576,0.639894366264343,0.768385887145996,0.0985825657844543,0.628763675689697,0.771321952342987,0.123435221612453,0.666655957698822,0.735073745250702,0.0403314493596554,0.714066982269287,0.698914647102356,-0.0108718099072576,0.639894366264343,0.768385887145996,0.123435221612453,0.666655957698822,0.735073745250702,-0.0353757329285145,0.696689307689667,0.716500103473663,0.0403314493596554,0.714066982269287,0.698914647102356,0.0172291044145823,0.769647896289825,0.638235926628113,-0.0320500247180462,0.774002730846405,0.632370471954346,0.0172291044145823,0.769647896289825,0.638235926628113,-0.0317195355892181,0.793773710727692,0.607385456562042,0.241195008158684,0.952982842922211,0.183435320854187,0.17128948867321,0.974414050579071,0.145523265004158,0.141424059867859,0.971049606800079,0.192514479160309,0.17128948867321,0.974414050579071,0.145523265004158,0.10290739685297,0.969109237194061,0.224136829376221,0.141424059867859,0.971049606800079,0.192514479160309,0.10290739685297,0.969109237194061,0.224136829376221,0.245438128709793,0.939164996147156,0.240268796682358,0.187167480587959,0.939340889453888,0.287414312362671,0.075224258005619,0.947177827358246,0.311761826276779,0.187167480587959,0.939340889453888,0.287414312362671, +0.331274658441544,0.881245195865631,0.337140679359436,0.331274658441544,0.881245195865631,0.337140679359436,0.542016208171844,0.761074721813202,0.356347501277924,0.235151126980782,0.870574414730072,0.432208240032196,0.629519820213318,0.61295074224472,0.477489441633224,0.542016208171844,0.761074721813202,0.356347501277924,0.780361771583557,0.571741700172424,0.25327205657959,0.629519820213318,0.61295074224472,0.477489441633224,0.780361771583557,0.571741700172424,0.25327205657959,0.851179659366608,0.35236930847168,0.389010280370712,0.888113737106323,0.253452062606812,0.383426487445831,0.721217513084412,0.444100230932236,0.531620264053345,0.851179659366608,0.35236930847168,0.389010280370712,0.89800900220871,0.260620057582855,0.354481130838394,0.848690867424011,0.387295126914978,0.360175222158432,0.860473275184631,0.310579299926758,0.403888702392578,0.905253231525421,0.279196530580521,0.320259034633636,0.870593667030334,0.342585265636444,0.3531314432621,0.89800900220871,0.260620057582855,0.354481130838394,0.851179659366608,0.35236930847168,0.389010280370712,0.905253231525421,0.279196530580521,0.320259034633636,0.888113737106323,0.253452062606812,0.383426487445831,0.600396513938904,0.341484129428864,0.723126888275146,0.682342350482941,0.23908469080925,0.690830886363983,0.670446753501892,0.276777803897858,0.688400328159332,0.54468297958374,0.220325767993927,0.809182822704315,0.641032159328461,0.0760904848575592,0.763732850551605,0.682342350482941,0.23908469080925,0.690830886363983,0.670446753501892,0.276777803897858,0.688400328159332,0.671477377414703,0.208224073052406,0.711168467998505,0.673548877239227,0.256690800189972,0.693138897418976,0.704952239990234,0.351573795080185,0.61598539352417,0.664383471012115,0.332575857639313,0.669318854808807,0.741834938526154,0.263561874628067,0.616616487503052,0.613422811031342,0.331621646881104,0.716756224632263,0.673548877239227,0.256690800189972,0.693138897418976,0.664383471012115,0.332575857639313,0.669318854808807,0.641032159328461,0.0760904848575592,0.763732850551605,0.54468297958374,0.220325767993927,0.809182822704315, +0.489927351474762,0.0631547048687935,0.869472563266754,0.82616138458252,0.400430798530579,0.396374106407166,0.78267240524292,0.357104510068893,0.509804129600525,0.860473275184631,0.310579299926758,0.403888702392578,0.78267240524292,0.357104510068893,0.509804129600525,0.686091899871826,0.435670405626297,0.582639694213867,0.704952239990234,0.351573795080185,0.61598539352417,0.515542209148407,-0.0974207893013954,0.851308047771454,0.526422083377838,0.0854881256818771,0.845914542675018,0.649829685688019,0.0461880341172218,0.758675098419189,0.526422083377838,0.0854881256818771,0.845914542675018,0.489927351474762,0.0631547048687935,0.869472563266754,0.483378410339355,0.214341431856155,0.848765552043915,0.655546426773071,-0.127061918377876,0.744388341903687,0.649829685688019,0.0461880341172218,0.758675098419189,0.789794504642487,-0.0598123036324978,0.610448181629181,0.790592193603516,-0.224941268563271,0.569530725479126,0.788371682167053,-0.361921191215515,0.497476667165756,0.668386161327362,-0.288619518280029,0.685535311698914,0.790592193603516,-0.224941268563271,0.569530725479126,0.655546426773071,-0.127061918377876,0.744388341903687,0.789794504642487,-0.0598123036324978,0.610448181629181,0.834701478481293,-0.411269217729568,0.366239041090012,0.773318886756897,-0.465731561183929,0.430199891328812,0.788371682167053,-0.361921191215515,0.497476667165756,0.243449300527573,-0.612166047096252,0.752319753170013,0.421246021986008,-0.620599329471588,0.661368310451508,0.294819504022598,-0.525945603847504,0.797785997390747,0.590862035751343,-0.227593511343002,0.774004578590393,0.619894444942474,-0.311094373464584,0.720382630825043,0.513966500759125,-0.127381563186646,0.848299622535706,0.20089316368103,-0.250614911317825,0.947013199329376,0.208701744675636,-0.274956881999969,0.938531935214996,0.193250477313995,-0.158799558877945,0.968213200569153,0.193250477313995,-0.158799558877945,0.968213200569153,0.346834003925323,-0.147999092936516,0.926176190376282,0.20089316368103,-0.250614911317825,0.947013199329376,0.204588130116463,-0.417424738407135,0.885381400585175, +0.294819504022598,-0.525945603847504,0.797785997390747,0.38394483923912,-0.388521194458008,0.837638020515442,0.38394483923912,-0.388521194458008,0.837638020515442,0.208701744675636,-0.274956881999969,0.938531935214996,0.204588130116463,-0.417424738407135,0.885381400585175,0.498067706823349,-0.0894015282392502,0.862517118453979,0.346834003925323,-0.147999092936516,0.926176190376282,0.390531480312347,-0.214615747332573,0.895223498344421,0.556100606918335,-0.0494062155485153,0.829645156860352,0.498067706823349,-0.0894015282392502,0.862517118453979,0.501217007637024,-0.267954617738724,0.822788953781128,0.501217007637024,-0.267954617738724,0.822788953781128,0.590862035751343,-0.227593511343002,0.774004578590393,0.556100606918335,-0.0494062155485153,0.829645156860352,0.510115444660187,0.0850097462534904,0.855894505977631,0.488787800073624,-0.306269705295563,0.816875278949738,0.471370249986649,0.00124359678011388,0.881934463977814,0.497714698314667,-0.317995965480804,0.806943893432617,0.504042625427246,-0.553920865058899,0.662655651569366,0.54112046957016,-0.4202581346035,0.728403449058533,0.488787800073624,-0.306269705295563,0.816875278949738,0.497714698314667,-0.317995965480804,0.806943893432617,0.471370249986649,0.00124359678011388,0.881934463977814,0.526898860931396,-0.0422754473984241,0.848875880241394,0.569673001766205,0.126119762659073,0.812136888504028,0.603840231895447,0.0263564214110374,0.79666942358017,0.510115444660187,0.0850097462534904,0.855894505977631,0.526898860931396,-0.0422754473984241,0.848875880241394,0.488787800073624,-0.306269705295563,0.816875278949738,0.643970370292664,-0.0537489913403988,0.763159930706024,0.731761813163757,-0.168248355388641,0.660467267036438,0.603840231895447,0.0263564214110374,0.79666942358017,0.731761813163757,-0.168248355388641,0.660467267036438,0.712035417556763,-0.286907225847244,0.640850722789764,0.782142698764801,-0.372656613588333,0.499379426240921,0.577296555042267,-0.603464722633362,0.550053477287292,0.519939303398132,-0.645437121391296,0.559530019760132,0.504042625427246,-0.553920865058899,0.662655651569366, +0.421246021986008,-0.620599329471588,0.661368310451508,0.519939303398132,-0.645437121391296,0.559530019760132,0.545982301235199,-0.628049373626709,0.554488122463226,0.714482843875885,-0.616353750228882,0.331092298030853,0.763037323951721,-0.527620494365692,0.373350352048874,0.737560570240021,-0.465059906244278,0.489615678787231,0.655960619449615,-0.724235415458679,0.212599441409111,0.726977944374084,-0.638608992099762,0.25235190987587,0.714482843875885,-0.616353750228882,0.331092298030853,0.763037323951721,-0.527620494365692,0.373350352048874,0.782142698764801,-0.372656613588333,0.499379426240921,0.737560570240021,-0.465059906244278,0.489615678787231,0.134500235319138,0.12159176915884,0.983425140380859,0.022150756791234,0.124972723424435,0.991912841796875,0.127677500247955,-0.00961600989103317,0.991769075393677,0.0533662401139736,0.146562337875366,0.987760841846466,0.022150756791234,0.124972723424435,0.991912841796875,0.134500235319138,0.12159176915884,0.983425140380859,0.607026278972626,-0.283796936273575,0.742279171943665,0.590862035751343,-0.227593511343002,0.774004578590393,0.501217007637024,-0.267954617738724,0.822788953781128,0.420005142688751,-0.325333267450333,0.847203493118286,0.607026278972626,-0.283796936273575,0.742279171943665,0.501217007637024,-0.267954617738724,0.822788953781128,0.420005142688751,-0.325333267450333,0.847203493118286,0.392128705978394,-0.337384879589081,0.855807423591614,0.44224813580513,-0.22270679473877,0.868802726268768,0.441951245069504,-0.0830669701099396,0.893184661865234,0.39928925037384,-0.100698843598366,0.911278069019318,0.386325061321259,-0.0994983091950417,0.91698032617569,0.441951245069504,-0.0830669701099396,0.893184661865234,0.420309662818909,-0.0927163064479828,0.902631342411041,0.316795140504837,-0.154013782739639,0.935906231403351,0.280007004737854,-0.0505081303417683,0.958668291568756,0.420309662818909,-0.0927163064479828,0.902631342411041,0.42011895775795,0.0203024316579103,0.907241821289063,0.253663897514343,0.129320368170738,0.958608746528625,0.134500235319138,0.12159176915884,0.983425140380859, +0.280007004737854,-0.0505081303417683,0.958668291568756,0.529537320137024,-0.196504056453705,0.825212836265564,0.367658585309982,-0.220539763569832,0.903431951999664,0.392128705978394,-0.337384879589081,0.855807423591614,0.47293809056282,-0.0888934880495071,0.876599907875061,0.367658585309982,-0.220539763569832,0.903431951999664,0.529537320137024,-0.196504056453705,0.825212836265564,0.47293809056282,-0.0888934880495071,0.876599907875061,0.426290512084961,-0.100778356194496,0.898954927921295,0.39928925037384,-0.100698843598366,0.911278069019318,0.153879195451736,-0.046009574085474,0.987017810344696,0.300763428211212,-0.144975259900093,0.942615211009979,0.153472140431404,0.0121060498058796,0.988078773021698,0.153879195451736,-0.046009574085474,0.987017810344696,0.153472140431404,0.0121060498058796,0.988078773021698,0.0533662401139736,0.146562337875366,0.987760841846466,0.176204815506935,-0.0524153225123882,0.982956945896149,0.2423445135355,-0.207427456974983,0.947756767272949,0.305549412965775,-0.13619090616703,0.942386031150818,0.263052016496658,-0.211196288466454,0.941381812095642,0.262574404478073,-0.19075571000576,0.945868313312531,0.2423445135355,-0.207427456974983,0.947756767272949,0.263052016496658,-0.211196288466454,0.941381812095642,0.300763428211212,-0.144975259900093,0.942615211009979,0.262574404478073,-0.19075571000576,0.945868313312531,0.176204815506935,-0.0524153225123882,0.982956945896149,0.305549412965775,-0.13619090616703,0.942386031150818,0.202096506953239,0.113540336489677,0.972761809825897,0.348604291677475,0.428204417228699,0.833736121654511,0.267225861549377,0.438919067382813,0.857869625091553,0.303067952394485,0.457902848720551,0.835747957229614,0.183695614337921,0.272750854492188,0.944384753704071,0.202096506953239,0.113540336489677,0.972761809825897,0.291346490383148,0.0611963793635368,0.954658150672913,0.197703123092651,0.407277196645737,0.89164936542511,0.284088909626007,0.317713260650635,0.904627919197083,0.212854743003845,0.423279881477356,0.880640029907227,0.267225861549377,0.438919067382813,0.857869625091553, +0.212854743003845,0.423279881477356,0.880640029907227,0.303067952394485,0.457902848720551,0.835747957229614,0.183695614337921,0.272750854492188,0.944384753704071,0.270329684019089,0.23632775247097,0.933311820030212,0.196179538965225,0.378707110881805,0.904485702514648,0.196179538965225,0.378707110881805,0.904485702514648,0.270329684019089,0.23632775247097,0.933311820030212,0.284088909626007,0.317713260650635,0.904627919197083,-0.0270052310079336,0.157849922776222,0.987093687057495,0.123679496347904,0.247575983405113,0.960941970348358,-0.00410858355462551,0.000159960676683113,0.999991476535797,0.125151544809341,0.150098383426666,0.980717837810516,0.123679496347904,0.247575983405113,0.960941970348358,0.237830072641373,0.203379124403,0.949775576591492,0.133035317063332,0.858216226100922,0.495748341083527,-0.108360596001148,0.76529985666275,0.634487152099609,-0.0266329143196344,0.834496200084686,0.550369501113892,-0.168202683329582,0.685810089111328,0.708076417446136,0.00946624763309956,0.847232937812805,0.531137049198151,-0.0266329143196344,0.834496200084686,0.550369501113892,-0.168202683329582,0.685810089111328,0.708076417446136,-0.00296406168490648,0.638069748878479,0.769972681999207,0.00946624763309956,0.847232937812805,0.531137049198151,0.0174745563417673,0.612232744693756,0.790484368801117,-0.00296406168490648,0.638069748878479,0.769972681999207,0.136592566967011,0.422657579183578,0.895936906337738,0.123679496347904,0.247575983405113,0.960941970348358,0.0174745563417673,0.612232744693756,0.790484368801117,0.136592566967011,0.422657579183578,0.895936906337738,-0.0763430818915367,0.492704629898071,0.8668412566185,0.123679496347904,0.247575983405113,0.960941970348358,-0.0270052310079336,0.157849922776222,0.987093687057495,0.133035317063332,0.858216226100922,0.495748341083527,0.0675790384411812,0.790684998035431,0.608481824398041,-0.108360596001148,0.76529985666275,0.634487152099609,0.230102077126503,0.492896169424057,0.839110374450684,0.339070081710815,0.525049269199371,0.7806116938591,0.303067952394485,0.457902848720551,0.835747957229614, +0.275191009044647,0.585125863552094,0.762822031974792,0.323511332273483,0.66647607088089,0.671676933765411,0.339070081710815,0.525049269199371,0.7806116938591,0.0523612163960934,0.688206434249878,0.723622858524323,0.262873411178589,0.755711019039154,0.599831879138947,0.213782727718353,0.700187087059021,0.681201100349426,-0.172558680176735,0.648832619190216,0.741106986999512,0.0675790384411812,0.790684998035431,0.608481824398041,0.0523612163960934,0.688206434249878,0.723622858524323,0.323511332273483,0.66647607088089,0.671676933765411,0.193740084767342,0.627204418182373,0.754373371601105,0.213782727718353,0.700187087059021,0.681201100349426,-0.0317195355892181,0.793773710727692,0.607385456562042,0.0361335501074791,0.743836879730225,0.66738361120224,-0.0281199868768454,0.805395483970642,0.592070341110229,0.305551648139954,0.949666500091553,0.0690770819783211,0.168862327933311,0.98376077413559,0.0608289316296577,0.26318347454071,0.964514076709747,-0.0211402084678411,0.287783026695251,0.954533517360687,0.0777596682310104,0.284644275903702,0.943514883518219,0.16957950592041,0.305551648139954,0.949666500091553,0.0690770819783211,0.17128948867321,0.974414050579071,0.145523265004158,0.241195008158684,0.952982842922211,0.183435320854187,0.287783026695251,0.954533517360687,0.0777596682310104,0.237830072641373,0.203379124403,0.949775576591492,0.150748535990715,0.116500400006771,0.981683433055878,0.0622172057628632,0.188094243407249,0.98017817735672,0.138674452900887,0.383616268634796,0.913021266460419,0.0100334007292986,0.312331259250641,0.949920237064362,0.147948831319809,0.243292838335037,0.958602964878082,0.147948831319809,0.243292838335037,0.958602964878082,0.0622172057628632,0.188094243407249,0.98017817735672,0.121682927012444,0.0871393010020256,0.988736510276794,0.146585047245026,0.448811560869217,0.881521880626678,0.0713144913315773,0.450381398200989,0.889983534812927,0.138674452900887,0.383616268634796,0.913021266460419,0.0713144913315773,0.450381398200989,0.889983534812927,0.146585047245026,0.448811560869217,0.881521880626678, +0.0882005840539932,0.507813811302185,0.856939554214478,0.166356474161148,0.530001580715179,0.831518888473511,0.130434736609459,0.580640733242035,0.803643524646759,0.0882005840539932,0.507813811302185,0.856939554214478,0.0985825657844543,0.628763675689697,0.771321952342987,0.130434736609459,0.580640733242035,0.803643524646759,0.192515254020691,0.626001298427582,0.755685150623322,0.0985825657844543,0.628763675689697,0.771321952342987,0.192515254020691,0.626001298427582,0.755685150623322,0.123435221612453,0.666655957698822,0.735073745250702,0.0403314493596554,0.714066982269287,0.698914647102356,0.123435221612453,0.666655957698822,0.735073745250702,0.138455301523209,0.682594060897827,0.717562079429626,0.0403314493596554,0.714066982269287,0.698914647102356,0.0361335501074791,0.743836879730225,0.66738361120224,0.0172291044145823,0.769647896289825,0.638235926628113,-0.0317195355892181,0.793773710727692,0.607385456562042,0.0172291044145823,0.769647896289825,0.638235926628113,0.0361335501074791,0.743836879730225,0.66738361120224,0.171578153967857,0.971455454826355,0.163814157247543,0.10290739685297,0.969109237194061,0.224136829376221,0.17128948867321,0.974414050579071,0.145523265004158,0.245438128709793,0.939164996147156,0.240268796682358,0.10290739685297,0.969109237194061,0.224136829376221,0.171578153967857,0.971455454826355,0.163814157247543,0.416870534420013,0.866686761379242,0.273994237184525,0.187167480587959,0.939340889453888,0.287414312362671,0.245438128709793,0.939164996147156,0.240268796682358,0.416870534420013,0.866686761379242,0.273994237184525,0.331274658441544,0.881245195865631,0.337140679359436,0.187167480587959,0.939340889453888,0.287414312362671,0.576404690742493,0.769129395484924,0.276039093732834,0.542016208171844,0.761074721813202,0.356347501277924,0.331274658441544,0.881245195865631,0.337140679359436,0.576404690742493,0.769129395484924,0.276039093732834,0.780361771583557,0.571741700172424,0.25327205657959,0.542016208171844,0.761074721813202,0.356347501277924,0.851179659366608,0.35236930847168,0.389010280370712, +0.780361771583557,0.571741700172424,0.25327205657959,0.886294066905975,0.3976189494133,0.237448185682297,0.89800900220871,0.260620057582855,0.354481130838394,0.870593667030334,0.342585265636444,0.3531314432621,0.848690867424011,0.387295126914978,0.360175222158432,0.82616138458252,0.400430798530579,0.396374106407166,0.860473275184631,0.310579299926758,0.403888702392578,0.848690867424011,0.387295126914978,0.360175222158432,0.905253231525421,0.279196530580521,0.320259034633636,0.876369774341583,0.402731448411942,0.264165490865707,0.870593667030334,0.342585265636444,0.3531314432621,0.886294066905975,0.3976189494133,0.237448185682297,0.905253231525421,0.279196530580521,0.320259034633636,0.851179659366608,0.35236930847168,0.389010280370712,0.54468297958374,0.220325767993927,0.809182822704315,0.682342350482941,0.23908469080925,0.690830886363983,0.600396513938904,0.341484129428864,0.723126888275146,0.600396513938904,0.341484129428864,0.723126888275146,0.670446753501892,0.276777803897858,0.688400328159332,0.634307444095612,0.34515181183815,0.691754460334778,0.670446753501892,0.276777803897858,0.688400328159332,0.673548877239227,0.256690800189972,0.693138897418976,0.613422811031342,0.331621646881104,0.716756224632263,0.704952239990234,0.351573795080185,0.61598539352417,0.650475382804871,0.396056622266769,0.648090183734894,0.664383471012115,0.332575857639313,0.669318854808807,0.613422811031342,0.331621646881104,0.716756224632263,0.664383471012115,0.332575857639313,0.669318854808807,0.612667381763458,0.389772981405258,0.687543094158173,0.483378410339355,0.214341431856155,0.848765552043915,0.489927351474762,0.0631547048687935,0.869472563266754,0.54468297958374,0.220325767993927,0.809182822704315,0.78267240524292,0.357104510068893,0.509804129600525,0.82616138458252,0.400430798530579,0.396374106407166,0.772309184074402,0.465531647205353,0.432225376367569,0.772309184074402,0.465531647205353,0.432225376367569,0.686091899871826,0.435670405626297,0.582639694213867,0.78267240524292,0.357104510068893,0.509804129600525,0.686091899871826,0.435670405626297,0.582639694213867, +0.650475382804871,0.396056622266769,0.648090183734894,0.704952239990234,0.351573795080185,0.61598539352417,0.526422083377838,0.0854881256818771,0.845914542675018,0.665528833866119,0.225126296281815,0.711610376834869,0.649829685688019,0.0461880341172218,0.758675098419189,0.526422083377838,0.0854881256818771,0.845914542675018,0.483378410339355,0.214341431856155,0.848765552043915,0.665528833866119,0.225126296281815,0.711610376834869,0.79223096370697,0.105440013110638,0.601042747497559,0.789794504642487,-0.0598123036324978,0.610448181629181,0.649829685688019,0.0461880341172218,0.758675098419189,0.790592193603516,-0.224941268563271,0.569530725479126,0.871392548084259,-0.301381886005402,0.387096762657166,0.788371682167053,-0.361921191215515,0.497476667165756,0.877426743507385,-0.1558698117733,0.453681349754334,0.790592193603516,-0.224941268563271,0.569530725479126,0.789794504642487,-0.0598123036324978,0.610448181629181,0.834701478481293,-0.411269217729568,0.366239041090012,0.788371682167053,-0.361921191215515,0.497476667165756,0.871392548084259,-0.301381886005402,0.387096762657166,0.492816627025604,-0.474328011274338,0.729482471942902,0.294819504022598,-0.525945603847504,0.797785997390747,0.421246021986008,-0.620599329471588,0.661368310451508,0.244432404637337,-0.146354675292969,0.958557784557343,0.193250477313995,-0.158799558877945,0.968213200569153,0.208701744675636,-0.274956881999969,0.938531935214996,0.346834003925323,-0.147999092936516,0.926176190376282,0.193250477313995,-0.158799558877945,0.968213200569153,0.306764125823975,-0.192916706204414,0.932029366493225,0.38394483923912,-0.388521194458008,0.837638020515442,0.294819504022598,-0.525945603847504,0.797785997390747,0.492816627025604,-0.474328011274338,0.729482471942902,0.411331236362457,-0.268900573253632,0.870918452739716,0.208701744675636,-0.274956881999969,0.938531935214996,0.38394483923912,-0.388521194458008,0.837638020515442,0.346834003925323,-0.147999092936516,0.926176190376282,0.306764125823975,-0.192916706204414,0.932029366493225,0.390531480312347,-0.214615747332573,0.895223498344421, +0.498067706823349,-0.0894015282392502,0.862517118453979,0.390531480312347,-0.214615747332573,0.895223498344421,0.394492208957672,-0.32767778635025,0.858488798141479,0.394492208957672,-0.32767778635025,0.858488798141479,0.501217007637024,-0.267954617738724,0.822788953781128,0.498067706823349,-0.0894015282392502,0.862517118453979,0.488787800073624,-0.306269705295563,0.816875278949738,0.504042625427246,-0.553920865058899,0.662655651569366,0.497714698314667,-0.317995965480804,0.806943893432617,0.526898860931396,-0.0422754473984241,0.848875880241394,0.603840231895447,0.0263564214110374,0.79666942358017,0.508786976337433,-0.0622181259095669,0.858641088008881,0.534871399402618,-0.284098505973816,0.795738935470581,0.488787800073624,-0.306269705295563,0.816875278949738,0.526898860931396,-0.0422754473984241,0.848875880241394,0.623132705688477,-0.116109080612659,0.773449540138245,0.603840231895447,0.0263564214110374,0.79666942358017,0.731761813163757,-0.168248355388641,0.660467267036438,0.782142698764801,-0.372656613588333,0.499379426240921,0.759950459003448,-0.292904704809189,0.580242991447449,0.731761813163757,-0.168248355388641,0.660467267036438,0.577296555042267,-0.603464722633362,0.550053477287292,0.545982301235199,-0.628049373626709,0.554488122463226,0.519939303398132,-0.645437121391296,0.559530019760132,0.577296555042267,-0.603464722633362,0.550053477287292,0.504042625427246,-0.553920865058899,0.662655651569366,0.519575357437134,-0.524713575839996,0.67432701587677,0.421246021986008,-0.620599329471588,0.661368310451508,0.545982301235199,-0.628049373626709,0.554488122463226,0.623649537563324,-0.490239709615707,0.608872771263123,0.714482843875885,-0.616353750228882,0.331092298030853,0.726977944374084,-0.638608992099762,0.25235190987587,0.763037323951721,-0.527620494365692,0.373350352048874,0.726977944374084,-0.638608992099762,0.25235190987587,0.655960619449615,-0.724235415458679,0.212599441409111,0.656560838222504,-0.71994960308075,0.224945083260536,0.798241555690765,-0.447401881217957,0.403288930654526,0.782142698764801,-0.372656613588333,0.499379426240921, +0.763037323951721,-0.527620494365692,0.373350352048874,0.171242475509644,0.0780431106686592,0.982132971286774,0.0533662401139736,0.146562337875366,0.987760841846466,0.134500235319138,0.12159176915884,0.983425140380859,0.394492208957672,-0.32767778635025,0.858488798141479,0.420005142688751,-0.325333267450333,0.847203493118286,0.501217007637024,-0.267954617738724,0.822788953781128,0.394492208957672,-0.32767778635025,0.858488798141479,0.392128705978394,-0.337384879589081,0.855807423591614,0.420005142688751,-0.325333267450333,0.847203493118286,0.386325061321259,-0.0994983091950417,0.91698032617569,0.39928925037384,-0.100698843598366,0.911278069019318,0.426290512084961,-0.100778356194496,0.898954927921295,0.433367669582367,-0.0627975314855576,0.89902663230896,0.441951245069504,-0.0830669701099396,0.893184661865234,0.386325061321259,-0.0994983091950417,0.91698032617569,0.433367669582367,-0.0627975314855576,0.89902663230896,0.420309662818909,-0.0927163064479828,0.902631342411041,0.441951245069504,-0.0830669701099396,0.893184661865234,0.433367669582367,-0.0627975314855576,0.89902663230896,0.42011895775795,0.0203024316579103,0.907241821289063,0.420309662818909,-0.0927163064479828,0.902631342411041,0.253663897514343,0.129320368170738,0.958608746528625,0.280007004737854,-0.0505081303417683,0.958668291568756,0.42011895775795,0.0203024316579103,0.907241821289063,0.253663897514343,0.129320368170738,0.958608746528625,0.171242475509644,0.0780431106686592,0.982132971286774,0.134500235319138,0.12159176915884,0.983425140380859,0.392128705978394,-0.337384879589081,0.855807423591614,0.503656566143036,-0.2791648209095,0.81755542755127,0.529537320137024,-0.196504056453705,0.825212836265564,0.47293809056282,-0.0888934880495071,0.876599907875061,0.529537320137024,-0.196504056453705,0.825212836265564,0.515059351921082,-0.155334860086441,0.84296190738678,0.47293809056282,-0.0888934880495071,0.876599907875061,0.515059351921082,-0.155334860086441,0.84296190738678,0.426290512084961,-0.100778356194496,0.898954927921295,0.300763428211212,-0.144975259900093,0.942615211009979, +0.153879195451736,-0.046009574085474,0.987017810344696,0.262574404478073,-0.19075571000576,0.945868313312531,0.171242475509644,0.0780431106686592,0.982132971286774,0.153879195451736,-0.046009574085474,0.987017810344696,0.0533662401139736,0.146562337875366,0.987760841846466,0.2423445135355,-0.207427456974983,0.947756767272949,0.262574404478073,-0.19075571000576,0.945868313312531,0.305549412965775,-0.13619090616703,0.942386031150818,0.305549412965775,-0.13619090616703,0.942386031150818,0.291346490383148,0.0611963793635368,0.954658150672913,0.202096506953239,0.113540336489677,0.972761809825897,0.183695614337921,0.272750854492188,0.944384753704071,0.291346490383148,0.0611963793635368,0.954658150672913,0.270329684019089,0.23632775247097,0.933311820030212,0.284088909626007,0.317713260650635,0.904627919197083,0.373106896877289,0.185735791921616,0.909006774425507,0.212854743003845,0.423279881477356,0.880640029907227,0.303067952394485,0.457902848720551,0.835747957229614,0.212854743003845,0.423279881477356,0.880640029907227,0.230102077126503,0.492896169424057,0.839110374450684,0.270329684019089,0.23632775247097,0.933311820030212,0.347734153270721,0.203452780842781,0.915252864360809,0.284088909626007,0.317713260650635,0.904627919197083,0.260777950286865,0.276460617780685,0.924967169761658,0.237830072641373,0.203379124403,0.949775576591492,0.123679496347904,0.247575983405113,0.960941970348358,-0.108360596001148,0.76529985666275,0.634487152099609,-0.233159467577934,0.717138469219208,0.656771659851074,-0.0266329143196344,0.834496200084686,0.550369501113892,-0.233159467577934,0.717138469219208,0.656771659851074,-0.168202683329582,0.685810089111328,0.708076417446136,-0.0266329143196344,0.834496200084686,0.550369501113892,-0.00296406168490648,0.638069748878479,0.769972681999207,-0.168202683329582,0.685810089111328,0.708076417446136,-0.0180179681628942,0.523196578025818,0.852021515369415,-0.00296406168490648,0.638069748878479,0.769972681999207,-0.0180179681628942,0.523196578025818,0.852021515369415,0.136592566967011,0.422657579183578,0.895936906337738, +0.123679496347904,0.247575983405113,0.960941970348358,0.136592566967011,0.422657579183578,0.895936906337738,0.260777950286865,0.276460617780685,0.924967169761658,-0.108360596001148,0.76529985666275,0.634487152099609,0.0675790384411812,0.790684998035431,0.608481824398041,-0.172558680176735,0.648832619190216,0.741106986999512,0.275191009044647,0.585125863552094,0.762822031974792,0.339070081710815,0.525049269199371,0.7806116938591,0.230102077126503,0.492896169424057,0.839110374450684,0.275191009044647,0.585125863552094,0.762822031974792,0.193740084767342,0.627204418182373,0.754373371601105,0.323511332273483,0.66647607088089,0.671676933765411,0.00350954779423773,0.576279997825623,0.8172447681427,0.0523612163960934,0.688206434249878,0.723622858524323,0.213782727718353,0.700187087059021,0.681201100349426,-0.172558680176735,0.648832619190216,0.741106986999512,0.0523612163960934,0.688206434249878,0.723622858524323,-0.13235230743885,0.559572339057922,0.818145155906677,0.00350954779423773,0.576279997825623,0.8172447681427,0.213782727718353,0.700187087059021,0.681201100349426,0.193740084767342,0.627204418182373,0.754373371601105,0.0248698219656944,0.784355819225311,0.619812309741974,-0.0281199868768454,0.805395483970642,0.592070341110229,0.0361335501074791,0.743836879730225,0.66738361120224,0.26318347454071,0.964514076709747,-0.0211402084678411,0.287783026695251,0.954533517360687,0.0777596682310104,0.305551648139954,0.949666500091553,0.0690770819783211,0.19212718307972,0.976399064064026,0.0986504554748535,0.17128948867321,0.974414050579071,0.145523265004158,0.287783026695251,0.954533517360687,0.0777596682310104,0.150748535990715,0.116500400006771,0.981683433055878,0.237830072641373,0.203379124403,0.949775576591492,0.224802166223526,0.0896391272544861,0.970272481441498,0.150748535990715,0.116500400006771,0.981683433055878,0.121682927012444,0.0871393010020256,0.988736510276794,0.0622172057628632,0.188094243407249,0.98017817735672,0.186404719948769,0.377718269824982,0.906963109970093,0.138674452900887,0.383616268634796,0.913021266460419, +0.147948831319809,0.243292838335037,0.958602964878082,0.121682927012444,0.0871393010020256,0.988736510276794,0.237218081951141,0.0927581712603569,0.967017769813538,0.147948831319809,0.243292838335037,0.958602964878082,0.186404719948769,0.377718269824982,0.906963109970093,0.146585047245026,0.448811560869217,0.881521880626678,0.138674452900887,0.383616268634796,0.913021266460419,0.166356474161148,0.530001580715179,0.831518888473511,0.0882005840539932,0.507813811302185,0.856939554214478,0.146585047245026,0.448811560869217,0.881521880626678,0.130434736609459,0.580640733242035,0.803643524646759,0.166356474161148,0.530001580715179,0.831518888473511,0.192515254020691,0.626001298427582,0.755685150623322,0.192515254020691,0.626001298427582,0.755685150623322,0.138455301523209,0.682594060897827,0.717562079429626,0.123435221612453,0.666655957698822,0.735073745250702,0.0361335501074791,0.743836879730225,0.66738361120224,0.0403314493596554,0.714066982269287,0.698914647102356,0.138455301523209,0.682594060897827,0.717562079429626,0.171578153967857,0.971455454826355,0.163814157247543,0.17128948867321,0.974414050579071,0.145523265004158,0.19212718307972,0.976399064064026,0.0986504554748535,0.245438128709793,0.939164996147156,0.240268796682358,0.171578153967857,0.971455454826355,0.163814157247543,0.32250714302063,0.936523079872131,0.137526288628578,0.416870534420013,0.866686761379242,0.273994237184525,0.245438128709793,0.939164996147156,0.240268796682358,0.471544444561005,0.853276491165161,0.22263191640377,0.416870534420013,0.866686761379242,0.273994237184525,0.576404690742493,0.769129395484924,0.276039093732834,0.331274658441544,0.881245195865631,0.337140679359436,0.652380168437958,0.731931209564209,0.196663782000542,0.780361771583557,0.571741700172424,0.25327205657959,0.576404690742493,0.769129395484924,0.276039093732834,0.780361771583557,0.571741700172424,0.25327205657959,0.866604149341583,0.487601757049561,0.106025390326977,0.886294066905975,0.3976189494133,0.237448185682297,0.848690867424011,0.387295126914978,0.360175222158432, +0.870593667030334,0.342585265636444,0.3531314432621,0.826460659503937,0.470702588558197,0.308871865272522,0.82616138458252,0.400430798530579,0.396374106407166,0.848690867424011,0.387295126914978,0.360175222158432,0.81199187040329,0.454914599657059,0.365679860115051,0.892129242420197,0.409080982208252,0.19172391295433,0.876369774341583,0.402731448411942,0.264165490865707,0.905253231525421,0.279196530580521,0.320259034633636,0.870593667030334,0.342585265636444,0.3531314432621,0.876369774341583,0.402731448411942,0.264165490865707,0.826460659503937,0.470702588558197,0.308871865272522,0.892129242420197,0.409080982208252,0.19172391295433,0.905253231525421,0.279196530580521,0.320259034633636,0.886294066905975,0.3976189494133,0.237448185682297,0.482879608869553,0.306309998035431,0.820366561412811,0.54468297958374,0.220325767993927,0.809182822704315,0.600396513938904,0.341484129428864,0.723126888275146,0.634307444095612,0.34515181183815,0.691754460334778,0.670446753501892,0.276777803897858,0.688400328159332,0.613422811031342,0.331621646881104,0.716756224632263,0.547985136508942,0.397220134735107,0.736157774925232,0.600396513938904,0.341484129428864,0.723126888275146,0.634307444095612,0.34515181183815,0.691754460334778,0.612667381763458,0.389772981405258,0.687543094158173,0.664383471012115,0.332575857639313,0.669318854808807,0.650475382804871,0.396056622266769,0.648090183734894,0.552988648414612,0.427430331707001,0.715196967124939,0.613422811031342,0.331621646881104,0.716756224632263,0.612667381763458,0.389772981405258,0.687543094158173,0.483378410339355,0.214341431856155,0.848765552043915,0.54468297958374,0.220325767993927,0.809182822704315,0.482879608869553,0.306309998035431,0.820366561412811,0.82616138458252,0.400430798530579,0.396374106407166,0.81199187040329,0.454914599657059,0.365679860115051,0.772309184074402,0.465531647205353,0.432225376367569,0.772309184074402,0.465531647205353,0.432225376367569,0.706791698932648,0.512935340404511,0.487178295850754,0.686091899871826,0.435670405626297,0.582639694213867,0.686091899871826,0.435670405626297,0.582639694213867, +0.62119048833847,0.441356807947159,0.647554159164429,0.650475382804871,0.396056622266769,0.648090183734894,0.79223096370697,0.105440013110638,0.601042747497559,0.649829685688019,0.0461880341172218,0.758675098419189,0.665528833866119,0.225126296281815,0.711610376834869,0.483378410339355,0.214341431856155,0.848765552043915,0.518855631351471,0.359361946582794,0.775659501552582,0.665528833866119,0.225126296281815,0.711610376834869,0.789794504642487,-0.0598123036324978,0.610448181629181,0.79223096370697,0.105440013110638,0.601042747497559,0.8728306889534,0.00972162559628487,0.487925946712494,0.871392548084259,-0.301381886005402,0.387096762657166,0.790592193603516,-0.224941268563271,0.569530725479126,0.877426743507385,-0.1558698117733,0.453681349754334,0.87561708688736,-0.0744692981243134,0.477230489253998,0.877426743507385,-0.1558698117733,0.453681349754334,0.789794504642487,-0.0598123036324978,0.610448181629181,0.492816627025604,-0.474328011274338,0.729482471942902,0.421246021986008,-0.620599329471588,0.661368310451508,0.623649537563324,-0.490239709615707,0.608872771263123,0.244432404637337,-0.146354675292969,0.958557784557343,0.282571315765381,-0.0967374444007874,0.954355955123901,0.193250477313995,-0.158799558877945,0.968213200569153,0.411331236362457,-0.268900573253632,0.870918452739716,0.244432404637337,-0.146354675292969,0.958557784557343,0.208701744675636,-0.274956881999969,0.938531935214996,0.282571315765381,-0.0967374444007874,0.954355955123901,0.306764125823975,-0.192916706204414,0.932029366493225,0.193250477313995,-0.158799558877945,0.968213200569153,0.38394483923912,-0.388521194458008,0.837638020515442,0.492816627025604,-0.474328011274338,0.729482471942902,0.584139108657837,-0.350667655467987,0.731992840766907,0.411331236362457,-0.268900573253632,0.870918452739716,0.38394483923912,-0.388521194458008,0.837638020515442,0.584139108657837,-0.350667655467987,0.731992840766907,0.390531480312347,-0.214615747332573,0.895223498344421,0.306764125823975,-0.192916706204414,0.932029366493225,0.392162591218948,-0.320126354694366,0.862396359443665, +0.390531480312347,-0.214615747332573,0.895223498344421,0.392162591218948,-0.320126354694366,0.862396359443665,0.394492208957672,-0.32767778635025,0.858488798141479,0.519575357437134,-0.524713575839996,0.67432701587677,0.504042625427246,-0.553920865058899,0.662655651569366,0.488787800073624,-0.306269705295563,0.816875278949738,0.623132705688477,-0.116109080612659,0.773449540138245,0.508786976337433,-0.0622181259095669,0.858641088008881,0.603840231895447,0.0263564214110374,0.79666942358017,0.526898860931396,-0.0422754473984241,0.848875880241394,0.508786976337433,-0.0622181259095669,0.858641088008881,0.482112169265747,-0.190091773867607,0.855238437652588,0.534871399402618,-0.284098505973816,0.795738935470581,0.552499771118164,-0.469884634017944,0.688441932201386,0.488787800073624,-0.306269705295563,0.816875278949738,0.534871399402618,-0.284098505973816,0.795738935470581,0.526898860931396,-0.0422754473984241,0.848875880241394,0.482112169265747,-0.190091773867607,0.855238437652588,0.623132705688477,-0.116109080612659,0.773449540138245,0.731761813163757,-0.168248355388641,0.660467267036438,0.759950459003448,-0.292904704809189,0.580242991447449,0.782142698764801,-0.372656613588333,0.499379426240921,0.798241555690765,-0.447401881217957,0.403288930654526,0.759950459003448,-0.292904704809189,0.580242991447449,0.545982301235199,-0.628049373626709,0.554488122463226,0.577296555042267,-0.603464722633362,0.550053477287292,0.623649537563324,-0.490239709615707,0.608872771263123,0.607475578784943,-0.501481533050537,0.616027176380157,0.577296555042267,-0.603464722633362,0.550053477287292,0.519575357437134,-0.524713575839996,0.67432701587677,0.763037323951721,-0.527620494365692,0.373350352048874,0.726977944374084,-0.638608992099762,0.25235190987587,0.785427153110504,-0.547979235649109,0.287789523601532,0.656560838222504,-0.71994960308075,0.224945083260536,0.708777546882629,-0.649789214134216,0.27460578083992,0.726977944374084,-0.638608992099762,0.25235190987587,0.763037323951721,-0.527620494365692,0.373350352048874,0.785427153110504,-0.547979235649109,0.287789523601532, +0.798241555690765,-0.447401881217957,0.403288930654526,0.392128705978394,-0.337384879589081,0.855807423591614,0.394492208957672,-0.32767778635025,0.858488798141479,0.392162591218948,-0.320126354694366,0.862396359443665,0.386325061321259,-0.0994983091950417,0.91698032617569,0.426290512084961,-0.100778356194496,0.898954927921295,0.348674684762955,-0.170183956623077,0.921663284301758,0.433367669582367,-0.0627975314855576,0.89902663230896,0.386325061321259,-0.0994983091950417,0.91698032617569,0.243029460310936,-0.122977882623672,0.962191760540009,0.42011895775795,0.0203024316579103,0.907241821289063,0.433367669582367,-0.0627975314855576,0.89902663230896,0.333402633666992,0.0150874787941575,0.942663788795471,0.350758403539658,0.139257714152336,0.926053822040558,0.253663897514343,0.129320368170738,0.958608746528625,0.42011895775795,0.0203024316579103,0.907241821289063,0.23903501033783,0.139443144202232,0.960946321487427,0.171242475509644,0.0780431106686592,0.982132971286774,0.253663897514343,0.129320368170738,0.958608746528625,0.392128705978394,-0.337384879589081,0.855807423591614,0.392162591218948,-0.320126354694366,0.862396359443665,0.503656566143036,-0.2791648209095,0.81755542755127,0.503656566143036,-0.2791648209095,0.81755542755127,0.568130910396576,-0.19765317440033,0.798849403858185,0.529537320137024,-0.196504056453705,0.825212836265564,0.515059351921082,-0.155334860086441,0.84296190738678,0.529537320137024,-0.196504056453705,0.825212836265564,0.568130910396576,-0.19765317440033,0.798849403858185,0.458277404308319,-0.134959727525711,0.878503024578094,0.426290512084961,-0.100778356194496,0.898954927921295,0.515059351921082,-0.155334860086441,0.84296190738678,0.171242475509644,0.0780431106686592,0.982132971286774,0.262574404478073,-0.19075571000576,0.945868313312531,0.153879195451736,-0.046009574085474,0.987017810344696,0.305616497993469,-0.14498870074749,0.941050827503204,0.305549412965775,-0.13619090616703,0.942386031150818,0.262574404478073,-0.19075571000576,0.945868313312531,0.291346490383148,0.0611963793635368,0.954658150672913, +0.305549412965775,-0.13619090616703,0.942386031150818,0.382446110248566,-0.0790920555591583,0.920586407184601,0.376925945281982,0.0702519044280052,0.923575341701508,0.270329684019089,0.23632775247097,0.933311820030212,0.291346490383148,0.0611963793635368,0.954658150672913,0.373106896877289,0.185735791921616,0.909006774425507,0.284088909626007,0.317713260650635,0.904627919197083,0.406422525644302,0.116976998746395,0.906166076660156,0.212854743003845,0.423279881477356,0.880640029907227,0.373106896877289,0.185735791921616,0.909006774425507,0.291777938604355,0.324896633625031,0.899615287780762,0.212854743003845,0.423279881477356,0.880640029907227,0.170840486884117,0.515116930007935,0.839921355247498,0.230102077126503,0.492896169424057,0.839110374450684,0.270329684019089,0.23632775247097,0.933311820030212,0.376925945281982,0.0702519044280052,0.923575341701508,0.347734153270721,0.203452780842781,0.915252864360809,0.284088909626007,0.317713260650635,0.904627919197083,0.347734153270721,0.203452780842781,0.915252864360809,0.406422525644302,0.116976998746395,0.906166076660156,0.260777950286865,0.276460617780685,0.924967169761658,0.275155693292618,0.221810221672058,0.935462176799774,0.237830072641373,0.203379124403,0.949775576591492,-0.108360596001148,0.76529985666275,0.634487152099609,-0.293920010328293,0.655557453632355,0.695597052574158,-0.233159467577934,0.717138469219208,0.656771659851074,-0.168202683329582,0.685810089111328,0.708076417446136,-0.233159467577934,0.717138469219208,0.656771659851074,-0.267171442508698,0.667942941188812,0.694601655006409,-0.0180179681628942,0.523196578025818,0.852021515369415,-0.168202683329582,0.685810089111328,0.708076417446136,-0.0105634331703186,0.462467938661575,0.886573016643524,0.136592566967011,0.422657579183578,0.895936906337738,-0.0180179681628942,0.523196578025818,0.852021515369415,0.162187486886978,0.358823597431183,0.919206619262695,0.136592566967011,0.422657579183578,0.895936906337738,0.162187486886978,0.358823597431183,0.919206619262695,0.260777950286865,0.276460617780685,0.924967169761658, +-0.108360596001148,0.76529985666275,0.634487152099609,-0.172558680176735,0.648832619190216,0.741106986999512,-0.293920010328293,0.655557453632355,0.695597052574158,0.230102077126503,0.492896169424057,0.839110374450684,0.170840486884117,0.515116930007935,0.839921355247498,0.275191009044647,0.585125863552094,0.762822031974792,0.225744038820267,0.592826843261719,0.773043215274811,0.193740084767342,0.627204418182373,0.754373371601105,0.275191009044647,0.585125863552094,0.762822031974792,0.00350954779423773,0.576279997825623,0.8172447681427,-0.13235230743885,0.559572339057922,0.818145155906677,0.0523612163960934,0.688206434249878,0.723622858524323,-0.242020159959793,0.578021883964539,0.779305338859558,-0.172558680176735,0.648832619190216,0.741106986999512,-0.13235230743885,0.559572339057922,0.818145155906677,0.00350954779423773,0.576279997825623,0.8172447681427,0.193740084767342,0.627204418182373,0.754373371601105,-0.0081989886239171,0.488761842250824,0.872378647327423,0.01594203338027,0.756135642528534,0.654220581054688,0.0248698219656944,0.784355819225311,0.619812309741974,0.0361335501074791,0.743836879730225,0.66738361120224,0.314638316631317,0.949209272861481,0.00209437729790807,0.287783026695251,0.954533517360687,0.0777596682310104,0.26318347454071,0.964514076709747,-0.0211402084678411,0.19212718307972,0.976399064064026,0.0986504554748535,0.287783026695251,0.954533517360687,0.0777596682310104,0.233313396573067,0.971153616905212,0.0492487363517284,0.237830072641373,0.203379124403,0.949775576591492,0.275155693292618,0.221810221672058,0.935462176799774,0.224802166223526,0.0896391272544861,0.970272481441498,0.224802166223526,0.0896391272544861,0.970272481441498,0.121682927012444,0.0871393010020256,0.988736510276794,0.150748535990715,0.116500400006771,0.981683433055878,0.147948831319809,0.243292838335037,0.958602964878082,0.258578956127167,0.277361124753952,0.925314843654633,0.186404719948769,0.377718269824982,0.906963109970093,0.121682927012444,0.0871393010020256,0.988736510276794,0.224802166223526,0.0896391272544861,0.970272481441498, +0.237218081951141,0.0927581712603569,0.967017769813538,0.147948831319809,0.243292838335037,0.958602964878082,0.237218081951141,0.0927581712603569,0.967017769813538,0.258578956127167,0.277361124753952,0.925314843654633,0.189963534474373,0.45488628745079,0.870052993297577,0.146585047245026,0.448811560869217,0.881521880626678,0.186404719948769,0.377718269824982,0.906963109970093,0.166356474161148,0.530001580715179,0.831518888473511,0.146585047245026,0.448811560869217,0.881521880626678,0.189963534474373,0.45488628745079,0.870052993297577,0.19168995320797,0.543141782283783,0.817466676235199,0.192515254020691,0.626001298427582,0.755685150623322,0.166356474161148,0.530001580715179,0.831518888473511,0.192515254020691,0.626001298427582,0.755685150623322,0.12248008698225,0.614090204238892,0.779674172401428,0.138455301523209,0.682594060897827,0.717562079429626,0.138455301523209,0.682594060897827,0.717562079429626,0.0406299233436584,0.660284996032715,0.749915182590485,0.0361335501074791,0.743836879730225,0.66738361120224,0.19212718307972,0.976399064064026,0.0986504554748535,0.196467682719231,0.976871371269226,0.084396205842495,0.171578153967857,0.971455454826355,0.163814157247543,0.171578153967857,0.971455454826355,0.163814157247543,0.196467682719231,0.976871371269226,0.084396205842495,0.32250714302063,0.936523079872131,0.137526288628578,0.32250714302063,0.936523079872131,0.137526288628578,0.471544444561005,0.853276491165161,0.22263191640377,0.245438128709793,0.939164996147156,0.240268796682358,0.652380168437958,0.731931209564209,0.196663782000542,0.416870534420013,0.866686761379242,0.273994237184525,0.471544444561005,0.853276491165161,0.22263191640377,0.416870534420013,0.866686761379242,0.273994237184525,0.652380168437958,0.731931209564209,0.196663782000542,0.576404690742493,0.769129395484924,0.276039093732834,0.811036109924316,0.57563990354538,0.104206927120686,0.780361771583557,0.571741700172424,0.25327205657959,0.652380168437958,0.731931209564209,0.196663782000542,0.811036109924316,0.57563990354538,0.104206927120686,0.866604149341583,0.487601757049561,0.106025390326977, +0.780361771583557,0.571741700172424,0.25327205657959,0.866604149341583,0.487601757049561,0.106025390326977,0.892129242420197,0.409080982208252,0.19172391295433,0.886294066905975,0.3976189494133,0.237448185682297,0.81199187040329,0.454914599657059,0.365679860115051,0.848690867424011,0.387295126914978,0.360175222158432,0.826460659503937,0.470702588558197,0.308871865272522,0.892129242420197,0.409080982208252,0.19172391295433,0.858049094676971,0.494753807783127,0.137733027338982,0.876369774341583,0.402731448411942,0.264165490865707,0.834071218967438,0.507532238960266,0.216185256838799,0.826460659503937,0.470702588558197,0.308871865272522,0.876369774341583,0.402731448411942,0.264165490865707,0.600396513938904,0.341484129428864,0.723126888275146,0.45769864320755,0.409945696592331,0.78895902633667,0.482879608869553,0.306309998035431,0.820366561412811,0.547985136508942,0.397220134735107,0.736157774925232,0.634307444095612,0.34515181183815,0.691754460334778,0.613422811031342,0.331621646881104,0.716756224632263,0.600396513938904,0.341484129428864,0.723126888275146,0.547985136508942,0.397220134735107,0.736157774925232,0.45769864320755,0.409945696592331,0.78895902633667,0.612667381763458,0.389772981405258,0.687543094158173,0.650475382804871,0.396056622266769,0.648090183734894,0.62119048833847,0.441356807947159,0.647554159164429,0.613422811031342,0.331621646881104,0.716756224632263,0.552988648414612,0.427430331707001,0.715196967124939,0.547985136508942,0.397220134735107,0.736157774925232,0.552988648414612,0.427430331707001,0.715196967124939,0.612667381763458,0.389772981405258,0.687543094158173,0.62119048833847,0.441356807947159,0.647554159164429,0.518855631351471,0.359361946582794,0.775659501552582,0.483378410339355,0.214341431856155,0.848765552043915,0.482879608869553,0.306309998035431,0.820366561412811,0.81199187040329,0.454914599657059,0.365679860115051,0.782641053199768,0.537397444248199,0.314128667116165,0.772309184074402,0.465531647205353,0.432225376367569,0.772309184074402,0.465531647205353,0.432225376367569,0.752011895179749,0.545616865158081,0.369838029146194, +0.706791698932648,0.512935340404511,0.487178295850754,0.636470854282379,0.488113224506378,0.597201943397522,0.686091899871826,0.435670405626297,0.582639694213867,0.706791698932648,0.512935340404511,0.487178295850754,0.686091899871826,0.435670405626297,0.582639694213867,0.636470854282379,0.488113224506378,0.597201943397522,0.62119048833847,0.441356807947159,0.647554159164429,0.79223096370697,0.105440013110638,0.601042747497559,0.665528833866119,0.225126296281815,0.711610376834869,0.810190856456757,0.247300386428833,0.531444251537323,0.674413561820984,0.354817926883698,0.647510945796967,0.665528833866119,0.225126296281815,0.711610376834869,0.518855631351471,0.359361946582794,0.775659501552582,0.859954357147217,0.156014502048492,0.485940217971802,0.8728306889534,0.00972162559628487,0.487925946712494,0.79223096370697,0.105440013110638,0.601042747497559,0.8728306889534,0.00972162559628487,0.487925946712494,0.87561708688736,-0.0744692981243134,0.477230489253998,0.789794504642487,-0.0598123036324978,0.610448181629181,0.871392548084259,-0.301381886005402,0.387096762657166,0.877426743507385,-0.1558698117733,0.453681349754334,0.910344481468201,-0.191994816064835,0.366620868444443,0.877426743507385,-0.1558698117733,0.453681349754334,0.87561708688736,-0.0744692981243134,0.477230489253998,0.912645161151886,-0.0448464751243591,0.406284928321838,0.584139108657837,-0.350667655467987,0.731992840766907,0.492816627025604,-0.474328011274338,0.729482471942902,0.623649537563324,-0.490239709615707,0.608872771263123,0.339533537626266,-0.0274342875927687,0.940193772315979,0.282571315765381,-0.0967374444007874,0.954355955123901,0.244432404637337,-0.146354675292969,0.958557784557343,0.39492204785347,-0.158623844385147,0.904917120933533,0.244432404637337,-0.146354675292969,0.958557784557343,0.411331236362457,-0.268900573253632,0.870918452739716,0.282571315765381,-0.0967374444007874,0.954355955123901,0.397372931241989,-0.247544392943382,0.883638143539429,0.306764125823975,-0.192916706204414,0.932029366493225,0.411331236362457,-0.268900573253632,0.870918452739716, +0.584139108657837,-0.350667655467987,0.731992840766907,0.562187612056732,-0.193952649831772,0.803944826126099,0.392162591218948,-0.320126354694366,0.862396359443665,0.306764125823975,-0.192916706204414,0.932029366493225,0.397372931241989,-0.247544392943382,0.883638143539429,0.552499771118164,-0.469884634017944,0.688441932201386,0.519575357437134,-0.524713575839996,0.67432701587677,0.488787800073624,-0.306269705295563,0.816875278949738,0.508786976337433,-0.0622181259095669,0.858641088008881,0.623132705688477,-0.116109080612659,0.773449540138245,0.502345502376556,-0.200718984007835,0.841047406196594,0.508786976337433,-0.0622181259095669,0.858641088008881,0.502345502376556,-0.200718984007835,0.841047406196594,0.482112169265747,-0.190091773867607,0.855238437652588,0.51367175579071,-0.377999544143677,0.770232141017914,0.552499771118164,-0.469884634017944,0.688441932201386,0.534871399402618,-0.284098505973816,0.795738935470581,0.51367175579071,-0.377999544143677,0.770232141017914,0.534871399402618,-0.284098505973816,0.795738935470581,0.482112169265747,-0.190091773867607,0.855238437652588,0.731010556221008,-0.370411902666092,0.573078036308289,0.759950459003448,-0.292904704809189,0.580242991447449,0.798241555690765,-0.447401881217957,0.403288930654526,0.607475578784943,-0.501481533050537,0.616027176380157,0.623649537563324,-0.490239709615707,0.608872771263123,0.577296555042267,-0.603464722633362,0.550053477287292,0.552499771118164,-0.469884634017944,0.688441932201386,0.607475578784943,-0.501481533050537,0.616027176380157,0.519575357437134,-0.524713575839996,0.67432701587677,0.726977944374084,-0.638608992099762,0.25235190987587,0.759850978851318,-0.57358056306839,0.305992841720581,0.785427153110504,-0.547979235649109,0.287789523601532,0.708777546882629,-0.649789214134216,0.27460578083992,0.656560838222504,-0.71994960308075,0.224945083260536,0.660230159759521,-0.685432732105255,0.307047158479691,0.726977944374084,-0.638608992099762,0.25235190987587,0.708777546882629,-0.649789214134216,0.27460578083992,0.759850978851318,-0.57358056306839,0.305992841720581, +0.798241555690765,-0.447401881217957,0.403288930654526,0.785427153110504,-0.547979235649109,0.287789523601532,0.759850978851318,-0.57358056306839,0.305992841720581,0.348674684762955,-0.170183956623077,0.921663284301758,0.426290512084961,-0.100778356194496,0.898954927921295,0.458277404308319,-0.134959727525711,0.878503024578094,0.386325061321259,-0.0994983091950417,0.91698032617569,0.348674684762955,-0.170183956623077,0.921663284301758,0.243029460310936,-0.122977882623672,0.962191760540009,0.433367669582367,-0.0627975314855576,0.89902663230896,0.243029460310936,-0.122977882623672,0.962191760540009,0.333402633666992,0.0150874787941575,0.942663788795471,0.350758403539658,0.139257714152336,0.926053822040558,0.42011895775795,0.0203024316579103,0.907241821289063,0.333402633666992,0.0150874787941575,0.942663788795471,0.253663897514343,0.129320368170738,0.958608746528625,0.350758403539658,0.139257714152336,0.926053822040558,0.23903501033783,0.139443144202232,0.960946321487427,0.171242475509644,0.0780431106686592,0.982132971286774,0.23903501033783,0.139443144202232,0.960946321487427,0.259110331535339,-0.0479038991034031,0.964658975601196,0.392162591218948,-0.320126354694366,0.862396359443665,0.397372931241989,-0.247544392943382,0.883638143539429,0.503656566143036,-0.2791648209095,0.81755542755127,0.515855491161346,-0.214382976293564,0.829417169094086,0.568130910396576,-0.19765317440033,0.798849403858185,0.503656566143036,-0.2791648209095,0.81755542755127,0.555468618869781,-0.194660946726799,0.808431565761566,0.515059351921082,-0.155334860086441,0.84296190738678,0.568130910396576,-0.19765317440033,0.798849403858185,0.458277404308319,-0.134959727525711,0.878503024578094,0.515059351921082,-0.155334860086441,0.84296190738678,0.531349301338196,-0.0829833969473839,0.84307861328125,0.171242475509644,0.0780431106686592,0.982132971286774,0.259110331535339,-0.0479038991034031,0.964658975601196,0.262574404478073,-0.19075571000576,0.945868313312531,0.414111077785492,-0.100619755685329,0.904647767543793,0.305549412965775,-0.13619090616703,0.942386031150818, +0.305616497993469,-0.14498870074749,0.941050827503204,0.305616497993469,-0.14498870074749,0.941050827503204,0.262574404478073,-0.19075571000576,0.945868313312531,0.259110331535339,-0.0479038991034031,0.964658975601196,0.414111077785492,-0.100619755685329,0.904647767543793,0.382446110248566,-0.0790920555591583,0.920586407184601,0.305549412965775,-0.13619090616703,0.942386031150818,0.291346490383148,0.0611963793635368,0.954658150672913,0.382446110248566,-0.0790920555591583,0.920586407184601,0.376925945281982,0.0702519044280052,0.923575341701508,0.509129822254181,-0.0184873174875975,0.860491096973419,0.373106896877289,0.185735791921616,0.909006774425507,0.406422525644302,0.116976998746395,0.906166076660156,0.429211676120758,0.302551597356796,0.851022779941559,0.291777938604355,0.324896633625031,0.899615287780762,0.373106896877289,0.185735791921616,0.909006774425507,0.212854743003845,0.423279881477356,0.880640029907227,0.291777938604355,0.324896633625031,0.899615287780762,0.272989481687546,0.431001424789429,0.860066473484039,0.212854743003845,0.423279881477356,0.880640029907227,0.272989481687546,0.431001424789429,0.860066473484039,0.170840486884117,0.515116930007935,0.839921355247498,0.376925945281982,0.0702519044280052,0.923575341701508,0.406422525644302,0.116976998746395,0.906166076660156,0.347734153270721,0.203452780842781,0.915252864360809,0.275155693292618,0.221810221672058,0.935462176799774,0.260777950286865,0.276460617780685,0.924967169761658,0.162187486886978,0.358823597431183,0.919206619262695,-0.233159467577934,0.717138469219208,0.656771659851074,-0.293920010328293,0.655557453632355,0.695597052574158,-0.267171442508698,0.667942941188812,0.694601655006409,-0.168202683329582,0.685810089111328,0.708076417446136,-0.267171442508698,0.667942941188812,0.694601655006409,-0.0771195814013481,0.562456250190735,0.823222577571869,-0.168202683329582,0.685810089111328,0.708076417446136,-0.0771195814013481,0.562456250190735,0.823222577571869,-0.0105634331703186,0.462467938661575,0.886573016643524,-0.0180179681628942,0.523196578025818,0.852021515369415, +-0.0105634331703186,0.462467938661575,0.886573016643524,0.162187486886978,0.358823597431183,0.919206619262695,-0.242020159959793,0.578021883964539,0.779305338859558,-0.293920010328293,0.655557453632355,0.695597052574158,-0.172558680176735,0.648832619190216,0.741106986999512,0.225744038820267,0.592826843261719,0.773043215274811,0.275191009044647,0.585125863552094,0.762822031974792,0.170840486884117,0.515116930007935,0.839921355247498,0.225744038820267,0.592826843261719,0.773043215274811,0.171153053641319,0.585917174816132,0.792090594768524,0.193740084767342,0.627204418182373,0.754373371601105,0.00350954779423773,0.576279997825623,0.8172447681427,-0.137312293052673,0.454007029533386,0.880353808403015,-0.13235230743885,0.559572339057922,0.818145155906677,-0.13235230743885,0.559572339057922,0.818145155906677,-0.137312293052673,0.454007029533386,0.880353808403015,-0.242020159959793,0.578021883964539,0.779305338859558,-0.0081989886239171,0.488761842250824,0.872378647327423,0.193740084767342,0.627204418182373,0.754373371601105,0.0971331521868706,0.519326865673065,0.84903746843338,0.00350954779423773,0.576279997825623,0.8172447681427,-0.0081989886239171,0.488761842250824,0.872378647327423,-0.137312293052673,0.454007029533386,0.880353808403015,0.0406299233436584,0.660284996032715,0.749915182590485,0.01594203338027,0.756135642528534,0.654220581054688,0.0361335501074791,0.743836879730225,0.66738361120224,0.314638316631317,0.949209272861481,0.00209437729790807,0.233313396573067,0.971153616905212,0.0492487363517284,0.287783026695251,0.954533517360687,0.0777596682310104,0.19212718307972,0.976399064064026,0.0986504554748535,0.233313396573067,0.971153616905212,0.0492487363517284,0.196467682719231,0.976871371269226,0.084396205842495,0.196337446570396,0.244698211550713,0.949512541294098,0.224802166223526,0.0896391272544861,0.970272481441498,0.275155693292618,0.221810221672058,0.935462176799774,0.211648061871529,0.362381160259247,0.907681047916412,0.186404719948769,0.377718269824982,0.906963109970093,0.258578956127167,0.277361124753952,0.925314843654633, +0.224802166223526,0.0896391272544861,0.970272481441498,0.258156150579453,0.0986400619149208,0.96105432510376,0.237218081951141,0.0927581712603569,0.967017769813538,0.237218081951141,0.0927581712603569,0.967017769813538,0.325381875038147,0.0868537500500679,0.94158536195755,0.258578956127167,0.277361124753952,0.925314843654633,0.186404719948769,0.377718269824982,0.906963109970093,0.211648061871529,0.362381160259247,0.907681047916412,0.189963534474373,0.45488628745079,0.870052993297577,0.19168995320797,0.543141782283783,0.817466676235199,0.166356474161148,0.530001580715179,0.831518888473511,0.189963534474373,0.45488628745079,0.870052993297577,0.192515254020691,0.626001298427582,0.755685150623322,0.19168995320797,0.543141782283783,0.817466676235199,0.12248008698225,0.614090204238892,0.779674172401428,0.138455301523209,0.682594060897827,0.717562079429626,0.12248008698225,0.614090204238892,0.779674172401428,0.0406299233436584,0.660284996032715,0.749915182590485,0.196467682719231,0.976871371269226,0.084396205842495,0.240354716777802,0.970391750335693,0.0238614175468683,0.32250714302063,0.936523079872131,0.137526288628578,0.32250714302063,0.936523079872131,0.137526288628578,0.556236624717712,0.82250440120697,0.118689149618149,0.471544444561005,0.853276491165161,0.22263191640377,0.652380168437958,0.731931209564209,0.196663782000542,0.471544444561005,0.853276491165161,0.22263191640377,0.556236624717712,0.82250440120697,0.118689149618149,0.652380168437958,0.731931209564209,0.196663782000542,0.728854596614838,0.681846499443054,0.0620977841317654,0.811036109924316,0.57563990354538,0.104206927120686,0.811036109924316,0.57563990354538,0.104206927120686,0.841797590255737,0.539422869682312,0.0199900008738041,0.866604149341583,0.487601757049561,0.106025390326977,0.892129242420197,0.409080982208252,0.19172391295433,0.866604149341583,0.487601757049561,0.106025390326977,0.858049094676971,0.494753807783127,0.137733027338982,0.81199187040329,0.454914599657059,0.365679860115051,0.826460659503937,0.470702588558197,0.308871865272522,0.782641053199768,0.537397444248199,0.314128667116165, +0.858049094676971,0.494753807783127,0.137733027338982,0.834071218967438,0.507532238960266,0.216185256838799,0.876369774341583,0.402731448411942,0.264165490865707,0.834071218967438,0.507532238960266,0.216185256838799,0.80336320400238,0.545027494430542,0.239900588989258,0.826460659503937,0.470702588558197,0.308871865272522,0.518855631351471,0.359361946582794,0.775659501552582,0.482879608869553,0.306309998035431,0.820366561412811,0.45769864320755,0.409945696592331,0.78895902633667,0.45769864320755,0.409945696592331,0.78895902633667,0.547985136508942,0.397220134735107,0.736157774925232,0.42995822429657,0.45355036854744,0.780658662319183,0.547985136508942,0.397220134735107,0.736157774925232,0.552988648414612,0.427430331707001,0.715196967124939,0.42995822429657,0.45355036854744,0.780658662319183,0.552988648414612,0.427430331707001,0.715196967124939,0.62119048833847,0.441356807947159,0.647554159164429,0.563539028167725,0.500743329524994,0.657023370265961,0.752011895179749,0.545616865158081,0.369838029146194,0.772309184074402,0.465531647205353,0.432225376367569,0.782641053199768,0.537397444248199,0.314128667116165,0.752011895179749,0.545616865158081,0.369838029146194,0.766538739204407,0.492107927799225,0.412611186504364,0.706791698932648,0.512935340404511,0.487178295850754,0.649481594562531,0.510450661182404,0.56357216835022,0.636470854282379,0.488113224506378,0.597201943397522,0.706791698932648,0.512935340404511,0.487178295850754,0.636470854282379,0.488113224506378,0.597201943397522,0.563539028167725,0.500743329524994,0.657023370265961,0.62119048833847,0.441356807947159,0.647554159164429,0.762664258480072,0.361497104167938,0.536342144012451,0.810190856456757,0.247300386428833,0.531444251537323,0.665528833866119,0.225126296281815,0.711610376834869,0.859954357147217,0.156014502048492,0.485940217971802,0.79223096370697,0.105440013110638,0.601042747497559,0.810190856456757,0.247300386428833,0.531444251537323,0.762664258480072,0.361497104167938,0.536342144012451,0.665528833866119,0.225126296281815,0.711610376834869,0.674413561820984,0.354817926883698,0.647510945796967, +0.674413561820984,0.354817926883698,0.647510945796967,0.518855631351471,0.359361946582794,0.775659501552582,0.680937767028809,0.435988545417786,0.588419675827026,0.873599290847778,0.122305244207382,0.471026182174683,0.8728306889534,0.00972162559628487,0.487925946712494,0.859954357147217,0.156014502048492,0.485940217971802,0.87561708688736,-0.0744692981243134,0.477230489253998,0.8728306889534,0.00972162559628487,0.487925946712494,0.912645161151886,-0.0448464751243591,0.406284928321838,0.910344481468201,-0.191994816064835,0.366620868444443,0.877426743507385,-0.1558698117733,0.453681349754334,0.912645161151886,-0.0448464751243591,0.406284928321838,0.684000313282013,-0.350913316011429,0.639533579349518,0.584139108657837,-0.350667655467987,0.731992840766907,0.623649537563324,-0.490239709615707,0.608872771263123,0.339533537626266,-0.0274342875927687,0.940193772315979,0.314269483089447,0.0145530831068754,0.949222207069397,0.282571315765381,-0.0967374444007874,0.954355955123901,0.39492204785347,-0.158623844385147,0.904917120933533,0.339533537626266,-0.0274342875927687,0.940193772315979,0.244432404637337,-0.146354675292969,0.958557784557343,0.562187612056732,-0.193952649831772,0.803944826126099,0.39492204785347,-0.158623844385147,0.904917120933533,0.411331236362457,-0.268900573253632,0.870918452739716,0.282571315765381,-0.0967374444007874,0.954355955123901,0.436205685138702,-0.137197822332382,0.889326274394989,0.397372931241989,-0.247544392943382,0.883638143539429,0.677431464195251,-0.278760850429535,0.680719435214996,0.562187612056732,-0.193952649831772,0.803944826126099,0.584139108657837,-0.350667655467987,0.731992840766907,0.45384418964386,-0.353122979402542,0.818125605583191,0.482112169265747,-0.190091773867607,0.855238437652588,0.502345502376556,-0.200718984007835,0.841047406196594,0.552499771118164,-0.469884634017944,0.688441932201386,0.51367175579071,-0.377999544143677,0.770232141017914,0.55459064245224,-0.487950921058655,0.674042224884033,0.45384418964386,-0.353122979402542,0.818125605583191,0.51367175579071,-0.377999544143677,0.770232141017914, +0.482112169265747,-0.190091773867607,0.855238437652588,0.773634493350983,-0.443773359060287,0.452277302742004,0.731010556221008,-0.370411902666092,0.573078036308289,0.798241555690765,-0.447401881217957,0.403288930654526,0.607475578784943,-0.501481533050537,0.616027176380157,0.665309965610504,-0.389527678489685,0.63689136505127,0.623649537563324,-0.490239709615707,0.608872771263123,0.550047814846039,-0.496457308530808,0.67154848575592,0.607475578784943,-0.501481533050537,0.616027176380157,0.552499771118164,-0.469884634017944,0.688441932201386,0.683378100395203,-0.628400087356567,0.371628284454346,0.708777546882629,-0.649789214134216,0.27460578083992,0.660230159759521,-0.685432732105255,0.307047158479691,0.708777546882629,-0.649789214134216,0.27460578083992,0.683378100395203,-0.628400087356567,0.371628284454346,0.759850978851318,-0.57358056306839,0.305992841720581,0.753945708274841,-0.515135586261749,0.407677799463272,0.798241555690765,-0.447401881217957,0.403288930654526,0.759850978851318,-0.57358056306839,0.305992841720581,0.458277404308319,-0.134959727525711,0.878503024578094,0.52230578660965,-0.118627443909645,0.844466686248779,0.348674684762955,-0.170183956623077,0.921663284301758,0.253302335739136,-0.160996153950691,0.953896224498749,0.243029460310936,-0.122977882623672,0.962191760540009,0.348674684762955,-0.170183956623077,0.921663284301758,0.240872249007225,-0.0530039742588997,0.969108402729034,0.333402633666992,0.0150874787941575,0.942663788795471,0.243029460310936,-0.122977882623672,0.962191760540009,0.221458077430725,0.104775972664356,0.969524741172791,0.350758403539658,0.139257714152336,0.926053822040558,0.333402633666992,0.0150874787941575,0.942663788795471,0.350758403539658,0.139257714152336,0.926053822040558,0.333323776721954,0.0597232989966869,0.940918862819672,0.23903501033783,0.139443144202232,0.960946321487427,0.23903501033783,0.139443144202232,0.960946321487427,0.333323776721954,0.0597232989966869,0.940918862819672,0.259110331535339,-0.0479038991034031,0.964658975601196,0.397372931241989,-0.247544392943382,0.883638143539429, +0.515855491161346,-0.214382976293564,0.829417169094086,0.503656566143036,-0.2791648209095,0.81755542755127,0.515855491161346,-0.214382976293564,0.829417169094086,0.555468618869781,-0.194660946726799,0.808431565761566,0.568130910396576,-0.19765317440033,0.798849403858185,0.555468618869781,-0.194660946726799,0.808431565761566,0.531955480575562,-0.165600776672363,0.830421328544617,0.515059351921082,-0.155334860086441,0.84296190738678,0.515059351921082,-0.155334860086441,0.84296190738678,0.531955480575562,-0.165600776672363,0.830421328544617,0.531349301338196,-0.0829833969473839,0.84307861328125,0.458277404308319,-0.134959727525711,0.878503024578094,0.531349301338196,-0.0829833969473839,0.84307861328125,0.52230578660965,-0.118627443909645,0.844466686248779,0.333323776721954,0.0597232989966869,0.940918862819672,0.414111077785492,-0.100619755685329,0.904647767543793,0.305616497993469,-0.14498870074749,0.941050827503204,0.259110331535339,-0.0479038991034031,0.964658975601196,0.333323776721954,0.0597232989966869,0.940918862819672,0.305616497993469,-0.14498870074749,0.941050827503204,0.483912259340286,-0.0477803945541382,0.87381112575531,0.382446110248566,-0.0790920555591583,0.920586407184601,0.414111077785492,-0.100619755685329,0.904647767543793,0.483912259340286,-0.0477803945541382,0.87381112575531,0.376925945281982,0.0702519044280052,0.923575341701508,0.382446110248566,-0.0790920555591583,0.920586407184601,0.573955714702606,-0.0113434279337525,0.818807661533356,0.373106896877289,0.185735791921616,0.909006774425507,0.509129822254181,-0.0184873174875975,0.860491096973419,0.483912259340286,-0.0477803945541382,0.87381112575531,0.509129822254181,-0.0184873174875975,0.860491096973419,0.406422525644302,0.116976998746395,0.906166076660156,0.272989481687546,0.431001424789429,0.860066473484039,0.291777938604355,0.324896633625031,0.899615287780762,0.429211676120758,0.302551597356796,0.851022779941559,0.373106896877289,0.185735791921616,0.909006774425507,0.544764518737793,0.136966779828072,0.827327966690063,0.429211676120758,0.302551597356796,0.851022779941559, +0.272989481687546,0.431001424789429,0.860066473484039,0.29153123497963,0.497476160526276,0.817023158073425,0.170840486884117,0.515116930007935,0.839921355247498,0.376925945281982,0.0702519044280052,0.923575341701508,0.483912259340286,-0.0477803945541382,0.87381112575531,0.406422525644302,0.116976998746395,0.906166076660156,0.196337446570396,0.244698211550713,0.949512541294098,0.275155693292618,0.221810221672058,0.935462176799774,0.162187486886978,0.358823597431183,0.919206619262695,-0.267171442508698,0.667942941188812,0.694601655006409,-0.293920010328293,0.655557453632355,0.695597052574158,-0.293070286512375,0.676338791847229,0.675777673721313,-0.0363817028701305,0.497976273298264,0.8664271235466,-0.0771195814013481,0.562456250190735,0.823222577571869,-0.267171442508698,0.667942941188812,0.694601655006409,-0.0771195814013481,0.562456250190735,0.823222577571869,0.134380310773849,0.349189698696136,0.927366375923157,-0.0105634331703186,0.462467938661575,0.886573016643524,0.162187486886978,0.358823597431183,0.919206619262695,-0.0105634331703186,0.462467938661575,0.886573016643524,0.196337446570396,0.244698211550713,0.949512541294098,-0.242020159959793,0.578021883964539,0.779305338859558,-0.293070286512375,0.676338791847229,0.675777673721313,-0.293920010328293,0.655557453632355,0.695597052574158,0.225744038820267,0.592826843261719,0.773043215274811,0.170840486884117,0.515116930007935,0.839921355247498,0.29153123497963,0.497476160526276,0.817023158073425,0.249081194400787,0.532951533794403,0.808653831481934,0.171153053641319,0.585917174816132,0.792090594768524,0.225744038820267,0.592826843261719,0.773043215274811,0.193740084767342,0.627204418182373,0.754373371601105,0.171153053641319,0.585917174816132,0.792090594768524,0.0971331521868706,0.519326865673065,0.84903746843338,-0.154090493917465,0.529117465019226,0.834440350532532,-0.242020159959793,0.578021883964539,0.779305338859558,-0.137312293052673,0.454007029533386,0.880353808403015,0.0971331521868706,0.519326865673065,0.84903746843338,-0.0105430567637086,0.388284772634506,0.921479046344757, +-0.0081989886239171,0.488761842250824,0.872378647327423,-0.0105430567637086,0.388284772634506,0.921479046344757,-0.137312293052673,0.454007029533386,0.880353808403015,-0.0081989886239171,0.488761842250824,0.872378647327423,0.0406299233436584,0.660284996032715,0.749915182590485,-0.0146539704874158,0.715926289558411,0.698021948337555,0.01594203338027,0.756135642528534,0.654220581054688,0.314638316631317,0.949209272861481,0.00209437729790807,0.286826461553574,0.95796126127243,0.00637879502028227,0.233313396573067,0.971153616905212,0.0492487363517284,0.193863466382027,0.980489253997803,0.0325209274888039,0.196467682719231,0.976871371269226,0.084396205842495,0.233313396573067,0.971153616905212,0.0492487363517284,0.224802166223526,0.0896391272544861,0.970272481441498,0.196337446570396,0.244698211550713,0.949512541294098,0.258156150579453,0.0986400619149208,0.96105432510376,0.211648061871529,0.362381160259247,0.907681047916412,0.258578956127167,0.277361124753952,0.925314843654633,0.29014465212822,0.395574629306793,0.871399223804474,0.237218081951141,0.0927581712603569,0.967017769813538,0.258156150579453,0.0986400619149208,0.96105432510376,0.325381875038147,0.0868537500500679,0.94158536195755,0.258578956127167,0.277361124753952,0.925314843654633,0.325381875038147,0.0868537500500679,0.94158536195755,0.387405604124069,0.171525835990906,0.90581214427948,0.211648061871529,0.362381160259247,0.907681047916412,0.29014465212822,0.395574629306793,0.871399223804474,0.189963534474373,0.45488628745079,0.870052993297577,0.189963534474373,0.45488628745079,0.870052993297577,0.255997598171234,0.484333455562592,0.836592018604279,0.19168995320797,0.543141782283783,0.817466676235199,0.0411244556307793,0.545502960681915,0.837099254131317,0.12248008698225,0.614090204238892,0.779674172401428,0.19168995320797,0.543141782283783,0.817466676235199,0.0406299233436584,0.660284996032715,0.749915182590485,0.12248008698225,0.614090204238892,0.779674172401428,-0.0240290574729443,0.588638365268707,0.80803918838501,0.196467682719231,0.976871371269226,0.084396205842495, +0.193863466382027,0.980489253997803,0.0325209274888039,0.240354716777802,0.970391750335693,0.0238614175468683,0.240354716777802,0.970391750335693,0.0238614175468683,0.441723585128784,0.897080481052399,-0.0112629402428865,0.32250714302063,0.936523079872131,0.137526288628578,0.441723585128784,0.897080481052399,-0.0112629402428865,0.556236624717712,0.82250440120697,0.118689149618149,0.32250714302063,0.936523079872131,0.137526288628578,0.652380168437958,0.731931209564209,0.196663782000542,0.556236624717712,0.82250440120697,0.118689149618149,0.728854596614838,0.681846499443054,0.0620977841317654,0.811386823654175,0.584468603134155,0.00691409315913916,0.811036109924316,0.57563990354538,0.104206927120686,0.728854596614838,0.681846499443054,0.0620977841317654,0.811036109924316,0.57563990354538,0.104206927120686,0.811386823654175,0.584468603134155,0.00691409315913916,0.841797590255737,0.539422869682312,0.0199900008738041,0.841797590255737,0.539422869682312,0.0199900008738041,0.860907554626465,0.506868124008179,0.0438493900001049,0.866604149341583,0.487601757049561,0.106025390326977,0.860907554626465,0.506868124008179,0.0438493900001049,0.858049094676971,0.494753807783127,0.137733027338982,0.866604149341583,0.487601757049561,0.106025390326977,0.782641053199768,0.537397444248199,0.314128667116165,0.826460659503937,0.470702588558197,0.308871865272522,0.80336320400238,0.545027494430542,0.239900588989258,0.858049094676971,0.494753807783127,0.137733027338982,0.827477335929871,0.527464747428894,0.192514643073082,0.834071218967438,0.507532238960266,0.216185256838799,0.827477335929871,0.527464747428894,0.192514643073082,0.80336320400238,0.545027494430542,0.239900588989258,0.834071218967438,0.507532238960266,0.216185256838799,0.37198469042778,0.445661216974258,0.814256310462952,0.518855631351471,0.359361946582794,0.775659501552582,0.45769864320755,0.409945696592331,0.78895902633667,0.37198469042778,0.445661216974258,0.814256310462952,0.45769864320755,0.409945696592331,0.78895902633667,0.42995822429657,0.45355036854744,0.780658662319183, +0.494843870401382,0.508911848068237,0.704370737075806,0.42995822429657,0.45355036854744,0.780658662319183,0.552988648414612,0.427430331707001,0.715196967124939,0.494843870401382,0.508911848068237,0.704370737075806,0.552988648414612,0.427430331707001,0.715196967124939,0.563539028167725,0.500743329524994,0.657023370265961,0.782641053199768,0.537397444248199,0.314128667116165,0.785355091094971,0.529310762882233,0.321009874343872,0.752011895179749,0.545616865158081,0.369838029146194,0.766538739204407,0.492107927799225,0.412611186504364,0.752011895179749,0.545616865158081,0.369838029146194,0.785355091094971,0.529310762882233,0.321009874343872,0.766538739204407,0.492107927799225,0.412611186504364,0.69862824678421,0.463935643434525,0.544685304164886,0.706791698932648,0.512935340404511,0.487178295850754,0.636470854282379,0.488113224506378,0.597201943397522,0.649481594562531,0.510450661182404,0.56357216835022,0.603034853935242,0.457602858543396,0.653412878513336,0.69862824678421,0.463935643434525,0.544685304164886,0.649481594562531,0.510450661182404,0.56357216835022,0.706791698932648,0.512935340404511,0.487178295850754,0.563539028167725,0.500743329524994,0.657023370265961,0.636470854282379,0.488113224506378,0.597201943397522,0.603034853935242,0.457602858543396,0.653412878513336,0.762664258480072,0.361497104167938,0.536342144012451,0.780938863754272,0.389303296804428,0.488443702459335,0.810190856456757,0.247300386428833,0.531444251537323,0.810190856456757,0.247300386428833,0.531444251537323,0.814959943294525,0.278068631887436,0.508446574211121,0.859954357147217,0.156014502048492,0.485940217971802,0.762664258480072,0.361497104167938,0.536342144012451,0.674413561820984,0.354817926883698,0.647510945796967,0.680937767028809,0.435988545417786,0.588419675827026,0.680937767028809,0.435988545417786,0.588419675827026,0.518855631351471,0.359361946582794,0.775659501552582,0.521282017230988,0.448386371135712,0.72609543800354,0.8728306889534,0.00972162559628487,0.487925946712494,0.873599290847778,0.122305244207382,0.471026182174683,0.912645161151886,-0.0448464751243591,0.406284928321838, +0.859954357147217,0.156014502048492,0.485940217971802,0.837062060832977,0.218554124236107,0.501558601856232,0.873599290847778,0.122305244207382,0.471026182174683,0.684000313282013,-0.350913316011429,0.639533579349518,0.677431464195251,-0.278760850429535,0.680719435214996,0.584139108657837,-0.350667655467987,0.731992840766907,0.684000313282013,-0.350913316011429,0.639533579349518,0.623649537563324,-0.490239709615707,0.608872771263123,0.665309965610504,-0.389527678489685,0.63689136505127,0.339533537626266,-0.0274342875927687,0.940193772315979,0.311769545078278,0.096303403377533,0.94526469707489,0.314269483089447,0.0145530831068754,0.949222207069397,0.282571315765381,-0.0967374444007874,0.954355955123901,0.314269483089447,0.0145530831068754,0.949222207069397,0.436205685138702,-0.137197822332382,0.889326274394989,0.339533537626266,-0.0274342875927687,0.940193772315979,0.39492204785347,-0.158623844385147,0.904917120933533,0.562187612056732,-0.193952649831772,0.803944826126099,0.515855491161346,-0.214382976293564,0.829417169094086,0.397372931241989,-0.247544392943382,0.883638143539429,0.436205685138702,-0.137197822332382,0.889326274394989,0.562187612056732,-0.193952649831772,0.803944826126099,0.677431464195251,-0.278760850429535,0.680719435214996,0.679118931293488,-0.21835720539093,0.700797736644745,0.45384418964386,-0.353122979402542,0.818125605583191,0.502345502376556,-0.200718984007835,0.841047406196594,0.473199307918549,-0.319873005151749,0.820831000804901,0.51367175579071,-0.377999544143677,0.770232141017914,0.459352791309357,-0.489040344953537,0.741508185863495,0.55459064245224,-0.487950921058655,0.674042224884033,0.552499771118164,-0.469884634017944,0.688441932201386,0.55459064245224,-0.487950921058655,0.674042224884033,0.550047814846039,-0.496457308530808,0.67154848575592,0.45384418964386,-0.353122979402542,0.818125605583191,0.459352791309357,-0.489040344953537,0.741508185863495,0.51367175579071,-0.377999544143677,0.770232141017914,0.753945708274841,-0.515135586261749,0.407677799463272,0.773634493350983,-0.443773359060287,0.452277302742004, +0.798241555690765,-0.447401881217957,0.403288930654526,0.607475578784943,-0.501481533050537,0.616027176380157,0.563485324382782,-0.411046802997589,0.716606438159943,0.665309965610504,-0.389527678489685,0.63689136505127,0.563485324382782,-0.411046802997589,0.716606438159943,0.607475578784943,-0.501481533050537,0.616027176380157,0.550047814846039,-0.496457308530808,0.67154848575592,0.759850978851318,-0.57358056306839,0.305992841720581,0.683378100395203,-0.628400087356567,0.371628284454346,0.721532166004181,-0.574814915657043,0.385977953672409,0.759850978851318,-0.57358056306839,0.305992841720581,0.721532166004181,-0.574814915657043,0.385977953672409,0.753945708274841,-0.515135586261749,0.407677799463272,0.348674684762955,-0.170183956623077,0.921663284301758,0.52230578660965,-0.118627443909645,0.844466686248779,0.40720322728157,-0.170284166932106,0.897323071956635,0.240872249007225,-0.0530039742588997,0.969108402729034,0.243029460310936,-0.122977882623672,0.962191760540009,0.253302335739136,-0.160996153950691,0.953896224498749,0.348674684762955,-0.170183956623077,0.921663284301758,0.40720322728157,-0.170284166932106,0.897323071956635,0.253302335739136,-0.160996153950691,0.953896224498749,0.221458077430725,0.104775972664356,0.969524741172791,0.333402633666992,0.0150874787941575,0.942663788795471,0.240872249007225,-0.0530039742588997,0.969108402729034,0.221458077430725,0.104775972664356,0.969524741172791,0.27904200553894,0.187003552913666,0.941894471645355,0.350758403539658,0.139257714152336,0.926053822040558,0.333323776721954,0.0597232989966869,0.940918862819672,0.350758403539658,0.139257714152336,0.926053822040558,0.27904200553894,0.187003552913666,0.941894471645355,0.555468618869781,-0.194660946726799,0.808431565761566,0.515855491161346,-0.214382976293564,0.829417169094086,0.527364253997803,-0.132546976208687,0.839236617088318,0.571706116199493,-0.223184660077095,0.789519190788269,0.531955480575562,-0.165600776672363,0.830421328544617,0.555468618869781,-0.194660946726799,0.808431565761566,0.531349301338196,-0.0829833969473839,0.84307861328125, +0.531955480575562,-0.165600776672363,0.830421328544617,0.497031509876251,-0.118793994188309,0.859562397003174,0.52230578660965,-0.118627443909645,0.844466686248779,0.531349301338196,-0.0829833969473839,0.84307861328125,0.537716090679169,-0.121822781860828,0.834278404712677,0.454024910926819,0.0177943669259548,0.890811204910278,0.414111077785492,-0.100619755685329,0.904647767543793,0.333323776721954,0.0597232989966869,0.940918862819672,0.483912259340286,-0.0477803945541382,0.87381112575531,0.414111077785492,-0.100619755685329,0.904647767543793,0.454024910926819,0.0177943669259548,0.890811204910278,0.373106896877289,0.185735791921616,0.909006774425507,0.573955714702606,-0.0113434279337525,0.818807661533356,0.544764518737793,0.136966779828072,0.827327966690063,0.509129822254181,-0.0184873174875975,0.860491096973419,0.574378430843353,-0.0689323395490646,0.815682291984558,0.573955714702606,-0.0113434279337525,0.818807661533356,0.509129822254181,-0.0184873174875975,0.860491096973419,0.483912259340286,-0.0477803945541382,0.87381112575531,0.524386405944824,-0.0286143478006125,0.850999355316162,0.416702121496201,0.370644956827164,0.830049097537994,0.272989481687546,0.431001424789429,0.860066473484039,0.429211676120758,0.302551597356796,0.851022779941559,0.429211676120758,0.302551597356796,0.851022779941559,0.544764518737793,0.136966779828072,0.827327966690063,0.527572870254517,0.2154590934515,0.821732401847839,0.416702121496201,0.370644956827164,0.830049097537994,0.29153123497963,0.497476160526276,0.817023158073425,0.272989481687546,0.431001424789429,0.860066473484039,-0.27046999335289,0.71820741891861,0.641111493110657,-0.267171442508698,0.667942941188812,0.694601655006409,-0.293070286512375,0.676338791847229,0.675777673721313,-0.0363817028701305,0.497976273298264,0.8664271235466,0.139124915003777,0.36630192399025,0.920036435127258,-0.0771195814013481,0.562456250190735,0.823222577571869,-0.120547235012054,0.607069373130798,0.785452127456665,-0.0363817028701305,0.497976273298264,0.8664271235466,-0.267171442508698,0.667942941188812,0.694601655006409, +0.134380310773849,0.349189698696136,0.927366375923157,-0.0771195814013481,0.562456250190735,0.823222577571869,0.139124915003777,0.36630192399025,0.920036435127258,0.134380310773849,0.349189698696136,0.927366375923157,0.196337446570396,0.244698211550713,0.949512541294098,-0.0105634331703186,0.462467938661575,0.886573016643524,-0.293070286512375,0.676338791847229,0.675777673721313,-0.242020159959793,0.578021883964539,0.779305338859558,-0.188469663262367,0.665385842323303,0.722316205501556,0.225744038820267,0.592826843261719,0.773043215274811,0.29153123497963,0.497476160526276,0.817023158073425,0.331139475107193,0.551275372505188,0.765795052051544,0.249081194400787,0.532951533794403,0.808653831481934,0.130115330219269,0.442348301410675,0.88735443353653,0.171153053641319,0.585917174816132,0.792090594768524,0.225744038820267,0.592826843261719,0.773043215274811,0.331139475107193,0.551275372505188,0.765795052051544,0.249081194400787,0.532951533794403,0.808653831481934,0.130115330219269,0.442348301410675,0.88735443353653,0.0971331521868706,0.519326865673065,0.84903746843338,0.171153053641319,0.585917174816132,0.792090594768524,-0.154090493917465,0.529117465019226,0.834440350532532,-0.188469663262367,0.665385842323303,0.722316205501556,-0.242020159959793,0.578021883964539,0.779305338859558,-0.154090493917465,0.529117465019226,0.834440350532532,-0.137312293052673,0.454007029533386,0.880353808403015,-0.0571484267711639,0.34291273355484,0.937627255916595,0.130115330219269,0.442348301410675,0.88735443353653,-0.0105430567637086,0.388284772634506,0.921479046344757,0.0971331521868706,0.519326865673065,0.84903746843338,-0.0105430567637086,0.388284772634506,0.921479046344757,-0.0571484267711639,0.34291273355484,0.937627255916595,-0.137312293052673,0.454007029533386,0.880353808403015,0.0406299233436584,0.660284996032715,0.749915182590485,-0.0265201833099127,0.627325594425201,0.778305292129517,-0.0146539704874158,0.715926289558411,0.698021948337555,0.233313396573067,0.971153616905212,0.0492487363517284,0.286826461553574,0.95796126127243,0.00637879502028227, +0.235509425401688,0.971845388412476,-0.00719765247777104,0.235509425401688,0.971845388412476,-0.00719765247777104,0.193863466382027,0.980489253997803,0.0325209274888039,0.233313396573067,0.971153616905212,0.0492487363517284,0.134380310773849,0.349189698696136,0.927366375923157,0.258156150579453,0.0986400619149208,0.96105432510376,0.196337446570396,0.244698211550713,0.949512541294098,0.338469982147217,0.276245385408401,0.899514555931091,0.29014465212822,0.395574629306793,0.871399223804474,0.258578956127167,0.277361124753952,0.925314843654633,0.325381875038147,0.0868537500500679,0.94158536195755,0.258156150579453,0.0986400619149208,0.96105432510376,0.272203058004379,0.0736149549484253,0.959419727325439,0.302626460790634,0.182243674993515,0.935523569583893,0.387405604124069,0.171525835990906,0.90581214427948,0.325381875038147,0.0868537500500679,0.94158536195755,0.338469982147217,0.276245385408401,0.899514555931091,0.258578956127167,0.277361124753952,0.925314843654633,0.387405604124069,0.171525835990906,0.90581214427948,0.29014465212822,0.395574629306793,0.871399223804474,0.255997598171234,0.484333455562592,0.836592018604279,0.189963534474373,0.45488628745079,0.870052993297577,0.180995345115662,0.486947119235992,0.854472398757935,0.19168995320797,0.543141782283783,0.817466676235199,0.255997598171234,0.484333455562592,0.836592018604279,0.12248008698225,0.614090204238892,0.779674172401428,0.0411244556307793,0.545502960681915,0.837099254131317,-0.0240290574729443,0.588638365268707,0.80803918838501,0.0411244556307793,0.545502960681915,0.837099254131317,0.19168995320797,0.543141782283783,0.817466676235199,0.180995345115662,0.486947119235992,0.854472398757935,-0.0240290574729443,0.588638365268707,0.80803918838501,-0.0265201833099127,0.627325594425201,0.778305292129517,0.0406299233436584,0.660284996032715,0.749915182590485,0.193863466382027,0.980489253997803,0.0325209274888039,0.184324815869331,0.982282936573029,-0.0338297337293625,0.240354716777802,0.970391750335693,0.0238614175468683,0.441723585128784,0.897080481052399,-0.0112629402428865, +0.240354716777802,0.970391750335693,0.0238614175468683,0.271990090608597,0.960927605628967,-0.0513752959668636,0.441723585128784,0.897080481052399,-0.0112629402428865,0.629320919513702,0.777143180370331,-0.00190732814371586,0.556236624717712,0.82250440120697,0.118689149618149,0.556236624717712,0.82250440120697,0.118689149618149,0.629320919513702,0.777143180370331,-0.00190732814371586,0.728854596614838,0.681846499443054,0.0620977841317654,0.811386823654175,0.584468603134155,0.00691409315913916,0.728854596614838,0.681846499443054,0.0620977841317654,0.771994590759277,0.632817506790161,-0.0597176291048527,0.811386823654175,0.584468603134155,0.00691409315913916,0.822390913963318,0.561902225017548,-0.0891012102365494,0.841797590255737,0.539422869682312,0.0199900008738041,0.87510871887207,0.481278002262115,-0.0505585819482803,0.860907554626465,0.506868124008179,0.0438493900001049,0.841797590255737,0.539422869682312,0.0199900008738041,0.858049094676971,0.494753807783127,0.137733027338982,0.860907554626465,0.506868124008179,0.0438493900001049,0.862241506576538,0.497137874364853,0.0969193577766418,0.782641053199768,0.537397444248199,0.314128667116165,0.80336320400238,0.545027494430542,0.239900588989258,0.795419454574585,0.549291670322418,0.256098330020905,0.858049094676971,0.494753807783127,0.137733027338982,0.862241506576538,0.497137874364853,0.0969193577766418,0.827477335929871,0.527464747428894,0.192514643073082,0.795419454574585,0.549291670322418,0.256098330020905,0.80336320400238,0.545027494430542,0.239900588989258,0.827477335929871,0.527464747428894,0.192514643073082,0.521282017230988,0.448386371135712,0.72609543800354,0.518855631351471,0.359361946582794,0.775659501552582,0.37198469042778,0.445661216974258,0.814256310462952,0.391623109579086,0.479042768478394,0.785588443279266,0.37198469042778,0.445661216974258,0.814256310462952,0.42995822429657,0.45355036854744,0.780658662319183,0.494843870401382,0.508911848068237,0.704370737075806,0.379601806402206,0.542140662670136,0.749657213687897,0.42995822429657,0.45355036854744,0.780658662319183, +0.563539028167725,0.500743329524994,0.657023370265961,0.468304604291916,0.516866385936737,0.716616988182068,0.494843870401382,0.508911848068237,0.704370737075806,0.782641053199768,0.537397444248199,0.314128667116165,0.785205543041229,0.538781642913818,0.305231779813766,0.785355091094971,0.529310762882233,0.321009874343872,0.785355091094971,0.529310762882233,0.321009874343872,0.868967473506927,0.351969599723816,0.347869038581848,0.766538739204407,0.492107927799225,0.412611186504364,0.791322648525238,0.350859135389328,0.500705659389496,0.69862824678421,0.463935643434525,0.544685304164886,0.766538739204407,0.492107927799225,0.412611186504364,0.649481594562531,0.510450661182404,0.56357216835022,0.69862824678421,0.463935643434525,0.544685304164886,0.603034853935242,0.457602858543396,0.653412878513336,0.518874287605286,0.47451439499855,0.711059331893921,0.563539028167725,0.500743329524994,0.657023370265961,0.603034853935242,0.457602858543396,0.653412878513336,0.757014274597168,0.433437794446945,0.488938570022583,0.780938863754272,0.389303296804428,0.488443702459335,0.762664258480072,0.361497104167938,0.536342144012451,0.810190856456757,0.247300386428833,0.531444251537323,0.780938863754272,0.389303296804428,0.488443702459335,0.814959943294525,0.278068631887436,0.508446574211121,0.859954357147217,0.156014502048492,0.485940217971802,0.814959943294525,0.278068631887436,0.508446574211121,0.837062060832977,0.218554124236107,0.501558601856232,0.757014274597168,0.433437794446945,0.488938570022583,0.762664258480072,0.361497104167938,0.536342144012451,0.680937767028809,0.435988545417786,0.588419675827026,0.680937767028809,0.435988545417786,0.588419675827026,0.521282017230988,0.448386371135712,0.72609543800354,0.620079278945923,0.436206638813019,0.65209299325943,0.677431464195251,-0.278760850429535,0.680719435214996,0.684000313282013,-0.350913316011429,0.639533579349518,0.634294033050537,-0.303202897310257,0.711153328418732,0.684000313282013,-0.350913316011429,0.639533579349518,0.665309965610504,-0.389527678489685,0.63689136505127, +0.634294033050537,-0.303202897310257,0.711153328418732,0.495712131261826,0.0379657335579395,0.867656588554382,0.311769545078278,0.096303403377533,0.94526469707489,0.339533537626266,-0.0274342875927687,0.940193772315979,0.314269483089447,0.0145530831068754,0.949222207069397,0.311769545078278,0.096303403377533,0.94526469707489,0.413450688123703,0.0144868120551109,0.910411179065704,0.314269483089447,0.0145530831068754,0.949222207069397,0.413450688123703,0.0144868120551109,0.910411179065704,0.436205685138702,-0.137197822332382,0.889326274394989,0.495712131261826,0.0379657335579395,0.867656588554382,0.339533537626266,-0.0274342875927687,0.940193772315979,0.562187612056732,-0.193952649831772,0.803944826126099,0.527364253997803,-0.132546976208687,0.839236617088318,0.515855491161346,-0.214382976293564,0.829417169094086,0.436205685138702,-0.137197822332382,0.889326274394989,0.677431464195251,-0.278760850429535,0.680719435214996,0.666471064090729,-0.195282801985741,0.719500362873077,0.679118931293488,-0.21835720539093,0.700797736644745,0.658835351467133,-0.115728996694088,0.743332087993622,0.562187612056732,-0.193952649831772,0.803944826126099,0.679118931293488,-0.21835720539093,0.700797736644745,0.45384418964386,-0.353122979402542,0.818125605583191,0.473199307918549,-0.319873005151749,0.820831000804901,0.463857620954514,-0.437761783599854,0.770195186138153,0.550047814846039,-0.496457308530808,0.67154848575592,0.55459064245224,-0.487950921058655,0.674042224884033,0.459352791309357,-0.489040344953537,0.741508185863495,0.459352791309357,-0.489040344953537,0.741508185863495,0.45384418964386,-0.353122979402542,0.818125605583191,0.451412618160248,-0.46921095252037,0.758991241455078,0.634294033050537,-0.303202897310257,0.711153328418732,0.665309965610504,-0.389527678489685,0.63689136505127,0.563485324382782,-0.411046802997589,0.716606438159943,0.550047814846039,-0.496457308530808,0.67154848575592,0.563203692436218,-0.386929243803024,0.730128169059753,0.563485324382782,-0.411046802997589,0.716606438159943,0.503129541873932,-0.216639846563339,0.836616814136505, +0.40720322728157,-0.170284166932106,0.897323071956635,0.52230578660965,-0.118627443909645,0.844466686248779,0.40720322728157,-0.170284166932106,0.897323071956635,0.240872249007225,-0.0530039742588997,0.969108402729034,0.253302335739136,-0.160996153950691,0.953896224498749,0.245384827256203,0.0585404522716999,0.967656433582306,0.221458077430725,0.104775972664356,0.969524741172791,0.240872249007225,-0.0530039742588997,0.969108402729034,0.27904200553894,0.187003552913666,0.941894471645355,0.221458077430725,0.104775972664356,0.969524741172791,0.16826020181179,0.239667147397995,0.956163227558136,0.454024910926819,0.0177943669259548,0.890811204910278,0.333323776721954,0.0597232989966869,0.940918862819672,0.27904200553894,0.187003552913666,0.941894471645355,0.500280022621155,-0.0606232546269894,0.863738715648651,0.555468618869781,-0.194660946726799,0.808431565761566,0.527364253997803,-0.132546976208687,0.839236617088318,0.571706116199493,-0.223184660077095,0.789519190788269,0.519281268119812,-0.188042715191841,0.833658635616302,0.531955480575562,-0.165600776672363,0.830421328544617,0.625588953495026,-0.235751137137413,0.743679821491241,0.571706116199493,-0.223184660077095,0.789519190788269,0.555468618869781,-0.194660946726799,0.808431565761566,0.519281268119812,-0.188042715191841,0.833658635616302,0.497031509876251,-0.118793994188309,0.859562397003174,0.531955480575562,-0.165600776672363,0.830421328544617,0.497031509876251,-0.118793994188309,0.859562397003174,0.537716090679169,-0.121822781860828,0.834278404712677,0.531349301338196,-0.0829833969473839,0.84307861328125,0.503129541873932,-0.216639846563339,0.836616814136505,0.52230578660965,-0.118627443909645,0.844466686248779,0.537716090679169,-0.121822781860828,0.834278404712677,0.454024910926819,0.0177943669259548,0.890811204910278,0.524386405944824,-0.0286143478006125,0.850999355316162,0.483912259340286,-0.0477803945541382,0.87381112575531,0.544764518737793,0.136966779828072,0.827327966690063,0.573955714702606,-0.0113434279337525,0.818807661533356,0.599628865718842,0.0449816845357418,0.799012959003448, +0.509129822254181,-0.0184873174875975,0.860491096973419,0.524386405944824,-0.0286143478006125,0.850999355316162,0.574378430843353,-0.0689323395490646,0.815682291984558,0.56903076171875,0.00425800820812583,0.822305142879486,0.573955714702606,-0.0113434279337525,0.818807661533356,0.574378430843353,-0.0689323395490646,0.815682291984558,0.429211676120758,0.302551597356796,0.851022779941559,0.527572870254517,0.2154590934515,0.821732401847839,0.416702121496201,0.370644956827164,0.830049097537994,0.544764518737793,0.136966779828072,0.827327966690063,0.599628865718842,0.0449816845357418,0.799012959003448,0.527572870254517,0.2154590934515,0.821732401847839,0.432170182466507,0.413634419441223,0.801333487033844,0.29153123497963,0.497476160526276,0.817023158073425,0.416702121496201,0.370644956827164,0.830049097537994,-0.120547235012054,0.607069373130798,0.785452127456665,-0.267171442508698,0.667942941188812,0.694601655006409,-0.27046999335289,0.71820741891861,0.641111493110657,-0.27046999335289,0.71820741891861,0.641111493110657,-0.293070286512375,0.676338791847229,0.675777673721313,-0.275637894868851,0.724283754825592,0.632009983062744,0.139124915003777,0.36630192399025,0.920036435127258,-0.0363817028701305,0.497976273298264,0.8664271235466,0.166318252682686,0.221036270260811,0.960979282855988,-0.120547235012054,0.607069373130798,0.785452127456665,0.113533101975918,0.314957499504089,0.942290782928467,-0.0363817028701305,0.497976273298264,0.8664271235466,0.134380310773849,0.349189698696136,0.927366375923157,0.139124915003777,0.36630192399025,0.920036435127258,0.258156150579453,0.0986400619149208,0.96105432510376,-0.275637894868851,0.724283754825592,0.632009983062744,-0.293070286512375,0.676338791847229,0.675777673721313,-0.188469663262367,0.665385842323303,0.722316205501556,0.432170182466507,0.413634419441223,0.801333487033844,0.331139475107193,0.551275372505188,0.765795052051544,0.29153123497963,0.497476160526276,0.817023158073425,0.130115330219269,0.442348301410675,0.88735443353653,0.249081194400787,0.532951533794403,0.808653831481934, +0.211224257946014,0.398383498191834,0.892566442489624,0.331139475107193,0.551275372505188,0.765795052051544,0.399425268173218,0.511557877063751,0.760767996311188,0.249081194400787,0.532951533794403,0.808653831481934,-0.188469663262367,0.665385842323303,0.722316205501556,-0.154090493917465,0.529117465019226,0.834440350532532,0.0145825259387493,0.640904426574707,0.767482042312622,0.041589118540287,0.4351806640625,0.899381995201111,-0.154090493917465,0.529117465019226,0.834440350532532,-0.0571484267711639,0.34291273355484,0.937627255916595,0.128379136323929,0.285098999738693,0.949861705303192,-0.0105430567637086,0.388284772634506,0.921479046344757,0.130115330219269,0.442348301410675,0.88735443353653,0.128379136323929,0.285098999738693,0.949861705303192,-0.0571484267711639,0.34291273355484,0.937627255916595,-0.0105430567637086,0.388284772634506,0.921479046344757,-0.0146539704874158,0.715926289558411,0.698021948337555,-0.0265201833099127,0.627325594425201,0.778305292129517,0.0170269832015038,0.698514223098755,0.715393483638763,0.235509425401688,0.971845388412476,-0.00719765247777104,0.286826461553574,0.95796126127243,0.00637879502028227,0.294876456260681,0.95463365316391,-0.0415012873709202,0.193863466382027,0.980489253997803,0.0325209274888039,0.235509425401688,0.971845388412476,-0.00719765247777104,0.184324815869331,0.982282936573029,-0.0338297337293625,0.283581525087357,0.294902443885803,0.91247683763504,0.29014465212822,0.395574629306793,0.871399223804474,0.338469982147217,0.276245385408401,0.899514555931091,0.166318252682686,0.221036270260811,0.960979282855988,0.272203058004379,0.0736149549484253,0.959419727325439,0.258156150579453,0.0986400619149208,0.96105432510376,0.302626460790634,0.182243674993515,0.935523569583893,0.325381875038147,0.0868537500500679,0.94158536195755,0.272203058004379,0.0736149549484253,0.959419727325439,0.352365732192993,0.175483196973801,0.919262707233429,0.387405604124069,0.171525835990906,0.90581214427948,0.302626460790634,0.182243674993515,0.935523569583893,0.359304964542389,0.186746969819069,0.914344251155853, +0.338469982147217,0.276245385408401,0.899514555931091,0.387405604124069,0.171525835990906,0.90581214427948,0.29014465212822,0.395574629306793,0.871399223804474,0.29302042722702,0.47019898891449,0.832497298717499,0.255997598171234,0.484333455562592,0.836592018604279,0.29302042722702,0.47019898891449,0.832497298717499,0.180995345115662,0.486947119235992,0.854472398757935,0.255997598171234,0.484333455562592,0.836592018604279,0.0411244556307793,0.545502960681915,0.837099254131317,-0.0225425399839878,0.591375648975372,0.806080996990204,-0.0240290574729443,0.588638365268707,0.80803918838501,0.0411244556307793,0.545502960681915,0.837099254131317,0.180995345115662,0.486947119235992,0.854472398757935,0.0687032118439674,0.518133044242859,0.852536141872406,-0.0240290574729443,0.588638365268707,0.80803918838501,-0.0574611611664295,0.605557501316071,0.793724238872528,-0.0265201833099127,0.627325594425201,0.778305292129517,0.184770941734314,0.980836451053619,-0.0618018954992294,0.240354716777802,0.970391750335693,0.0238614175468683,0.184324815869331,0.982282936573029,-0.0338297337293625,0.271990090608597,0.960927605628967,-0.0513752959668636,0.240354716777802,0.970391750335693,0.0238614175468683,0.184770941734314,0.980836451053619,-0.0618018954992294,0.441723585128784,0.897080481052399,-0.0112629402428865,0.271990090608597,0.960927605628967,-0.0513752959668636,0.31710609793663,0.944522142410278,-0.0855663791298866,0.629320919513702,0.777143180370331,-0.00190732814371586,0.441723585128784,0.897080481052399,-0.0112629402428865,0.583303868770599,0.808461546897888,-0.0783988311886787,0.771994590759277,0.632817506790161,-0.0597176291048527,0.728854596614838,0.681846499443054,0.0620977841317654,0.629320919513702,0.777143180370331,-0.00190732814371586,0.771994590759277,0.632817506790161,-0.0597176291048527,0.822390913963318,0.561902225017548,-0.0891012102365494,0.811386823654175,0.584468603134155,0.00691409315913916,0.87510871887207,0.481278002262115,-0.0505585819482803,0.841797590255737,0.539422869682312,0.0199900008738041,0.822390913963318,0.561902225017548,-0.0891012102365494, +0.87510871887207,0.481278002262115,-0.0505585819482803,0.899888217449188,0.435851812362671,0.0153056178241968,0.860907554626465,0.506868124008179,0.0438493900001049,0.899888217449188,0.435851812362671,0.0153056178241968,0.862241506576538,0.497137874364853,0.0969193577766418,0.860907554626465,0.506868124008179,0.0438493900001049,0.785205543041229,0.538781642913818,0.305231779813766,0.782641053199768,0.537397444248199,0.314128667116165,0.795419454574585,0.549291670322418,0.256098330020905,0.862241506576538,0.497137874364853,0.0969193577766418,0.865028917789459,0.473544090986252,0.165773376822472,0.827477335929871,0.527464747428894,0.192514643073082,0.795419454574585,0.549291670322418,0.256098330020905,0.827477335929871,0.527464747428894,0.192514643073082,0.837592363357544,0.474692463874817,0.27038112282753,0.410161823034287,0.452497065067291,0.791841924190521,0.521282017230988,0.448386371135712,0.72609543800354,0.37198469042778,0.445661216974258,0.814256310462952,0.37198469042778,0.445661216974258,0.814256310462952,0.391623109579086,0.479042768478394,0.785588443279266,0.410161823034287,0.452497065067291,0.791841924190521,0.379601806402206,0.542140662670136,0.749657213687897,0.391623109579086,0.479042768478394,0.785588443279266,0.42995822429657,0.45355036854744,0.780658662319183,0.468304604291916,0.516866385936737,0.716616988182068,0.379601806402206,0.542140662670136,0.749657213687897,0.494843870401382,0.508911848068237,0.704370737075806,0.563539028167725,0.500743329524994,0.657023370265961,0.518874287605286,0.47451439499855,0.711059331893921,0.468304604291916,0.516866385936737,0.716616988182068,0.785355091094971,0.529310762882233,0.321009874343872,0.785205543041229,0.538781642913818,0.305231779813766,0.863705635070801,0.416204869747162,0.284228652715683,0.863705635070801,0.416204869747162,0.284228652715683,0.868967473506927,0.351969599723816,0.347869038581848,0.785355091094971,0.529310762882233,0.321009874343872,0.766538739204407,0.492107927799225,0.412611186504364,0.868967473506927,0.351969599723816,0.347869038581848, +0.791322648525238,0.350859135389328,0.500705659389496,0.791322648525238,0.350859135389328,0.500705659389496,0.694585621356964,0.339507669210434,0.634259581565857,0.69862824678421,0.463935643434525,0.544685304164886,0.603034853935242,0.457602858543396,0.653412878513336,0.69862824678421,0.463935643434525,0.544685304164886,0.694585621356964,0.339507669210434,0.634259581565857,0.513331532478333,0.350724279880524,0.783251583576202,0.518874287605286,0.47451439499855,0.711059331893921,0.603034853935242,0.457602858543396,0.653412878513336,0.757014274597168,0.433437794446945,0.488938570022583,0.742519438266754,0.440693229436874,0.504434525966644,0.780938863754272,0.389303296804428,0.488443702459335,0.76069849729538,0.424293875694275,0.491235554218292,0.757014274597168,0.433437794446945,0.488938570022583,0.680937767028809,0.435988545417786,0.588419675827026,0.521282017230988,0.448386371135712,0.72609543800354,0.595137000083923,0.41699343919754,0.686970353126526,0.620079278945923,0.436206638813019,0.65209299325943,0.680937767028809,0.435988545417786,0.588419675827026,0.620079278945923,0.436206638813019,0.65209299325943,0.733240783214569,0.394278138875961,0.553987860679626,0.677431464195251,-0.278760850429535,0.680719435214996,0.634294033050537,-0.303202897310257,0.711153328418732,0.666471064090729,-0.195282801985741,0.719500362873077,0.495712131261826,0.0379657335579395,0.867656588554382,0.425270855426788,0.0865808725357056,0.900915265083313,0.311769545078278,0.096303403377533,0.94526469707489,0.413450688123703,0.0144868120551109,0.910411179065704,0.311769545078278,0.096303403377533,0.94526469707489,0.425270855426788,0.0865808725357056,0.900915265083313,0.413450688123703,0.0144868120551109,0.910411179065704,0.527364253997803,-0.132546976208687,0.839236617088318,0.436205685138702,-0.137197822332382,0.889326274394989,0.495712131261826,0.0379657335579395,0.867656588554382,0.562187612056732,-0.193952649831772,0.803944826126099,0.658835351467133,-0.115728996694088,0.743332087993622,0.658835351467133,-0.115728996694088,0.743332087993622, +0.679118931293488,-0.21835720539093,0.700797736644745,0.666471064090729,-0.195282801985741,0.719500362873077,0.463857620954514,-0.437761783599854,0.770195186138153,0.451412618160248,-0.46921095252037,0.758991241455078,0.45384418964386,-0.353122979402542,0.818125605583191,0.503042876720428,-0.46921369433403,0.725800395011902,0.550047814846039,-0.496457308530808,0.67154848575592,0.459352791309357,-0.489040344953537,0.741508185863495,0.503042876720428,-0.46921369433403,0.725800395011902,0.459352791309357,-0.489040344953537,0.741508185863495,0.451412618160248,-0.46921095252037,0.758991241455078,0.563485324382782,-0.411046802997589,0.716606438159943,0.482734024524689,-0.348207831382751,0.803566455841064,0.634294033050537,-0.303202897310257,0.711153328418732,0.550047814846039,-0.496457308530808,0.67154848575592,0.503042876720428,-0.46921369433403,0.725800395011902,0.563203692436218,-0.386929243803024,0.730128169059753,0.563485324382782,-0.411046802997589,0.716606438159943,0.563203692436218,-0.386929243803024,0.730128169059753,0.482734024524689,-0.348207831382751,0.803566455841064,0.40720322728157,-0.170284166932106,0.897323071956635,0.503129541873932,-0.216639846563339,0.836616814136505,0.368411242961884,-0.155737563967705,0.916525423526764,0.40720322728157,-0.170284166932106,0.897323071956635,0.368411242961884,-0.155737563967705,0.916525423526764,0.240872249007225,-0.0530039742588997,0.969108402729034,0.245384827256203,0.0585404522716999,0.967656433582306,0.16826020181179,0.239667147397995,0.956163227558136,0.221458077430725,0.104775972664356,0.969524741172791,0.240872249007225,-0.0530039742588997,0.969108402729034,0.368411242961884,-0.155737563967705,0.916525423526764,0.245384827256203,0.0585404522716999,0.967656433582306,0.27904200553894,0.187003552913666,0.941894471645355,0.16826020181179,0.239667147397995,0.956163227558136,0.213701754808426,0.289475649595261,0.933024823665619,0.27904200553894,0.187003552913666,0.941894471645355,0.364083528518677,0.148740708827972,0.91941249370575,0.454024910926819,0.0177943669259548,0.890811204910278, +0.500280022621155,-0.0606232546269894,0.863738715648651,0.566455483436584,-0.082991898059845,0.819902718067169,0.555468618869781,-0.194660946726799,0.808431565761566,0.500280022621155,-0.0606232546269894,0.863738715648651,0.527364253997803,-0.132546976208687,0.839236617088318,0.413450688123703,0.0144868120551109,0.910411179065704,0.519505560398102,-0.274293810129166,0.809244573116302,0.519281268119812,-0.188042715191841,0.833658635616302,0.571706116199493,-0.223184660077095,0.789519190788269,0.519505560398102,-0.274293810129166,0.809244573116302,0.571706116199493,-0.223184660077095,0.789519190788269,0.625588953495026,-0.235751137137413,0.743679821491241,0.625588953495026,-0.235751137137413,0.743679821491241,0.555468618869781,-0.194660946726799,0.808431565761566,0.566455483436584,-0.082991898059845,0.819902718067169,0.519281268119812,-0.188042715191841,0.833658635616302,0.373355597257614,-0.283260464668274,0.883385002613068,0.497031509876251,-0.118793994188309,0.859562397003174,0.497031509876251,-0.118793994188309,0.859562397003174,0.41184788942337,-0.220648720860481,0.884135365486145,0.537716090679169,-0.121822781860828,0.834278404712677,0.430310666561127,-0.285313755273819,0.856404483318329,0.503129541873932,-0.216639846563339,0.836616814136505,0.537716090679169,-0.121822781860828,0.834278404712677,0.524386405944824,-0.0286143478006125,0.850999355316162,0.454024910926819,0.0177943669259548,0.890811204910278,0.364083528518677,0.148740708827972,0.91941249370575,0.56903076171875,0.00425800820812583,0.822305142879486,0.599628865718842,0.0449816845357418,0.799012959003448,0.573955714702606,-0.0113434279337525,0.818807661533356,0.434142529964447,0.114361338317394,0.893555581569672,0.574378430843353,-0.0689323395490646,0.815682291984558,0.524386405944824,-0.0286143478006125,0.850999355316162,0.56903076171875,0.00425800820812583,0.822305142879486,0.574378430843353,-0.0689323395490646,0.815682291984558,0.434142529964447,0.114361338317394,0.893555581569672,0.416702121496201,0.370644956827164,0.830049097537994,0.527572870254517,0.2154590934515,0.821732401847839, +0.468298494815826,0.297156751155853,0.832102298736572,0.60212117433548,0.0840694308280945,0.793966174125671,0.527572870254517,0.2154590934515,0.821732401847839,0.599628865718842,0.0449816845357418,0.799012959003448,0.416702121496201,0.370644956827164,0.830049097537994,0.468298494815826,0.297156751155853,0.832102298736572,0.432170182466507,0.413634419441223,0.801333487033844,-0.222369968891144,0.700409412384033,0.678216814994812,-0.120547235012054,0.607069373130798,0.785452127456665,-0.27046999335289,0.71820741891861,0.641111493110657,-0.222369968891144,0.700409412384033,0.678216814994812,-0.27046999335289,0.71820741891861,0.641111493110657,-0.275637894868851,0.724283754825592,0.632009983062744,0.113533101975918,0.314957499504089,0.942290782928467,0.166318252682686,0.221036270260811,0.960979282855988,-0.0363817028701305,0.497976273298264,0.8664271235466,0.139124915003777,0.36630192399025,0.920036435127258,0.166318252682686,0.221036270260811,0.960979282855988,0.258156150579453,0.0986400619149208,0.96105432510376,-0.120547235012054,0.607069373130798,0.785452127456665,0.0301809925585985,0.480795502662659,0.876313149929047,0.113533101975918,0.314957499504089,0.942290782928467,-0.275637894868851,0.724283754825592,0.632009983062744,-0.188469663262367,0.665385842323303,0.722316205501556,-0.192331284284592,0.745489835739136,0.638164103031158,0.487899243831635,0.511891186237335,0.707051336765289,0.331139475107193,0.551275372505188,0.765795052051544,0.432170182466507,0.413634419441223,0.801333487033844,0.284920960664749,0.350892543792725,0.892017006874084,0.211224257946014,0.398383498191834,0.892566442489624,0.249081194400787,0.532951533794403,0.808653831481934,0.130115330219269,0.442348301410675,0.88735443353653,0.211224257946014,0.398383498191834,0.892566442489624,0.128379136323929,0.285098999738693,0.949861705303192,0.399425268173218,0.511557877063751,0.760767996311188,0.331139475107193,0.551275372505188,0.765795052051544,0.487899243831635,0.511891186237335,0.707051336765289,0.284920960664749,0.350892543792725,0.892017006874084, +0.249081194400787,0.532951533794403,0.808653831481934,0.399425268173218,0.511557877063751,0.760767996311188,0.041589118540287,0.4351806640625,0.899381995201111,0.0145825259387493,0.640904426574707,0.767482042312622,-0.154090493917465,0.529117465019226,0.834440350532532,-0.0920888185501099,0.727133512496948,0.680291354656219,-0.188469663262367,0.665385842323303,0.722316205501556,0.0145825259387493,0.640904426574707,0.767482042312622,0.041589118540287,0.4351806640625,0.899381995201111,-0.0571484267711639,0.34291273355484,0.937627255916595,0.10079000890255,0.267464131116867,0.958281874656677,0.10079000890255,0.267464131116867,0.958281874656677,-0.0571484267711639,0.34291273355484,0.937627255916595,0.128379136323929,0.285098999738693,0.949861705303192,-0.0265201833099127,0.627325594425201,0.778305292129517,-0.0574611611664295,0.605557501316071,0.793724238872528,0.0170269832015038,0.698514223098755,0.715393483638763,0.224174469709396,0.970797061920166,-0.0854331776499748,0.235509425401688,0.971845388412476,-0.00719765247777104,0.294876456260681,0.95463365316391,-0.0415012873709202,0.224174469709396,0.970797061920166,-0.0854331776499748,0.184324815869331,0.982282936573029,-0.0338297337293625,0.235509425401688,0.971845388412476,-0.00719765247777104,0.283581525087357,0.294902443885803,0.91247683763504,0.282212525606155,0.412472009658813,0.866154074668884,0.29014465212822,0.395574629306793,0.871399223804474,0.283581525087357,0.294902443885803,0.91247683763504,0.338469982147217,0.276245385408401,0.899514555931091,0.359304964542389,0.186746969819069,0.914344251155853,0.113533101975918,0.314957499504089,0.942290782928467,0.272203058004379,0.0736149549484253,0.959419727325439,0.166318252682686,0.221036270260811,0.960979282855988,0.302626460790634,0.182243674993515,0.935523569583893,0.272203058004379,0.0736149549484253,0.959419727325439,0.113533101975918,0.314957499504089,0.942290782928467,0.359304964542389,0.186746969819069,0.914344251155853,0.387405604124069,0.171525835990906,0.90581214427948,0.352365732192993,0.175483196973801,0.919262707233429, +0.352365732192993,0.175483196973801,0.919262707233429,0.302626460790634,0.182243674993515,0.935523569583893,0.193290412425995,0.363535583019257,0.911307036876678,0.29014465212822,0.395574629306793,0.871399223804474,0.282212525606155,0.412472009658813,0.866154074668884,0.29302042722702,0.47019898891449,0.832497298717499,0.180995345115662,0.486947119235992,0.854472398757935,0.29302042722702,0.47019898891449,0.832497298717499,0.256706207990646,0.434776544570923,0.863175094127655,0.0411244556307793,0.545502960681915,0.837099254131317,0.0687032118439674,0.518133044242859,0.852536141872406,-0.0225425399839878,0.591375648975372,0.806080996990204,-0.0240290574729443,0.588638365268707,0.80803918838501,-0.0225425399839878,0.591375648975372,0.806080996990204,-0.0574611611664295,0.605557501316071,0.793724238872528,0.0687032118439674,0.518133044242859,0.852536141872406,0.180995345115662,0.486947119235992,0.854472398757935,0.230764806270599,0.449401766061783,0.863009631633759,0.224174469709396,0.970797061920166,-0.0854331776499748,0.184770941734314,0.980836451053619,-0.0618018954992294,0.184324815869331,0.982282936573029,-0.0338297337293625,0.271990090608597,0.960927605628967,-0.0513752959668636,0.184770941734314,0.980836451053619,-0.0618018954992294,0.219225183129311,0.972016096115112,-0.0844090357422829,0.271990090608597,0.960927605628967,-0.0513752959668636,0.219225183129311,0.972016096115112,-0.0844090357422829,0.31710609793663,0.944522142410278,-0.0855663791298866,0.441723585128784,0.897080481052399,-0.0112629402428865,0.31710609793663,0.944522142410278,-0.0855663791298866,0.500001609325409,0.855618894100189,-0.133845150470734,0.583303868770599,0.808461546897888,-0.0783988311886787,0.441723585128784,0.897080481052399,-0.0112629402428865,0.500001609325409,0.855618894100189,-0.133845150470734,0.663908958435059,0.737198770046234,-0.12554968893528,0.629320919513702,0.777143180370331,-0.00190732814371586,0.583303868770599,0.808461546897888,-0.0783988311886787,0.629320919513702,0.777143180370331,-0.00190732814371586,0.663908958435059,0.737198770046234,-0.12554968893528, +0.771994590759277,0.632817506790161,-0.0597176291048527,0.771994590759277,0.632817506790161,-0.0597176291048527,0.777178168296814,0.611563563346863,-0.148270174860954,0.822390913963318,0.561902225017548,-0.0891012102365494,0.87510871887207,0.481278002262115,-0.0505585819482803,0.822390913963318,0.561902225017548,-0.0891012102365494,0.879143297672272,0.460879594087601,-0.121231205761433,0.87510871887207,0.481278002262115,-0.0505585819482803,0.928572714328766,0.365699619054794,-0.0633744895458221,0.899888217449188,0.435851812362671,0.0153056178241968,0.862241506576538,0.497137874364853,0.0969193577766418,0.899888217449188,0.435851812362671,0.0153056178241968,0.904817581176758,0.412029713392258,0.107408694922924,0.837592363357544,0.474692463874817,0.27038112282753,0.785205543041229,0.538781642913818,0.305231779813766,0.795419454574585,0.549291670322418,0.256098330020905,0.862241506576538,0.497137874364853,0.0969193577766418,0.904817581176758,0.412029713392258,0.107408694922924,0.865028917789459,0.473544090986252,0.165773376822472,0.827477335929871,0.527464747428894,0.192514643073082,0.865028917789459,0.473544090986252,0.165773376822472,0.837592363357544,0.474692463874817,0.27038112282753,0.521282017230988,0.448386371135712,0.72609543800354,0.410161823034287,0.452497065067291,0.791841924190521,0.595137000083923,0.41699343919754,0.686970353126526,0.410161823034287,0.452497065067291,0.791841924190521,0.391623109579086,0.479042768478394,0.785588443279266,0.595137000083923,0.41699343919754,0.686970353126526,0.379601806402206,0.542140662670136,0.749657213687897,0.376271665096283,0.540265202522278,0.752683937549591,0.391623109579086,0.479042768478394,0.785588443279266,0.389440625905991,0.50956803560257,0.767252385616302,0.379601806402206,0.542140662670136,0.749657213687897,0.468304604291916,0.516866385936737,0.716616988182068,0.468304604291916,0.516866385936737,0.716616988182068,0.518874287605286,0.47451439499855,0.711059331893921,0.513331532478333,0.350724279880524,0.783251583576202,0.863705635070801,0.416204869747162,0.284228652715683, +0.785205543041229,0.538781642913818,0.305231779813766,0.838324964046478,0.439643830060959,0.322373121976852,0.868967473506927,0.351969599723816,0.347869038581848,0.863705635070801,0.416204869747162,0.284228652715683,0.949808955192566,0.231740355491638,0.210140973329544,0.868967473506927,0.351969599723816,0.347869038581848,0.839982986450195,0.230000123381615,0.491455376148224,0.791322648525238,0.350859135389328,0.500705659389496,0.791322648525238,0.350859135389328,0.500705659389496,0.74335241317749,0.22402149438858,0.630270898342133,0.694585621356964,0.339507669210434,0.634259581565857,0.694585621356964,0.339507669210434,0.634259581565857,0.613585472106934,0.314357936382294,0.724356114864349,0.603034853935242,0.457602858543396,0.653412878513336,0.513331532478333,0.350724279880524,0.783251583576202,0.603034853935242,0.457602858543396,0.653412878513336,0.613585472106934,0.314357936382294,0.724356114864349,0.757014274597168,0.433437794446945,0.488938570022583,0.76069849729538,0.424293875694275,0.491235554218292,0.742519438266754,0.440693229436874,0.504434525966644,0.680937767028809,0.435988545417786,0.588419675827026,0.733240783214569,0.394278138875961,0.553987860679626,0.76069849729538,0.424293875694275,0.491235554218292,0.704905807971954,0.329658269882202,0.628039181232452,0.620079278945923,0.436206638813019,0.65209299325943,0.595137000083923,0.41699343919754,0.686970353126526,0.704905807971954,0.329658269882202,0.628039181232452,0.733240783214569,0.394278138875961,0.553987860679626,0.620079278945923,0.436206638813019,0.65209299325943,0.634294033050537,-0.303202897310257,0.711153328418732,0.506924867630005,-0.249088793992996,0.825216233730316,0.666471064090729,-0.195282801985741,0.719500362873077,0.546878159046173,0.0789627507328987,0.833480060100555,0.425270855426788,0.0865808725357056,0.900915265083313,0.495712131261826,0.0379657335579395,0.867656588554382,0.500280022621155,-0.0606232546269894,0.863738715648651,0.413450688123703,0.0144868120551109,0.910411179065704,0.425270855426788,0.0865808725357056,0.900915265083313, +0.495712131261826,0.0379657335579395,0.867656588554382,0.658835351467133,-0.115728996694088,0.743332087993622,0.643848478794098,-0.00739919533953071,0.765117108821869,0.633402407169342,-0.0447336845099926,0.772528469562531,0.658835351467133,-0.115728996694088,0.743332087993622,0.666471064090729,-0.195282801985741,0.719500362873077,0.463857620954514,-0.437761783599854,0.770195186138153,0.503042876720428,-0.46921369433403,0.725800395011902,0.451412618160248,-0.46921095252037,0.758991241455078,0.634294033050537,-0.303202897310257,0.711153328418732,0.482734024524689,-0.348207831382751,0.803566455841064,0.506924867630005,-0.249088793992996,0.825216233730316,0.503042876720428,-0.46921369433403,0.725800395011902,0.525252997875214,-0.375090479850769,0.763816893100739,0.563203692436218,-0.386929243803024,0.730128169059753,0.563203692436218,-0.386929243803024,0.730128169059753,0.494831115007401,-0.299653351306915,0.8156898021698,0.482734024524689,-0.348207831382751,0.803566455841064,0.368411242961884,-0.155737563967705,0.916525423526764,0.503129541873932,-0.216639846563339,0.836616814136505,0.377791464328766,-0.312451928853989,0.871577441692352,0.286766856908798,0.202727109193802,0.93630462884903,0.16826020181179,0.239667147397995,0.956163227558136,0.245384827256203,0.0585404522716999,0.967656433582306,0.343497455120087,0.00434962986037135,0.939143359661102,0.245384827256203,0.0585404522716999,0.967656433582306,0.368411242961884,-0.155737563967705,0.916525423526764,0.213701754808426,0.289475649595261,0.933024823665619,0.16826020181179,0.239667147397995,0.956163227558136,0.215375408530235,0.329484671354294,0.91926771402359,0.27904200553894,0.187003552913666,0.941894471645355,0.213701754808426,0.289475649595261,0.933024823665619,0.364083528518677,0.148740708827972,0.91941249370575,0.500280022621155,-0.0606232546269894,0.863738715648651,0.425270855426788,0.0865808725357056,0.900915265083313,0.566455483436584,-0.082991898059845,0.819902718067169,0.519281268119812,-0.188042715191841,0.833658635616302,0.519505560398102,-0.274293810129166,0.809244573116302, +0.373355597257614,-0.283260464668274,0.883385002613068,0.625588953495026,-0.235751137137413,0.743679821491241,0.614055931568146,-0.304978489875793,0.727958261966705,0.519505560398102,-0.274293810129166,0.809244573116302,0.625588953495026,-0.235751137137413,0.743679821491241,0.566455483436584,-0.082991898059845,0.819902718067169,0.645747601985931,-0.0964893624186516,0.757429659366608,0.497031509876251,-0.118793994188309,0.859562397003174,0.373355597257614,-0.283260464668274,0.883385002613068,0.41184788942337,-0.220648720860481,0.884135365486145,0.430310666561127,-0.285313755273819,0.856404483318329,0.537716090679169,-0.121822781860828,0.834278404712677,0.41184788942337,-0.220648720860481,0.884135365486145,0.377791464328766,-0.312451928853989,0.871577441692352,0.503129541873932,-0.216639846563339,0.836616814136505,0.430310666561127,-0.285313755273819,0.856404483318329,0.434142529964447,0.114361338317394,0.893555581569672,0.524386405944824,-0.0286143478006125,0.850999355316162,0.364083528518677,0.148740708827972,0.91941249370575,0.599628865718842,0.0449816845357418,0.799012959003448,0.56903076171875,0.00425800820812583,0.822305142879486,0.533074498176575,0.0933933034539223,0.840897858142853,0.434142529964447,0.114361338317394,0.893555581569672,0.4289391040802,0.147637143731117,0.891187071800232,0.56903076171875,0.00425800820812583,0.822305142879486,0.569828748703003,0.254364967346191,0.781404912471771,0.468298494815826,0.297156751155853,0.832102298736572,0.527572870254517,0.2154590934515,0.821732401847839,0.569828748703003,0.254364967346191,0.781404912471771,0.527572870254517,0.2154590934515,0.821732401847839,0.60212117433548,0.0840694308280945,0.793966174125671,0.533074498176575,0.0933933034539223,0.840897858142853,0.60212117433548,0.0840694308280945,0.793966174125671,0.599628865718842,0.0449816845357418,0.799012959003448,0.432170182466507,0.413634419441223,0.801333487033844,0.468298494815826,0.297156751155853,0.832102298736572,0.569828748703003,0.254364967346191,0.781404912471771,-0.222369968891144,0.700409412384033,0.678216814994812, +0.0301809925585985,0.480795502662659,0.876313149929047,-0.120547235012054,0.607069373130798,0.785452127456665,-0.275637894868851,0.724283754825592,0.632009983062744,-0.247979134321213,0.745270669460297,0.618932843208313,-0.222369968891144,0.700409412384033,0.678216814994812,0.302626460790634,0.182243674993515,0.935523569583893,0.113533101975918,0.314957499504089,0.942290782928467,0.0301809925585985,0.480795502662659,0.876313149929047,-0.192331284284592,0.745489835739136,0.638164103031158,-0.188469663262367,0.665385842323303,0.722316205501556,-0.0920888185501099,0.727133512496948,0.680291354656219,-0.247979134321213,0.745270669460297,0.618932843208313,-0.275637894868851,0.724283754825592,0.632009983062744,-0.192331284284592,0.745489835739136,0.638164103031158,0.487899243831635,0.511891186237335,0.707051336765289,0.432170182466507,0.413634419441223,0.801333487033844,0.648819983005524,0.378381699323654,0.660196721553802,0.211224257946014,0.398383498191834,0.892566442489624,0.284920960664749,0.350892543792725,0.892017006874084,0.128379136323929,0.285098999738693,0.949861705303192,0.487899243831635,0.511891186237335,0.707051336765289,0.58933812379837,0.473243981599808,0.654767513275146,0.399425268173218,0.511557877063751,0.760767996311188,0.284920960664749,0.350892543792725,0.892017006874084,0.399425268173218,0.511557877063751,0.760767996311188,0.388480484485626,0.3582563996315,0.848961174488068,0.041589118540287,0.4351806640625,0.899381995201111,0.189864903688431,0.435102641582489,0.880134582519531,0.0145825259387493,0.640904426574707,0.767482042312622,0.0166227668523788,0.729115009307861,0.684189200401306,-0.0920888185501099,0.727133512496948,0.680291354656219,0.0145825259387493,0.640904426574707,0.767482042312622,0.10079000890255,0.267464131116867,0.958281874656677,0.1905497610569,0.279504716396332,0.941046118736267,0.041589118540287,0.4351806640625,0.899381995201111,0.213418856263161,0.206498295068741,0.954887807369232,0.10079000890255,0.267464131116867,0.958281874656677,0.128379136323929,0.285098999738693,0.949861705303192, +0.0170269832015038,0.698514223098755,0.715393483638763,-0.0574611611664295,0.605557501316071,0.793724238872528,-0.0225425399839878,0.591375648975372,0.806080996990204,0.283581525087357,0.294902443885803,0.91247683763504,0.198849081993103,0.386764764785767,0.900484263896942,0.282212525606155,0.412472009658813,0.866154074668884,0.228856697678566,0.225194990634918,0.947054207324982,0.283581525087357,0.294902443885803,0.91247683763504,0.359304964542389,0.186746969819069,0.914344251155853,0.246319606900215,0.245079651474953,0.937690019607544,0.359304964542389,0.186746969819069,0.914344251155853,0.352365732192993,0.175483196973801,0.919262707233429,0.193290412425995,0.363535583019257,0.911307036876678,0.302626460790634,0.182243674993515,0.935523569583893,0.0301809925585985,0.480795502662659,0.876313149929047,0.246319606900215,0.245079651474953,0.937690019607544,0.352365732192993,0.175483196973801,0.919262707233429,0.193290412425995,0.363535583019257,0.911307036876678,0.256706207990646,0.434776544570923,0.863175094127655,0.29302042722702,0.47019898891449,0.832497298717499,0.282212525606155,0.412472009658813,0.866154074668884,0.230764806270599,0.449401766061783,0.863009631633759,0.180995345115662,0.486947119235992,0.854472398757935,0.256706207990646,0.434776544570923,0.863175094127655,0.155846759676933,0.611560523509979,0.775696754455566,-0.0225425399839878,0.591375648975372,0.806080996990204,0.0687032118439674,0.518133044242859,0.852536141872406,0.155846759676933,0.611560523509979,0.775696754455566,0.0687032118439674,0.518133044242859,0.852536141872406,0.230764806270599,0.449401766061783,0.863009631633759,0.219225183129311,0.972016096115112,-0.0844090357422829,0.309910953044891,0.941755056381226,-0.130585119128227,0.31710609793663,0.944522142410278,-0.0855663791298866,0.309910953044891,0.941755056381226,-0.130585119128227,0.500001609325409,0.855618894100189,-0.133845150470734,0.31710609793663,0.944522142410278,-0.0855663791298866,0.500001609325409,0.855618894100189,-0.133845150470734,0.573376834392548,0.803828060626984,-0.158427968621254, +0.583303868770599,0.808461546897888,-0.0783988311886787,0.663908958435059,0.737198770046234,-0.12554968893528,0.583303868770599,0.808461546897888,-0.0783988311886787,0.573376834392548,0.803828060626984,-0.158427968621254,0.777178168296814,0.611563563346863,-0.148270174860954,0.771994590759277,0.632817506790161,-0.0597176291048527,0.663908958435059,0.737198770046234,-0.12554968893528,0.815166354179382,0.545003831386566,-0.196149066090584,0.822390913963318,0.561902225017548,-0.0891012102365494,0.777178168296814,0.611563563346863,-0.148270174860954,0.815166354179382,0.545003831386566,-0.196149066090584,0.879143297672272,0.460879594087601,-0.121231205761433,0.822390913963318,0.561902225017548,-0.0891012102365494,0.87510871887207,0.481278002262115,-0.0505585819482803,0.879143297672272,0.460879594087601,-0.121231205761433,0.928572714328766,0.365699619054794,-0.0633744895458221,0.899888217449188,0.435851812362671,0.0153056178241968,0.928572714328766,0.365699619054794,-0.0633744895458221,0.94012326002121,0.338524758815765,0.0396124944090843,0.904817581176758,0.412029713392258,0.107408694922924,0.899888217449188,0.435851812362671,0.0153056178241968,0.94012326002121,0.338524758815765,0.0396124944090843,0.838324964046478,0.439643830060959,0.322373121976852,0.785205543041229,0.538781642913818,0.305231779813766,0.837592363357544,0.474692463874817,0.27038112282753,0.904817581176758,0.412029713392258,0.107408694922924,0.905758738517761,0.378719598054886,0.190190553665161,0.865028917789459,0.473544090986252,0.165773376822472,0.905758738517761,0.378719598054886,0.190190553665161,0.837592363357544,0.474692463874817,0.27038112282753,0.865028917789459,0.473544090986252,0.165773376822472,0.595137000083923,0.41699343919754,0.686970353126526,0.391623109579086,0.479042768478394,0.785588443279266,0.562514543533325,0.450300365686417,0.693402349948883,0.376271665096283,0.540265202522278,0.752683937549591,0.379601806402206,0.542140662670136,0.749657213687897,0.389440625905991,0.50956803560257,0.767252385616302,0.391623109579086,0.479042768478394,0.785588443279266, +0.376271665096283,0.540265202522278,0.752683937549591,0.562514543533325,0.450300365686417,0.693402349948883,0.389440625905991,0.50956803560257,0.767252385616302,0.468304604291916,0.516866385936737,0.716616988182068,0.513331532478333,0.350724279880524,0.783251583576202,0.863705635070801,0.416204869747162,0.284228652715683,0.838324964046478,0.439643830060959,0.322373121976852,0.91567474603653,0.324151664972305,0.237624287605286,0.91567474603653,0.324151664972305,0.237624287605286,0.949808955192566,0.231740355491638,0.210140973329544,0.863705635070801,0.416204869747162,0.284228652715683,0.916529655456543,0.208892866969109,0.341082096099854,0.868967473506927,0.351969599723816,0.347869038581848,0.949808955192566,0.231740355491638,0.210140973329544,0.868967473506927,0.351969599723816,0.347869038581848,0.916529655456543,0.208892866969109,0.341082096099854,0.839982986450195,0.230000123381615,0.491455376148224,0.791322648525238,0.350859135389328,0.500705659389496,0.839982986450195,0.230000123381615,0.491455376148224,0.74335241317749,0.22402149438858,0.630270898342133,0.656952798366547,0.222489446401596,0.720354974269867,0.694585621356964,0.339507669210434,0.634259581565857,0.74335241317749,0.22402149438858,0.630270898342133,0.613585472106934,0.314357936382294,0.724356114864349,0.694585621356964,0.339507669210434,0.634259581565857,0.656952798366547,0.222489446401596,0.720354974269867,0.613585472106934,0.314357936382294,0.724356114864349,0.579767882823944,0.16561171412468,0.797773003578186,0.513331532478333,0.350724279880524,0.783251583576202,0.76069849729538,0.424293875694275,0.491235554218292,0.781158328056335,0.359085083007813,0.51073431968689,0.742519438266754,0.440693229436874,0.504434525966644,0.733240783214569,0.394278138875961,0.553987860679626,0.811505258083344,0.318406373262405,0.489975959062576,0.76069849729538,0.424293875694275,0.491235554218292,0.704905807971954,0.329658269882202,0.628039181232452,0.595137000083923,0.41699343919754,0.686970353126526,0.792466461658478,0.219719812273979,0.568963944911957,0.818138480186462,0.239446491003037,0.522795021533966, +0.733240783214569,0.394278138875961,0.553987860679626,0.704905807971954,0.329658269882202,0.628039181232452,0.529059767723084,-0.131520450115204,0.838330447673798,0.666471064090729,-0.195282801985741,0.719500362873077,0.506924867630005,-0.249088793992996,0.825216233730316,0.546878159046173,0.0789627507328987,0.833480060100555,0.566455483436584,-0.082991898059845,0.819902718067169,0.425270855426788,0.0865808725357056,0.900915265083313,0.613578736782074,0.0841930732131004,0.785132110118866,0.546878159046173,0.0789627507328987,0.833480060100555,0.495712131261826,0.0379657335579395,0.867656588554382,0.633402407169342,-0.0447336845099926,0.772528469562531,0.643848478794098,-0.00739919533953071,0.765117108821869,0.658835351467133,-0.115728996694088,0.743332087993622,0.613578736782074,0.0841930732131004,0.785132110118866,0.495712131261826,0.0379657335579395,0.867656588554382,0.643848478794098,-0.00739919533953071,0.765117108821869,0.529059767723084,-0.131520450115204,0.838330447673798,0.633402407169342,-0.0447336845099926,0.772528469562531,0.666471064090729,-0.195282801985741,0.719500362873077,0.4850133061409,-0.43706950545311,0.757451117038727,0.503042876720428,-0.46921369433403,0.725800395011902,0.463857620954514,-0.437761783599854,0.770195186138153,0.494831115007401,-0.299653351306915,0.8156898021698,0.506924867630005,-0.249088793992996,0.825216233730316,0.482734024524689,-0.348207831382751,0.803566455841064,0.503042876720428,-0.46921369433403,0.725800395011902,0.4850133061409,-0.43706950545311,0.757451117038727,0.525252997875214,-0.375090479850769,0.763816893100739,0.587504506111145,-0.308708757162094,0.748022198677063,0.563203692436218,-0.386929243803024,0.730128169059753,0.525252997875214,-0.375090479850769,0.763816893100739,0.563203692436218,-0.386929243803024,0.730128169059753,0.629952549934387,-0.30968302488327,0.712219178676605,0.494831115007401,-0.299653351306915,0.8156898021698,0.368411242961884,-0.155737563967705,0.916525423526764,0.377791464328766,-0.312451928853989,0.871577441692352,0.353006273508072,-0.232208386063576,0.906347513198853, +0.286766856908798,0.202727109193802,0.93630462884903,0.215375408530235,0.329484671354294,0.91926771402359,0.16826020181179,0.239667147397995,0.956163227558136,0.343497455120087,0.00434962986037135,0.939143359661102,0.286766856908798,0.202727109193802,0.93630462884903,0.245384827256203,0.0585404522716999,0.967656433582306,0.368411242961884,-0.155737563967705,0.916525423526764,0.353006273508072,-0.232208386063576,0.906347513198853,0.343497455120087,0.00434962986037135,0.939143359661102,0.213701754808426,0.289475649595261,0.933024823665619,0.215375408530235,0.329484671354294,0.91926771402359,0.29639258980751,0.301033854484558,0.906382858753204,0.364083528518677,0.148740708827972,0.91941249370575,0.213701754808426,0.289475649595261,0.933024823665619,0.434142529964447,0.114361338317394,0.893555581569672,0.454742938280106,-0.286853075027466,0.843163132667542,0.373355597257614,-0.283260464668274,0.883385002613068,0.519505560398102,-0.274293810129166,0.809244573116302,0.625588953495026,-0.235751137137413,0.743679821491241,0.698770463466644,-0.292143076658249,0.652971744537354,0.614055931568146,-0.304978489875793,0.727958261966705,0.614055931568146,-0.304978489875793,0.727958261966705,0.610464096069336,-0.318234592676163,0.725299954414368,0.519505560398102,-0.274293810129166,0.809244573116302,0.546878159046173,0.0789627507328987,0.833480060100555,0.645747601985931,-0.0964893624186516,0.757429659366608,0.566455483436584,-0.082991898059845,0.819902718067169,0.625588953495026,-0.235751137137413,0.743679821491241,0.645747601985931,-0.0964893624186516,0.757429659366608,0.698770463466644,-0.292143076658249,0.652971744537354,0.373355597257614,-0.283260464668274,0.883385002613068,0.295921921730042,-0.345336139202118,0.890602648258209,0.41184788942337,-0.220648720860481,0.884135365486145,0.430310666561127,-0.285313755273819,0.856404483318329,0.41184788942337,-0.220648720860481,0.884135365486145,0.295921921730042,-0.345336139202118,0.890602648258209,0.430310666561127,-0.285313755273819,0.856404483318329,0.295921921730042,-0.345336139202118,0.890602648258209, +0.377791464328766,-0.312451928853989,0.871577441692352,0.56903076171875,0.00425800820812583,0.822305142879486,0.4289391040802,0.147637143731117,0.891187071800232,0.533074498176575,0.0933933034539223,0.840897858142853,0.434142529964447,0.114361338317394,0.893555581569672,0.29639258980751,0.301033854484558,0.906382858753204,0.4289391040802,0.147637143731117,0.891187071800232,0.569828748703003,0.254364967346191,0.781404912471771,0.60212117433548,0.0840694308280945,0.793966174125671,0.715951383113861,0.14648100733757,0.682610332965851,0.533074498176575,0.0933933034539223,0.840897858142853,0.621812403202057,0.142436400055885,0.77010452747345,0.60212117433548,0.0840694308280945,0.793966174125671,0.569828748703003,0.254364967346191,0.781404912471771,0.648819983005524,0.378381699323654,0.660196721553802,0.432170182466507,0.413634419441223,0.801333487033844,-0.09040467441082,0.635527610778809,0.766766965389252,0.0301809925585985,0.480795502662659,0.876313149929047,-0.222369968891144,0.700409412384033,0.678216814994812,-0.09040467441082,0.635527610778809,0.766766965389252,-0.222369968891144,0.700409412384033,0.678216814994812,-0.247979134321213,0.745270669460297,0.618932843208313,-0.0944690406322479,0.734451591968536,0.672053813934326,-0.192331284284592,0.745489835739136,0.638164103031158,-0.0920888185501099,0.727133512496948,0.680291354656219,-0.247979134321213,0.745270669460297,0.618932843208313,-0.192331284284592,0.745489835739136,0.638164103031158,-0.163174197077751,0.720395922660828,0.67409473657608,0.487899243831635,0.511891186237335,0.707051336765289,0.648819983005524,0.378381699323654,0.660196721553802,0.58933812379837,0.473243981599808,0.654767513275146,0.213418856263161,0.206498295068741,0.954887807369232,0.128379136323929,0.285098999738693,0.949861705303192,0.284920960664749,0.350892543792725,0.892017006874084,0.58933812379837,0.473243981599808,0.654767513275146,0.462035804986954,0.459297358989716,0.758662462234497,0.399425268173218,0.511557877063751,0.760767996311188,0.462035804986954,0.459297358989716,0.758662462234497, +0.388480484485626,0.3582563996315,0.848961174488068,0.399425268173218,0.511557877063751,0.760767996311188,0.284920960664749,0.350892543792725,0.892017006874084,0.388480484485626,0.3582563996315,0.848961174488068,0.285178124904633,0.226910039782524,0.931227743625641,0.041589118540287,0.4351806640625,0.899381995201111,0.1905497610569,0.279504716396332,0.941046118736267,0.189864903688431,0.435102641582489,0.880134582519531,0.18491792678833,0.602983415126801,0.776025891304016,0.0145825259387493,0.640904426574707,0.767482042312622,0.189864903688431,0.435102641582489,0.880134582519531,-0.0944690406322479,0.734451591968536,0.672053813934326,-0.0920888185501099,0.727133512496948,0.680291354656219,0.0166227668523788,0.729115009307861,0.684189200401306,0.0166227668523788,0.729115009307861,0.684189200401306,0.0145825259387493,0.640904426574707,0.767482042312622,0.111989013850689,0.701320171356201,0.703994572162628,0.10079000890255,0.267464131116867,0.958281874656677,0.213418856263161,0.206498295068741,0.954887807369232,0.1905497610569,0.279504716396332,0.941046118736267,0.155846759676933,0.611560523509979,0.775696754455566,0.0170269832015038,0.698514223098755,0.715393483638763,-0.0225425399839878,0.591375648975372,0.806080996990204,0.133209675550461,0.278239697217941,0.951229631900787,0.198849081993103,0.386764764785767,0.900484263896942,0.283581525087357,0.294902443885803,0.91247683763504,0.198849081993103,0.386764764785767,0.900484263896942,0.248707339167595,0.410341531038284,0.877362132072449,0.282212525606155,0.412472009658813,0.866154074668884,0.228856697678566,0.225194990634918,0.947054207324982,0.133209675550461,0.278239697217941,0.951229631900787,0.283581525087357,0.294902443885803,0.91247683763504,0.228856697678566,0.225194990634918,0.947054207324982,0.359304964542389,0.186746969819069,0.914344251155853,0.246319606900215,0.245079651474953,0.937690019607544,-0.09040467441082,0.635527610778809,0.766766965389252,0.193290412425995,0.363535583019257,0.911307036876678,0.0301809925585985,0.480795502662659,0.876313149929047, +0.193290412425995,0.363535583019257,0.911307036876678,0.0225916616618633,0.506260335445404,0.862084627151489,0.246319606900215,0.245079651474953,0.937690019607544,0.256706207990646,0.434776544570923,0.863175094127655,0.282212525606155,0.412472009658813,0.866154074668884,0.248707339167595,0.410341531038284,0.877362132072449,0.230764806270599,0.449401766061783,0.863009631633759,0.256706207990646,0.434776544570923,0.863175094127655,0.248707339167595,0.410341531038284,0.877362132072449,0.155846759676933,0.611560523509979,0.775696754455566,0.230764806270599,0.449401766061783,0.863009631633759,0.255386292934418,0.526150107383728,0.81113737821579,0.500001609325409,0.855618894100189,-0.133845150470734,0.309910953044891,0.941755056381226,-0.130585119128227,0.527967870235443,0.832068860530853,-0.170032829046249,0.598965585231781,0.781837284564972,-0.173120021820068,0.573376834392548,0.803828060626984,-0.158427968621254,0.500001609325409,0.855618894100189,-0.133845150470734,0.663908958435059,0.737198770046234,-0.12554968893528,0.573376834392548,0.803828060626984,-0.158427968621254,0.61192524433136,0.772151231765747,-0.171259492635727,0.724258780479431,0.663338959217072,-0.188229858875275,0.777178168296814,0.611563563346863,-0.148270174860954,0.663908958435059,0.737198770046234,-0.12554968893528,0.815166354179382,0.545003831386566,-0.196149066090584,0.777178168296814,0.611563563346863,-0.148270174860954,0.724258780479431,0.663338959217072,-0.188229858875275,0.879143297672272,0.460879594087601,-0.121231205761433,0.815166354179382,0.545003831386566,-0.196149066090584,0.876865863800049,0.446303635835648,-0.178659722208977,0.928572714328766,0.365699619054794,-0.0633744895458221,0.879143297672272,0.460879594087601,-0.121231205761433,0.92276269197464,0.355819821357727,-0.147990301251411,0.94012326002121,0.338524758815765,0.0396124944090843,0.928572714328766,0.365699619054794,-0.0633744895458221,0.958514213562012,0.284664303064346,-0.0147190298885107,0.94012326002121,0.338524758815765,0.0396124944090843,0.934121668338776,0.32794463634491,0.140957340598106, +0.904817581176758,0.412029713392258,0.107408694922924,0.838324964046478,0.439643830060959,0.322373121976852,0.837592363357544,0.474692463874817,0.27038112282753,0.834164798259735,0.430531978607178,0.344689965248108,0.904817581176758,0.412029713392258,0.107408694922924,0.934121668338776,0.32794463634491,0.140957340598106,0.905758738517761,0.378719598054886,0.190190553665161,0.871857106685638,0.398960709571838,0.284069299697876,0.837592363357544,0.474692463874817,0.27038112282753,0.905758738517761,0.378719598054886,0.190190553665161,0.595137000083923,0.41699343919754,0.686970353126526,0.562514543533325,0.450300365686417,0.693402349948883,0.728384673595428,0.321291774511337,0.605167090892792,0.376271665096283,0.540265202522278,0.752683937549591,0.389440625905991,0.50956803560257,0.767252385616302,0.430726051330566,0.449857383966446,0.782370269298553,0.562514543533325,0.450300365686417,0.693402349948883,0.376271665096283,0.540265202522278,0.752683937549591,0.54273521900177,0.392560929059982,0.742518842220306,0.498033136129379,0.254175871610641,0.829070270061493,0.389440625905991,0.50956803560257,0.767252385616302,0.513331532478333,0.350724279880524,0.783251583576202,0.900929987430573,0.336892127990723,0.273548394441605,0.91567474603653,0.324151664972305,0.237624287605286,0.838324964046478,0.439643830060959,0.322373121976852,0.91567474603653,0.324151664972305,0.237624287605286,0.961962461471558,0.216487586498261,0.166617229580879,0.949808955192566,0.231740355491638,0.210140973329544,0.949808955192566,0.231740355491638,0.210140973329544,0.9439896941185,0.201101988554001,0.261612921953201,0.916529655456543,0.208892866969109,0.341082096099854,0.879920363426209,0.137218788266182,0.454874783754349,0.839982986450195,0.230000123381615,0.491455376148224,0.916529655456543,0.208892866969109,0.341082096099854,0.839982986450195,0.230000123381615,0.491455376148224,0.791708827018738,0.0968974381685257,0.603164851665497,0.74335241317749,0.22402149438858,0.630270898342133,0.656952798366547,0.222489446401596,0.720354974269867,0.74335241317749,0.22402149438858,0.630270898342133, +0.680261492729187,0.0713370740413666,0.729489624500275,0.613585472106934,0.314357936382294,0.724356114864349,0.656952798366547,0.222489446401596,0.720354974269867,0.579767882823944,0.16561171412468,0.797773003578186,0.579767882823944,0.16561171412468,0.797773003578186,0.544707894325256,0.0871401727199554,0.834086179733276,0.513331532478333,0.350724279880524,0.783251583576202,0.76069849729538,0.424293875694275,0.491235554218292,0.811505258083344,0.318406373262405,0.489975959062576,0.781158328056335,0.359085083007813,0.51073431968689,0.811505258083344,0.318406373262405,0.489975959062576,0.733240783214569,0.394278138875961,0.553987860679626,0.818138480186462,0.239446491003037,0.522795021533966,0.728384673595428,0.321291774511337,0.605167090892792,0.792466461658478,0.219719812273979,0.568963944911957,0.595137000083923,0.41699343919754,0.686970353126526,0.792466461658478,0.219719812273979,0.568963944911957,0.834693431854248,0.152591019868851,0.529152810573578,0.704905807971954,0.329658269882202,0.628039181232452,0.834693431854248,0.152591019868851,0.529152810573578,0.818138480186462,0.239446491003037,0.522795021533966,0.704905807971954,0.329658269882202,0.628039181232452,0.529059767723084,-0.131520450115204,0.838330447673798,0.506924867630005,-0.249088793992996,0.825216233730316,0.447119355201721,-0.160904884338379,0.8798828125,0.558926284313202,0.0564301311969757,0.827295005321503,0.546878159046173,0.0789627507328987,0.833480060100555,0.613578736782074,0.0841930732131004,0.785132110118866,0.613578736782074,0.0841930732131004,0.785132110118866,0.643848478794098,-0.00739919533953071,0.765117108821869,0.633402407169342,-0.0447336845099926,0.772528469562531,0.529059767723084,-0.131520450115204,0.838330447673798,0.455069422721863,-0.0133447917178273,0.89035576581955,0.633402407169342,-0.0447336845099926,0.772528469562531,0.494831115007401,-0.299653351306915,0.8156898021698,0.447119355201721,-0.160904884338379,0.8798828125,0.506924867630005,-0.249088793992996,0.825216233730316,0.587504506111145,-0.308708757162094,0.748022198677063, +0.656537234783173,-0.254281312227249,0.710140645503998,0.563203692436218,-0.386929243803024,0.730128169059753,0.521001756191254,-0.254301369190216,0.814793109893799,0.587504506111145,-0.308708757162094,0.748022198677063,0.525252997875214,-0.375090479850769,0.763816893100739,0.629952549934387,-0.30968302488327,0.712219178676605,0.563203692436218,-0.386929243803024,0.730128169059753,0.656537234783173,-0.254281312227249,0.710140645503998,0.494831115007401,-0.299653351306915,0.8156898021698,0.629952549934387,-0.30968302488327,0.712219178676605,0.605178534984589,-0.188319966197014,0.773494899272919,0.377791464328766,-0.312451928853989,0.871577441692352,0.295921921730042,-0.345336139202118,0.890602648258209,0.353006273508072,-0.232208386063576,0.906347513198853,0.340760380029678,0.303035348653793,0.889972925186157,0.215375408530235,0.329484671354294,0.91926771402359,0.286766856908798,0.202727109193802,0.93630462884903,0.38338178396225,0.141520276665688,0.912683010101318,0.286766856908798,0.202727109193802,0.93630462884903,0.343497455120087,0.00434962986037135,0.939143359661102,0.443913549184799,-0.0184200592339039,0.895880222320557,0.343497455120087,0.00434962986037135,0.939143359661102,0.353006273508072,-0.232208386063576,0.906347513198853,0.215375408530235,0.329484671354294,0.91926771402359,0.340760380029678,0.303035348653793,0.889972925186157,0.29639258980751,0.301033854484558,0.906382858753204,0.213701754808426,0.289475649595261,0.933024823665619,0.29639258980751,0.301033854484558,0.906382858753204,0.434142529964447,0.114361338317394,0.893555581569672,0.327328950166702,-0.318132489919662,0.889745652675629,0.373355597257614,-0.283260464668274,0.883385002613068,0.454742938280106,-0.286853075027466,0.843163132667542,0.454742938280106,-0.286853075027466,0.843163132667542,0.519505560398102,-0.274293810129166,0.809244573116302,0.610464096069336,-0.318234592676163,0.725299954414368,0.614055931568146,-0.304978489875793,0.727958261966705,0.698770463466644,-0.292143076658249,0.652971744537354,0.610464096069336,-0.318234592676163,0.725299954414368, +0.558926284313202,0.0564301311969757,0.827295005321503,0.645747601985931,-0.0964893624186516,0.757429659366608,0.546878159046173,0.0789627507328987,0.833480060100555,0.698770463466644,-0.292143076658249,0.652971744537354,0.645747601985931,-0.0964893624186516,0.757429659366608,0.722467720508575,-0.263571292161942,0.639195203781128,0.373355597257614,-0.283260464668274,0.883385002613068,0.327328950166702,-0.318132489919662,0.889745652675629,0.295921921730042,-0.345336139202118,0.890602648258209,0.533074498176575,0.0933933034539223,0.840897858142853,0.4289391040802,0.147637143731117,0.891187071800232,0.375746756792068,0.263093560934067,0.888592123985291,0.29639258980751,0.301033854484558,0.906382858753204,0.375746756792068,0.263093560934067,0.888592123985291,0.4289391040802,0.147637143731117,0.891187071800232,0.715951383113861,0.14648100733757,0.682610332965851,0.60212117433548,0.0840694308280945,0.793966174125671,0.621812403202057,0.142436400055885,0.77010452747345,0.715951383113861,0.14648100733757,0.682610332965851,0.735018312931061,0.250759124755859,0.62997442483902,0.569828748703003,0.254364967346191,0.781404912471771,0.621812403202057,0.142436400055885,0.77010452747345,0.533074498176575,0.0933933034539223,0.840897858142853,0.445237398147583,0.256726086139679,0.8578200340271,0.569828748703003,0.254364967346191,0.781404912471771,0.735018312931061,0.250759124755859,0.62997442483902,0.648819983005524,0.378381699323654,0.660196721553802,-0.247979134321213,0.745270669460297,0.618932843208313,-0.163174197077751,0.720395922660828,0.67409473657608,-0.09040467441082,0.635527610778809,0.766766965389252,-0.0944690406322479,0.734451591968536,0.672053813934326,-0.163174197077751,0.720395922660828,0.67409473657608,-0.192331284284592,0.745489835739136,0.638164103031158,0.648819983005524,0.378381699323654,0.660196721553802,0.703100800514221,0.326476842164993,0.631713509559631,0.58933812379837,0.473243981599808,0.654767513275146,0.284920960664749,0.350892543792725,0.892017006874084,0.285178124904633,0.226910039782524,0.931227743625641, +0.213418856263161,0.206498295068741,0.954887807369232,0.563359081745148,0.343440890312195,0.751448392868042,0.462035804986954,0.459297358989716,0.758662462234497,0.58933812379837,0.473243981599808,0.654767513275146,0.563359081745148,0.343440890312195,0.751448392868042,0.388480484485626,0.3582563996315,0.848961174488068,0.462035804986954,0.459297358989716,0.758662462234497,0.285178124904633,0.226910039782524,0.931227743625641,0.388480484485626,0.3582563996315,0.848961174488068,0.421561419963837,0.241272628307343,0.874112904071808,0.189864903688431,0.435102641582489,0.880134582519531,0.1905497610569,0.279504716396332,0.941046118736267,0.213556125760078,0.239673748612404,0.94707453250885,0.18491792678833,0.602983415126801,0.776025891304016,0.111989013850689,0.701320171356201,0.703994572162628,0.0145825259387493,0.640904426574707,0.767482042312622,0.189864903688431,0.435102641582489,0.880134582519531,0.273999810218811,0.438565582036972,0.855911314487457,0.18491792678833,0.602983415126801,0.776025891304016,-0.0944690406322479,0.734451591968536,0.672053813934326,0.0166227668523788,0.729115009307861,0.684189200401306,0.0503585785627365,0.701619207859039,0.71077024936676,0.0503585785627365,0.701619207859039,0.71077024936676,0.0166227668523788,0.729115009307861,0.684189200401306,0.111989013850689,0.701320171356201,0.703994572162628,0.213418856263161,0.206498295068741,0.954887807369232,0.213556125760078,0.239673748612404,0.94707453250885,0.1905497610569,0.279504716396332,0.941046118736267,0.133209675550461,0.278239697217941,0.951229631900787,0.0526620373129845,0.386535793542862,0.92076963186264,0.198849081993103,0.386764764785767,0.900484263896942,0.198849081993103,0.386764764785767,0.900484263896942,0.136471122503281,0.432431310415268,0.891279220581055,0.248707339167595,0.410341531038284,0.877362132072449,0.133209675550461,0.278239697217941,0.951229631900787,0.228856697678566,0.225194990634918,0.947054207324982,0.0565464720129967,0.334549605846405,0.940680027008057,0.228856697678566,0.225194990634918,0.947054207324982,0.246319606900215,0.245079651474953,0.937690019607544, +0.0565464720129967,0.334549605846405,0.940680027008057,-0.09040467441082,0.635527610778809,0.766766965389252,0.0225916616618633,0.506260335445404,0.862084627151489,0.193290412425995,0.363535583019257,0.911307036876678,0.0565464720129967,0.334549605846405,0.940680027008057,0.246319606900215,0.245079651474953,0.937690019607544,0.0225916616618633,0.506260335445404,0.862084627151489,0.211656719446182,0.3986676633358,0.892337024211884,0.230764806270599,0.449401766061783,0.863009631633759,0.248707339167595,0.410341531038284,0.877362132072449,0.239923924207687,0.451016366481781,0.859663069248199,0.255386292934418,0.526150107383728,0.81113737821579,0.230764806270599,0.449401766061783,0.863009631633759,0.527967870235443,0.832068860530853,-0.170032829046249,0.598965585231781,0.781837284564972,-0.173120021820068,0.500001609325409,0.855618894100189,-0.133845150470734,0.573376834392548,0.803828060626984,-0.158427968621254,0.598965585231781,0.781837284564972,-0.173120021820068,0.61192524433136,0.772151231765747,-0.171259492635727,0.663908958435059,0.737198770046234,-0.12554968893528,0.61192524433136,0.772151231765747,-0.171259492635727,0.724258780479431,0.663338959217072,-0.188229858875275,0.879143297672272,0.460879594087601,-0.121231205761433,0.876865863800049,0.446303635835648,-0.178659722208977,0.92276269197464,0.355819821357727,-0.147990301251411,0.928572714328766,0.365699619054794,-0.0633744895458221,0.92276269197464,0.355819821357727,-0.147990301251411,0.956210494041443,0.269664824008942,-0.113764353096485,0.956210494041443,0.269664824008942,-0.113764353096485,0.958514213562012,0.284664303064346,-0.0147190298885107,0.928572714328766,0.365699619054794,-0.0633744895458221,0.94012326002121,0.338524758815765,0.0396124944090843,0.958514213562012,0.284664303064346,-0.0147190298885107,0.956812798976898,0.283016890287399,0.0664119049906731,0.94012326002121,0.338524758815765,0.0396124944090843,0.956812798976898,0.283016890287399,0.0664119049906731,0.934121668338776,0.32794463634491,0.140957340598106,0.834164798259735,0.430531978607178,0.344689965248108, +0.837592363357544,0.474692463874817,0.27038112282753,0.871857106685638,0.398960709571838,0.284069299697876,0.838324964046478,0.439643830060959,0.322373121976852,0.834164798259735,0.430531978607178,0.344689965248108,0.862197816371918,0.386800467967987,0.327108800411224,0.934121668338776,0.32794463634491,0.140957340598106,0.930416464805603,0.319522589445114,0.179528206586838,0.905758738517761,0.378719598054886,0.190190553665161,0.905758738517761,0.378719598054886,0.190190553665161,0.900016069412231,0.362067937850952,0.242647469043732,0.871857106685638,0.398960709571838,0.284069299697876,0.783369898796082,0.239176794886589,0.573694944381714,0.728384673595428,0.321291774511337,0.605167090892792,0.562514543533325,0.450300365686417,0.693402349948883,0.498033136129379,0.254175871610641,0.829070270061493,0.430726051330566,0.449857383966446,0.782370269298553,0.389440625905991,0.50956803560257,0.767252385616302,0.54273521900177,0.392560929059982,0.742518842220306,0.376271665096283,0.540265202522278,0.752683937549591,0.430726051330566,0.449857383966446,0.782370269298553,0.680406987667084,0.315312743186951,0.661531567573547,0.562514543533325,0.450300365686417,0.693402349948883,0.54273521900177,0.392560929059982,0.742518842220306,0.498033136129379,0.254175871610641,0.829070270061493,0.513331532478333,0.350724279880524,0.783251583576202,0.544707894325256,0.0871401727199554,0.834086179733276,0.900929987430573,0.336892127990723,0.273548394441605,0.961962461471558,0.216487586498261,0.166617229580879,0.91567474603653,0.324151664972305,0.237624287605286,0.838324964046478,0.439643830060959,0.322373121976852,0.862197816371918,0.386800467967987,0.327108800411224,0.900929987430573,0.336892127990723,0.273548394441605,0.949808955192566,0.231740355491638,0.210140973329544,0.961962461471558,0.216487586498261,0.166617229580879,0.977689743041992,0.126690939068794,0.167547285556793,0.949808955192566,0.231740355491638,0.210140973329544,0.977689743041992,0.126690939068794,0.167547285556793,0.9439896941185,0.201101988554001,0.261612921953201,0.936229109764099,0.182692497968674,0.300163894891739, +0.916529655456543,0.208892866969109,0.341082096099854,0.9439896941185,0.201101988554001,0.261612921953201,0.839982986450195,0.230000123381615,0.491455376148224,0.879920363426209,0.137218788266182,0.454874783754349,0.791708827018738,0.0968974381685257,0.603164851665497,0.879920363426209,0.137218788266182,0.454874783754349,0.916529655456543,0.208892866969109,0.341082096099854,0.936229109764099,0.182692497968674,0.300163894891739,0.791708827018738,0.0968974381685257,0.603164851665497,0.680261492729187,0.0713370740413666,0.729489624500275,0.74335241317749,0.22402149438858,0.630270898342133,0.579767882823944,0.16561171412468,0.797773003578186,0.656952798366547,0.222489446401596,0.720354974269867,0.680261492729187,0.0713370740413666,0.729489624500275,0.579767882823944,0.16561171412468,0.797773003578186,0.671932578086853,-0.0686439126729965,0.737424194812775,0.544707894325256,0.0871401727199554,0.834086179733276,0.811505258083344,0.318406373262405,0.489975959062576,0.816799759864807,0.253669530153275,0.518159985542297,0.781158328056335,0.359085083007813,0.51073431968689,0.818138480186462,0.239446491003037,0.522795021533966,0.848691940307617,0.176388248801231,0.498607099056244,0.811505258083344,0.318406373262405,0.489975959062576,0.728384673595428,0.321291774511337,0.605167090892792,0.853951275348663,0.145277664065361,0.499661386013031,0.792466461658478,0.219719812273979,0.568963944911957,0.881253063678741,0.0385332815349102,0.471071183681488,0.834693431854248,0.152591019868851,0.529152810573578,0.792466461658478,0.219719812273979,0.568963944911957,0.818138480186462,0.239446491003037,0.522795021533966,0.834693431854248,0.152591019868851,0.529152810573578,0.872018873691559,0.0898233205080032,0.481159746646881,0.447119355201721,-0.160904884338379,0.8798828125,0.455069422721863,-0.0133447917178273,0.89035576581955,0.529059767723084,-0.131520450115204,0.838330447673798,0.633402407169342,-0.0447336845099926,0.772528469562531,0.558926284313202,0.0564301311969757,0.827295005321503,0.613578736782074,0.0841930732131004,0.785132110118866, +0.633402407169342,-0.0447336845099926,0.772528469562531,0.455069422721863,-0.0133447917178273,0.89035576581955,0.558926284313202,0.0564301311969757,0.827295005321503,0.447119355201721,-0.160904884338379,0.8798828125,0.494831115007401,-0.299653351306915,0.8156898021698,0.605178534984589,-0.188319966197014,0.773494899272919,0.587504506111145,-0.308708757162094,0.748022198677063,0.521001756191254,-0.254301369190216,0.814793109893799,0.656537234783173,-0.254281312227249,0.710140645503998,0.629952549934387,-0.30968302488327,0.712219178676605,0.656537234783173,-0.254281312227249,0.710140645503998,0.605178534984589,-0.188319966197014,0.773494899272919,0.327328950166702,-0.318132489919662,0.889745652675629,0.353006273508072,-0.232208386063576,0.906347513198853,0.295921921730042,-0.345336139202118,0.890602648258209,0.38338178396225,0.141520276665688,0.912683010101318,0.340760380029678,0.303035348653793,0.889972925186157,0.286766856908798,0.202727109193802,0.93630462884903,0.343497455120087,0.00434962986037135,0.939143359661102,0.443913549184799,-0.0184200592339039,0.895880222320557,0.38338178396225,0.141520276665688,0.912683010101318,0.353006273508072,-0.232208386063576,0.906347513198853,0.480099201202393,-0.150344207882881,0.864234507083893,0.443913549184799,-0.0184200592339039,0.895880222320557,0.340760380029678,0.303035348653793,0.889972925186157,0.301966816186905,0.361608654260635,0.882074296474457,0.29639258980751,0.301033854484558,0.906382858753204,0.327328950166702,-0.318132489919662,0.889745652675629,0.454742938280106,-0.286853075027466,0.843163132667542,0.466021150350571,-0.203510850667953,0.861050248146057,0.599407494068146,-0.212936148047447,0.771601378917694,0.454742938280106,-0.286853075027466,0.843163132667542,0.610464096069336,-0.318234592676163,0.725299954414368,0.743739306926727,-0.312198042869568,0.591087162494659,0.610464096069336,-0.318234592676163,0.725299954414368,0.698770463466644,-0.292143076658249,0.652971744537354,0.566213428974152,0.0105051090940833,0.824191629886627,0.645747601985931,-0.0964893624186516,0.757429659366608, +0.558926284313202,0.0564301311969757,0.827295005321503,0.645747601985931,-0.0964893624186516,0.757429659366608,0.663912653923035,-0.165037974715233,0.729371190071106,0.722467720508575,-0.263571292161942,0.639195203781128,0.698770463466644,-0.292143076658249,0.652971744537354,0.722467720508575,-0.263571292161942,0.639195203781128,0.743739306926727,-0.312198042869568,0.591087162494659,0.375746756792068,0.263093560934067,0.888592123985291,0.445237398147583,0.256726086139679,0.8578200340271,0.533074498176575,0.0933933034539223,0.840897858142853,0.29639258980751,0.301033854484558,0.906382858753204,0.301966816186905,0.361608654260635,0.882074296474457,0.375746756792068,0.263093560934067,0.888592123985291,0.715951383113861,0.14648100733757,0.682610332965851,0.621812403202057,0.142436400055885,0.77010452747345,0.750370621681213,0.175248026847839,0.637363314628601,0.715951383113861,0.14648100733757,0.682610332965851,0.750370621681213,0.175248026847839,0.637363314628601,0.735018312931061,0.250759124755859,0.62997442483902,0.386109590530396,0.313767522573471,0.867449820041656,0.621812403202057,0.142436400055885,0.77010452747345,0.445237398147583,0.256726086139679,0.8578200340271,0.735018312931061,0.250759124755859,0.62997442483902,0.69338995218277,0.27346658706665,0.666653096675873,0.648819983005524,0.378381699323654,0.660196721553802,-0.09040467441082,0.635527610778809,0.766766965389252,-0.163174197077751,0.720395922660828,0.67409473657608,0.0225916616618633,0.506260335445404,0.862084627151489,-0.0944690406322479,0.734451591968536,0.672053813934326,-0.12395802885294,0.588408887386322,0.799005150794983,-0.163174197077751,0.720395922660828,0.67409473657608,0.69338995218277,0.27346658706665,0.666653096675873,0.703100800514221,0.326476842164993,0.631713509559631,0.648819983005524,0.378381699323654,0.660196721553802,0.563359081745148,0.343440890312195,0.751448392868042,0.58933812379837,0.473243981599808,0.654767513275146,0.703100800514221,0.326476842164993,0.631713509559631,0.213418856263161,0.206498295068741,0.954887807369232,0.285178124904633,0.226910039782524,0.931227743625641, +0.213556125760078,0.239673748612404,0.94707453250885,0.563359081745148,0.343440890312195,0.751448392868042,0.421561419963837,0.241272628307343,0.874112904071808,0.388480484485626,0.3582563996315,0.848961174488068,0.28433957695961,0.171001464128494,0.943350076675415,0.285178124904633,0.226910039782524,0.931227743625641,0.421561419963837,0.241272628307343,0.874112904071808,0.189864903688431,0.435102641582489,0.880134582519531,0.213556125760078,0.239673748612404,0.94707453250885,0.273999810218811,0.438565582036972,0.855911314487457,0.154518842697144,0.675409555435181,0.721072614192963,0.111989013850689,0.701320171356201,0.703994572162628,0.18491792678833,0.602983415126801,0.776025891304016,0.18491792678833,0.602983415126801,0.776025891304016,0.273999810218811,0.438565582036972,0.855911314487457,0.294129282236099,0.578670382499695,0.760676264762878,0.0503585785627365,0.701619207859039,0.71077024936676,-0.046486459672451,0.616934776306152,0.785640001296997,-0.0944690406322479,0.734451591968536,0.672053813934326,0.0503585785627365,0.701619207859039,0.71077024936676,0.111989013850689,0.701320171356201,0.703994572162628,0.154518842697144,0.675409555435181,0.721072614192963,0.0565464720129967,0.334549605846405,0.940680027008057,0.0526620373129845,0.386535793542862,0.92076963186264,0.133209675550461,0.278239697217941,0.951229631900787,0.0526620373129845,0.386535793542862,0.92076963186264,0.136471122503281,0.432431310415268,0.891279220581055,0.198849081993103,0.386764764785767,0.900484263896942,0.211656719446182,0.3986676633358,0.892337024211884,0.248707339167595,0.410341531038284,0.877362132072449,0.136471122503281,0.432431310415268,0.891279220581055,-0.12395802885294,0.588408887386322,0.799005150794983,0.0565464720129967,0.334549605846405,0.940680027008057,0.0225916616618633,0.506260335445404,0.862084627151489,0.239923924207687,0.451016366481781,0.859663069248199,0.230764806270599,0.449401766061783,0.863009631633759,0.211656719446182,0.3986676633358,0.892337024211884,0.169707015156746,0.445357173681259,0.879122495651245,0.255386292934418,0.526150107383728,0.81113737821579, +0.239923924207687,0.451016366481781,0.859663069248199,0.598965585231781,0.781837284564972,-0.173120021820068,0.527967870235443,0.832068860530853,-0.170032829046249,0.724258780479431,0.663338959217072,-0.188229858875275,0.61192524433136,0.772151231765747,-0.171259492635727,0.598965585231781,0.781837284564972,-0.173120021820068,0.724258780479431,0.663338959217072,-0.188229858875275,0.909617006778717,0.357014417648315,-0.212455853819847,0.92276269197464,0.355819821357727,-0.147990301251411,0.876865863800049,0.446303635835648,-0.178659722208977,0.956210494041443,0.269664824008942,-0.113764353096485,0.92276269197464,0.355819821357727,-0.147990301251411,0.945940136909485,0.265357404947281,-0.186500906944275,0.9776611328125,0.208885103464127,0.0233585294336081,0.958514213562012,0.284664303064346,-0.0147190298885107,0.956210494041443,0.269664824008942,-0.113764353096485,0.956812798976898,0.283016890287399,0.0664119049906731,0.958514213562012,0.284664303064346,-0.0147190298885107,0.9776611328125,0.208885103464127,0.0233585294336081,0.956812798976898,0.283016890287399,0.0664119049906731,0.951216042041779,0.268587082624435,0.151818558573723,0.934121668338776,0.32794463634491,0.140957340598106,0.834164798259735,0.430531978607178,0.344689965248108,0.871857106685638,0.398960709571838,0.284069299697876,0.868748426437378,0.36997053027153,0.329238295555115,0.862197816371918,0.386800467967987,0.327108800411224,0.834164798259735,0.430531978607178,0.344689965248108,0.885437726974487,0.323828220367432,0.33336940407753,0.934121668338776,0.32794463634491,0.140957340598106,0.951216042041779,0.268587082624435,0.151818558573723,0.930416464805603,0.319522589445114,0.179528206586838,0.905758738517761,0.378719598054886,0.190190553665161,0.930416464805603,0.319522589445114,0.179528206586838,0.900016069412231,0.362067937850952,0.242647469043732,0.871857106685638,0.398960709571838,0.284069299697876,0.900016069412231,0.362067937850952,0.242647469043732,0.868748426437378,0.36997053027153,0.329238295555115,0.783369898796082,0.239176794886589,0.573694944381714, +0.853951275348663,0.145277664065361,0.499661386013031,0.728384673595428,0.321291774511337,0.605167090892792,0.783369898796082,0.239176794886589,0.573694944381714,0.562514543533325,0.450300365686417,0.693402349948883,0.680406987667084,0.315312743186951,0.661531567573547,0.498033136129379,0.254175871610641,0.829070270061493,0.616758525371552,0.138308137655258,0.77490621805191,0.430726051330566,0.449857383966446,0.782370269298553,0.54273521900177,0.392560929059982,0.742518842220306,0.430726051330566,0.449857383966446,0.782370269298553,0.616758525371552,0.138308137655258,0.77490621805191,0.680406987667084,0.315312743186951,0.661531567573547,0.54273521900177,0.392560929059982,0.742518842220306,0.767368018627167,0.0612308159470558,0.638276636600494,0.544707894325256,0.0871401727199554,0.834086179733276,0.684358239173889,-0.134467586874962,0.716639459133148,0.498033136129379,0.254175871610641,0.829070270061493,0.952604472637177,0.222962737083435,0.20695948600769,0.961962461471558,0.216487586498261,0.166617229580879,0.900929987430573,0.336892127990723,0.273548394441605,0.900929987430573,0.336892127990723,0.273548394441605,0.862197816371918,0.386800467967987,0.327108800411224,0.952604472637177,0.222962737083435,0.20695948600769,0.952604472637177,0.222962737083435,0.20695948600769,0.977689743041992,0.126690939068794,0.167547285556793,0.961962461471558,0.216487586498261,0.166617229580879,0.977689743041992,0.126690939068794,0.167547285556793,0.946936786174774,0.177137076854706,0.268203347921371,0.9439896941185,0.201101988554001,0.261612921953201,0.9439896941185,0.201101988554001,0.261612921953201,0.946936786174774,0.177137076854706,0.268203347921371,0.936229109764099,0.182692497968674,0.300163894891739,0.844210028648376,-0.00667332904413342,0.53597092628479,0.791708827018738,0.0968974381685257,0.603164851665497,0.879920363426209,0.137218788266182,0.454874783754349,0.879920363426209,0.137218788266182,0.454874783754349,0.936229109764099,0.182692497968674,0.300163894891739,0.942816972732544,0.113863430917263,0.313258826732636,0.791708827018738,0.0968974381685257,0.603164851665497, +0.752262353897095,-0.0984573289752007,0.651465535163879,0.680261492729187,0.0713370740413666,0.729489624500275,0.671932578086853,-0.0686439126729965,0.737424194812775,0.579767882823944,0.16561171412468,0.797773003578186,0.680261492729187,0.0713370740413666,0.729489624500275,0.671932578086853,-0.0686439126729965,0.737424194812775,0.684358239173889,-0.134467586874962,0.716639459133148,0.544707894325256,0.0871401727199554,0.834086179733276,0.848691940307617,0.176388248801231,0.498607099056244,0.816799759864807,0.253669530153275,0.518159985542297,0.811505258083344,0.318406373262405,0.489975959062576,0.848691940307617,0.176388248801231,0.498607099056244,0.818138480186462,0.239446491003037,0.522795021533966,0.872018873691559,0.0898233205080032,0.481159746646881,0.881253063678741,0.0385332815349102,0.471071183681488,0.792466461658478,0.219719812273979,0.568963944911957,0.853951275348663,0.145277664065361,0.499661386013031,0.834693431854248,0.152591019868851,0.529152810573578,0.881253063678741,0.0385332815349102,0.471071183681488,0.872018873691559,0.0898233205080032,0.481159746646881,0.447119355201721,-0.160904884338379,0.8798828125,0.469978243112564,-0.0741681903600693,0.879556357860565,0.455069422721863,-0.0133447917178273,0.89035576581955,0.455069422721863,-0.0133447917178273,0.89035576581955,0.457836419343948,0.0725595280528069,0.886070430278778,0.558926284313202,0.0564301311969757,0.827295005321503,0.469978243112564,-0.0741681903600693,0.879556357860565,0.447119355201721,-0.160904884338379,0.8798828125,0.605178534984589,-0.188319966197014,0.773494899272919,0.607929229736328,-0.106905840337276,0.786761105060577,0.656537234783173,-0.254281312227249,0.710140645503998,0.521001756191254,-0.254301369190216,0.814793109893799,0.605178534984589,-0.188319966197014,0.773494899272919,0.656537234783173,-0.254281312227249,0.710140645503998,0.678542613983154,-0.131573542952538,0.722681224346161,0.327328950166702,-0.318132489919662,0.889745652675629,0.480099201202393,-0.150344207882881,0.864234507083893,0.353006273508072,-0.232208386063576,0.906347513198853, +0.38338178396225,0.141520276665688,0.912683010101318,0.500637531280518,0.1180210262537,0.857573866844177,0.340760380029678,0.303035348653793,0.889972925186157,0.443913549184799,-0.0184200592339039,0.895880222320557,0.500637531280518,0.1180210262537,0.857573866844177,0.38338178396225,0.141520276665688,0.912683010101318,0.443913549184799,-0.0184200592339039,0.895880222320557,0.480099201202393,-0.150344207882881,0.864234507083893,0.568601846694946,-0.0268887002021074,0.822173178195953,0.334557771682739,0.338022798299789,0.879665613174438,0.301966816186905,0.361608654260635,0.882074296474457,0.340760380029678,0.303035348653793,0.889972925186157,0.454742938280106,-0.286853075027466,0.843163132667542,0.57238632440567,-0.157256618142128,0.804763436317444,0.466021150350571,-0.203510850667953,0.861050248146057,0.480099201202393,-0.150344207882881,0.864234507083893,0.327328950166702,-0.318132489919662,0.889745652675629,0.466021150350571,-0.203510850667953,0.861050248146057,0.599407494068146,-0.212936148047447,0.771601378917694,0.57238632440567,-0.157256618142128,0.804763436317444,0.454742938280106,-0.286853075027466,0.843163132667542,0.599407494068146,-0.212936148047447,0.771601378917694,0.610464096069336,-0.318234592676163,0.725299954414368,0.672914028167725,-0.252209335565567,0.695397019386292,0.743739306926727,-0.312198042869568,0.591087162494659,0.672914028167725,-0.252209335565567,0.695397019386292,0.610464096069336,-0.318234592676163,0.725299954414368,0.645747601985931,-0.0964893624186516,0.757429659366608,0.566213428974152,0.0105051090940833,0.824191629886627,0.663912653923035,-0.165037974715233,0.729371190071106,0.566213428974152,0.0105051090940833,0.824191629886627,0.558926284313202,0.0564301311969757,0.827295005321503,0.457836419343948,0.0725595280528069,0.886070430278778,0.722467720508575,-0.263571292161942,0.639195203781128,0.663912653923035,-0.165037974715233,0.729371190071106,0.746906876564026,-0.285151988267899,0.60068154335022,0.722467720508575,-0.263571292161942,0.639195203781128,0.746906876564026,-0.285151988267899,0.60068154335022, +0.743739306926727,-0.312198042869568,0.591087162494659,0.375746756792068,0.263093560934067,0.888592123985291,0.28572940826416,0.354646921157837,0.890271961688995,0.445237398147583,0.256726086139679,0.8578200340271,0.375746756792068,0.263093560934067,0.888592123985291,0.301966816186905,0.361608654260635,0.882074296474457,0.28572940826416,0.354646921157837,0.890271961688995,0.541498363018036,0.307949185371399,0.782270193099976,0.750370621681213,0.175248026847839,0.637363314628601,0.621812403202057,0.142436400055885,0.77010452747345,0.735018312931061,0.250759124755859,0.62997442483902,0.750370621681213,0.175248026847839,0.637363314628601,0.69338995218277,0.27346658706665,0.666653096675873,0.541498363018036,0.307949185371399,0.782270193099976,0.621812403202057,0.142436400055885,0.77010452747345,0.386109590530396,0.313767522573471,0.867449820041656,0.28572940826416,0.354646921157837,0.890271961688995,0.386109590530396,0.313767522573471,0.867449820041656,0.445237398147583,0.256726086139679,0.8578200340271,-0.12395802885294,0.588408887386322,0.799005150794983,0.0225916616618633,0.506260335445404,0.862084627151489,-0.163174197077751,0.720395922660828,0.67409473657608,-0.046486459672451,0.616934776306152,0.785640001296997,-0.12395802885294,0.588408887386322,0.799005150794983,-0.0944690406322479,0.734451591968536,0.672053813934326,0.565792977809906,0.220328107476234,0.794565081596375,0.703100800514221,0.326476842164993,0.631713509559631,0.69338995218277,0.27346658706665,0.666653096675873,0.565792977809906,0.220328107476234,0.794565081596375,0.563359081745148,0.343440890312195,0.751448392868042,0.703100800514221,0.326476842164993,0.631713509559631,0.285178124904633,0.226910039782524,0.931227743625641,0.164501711726189,0.165479183197021,0.972396910190582,0.213556125760078,0.239673748612404,0.94707453250885,0.565792977809906,0.220328107476234,0.794565081596375,0.421561419963837,0.241272628307343,0.874112904071808,0.563359081745148,0.343440890312195,0.751448392868042,0.28433957695961,0.171001464128494,0.943350076675415,0.164501711726189,0.165479183197021,0.972396910190582, +0.285178124904633,0.226910039782524,0.931227743625641,0.565792977809906,0.220328107476234,0.794565081596375,0.28433957695961,0.171001464128494,0.943350076675415,0.421561419963837,0.241272628307343,0.874112904071808,0.236594215035439,0.299412578344345,0.924324154853821,0.273999810218811,0.438565582036972,0.855911314487457,0.213556125760078,0.239673748612404,0.94707453250885,0.18491792678833,0.602983415126801,0.776025891304016,0.294129282236099,0.578670382499695,0.760676264762878,0.154518842697144,0.675409555435181,0.721072614192963,0.273999810218811,0.438565582036972,0.855911314487457,0.360410898923874,0.505788266658783,0.783761501312256,0.294129282236099,0.578670382499695,0.760676264762878,0.0503585785627365,0.701619207859039,0.71077024936676,0.144298896193504,0.607931196689606,0.780767142772675,-0.046486459672451,0.616934776306152,0.785640001296997,0.0503585785627365,0.701619207859039,0.71077024936676,0.154518842697144,0.675409555435181,0.721072614192963,0.144221842288971,0.679853618144989,0.719026386737823,0.0565464720129967,0.334549605846405,0.940680027008057,-0.0576219297945499,0.451233416795731,0.890543699264526,0.0526620373129845,0.386535793542862,0.92076963186264,0.058062955737114,0.440546184778214,0.895850241184235,0.136471122503281,0.432431310415268,0.891279220581055,0.0526620373129845,0.386535793542862,0.92076963186264,0.136471122503281,0.432431310415268,0.891279220581055,0.169707015156746,0.445357173681259,0.879122495651245,0.211656719446182,0.3986676633358,0.892337024211884,0.0565464720129967,0.334549605846405,0.940680027008057,-0.12395802885294,0.588408887386322,0.799005150794983,-0.0576219297945499,0.451233416795731,0.890543699264526,0.239923924207687,0.451016366481781,0.859663069248199,0.211656719446182,0.3986676633358,0.892337024211884,0.169707015156746,0.445357173681259,0.879122495651245,0.169707015156746,0.445357173681259,0.879122495651245,0.27244821190834,0.548548817634583,0.790484666824341,0.255386292934418,0.526150107383728,0.81113737821579,0.909617006778717,0.357014417648315,-0.212455853819847, +0.945940136909485,0.265357404947281,-0.186500906944275,0.92276269197464,0.355819821357727,-0.147990301251411,0.945940136909485,0.265357404947281,-0.186500906944275,0.974407494068146,0.187283962965012,-0.124316610395908,0.956210494041443,0.269664824008942,-0.113764353096485,0.956210494041443,0.269664824008942,-0.113764353096485,0.974407494068146,0.187283962965012,-0.124316610395908,0.9776611328125,0.208885103464127,0.0233585294336081,0.956812798976898,0.283016890287399,0.0664119049906731,0.9776611328125,0.208885103464127,0.0233585294336081,0.951216042041779,0.268587082624435,0.151818558573723,0.834164798259735,0.430531978607178,0.344689965248108,0.868748426437378,0.36997053027153,0.329238295555115,0.885437726974487,0.323828220367432,0.33336940407753,0.885437726974487,0.323828220367432,0.33336940407753,0.952604472637177,0.222962737083435,0.20695948600769,0.862197816371918,0.386800467967987,0.327108800411224,0.951216042041779,0.268587082624435,0.151818558573723,0.930464804172516,0.293443977832794,0.219375893473625,0.930416464805603,0.319522589445114,0.179528206586838,0.930464804172516,0.293443977832794,0.219375893473625,0.900016069412231,0.362067937850952,0.242647469043732,0.930416464805603,0.319522589445114,0.179528206586838,0.898322880268097,0.347351878881454,0.269002944231033,0.868748426437378,0.36997053027153,0.329238295555115,0.900016069412231,0.362067937850952,0.242647469043732,0.783369898796082,0.239176794886589,0.573694944381714,0.874637484550476,-0.00843804981559515,0.484703987836838,0.853951275348663,0.145277664065361,0.499661386013031,0.783369898796082,0.239176794886589,0.573694944381714,0.680406987667084,0.315312743186951,0.661531567573547,0.767368018627167,0.0612308159470558,0.638276636600494,0.498033136129379,0.254175871610641,0.829070270061493,0.684358239173889,-0.134467586874962,0.716639459133148,0.616758525371552,0.138308137655258,0.77490621805191,0.616758525371552,0.138308137655258,0.77490621805191,0.767368018627167,0.0612308159470558,0.638276636600494,0.54273521900177,0.392560929059982,0.742518842220306, +0.977689743041992,0.126690939068794,0.167547285556793,0.952604472637177,0.222962737083435,0.20695948600769,0.986505746841431,0.0648204460740089,0.150347605347633,0.946936786174774,0.177137076854706,0.268203347921371,0.977689743041992,0.126690939068794,0.167547285556793,0.965864896774292,0.0285297445952892,0.257470279932022,0.946936786174774,0.177137076854706,0.268203347921371,0.962467133998871,0.0860324651002884,0.257401198148727,0.936229109764099,0.182692497968674,0.300163894891739,0.844210028648376,-0.00667332904413342,0.53597092628479,0.752262353897095,-0.0984573289752007,0.651465535163879,0.791708827018738,0.0968974381685257,0.603164851665497,0.902707815170288,0.0349471680819988,0.428832352161407,0.844210028648376,-0.00667332904413342,0.53597092628479,0.879920363426209,0.137218788266182,0.454874783754349,0.962467133998871,0.0860324651002884,0.257401198148727,0.942816972732544,0.113863430917263,0.313258826732636,0.936229109764099,0.182692497968674,0.300163894891739,0.879920363426209,0.137218788266182,0.454874783754349,0.942816972732544,0.113863430917263,0.313258826732636,0.902707815170288,0.0349471680819988,0.428832352161407,0.752262353897095,-0.0984573289752007,0.651465535163879,0.641130983829498,-0.0847693234682083,0.762735247612,0.680261492729187,0.0713370740413666,0.729489624500275,0.671932578086853,-0.0686439126729965,0.737424194812775,0.680261492729187,0.0713370740413666,0.729489624500275,0.641130983829498,-0.0847693234682083,0.762735247612,0.671932578086853,-0.0686439126729965,0.737424194812775,0.769633650779724,-0.236891016364098,0.592913627624512,0.684358239173889,-0.134467586874962,0.716639459133148,0.816799759864807,0.253669530153275,0.518159985542297,0.848691940307617,0.176388248801231,0.498607099056244,0.802916944026947,0.174946323037148,0.569840312004089,0.82113641500473,0.119052171707153,0.558176755905151,0.848691940307617,0.176388248801231,0.498607099056244,0.872018873691559,0.0898233205080032,0.481159746646881,0.874637484550476,-0.00843804981559515,0.484703987836838,0.881253063678741,0.0385332815349102,0.471071183681488, +0.853951275348663,0.145277664065361,0.499661386013031,0.872018873691559,0.0898233205080032,0.481159746646881,0.881253063678741,0.0385332815349102,0.471071183681488,0.858859598636627,0.0479472056031227,0.509961843490601,0.471994400024414,0.033768568187952,0.880954504013062,0.455069422721863,-0.0133447917178273,0.89035576581955,0.469978243112564,-0.0741681903600693,0.879556357860565,0.455069422721863,-0.0133447917178273,0.89035576581955,0.471994400024414,0.033768568187952,0.880954504013062,0.457836419343948,0.0725595280528069,0.886070430278778,0.605178534984589,-0.188319966197014,0.773494899272919,0.580881118774414,-0.0647295638918877,0.811410546302795,0.469978243112564,-0.0741681903600693,0.879556357860565,0.607929229736328,-0.106905840337276,0.786761105060577,0.678542613983154,-0.131573542952538,0.722681224346161,0.656537234783173,-0.254281312227249,0.710140645503998,0.469198793172836,-0.169504687190056,0.866672098636627,0.607929229736328,-0.106905840337276,0.786761105060577,0.521001756191254,-0.254301369190216,0.814793109893799,0.605178534984589,-0.188319966197014,0.773494899272919,0.678542613983154,-0.131573542952538,0.722681224346161,0.580881118774414,-0.0647295638918877,0.811410546302795,0.459340006113052,0.21316422522068,0.862303733825684,0.340760380029678,0.303035348653793,0.889972925186157,0.500637531280518,0.1180210262537,0.857573866844177,0.443913549184799,-0.0184200592339039,0.895880222320557,0.568601846694946,-0.0268887002021074,0.822173178195953,0.500637531280518,0.1180210262537,0.857573866844177,0.582146525382996,-0.0874927863478661,0.808362722396851,0.568601846694946,-0.0268887002021074,0.822173178195953,0.480099201202393,-0.150344207882881,0.864234507083893,0.28572940826416,0.354646921157837,0.890271961688995,0.301966816186905,0.361608654260635,0.882074296474457,0.334557771682739,0.338022798299789,0.879665613174438,0.334557771682739,0.338022798299789,0.879665613174438,0.340760380029678,0.303035348653793,0.889972925186157,0.459340006113052,0.21316422522068,0.862303733825684,0.582146525382996,-0.0874927863478661,0.808362722396851, +0.466021150350571,-0.203510850667953,0.861050248146057,0.57238632440567,-0.157256618142128,0.804763436317444,0.582146525382996,-0.0874927863478661,0.808362722396851,0.480099201202393,-0.150344207882881,0.864234507083893,0.466021150350571,-0.203510850667953,0.861050248146057,0.599407494068146,-0.212936148047447,0.771601378917694,0.60610020160675,-0.130868077278137,0.784548223018646,0.57238632440567,-0.157256618142128,0.804763436317444,0.599407494068146,-0.212936148047447,0.771601378917694,0.672914028167725,-0.252209335565567,0.695397019386292,0.596776723861694,-0.191225692629814,0.779288232326508,0.731092631816864,-0.259990870952606,0.63079959154129,0.672914028167725,-0.252209335565567,0.695397019386292,0.743739306926727,-0.312198042869568,0.591087162494659,0.566213428974152,0.0105051090940833,0.824191629886627,0.544406592845917,-0.0362543947994709,0.838037550449371,0.663912653923035,-0.165037974715233,0.729371190071106,0.566213428974152,0.0105051090940833,0.824191629886627,0.457836419343948,0.0725595280528069,0.886070430278778,0.544406592845917,-0.0362543947994709,0.838037550449371,0.663912653923035,-0.165037974715233,0.729371190071106,0.690032243728638,-0.253109127283096,0.678078889846802,0.746906876564026,-0.285151988267899,0.60068154335022,0.746906876564026,-0.285151988267899,0.60068154335022,0.769096314907074,-0.2781782746315,0.575419425964355,0.743739306926727,-0.312198042869568,0.591087162494659,0.541498363018036,0.307949185371399,0.782270193099976,0.69338995218277,0.27346658706665,0.666653096675873,0.750370621681213,0.175248026847839,0.637363314628601,0.541498363018036,0.307949185371399,0.782270193099976,0.386109590530396,0.313767522573471,0.867449820041656,0.181490451097488,0.370489358901978,0.910932898521423,0.28572940826416,0.354646921157837,0.890271961688995,0.181490451097488,0.370489358901978,0.910932898521423,0.386109590530396,0.313767522573471,0.867449820041656,-0.0576219297945499,0.451233416795731,0.890543699264526,-0.12395802885294,0.588408887386322,0.799005150794983,-0.046486459672451,0.616934776306152,0.785640001296997, +0.69338995218277,0.27346658706665,0.666653096675873,0.329360246658325,0.219844251871109,0.918253898620605,0.565792977809906,0.220328107476234,0.794565081596375,0.213556125760078,0.239673748612404,0.94707453250885,0.164501711726189,0.165479183197021,0.972396910190582,0.117857046425343,0.193815857172012,0.97393274307251,0.28433957695961,0.171001464128494,0.943350076675415,0.0379968546330929,0.171778365969658,0.984402418136597,0.164501711726189,0.165479183197021,0.972396910190582,0.28433957695961,0.171001464128494,0.943350076675415,0.565792977809906,0.220328107476234,0.794565081596375,0.329360246658325,0.219844251871109,0.918253898620605,0.273999810218811,0.438565582036972,0.855911314487457,0.236594215035439,0.299412578344345,0.924324154853821,0.337111949920654,0.417125284671783,0.84401535987854,0.236594215035439,0.299412578344345,0.924324154853821,0.213556125760078,0.239673748612404,0.94707453250885,0.117857046425343,0.193815857172012,0.97393274307251,0.154518842697144,0.675409555435181,0.721072614192963,0.294129282236099,0.578670382499695,0.760676264762878,0.225230872631073,0.662219226360321,0.714658379554749,0.273999810218811,0.438565582036972,0.855911314487457,0.337111949920654,0.417125284671783,0.84401535987854,0.360410898923874,0.505788266658783,0.783761501312256,0.432465493679047,0.521998167037964,0.735181152820587,0.294129282236099,0.578670382499695,0.760676264762878,0.360410898923874,0.505788266658783,0.783761501312256,0.144298896193504,0.607931196689606,0.780767142772675,0.0503585785627365,0.701619207859039,0.71077024936676,0.144221842288971,0.679853618144989,0.719026386737823,0.144298896193504,0.607931196689606,0.780767142772675,0.0976498126983643,0.48733714222908,0.867736518383026,-0.046486459672451,0.616934776306152,0.785640001296997,0.225230872631073,0.662219226360321,0.714658379554749,0.144221842288971,0.679853618144989,0.719026386737823,0.154518842697144,0.675409555435181,0.721072614192963,0.058062955737114,0.440546184778214,0.895850241184235,0.0526620373129845,0.386535793542862,0.92076963186264,-0.0576219297945499,0.451233416795731,0.890543699264526, +0.18672102689743,0.452683329582214,0.87190192937851,0.136471122503281,0.432431310415268,0.891279220581055,0.058062955737114,0.440546184778214,0.895850241184235,0.117889232933521,0.434895277023315,0.892730712890625,0.169707015156746,0.445357173681259,0.879122495651245,0.136471122503281,0.432431310415268,0.891279220581055,0.227156460285187,0.51408839225769,0.827111184597015,0.27244821190834,0.548548817634583,0.790484666824341,0.169707015156746,0.445357173681259,0.879122495651245,0.974407494068146,0.187283962965012,-0.124316610395908,0.945940136909485,0.265357404947281,-0.186500906944275,0.958990097045898,0.18850465118885,-0.211669251322746,0.994702577590942,0.0944706201553345,-0.0405207052826881,0.9776611328125,0.208885103464127,0.0233585294336081,0.974407494068146,0.187283962965012,-0.124316610395908,0.9776611328125,0.208885103464127,0.0233585294336081,0.960306525230408,0.1750618070364,0.217174291610718,0.951216042041779,0.268587082624435,0.151818558573723,0.868748426437378,0.36997053027153,0.329238295555115,0.938814342021942,0.150321558117867,0.309888601303101,0.885437726974487,0.323828220367432,0.33336940407753,0.952604472637177,0.222962737083435,0.20695948600769,0.885437726974487,0.323828220367432,0.33336940407753,0.965376675128937,0.0833953693509102,0.247169867157936,0.930464804172516,0.293443977832794,0.219375893473625,0.951216042041779,0.268587082624435,0.151818558573723,0.960306525230408,0.1750618070364,0.217174291610718,0.930464804172516,0.293443977832794,0.219375893473625,0.898322880268097,0.347351878881454,0.269002944231033,0.900016069412231,0.362067937850952,0.242647469043732,0.932900190353394,0.212089672684669,0.29105868935585,0.868748426437378,0.36997053027153,0.329238295555115,0.898322880268097,0.347351878881454,0.269002944231033,0.767368018627167,0.0612308159470558,0.638276636600494,0.874637484550476,-0.00843804981559515,0.484703987836838,0.783369898796082,0.239176794886589,0.573694944381714,0.684358239173889,-0.134467586874962,0.716639459133148,0.707771122455597,-0.23979489505291,0.664498507976532,0.616758525371552,0.138308137655258,0.77490621805191, +0.707771122455597,-0.23979489505291,0.664498507976532,0.767368018627167,0.0612308159470558,0.638276636600494,0.616758525371552,0.138308137655258,0.77490621805191,0.965376675128937,0.0833953693509102,0.247169867157936,0.986505746841431,0.0648204460740089,0.150347605347633,0.952604472637177,0.222962737083435,0.20695948600769,0.977689743041992,0.126690939068794,0.167547285556793,0.986505746841431,0.0648204460740089,0.150347605347633,0.981589198112488,-0.0260735396295786,0.189215436577797,0.965864896774292,0.0285297445952892,0.257470279932022,0.977689743041992,0.126690939068794,0.167547285556793,0.981589198112488,-0.0260735396295786,0.189215436577797,0.962467133998871,0.0860324651002884,0.257401198148727,0.946936786174774,0.177137076854706,0.268203347921371,0.965864896774292,0.0285297445952892,0.257470279932022,0.844210028648376,-0.00667332904413342,0.53597092628479,0.875024557113647,-0.038322176784277,0.482559084892273,0.752262353897095,-0.0984573289752007,0.651465535163879,0.902707815170288,0.0349471680819988,0.428832352161407,0.875024557113647,-0.038322176784277,0.482559084892273,0.844210028648376,-0.00667332904413342,0.53597092628479,0.951614677906036,0.0880796611309052,0.294400036334991,0.942816972732544,0.113863430917263,0.313258826732636,0.962467133998871,0.0860324651002884,0.257401198148727,0.902707815170288,0.0349471680819988,0.428832352161407,0.942816972732544,0.113863430917263,0.313258826732636,0.951614677906036,0.0880796611309052,0.294400036334991,0.752262353897095,-0.0984573289752007,0.651465535163879,0.662075996398926,-0.109614424407482,0.741377055644989,0.641130983829498,-0.0847693234682083,0.762735247612,0.73396235704422,-0.109951831400394,0.67023104429245,0.671932578086853,-0.0686439126729965,0.737424194812775,0.641130983829498,-0.0847693234682083,0.762735247612,0.769633650779724,-0.236891016364098,0.592913627624512,0.671932578086853,-0.0686439126729965,0.737424194812775,0.826446890830994,-0.213757768273354,0.520857930183411,0.747281849384308,-0.3355972468853,0.573536515235901,0.684358239173889,-0.134467586874962,0.716639459133148, +0.769633650779724,-0.236891016364098,0.592913627624512,0.848691940307617,0.176388248801231,0.498607099056244,0.82113641500473,0.119052171707153,0.558176755905151,0.802916944026947,0.174946323037148,0.569840312004089,0.82113641500473,0.119052171707153,0.558176755905151,0.872018873691559,0.0898233205080032,0.481159746646881,0.828415513038635,0.102635234594345,0.550630211830139,0.872139513492584,-0.0223505962640047,0.48874643445015,0.881253063678741,0.0385332815349102,0.471071183681488,0.874637484550476,-0.00843804981559515,0.484703987836838,0.881253063678741,0.0385332815349102,0.471071183681488,0.872139513492584,-0.0223505962640047,0.48874643445015,0.858859598636627,0.0479472056031227,0.509961843490601,0.828415513038635,0.102635234594345,0.550630211830139,0.872018873691559,0.0898233205080032,0.481159746646881,0.858859598636627,0.0479472056031227,0.509961843490601,0.471994400024414,0.033768568187952,0.880954504013062,0.469978243112564,-0.0741681903600693,0.879556357860565,0.580881118774414,-0.0647295638918877,0.811410546302795,0.501951992511749,0.103734262287617,0.858651995658875,0.457836419343948,0.0725595280528069,0.886070430278778,0.471994400024414,0.033768568187952,0.880954504013062,0.60913872718811,-0.00176774011924863,0.793061554431915,0.678542613983154,-0.131573542952538,0.722681224346161,0.607929229736328,-0.106905840337276,0.786761105060577,0.492692589759827,-0.0889653638005257,0.865643739700317,0.607929229736328,-0.106905840337276,0.786761105060577,0.469198793172836,-0.169504687190056,0.866672098636627,0.580881118774414,-0.0647295638918877,0.811410546302795,0.678542613983154,-0.131573542952538,0.722681224346161,0.60913872718811,-0.00176774011924863,0.793061554431915,0.550327777862549,0.0490552112460136,0.833506286144257,0.459340006113052,0.21316422522068,0.862303733825684,0.500637531280518,0.1180210262537,0.857573866844177,0.550327777862549,0.0490552112460136,0.833506286144257,0.500637531280518,0.1180210262537,0.857573866844177,0.568601846694946,-0.0268887002021074,0.822173178195953,0.579265534877777,-0.0274763144552708,0.814675569534302, +0.568601846694946,-0.0268887002021074,0.822173178195953,0.582146525382996,-0.0874927863478661,0.808362722396851,0.334557771682739,0.338022798299789,0.879665613174438,0.312750518321991,0.284220963716507,0.906314194202423,0.28572940826416,0.354646921157837,0.890271961688995,0.334557771682739,0.338022798299789,0.879665613174438,0.459340006113052,0.21316422522068,0.862303733825684,0.312750518321991,0.284220963716507,0.906314194202423,0.582146525382996,-0.0874927863478661,0.808362722396851,0.57238632440567,-0.157256618142128,0.804763436317444,0.60610020160675,-0.130868077278137,0.784548223018646,0.599407494068146,-0.212936148047447,0.771601378917694,0.596776723861694,-0.191225692629814,0.779288232326508,0.60610020160675,-0.130868077278137,0.784548223018646,0.672914028167725,-0.252209335565567,0.695397019386292,0.731092631816864,-0.259990870952606,0.63079959154129,0.596776723861694,-0.191225692629814,0.779288232326508,0.743739306926727,-0.312198042869568,0.591087162494659,0.769096314907074,-0.2781782746315,0.575419425964355,0.731092631816864,-0.259990870952606,0.63079959154129,0.544406592845917,-0.0362543947994709,0.838037550449371,0.58682769536972,-0.143707230687141,0.796857178211212,0.663912653923035,-0.165037974715233,0.729371190071106,0.521645665168762,0.0429724305868149,0.852079093456268,0.544406592845917,-0.0362543947994709,0.838037550449371,0.457836419343948,0.0725595280528069,0.886070430278778,0.690032243728638,-0.253109127283096,0.678078889846802,0.663912653923035,-0.165037974715233,0.729371190071106,0.58682769536972,-0.143707230687141,0.796857178211212,0.746906876564026,-0.285151988267899,0.60068154335022,0.690032243728638,-0.253109127283096,0.678078889846802,0.769096314907074,-0.2781782746315,0.575419425964355,0.541498363018036,0.307949185371399,0.782270193099976,0.368603497743607,0.359132200479507,0.857412040233612,0.69338995218277,0.27346658706665,0.666653096675873,0.368603497743607,0.359132200479507,0.857412040233612,0.541498363018036,0.307949185371399,0.782270193099976,0.181490451097488,0.370489358901978,0.910932898521423, +0.174978792667389,0.302849978208542,0.936837315559387,0.181490451097488,0.370489358901978,0.910932898521423,0.28572940826416,0.354646921157837,0.890271961688995,-0.0576219297945499,0.451233416795731,0.890543699264526,-0.046486459672451,0.616934776306152,0.785640001296997,0.0976498126983643,0.48733714222908,0.867736518383026,0.329360246658325,0.219844251871109,0.918253898620605,0.69338995218277,0.27346658706665,0.666653096675873,0.368603497743607,0.359132200479507,0.857412040233612,0.0379968546330929,0.171778365969658,0.984402418136597,0.117857046425343,0.193815857172012,0.97393274307251,0.164501711726189,0.165479183197021,0.972396910190582,0.28433957695961,0.171001464128494,0.943350076675415,0.329360246658325,0.219844251871109,0.918253898620605,0.0379968546330929,0.171778365969658,0.984402418136597,0.236594215035439,0.299412578344345,0.924324154853821,0.306971400976181,0.332905769348145,0.891595184803009,0.337111949920654,0.417125284671783,0.84401535987854,0.236594215035439,0.299412578344345,0.924324154853821,0.117857046425343,0.193815857172012,0.97393274307251,0.223291024565697,0.25478395819664,0.940864562988281,0.334287703037262,0.624943196773529,0.705476880073547,0.225230872631073,0.662219226360321,0.714658379554749,0.294129282236099,0.578670382499695,0.760676264762878,0.39861273765564,0.480238139629364,0.781331598758698,0.360410898923874,0.505788266658783,0.783761501312256,0.337111949920654,0.417125284671783,0.84401535987854,0.432465493679047,0.521998167037964,0.735181152820587,0.334287703037262,0.624943196773529,0.705476880073547,0.294129282236099,0.578670382499695,0.760676264762878,0.360410898923874,0.505788266658783,0.783761501312256,0.39861273765564,0.480238139629364,0.781331598758698,0.432465493679047,0.521998167037964,0.735181152820587,0.144298896193504,0.607931196689606,0.780767142772675,0.144221842288971,0.679853618144989,0.719026386737823,0.243716105818748,0.654371500015259,0.715821325778961,0.144298896193504,0.607931196689606,0.780767142772675,0.220579251646996,0.499068766832352,0.838018476963043,0.0976498126983643,0.48733714222908,0.867736518383026, +0.225230872631073,0.662219226360321,0.714658379554749,0.243716105818748,0.654371500015259,0.715821325778961,0.144221842288971,0.679853618144989,0.719026386737823,-0.0576219297945499,0.451233416795731,0.890543699264526,0.0976498126983643,0.48733714222908,0.867736518383026,0.058062955737114,0.440546184778214,0.895850241184235,0.117889232933521,0.434895277023315,0.892730712890625,0.136471122503281,0.432431310415268,0.891279220581055,0.18672102689743,0.452683329582214,0.87190192937851,0.058062955737114,0.440546184778214,0.895850241184235,0.0976498126983643,0.48733714222908,0.867736518383026,0.18672102689743,0.452683329582214,0.87190192937851,0.169707015156746,0.445357173681259,0.879122495651245,0.117889232933521,0.434895277023315,0.892730712890625,0.197286278009415,0.413040310144424,0.889087021350861,0.27244821190834,0.548548817634583,0.790484666824341,0.227156460285187,0.51408839225769,0.827111184597015,0.232763260602951,0.588428020477295,0.774321377277374,0.188188418745995,0.497414946556091,0.846855044364929,0.227156460285187,0.51408839225769,0.827111184597015,0.169707015156746,0.445357173681259,0.879122495651245,0.974407494068146,0.187283962965012,-0.124316610395908,0.958990097045898,0.18850465118885,-0.211669251322746,0.985434234142303,0.101908624172211,-0.136139273643494,0.994702577590942,0.0944706201553345,-0.0405207052826881,0.987292945384979,0.0297057870775461,0.15610945224762,0.9776611328125,0.208885103464127,0.0233585294336081,0.985434234142303,0.101908624172211,-0.136139273643494,0.994702577590942,0.0944706201553345,-0.0405207052826881,0.974407494068146,0.187283962965012,-0.124316610395908,0.987292945384979,0.0297057870775461,0.15610945224762,0.960306525230408,0.1750618070364,0.217174291610718,0.9776611328125,0.208885103464127,0.0233585294336081,0.868748426437378,0.36997053027153,0.329238295555115,0.932900190353394,0.212089672684669,0.29105868935585,0.938814342021942,0.150321558117867,0.309888601303101,0.938814342021942,0.150321558117867,0.309888601303101,0.965376675128937,0.0833953693509102,0.247169867157936, +0.885437726974487,0.323828220367432,0.33336940407753,0.930464804172516,0.293443977832794,0.219375893473625,0.960306525230408,0.1750618070364,0.217174291610718,0.936689078807831,0.183071106672287,0.298493593931198,0.898322880268097,0.347351878881454,0.269002944231033,0.930464804172516,0.293443977832794,0.219375893473625,0.936689078807831,0.183071106672287,0.298493593931198,0.936689078807831,0.183071106672287,0.298493593931198,0.932900190353394,0.212089672684669,0.29105868935585,0.898322880268097,0.347351878881454,0.269002944231033,0.803593575954437,-0.175947546958923,0.568576872348785,0.874637484550476,-0.00843804981559515,0.484703987836838,0.767368018627167,0.0612308159470558,0.638276636600494,0.684358239173889,-0.134467586874962,0.716639459133148,0.747281849384308,-0.3355972468853,0.573536515235901,0.707771122455597,-0.23979489505291,0.664498507976532,0.707771122455597,-0.23979489505291,0.664498507976532,0.803593575954437,-0.175947546958923,0.568576872348785,0.767368018627167,0.0612308159470558,0.638276636600494,0.986505746841431,0.0648204460740089,0.150347605347633,0.965376675128937,0.0833953693509102,0.247169867157936,0.981589198112488,-0.0260735396295786,0.189215436577797,0.965864896774292,0.0285297445952892,0.257470279932022,0.981589198112488,-0.0260735396295786,0.189215436577797,0.975221872329712,-0.0368401780724525,0.218140050768852,0.960049629211426,-0.0113026676699519,0.279601365327835,0.962467133998871,0.0860324651002884,0.257401198148727,0.965864896774292,0.0285297445952892,0.257470279932022,0.875024557113647,-0.038322176784277,0.482559084892273,0.770219743251801,-0.0738609433174133,0.633487164974213,0.752262353897095,-0.0984573289752007,0.651465535163879,0.902707815170288,0.0349471680819988,0.428832352161407,0.951614677906036,0.0880796611309052,0.294400036334991,0.875024557113647,-0.038322176784277,0.482559084892273,0.951614677906036,0.0880796611309052,0.294400036334991,0.962467133998871,0.0860324651002884,0.257401198148727,0.963762581348419,0.109904073178768,0.243069469928741,0.752262353897095,-0.0984573289752007,0.651465535163879, +0.770219743251801,-0.0738609433174133,0.633487164974213,0.662075996398926,-0.109614424407482,0.741377055644989,0.641130983829498,-0.0847693234682083,0.762735247612,0.662075996398926,-0.109614424407482,0.741377055644989,0.649166345596313,-0.0468475706875324,0.759202420711517,0.671932578086853,-0.0686439126729965,0.737424194812775,0.73396235704422,-0.109951831400394,0.67023104429245,0.826446890830994,-0.213757768273354,0.520857930183411,0.73396235704422,-0.109951831400394,0.67023104429245,0.641130983829498,-0.0847693234682083,0.762735247612,0.649166345596313,-0.0468475706875324,0.759202420711517,0.747281849384308,-0.3355972468853,0.573536515235901,0.769633650779724,-0.236891016364098,0.592913627624512,0.826446890830994,-0.213757768273354,0.520857930183411,0.802916944026947,0.174946323037148,0.569840312004089,0.82113641500473,0.119052171707153,0.558176755905151,0.754107475280762,0.169889241456985,0.634396910667419,0.79480242729187,0.14567656815052,0.589124143123627,0.82113641500473,0.119052171707153,0.558176755905151,0.828415513038635,0.102635234594345,0.550630211830139,0.872139513492584,-0.0223505962640047,0.48874643445015,0.874637484550476,-0.00843804981559515,0.484703987836838,0.832509696483612,-0.0924822688102722,0.546236753463745,0.824035048484802,0.0308896172791719,0.565695941448212,0.858859598636627,0.0479472056031227,0.509961843490601,0.872139513492584,-0.0223505962640047,0.48874643445015,0.795470833778381,0.146036699414253,0.58813202381134,0.828415513038635,0.102635234594345,0.550630211830139,0.858859598636627,0.0479472056031227,0.509961843490601,0.471994400024414,0.033768568187952,0.880954504013062,0.580881118774414,-0.0647295638918877,0.811410546302795,0.60913872718811,-0.00176774011924863,0.793061554431915,0.521645665168762,0.0429724305868149,0.852079093456268,0.457836419343948,0.0725595280528069,0.886070430278778,0.501951992511749,0.103734262287617,0.858651995658875,0.471994400024414,0.033768568187952,0.880954504013062,0.60913872718811,-0.00176774011924863,0.793061554431915,0.501951992511749,0.103734262287617,0.858651995658875, +0.558884382247925,0.054775808006525,0.827434480190277,0.60913872718811,-0.00176774011924863,0.793061554431915,0.607929229736328,-0.106905840337276,0.786761105060577,0.518883585929871,-0.0204521045088768,0.854600131511688,0.607929229736328,-0.106905840337276,0.786761105060577,0.492692589759827,-0.0889653638005257,0.865643739700317,0.459340006113052,0.21316422522068,0.862303733825684,0.550327777862549,0.0490552112460136,0.833506286144257,0.431151360273361,0.13631971180439,0.891922235488892,0.550327777862549,0.0490552112460136,0.833506286144257,0.568601846694946,-0.0268887002021074,0.822173178195953,0.579265534877777,-0.0274763144552708,0.814675569534302,0.579265534877777,-0.0274763144552708,0.814675569534302,0.582146525382996,-0.0874927863478661,0.808362722396851,0.520994246006012,-0.0639992654323578,0.851157426834106,0.312750518321991,0.284220963716507,0.906314194202423,0.174978792667389,0.302849978208542,0.936837315559387,0.28572940826416,0.354646921157837,0.890271961688995,0.459340006113052,0.21316422522068,0.862303733825684,0.431151360273361,0.13631971180439,0.891922235488892,0.312750518321991,0.284220963716507,0.906314194202423,0.582146525382996,-0.0874927863478661,0.808362722396851,0.60610020160675,-0.130868077278137,0.784548223018646,0.549812316894531,-0.137221708893776,0.823939621448517,0.60610020160675,-0.130868077278137,0.784548223018646,0.596776723861694,-0.191225692629814,0.779288232326508,0.549812316894531,-0.137221708893776,0.823939621448517,0.656501531600952,-0.191554874181747,0.729597389698029,0.596776723861694,-0.191225692629814,0.779288232326508,0.731092631816864,-0.259990870952606,0.63079959154129,0.769096314907074,-0.2781782746315,0.575419425964355,0.749265253543854,-0.259223103523254,0.609429895877838,0.731092631816864,-0.259990870952606,0.63079959154129,0.521645665168762,0.0429724305868149,0.852079093456268,0.58682769536972,-0.143707230687141,0.796857178211212,0.544406592845917,-0.0362543947994709,0.838037550449371,0.58682769536972,-0.143707230687141,0.796857178211212,0.552319169044495,-0.261921882629395,0.791416645050049, +0.690032243728638,-0.253109127283096,0.678078889846802,0.641210675239563,-0.309318035840988,0.702261388301849,0.769096314907074,-0.2781782746315,0.575419425964355,0.690032243728638,-0.253109127283096,0.678078889846802,0.368603497743607,0.359132200479507,0.857412040233612,0.181490451097488,0.370489358901978,0.910932898521423,0.015139976516366,0.279210060834885,0.960110604763031,0.174978792667389,0.302849978208542,0.936837315559387,0.000981803750619292,0.289591133594513,0.957149863243103,0.181490451097488,0.370489358901978,0.910932898521423,0.329360246658325,0.219844251871109,0.918253898620605,0.368603497743607,0.359132200479507,0.857412040233612,0.015139976516366,0.279210060834885,0.960110604763031,0.0379968546330929,0.171778365969658,0.984402418136597,0.124222956597805,0.224906533956528,0.96642929315567,0.117857046425343,0.193815857172012,0.97393274307251,0.329360246658325,0.219844251871109,0.918253898620605,0.015139976516366,0.279210060834885,0.960110604763031,0.0379968546330929,0.171778365969658,0.984402418136597,0.236594215035439,0.299412578344345,0.924324154853821,0.223291024565697,0.25478395819664,0.940864562988281,0.306971400976181,0.332905769348145,0.891595184803009,0.411513566970825,0.411558002233505,0.813189089298248,0.337111949920654,0.417125284671783,0.84401535987854,0.306971400976181,0.332905769348145,0.891595184803009,0.117857046425343,0.193815857172012,0.97393274307251,0.124222956597805,0.224906533956528,0.96642929315567,0.223291024565697,0.25478395819664,0.940864562988281,0.225230872631073,0.662219226360321,0.714658379554749,0.334287703037262,0.624943196773529,0.705476880073547,0.243716105818748,0.654371500015259,0.715821325778961,0.411513566970825,0.411558002233505,0.813189089298248,0.39861273765564,0.480238139629364,0.781331598758698,0.337111949920654,0.417125284671783,0.84401535987854,0.430302292108536,0.623027205467224,0.653205037117004,0.334287703037262,0.624943196773529,0.705476880073547,0.432465493679047,0.521998167037964,0.735181152820587,0.411513566970825,0.411558002233505,0.813189089298248, +0.432465493679047,0.521998167037964,0.735181152820587,0.39861273765564,0.480238139629364,0.781331598758698,0.204116061329842,0.583775222301483,0.785839021205902,0.144298896193504,0.607931196689606,0.780767142772675,0.243716105818748,0.654371500015259,0.715821325778961,0.220579251646996,0.499068766832352,0.838018476963043,0.144298896193504,0.607931196689606,0.780767142772675,0.204116061329842,0.583775222301483,0.785839021205902,0.220579251646996,0.499068766832352,0.838018476963043,0.18672102689743,0.452683329582214,0.87190192937851,0.0976498126983643,0.48733714222908,0.867736518383026,0.197286278009415,0.413040310144424,0.889087021350861,0.117889232933521,0.434895277023315,0.892730712890625,0.18672102689743,0.452683329582214,0.87190192937851,0.188188418745995,0.497414946556091,0.846855044364929,0.169707015156746,0.445357173681259,0.879122495651245,0.197286278009415,0.413040310144424,0.889087021350861,0.227156460285187,0.51408839225769,0.827111184597015,0.188188418745995,0.497414946556091,0.846855044364929,0.232763260602951,0.588428020477295,0.774321377277374,0.982881128787994,-0.133762493729591,0.126697093248367,0.987292945384979,0.0297057870775461,0.15610945224762,0.994702577590942,0.0944706201553345,-0.0405207052826881,0.998454749584198,-0.024724705144763,-0.0497662350535393,0.994702577590942,0.0944706201553345,-0.0405207052826881,0.985434234142303,0.101908624172211,-0.136139273643494,0.987292945384979,0.0297057870775461,0.15610945224762,0.938029110431671,-0.0775898098945618,0.337758600711823,0.960306525230408,0.1750618070364,0.217174291610718,0.966587483882904,-0.000442628108430654,0.256336390972137,0.938814342021942,0.150321558117867,0.309888601303101,0.932900190353394,0.212089672684669,0.29105868935585,0.938814342021942,0.150321558117867,0.309888601303101,0.968019425868988,-0.05674684420228,0.24437290430069,0.965376675128937,0.0833953693509102,0.247169867157936,0.960306525230408,0.1750618070364,0.217174291610718,0.937302470207214,0.0297885611653328,0.347241550683975,0.936689078807831,0.183071106672287,0.298493593931198, +0.936689078807831,0.183071106672287,0.298493593931198,0.938546121120453,0.0159810185432434,0.344783455133438,0.932900190353394,0.212089672684669,0.29105868935585,0.803593575954437,-0.175947546958923,0.568576872348785,0.832509696483612,-0.0924822688102722,0.546236753463745,0.874637484550476,-0.00843804981559515,0.484703987836838,0.707771122455597,-0.23979489505291,0.664498507976532,0.747281849384308,-0.3355972468853,0.573536515235901,0.629667520523071,-0.35471898317337,0.691153407096863,0.602237820625305,-0.244163662195206,0.760061621665955,0.803593575954437,-0.175947546958923,0.568576872348785,0.707771122455597,-0.23979489505291,0.664498507976532,0.981589198112488,-0.0260735396295786,0.189215436577797,0.965376675128937,0.0833953693509102,0.247169867157936,0.968019425868988,-0.05674684420228,0.24437290430069,0.975030839443207,-0.0356889069080353,0.21918286383152,0.975221872329712,-0.0368401780724525,0.218140050768852,0.981589198112488,-0.0260735396295786,0.189215436577797,0.960049629211426,-0.0113026676699519,0.279601365327835,0.965864896774292,0.0285297445952892,0.257470279932022,0.975221872329712,-0.0368401780724525,0.218140050768852,0.962467133998871,0.0860324651002884,0.257401198148727,0.960049629211426,-0.0113026676699519,0.279601365327835,0.95115715265274,-0.0151911908760667,0.308332860469818,0.816789925098419,0.117120966315269,0.564921855926514,0.770219743251801,-0.0738609433174133,0.633487164974213,0.875024557113647,-0.038322176784277,0.482559084892273,0.875024557113647,-0.038322176784277,0.482559084892273,0.951614677906036,0.0880796611309052,0.294400036334991,0.906465649604797,0.162954449653625,0.389571279287338,0.963762581348419,0.109904073178768,0.243069469928741,0.962467133998871,0.0860324651002884,0.257401198148727,0.95115715265274,-0.0151911908760667,0.308332860469818,0.963762581348419,0.109904073178768,0.243069469928741,0.906465649604797,0.162954449653625,0.389571279287338,0.951614677906036,0.0880796611309052,0.294400036334991,0.770219743251801,-0.0738609433174133,0.633487164974213,0.702869057655334,0.0537651628255844,0.70928430557251, +0.662075996398926,-0.109614424407482,0.741377055644989,0.649166345596313,-0.0468475706875324,0.759202420711517,0.662075996398926,-0.109614424407482,0.741377055644989,0.702869057655334,0.0537651628255844,0.70928430557251,0.826446890830994,-0.213757768273354,0.520857930183411,0.73396235704422,-0.109951831400394,0.67023104429245,0.88463819026947,-0.144546076655388,0.443307489156723,0.73396235704422,-0.109951831400394,0.67023104429245,0.649166345596313,-0.0468475706875324,0.759202420711517,0.823882460594177,-0.0770900696516037,0.561493217945099,0.769705951213837,-0.29580420255661,0.565731763839722,0.747281849384308,-0.3355972468853,0.573536515235901,0.826446890830994,-0.213757768273354,0.520857930183411,0.732336521148682,0.184203997254372,0.65555465221405,0.754107475280762,0.169889241456985,0.634396910667419,0.82113641500473,0.119052171707153,0.558176755905151,0.802916944026947,0.174946323037148,0.569840312004089,0.754107475280762,0.169889241456985,0.634396910667419,0.722396850585938,0.194176867604256,0.663654983043671,0.79480242729187,0.14567656815052,0.589124143123627,0.732336521148682,0.184203997254372,0.65555465221405,0.82113641500473,0.119052171707153,0.558176755905151,0.79480242729187,0.14567656815052,0.589124143123627,0.828415513038635,0.102635234594345,0.550630211830139,0.709631741046906,0.225022152066231,0.667673289775848,0.872139513492584,-0.0223505962640047,0.48874643445015,0.832509696483612,-0.0924822688102722,0.546236753463745,0.824035048484802,0.0308896172791719,0.565695941448212,0.824035048484802,0.0308896172791719,0.565695941448212,0.795470833778381,0.146036699414253,0.58813202381134,0.858859598636627,0.0479472056031227,0.509961843490601,0.795470833778381,0.146036699414253,0.58813202381134,0.709631741046906,0.225022152066231,0.667673289775848,0.828415513038635,0.102635234594345,0.550630211830139,0.521645665168762,0.0429724305868149,0.852079093456268,0.501951992511749,0.103734262287617,0.858651995658875,0.515254139900208,0.0938493087887764,0.851883411407471,0.558884382247925,0.054775808006525,0.827434480190277, +0.501951992511749,0.103734262287617,0.858651995658875,0.60913872718811,-0.00176774011924863,0.793061554431915,0.518883585929871,-0.0204521045088768,0.854600131511688,0.558884382247925,0.054775808006525,0.827434480190277,0.607929229736328,-0.106905840337276,0.786761105060577,0.431151360273361,0.13631971180439,0.891922235488892,0.550327777862549,0.0490552112460136,0.833506286144257,0.468710452318192,0.00718054501339793,0.883322656154633,0.520994246006012,-0.0639992654323578,0.851157426834106,0.550327777862549,0.0490552112460136,0.833506286144257,0.579265534877777,-0.0274763144552708,0.814675569534302,0.549812316894531,-0.137221708893776,0.823939621448517,0.520994246006012,-0.0639992654323578,0.851157426834106,0.582146525382996,-0.0874927863478661,0.808362722396851,0.358386516571045,0.232702568173409,0.904106438159943,0.174978792667389,0.302849978208542,0.936837315559387,0.312750518321991,0.284220963716507,0.906314194202423,0.431151360273361,0.13631971180439,0.891922235488892,0.411791056394577,0.228082597255707,0.882273375988007,0.312750518321991,0.284220963716507,0.906314194202423,0.536318004131317,-0.137334227561951,0.83276778459549,0.549812316894531,-0.137221708893776,0.823939621448517,0.596776723861694,-0.191225692629814,0.779288232326508,0.656501531600952,-0.191554874181747,0.729597389698029,0.536318004131317,-0.137334227561951,0.83276778459549,0.596776723861694,-0.191225692629814,0.779288232326508,0.656501531600952,-0.191554874181747,0.729597389698029,0.731092631816864,-0.259990870952606,0.63079959154129,0.746418118476868,-0.212770983576775,0.630546033382416,0.769096314907074,-0.2781782746315,0.575419425964355,0.641210675239563,-0.309318035840988,0.702261388301849,0.749265253543854,-0.259223103523254,0.609429895877838,0.731092631816864,-0.259990870952606,0.63079959154129,0.749265253543854,-0.259223103523254,0.609429895877838,0.746418118476868,-0.212770983576775,0.630546033382416,0.581170201301575,-0.0781069323420525,0.810024917125702,0.58682769536972,-0.143707230687141,0.796857178211212,0.521645665168762,0.0429724305868149,0.852079093456268, +0.552319169044495,-0.261921882629395,0.791416645050049,0.58682769536972,-0.143707230687141,0.796857178211212,0.581170201301575,-0.0781069323420525,0.810024917125702,0.641210675239563,-0.309318035840988,0.702261388301849,0.690032243728638,-0.253109127283096,0.678078889846802,0.552319169044495,-0.261921882629395,0.791416645050049,0.000981803750619292,0.289591133594513,0.957149863243103,0.015139976516366,0.279210060834885,0.960110604763031,0.181490451097488,0.370489358901978,0.910932898521423,0.174978792667389,0.302849978208542,0.936837315559387,0.164979547262192,0.22116956114769,0.961179316043854,0.000981803750619292,0.289591133594513,0.957149863243103,0.0379968546330929,0.171778365969658,0.984402418136597,0.0238498691469431,0.224427372217178,0.974198758602142,0.124222956597805,0.224906533956528,0.96642929315567,0.0238498691469431,0.224427372217178,0.974198758602142,0.0379968546330929,0.171778365969658,0.984402418136597,0.015139976516366,0.279210060834885,0.960110604763031,0.356815040111542,0.30386483669281,0.883373737335205,0.306971400976181,0.332905769348145,0.891595184803009,0.223291024565697,0.25478395819664,0.940864562988281,0.356815040111542,0.30386483669281,0.883373737335205,0.411513566970825,0.411558002233505,0.813189089298248,0.306971400976181,0.332905769348145,0.891595184803009,0.356815040111542,0.30386483669281,0.883373737335205,0.223291024565697,0.25478395819664,0.940864562988281,0.124222956597805,0.224906533956528,0.96642929315567,0.369543462991714,0.598122179508209,0.711116969585419,0.243716105818748,0.654371500015259,0.715821325778961,0.334287703037262,0.624943196773529,0.705476880073547,0.334287703037262,0.624943196773529,0.705476880073547,0.430302292108536,0.623027205467224,0.653205037117004,0.369543462991714,0.598122179508209,0.711116969585419,0.432465493679047,0.521998167037964,0.735181152820587,0.509121060371399,0.60287082195282,0.614281833171844,0.430302292108536,0.623027205467224,0.653205037117004,0.411513566970825,0.411558002233505,0.813189089298248,0.465382248163223,0.413421213626862,0.782625138759613, +0.432465493679047,0.521998167037964,0.735181152820587,0.204116061329842,0.583775222301483,0.785839021205902,0.243716105818748,0.654371500015259,0.715821325778961,0.219282746315002,0.560246348381042,0.798773407936096,0.204116061329842,0.583775222301483,0.785839021205902,0.219282746315002,0.560246348381042,0.798773407936096,0.220579251646996,0.499068766832352,0.838018476963043,0.220579251646996,0.499068766832352,0.838018476963043,0.248536974191666,0.436931818723679,0.86447662115097,0.18672102689743,0.452683329582214,0.87190192937851,0.197286278009415,0.413040310144424,0.889087021350861,0.18672102689743,0.452683329582214,0.87190192937851,0.248536974191666,0.436931818723679,0.86447662115097,0.197286278009415,0.413040310144424,0.889087021350861,0.250383317470551,0.412055850028992,0.876081109046936,0.188188418745995,0.497414946556091,0.846855044364929,0.982881128787994,-0.133762493729591,0.126697093248367,0.892681121826172,-0.248533919453621,0.375967025756836,0.987292945384979,0.0297057870775461,0.15610945224762,0.998454749584198,-0.024724705144763,-0.0497662350535393,0.982881128787994,-0.133762493729591,0.126697093248367,0.994702577590942,0.0944706201553345,-0.0405207052826881,0.938029110431671,-0.0775898098945618,0.337758600711823,0.987292945384979,0.0297057870775461,0.15610945224762,0.892681121826172,-0.248533919453621,0.375967025756836,0.938029110431671,-0.0775898098945618,0.337758600711823,0.937302470207214,0.0297885611653328,0.347241550683975,0.960306525230408,0.1750618070364,0.217174291610718,0.966587483882904,-0.000442628108430654,0.256336390972137,0.968019425868988,-0.05674684420228,0.24437290430069,0.938814342021942,0.150321558117867,0.309888601303101,0.966587483882904,-0.000442628108430654,0.256336390972137,0.932900190353394,0.212089672684669,0.29105868935585,0.938546121120453,0.0159810185432434,0.344783455133438,0.937302470207214,0.0297885611653328,0.347241550683975,0.916891396045685,-0.0399795956909657,0.397129267454147,0.936689078807831,0.183071106672287,0.298493593931198,0.916891396045685,-0.0399795956909657,0.397129267454147, +0.938546121120453,0.0159810185432434,0.344783455133438,0.936689078807831,0.183071106672287,0.298493593931198,0.803593575954437,-0.175947546958923,0.568576872348785,0.709941744804382,-0.150845974683762,0.687915742397308,0.832509696483612,-0.0924822688102722,0.546236753463745,0.769705951213837,-0.29580420255661,0.565731763839722,0.629667520523071,-0.35471898317337,0.691153407096863,0.747281849384308,-0.3355972468853,0.573536515235901,0.602237820625305,-0.244163662195206,0.760061621665955,0.707771122455597,-0.23979489505291,0.664498507976532,0.629667520523071,-0.35471898317337,0.691153407096863,0.803593575954437,-0.175947546958923,0.568576872348785,0.602237820625305,-0.244163662195206,0.760061621665955,0.709941744804382,-0.150845974683762,0.687915742397308,0.975030839443207,-0.0356889069080353,0.21918286383152,0.981589198112488,-0.0260735396295786,0.189215436577797,0.968019425868988,-0.05674684420228,0.24437290430069,0.975221872329712,-0.0368401780724525,0.218140050768852,0.975030839443207,-0.0356889069080353,0.21918286383152,0.974845945835114,0.0948633328080177,0.201683670282364,0.974141240119934,0.0724797546863556,0.21399861574173,0.960049629211426,-0.0113026676699519,0.279601365327835,0.975221872329712,-0.0368401780724525,0.218140050768852,0.95115715265274,-0.0151911908760667,0.308332860469818,0.960049629211426,-0.0113026676699519,0.279601365327835,0.943131864070892,0.0538982674479485,0.328020185232162,0.816789925098419,0.117120966315269,0.564921855926514,0.702869057655334,0.0537651628255844,0.70928430557251,0.770219743251801,-0.0738609433174133,0.633487164974213,0.816789925098419,0.117120966315269,0.564921855926514,0.875024557113647,-0.038322176784277,0.482559084892273,0.906465649604797,0.162954449653625,0.389571279287338,0.95115715265274,-0.0151911908760667,0.308332860469818,0.94171154499054,0.0926693305373192,0.323406279087067,0.963762581348419,0.109904073178768,0.243069469928741,0.94171154499054,0.0926693305373192,0.323406279087067,0.906465649604797,0.162954449653625,0.389571279287338,0.963762581348419,0.109904073178768,0.243069469928741, +0.649166345596313,-0.0468475706875324,0.759202420711517,0.702869057655334,0.0537651628255844,0.70928430557251,0.73927891254425,0.0698882788419724,0.669762849807739,0.73396235704422,-0.109951831400394,0.67023104429245,0.823882460594177,-0.0770900696516037,0.561493217945099,0.88463819026947,-0.144546076655388,0.443307489156723,0.826446890830994,-0.213757768273354,0.520857930183411,0.88463819026947,-0.144546076655388,0.443307489156723,0.886529922485352,-0.170328751206398,0.430177450180054,0.649166345596313,-0.0468475706875324,0.759202420711517,0.73927891254425,0.0698882788419724,0.669762849807739,0.823882460594177,-0.0770900696516037,0.561493217945099,0.826446890830994,-0.213757768273354,0.520857930183411,0.886529922485352,-0.170328751206398,0.430177450180054,0.769705951213837,-0.29580420255661,0.565731763839722,0.732336521148682,0.184203997254372,0.65555465221405,0.650254905223846,0.25131830573082,0.716943085193634,0.754107475280762,0.169889241456985,0.634396910667419,0.650254905223846,0.25131830573082,0.716943085193634,0.722396850585938,0.194176867604256,0.663654983043671,0.754107475280762,0.169889241456985,0.634396910667419,0.732336521148682,0.184203997254372,0.65555465221405,0.79480242729187,0.14567656815052,0.589124143123627,0.709631741046906,0.225022152066231,0.667673289775848,0.824035048484802,0.0308896172791719,0.565695941448212,0.832509696483612,-0.0924822688102722,0.546236753463745,0.695835411548615,0.00325415772385895,0.718193888664246,0.795470833778381,0.146036699414253,0.58813202381134,0.824035048484802,0.0308896172791719,0.565695941448212,0.790246546268463,0.175652533769608,0.587074458599091,0.795470833778381,0.146036699414253,0.58813202381134,0.663332164287567,0.283455669879913,0.692562758922577,0.709631741046906,0.225022152066231,0.667673289775848,0.558884382247925,0.054775808006525,0.827434480190277,0.515254139900208,0.0938493087887764,0.851883411407471,0.501951992511749,0.103734262287617,0.858651995658875,0.521645665168762,0.0429724305868149,0.852079093456268,0.515254139900208,0.0938493087887764,0.851883411407471, +0.581170201301575,-0.0781069323420525,0.810024917125702,0.518883585929871,-0.0204521045088768,0.854600131511688,0.474894255399704,0.0376962162554264,0.879235088825226,0.558884382247925,0.054775808006525,0.827434480190277,0.550327777862549,0.0490552112460136,0.833506286144257,0.520994246006012,-0.0639992654323578,0.851157426834106,0.468710452318192,0.00718054501339793,0.883322656154633,0.431151360273361,0.13631971180439,0.891922235488892,0.468710452318192,0.00718054501339793,0.883322656154633,0.445376068353653,0.103299781680107,0.889364361763,0.536318004131317,-0.137334227561951,0.83276778459549,0.520994246006012,-0.0639992654323578,0.851157426834106,0.549812316894531,-0.137221708893776,0.823939621448517,0.358386516571045,0.232702568173409,0.904106438159943,0.164979547262192,0.22116956114769,0.961179316043854,0.174978792667389,0.302849978208542,0.936837315559387,0.358386516571045,0.232702568173409,0.904106438159943,0.312750518321991,0.284220963716507,0.906314194202423,0.411791056394577,0.228082597255707,0.882273375988007,0.445376068353653,0.103299781680107,0.889364361763,0.411791056394577,0.228082597255707,0.882273375988007,0.431151360273361,0.13631971180439,0.891922235488892,0.656501531600952,-0.191554874181747,0.729597389698029,0.671780586242676,-0.0598374903202057,0.738329291343689,0.536318004131317,-0.137334227561951,0.83276778459549,0.734341084957123,-0.127991825342178,0.666604161262512,0.656501531600952,-0.191554874181747,0.729597389698029,0.746418118476868,-0.212770983576775,0.630546033382416,0.749265253543854,-0.259223103523254,0.609429895877838,0.641210675239563,-0.309318035840988,0.702261388301849,0.624528467655182,-0.281293213367462,0.728586494922638,0.749265253543854,-0.259223103523254,0.609429895877838,0.734341084957123,-0.127991825342178,0.666604161262512,0.746418118476868,-0.212770983576775,0.630546033382416,0.552319169044495,-0.261921882629395,0.791416645050049,0.581170201301575,-0.0781069323420525,0.810024917125702,0.52007794380188,-0.269670933485031,0.810429751873016,0.641210675239563,-0.309318035840988,0.702261388301849, +0.552319169044495,-0.261921882629395,0.791416645050049,0.491547673940659,-0.315078377723694,0.811853647232056,0.000981803750619292,0.289591133594513,0.957149863243103,0.0238498691469431,0.224427372217178,0.974198758602142,0.015139976516366,0.279210060834885,0.960110604763031,0.164979547262192,0.22116956114769,0.961179316043854,0.0238498691469431,0.224427372217178,0.974198758602142,0.000981803750619292,0.289591133594513,0.957149863243103,0.0238498691469431,0.224427372217178,0.974198758602142,0.291587263345718,0.235635176301003,0.927066802978516,0.124222956597805,0.224906533956528,0.96642929315567,0.411513566970825,0.411558002233505,0.813189089298248,0.356815040111542,0.30386483669281,0.883373737335205,0.465382248163223,0.413421213626862,0.782625138759613,0.291587263345718,0.235635176301003,0.927066802978516,0.356815040111542,0.30386483669281,0.883373737335205,0.124222956597805,0.224906533956528,0.96642929315567,0.219282746315002,0.560246348381042,0.798773407936096,0.243716105818748,0.654371500015259,0.715821325778961,0.369543462991714,0.598122179508209,0.711116969585419,0.369543462991714,0.598122179508209,0.711116969585419,0.430302292108536,0.623027205467224,0.653205037117004,0.508907318115234,0.631585597991943,0.584904074668884,0.527202963829041,0.497838318347931,0.688631892204285,0.509121060371399,0.60287082195282,0.614281833171844,0.432465493679047,0.521998167037964,0.735181152820587,0.508907318115234,0.631585597991943,0.584904074668884,0.430302292108536,0.623027205467224,0.653205037117004,0.509121060371399,0.60287082195282,0.614281833171844,0.432465493679047,0.521998167037964,0.735181152820587,0.465382248163223,0.413421213626862,0.782625138759613,0.512398421764374,0.447214901447296,0.733107447624207,0.219282746315002,0.560246348381042,0.798773407936096,0.238133206963539,0.497059434652328,0.834400594234467,0.220579251646996,0.499068766832352,0.838018476963043,0.220579251646996,0.499068766832352,0.838018476963043,0.222265154123306,0.485828131437302,0.845321893692017,0.248536974191666,0.436931818723679,0.86447662115097, +0.248536974191666,0.436931818723679,0.86447662115097,0.273504644632339,0.420893728733063,0.864895105361938,0.197286278009415,0.413040310144424,0.889087021350861,0.273504644632339,0.420893728733063,0.864895105361938,0.250383317470551,0.412055850028992,0.876081109046936,0.197286278009415,0.413040310144424,0.889087021350861,0.892681121826172,-0.248533919453621,0.375967025756836,0.982881128787994,-0.133762493729591,0.126697093248367,0.839141428470612,-0.403505027294159,0.36472624540329,0.982881128787994,-0.133762493729591,0.126697093248367,0.998454749584198,-0.024724705144763,-0.0497662350535393,0.945594012737274,-0.305946677923203,0.110672660171986,0.800066232681274,-0.298927366733551,0.520131170749664,0.938029110431671,-0.0775898098945618,0.337758600711823,0.892681121826172,-0.248533919453621,0.375967025756836,0.938029110431671,-0.0775898098945618,0.337758600711823,0.86673241853714,-0.173378840088844,0.467669308185577,0.937302470207214,0.0297885611653328,0.347241550683975,0.973866879940033,-0.0113480426371098,0.226835131645203,0.968019425868988,-0.05674684420228,0.24437290430069,0.966587483882904,-0.000442628108430654,0.256336390972137,0.966587483882904,-0.000442628108430654,0.256336390972137,0.938546121120453,0.0159810185432434,0.344783455133438,0.944404542446136,0.0111262165009975,0.328596919775009,0.86673241853714,-0.173378840088844,0.467669308185577,0.916891396045685,-0.0399795956909657,0.397129267454147,0.937302470207214,0.0297885611653328,0.347241550683975,0.916891396045685,-0.0399795956909657,0.397129267454147,0.854289293289185,-0.0948177129030228,0.51107656955719,0.938546121120453,0.0159810185432434,0.344783455133438,0.695835411548615,0.00325415772385895,0.718193888664246,0.832509696483612,-0.0924822688102722,0.546236753463745,0.709941744804382,-0.150845974683762,0.687915742397308,0.769705951213837,-0.29580420255661,0.565731763839722,0.617124438285828,-0.263611048460007,0.741394937038422,0.629667520523071,-0.35471898317337,0.691153407096863,0.617124438285828,-0.263611048460007,0.741394937038422,0.602237820625305,-0.244163662195206,0.760061621665955, +0.629667520523071,-0.35471898317337,0.691153407096863,0.709941744804382,-0.150845974683762,0.687915742397308,0.602237820625305,-0.244163662195206,0.760061621665955,0.580678284168243,-0.0906465202569962,0.809070944786072,0.975030839443207,-0.0356889069080353,0.21918286383152,0.968019425868988,-0.05674684420228,0.24437290430069,0.973866879940033,-0.0113480426371098,0.226835131645203,0.974845945835114,0.0948633328080177,0.201683670282364,0.975030839443207,-0.0356889069080353,0.21918286383152,0.973518133163452,0.121866419911385,0.193418949842453,0.974141240119934,0.0724797546863556,0.21399861574173,0.975221872329712,-0.0368401780724525,0.218140050768852,0.974845945835114,0.0948633328080177,0.201683670282364,0.960440993309021,0.200160399079323,0.193619653582573,0.960049629211426,-0.0113026676699519,0.279601365327835,0.974141240119934,0.0724797546863556,0.21399861574173,0.943131864070892,0.0538982674479485,0.328020185232162,0.960049629211426,-0.0113026676699519,0.279601365327835,0.960440993309021,0.200160399079323,0.193619653582573,0.95115715265274,-0.0151911908760667,0.308332860469818,0.943131864070892,0.0538982674479485,0.328020185232162,0.907122075557709,0.00628320639953017,0.420820683240891,0.816789925098419,0.117120966315269,0.564921855926514,0.804334163665771,0.0936460569500923,0.586751103401184,0.702869057655334,0.0537651628255844,0.70928430557251,0.816789925098419,0.117120966315269,0.564921855926514,0.906465649604797,0.162954449653625,0.389571279287338,0.842305541038513,0.169672608375549,0.51159793138504,0.95115715265274,-0.0151911908760667,0.308332860469818,0.907122075557709,0.00628320639953017,0.420820683240891,0.94171154499054,0.0926693305373192,0.323406279087067,0.94171154499054,0.0926693305373192,0.323406279087067,0.883191645145416,0.129262164235115,0.450847774744034,0.906465649604797,0.162954449653625,0.389571279287338,0.702869057655334,0.0537651628255844,0.70928430557251,0.804334163665771,0.0936460569500923,0.586751103401184,0.73927891254425,0.0698882788419724,0.669762849807739,0.88463819026947,-0.144546076655388,0.443307489156723, +0.823882460594177,-0.0770900696516037,0.561493217945099,0.856944441795349,-0.074417419731617,0.510007917881012,0.886529922485352,-0.170328751206398,0.430177450180054,0.88463819026947,-0.144546076655388,0.443307489156723,0.856944441795349,-0.074417419731617,0.510007917881012,0.83301842212677,-0.027086528018117,0.552581667900085,0.823882460594177,-0.0770900696516037,0.561493217945099,0.73927891254425,0.0698882788419724,0.669762849807739,0.769705951213837,-0.29580420255661,0.565731763839722,0.886529922485352,-0.170328751206398,0.430177450180054,0.743534088134766,-0.140117332339287,0.653853178024292,0.650254905223846,0.25131830573082,0.716943085193634,0.732336521148682,0.184203997254372,0.65555465221405,0.600937366485596,0.319480210542679,0.732670783996582,0.650254905223846,0.25131830573082,0.716943085193634,0.621749222278595,0.247022345662117,0.743241369724274,0.722396850585938,0.194176867604256,0.663654983043671,0.732336521148682,0.184203997254372,0.65555465221405,0.709631741046906,0.225022152066231,0.667673289775848,0.600937366485596,0.319480210542679,0.732670783996582,0.695835411548615,0.00325415772385895,0.718193888664246,0.759991466999054,0.09315025806427,0.643223106861115,0.824035048484802,0.0308896172791719,0.565695941448212,0.824035048484802,0.0308896172791719,0.565695941448212,0.759991466999054,0.09315025806427,0.643223106861115,0.790246546268463,0.175652533769608,0.587074458599091,0.725631952285767,0.253552436828613,0.639663398265839,0.795470833778381,0.146036699414253,0.58813202381134,0.790246546268463,0.175652533769608,0.587074458599091,0.663332164287567,0.283455669879913,0.692562758922577,0.795470833778381,0.146036699414253,0.58813202381134,0.725631952285767,0.253552436828613,0.639663398265839,0.49820551276207,0.420292675495148,0.758383274078369,0.709631741046906,0.225022152066231,0.667673289775848,0.663332164287567,0.283455669879913,0.692562758922577,0.515254139900208,0.0938493087887764,0.851883411407471,0.558884382247925,0.054775808006525,0.827434480190277,0.474894255399704,0.0376962162554264,0.879235088825226, +0.515254139900208,0.0938493087887764,0.851883411407471,0.534378051757813,-0.0746149122714996,0.841945707798004,0.581170201301575,-0.0781069323420525,0.810024917125702,0.474894255399704,0.0376962162554264,0.879235088825226,0.518883585929871,-0.0204521045088768,0.854600131511688,0.496804565191269,0.00290034804493189,0.867857575416565,0.468710452318192,0.00718054501339793,0.883322656154633,0.520994246006012,-0.0639992654323578,0.851157426834106,0.526188313961029,-0.0435833223164082,0.849250376224518,0.468710452318192,0.00718054501339793,0.883322656154633,0.503530859947205,0.0345612578094006,0.863285601139069,0.445376068353653,0.103299781680107,0.889364361763,0.520994246006012,-0.0639992654323578,0.851157426834106,0.536318004131317,-0.137334227561951,0.83276778459549,0.526188313961029,-0.0435833223164082,0.849250376224518,0.358386516571045,0.232702568173409,0.904106438159943,0.356440633535385,0.127176865935326,0.92562198638916,0.164979547262192,0.22116956114769,0.961179316043854,0.51749575138092,0.2262874096632,0.825222373008728,0.358386516571045,0.232702568173409,0.904106438159943,0.411791056394577,0.228082597255707,0.882273375988007,0.557763695716858,0.163732454180717,0.813689887523651,0.411791056394577,0.228082597255707,0.882273375988007,0.445376068353653,0.103299781680107,0.889364361763,0.656501531600952,-0.191554874181747,0.729597389698029,0.734341084957123,-0.127991825342178,0.666604161262512,0.671780586242676,-0.0598374903202057,0.738329291343689,0.671780586242676,-0.0598374903202057,0.738329291343689,0.526188313961029,-0.0435833223164082,0.849250376224518,0.536318004131317,-0.137334227561951,0.83276778459549,0.641210675239563,-0.309318035840988,0.702261388301849,0.491547673940659,-0.315078377723694,0.811853647232056,0.624528467655182,-0.281293213367462,0.728586494922638,0.657171368598938,-0.130419224500656,0.742372155189514,0.749265253543854,-0.259223103523254,0.609429895877838,0.624528467655182,-0.281293213367462,0.728586494922638,0.657171368598938,-0.130419224500656,0.742372155189514,0.734341084957123,-0.127991825342178,0.666604161262512, +0.749265253543854,-0.259223103523254,0.609429895877838,0.534378051757813,-0.0746149122714996,0.841945707798004,0.52007794380188,-0.269670933485031,0.810429751873016,0.581170201301575,-0.0781069323420525,0.810024917125702,0.491547673940659,-0.315078377723694,0.811853647232056,0.552319169044495,-0.261921882629395,0.791416645050049,0.52007794380188,-0.269670933485031,0.810429751873016,0.164979547262192,0.22116956114769,0.961179316043854,0.2342798858881,0.188441604375839,0.953730881214142,0.0238498691469431,0.224427372217178,0.974198758602142,0.2342798858881,0.188441604375839,0.953730881214142,0.291587263345718,0.235635176301003,0.927066802978516,0.0238498691469431,0.224427372217178,0.974198758602142,0.465301245450974,0.341113269329071,0.816784143447876,0.465382248163223,0.413421213626862,0.782625138759613,0.356815040111542,0.30386483669281,0.883373737335205,0.291587263345718,0.235635176301003,0.927066802978516,0.437559694051743,0.276520311832428,0.855615496635437,0.356815040111542,0.30386483669281,0.883373737335205,0.369543462991714,0.598122179508209,0.711116969585419,0.238133206963539,0.497059434652328,0.834400594234467,0.219282746315002,0.560246348381042,0.798773407936096,0.369543462991714,0.598122179508209,0.711116969585419,0.508907318115234,0.631585597991943,0.584904074668884,0.402880400419235,0.46028271317482,0.791092336177826,0.529886245727539,0.623711705207825,0.574633836746216,0.509121060371399,0.60287082195282,0.614281833171844,0.527202963829041,0.497838318347931,0.688631892204285,0.432465493679047,0.521998167037964,0.735181152820587,0.512398421764374,0.447214901447296,0.733107447624207,0.527202963829041,0.497838318347931,0.688631892204285,0.529886245727539,0.623711705207825,0.574633836746216,0.508907318115234,0.631585597991943,0.584904074668884,0.509121060371399,0.60287082195282,0.614281833171844,0.546139359474182,0.397972226142883,0.737122595310211,0.512398421764374,0.447214901447296,0.733107447624207,0.465382248163223,0.413421213626862,0.782625138759613,0.220579251646996,0.499068766832352,0.838018476963043, +0.238133206963539,0.497059434652328,0.834400594234467,0.222265154123306,0.485828131437302,0.845321893692017,0.250494122505188,0.514607131481171,0.820019543170929,0.248536974191666,0.436931818723679,0.86447662115097,0.222265154123306,0.485828131437302,0.845321893692017,0.248536974191666,0.436931818723679,0.86447662115097,0.250494122505188,0.514607131481171,0.820019543170929,0.273504644632339,0.420893728733063,0.864895105361938,0.945594012737274,-0.305946677923203,0.110672660171986,0.839141428470612,-0.403505027294159,0.36472624540329,0.982881128787994,-0.133762493729591,0.126697093248367,0.839141428470612,-0.403505027294159,0.36472624540329,0.74592912197113,-0.392771452665329,0.537885010242462,0.892681121826172,-0.248533919453621,0.375967025756836,0.938029110431671,-0.0775898098945618,0.337758600711823,0.800066232681274,-0.298927366733551,0.520131170749664,0.86673241853714,-0.173378840088844,0.467669308185577,0.800066232681274,-0.298927366733551,0.520131170749664,0.892681121826172,-0.248533919453621,0.375967025756836,0.74592912197113,-0.392771452665329,0.537885010242462,0.944404542446136,0.0111262165009975,0.328596919775009,0.973866879940033,-0.0113480426371098,0.226835131645203,0.966587483882904,-0.000442628108430654,0.256336390972137,0.944404542446136,0.0111262165009975,0.328596919775009,0.938546121120453,0.0159810185432434,0.344783455133438,0.854289293289185,-0.0948177129030228,0.51107656955719,0.86673241853714,-0.173378840088844,0.467669308185577,0.854289293289185,-0.0948177129030228,0.51107656955719,0.916891396045685,-0.0399795956909657,0.397129267454147,0.695835411548615,0.00325415772385895,0.718193888664246,0.709941744804382,-0.150845974683762,0.687915742397308,0.580678284168243,-0.0906465202569962,0.809070944786072,0.617124438285828,-0.263611048460007,0.741394937038422,0.769705951213837,-0.29580420255661,0.565731763839722,0.743534088134766,-0.140117332339287,0.653853178024292,0.602237820625305,-0.244163662195206,0.760061621665955,0.617124438285828,-0.263611048460007,0.741394937038422,0.539119720458984,-0.141406342387199,0.830273449420929, +0.580678284168243,-0.0906465202569962,0.809070944786072,0.602237820625305,-0.244163662195206,0.760061621665955,0.539119720458984,-0.141406342387199,0.830273449420929,0.975030839443207,-0.0356889069080353,0.21918286383152,0.973866879940033,-0.0113480426371098,0.226835131645203,0.973518133163452,0.121866419911385,0.193418949842453,0.974845945835114,0.0948633328080177,0.201683670282364,0.973518133163452,0.121866419911385,0.193418949842453,0.953631281852722,0.250715434551239,0.166520327329636,0.974141240119934,0.0724797546863556,0.21399861574173,0.974845945835114,0.0948633328080177,0.201683670282364,0.945023953914642,0.286252170801163,0.158079355955124,0.960440993309021,0.200160399079323,0.193619653582573,0.974141240119934,0.0724797546863556,0.21399861574173,0.945023953914642,0.286252170801163,0.158079355955124,0.960440993309021,0.200160399079323,0.193619653582573,0.903520405292511,0.328956663608551,0.274660229682922,0.943131864070892,0.0538982674479485,0.328020185232162,0.943131864070892,0.0538982674479485,0.328020185232162,0.89113187789917,0.158469930291176,0.425171822309494,0.907122075557709,0.00628320639953017,0.420820683240891,0.816789925098419,0.117120966315269,0.564921855926514,0.842305541038513,0.169672608375549,0.51159793138504,0.804334163665771,0.0936460569500923,0.586751103401184,0.883191645145416,0.129262164235115,0.450847774744034,0.842305541038513,0.169672608375549,0.51159793138504,0.906465649604797,0.162954449653625,0.389571279287338,0.94171154499054,0.0926693305373192,0.323406279087067,0.907122075557709,0.00628320639953017,0.420820683240891,0.883191645145416,0.129262164235115,0.450847774744034,0.83301842212677,-0.027086528018117,0.552581667900085,0.73927891254425,0.0698882788419724,0.669762849807739,0.804334163665771,0.0936460569500923,0.586751103401184,0.851408421993256,0.030738839879632,0.523601591587067,0.856944441795349,-0.074417419731617,0.510007917881012,0.823882460594177,-0.0770900696516037,0.561493217945099,0.886529922485352,-0.170328751206398,0.430177450180054,0.856944441795349,-0.074417419731617,0.510007917881012, +0.743534088134766,-0.140117332339287,0.653853178024292,0.83301842212677,-0.027086528018117,0.552581667900085,0.851408421993256,0.030738839879632,0.523601591587067,0.823882460594177,-0.0770900696516037,0.561493217945099,0.530267596244812,0.342416167259216,0.775607645511627,0.650254905223846,0.25131830573082,0.716943085193634,0.600937366485596,0.319480210542679,0.732670783996582,0.574234306812286,0.285582840442657,0.767266154289246,0.621749222278595,0.247022345662117,0.743241369724274,0.650254905223846,0.25131830573082,0.716943085193634,0.600937366485596,0.319480210542679,0.732670783996582,0.709631741046906,0.225022152066231,0.667673289775848,0.49820551276207,0.420292675495148,0.758383274078369,0.723302900791168,0.128993943333626,0.678375482559204,0.759991466999054,0.09315025806427,0.643223106861115,0.695835411548615,0.00325415772385895,0.718193888664246,0.759991466999054,0.09315025806427,0.643223106861115,0.74396288394928,0.206619799137115,0.6354740858078,0.790246546268463,0.175652533769608,0.587074458599091,0.725631952285767,0.253552436828613,0.639663398265839,0.790246546268463,0.175652533769608,0.587074458599091,0.682872295379639,0.311440587043762,0.660825252532959,0.663332164287567,0.283455669879913,0.692562758922577,0.725631952285767,0.253552436828613,0.639663398265839,0.587858378887177,0.388188928365707,0.709740579128265,0.49820551276207,0.420292675495148,0.758383274078369,0.663332164287567,0.283455669879913,0.692562758922577,0.587858378887177,0.388188928365707,0.709740579128265,0.445798575878143,-0.0136420130729675,0.895029246807098,0.515254139900208,0.0938493087887764,0.851883411407471,0.474894255399704,0.0376962162554264,0.879235088825226,0.445798575878143,-0.0136420130729675,0.895029246807098,0.534378051757813,-0.0746149122714996,0.841945707798004,0.515254139900208,0.0938493087887764,0.851883411407471,0.478120476007462,-0.0128174684941769,0.878200709819794,0.474894255399704,0.0376962162554264,0.879235088825226,0.496804565191269,0.00290034804493189,0.867857575416565,0.468710452318192,0.00718054501339793,0.883322656154633, +0.526188313961029,-0.0435833223164082,0.849250376224518,0.503530859947205,0.0345612578094006,0.863285601139069,0.503530859947205,0.0345612578094006,0.863285601139069,0.557763695716858,0.163732454180717,0.813689887523651,0.445376068353653,0.103299781680107,0.889364361763,0.474885791540146,0.108797900378704,0.87329626083374,0.356440633535385,0.127176865935326,0.92562198638916,0.358386516571045,0.232702568173409,0.904106438159943,0.164979547262192,0.22116956114769,0.961179316043854,0.356440633535385,0.127176865935326,0.92562198638916,0.2342798858881,0.188441604375839,0.953730881214142,0.474885791540146,0.108797900378704,0.87329626083374,0.358386516571045,0.232702568173409,0.904106438159943,0.51749575138092,0.2262874096632,0.825222373008728,0.557763695716858,0.163732454180717,0.813689887523651,0.51749575138092,0.2262874096632,0.825222373008728,0.411791056394577,0.228082597255707,0.882273375988007,0.69479912519455,-0.0113178454339504,0.719114661216736,0.671780586242676,-0.0598374903202057,0.738329291343689,0.734341084957123,-0.127991825342178,0.666604161262512,0.633756995201111,0.061340905725956,0.771096110343933,0.526188313961029,-0.0435833223164082,0.849250376224518,0.671780586242676,-0.0598374903202057,0.738329291343689,0.544842422008514,-0.209530845284462,0.811938047409058,0.624528467655182,-0.281293213367462,0.728586494922638,0.491547673940659,-0.315078377723694,0.811853647232056,0.657171368598938,-0.130419224500656,0.742372155189514,0.624528467655182,-0.281293213367462,0.728586494922638,0.544842422008514,-0.209530845284462,0.811938047409058,0.657171368598938,-0.130419224500656,0.742372155189514,0.69479912519455,-0.0113178454339504,0.719114661216736,0.734341084957123,-0.127991825342178,0.666604161262512,0.531250298023224,-0.265706062316895,0.804470717906952,0.52007794380188,-0.269670933485031,0.810429751873016,0.534378051757813,-0.0746149122714996,0.841945707798004,0.474369049072266,-0.355982512235641,0.80513995885849,0.491547673940659,-0.315078377723694,0.811853647232056,0.52007794380188,-0.269670933485031,0.810429751873016, +0.386699140071869,0.173928365111351,0.905655920505524,0.291587263345718,0.235635176301003,0.927066802978516,0.2342798858881,0.188441604375839,0.953730881214142,0.546139359474182,0.397972226142883,0.737122595310211,0.465382248163223,0.413421213626862,0.782625138759613,0.465301245450974,0.341113269329071,0.816784143447876,0.465301245450974,0.341113269329071,0.816784143447876,0.356815040111542,0.30386483669281,0.883373737335205,0.437559694051743,0.276520311832428,0.855615496635437,0.291587263345718,0.235635176301003,0.927066802978516,0.500799536705017,0.202507361769676,0.841540515422821,0.437559694051743,0.276520311832428,0.855615496635437,0.402880400419235,0.46028271317482,0.791092336177826,0.238133206963539,0.497059434652328,0.834400594234467,0.369543462991714,0.598122179508209,0.711116969585419,0.402880400419235,0.46028271317482,0.791092336177826,0.508907318115234,0.631585597991943,0.584904074668884,0.483003526926041,0.599706828594208,0.638011753559113,0.490589529275894,0.545006394386292,0.679918944835663,0.529886245727539,0.623711705207825,0.574633836746216,0.527202963829041,0.497838318347931,0.688631892204285,0.527202963829041,0.497838318347931,0.688631892204285,0.512398421764374,0.447214901447296,0.733107447624207,0.562988638877869,0.409378498792648,0.717950463294983,0.483003526926041,0.599706828594208,0.638011753559113,0.508907318115234,0.631585597991943,0.584904074668884,0.529886245727539,0.623711705207825,0.574633836746216,0.546139359474182,0.397972226142883,0.737122595310211,0.562988638877869,0.409378498792648,0.717950463294983,0.512398421764374,0.447214901447296,0.733107447624207,0.250494122505188,0.514607131481171,0.820019543170929,0.222265154123306,0.485828131437302,0.845321893692017,0.238133206963539,0.497059434652328,0.834400594234467,0.784700036048889,-0.538433492183685,0.307140082120895,0.839141428470612,-0.403505027294159,0.36472624540329,0.945594012737274,-0.305946677923203,0.110672660171986,0.839141428470612,-0.403505027294159,0.36472624540329,0.708737969398499,-0.482795566320419,0.514391601085663, +0.74592912197113,-0.392771452665329,0.537885010242462,0.86673241853714,-0.173378840088844,0.467669308185577,0.800066232681274,-0.298927366733551,0.520131170749664,0.764685809612274,-0.241550520062447,0.597418546676636,0.800066232681274,-0.298927366733551,0.520131170749664,0.74592912197113,-0.392771452665329,0.537885010242462,0.697413265705109,-0.348186999559402,0.626402735710144,0.944404542446136,0.0111262165009975,0.328596919775009,0.954124212265015,0.179050877690315,0.239974454045296,0.973866879940033,-0.0113480426371098,0.226835131645203,0.944404542446136,0.0111262165009975,0.328596919775009,0.854289293289185,-0.0948177129030228,0.51107656955719,0.872495412826538,0.114851079881191,0.474932551383972,0.86673241853714,-0.173378840088844,0.467669308185577,0.764685809612274,-0.241550520062447,0.597418546676636,0.854289293289185,-0.0948177129030228,0.51107656955719,0.494246929883957,0.0108522847294807,0.869253754615784,0.695835411548615,0.00325415772385895,0.718193888664246,0.580678284168243,-0.0906465202569962,0.809070944786072,0.539119720458984,-0.141406342387199,0.830273449420929,0.617124438285828,-0.263611048460007,0.741394937038422,0.743534088134766,-0.140117332339287,0.653853178024292,0.580678284168243,-0.0906465202569962,0.809070944786072,0.539119720458984,-0.141406342387199,0.830273449420929,0.494246929883957,0.0108522847294807,0.869253754615784,0.954124212265015,0.179050877690315,0.239974454045296,0.973518133163452,0.121866419911385,0.193418949842453,0.973866879940033,-0.0113480426371098,0.226835131645203,0.973518133163452,0.121866419911385,0.193418949842453,0.923267662525177,0.344200432300568,0.170595362782478,0.953631281852722,0.250715434551239,0.166520327329636,0.945023953914642,0.286252170801163,0.158079355955124,0.974845945835114,0.0948633328080177,0.201683670282364,0.953631281852722,0.250715434551239,0.166520327329636,0.889109551906586,0.433357417583466,0.147259801626205,0.960440993309021,0.200160399079323,0.193619653582573,0.945023953914642,0.286252170801163,0.158079355955124,0.960440993309021,0.200160399079323,0.193619653582573, +0.889109551906586,0.433357417583466,0.147259801626205,0.903520405292511,0.328956663608551,0.274660229682922,0.943131864070892,0.0538982674479485,0.328020185232162,0.903520405292511,0.328956663608551,0.274660229682922,0.89113187789917,0.158469930291176,0.425171822309494,0.878171861171722,0.105882696807384,0.46647921204567,0.907122075557709,0.00628320639953017,0.420820683240891,0.89113187789917,0.158469930291176,0.425171822309494,0.804334163665771,0.0936460569500923,0.586751103401184,0.842305541038513,0.169672608375549,0.51159793138504,0.868783533573151,0.0196597557514906,0.494801491498947,0.842305541038513,0.169672608375549,0.51159793138504,0.883191645145416,0.129262164235115,0.450847774744034,0.868783533573151,0.0196597557514906,0.494801491498947,0.883191645145416,0.129262164235115,0.450847774744034,0.907122075557709,0.00628320639953017,0.420820683240891,0.868783533573151,0.0196597557514906,0.494801491498947,0.83301842212677,-0.027086528018117,0.552581667900085,0.804334163665771,0.0936460569500923,0.586751103401184,0.860375106334686,-0.0271683894097805,0.508936524391174,0.856944441795349,-0.074417419731617,0.510007917881012,0.851408421993256,0.030738839879632,0.523601591587067,0.673935294151306,0.15028128027916,0.723344027996063,0.743534088134766,-0.140117332339287,0.653853178024292,0.856944441795349,-0.074417419731617,0.510007917881012,0.647358775138855,0.0293091218918562,0.761621654033661,0.83301842212677,-0.027086528018117,0.552581667900085,0.860375106334686,-0.0271683894097805,0.508936524391174,0.851408421993256,0.030738839879632,0.523601591587067,0.530267596244812,0.342416167259216,0.775607645511627,0.574234306812286,0.285582840442657,0.767266154289246,0.650254905223846,0.25131830573082,0.716943085193634,0.621749222278595,0.247022345662117,0.743241369724274,0.574234306812286,0.285582840442657,0.767266154289246,0.532677888870239,0.303108781576157,0.790176749229431,0.74396288394928,0.206619799137115,0.6354740858078,0.759991466999054,0.09315025806427,0.643223106861115,0.723302900791168,0.128993943333626,0.678375482559204, +0.620432615280151,0.134505033493042,0.772639393806458,0.723302900791168,0.128993943333626,0.678375482559204,0.695835411548615,0.00325415772385895,0.718193888664246,0.790246546268463,0.175652533769608,0.587074458599091,0.74396288394928,0.206619799137115,0.6354740858078,0.682872295379639,0.311440587043762,0.660825252532959,0.725631952285767,0.253552436828613,0.639663398265839,0.682872295379639,0.311440587043762,0.660825252532959,0.587858378887177,0.388188928365707,0.709740579128265,0.49820551276207,0.420292675495148,0.758383274078369,0.587858378887177,0.388188928365707,0.709740579128265,0.418978989124298,0.51156222820282,0.750173568725586,0.474894255399704,0.0376962162554264,0.879235088825226,0.478120476007462,-0.0128174684941769,0.878200709819794,0.445798575878143,-0.0136420130729675,0.895029246807098,0.445798575878143,-0.0136420130729675,0.895029246807098,0.531250298023224,-0.265706062316895,0.804470717906952,0.534378051757813,-0.0746149122714996,0.841945707798004,0.503530859947205,0.0345612578094006,0.863285601139069,0.526188313961029,-0.0435833223164082,0.849250376224518,0.633756995201111,0.061340905725956,0.771096110343933,0.557763695716858,0.163732454180717,0.813689887523651,0.503530859947205,0.0345612578094006,0.863285601139069,0.633756995201111,0.061340905725956,0.771096110343933,0.356440633535385,0.127176865935326,0.92562198638916,0.474885791540146,0.108797900378704,0.87329626083374,0.450336158275604,0.118550099432468,0.884953737258911,0.386699140071869,0.173928365111351,0.905655920505524,0.2342798858881,0.188441604375839,0.953730881214142,0.356440633535385,0.127176865935326,0.92562198638916,0.474885791540146,0.108797900378704,0.87329626083374,0.51749575138092,0.2262874096632,0.825222373008728,0.585630238056183,0.156663134694099,0.795294761657715,0.51749575138092,0.2262874096632,0.825222373008728,0.557763695716858,0.163732454180717,0.813689887523651,0.585630238056183,0.156663134694099,0.795294761657715,0.69479912519455,-0.0113178454339504,0.719114661216736,0.731242477893829,0.0132252145558596,0.681989371776581, +0.671780586242676,-0.0598374903202057,0.738329291343689,0.633756995201111,0.061340905725956,0.771096110343933,0.671780586242676,-0.0598374903202057,0.738329291343689,0.731242477893829,0.0132252145558596,0.681989371776581,0.491547673940659,-0.315078377723694,0.811853647232056,0.537452399730682,-0.260897994041443,0.801920831203461,0.544842422008514,-0.209530845284462,0.811938047409058,0.561429738998413,-0.0946241021156311,0.822096586227417,0.657171368598938,-0.130419224500656,0.742372155189514,0.544842422008514,-0.209530845284462,0.811938047409058,0.657171368598938,-0.130419224500656,0.742372155189514,0.577467679977417,0.0449533611536026,0.815174877643585,0.69479912519455,-0.0113178454339504,0.719114661216736,0.531250298023224,-0.265706062316895,0.804470717906952,0.474369049072266,-0.355982512235641,0.80513995885849,0.52007794380188,-0.269670933485031,0.810429751873016,0.543687701225281,-0.354370504617691,0.760805547237396,0.491547673940659,-0.315078377723694,0.811853647232056,0.474369049072266,-0.355982512235641,0.80513995885849,0.386699140071869,0.173928365111351,0.905655920505524,0.500799536705017,0.202507361769676,0.841540515422821,0.291587263345718,0.235635176301003,0.927066802978516,0.543479800224304,0.285009682178497,0.789556205272675,0.546139359474182,0.397972226142883,0.737122595310211,0.465301245450974,0.341113269329071,0.816784143447876,0.543479800224304,0.285009682178497,0.789556205272675,0.465301245450974,0.341113269329071,0.816784143447876,0.437559694051743,0.276520311832428,0.855615496635437,0.500799536705017,0.202507361769676,0.841540515422821,0.543479800224304,0.285009682178497,0.789556205272675,0.437559694051743,0.276520311832428,0.855615496635437,0.238133206963539,0.497059434652328,0.834400594234467,0.402880400419235,0.46028271317482,0.791092336177826,0.252773016691208,0.400063812732697,0.880939602851868,0.402880400419235,0.46028271317482,0.791092336177826,0.483003526926041,0.599706828594208,0.638011753559113,0.352392375469208,0.364965528249741,0.861753821372986,0.490589529275894,0.545006394386292,0.679918944835663, +0.427132070064545,0.567909419536591,0.703588604927063,0.529886245727539,0.623711705207825,0.574633836746216,0.461232125759125,0.418584406375885,0.782337427139282,0.490589529275894,0.545006394386292,0.679918944835663,0.527202963829041,0.497838318347931,0.688631892204285,0.461232125759125,0.418584406375885,0.782337427139282,0.527202963829041,0.497838318347931,0.688631892204285,0.562988638877869,0.409378498792648,0.717950463294983,0.427132070064545,0.567909419536591,0.703588604927063,0.483003526926041,0.599706828594208,0.638011753559113,0.529886245727539,0.623711705207825,0.574633836746216,0.546139359474182,0.397972226142883,0.737122595310211,0.599883317947388,0.396584540605545,0.694881677627563,0.562988638877869,0.409378498792648,0.717950463294983,0.2407615929842,0.507385313510895,0.827401876449585,0.250494122505188,0.514607131481171,0.820019543170929,0.238133206963539,0.497059434652328,0.834400594234467,0.839141428470612,-0.403505027294159,0.36472624540329,0.784700036048889,-0.538433492183685,0.307140082120895,0.708737969398499,-0.482795566320419,0.514391601085663,0.697413265705109,-0.348186999559402,0.626402735710144,0.74592912197113,-0.392771452665329,0.537885010242462,0.708737969398499,-0.482795566320419,0.514391601085663,0.800066232681274,-0.298927366733551,0.520131170749664,0.697413265705109,-0.348186999559402,0.626402735710144,0.764685809612274,-0.241550520062447,0.597418546676636,0.932039558887482,0.131638541817665,0.337599635124207,0.954124212265015,0.179050877690315,0.239974454045296,0.944404542446136,0.0111262165009975,0.328596919775009,0.782933533191681,0.0724519193172455,0.617871940135956,0.872495412826538,0.114851079881191,0.474932551383972,0.854289293289185,-0.0948177129030228,0.51107656955719,0.932039558887482,0.131638541817665,0.337599635124207,0.944404542446136,0.0111262165009975,0.328596919775009,0.872495412826538,0.114851079881191,0.474932551383972,0.726148068904877,-0.051966018974781,0.685571551322937,0.854289293289185,-0.0948177129030228,0.51107656955719,0.764685809612274,-0.241550520062447,0.597418546676636, +0.494246929883957,0.0108522847294807,0.869253754615784,0.620432615280151,0.134505033493042,0.772639393806458,0.695835411548615,0.00325415772385895,0.718193888664246,0.539119720458984,-0.141406342387199,0.830273449420929,0.743534088134766,-0.140117332339287,0.653853178024292,0.553481757640839,-0.050752941519022,0.831313371658325,0.553481757640839,-0.050752941519022,0.831313371658325,0.494246929883957,0.0108522847294807,0.869253754615784,0.539119720458984,-0.141406342387199,0.830273449420929,0.954124212265015,0.179050877690315,0.239974454045296,0.923267662525177,0.344200432300568,0.170595362782478,0.973518133163452,0.121866419911385,0.193418949842453,0.923267662525177,0.344200432300568,0.170595362782478,0.903835237026215,0.401255279779434,0.148579746484756,0.953631281852722,0.250715434551239,0.166520327329636,0.945023953914642,0.286252170801163,0.158079355955124,0.953631281852722,0.250715434551239,0.166520327329636,0.903835237026215,0.401255279779434,0.148579746484756,0.889109551906586,0.433357417583466,0.147259801626205,0.945023953914642,0.286252170801163,0.158079355955124,0.852619051933289,0.510683119297028,0.110650055110455,0.903520405292511,0.328956663608551,0.274660229682922,0.889109551906586,0.433357417583466,0.147259801626205,0.800738632678986,0.555893361568451,0.223159477114677,0.903520405292511,0.328956663608551,0.274660229682922,0.815575301647186,0.446502655744553,0.368065446615219,0.89113187789917,0.158469930291176,0.425171822309494,0.878171861171722,0.105882696807384,0.46647921204567,0.868783533573151,0.0196597557514906,0.494801491498947,0.907122075557709,0.00628320639953017,0.420820683240891,0.878171861171722,0.105882696807384,0.46647921204567,0.89113187789917,0.158469930291176,0.425171822309494,0.815575301647186,0.446502655744553,0.368065446615219,0.804334163665771,0.0936460569500923,0.586751103401184,0.868783533573151,0.0196597557514906,0.494801491498947,0.860375106334686,-0.0271683894097805,0.508936524391174,0.701287925243378,0.256175875663757,0.665258705615997,0.673935294151306,0.15028128027916,0.723344027996063, +0.851408421993256,0.030738839879632,0.523601591587067,0.673935294151306,0.15028128027916,0.723344027996063,0.647358775138855,0.0293091218918562,0.761621654033661,0.856944441795349,-0.074417419731617,0.510007917881012,0.647358775138855,0.0293091218918562,0.761621654033661,0.553481757640839,-0.050752941519022,0.831313371658325,0.743534088134766,-0.140117332339287,0.653853178024292,0.851408421993256,0.030738839879632,0.523601591587067,0.860375106334686,-0.0271683894097805,0.508936524391174,0.790079236030579,0.211339101195335,0.575421988964081,0.574234306812286,0.285582840442657,0.767266154289246,0.530267596244812,0.342416167259216,0.775607645511627,0.532677888870239,0.303108781576157,0.790176749229431,0.74396288394928,0.206619799137115,0.6354740858078,0.723302900791168,0.128993943333626,0.678375482559204,0.696586906909943,0.22577853500843,0.681021690368652,0.620432615280151,0.134505033493042,0.772639393806458,0.696586906909943,0.22577853500843,0.681021690368652,0.723302900791168,0.128993943333626,0.678375482559204,0.628250062465668,0.348340749740601,0.695672631263733,0.682872295379639,0.311440587043762,0.660825252532959,0.74396288394928,0.206619799137115,0.6354740858078,0.510518252849579,0.463199377059937,0.724442839622498,0.587858378887177,0.388188928365707,0.709740579128265,0.682872295379639,0.311440587043762,0.660825252532959,0.510518252849579,0.463199377059937,0.724442839622498,0.418978989124298,0.51156222820282,0.750173568725586,0.587858378887177,0.388188928365707,0.709740579128265,0.445798575878143,-0.0136420130729675,0.895029246807098,0.478120476007462,-0.0128174684941769,0.878200709819794,0.407710790634155,-0.0718268603086472,0.910281658172607,0.445798575878143,-0.0136420130729675,0.895029246807098,0.464602023363113,-0.138388812541962,0.87463903427124,0.531250298023224,-0.265706062316895,0.804470717906952,0.557763695716858,0.163732454180717,0.813689887523651,0.633756995201111,0.061340905725956,0.771096110343933,0.639743983745575,0.163183435797691,0.751065015792847,0.450336158275604,0.118550099432468,0.884953737258911, +0.474885791540146,0.108797900378704,0.87329626083374,0.531249165534973,0.102901436388493,0.840943276882172,0.356440633535385,0.127176865935326,0.92562198638916,0.450336158275604,0.118550099432468,0.884953737258911,0.386699140071869,0.173928365111351,0.905655920505524,0.536453127861023,0.0353842489421368,0.843187928199768,0.474885791540146,0.108797900378704,0.87329626083374,0.585630238056183,0.156663134694099,0.795294761657715,0.557763695716858,0.163732454180717,0.813689887523651,0.639743983745575,0.163183435797691,0.751065015792847,0.585630238056183,0.156663134694099,0.795294761657715,0.66677337884903,0.0911586880683899,0.739664256572723,0.731242477893829,0.0132252145558596,0.681989371776581,0.69479912519455,-0.0113178454339504,0.719114661216736,0.633756995201111,0.061340905725956,0.771096110343933,0.731242477893829,0.0132252145558596,0.681989371776581,0.638456106185913,0.0715431421995163,0.766325712203979,0.491547673940659,-0.315078377723694,0.811853647232056,0.543687701225281,-0.354370504617691,0.760805547237396,0.537452399730682,-0.260897994041443,0.801920831203461,0.587347745895386,-0.165840432047844,0.792161226272583,0.544842422008514,-0.209530845284462,0.811938047409058,0.537452399730682,-0.260897994041443,0.801920831203461,0.561429738998413,-0.0946241021156311,0.822096586227417,0.577467679977417,0.0449533611536026,0.815174877643585,0.657171368598938,-0.130419224500656,0.742372155189514,0.587347745895386,-0.165840432047844,0.792161226272583,0.561429738998413,-0.0946241021156311,0.822096586227417,0.544842422008514,-0.209530845284462,0.811938047409058,0.577467679977417,0.0449533611536026,0.815174877643585,0.66677337884903,0.0911586880683899,0.739664256572723,0.69479912519455,-0.0113178454339504,0.719114661216736,0.543687701225281,-0.354370504617691,0.760805547237396,0.474369049072266,-0.355982512235641,0.80513995885849,0.531250298023224,-0.265706062316895,0.804470717906952,0.450336158275604,0.118550099432468,0.884953737258911,0.500799536705017,0.202507361769676,0.841540515422821,0.386699140071869,0.173928365111351,0.905655920505524, +0.543479800224304,0.285009682178497,0.789556205272675,0.599883317947388,0.396584540605545,0.694881677627563,0.546139359474182,0.397972226142883,0.737122595310211,0.5876824259758,0.153319120407104,0.794432163238525,0.543479800224304,0.285009682178497,0.789556205272675,0.500799536705017,0.202507361769676,0.841540515422821,0.252773016691208,0.400063812732697,0.880939602851868,0.402880400419235,0.46028271317482,0.791092336177826,0.289094746112823,0.293306320905685,0.911260366439819,0.238133206963539,0.497059434652328,0.834400594234467,0.252773016691208,0.400063812732697,0.880939602851868,0.2407615929842,0.507385313510895,0.827401876449585,0.352392375469208,0.364965528249741,0.861753821372986,0.483003526926041,0.599706828594208,0.638011753559113,0.427132070064545,0.567909419536591,0.703588604927063,0.402880400419235,0.46028271317482,0.791092336177826,0.352392375469208,0.364965528249741,0.861753821372986,0.289094746112823,0.293306320905685,0.911260366439819,0.429103314876556,0.498154431581497,0.753466904163361,0.427132070064545,0.567909419536591,0.703588604927063,0.490589529275894,0.545006394386292,0.679918944835663,0.490589529275894,0.545006394386292,0.679918944835663,0.461232125759125,0.418584406375885,0.782337427139282,0.429103314876556,0.498154431581497,0.753466904163361,0.517458736896515,0.401494145393372,0.75567102432251,0.461232125759125,0.418584406375885,0.782337427139282,0.562988638877869,0.409378498792648,0.717950463294983,0.599883317947388,0.396584540605545,0.694881677627563,0.517458736896515,0.401494145393372,0.75567102432251,0.562988638877869,0.409378498792648,0.717950463294983,0.652007281780243,-0.42521658539772,0.627755701541901,0.697413265705109,-0.348186999559402,0.626402735710144,0.708737969398499,-0.482795566320419,0.514391601085663,0.764685809612274,-0.241550520062447,0.597418546676636,0.697413265705109,-0.348186999559402,0.626402735710144,0.685481727123261,-0.188169971108437,0.703353881835938,0.932039558887482,0.131638541817665,0.337599635124207,0.865981161594391,0.318792998790741,0.38528898358345,0.954124212265015,0.179050877690315,0.239974454045296, +0.872495412826538,0.114851079881191,0.474932551383972,0.782933533191681,0.0724519193172455,0.617871940135956,0.758680939674377,0.272991955280304,0.591505229473114,0.726148068904877,-0.051966018974781,0.685571551322937,0.782933533191681,0.0724519193172455,0.617871940135956,0.854289293289185,-0.0948177129030228,0.51107656955719,0.932039558887482,0.131638541817665,0.337599635124207,0.872495412826538,0.114851079881191,0.474932551383972,0.865981161594391,0.318792998790741,0.38528898358345,0.764685809612274,-0.241550520062447,0.597418546676636,0.685481727123261,-0.188169971108437,0.703353881835938,0.726148068904877,-0.051966018974781,0.685571551322937,0.620432615280151,0.134505033493042,0.772639393806458,0.494246929883957,0.0108522847294807,0.869253754615784,0.451663106679916,0.177157208323479,0.874423086643219,0.553481757640839,-0.050752941519022,0.831313371658325,0.467432618141174,0.0807632654905319,0.880331754684448,0.494246929883957,0.0108522847294807,0.869253754615784,0.882639408111572,0.391274869441986,0.260483235120773,0.923267662525177,0.344200432300568,0.170595362782478,0.954124212265015,0.179050877690315,0.239974454045296,0.923267662525177,0.344200432300568,0.170595362782478,0.84743469953537,0.512311220169067,0.139253303408623,0.903835237026215,0.401255279779434,0.148579746484756,0.945023953914642,0.286252170801163,0.158079355955124,0.903835237026215,0.401255279779434,0.148579746484756,0.852619051933289,0.510683119297028,0.110650055110455,0.889109551906586,0.433357417583466,0.147259801626205,0.852619051933289,0.510683119297028,0.110650055110455,0.762102723121643,0.632550179958344,0.138129159808159,0.800738632678986,0.555893361568451,0.223159477114677,0.889109551906586,0.433357417583466,0.147259801626205,0.762102723121643,0.632550179958344,0.138129159808159,0.800738632678986,0.555893361568451,0.223159477114677,0.815575301647186,0.446502655744553,0.368065446615219,0.903520405292511,0.328956663608551,0.274660229682922,0.878171861171722,0.105882696807384,0.46647921204567,0.856070697307587,0.0928685143589973,0.508446872234344, +0.868783533573151,0.0196597557514906,0.494801491498947,0.815575301647186,0.446502655744553,0.368065446615219,0.794868946075439,0.388593226671219,0.466024130582809,0.878171861171722,0.105882696807384,0.46647921204567,0.856070697307587,0.0928685143589973,0.508446872234344,0.860375106334686,-0.0271683894097805,0.508936524391174,0.868783533573151,0.0196597557514906,0.494801491498947,0.701287925243378,0.256175875663757,0.665258705615997,0.505448520183563,0.361183851957321,0.783624827861786,0.673935294151306,0.15028128027916,0.723344027996063,0.851408421993256,0.030738839879632,0.523601591587067,0.706002593040466,0.326100200414658,0.628664314746857,0.701287925243378,0.256175875663757,0.665258705615997,0.673935294151306,0.15028128027916,0.723344027996063,0.43326273560524,0.253677129745483,0.864830136299133,0.647358775138855,0.0293091218918562,0.761621654033661,0.647358775138855,0.0293091218918562,0.761621654033661,0.467432618141174,0.0807632654905319,0.880331754684448,0.553481757640839,-0.050752941519022,0.831313371658325,0.790079236030579,0.211339101195335,0.575421988964081,0.860375106334686,-0.0271683894097805,0.508936524391174,0.856070697307587,0.0928685143589973,0.508446872234344,0.790079236030579,0.211339101195335,0.575421988964081,0.706002593040466,0.326100200414658,0.628664314746857,0.851408421993256,0.030738839879632,0.523601591587067,0.74396288394928,0.206619799137115,0.6354740858078,0.696586906909943,0.22577853500843,0.681021690368652,0.628250062465668,0.348340749740601,0.695672631263733,0.696586906909943,0.22577853500843,0.681021690368652,0.620432615280151,0.134505033493042,0.772639393806458,0.564897835254669,0.311235696077347,0.764213740825653,0.628250062465668,0.348340749740601,0.695672631263733,0.510518252849579,0.463199377059937,0.724442839622498,0.682872295379639,0.311440587043762,0.660825252532959,0.510518252849579,0.463199377059937,0.724442839622498,0.326419830322266,0.588403582572937,0.739750742912292,0.418978989124298,0.51156222820282,0.750173568725586,0.407710790634155,-0.0718268603086472,0.910281658172607, +0.478120476007462,-0.0128174684941769,0.878200709819794,0.513507604598999,-0.118529632687569,0.849859178066254,0.445798575878143,-0.0136420130729675,0.895029246807098,0.407710790634155,-0.0718268603086472,0.910281658172607,0.464602023363113,-0.138388812541962,0.87463903427124,0.519290864467621,-0.270923584699631,0.810516655445099,0.531250298023224,-0.265706062316895,0.804470717906952,0.464602023363113,-0.138388812541962,0.87463903427124,0.638456106185913,0.0715431421995163,0.766325712203979,0.639743983745575,0.163183435797691,0.751065015792847,0.633756995201111,0.061340905725956,0.771096110343933,0.536453127861023,0.0353842489421368,0.843187928199768,0.531249165534973,0.102901436388493,0.840943276882172,0.474885791540146,0.108797900378704,0.87329626083374,0.450336158275604,0.118550099432468,0.884953737258911,0.531249165534973,0.102901436388493,0.840943276882172,0.500799536705017,0.202507361769676,0.841540515422821,0.585630238056183,0.156663134694099,0.795294761657715,0.638456106185913,0.0715431421995163,0.766325712203979,0.536453127861023,0.0353842489421368,0.843187928199768,0.585630238056183,0.156663134694099,0.795294761657715,0.639743983745575,0.163183435797691,0.751065015792847,0.638456106185913,0.0715431421995163,0.766325712203979,0.69377863407135,0.079524889588356,0.715784072875977,0.731242477893829,0.0132252145558596,0.681989371776581,0.66677337884903,0.0911586880683899,0.739664256572723,0.704671502113342,0.0557599477469921,0.70733916759491,0.638456106185913,0.0715431421995163,0.766325712203979,0.731242477893829,0.0132252145558596,0.681989371776581,0.537452399730682,-0.260897994041443,0.801920831203461,0.543687701225281,-0.354370504617691,0.760805547237396,0.639882683753967,-0.303985416889191,0.705792427062988,0.537452399730682,-0.260897994041443,0.801920831203461,0.639882683753967,-0.303985416889191,0.705792427062988,0.587347745895386,-0.165840432047844,0.792161226272583,0.561429738998413,-0.0946241021156311,0.822096586227417,0.583714008331299,-0.0530277937650681,0.810225784778595,0.577467679977417,0.0449533611536026,0.815174877643585, +0.561429738998413,-0.0946241021156311,0.822096586227417,0.587347745895386,-0.165840432047844,0.792161226272583,0.583714008331299,-0.0530277937650681,0.810225784778595,0.577467679977417,0.0449533611536026,0.815174877643585,0.57466071844101,0.156982064247131,0.803194582462311,0.66677337884903,0.0911586880683899,0.739664256572723,0.519290864467621,-0.270923584699631,0.810516655445099,0.543687701225281,-0.354370504617691,0.760805547237396,0.531250298023224,-0.265706062316895,0.804470717906952,0.543479800224304,0.285009682178497,0.789556205272675,0.535246551036835,0.327803701162338,0.778495788574219,0.599883317947388,0.396584540605545,0.694881677627563,0.57056051492691,0.178223669528961,0.801683843135834,0.543479800224304,0.285009682178497,0.789556205272675,0.5876824259758,0.153319120407104,0.794432163238525,0.5876824259758,0.153319120407104,0.794432163238525,0.500799536705017,0.202507361769676,0.841540515422821,0.621490478515625,0.158169001340866,0.767288744449615,0.285392493009567,0.302108466625214,0.909550130367279,0.252773016691208,0.400063812732697,0.880939602851868,0.289094746112823,0.293306320905685,0.911260366439819,0.252773016691208,0.400063812732697,0.880939602851868,0.305773258209229,0.448322147130966,0.839946329593658,0.2407615929842,0.507385313510895,0.827401876449585,0.429647266864777,0.381031900644302,0.818668305873871,0.352392375469208,0.364965528249741,0.861753821372986,0.427132070064545,0.567909419536591,0.703588604927063,0.289094746112823,0.293306320905685,0.911260366439819,0.352392375469208,0.364965528249741,0.861753821372986,0.285392493009567,0.302108466625214,0.909550130367279,0.427132070064545,0.567909419536591,0.703588604927063,0.429103314876556,0.498154431581497,0.753466904163361,0.441919833421707,0.549427926540375,0.709109008312225,0.697413265705109,-0.348186999559402,0.626402735710144,0.652007281780243,-0.42521658539772,0.627755701541901,0.642052948474884,-0.280358523130417,0.713559448719025,0.685481727123261,-0.188169971108437,0.703353881835938,0.697413265705109,-0.348186999559402,0.626402735710144, +0.642052948474884,-0.280358523130417,0.713559448719025,0.882639408111572,0.391274869441986,0.260483235120773,0.954124212265015,0.179050877690315,0.239974454045296,0.865981161594391,0.318792998790741,0.38528898358345,0.782933533191681,0.0724519193172455,0.617871940135956,0.630693793296814,0.157474085688591,0.759886205196381,0.758680939674377,0.272991955280304,0.591505229473114,0.872495412826538,0.114851079881191,0.474932551383972,0.758680939674377,0.272991955280304,0.591505229473114,0.865981161594391,0.318792998790741,0.38528898358345,0.782933533191681,0.0724519193172455,0.617871940135956,0.726148068904877,-0.051966018974781,0.685571551322937,0.630693793296814,0.157474085688591,0.759886205196381,0.618108093738556,-0.0159214250743389,0.785931766033173,0.726148068904877,-0.051966018974781,0.685571551322937,0.685481727123261,-0.188169971108437,0.703353881835938,0.467432618141174,0.0807632654905319,0.880331754684448,0.451663106679916,0.177157208323479,0.874423086643219,0.494246929883957,0.0108522847294807,0.869253754615784,0.620432615280151,0.134505033493042,0.772639393806458,0.451663106679916,0.177157208323479,0.874423086643219,0.564897835254669,0.311235696077347,0.764213740825653,0.882639408111572,0.391274869441986,0.260483235120773,0.792878091335297,0.55015617609024,0.26205387711525,0.923267662525177,0.344200432300568,0.170595362782478,0.923267662525177,0.344200432300568,0.170595362782478,0.792878091335297,0.55015617609024,0.26205387711525,0.84743469953537,0.512311220169067,0.139253303408623,0.903835237026215,0.401255279779434,0.148579746484756,0.84743469953537,0.512311220169067,0.139253303408623,0.852619051933289,0.510683119297028,0.110650055110455,0.722987413406372,0.685048818588257,0.0894268378615379,0.762102723121643,0.632550179958344,0.138129159808159,0.852619051933289,0.510683119297028,0.110650055110455,0.800738632678986,0.555893361568451,0.223159477114677,0.762102723121643,0.632550179958344,0.138129159808159,0.641768157482147,0.734207570552826,0.221523627638817,0.800738632678986,0.555893361568451,0.223159477114677, +0.641768157482147,0.734207570552826,0.221523627638817,0.815575301647186,0.446502655744553,0.368065446615219,0.878171861171722,0.105882696807384,0.46647921204567,0.794868946075439,0.388593226671219,0.466024130582809,0.856070697307587,0.0928685143589973,0.508446872234344,0.794868946075439,0.388593226671219,0.466024130582809,0.815575301647186,0.446502655744553,0.368065446615219,0.605176150798798,0.713837265968323,0.352417439222336,0.701287925243378,0.256175875663757,0.665258705615997,0.519649207592011,0.465371668338776,0.716515004634857,0.505448520183563,0.361183851957321,0.783624827861786,0.505448520183563,0.361183851957321,0.783624827861786,0.467998325824738,0.304281681776047,0.829692780971527,0.673935294151306,0.15028128027916,0.723344027996063,0.701287925243378,0.256175875663757,0.665258705615997,0.706002593040466,0.326100200414658,0.628664314746857,0.519649207592011,0.465371668338776,0.716515004634857,0.467998325824738,0.304281681776047,0.829692780971527,0.43326273560524,0.253677129745483,0.864830136299133,0.673935294151306,0.15028128027916,0.723344027996063,0.43326273560524,0.253677129745483,0.864830136299133,0.467432618141174,0.0807632654905319,0.880331754684448,0.647358775138855,0.0293091218918562,0.761621654033661,0.790079236030579,0.211339101195335,0.575421988964081,0.856070697307587,0.0928685143589973,0.508446872234344,0.73315954208374,0.385823279619217,0.560015439987183,0.790079236030579,0.211339101195335,0.575421988964081,0.55226868391037,0.546515464782715,0.629539489746094,0.706002593040466,0.326100200414658,0.628664314746857,0.696586906909943,0.22577853500843,0.681021690368652,0.564897835254669,0.311235696077347,0.764213740825653,0.628250062465668,0.348340749740601,0.695672631263733,0.468060702085495,0.485270440578461,0.738533437252045,0.510518252849579,0.463199377059937,0.724442839622498,0.628250062465668,0.348340749740601,0.695672631263733,0.468060702085495,0.485270440578461,0.738533437252045,0.326419830322266,0.588403582572937,0.739750742912292,0.510518252849579,0.463199377059937,0.724442839622498,0.519290864467621,-0.270923584699631,0.810516655445099, +0.407710790634155,-0.0718268603086472,0.910281658172607,0.513507604598999,-0.118529632687569,0.849859178066254,0.464602023363113,-0.138388812541962,0.87463903427124,0.407710790634155,-0.0718268603086472,0.910281658172607,0.519290864467621,-0.270923584699631,0.810516655445099,0.627322196960449,0.0993004590272903,0.772402822971344,0.531249165534973,0.102901436388493,0.840943276882172,0.536453127861023,0.0353842489421368,0.843187928199768,0.500799536705017,0.202507361769676,0.841540515422821,0.531249165534973,0.102901436388493,0.840943276882172,0.621490478515625,0.158169001340866,0.767288744449615,0.704671502113342,0.0557599477469921,0.70733916759491,0.536453127861023,0.0353842489421368,0.843187928199768,0.638456106185913,0.0715431421995163,0.766325712203979,0.731242477893829,0.0132252145558596,0.681989371776581,0.69377863407135,0.079524889588356,0.715784072875977,0.801903784275055,0.0476725623011589,0.595548033714294,0.69377863407135,0.079524889588356,0.715784072875977,0.66677337884903,0.0911586880683899,0.739664256572723,0.57466071844101,0.156982064247131,0.803194582462311,0.801903784275055,0.0476725623011589,0.595548033714294,0.704671502113342,0.0557599477469921,0.70733916759491,0.731242477893829,0.0132252145558596,0.681989371776581,0.543687701225281,-0.354370504617691,0.760805547237396,0.603014171123505,-0.31396359205246,0.733348906040192,0.639882683753967,-0.303985416889191,0.705792427062988,0.583012282848358,0.0535014979541302,0.810699760913849,0.577467679977417,0.0449533611536026,0.815174877643585,0.583714008331299,-0.0530277937650681,0.810225784778595,0.577467679977417,0.0449533611536026,0.815174877643585,0.505752682685852,0.142331466078758,0.850855946540833,0.57466071844101,0.156982064247131,0.803194582462311,0.543687701225281,-0.354370504617691,0.760805547237396,0.519290864467621,-0.270923584699631,0.810516655445099,0.603014171123505,-0.31396359205246,0.733348906040192,0.535246551036835,0.327803701162338,0.778495788574219,0.543479800224304,0.285009682178497,0.789556205272675,0.57056051492691,0.178223669528961,0.801683843135834, +0.5876824259758,0.153319120407104,0.794432163238525,0.61928778886795,0.0833390355110168,0.780728578567505,0.57056051492691,0.178223669528961,0.801683843135834,0.5876824259758,0.153319120407104,0.794432163238525,0.621490478515625,0.158169001340866,0.767288744449615,0.687661051750183,0.124381601810455,0.715298175811768,0.252773016691208,0.400063812732697,0.880939602851868,0.285392493009567,0.302108466625214,0.909550130367279,0.305773258209229,0.448322147130966,0.839946329593658,0.429647266864777,0.381031900644302,0.818668305873871,0.374842017889023,0.267073601484299,0.887786626815796,0.352392375469208,0.364965528249741,0.861753821372986,0.48640039563179,0.511705636978149,0.70821738243103,0.429647266864777,0.381031900644302,0.818668305873871,0.427132070064545,0.567909419536591,0.703588604927063,0.401104062795639,0.263095736503601,0.877437174320221,0.285392493009567,0.302108466625214,0.909550130367279,0.352392375469208,0.364965528249741,0.861753821372986,0.48640039563179,0.511705636978149,0.70821738243103,0.427132070064545,0.567909419536591,0.703588604927063,0.441919833421707,0.549427926540375,0.709109008312225,0.652007281780243,-0.42521658539772,0.627755701541901,0.631619811058044,-0.40450394153595,0.661387026309967,0.642052948474884,-0.280358523130417,0.713559448719025,0.685481727123261,-0.188169971108437,0.703353881835938,0.642052948474884,-0.280358523130417,0.713559448719025,0.62407648563385,-0.142522349953651,0.768254995346069,0.882639408111572,0.391274869441986,0.260483235120773,0.865981161594391,0.318792998790741,0.38528898358345,0.807080686092377,0.478881925344467,0.345387727022171,0.586133718490601,0.352526694536209,0.729501187801361,0.758680939674377,0.272991955280304,0.591505229473114,0.630693793296814,0.157474085688591,0.759886205196381,0.865981161594391,0.318792998790741,0.38528898358345,0.758680939674377,0.272991955280304,0.591505229473114,0.718838751316071,0.447759926319122,0.531772255897522,0.630693793296814,0.157474085688591,0.759886205196381,0.726148068904877,-0.051966018974781,0.685571551322937,0.618108093738556,-0.0159214250743389,0.785931766033173, +0.618108093738556,-0.0159214250743389,0.785931766033173,0.685481727123261,-0.188169971108437,0.703353881835938,0.62407648563385,-0.142522349953651,0.768254995346069,0.467432618141174,0.0807632654905319,0.880331754684448,0.43326273560524,0.253677129745483,0.864830136299133,0.451663106679916,0.177157208323479,0.874423086643219,0.451663106679916,0.177157208323479,0.874423086643219,0.430257856845856,0.354637861251831,0.830126523971558,0.564897835254669,0.311235696077347,0.764213740825653,0.807080686092377,0.478881925344467,0.345387727022171,0.792878091335297,0.55015617609024,0.26205387711525,0.882639408111572,0.391274869441986,0.260483235120773,0.728622317314148,0.667804062366486,0.152141824364662,0.84743469953537,0.512311220169067,0.139253303408623,0.792878091335297,0.55015617609024,0.26205387711525,0.777497112751007,0.619056046009064,0.11075958609581,0.852619051933289,0.510683119297028,0.110650055110455,0.84743469953537,0.512311220169067,0.139253303408623,0.603003799915314,0.786662101745605,0.13247261941433,0.762102723121643,0.632550179958344,0.138129159808159,0.722987413406372,0.685048818588257,0.0894268378615379,0.722987413406372,0.685048818588257,0.0894268378615379,0.852619051933289,0.510683119297028,0.110650055110455,0.777497112751007,0.619056046009064,0.11075958609581,0.603003799915314,0.786662101745605,0.13247261941433,0.641768157482147,0.734207570552826,0.221523627638817,0.762102723121643,0.632550179958344,0.138129159808159,0.641768157482147,0.734207570552826,0.221523627638817,0.605176150798798,0.713837265968323,0.352417439222336,0.815575301647186,0.446502655744553,0.368065446615219,0.794868946075439,0.388593226671219,0.466024130582809,0.73315954208374,0.385823279619217,0.560015439987183,0.856070697307587,0.0928685143589973,0.508446872234344,0.605176150798798,0.713837265968323,0.352417439222336,0.558921158313751,0.665096402168274,0.495231002569199,0.794868946075439,0.388593226671219,0.466024130582809,0.519649207592011,0.465371668338776,0.716515004634857,0.326661229133606,0.564052522182465,0.758377909660339,0.505448520183563,0.361183851957321,0.783624827861786, +0.467998325824738,0.304281681776047,0.829692780971527,0.505448520183563,0.361183851957321,0.783624827861786,0.359361976385117,0.403540849685669,0.841435432434082,0.519649207592011,0.465371668338776,0.716515004634857,0.706002593040466,0.326100200414658,0.628664314746857,0.55226868391037,0.546515464782715,0.629539489746094,0.43326273560524,0.253677129745483,0.864830136299133,0.467998325824738,0.304281681776047,0.829692780971527,0.359361976385117,0.403540849685669,0.841435432434082,0.73315954208374,0.385823279619217,0.560015439987183,0.55226868391037,0.546515464782715,0.629539489746094,0.790079236030579,0.211339101195335,0.575421988964081,0.468060702085495,0.485270440578461,0.738533437252045,0.628250062465668,0.348340749740601,0.695672631263733,0.564897835254669,0.311235696077347,0.764213740825653,0.326419830322266,0.588403582572937,0.739750742912292,0.468060702085495,0.485270440578461,0.738533437252045,0.329243689775467,0.565854668617249,0.755914628505707,0.513507604598999,-0.118529632687569,0.849859178066254,0.603014171123505,-0.31396359205246,0.733348906040192,0.519290864467621,-0.270923584699631,0.810516655445099,0.627322196960449,0.0993004590272903,0.772402822971344,0.621490478515625,0.158169001340866,0.767288744449615,0.531249165534973,0.102901436388493,0.840943276882172,0.627322196960449,0.0993004590272903,0.772402822971344,0.536453127861023,0.0353842489421368,0.843187928199768,0.704671502113342,0.0557599477469921,0.70733916759491,0.801903784275055,0.0476725623011589,0.595548033714294,0.69377863407135,0.079524889588356,0.715784072875977,0.785053551197052,0.0646917521953583,0.616040349006653,0.494280934333801,0.145264178514481,0.857079088687897,0.69377863407135,0.079524889588356,0.715784072875977,0.57466071844101,0.156982064247131,0.803194582462311,0.704671502113342,0.0557599477469921,0.70733916759491,0.801903784275055,0.0476725623011589,0.595548033714294,0.755627393722534,0.0988272577524185,0.647503077983856,0.583012282848358,0.0535014979541302,0.810699760913849,0.505752682685852,0.142331466078758,0.850855946540833, +0.577467679977417,0.0449533611536026,0.815174877643585,0.494280934333801,0.145264178514481,0.857079088687897,0.57466071844101,0.156982064247131,0.803194582462311,0.505752682685852,0.142331466078758,0.850855946540833,0.5876824259758,0.153319120407104,0.794432163238525,0.687661051750183,0.124381601810455,0.715298175811768,0.61928778886795,0.0833390355110168,0.780728578567505,0.57056051492691,0.178223669528961,0.801683843135834,0.61928778886795,0.0833390355110168,0.780728578567505,0.536041676998138,0.0606099404394627,0.842012822628021,0.627322196960449,0.0993004590272903,0.772402822971344,0.687661051750183,0.124381601810455,0.715298175811768,0.621490478515625,0.158169001340866,0.767288744449615,0.401104062795639,0.263095736503601,0.877437174320221,0.305773258209229,0.448322147130966,0.839946329593658,0.285392493009567,0.302108466625214,0.909550130367279,0.429647266864777,0.381031900644302,0.818668305873871,0.493134558200836,0.24052806198597,0.836040914058685,0.374842017889023,0.267073601484299,0.887786626815796,0.352392375469208,0.364965528249741,0.861753821372986,0.374842017889023,0.267073601484299,0.887786626815796,0.401104062795639,0.263095736503601,0.877437174320221,0.535521686077118,0.372111052274704,0.758122503757477,0.429647266864777,0.381031900644302,0.818668305873871,0.48640039563179,0.511705636978149,0.70821738243103,0.631619811058044,-0.40450394153595,0.661387026309967,0.600361585617065,-0.239592432975769,0.762994945049286,0.642052948474884,-0.280358523130417,0.713559448719025,0.62407648563385,-0.142522349953651,0.768254995346069,0.642052948474884,-0.280358523130417,0.713559448719025,0.600361585617065,-0.239592432975769,0.762994945049286,0.865981161594391,0.318792998790741,0.38528898358345,0.718838751316071,0.447759926319122,0.531772255897522,0.807080686092377,0.478881925344467,0.345387727022171,0.586133718490601,0.352526694536209,0.729501187801361,0.718838751316071,0.447759926319122,0.531772255897522,0.758680939674377,0.272991955280304,0.591505229473114,0.630693793296814,0.157474085688591,0.759886205196381, +0.465707331895828,0.267070382833481,0.843676507472992,0.586133718490601,0.352526694536209,0.729501187801361,0.630693793296814,0.157474085688591,0.759886205196381,0.618108093738556,-0.0159214250743389,0.785931766033173,0.510155975818634,0.146026700735092,0.847594797611237,0.618108093738556,-0.0159214250743389,0.785931766033173,0.62407648563385,-0.142522349953651,0.768254995346069,0.57584536075592,0.0158021338284016,0.817405819892883,0.383404433727264,0.305079579353333,0.871738195419312,0.451663106679916,0.177157208323479,0.874423086643219,0.43326273560524,0.253677129745483,0.864830136299133,0.383404433727264,0.305079579353333,0.871738195419312,0.430257856845856,0.354637861251831,0.830126523971558,0.451663106679916,0.177157208323479,0.874423086643219,0.430257856845856,0.354637861251831,0.830126523971558,0.438516169786453,0.445428669452667,0.78057461977005,0.564897835254669,0.311235696077347,0.764213740825653,0.807080686092377,0.478881925344467,0.345387727022171,0.686942994594574,0.597724914550781,0.413320749998093,0.792878091335297,0.55015617609024,0.26205387711525,0.728622317314148,0.667804062366486,0.152141824364662,0.777497112751007,0.619056046009064,0.11075958609581,0.84743469953537,0.512311220169067,0.139253303408623,0.603003799915314,0.786662101745605,0.13247261941433,0.722987413406372,0.685048818588257,0.0894268378615379,0.562582015991211,0.822545289993286,0.0831891745328903,0.722987413406372,0.685048818588257,0.0894268378615379,0.777497112751007,0.619056046009064,0.11075958609581,0.655722379684448,0.750401079654694,0.0832246690988541,0.603003799915314,0.786662101745605,0.13247261941433,0.476240038871765,0.861734807491302,0.174951985478401,0.641768157482147,0.734207570552826,0.221523627638817,0.416014701128006,0.876717567443848,0.241449698805809,0.605176150798798,0.713837265968323,0.352417439222336,0.641768157482147,0.734207570552826,0.221523627638817,0.794868946075439,0.388593226671219,0.466024130582809,0.558921158313751,0.665096402168274,0.495231002569199,0.73315954208374,0.385823279619217,0.560015439987183, +0.605176150798798,0.713837265968323,0.352417439222336,0.359088182449341,0.861209034919739,0.359686434268951,0.558921158313751,0.665096402168274,0.495231002569199,0.326460361480713,0.71135401725769,0.622413873672485,0.326661229133606,0.564052522182465,0.758377909660339,0.519649207592011,0.465371668338776,0.716515004634857,0.359361976385117,0.403540849685669,0.841435432434082,0.505448520183563,0.361183851957321,0.783624827861786,0.326661229133606,0.564052522182465,0.758377909660339,0.519649207592011,0.465371668338776,0.716515004634857,0.55226868391037,0.546515464782715,0.629539489746094,0.326460361480713,0.71135401725769,0.622413873672485,0.332492500543594,0.442558825016022,0.832820653915405,0.43326273560524,0.253677129745483,0.864830136299133,0.359361976385117,0.403540849685669,0.841435432434082,0.55226868391037,0.546515464782715,0.629539489746094,0.73315954208374,0.385823279619217,0.560015439987183,0.558921158313751,0.665096402168274,0.495231002569199,0.438516169786453,0.445428669452667,0.78057461977005,0.468060702085495,0.485270440578461,0.738533437252045,0.564897835254669,0.311235696077347,0.764213740825653,0.438516169786453,0.445428669452667,0.78057461977005,0.329243689775467,0.565854668617249,0.755914628505707,0.468060702085495,0.485270440578461,0.738533437252045,0.326419830322266,0.588403582572937,0.739750742912292,0.329243689775467,0.565854668617249,0.755914628505707,0.171767801046371,0.695141613483429,0.698049902915955,0.704671502113342,0.0557599477469921,0.70733916759491,0.687661051750183,0.124381601810455,0.715298175811768,0.627322196960449,0.0993004590272903,0.772402822971344,0.649057626724243,0.019175423309207,0.760497450828552,0.785053551197052,0.0646917521953583,0.616040349006653,0.69377863407135,0.079524889588356,0.715784072875977,0.801903784275055,0.0476725623011589,0.595548033714294,0.785053551197052,0.0646917521953583,0.616040349006653,0.755627393722534,0.0988272577524185,0.647503077983856,0.494280934333801,0.145264178514481,0.857079088687897,0.468657284975052,0.0150072183459997,0.883252561092377, +0.69377863407135,0.079524889588356,0.715784072875977,0.704671502113342,0.0557599477469921,0.70733916759491,0.755627393722534,0.0988272577524185,0.647503077983856,0.687661051750183,0.124381601810455,0.715298175811768,0.583012282848358,0.0535014979541302,0.810699760913849,0.550437569618225,0.0859284475445747,0.830442428588867,0.505752682685852,0.142331466078758,0.850855946540833,0.505752682685852,0.142331466078758,0.850855946540833,0.438692659139633,0.0839320048689842,0.894708931446075,0.494280934333801,0.145264178514481,0.857079088687897,0.687661051750183,0.124381601810455,0.715298175811768,0.653038203716278,0.0440272316336632,0.756044089794159,0.61928778886795,0.0833390355110168,0.780728578567505,0.536041676998138,0.0606099404394627,0.842012822628021,0.61928778886795,0.0833390355110168,0.780728578567505,0.653038203716278,0.0440272316336632,0.756044089794159,0.537648975849152,0.256835967302322,0.803099393844604,0.493134558200836,0.24052806198597,0.836040914058685,0.429647266864777,0.381031900644302,0.818668305873871,0.401104062795639,0.263095736503601,0.877437174320221,0.374842017889023,0.267073601484299,0.887786626815796,0.493134558200836,0.24052806198597,0.836040914058685,0.535521686077118,0.372111052274704,0.758122503757477,0.537648975849152,0.256835967302322,0.803099393844604,0.429647266864777,0.381031900644302,0.818668305873871,0.600361585617065,-0.239592432975769,0.762994945049286,0.631619811058044,-0.40450394153595,0.661387026309967,0.607045531272888,-0.310428470373154,0.731525599956512,0.62407648563385,-0.142522349953651,0.768254995346069,0.600361585617065,-0.239592432975769,0.762994945049286,0.561366975307465,-0.0813280418515205,0.823561012744904,0.686942994594574,0.597724914550781,0.413320749998093,0.807080686092377,0.478881925344467,0.345387727022171,0.718838751316071,0.447759926319122,0.531772255897522,0.586133718490601,0.352526694536209,0.729501187801361,0.570243775844574,0.494201123714447,0.656191349029541,0.718838751316071,0.447759926319122,0.531772255897522,0.510155975818634,0.146026700735092,0.847594797611237, +0.465707331895828,0.267070382833481,0.843676507472992,0.630693793296814,0.157474085688591,0.759886205196381,0.391959398984909,0.411307096481323,0.822918057441711,0.586133718490601,0.352526694536209,0.729501187801361,0.465707331895828,0.267070382833481,0.843676507472992,0.618108093738556,-0.0159214250743389,0.785931766033173,0.57584536075592,0.0158021338284016,0.817405819892883,0.510155975818634,0.146026700735092,0.847594797611237,0.57584536075592,0.0158021338284016,0.817405819892883,0.62407648563385,-0.142522349953651,0.768254995346069,0.561366975307465,-0.0813280418515205,0.823561012744904,0.383404433727264,0.305079579353333,0.871738195419312,0.43326273560524,0.253677129745483,0.864830136299133,0.332492500543594,0.442558825016022,0.832820653915405,0.383404433727264,0.305079579353333,0.871738195419312,0.332492500543594,0.442558825016022,0.832820653915405,0.430257856845856,0.354637861251831,0.830126523971558,0.430257856845856,0.354637861251831,0.830126523971558,0.357616394758224,0.499146699905396,0.789279997348785,0.438516169786453,0.445428669452667,0.78057461977005,0.777497112751007,0.619056046009064,0.11075958609581,0.728622317314148,0.667804062366486,0.152141824364662,0.655722379684448,0.750401079654694,0.0832246690988541,0.562582015991211,0.822545289993286,0.0831891745328903,0.722987413406372,0.685048818588257,0.0894268378615379,0.655722379684448,0.750401079654694,0.0832246690988541,0.562582015991211,0.822545289993286,0.0831891745328903,0.412384271621704,0.904653489589691,0.107429757714272,0.603003799915314,0.786662101745605,0.13247261941433,0.603003799915314,0.786662101745605,0.13247261941433,0.412384271621704,0.904653489589691,0.107429757714272,0.476240038871765,0.861734807491302,0.174951985478401,0.476240038871765,0.861734807491302,0.174951985478401,0.416014701128006,0.876717567443848,0.241449698805809,0.641768157482147,0.734207570552826,0.221523627638817,0.359088182449341,0.861209034919739,0.359686434268951,0.605176150798798,0.713837265968323,0.352417439222336,0.416014701128006,0.876717567443848,0.241449698805809, +0.339624971151352,0.794077634811401,0.504078805446625,0.558921158313751,0.665096402168274,0.495231002569199,0.359088182449341,0.861209034919739,0.359686434268951,0.326460361480713,0.71135401725769,0.622413873672485,0.239537984132767,0.730198919773102,0.639867901802063,0.326661229133606,0.564052522182465,0.758377909660339,0.332492500543594,0.442558825016022,0.832820653915405,0.359361976385117,0.403540849685669,0.841435432434082,0.326661229133606,0.564052522182465,0.758377909660339,0.326460361480713,0.71135401725769,0.622413873672485,0.55226868391037,0.546515464782715,0.629539489746094,0.339624971151352,0.794077634811401,0.504078805446625,0.55226868391037,0.546515464782715,0.629539489746094,0.558921158313751,0.665096402168274,0.495231002569199,0.339624971151352,0.794077634811401,0.504078805446625,0.329243689775467,0.565854668617249,0.755914628505707,0.438516169786453,0.445428669452667,0.78057461977005,0.357616394758224,0.499146699905396,0.789279997348785,0.329243689775467,0.565854668617249,0.755914628505707,0.247834339737892,0.619160056114197,0.745130062103271,0.171767801046371,0.695141613483429,0.698049902915955,0.785053551197052,0.0646917521953583,0.616040349006653,0.649057626724243,0.019175423309207,0.760497450828552,0.755627393722534,0.0988272577524185,0.647503077983856,0.649057626724243,0.019175423309207,0.760497450828552,0.69377863407135,0.079524889588356,0.715784072875977,0.468657284975052,0.0150072183459997,0.883252561092377,0.438692659139633,0.0839320048689842,0.894708931446075,0.468657284975052,0.0150072183459997,0.883252561092377,0.494280934333801,0.145264178514481,0.857079088687897,0.653038203716278,0.0440272316336632,0.756044089794159,0.687661051750183,0.124381601810455,0.715298175811768,0.755627393722534,0.0988272577524185,0.647503077983856,0.505752682685852,0.142331466078758,0.850855946540833,0.550437569618225,0.0859284475445747,0.830442428588867,0.438692659139633,0.0839320048689842,0.894708931446075,0.536041676998138,0.0606099404394627,0.842012822628021,0.653038203716278,0.0440272316336632,0.756044089794159, +0.518881916999817,-0.0132392961531878,0.854743301868439,0.493134558200836,0.24052806198597,0.836040914058685,0.537648975849152,0.256835967302322,0.803099393844604,0.542654573917389,0.272398322820663,0.794559717178345,0.537648975849152,0.256835967302322,0.803099393844604,0.535521686077118,0.372111052274704,0.758122503757477,0.542654573917389,0.272398322820663,0.794559717178345,0.600361585617065,-0.239592432975769,0.762994945049286,0.607045531272888,-0.310428470373154,0.731525599956512,0.541629612445831,-0.189620405435562,0.818951368331909,0.541629612445831,-0.189620405435562,0.818951368331909,0.561366975307465,-0.0813280418515205,0.823561012744904,0.600361585617065,-0.239592432975769,0.762994945049286,0.570243775844574,0.494201123714447,0.656191349029541,0.686942994594574,0.597724914550781,0.413320749998093,0.718838751316071,0.447759926319122,0.531772255897522,0.586133718490601,0.352526694536209,0.729501187801361,0.391959398984909,0.411307096481323,0.822918057441711,0.570243775844574,0.494201123714447,0.656191349029541,0.373138278722763,0.285593122243881,0.882725477218628,0.465707331895828,0.267070382833481,0.843676507472992,0.510155975818634,0.146026700735092,0.847594797611237,0.391959398984909,0.411307096481323,0.822918057441711,0.465707331895828,0.267070382833481,0.843676507472992,0.373138278722763,0.285593122243881,0.882725477218628,0.510155975818634,0.146026700735092,0.847594797611237,0.57584536075592,0.0158021338284016,0.817405819892883,0.54767781496048,0.186538800597191,0.815629959106445,0.544824242591858,0.177268654108047,0.819598853588104,0.57584536075592,0.0158021338284016,0.817405819892883,0.561366975307465,-0.0813280418515205,0.823561012744904,0.357616394758224,0.499146699905396,0.789279997348785,0.430257856845856,0.354637861251831,0.830126523971558,0.332492500543594,0.442558825016022,0.832820653915405,0.296633422374725,0.942808270454407,0.152056530117989,0.476240038871765,0.861734807491302,0.174951985478401,0.412384271621704,0.904653489589691,0.107429757714272,0.476240038871765,0.861734807491302,0.174951985478401, +0.296633422374725,0.942808270454407,0.152056530117989,0.416014701128006,0.876717567443848,0.241449698805809,0.359088182449341,0.861209034919739,0.359686434268951,0.416014701128006,0.876717567443848,0.241449698805809,0.240029871463776,0.946222484111786,0.216906979680061,0.359088182449341,0.861209034919739,0.359686434268951,0.220693409442902,0.915505886077881,0.336367696523666,0.339624971151352,0.794077634811401,0.504078805446625,0.326460361480713,0.71135401725769,0.622413873672485,0.2047328799963,0.840445399284363,0.50173282623291,0.239537984132767,0.730198919773102,0.639867901802063,0.239537984132767,0.730198919773102,0.639867901802063,0.166751265525818,0.738078057765961,0.653784871101379,0.326661229133606,0.564052522182465,0.758377909660339,0.326661229133606,0.564052522182465,0.758377909660339,0.247834339737892,0.619160056114197,0.745130062103271,0.332492500543594,0.442558825016022,0.832820653915405,0.326460361480713,0.71135401725769,0.622413873672485,0.339624971151352,0.794077634811401,0.504078805446625,0.217234596610069,0.87262350320816,0.437421083450317,0.329243689775467,0.565854668617249,0.755914628505707,0.357616394758224,0.499146699905396,0.789279997348785,0.247834339737892,0.619160056114197,0.745130062103271,0.11349905282259,0.769034266471863,0.629050135612488,0.171767801046371,0.695141613483429,0.698049902915955,0.247834339737892,0.619160056114197,0.745130062103271,0.653038203716278,0.0440272316336632,0.756044089794159,0.755627393722534,0.0988272577524185,0.647503077983856,0.649057626724243,0.019175423309207,0.760497450828552,0.649057626724243,0.019175423309207,0.760497450828552,0.518881916999817,-0.0132392961531878,0.854743301868439,0.653038203716278,0.0440272316336632,0.756044089794159,0.607045531272888,-0.310428470373154,0.731525599956512,0.506657183170319,-0.185250729322433,0.842009782791138,0.541629612445831,-0.189620405435562,0.818951368331909,0.541629612445831,-0.189620405435562,0.818951368331909,0.462985634803772,0.0923797339200974,0.881538510322571,0.561366975307465,-0.0813280418515205,0.823561012744904, +0.443148970603943,0.223772257566452,0.868069589138031,0.373138278722763,0.285593122243881,0.882725477218628,0.510155975818634,0.146026700735092,0.847594797611237,0.391959398984909,0.411307096481323,0.822918057441711,0.373138278722763,0.285593122243881,0.882725477218628,0.236143693327904,0.409129083156586,0.881390631198883,0.544824242591858,0.177268654108047,0.819598853588104,0.54767781496048,0.186538800597191,0.815629959106445,0.57584536075592,0.0158021338284016,0.817405819892883,0.443148970603943,0.223772257566452,0.868069589138031,0.510155975818634,0.146026700735092,0.847594797611237,0.54767781496048,0.186538800597191,0.815629959106445,0.561366975307465,-0.0813280418515205,0.823561012744904,0.462985634803772,0.0923797339200974,0.881538510322571,0.544824242591858,0.177268654108047,0.819598853588104,0.357616394758224,0.499146699905396,0.789279997348785,0.332492500543594,0.442558825016022,0.832820653915405,0.247834339737892,0.619160056114197,0.745130062103271,0.240029871463776,0.946222484111786,0.216906979680061,0.416014701128006,0.876717567443848,0.241449698805809,0.296633422374725,0.942808270454407,0.152056530117989,0.220693409442902,0.915505886077881,0.336367696523666,0.359088182449341,0.861209034919739,0.359686434268951,0.240029871463776,0.946222484111786,0.216906979680061,0.339624971151352,0.794077634811401,0.504078805446625,0.220693409442902,0.915505886077881,0.336367696523666,0.217234596610069,0.87262350320816,0.437421083450317,0.217234596610069,0.87262350320816,0.437421083450317,0.2047328799963,0.840445399284363,0.50173282623291,0.326460361480713,0.71135401725769,0.622413873672485,0.149909824132919,0.819837331771851,0.552624344825745,0.239537984132767,0.730198919773102,0.639867901802063,0.2047328799963,0.840445399284363,0.50173282623291,0.166751265525818,0.738078057765961,0.653784871101379,0.239537984132767,0.730198919773102,0.639867901802063,0.149909824132919,0.819837331771851,0.552624344825745,0.326661229133606,0.564052522182465,0.758377909660339,0.166751265525818,0.738078057765961,0.653784871101379,0.247834339737892,0.619160056114197,0.745130062103271, +0.11349905282259,0.769034266471863,0.629050135612488,0.247834339737892,0.619160056114197,0.745130062103271,0.166751265525818,0.738078057765961,0.653784871101379,0.506657183170319,-0.185250729322433,0.842009782791138,0.607045531272888,-0.310428470373154,0.731525599956512,0.611037969589233,-0.383561313152313,0.692468881607056,0.506657183170319,-0.185250729322433,0.842009782791138,0.452125489711761,0.0100295357406139,0.891897857189178,0.541629612445831,-0.189620405435562,0.818951368331909,0.462985634803772,0.0923797339200974,0.881538510322571,0.541629612445831,-0.189620405435562,0.818951368331909,0.452125489711761,0.0100295357406139,0.891897857189178,0.317232072353363,0.320876151323318,0.892413675785065,0.373138278722763,0.285593122243881,0.882725477218628,0.443148970603943,0.223772257566452,0.868069589138031,0.373138278722763,0.285593122243881,0.882725477218628,0.317232072353363,0.320876151323318,0.892413675785065,0.236143693327904,0.409129083156586,0.881390631198883,0.54767781496048,0.186538800597191,0.815629959106445,0.544824242591858,0.177268654108047,0.819598853588104,0.609768748283386,0.264898717403412,0.747001051902771,0.443148970603943,0.223772257566452,0.868069589138031,0.54767781496048,0.186538800597191,0.815629959106445,0.412739425897598,0.285188913345337,0.865051090717316,0.544824242591858,0.177268654108047,0.819598853588104,0.462985634803772,0.0923797339200974,0.881538510322571,0.501176774501801,0.329582273960114,0.800123333930969,0.17295815050602,0.954431116580963,0.243200927972794,0.220693409442902,0.915505886077881,0.336367696523666,0.240029871463776,0.946222484111786,0.216906979680061,0.217234596610069,0.87262350320816,0.437421083450317,0.220693409442902,0.915505886077881,0.336367696523666,0.132118299603462,0.948549449443817,0.287747502326965,0.217234596610069,0.87262350320816,0.437421083450317,0.152761861681938,0.916894972324371,0.368737459182739,0.2047328799963,0.840445399284363,0.50173282623291,0.0779441520571709,0.906524062156677,0.414896100759506,0.149909824132919,0.819837331771851,0.552624344825745, +0.2047328799963,0.840445399284363,0.50173282623291,0.0687392801046371,0.866661667823792,0.494137912988663,0.166751265525818,0.738078057765961,0.653784871101379,0.149909824132919,0.819837331771851,0.552624344825745,0.089270606637001,0.832935512065887,0.546121835708618,0.11349905282259,0.769034266471863,0.629050135612488,0.166751265525818,0.738078057765961,0.653784871101379,0.506657183170319,-0.185250729322433,0.842009782791138,0.611037969589233,-0.383561313152313,0.692468881607056,0.555144548416138,-0.320087283849716,0.767696976661682,0.506657183170319,-0.185250729322433,0.842009782791138,0.260372012853622,0.263382196426392,0.928889691829681,0.452125489711761,0.0100295357406139,0.891897857189178,0.462985634803772,0.0923797339200974,0.881538510322571,0.452125489711761,0.0100295357406139,0.891897857189178,0.354218602180481,0.299696266651154,0.885839283466339,0.443148970603943,0.223772257566452,0.868069589138031,0.412739425897598,0.285188913345337,0.865051090717316,0.317232072353363,0.320876151323318,0.892413675785065,0.544824242591858,0.177268654108047,0.819598853588104,0.501176774501801,0.329582273960114,0.800123333930969,0.609768748283386,0.264898717403412,0.747001051902771,0.54767781496048,0.186538800597191,0.815629959106445,0.609768748283386,0.264898717403412,0.747001051902771,0.606697916984558,0.173430144786835,0.775783121585846,0.606697916984558,0.173430144786835,0.775783121585846,0.412739425897598,0.285188913345337,0.865051090717316,0.54767781496048,0.186538800597191,0.815629959106445,0.501176774501801,0.329582273960114,0.800123333930969,0.462985634803772,0.0923797339200974,0.881538510322571,0.354218602180481,0.299696266651154,0.885839283466339,0.17295815050602,0.954431116580963,0.243200927972794,0.132118299603462,0.948549449443817,0.287747502326965,0.220693409442902,0.915505886077881,0.336367696523666,0.152761861681938,0.916894972324371,0.368737459182739,0.217234596610069,0.87262350320816,0.437421083450317,0.132118299603462,0.948549449443817,0.287747502326965,0.152761861681938,0.916894972324371,0.368737459182739, +0.0779441520571709,0.906524062156677,0.414896100759506,0.2047328799963,0.840445399284363,0.50173282623291,0.149909824132919,0.819837331771851,0.552624344825745,0.0779441520571709,0.906524062156677,0.414896100759506,0.0687392801046371,0.866661667823792,0.494137912988663,0.0687392801046371,0.866661667823792,0.494137912988663,0.089270606637001,0.832935512065887,0.546121835708618,0.166751265525818,0.738078057765961,0.653784871101379,0.089270606637001,0.832935512065887,0.546121835708618,0.0462571904063225,0.858748018741608,0.51030570268631,0.11349905282259,0.769034266471863,0.629050135612488,0.583273649215698,-0.399355500936508,0.707323729991913,0.555144548416138,-0.320087283849716,0.767696976661682,0.611037969589233,-0.383561313152313,0.692468881607056,0.506657183170319,-0.185250729322433,0.842009782791138,0.555144548416138,-0.320087283849716,0.767696976661682,0.489455461502075,-0.0563844032585621,0.87020343542099,0.260372012853622,0.263382196426392,0.928889691829681,0.506657183170319,-0.185250729322433,0.842009782791138,0.354876548051834,0.145975634455681,0.923446595668793,0.354218602180481,0.299696266651154,0.885839283466339,0.452125489711761,0.0100295357406139,0.891897857189178,0.260372012853622,0.263382196426392,0.928889691829681,0.606697916984558,0.173430144786835,0.775783121585846,0.609768748283386,0.264898717403412,0.747001051902771,0.501176774501801,0.329582273960114,0.800123333930969,0.412739425897598,0.285188913345337,0.865051090717316,0.606697916984558,0.173430144786835,0.775783121585846,0.461415380239487,0.202915489673615,0.863667190074921,0.501176774501801,0.329582273960114,0.800123333930969,0.354218602180481,0.299696266651154,0.885839283466339,0.341684430837631,0.436214864253998,0.832447111606598,0.132118299603462,0.948549449443817,0.287747502326965,0.0815758481621742,0.944970607757568,0.316821426153183,0.152761861681938,0.916894972324371,0.368737459182739,0.0815758481621742,0.944970607757568,0.316821426153183,0.0779441520571709,0.906524062156677,0.414896100759506,0.152761861681938,0.916894972324371,0.368737459182739, +0.0234814956784248,0.913554191589355,0.406038463115692,0.0687392801046371,0.866661667823792,0.494137912988663,0.0779441520571709,0.906524062156677,0.414896100759506,0.089270606637001,0.832935512065887,0.546121835708618,0.0687392801046371,0.866661667823792,0.494137912988663,0.0184278078377247,0.914194524288177,0.404856353998184,0.0462571904063225,0.858748018741608,0.51030570268631,0.089270606637001,0.832935512065887,0.546121835708618,0.0184278078377247,0.914194524288177,0.404856353998184,0.555144548416138,-0.320087283849716,0.767696976661682,0.583273649215698,-0.399355500936508,0.707323729991913,0.483471751213074,-0.259115725755692,0.836130321025848,0.555144548416138,-0.320087283849716,0.767696976661682,0.483471751213074,-0.259115725755692,0.836130321025848,0.489455461502075,-0.0563844032585621,0.87020343542099,0.506657183170319,-0.185250729322433,0.842009782791138,0.489455461502075,-0.0563844032585621,0.87020343542099,0.354876548051834,0.145975634455681,0.923446595668793,0.260372012853622,0.263382196426392,0.928889691829681,0.354876548051834,0.145975634455681,0.923446595668793,0.229317963123322,0.48029363155365,0.846599757671356,0.354218602180481,0.299696266651154,0.885839283466339,0.260372012853622,0.263382196426392,0.928889691829681,0.341684430837631,0.436214864253998,0.832447111606598,0.606697916984558,0.173430144786835,0.775783121585846,0.501176774501801,0.329582273960114,0.800123333930969,0.579363107681274,0.198491036891937,0.790531158447266,0.606697916984558,0.173430144786835,0.775783121585846,0.616427898406982,0.066298708319664,0.784615159034729,0.461415380239487,0.202915489673615,0.863667190074921,0.579363107681274,0.198491036891937,0.790531158447266,0.501176774501801,0.329582273960114,0.800123333930969,0.341684430837631,0.436214864253998,0.832447111606598,0.0779441520571709,0.906524062156677,0.414896100759506,0.0815758481621742,0.944970607757568,0.316821426153183,0.0210793167352676,0.934243619441986,0.356011837720871,0.0687392801046371,0.866661667823792,0.494137912988663,0.0234814956784248,0.913554191589355,0.406038463115692, +0.0184278078377247,0.914194524288177,0.404856353998184,0.0210793167352676,0.934243619441986,0.356011837720871,0.0234814956784248,0.913554191589355,0.406038463115692,0.0779441520571709,0.906524062156677,0.414896100759506,0.527965247631073,-0.397306889295578,0.75059962272644,0.483471751213074,-0.259115725755692,0.836130321025848,0.583273649215698,-0.399355500936508,0.707323729991913,0.483471751213074,-0.259115725755692,0.836130321025848,0.251245468854904,0.315998136997223,0.914888381958008,0.489455461502075,-0.0563844032585621,0.87020343542099,0.489455461502075,-0.0563844032585621,0.87020343542099,0.229317963123322,0.48029363155365,0.846599757671356,0.354876548051834,0.145975634455681,0.923446595668793,0.341684430837631,0.436214864253998,0.832447111606598,0.260372012853622,0.263382196426392,0.928889691829681,0.229317963123322,0.48029363155365,0.846599757671356,0.606697916984558,0.173430144786835,0.775783121585846,0.579363107681274,0.198491036891937,0.790531158447266,0.616427898406982,0.066298708319664,0.784615159034729,0.579363107681274,0.198491036891937,0.790531158447266,0.341684430837631,0.436214864253998,0.832447111606598,0.629023253917694,0.0887856855988503,0.772299647331238,0.0234814956784248,0.913554191589355,0.406038463115692,0.0210793167352676,0.934243619441986,0.356011837720871,0.0184278078377247,0.914194524288177,0.404856353998184,0.527650952339172,-0.313881546258926,0.789343178272247,0.483471751213074,-0.259115725755692,0.836130321025848,0.527965247631073,-0.397306889295578,0.75059962272644,0.583273649215698,-0.399355500936508,0.707323729991913,0.581063508987427,-0.490697354078293,0.649292767047882,0.527965247631073,-0.397306889295578,0.75059962272644,0.251245468854904,0.315998136997223,0.914888381958008,0.483471751213074,-0.259115725755692,0.836130321025848,0.385940849781036,0.166916713118553,0.907297253608704,0.251245468854904,0.315998136997223,0.914888381958008,0.229317963123322,0.48029363155365,0.846599757671356,0.489455461502075,-0.0563844032585621,0.87020343542099,0.341684430837631,0.436214864253998,0.832447111606598, +0.229317963123322,0.48029363155365,0.846599757671356,0.349536031484604,0.43546250462532,0.829576313495636,0.579363107681274,0.198491036891937,0.790531158447266,0.629023253917694,0.0887856855988503,0.772299647331238,0.616427898406982,0.066298708319664,0.784615159034729,0.629023253917694,0.0887856855988503,0.772299647331238,0.341684430837631,0.436214864253998,0.832447111606598,0.595453381538391,0.193755432963371,0.779675543308258,0.527650952339172,-0.313881546258926,0.789343178272247,0.385940849781036,0.166916713118553,0.907297253608704,0.483471751213074,-0.259115725755692,0.836130321025848,0.527650952339172,-0.313881546258926,0.789343178272247,0.527965247631073,-0.397306889295578,0.75059962272644,0.501362562179565,0.00216983235441148,0.86523449420929,0.527965247631073,-0.397306889295578,0.75059962272644,0.581063508987427,-0.490697354078293,0.649292767047882,0.561288416385651,-0.528102040290833,0.637231111526489,0.251245468854904,0.315998136997223,0.914888381958008,0.385940849781036,0.166916713118553,0.907297253608704,0.0968781933188438,0.632475852966309,0.768497705459595,0.229317963123322,0.48029363155365,0.846599757671356,0.251245468854904,0.315998136997223,0.914888381958008,0.148330092430115,0.639473676681519,0.754368245601654,0.384340524673462,0.496930003166199,0.778037846088409,0.349536031484604,0.43546250462532,0.829576313495636,0.229317963123322,0.48029363155365,0.846599757671356,0.341684430837631,0.436214864253998,0.832447111606598,0.349536031484604,0.43546250462532,0.829576313495636,0.595453381538391,0.193755432963371,0.779675543308258,0.616427898406982,0.066298708319664,0.784615159034729,0.629023253917694,0.0887856855988503,0.772299647331238,0.556739687919617,0.103391379117966,0.824227511882782,0.629023253917694,0.0887856855988503,0.772299647331238,0.595453381538391,0.193755432963371,0.779675543308258,0.651140987873077,-0.0331539548933506,0.758232176303864,0.501362562179565,0.00216983235441148,0.86523449420929,0.385940849781036,0.166916713118553,0.907297253608704,0.527650952339172,-0.313881546258926,0.789343178272247, +0.501362562179565,0.00216983235441148,0.86523449420929,0.527965247631073,-0.397306889295578,0.75059962272644,0.387393772602081,-0.0588686764240265,0.920032858848572,0.561288416385651,-0.528102040290833,0.637231111526489,0.456208437681198,-0.278313875198364,0.8452308177948,0.527965247631073,-0.397306889295578,0.75059962272644,0.246760696172714,0.580853044986725,0.775705337524414,0.0968781933188438,0.632475852966309,0.768497705459595,0.385940849781036,0.166916713118553,0.907297253608704,0.148330092430115,0.639473676681519,0.754368245601654,0.251245468854904,0.315998136997223,0.914888381958008,0.0968781933188438,0.632475852966309,0.768497705459595,0.229317963123322,0.48029363155365,0.846599757671356,0.148330092430115,0.639473676681519,0.754368245601654,0.384340524673462,0.496930003166199,0.778037846088409,0.384340524673462,0.496930003166199,0.778037846088409,0.658372163772583,0.0440647415816784,0.751401543617249,0.349536031484604,0.43546250462532,0.829576313495636,0.658372163772583,0.0440647415816784,0.751401543617249,0.595453381538391,0.193755432963371,0.779675543308258,0.349536031484604,0.43546250462532,0.829576313495636,0.556739687919617,0.103391379117966,0.824227511882782,0.629023253917694,0.0887856855988503,0.772299647331238,0.651140987873077,-0.0331539548933506,0.758232176303864,0.595453381538391,0.193755432963371,0.779675543308258,0.658372163772583,0.0440647415816784,0.751401543617249,0.651140987873077,-0.0331539548933506,0.758232176303864,0.501362562179565,0.00216983235441148,0.86523449420929,0.246760696172714,0.580853044986725,0.775705337524414,0.385940849781036,0.166916713118553,0.907297253608704,0.387393772602081,-0.0588686764240265,0.920032858848572,0.527965247631073,-0.397306889295578,0.75059962272644,0.456208437681198,-0.278313875198364,0.8452308177948,0.501362562179565,0.00216983235441148,0.86523449420929,0.387393772602081,-0.0588686764240265,0.920032858848572,0.201137691736221,0.489602714776993,0.848429560661316,0.561288416385651,-0.528102040290833,0.637231111526489,0.523906707763672,-0.490512281656265,0.696361482143402, +0.456208437681198,-0.278313875198364,0.8452308177948,0.0968781933188438,0.632475852966309,0.768497705459595,0.246760696172714,0.580853044986725,0.775705337524414,0.280737727880478,0.629370093345642,0.724623739719391,0.148330092430115,0.639473676681519,0.754368245601654,0.0968781933188438,0.632475852966309,0.768497705459595,0.195100039243698,0.589498221874237,0.783854365348816,0.486842542886734,0.369055807590485,0.791695654392242,0.384340524673462,0.496930003166199,0.778037846088409,0.148330092430115,0.639473676681519,0.754368245601654,0.658372163772583,0.0440647415816784,0.751401543617249,0.384340524673462,0.496930003166199,0.778037846088409,0.716582536697388,0.0821543484926224,0.692647099494934,0.651140987873077,-0.0331539548933506,0.758232176303864,0.658372163772583,0.0440647415816784,0.751401543617249,0.649603962898254,-0.077555887401104,0.756306648254395,0.246760696172714,0.580853044986725,0.775705337524414,0.501362562179565,0.00216983235441148,0.86523449420929,0.201137691736221,0.489602714776993,0.848429560661316,0.456208437681198,-0.278313875198364,0.8452308177948,0.196381583809853,0.395789861679077,0.897097885608673,0.387393772602081,-0.0588686764240265,0.920032858848572,0.196381583809853,0.395789861679077,0.897097885608673,0.201137691736221,0.489602714776993,0.848429560661316,0.387393772602081,-0.0588686764240265,0.920032858848572,0.55955559015274,-0.632047951221466,0.5361088514328,0.523906707763672,-0.490512281656265,0.696361482143402,0.561288416385651,-0.528102040290833,0.637231111526489,0.523906707763672,-0.490512281656265,0.696361482143402,0.460098832845688,-0.393140435218811,0.796083867549896,0.456208437681198,-0.278313875198364,0.8452308177948,0.246760696172714,0.580853044986725,0.775705337524414,0.268215745687485,0.588493645191193,0.762715756893158,0.280737727880478,0.629370093345642,0.724623739719391,0.280737727880478,0.629370093345642,0.724623739719391,0.195100039243698,0.589498221874237,0.783854365348816,0.0968781933188438,0.632475852966309,0.768497705459595,0.148330092430115,0.639473676681519,0.754368245601654, +0.195100039243698,0.589498221874237,0.783854365348816,0.486842542886734,0.369055807590485,0.791695654392242,0.486842542886734,0.369055807590485,0.791695654392242,0.716582536697388,0.0821543484926224,0.692647099494934,0.384340524673462,0.496930003166199,0.778037846088409,0.658372163772583,0.0440647415816784,0.751401543617249,0.716582536697388,0.0821543484926224,0.692647099494934,0.76087886095047,-0.220012471079826,0.610456943511963,0.658372163772583,0.0440647415816784,0.751401543617249,0.76087886095047,-0.220012471079826,0.610456943511963,0.649603962898254,-0.077555887401104,0.756306648254395,0.246760696172714,0.580853044986725,0.775705337524414,0.201137691736221,0.489602714776993,0.848429560661316,0.268215745687485,0.588493645191193,0.762715756893158,0.456208437681198,-0.278313875198364,0.8452308177948,0.266779750585556,0.258924096822739,0.928324699401855,0.196381583809853,0.395789861679077,0.897097885608673,0.196381583809853,0.395789861679077,0.897097885608673,0.0726222768425941,0.720702946186066,0.689429581165314,0.201137691736221,0.489602714776993,0.848429560661316,0.539355099201202,-0.563739776611328,0.625534415245056,0.523906707763672,-0.490512281656265,0.696361482143402,0.55955559015274,-0.632047951221466,0.5361088514328,0.539355099201202,-0.563739776611328,0.625534415245056,0.460098832845688,-0.393140435218811,0.796083867549896,0.523906707763672,-0.490512281656265,0.696361482143402,0.456208437681198,-0.278313875198364,0.8452308177948,0.460098832845688,-0.393140435218811,0.796083867549896,0.266779750585556,0.258924096822739,0.928324699401855,0.268215745687485,0.588493645191193,0.762715756893158,0.450572103261948,0.415130019187927,0.790349125862122,0.280737727880478,0.629370093345642,0.724623739719391,0.280737727880478,0.629370093345642,0.724623739719391,0.610235512256622,0.130887433886528,0.781332731246948,0.195100039243698,0.589498221874237,0.783854365348816,0.486842542886734,0.369055807590485,0.791695654392242,0.195100039243698,0.589498221874237,0.783854365348816,0.610235512256622,0.130887433886528,0.781332731246948, +0.486842542886734,0.369055807590485,0.791695654392242,0.731617152690887,-0.13545535504818,0.6681227684021,0.716582536697388,0.0821543484926224,0.692647099494934,0.731617152690887,-0.13545535504818,0.6681227684021,0.76087886095047,-0.220012471079826,0.610456943511963,0.716582536697388,0.0821543484926224,0.692647099494934,0.649603962898254,-0.077555887401104,0.756306648254395,0.76087886095047,-0.220012471079826,0.610456943511963,0.588877975940704,-0.0419148206710815,0.807134330272675,0.201137691736221,0.489602714776993,0.848429560661316,0.0726222768425941,0.720702946186066,0.689429581165314,0.268215745687485,0.588493645191193,0.762715756893158,0.196381583809853,0.395789861679077,0.897097885608673,0.266779750585556,0.258924096822739,0.928324699401855,0.0718779861927032,0.721548557281494,0.6886225938797,0.196381583809853,0.395789861679077,0.897097885608673,0.0718779861927032,0.721548557281494,0.6886225938797,0.0726222768425941,0.720702946186066,0.689429581165314,0.55955559015274,-0.632047951221466,0.5361088514328,0.562350928783417,-0.698562324047089,0.442461401224136,0.539355099201202,-0.563739776611328,0.625534415245056,0.458874762058258,-0.55887097120285,0.690722107887268,0.460098832845688,-0.393140435218811,0.796083867549896,0.539355099201202,-0.563739776611328,0.625534415245056,0.330279171466827,0.244338363409042,0.911709547042847,0.266779750585556,0.258924096822739,0.928324699401855,0.460098832845688,-0.393140435218811,0.796083867549896,0.450572103261948,0.415130019187927,0.790349125862122,0.268215745687485,0.588493645191193,0.762715756893158,0.67443311214447,0.000339937338139862,0.738335788249969,0.644506096839905,0.213920548558235,0.734063804149628,0.280737727880478,0.629370093345642,0.724623739719391,0.450572103261948,0.415130019187927,0.790349125862122,0.610235512256622,0.130887433886528,0.781332731246948,0.280737727880478,0.629370093345642,0.724623739719391,0.644506096839905,0.213920548558235,0.734063804149628,0.486842542886734,0.369055807590485,0.791695654392242,0.610235512256622,0.130887433886528,0.781332731246948, +0.731617152690887,-0.13545535504818,0.6681227684021,0.770283162593842,-0.279319792985916,0.573274910449982,0.76087886095047,-0.220012471079826,0.610456943511963,0.731617152690887,-0.13545535504818,0.6681227684021,0.696971654891968,-0.185633108019829,0.69265478849411,0.588877975940704,-0.0419148206710815,0.807134330272675,0.76087886095047,-0.220012471079826,0.610456943511963,0.268215745687485,0.588493645191193,0.762715756893158,0.0726222768425941,0.720702946186066,0.689429581165314,0.229780629277229,0.656552731990814,0.718428254127502,0.127710923552513,0.715286195278168,0.687062859535217,0.0718779861927032,0.721548557281494,0.6886225938797,0.266779750585556,0.258924096822739,0.928324699401855,0.0718779861927032,0.721548557281494,0.6886225938797,0.229780629277229,0.656552731990814,0.718428254127502,0.0726222768425941,0.720702946186066,0.689429581165314,0.548273265361786,-0.763115763664246,0.342126548290253,0.539355099201202,-0.563739776611328,0.625534415245056,0.562350928783417,-0.698562324047089,0.442461401224136,0.460098832845688,-0.393140435218811,0.796083867549896,0.458874762058258,-0.55887097120285,0.690722107887268,0.419081896543503,-0.481297820806503,0.769884824752808,0.507670104503632,-0.673291265964508,0.537540555000305,0.458874762058258,-0.55887097120285,0.690722107887268,0.539355099201202,-0.563739776611328,0.625534415245056,0.330279171466827,0.244338363409042,0.911709547042847,0.127710923552513,0.715286195278168,0.687062859535217,0.266779750585556,0.258924096822739,0.928324699401855,0.330279171466827,0.244338363409042,0.911709547042847,0.460098832845688,-0.393140435218811,0.796083867549896,0.432428479194641,0.0384704992175102,0.90084707736969,0.268215745687485,0.588493645191193,0.762715756893158,0.616689562797546,0.193678647279739,0.763008773326874,0.67443311214447,0.000339937338139862,0.738335788249969,0.644506096839905,0.213920548558235,0.734063804149628,0.450572103261948,0.415130019187927,0.790349125862122,0.67443311214447,0.000339937338139862,0.738335788249969,0.610235512256622,0.130887433886528,0.781332731246948, +0.644506096839905,0.213920548558235,0.734063804149628,0.771955788135529,-0.19215901196003,0.605936467647552,0.770283162593842,-0.279319792985916,0.573274910449982,0.731617152690887,-0.13545535504818,0.6681227684021,0.610235512256622,0.130887433886528,0.781332731246948,0.696971654891968,-0.185633108019829,0.69265478849411,0.76087886095047,-0.220012471079826,0.610456943511963,0.770283162593842,-0.279319792985916,0.573274910449982,0.268215745687485,0.588493645191193,0.762715756893158,0.229780629277229,0.656552731990814,0.718428254127502,0.616689562797546,0.193678647279739,0.763008773326874,0.127710923552513,0.715286195278168,0.687062859535217,0.159491360187531,0.745357513427734,0.647305607795715,0.0718779861927032,0.721548557281494,0.6886225938797,0.229780629277229,0.656552731990814,0.718428254127502,0.0718779861927032,0.721548557281494,0.6886225938797,0.159491360187531,0.745357513427734,0.647305607795715,0.548273265361786,-0.763115763664246,0.342126548290253,0.507670104503632,-0.673291265964508,0.537540555000305,0.539355099201202,-0.563739776611328,0.625534415245056,0.440930634737015,-0.526181578636169,0.72712653875351,0.419081896543503,-0.481297820806503,0.769884824752808,0.458874762058258,-0.55887097120285,0.690722107887268,0.460098832845688,-0.393140435218811,0.796083867549896,0.419081896543503,-0.481297820806503,0.769884824752808,0.432428479194641,0.0384704992175102,0.90084707736969,0.479956954717636,-0.647854208946228,0.591545462608337,0.458874762058258,-0.55887097120285,0.690722107887268,0.507670104503632,-0.673291265964508,0.537540555000305,0.219409421086311,0.690505027770996,0.68924754858017,0.127710923552513,0.715286195278168,0.687062859535217,0.330279171466827,0.244338363409042,0.911709547042847,0.330279171466827,0.244338363409042,0.911709547042847,0.432428479194641,0.0384704992175102,0.90084707736969,0.219409421086311,0.690505027770996,0.68924754858017,0.616689562797546,0.193678647279739,0.763008773326874,0.779988348484039,-0.229973092675209,0.582005500793457,0.67443311214447,0.000339937338139862,0.738335788249969, +0.644506096839905,0.213920548558235,0.734063804149628,0.67443311214447,0.000339937338139862,0.738335788249969,0.771955788135529,-0.19215901196003,0.605936467647552,0.770283162593842,-0.279319792985916,0.573274910449982,0.610235512256622,0.130887433886528,0.781332731246948,0.771955788135529,-0.19215901196003,0.605936467647552,0.696971654891968,-0.185633108019829,0.69265478849411,0.770283162593842,-0.279319792985916,0.573274910449982,0.651851654052734,-0.139659553766251,0.745375394821167,0.616689562797546,0.193678647279739,0.763008773326874,0.229780629277229,0.656552731990814,0.718428254127502,0.491150856018066,0.404509544372559,0.771454930305481,0.127710923552513,0.715286195278168,0.687062859535217,0.180843561887741,0.787971198558807,0.588554859161377,0.159491360187531,0.745357513427734,0.647305607795715,0.229780629277229,0.656552731990814,0.718428254127502,0.159491360187531,0.745357513427734,0.647305607795715,0.491150856018066,0.404509544372559,0.771454930305481,0.548273265361786,-0.763115763664246,0.342126548290253,0.505502700805664,-0.820004880428314,0.268437892198563,0.507670104503632,-0.673291265964508,0.537540555000305,0.440930634737015,-0.526181578636169,0.72712653875351,0.443048715591431,-0.155565544962883,0.882897019386292,0.419081896543503,-0.481297820806503,0.769884824752808,0.440930634737015,-0.526181578636169,0.72712653875351,0.458874762058258,-0.55887097120285,0.690722107887268,0.479956954717636,-0.647854208946228,0.591545462608337,0.432428479194641,0.0384704992175102,0.90084707736969,0.419081896543503,-0.481297820806503,0.769884824752808,0.443048715591431,-0.155565544962883,0.882897019386292,0.479956954717636,-0.647854208946228,0.591545462608337,0.507670104503632,-0.673291265964508,0.537540555000305,0.509215593338013,-0.781410336494446,0.360689848661423,0.219409421086311,0.690505027770996,0.68924754858017,0.180843561887741,0.787971198558807,0.588554859161377,0.127710923552513,0.715286195278168,0.687062859535217,0.219409421086311,0.690505027770996,0.68924754858017,0.432428479194641,0.0384704992175102,0.90084707736969, +0.287937581539154,0.622530579566956,0.727700114250183,0.729331195354462,-0.0616010129451752,0.681381821632385,0.779988348484039,-0.229973092675209,0.582005500793457,0.616689562797546,0.193678647279739,0.763008773326874,0.779988348484039,-0.229973092675209,0.582005500793457,0.788265287876129,-0.303085088729858,0.53551572561264,0.67443311214447,0.000339937338139862,0.738335788249969,0.67443311214447,0.000339937338139862,0.738335788249969,0.788265287876129,-0.303085088729858,0.53551572561264,0.771955788135529,-0.19215901196003,0.605936467647552,0.770283162593842,-0.279319792985916,0.573274910449982,0.771955788135529,-0.19215901196003,0.605936467647552,0.788265287876129,-0.303085088729858,0.53551572561264,0.770500659942627,-0.267281860113144,0.578695893287659,0.651851654052734,-0.139659553766251,0.745375394821167,0.770283162593842,-0.279319792985916,0.573274910449982,0.616689562797546,0.193678647279739,0.763008773326874,0.491150856018066,0.404509544372559,0.771454930305481,0.729331195354462,-0.0616010129451752,0.681381821632385,0.159491360187531,0.745357513427734,0.647305607795715,0.180843561887741,0.787971198558807,0.588554859161377,0.400494009256363,0.544064819812775,0.737290918827057,0.159491360187531,0.745357513427734,0.647305607795715,0.400494009256363,0.544064819812775,0.737290918827057,0.491150856018066,0.404509544372559,0.771454930305481,0.505502700805664,-0.820004880428314,0.268437892198563,0.509215593338013,-0.781410336494446,0.360689848661423,0.507670104503632,-0.673291265964508,0.537540555000305,0.460635542869568,-0.0817416161298752,0.883817315101624,0.443048715591431,-0.155565544962883,0.882897019386292,0.440930634737015,-0.526181578636169,0.72712653875351,0.479956954717636,-0.647854208946228,0.591545462608337,0.453281253576279,-0.589266121387482,0.66880589723587,0.440930634737015,-0.526181578636169,0.72712653875351,0.432428479194641,0.0384704992175102,0.90084707736969,0.443048715591431,-0.155565544962883,0.882897019386292,0.287937581539154,0.622530579566956,0.727700114250183,0.509215593338013,-0.781410336494446,0.360689848661423, +0.46508401632309,-0.757190763950348,0.458648949861526,0.479956954717636,-0.647854208946228,0.591545462608337,0.192708685994148,0.809049844741821,0.555249214172363,0.180843561887741,0.787971198558807,0.588554859161377,0.219409421086311,0.690505027770996,0.68924754858017,0.219409421086311,0.690505027770996,0.68924754858017,0.287937581539154,0.622530579566956,0.727700114250183,0.192708685994148,0.809049844741821,0.555249214172363,0.779988348484039,-0.229973092675209,0.582005500793457,0.729331195354462,-0.0616010129451752,0.681381821632385,0.784030675888062,-0.294109910726547,0.546621382236481,0.788265287876129,-0.303085088729858,0.53551572561264,0.779988348484039,-0.229973092675209,0.582005500793457,0.770500659942627,-0.267281860113144,0.578695893287659,0.770500659942627,-0.267281860113144,0.578695893287659,0.770283162593842,-0.279319792985916,0.573274910449982,0.788265287876129,-0.303085088729858,0.53551572561264,0.687643229961395,0.0550758764147758,0.723956704139709,0.729331195354462,-0.0616010129451752,0.681381821632385,0.491150856018066,0.404509544372559,0.771454930305481,0.400494009256363,0.544064819812775,0.737290918827057,0.180843561887741,0.787971198558807,0.588554859161377,0.340594381093979,0.630708575248718,0.697281956672668,0.687643229961395,0.0550758764147758,0.723956704139709,0.491150856018066,0.404509544372559,0.771454930305481,0.400494009256363,0.544064819812775,0.737290918827057,0.505502700805664,-0.820004880428314,0.268437892198563,0.465915828943253,-0.87953394651413,0.0966556146740913,0.509215593338013,-0.781410336494446,0.360689848661423,0.460635542869568,-0.0817416161298752,0.883817315101624,0.287937581539154,0.622530579566956,0.727700114250183,0.443048715591431,-0.155565544962883,0.882897019386292,0.453281253576279,-0.589266121387482,0.66880589723587,0.460635542869568,-0.0817416161298752,0.883817315101624,0.440930634737015,-0.526181578636169,0.72712653875351,0.479956954717636,-0.647854208946228,0.591545462608337,0.46508401632309,-0.757190763950348,0.458648949861526,0.453281253576279,-0.589266121387482,0.66880589723587, +0.46508401632309,-0.757190763950348,0.458648949861526,0.509215593338013,-0.781410336494446,0.360689848661423,0.453522503376007,-0.864075601100922,0.218381762504578,0.192708685994148,0.809049844741821,0.555249214172363,0.340594381093979,0.630708575248718,0.697281956672668,0.180843561887741,0.787971198558807,0.588554859161377,0.19319985806942,0.75681746006012,0.624420523643494,0.192708685994148,0.809049844741821,0.555249214172363,0.287937581539154,0.622530579566956,0.727700114250183,0.687643229961395,0.0550758764147758,0.723956704139709,0.784030675888062,-0.294109910726547,0.546621382236481,0.729331195354462,-0.0616010129451752,0.681381821632385,0.779988348484039,-0.229973092675209,0.582005500793457,0.784030675888062,-0.294109910726547,0.546621382236481,0.770500659942627,-0.267281860113144,0.578695893287659,0.400494009256363,0.544064819812775,0.737290918827057,0.340594381093979,0.630708575248718,0.697281956672668,0.582367420196533,0.226869687438011,0.780626773834229,0.687643229961395,0.0550758764147758,0.723956704139709,0.400494009256363,0.544064819812775,0.737290918827057,0.582367420196533,0.226869687438011,0.780626773834229,0.465915828943253,-0.87953394651413,0.0966556146740913,0.453522503376007,-0.864075601100922,0.218381762504578,0.509215593338013,-0.781410336494446,0.360689848661423,0.323224812746048,0.524882376194,0.787415981292725,0.287937581539154,0.622530579566956,0.727700114250183,0.460635542869568,-0.0817416161298752,0.883817315101624,0.460635542869568,-0.0817416161298752,0.883817315101624,0.453281253576279,-0.589266121387482,0.66880589723587,0.442673802375793,-0.161201357841492,0.882073640823364,0.444357633590698,-0.632897853851318,0.634024024009705,0.453281253576279,-0.589266121387482,0.66880589723587,0.46508401632309,-0.757190763950348,0.458648949861526,0.46508401632309,-0.757190763950348,0.458648949861526,0.453522503376007,-0.864075601100922,0.218381762504578,0.463462084531784,-0.83923065662384,0.284419775009155,0.321604430675507,0.648777842521667,0.689679443836212,0.340594381093979,0.630708575248718,0.697281956672668, +0.192708685994148,0.809049844741821,0.555249214172363,0.19319985806942,0.75681746006012,0.624420523643494,0.321604430675507,0.648777842521667,0.689679443836212,0.192708685994148,0.809049844741821,0.555249214172363,0.19319985806942,0.75681746006012,0.624420523643494,0.287937581539154,0.622530579566956,0.727700114250183,0.137252122163773,0.803988516330719,0.57858806848526,0.687643229961395,0.0550758764147758,0.723956704139709,0.757671356201172,-0.155192360281944,0.633915841579437,0.784030675888062,-0.294109910726547,0.546621382236481,0.784030675888062,-0.294109910726547,0.546621382236481,0.777174711227417,-0.279720216989517,0.563698351383209,0.770500659942627,-0.267281860113144,0.578695893287659,0.582367420196533,0.226869687438011,0.780626773834229,0.340594381093979,0.630708575248718,0.697281956672668,0.507610857486725,0.355919480323792,0.784635186195374,0.687643229961395,0.0550758764147758,0.723956704139709,0.582367420196533,0.226869687438011,0.780626773834229,0.757671356201172,-0.155192360281944,0.633915841579437,0.465915828943253,-0.87953394651413,0.0966556146740913,0.411533683538437,-0.911254465579987,0.0159684009850025,0.453522503376007,-0.864075601100922,0.218381762504578,0.323224812746048,0.524882376194,0.787415981292725,0.137252122163773,0.803988516330719,0.57858806848526,0.287937581539154,0.622530579566956,0.727700114250183,0.460635542869568,-0.0817416161298752,0.883817315101624,0.442673802375793,-0.161201357841492,0.882073640823364,0.323224812746048,0.524882376194,0.787415981292725,0.444357633590698,-0.632897853851318,0.634024024009705,0.442673802375793,-0.161201357841492,0.882073640823364,0.453281253576279,-0.589266121387482,0.66880589723587,0.46508401632309,-0.757190763950348,0.458648949861526,0.456333547830582,-0.793123245239258,0.403379589319229,0.444357633590698,-0.632897853851318,0.634024024009705,0.463462084531784,-0.83923065662384,0.284419775009155,0.453522503376007,-0.864075601100922,0.218381762504578,0.427903950214386,-0.892446398735046,0.142959669232368,0.456333547830582,-0.793123245239258,0.403379589319229, +0.46508401632309,-0.757190763950348,0.458648949861526,0.463462084531784,-0.83923065662384,0.284419775009155,0.321604430675507,0.648777842521667,0.689679443836212,0.507610857486725,0.355919480323792,0.784635186195374,0.340594381093979,0.630708575248718,0.697281956672668,0.19319985806942,0.75681746006012,0.624420523643494,0.366733968257904,0.535858273506165,0.760501086711884,0.321604430675507,0.648777842521667,0.689679443836212,0.19319985806942,0.75681746006012,0.624420523643494,0.137252122163773,0.803988516330719,0.57858806848526,0.13582681119442,0.778889775276184,0.612275779247284,0.803273677825928,-0.328896880149841,0.496566444635391,0.784030675888062,-0.294109910726547,0.546621382236481,0.757671356201172,-0.155192360281944,0.633915841579437,0.777174711227417,-0.279720216989517,0.563698351383209,0.784030675888062,-0.294109910726547,0.546621382236481,0.797490835189819,-0.335376739501953,0.501528263092041,0.582367420196533,0.226869687438011,0.780626773834229,0.507610857486725,0.355919480323792,0.784635186195374,0.709027945995331,-0.0109826931729913,0.705094754695892,0.582367420196533,0.226869687438011,0.780626773834229,0.709027945995331,-0.0109826931729913,0.705094754695892,0.757671356201172,-0.155192360281944,0.633915841579437,0.427903950214386,-0.892446398735046,0.142959669232368,0.453522503376007,-0.864075601100922,0.218381762504578,0.411533683538437,-0.911254465579987,0.0159684009850025,0.275631487369537,0.496113240718842,0.823346078395844,0.137252122163773,0.803988516330719,0.57858806848526,0.323224812746048,0.524882376194,0.787415981292725,0.275631487369537,0.496113240718842,0.823346078395844,0.323224812746048,0.524882376194,0.787415981292725,0.442673802375793,-0.161201357841492,0.882073640823364,0.442673802375793,-0.161201357841492,0.882073640823364,0.444357633590698,-0.632897853851318,0.634024024009705,0.448831409215927,-0.192026913166046,0.87274044752121,0.444357633590698,-0.632897853851318,0.634024024009705,0.456333547830582,-0.793123245239258,0.403379589319229,0.486275434494019,-0.69443154335022,0.530377984046936, +0.456333547830582,-0.793123245239258,0.403379589319229,0.463462084531784,-0.83923065662384,0.284419775009155,0.427903950214386,-0.892446398735046,0.142959669232368,0.475846141576767,0.417605936527252,0.774064362049103,0.507610857486725,0.355919480323792,0.784635186195374,0.321604430675507,0.648777842521667,0.689679443836212,0.19319985806942,0.75681746006012,0.624420523643494,0.262785673141479,0.632739543914795,0.728412091732025,0.366733968257904,0.535858273506165,0.760501086711884,0.366733968257904,0.535858273506165,0.760501086711884,0.475846141576767,0.417605936527252,0.774064362049103,0.321604430675507,0.648777842521667,0.689679443836212,0.120612844824791,0.781385660171509,0.612281680107117,0.13582681119442,0.778889775276184,0.612275779247284,0.137252122163773,0.803988516330719,0.57858806848526,0.19319985806942,0.75681746006012,0.624420523643494,0.13582681119442,0.778889775276184,0.612275779247284,0.262785673141479,0.632739543914795,0.728412091732025,0.803273677825928,-0.328896880149841,0.496566444635391,0.797490835189819,-0.335376739501953,0.501528263092041,0.784030675888062,-0.294109910726547,0.546621382236481,0.801340758800507,-0.290915310382843,0.522705554962158,0.803273677825928,-0.328896880149841,0.496566444635391,0.757671356201172,-0.155192360281944,0.633915841579437,0.647339522838593,0.133479997515678,0.750422835350037,0.709027945995331,-0.0109826931729913,0.705094754695892,0.507610857486725,0.355919480323792,0.784635186195374,0.709027945995331,-0.0109826931729913,0.705094754695892,0.801340758800507,-0.290915310382843,0.522705554962158,0.757671356201172,-0.155192360281944,0.633915841579437,0.427903950214386,-0.892446398735046,0.142959669232368,0.411533683538437,-0.911254465579987,0.0159684009850025,0.366902440786362,-0.92475152015686,-0.101079717278481,0.275631487369537,0.496113240718842,0.823346078395844,0.120612844824791,0.781385660171509,0.612281680107117,0.137252122163773,0.803988516330719,0.57858806848526,0.442673802375793,-0.161201357841492,0.882073640823364,0.448831409215927,-0.192026913166046,0.87274044752121, +0.275631487369537,0.496113240718842,0.823346078395844,0.518521785736084,-0.335196167230606,0.786624848842621,0.448831409215927,-0.192026913166046,0.87274044752121,0.444357633590698,-0.632897853851318,0.634024024009705,0.456333547830582,-0.793123245239258,0.403379589319229,0.447068840265274,-0.83402407169342,0.32331582903862,0.486275434494019,-0.69443154335022,0.530377984046936,0.444357633590698,-0.632897853851318,0.634024024009705,0.486275434494019,-0.69443154335022,0.530377984046936,0.518521785736084,-0.335196167230606,0.786624848842621,0.456333547830582,-0.793123245239258,0.403379589319229,0.427903950214386,-0.892446398735046,0.142959669232368,0.447068840265274,-0.83402407169342,0.32331582903862,0.475846141576767,0.417605936527252,0.774064362049103,0.647339522838593,0.133479997515678,0.750422835350037,0.507610857486725,0.355919480323792,0.784635186195374,0.413107067346573,0.447459816932678,0.793172180652618,0.366733968257904,0.535858273506165,0.760501086711884,0.262785673141479,0.632739543914795,0.728412091732025,0.475846141576767,0.417605936527252,0.774064362049103,0.366733968257904,0.535858273506165,0.760501086711884,0.541312515735626,0.283915370702744,0.791437089443207,0.14909952878952,0.806830406188965,0.571658849716187,0.13582681119442,0.778889775276184,0.612275779247284,0.120612844824791,0.781385660171509,0.612281680107117,0.262785673141479,0.632739543914795,0.728412091732025,0.13582681119442,0.778889775276184,0.612275779247284,0.269964933395386,0.662112712860107,0.699089050292969,0.801340758800507,-0.290915310382843,0.522705554962158,0.797490835189819,-0.335376739501953,0.501528263092041,0.803273677825928,-0.328896880149841,0.496566444635391,0.647339522838593,0.133479997515678,0.750422835350037,0.76932567358017,-0.133249849081039,0.624805808067322,0.709027945995331,-0.0109826931729913,0.705094754695892,0.76932567358017,-0.133249849081039,0.624805808067322,0.801340758800507,-0.290915310382843,0.522705554962158,0.709027945995331,-0.0109826931729913,0.705094754695892,0.427903950214386,-0.892446398735046,0.142959669232368, +0.366902440786362,-0.92475152015686,-0.101079717278481,0.423533231019974,-0.898833751678467,0.112771272659302,0.275631487369537,0.496113240718842,0.823346078395844,0.328369975090027,0.374419361352921,0.867169618606567,0.120612844824791,0.781385660171509,0.612281680107117,0.275631487369537,0.496113240718842,0.823346078395844,0.448831409215927,-0.192026913166046,0.87274044752121,0.328369975090027,0.374419361352921,0.867169618606567,0.518521785736084,-0.335196167230606,0.786624848842621,0.328369975090027,0.374419361352921,0.867169618606567,0.448831409215927,-0.192026913166046,0.87274044752121,0.447068840265274,-0.83402407169342,0.32331582903862,0.482179909944534,-0.789823830127716,0.379052400588989,0.486275434494019,-0.69443154335022,0.530377984046936,0.518521785736084,-0.335196167230606,0.786624848842621,0.486275434494019,-0.69443154335022,0.530377984046936,0.531291961669922,-0.428087770938873,0.731074213981628,0.427903950214386,-0.892446398735046,0.142959669232368,0.423533231019974,-0.898833751678467,0.112771272659302,0.447068840265274,-0.83402407169342,0.32331582903862,0.475846141576767,0.417605936527252,0.774064362049103,0.541312515735626,0.283915370702744,0.791437089443207,0.647339522838593,0.133479997515678,0.750422835350037,0.413107067346573,0.447459816932678,0.793172180652618,0.541312515735626,0.283915370702744,0.791437089443207,0.366733968257904,0.535858273506165,0.760501086711884,0.413107067346573,0.447459816932678,0.793172180652618,0.262785673141479,0.632739543914795,0.728412091732025,0.269964933395386,0.662112712860107,0.699089050292969,0.14909952878952,0.806830406188965,0.571658849716187,0.269964933395386,0.662112712860107,0.699089050292969,0.13582681119442,0.778889775276184,0.612275779247284,0.120612844824791,0.781385660171509,0.612281680107117,0.162344038486481,0.774491310119629,0.611397981643677,0.14909952878952,0.806830406188965,0.571658849716187,0.801340758800507,-0.290915310382843,0.522705554962158,0.785460412502289,-0.268385708332062,0.557692468166351,0.797490835189819,-0.335376739501953,0.501528263092041, +0.707168221473694,-0.0039675566367805,0.707034111022949,0.76932567358017,-0.133249849081039,0.624805808067322,0.647339522838593,0.133479997515678,0.750422835350037,0.801340758800507,-0.290915310382843,0.522705554962158,0.76932567358017,-0.133249849081039,0.624805808067322,0.770186305046082,-0.232611626386642,0.593889474868774,0.358150392770767,-0.930541634559631,-0.0762923434376717,0.423533231019974,-0.898833751678467,0.112771272659302,0.366902440786362,-0.92475152015686,-0.101079717278481,0.120612844824791,0.781385660171509,0.612281680107117,0.328369975090027,0.374419361352921,0.867169618606567,0.162344038486481,0.774491310119629,0.611397981643677,0.328369975090027,0.374419361352921,0.867169618606567,0.518521785736084,-0.335196167230606,0.786624848842621,0.400402098894119,0.408441543579102,0.820276498794556,0.423533231019974,-0.898833751678467,0.112771272659302,0.482179909944534,-0.789823830127716,0.379052400588989,0.447068840265274,-0.83402407169342,0.32331582903862,0.48377913236618,-0.578627049922943,0.656618893146515,0.486275434494019,-0.69443154335022,0.530377984046936,0.482179909944534,-0.789823830127716,0.379052400588989,0.531291961669922,-0.428087770938873,0.731074213981628,0.486275434494019,-0.69443154335022,0.530377984046936,0.48377913236618,-0.578627049922943,0.656618893146515,0.518521785736084,-0.335196167230606,0.786624848842621,0.531291961669922,-0.428087770938873,0.731074213981628,0.516268491744995,0.226922020316124,0.825816631317139,0.707168221473694,-0.0039675566367805,0.707034111022949,0.647339522838593,0.133479997515678,0.750422835350037,0.541312515735626,0.283915370702744,0.791437089443207,0.541312515735626,0.283915370702744,0.791437089443207,0.413107067346573,0.447459816932678,0.793172180652618,0.564958512783051,0.192830547690392,0.802270591259003,0.413107067346573,0.447459816932678,0.793172180652618,0.269964933395386,0.662112712860107,0.699089050292969,0.39932182431221,0.492306679487228,0.773418426513672,0.269964933395386,0.662112712860107,0.699089050292969,0.14909952878952,0.806830406188965,0.571658849716187, +0.244025737047195,0.740572810173035,0.626101613044739,0.196226716041565,0.822570562362671,0.533734560012817,0.14909952878952,0.806830406188965,0.571658849716187,0.162344038486481,0.774491310119629,0.611397981643677,0.785460412502289,-0.268385708332062,0.557692468166351,0.801340758800507,-0.290915310382843,0.522705554962158,0.785748362541199,-0.303555369377136,0.538937389850616,0.707168221473694,-0.0039675566367805,0.707034111022949,0.770186305046082,-0.232611626386642,0.593889474868774,0.76932567358017,-0.133249849081039,0.624805808067322,0.801340758800507,-0.290915310382843,0.522705554962158,0.770186305046082,-0.232611626386642,0.593889474868774,0.785748362541199,-0.303555369377136,0.538937389850616,0.432772904634476,-0.874702990055084,0.218179404735565,0.423533231019974,-0.898833751678467,0.112771272659302,0.358150392770767,-0.930541634559631,-0.0762923434376717,0.358150392770767,-0.930541634559631,-0.0762923434376717,0.366902440786362,-0.92475152015686,-0.101079717278481,0.30532369017601,-0.914015889167786,-0.267118036746979,0.328369975090027,0.374419361352921,0.867169618606567,0.400402098894119,0.408441543579102,0.820276498794556,0.162344038486481,0.774491310119629,0.611397981643677,0.400402098894119,0.408441543579102,0.820276498794556,0.518521785736084,-0.335196167230606,0.786624848842621,0.516268491744995,0.226922020316124,0.825816631317139,0.432772904634476,-0.874702990055084,0.218179404735565,0.482179909944534,-0.789823830127716,0.379052400588989,0.423533231019974,-0.898833751678467,0.112771272659302,0.498289555311203,-0.71522843837738,0.490056782960892,0.48377913236618,-0.578627049922943,0.656618893146515,0.482179909944534,-0.789823830127716,0.379052400588989,0.531291961669922,-0.428087770938873,0.731074213981628,0.48377913236618,-0.578627049922943,0.656618893146515,0.455107450485229,0.0419235378503799,0.889449000358582,0.516268491744995,0.226922020316124,0.825816631317139,0.531291961669922,-0.428087770938873,0.731074213981628,0.455107450485229,0.0419235378503799,0.889449000358582,0.541312515735626,0.283915370702744,0.791437089443207, +0.669182240962982,0.0456385277211666,0.741695404052734,0.707168221473694,-0.0039675566367805,0.707034111022949,0.564958512783051,0.192830547690392,0.802270591259003,0.413107067346573,0.447459816932678,0.793172180652618,0.525840878486633,0.289552479982376,0.799781560897827,0.564958512783051,0.192830547690392,0.802270591259003,0.669182240962982,0.0456385277211666,0.741695404052734,0.541312515735626,0.283915370702744,0.791437089443207,0.269964933395386,0.662112712860107,0.699089050292969,0.350998401641846,0.569648802280426,0.743169009685516,0.39932182431221,0.492306679487228,0.773418426513672,0.413107067346573,0.447459816932678,0.793172180652618,0.39932182431221,0.492306679487228,0.773418426513672,0.525840878486633,0.289552479982376,0.799781560897827,0.196226716041565,0.822570562362671,0.533734560012817,0.244025737047195,0.740572810173035,0.626101613044739,0.14909952878952,0.806830406188965,0.571658849716187,0.269964933395386,0.662112712860107,0.699089050292969,0.244025737047195,0.740572810173035,0.626101613044739,0.350998401641846,0.569648802280426,0.743169009685516,0.162344038486481,0.774491310119629,0.611397981643677,0.29590892791748,0.741468608379364,0.602214157581329,0.196226716041565,0.822570562362671,0.533734560012817,0.770186305046082,-0.232611626386642,0.593889474868774,0.707168221473694,-0.0039675566367805,0.707034111022949,0.669182240962982,0.0456385277211666,0.741695404052734,0.785748362541199,-0.303555369377136,0.538937389850616,0.770186305046082,-0.232611626386642,0.593889474868774,0.786494195461273,-0.300923973321915,0.539325058460236,0.358150392770767,-0.930541634559631,-0.0762923434376717,0.426525771617889,-0.901177287101746,0.0771693587303162,0.432772904634476,-0.874702990055084,0.218179404735565,0.337995916604996,-0.925707221031189,-0.169778630137444,0.358150392770767,-0.930541634559631,-0.0762923434376717,0.30532369017601,-0.914015889167786,-0.267118036746979,0.400402098894119,0.408441543579102,0.820276498794556,0.29590892791748,0.741468608379364,0.602214157581329,0.162344038486481,0.774491310119629,0.611397981643677, +0.400402098894119,0.408441543579102,0.820276498794556,0.516268491744995,0.226922020316124,0.825816631317139,0.29590892791748,0.741468608379364,0.602214157581329,0.498289555311203,-0.71522843837738,0.490056782960892,0.482179909944534,-0.789823830127716,0.379052400588989,0.432772904634476,-0.874702990055084,0.218179404735565,0.500983655452728,-0.372005552053452,0.781426310539246,0.48377913236618,-0.578627049922943,0.656618893146515,0.498289555311203,-0.71522843837738,0.490056782960892,0.500983655452728,-0.372005552053452,0.781426310539246,0.455107450485229,0.0419235378503799,0.889449000358582,0.48377913236618,-0.578627049922943,0.656618893146515,0.516268491744995,0.226922020316124,0.825816631317139,0.455107450485229,0.0419235378503799,0.889449000358582,0.294410049915314,0.719633996486664,0.628847718238831,0.564958512783051,0.192830547690392,0.802270591259003,0.525840878486633,0.289552479982376,0.799781560897827,0.664701700210571,0.0281601026654243,0.746577858924866,0.564958512783051,0.192830547690392,0.802270591259003,0.718557178974152,-0.0990635901689529,0.688376307487488,0.669182240962982,0.0456385277211666,0.741695404052734,0.455607444047928,0.40674102306366,0.791822850704193,0.39932182431221,0.492306679487228,0.773418426513672,0.350998401641846,0.569648802280426,0.743169009685516,0.455607444047928,0.40674102306366,0.791822850704193,0.525840878486633,0.289552479982376,0.799781560897827,0.39932182431221,0.492306679487228,0.773418426513672,0.225113451480865,0.798876106739044,0.557781994342804,0.244025737047195,0.740572810173035,0.626101613044739,0.196226716041565,0.822570562362671,0.533734560012817,0.317870855331421,0.628392219543457,0.709986746311188,0.350998401641846,0.569648802280426,0.743169009685516,0.244025737047195,0.740572810173035,0.626101613044739,0.294410049915314,0.719633996486664,0.628847718238831,0.196226716041565,0.822570562362671,0.533734560012817,0.29590892791748,0.741468608379364,0.602214157581329,0.718557178974152,-0.0990635901689529,0.688376307487488,0.770186305046082,-0.232611626386642,0.593889474868774, +0.669182240962982,0.0456385277211666,0.741695404052734,0.718557178974152,-0.0990635901689529,0.688376307487488,0.786494195461273,-0.300923973321915,0.539325058460236,0.770186305046082,-0.232611626386642,0.593889474868774,0.777904033660889,-0.319045066833496,0.541364371776581,0.785748362541199,-0.303555369377136,0.538937389850616,0.786494195461273,-0.300923973321915,0.539325058460236,0.358150392770767,-0.930541634559631,-0.0762923434376717,0.337995916604996,-0.925707221031189,-0.169778630137444,0.426525771617889,-0.901177287101746,0.0771693587303162,0.432772904634476,-0.874702990055084,0.218179404735565,0.426525771617889,-0.901177287101746,0.0771693587303162,0.478044152259827,-0.816734373569489,0.32313871383667,0.30532369017601,-0.914015889167786,-0.267118036746979,0.254871159791946,-0.908683836460114,-0.330657422542572,0.337995916604996,-0.925707221031189,-0.169778630137444,0.294410049915314,0.719633996486664,0.628847718238831,0.29590892791748,0.741468608379364,0.602214157581329,0.516268491744995,0.226922020316124,0.825816631317139,0.432772904634476,-0.874702990055084,0.218179404735565,0.478044152259827,-0.816734373569489,0.32313871383667,0.498289555311203,-0.71522843837738,0.490056782960892,0.6052525639534,-0.436431646347046,0.665730118751526,0.500983655452728,-0.372005552053452,0.781426310539246,0.498289555311203,-0.71522843837738,0.490056782960892,0.455107450485229,0.0419235378503799,0.889449000358582,0.500983655452728,-0.372005552053452,0.781426310539246,0.541546583175659,0.242147102952003,0.805041551589966,0.455107450485229,0.0419235378503799,0.889449000358582,0.541546583175659,0.242147102952003,0.805041551589966,0.294410049915314,0.719633996486664,0.628847718238831,0.624428808689117,0.0981506556272507,0.7748903632164,0.664701700210571,0.0281601026654243,0.746577858924866,0.525840878486633,0.289552479982376,0.799781560897827,0.718557178974152,-0.0990635901689529,0.688376307487488,0.564958512783051,0.192830547690392,0.802270591259003,0.664701700210571,0.0281601026654243,0.746577858924866,0.412816405296326,0.480329185724258,0.773864567279816, +0.455607444047928,0.40674102306366,0.791822850704193,0.350998401641846,0.569648802280426,0.743169009685516,0.525840878486633,0.289552479982376,0.799781560897827,0.455607444047928,0.40674102306366,0.791822850704193,0.565367460250854,0.208432197570801,0.798069834709167,0.22223362326622,0.757053256034851,0.614395976066589,0.244025737047195,0.740572810173035,0.626101613044739,0.225113451480865,0.798876106739044,0.557781994342804,0.225113451480865,0.798876106739044,0.557781994342804,0.196226716041565,0.822570562362671,0.533734560012817,0.294410049915314,0.719633996486664,0.628847718238831,0.317870855331421,0.628392219543457,0.709986746311188,0.412816405296326,0.480329185724258,0.773864567279816,0.350998401641846,0.569648802280426,0.743169009685516,0.22223362326622,0.757053256034851,0.614395976066589,0.317870855331421,0.628392219543457,0.709986746311188,0.244025737047195,0.740572810173035,0.626101613044739,0.718557178974152,-0.0990635901689529,0.688376307487488,0.756892800331116,-0.21231897175312,0.618088901042938,0.786494195461273,-0.300923973321915,0.539325058460236,0.777904033660889,-0.319045066833496,0.541364371776581,0.775683522224426,-0.297049760818481,0.55684494972229,0.785748362541199,-0.303555369377136,0.538937389850616,0.786494195461273,-0.300923973321915,0.539325058460236,0.756892800331116,-0.21231897175312,0.618088901042938,0.777904033660889,-0.319045066833496,0.541364371776581,0.461191415786743,-0.879885077476501,0.114475727081299,0.426525771617889,-0.901177287101746,0.0771693587303162,0.337995916604996,-0.925707221031189,-0.169778630137444,0.478044152259827,-0.816734373569489,0.32313871383667,0.426525771617889,-0.901177287101746,0.0771693587303162,0.532707214355469,-0.73984032869339,0.410924941301346,0.372488647699356,-0.925969660282135,-0.0619052872061729,0.337995916604996,-0.925707221031189,-0.169778630137444,0.254871159791946,-0.908683836460114,-0.330657422542572,0.498289555311203,-0.71522843837738,0.490056782960892,0.478044152259827,-0.816734373569489,0.32313871383667,0.595266044139862,-0.636253416538239,0.490754306316376, +0.6052525639534,-0.436431646347046,0.665730118751526,0.541546583175659,0.242147102952003,0.805041551589966,0.500983655452728,-0.372005552053452,0.781426310539246,0.498289555311203,-0.71522843837738,0.490056782960892,0.595266044139862,-0.636253416538239,0.490754306316376,0.6052525639534,-0.436431646347046,0.665730118751526,0.472811907529831,0.580746114253998,0.662708580493927,0.294410049915314,0.719633996486664,0.628847718238831,0.541546583175659,0.242147102952003,0.805041551589966,0.624428808689117,0.0981506556272507,0.7748903632164,0.721549868583679,-0.130518555641174,0.679948925971985,0.664701700210571,0.0281601026654243,0.746577858924866,0.525840878486633,0.289552479982376,0.799781560897827,0.565367460250854,0.208432197570801,0.798069834709167,0.624428808689117,0.0981506556272507,0.7748903632164,0.718557178974152,-0.0990635901689529,0.688376307487488,0.664701700210571,0.0281601026654243,0.746577858924866,0.756892800331116,-0.21231897175312,0.618088901042938,0.412816405296326,0.480329185724258,0.773864567279816,0.502450466156006,0.317032992839813,0.804383873939514,0.455607444047928,0.40674102306366,0.791822850704193,0.455607444047928,0.40674102306366,0.791822850704193,0.502450466156006,0.317032992839813,0.804383873939514,0.565367460250854,0.208432197570801,0.798069834709167,0.225113451480865,0.798876106739044,0.557781994342804,0.242377072572708,0.768776595592499,0.591807186603546,0.22223362326622,0.757053256034851,0.614395976066589,0.472811907529831,0.580746114253998,0.662708580493927,0.225113451480865,0.798876106739044,0.557781994342804,0.294410049915314,0.719633996486664,0.628847718238831,0.356569349765778,0.541812121868134,0.761116147041321,0.412816405296326,0.480329185724258,0.773864567279816,0.317870855331421,0.628392219543457,0.709986746311188,0.260957300662994,0.678691804409027,0.686497271060944,0.317870855331421,0.628392219543457,0.709986746311188,0.22223362326622,0.757053256034851,0.614395976066589,0.775683522224426,-0.297049760818481,0.55684494972229,0.777904033660889,-0.319045066833496,0.541364371776581, +0.766999840736389,-0.271848022937775,0.581214010715485,0.721549868583679,-0.130518555641174,0.679948925971985,0.777904033660889,-0.319045066833496,0.541364371776581,0.756892800331116,-0.21231897175312,0.618088901042938,0.461191415786743,-0.879885077476501,0.114475727081299,0.532707214355469,-0.73984032869339,0.410924941301346,0.426525771617889,-0.901177287101746,0.0771693587303162,0.372488647699356,-0.925969660282135,-0.0619052872061729,0.461191415786743,-0.879885077476501,0.114475727081299,0.337995916604996,-0.925707221031189,-0.169778630137444,0.532707214355469,-0.73984032869339,0.410924941301346,0.595266044139862,-0.636253416538239,0.490754306316376,0.478044152259827,-0.816734373569489,0.32313871383667,0.229289188981056,-0.918832540512085,-0.321205824613571,0.372488647699356,-0.925969660282135,-0.0619052872061729,0.254871159791946,-0.908683836460114,-0.330657422542572,0.6052525639534,-0.436431646347046,0.665730118751526,0.716331660747528,-0.110541760921478,0.688947975635529,0.541546583175659,0.242147102952003,0.805041551589966,0.6052525639534,-0.436431646347046,0.665730118751526,0.595266044139862,-0.636253416538239,0.490754306316376,0.716331660747528,-0.110541760921478,0.688947975635529,0.541546583175659,0.242147102952003,0.805041551589966,0.716331660747528,-0.110541760921478,0.688947975635529,0.472811907529831,0.580746114253998,0.662708580493927,0.624428808689117,0.0981506556272507,0.7748903632164,0.682405531406403,-0.0287139154970646,0.730409562587738,0.721549868583679,-0.130518555641174,0.679948925971985,0.721549868583679,-0.130518555641174,0.679948925971985,0.756892800331116,-0.21231897175312,0.618088901042938,0.664701700210571,0.0281601026654243,0.746577858924866,0.624428808689117,0.0981506556272507,0.7748903632164,0.565367460250854,0.208432197570801,0.798069834709167,0.682405531406403,-0.0287139154970646,0.730409562587738,0.453344017267227,0.391771048307419,0.800621330738068,0.502450466156006,0.317032992839813,0.804383873939514,0.412816405296326,0.480329185724258,0.773864567279816,0.565367460250854,0.208432197570801,0.798069834709167, +0.502450466156006,0.317032992839813,0.804383873939514,0.579974293708801,0.142212525010109,0.802125453948975,0.225113451480865,0.798876106739044,0.557781994342804,0.35258737206459,0.62508636713028,0.696382820606232,0.242377072572708,0.768776595592499,0.591807186603546,0.22223362326622,0.757053256034851,0.614395976066589,0.242377072572708,0.768776595592499,0.591807186603546,0.204762607812881,0.771462678909302,0.602426290512085,0.472811907529831,0.580746114253998,0.662708580493927,0.35258737206459,0.62508636713028,0.696382820606232,0.225113451480865,0.798876106739044,0.557781994342804,0.356569349765778,0.541812121868134,0.761116147041321,0.453344017267227,0.391771048307419,0.800621330738068,0.412816405296326,0.480329185724258,0.773864567279816,0.260957300662994,0.678691804409027,0.686497271060944,0.356569349765778,0.541812121868134,0.761116147041321,0.317870855331421,0.628392219543457,0.709986746311188,0.22223362326622,0.757053256034851,0.614395976066589,0.204762607812881,0.771462678909302,0.602426290512085,0.260957300662994,0.678691804409027,0.686497271060944,0.766999840736389,-0.271848022937775,0.581214010715485,0.777904033660889,-0.319045066833496,0.541364371776581,0.721549868583679,-0.130518555641174,0.679948925971985,0.775683522224426,-0.297049760818481,0.55684494972229,0.766999840736389,-0.271848022937775,0.581214010715485,0.753810524940491,-0.236630260944366,0.613005399703979,0.532707214355469,-0.73984032869339,0.410924941301346,0.461191415786743,-0.879885077476501,0.114475727081299,0.556603789329529,-0.738830149173737,0.379897505044937,0.372488647699356,-0.925969660282135,-0.0619052872061729,0.530288279056549,-0.804530680179596,0.267440676689148,0.461191415786743,-0.879885077476501,0.114475727081299,0.532707214355469,-0.73984032869339,0.410924941301346,0.641518414020538,-0.0810020714998245,0.762818872928619,0.595266044139862,-0.636253416538239,0.490754306316376,0.229289188981056,-0.918832540512085,-0.321205824613571,0.458324104547501,-0.887789785861969,0.042050763964653,0.372488647699356,-0.925969660282135,-0.0619052872061729, +0.641518414020538,-0.0810020714998245,0.762818872928619,0.716331660747528,-0.110541760921478,0.688947975635529,0.595266044139862,-0.636253416538239,0.490754306316376,0.641518414020538,-0.0810020714998245,0.762818872928619,0.472811907529831,0.580746114253998,0.662708580493927,0.716331660747528,-0.110541760921478,0.688947975635529,0.721549868583679,-0.130518555641174,0.679948925971985,0.682405531406403,-0.0287139154970646,0.730409562587738,0.766999840736389,-0.271848022937775,0.581214010715485,0.644583642482758,0.0402835682034492,0.763471722602844,0.682405531406403,-0.0287139154970646,0.730409562587738,0.565367460250854,0.208432197570801,0.798069834709167,0.453344017267227,0.391771048307419,0.800621330738068,0.543245732784271,0.222094416618347,0.809665441513062,0.502450466156006,0.317032992839813,0.804383873939514,0.543245732784271,0.222094416618347,0.809665441513062,0.579974293708801,0.142212525010109,0.802125453948975,0.502450466156006,0.317032992839813,0.804383873939514,0.565367460250854,0.208432197570801,0.798069834709167,0.579974293708801,0.142212525010109,0.802125453948975,0.644583642482758,0.0402835682034492,0.763471722602844,0.35258737206459,0.62508636713028,0.696382820606232,0.4790098965168,0.441199690103531,0.758875608444214,0.242377072572708,0.768776595592499,0.591807186603546,0.242377072572708,0.768776595592499,0.591807186603546,0.271827876567841,0.714590787887573,0.644569218158722,0.204762607812881,0.771462678909302,0.602426290512085,0.472811907529831,0.580746114253998,0.662708580493927,0.641518414020538,-0.0810020714998245,0.762818872928619,0.35258737206459,0.62508636713028,0.696382820606232,0.356569349765778,0.541812121868134,0.761116147041321,0.402676463127136,0.443473845720291,0.80073869228363,0.453344017267227,0.391771048307419,0.800621330738068,0.356569349765778,0.541812121868134,0.761116147041321,0.260957300662994,0.678691804409027,0.686497271060944,0.304999053478241,0.611037850379944,0.730484843254089,0.260957300662994,0.678691804409027,0.686497271060944,0.204762607812881,0.771462678909302,0.602426290512085, +0.226431801915169,0.717324197292328,0.658919215202332,0.753810524940491,-0.236630260944366,0.613005399703979,0.766999840736389,-0.271848022937775,0.581214010715485,0.757432699203491,-0.284330457448959,0.587751507759094,0.556603789329529,-0.738830149173737,0.379897505044937,0.461191415786743,-0.879885077476501,0.114475727081299,0.530288279056549,-0.804530680179596,0.267440676689148,0.532707214355469,-0.73984032869339,0.410924941301346,0.556603789329529,-0.738830149173737,0.379897505044937,0.630516707897186,-0.30230838060379,0.714883327484131,0.530288279056549,-0.804530680179596,0.267440676689148,0.372488647699356,-0.925969660282135,-0.0619052872061729,0.505776166915894,-0.829120874404907,0.238220259547234,0.641518414020538,-0.0810020714998245,0.762818872928619,0.532707214355469,-0.73984032869339,0.410924941301346,0.630516707897186,-0.30230838060379,0.714883327484131,0.352464079856873,-0.935154855251312,-0.035417165607214,0.458324104547501,-0.887789785861969,0.042050763964653,0.229289188981056,-0.918832540512085,-0.321205824613571,0.458324104547501,-0.887789785861969,0.042050763964653,0.505776166915894,-0.829120874404907,0.238220259547234,0.372488647699356,-0.925969660282135,-0.0619052872061729,0.682405531406403,-0.0287139154970646,0.730409562587738,0.720329284667969,-0.137869447469711,0.679792284965515,0.766999840736389,-0.271848022937775,0.581214010715485,0.644583642482758,0.0402835682034492,0.763471722602844,0.720329284667969,-0.137869447469711,0.679792284965515,0.682405531406403,-0.0287139154970646,0.730409562587738,0.453344017267227,0.391771048307419,0.800621330738068,0.472416043281555,0.322268307209015,0.820345103740692,0.543245732784271,0.222094416618347,0.809665441513062,0.579974293708801,0.142212525010109,0.802125453948975,0.543245732784271,0.222094416618347,0.809665441513062,0.624876320362091,0.0598969794809818,0.778422713279724,0.644583642482758,0.0402835682034492,0.763471722602844,0.579974293708801,0.142212525010109,0.802125453948975,0.682718753814697,-0.057049922645092,0.728450655937195,0.35258737206459,0.62508636713028,0.696382820606232, +0.641518414020538,-0.0810020714998245,0.762818872928619,0.4790098965168,0.441199690103531,0.758875608444214,0.4790098965168,0.441199690103531,0.758875608444214,0.509370565414429,0.377973616123199,0.773095965385437,0.242377072572708,0.768776595592499,0.591807186603546,0.242377072572708,0.768776595592499,0.591807186603546,0.509370565414429,0.377973616123199,0.773095965385437,0.271827876567841,0.714590787887573,0.644569218158722,0.271827876567841,0.714590787887573,0.644569218158722,0.409545123577118,0.629871129989624,0.659950733184814,0.204762607812881,0.771462678909302,0.602426290512085,0.402676463127136,0.443473845720291,0.80073869228363,0.356569349765778,0.541812121868134,0.761116147041321,0.365151613950729,0.509310066699982,0.779273629188538,0.453344017267227,0.391771048307419,0.800621330738068,0.402676463127136,0.443473845720291,0.80073869228363,0.472416043281555,0.322268307209015,0.820345103740692,0.260957300662994,0.678691804409027,0.686497271060944,0.226431801915169,0.717324197292328,0.658919215202332,0.304999053478241,0.611037850379944,0.730484843254089,0.356569349765778,0.541812121868134,0.761116147041321,0.304999053478241,0.611037850379944,0.730484843254089,0.365151613950729,0.509310066699982,0.779273629188538,0.24747422337532,0.750146687030792,0.613218069076538,0.226431801915169,0.717324197292328,0.658919215202332,0.204762607812881,0.771462678909302,0.602426290512085,0.757432699203491,-0.284330457448959,0.587751507759094,0.766999840736389,-0.271848022937775,0.581214010715485,0.720329284667969,-0.137869447469711,0.679792284965515,0.757432699203491,-0.284330457448959,0.587751507759094,0.775993883609772,-0.297175824642181,0.556345045566559,0.753810524940491,-0.236630260944366,0.613005399703979,0.677663207054138,-0.420736074447632,0.603119850158691,0.556603789329529,-0.738830149173737,0.379897505044937,0.530288279056549,-0.804530680179596,0.267440676689148,0.630516707897186,-0.30230838060379,0.714883327484131,0.556603789329529,-0.738830149173737,0.379897505044937,0.677663207054138,-0.420736074447632,0.603119850158691, +0.530288279056549,-0.804530680179596,0.267440676689148,0.505776166915894,-0.829120874404907,0.238220259547234,0.616996169090271,-0.542100250720978,0.570475995540619,0.641518414020538,-0.0810020714998245,0.762818872928619,0.630516707897186,-0.30230838060379,0.714883327484131,0.4790098965168,0.441199690103531,0.758875608444214,0.596005082130432,-0.7355597615242,0.322070837020874,0.458324104547501,-0.887789785861969,0.042050763964653,0.352464079856873,-0.935154855251312,-0.035417165607214,0.352464079856873,-0.935154855251312,-0.035417165607214,0.229289188981056,-0.918832540512085,-0.321205824613571,0.38063171505928,-0.910725831985474,-0.160305455327034,0.674501061439514,-0.630334079265594,0.384352803230286,0.505776166915894,-0.829120874404907,0.238220259547234,0.458324104547501,-0.887789785861969,0.042050763964653,0.682718753814697,-0.057049922645092,0.728450655937195,0.720329284667969,-0.137869447469711,0.679792284965515,0.644583642482758,0.0402835682034492,0.763471722602844,0.536631643772125,0.199642583727837,0.819859206676483,0.543245732784271,0.222094416618347,0.809665441513062,0.472416043281555,0.322268307209015,0.820345103740692,0.624876320362091,0.0598969794809818,0.778422713279724,0.543245732784271,0.222094416618347,0.809665441513062,0.584278583526611,0.124834358692169,0.80189448595047,0.682718753814697,-0.057049922645092,0.728450655937195,0.579974293708801,0.142212525010109,0.802125453948975,0.624876320362091,0.0598969794809818,0.778422713279724,0.630516707897186,-0.30230838060379,0.714883327484131,0.509370565414429,0.377973616123199,0.773095965385437,0.4790098965168,0.441199690103531,0.758875608444214,0.555403053760529,0.223737701773643,0.800917446613312,0.271827876567841,0.714590787887573,0.644569218158722,0.509370565414429,0.377973616123199,0.773095965385437,0.409545123577118,0.629871129989624,0.659950733184814,0.271827876567841,0.714590787887573,0.644569218158722,0.555403053760529,0.223737701773643,0.800917446613312,0.24747422337532,0.750146687030792,0.613218069076538,0.204762607812881,0.771462678909302,0.602426290512085, +0.409545123577118,0.629871129989624,0.659950733184814,0.402676463127136,0.443473845720291,0.80073869228363,0.365151613950729,0.509310066699982,0.779273629188538,0.436118572950363,0.380337536334991,0.815563559532166,0.436118572950363,0.380337536334991,0.815563559532166,0.472416043281555,0.322268307209015,0.820345103740692,0.402676463127136,0.443473845720291,0.80073869228363,0.226431801915169,0.717324197292328,0.658919215202332,0.262311369180679,0.671252548694611,0.693262279033661,0.304999053478241,0.611037850379944,0.730484843254089,0.334126830101013,0.566083788871765,0.753596842288971,0.365151613950729,0.509310066699982,0.779273629188538,0.304999053478241,0.611037850379944,0.730484843254089,0.343394726514816,0.688366591930389,0.638929724693298,0.226431801915169,0.717324197292328,0.658919215202332,0.24747422337532,0.750146687030792,0.613218069076538,0.682718753814697,-0.057049922645092,0.728450655937195,0.757432699203491,-0.284330457448959,0.587751507759094,0.720329284667969,-0.137869447469711,0.679792284965515,0.775993883609772,-0.297175824642181,0.556345045566559,0.757432699203491,-0.284330457448959,0.587751507759094,0.770972847938538,-0.283977031707764,0.570050656795502,0.677663207054138,-0.420736074447632,0.603119850158691,0.530288279056549,-0.804530680179596,0.267440676689148,0.616996169090271,-0.542100250720978,0.570475995540619,0.630516707897186,-0.30230838060379,0.714883327484131,0.677663207054138,-0.420736074447632,0.603119850158691,0.509370565414429,0.377973616123199,0.773095965385437,0.674501061439514,-0.630334079265594,0.384352803230286,0.616996169090271,-0.542100250720978,0.570475995540619,0.505776166915894,-0.829120874404907,0.238220259547234,0.674501061439514,-0.630334079265594,0.384352803230286,0.458324104547501,-0.887789785861969,0.042050763964653,0.596005082130432,-0.7355597615242,0.322070837020874,0.352464079856873,-0.935154855251312,-0.035417165607214,0.418950229883194,-0.903230428695679,0.093034140765667,0.596005082130432,-0.7355597615242,0.322070837020874,0.262964874505997,-0.91510009765625,-0.305681645870209, +0.38063171505928,-0.910725831985474,-0.160305455327034,0.229289188981056,-0.918832540512085,-0.321205824613571,0.352464079856873,-0.935154855251312,-0.035417165607214,0.38063171505928,-0.910725831985474,-0.160305455327034,0.418950229883194,-0.903230428695679,0.093034140765667,0.536631643772125,0.199642583727837,0.819859206676483,0.584278583526611,0.124834358692169,0.80189448595047,0.543245732784271,0.222094416618347,0.809665441513062,0.436118572950363,0.380337536334991,0.815563559532166,0.536631643772125,0.199642583727837,0.819859206676483,0.472416043281555,0.322268307209015,0.820345103740692,0.624876320362091,0.0598969794809818,0.778422713279724,0.584278583526611,0.124834358692169,0.80189448595047,0.642026722431183,0.000581815664190799,0.766681969165802,0.682718753814697,-0.057049922645092,0.728450655937195,0.624876320362091,0.0598969794809818,0.778422713279724,0.709228217601776,-0.151607945561409,0.688484013080597,0.555403053760529,0.223737701773643,0.800917446613312,0.509370565414429,0.377973616123199,0.773095965385437,0.677663207054138,-0.420736074447632,0.603119850158691,0.699035465717316,-0.0368136018514633,0.714138686656952,0.409545123577118,0.629871129989624,0.659950733184814,0.555403053760529,0.223737701773643,0.800917446613312,0.490709215402603,0.519458711147308,0.69954776763916,0.24747422337532,0.750146687030792,0.613218069076538,0.409545123577118,0.629871129989624,0.659950733184814,0.436118572950363,0.380337536334991,0.815563559532166,0.365151613950729,0.509310066699982,0.779273629188538,0.389943480491638,0.485516101121902,0.782443642616272,0.226431801915169,0.717324197292328,0.658919215202332,0.251301497220993,0.707149922847748,0.660898149013519,0.262311369180679,0.671252548694611,0.693262279033661,0.262311369180679,0.671252548694611,0.693262279033661,0.334126830101013,0.566083788871765,0.753596842288971,0.304999053478241,0.611037850379944,0.730484843254089,0.334126830101013,0.566083788871765,0.753596842288971,0.389943480491638,0.485516101121902,0.782443642616272,0.365151613950729,0.509310066699982,0.779273629188538, +0.343394726514816,0.688366591930389,0.638929724693298,0.251301497220993,0.707149922847748,0.660898149013519,0.226431801915169,0.717324197292328,0.658919215202332,0.343394726514816,0.688366591930389,0.638929724693298,0.24747422337532,0.750146687030792,0.613218069076538,0.469608098268509,0.531635642051697,0.704862833023071,0.682718753814697,-0.057049922645092,0.728450655937195,0.709228217601776,-0.151607945561409,0.688484013080597,0.757432699203491,-0.284330457448959,0.587751507759094,0.770972847938538,-0.283977031707764,0.570050656795502,0.757432699203491,-0.284330457448959,0.587751507759094,0.756062090396881,-0.296503782272339,0.58348560333252,0.677663207054138,-0.420736074447632,0.603119850158691,0.616996169090271,-0.542100250720978,0.570475995540619,0.555403053760529,0.223737701773643,0.800917446613312,0.616996169090271,-0.542100250720978,0.570475995540619,0.674501061439514,-0.630334079265594,0.384352803230286,0.699035465717316,-0.0368136018514633,0.714138686656952,0.674501061439514,-0.630334079265594,0.384352803230286,0.596005082130432,-0.7355597615242,0.322070837020874,0.766754329204559,-0.0374154411256313,0.640849232673645,0.591672480106354,-0.771734118461609,0.233130693435669,0.596005082130432,-0.7355597615242,0.322070837020874,0.418950229883194,-0.903230428695679,0.093034140765667,0.262964874505997,-0.91510009765625,-0.305681645870209,0.504895865917206,-0.863139271736145,0.00839017238467932,0.38063171505928,-0.910725831985474,-0.160305455327034,0.591672480106354,-0.771734118461609,0.233130693435669,0.418950229883194,-0.903230428695679,0.093034140765667,0.38063171505928,-0.910725831985474,-0.160305455327034,0.584278583526611,0.124834358692169,0.80189448595047,0.536631643772125,0.199642583727837,0.819859206676483,0.642026722431183,0.000581815664190799,0.766681969165802,0.536631643772125,0.199642583727837,0.819859206676483,0.436118572950363,0.380337536334991,0.815563559532166,0.493907034397125,0.289443671703339,0.819925725460052,0.642026722431183,0.000581815664190799,0.766681969165802,0.709228217601776,-0.151607945561409,0.688484013080597, +0.624876320362091,0.0598969794809818,0.778422713279724,0.766754329204559,-0.0374154411256313,0.640849232673645,0.409545123577118,0.629871129989624,0.659950733184814,0.699035465717316,-0.0368136018514633,0.714138686656952,0.699035465717316,-0.0368136018514633,0.714138686656952,0.555403053760529,0.223737701773643,0.800917446613312,0.616996169090271,-0.542100250720978,0.570475995540619,0.490709215402603,0.519458711147308,0.69954776763916,0.469608098268509,0.531635642051697,0.704862833023071,0.24747422337532,0.750146687030792,0.613218069076538,0.490709215402603,0.519458711147308,0.69954776763916,0.409545123577118,0.629871129989624,0.659950733184814,0.766754329204559,-0.0374154411256313,0.640849232673645,0.45992049574852,0.36165463924408,0.81097412109375,0.436118572950363,0.380337536334991,0.815563559532166,0.389943480491638,0.485516101121902,0.782443642616272,0.262311369180679,0.671252548694611,0.693262279033661,0.251301497220993,0.707149922847748,0.660898149013519,0.312871336936951,0.665913164615631,0.677252590656281,0.303600519895554,0.607353389263153,0.734131097793579,0.334126830101013,0.566083788871765,0.753596842288971,0.262311369180679,0.671252548694611,0.693262279033661,0.389943480491638,0.485516101121902,0.782443642616272,0.334126830101013,0.566083788871765,0.753596842288971,0.303600519895554,0.607353389263153,0.734131097793579,0.482631474733353,0.555219650268555,0.677346169948578,0.251301497220993,0.707149922847748,0.660898149013519,0.343394726514816,0.688366591930389,0.638929724693298,0.343394726514816,0.688366591930389,0.638929724693298,0.469608098268509,0.531635642051697,0.704862833023071,0.70700740814209,0.266230225563049,0.655180752277374,0.709228217601776,-0.151607945561409,0.688484013080597,0.756062090396881,-0.296503782272339,0.58348560333252,0.757432699203491,-0.284330457448959,0.587751507759094,0.767053186893463,-0.253628462553024,0.589323222637177,0.770972847938538,-0.283977031707764,0.570050656795502,0.756062090396881,-0.296503782272339,0.58348560333252,0.766754329204559,-0.0374154411256313,0.640849232673645, +0.699035465717316,-0.0368136018514633,0.714138686656952,0.674501061439514,-0.630334079265594,0.384352803230286,0.734574377536774,-0.150425210595131,0.661643862724304,0.766754329204559,-0.0374154411256313,0.640849232673645,0.596005082130432,-0.7355597615242,0.322070837020874,0.734574377536774,-0.150425210595131,0.661643862724304,0.596005082130432,-0.7355597615242,0.322070837020874,0.591672480106354,-0.771734118461609,0.233130693435669,0.504895865917206,-0.863139271736145,0.00839017238467932,0.262964874505997,-0.91510009765625,-0.305681645870209,0.464081019163132,-0.873642146587372,-0.146212309598923,0.504895865917206,-0.863139271736145,0.00839017238467932,0.591672480106354,-0.771734118461609,0.233130693435669,0.38063171505928,-0.910725831985474,-0.160305455327034,0.642026722431183,0.000581815664190799,0.766681969165802,0.536631643772125,0.199642583727837,0.819859206676483,0.581781148910522,0.0950855538249016,0.807768106460571,0.45992049574852,0.36165463924408,0.81097412109375,0.493907034397125,0.289443671703339,0.819925725460052,0.436118572950363,0.380337536334991,0.815563559532166,0.536631643772125,0.199642583727837,0.819859206676483,0.493907034397125,0.289443671703339,0.819925725460052,0.552586913108826,0.159899398684502,0.817972898483276,0.642026722431183,0.000581815664190799,0.766681969165802,0.71966415643692,-0.193929076194763,0.666689455509186,0.709228217601776,-0.151607945561409,0.688484013080597,0.490709215402603,0.519458711147308,0.69954776763916,0.734574377536774,-0.150425210595131,0.661643862724304,0.469608098268509,0.531635642051697,0.704862833023071,0.734574377536774,-0.150425210595131,0.661643862724304,0.490709215402603,0.519458711147308,0.69954776763916,0.766754329204559,-0.0374154411256313,0.640849232673645,0.45992049574852,0.36165463924408,0.81097412109375,0.389943480491638,0.485516101121902,0.782443642616272,0.430235862731934,0.447538316249847,0.783968448638916,0.482631474733353,0.555219650268555,0.677346169948578,0.312871336936951,0.665913164615631,0.677252590656281,0.251301497220993,0.707149922847748,0.660898149013519, +0.312871336936951,0.665913164615631,0.677252590656281,0.32954266667366,0.634333729743958,0.699301302433014,0.262311369180679,0.671252548694611,0.693262279033661,0.32954266667366,0.634333729743958,0.699301302433014,0.303600519895554,0.607353389263153,0.734131097793579,0.262311369180679,0.671252548694611,0.693262279033661,0.35807079076767,0.567113280296326,0.741732895374298,0.389943480491638,0.485516101121902,0.782443642616272,0.303600519895554,0.607353389263153,0.734131097793579,0.482631474733353,0.555219650268555,0.677346169948578,0.343394726514816,0.688366591930389,0.638929724693298,0.70700740814209,0.266230225563049,0.655180752277374,0.734574377536774,-0.150425210595131,0.661643862724304,0.70700740814209,0.266230225563049,0.655180752277374,0.469608098268509,0.531635642051697,0.704862833023071,0.756062090396881,-0.296503782272339,0.58348560333252,0.709228217601776,-0.151607945561409,0.688484013080597,0.71966415643692,-0.193929076194763,0.666689455509186,0.758049070835114,-0.290320247411728,0.584016799926758,0.767053186893463,-0.253628462553024,0.589323222637177,0.756062090396881,-0.296503782272339,0.58348560333252,0.734574377536774,-0.150425210595131,0.661643862724304,0.591672480106354,-0.771734118461609,0.233130693435669,0.760922074317932,-0.478893846273422,0.437787801027298,0.504895865917206,-0.863139271736145,0.00839017238467932,0.464081019163132,-0.873642146587372,-0.146212309598923,0.743079900741577,-0.618975758552551,0.254364103078842,0.504895865917206,-0.863139271736145,0.00839017238467932,0.760922074317932,-0.478893846273422,0.437787801027298,0.591672480106354,-0.771734118461609,0.233130693435669,0.581781148910522,0.0950855538249016,0.807768106460571,0.536631643772125,0.199642583727837,0.819859206676483,0.552586913108826,0.159899398684502,0.817972898483276,0.642026722431183,0.000581815664190799,0.766681969165802,0.581781148910522,0.0950855538249016,0.807768106460571,0.61290979385376,0.0234083086252213,0.789806008338928,0.493907034397125,0.289443671703339,0.819925725460052,0.45992049574852,0.36165463924408,0.81097412109375, +0.510309100151062,0.251643031835556,0.822350442409515,0.493907034397125,0.289443671703339,0.819925725460052,0.510309100151062,0.251643031835556,0.822350442409515,0.552586913108826,0.159899398684502,0.817972898483276,0.71966415643692,-0.193929076194763,0.666689455509186,0.642026722431183,0.000581815664190799,0.766681969165802,0.722076117992401,-0.167327925562859,0.671272993087769,0.35807079076767,0.567113280296326,0.741732895374298,0.430235862731934,0.447538316249847,0.783968448638916,0.389943480491638,0.485516101121902,0.782443642616272,0.45992049574852,0.36165463924408,0.81097412109375,0.430235862731934,0.447538316249847,0.783968448638916,0.490521907806396,0.336560308933258,0.803812980651855,0.482631474733353,0.555219650268555,0.677346169948578,0.548144996166229,0.36493906378746,0.752566516399384,0.312871336936951,0.665913164615631,0.677252590656281,0.312871336936951,0.665913164615631,0.677252590656281,0.548144996166229,0.36493906378746,0.752566516399384,0.32954266667366,0.634333729743958,0.699301302433014,0.32954266667366,0.634333729743958,0.699301302433014,0.326051563024521,0.639663398265839,0.69607537984848,0.303600519895554,0.607353389263153,0.734131097793579,0.303600519895554,0.607353389263153,0.734131097793579,0.326051563024521,0.639663398265839,0.69607537984848,0.35807079076767,0.567113280296326,0.741732895374298,0.70700740814209,0.266230225563049,0.655180752277374,0.783270061016083,-0.00592353800311685,0.621653199195862,0.482631474733353,0.555219650268555,0.677346169948578,0.734574377536774,-0.150425210595131,0.661643862724304,0.760922074317932,-0.478893846273422,0.437787801027298,0.70700740814209,0.266230225563049,0.655180752277374,0.758049070835114,-0.290320247411728,0.584016799926758,0.756062090396881,-0.296503782272339,0.58348560333252,0.71966415643692,-0.193929076194763,0.666689455509186,0.767053186893463,-0.253628462553024,0.589323222637177,0.758049070835114,-0.290320247411728,0.584016799926758,0.752604126930237,-0.176060438156128,0.634499549865723,0.764477431774139,-0.612632870674133,0.200636744499207, +0.743079900741577,-0.618975758552551,0.254364103078842,0.464081019163132,-0.873642146587372,-0.146212309598923,0.504895865917206,-0.863139271736145,0.00839017238467932,0.743079900741577,-0.618975758552551,0.254364103078842,0.760922074317932,-0.478893846273422,0.437787801027298,0.61290979385376,0.0234083086252213,0.789806008338928,0.581781148910522,0.0950855538249016,0.807768106460571,0.552586913108826,0.159899398684502,0.817972898483276,0.642026722431183,0.000581815664190799,0.766681969165802,0.61290979385376,0.0234083086252213,0.789806008338928,0.663190126419067,-0.0617789812386036,0.745896816253662,0.510309100151062,0.251643031835556,0.822350442409515,0.45992049574852,0.36165463924408,0.81097412109375,0.493468523025513,0.292581558227539,0.819075524806976,0.577093660831451,0.119228646159172,0.80792772769928,0.552586913108826,0.159899398684502,0.817972898483276,0.510309100151062,0.251643031835556,0.822350442409515,0.642026722431183,0.000581815664190799,0.766681969165802,0.663190126419067,-0.0617789812386036,0.745896816253662,0.722076117992401,-0.167327925562859,0.671272993087769,0.758049070835114,-0.290320247411728,0.584016799926758,0.71966415643692,-0.193929076194763,0.666689455509186,0.722076117992401,-0.167327925562859,0.671272993087769,0.436522513628006,0.515363216400146,0.737460970878601,0.430235862731934,0.447538316249847,0.783968448638916,0.35807079076767,0.567113280296326,0.741732895374298,0.488284438848495,0.418734043836594,0.765663087368011,0.490521907806396,0.336560308933258,0.803812980651855,0.430235862731934,0.447538316249847,0.783968448638916,0.490521907806396,0.336560308933258,0.803812980651855,0.493468523025513,0.292581558227539,0.819075524806976,0.45992049574852,0.36165463924408,0.81097412109375,0.482631474733353,0.555219650268555,0.677346169948578,0.783270061016083,-0.00592353800311685,0.621653199195862,0.548144996166229,0.36493906378746,0.752566516399384,0.619969666004181,0.329581797122955,0.712048649787903,0.32954266667366,0.634333729743958,0.699301302433014,0.548144996166229,0.36493906378746,0.752566516399384, +0.477409273386002,0.568757295608521,0.669772565364838,0.326051563024521,0.639663398265839,0.69607537984848,0.32954266667366,0.634333729743958,0.699301302433014,0.380519956350327,0.605096399784088,0.69933021068573,0.35807079076767,0.567113280296326,0.741732895374298,0.326051563024521,0.639663398265839,0.69607537984848,0.783270061016083,-0.00592353800311685,0.621653199195862,0.70700740814209,0.266230225563049,0.655180752277374,0.760922074317932,-0.478893846273422,0.437787801027298,0.752604126930237,-0.176060438156128,0.634499549865723,0.758049070835114,-0.290320247411728,0.584016799926758,0.75469982624054,-0.268750041723251,0.598499298095703,0.764477431774139,-0.612632870674133,0.200636744499207,0.810556173324585,-0.196085393428802,0.551859617233276,0.743079900741577,-0.618975758552551,0.254364103078842,0.783270061016083,-0.00592353800311685,0.621653199195862,0.760922074317932,-0.478893846273422,0.437787801027298,0.743079900741577,-0.618975758552551,0.254364103078842,0.577093660831451,0.119228646159172,0.80792772769928,0.61290979385376,0.0234083086252213,0.789806008338928,0.552586913108826,0.159899398684502,0.817972898483276,0.61290979385376,0.0234083086252213,0.789806008338928,0.695839047431946,-0.132870584726334,0.705799698829651,0.663190126419067,-0.0617789812386036,0.745896816253662,0.510309100151062,0.251643031835556,0.822350442409515,0.493468523025513,0.292581558227539,0.819075524806976,0.534621298313141,0.232986688613892,0.812340497970581,0.510309100151062,0.251643031835556,0.822350442409515,0.534621298313141,0.232986688613892,0.812340497970581,0.577093660831451,0.119228646159172,0.80792772769928,0.722076117992401,-0.167327925562859,0.671272993087769,0.663190126419067,-0.0617789812386036,0.745896816253662,0.695839047431946,-0.132870584726334,0.705799698829651,0.722076117992401,-0.167327925562859,0.671272993087769,0.76679664850235,-0.273262023925781,0.580818891525269,0.758049070835114,-0.290320247411728,0.584016799926758,0.436522513628006,0.515363216400146,0.737460970878601,0.488284438848495,0.418734043836594,0.765663087368011, +0.430235862731934,0.447538316249847,0.783968448638916,0.35807079076767,0.567113280296326,0.741732895374298,0.426648020744324,0.581396758556366,0.69278359413147,0.436522513628006,0.515363216400146,0.737460970878601,0.490521907806396,0.336560308933258,0.803812980651855,0.488284438848495,0.418734043836594,0.765663087368011,0.521024286746979,0.309981256723404,0.795264184474945,0.490521907806396,0.336560308933258,0.803812980651855,0.534621298313141,0.232986688613892,0.812340497970581,0.493468523025513,0.292581558227539,0.819075524806976,0.810556173324585,-0.196085393428802,0.551859617233276,0.548144996166229,0.36493906378746,0.752566516399384,0.783270061016083,-0.00592353800311685,0.621653199195862,0.32954266667366,0.634333729743958,0.699301302433014,0.619969666004181,0.329581797122955,0.712048649787903,0.477409273386002,0.568757295608521,0.669772565364838,0.619969666004181,0.329581797122955,0.712048649787903,0.548144996166229,0.36493906378746,0.752566516399384,0.77095228433609,-0.0913449227809906,0.630308270454407,0.464099556207657,0.59028685092926,0.660433828830719,0.326051563024521,0.639663398265839,0.69607537984848,0.477409273386002,0.568757295608521,0.669772565364838,0.35807079076767,0.567113280296326,0.741732895374298,0.380519956350327,0.605096399784088,0.69933021068573,0.426648020744324,0.581396758556366,0.69278359413147,0.380519956350327,0.605096399784088,0.69933021068573,0.326051563024521,0.639663398265839,0.69607537984848,0.464099556207657,0.59028685092926,0.660433828830719,0.76679664850235,-0.273262023925781,0.580818891525269,0.75469982624054,-0.268750041723251,0.598499298095703,0.758049070835114,-0.290320247411728,0.584016799926758,0.810556173324585,-0.196085393428802,0.551859617233276,0.764477431774139,-0.612632870674133,0.200636744499207,0.77095228433609,-0.0913449227809906,0.630308270454407,0.810556173324585,-0.196085393428802,0.551859617233276,0.783270061016083,-0.00592353800311685,0.621653199195862,0.743079900741577,-0.618975758552551,0.254364103078842,0.577093660831451,0.119228646159172,0.80792772769928, +0.648303270339966,-0.0077604902908206,0.761342525482178,0.61290979385376,0.0234083086252213,0.789806008338928,0.695839047431946,-0.132870584726334,0.705799698829651,0.61290979385376,0.0234083086252213,0.789806008338928,0.648303270339966,-0.0077604902908206,0.761342525482178,0.577093660831451,0.119228646159172,0.80792772769928,0.534621298313141,0.232986688613892,0.812340497970581,0.590365767478943,0.132265821099281,0.796224772930145,0.722076117992401,-0.167327925562859,0.671272993087769,0.695839047431946,-0.132870584726334,0.705799698829651,0.76679664850235,-0.273262023925781,0.580818891525269,0.488284438848495,0.418734043836594,0.765663087368011,0.436522513628006,0.515363216400146,0.737460970878601,0.550178050994873,0.516219735145569,0.656369686126709,0.436522513628006,0.515363216400146,0.737460970878601,0.426648020744324,0.581396758556366,0.69278359413147,0.550178050994873,0.516219735145569,0.656369686126709,0.488284438848495,0.418734043836594,0.765663087368011,0.537909328937531,0.369424939155579,0.757745742797852,0.521024286746979,0.309981256723404,0.795264184474945,0.534621298313141,0.232986688613892,0.812340497970581,0.490521907806396,0.336560308933258,0.803812980651855,0.521024286746979,0.309981256723404,0.795264184474945,0.810556173324585,-0.196085393428802,0.551859617233276,0.77095228433609,-0.0913449227809906,0.630308270454407,0.548144996166229,0.36493906378746,0.752566516399384,0.619969666004181,0.329581797122955,0.712048649787903,0.759328365325928,0.168215215206146,0.628588855266571,0.477409273386002,0.568757295608521,0.669772565364838,0.77095228433609,-0.0913449227809906,0.630308270454407,0.820528209209442,-0.275594085454941,0.500780582427979,0.619969666004181,0.329581797122955,0.712048649787903,0.464099556207657,0.59028685092926,0.660433828830719,0.477409273386002,0.568757295608521,0.669772565364838,0.641508340835571,0.46287015080452,0.611733555793762,0.426648020744324,0.581396758556366,0.69278359413147,0.380519956350327,0.605096399784088,0.69933021068573,0.487429022789001,0.545158922672272,0.682066380977631, +0.464099556207657,0.59028685092926,0.660433828830719,0.561893165111542,0.494647771120071,0.663022994995117,0.380519956350327,0.605096399784088,0.69933021068573,0.75469982624054,-0.268750041723251,0.598499298095703,0.76679664850235,-0.273262023925781,0.580818891525269,0.740694224834442,-0.158357843756676,0.652912557125092,0.77095228433609,-0.0913449227809906,0.630308270454407,0.764477431774139,-0.612632870674133,0.200636744499207,0.820528209209442,-0.275594085454941,0.500780582427979,0.613310992717743,0.0584655590355396,0.787674605846405,0.648303270339966,-0.0077604902908206,0.761342525482178,0.577093660831451,0.119228646159172,0.80792772769928,0.695839047431946,-0.132870584726334,0.705799698829651,0.648303270339966,-0.0077604902908206,0.761342525482178,0.718794047832489,-0.133549526333809,0.682275235652924,0.590365767478943,0.132265821099281,0.796224772930145,0.534621298313141,0.232986688613892,0.812340497970581,0.586301445960999,0.215850844979286,0.780806541442871,0.590365767478943,0.132265821099281,0.796224772930145,0.613310992717743,0.0584655590355396,0.787674605846405,0.577093660831451,0.119228646159172,0.80792772769928,0.760877072811127,-0.214244693517685,0.612507224082947,0.76679664850235,-0.273262023925781,0.580818891525269,0.695839047431946,-0.132870584726334,0.705799698829651,0.488284438848495,0.418734043836594,0.765663087368011,0.550178050994873,0.516219735145569,0.656369686126709,0.557981431484222,0.440094202756882,0.703543603420258,0.619199693202972,0.467390120029449,0.630981802940369,0.550178050994873,0.516219735145569,0.656369686126709,0.426648020744324,0.581396758556366,0.69278359413147,0.488284438848495,0.418734043836594,0.765663087368011,0.557981431484222,0.440094202756882,0.703543603420258,0.537909328937531,0.369424939155579,0.757745742797852,0.566519260406494,0.287445396184921,0.772289395332336,0.521024286746979,0.309981256723404,0.795264184474945,0.537909328937531,0.369424939155579,0.757745742797852,0.534621298313141,0.232986688613892,0.812340497970581,0.521024286746979,0.309981256723404,0.795264184474945, +0.586301445960999,0.215850844979286,0.780806541442871,0.619969666004181,0.329581797122955,0.712048649787903,0.820528209209442,-0.275594085454941,0.500780582427979,0.759328365325928,0.168215215206146,0.628588855266571,0.641508340835571,0.46287015080452,0.611733555793762,0.477409273386002,0.568757295608521,0.669772565364838,0.759328365325928,0.168215215206146,0.628588855266571,0.708579659461975,0.353462874889374,0.610719799995422,0.464099556207657,0.59028685092926,0.660433828830719,0.641508340835571,0.46287015080452,0.611733555793762,0.380519956350327,0.605096399784088,0.69933021068573,0.561893165111542,0.494647771120071,0.663022994995117,0.487429022789001,0.545158922672272,0.682066380977631,0.619199693202972,0.467390120029449,0.630981802940369,0.426648020744324,0.581396758556366,0.69278359413147,0.487429022789001,0.545158922672272,0.682066380977631,0.464099556207657,0.59028685092926,0.660433828830719,0.708579659461975,0.353462874889374,0.610719799995422,0.561893165111542,0.494647771120071,0.663022994995117,0.774073779582977,-0.228786692023277,0.590310335159302,0.740694224834442,-0.158357843756676,0.652912557125092,0.76679664850235,-0.273262023925781,0.580818891525269,0.613310992717743,0.0584655590355396,0.787674605846405,0.672015070915222,-0.0187352877110243,0.740300297737122,0.648303270339966,-0.0077604902908206,0.761342525482178,0.718794047832489,-0.133549526333809,0.682275235652924,0.648303270339966,-0.0077604902908206,0.761342525482178,0.710474789142609,-0.0940432325005531,0.697410404682159,0.760877072811127,-0.214244693517685,0.612507224082947,0.695839047431946,-0.132870584726334,0.705799698829651,0.718794047832489,-0.133549526333809,0.682275235652924,0.665054440498352,0.13368371129036,0.734732091426849,0.590365767478943,0.132265821099281,0.796224772930145,0.586301445960999,0.215850844979286,0.780806541442871,0.642907202243805,0.054490365087986,0.764003276824951,0.613310992717743,0.0584655590355396,0.787674605846405,0.590365767478943,0.132265821099281,0.796224772930145,0.76679664850235,-0.273262023925781,0.580818891525269, +0.760877072811127,-0.214244693517685,0.612507224082947,0.776728868484497,-0.225626021623611,0.588034808635712,0.629179179668427,0.450559586286545,0.633347809314728,0.557981431484222,0.440094202756882,0.703543603420258,0.550178050994873,0.516219735145569,0.656369686126709,0.619199693202972,0.467390120029449,0.630981802940369,0.671220898628235,0.458053559064865,0.582794308662415,0.550178050994873,0.516219735145569,0.656369686126709,0.537909328937531,0.369424939155579,0.757745742797852,0.557981431484222,0.440094202756882,0.703543603420258,0.604441463947296,0.381771087646484,0.699214696884155,0.566519260406494,0.287445396184921,0.772289395332336,0.586301445960999,0.215850844979286,0.780806541442871,0.521024286746979,0.309981256723404,0.795264184474945,0.604441463947296,0.381771087646484,0.699214696884155,0.566519260406494,0.287445396184921,0.772289395332336,0.537909328937531,0.369424939155579,0.757745742797852,0.487429022789001,0.545158922672272,0.682066380977631,0.561893165111542,0.494647771120071,0.663022994995117,0.758095860481262,0.337383568286896,0.558088541030884,0.619199693202972,0.467390120029449,0.630981802940369,0.487429022789001,0.545158922672272,0.682066380977631,0.758095860481262,0.337383568286896,0.558088541030884,0.740694224834442,-0.158357843756676,0.652912557125092,0.774073779582977,-0.228786692023277,0.590310335159302,0.645113527774811,0.156735077500343,0.747838616371155,0.774073779582977,-0.228786692023277,0.590310335159302,0.76679664850235,-0.273262023925781,0.580818891525269,0.776728868484497,-0.225626021623611,0.588034808635712,0.642907202243805,0.054490365087986,0.764003276824951,0.672015070915222,-0.0187352877110243,0.740300297737122,0.613310992717743,0.0584655590355396,0.787674605846405,0.672015070915222,-0.0187352877110243,0.740300297737122,0.710474789142609,-0.0940432325005531,0.697410404682159,0.648303270339966,-0.0077604902908206,0.761342525482178,0.776728868484497,-0.225626021623611,0.588034808635712,0.718794047832489,-0.133549526333809,0.682275235652924,0.710474789142609,-0.0940432325005531,0.697410404682159, +0.776728868484497,-0.225626021623611,0.588034808635712,0.760877072811127,-0.214244693517685,0.612507224082947,0.718794047832489,-0.133549526333809,0.682275235652924,0.665054440498352,0.13368371129036,0.734732091426849,0.642907202243805,0.054490365087986,0.764003276824951,0.590365767478943,0.132265821099281,0.796224772930145,0.621896982192993,0.220395624637604,0.751445174217224,0.665054440498352,0.13368371129036,0.734732091426849,0.586301445960999,0.215850844979286,0.780806541442871,0.629179179668427,0.450559586286545,0.633347809314728,0.604441463947296,0.381771087646484,0.699214696884155,0.557981431484222,0.440094202756882,0.703543603420258,0.758879959583282,0.384290248155594,0.525758683681488,0.629179179668427,0.450559586286545,0.633347809314728,0.550178050994873,0.516219735145569,0.656369686126709,0.619199693202972,0.467390120029449,0.630981802940369,0.889263927936554,0.152903854846954,0.431080102920532,0.671220898628235,0.458053559064865,0.582794308662415,0.671220898628235,0.458053559064865,0.582794308662415,0.758879959583282,0.384290248155594,0.525758683681488,0.550178050994873,0.516219735145569,0.656369686126709,0.566519260406494,0.287445396184921,0.772289395332336,0.621896982192993,0.220395624637604,0.751445174217224,0.586301445960999,0.215850844979286,0.780806541442871,0.639310836791992,0.300254851579666,0.707904279232025,0.566519260406494,0.287445396184921,0.772289395332336,0.604441463947296,0.381771087646484,0.699214696884155,0.619199693202972,0.467390120029449,0.630981802940369,0.758095860481262,0.337383568286896,0.558088541030884,0.881018102169037,0.0932691916823387,0.463797271251678,0.744223654270172,-0.023254631087184,0.667525410652161,0.645113527774811,0.156735077500343,0.747838616371155,0.774073779582977,-0.228786692023277,0.590310335159302,0.774660170078278,-0.0922890231013298,0.625607073307037,0.774073779582977,-0.228786692023277,0.590310335159302,0.776728868484497,-0.225626021623611,0.588034808635712,0.672015070915222,-0.0187352877110243,0.740300297737122,0.642907202243805,0.054490365087986,0.764003276824951, +0.730967581272125,-0.00655830465257168,0.682380557060242,0.758513391017914,-0.13907028734684,0.636645019054413,0.710474789142609,-0.0940432325005531,0.697410404682159,0.672015070915222,-0.0187352877110243,0.740300297737122,0.758513391017914,-0.13907028734684,0.636645019054413,0.776728868484497,-0.225626021623611,0.588034808635712,0.710474789142609,-0.0940432325005531,0.697410404682159,0.665054440498352,0.13368371129036,0.734732091426849,0.730967581272125,-0.00655830465257168,0.682380557060242,0.642907202243805,0.054490365087986,0.764003276824951,0.651611268520355,0.200083002448082,0.731689512729645,0.665054440498352,0.13368371129036,0.734732091426849,0.621896982192993,0.220395624637604,0.751445174217224,0.629179179668427,0.450559586286545,0.633347809314728,0.680371284484863,0.394071906805038,0.61790132522583,0.604441463947296,0.381771087646484,0.699214696884155,0.629179179668427,0.450559586286545,0.633347809314728,0.758879959583282,0.384290248155594,0.525758683681488,0.730822145938873,0.415372133255005,0.541631639003754,0.881018102169037,0.0932691916823387,0.463797271251678,0.889263927936554,0.152903854846954,0.431080102920532,0.619199693202972,0.467390120029449,0.630981802940369,0.671220898628235,0.458053559064865,0.582794308662415,0.889263927936554,0.152903854846954,0.431080102920532,0.758879959583282,0.384290248155594,0.525758683681488,0.621896982192993,0.220395624637604,0.751445174217224,0.566519260406494,0.287445396184921,0.772289395332336,0.639310836791992,0.300254851579666,0.707904279232025,0.680371284484863,0.394071906805038,0.61790132522583,0.639310836791992,0.300254851579666,0.707904279232025,0.604441463947296,0.381771087646484,0.699214696884155,0.645113527774811,0.156735077500343,0.747838616371155,0.744223654270172,-0.023254631087184,0.667525410652161,0.463855266571045,0.454978376626968,0.76015317440033,0.774660170078278,-0.0922890231013298,0.625607073307037,0.744223654270172,-0.023254631087184,0.667525410652161,0.774073779582977,-0.228786692023277,0.590310335159302,0.774660170078278,-0.0922890231013298,0.625607073307037, +0.776728868484497,-0.225626021623611,0.588034808635712,0.813445389270782,-0.16120420396328,0.558855652809143,0.730967581272125,-0.00655830465257168,0.682380557060242,0.758513391017914,-0.13907028734684,0.636645019054413,0.672015070915222,-0.0187352877110243,0.740300297737122,0.758513391017914,-0.13907028734684,0.636645019054413,0.813445389270782,-0.16120420396328,0.558855652809143,0.776728868484497,-0.225626021623611,0.588034808635712,0.665054440498352,0.13368371129036,0.734732091426849,0.706394851207733,0.109441392123699,0.699305951595306,0.730967581272125,-0.00655830465257168,0.682380557060242,0.665054440498352,0.13368371129036,0.734732091426849,0.651611268520355,0.200083002448082,0.731689512729645,0.706394851207733,0.109441392123699,0.699305951595306,0.621896982192993,0.220395624637604,0.751445174217224,0.639310836791992,0.300254851579666,0.707904279232025,0.651611268520355,0.200083002448082,0.731689512729645,0.680371284484863,0.394071906805038,0.61790132522583,0.629179179668427,0.450559586286545,0.633347809314728,0.730822145938873,0.415372133255005,0.541631639003754,0.730822145938873,0.415372133255005,0.541631639003754,0.758879959583282,0.384290248155594,0.525758683681488,0.847056686878204,0.326450973749161,0.419433683156967,0.712427079677582,0.33827018737793,0.614833891391754,0.639310836791992,0.300254851579666,0.707904279232025,0.680371284484863,0.394071906805038,0.61790132522583,0.744223654270172,-0.023254631087184,0.667525410652161,0.774660170078278,-0.0922890231013298,0.625607073307037,0.463855266571045,0.454978376626968,0.76015317440033,0.75214010477066,0.182770356535912,0.633150935173035,0.774660170078278,-0.0922890231013298,0.625607073307037,0.813445389270782,-0.16120420396328,0.558855652809143,0.813224852085114,-0.124201513826847,0.568541288375854,0.758513391017914,-0.13907028734684,0.636645019054413,0.730967581272125,-0.00655830465257168,0.682380557060242,0.813445389270782,-0.16120420396328,0.558855652809143,0.758513391017914,-0.13907028734684,0.636645019054413,0.813224852085114,-0.124201513826847,0.568541288375854, +0.767995119094849,-0.0151308756321669,0.640276849269867,0.730967581272125,-0.00655830465257168,0.682380557060242,0.706394851207733,0.109441392123699,0.699305951595306,0.651611268520355,0.200083002448082,0.731689512729645,0.686440527439117,0.169386982917786,0.707182645797729,0.706394851207733,0.109441392123699,0.699305951595306,0.639310836791992,0.300254851579666,0.707904279232025,0.672674119472504,0.247926995158196,0.697166800498962,0.651611268520355,0.200083002448082,0.731689512729645,0.764522671699524,0.359306037425995,0.535167336463928,0.680371284484863,0.394071906805038,0.61790132522583,0.730822145938873,0.415372133255005,0.541631639003754,0.847056686878204,0.326450973749161,0.419433683156967,0.818791151046753,0.352441251277924,0.453173369169235,0.730822145938873,0.415372133255005,0.541631639003754,0.712427079677582,0.33827018737793,0.614833891391754,0.713861107826233,0.289418786764145,0.637682437896729,0.639310836791992,0.300254851579666,0.707904279232025,0.680371284484863,0.394071906805038,0.61790132522583,0.764522671699524,0.359306037425995,0.535167336463928,0.712427079677582,0.33827018737793,0.614833891391754,0.774660170078278,-0.0922890231013298,0.625607073307037,0.75214010477066,0.182770356535912,0.633150935173035,0.463855266571045,0.454978376626968,0.76015317440033,0.75214010477066,0.182770356535912,0.633150935173035,0.813445389270782,-0.16120420396328,0.558855652809143,0.790116667747498,0.108334116637707,0.603307008743286,0.767995119094849,-0.0151308756321669,0.640276849269867,0.813224852085114,-0.124201513826847,0.568541288375854,0.730967581272125,-0.00655830465257168,0.682380557060242,0.838589608669281,8.54392346809618e-005,0.544763505458832,0.813445389270782,-0.16120420396328,0.558855652809143,0.813224852085114,-0.124201513826847,0.568541288375854,0.706394851207733,0.109441392123699,0.699305951595306,0.72131872177124,0.0920378193259239,0.686460614204407,0.767995119094849,-0.0151308756321669,0.640276849269867,0.651611268520355,0.200083002448082,0.731689512729645,0.672674119472504,0.247926995158196,0.697166800498962, +0.686440527439117,0.169386982917786,0.707182645797729,0.706394851207733,0.109441392123699,0.699305951595306,0.686440527439117,0.169386982917786,0.707182645797729,0.72131872177124,0.0920378193259239,0.686460614204407,0.713861107826233,0.289418786764145,0.637682437896729,0.672674119472504,0.247926995158196,0.697166800498962,0.639310836791992,0.300254851579666,0.707904279232025,0.764522671699524,0.359306037425995,0.535167336463928,0.730822145938873,0.415372133255005,0.541631639003754,0.818791151046753,0.352441251277924,0.453173369169235,0.904684722423553,0.271347522735596,0.328505605459213,0.818791151046753,0.352441251277924,0.453173369169235,0.847056686878204,0.326450973749161,0.419433683156967,0.713861107826233,0.289418786764145,0.637682437896729,0.712427079677582,0.33827018737793,0.614833891391754,0.772444486618042,0.32901531457901,0.543211102485657,0.764522671699524,0.359306037425995,0.535167336463928,0.772444486618042,0.32901531457901,0.543211102485657,0.712427079677582,0.33827018737793,0.614833891391754,0.790116667747498,0.108334116637707,0.603307008743286,0.813445389270782,-0.16120420396328,0.558855652809143,0.838589608669281,8.54392346809618e-005,0.544763505458832,0.767995119094849,-0.0151308756321669,0.640276849269867,0.819758296012878,0.0189909972250462,0.572394549846649,0.813224852085114,-0.124201513826847,0.568541288375854,0.838589608669281,8.54392346809618e-005,0.544763505458832,0.813224852085114,-0.124201513826847,0.568541288375854,0.819758296012878,0.0189909972250462,0.572394549846649,0.767995119094849,-0.0151308756321669,0.640276849269867,0.72131872177124,0.0920378193259239,0.686460614204407,0.805518507957459,0.0838503688573837,0.586607992649078,0.672674119472504,0.247926995158196,0.697166800498962,0.728965520858765,0.223394319415092,0.64707338809967,0.686440527439117,0.169386982917786,0.707182645797729,0.686440527439117,0.169386982917786,0.707182645797729,0.728965520858765,0.223394319415092,0.64707338809967,0.72131872177124,0.0920378193259239,0.686460614204407,0.713861107826233,0.289418786764145,0.637682437896729, +0.728965520858765,0.223394319415092,0.64707338809967,0.672674119472504,0.247926995158196,0.697166800498962,0.818791151046753,0.352441251277924,0.453173369169235,0.772444486618042,0.32901531457901,0.543211102485657,0.764522671699524,0.359306037425995,0.535167336463928,0.772444486618042,0.32901531457901,0.543211102485657,0.784981667995453,0.293118506669998,0.545788586139679,0.713861107826233,0.289418786764145,0.637682437896729,0.805518507957459,0.0838503688573837,0.586607992649078,0.819758296012878,0.0189909972250462,0.572394549846649,0.767995119094849,-0.0151308756321669,0.640276849269867,0.791413009166718,0.185563445091248,0.582435846328735,0.805518507957459,0.0838503688573837,0.586607992649078,0.72131872177124,0.0920378193259239,0.686460614204407,0.791413009166718,0.185563445091248,0.582435846328735,0.72131872177124,0.0920378193259239,0.686460614204407,0.728965520858765,0.223394319415092,0.64707338809967,0.784981667995453,0.293118506669998,0.545788586139679,0.728965520858765,0.223394319415092,0.64707338809967,0.713861107826233,0.289418786764145,0.637682437896729,0.772444486618042,0.32901531457901,0.543211102485657,0.818791151046753,0.352441251277924,0.453173369169235,0.842786490917206,0.344725906848907,0.413370043039322,0.772444486618042,0.32901531457901,0.543211102485657,0.779515206813812,0.425029695034027,0.46011483669281,0.784981667995453,0.293118506669998,0.545788586139679,0.791413009166718,0.185563445091248,0.582435846328735,0.853951513767242,0.193813428282738,0.482911020517349,0.805518507957459,0.0838503688573837,0.586607992649078,0.791413009166718,0.185563445091248,0.582435846328735,0.728965520858765,0.223394319415092,0.64707338809967,0.784981667995453,0.293118506669998,0.545788586139679,0.779515206813812,0.425029695034027,0.46011483669281,0.772444486618042,0.32901531457901,0.543211102485657,0.842786490917206,0.344725906848907,0.413370043039322,0.784981667995453,0.293118506669998,0.545788586139679,0.779515206813812,0.425029695034027,0.46011483669281,0.82640528678894,0.341271132230759,0.44787073135376,0.791413009166718,0.185563445091248,0.582435846328735, +0.855780065059662,0.281191557645798,0.434248358011246,0.853951513767242,0.193813428282738,0.482911020517349,0.791413009166718,0.185563445091248,0.582435846328735,0.784981667995453,0.293118506669998,0.545788586139679,0.855780065059662,0.281191557645798,0.434248358011246,0.784981667995453,0.293118506669998,0.545788586139679,0.82640528678894,0.341271132230759,0.44787073135376,0.855780065059662,0.281191557645798,0.434248358011246,0.465740203857422,-0.842628657817841,-0.270301431417465,0.29568013548851,-0.895565807819366,-0.332468032836914,0.632252871990204,-0.744614541530609,-0.214021772146225,0.507102012634277,-0.814292967319489,-0.282443523406982,0.632252871990204,-0.744614541530609,-0.214021772146225,0.29568013548851,-0.895565807819366,-0.332468032836914,0.632252871990204,-0.744614541530609,-0.214021772146225,0.721951544284821,-0.672236800193787,-0.163961812853813,0.465740203857422,-0.842628657817841,-0.270301431417465,0.785144686698914,-0.592994153499603,-0.178621619939804,0.632252871990204,-0.744614541530609,-0.214021772146225,0.507102012634277,-0.814292967319489,-0.282443523406982,0.29568013548851,-0.895565807819366,-0.332468032836914,0.279122710227966,-0.892987966537476,-0.35307639837265,0.507102012634277,-0.814292967319489,-0.282443523406982,0.632252871990204,-0.744614541530609,-0.214021772146225,0.842683076858521,-0.518184244632721,-0.146185353398323,0.721951544284821,-0.672236800193787,-0.163961812853813,0.721951544284821,-0.672236800193787,-0.163961812853813,0.634761095046997,-0.754182755947113,-0.168186366558075,0.465740203857422,-0.842628657817841,-0.270301431417465,0.785144686698914,-0.592994153499603,-0.178621619939804,0.842683076858521,-0.518184244632721,-0.146185353398323,0.632252871990204,-0.744614541530609,-0.214021772146225,0.652380764484406,-0.719779193401337,-0.237312287092209,0.785144686698914,-0.592994153499603,-0.178621619939804,0.507102012634277,-0.814292967319489,-0.282443523406982,0.652380764484406,-0.719779193401337,-0.237312287092209,0.507102012634277,-0.814292967319489,-0.282443523406982, +0.279122710227966,-0.892987966537476,-0.35307639837265,0.794818758964539,-0.587242424488068,-0.153001442551613,0.721951544284821,-0.672236800193787,-0.163961812853813,0.842683076858521,-0.518184244632721,-0.146185353398323,0.721951544284821,-0.672236800193787,-0.163961812853813,0.794818758964539,-0.587242424488068,-0.153001442551613,0.634761095046997,-0.754182755947113,-0.168186366558075,0.785144686698914,-0.592994153499603,-0.178621619939804,0.88800436258316,-0.440827786922455,-0.130839541554451,0.842683076858521,-0.518184244632721,-0.146185353398323,0.862595498561859,-0.488215744495392,-0.132567822933197,0.785144686698914,-0.592994153499603,-0.178621619939804,0.652380764484406,-0.719779193401337,-0.237312287092209,0.652380764484406,-0.719779193401337,-0.237312287092209,0.279122710227966,-0.892987966537476,-0.35307639837265,0.511566698551178,-0.801742553710938,-0.3090440928936,0.842683076858521,-0.518184244632721,-0.146185353398323,0.851919591426849,-0.482876807451248,-0.202639818191528,0.794818758964539,-0.587242424488068,-0.153001442551613,0.634761095046997,-0.754182755947113,-0.168186366558075,0.794818758964539,-0.587242424488068,-0.153001442551613,0.704311728477478,-0.683531641960144,-0.191649198532104,0.862595498561859,-0.488215744495392,-0.132567822933197,0.88800436258316,-0.440827786922455,-0.130839541554451,0.785144686698914,-0.592994153499603,-0.178621619939804,0.842683076858521,-0.518184244632721,-0.146185353398323,0.88800436258316,-0.440827786922455,-0.130839541554451,0.9042027592659,-0.39864045381546,-0.153306290507317,0.782935798168182,-0.592618823051453,-0.189246699213982,0.862595498561859,-0.488215744495392,-0.132567822933197,0.652380764484406,-0.719779193401337,-0.237312287092209,0.511566698551178,-0.801742553710938,-0.3090440928936,0.279122710227966,-0.892987966537476,-0.35307639837265,0.194269239902496,-0.888628721237183,-0.415449678897858,0.652380764484406,-0.719779193401337,-0.237312287092209,0.511566698551178,-0.801742553710938,-0.3090440928936,0.782935798168182,-0.592618823051453,-0.189246699213982, +0.842683076858521,-0.518184244632721,-0.146185353398323,0.9042027592659,-0.39864045381546,-0.153306290507317,0.851919591426849,-0.482876807451248,-0.202639818191528,0.813148736953735,-0.536014914512634,-0.226885259151459,0.794818758964539,-0.587242424488068,-0.153001442551613,0.851919591426849,-0.482876807451248,-0.202639818191528,0.704311728477478,-0.683531641960144,-0.191649198532104,0.794818758964539,-0.587242424488068,-0.153001442551613,0.813148736953735,-0.536014914512634,-0.226885259151459,0.88800436258316,-0.440827786922455,-0.130839541554451,0.862595498561859,-0.488215744495392,-0.132567822933197,0.907797396183014,-0.409421533346176,-0.0909825041890144,0.907797396183014,-0.409421533346176,-0.0909825041890144,0.9042027592659,-0.39864045381546,-0.153306290507317,0.88800436258316,-0.440827786922455,-0.130839541554451,0.782935798168182,-0.592618823051453,-0.189246699213982,0.86365795135498,-0.487207800149918,-0.129319295287132,0.862595498561859,-0.488215744495392,-0.132567822933197,0.511566698551178,-0.801742553710938,-0.3090440928936,0.194269239902496,-0.888628721237183,-0.415449678897858,0.659118175506592,-0.700697004795074,-0.273105770349503,0.511566698551178,-0.801742553710938,-0.3090440928936,0.659118175506592,-0.700697004795074,-0.273105770349503,0.782935798168182,-0.592618823051453,-0.189246699213982,0.851919591426849,-0.482876807451248,-0.202639818191528,0.9042027592659,-0.39864045381546,-0.153306290507317,0.881262838840485,-0.422209203243256,-0.212403059005737,0.851919591426849,-0.482876807451248,-0.202639818191528,0.876031756401062,-0.425345778465271,-0.227264568209648,0.813148736953735,-0.536014914512634,-0.226885259151459,0.749786019325256,-0.620891332626343,-0.228723838925362,0.704311728477478,-0.683531641960144,-0.191649198532104,0.813148736953735,-0.536014914512634,-0.226885259151459,0.907797396183014,-0.409421533346176,-0.0909825041890144,0.862595498561859,-0.488215744495392,-0.132567822933197,0.86365795135498,-0.487207800149918,-0.129319295287132,0.907797396183014,-0.409421533346176,-0.0909825041890144, +0.940751791000366,-0.322372078895569,-0.105176649987698,0.9042027592659,-0.39864045381546,-0.153306290507317,0.782935798168182,-0.592618823051453,-0.189246699213982,0.659118175506592,-0.700697004795074,-0.273105770349503,0.86365795135498,-0.487207800149918,-0.129319295287132,0.458349376916885,-0.806909620761871,-0.372575521469116,0.659118175506592,-0.700697004795074,-0.273105770349503,0.194269239902496,-0.888628721237183,-0.415449678897858,0.920826077461243,-0.355881810188293,-0.159459799528122,0.881262838840485,-0.422209203243256,-0.212403059005737,0.9042027592659,-0.39864045381546,-0.153306290507317,0.851919591426849,-0.482876807451248,-0.202639818191528,0.881262838840485,-0.422209203243256,-0.212403059005737,0.876031756401062,-0.425345778465271,-0.227264568209648,0.876031756401062,-0.425345778465271,-0.227264568209648,0.882005989551544,-0.413140773773193,-0.226671680808067,0.813148736953735,-0.536014914512634,-0.226885259151459,0.749786019325256,-0.620891332626343,-0.228723838925362,0.621656656265259,-0.751521408557892,-0.220813125371933,0.704311728477478,-0.683531641960144,-0.191649198532104,0.779469668865204,-0.568467974662781,-0.263193666934967,0.749786019325256,-0.620891332626343,-0.228723838925362,0.813148736953735,-0.536014914512634,-0.226885259151459,0.867772340774536,-0.484813719987869,-0.109209507703781,0.907797396183014,-0.409421533346176,-0.0909825041890144,0.86365795135498,-0.487207800149918,-0.129319295287132,0.940751791000366,-0.322372078895569,-0.105176649987698,0.907797396183014,-0.409421533346176,-0.0909825041890144,0.936356663703918,-0.348604470491409,-0.0413641557097435,0.960485994815826,-0.251351565122604,-0.119536705315113,0.9042027592659,-0.39864045381546,-0.153306290507317,0.940751791000366,-0.322372078895569,-0.105176649987698,0.659118175506592,-0.700697004795074,-0.273105770349503,0.784724056720734,-0.592999994754791,-0.180441170930862,0.86365795135498,-0.487207800149918,-0.129319295287132,0.659118175506592,-0.700697004795074,-0.273105770349503,0.458349376916885,-0.806909620761871,-0.372575521469116, +0.784724056720734,-0.592999994754791,-0.180441170930862,0.920826077461243,-0.355881810188293,-0.159459799528122,0.914121210575104,-0.355881065130234,-0.194244489073753,0.881262838840485,-0.422209203243256,-0.212403059005737,0.920826077461243,-0.355881810188293,-0.159459799528122,0.9042027592659,-0.39864045381546,-0.153306290507317,0.960485994815826,-0.251351565122604,-0.119536705315113,0.881262838840485,-0.422209203243256,-0.212403059005737,0.914121210575104,-0.355881065130234,-0.194244489073753,0.876031756401062,-0.425345778465271,-0.227264568209648,0.876031756401062,-0.425345778465271,-0.227264568209648,0.935395479202271,-0.293667852878571,-0.196962788701057,0.882005989551544,-0.413140773773193,-0.226671680808067,0.813148736953735,-0.536014914512634,-0.226885259151459,0.882005989551544,-0.413140773773193,-0.226671680808067,0.846169114112854,-0.465378642082214,-0.259654432535172,0.749786019325256,-0.620891332626343,-0.228723838925362,0.694310009479523,-0.673236012458801,-0.254336059093475,0.621656656265259,-0.751521408557892,-0.220813125371933,0.779469668865204,-0.568467974662781,-0.263193666934967,0.694310009479523,-0.673236012458801,-0.254336059093475,0.749786019325256,-0.620891332626343,-0.228723838925362,0.813148736953735,-0.536014914512634,-0.226885259151459,0.846169114112854,-0.465378642082214,-0.259654432535172,0.779469668865204,-0.568467974662781,-0.263193666934967,0.867772340774536,-0.484813719987869,-0.109209507703781,0.890213429927826,-0.453585386276245,-0.0421936847269535,0.907797396183014,-0.409421533346176,-0.0909825041890144,0.867772340774536,-0.484813719987869,-0.109209507703781,0.86365795135498,-0.487207800149918,-0.129319295287132,0.784724056720734,-0.592999994754791,-0.180441170930862,0.936356663703918,-0.348604470491409,-0.0413641557097435,0.907797396183014,-0.409421533346176,-0.0909825041890144,0.890213429927826,-0.453585386276245,-0.0421936847269535,0.940751791000366,-0.322372078895569,-0.105176649987698,0.936356663703918,-0.348604470491409,-0.0413641557097435,0.974507451057434,-0.214745432138443,-0.0649580508470535, +0.960485994815826,-0.251351565122604,-0.119536705315113,0.940751791000366,-0.322372078895569,-0.105176649987698,0.974507451057434,-0.214745432138443,-0.0649580508470535,0.671079277992249,-0.66807758808136,-0.321441739797592,0.784724056720734,-0.592999994754791,-0.180441170930862,0.458349376916885,-0.806909620761871,-0.372575521469116,0.920826077461243,-0.355881810188293,-0.159459799528122,0.943866372108459,-0.295916527509689,-0.146797657012939,0.914121210575104,-0.355881065130234,-0.194244489073753,0.920826077461243,-0.355881810188293,-0.159459799528122,0.960485994815826,-0.251351565122604,-0.119536705315113,0.943866372108459,-0.295916527509689,-0.146797657012939,0.935395479202271,-0.293667852878571,-0.196962788701057,0.876031756401062,-0.425345778465271,-0.227264568209648,0.914121210575104,-0.355881065130234,-0.194244489073753,0.882005989551544,-0.413140773773193,-0.226671680808067,0.935395479202271,-0.293667852878571,-0.196962788701057,0.912883102893829,-0.343111574649811,-0.221175849437714,0.882005989551544,-0.413140773773193,-0.226671680808067,0.912883102893829,-0.343111574649811,-0.221175849437714,0.846169114112854,-0.465378642082214,-0.259654432535172,0.621656656265259,-0.751521408557892,-0.220813125371933,0.694310009479523,-0.673236012458801,-0.254336059093475,0.542383134365082,-0.805463671684265,-0.238848254084587,0.694310009479523,-0.673236012458801,-0.254336059093475,0.779469668865204,-0.568467974662781,-0.263193666934967,0.744386374950409,-0.6074538230896,-0.277287930250168,0.779469668865204,-0.568467974662781,-0.263193666934967,0.846169114112854,-0.465378642082214,-0.259654432535172,0.813633024692535,-0.514413774013519,-0.270886689424515,0.890213429927826,-0.453585386276245,-0.0421936847269535,0.867772340774536,-0.484813719987869,-0.109209507703781,0.77368950843811,-0.61639666557312,-0.146490588784218,0.671079277992249,-0.66807758808136,-0.321441739797592,0.867772340774536,-0.484813719987869,-0.109209507703781,0.784724056720734,-0.592999994754791,-0.180441170930862,0.890213429927826,-0.453585386276245,-0.0421936847269535, +0.895917177200317,-0.440315544605255,-0.0587731041014194,0.936356663703918,-0.348604470491409,-0.0413641557097435,0.974507451057434,-0.214745432138443,-0.0649580508470535,0.936356663703918,-0.348604470491409,-0.0413641557097435,0.965186238288879,-0.260779112577438,-0.0202409569174051,0.974507451057434,-0.214745432138443,-0.0649580508470535,0.988352954387665,-0.132344096899033,-0.0751222372055054,0.960485994815826,-0.251351565122604,-0.119536705315113,0.178219750523567,-0.795235157012939,-0.579515874385834,0.671079277992249,-0.66807758808136,-0.321441739797592,0.458349376916885,-0.806909620761871,-0.372575521469116,0.953068137168884,-0.253000527620316,-0.166288286447525,0.914121210575104,-0.355881065130234,-0.194244489073753,0.943866372108459,-0.295916527509689,-0.146797657012939,0.974379301071167,-0.183548882603645,-0.129978731274605,0.943866372108459,-0.295916527509689,-0.146797657012939,0.960485994815826,-0.251351565122604,-0.119536705315113,0.935395479202271,-0.293667852878571,-0.196962788701057,0.914121210575104,-0.355881065130234,-0.194244489073753,0.953068137168884,-0.253000527620316,-0.166288286447525,0.963462114334106,-0.215251222252846,-0.159397706389427,0.912883102893829,-0.343111574649811,-0.221175849437714,0.935395479202271,-0.293667852878571,-0.196962788701057,0.872760593891144,-0.422313332557678,-0.244826525449753,0.846169114112854,-0.465378642082214,-0.259654432535172,0.912883102893829,-0.343111574649811,-0.221175849437714,0.542383134365082,-0.805463671684265,-0.238848254084587,0.694310009479523,-0.673236012458801,-0.254336059093475,0.62569272518158,-0.733220219612122,-0.266264319419861,0.779469668865204,-0.568467974662781,-0.263193666934967,0.813633024692535,-0.514413774013519,-0.270886689424515,0.744386374950409,-0.6074538230896,-0.277287930250168,0.694310009479523,-0.673236012458801,-0.254336059093475,0.744386374950409,-0.6074538230896,-0.277287930250168,0.62569272518158,-0.733220219612122,-0.266264319419861,0.872760593891144,-0.422313332557678,-0.244826525449753,0.813633024692535,-0.514413774013519,-0.270886689424515, +0.846169114112854,-0.465378642082214,-0.259654432535172,0.77368950843811,-0.61639666557312,-0.146490588784218,0.867772340774536,-0.484813719987869,-0.109209507703781,0.671079277992249,-0.66807758808136,-0.321441739797592,0.890213429927826,-0.453585386276245,-0.0421936847269535,0.77368950843811,-0.61639666557312,-0.146490588784218,0.840420365333557,-0.533457815647125,-0.0954785495996475,0.895917177200317,-0.440315544605255,-0.0587731041014194,0.890213429927826,-0.453585386276245,-0.0421936847269535,0.840420365333557,-0.533457815647125,-0.0954785495996475,0.949696838855743,-0.31304469704628,-0.00887881591916084,0.936356663703918,-0.348604470491409,-0.0413641557097435,0.895917177200317,-0.440315544605255,-0.0587731041014194,0.949696838855743,-0.31304469704628,-0.00887881591916084,0.965186238288879,-0.260779112577438,-0.0202409569174051,0.936356663703918,-0.348604470491409,-0.0413641557097435,0.974507451057434,-0.214745432138443,-0.0649580508470535,0.965186238288879,-0.260779112577438,-0.0202409569174051,0.987232148647308,-0.159235268831253,-0.00408750120550394,0.974507451057434,-0.214745432138443,-0.0649580508470535,0.996590554714203,-0.0776983797550201,-0.0277501977980137,0.988352954387665,-0.132344096899033,-0.0751222372055054,0.988352954387665,-0.132344096899033,-0.0751222372055054,0.99026757478714,-0.11084358394146,-0.0841646194458008,0.960485994815826,-0.251351565122604,-0.119536705315113,0.178219750523567,-0.795235157012939,-0.579515874385834,0.218011647462845,-0.825384795665741,-0.520778954029083,0.671079277992249,-0.66807758808136,-0.321441739797592,0.953068137168884,-0.253000527620316,-0.166288286447525,0.943866372108459,-0.295916527509689,-0.146797657012939,0.974379301071167,-0.183548882603645,-0.129978731274605,0.974379301071167,-0.183548882603645,-0.129978731274605,0.960485994815826,-0.251351565122604,-0.119536705315113,0.99026757478714,-0.11084358394146,-0.0841646194458008,0.972493886947632,-0.183918505907059,-0.142931684851646,0.935395479202271,-0.293667852878571,-0.196962788701057,0.953068137168884,-0.253000527620316,-0.166288286447525, +0.963462114334106,-0.215251222252846,-0.159397706389427,0.928294241428375,-0.327763319015503,-0.175615638494492,0.912883102893829,-0.343111574649811,-0.221175849437714,0.963462114334106,-0.215251222252846,-0.159397706389427,0.935395479202271,-0.293667852878571,-0.196962788701057,0.972493886947632,-0.183918505907059,-0.142931684851646,0.928294241428375,-0.327763319015503,-0.175615638494492,0.872760593891144,-0.422313332557678,-0.244826525449753,0.912883102893829,-0.343111574649811,-0.221175849437714,0.542383134365082,-0.805463671684265,-0.238848254084587,0.62569272518158,-0.733220219612122,-0.266264319419861,0.479677945375443,-0.843657255172729,-0.241146147251129,0.813633024692535,-0.514413774013519,-0.270886689424515,0.837560772895813,-0.492581576108933,-0.236337065696716,0.744386374950409,-0.6074538230896,-0.277287930250168,0.744386374950409,-0.6074538230896,-0.277287930250168,0.638595342636108,-0.715246915817261,-0.283932507038116,0.62569272518158,-0.733220219612122,-0.266264319419861,0.813633024692535,-0.514413774013519,-0.270886689424515,0.872760593891144,-0.422313332557678,-0.244826525449753,0.837560772895813,-0.492581576108933,-0.236337065696716,0.77368950843811,-0.61639666557312,-0.146490588784218,0.671079277992249,-0.66807758808136,-0.321441739797592,0.218011647462845,-0.825384795665741,-0.520778954029083,0.77368950843811,-0.61639666557312,-0.146490588784218,0.626310408115387,-0.733514249324799,-0.263992100954056,0.840420365333557,-0.533457815647125,-0.0954785495996475,0.895917177200317,-0.440315544605255,-0.0587731041014194,0.840420365333557,-0.533457815647125,-0.0954785495996475,0.698516190052032,-0.643461227416992,-0.31310161948204,0.922208786010742,-0.38618677854538,-0.0197631269693375,0.949696838855743,-0.31304469704628,-0.00887881591916084,0.895917177200317,-0.440315544605255,-0.0587731041014194,0.949696838855743,-0.31304469704628,-0.00887881591916084,0.98123699426651,-0.192527383565903,0.0103501146659255,0.965186238288879,-0.260779112577438,-0.0202409569174051,0.98123699426651,-0.192527383565903,0.0103501146659255, +0.987232148647308,-0.159235268831253,-0.00408750120550394,0.965186238288879,-0.260779112577438,-0.0202409569174051,0.996590554714203,-0.0776983797550201,-0.0277501977980137,0.974507451057434,-0.214745432138443,-0.0649580508470535,0.987232148647308,-0.159235268831253,-0.00408750120550394,0.996590554714203,-0.0776983797550201,-0.0277501977980137,0.998991727828979,-0.0257906448096037,-0.0367465391755104,0.988352954387665,-0.132344096899033,-0.0751222372055054,0.988352954387665,-0.132344096899033,-0.0751222372055054,0.998991727828979,-0.0257906448096037,-0.0367465391755104,0.99026757478714,-0.11084358394146,-0.0841646194458008,0.974379301071167,-0.183548882603645,-0.129978731274605,0.97931295633316,-0.154639035463333,-0.130510032176971,0.953068137168884,-0.253000527620316,-0.166288286447525,0.994083166122437,-0.0496644712984562,-0.0966023653745651,0.974379301071167,-0.183548882603645,-0.129978731274605,0.99026757478714,-0.11084358394146,-0.0841646194458008,0.972493886947632,-0.183918505907059,-0.142931684851646,0.953068137168884,-0.253000527620316,-0.166288286447525,0.97931295633316,-0.154639035463333,-0.130510032176971,0.928294241428375,-0.327763319015503,-0.175615638494492,0.963462114334106,-0.215251222252846,-0.159397706389427,0.981192827224731,-0.175614789128304,-0.0801248922944069,0.989751398563385,-0.101209171116352,-0.100741498172283,0.963462114334106,-0.215251222252846,-0.159397706389427,0.972493886947632,-0.183918505907059,-0.142931684851646,0.928294241428375,-0.327763319015503,-0.175615638494492,0.837560772895813,-0.492581576108933,-0.236337065696716,0.872760593891144,-0.422313332557678,-0.244826525449753,0.638595342636108,-0.715246915817261,-0.283932507038116,0.479677945375443,-0.843657255172729,-0.241146147251129,0.62569272518158,-0.733220219612122,-0.266264319419861,0.837560772895813,-0.492581576108933,-0.236337065696716,0.754804015159607,-0.606155037879944,-0.250692993402481,0.744386374950409,-0.6074538230896,-0.277287930250168,0.754804015159607,-0.606155037879944,-0.250692993402481,0.638595342636108,-0.715246915817261,-0.283932507038116, +0.744386374950409,-0.6074538230896,-0.277287930250168,0.626310408115387,-0.733514249324799,-0.263992100954056,0.77368950843811,-0.61639666557312,-0.146490588784218,0.218011647462845,-0.825384795665741,-0.520778954029083,0.698516190052032,-0.643461227416992,-0.31310161948204,0.840420365333557,-0.533457815647125,-0.0954785495996475,0.626310408115387,-0.733514249324799,-0.263992100954056,0.698516190052032,-0.643461227416992,-0.31310161948204,0.782150328159332,-0.586284458637238,-0.210976868867874,0.895917177200317,-0.440315544605255,-0.0587731041014194,0.922208786010742,-0.38618677854538,-0.0197631269693375,0.965290367603302,-0.259211897850037,0.0319939330220222,0.949696838855743,-0.31304469704628,-0.00887881591916084,0.922208786010742,-0.38618677854538,-0.0197631269693375,0.895917177200317,-0.440315544605255,-0.0587731041014194,0.782150328159332,-0.586284458637238,-0.210976868867874,0.98123699426651,-0.192527383565903,0.0103501146659255,0.949696838855743,-0.31304469704628,-0.00887881591916084,0.965290367603302,-0.259211897850037,0.0319939330220222,0.98123699426651,-0.192527383565903,0.0103501146659255,0.996497631072998,-0.0793254822492599,0.0264549870043993,0.987232148647308,-0.159235268831253,-0.00408750120550394,0.996497631072998,-0.0793254822492599,0.0264549870043993,0.996590554714203,-0.0776983797550201,-0.0277501977980137,0.987232148647308,-0.159235268831253,-0.00408750120550394,0.998991727828979,-0.0257906448096037,-0.0367465391755104,0.996590554714203,-0.0776983797550201,-0.0277501977980137,0.999648213386536,0.0264034420251846,0.00249529606662691,0.998991727828979,-0.0257906448096037,-0.0367465391755104,0.998302400112152,0.0397782884538174,-0.0425426661968231,0.99026757478714,-0.11084358394146,-0.0841646194458008,0.974379301071167,-0.183548882603645,-0.129978731274605,0.994083166122437,-0.0496644712984562,-0.0966023653745651,0.97931295633316,-0.154639035463333,-0.130510032176971,0.994083166122437,-0.0496644712984562,-0.0966023653745651,0.99026757478714,-0.11084358394146,-0.0841646194458008,0.998302400112152,0.0397782884538174,-0.0425426661968231, +0.97931295633316,-0.154639035463333,-0.130510032176971,0.992342710494995,-0.072039783000946,-0.100329846143723,0.972493886947632,-0.183918505907059,-0.142931684851646,0.963462114334106,-0.215251222252846,-0.159397706389427,0.989751398563385,-0.101209171116352,-0.100741498172283,0.981192827224731,-0.175614789128304,-0.0801248922944069,0.945256054401398,-0.304666012525558,-0.116916500031948,0.928294241428375,-0.327763319015503,-0.175615638494492,0.981192827224731,-0.175614789128304,-0.0801248922944069,0.989751398563385,-0.101209171116352,-0.100741498172283,0.972493886947632,-0.183918505907059,-0.142931684851646,0.992342710494995,-0.072039783000946,-0.100329846143723,0.87229311466217,-0.450187057256699,-0.190882682800293,0.837560772895813,-0.492581576108933,-0.236337065696716,0.928294241428375,-0.327763319015503,-0.175615638494492,0.484360158443451,-0.834418773651123,-0.262945801019669,0.479677945375443,-0.843657255172729,-0.241146147251129,0.638595342636108,-0.715246915817261,-0.283932507038116,0.754804015159607,-0.606155037879944,-0.250692993402481,0.837560772895813,-0.492581576108933,-0.236337065696716,0.87229311466217,-0.450187057256699,-0.190882682800293,0.754804015159607,-0.606155037879944,-0.250692993402481,0.568089246749878,-0.774509131908417,-0.278226584196091,0.638595342636108,-0.715246915817261,-0.283932507038116,0.965290367603302,-0.259211897850037,0.0319939330220222,0.922208786010742,-0.38618677854538,-0.0197631269693375,0.8987837433815,-0.422688126564026,-0.116285927593708,0.844319641590118,-0.509151935577393,-0.166998520493507,0.922208786010742,-0.38618677854538,-0.0197631269693375,0.782150328159332,-0.586284458637238,-0.210976868867874,0.98123699426651,-0.192527383565903,0.0103501146659255,0.965290367603302,-0.259211897850037,0.0319939330220222,0.990579783916473,-0.128035947680473,0.0485630668699741,0.990579783916473,-0.128035947680473,0.0485630668699741,0.996497631072998,-0.0793254822492599,0.0264549870043993,0.98123699426651,-0.192527383565903,0.0103501146659255,0.996497631072998,-0.0793254822492599,0.0264549870043993, +0.99635910987854,0.0633959025144577,0.0570037811994553,0.996590554714203,-0.0776983797550201,-0.0277501977980137,0.999648213386536,0.0264034420251846,0.00249529606662691,0.996590554714203,-0.0776983797550201,-0.0277501977980137,0.99635910987854,0.0633959025144577,0.0570037811994553,0.998991727828979,-0.0257906448096037,-0.0367465391755104,0.999648213386536,0.0264034420251846,0.00249529606662691,0.991538047790527,0.127126768231392,0.0262869354337454,0.998991727828979,-0.0257906448096037,-0.0367465391755104,0.991538047790527,0.127126768231392,0.0262869354337454,0.998302400112152,0.0397782884538174,-0.0425426661968231,0.994083166122437,-0.0496644712984562,-0.0966023653745651,0.992342710494995,-0.072039783000946,-0.100329846143723,0.97931295633316,-0.154639035463333,-0.130510032176971,0.998302400112152,0.0397782884538174,-0.0425426661968231,0.989303886890411,0.14528551697731,-0.0130306873470545,0.994083166122437,-0.0496644712984562,-0.0966023653745651,0.999363958835602,-0.0232126489281654,-0.0270695257931948,0.981192827224731,-0.175614789128304,-0.0801248922944069,0.989751398563385,-0.101209171116352,-0.100741498172283,0.945256054401398,-0.304666012525558,-0.116916500031948,0.87229311466217,-0.450187057256699,-0.190882682800293,0.928294241428375,-0.327763319015503,-0.175615638494492,0.945256054401398,-0.304666012525558,-0.116916500031948,0.981192827224731,-0.175614789128304,-0.0801248922944069,0.979215085506439,-0.195573523640633,-0.0537469051778317,0.992342710494995,-0.072039783000946,-0.100329846143723,0.997977137565613,0.0265960991382599,-0.0577423647046089,0.989751398563385,-0.101209171116352,-0.100741498172283,0.484360158443451,-0.834418773651123,-0.262945801019669,0.30469936132431,-0.929440379142761,-0.208083510398865,0.479677945375443,-0.843657255172729,-0.241146147251129,0.484360158443451,-0.834418773651123,-0.262945801019669,0.638595342636108,-0.715246915817261,-0.283932507038116,0.568089246749878,-0.774509131908417,-0.278226584196091,0.813714146614075,-0.539566695690155,-0.216187506914139,0.754804015159607,-0.606155037879944,-0.250692993402481, +0.87229311466217,-0.450187057256699,-0.190882682800293,0.671452283859253,-0.697476267814636,-0.250356703996658,0.568089246749878,-0.774509131908417,-0.278226584196091,0.754804015159607,-0.606155037879944,-0.250692993402481,0.844319641590118,-0.509151935577393,-0.166998520493507,0.8987837433815,-0.422688126564026,-0.116285927593708,0.922208786010742,-0.38618677854538,-0.0197631269693375,0.947608292102814,-0.319333165884018,-0.00804164633154869,0.965290367603302,-0.259211897850037,0.0319939330220222,0.8987837433815,-0.422688126564026,-0.116285927593708,0.980171144008636,-0.178667053580284,0.0856883525848389,0.990579783916473,-0.128035947680473,0.0485630668699741,0.965290367603302,-0.259211897850037,0.0319939330220222,0.990579783916473,-0.128035947680473,0.0485630668699741,0.997766971588135,-0.0200775861740112,0.063701368868351,0.996497631072998,-0.0793254822492599,0.0264549870043993,0.99635910987854,0.0633959025144577,0.0570037811994553,0.996497631072998,-0.0793254822492599,0.0264549870043993,0.997766971588135,-0.0200775861740112,0.063701368868351,0.999648213386536,0.0264034420251846,0.00249529606662691,0.99635910987854,0.0633959025144577,0.0570037811994553,0.976053893566132,0.198145970702171,0.0897601917386055,0.976053893566132,0.198145970702171,0.0897601917386055,0.991538047790527,0.127126768231392,0.0262869354337454,0.999648213386536,0.0264034420251846,0.00249529606662691,0.969817996025085,0.24017870426178,0.0420376807451248,0.998302400112152,0.0397782884538174,-0.0425426661968231,0.991538047790527,0.127126768231392,0.0262869354337454,0.994083166122437,-0.0496644712984562,-0.0966023653745651,0.996714234352112,0.0564754977822304,-0.0580612942576408,0.992342710494995,-0.072039783000946,-0.100329846143723,0.989303886890411,0.14528551697731,-0.0130306873470545,0.998302400112152,0.0397782884538174,-0.0425426661968231,0.969817996025085,0.24017870426178,0.0420376807451248,0.994083166122437,-0.0496644712984562,-0.0966023653745651,0.989303886890411,0.14528551697731,-0.0130306873470545,0.996714234352112,0.0564754977822304,-0.0580612942576408, +0.999363958835602,-0.0232126489281654,-0.0270695257931948,0.999691307544708,-0.0245925802737474,0.00348964589647949,0.981192827224731,-0.175614789128304,-0.0801248922944069,0.999363958835602,-0.0232126489281654,-0.0270695257931948,0.989751398563385,-0.101209171116352,-0.100741498172283,0.996843159198761,0.0785911977291107,-0.0112727526575327,0.945256054401398,-0.304666012525558,-0.116916500031948,0.895897746086121,-0.414282649755478,-0.160427495837212,0.87229311466217,-0.450187057256699,-0.190882682800293,0.981192827224731,-0.175614789128304,-0.0801248922944069,0.999691307544708,-0.0245925802737474,0.00348964589647949,0.979215085506439,-0.195573523640633,-0.0537469051778317,0.93829083442688,-0.32939675450325,-0.10539435595274,0.945256054401398,-0.304666012525558,-0.116916500031948,0.979215085506439,-0.195573523640633,-0.0537469051778317,0.997977137565613,0.0265960991382599,-0.0577423647046089,0.992342710494995,-0.072039783000946,-0.100329846143723,0.992496192455292,0.118604101240635,-0.0297375097870827,0.996843159198761,0.0785911977291107,-0.0112727526575327,0.989751398563385,-0.101209171116352,-0.100741498172283,0.997977137565613,0.0265960991382599,-0.0577423647046089,0.30469936132431,-0.929440379142761,-0.208083510398865,0.484360158443451,-0.834418773651123,-0.262945801019669,0.326815634965897,-0.910003185272217,-0.255118817090988,0.484360158443451,-0.834418773651123,-0.262945801019669,0.568089246749878,-0.774509131908417,-0.278226584196091,0.326815634965897,-0.910003185272217,-0.255118817090988,0.813714146614075,-0.539566695690155,-0.216187506914139,0.671452283859253,-0.697476267814636,-0.250356703996658,0.754804015159607,-0.606155037879944,-0.250692993402481,0.813714146614075,-0.539566695690155,-0.216187506914139,0.87229311466217,-0.450187057256699,-0.190882682800293,0.895897746086121,-0.414282649755478,-0.160427495837212,0.435529112815857,-0.865764796733856,-0.24650664627552,0.568089246749878,-0.774509131908417,-0.278226584196091,0.671452283859253,-0.697476267814636,-0.250356703996658,0.980171144008636,-0.178667053580284,0.0856883525848389, +0.965290367603302,-0.259211897850037,0.0319939330220222,0.947608292102814,-0.319333165884018,-0.00804164633154869,0.980171144008636,-0.178667053580284,0.0856883525848389,0.992334306240082,-0.0824146121740341,0.0920886248350143,0.990579783916473,-0.128035947680473,0.0485630668699741,0.992334306240082,-0.0824146121740341,0.0920886248350143,0.997766971588135,-0.0200775861740112,0.063701368868351,0.990579783916473,-0.128035947680473,0.0485630668699741,0.99635910987854,0.0633959025144577,0.0570037811994553,0.997766971588135,-0.0200775861740112,0.063701368868351,0.985718429088593,0.122993633151054,0.11502879858017,0.976053893566132,0.198145970702171,0.0897601917386055,0.99635910987854,0.0633959025144577,0.0570037811994553,0.950556099414825,0.277536898851395,0.139342531561852,0.938232481479645,0.328345358371735,0.109127521514893,0.991538047790527,0.127126768231392,0.0262869354337454,0.976053893566132,0.198145970702171,0.0897601917386055,0.938232481479645,0.328345358371735,0.109127521514893,0.969817996025085,0.24017870426178,0.0420376807451248,0.991538047790527,0.127126768231392,0.0262869354337454,0.996714234352112,0.0564754977822304,-0.0580612942576408,0.992496192455292,0.118604101240635,-0.0297375097870827,0.992342710494995,-0.072039783000946,-0.100329846143723,0.969817996025085,0.24017870426178,0.0420376807451248,0.944126009941101,0.325042814016342,0.0545272342860699,0.989303886890411,0.14528551697731,-0.0130306873470545,0.972090661525726,0.23450443148613,0.00687804631888866,0.996714234352112,0.0564754977822304,-0.0580612942576408,0.989303886890411,0.14528551697731,-0.0130306873470545,0.999363958835602,-0.0232126489281654,-0.0270695257931948,0.989717245101929,0.13859911262989,0.0353541858494282,0.999691307544708,-0.0245925802737474,0.00348964589647949,0.989717245101929,0.13859911262989,0.0353541858494282,0.999363958835602,-0.0232126489281654,-0.0270695257931948,0.996843159198761,0.0785911977291107,-0.0112727526575327,0.93829083442688,-0.32939675450325,-0.10539435595274,0.895897746086121,-0.414282649755478,-0.160427495837212, +0.945256054401398,-0.304666012525558,-0.116916500031948,0.999691307544708,-0.0245925802737474,0.00348964589647949,0.994974195957184,-0.0954278409481049,-0.0303287915885448,0.979215085506439,-0.195573523640633,-0.0537469051778317,0.956965148448944,-0.283393919467926,-0.0624939687550068,0.93829083442688,-0.32939675450325,-0.10539435595274,0.979215085506439,-0.195573523640633,-0.0537469051778317,0.992496192455292,0.118604101240635,-0.0297375097870827,0.979541778564453,0.201192587614059,0.00440468359738588,0.997977137565613,0.0265960991382599,-0.0577423647046089,0.996843159198761,0.0785911977291107,-0.0112727526575327,0.997977137565613,0.0265960991382599,-0.0577423647046089,0.979541778564453,0.201192587614059,0.00440468359738588,0.435529112815857,-0.865764796733856,-0.24650664627552,0.326815634965897,-0.910003185272217,-0.255118817090988,0.568089246749878,-0.774509131908417,-0.278226584196091,0.723189532756805,-0.647091925144196,-0.241389319300652,0.671452283859253,-0.697476267814636,-0.250356703996658,0.813714146614075,-0.539566695690155,-0.216187506914139,0.877622067928314,-0.454773932695389,-0.151526018977165,0.813714146614075,-0.539566695690155,-0.216187506914139,0.895897746086121,-0.414282649755478,-0.160427495837212,0.435529112815857,-0.865764796733856,-0.24650664627552,0.671452283859253,-0.697476267814636,-0.250356703996658,0.539318859577179,-0.808016061782837,-0.23716039955616,0.972024917602539,-0.229633763432503,0.0493537932634354,0.980171144008636,-0.178667053580284,0.0856883525848389,0.947608292102814,-0.319333165884018,-0.00804164633154869,0.985377669334412,-0.117717266082764,0.123180598020554,0.992334306240082,-0.0824146121740341,0.0920886248350143,0.980171144008636,-0.178667053580284,0.0856883525848389,0.992493093013763,0.0176996197551489,0.121012806892395,0.997766971588135,-0.0200775861740112,0.063701368868351,0.992334306240082,-0.0824146121740341,0.0920886248350143,0.992493093013763,0.0176996197551489,0.121012806892395,0.985718429088593,0.122993633151054,0.11502879858017,0.997766971588135,-0.0200775861740112,0.063701368868351, +0.985718429088593,0.122993633151054,0.11502879858017,0.958486139774323,0.243181973695755,0.148884862661362,0.99635910987854,0.0633959025144577,0.0570037811994553,0.950556099414825,0.277536898851395,0.139342531561852,0.99635910987854,0.0633959025144577,0.0570037811994553,0.958486139774323,0.243181973695755,0.148884862661362,0.901952028274536,0.393876612186432,0.177040711045265,0.976053893566132,0.198145970702171,0.0897601917386055,0.950556099414825,0.277536898851395,0.139342531561852,0.938232481479645,0.328345358371735,0.109127521514893,0.976053893566132,0.198145970702171,0.0897601917386055,0.901952028274536,0.393876612186432,0.177040711045265,0.969817996025085,0.24017870426178,0.0420376807451248,0.938232481479645,0.328345358371735,0.109127521514893,0.901633322238922,0.419955462217331,0.103415042161942,0.972090661525726,0.23450443148613,0.00687804631888866,0.992496192455292,0.118604101240635,-0.0297375097870827,0.996714234352112,0.0564754977822304,-0.0580612942576408,0.944126009941101,0.325042814016342,0.0545272342860699,0.969817996025085,0.24017870426178,0.0420376807451248,0.901633322238922,0.419955462217331,0.103415042161942,0.972090661525726,0.23450443148613,0.00687804631888866,0.989303886890411,0.14528551697731,-0.0130306873470545,0.944126009941101,0.325042814016342,0.0545272342860699,0.989717245101929,0.13859911262989,0.0353541858494282,0.979186832904816,0.195114895701408,0.0558851025998592,0.999691307544708,-0.0245925802737474,0.00348964589647949,0.989717245101929,0.13859911262989,0.0353541858494282,0.996843159198761,0.0785911977291107,-0.0112727526575327,0.969678223133087,0.241843104362488,0.0351573340594769,0.877622067928314,-0.454773932695389,-0.151526018977165,0.895897746086121,-0.414282649755478,-0.160427495837212,0.93829083442688,-0.32939675450325,-0.10539435595274,0.999691307544708,-0.0245925802737474,0.00348964589647949,0.999475240707397,0.0323713235557079,0.00100962608121336,0.994974195957184,-0.0954278409481049,-0.0303287915885448,0.990261554718018,-0.133190378546715,-0.0405252538621426,0.979215085506439,-0.195573523640633,-0.0537469051778317, +0.994974195957184,-0.0954278409481049,-0.0303287915885448,0.956965148448944,-0.283393919467926,-0.0624939687550068,0.877622067928314,-0.454773932695389,-0.151526018977165,0.93829083442688,-0.32939675450325,-0.10539435595274,0.979215085506439,-0.195573523640633,-0.0537469051778317,0.978374600410461,-0.202044978737831,-0.044279333204031,0.956965148448944,-0.283393919467926,-0.0624939687550068,0.992496192455292,0.118604101240635,-0.0297375097870827,0.959459245204926,0.279735177755356,0.0344406254589558,0.979541778564453,0.201192587614059,0.00440468359738588,0.996843159198761,0.0785911977291107,-0.0112727526575327,0.979541778564453,0.201192587614059,0.00440468359738588,0.969678223133087,0.241843104362488,0.0351573340594769,0.202687814831734,-0.952937960624695,-0.225447848439217,0.326815634965897,-0.910003185272217,-0.255118817090988,0.435529112815857,-0.865764796733856,-0.24650664627552,0.723189532756805,-0.647091925144196,-0.241389319300652,0.539318859577179,-0.808016061782837,-0.23716039955616,0.671452283859253,-0.697476267814636,-0.250356703996658,0.787367403507233,-0.578018069267273,-0.214353799819946,0.723189532756805,-0.647091925144196,-0.241389319300652,0.813714146614075,-0.539566695690155,-0.216187506914139,0.813714146614075,-0.539566695690155,-0.216187506914139,0.877622067928314,-0.454773932695389,-0.151526018977165,0.787367403507233,-0.578018069267273,-0.214353799819946,0.435529112815857,-0.865764796733856,-0.24650664627552,0.539318859577179,-0.808016061782837,-0.23716039955616,0.274672657251358,-0.936954498291016,-0.21603487432003,0.972024917602539,-0.229633763432503,0.0493537932634354,0.985377669334412,-0.117717266082764,0.123180598020554,0.980171144008636,-0.178667053580284,0.0856883525848389,0.985377669334412,-0.117717266082764,0.123180598020554,0.991095721721649,-0.0523286312818527,0.122437462210655,0.992334306240082,-0.0824146121740341,0.0920886248350143,0.992493093013763,0.0176996197551489,0.121012806892395,0.992334306240082,-0.0824146121740341,0.0920886248350143,0.991095721721649,-0.0523286312818527,0.122437462210655, +0.992493093013763,0.0176996197551489,0.121012806892395,0.962055027484894,0.189116090536118,0.196684822440147,0.985718429088593,0.122993633151054,0.11502879858017,0.921194553375244,0.318875283002853,0.22297765314579,0.958486139774323,0.243181973695755,0.148884862661362,0.985718429088593,0.122993633151054,0.11502879858017,0.950556099414825,0.277536898851395,0.139342531561852,0.958486139774323,0.243181973695755,0.148884862661362,0.87881463766098,0.423620402812958,0.21961435675621,0.901952028274536,0.393876612186432,0.177040711045265,0.950556099414825,0.277536898851395,0.139342531561852,0.87881463766098,0.423620402812958,0.21961435675621,0.972090661525726,0.23450443148613,0.00687804631888866,0.959459245204926,0.279735177755356,0.0344406254589558,0.992496192455292,0.118604101240635,-0.0297375097870827,0.901633322238922,0.419955462217331,0.103415042161942,0.89371657371521,0.44050744175911,0.084992378950119,0.944126009941101,0.325042814016342,0.0545272342860699,0.918614387512207,0.388784795999527,0.0706673413515091,0.972090661525726,0.23450443148613,0.00687804631888866,0.944126009941101,0.325042814016342,0.0545272342860699,0.941835999488831,0.325789272785187,0.0824997574090958,0.979186832904816,0.195114895701408,0.0558851025998592,0.989717245101929,0.13859911262989,0.0353541858494282,0.999475240707397,0.0323713235557079,0.00100962608121336,0.999691307544708,-0.0245925802737474,0.00348964589647949,0.979186832904816,0.195114895701408,0.0558851025998592,0.969678223133087,0.241843104362488,0.0351573340594769,0.941835999488831,0.325789272785187,0.0824997574090958,0.989717245101929,0.13859911262989,0.0353541858494282,0.999475240707397,0.0323713235557079,0.00100962608121336,0.998967409133911,-0.0360275506973267,-0.0276763755828142,0.994974195957184,-0.0954278409481049,-0.0303287915885448,0.990261554718018,-0.133190378546715,-0.0405252538621426,0.978374600410461,-0.202044978737831,-0.044279333204031,0.979215085506439,-0.195573523640633,-0.0537469051778317,0.990261554718018,-0.133190378546715,-0.0405252538621426,0.994974195957184,-0.0954278409481049,-0.0303287915885448, +0.998967409133911,-0.0360275506973267,-0.0276763755828142,0.877622067928314,-0.454773932695389,-0.151526018977165,0.956965148448944,-0.283393919467926,-0.0624939687550068,0.914015531539917,-0.394356966018677,-0.0951742827892303,0.982631742954254,-0.185113042593002,-0.0129591738805175,0.956965148448944,-0.283393919467926,-0.0624939687550068,0.978374600410461,-0.202044978737831,-0.044279333204031,0.959459245204926,0.279735177755356,0.0344406254589558,0.932919919490814,0.35454735159874,0.0629004687070847,0.979541778564453,0.201192587614059,0.00440468359738588,0.932919919490814,0.35454735159874,0.0629004687070847,0.969678223133087,0.241843104362488,0.0351573340594769,0.979541778564453,0.201192587614059,0.00440468359738588,0.202687814831734,-0.952937960624695,-0.225447848439217,0.435529112815857,-0.865764796733856,-0.24650664627552,0.274672657251358,-0.936954498291016,-0.21603487432003,0.539318859577179,-0.808016061782837,-0.23716039955616,0.723189532756805,-0.647091925144196,-0.241389319300652,0.626414656639099,-0.734910428524017,-0.259829103946686,0.787367403507233,-0.578018069267273,-0.214353799819946,0.626414656639099,-0.734910428524017,-0.259829103946686,0.723189532756805,-0.647091925144196,-0.241389319300652,0.745471894741058,-0.631689310073853,-0.212697193026543,0.787367403507233,-0.578018069267273,-0.214353799819946,0.877622067928314,-0.454773932695389,-0.151526018977165,0.539318859577179,-0.808016061782837,-0.23716039955616,0.380135029554367,-0.886513710021973,-0.263800412416458,0.274672657251358,-0.936954498291016,-0.21603487432003,0.986194014549255,-0.121706694364548,0.112288370728493,0.985377669334412,-0.117717266082764,0.123180598020554,0.972024917602539,-0.229633763432503,0.0493537932634354,0.988703727722168,-0.0414503812789917,0.144036993384361,0.991095721721649,-0.0523286312818527,0.122437462210655,0.985377669334412,-0.117717266082764,0.123180598020554,0.992493093013763,0.0176996197551489,0.121012806892395,0.991095721721649,-0.0523286312818527,0.122437462210655,0.985486686229706,0.0584729984402657,0.15936353802681, +0.992493093013763,0.0176996197551489,0.121012806892395,0.985486686229706,0.0584729984402657,0.15936353802681,0.962055027484894,0.189116090536118,0.196684822440147,0.985718429088593,0.122993633151054,0.11502879858017,0.962055027484894,0.189116090536118,0.196684822440147,0.921194553375244,0.318875283002853,0.22297765314579,0.921194553375244,0.318875283002853,0.22297765314579,0.87881463766098,0.423620402812958,0.21961435675621,0.958486139774323,0.243181973695755,0.148884862661362,0.972090661525726,0.23450443148613,0.00687804631888866,0.918614387512207,0.388784795999527,0.0706673413515091,0.959459245204926,0.279735177755356,0.0344406254589558,0.918614387512207,0.388784795999527,0.0706673413515091,0.944126009941101,0.325042814016342,0.0545272342860699,0.89371657371521,0.44050744175911,0.084992378950119,0.992942452430725,0.114665038883686,0.0302837304770947,0.999475240707397,0.0323713235557079,0.00100962608121336,0.979186832904816,0.195114895701408,0.0558851025998592,0.969678223133087,0.241843104362488,0.0351573340594769,0.932919919490814,0.35454735159874,0.0629004687070847,0.941835999488831,0.325789272785187,0.0824997574090958,0.992942452430725,0.114665038883686,0.0302837304770947,0.998967409133911,-0.0360275506973267,-0.0276763755828142,0.999475240707397,0.0323713235557079,0.00100962608121336,0.982631742954254,-0.185113042593002,-0.0129591738805175,0.978374600410461,-0.202044978737831,-0.044279333204031,0.990261554718018,-0.133190378546715,-0.0405252538621426,0.999120652675629,0.0315296314656734,0.0276344604790211,0.990261554718018,-0.133190378546715,-0.0405252538621426,0.998967409133911,-0.0360275506973267,-0.0276763755828142,0.956965148448944,-0.283393919467926,-0.0624939687550068,0.944839715957642,-0.323609113693237,-0.050546582788229,0.914015531539917,-0.394356966018677,-0.0951742827892303,0.877622067928314,-0.454773932695389,-0.151526018977165,0.914015531539917,-0.394356966018677,-0.0951742827892303,0.815098702907562,-0.559609293937683,-0.149837866425514,0.956965148448944,-0.283393919467926,-0.0624939687550068,0.982631742954254,-0.185113042593002,-0.0129591738805175, +0.966331422328949,-0.25557342171669,-0.0297614987939596,0.959459245204926,0.279735177755356,0.0344406254589558,0.918614387512207,0.388784795999527,0.0706673413515091,0.932919919490814,0.35454735159874,0.0629004687070847,0.539318859577179,-0.808016061782837,-0.23716039955616,0.626414656639099,-0.734910428524017,-0.259829103946686,0.380135029554367,-0.886513710021973,-0.263800412416458,0.745471894741058,-0.631689310073853,-0.212697193026543,0.626414656639099,-0.734910428524017,-0.259829103946686,0.787367403507233,-0.578018069267273,-0.214353799819946,0.745471894741058,-0.631689310073853,-0.212697193026543,0.877622067928314,-0.454773932695389,-0.151526018977165,0.815098702907562,-0.559609293937683,-0.149837866425514,0.102743305265903,-0.96482914686203,-0.241968050599098,0.274672657251358,-0.936954498291016,-0.21603487432003,0.380135029554367,-0.886513710021973,-0.263800412416458,0.986194014549255,-0.121706694364548,0.112288370728493,0.988703727722168,-0.0414503812789917,0.144036993384361,0.985377669334412,-0.117717266082764,0.123180598020554,0.988703727722168,-0.0414503812789917,0.144036993384361,0.985486686229706,0.0584729984402657,0.15936353802681,0.991095721721649,-0.0523286312818527,0.122437462210655,0.931907832622528,0.246058762073517,0.266462981700897,0.962055027484894,0.189116090536118,0.196684822440147,0.985486686229706,0.0584729984402657,0.15936353802681,0.892019152641296,0.346116989850998,0.290697008371353,0.921194553375244,0.318875283002853,0.22297765314579,0.962055027484894,0.189116090536118,0.196684822440147,0.921194553375244,0.318875283002853,0.22297765314579,0.836996853351593,0.447030484676361,0.315594613552094,0.87881463766098,0.423620402812958,0.21961435675621,0.992942452430725,0.114665038883686,0.0302837304770947,0.979186832904816,0.195114895701408,0.0558851025998592,0.946040451526642,0.306677788496017,0.104671321809292,0.999120652675629,0.0315296314656734,0.0276344604790211,0.998967409133911,-0.0360275506973267,-0.0276763755828142,0.992942452430725,0.114665038883686,0.0302837304770947,0.990261554718018,-0.133190378546715,-0.0405252538621426, +0.996730029582977,-0.0790766552090645,0.0166137311607599,0.982631742954254,-0.185113042593002,-0.0129591738805175,0.999120652675629,0.0315296314656734,0.0276344604790211,0.996730029582977,-0.0790766552090645,0.0166137311607599,0.990261554718018,-0.133190378546715,-0.0405252538621426,0.956965148448944,-0.283393919467926,-0.0624939687550068,0.966331422328949,-0.25557342171669,-0.0297614987939596,0.944839715957642,-0.323609113693237,-0.050546582788229,0.8739373087883,-0.473308563232422,-0.110509991645813,0.914015531539917,-0.394356966018677,-0.0951742827892303,0.944839715957642,-0.323609113693237,-0.050546582788229,0.8739373087883,-0.473308563232422,-0.110509991645813,0.815098702907562,-0.559609293937683,-0.149837866425514,0.914015531539917,-0.394356966018677,-0.0951742827892303,0.982631742954254,-0.185113042593002,-0.0129591738805175,0.980607151985168,-0.195368140935898,-0.0155152343213558,0.966331422328949,-0.25557342171669,-0.0297614987939596,0.463579148054123,-0.842792630195618,-0.273486584424973,0.380135029554367,-0.886513710021973,-0.263800412416458,0.626414656639099,-0.734910428524017,-0.259829103946686,0.745471894741058,-0.631689310073853,-0.212697193026543,0.533667325973511,-0.807620942592621,-0.250893235206604,0.626414656639099,-0.734910428524017,-0.259829103946686,0.745471894741058,-0.631689310073853,-0.212697193026543,0.815098702907562,-0.559609293937683,-0.149837866425514,0.632493495941162,-0.749071836471558,-0.197087168693542,0.277227789163589,-0.921171247959137,-0.273107916116714,0.102743305265903,-0.96482914686203,-0.241968050599098,0.380135029554367,-0.886513710021973,-0.263800412416458,0.995206952095032,-0.0210538748651743,0.095497228205204,0.988703727722168,-0.0414503812789917,0.144036993384361,0.986194014549255,-0.121706694364548,0.112288370728493,0.985486686229706,0.0584729984402657,0.15936353802681,0.988703727722168,-0.0414503812789917,0.144036993384361,0.987879693508148,0.0433737970888615,0.149037763476372,0.931907832622528,0.246058762073517,0.266462981700897,0.892019152641296,0.346116989850998,0.290697008371353, +0.962055027484894,0.189116090536118,0.196684822440147,0.964157342910767,0.162781521677971,0.209529623389244,0.931907832622528,0.246058762073517,0.266462981700897,0.985486686229706,0.0584729984402657,0.15936353802681,0.836996853351593,0.447030484676361,0.315594613552094,0.921194553375244,0.318875283002853,0.22297765314579,0.892019152641296,0.346116989850998,0.290697008371353,0.992942452430725,0.114665038883686,0.0302837304770947,0.946040451526642,0.306677788496017,0.104671321809292,0.98367828130722,0.169240742921829,0.0611114874482155,0.992942452430725,0.114665038883686,0.0302837304770947,0.98367828130722,0.169240742921829,0.0611114874482155,0.999120652675629,0.0315296314656734,0.0276344604790211,0.996730029582977,-0.0790766552090645,0.0166137311607599,0.996438801288605,-0.0711784809827805,0.0452013649046421,0.982631742954254,-0.185113042593002,-0.0129591738805175,0.999120652675629,0.0315296314656734,0.0276344604790211,0.991110384464264,0.0898541882634163,0.0981142371892929,0.996730029582977,-0.0790766552090645,0.0166137311607599,0.961867332458496,-0.265850245952606,-0.0643020421266556,0.944839715957642,-0.323609113693237,-0.050546582788229,0.966331422328949,-0.25557342171669,-0.0297614987939596,0.901946485042572,-0.420821130275726,-0.0969638600945473,0.8739373087883,-0.473308563232422,-0.110509991645813,0.944839715957642,-0.323609113693237,-0.050546582788229,0.815098702907562,-0.559609293937683,-0.149837866425514,0.8739373087883,-0.473308563232422,-0.110509991645813,0.714530408382416,-0.681670963764191,-0.157387852668762,0.992958962917328,-0.116580121219158,0.0210061296820641,0.980607151985168,-0.195368140935898,-0.0155152343213558,0.982631742954254,-0.185113042593002,-0.0129591738805175,0.980607151985168,-0.195368140935898,-0.0155152343213558,0.961867332458496,-0.265850245952606,-0.0643020421266556,0.966331422328949,-0.25557342171669,-0.0297614987939596,0.277227789163589,-0.921171247959137,-0.273107916116714,0.380135029554367,-0.886513710021973,-0.263800412416458,0.463579148054123,-0.842792630195618,-0.273486584424973, +0.463579148054123,-0.842792630195618,-0.273486584424973,0.626414656639099,-0.734910428524017,-0.259829103946686,0.533667325973511,-0.807620942592621,-0.250893235206604,0.533667325973511,-0.807620942592621,-0.250893235206604,0.745471894741058,-0.631689310073853,-0.212697193026543,0.632493495941162,-0.749071836471558,-0.197087168693542,0.815098702907562,-0.559609293937683,-0.149837866425514,0.714530408382416,-0.681670963764191,-0.157387852668762,0.632493495941162,-0.749071836471558,-0.197087168693542,0.102743305265903,-0.96482914686203,-0.241968050599098,0.277227789163589,-0.921171247959137,-0.273107916116714,-0.0418497920036316,-0.958031594753265,-0.283591091632843,0.988703727722168,-0.0414503812789917,0.144036993384361,0.995206952095032,-0.0210538748651743,0.095497228205204,0.987879693508148,0.0433737970888615,0.149037763476372,0.985486686229706,0.0584729984402657,0.15936353802681,0.987879693508148,0.0433737970888615,0.149037763476372,0.964157342910767,0.162781521677971,0.209529623389244,0.866481840610504,0.379651665687561,0.324150681495667,0.892019152641296,0.346116989850998,0.290697008371353,0.931907832622528,0.246058762073517,0.266462981700897,0.964157342910767,0.162781521677971,0.209529623389244,0.901320040225983,0.307944416999817,0.304618448019028,0.931907832622528,0.246058762073517,0.266462981700897,0.866481840610504,0.379651665687561,0.324150681495667,0.836996853351593,0.447030484676361,0.315594613552094,0.892019152641296,0.346116989850998,0.290697008371353,0.968853890895844,0.218520760536194,0.11649376899004,0.98367828130722,0.169240742921829,0.0611114874482155,0.946040451526642,0.306677788496017,0.104671321809292,0.98367828130722,0.169240742921829,0.0611114874482155,0.968853890895844,0.218520760536194,0.11649376899004,0.999120652675629,0.0315296314656734,0.0276344604790211,0.996730029582977,-0.0790766552090645,0.0166137311607599,0.991110384464264,0.0898541882634163,0.0981142371892929,0.996438801288605,-0.0711784809827805,0.0452013649046421,0.992958962917328,-0.116580121219158,0.0210061296820641,0.982631742954254,-0.185113042593002,-0.0129591738805175, +0.996438801288605,-0.0711784809827805,0.0452013649046421,0.999120652675629,0.0315296314656734,0.0276344604790211,0.968853890895844,0.218520760536194,0.11649376899004,0.991110384464264,0.0898541882634163,0.0981142371892929,0.961867332458496,-0.265850245952606,-0.0643020421266556,0.901946485042572,-0.420821130275726,-0.0969638600945473,0.944839715957642,-0.323609113693237,-0.050546582788229,0.901946485042572,-0.420821130275726,-0.0969638600945473,0.776365876197815,-0.608356237411499,-0.164798557758331,0.8739373087883,-0.473308563232422,-0.110509991645813,0.714530408382416,-0.681670963764191,-0.157387852668762,0.8739373087883,-0.473308563232422,-0.110509991645813,0.776365876197815,-0.608356237411499,-0.164798557758331,0.995881974697113,-0.0629470646381378,0.0652430132031441,0.980607151985168,-0.195368140935898,-0.0155152343213558,0.992958962917328,-0.116580121219158,0.0210061296820641,0.961867332458496,-0.265850245952606,-0.0643020421266556,0.980607151985168,-0.195368140935898,-0.0155152343213558,0.975860595703125,-0.210500061511993,-0.0581876635551453,0.463579148054123,-0.842792630195618,-0.273486584424973,0.533667325973511,-0.807620942592621,-0.250893235206604,0.277227789163589,-0.921171247959137,-0.273107916116714,0.533667325973511,-0.807620942592621,-0.250893235206604,0.632493495941162,-0.749071836471558,-0.197087168693542,0.404290199279785,-0.884166657924652,-0.234091058373451,0.632493495941162,-0.749071836471558,-0.197087168693542,0.714530408382416,-0.681670963764191,-0.157387852668762,0.498385936021805,-0.845227658748627,-0.19287733733654,0.277227789163589,-0.921171247959137,-0.273107916116714,0.168700397014618,-0.950691282749176,-0.260242462158203,-0.0418497920036316,-0.958031594753265,-0.283591091632843,0.995206952095032,-0.0210538748651743,0.095497228205204,0.990151345729828,0.0489564053714275,0.131162285804749,0.987879693508148,0.0433737970888615,0.149037763476372,0.964157342910767,0.162781521677971,0.209529623389244,0.987879693508148,0.0433737970888615,0.149037763476372,0.972104966640472,0.15726974606514,0.174005895853043, +0.866481840610504,0.379651665687561,0.324150681495667,0.931907832622528,0.246058762073517,0.266462981700897,0.901320040225983,0.307944416999817,0.304618448019028,0.890762150287628,0.310849130153656,0.331535071134567,0.901320040225983,0.307944416999817,0.304618448019028,0.964157342910767,0.162781521677971,0.209529623389244,0.866481840610504,0.379651665687561,0.324150681495667,0.828401207923889,0.41530305147171,0.37586522102356,0.836996853351593,0.447030484676361,0.315594613552094,0.993661940097809,0.0445580035448074,0.103200607001781,0.996438801288605,-0.0711784809827805,0.0452013649046421,0.991110384464264,0.0898541882634163,0.0981142371892929,0.993661940097809,0.0445580035448074,0.103200607001781,0.992958962917328,-0.116580121219158,0.0210061296820641,0.996438801288605,-0.0711784809827805,0.0452013649046421,0.930768191814423,0.304695338010788,0.20206680893898,0.991110384464264,0.0898541882634163,0.0981142371892929,0.968853890895844,0.218520760536194,0.11649376899004,0.901946485042572,-0.420821130275726,-0.0969638600945473,0.961867332458496,-0.265850245952606,-0.0643020421266556,0.938619792461395,-0.331784337759018,-0.0944033041596413,0.901946485042572,-0.420821130275726,-0.0969638600945473,0.745206356048584,-0.646829307079315,-0.162108868360519,0.776365876197815,-0.608356237411499,-0.164798557758331,0.714530408382416,-0.681670963764191,-0.157387852668762,0.776365876197815,-0.608356237411499,-0.164798557758331,0.583617806434631,-0.786835670471191,-0.20069819688797,0.991728007793427,-0.122997209429741,0.0367043688893318,0.980607151985168,-0.195368140935898,-0.0155152343213558,0.995881974697113,-0.0629470646381378,0.0652430132031441,0.995881974697113,-0.0629470646381378,0.0652430132031441,0.992958962917328,-0.116580121219158,0.0210061296820641,0.993661940097809,0.0445580035448074,0.103200607001781,0.975860595703125,-0.210500061511993,-0.0581876635551453,0.980607151985168,-0.195368140935898,-0.0155152343213558,0.991728007793427,-0.122997209429741,0.0367043688893318,0.938619792461395,-0.331784337759018,-0.0944033041596413, +0.961867332458496,-0.265850245952606,-0.0643020421266556,0.975860595703125,-0.210500061511993,-0.0581876635551453,0.533667325973511,-0.807620942592621,-0.250893235206604,0.404290199279785,-0.884166657924652,-0.234091058373451,0.277227789163589,-0.921171247959137,-0.273107916116714,0.404290199279785,-0.884166657924652,-0.234091058373451,0.632493495941162,-0.749071836471558,-0.197087168693542,0.498385936021805,-0.845227658748627,-0.19287733733654,0.583617806434631,-0.786835670471191,-0.20069819688797,0.498385936021805,-0.845227658748627,-0.19287733733654,0.714530408382416,-0.681670963764191,-0.157387852668762,0.277227789163589,-0.921171247959137,-0.273107916116714,0.404290199279785,-0.884166657924652,-0.234091058373451,0.168700397014618,-0.950691282749176,-0.260242462158203,-0.0985161513090134,-0.960055351257324,-0.261893570423126,-0.0418497920036316,-0.958031594753265,-0.283591091632843,0.168700397014618,-0.950691282749176,-0.260242462158203,0.987879693508148,0.0433737970888615,0.149037763476372,0.990151345729828,0.0489564053714275,0.131162285804749,0.972104966640472,0.15726974606514,0.174005895853043,0.964157342910767,0.162781521677971,0.209529623389244,0.972104966640472,0.15726974606514,0.174005895853043,0.939149081707001,0.241741091012955,0.2440495043993,0.866481840610504,0.379651665687561,0.324150681495667,0.901320040225983,0.307944416999817,0.304618448019028,0.828401207923889,0.41530305147171,0.37586522102356,0.901320040225983,0.307944416999817,0.304618448019028,0.890762150287628,0.310849130153656,0.331535071134567,0.828401207923889,0.41530305147171,0.37586522102356,0.964157342910767,0.162781521677971,0.209529623389244,0.939149081707001,0.241741091012955,0.2440495043993,0.890762150287628,0.310849130153656,0.331535071134567,0.993661940097809,0.0445580035448074,0.103200607001781,0.991110384464264,0.0898541882634163,0.0981142371892929,0.971113979816437,0.182713687419891,0.153470456600189,0.971113979816437,0.182713687419891,0.153470456600189,0.991110384464264,0.0898541882634163,0.0981142371892929,0.930768191814423,0.304695338010788,0.20206680893898, +0.938619792461395,-0.331784337759018,-0.0944033041596413,0.828636825084686,-0.539562940597534,-0.149106368422508,0.901946485042572,-0.420821130275726,-0.0969638600945473,0.828636825084686,-0.539562940597534,-0.149106368422508,0.745206356048584,-0.646829307079315,-0.162108868360519,0.901946485042572,-0.420821130275726,-0.0969638600945473,0.745206356048584,-0.646829307079315,-0.162108868360519,0.633317232131958,-0.742963552474976,-0.216596737504005,0.776365876197815,-0.608356237411499,-0.164798557758331,0.583617806434631,-0.786835670471191,-0.20069819688797,0.776365876197815,-0.608356237411499,-0.164798557758331,0.633317232131958,-0.742963552474976,-0.216596737504005,0.995881974697113,-0.0629470646381378,0.0652430132031441,0.993404090404511,0.0216652154922485,0.11260050535202,0.991728007793427,-0.122997209429741,0.0367043688893318,0.995881974697113,-0.0629470646381378,0.0652430132031441,0.993661940097809,0.0445580035448074,0.103200607001781,0.972865104675293,0.14968167245388,0.176433697342873,0.991728007793427,-0.122997209429741,0.0367043688893318,0.997192919254303,-0.0740156769752502,0.011310207657516,0.975860595703125,-0.210500061511993,-0.0581876635551453,0.938619792461395,-0.331784337759018,-0.0944033041596413,0.975860595703125,-0.210500061511993,-0.0581876635551453,0.912094175815582,-0.387491792440414,-0.133918717503548,0.404290199279785,-0.884166657924652,-0.234091058373451,0.498385936021805,-0.845227658748627,-0.19287733733654,0.259578585624695,-0.935559809207916,-0.239471197128296,0.498385936021805,-0.845227658748627,-0.19287733733654,0.583617806434631,-0.786835670471191,-0.20069819688797,0.37853816151619,-0.898537695407867,-0.22212316095829,0.259578585624695,-0.935559809207916,-0.239471197128296,0.168700397014618,-0.950691282749176,-0.260242462158203,0.404290199279785,-0.884166657924652,-0.234091058373451,0.259578585624695,-0.935559809207916,-0.239471197128296,-0.0985161513090134,-0.960055351257324,-0.261893570423126,0.168700397014618,-0.950691282749176,-0.260242462158203,0.990151345729828,0.0489564053714275,0.131162285804749, +0.983355939388275,0.151628792285919,0.100098095834255,0.972104966640472,0.15726974606514,0.174005895853043,0.939149081707001,0.241741091012955,0.2440495043993,0.972104966640472,0.15726974606514,0.174005895853043,0.906070530414581,0.321478396654129,0.275113970041275,0.890762150287628,0.310849130153656,0.331535071134567,0.939149081707001,0.241741091012955,0.2440495043993,0.906070530414581,0.321478396654129,0.275113970041275,0.946926414966583,0.249101415276527,0.20317168533802,0.993661940097809,0.0445580035448074,0.103200607001781,0.971113979816437,0.182713687419891,0.153470456600189,0.946926414966583,0.249101415276527,0.20317168533802,0.971113979816437,0.182713687419891,0.153470456600189,0.930768191814423,0.304695338010788,0.20206680893898,0.912094175815582,-0.387491792440414,-0.133918717503548,0.828636825084686,-0.539562940597534,-0.149106368422508,0.938619792461395,-0.331784337759018,-0.0944033041596413,0.828636825084686,-0.539562940597534,-0.149106368422508,0.62114006280899,-0.75622433423996,-0.20569309592247,0.745206356048584,-0.646829307079315,-0.162108868360519,0.633317232131958,-0.742963552474976,-0.216596737504005,0.745206356048584,-0.646829307079315,-0.162108868360519,0.549685776233673,-0.806063115596771,-0.219334617257118,0.583617806434631,-0.786835670471191,-0.20069819688797,0.633317232131958,-0.742963552474976,-0.216596737504005,0.447054624557495,-0.862496614456177,-0.237153112888336,0.995881974697113,-0.0629470646381378,0.0652430132031441,0.972865104675293,0.14968167245388,0.176433697342873,0.993404090404511,0.0216652154922485,0.11260050535202,0.991728007793427,-0.122997209429741,0.0367043688893318,0.993404090404511,0.0216652154922485,0.11260050535202,0.997192919254303,-0.0740156769752502,0.011310207657516,0.993661940097809,0.0445580035448074,0.103200607001781,0.946926414966583,0.249101415276527,0.20317168533802,0.972865104675293,0.14968167245388,0.176433697342873,0.975860595703125,-0.210500061511993,-0.0581876635551453,0.997192919254303,-0.0740156769752502,0.011310207657516,0.991035223007202,-0.125569313764572,-0.0456230379641056, +0.938483655452728,-0.313067942857742,-0.145728528499603,0.912094175815582,-0.387491792440414,-0.133918717503548,0.975860595703125,-0.210500061511993,-0.0581876635551453,0.498385936021805,-0.845227658748627,-0.19287733733654,0.37853816151619,-0.898537695407867,-0.22212316095829,0.259578585624695,-0.935559809207916,-0.239471197128296,0.447054624557495,-0.862496614456177,-0.237153112888336,0.37853816151619,-0.898537695407867,-0.22212316095829,0.583617806434631,-0.786835670471191,-0.20069819688797,0.259578585624695,-0.935559809207916,-0.239471197128296,0.140123352408409,-0.960470616817474,-0.240544199943542,-0.0985161513090134,-0.960055351257324,-0.261893570423126,0.983355939388275,0.151628792285919,0.100098095834255,0.950215816497803,0.274013519287109,0.148345306515694,0.972104966640472,0.15726974606514,0.174005895853043,0.906070530414581,0.321478396654129,0.275113970041275,0.972104966640472,0.15726974606514,0.174005895853043,0.950215816497803,0.274013519287109,0.148345306515694,0.775222063064575,-0.605789005756378,-0.179026246070862,0.828636825084686,-0.539562940597534,-0.149106368422508,0.912094175815582,-0.387491792440414,-0.133918717503548,0.680437743663788,-0.702941954135895,-0.207067146897316,0.62114006280899,-0.75622433423996,-0.20569309592247,0.828636825084686,-0.539562940597534,-0.149106368422508,0.549685776233673,-0.806063115596771,-0.219334617257118,0.745206356048584,-0.646829307079315,-0.162108868360519,0.62114006280899,-0.75622433423996,-0.20569309592247,0.633317232131958,-0.742963552474976,-0.216596737504005,0.549685776233673,-0.806063115596771,-0.219334617257118,0.447054624557495,-0.862496614456177,-0.237153112888336,0.958675682544708,0.204954907298088,0.19731804728508,0.993404090404511,0.0216652154922485,0.11260050535202,0.972865104675293,0.14968167245388,0.176433697342873,0.998548924922943,0.012917404063046,0.0522794798016548,0.997192919254303,-0.0740156769752502,0.011310207657516,0.993404090404511,0.0216652154922485,0.11260050535202,0.991035223007202,-0.125569313764572,-0.0456230379641056,0.997192919254303,-0.0740156769752502,0.011310207657516, +0.998548924922943,0.012917404063046,0.0522794798016548,0.938483655452728,-0.313067942857742,-0.145728528499603,0.975860595703125,-0.210500061511993,-0.0581876635551453,0.991035223007202,-0.125569313764572,-0.0456230379641056,0.938483655452728,-0.313067942857742,-0.145728528499603,0.835058629512787,-0.513958692550659,-0.196273729205132,0.912094175815582,-0.387491792440414,-0.133918717503548,0.259578585624695,-0.935559809207916,-0.239471197128296,0.37853816151619,-0.898537695407867,-0.22212316095829,0.140123352408409,-0.960470616817474,-0.240544199943542,0.447054624557495,-0.862496614456177,-0.237153112888336,0.227319419384003,-0.947347462177277,-0.225518569350243,0.37853816151619,-0.898537695407867,-0.22212316095829,-0.134369939565659,-0.957383871078491,-0.255657374858856,-0.0985161513090134,-0.960055351257324,-0.261893570423126,0.140123352408409,-0.960470616817474,-0.240544199943542,0.775222063064575,-0.605789005756378,-0.179026246070862,0.680437743663788,-0.702941954135895,-0.207067146897316,0.828636825084686,-0.539562940597534,-0.149106368422508,0.835058629512787,-0.513958692550659,-0.196273729205132,0.775222063064575,-0.605789005756378,-0.179026246070862,0.912094175815582,-0.387491792440414,-0.133918717503548,0.680437743663788,-0.702941954135895,-0.207067146897316,0.487466126680374,-0.845305144786835,-0.218714118003845,0.62114006280899,-0.75622433423996,-0.20569309592247,0.549685776233673,-0.806063115596771,-0.219334617257118,0.62114006280899,-0.75622433423996,-0.20569309592247,0.368691384792328,-0.898924767971039,-0.236645087599754,0.549685776233673,-0.806063115596771,-0.219334617257118,0.368691384792328,-0.898924767971039,-0.236645087599754,0.447054624557495,-0.862496614456177,-0.237153112888336,0.998548924922943,0.012917404063046,0.0522794798016548,0.993404090404511,0.0216652154922485,0.11260050535202,0.958675682544708,0.204954907298088,0.19731804728508,0.998548924922943,0.012917404063046,0.0522794798016548,0.999422430992126,-0.0270718820393085,0.0205371025949717,0.991035223007202,-0.125569313764572,-0.0456230379641056, +0.938483655452728,-0.313067942857742,-0.145728528499603,0.991035223007202,-0.125569313764572,-0.0456230379641056,0.97904509305954,-0.189353749155998,-0.0749387294054031,0.835058629512787,-0.513958692550659,-0.196273729205132,0.938483655452728,-0.313067942857742,-0.145728528499603,0.790010631084442,-0.562812507152557,-0.243156552314758,0.227319419384003,-0.947347462177277,-0.225518569350243,0.140123352408409,-0.960470616817474,-0.240544199943542,0.37853816151619,-0.898537695407867,-0.22212316095829,0.447054624557495,-0.862496614456177,-0.237153112888336,0.368691384792328,-0.898924767971039,-0.236645087599754,0.227319419384003,-0.947347462177277,-0.225518569350243,0.227319419384003,-0.947347462177277,-0.225518569350243,-0.134369939565659,-0.957383871078491,-0.255657374858856,0.140123352408409,-0.960470616817474,-0.240544199943542,0.680437743663788,-0.702941954135895,-0.207067146897316,0.775222063064575,-0.605789005756378,-0.179026246070862,0.547736585140228,-0.810536801815033,-0.2073994576931,0.835058629512787,-0.513958692550659,-0.196273729205132,0.639516949653625,-0.735429406166077,-0.223967835307121,0.775222063064575,-0.605789005756378,-0.179026246070862,0.547736585140228,-0.810536801815033,-0.2073994576931,0.487466126680374,-0.845305144786835,-0.218714118003845,0.680437743663788,-0.702941954135895,-0.207067146897316,0.62114006280899,-0.75622433423996,-0.20569309592247,0.487466126680374,-0.845305144786835,-0.218714118003845,0.368691384792328,-0.898924767971039,-0.236645087599754,0.998548924922943,0.012917404063046,0.0522794798016548,0.958675682544708,0.204954907298088,0.19731804728508,0.990409433841705,0.0859690234065056,0.108158983290195,0.998548924922943,0.012917404063046,0.0522794798016548,0.990409433841705,0.0859690234065056,0.108158983290195,0.999422430992126,-0.0270718820393085,0.0205371025949717,0.991035223007202,-0.125569313764572,-0.0456230379641056,0.999422430992126,-0.0270718820393085,0.0205371025949717,0.97904509305954,-0.189353749155998,-0.0749387294054031,0.938483655452728,-0.313067942857742,-0.145728528499603, +0.97904509305954,-0.189353749155998,-0.0749387294054031,0.911373436450958,-0.372061431407928,-0.175979405641556,0.790010631084442,-0.562812507152557,-0.243156552314758,0.938483655452728,-0.313067942857742,-0.145728528499603,0.835766673088074,-0.488687485456467,-0.250356644392014,0.835058629512787,-0.513958692550659,-0.196273729205132,0.790010631084442,-0.562812507152557,-0.243156552314758,0.691812753677368,-0.675282299518585,-0.255712300539017,0.227319419384003,-0.947347462177277,-0.225518569350243,0.368691384792328,-0.898924767971039,-0.236645087599754,0.109900943934917,-0.965524733066559,-0.2359738945961,0.227319419384003,-0.947347462177277,-0.225518569350243,0.109900943934917,-0.965524733066559,-0.2359738945961,-0.134369939565659,-0.957383871078491,-0.255657374858856,0.639516949653625,-0.735429406166077,-0.223967835307121,0.547736585140228,-0.810536801815033,-0.2073994576931,0.775222063064575,-0.605789005756378,-0.179026246070862,0.639516949653625,-0.735429406166077,-0.223967835307121,0.835058629512787,-0.513958692550659,-0.196273729205132,0.691812753677368,-0.675282299518585,-0.255712300539017,0.547736585140228,-0.810536801815033,-0.2073994576931,0.311108857393265,-0.925333440303802,-0.216723680496216,0.487466126680374,-0.845305144786835,-0.218714118003845,0.311108857393265,-0.925333440303802,-0.216723680496216,0.368691384792328,-0.898924767971039,-0.236645087599754,0.487466126680374,-0.845305144786835,-0.218714118003845,0.958241164684296,0.211286246776581,0.192696183919907,0.990409433841705,0.0859690234065056,0.108158983290195,0.958675682544708,0.204954907298088,0.19731804728508,0.986373364925385,0.118583023548126,0.114041946828365,0.999422430992126,-0.0270718820393085,0.0205371025949717,0.990409433841705,0.0859690234065056,0.108158983290195,0.97904509305954,-0.189353749155998,-0.0749387294054031,0.999422430992126,-0.0270718820393085,0.0205371025949717,0.995244145393372,-0.09074317663908,-0.0354210548102856,0.911373436450958,-0.372061431407928,-0.175979405641556,0.97904509305954,-0.189353749155998,-0.0749387294054031, +0.902269840240479,-0.401810169219971,-0.156389638781548,0.911373436450958,-0.372061431407928,-0.175979405641556,0.835766673088074,-0.488687485456467,-0.250356644392014,0.938483655452728,-0.313067942857742,-0.145728528499603,0.790010631084442,-0.562812507152557,-0.243156552314758,0.835766673088074,-0.488687485456467,-0.250356644392014,0.622805893421173,-0.727372705936432,-0.288169354200363,0.574065983295441,-0.772017538547516,-0.272831231355667,0.691812753677368,-0.675282299518585,-0.255712300539017,0.790010631084442,-0.562812507152557,-0.243156552314758,0.311108857393265,-0.925333440303802,-0.216723680496216,0.109900943934917,-0.965524733066559,-0.2359738945961,0.368691384792328,-0.898924767971039,-0.236645087599754,-0.134369939565659,-0.957383871078491,-0.255657374858856,0.109900943934917,-0.965524733066559,-0.2359738945961,-0.139218792319298,-0.96094274520874,-0.239179998636246,0.639516949653625,-0.735429406166077,-0.223967835307121,0.398451805114746,-0.890526175498962,-0.219542980194092,0.547736585140228,-0.810536801815033,-0.2073994576931,0.639516949653625,-0.735429406166077,-0.223967835307121,0.691812753677368,-0.675282299518585,-0.255712300539017,0.440618008375168,-0.854961514472961,-0.273672133684158,0.311108857393265,-0.925333440303802,-0.216723680496216,0.547736585140228,-0.810536801815033,-0.2073994576931,0.398451805114746,-0.890526175498962,-0.219542980194092,0.958241164684296,0.211286246776581,0.192696183919907,0.986373364925385,0.118583023548126,0.114041946828365,0.990409433841705,0.0859690234065056,0.108158983290195,0.999422430992126,-0.0270718820393085,0.0205371025949717,0.986373364925385,0.118583023548126,0.114041946828365,0.99641340970993,0.0732806399464607,0.04230797290802,0.999422430992126,-0.0270718820393085,0.0205371025949717,0.99641340970993,0.0732806399464607,0.04230797290802,0.995244145393372,-0.09074317663908,-0.0354210548102856,0.97904509305954,-0.189353749155998,-0.0749387294054031,0.995244145393372,-0.09074317663908,-0.0354210548102856,0.964438378810883,-0.246166303753853,-0.0962311327457428, +0.902269840240479,-0.401810169219971,-0.156389638781548,0.97904509305954,-0.189353749155998,-0.0749387294054031,0.964438378810883,-0.246166303753853,-0.0962311327457428,0.911373436450958,-0.372061431407928,-0.175979405641556,0.902269840240479,-0.401810169219971,-0.156389638781548,0.784265577793121,-0.573671758174896,-0.236279606819153,0.911373436450958,-0.372061431407928,-0.175979405641556,0.713751137256622,-0.639070272445679,-0.286615610122681,0.835766673088074,-0.488687485456467,-0.250356644392014,0.835766673088074,-0.488687485456467,-0.250356644392014,0.713751137256622,-0.639070272445679,-0.286615610122681,0.622805893421173,-0.727372705936432,-0.288169354200363,0.622805893421173,-0.727372705936432,-0.288169354200363,0.574065983295441,-0.772017538547516,-0.272831231355667,0.790010631084442,-0.562812507152557,-0.243156552314758,0.574065983295441,-0.772017538547516,-0.272831231355667,0.440618008375168,-0.854961514472961,-0.273672133684158,0.691812753677368,-0.675282299518585,-0.255712300539017,0.311108857393265,-0.925333440303802,-0.216723680496216,0.190362364053726,-0.949701011180878,-0.24865648150444,0.109900943934917,-0.965524733066559,-0.2359738945961,0.109900943934917,-0.965524733066559,-0.2359738945961,-0.0156903639435768,-0.968316256999969,-0.249233439564705,-0.139218792319298,-0.96094274520874,-0.239179998636246,0.398451805114746,-0.890526175498962,-0.219542980194092,0.639516949653625,-0.735429406166077,-0.223967835307121,0.440618008375168,-0.854961514472961,-0.273672133684158,0.311108857393265,-0.925333440303802,-0.216723680496216,0.398451805114746,-0.890526175498962,-0.219542980194092,0.190362364053726,-0.949701011180878,-0.24865648150444,0.986373364925385,0.118583023548126,0.114041946828365,0.958241164684296,0.211286246776581,0.192696183919907,0.96403306722641,0.211662113666534,0.160746052861214,0.977065443992615,0.184287577867508,0.106682054698467,0.99641340970993,0.0732806399464607,0.04230797290802,0.986373364925385,0.118583023548126,0.114041946828365,0.99641340970993,0.0732806399464607,0.04230797290802, +0.997683942317963,0.0175520889461041,-0.0657155513763428,0.995244145393372,-0.09074317663908,-0.0354210548102856,0.964438378810883,-0.246166303753853,-0.0962311327457428,0.995244145393372,-0.09074317663908,-0.0354210548102856,0.982503950595856,-0.144456580281258,-0.117549881339073,0.902269840240479,-0.401810169219971,-0.156389638781548,0.964438378810883,-0.246166303753853,-0.0962311327457428,0.862954199314117,-0.478374481201172,-0.162689223885536,0.670218884944916,-0.691519677639008,-0.269457072019577,0.784265577793121,-0.573671758174896,-0.236279606819153,0.902269840240479,-0.401810169219971,-0.156389638781548,0.713751137256622,-0.639070272445679,-0.286615610122681,0.911373436450958,-0.372061431407928,-0.175979405641556,0.784265577793121,-0.573671758174896,-0.236279606819153,0.463651984930038,-0.832033574581146,-0.304543614387512,0.622805893421173,-0.727372705936432,-0.288169354200363,0.713751137256622,-0.639070272445679,-0.286615610122681,0.622805893421173,-0.727372705936432,-0.288169354200363,0.337154716253281,-0.895414531230927,-0.290790945291519,0.574065983295441,-0.772017538547516,-0.272831231355667,0.337154716253281,-0.895414531230927,-0.290790945291519,0.440618008375168,-0.854961514472961,-0.273672133684158,0.574065983295441,-0.772017538547516,-0.272831231355667,0.109900943934917,-0.965524733066559,-0.2359738945961,0.190362364053726,-0.949701011180878,-0.24865648150444,-0.0156903639435768,-0.968316256999969,-0.249233439564705,0.398451805114746,-0.890526175498962,-0.219542980194092,0.440618008375168,-0.854961514472961,-0.273672133684158,0.190362364053726,-0.949701011180878,-0.24865648150444,0.977065443992615,0.184287577867508,0.106682054698467,0.986373364925385,0.118583023548126,0.114041946828365,0.96403306722641,0.211662113666534,0.160746052861214,0.977065443992615,0.184287577867508,0.106682054698467,0.981603682041168,0.190920308232307,-0.00187494850251824,0.99641340970993,0.0732806399464607,0.04230797290802,0.99641340970993,0.0732806399464607,0.04230797290802,0.981603682041168,0.190920308232307,-0.00187494850251824, +0.997683942317963,0.0175520889461041,-0.0657155513763428,0.982503950595856,-0.144456580281258,-0.117549881339073,0.995244145393372,-0.09074317663908,-0.0354210548102856,0.997683942317963,0.0175520889461041,-0.0657155513763428,0.964438378810883,-0.246166303753853,-0.0962311327457428,0.982503950595856,-0.144456580281258,-0.117549881339073,0.914468109607697,-0.348576217889786,-0.205530181527138,0.964438378810883,-0.246166303753853,-0.0962311327457428,0.914468109607697,-0.348576217889786,-0.205530181527138,0.862954199314117,-0.478374481201172,-0.162689223885536,0.733730494976044,-0.633908748626709,-0.244538888335228,0.902269840240479,-0.401810169219971,-0.156389638781548,0.862954199314117,-0.478374481201172,-0.162689223885536,0.670218884944916,-0.691519677639008,-0.269457072019577,0.519511044025421,-0.787498652935028,-0.331593096256256,0.784265577793121,-0.573671758174896,-0.236279606819153,0.670218884944916,-0.691519677639008,-0.269457072019577,0.902269840240479,-0.401810169219971,-0.156389638781548,0.733730494976044,-0.633908748626709,-0.244538888335228,0.713751137256622,-0.639070272445679,-0.286615610122681,0.784265577793121,-0.573671758174896,-0.236279606819153,0.519511044025421,-0.787498652935028,-0.331593096256256,0.337154716253281,-0.895414531230927,-0.290790945291519,0.622805893421173,-0.727372705936432,-0.288169354200363,0.463651984930038,-0.832033574581146,-0.304543614387512,0.519511044025421,-0.787498652935028,-0.331593096256256,0.463651984930038,-0.832033574581146,-0.304543614387512,0.713751137256622,-0.639070272445679,-0.286615610122681,0.440618008375168,-0.854961514472961,-0.273672133684158,0.337154716253281,-0.895414531230927,-0.290790945291519,0.190362364053726,-0.949701011180878,-0.24865648150444,-0.00276464712806046,-0.95152872800827,-0.307547360658646,-0.0156903639435768,-0.968316256999969,-0.249233439564705,0.190362364053726,-0.949701011180878,-0.24865648150444,0.981603682041168,0.190920308232307,-0.00187494850251824,0.958265602588654,0.13981930911541,-0.249354094266891,0.997683942317963,0.0175520889461041,-0.0657155513763428, +0.977198898792267,-0.0325850620865822,-0.209810361266136,0.982503950595856,-0.144456580281258,-0.117549881339073,0.997683942317963,0.0175520889461041,-0.0657155513763428,0.914468109607697,-0.348576217889786,-0.205530181527138,0.982503950595856,-0.144456580281258,-0.117549881339073,0.915197730064392,-0.146925732493401,-0.375267624855042,0.737393081188202,-0.601717948913574,-0.30689862370491,0.862954199314117,-0.478374481201172,-0.162689223885536,0.914468109607697,-0.348576217889786,-0.205530181527138,0.659812986850739,-0.703473508358002,-0.264143317937851,0.733730494976044,-0.633908748626709,-0.244538888335228,0.862954199314117,-0.478374481201172,-0.162689223885536,0.670218884944916,-0.691519677639008,-0.269457072019577,0.401439845561981,-0.849004089832306,-0.343566507101059,0.519511044025421,-0.787498652935028,-0.331593096256256,0.670218884944916,-0.691519677639008,-0.269457072019577,0.733730494976044,-0.633908748626709,-0.244538888335228,0.477037698030472,-0.810179829597473,-0.34065169095993,0.337154716253281,-0.895414531230927,-0.290790945291519,0.463651984930038,-0.832033574581146,-0.304543614387512,0.255339086055756,-0.905746102333069,-0.338268905878067,0.519511044025421,-0.787498652935028,-0.331593096256256,0.255339086055756,-0.905746102333069,-0.338268905878067,0.463651984930038,-0.832033574581146,-0.304543614387512,0.337154716253281,-0.895414531230927,-0.290790945291519,0.130573078989983,-0.941716730594635,-0.310032486915588,0.190362364053726,-0.949701011180878,-0.24865648150444,-0.00276464712806046,-0.95152872800827,-0.307547360658646,0.190362364053726,-0.949701011180878,-0.24865648150444,0.130573078989983,-0.941716730594635,-0.310032486915588,0.958265602588654,0.13981930911541,-0.249354094266891,0.981603682041168,0.190920308232307,-0.00187494850251824,0.946444749832153,0.287937253713608,-0.146063104271889,0.958265602588654,0.13981930911541,-0.249354094266891,0.977198898792267,-0.0325850620865822,-0.209810361266136,0.997683942317963,0.0175520889461041,-0.0657155513763428,0.915197730064392,-0.146925732493401,-0.375267624855042, +0.982503950595856,-0.144456580281258,-0.117549881339073,0.977198898792267,-0.0325850620865822,-0.209810361266136,0.915197730064392,-0.146925732493401,-0.375267624855042,0.794824421405792,-0.418989628553391,-0.438978016376495,0.914468109607697,-0.348576217889786,-0.205530181527138,0.737393081188202,-0.601717948913574,-0.30689862370491,0.659812986850739,-0.703473508358002,-0.264143317937851,0.862954199314117,-0.478374481201172,-0.162689223885536,0.737393081188202,-0.601717948913574,-0.30689862370491,0.914468109607697,-0.348576217889786,-0.205530181527138,0.794824421405792,-0.418989628553391,-0.438978016376495,0.733730494976044,-0.633908748626709,-0.244538888335228,0.659812986850739,-0.703473508358002,-0.264143317937851,0.477037698030472,-0.810179829597473,-0.34065169095993,0.477037698030472,-0.810179829597473,-0.34065169095993,0.401439845561981,-0.849004089832306,-0.343566507101059,0.670218884944916,-0.691519677639008,-0.269457072019577,0.255339086055756,-0.905746102333069,-0.338268905878067,0.519511044025421,-0.787498652935028,-0.331593096256256,0.401439845561981,-0.849004089832306,-0.343566507101059,0.255339086055756,-0.905746102333069,-0.338268905878067,0.130573078989983,-0.941716730594635,-0.310032486915588,0.337154716253281,-0.895414531230927,-0.290790945291519,0.0459299869835377,-0.92097407579422,-0.386907011270523,-0.00276464712806046,-0.95152872800827,-0.307547360658646,0.130573078989983,-0.941716730594635,-0.310032486915588,0.737393081188202,-0.601717948913574,-0.30689862370491,0.51316899061203,-0.742361664772034,-0.430762946605682,0.659812986850739,-0.703473508358002,-0.264143317937851,0.625092506408691,-0.604773819446564,-0.493465125560761,0.737393081188202,-0.601717948913574,-0.30689862370491,0.794824421405792,-0.418989628553391,-0.438978016376495,0.51316899061203,-0.742361664772034,-0.430762946605682,0.477037698030472,-0.810179829597473,-0.34065169095993,0.659812986850739,-0.703473508358002,-0.264143317937851,0.477037698030472,-0.810179829597473,-0.34065169095993,0.219324722886086,-0.887252628803253,-0.405807107686996, +0.401439845561981,-0.849004089832306,-0.343566507101059,0.219324722886086,-0.887252628803253,-0.405807107686996,0.255339086055756,-0.905746102333069,-0.338268905878067,0.401439845561981,-0.849004089832306,-0.343566507101059,0.255339086055756,-0.905746102333069,-0.338268905878067,0.0459299869835377,-0.92097407579422,-0.386907011270523,0.130573078989983,-0.941716730594635,-0.310032486915588,0.51316899061203,-0.742361664772034,-0.430762946605682,0.737393081188202,-0.601717948913574,-0.30689862370491,0.625092506408691,-0.604773819446564,-0.493465125560761,0.51316899061203,-0.742361664772034,-0.430762946605682,0.27746257185936,-0.765577793121338,-0.580435156822205,0.477037698030472,-0.810179829597473,-0.34065169095993,0.219324722886086,-0.887252628803253,-0.405807107686996,0.477037698030472,-0.810179829597473,-0.34065169095993,0.27746257185936,-0.765577793121338,-0.580435156822205,0.219324722886086,-0.887252628803253,-0.405807107686996,0.0459299869835377,-0.92097407579422,-0.386907011270523,0.255339086055756,-0.905746102333069,-0.338268905878067,0.430375903844833,-0.529236197471619,-0.731221914291382,0.51316899061203,-0.742361664772034,-0.430762946605682,0.625092506408691,-0.604773819446564,-0.493465125560761,0.430375903844833,-0.529236197471619,-0.731221914291382,0.27746257185936,-0.765577793121338,-0.580435156822205,0.51316899061203,-0.742361664772034,-0.430762946605682,0.27746257185936,-0.765577793121338,-0.580435156822205,0.0722249075770378,-0.811546385288239,-0.579806745052338,0.219324722886086,-0.887252628803253,-0.405807107686996,0.219324722886086,-0.887252628803253,-0.405807107686996,0.0722249075770378,-0.811546385288239,-0.579806745052338,0.0459299869835377,-0.92097407579422,-0.386907011270523,0.430375903844833,-0.529236197471619,-0.731221914291382,0.201500952243805,-0.450871467590332,-0.869547069072723,0.27746257185936,-0.765577793121338,-0.580435156822205,0.27746257185936,-0.765577793121338,-0.580435156822205,0.130717068910599,-0.577823996543884,-0.805625438690186,0.0722249075770378,-0.811546385288239,-0.579806745052338, +0.0722249075770378,-0.811546385288239,-0.579806745052338,-0.140051230788231,-0.826616525650024,-0.545060217380524,0.0459299869835377,-0.92097407579422,-0.386907011270523,0.130717068910599,-0.577823996543884,-0.805625438690186,0.27746257185936,-0.765577793121338,-0.580435156822205,0.201500952243805,-0.450871467590332,-0.869547069072723,0.130717068910599,-0.577823996543884,-0.805625438690186,-0.0873085409402847,-0.603740870952606,-0.792385101318359,0.0722249075770378,-0.811546385288239,-0.579806745052338,-0.102315485477448,-0.763163387775421,-0.638054072856903,-0.140051230788231,-0.826616525650024,-0.545060217380524,0.0722249075770378,-0.811546385288239,-0.579806745052338,-0.0873085409402847,-0.603740870952606,-0.792385101318359,-0.102315485477448,-0.763163387775421,-0.638054072856903,0.0722249075770378,-0.811546385288239,-0.579806745052338,-0.140051230788231,-0.826616525650024,-0.545060217380524,-0.102315485477448,-0.763163387775421,-0.638054072856903,-0.2304697483778,-0.727735877037048,-0.645975232124329,-0.0873085409402847,-0.603740870952606,-0.792385101318359,-0.2304697483778,-0.727735877037048,-0.645975232124329,-0.102315485477448,-0.763163387775421,-0.638054072856903,-0.2304697483778,-0.727735877037048,-0.645975232124329,-0.225220322608948,-0.723771572113037,-0.652250230312347,-0.140051230788231,-0.826616525650024,-0.545060217380524,-0.2304697483778,-0.727735877037048,-0.645975232124329,-0.0873085409402847,-0.603740870952606,-0.792385101318359,-0.229749068617821,-0.540937960147858,-0.809074461460114,-0.225220322608948,-0.723771572113037,-0.652250230312347,-0.2304697483778,-0.727735877037048,-0.645975232124329,-0.229749068617821,-0.540937960147858,-0.809074461460114,0.0325855948030949,-0.999174118041992,-0.024274880066514,0.0100194960832596,-0.999584794044495,-0.027014372870326,0.00168793566990644,-0.999578237533569,-0.0289897955954075,0.0325855948030949,-0.999174118041992,-0.024274880066514,0.0645628049969673,-0.997673034667969,0.0219103507697582,0.0100194960832596,-0.999584794044495,-0.027014372870326,0.0325855948030949,-0.999174118041992,-0.024274880066514, +0.00168793566990644,-0.999578237533569,-0.0289897955954075,0.00834598485380411,-0.99869179725647,-0.0504472404718399,0.0325855948030949,-0.999174118041992,-0.024274880066514,0.0237623490393162,-0.999600529670715,-0.0152969742193818,0.0645628049969673,-0.997673034667969,0.0219103507697582,0.00834598485380411,-0.99869179725647,-0.0504472404718399,0.00168793566990644,-0.999578237533569,-0.0289897955954075,0.0213583074510098,-0.999124825000763,-0.0359630770981312,-0.0214167032390833,-0.999743640422821,-0.00734294438734651,0.0237623490393162,-0.999600529670715,-0.0152969742193818,0.0325855948030949,-0.999174118041992,-0.024274880066514,0.0237623490393162,-0.999600529670715,-0.0152969742193818,0.17652302980423,-0.983282566070557,0.0446636080741882,0.0645628049969673,-0.997673034667969,0.0219103507697582,-0.00964699033647776,-0.999828279018402,0.0158215891569853,0.0237623490393162,-0.999600529670715,-0.0152969742193818,-0.0214167032390833,-0.999743640422821,-0.00734294438734651,0.17652302980423,-0.983282566070557,0.0446636080741882,0.0237623490393162,-0.999600529670715,-0.0152969742193818,0.261515915393829,-0.964716076850891,0.0305331945419312,0.17652302980423,-0.983282566070557,0.0446636080741882,0.222896710038185,-0.962484061717987,0.154729798436165,0.0645628049969673,-0.997673034667969,0.0219103507697582,0.222896710038185,-0.962484061717987,0.154729798436165,0.281492471694946,-0.927177309989929,0.247192621231079,0.0645628049969673,-0.997673034667969,0.0219103507697582,0.506555259227753,-0.680231273174286,0.529798984527588,0.477687180042267,-0.735735952854156,0.480111837387085,0.443045437335968,-0.677261710166931,0.587390124797821,0.477687180042267,-0.735735952854156,0.480111837387085,0.358185887336731,-0.820785045623779,0.444988369941711,0.443045437335968,-0.677261710166931,0.587390124797821,0.261515915393829,-0.964716076850891,0.0305331945419312,0.0237623490393162,-0.999600529670715,-0.0152969742193818,-0.00964699033647776,-0.999828279018402,0.0158215891569853,0.261515915393829,-0.964716076850891,0.0305331945419312,0.553082168102264,-0.817172706127167,0.162261709570885, +0.17652302980423,-0.983282566070557,0.0446636080741882,0.17652302980423,-0.983282566070557,0.0446636080741882,0.514186561107636,-0.823038041591644,0.241289347410202,0.222896710038185,-0.962484061717987,0.154729798436165,0.526773154735565,-0.762398719787598,0.375843077898026,0.281492471694946,-0.927177309989929,0.247192621231079,0.222896710038185,-0.962484061717987,0.154729798436165,0.378556281328201,-0.838217973709106,0.392537415027618,0.281492471694946,-0.927177309989929,0.247192621231079,0.503227114677429,-0.741738498210907,0.443380564451218,0.0184723176062107,-0.998772919178009,0.0459497682750225,-0.00795681495219469,-0.999954581260681,0.00523778097704053,-0.00657857768237591,-0.998406529426575,-0.0560448952019215,0.358185887336731,-0.820785045623779,0.444988369941711,0.186102896928787,-0.949363052845001,0.253131210803986,0.22071173787117,-0.904506742954254,0.364902347326279,0.506555259227753,-0.680231273174286,0.529798984527588,0.378556281328201,-0.838217973709106,0.392537415027618,0.503227114677429,-0.741738498210907,0.443380564451218,0.506555259227753,-0.680231273174286,0.529798984527588,0.560725331306458,-0.68721616268158,0.461866736412048,0.477687180042267,-0.735735952854156,0.480111837387085,0.477687180042267,-0.735735952854156,0.480111837387085,0.298479378223419,-0.905757963657379,0.300852835178375,0.358185887336731,-0.820785045623779,0.444988369941711,0.261515915393829,-0.964716076850891,0.0305331945419312,0.628348112106323,-0.765280365943909,0.13973043859005,0.553082168102264,-0.817172706127167,0.162261709570885,0.553082168102264,-0.817172706127167,0.162261709570885,0.514186561107636,-0.823038041591644,0.241289347410202,0.17652302980423,-0.983282566070557,0.0446636080741882,0.514186561107636,-0.823038041591644,0.241289347410202,0.526773154735565,-0.762398719787598,0.375843077898026,0.222896710038185,-0.962484061717987,0.154729798436165,0.526773154735565,-0.762398719787598,0.375843077898026,0.503227114677429,-0.741738498210907,0.443380564451218,0.281492471694946,-0.927177309989929,0.247192621231079,0.0184723176062107,-0.998772919178009,0.0459497682750225, +0.0785489827394485,-0.984790146350861,0.154978558421135,0.103029832243919,-0.985901594161987,0.13184380531311,-0.00795681495219469,-0.999954581260681,0.00523778097704053,0.0184723176062107,-0.998772919178009,0.0459497682750225,0.0645723938941956,-0.995055556297302,0.0754640251398087,-0.0344852842390537,-0.998610973358154,-0.0398345217108727,-0.00657857768237591,-0.998406529426575,-0.0560448952019215,-0.00795681495219469,-0.999954581260681,0.00523778097704053,0.0785489827394485,-0.984790146350861,0.154978558421135,0.22071173787117,-0.904506742954254,0.364902347326279,0.186102896928787,-0.949363052845001,0.253131210803986,0.298479378223419,-0.905757963657379,0.300852835178375,0.186102896928787,-0.949363052845001,0.253131210803986,0.358185887336731,-0.820785045623779,0.444988369941711,0.506555259227753,-0.680231273174286,0.529798984527588,0.503227114677429,-0.741738498210907,0.443380564451218,0.560725331306458,-0.68721616268158,0.461866736412048,0.477687180042267,-0.735735952854156,0.480111837387085,0.560725331306458,-0.68721616268158,0.461866736412048,0.420991092920303,-0.83425760269165,0.356062650680542,0.477687180042267,-0.735735952854156,0.480111837387085,0.420991092920303,-0.83425760269165,0.356062650680542,0.298479378223419,-0.905757963657379,0.300852835178375,0.720728397369385,-0.66414612531662,0.198646664619446,0.553082168102264,-0.817172706127167,0.162261709570885,0.628348112106323,-0.765280365943909,0.13973043859005,0.553082168102264,-0.817172706127167,0.162261709570885,0.699463605880737,-0.676317036151886,0.230967089533806,0.514186561107636,-0.823038041591644,0.241289347410202,0.514186561107636,-0.823038041591644,0.241289347410202,0.651782035827637,-0.67565530538559,0.344484835863113,0.526773154735565,-0.762398719787598,0.375843077898026,0.560725331306458,-0.68721616268158,0.461866736412048,0.503227114677429,-0.741738498210907,0.443380564451218,0.526773154735565,-0.762398719787598,0.375843077898026,0.0785489827394485,-0.984790146350861,0.154978558421135,0.186102896928787,-0.949363052845001,0.253131210803986, +0.103029832243919,-0.985901594161987,0.13184380531311,0.0184723176062107,-0.998772919178009,0.0459497682750225,0.103029832243919,-0.985901594161987,0.13184380531311,0.0645723938941956,-0.995055556297302,0.0754640251398087,-0.00795681495219469,-0.999954581260681,0.00523778097704053,0.0645723938941956,-0.995055556297302,0.0754640251398087,-0.0185587853193283,-0.999677240848541,-0.0173397772014141,-0.00657857768237591,-0.998406529426575,-0.0560448952019215,-0.0344852842390537,-0.998610973358154,-0.0398345217108727,-0.0171088427305222,-0.982673048973084,-0.184555768966675,-0.0874486342072487,-0.991664052009583,-0.0946308895945549,-0.0344852842390537,-0.998610973358154,-0.0398345217108727,-0.00795681495219469,-0.999954581260681,0.00523778097704053,0.298479378223419,-0.905757963657379,0.300852835178375,0.103029832243919,-0.985901594161987,0.13184380531311,0.186102896928787,-0.949363052845001,0.253131210803986,0.51669704914093,-0.77440071105957,0.365140408277512,0.420991092920303,-0.83425760269165,0.356062650680542,0.560725331306458,-0.68721616268158,0.461866736412048,0.201500371098518,-0.960798799991608,0.190429106354713,0.298479378223419,-0.905757963657379,0.300852835178375,0.420991092920303,-0.83425760269165,0.356062650680542,0.720728397369385,-0.66414612531662,0.198646664619446,0.699463605880737,-0.676317036151886,0.230967089533806,0.553082168102264,-0.817172706127167,0.162261709570885,0.699463605880737,-0.676317036151886,0.230967089533806,0.684210777282715,-0.676223337650299,0.273088693618774,0.514186561107636,-0.823038041591644,0.241289347410202,0.514186561107636,-0.823038041591644,0.241289347410202,0.684210777282715,-0.676223337650299,0.273088693618774,0.651782035827637,-0.67565530538559,0.344484835863113,0.594227194786072,-0.733241021633148,0.330532103776932,0.526773154735565,-0.762398719787598,0.375843077898026,0.651782035827637,-0.67565530538559,0.344484835863113,0.560725331306458,-0.68721616268158,0.461866736412048,0.526773154735565,-0.762398719787598,0.375843077898026,0.51669704914093,-0.77440071105957,0.365140408277512, +0.201500371098518,-0.960798799991608,0.190429106354713,0.0645723938941956,-0.995055556297302,0.0754640251398087,0.103029832243919,-0.985901594161987,0.13184380531311,0.0645723938941956,-0.995055556297302,0.0754640251398087,0.0720528215169907,-0.996809542179108,0.0343375690281391,-0.0185587853193283,-0.999677240848541,-0.0173397772014141,-0.0185587853193283,-0.999677240848541,-0.0173397772014141,-0.0874486342072487,-0.991664052009583,-0.0946308895945549,-0.00795681495219469,-0.999954581260681,0.00523778097704053,-0.0874486342072487,-0.991664052009583,-0.0946308895945549,-0.131664723157883,-0.940042853355408,-0.314616680145264,-0.0344852842390537,-0.998610973358154,-0.0398345217108727,0.201500371098518,-0.960798799991608,0.190429106354713,0.103029832243919,-0.985901594161987,0.13184380531311,0.298479378223419,-0.905757963657379,0.300852835178375,0.51669704914093,-0.77440071105957,0.365140408277512,0.282773315906525,-0.933148562908173,0.221975058317184,0.420991092920303,-0.83425760269165,0.356062650680542,0.201500371098518,-0.960798799991608,0.190429106354713,0.420991092920303,-0.83425760269165,0.356062650680542,0.282773315906525,-0.933148562908173,0.221975058317184,0.659708321094513,-0.73577880859375,0.153017178177834,0.699463605880737,-0.676317036151886,0.230967089533806,0.720728397369385,-0.66414612531662,0.198646664619446,0.699463605880737,-0.676317036151886,0.230967089533806,0.664103031158447,-0.717064797878265,0.211624830961227,0.684210777282715,-0.676223337650299,0.273088693618774,0.651782035827637,-0.67565530538559,0.344484835863113,0.684210777282715,-0.676223337650299,0.273088693618774,0.65572851896286,-0.702626526355743,0.276289582252502,0.51669704914093,-0.77440071105957,0.365140408277512,0.526773154735565,-0.762398719787598,0.375843077898026,0.594227194786072,-0.733241021633148,0.330532103776932,0.65572851896286,-0.702626526355743,0.276289582252502,0.594227194786072,-0.733241021633148,0.330532103776932,0.651782035827637,-0.67565530538559,0.344484835863113,0.201500371098518,-0.960798799991608,0.190429106354713, +0.282773315906525,-0.933148562908173,0.221975058317184,0.0645723938941956,-0.995055556297302,0.0754640251398087,0.216813117265701,-0.968923032283783,0.119080409407616,0.0720528215169907,-0.996809542179108,0.0343375690281391,0.0645723938941956,-0.995055556297302,0.0754640251398087,-0.0185587853193283,-0.999677240848541,-0.0173397772014141,0.0720528215169907,-0.996809542179108,0.0343375690281391,0.0380912758409977,-0.999173641204834,0.0141795640811324,-0.0874486342072487,-0.991664052009583,-0.0946308895945549,-0.0185587853193283,-0.999677240848541,-0.0173397772014141,-0.158579036593437,-0.969911634922028,-0.184726685285568,-0.0975367203354836,-0.909852921962738,-0.403303980827332,-0.0344852842390537,-0.998610973358154,-0.0398345217108727,-0.131664723157883,-0.940042853355408,-0.314616680145264,-0.0874486342072487,-0.991664052009583,-0.0946308895945549,-0.422091066837311,-0.666740715503693,-0.614244043827057,-0.131664723157883,-0.940042853355408,-0.314616680145264,0.282773315906525,-0.933148562908173,0.221975058317184,0.51669704914093,-0.77440071105957,0.365140408277512,0.407590389251709,-0.881129920482636,0.239749416708946,0.664103031158447,-0.717064797878265,0.211624830961227,0.699463605880737,-0.676317036151886,0.230967089533806,0.659708321094513,-0.73577880859375,0.153017178177834,0.423369884490967,-0.904240190982819,-0.0557429566979408,0.659708321094513,-0.73577880859375,0.153017178177834,0.720728397369385,-0.66414612531662,0.198646664619446,0.664103031158447,-0.717064797878265,0.211624830961227,0.65572851896286,-0.702626526355743,0.276289582252502,0.684210777282715,-0.676223337650299,0.273088693618774,0.51669704914093,-0.77440071105957,0.365140408277512,0.594227194786072,-0.733241021633148,0.330532103776932,0.407590389251709,-0.881129920482636,0.239749416708946,0.65572851896286,-0.702626526355743,0.276289582252502,0.47113174200058,-0.863150894641876,0.18167370557785,0.594227194786072,-0.733241021633148,0.330532103776932,0.216813117265701,-0.968923032283783,0.119080409407616,0.0645723938941956,-0.995055556297302,0.0754640251398087, +0.282773315906525,-0.933148562908173,0.221975058317184,0.199485123157501,-0.978961527347565,0.0428934395313263,0.0720528215169907,-0.996809542179108,0.0343375690281391,0.216813117265701,-0.968923032283783,0.119080409407616,0.0380912758409977,-0.999173641204834,0.0141795640811324,0.0720528215169907,-0.996809542179108,0.0343375690281391,0.064954400062561,-0.997764527797699,0.0157096292823553,-0.0185587853193283,-0.999677240848541,-0.0173397772014141,0.0380912758409977,-0.999173641204834,0.0141795640811324,-0.105329997837543,-0.994110465049744,-0.0254939943552017,-0.301949232816696,-0.94214391708374,-0.145572647452354,-0.158579036593437,-0.969911634922028,-0.184726685285568,-0.0185587853193283,-0.999677240848541,-0.0173397772014141,-0.158579036593437,-0.969911634922028,-0.184726685285568,-0.302890956401825,-0.910233795642853,-0.282367438077927,-0.0874486342072487,-0.991664052009583,-0.0946308895945549,-0.422091066837311,-0.666740715503693,-0.614244043827057,-0.0874486342072487,-0.991664052009583,-0.0946308895945549,-0.302890956401825,-0.910233795642853,-0.282367438077927,0.282773315906525,-0.933148562908173,0.221975058317184,0.407590389251709,-0.881129920482636,0.239749416708946,0.216813117265701,-0.968923032283783,0.119080409407616,0.664103031158447,-0.717064797878265,0.211624830961227,0.659708321094513,-0.73577880859375,0.153017178177834,0.467812448740005,-0.87608939409256,0.116699442267418,0.659708321094513,-0.73577880859375,0.153017178177834,0.423369884490967,-0.904240190982819,-0.0557429566979408,0.418023496866226,-0.905058860778809,0.0782601684331894,0.47113174200058,-0.863150894641876,0.18167370557785,0.65572851896286,-0.702626526355743,0.276289582252502,0.664103031158447,-0.717064797878265,0.211624830961227,0.407590389251709,-0.881129920482636,0.239749416708946,0.594227194786072,-0.733241021633148,0.330532103776932,0.47113174200058,-0.863150894641876,0.18167370557785,0.199485123157501,-0.978961527347565,0.0428934395313263,0.064954400062561,-0.997764527797699,0.0157096292823553,0.0720528215169907,-0.996809542179108,0.0343375690281391, +0.199485123157501,-0.978961527347565,0.0428934395313263,0.216813117265701,-0.968923032283783,0.119080409407616,0.47113174200058,-0.863150894641876,0.18167370557785,0.0380912758409977,-0.999173641204834,0.0141795640811324,0.064954400062561,-0.997764527797699,0.0157096292823553,0.0301470663398504,-0.999533355236053,0.0049044699408114,-0.105329997837543,-0.994110465049744,-0.0254939943552017,0.0380912758409977,-0.999173641204834,0.0141795640811324,-0.0641348212957382,-0.997294068336487,-0.0359327346086502,-0.105329997837543,-0.994110465049744,-0.0254939943552017,-0.414691954851151,-0.900956988334656,-0.127698928117752,-0.0185587853193283,-0.999677240848541,-0.0173397772014141,-0.301949232816696,-0.94214391708374,-0.145572647452354,-0.340051501989365,-0.877816677093506,-0.337346583604813,-0.158579036593437,-0.969911634922028,-0.184726685285568,-0.301949232816696,-0.94214391708374,-0.145572647452354,-0.0185587853193283,-0.999677240848541,-0.0173397772014141,-0.414691954851151,-0.900956988334656,-0.127698928117752,-0.158579036593437,-0.969911634922028,-0.184726685285568,-0.519978702068329,-0.485186666250229,-0.703004896640778,-0.302890956401825,-0.910233795642853,-0.282367438077927,-0.422091066837311,-0.666740715503693,-0.614244043827057,-0.302890956401825,-0.910233795642853,-0.282367438077927,-0.519978702068329,-0.485186666250229,-0.703004896640778,0.407590389251709,-0.881129920482636,0.239749416708946,0.47113174200058,-0.863150894641876,0.18167370557785,0.216813117265701,-0.968923032283783,0.119080409407616,0.467812448740005,-0.87608939409256,0.116699442267418,0.659708321094513,-0.73577880859375,0.153017178177834,0.418023496866226,-0.905058860778809,0.0782601684331894,0.47113174200058,-0.863150894641876,0.18167370557785,0.664103031158447,-0.717064797878265,0.211624830961227,0.467812448740005,-0.87608939409256,0.116699442267418,0.418023496866226,-0.905058860778809,0.0782601684331894,0.423369884490967,-0.904240190982819,-0.0557429566979408,0.273312568664551,-0.961752593517303,0.0182233769446611,0.0705177187919617,-0.997507035732269,0.00261467695236206, +0.064954400062561,-0.997764527797699,0.0157096292823553,0.199485123157501,-0.978961527347565,0.0428934395313263,0.47113174200058,-0.863150894641876,0.18167370557785,0.467812448740005,-0.87608939409256,0.116699442267418,0.199485123157501,-0.978961527347565,0.0428934395313263,0.0705177187919617,-0.997507035732269,0.00261467695236206,0.0301470663398504,-0.999533355236053,0.0049044699408114,0.064954400062561,-0.997764527797699,0.0157096292823553,0.0380912758409977,-0.999173641204834,0.0141795640811324,0.0301470663398504,-0.999533355236053,0.0049044699408114,-0.0641348212957382,-0.997294068336487,-0.0359327346086502,-0.105329997837543,-0.994110465049744,-0.0254939943552017,-0.0641348212957382,-0.997294068336487,-0.0359327346086502,-0.505331337451935,-0.843263745307922,-0.183156698942184,-0.414691954851151,-0.900956988334656,-0.127698928117752,-0.105329997837543,-0.994110465049744,-0.0254939943552017,-0.505331337451935,-0.843263745307922,-0.183156698942184,-0.301949232816696,-0.94214391708374,-0.145572647452354,-0.759353220462799,-0.544919013977051,-0.355592161417007,-0.340051501989365,-0.877816677093506,-0.337346583604813,-0.340051501989365,-0.877816677093506,-0.337346583604813,-0.519978702068329,-0.485186666250229,-0.703004896640778,-0.158579036593437,-0.969911634922028,-0.184726685285568,-0.301949232816696,-0.94214391708374,-0.145572647452354,-0.414691954851151,-0.900956988334656,-0.127698928117752,-0.757820844650269,-0.561291396617889,-0.332655042409897,0.467812448740005,-0.87608939409256,0.116699442267418,0.418023496866226,-0.905058860778809,0.0782601684331894,0.199485123157501,-0.978961527347565,0.0428934395313263,0.0258039105683565,-0.99410617351532,-0.105294965207577,0.273312568664551,-0.961752593517303,0.0182233769446611,0.423369884490967,-0.904240190982819,-0.0557429566979408,0.418023496866226,-0.905058860778809,0.0782601684331894,0.273312568664551,-0.961752593517303,0.0182233769446611,0.199485123157501,-0.978961527347565,0.0428934395313263,0.199485123157501,-0.978961527347565,0.0428934395313263,0.273312568664551,-0.961752593517303,0.0182233769446611, +0.0705177187919617,-0.997507035732269,0.00261467695236206,0.0205837432295084,-0.999727725982666,0.0109893605113029,0.0301470663398504,-0.999533355236053,0.0049044699408114,0.0705177187919617,-0.997507035732269,0.00261467695236206,0.0301470663398504,-0.999533355236053,0.0049044699408114,0.0117978332564235,-0.999849021434784,-0.0127572864294052,-0.0641348212957382,-0.997294068336487,-0.0359327346086502,-0.505331337451935,-0.843263745307922,-0.183156698942184,-0.0641348212957382,-0.997294068336487,-0.0359327346086502,-0.441953808069229,-0.865963041782379,-0.234061315655708,-0.414691954851151,-0.900956988334656,-0.127698928117752,-0.505331337451935,-0.843263745307922,-0.183156698942184,-0.850956976413727,-0.475750148296356,-0.222562059760094,-0.757820844650269,-0.561291396617889,-0.332655042409897,-0.759353220462799,-0.544919013977051,-0.355592161417007,-0.301949232816696,-0.94214391708374,-0.145572647452354,-0.757820844650269,-0.561291396617889,-0.332655042409897,-0.414691954851151,-0.900956988334656,-0.127698928117752,-0.815312206745148,-0.520652890205383,-0.253350436687469,0.145433604717255,-0.989260315895081,-0.0145936803892255,0.0396719351410866,-0.999189078807831,-0.00687075406312943,0.0813832879066467,-0.996025145053864,-0.0362018868327141,0.00921853724867105,-0.999816596508026,0.016783595085144,0.0396719351410866,-0.999189078807831,-0.00687075406312943,-0.256701976060867,-0.961503148078918,0.0980595126748085,0.0705177187919617,-0.997507035732269,0.00261467695236206,0.273312568664551,-0.961752593517303,0.0182233769446611,0.0258039105683565,-0.99410617351532,-0.105294965207577,-0.143731892108917,-0.980844557285309,-0.131472632288933,0.0258039105683565,-0.99410617351532,-0.105294965207577,0.423369884490967,-0.904240190982819,-0.0557429566979408,0.0301470663398504,-0.999533355236053,0.0049044699408114,0.0205837432295084,-0.999727725982666,0.0109893605113029,0.0117978332564235,-0.999849021434784,-0.0127572864294052,0.0705177187919617,-0.997507035732269,0.00261467695236206,0.022700471803546,-0.999664962291718,-0.0124322464689612, +0.0205837432295084,-0.999727725982666,0.0109893605113029,-0.0641348212957382,-0.997294068336487,-0.0359327346086502,0.0117978332564235,-0.999849021434784,-0.0127572864294052,-0.158319354057312,-0.976025342941284,-0.149363309144974,-0.441953808069229,-0.865963041782379,-0.234061315655708,-0.0641348212957382,-0.997294068336487,-0.0359327346086502,-0.158319354057312,-0.976025342941284,-0.149363309144974,-0.505331337451935,-0.843263745307922,-0.183156698942184,-0.441953808069229,-0.865963041782379,-0.234061315655708,-0.857192933559418,-0.349070131778717,-0.378642529249191,-0.872026205062866,-0.385271638631821,-0.301887333393097,-0.850956976413727,-0.475750148296356,-0.222562059760094,-0.505331337451935,-0.843263745307922,-0.183156698942184,-0.414691954851151,-0.900956988334656,-0.127698928117752,-0.850956976413727,-0.475750148296356,-0.222562059760094,-0.815312206745148,-0.520652890205383,-0.253350436687469,0.0813832879066467,-0.996025145053864,-0.0362018868327141,0.0396719351410866,-0.999189078807831,-0.00687075406312943,0.0574871338903904,-0.997099578380585,-0.0498750805854797,0.00921853724867105,-0.999816596508026,0.016783595085144,0.0574871338903904,-0.997099578380585,-0.0498750805854797,0.0396719351410866,-0.999189078807831,-0.00687075406312943,-0.256701976060867,-0.961503148078918,0.0980595126748085,-0.324635088443756,-0.903090238571167,0.281140446662903,0.00921853724867105,-0.999816596508026,0.016783595085144,0.0705177187919617,-0.997507035732269,0.00261467695236206,0.0258039105683565,-0.99410617351532,-0.105294965207577,0.0185582302510738,-0.999278724193573,-0.033129058778286,-0.143731892108917,-0.980844557285309,-0.131472632288933,0.00543753150850534,-0.999984800815582,-0.000869518029503524,0.0258039105683565,-0.99410617351532,-0.105294965207577,0.0070286151021719,-0.999913513660431,0.0111023969948292,0.0117978332564235,-0.999849021434784,-0.0127572864294052,0.0205837432295084,-0.999727725982666,0.0109893605113029,0.0705177187919617,-0.997507035732269,0.00261467695236206,0.0185582302510738,-0.999278724193573,-0.033129058778286, +0.022700471803546,-0.999664962291718,-0.0124322464689612,0.022700471803546,-0.999664962291718,-0.0124322464689612,0.0197228398174047,-0.999779582023621,-0.00719118723645806,0.0205837432295084,-0.999727725982666,0.0109893605113029,-0.158319354057312,-0.976025342941284,-0.149363309144974,0.0117978332564235,-0.999849021434784,-0.0127572864294052,-0.112560421228409,-0.969344735145569,-0.218405365943909,-0.441953808069229,-0.865963041782379,-0.234061315655708,-0.158319354057312,-0.976025342941284,-0.149363309144974,-0.762374818325043,-0.28863787651062,-0.579199969768524,-0.762374818325043,-0.28863787651062,-0.579199969768524,-0.857192933559418,-0.349070131778717,-0.378642529249191,-0.441953808069229,-0.865963041782379,-0.234061315655708,-0.505331337451935,-0.843263745307922,-0.183156698942184,-0.857192933559418,-0.349070131778717,-0.378642529249191,-0.872026205062866,-0.385271638631821,-0.301887333393097,-0.624052226543427,-0.745389580726624,0.234420627355576,-0.324635088443756,-0.903090238571167,0.281140446662903,-0.256701976060867,-0.961503148078918,0.0980595126748085,0.0574871338903904,-0.997099578380585,-0.0498750805854797,0.00921853724867105,-0.999816596508026,0.016783595085144,0.0970274358987808,-0.993980407714844,-0.0508773103356361,0.00921853724867105,-0.999816596508026,0.016783595085144,-0.324635088443756,-0.903090238571167,0.281140446662903,-0.103293314576149,-0.988791763782501,0.107801601290703,0.00543753150850534,-0.999984800815582,-0.000869518029503524,0.0185582302510738,-0.999278724193573,-0.033129058778286,0.0258039105683565,-0.99410617351532,-0.105294965207577,0.167200908064842,-0.982347190380096,-0.0838912129402161,0.00543753150850534,-0.999984800815582,-0.000869518029503524,-0.143731892108917,-0.980844557285309,-0.131472632288933,0.0117978332564235,-0.999849021434784,-0.0127572864294052,0.0070286151021719,-0.999913513660431,0.0111023969948292,-0.0239174626767635,-0.997368335723877,-0.068442165851593,0.0070286151021719,-0.999913513660431,0.0111023969948292,0.0205837432295084,-0.999727725982666,0.0109893605113029, +0.0106770005077124,-0.999880731105804,0.0111527144908905,0.022700471803546,-0.999664962291718,-0.0124322464689612,0.0185582302510738,-0.999278724193573,-0.033129058778286,0.00792443193495274,-0.999579131603241,-0.0279037896543741,0.022700471803546,-0.999664962291718,-0.0124322464689612,0.0320290103554726,-0.999284207820892,0.0201275795698166,0.0197228398174047,-0.999779582023621,-0.00719118723645806,0.0197228398174047,-0.999779582023621,-0.00719118723645806,0.0106770005077124,-0.999880731105804,0.0111527144908905,0.0205837432295084,-0.999727725982666,0.0109893605113029,-0.0239174626767635,-0.997368335723877,-0.068442165851593,-0.112560421228409,-0.969344735145569,-0.218405365943909,0.0117978332564235,-0.999849021434784,-0.0127572864294052,-0.158319354057312,-0.976025342941284,-0.149363309144974,-0.112560421228409,-0.969344735145569,-0.218405365943909,-0.762374818325043,-0.28863787651062,-0.579199969768524,-0.324635088443756,-0.903090238571167,0.281140446662903,-0.624052226543427,-0.745389580726624,0.234420627355576,-0.596134960651398,-0.61301189661026,0.518497169017792,0.0970274358987808,-0.993980407714844,-0.0508773103356361,0.00921853724867105,-0.999816596508026,0.016783595085144,0.0744598880410194,-0.996691286563873,-0.0325895249843597,-0.324635088443756,-0.903090238571167,0.281140446662903,-0.24559785425663,-0.939275622367859,0.239672631025314,-0.103293314576149,-0.988791763782501,0.107801601290703,-0.00662468839436769,-0.999810457229614,0.0183049384504557,0.00921853724867105,-0.999816596508026,0.016783595085144,-0.103293314576149,-0.988791763782501,0.107801601290703,0.00543753150850534,-0.999984800815582,-0.000869518029503524,0.0379508323967457,-0.997894108295441,-0.052601907402277,0.0185582302510738,-0.999278724193573,-0.033129058778286,0.00543753150850534,-0.999984800815582,-0.000869518029503524,0.167200908064842,-0.982347190380096,-0.0838912129402161,0.0379508323967457,-0.997894108295441,-0.052601907402277,0.0070286151021719,-0.999913513660431,0.0111023969948292,0.0106770005077124,-0.999880731105804,0.0111527144908905, +-0.0239174626767635,-0.997368335723877,-0.068442165851593,0.00792443193495274,-0.999579131603241,-0.0279037896543741,0.0185582302510738,-0.999278724193573,-0.033129058778286,-0.00174113141838461,-0.999892354011536,-0.0145648224279284,0.022700471803546,-0.999664962291718,-0.0124322464689612,0.00792443193495274,-0.999579131603241,-0.0279037896543741,0.0320290103554726,-0.999284207820892,0.0201275795698166,0.0046031572856009,-0.999982535839081,-0.00370260397903621,0.0197228398174047,-0.999779582023621,-0.00719118723645806,0.0320290103554726,-0.999284207820892,0.0201275795698166,0.0197228398174047,-0.999779582023621,-0.00719118723645806,0.0046031572856009,-0.999982535839081,-0.00370260397903621,0.0106770005077124,-0.999880731105804,0.0111527144908905,-0.0239174626767635,-0.997368335723877,-0.068442165851593,-0.283030152320862,-0.657633244991302,-0.698149144649506,-0.112560421228409,-0.969344735145569,-0.218405365943909,-0.762374818325043,-0.28863787651062,-0.579199969768524,-0.112560421228409,-0.969344735145569,-0.218405365943909,-0.283030152320862,-0.657633244991302,-0.698149144649506,-0.740835309028625,-0.562863647937775,0.366534262895584,-0.596134960651398,-0.61301189661026,0.518497169017792,-0.624052226543427,-0.745389580726624,0.234420627355576,-0.324635088443756,-0.903090238571167,0.281140446662903,-0.596134960651398,-0.61301189661026,0.518497169017792,-0.492899596691132,-0.724266409873962,0.482170104980469,-0.00662468839436769,-0.999810457229614,0.0183049384504557,0.0744598880410194,-0.996691286563873,-0.0325895249843597,0.00921853724867105,-0.999816596508026,0.016783595085144,-0.324635088443756,-0.903090238571167,0.281140446662903,-0.492899596691132,-0.724266409873962,0.482170104980469,-0.24559785425663,-0.939275622367859,0.239672631025314,-0.00662468839436769,-0.999810457229614,0.0183049384504557,-0.103293314576149,-0.988791763782501,0.107801601290703,-0.24559785425663,-0.939275622367859,0.239672631025314,0.0185582302510738,-0.999278724193573,-0.033129058778286,0.0379508323967457,-0.997894108295441,-0.052601907402277, +-0.00174113141838461,-0.999892354011536,-0.0145648224279284,0.0544217005372047,-0.994212985038757,-0.0926216915249825,0.0379508323967457,-0.997894108295441,-0.052601907402277,0.167200908064842,-0.982347190380096,-0.0838912129402161,0.0106770005077124,-0.999880731105804,0.0111527144908905,0.0152599131688476,-0.999871850013733,0.00483281305059791,-0.0239174626767635,-0.997368335723877,-0.068442165851593,0.00792443193495274,-0.999579131603241,-0.0279037896543741,-0.00174113141838461,-0.999892354011536,-0.0145648224279284,0.0120463138446212,-0.994919836521149,0.0999454781413078,0.0120463138446212,-0.994919836521149,0.0999454781413078,0.0320290103554726,-0.999284207820892,0.0201275795698166,0.00792443193495274,-0.999579131603241,-0.0279037896543741,0.0320290103554726,-0.999284207820892,0.0201275795698166,0.0461948923766613,-0.994758665561676,0.0912202447652817,0.0046031572856009,-0.999982535839081,-0.00370260397903621,0.0046031572856009,-0.999982535839081,-0.00370260397903621,0.0152599131688476,-0.999871850013733,0.00483281305059791,0.0106770005077124,-0.999880731105804,0.0111527144908905,-0.0239174626767635,-0.997368335723877,-0.068442165851593,-0.100448742508888,-0.970690488815308,-0.218334451317787,-0.283030152320862,-0.657633244991302,-0.698149144649506,-0.283030152320862,-0.657633244991302,-0.698149144649506,-0.283896058797836,0.345176696777344,-0.894570231437683,-0.762374818325043,-0.28863787651062,-0.579199969768524,-0.609341382980347,-0.47517591714859,0.634752631187439,-0.596134960651398,-0.61301189661026,0.518497169017792,-0.740835309028625,-0.562863647937775,0.366534262895584,-0.564037382602692,-0.559655129909515,0.607163667678833,-0.492899596691132,-0.724266409873962,0.482170104980469,-0.596134960651398,-0.61301189661026,0.518497169017792,0.0515575297176838,-0.998584032058716,-0.0130989765748382,0.0744598880410194,-0.996691286563873,-0.0325895249843597,-0.00662468839436769,-0.999810457229614,0.0183049384504557,-0.313883751630783,-0.843379378318787,0.436105698347092,-0.24559785425663,-0.939275622367859,0.239672631025314, +-0.492899596691132,-0.724266409873962,0.482170104980469,-0.0950900167226791,-0.981980979442596,0.163313075900078,-0.00662468839436769,-0.999810457229614,0.0183049384504557,-0.24559785425663,-0.939275622367859,0.239672631025314,0.0182668808847666,-0.999663770198822,-0.0184002723544836,-0.00174113141838461,-0.999892354011536,-0.0145648224279284,0.0379508323967457,-0.997894108295441,-0.052601907402277,0.0182668808847666,-0.999663770198822,-0.0184002723544836,0.0379508323967457,-0.997894108295441,-0.052601907402277,0.0544217005372047,-0.994212985038757,-0.0926216915249825,0.187506124377251,-0.966835677623749,-0.173407271504402,0.0544217005372047,-0.994212985038757,-0.0926216915249825,0.167200908064842,-0.982347190380096,-0.0838912129402161,-0.0239174626767635,-0.997368335723877,-0.068442165851593,0.0152599131688476,-0.999871850013733,0.00483281305059791,-0.0141295595094562,-0.999145686626434,-0.0388354882597923,-0.0364856868982315,-0.991257429122925,0.126796767115593,0.0120463138446212,-0.994919836521149,0.0999454781413078,-0.00174113141838461,-0.999892354011536,-0.0145648224279284,0.0120463138446212,-0.994919836521149,0.0999454781413078,0.0638913512229919,-0.957373380661011,0.281698346138,0.0320290103554726,-0.999284207820892,0.0201275795698166,0.0461948923766613,-0.994758665561676,0.0912202447652817,0.0320290103554726,-0.999284207820892,0.0201275795698166,0.103062771260738,-0.971572160720825,0.213132604956627,0.0046031572856009,-0.999982535839081,-0.00370260397903621,0.0461948923766613,-0.994758665561676,0.0912202447652817,0.0243938788771629,-0.999370038509369,0.0257753897458315,0.0046031572856009,-0.999982535839081,-0.00370260397903621,0.00099969410803169,-0.999982357025146,0.00584715139120817,0.0152599131688476,-0.999871850013733,0.00483281305059791,-0.100448742508888,-0.970690488815308,-0.218334451317787,-0.0239174626767635,-0.997368335723877,-0.068442165851593,-0.0141295595094562,-0.999145686626434,-0.0388354882597923,-0.283030152320862,-0.657633244991302,-0.698149144649506,-0.100448742508888,-0.970690488815308,-0.218334451317787, +-0.26288640499115,-0.545276522636414,-0.795967400074005,-0.283896058797836,0.345176696777344,-0.894570231437683,-0.283030152320862,-0.657633244991302,-0.698149144649506,-0.164933785796165,0.0953185632824898,-0.981687903404236,-0.564037382602692,-0.559655129909515,0.607163667678833,-0.596134960651398,-0.61301189661026,0.518497169017792,-0.609341382980347,-0.47517591714859,0.634752631187439,-0.476704925298691,-0.621283531188965,0.621899545192719,-0.492899596691132,-0.724266409873962,0.482170104980469,-0.564037382602692,-0.559655129909515,0.607163667678833,0.0195590686053038,-0.999681770801544,-0.0159299150109291,0.0515575297176838,-0.998584032058716,-0.0130989765748382,-0.00662468839436769,-0.999810457229614,0.0183049384504557,-0.0950900167226791,-0.981980979442596,0.163313075900078,-0.24559785425663,-0.939275622367859,0.239672631025314,-0.313883751630783,-0.843379378318787,0.436105698347092,-0.476704925298691,-0.621283531188965,0.621899545192719,-0.313883751630783,-0.843379378318787,0.436105698347092,-0.492899596691132,-0.724266409873962,0.482170104980469,-0.00662468839436769,-0.999810457229614,0.0183049384504557,-0.0950900167226791,-0.981980979442596,0.163313075900078,-0.0154706742614508,-0.99903804063797,0.041030902415514,-0.00174113141838461,-0.999892354011536,-0.0145648224279284,0.0182668808847666,-0.999663770198822,-0.0184002723544836,-0.0364856868982315,-0.991257429122925,0.126796767115593,0.0255122166126966,-0.996570587158203,-0.0787151306867599,0.0182668808847666,-0.999663770198822,-0.0184002723544836,0.0544217005372047,-0.994212985038757,-0.0926216915249825,0.0247650612145662,-0.989644885063171,-0.141384318470955,0.0544217005372047,-0.994212985038757,-0.0926216915249825,0.187506124377251,-0.966835677623749,-0.173407271504402,0.187506124377251,-0.966835677623749,-0.173407271504402,0.167200908064842,-0.982347190380096,-0.0838912129402161,0.360368877649307,-0.891619205474854,-0.274133771657944,-0.00481037003919482,-0.997470438480377,-0.0709194615483284,-0.0141295595094562,-0.999145686626434,-0.0388354882597923, +0.0152599131688476,-0.999871850013733,0.00483281305059791,-0.0364856868982315,-0.991257429122925,0.126796767115593,-0.0108905108645558,-0.907303869724274,0.420334309339523,0.0120463138446212,-0.994919836521149,0.0999454781413078,-0.0108905108645558,-0.907303869724274,0.420334309339523,0.0638913512229919,-0.957373380661011,0.281698346138,0.0120463138446212,-0.994919836521149,0.0999454781413078,0.0638913512229919,-0.957373380661011,0.281698346138,0.103062771260738,-0.971572160720825,0.213132604956627,0.0320290103554726,-0.999284207820892,0.0201275795698166,0.0461948923766613,-0.994758665561676,0.0912202447652817,0.103062771260738,-0.971572160720825,0.213132604956627,0.208469018340111,-0.915742695331573,0.343447029590607,0.0461948923766613,-0.994758665561676,0.0912202447652817,0.0717467367649078,-0.986455321311951,0.147506892681122,0.0243938788771629,-0.999370038509369,0.0257753897458315,0.00099969410803169,-0.999982357025146,0.00584715139120817,0.0046031572856009,-0.999982535839081,-0.00370260397903621,0.0243938788771629,-0.999370038509369,0.0257753897458315,0.0152599131688476,-0.999871850013733,0.00483281305059791,0.00099969410803169,-0.999982357025146,0.00584715139120817,0.00809676013886929,-0.999921321868896,0.00957380421459675,-0.0680006965994835,-0.985635340213776,-0.154592305421829,-0.100448742508888,-0.970690488815308,-0.218334451317787,-0.0141295595094562,-0.999145686626434,-0.0388354882597923,-0.213910907506943,-0.807042419910431,-0.550385773181915,-0.26288640499115,-0.545276522636414,-0.795967400074005,-0.100448742508888,-0.970690488815308,-0.218334451317787,-0.283030152320862,-0.657633244991302,-0.698149144649506,-0.26288640499115,-0.545276522636414,-0.795967400074005,-0.164933785796165,0.0953185632824898,-0.981687903404236,-0.535942494869232,-0.567492663860321,0.625074028968811,-0.476704925298691,-0.621283531188965,0.621899545192719,-0.564037382602692,-0.559655129909515,0.607163667678833,0.0195590686053038,-0.999681770801544,-0.0159299150109291,-0.00662468839436769,-0.999810457229614,0.0183049384504557,-0.0154706742614508,-0.99903804063797,0.041030902415514, +-0.15698653459549,-0.943714559078217,0.291132211685181,-0.0950900167226791,-0.981980979442596,0.163313075900078,-0.313883751630783,-0.843379378318787,0.436105698347092,-0.313883751630783,-0.843379378318787,0.436105698347092,-0.476704925298691,-0.621283531188965,0.621899545192719,-0.321652829647064,-0.762850761413574,0.560890376567841,-0.15698653459549,-0.943714559078217,0.291132211685181,-0.0154706742614508,-0.99903804063797,0.041030902415514,-0.0950900167226791,-0.981980979442596,0.163313075900078,-0.0154706742614508,-0.99903804063797,0.041030902415514,-0.0364856868982315,-0.991257429122925,0.126796767115593,0.0182668808847666,-0.999663770198822,-0.0184002723544836,0.0208678133785725,-0.999375998973846,-0.0284956395626068,0.0182668808847666,-0.999663770198822,-0.0184002723544836,0.0255122166126966,-0.996570587158203,-0.0787151306867599,0.0255122166126966,-0.996570587158203,-0.0787151306867599,0.0544217005372047,-0.994212985038757,-0.0926216915249825,0.0247650612145662,-0.989644885063171,-0.141384318470955,-0.0164025612175465,-0.988425672054291,-0.15081612765789,-0.0141295595094562,-0.999145686626434,-0.0388354882597923,-0.00481037003919482,-0.997470438480377,-0.0709194615483284,-0.00481037003919482,-0.997470438480377,-0.0709194615483284,0.0152599131688476,-0.999871850013733,0.00483281305059791,-0.0330257378518581,-0.99325704574585,-0.111128710210323,-0.0108905108645558,-0.907303869724274,0.420334309339523,-0.0364856868982315,-0.991257429122925,0.126796767115593,-0.151262789964676,-0.899165213108063,0.41063529253006,0.0638913512229919,-0.957373380661011,0.281698346138,-0.0108905108645558,-0.907303869724274,0.420334309339523,0.0782674178481102,-0.789858996868134,0.60827362537384,0.0638913512229919,-0.957373380661011,0.281698346138,0.215890824794769,-0.835945904254913,0.504564642906189,0.103062771260738,-0.971572160720825,0.213132604956627,0.208469018340111,-0.915742695331573,0.343447029590607,0.103062771260738,-0.971572160720825,0.213132604956627,0.215890824794769,-0.835945904254913,0.504564642906189,0.208469018340111,-0.915742695331573,0.343447029590607, +0.158439561724663,-0.954002678394318,0.254510790109634,0.0461948923766613,-0.994758665561676,0.0912202447652817,0.0461948923766613,-0.994758665561676,0.0912202447652817,0.158439561724663,-0.954002678394318,0.254510790109634,0.0717467367649078,-0.986455321311951,0.147506892681122,0.0717467367649078,-0.986455321311951,0.147506892681122,0.209734112024307,-0.973330497741699,0.0929472371935844,0.0243938788771629,-0.999370038509369,0.0257753897458315,0.0243938788771629,-0.999370038509369,0.0257753897458315,0.00809676013886929,-0.999921321868896,0.00957380421459675,0.00099969410803169,-0.999982357025146,0.00584715139120817,0.0152599131688476,-0.999871850013733,0.00483281305059791,0.00809676013886929,-0.999921321868896,0.00957380421459675,-0.00945893209427595,-0.999915957450867,0.00886476878076792,-0.100448742508888,-0.970690488815308,-0.218334451317787,-0.0680006965994835,-0.985635340213776,-0.154592305421829,-0.213910907506943,-0.807042419910431,-0.550385773181915,-0.0164025612175465,-0.988425672054291,-0.15081612765789,-0.0680006965994835,-0.985635340213776,-0.154592305421829,-0.0141295595094562,-0.999145686626434,-0.0388354882597923,-0.213910907506943,-0.807042419910431,-0.550385773181915,-0.193061023950577,-0.108744323253632,-0.975142061710358,-0.26288640499115,-0.545276522636414,-0.795967400074005,-0.164933785796165,0.0953185632824898,-0.981687903404236,-0.26288640499115,-0.545276522636414,-0.795967400074005,-0.193061023950577,-0.108744323253632,-0.975142061710358,-0.448243856430054,-0.567173361778259,0.690935373306274,-0.476704925298691,-0.621283531188965,0.621899545192719,-0.535942494869232,-0.567492663860321,0.625074028968811,-0.0154706742614508,-0.99903804063797,0.041030902415514,0.0208678133785725,-0.999375998973846,-0.0284956395626068,0.0195590686053038,-0.999681770801544,-0.0159299150109291,-0.313883751630783,-0.843379378318787,0.436105698347092,-0.321652829647064,-0.762850761413574,0.560890376567841,-0.15698653459549,-0.943714559078217,0.291132211685181,-0.382616966962814,-0.604591131210327,0.698622703552246, +-0.321652829647064,-0.762850761413574,0.560890376567841,-0.476704925298691,-0.621283531188965,0.621899545192719,-0.15698653459549,-0.943714559078217,0.291132211685181,-0.125556111335754,-0.953821122646332,0.272874981164932,-0.0154706742614508,-0.99903804063797,0.041030902415514,-0.0154706742614508,-0.99903804063797,0.041030902415514,-0.125556111335754,-0.953821122646332,0.272874981164932,-0.0364856868982315,-0.991257429122925,0.126796767115593,0.0208678133785725,-0.999375998973846,-0.0284956395626068,-0.0154706742614508,-0.99903804063797,0.041030902415514,0.0182668808847666,-0.999663770198822,-0.0184002723544836,-0.156362503767014,-0.890054225921631,-0.428198665380478,-0.0164025612175465,-0.988425672054291,-0.15081612765789,-0.00481037003919482,-0.997470438480377,-0.0709194615483284,-0.00945893209427595,-0.999915957450867,0.00886476878076792,-0.0330257378518581,-0.99325704574585,-0.111128710210323,0.0152599131688476,-0.999871850013733,0.00483281305059791,-0.0330257378518581,-0.99325704574585,-0.111128710210323,-0.156362503767014,-0.890054225921631,-0.428198665380478,-0.00481037003919482,-0.997470438480377,-0.0709194615483284,-0.151262789964676,-0.899165213108063,0.41063529253006,-0.0364856868982315,-0.991257429122925,0.126796767115593,-0.125556111335754,-0.953821122646332,0.272874981164932,-0.0108905108645558,-0.907303869724274,0.420334309339523,-0.151262789964676,-0.899165213108063,0.41063529253006,-0.198546290397644,-0.65089362859726,0.732746005058289,0.0277002118527889,-0.629705190658569,0.776340067386627,0.0782674178481102,-0.789858996868134,0.60827362537384,-0.0108905108645558,-0.907303869724274,0.420334309339523,0.0782674178481102,-0.789858996868134,0.60827362537384,0.215890824794769,-0.835945904254913,0.504564642906189,0.0638913512229919,-0.957373380661011,0.281698346138,0.208469018340111,-0.915742695331573,0.343447029590607,0.215890824794769,-0.835945904254913,0.504564642906189,0.360583037137985,-0.750744462013245,0.553500294685364,0.208469018340111,-0.915742695331573,0.343447029590607,0.352590829133987,-0.818412184715271,0.453741192817688, +0.158439561724663,-0.954002678394318,0.254510790109634,0.0717467367649078,-0.986455321311951,0.147506892681122,0.158439561724663,-0.954002678394318,0.254510790109634,0.268889576196671,-0.915729820728302,0.298558473587036,0.268889576196671,-0.915729820728302,0.298558473587036,0.209734112024307,-0.973330497741699,0.0929472371935844,0.0717467367649078,-0.986455321311951,0.147506892681122,0.123514726758003,-0.991855502128601,0.0310923922806978,0.0243938788771629,-0.999370038509369,0.0257753897458315,0.209734112024307,-0.973330497741699,0.0929472371935844,0.00809676013886929,-0.999921321868896,0.00957380421459675,0.0243938788771629,-0.999370038509369,0.0257753897458315,-0.0125490864738822,-0.999921202659607,-0.000201455899514258,-0.00945893209427595,-0.999915957450867,0.00886476878076792,0.00809676013886929,-0.999921321868896,0.00957380421459675,0.0110649652779102,-0.999915599822998,0.00680179335176945,-0.213910907506943,-0.807042419910431,-0.550385773181915,-0.0680006965994835,-0.985635340213776,-0.154592305421829,-0.107184141874313,-0.752862691879272,-0.649391293525696,-0.0164025612175465,-0.988425672054291,-0.15081612765789,-0.107184141874313,-0.752862691879272,-0.649391293525696,-0.0680006965994835,-0.985635340213776,-0.154592305421829,-0.213910907506943,-0.807042419910431,-0.550385773181915,-0.107184141874313,-0.752862691879272,-0.649391293525696,-0.193061023950577,-0.108744323253632,-0.975142061710358,-0.382616966962814,-0.604591131210327,0.698622703552246,-0.476704925298691,-0.621283531188965,0.621899545192719,-0.448243856430054,-0.567173361778259,0.690935373306274,-0.321652829647064,-0.762850761413574,0.560890376567841,-0.272326976060867,-0.746882915496826,0.606633126735687,-0.15698653459549,-0.943714559078217,0.291132211685181,-0.321652829647064,-0.762850761413574,0.560890376567841,-0.382616966962814,-0.604591131210327,0.698622703552246,-0.272326976060867,-0.746882915496826,0.606633126735687,-0.15698653459549,-0.943714559078217,0.291132211685181,-0.272326976060867,-0.746882915496826,0.606633126735687,-0.125556111335754,-0.953821122646332,0.272874981164932, +-0.156362503767014,-0.890054225921631,-0.428198665380478,-0.107184141874313,-0.752862691879272,-0.649391293525696,-0.0164025612175465,-0.988425672054291,-0.15081612765789,-0.00945893209427595,-0.999915957450867,0.00886476878076792,-0.039919413626194,-0.987488985061646,-0.15255044400692,-0.0330257378518581,-0.99325704574585,-0.111128710210323,-0.0330257378518581,-0.99325704574585,-0.111128710210323,-0.237797990441322,-0.749597489833832,-0.617701828479767,-0.156362503767014,-0.890054225921631,-0.428198665380478,-0.151262789964676,-0.899165213108063,0.41063529253006,-0.125556111335754,-0.953821122646332,0.272874981164932,-0.272326976060867,-0.746882915496826,0.606633126735687,-0.272326976060867,-0.746882915496826,0.606633126735687,-0.198546290397644,-0.65089362859726,0.732746005058289,-0.151262789964676,-0.899165213108063,0.41063529253006,0.0277002118527889,-0.629705190658569,0.776340067386627,-0.0108905108645558,-0.907303869724274,0.420334309339523,-0.198546290397644,-0.65089362859726,0.732746005058289,0.0277002118527889,-0.629705190658569,0.776340067386627,0.252152025699615,-0.620310604572296,0.742720663547516,0.0782674178481102,-0.789858996868134,0.60827362537384,0.0782674178481102,-0.789858996868134,0.60827362537384,0.252152025699615,-0.620310604572296,0.742720663547516,0.215890824794769,-0.835945904254913,0.504564642906189,0.252152025699615,-0.620310604572296,0.742720663547516,0.360583037137985,-0.750744462013245,0.553500294685364,0.215890824794769,-0.835945904254913,0.504564642906189,0.352590829133987,-0.818412184715271,0.453741192817688,0.208469018340111,-0.915742695331573,0.343447029590607,0.360583037137985,-0.750744462013245,0.553500294685364,0.268889576196671,-0.915729820728302,0.298558473587036,0.158439561724663,-0.954002678394318,0.254510790109634,0.352590829133987,-0.818412184715271,0.453741192817688,0.209734112024307,-0.973330497741699,0.0929472371935844,0.268889576196671,-0.915729820728302,0.298558473587036,0.380803108215332,-0.913941204547882,0.140357926487923,0.0313560627400875,-0.999453067779541,0.0105046667158604, +0.0243938788771629,-0.999370038509369,0.0257753897458315,0.123514726758003,-0.991855502128601,0.0310923922806978,0.209734112024307,-0.973330497741699,0.0929472371935844,0.0814635008573532,-0.995212972164154,-0.0539885759353638,0.123514726758003,-0.991855502128601,0.0310923922806978,-0.0125490864738822,-0.999921202659607,-0.000201455899514258,0.0243938788771629,-0.999370038509369,0.0257753897458315,0.0313560627400875,-0.999453067779541,0.0105046667158604,-0.0125490864738822,-0.999921202659607,-0.000201455899514258,-0.0182609539479017,-0.999699890613556,0.0163262784481049,0.00809676013886929,-0.999921321868896,0.00957380421459675,0.0110649652779102,-0.999915599822998,0.00680179335176945,0.00809676013886929,-0.999921321868896,0.00957380421459675,-0.0182609539479017,-0.999699890613556,0.0163262784481049,-0.039919413626194,-0.987488985061646,-0.15255044400692,-0.00945893209427595,-0.999915957450867,0.00886476878076792,0.0110649652779102,-0.999915599822998,0.00680179335176945,-0.107184141874313,-0.752862691879272,-0.649391293525696,-0.230264604091644,-0.0299121607095003,-0.972668170928955,-0.193061023950577,-0.108744323253632,-0.975142061710358,-0.337703794240952,-0.597953677177429,0.726916372776031,-0.272326976060867,-0.746882915496826,0.606633126735687,-0.382616966962814,-0.604591131210327,0.698622703552246,-0.156362503767014,-0.890054225921631,-0.428198665380478,-0.333045184612274,-0.273923218250275,-0.902245461940765,-0.107184141874313,-0.752862691879272,-0.649391293525696,-0.039919413626194,-0.987488985061646,-0.15255044400692,-0.237797990441322,-0.749597489833832,-0.617701828479767,-0.0330257378518581,-0.99325704574585,-0.111128710210323,-0.382926523685455,-0.282395780086517,-0.8795565366745,-0.156362503767014,-0.890054225921631,-0.428198665380478,-0.237797990441322,-0.749597489833832,-0.617701828479767,-0.272326976060867,-0.746882915496826,0.606633126735687,-0.316446661949158,-0.579081535339355,0.75134938955307,-0.198546290397644,-0.65089362859726,0.732746005058289,0.0277002118527889,-0.629705190658569,0.776340067386627, +-0.198546290397644,-0.65089362859726,0.732746005058289,-0.0768568888306618,-0.507230520248413,0.858376443386078,0.252152025699615,-0.620310604572296,0.742720663547516,0.0277002118527889,-0.629705190658569,0.776340067386627,0.130760967731476,-0.46478083729744,0.875716984272003,0.252152025699615,-0.620310604572296,0.742720663547516,0.46146097779274,-0.694403886795044,0.552138388156891,0.360583037137985,-0.750744462013245,0.553500294685364,0.352590829133987,-0.818412184715271,0.453741192817688,0.360583037137985,-0.750744462013245,0.553500294685364,0.46146097779274,-0.694403886795044,0.552138388156891,0.268889576196671,-0.915729820728302,0.298558473587036,0.352590829133987,-0.818412184715271,0.453741192817688,0.46234068274498,-0.82816344499588,0.316837847232819,0.268889576196671,-0.915729820728302,0.298558473587036,0.46234068274498,-0.82816344499588,0.316837847232819,0.380803108215332,-0.913941204547882,0.140357926487923,0.380803108215332,-0.913941204547882,0.140357926487923,0.326528966426849,-0.945164322853088,-0.00657406682148576,0.209734112024307,-0.973330497741699,0.0929472371935844,0.123514726758003,-0.991855502128601,0.0310923922806978,-0.15165276825428,-0.987780213356018,-0.035939559340477,0.0313560627400875,-0.999453067779541,0.0105046667158604,0.209734112024307,-0.973330497741699,0.0929472371935844,0.326528966426849,-0.945164322853088,-0.00657406682148576,0.0814635008573532,-0.995212972164154,-0.0539885759353638,0.123514726758003,-0.991855502128601,0.0310923922806978,0.0814635008573532,-0.995212972164154,-0.0539885759353638,-0.15165276825428,-0.987780213356018,-0.035939559340477,-0.0250545646995306,-0.999638736248016,0.00972420442849398,-0.0125490864738822,-0.999921202659607,-0.000201455899514258,0.0313560627400875,-0.999453067779541,0.0105046667158604,-0.0125490864738822,-0.999921202659607,-0.000201455899514258,-0.0480360724031925,-0.9986452460289,0.0200027674436569,-0.0182609539479017,-0.999699890613556,0.0163262784481049,0.0110649652779102,-0.999915599822998,0.00680179335176945,-0.0182609539479017,-0.999699890613556,0.0163262784481049, +-0.0040144850499928,-0.999717235565186,0.0234372224658728,-0.0210446119308472,-0.996717035770416,-0.0781806707382202,-0.039919413626194,-0.987488985061646,-0.15255044400692,0.0110649652779102,-0.999915599822998,0.00680179335176945,-0.333045184612274,-0.273923218250275,-0.902245461940765,-0.230264604091644,-0.0299121607095003,-0.972668170928955,-0.107184141874313,-0.752862691879272,-0.649391293525696,-0.337703794240952,-0.597953677177429,0.726916372776031,-0.316446661949158,-0.579081535339355,0.75134938955307,-0.272326976060867,-0.746882915496826,0.606633126735687,-0.333045184612274,-0.273923218250275,-0.902245461940765,-0.156362503767014,-0.890054225921631,-0.428198665380478,-0.382926523685455,-0.282395780086517,-0.8795565366745,-0.237797990441322,-0.749597489833832,-0.617701828479767,-0.039919413626194,-0.987488985061646,-0.15255044400692,-0.22522446513176,-0.614644050598145,-0.755967259407043,-0.382926523685455,-0.282395780086517,-0.8795565366745,-0.237797990441322,-0.749597489833832,-0.617701828479767,-0.349861145019531,0.0458319336175919,-0.935679733753204,-0.279736548662186,-0.562717914581299,0.777879059314728,-0.198546290397644,-0.65089362859726,0.732746005058289,-0.316446661949158,-0.579081535339355,0.75134938955307,-0.0768568888306618,-0.507230520248413,0.858376443386078,-0.198546290397644,-0.65089362859726,0.732746005058289,-0.181262701749802,-0.53343665599823,0.826189458370209,0.130760967731476,-0.46478083729744,0.875716984272003,0.0277002118527889,-0.629705190658569,0.776340067386627,-0.0768568888306618,-0.507230520248413,0.858376443386078,0.46234068274498,-0.82816344499588,0.316837847232819,0.352590829133987,-0.818412184715271,0.453741192817688,0.46146097779274,-0.694403886795044,0.552138388156891,0.326528966426849,-0.945164322853088,-0.00657406682148576,0.380803108215332,-0.913941204547882,0.140357926487923,0.46234068274498,-0.82816344499588,0.316837847232819,-0.0250545646995306,-0.999638736248016,0.00972420442849398,0.0313560627400875,-0.999453067779541,0.0105046667158604,-0.15165276825428,-0.987780213356018,-0.035939559340477, +-0.29163521528244,-0.948597848415375,-0.122926779091358,0.0814635008573532,-0.995212972164154,-0.0539885759353638,0.326528966426849,-0.945164322853088,-0.00657406682148576,-0.29163521528244,-0.948597848415375,-0.122926779091358,-0.15165276825428,-0.987780213356018,-0.035939559340477,0.0814635008573532,-0.995212972164154,-0.0539885759353638,-0.0125490864738822,-0.999921202659607,-0.000201455899514258,-0.0250545646995306,-0.999638736248016,0.00972420442849398,-0.0480360724031925,-0.9986452460289,0.0200027674436569,-0.0721157863736153,-0.996306836605072,0.046604260802269,-0.0182609539479017,-0.999699890613556,0.0163262784481049,-0.0480360724031925,-0.9986452460289,0.0200027674436569,-0.0366472229361534,-0.998945415019989,0.0276579931378365,-0.0040144850499928,-0.999717235565186,0.0234372224658728,-0.0182609539479017,-0.999699890613556,0.0163262784481049,-0.00985341146588326,-0.999916791915894,-0.00831819511950016,0.0110649652779102,-0.999915599822998,0.00680179335176945,-0.0040144850499928,-0.999717235565186,0.0234372224658728,-0.183242186903954,-0.799132168292999,-0.57254683971405,-0.039919413626194,-0.987488985061646,-0.15255044400692,-0.0210446119308472,-0.996717035770416,-0.0781806707382202,-0.0210446119308472,-0.996717035770416,-0.0781806707382202,0.0110649652779102,-0.999915599822998,0.00680179335176945,-0.00985341146588326,-0.999916791915894,-0.00831819511950016,-0.333045184612274,-0.273923218250275,-0.902245461940765,-0.356453716754913,0.22632072865963,-0.906487464904785,-0.230264604091644,-0.0299121607095003,-0.972668170928955,-0.333045184612274,-0.273923218250275,-0.902245461940765,-0.382926523685455,-0.282395780086517,-0.8795565366745,-0.356453716754913,0.22632072865963,-0.906487464904785,-0.039919413626194,-0.987488985061646,-0.15255044400692,-0.183242186903954,-0.799132168292999,-0.57254683971405,-0.22522446513176,-0.614644050598145,-0.755967259407043,-0.237797990441322,-0.749597489833832,-0.617701828479767,-0.22522446513176,-0.614644050598145,-0.755967259407043,-0.349861145019531,0.0458319336175919,-0.935679733753204, +-0.349861145019531,0.0458319336175919,-0.935679733753204,-0.356453716754913,0.22632072865963,-0.906487464904785,-0.382926523685455,-0.282395780086517,-0.8795565366745,-0.181262701749802,-0.53343665599823,0.826189458370209,-0.198546290397644,-0.65089362859726,0.732746005058289,-0.279736548662186,-0.562717914581299,0.777879059314728,-0.0473774410784245,-0.998720109462738,0.0177029576152563,-0.0250545646995306,-0.999638736248016,0.00972420442849398,-0.15165276825428,-0.987780213356018,-0.035939559340477,-0.414771229028702,-0.909308731555939,-0.0335014685988426,-0.15165276825428,-0.987780213356018,-0.035939559340477,-0.29163521528244,-0.948597848415375,-0.122926779091358,-0.0480360724031925,-0.9986452460289,0.0200027674436569,-0.0250545646995306,-0.999638736248016,0.00972420442849398,-0.0473774410784245,-0.998720109462738,0.0177029576152563,-0.0182609539479017,-0.999699890613556,0.0163262784481049,-0.0721157863736153,-0.996306836605072,0.046604260802269,-0.0366472229361534,-0.998945415019989,0.0276579931378365,-0.0781481042504311,-0.996165871620178,0.0393231026828289,-0.0721157863736153,-0.996306836605072,0.046604260802269,-0.0480360724031925,-0.9986452460289,0.0200027674436569,-0.0040144850499928,-0.999717235565186,0.0234372224658728,-0.0366472229361534,-0.998945415019989,0.0276579931378365,-0.01550074480474,-0.999103903770447,0.039384126663208,-0.0040144850499928,-0.999717235565186,0.0234372224658728,-0.00483022397384048,-0.999841153621674,0.0171542856842279,-0.00985341146588326,-0.999916791915894,-0.00831819511950016,-0.183242186903954,-0.799132168292999,-0.57254683971405,-0.0210446119308472,-0.996717035770416,-0.0781806707382202,-0.194305345416069,-0.845154821872711,-0.497954428195953,-0.0210446119308472,-0.996717035770416,-0.0781806707382202,-0.00985341146588326,-0.999916791915894,-0.00831819511950016,-0.110369011759758,-0.982585489749908,-0.149480164051056,-0.22522446513176,-0.614644050598145,-0.755967259407043,-0.183242186903954,-0.799132168292999,-0.57254683971405,-0.331666141748428,-0.144691586494446,-0.932234823703766, +-0.22522446513176,-0.614644050598145,-0.755967259407043,-0.331666141748428,-0.144691586494446,-0.932234823703766,-0.349861145019531,0.0458319336175919,-0.935679733753204,-0.16237960755825,-0.986423552036285,-0.024523077532649,-0.0473774410784245,-0.998720109462738,0.0177029576152563,-0.15165276825428,-0.987780213356018,-0.035939559340477,-0.16237960755825,-0.986423552036285,-0.024523077532649,-0.15165276825428,-0.987780213356018,-0.035939559340477,-0.414771229028702,-0.909308731555939,-0.0335014685988426,-0.0692507028579712,-0.996698617935181,0.0423799268901348,-0.0480360724031925,-0.9986452460289,0.0200027674436569,-0.0473774410784245,-0.998720109462738,0.0177029576152563,-0.0899794772267342,-0.9932541847229,0.0731424242258072,-0.0366472229361534,-0.998945415019989,0.0276579931378365,-0.0721157863736153,-0.996306836605072,0.046604260802269,-0.0721157863736153,-0.996306836605072,0.046604260802269,-0.0781481042504311,-0.996165871620178,0.0393231026828289,-0.180115565657616,-0.981284022331238,0.0681169703602791,-0.0781481042504311,-0.996165871620178,0.0393231026828289,-0.0480360724031925,-0.9986452460289,0.0200027674436569,-0.0692507028579712,-0.996698617935181,0.0423799268901348,-0.0899794772267342,-0.9932541847229,0.0731424242258072,-0.01550074480474,-0.999103903770447,0.039384126663208,-0.0366472229361534,-0.998945415019989,0.0276579931378365,-0.01550074480474,-0.999103903770447,0.039384126663208,-0.00483022397384048,-0.999841153621674,0.0171542856842279,-0.0040144850499928,-0.999717235565186,0.0234372224658728,-0.00985341146588326,-0.999916791915894,-0.00831819511950016,-0.00483022397384048,-0.999841153621674,0.0171542856842279,-0.0378895923495293,-0.998991310596466,-0.0240967907011509,-0.110369011759758,-0.982585489749908,-0.149480164051056,-0.194305345416069,-0.845154821872711,-0.497954428195953,-0.0210446119308472,-0.996717035770416,-0.0781806707382202,-0.183242186903954,-0.799132168292999,-0.57254683971405,-0.194305345416069,-0.845154821872711,-0.497954428195953,-0.348634332418442,-0.17803680896759,-0.9201939702034, +-0.110369011759758,-0.982585489749908,-0.149480164051056,-0.00985341146588326,-0.999916791915894,-0.00831819511950016,-0.0378895923495293,-0.998991310596466,-0.0240967907011509,-0.331666141748428,-0.144691586494446,-0.932234823703766,-0.183242186903954,-0.799132168292999,-0.57254683971405,-0.348634332418442,-0.17803680896759,-0.9201939702034,-0.331666141748428,-0.144691586494446,-0.932234823703766,-0.351827353239059,0.247008845210075,-0.902886509895325,-0.349861145019531,0.0458319336175919,-0.935679733753204,-0.0899794772267342,-0.9932541847229,0.0731424242258072,-0.0721157863736153,-0.996306836605072,0.046604260802269,-0.277517825365067,-0.941677749156952,0.190333172678947,-0.277517825365067,-0.941677749156952,0.190333172678947,-0.0721157863736153,-0.996306836605072,0.046604260802269,-0.180115565657616,-0.981284022331238,0.0681169703602791,-0.01550074480474,-0.999103903770447,0.039384126663208,-0.0899794772267342,-0.9932541847229,0.0731424242258072,-0.112695671617985,-0.988284587860107,0.102923288941383,-0.0393056645989418,-0.999060034751892,0.0182753372937441,-0.00483022397384048,-0.999841153621674,0.0171542856842279,-0.01550074480474,-0.999103903770447,0.039384126663208,-0.0393056645989418,-0.999060034751892,0.0182753372937441,-0.0378895923495293,-0.998991310596466,-0.0240967907011509,-0.00483022397384048,-0.999841153621674,0.0171542856842279,-0.110369011759758,-0.982585489749908,-0.149480164051056,-0.418865561485291,-0.53819739818573,-0.731365263462067,-0.194305345416069,-0.845154821872711,-0.497954428195953,-0.348634332418442,-0.17803680896759,-0.9201939702034,-0.194305345416069,-0.845154821872711,-0.497954428195953,-0.418865561485291,-0.53819739818573,-0.731365263462067,-0.110369011759758,-0.982585489749908,-0.149480164051056,-0.0378895923495293,-0.998991310596466,-0.0240967907011509,-0.0825336873531342,-0.989142894744873,-0.121591456234455,-0.331666141748428,-0.144691586494446,-0.932234823703766,-0.348634332418442,-0.17803680896759,-0.9201939702034,-0.351827353239059,0.247008845210075,-0.902886509895325,-0.0899794772267342,-0.9932541847229,0.0731424242258072, +-0.277517825365067,-0.941677749156952,0.190333172678947,-0.243455648422241,-0.951300919055939,0.189091861248016,-0.277517825365067,-0.941677749156952,0.190333172678947,-0.180115565657616,-0.981284022331238,0.0681169703602791,-0.472220778465271,-0.871082425117493,0.134991824626923,-0.112695671617985,-0.988284587860107,0.102923288941383,-0.0899794772267342,-0.9932541847229,0.0731424242258072,-0.151632010936737,-0.979326963424683,0.133889332413673,-0.0505324937403202,-0.996549069881439,0.0658512264490128,-0.01550074480474,-0.999103903770447,0.039384126663208,-0.112695671617985,-0.988284587860107,0.102923288941383,-0.01550074480474,-0.999103903770447,0.039384126663208,-0.0505324937403202,-0.996549069881439,0.0658512264490128,-0.0393056645989418,-0.999060034751892,0.0182753372937441,-0.0393056645989418,-0.999060034751892,0.0182753372937441,-0.0398318022489548,-0.999007284641266,-0.0199454389512539,-0.0378895923495293,-0.998991310596466,-0.0240967907011509,-0.238148644566536,-0.872885882854462,-0.425858318805695,-0.418865561485291,-0.53819739818573,-0.731365263462067,-0.110369011759758,-0.982585489749908,-0.149480164051056,-0.348634332418442,-0.17803680896759,-0.9201939702034,-0.418865561485291,-0.53819739818573,-0.731365263462067,-0.410217106342316,0.142689943313599,-0.900756001472473,-0.0825336873531342,-0.989142894744873,-0.121591456234455,-0.0378895923495293,-0.998991310596466,-0.0240967907011509,-0.109691396355629,-0.961042642593384,-0.253702044487,-0.0825336873531342,-0.989142894744873,-0.121591456234455,-0.238148644566536,-0.872885882854462,-0.425858318805695,-0.110369011759758,-0.982585489749908,-0.149480164051056,-0.348634332418442,-0.17803680896759,-0.9201939702034,-0.410217106342316,0.142689943313599,-0.900756001472473,-0.351827353239059,0.247008845210075,-0.902886509895325,-0.243455648422241,-0.951300919055939,0.189091861248016,-0.277517825365067,-0.941677749156952,0.190333172678947,-0.496952742338181,-0.76694118976593,0.406003773212433,-0.151632010936737,-0.979326963424683,0.133889332413673,-0.0899794772267342,-0.9932541847229,0.0731424242258072, +-0.243455648422241,-0.951300919055939,0.189091861248016,-0.277517825365067,-0.941677749156952,0.190333172678947,-0.472220778465271,-0.871082425117493,0.134991824626923,-0.676593661308289,-0.675083994865417,0.294079184532166,-0.112695671617985,-0.988284587860107,0.102923288941383,-0.151632010936737,-0.979326963424683,0.133889332413673,-0.224233150482178,-0.955986738204956,0.189231991767883,-0.112695671617985,-0.988284587860107,0.102923288941383,-0.161183625459671,-0.97341001033783,0.162765562534332,-0.0505324937403202,-0.996549069881439,0.0658512264490128,-0.0393056645989418,-0.999060034751892,0.0182753372937441,-0.0505324937403202,-0.996549069881439,0.0658512264490128,-0.109286665916443,-0.991946935653687,0.0640123188495636,-0.0398318022489548,-0.999007284641266,-0.0199454389512539,-0.0393056645989418,-0.999060034751892,0.0182753372937441,-0.235502153635025,-0.971483588218689,-0.0275362152606249,-0.109691396355629,-0.961042642593384,-0.253702044487,-0.0378895923495293,-0.998991310596466,-0.0240967907011509,-0.0398318022489548,-0.999007284641266,-0.0199454389512539,-0.238148644566536,-0.872885882854462,-0.425858318805695,-0.414881557226181,-0.221748813986778,-0.882440149784088,-0.418865561485291,-0.53819739818573,-0.731365263462067,-0.410217106342316,0.142689943313599,-0.900756001472473,-0.418865561485291,-0.53819739818573,-0.731365263462067,-0.414881557226181,-0.221748813986778,-0.882440149784088,-0.109691396355629,-0.961042642593384,-0.253702044487,-0.255754888057709,-0.694957792758942,-0.672028958797455,-0.0825336873531342,-0.989142894744873,-0.121591456234455,-0.255754888057709,-0.694957792758942,-0.672028958797455,-0.238148644566536,-0.872885882854462,-0.425858318805695,-0.0825336873531342,-0.989142894744873,-0.121591456234455,-0.277517825365067,-0.941677749156952,0.190333172678947,-0.616630792617798,-0.619888842105865,0.485287696123123,-0.496952742338181,-0.76694118976593,0.406003773212433,-0.489405363798141,-0.712518751621246,0.502791523933411,-0.243455648422241,-0.951300919055939,0.189091861248016,-0.496952742338181,-0.76694118976593,0.406003773212433, +-0.299850285053253,-0.912282645702362,0.27898034453392,-0.151632010936737,-0.979326963424683,0.133889332413673,-0.243455648422241,-0.951300919055939,0.189091861248016,-0.897202432155609,-0.398109018802643,0.191146120429039,-0.676593661308289,-0.675083994865417,0.294079184532166,-0.472220778465271,-0.871082425117493,0.134991824626923,-0.277517825365067,-0.941677749156952,0.190333172678947,-0.676593661308289,-0.675083994865417,0.294079184532166,-0.616630792617798,-0.619888842105865,0.485287696123123,-0.299850285053253,-0.912282645702362,0.27898034453392,-0.224233150482178,-0.955986738204956,0.189231991767883,-0.151632010936737,-0.979326963424683,0.133889332413673,-0.266750663518906,-0.932295322418213,0.244273364543915,-0.112695671617985,-0.988284587860107,0.102923288941383,-0.224233150482178,-0.955986738204956,0.189231991767883,-0.161183625459671,-0.97341001033783,0.162765562534332,-0.112695671617985,-0.988284587860107,0.102923288941383,-0.266750663518906,-0.932295322418213,0.244273364543915,-0.152776569128037,-0.980174779891968,0.126161128282547,-0.0505324937403202,-0.996549069881439,0.0658512264490128,-0.161183625459671,-0.97341001033783,0.162765562534332,-0.152776569128037,-0.980174779891968,0.126161128282547,-0.109286665916443,-0.991946935653687,0.0640123188495636,-0.0505324937403202,-0.996549069881439,0.0658512264490128,-0.109286665916443,-0.991946935653687,0.0640123188495636,-0.153896510601044,-0.987611770629883,0.0306389927864075,-0.0393056645989418,-0.999060034751892,0.0182753372937441,-0.0393056645989418,-0.999060034751892,0.0182753372937441,-0.153896510601044,-0.987611770629883,0.0306389927864075,-0.235502153635025,-0.971483588218689,-0.0275362152606249,-0.235502153635025,-0.971483588218689,-0.0275362152606249,-0.281719148159027,-0.932103753089905,-0.227633029222488,-0.0398318022489548,-0.999007284641266,-0.0199454389512539,-0.0775996595621109,-0.991967737674713,-0.0998908579349518,-0.109691396355629,-0.961042642593384,-0.253702044487,-0.0398318022489548,-0.999007284641266,-0.0199454389512539,-0.255754888057709,-0.694957792758942,-0.672028958797455, +-0.414881557226181,-0.221748813986778,-0.882440149784088,-0.238148644566536,-0.872885882854462,-0.425858318805695,-0.410217106342316,0.142689943313599,-0.900756001472473,-0.414881557226181,-0.221748813986778,-0.882440149784088,-0.330556750297546,0.160165667533875,-0.93009626865387,-0.255754888057709,-0.694957792758942,-0.672028958797455,-0.109691396355629,-0.961042642593384,-0.253702044487,-0.379062622785568,-0.341342657804489,-0.860114276409149,-0.741093337535858,-0.177979737520218,0.647382318973541,-0.496952742338181,-0.76694118976593,0.406003773212433,-0.616630792617798,-0.619888842105865,0.485287696123123,-0.299850285053253,-0.912282645702362,0.27898034453392,-0.243455648422241,-0.951300919055939,0.189091861248016,-0.489405363798141,-0.712518751621246,0.502791523933411,-0.489405363798141,-0.712518751621246,0.502791523933411,-0.496952742338181,-0.76694118976593,0.406003773212433,-0.741093337535858,-0.177979737520218,0.647382318973541,-0.897202432155609,-0.398109018802643,0.191146120429039,-0.832204818725586,0.0117124086245894,0.554344415664673,-0.676593661308289,-0.675083994865417,0.294079184532166,-0.832204818725586,0.0117124086245894,0.554344415664673,-0.616630792617798,-0.619888842105865,0.485287696123123,-0.676593661308289,-0.675083994865417,0.294079184532166,-0.299850285053253,-0.912282645702362,0.27898034453392,-0.44615513086319,-0.795835554599762,0.409379094839096,-0.224233150482178,-0.955986738204956,0.189231991767883,-0.266750663518906,-0.932295322418213,0.244273364543915,-0.224233150482178,-0.955986738204956,0.189231991767883,-0.44615513086319,-0.795835554599762,0.409379094839096,-0.161183625459671,-0.97341001033783,0.162765562534332,-0.266750663518906,-0.932295322418213,0.244273364543915,-0.369193315505981,-0.862431585788727,0.346277236938477,-0.256733983755112,-0.938454329967499,0.231064975261688,-0.152776569128037,-0.980174779891968,0.126161128282547,-0.161183625459671,-0.97341001033783,0.162765562534332,-0.109286665916443,-0.991946935653687,0.0640123188495636,-0.152776569128037,-0.980174779891968,0.126161128282547, +-0.210331618785858,-0.959481179714203,0.187500298023224,-0.153896510601044,-0.987611770629883,0.0306389927864075,-0.109286665916443,-0.991946935653687,0.0640123188495636,-0.296578943729401,-0.952039480209351,0.0752445831894875,-0.4133480489254,-0.91037255525589,0.0191051159054041,-0.235502153635025,-0.971483588218689,-0.0275362152606249,-0.153896510601044,-0.987611770629883,0.0306389927864075,-0.235502153635025,-0.971483588218689,-0.0275362152606249,-0.460168033838272,-0.878647208213806,-0.127374842762947,-0.281719148159027,-0.932103753089905,-0.227633029222488,-0.281719148159027,-0.932103753089905,-0.227633029222488,-0.0775996595621109,-0.991967737674713,-0.0998908579349518,-0.0398318022489548,-0.999007284641266,-0.0199454389512539,-0.109691396355629,-0.961042642593384,-0.253702044487,-0.0775996595621109,-0.991967737674713,-0.0998908579349518,-0.395065277814865,-0.725637793540955,-0.563358724117279,-0.414881557226181,-0.221748813986778,-0.882440149784088,-0.255754888057709,-0.694957792758942,-0.672028958797455,-0.32440048456192,-0.0031305062584579,-0.945914626121521,-0.414881557226181,-0.221748813986778,-0.882440149784088,-0.32440048456192,-0.0031305062584579,-0.945914626121521,-0.330556750297546,0.160165667533875,-0.93009626865387,-0.379062622785568,-0.341342657804489,-0.860114276409149,-0.109691396355629,-0.961042642593384,-0.253702044487,-0.395065277814865,-0.725637793540955,-0.563358724117279,-0.255754888057709,-0.694957792758942,-0.672028958797455,-0.379062622785568,-0.341342657804489,-0.860114276409149,-0.32440048456192,-0.0031305062584579,-0.945914626121521,-0.741093337535858,-0.177979737520218,0.647382318973541,-0.616630792617798,-0.619888842105865,0.485287696123123,-0.765731811523438,-0.174125760793686,0.619140386581421,-0.489405363798141,-0.712518751621246,0.502791523933411,-0.553854763507843,-0.63520872592926,0.538288533687592,-0.299850285053253,-0.912282645702362,0.27898034453392,-0.741093337535858,-0.177979737520218,0.647382318973541,-0.667150020599365,-0.197761848568916,0.71819281578064,-0.489405363798141,-0.712518751621246,0.502791523933411, +-0.832204818725586,0.0117124086245894,0.554344415664673,-0.765731811523438,-0.174125760793686,0.619140386581421,-0.616630792617798,-0.619888842105865,0.485287696123123,-0.553854763507843,-0.63520872592926,0.538288533687592,-0.44615513086319,-0.795835554599762,0.409379094839096,-0.299850285053253,-0.912282645702362,0.27898034453392,-0.44615513086319,-0.795835554599762,0.409379094839096,-0.533905446529388,-0.678951025009155,0.503954470157623,-0.266750663518906,-0.932295322418213,0.244273364543915,-0.266750663518906,-0.932295322418213,0.244273364543915,-0.533905446529388,-0.678951025009155,0.503954470157623,-0.369193315505981,-0.862431585788727,0.346277236938477,-0.256733983755112,-0.938454329967499,0.231064975261688,-0.161183625459671,-0.97341001033783,0.162765562534332,-0.369193315505981,-0.862431585788727,0.346277236938477,-0.256733983755112,-0.938454329967499,0.231064975261688,-0.37797138094902,-0.879796802997589,0.288262188434601,-0.152776569128037,-0.980174779891968,0.126161128282547,-0.37797138094902,-0.879796802997589,0.288262188434601,-0.210331618785858,-0.959481179714203,0.187500298023224,-0.152776569128037,-0.980174779891968,0.126161128282547,-0.296578943729401,-0.952039480209351,0.0752445831894875,-0.109286665916443,-0.991946935653687,0.0640123188495636,-0.210331618785858,-0.959481179714203,0.187500298023224,-0.153896510601044,-0.987611770629883,0.0306389927864075,-0.296578943729401,-0.952039480209351,0.0752445831894875,-0.4133480489254,-0.91037255525589,0.0191051159054041,-0.558797001838684,-0.82735550403595,0.0568213388323784,-0.235502153635025,-0.971483588218689,-0.0275362152606249,-0.4133480489254,-0.91037255525589,0.0191051159054041,-0.460168033838272,-0.878647208213806,-0.127374842762947,-0.235502153635025,-0.971483588218689,-0.0275362152606249,-0.52362722158432,-0.82702100276947,-0.204574227333069,-0.465440720319748,-0.844433844089508,-0.265134036540985,-0.281719148159027,-0.932103753089905,-0.227633029222488,-0.460168033838272,-0.878647208213806,-0.127374842762947,-0.281719148159027,-0.932103753089905,-0.227633029222488, +-0.395065277814865,-0.725637793540955,-0.563358724117279,-0.0775996595621109,-0.991967737674713,-0.0998908579349518,-0.391239613294601,0.182156473398209,-0.902081191539764,-0.330556750297546,0.160165667533875,-0.93009626865387,-0.32440048456192,-0.0031305062584579,-0.945914626121521,-0.519931733608246,-0.0459256954491138,-0.852972328662872,-0.379062622785568,-0.341342657804489,-0.860114276409149,-0.395065277814865,-0.725637793540955,-0.563358724117279,-0.32440048456192,-0.0031305062584579,-0.945914626121521,-0.379062622785568,-0.341342657804489,-0.860114276409149,-0.406260818243027,0.0803910568356514,-0.910213887691498,-0.489405363798141,-0.712518751621246,0.502791523933411,-0.667150020599365,-0.197761848568916,0.71819281578064,-0.553854763507843,-0.63520872592926,0.538288533687592,-0.553854763507843,-0.63520872592926,0.538288533687592,-0.667200982570648,-0.338361233472824,0.663591980934143,-0.44615513086319,-0.795835554599762,0.409379094839096,-0.44615513086319,-0.795835554599762,0.409379094839096,-0.667200982570648,-0.338361233472824,0.663591980934143,-0.533905446529388,-0.678951025009155,0.503954470157623,-0.533905446529388,-0.678951025009155,0.503954470157623,-0.702633321285248,-0.391317784786224,0.594286680221558,-0.369193315505981,-0.862431585788727,0.346277236938477,-0.369193315505981,-0.862431585788727,0.346277236938477,-0.552344262599945,-0.697442412376404,0.45660674571991,-0.256733983755112,-0.938454329967499,0.231064975261688,-0.37797138094902,-0.879796802997589,0.288262188434601,-0.256733983755112,-0.938454329967499,0.231064975261688,-0.552344262599945,-0.697442412376404,0.45660674571991,-0.37797138094902,-0.879796802997589,0.288262188434601,-0.486194670200348,-0.762731492519379,0.426444947719574,-0.210331618785858,-0.959481179714203,0.187500298023224,-0.296578943729401,-0.952039480209351,0.0752445831894875,-0.210331618785858,-0.959481179714203,0.187500298023224,-0.519315302371979,-0.833948075771332,0.186660662293434,-0.4133480489254,-0.91037255525589,0.0191051159054041,-0.296578943729401,-0.952039480209351,0.0752445831894875, +-0.602092266082764,-0.797573447227478,0.0368967391550541,-0.474829882383347,-0.874870419502258,-0.0955936759710312,-0.235502153635025,-0.971483588218689,-0.0275362152606249,-0.558797001838684,-0.82735550403595,0.0568213388323784,-0.558797001838684,-0.82735550403595,0.0568213388323784,-0.4133480489254,-0.91037255525589,0.0191051159054041,-0.778006553649902,-0.627886712551117,0.0215383395552635,-0.52362722158432,-0.82702100276947,-0.204574227333069,-0.235502153635025,-0.971483588218689,-0.0275362152606249,-0.474829882383347,-0.874870419502258,-0.0955936759710312,-0.52362722158432,-0.82702100276947,-0.204574227333069,-0.8689324259758,-0.319692611694336,-0.377826601266861,-0.460168033838272,-0.878647208213806,-0.127374842762947,-0.465440720319748,-0.844433844089508,-0.265134036540985,-0.663003981113434,-0.423596501350403,-0.617245137691498,-0.281719148159027,-0.932103753089905,-0.227633029222488,-0.465440720319748,-0.844433844089508,-0.265134036540985,-0.460168033838272,-0.878647208213806,-0.127374842762947,-0.807151317596436,-0.528723001480103,-0.262599557638168,-0.592282712459564,-0.388572603464127,-0.705841600894928,-0.395065277814865,-0.725637793540955,-0.563358724117279,-0.281719148159027,-0.932103753089905,-0.227633029222488,-0.32440048456192,-0.0031305062584579,-0.945914626121521,-0.406260818243027,0.0803910568356514,-0.910213887691498,-0.391239613294601,0.182156473398209,-0.902081191539764,-0.519931733608246,-0.0459256954491138,-0.852972328662872,-0.406260818243027,0.0803910568356514,-0.910213887691498,-0.379062622785568,-0.341342657804489,-0.860114276409149,-0.592282712459564,-0.388572603464127,-0.705841600894928,-0.519931733608246,-0.0459256954491138,-0.852972328662872,-0.395065277814865,-0.725637793540955,-0.563358724117279,-0.667150020599365,-0.197761848568916,0.71819281578064,-0.667200982570648,-0.338361233472824,0.663591980934143,-0.553854763507843,-0.63520872592926,0.538288533687592,-0.667200982570648,-0.338361233472824,0.663591980934143,-0.745780527591705,-0.176506251096725,0.642383635044098,-0.533905446529388,-0.678951025009155,0.503954470157623, +-0.533905446529388,-0.678951025009155,0.503954470157623,-0.745780527591705,-0.176506251096725,0.642383635044098,-0.702633321285248,-0.391317784786224,0.594286680221558,-0.369193315505981,-0.862431585788727,0.346277236938477,-0.702633321285248,-0.391317784786224,0.594286680221558,-0.552344262599945,-0.697442412376404,0.45660674571991,-0.552344262599945,-0.697442412376404,0.45660674571991,-0.719047248363495,-0.409671664237976,0.561373353004456,-0.37797138094902,-0.879796802997589,0.288262188434601,-0.37797138094902,-0.879796802997589,0.288262188434601,-0.719047248363495,-0.409671664237976,0.561373353004456,-0.486194670200348,-0.762731492519379,0.426444947719574,-0.238716468214989,-0.932349503040314,0.271548807621002,-0.210331618785858,-0.959481179714203,0.187500298023224,-0.486194670200348,-0.762731492519379,0.426444947719574,-0.238716468214989,-0.932349503040314,0.271548807621002,-0.519315302371979,-0.833948075771332,0.186660662293434,-0.210331618785858,-0.959481179714203,0.187500298023224,-0.519315302371979,-0.833948075771332,0.186660662293434,-0.602092266082764,-0.797573447227478,0.0368967391550541,-0.296578943729401,-0.952039480209351,0.0752445831894875,-0.4133480489254,-0.91037255525589,0.0191051159054041,-0.602092266082764,-0.797573447227478,0.0368967391550541,-0.778006553649902,-0.627886712551117,0.0215383395552635,-0.558797001838684,-0.82735550403595,0.0568213388323784,-0.723549485206604,-0.688082277774811,-0.0549431256949902,-0.474829882383347,-0.874870419502258,-0.0955936759710312,-0.923367500305176,-0.373956620693207,0.0868834182620049,-0.558797001838684,-0.82735550403595,0.0568213388323784,-0.778006553649902,-0.627886712551117,0.0215383395552635,-0.52362722158432,-0.82702100276947,-0.204574227333069,-0.474829882383347,-0.874870419502258,-0.0955936759710312,-0.754914700984955,-0.538230419158936,-0.374715447425842,-0.754914700984955,-0.538230419158936,-0.374715447425842,-0.8689324259758,-0.319692611694336,-0.377826601266861,-0.52362722158432,-0.82702100276947,-0.204574227333069,-0.460168033838272,-0.878647208213806,-0.127374842762947, +-0.8689324259758,-0.319692611694336,-0.377826601266861,-0.807151317596436,-0.528723001480103,-0.262599557638168,-0.663003981113434,-0.423596501350403,-0.617245137691498,-0.465440720319748,-0.844433844089508,-0.265134036540985,-0.791575193405151,-0.362284570932388,-0.49209600687027,-0.281719148159027,-0.932103753089905,-0.227633029222488,-0.663003981113434,-0.423596501350403,-0.617245137691498,-0.592282712459564,-0.388572603464127,-0.705841600894928,-0.807151317596436,-0.528723001480103,-0.262599557638168,-0.791575193405151,-0.362284570932388,-0.49209600687027,-0.465440720319748,-0.844433844089508,-0.265134036540985,-0.519931733608246,-0.0459256954491138,-0.852972328662872,-0.391239613294601,0.182156473398209,-0.902081191539764,-0.406260818243027,0.0803910568356514,-0.910213887691498,-0.519931733608246,-0.0459256954491138,-0.852972328662872,-0.592282712459564,-0.388572603464127,-0.705841600894928,-0.640745878219604,0.012588725425303,-0.767649710178375,-0.702633321285248,-0.391317784786224,0.594286680221558,-0.778876483440399,-0.0179379098117352,0.626920640468597,-0.552344262599945,-0.697442412376404,0.45660674571991,-0.552344262599945,-0.697442412376404,0.45660674571991,-0.778876483440399,-0.0179379098117352,0.626920640468597,-0.719047248363495,-0.409671664237976,0.561373353004456,-0.749906182289124,-0.230599239468575,0.62005215883255,-0.486194670200348,-0.762731492519379,0.426444947719574,-0.719047248363495,-0.409671664237976,0.561373353004456,-0.486194670200348,-0.762731492519379,0.426444947719574,-0.519315302371979,-0.833948075771332,0.186660662293434,-0.238716468214989,-0.932349503040314,0.271548807621002,-0.81661194562912,-0.534337103366852,0.218239933252335,-0.602092266082764,-0.797573447227478,0.0368967391550541,-0.519315302371979,-0.833948075771332,0.186660662293434,-0.933851182460785,-0.357451200485229,0.0122708939015865,-0.778006553649902,-0.627886712551117,0.0215383395552635,-0.602092266082764,-0.797573447227478,0.0368967391550541,-0.558797001838684,-0.82735550403595,0.0568213388323784,-0.923367500305176,-0.373956620693207,0.0868834182620049, +-0.723549485206604,-0.688082277774811,-0.0549431256949902,-0.723549485206604,-0.688082277774811,-0.0549431256949902,-0.754914700984955,-0.538230419158936,-0.374715447425842,-0.474829882383347,-0.874870419502258,-0.0955936759710312,-0.998259961605072,-0.013540924526751,-0.0573895014822483,-0.923367500305176,-0.373956620693207,0.0868834182620049,-0.778006553649902,-0.627886712551117,0.0215383395552635,-0.754914700984955,-0.538230419158936,-0.374715447425842,-0.850143909454346,0.121064767241478,-0.512443780899048,-0.8689324259758,-0.319692611694336,-0.377826601266861,-0.869415462017059,0.115314699709415,-0.480436414480209,-0.807151317596436,-0.528723001480103,-0.262599557638168,-0.8689324259758,-0.319692611694336,-0.377826601266861,-0.663003981113434,-0.423596501350403,-0.617245137691498,-0.791575193405151,-0.362284570932388,-0.49209600687027,-0.869415462017059,0.115314699709415,-0.480436414480209,-0.663003981113434,-0.423596501350403,-0.617245137691498,-0.773511946201324,0.0235096868127584,-0.633345365524292,-0.592282712459564,-0.388572603464127,-0.705841600894928,-0.807151317596436,-0.528723001480103,-0.262599557638168,-0.869415462017059,0.115314699709415,-0.480436414480209,-0.791575193405151,-0.362284570932388,-0.49209600687027,-0.391239613294601,0.182156473398209,-0.902081191539764,-0.519931733608246,-0.0459256954491138,-0.852972328662872,-0.543102622032166,0.197408646345139,-0.816130638122559,-0.773511946201324,0.0235096868127584,-0.633345365524292,-0.640745878219604,0.012588725425303,-0.767649710178375,-0.592282712459564,-0.388572603464127,-0.705841600894928,-0.640745878219604,0.012588725425303,-0.767649710178375,-0.543102622032166,0.197408646345139,-0.816130638122559,-0.519931733608246,-0.0459256954491138,-0.852972328662872,-0.817351520061493,-0.382236450910568,0.431081920862198,-0.486194670200348,-0.762731492519379,0.426444947719574,-0.749906182289124,-0.230599239468575,0.62005215883255,-0.486194670200348,-0.762731492519379,0.426444947719574,-0.817351520061493,-0.382236450910568,0.431081920862198,-0.519315302371979,-0.833948075771332,0.186660662293434, +-0.933851182460785,-0.357451200485229,0.0122708939015865,-0.602092266082764,-0.797573447227478,0.0368967391550541,-0.81661194562912,-0.534337103366852,0.218239933252335,-0.817351520061493,-0.382236450910568,0.431081920862198,-0.81661194562912,-0.534337103366852,0.218239933252335,-0.519315302371979,-0.833948075771332,0.186660662293434,-0.998259961605072,-0.013540924526751,-0.0573895014822483,-0.778006553649902,-0.627886712551117,0.0215383395552635,-0.933851182460785,-0.357451200485229,0.0122708939015865,-0.940235614776611,-0.19293124973774,-0.280596137046814,-0.723549485206604,-0.688082277774811,-0.0549431256949902,-0.923367500305176,-0.373956620693207,0.0868834182620049,-0.940235614776611,-0.19293124973774,-0.280596137046814,-0.754914700984955,-0.538230419158936,-0.374715447425842,-0.723549485206604,-0.688082277774811,-0.0549431256949902,-0.923367500305176,-0.373956620693207,0.0868834182620049,-0.998259961605072,-0.013540924526751,-0.0573895014822483,-0.96758097410202,0.198888629674912,-0.155660644173622,-0.940235614776611,-0.19293124973774,-0.280596137046814,-0.850143909454346,0.121064767241478,-0.512443780899048,-0.754914700984955,-0.538230419158936,-0.374715447425842,-0.849173545837402,0.241268157958984,-0.469780653715134,-0.8689324259758,-0.319692611694336,-0.377826601266861,-0.850143909454346,0.121064767241478,-0.512443780899048,-0.869415462017059,0.115314699709415,-0.480436414480209,-0.8689324259758,-0.319692611694336,-0.377826601266861,-0.849173545837402,0.241268157958984,-0.469780653715134,-0.869415462017059,0.115314699709415,-0.480436414480209,-0.773511946201324,0.0235096868127584,-0.633345365524292,-0.663003981113434,-0.423596501350403,-0.617245137691498,-0.773511946201324,0.0235096868127584,-0.633345365524292,-0.759771525859833,0.234358474612236,-0.606484293937683,-0.640745878219604,0.012588725425303,-0.767649710178375,-0.759771525859833,0.234358474612236,-0.606484293937683,-0.543102622032166,0.197408646345139,-0.816130638122559,-0.640745878219604,0.012588725425303,-0.767649710178375,-0.940235614776611,-0.19293124973774,-0.280596137046814, +-0.923367500305176,-0.373956620693207,0.0868834182620049,-0.96758097410202,0.198888629674912,-0.155660644173622,-0.940235614776611,-0.19293124973774,-0.280596137046814,-0.96758097410202,0.198888629674912,-0.155660644173622,-0.850143909454346,0.121064767241478,-0.512443780899048,-0.869415462017059,0.115314699709415,-0.480436414480209,-0.849173545837402,0.241268157958984,-0.469780653715134,-0.840643644332886,0.291518151760101,-0.45643761754036,-0.773511946201324,0.0235096868127584,-0.633345365524292,-0.869415462017059,0.115314699709415,-0.480436414480209,-0.840643644332886,0.291518151760101,-0.45643761754036,-0.759771525859833,0.234358474612236,-0.606484293937683,-0.773511946201324,0.0235096868127584,-0.633345365524292,-0.840643644332886,0.291518151760101,-0.45643761754036,-0.0171088427305222,-0.982673048973084,-0.184555768966675,-0.0344852842390537,-0.998610973358154,-0.0398345217108727,-0.0975367203354836,-0.909852921962738,-0.403303980827332,-0.629973113536835,-0.775570392608643,0.0403026044368744,-0.64159482717514,-0.755843937397003,0.130598619580269,-0.457864046096802,-0.886235177516937,0.0703392922878265,-0.64159482717514,-0.755843937397003,0.130598619580269,-0.610131919384003,-0.7618488073349,0.217544138431549,-0.478202342987061,-0.860364675521851,0.176337867975235,-0.457864046096802,-0.886235177516937,0.0703392922878265,-0.64159482717514,-0.755843937397003,0.130598619580269,-0.347112417221069,-0.924047470092773,0.160152733325958,-0.362342834472656,-0.932024836540222,0.00608741026371717,-0.629973113536835,-0.775570392608643,0.0403026044368744,-0.457864046096802,-0.886235177516937,0.0703392922878265,-0.610131919384003,-0.7618488073349,0.217544138431549,-0.271320670843124,-0.954867541790009,0.120884440839291,-0.478202342987061,-0.860364675521851,0.176337867975235,-0.64159482717514,-0.755843937397003,0.130598619580269,-0.478202342987061,-0.860364675521851,0.176337867975235,-0.347112417221069,-0.924047470092773,0.160152733325958,-0.457864046096802,-0.886235177516937,0.0703392922878265,-0.347112417221069,-0.924047470092773,0.160152733325958, +-0.0755924209952354,-0.996360301971436,0.0393935106694698,-0.362342834472656,-0.932024836540222,0.00608741026371717,-0.457864046096802,-0.886235177516937,0.0703392922878265,-0.0755924209952354,-0.996360301971436,0.0393935106694698,-0.484544008970261,-0.850829780101776,0.203237965703011,-0.610131919384003,-0.7618488073349,0.217544138431549,-0.635447859764099,-0.703979194164276,0.317205399274826,-0.484544008970261,-0.850829780101776,0.203237965703011,-0.271320670843124,-0.954867541790009,0.120884440839291,-0.610131919384003,-0.7618488073349,0.217544138431549,-0.271320670843124,-0.954867541790009,0.120884440839291,-0.347112417221069,-0.924047470092773,0.160152733325958,-0.478202342987061,-0.860364675521851,0.176337867975235,-0.271320670843124,-0.954867541790009,0.120884440839291,-0.0755924209952354,-0.996360301971436,0.0393935106694698,-0.347112417221069,-0.924047470092773,0.160152733325958,-0.362342834472656,-0.932024836540222,0.00608741026371717,-0.0755924209952354,-0.996360301971436,0.0393935106694698,-0.0616685897111893,-0.997940480709076,-0.0176566485315561,0.00972930714488029,-0.999701678752899,-0.0224021300673485,-0.0616685897111893,-0.997940480709076,-0.0176566485315561,0.00822143442928791,-0.999960839748383,-0.0032581661362201,-0.495675146579742,-0.826885282993317,0.265644013881683,-0.484544008970261,-0.850829780101776,0.203237965703011,-0.635447859764099,-0.703979194164276,0.317205399274826,-0.213905110955238,-0.969387233257294,0.120552644133568,-0.271320670843124,-0.954867541790009,0.120884440839291,-0.484544008970261,-0.850829780101776,0.203237965703011,-0.635447859764099,-0.703979194164276,0.317205399274826,-0.569900572299957,-0.717265009880066,0.400929003953934,-0.495675146579742,-0.826885282993317,0.265644013881683,-0.000937319826334715,-0.999064803123474,0.0432241335511208,-0.0755924209952354,-0.996360301971436,0.0393935106694698,-0.271320670843124,-0.954867541790009,0.120884440839291,-0.0755924209952354,-0.996360301971436,0.0393935106694698,0.00822143442928791,-0.999960839748383,-0.0032581661362201,-0.0616685897111893,-0.997940480709076,-0.0176566485315561, +0.0106352353468537,-0.999892771244049,0.0100628081709147,0.00972930714488029,-0.999701678752899,-0.0224021300673485,0.00822143442928791,-0.999960839748383,-0.0032581661362201,0.0106352353468537,-0.999892771244049,0.0100628081709147,0.0261679049581289,-0.999509692192078,-0.0171922780573368,0.00972930714488029,-0.999701678752899,-0.0224021300673485,-0.495675146579742,-0.826885282993317,0.265644013881683,-0.213905110955238,-0.969387233257294,0.120552644133568,-0.484544008970261,-0.850829780101776,0.203237965703011,-0.213905110955238,-0.969387233257294,0.120552644133568,-0.000937319826334715,-0.999064803123474,0.0432241335511208,-0.271320670843124,-0.954867541790009,0.120884440839291,-0.297677636146545,-0.92087060213089,0.251764386892319,-0.495675146579742,-0.826885282993317,0.265644013881683,-0.569900572299957,-0.717265009880066,0.400929003953934,0.0436160191893578,-0.998257100582123,0.0397536568343639,-0.0755924209952354,-0.996360301971436,0.0393935106694698,-0.000937319826334715,-0.999064803123474,0.0432241335511208,0.0155084859579802,-0.999556243419647,0.0254303179681301,0.00822143442928791,-0.999960839748383,-0.0032581661362201,-0.0755924209952354,-0.996360301971436,0.0393935106694698,0.0155084859579802,-0.999556243419647,0.0254303179681301,0.0106352353468537,-0.999892771244049,0.0100628081709147,0.00822143442928791,-0.999960839748383,-0.0032581661362201,0.0274897534400225,-0.999215960502625,-0.0284908711910248,0.0261679049581289,-0.999509692192078,-0.0171922780573368,0.0190547332167625,-0.999635636806488,-0.0191160626709461,0.0261679049581289,-0.999509692192078,-0.0171922780573368,0.0106352353468537,-0.999892771244049,0.0100628081709147,0.0203806143254042,-0.99977058172226,0.00657696556299925,-0.297677636146545,-0.92087060213089,0.251764386892319,-0.213905110955238,-0.969387233257294,0.120552644133568,-0.495675146579742,-0.826885282993317,0.265644013881683,-0.0343938991427422,-0.99642550945282,0.0771572217345238,-0.000937319826334715,-0.999064803123474,0.0432241335511208,-0.213905110955238,-0.969387233257294,0.120552644133568, +-0.395175844430923,-0.84804779291153,0.3530592918396,-0.297677636146545,-0.92087060213089,0.251764386892319,-0.569900572299957,-0.717265009880066,0.400929003953934,0.0436160191893578,-0.998257100582123,0.0397536568343639,0.0246136114001274,-0.998632431030273,0.0461237207055092,-0.0755924209952354,-0.996360301971436,0.0393935106694698,-0.0343938991427422,-0.99642550945282,0.0771572217345238,0.0436160191893578,-0.998257100582123,0.0397536568343639,-0.000937319826334715,-0.999064803123474,0.0432241335511208,-0.0755924209952354,-0.996360301971436,0.0393935106694698,0.0246136114001274,-0.998632431030273,0.0461237207055092,0.0155084859579802,-0.999556243419647,0.0254303179681301,0.0155084859579802,-0.999556243419647,0.0254303179681301,0.0173268392682076,-0.99898624420166,0.0415477901697159,0.0106352353468537,-0.999892771244049,0.0100628081709147,0.0261679049581289,-0.999509692192078,-0.0171922780573368,0.0203806143254042,-0.99977058172226,0.00657696556299925,0.0190547332167625,-0.999635636806488,-0.0191160626709461,0.0106352353468537,-0.999892771244049,0.0100628081709147,-0.0351175591349602,-0.997202038764954,-0.0659911260008812,0.0203806143254042,-0.99977058172226,0.00657696556299925,-0.297677636146545,-0.92087060213089,0.251764386892319,-0.0343938991427422,-0.99642550945282,0.0771572217345238,-0.213905110955238,-0.969387233257294,0.120552644133568,-0.297677636146545,-0.92087060213089,0.251764386892319,-0.395175844430923,-0.84804779291153,0.3530592918396,-0.158827006816864,-0.972283363342285,0.171578079462051,0.0173268392682076,-0.99898624420166,0.0415477901697159,0.0155084859579802,-0.999556243419647,0.0254303179681301,0.0246136114001274,-0.998632431030273,0.0461237207055092,0.0173268392682076,-0.99898624420166,0.0415477901697159,-0.0351175591349602,-0.997202038764954,-0.0659911260008812,0.0106352353468537,-0.999892771244049,0.0100628081709147,0.0175724159926176,-0.999753594398499,-0.0135580748319626,0.0190547332167625,-0.999635636806488,-0.0191160626709461,0.0203806143254042,-0.99977058172226,0.00657696556299925,0.0203806143254042,-0.99977058172226,0.00657696556299925, +-0.0351175591349602,-0.997202038764954,-0.0659911260008812,0.0148595683276653,-0.999202132225037,0.0370674058794975,-0.297677636146545,-0.92087060213089,0.251764386892319,-0.158827006816864,-0.972283363342285,0.171578079462051,-0.0343938991427422,-0.99642550945282,0.0771572217345238,0.0173268392682076,-0.99898624420166,0.0415477901697159,0.0246136114001274,-0.998632431030273,0.0461237207055092,0.033177062869072,-0.996918499469757,0.0710820853710175,-0.0351175591349602,-0.997202038764954,-0.0659911260008812,0.0173268392682076,-0.99898624420166,0.0415477901697159,0.033177062869072,-0.996918499469757,0.0710820853710175,0.0203806143254042,-0.99977058172226,0.00657696556299925,0.0022565028630197,-0.999990701675415,0.00367420190013945,0.0175724159926176,-0.999753594398499,-0.0135580748319626,0.0148595683276653,-0.999202132225037,0.0370674058794975,-0.0351175591349602,-0.997202038764954,-0.0659911260008812,-0.189815700054169,-0.915529787540436,-0.354647874832153,0.0022565028630197,-0.999990701675415,0.00367420190013945,0.0203806143254042,-0.99977058172226,0.00657696556299925,0.0148595683276653,-0.999202132225037,0.0370674058794975,-0.0351175591349602,-0.997202038764954,-0.0659911260008812,0.033177062869072,-0.996918499469757,0.0710820853710175,0.0221267528831959,-0.997239708900452,0.0708746090531349,0.020591739565134,-0.999780356884003,-0.00389362848363817,0.0175724159926176,-0.999753594398499,-0.0135580748319626,0.0022565028630197,-0.999990701675415,0.00367420190013945,-0.0367862023413181,-0.996329188346863,-0.0772970244288445,-0.189815700054169,-0.915529787540436,-0.354647874832153,-0.0351175591349602,-0.997202038764954,-0.0659911260008812,0.0148595683276653,-0.999202132225037,0.0370674058794975,-0.189815700054169,-0.915529787540436,-0.354647874832153,-0.0367862023413181,-0.996329188346863,-0.0772970244288445,0.0022565028630197,-0.999990701675415,0.00367420190013945,0.0148595683276653,-0.999202132225037,0.0370674058794975,0.0273404065519571,-0.9994797706604,0.017105370759964,0.0267183389514685,-0.997486650943756,0.0656235888600349, +-0.0351175591349602,-0.997202038764954,-0.0659911260008812,0.0221267528831959,-0.997239708900452,0.0708746090531349,0.020591739565134,-0.999780356884003,-0.00389362848363817,0.0022565028630197,-0.999990701675415,0.00367420190013945,0.0273404065519571,-0.9994797706604,0.017105370759964,0.0267183389514685,-0.997486650943756,0.0656235888600349,-0.0367862023413181,-0.996329188346863,-0.0772970244288445,-0.0351175591349602,-0.997202038764954,-0.0659911260008812,0.0148595683276653,-0.999202132225037,0.0370674058794975,-0.0367862023413181,-0.996329188346863,-0.0772970244288445,0.0273404065519571,-0.9994797706604,0.017105370759964,0.0267183389514685,-0.997486650943756,0.0656235888600349,0.0221267528831959,-0.997239708900452,0.0708746090531349,0.023672342300415,-0.996148228645325,0.0844284668564796,0.0267183389514685,-0.997486650943756,0.0656235888600349,0.0302372761070728,-0.997070491313934,0.0702572539448738,-0.0367862023413181,-0.996329188346863,-0.0772970244288445,-0.0367862023413181,-0.996329188346863,-0.0772970244288445,0.0327508039772511,-0.998833775520325,0.0354705192148685,0.0273404065519571,-0.9994797706604,0.017105370759964,0.0267183389514685,-0.997486650943756,0.0656235888600349,0.023672342300415,-0.996148228645325,0.0844284668564796,0.0314269438385963,-0.996424853801727,0.0784209743142128,0.0267183389514685,-0.997486650943756,0.0656235888600349,0.0314269438385963,-0.996424853801727,0.0784209743142128,0.0302372761070728,-0.997070491313934,0.0702572539448738,0.0298520438373089,-0.99825644493103,0.0509202815592289,-0.0367862023413181,-0.996329188346863,-0.0772970244288445,0.0302372761070728,-0.997070491313934,0.0702572539448738,0.0327508039772511,-0.998833775520325,0.0354705192148685,-0.0367862023413181,-0.996329188346863,-0.0772970244288445,0.0298520438373089,-0.99825644493103,0.0509202815592289,0.0595862492918968,-0.998094737529755,0.0160093419253826,0.0302372761070728,-0.997070491313934,0.0702572539448738,0.0314269438385963,-0.996424853801727,0.0784209743142128,0.0298520438373089,-0.99825644493103,0.0509202815592289, +0.0302372761070728,-0.997070491313934,0.0702572539448738,0.0194252226501703,-0.997405171394348,0.0693217441439629,0.0327508039772511,-0.998833775520325,0.0354705192148685,0.0298520438373089,-0.99825644493103,0.0509202815592289,0.0310562159866095,-0.998759090900421,0.0389319695532322,0.066605918109417,-0.967423141002655,-0.2442457228899,0.0302372761070728,-0.997070491313934,0.0702572539448738,0.0595862492918968,-0.998094737529755,0.0160093419253826,0.066605918109417,-0.967423141002655,-0.2442457228899,0.0194252226501703,-0.997405171394348,0.0693217441439629,0.0302372761070728,-0.997070491313934,0.0702572539448738,0.0194252226501703,-0.997405171394348,0.0693217441439629,0.0356742329895496,-0.99774581193924,0.0568378455936909,0.0298520438373089,-0.99825644493103,0.0509202815592289,0.0298520438373089,-0.99825644493103,0.0509202815592289,0.0356742329895496,-0.99774581193924,0.0568378455936909,0.0310562159866095,-0.998759090900421,0.0389319695532322,0.0574446208775043,-0.985036313533783,-0.162491455674171,0.0194252226501703,-0.997405171394348,0.0693217441439629,0.066605918109417,-0.967423141002655,-0.2442457228899,0.0194252226501703,-0.997405171394348,0.0693217441439629,0.0305140893906355,-0.996012806892395,0.0838289558887482,0.0356742329895496,-0.99774581193924,0.0568378455936909,0.0356742329895496,-0.99774581193924,0.0568378455936909,0.0501299612224102,-0.996169030666351,0.0716536045074463,0.0310562159866095,-0.998759090900421,0.0389319695532322,0.0574446208775043,-0.985036313533783,-0.162491455674171,0.0305140893906355,-0.996012806892395,0.0838289558887482,0.0194252226501703,-0.997405171394348,0.0693217441439629,0.0356742329895496,-0.99774581193924,0.0568378455936909,0.0305140893906355,-0.996012806892395,0.0838289558887482,0.0501299612224102,-0.996169030666351,0.0716536045074463,0.0574446208775043,-0.985036313533783,-0.162491455674171,0.064088948071003,-0.99651575088501,0.0533746331930161,0.0305140893906355,-0.996012806892395,0.0838289558887482,0.0533914379775524,-0.995332658290863,0.0803878307342529,0.0501299612224102,-0.996169030666351,0.0716536045074463, +0.0305140893906355,-0.996012806892395,0.0838289558887482,0.0574446208775043,-0.985036313533783,-0.162491455674171,0.0440606623888016,-0.997998416423798,0.0453625917434692,0.064088948071003,-0.99651575088501,0.0533746331930161,0.0305140893906355,-0.996012806892395,0.0838289558887482,0.064088948071003,-0.99651575088501,0.0533746331930161,0.0533914379775524,-0.995332658290863,0.0803878307342529,0.0533914379775524,-0.995332658290863,0.0803878307342529,0.0840557664632797,-0.995025217533112,0.0534728616476059,0.0501299612224102,-0.996169030666351,0.0716536045074463,0.0723632052540779,-0.99705970287323,0.0252072159200907,0.064088948071003,-0.99651575088501,0.0533746331930161,0.0440606623888016,-0.997998416423798,0.0453625917434692,0.064088948071003,-0.99651575088501,0.0533746331930161,0.0956646651029587,-0.994484722614288,0.0429914966225624,0.0533914379775524,-0.995332658290863,0.0803878307342529,0.0533914379775524,-0.995332658290863,0.0803878307342529,0.0956646651029587,-0.994484722614288,0.0429914966225624,0.0840557664632797,-0.995025217533112,0.0534728616476059,0.0840557664632797,-0.995025217533112,0.0534728616476059,0.167423233389854,-0.981696128845215,0.0907855480909348,0.0501299612224102,-0.996169030666351,0.0716536045074463,0.0723632052540779,-0.99705970287323,0.0252072159200907,0.0831022784113884,-0.996255040168762,0.0238727536052465,0.064088948071003,-0.99651575088501,0.0533746331930161,0.0956646651029587,-0.994484722614288,0.0429914966225624,0.064088948071003,-0.99651575088501,0.0533746331930161,0.0881812870502472,-0.995777130126953,0.025531305000186,0.118079654872417,-0.992939054965973,0.0113668031990528,0.0840557664632797,-0.995025217533112,0.0534728616476059,0.0956646651029587,-0.994484722614288,0.0429914966225624,0.101415507495403,-0.994107246398926,0.0382824912667274,0.167423233389854,-0.981696128845215,0.0907855480909348,0.0840557664632797,-0.995025217533112,0.0534728616476059,0.0881812870502472,-0.995777130126953,0.025531305000186,0.064088948071003,-0.99651575088501,0.0533746331930161,0.0831022784113884,-0.996255040168762,0.0238727536052465, +0.101415507495403,-0.994107246398926,0.0382824912667274,0.0840557664632797,-0.995025217533112,0.0534728616476059,0.118079654872417,-0.992939054965973,0.0113668031990528,0.101415507495403,-0.994107246398926,0.0382824912667274,0.233916282653809,-0.962341964244843,0.138495489954948,0.167423233389854,-0.981696128845215,0.0907855480909348,0.414391607046127,-0.899359583854675,0.139397814869881,0.167423233389854,-0.981696128845215,0.0907855480909348,0.233916282653809,-0.962341964244843,0.138495489954948,0.0574446208775043,-0.985036313533783,-0.162491455674171,0.066605918109417,-0.967423141002655,-0.2442457228899,0.144480377435684,0.420691251754761,-0.895625054836273,-0.550221264362335,0.726444661617279,0.411745697259903,-0.330566346645355,0.827818274497986,0.453257769346237,-0.390920788049698,0.817485928535461,0.422962993383408,-0.330566346645355,0.827818274497986,0.453257769346237,-0.550221264362335,0.726444661617279,0.411745697259903,-0.477980643510818,0.758467376232147,0.443014323711395,-0.330566346645355,0.827818274497986,0.453257769346237,-0.477980643510818,0.758467376232147,0.443014323711395,-0.271856188774109,0.839541018009186,0.47038808465004,-0.271856188774109,0.839541018009186,0.47038808465004,-0.477980643510818,0.758467376232147,0.443014323711395,-0.456937879323959,0.77647340297699,0.433931648731232,-0.271856188774109,0.839541018009186,0.47038808465004,-0.456937879323959,0.77647340297699,0.433931648731232,-0.192159965634346,0.87401294708252,0.44629117846489,-0.389376103878021,0.837724328041077,0.382889032363892,-0.192159965634346,0.87401294708252,0.44629117846489,-0.456937879323959,0.77647340297699,0.433931648731232,-0.192159965634346,0.87401294708252,0.44629117846489,-0.389376103878021,0.837724328041077,0.382889032363892,-0.272386968135834,0.88256049156189,0.383265137672424,-0.486638784408569,0.819304049015045,0.30318883061409,-0.272386968135834,0.88256049156189,0.383265137672424,-0.389376103878021,0.837724328041077,0.382889032363892,-0.272386968135834,0.88256049156189,0.383265137672424,-0.486638784408569,0.819304049015045,0.30318883061409, +-0.390067994594574,0.867132723331451,0.309721827507019,-0.272386968135834,0.88256049156189,0.383265137672424,-0.390067994594574,0.867132723331451,0.309721827507019,-0.164000809192657,0.925649583339691,0.340993046760559,-0.390067994594574,0.867132723331451,0.309721827507019,-0.287136614322662,0.923939347267151,0.252761691808701,-0.164000809192657,0.925649583339691,0.340993046760559,-0.390067994594574,0.867132723331451,0.309721827507019,-0.482303589582443,0.840980708599091,0.245223551988602,-0.287136614322662,0.923939347267151,0.252761691808701,-0.368671715259552,0.905612289905548,0.209636375308037,-0.287136614322662,0.923939347267151,0.252761691808701,-0.482303589582443,0.840980708599091,0.245223551988602,-0.287136614322662,0.923939347267151,0.252761691808701,-0.368671715259552,0.905612289905548,0.209636375308037,-0.321613937616348,0.923950612545013,0.207073420286179,-0.321613937616348,0.923950612545013,0.207073420286179,-0.368671715259552,0.905612289905548,0.209636375308037,-0.326176375150681,0.94166088104248,0.08296749740839,-0.51827347278595,0.76224821805954,0.387775808572769,-0.348508179187775,0.848460733890533,0.398316979408264,-0.500876843929291,0.782990455627441,0.368847042322159,-0.348508179187775,0.848460733890533,0.398316979408264,-0.51827347278595,0.76224821805954,0.387775808572769,-0.34477636218071,0.844029068946838,0.410784691572189,-0.410857200622559,0.837581336498261,0.360074609518051,-0.500876843929291,0.782990455627441,0.368847042322159,-0.348508179187775,0.848460733890533,0.398316979408264,-0.51827347278595,0.76224821805954,0.387775808572769,-0.500876843929291,0.782990455627441,0.368847042322159,-0.652521312236786,0.674881815910339,0.344601631164551,-0.473663955926895,0.788324475288391,0.392666429281235,-0.34477636218071,0.844029068946838,0.410784691572189,-0.51827347278595,0.76224821805954,0.387775808572769,-0.585975408554077,0.729827165603638,0.35211518406868,-0.500876843929291,0.782990455627441,0.368847042322159,-0.410857200622559,0.837581336498261,0.360074609518051,-0.585975408554077,0.729827165603638,0.35211518406868, +-0.652521312236786,0.674881815910339,0.344601631164551,-0.500876843929291,0.782990455627441,0.368847042322159,-0.71041601896286,0.627984404563904,0.317717641592026,-0.51827347278595,0.76224821805954,0.387775808572769,-0.652521312236786,0.674881815910339,0.344601631164551,-0.390920788049698,0.817485928535461,0.422962993383408,-0.34477636218071,0.844029068946838,0.410784691572189,-0.473663955926895,0.788324475288391,0.392666429281235,-0.651818513870239,0.670251548290253,0.354817271232605,-0.473663955926895,0.788324475288391,0.392666429281235,-0.51827347278595,0.76224821805954,0.387775808572769,-0.456542074680328,0.822449326515198,0.339332163333893,-0.585975408554077,0.729827165603638,0.35211518406868,-0.410857200622559,0.837581336498261,0.360074609518051,-0.585975408554077,0.729827165603638,0.35211518406868,-0.751123011112213,0.577505350112915,0.319846242666245,-0.652521312236786,0.674881815910339,0.344601631164551,-0.651818513870239,0.670251548290253,0.354817271232605,-0.51827347278595,0.76224821805954,0.387775808572769,-0.71041601896286,0.627984404563904,0.317717641592026,-0.71041601896286,0.627984404563904,0.317717641592026,-0.652521312236786,0.674881815910339,0.344601631164551,-0.785034418106079,0.545716524124146,0.293111324310303,-0.390920788049698,0.817485928535461,0.422962993383408,-0.473663955926895,0.788324475288391,0.392666429281235,-0.574745953083038,0.725480258464813,0.378609746694565,-0.651818513870239,0.670251548290253,0.354817271232605,-0.574745953083038,0.725480258464813,0.378609746694565,-0.473663955926895,0.788324475288391,0.392666429281235,-0.564100444316864,0.752527713775635,0.339841991662979,-0.585975408554077,0.729827165603638,0.35211518406868,-0.456542074680328,0.822449326515198,0.339332163333893,-0.585975408554077,0.729827165603638,0.35211518406868,-0.72846394777298,0.604507386684418,0.322352170944214,-0.751123011112213,0.577505350112915,0.319846242666245,-0.652521312236786,0.674881815910339,0.344601631164551,-0.751123011112213,0.577505350112915,0.319846242666245,-0.785034418106079,0.545716524124146,0.293111324310303, +-0.581633627414703,0.718528926372528,0.381337732076645,-0.390920788049698,0.817485928535461,0.422962993383408,-0.574745953083038,0.725480258464813,0.378609746694565,-0.564100444316864,0.752527713775635,0.339841991662979,-0.72846394777298,0.604507386684418,0.322352170944214,-0.585975408554077,0.729827165603638,0.35211518406868,-0.564100444316864,0.752527713775635,0.339841991662979,-0.456542074680328,0.822449326515198,0.339332163333893,-0.612618863582611,0.730165004730225,0.302583873271942,-0.390920788049698,0.817485928535461,0.422962993383408,-0.581633627414703,0.718528926372528,0.381337732076645,-0.550221264362335,0.726444661617279,0.411745697259903,-0.564100444316864,0.752527713775635,0.339841991662979,-0.612618863582611,0.730165004730225,0.302583873271942,-0.72846394777298,0.604507386684418,0.322352170944214,0.229289188981056,-0.918832540512085,-0.321205824613571,0.183840230107307,-0.879487276077271,-0.438981503248215,0.0995777770876884,-0.851943671703339,-0.5140780210495,0.183840230107307,-0.879487276077271,-0.438981503248215,0.229289188981056,-0.918832540512085,-0.321205824613571,0.254871159791946,-0.908683836460114,-0.330657422542572,0.183840230107307,-0.879487276077271,-0.438981503248215,0.254871159791946,-0.908683836460114,-0.330657422542572,0.247956663370132,-0.881808757781982,-0.401161700487137,0.30532369017601,-0.914015889167786,-0.267118036746979,0.247956663370132,-0.881808757781982,-0.401161700487137,0.254871159791946,-0.908683836460114,-0.330657422542572,0.247956663370132,-0.881808757781982,-0.401161700487137,0.30532369017601,-0.914015889167786,-0.267118036746979,0.262456446886063,-0.879748046398163,-0.396434098482132,0.262456446886063,-0.879748046398163,-0.396434098482132,0.30532369017601,-0.914015889167786,-0.267118036746979,0.264668256044388,-0.877374768257141,-0.400205194950104,0.358274102210999,-0.902628362178802,-0.238540574908257,0.264668256044388,-0.877374768257141,-0.400205194950104,0.30532369017601,-0.914015889167786,-0.267118036746979,0.366902440786362,-0.92475152015686,-0.101079717278481,0.358274102210999,-0.902628362178802,-0.238540574908257, +0.30532369017601,-0.914015889167786,-0.267118036746979,0.358274102210999,-0.902628362178802,-0.238540574908257,0.366902440786362,-0.92475152015686,-0.101079717278481,0.404880940914154,-0.909532368183136,-0.0939269810914993,0.366902440786362,-0.92475152015686,-0.101079717278481,0.411533683538437,-0.911254465579987,0.0159684009850025,0.404880940914154,-0.909532368183136,-0.0939269810914993,0.404880940914154,-0.909532368183136,-0.0939269810914993,0.430734753608704,-0.890502274036407,-0.146537154912949,0.358274102210999,-0.902628362178802,-0.238540574908257,0.465915828943253,-0.87953394651413,0.0966556146740913,0.404880940914154,-0.909532368183136,-0.0939269810914993,0.411533683538437,-0.911254465579987,0.0159684009850025,0.404880940914154,-0.909532368183136,-0.0939269810914993,0.478790014982224,-0.876599490642548,0.0483041889965534,0.430734753608704,-0.890502274036407,-0.146537154912949,0.478790014982224,-0.876599490642548,0.0483041889965534,0.404880940914154,-0.909532368183136,-0.0939269810914993,0.465915828943253,-0.87953394651413,0.0966556146740913,0.478790014982224,-0.876599490642548,0.0483041889965534,0.467843472957611,-0.882986307144165,-0.0381787270307541,0.430734753608704,-0.890502274036407,-0.146537154912949,0.478790014982224,-0.876599490642548,0.0483041889965534,0.465915828943253,-0.87953394651413,0.0966556146740913,0.505502700805664,-0.820004880428314,0.268437892198563,0.478790014982224,-0.876599490642548,0.0483041889965534,0.532694041728973,-0.820528328418732,0.207292079925537,0.467843472957611,-0.882986307144165,-0.0381787270307541,0.548273265361786,-0.763115763664246,0.342126548290253,0.478790014982224,-0.876599490642548,0.0483041889965534,0.505502700805664,-0.820004880428314,0.268437892198563,0.478790014982224,-0.876599490642548,0.0483041889965534,0.548273265361786,-0.763115763664246,0.342126548290253,0.532694041728973,-0.820528328418732,0.207292079925537,0.467843472957611,-0.882986307144165,-0.0381787270307541,0.532694041728973,-0.820528328418732,0.207292079925537,0.504408538341522,-0.851483464241028,0.143344968557358, +0.548273265361786,-0.763115763664246,0.342126548290253,0.562350928783417,-0.698562324047089,0.442461401224136,0.532694041728973,-0.820528328418732,0.207292079925537,0.563308238983154,-0.73742550611496,0.372676014900208,0.504408538341522,-0.851483464241028,0.143344968557358,0.532694041728973,-0.820528328418732,0.207292079925537,0.55955559015274,-0.632047951221466,0.5361088514328,0.532694041728973,-0.820528328418732,0.207292079925537,0.562350928783417,-0.698562324047089,0.442461401224136,0.5616375207901,-0.696945548057556,0.445903718471527,0.504408538341522,-0.851483464241028,0.143344968557358,0.563308238983154,-0.73742550611496,0.372676014900208,0.563308238983154,-0.73742550611496,0.372676014900208,0.532694041728973,-0.820528328418732,0.207292079925537,0.55955559015274,-0.632047951221466,0.5361088514328,0.541086792945862,-0.784997701644897,0.3016676902771,0.504408538341522,-0.851483464241028,0.143344968557358,0.5616375207901,-0.696945548057556,0.445903718471527,0.5616375207901,-0.696945548057556,0.445903718471527,0.563308238983154,-0.73742550611496,0.372676014900208,0.561288416385651,-0.528102040290833,0.637231111526489,0.55955559015274,-0.632047951221466,0.5361088514328,0.561288416385651,-0.528102040290833,0.637231111526489,0.563308238983154,-0.73742550611496,0.372676014900208,0.541086792945862,-0.784997701644897,0.3016676902771,0.5616375207901,-0.696945548057556,0.445903718471527,0.584952354431152,-0.592991650104523,0.553345680236816,0.581063508987427,-0.490697354078293,0.649292767047882,0.5616375207901,-0.696945548057556,0.445903718471527,0.561288416385651,-0.528102040290833,0.637231111526489,0.584952354431152,-0.592991650104523,0.553345680236816,0.5616375207901,-0.696945548057556,0.445903718471527,0.581063508987427,-0.490697354078293,0.649292767047882,0.541086792945862,-0.784997701644897,0.3016676902771,0.584952354431152,-0.592991650104523,0.553345680236816,0.580039620399475,-0.726921319961548,0.367613077163696,0.583273649215698,-0.399355500936508,0.707323729991913,0.584952354431152,-0.592991650104523,0.553345680236816, +0.581063508987427,-0.490697354078293,0.649292767047882,0.584952354431152,-0.592991650104523,0.553345680236816,0.611241161823273,-0.520661771297455,0.59606659412384,0.580039620399475,-0.726921319961548,0.367613077163696,0.584952354431152,-0.592991650104523,0.553345680236816,0.583273649215698,-0.399355500936508,0.707323729991913,0.611241161823273,-0.520661771297455,0.59606659412384,0.580039620399475,-0.726921319961548,0.367613077163696,0.611241161823273,-0.520661771297455,0.59606659412384,0.613923132419586,-0.668326079845428,0.420045733451843,0.583273649215698,-0.399355500936508,0.707323729991913,0.611037969589233,-0.383561313152313,0.692468881607056,0.611241161823273,-0.520661771297455,0.59606659412384,0.628624081611633,-0.575476765632629,0.523123204708099,0.613923132419586,-0.668326079845428,0.420045733451843,0.611241161823273,-0.520661771297455,0.59606659412384,0.611037969589233,-0.383561313152313,0.692468881607056,0.628624081611633,-0.575476765632629,0.523123204708099,0.611241161823273,-0.520661771297455,0.59606659412384,0.628624081611633,-0.575476765632629,0.523123204708099,0.611037969589233,-0.383561313152313,0.692468881607056,0.635076105594635,-0.476834207773209,0.607706725597382,0.607045531272888,-0.310428470373154,0.731525599956512,0.635076105594635,-0.476834207773209,0.607706725597382,0.611037969589233,-0.383561313152313,0.692468881607056,0.628624081611633,-0.575476765632629,0.523123204708099,0.635076105594635,-0.476834207773209,0.607706725597382,0.622661352157593,-0.669879138469696,0.404418975114822,0.631619811058044,-0.40450394153595,0.661387026309967,0.635076105594635,-0.476834207773209,0.607706725597382,0.607045531272888,-0.310428470373154,0.731525599956512,0.622661352157593,-0.669879138469696,0.404418975114822,0.635076105594635,-0.476834207773209,0.607706725597382,0.599846720695496,-0.609075307846069,0.518855452537537,0.631619811058044,-0.40450394153595,0.661387026309967,0.599846720695496,-0.609075307846069,0.518855452537537,0.635076105594635,-0.476834207773209,0.607706725597382,0.631619811058044,-0.40450394153595,0.661387026309967, +0.644152045249939,-0.60375052690506,0.46963095664978,0.599846720695496,-0.609075307846069,0.518855452537537,0.631619811058044,-0.40450394153595,0.661387026309967,0.650096714496613,-0.504508197307587,0.568194985389709,0.644152045249939,-0.60375052690506,0.46963095664978,0.650096714496613,-0.504508197307587,0.568194985389709,0.631619811058044,-0.40450394153595,0.661387026309967,0.652007281780243,-0.42521658539772,0.627755701541901,0.652007281780243,-0.42521658539772,0.627755701541901,0.66311103105545,-0.504856824874878,0.552632927894592,0.650096714496613,-0.504508197307587,0.568194985389709,0.66311103105545,-0.504856824874878,0.552632927894592,0.652007281780243,-0.42521658539772,0.627755701541901,0.708737969398499,-0.482795566320419,0.514391601085663,0.880651831626892,0.384313523769379,0.277047604322433,0.816699147224426,0.478557586669922,0.322467058897018,0.900442898273468,0.34461435675621,0.265411972999573,0.816699147224426,0.478557586669922,0.322467058897018,0.880651831626892,0.384313523769379,0.277047604322433,0.813469469547272,0.492053896188736,0.310081034898758,0.816699147224426,0.478557586669922,0.322467058897018,0.8530433177948,0.423667848110199,0.304668068885803,0.900442898273468,0.34461435675621,0.265411972999573,0.958675682544708,0.204954907298088,0.19731804728508,0.880651831626892,0.384313523769379,0.277047604322433,0.900442898273468,0.34461435675621,0.265411972999573,0.813469469547272,0.492053896188736,0.310081034898758,0.880651831626892,0.384313523769379,0.277047604322433,0.905061900615692,0.337886691093445,0.258254736661911,0.900442898273468,0.34461435675621,0.265411972999573,0.8530433177948,0.423667848110199,0.304668068885803,0.919226944446564,0.319386869668961,0.230247303843498,0.880651831626892,0.384313523769379,0.277047604322433,0.958675682544708,0.204954907298088,0.19731804728508,0.905061900615692,0.337886691093445,0.258254736661911,0.958241164684296,0.211286246776581,0.192696183919907,0.958675682544708,0.204954907298088,0.19731804728508,0.900442898273468,0.34461435675621,0.265411972999573,0.813469469547272,0.492053896188736,0.310081034898758, +0.905061900615692,0.337886691093445,0.258254736661911,0.880761742591858,0.392427444458008,0.265064746141434,0.872471988201141,0.428458124399185,0.234981194138527,0.919226944446564,0.319386869668961,0.230247303843498,0.8530433177948,0.423667848110199,0.304668068885803,0.900442898273468,0.34461435675621,0.265411972999573,0.919226944446564,0.319386869668961,0.230247303843498,0.958241164684296,0.211286246776581,0.192696183919907,0.958675682544708,0.204954907298088,0.19731804728508,0.972865104675293,0.14968167245388,0.176433697342873,0.905061900615692,0.337886691093445,0.258254736661911,0.946926414966583,0.249101415276527,0.20317168533802,0.880761742591858,0.392427444458008,0.265064746141434,0.905061900615692,0.337886691093445,0.258254736661911,0.880761742591858,0.392427444458008,0.265064746141434,0.834587514400482,0.479792833328247,0.270670175552368,0.813469469547272,0.492053896188736,0.310081034898758,0.872471988201141,0.428458124399185,0.234981194138527,0.947462558746338,0.292947590351105,0.128438159823418,0.919226944446564,0.319386869668961,0.230247303843498,0.96403306722641,0.211662113666534,0.160746052861214,0.958241164684296,0.211286246776581,0.192696183919907,0.919226944446564,0.319386869668961,0.230247303843498,0.946926414966583,0.249101415276527,0.20317168533802,0.905061900615692,0.337886691093445,0.258254736661911,0.972865104675293,0.14968167245388,0.176433697342873,0.880761742591858,0.392427444458008,0.265064746141434,0.946926414966583,0.249101415276527,0.20317168533802,0.930768191814423,0.304695338010788,0.20206680893898,0.930768191814423,0.304695338010788,0.20206680893898,0.834587514400482,0.479792833328247,0.270670175552368,0.880761742591858,0.392427444458008,0.265064746141434,0.947462558746338,0.292947590351105,0.128438159823418,0.872471988201141,0.428458124399185,0.234981194138527,0.899106860160828,0.421982973814011,0.116349421441555,0.947462558746338,0.292947590351105,0.128438159823418,0.96403306722641,0.211662113666534,0.160746052861214,0.919226944446564,0.319386869668961,0.230247303843498,0.834587514400482,0.479792833328247,0.270670175552368, +0.930768191814423,0.304695338010788,0.20206680893898,0.904863357543945,0.383554458618164,0.184684112668037,0.899106860160828,0.421982973814011,0.116349421441555,0.950920403003693,0.3094103038311,-0.00393973523750901,0.947462558746338,0.292947590351105,0.128438159823418,0.947462558746338,0.292947590351105,0.128438159823418,0.977065443992615,0.184287577867508,0.106682054698467,0.96403306722641,0.211662113666534,0.160746052861214,0.930768191814423,0.304695338010788,0.20206680893898,0.968853890895844,0.218520760536194,0.11649376899004,0.904863357543945,0.383554458618164,0.184684112668037,0.856891870498657,0.481830984354019,0.18323515355587,0.834587514400482,0.479792833328247,0.270670175552368,0.904863357543945,0.383554458618164,0.184684112668037,0.950920403003693,0.3094103038311,-0.00393973523750901,0.899106860160828,0.421982973814011,0.116349421441555,0.908672213554382,0.414259791374207,-0.0519951730966568,0.947462558746338,0.292947590351105,0.128438159823418,0.950920403003693,0.3094103038311,-0.00393973523750901,0.981603682041168,0.190920308232307,-0.00187494850251824,0.981603682041168,0.190920308232307,-0.00187494850251824,0.977065443992615,0.184287577867508,0.106682054698467,0.947462558746338,0.292947590351105,0.128438159823418,0.968853890895844,0.218520760536194,0.11649376899004,0.946040451526642,0.306677788496017,0.104671321809292,0.904863357543945,0.383554458618164,0.184684112668037,0.946040451526642,0.306677788496017,0.104671321809292,0.856891870498657,0.481830984354019,0.18323515355587,0.904863357543945,0.383554458618164,0.184684112668037,0.831233382225037,0.554014801979065,0.0460272952914238,0.908672213554382,0.414259791374207,-0.0519951730966568,0.899106860160828,0.421982973814011,0.116349421441555,0.950920403003693,0.3094103038311,-0.00393973523750901,0.908672213554382,0.414259791374207,-0.0519951730966568,0.898094594478607,0.396439015865326,-0.190425992012024,0.950920403003693,0.3094103038311,-0.00393973523750901,0.946444749832153,0.287937253713608,-0.146063104271889,0.981603682041168,0.190920308232307,-0.00187494850251824, +0.856891870498657,0.481830984354019,0.18323515355587,0.946040451526642,0.306677788496017,0.104671321809292,0.882639110088348,0.444853037595749,0.151835307478905,0.831233382225037,0.554014801979065,0.0460272952914238,0.80204164981842,0.560621559619904,-0.205991521477699,0.908672213554382,0.414259791374207,-0.0519951730966568,0.908672213554382,0.414259791374207,-0.0519951730966568,0.831369340419769,0.474342048168182,-0.289524763822556,0.898094594478607,0.396439015865326,-0.190425992012024,0.950920403003693,0.3094103038311,-0.00393973523750901,0.898094594478607,0.396439015865326,-0.190425992012024,0.946444749832153,0.287937253713608,-0.146063104271889,0.882639110088348,0.444853037595749,0.151835307478905,0.946040451526642,0.306677788496017,0.104671321809292,0.918190479278564,0.376503765583038,0.123170845210552,0.748039484024048,0.637404680252075,-0.184802740812302,0.80204164981842,0.560621559619904,-0.205991521477699,0.831233382225037,0.554014801979065,0.0460272952914238,0.80204164981842,0.560621559619904,-0.205991521477699,0.831369340419769,0.474342048168182,-0.289524763822556,0.908672213554382,0.414259791374207,-0.0519951730966568,0.946040451526642,0.306677788496017,0.104671321809292,0.979186832904816,0.195114895701408,0.0558851025998592,0.918190479278564,0.376503765583038,0.123170845210552,0.918190479278564,0.376503765583038,0.123170845210552,0.875136613845825,0.461039930582047,0.146894499659538,0.882639110088348,0.444853037595749,0.151835307478905,0.748039484024048,0.637404680252075,-0.184802740812302,0.60730654001236,0.694242060184479,-0.386272698640823,0.80204164981842,0.560621559619904,-0.205991521477699,0.918190479278564,0.376503765583038,0.123170845210552,0.979186832904816,0.195114895701408,0.0558851025998592,0.941835999488831,0.325789272785187,0.0824997574090958,0.918190479278564,0.376503765583038,0.123170845210552,0.941835999488831,0.325789272785187,0.0824997574090958,0.875136613845825,0.461039930582047,0.146894499659538,0.6829714179039,0.685764849185944,-0.251548379659653,0.60730654001236,0.694242060184479,-0.386272698640823, +0.748039484024048,0.637404680252075,-0.184802740812302,0.892905056476593,0.43718808889389,0.107643201947212,0.875136613845825,0.461039930582047,0.146894499659538,0.941835999488831,0.325789272785187,0.0824997574090958,0.60730654001236,0.694242060184479,-0.386272698640823,0.6829714179039,0.685764849185944,-0.251548379659653,0.501465618610382,0.800948917865753,-0.327128350734711,0.892905056476593,0.43718808889389,0.107643201947212,0.941835999488831,0.325789272785187,0.0824997574090958,0.932919919490814,0.35454735159874,0.0629004687070847,0.892905056476593,0.43718808889389,0.107643201947212,0.932919919490814,0.35454735159874,0.0629004687070847,0.876342535018921,0.469281286001205,0.108622267842293,0.918614387512207,0.388784795999527,0.0706673413515091,0.876342535018921,0.469281286001205,0.108622267842293,0.932919919490814,0.35454735159874,0.0629004687070847,0.918614387512207,0.388784795999527,0.0706673413515091,0.860349118709564,0.497326880693436,0.111648008227348,0.876342535018921,0.469281286001205,0.108622267842293,0.89371657371521,0.44050744175911,0.084992378950119,0.860349118709564,0.497326880693436,0.111648008227348,0.918614387512207,0.388784795999527,0.0706673413515091,0.860349118709564,0.497326880693436,0.111648008227348,0.89371657371521,0.44050744175911,0.084992378950119,0.868348121643066,0.487024039030075,0.0936967432498932,0.868348121643066,0.487024039030075,0.0936967432498932,0.89371657371521,0.44050744175911,0.084992378950119,0.901633322238922,0.419955462217331,0.103415042161942,0.12588806450367,-0.92530483007431,-0.357719331979752,0.465740203857422,-0.842628657817841,-0.270301431417465,0.373289316892624,-0.894686043262482,-0.245340317487717,0.465740203857422,-0.842628657817841,-0.270301431417465,0.634761095046997,-0.754182755947113,-0.168186366558075,0.373289316892624,-0.894686043262482,-0.245340317487717,0.12588806450367,-0.92530483007431,-0.357719331979752,0.373289316892624,-0.894686043262482,-0.245340317487717,0.18247227370739,-0.956511259078979,-0.227574348449707,0.373289316892624,-0.894686043262482,-0.245340317487717, +0.634761095046997,-0.754182755947113,-0.168186366558075,0.487823247909546,-0.855550110340118,-0.173385053873062,0.373289316892624,-0.894686043262482,-0.245340317487717,0.487823247909546,-0.855550110340118,-0.173385053873062,0.18247227370739,-0.956511259078979,-0.227574348449707,0.634761095046997,-0.754182755947113,-0.168186366558075,0.704311728477478,-0.683531641960144,-0.191649198532104,0.487823247909546,-0.855550110340118,-0.173385053873062,0.275043308734894,-0.938038349151611,-0.210796281695366,0.18247227370739,-0.956511259078979,-0.227574348449707,0.487823247909546,-0.855550110340118,-0.173385053873062,0.532328963279724,-0.82054603099823,-0.208158284425735,0.487823247909546,-0.855550110340118,-0.173385053873062,0.704311728477478,-0.683531641960144,-0.191649198532104,0.275043308734894,-0.938038349151611,-0.210796281695366,0.487823247909546,-0.855550110340118,-0.173385053873062,0.532328963279724,-0.82054603099823,-0.208158284425735,0.621656656265259,-0.751521408557892,-0.220813125371933,0.532328963279724,-0.82054603099823,-0.208158284425735,0.704311728477478,-0.683531641960144,-0.191649198532104,0.275043308734894,-0.938038349151611,-0.210796281695366,0.532328963279724,-0.82054603099823,-0.208158284425735,0.382209777832031,-0.893611550331116,-0.235316723585129,0.621656656265259,-0.751521408557892,-0.220813125371933,0.382209777832031,-0.893611550331116,-0.235316723585129,0.532328963279724,-0.82054603099823,-0.208158284425735,0.275043308734894,-0.938038349151611,-0.210796281695366,0.382209777832031,-0.893611550331116,-0.235316723585129,0.0648350194096565,-0.969828546047211,-0.23500819504261,0.382209777832031,-0.893611550331116,-0.235316723585129,0.621656656265259,-0.751521408557892,-0.220813125371933,0.452788710594177,-0.862157940864563,-0.227301418781281,0.382209777832031,-0.893611550331116,-0.235316723585129,0.206652730703354,-0.951941549777985,-0.226057082414627,0.0648350194096565,-0.969828546047211,-0.23500819504261,0.621656656265259,-0.751521408557892,-0.220813125371933,0.542383134365082,-0.805463671684265,-0.238848254084587, +0.452788710594177,-0.862157940864563,-0.227301418781281,0.382209777832031,-0.893611550331116,-0.235316723585129,0.452788710594177,-0.862157940864563,-0.227301418781281,0.206652730703354,-0.951941549777985,-0.226057082414627,-0.136709079146385,-0.972881972789764,-0.186577007174492,0.0648350194096565,-0.969828546047211,-0.23500819504261,0.206652730703354,-0.951941549777985,-0.226057082414627,0.311269700527191,-0.927543938159943,-0.206817016005516,0.452788710594177,-0.862157940864563,-0.227301418781281,0.542383134365082,-0.805463671684265,-0.238848254084587,0.452788710594177,-0.862157940864563,-0.227301418781281,0.311269700527191,-0.927543938159943,-0.206817016005516,0.206652730703354,-0.951941549777985,-0.226057082414627,-0.136709079146385,-0.972881972789764,-0.186577007174492,0.206652730703354,-0.951941549777985,-0.226057082414627,0.0818162187933922,-0.98008143901825,-0.18095974624157,0.479677945375443,-0.843657255172729,-0.241146147251129,0.311269700527191,-0.927543938159943,-0.206817016005516,0.542383134365082,-0.805463671684265,-0.238848254084587,0.311269700527191,-0.927543938159943,-0.206817016005516,0.0818162187933922,-0.98008143901825,-0.18095974624157,0.206652730703354,-0.951941549777985,-0.226057082414627,-0.136709079146385,-0.972881972789764,-0.186577007174492,0.0818162187933922,-0.98008143901825,-0.18095974624157,-0.183526530861855,-0.969485282897949,-0.162530571222305,0.311269700527191,-0.927543938159943,-0.206817016005516,0.479677945375443,-0.843657255172729,-0.241146147251129,0.30469936132431,-0.929440379142761,-0.208083510398865,0.0896788239479065,-0.976446270942688,-0.196240231394768,0.0818162187933922,-0.98008143901825,-0.18095974624157,0.311269700527191,-0.927543938159943,-0.206817016005516,0.0896788239479065,-0.976446270942688,-0.196240231394768,-0.183526530861855,-0.969485282897949,-0.162530571222305,0.0818162187933922,-0.98008143901825,-0.18095974624157,0.311269700527191,-0.927543938159943,-0.206817016005516,0.30469936132431,-0.929440379142761,-0.208083510398865,0.0896788239479065,-0.976446270942688,-0.196240231394768, +-0.181701749563217,-0.974516630172729,-0.131535917520523,-0.183526530861855,-0.969485282897949,-0.162530571222305,0.0896788239479065,-0.976446270942688,-0.196240231394768,0.30469936132431,-0.929440379142761,-0.208083510398865,0.326815634965897,-0.910003185272217,-0.255118817090988,0.0896788239479065,-0.976446270942688,-0.196240231394768,0.00188168697059155,-0.984602987766266,-0.174795061349869,-0.181701749563217,-0.974516630172729,-0.131535917520523,0.0896788239479065,-0.976446270942688,-0.196240231394768,0.202687814831734,-0.952937960624695,-0.225447848439217,0.0896788239479065,-0.976446270942688,-0.196240231394768,0.326815634965897,-0.910003185272217,-0.255118817090988,-0.181701749563217,-0.974516630172729,-0.131535917520523,0.00188168697059155,-0.984602987766266,-0.174795061349869,-0.237449541687965,-0.966357946395874,-0.0988430306315422,0.00188168697059155,-0.984602987766266,-0.174795061349869,0.0896788239479065,-0.976446270942688,-0.196240231394768,0.202687814831734,-0.952937960624695,-0.225447848439217,0.00188168697059155,-0.984602987766266,-0.174795061349869,-0.176325634121895,-0.962130725383759,-0.207878828048706,-0.237449541687965,-0.966357946395874,-0.0988430306315422,0.202687814831734,-0.952937960624695,-0.225447848439217,0.274672657251358,-0.936954498291016,-0.21603487432003,0.00188168697059155,-0.984602987766266,-0.174795061349869,0.00188168697059155,-0.984602987766266,-0.174795061349869,0.102743305265903,-0.96482914686203,-0.241968050599098,-0.176325634121895,-0.962130725383759,-0.207878828048706,-0.237449541687965,-0.966357946395874,-0.0988430306315422,-0.176325634121895,-0.962130725383759,-0.207878828048706,-0.394419997930527,-0.905290722846985,-0.157738924026489,0.102743305265903,-0.96482914686203,-0.241968050599098,0.00188168697059155,-0.984602987766266,-0.174795061349869,0.274672657251358,-0.936954498291016,-0.21603487432003,0.102743305265903,-0.96482914686203,-0.241968050599098,-0.0418497920036316,-0.958031594753265,-0.283591091632843,-0.176325634121895,-0.962130725383759,-0.207878828048706,-0.362745553255081,-0.900287389755249,-0.240620389580727, +-0.394419997930527,-0.905290722846985,-0.157738924026489,-0.176325634121895,-0.962130725383759,-0.207878828048706,-0.0418497920036316,-0.958031594753265,-0.283591091632843,-0.362745553255081,-0.900287389755249,-0.240620389580727,-0.176325634121895,-0.962130725383759,-0.207878828048706,-0.0985161513090134,-0.960055351257324,-0.261893570423126,-0.362745553255081,-0.900287389755249,-0.240620389580727,-0.0418497920036316,-0.958031594753265,-0.283591091632843,-0.0985161513090134,-0.960055351257324,-0.261893570423126,-0.441351145505905,-0.861393451690674,-0.251416712999344,-0.362745553255081,-0.900287389755249,-0.240620389580727,-0.134369939565659,-0.957383871078491,-0.255657374858856,-0.441351145505905,-0.861393451690674,-0.251416712999344,-0.0985161513090134,-0.960055351257324,-0.261893570423126,-0.134369939565659,-0.957383871078491,-0.255657374858856,-0.492045879364014,-0.816184163093567,-0.302876591682434,-0.441351145505905,-0.861393451690674,-0.251416712999344,-0.492045879364014,-0.816184163093567,-0.302876591682434,-0.134369939565659,-0.957383871078491,-0.255657374858856,-0.302062928676605,-0.918509066104889,-0.255145013332367,-0.134369939565659,-0.957383871078491,-0.255657374858856,-0.139218792319298,-0.96094274520874,-0.239179998636246,-0.302062928676605,-0.918509066104889,-0.255145013332367,-0.572573721408844,-0.779998600482941,-0.252509832382202,-0.492045879364014,-0.816184163093567,-0.302876591682434,-0.302062928676605,-0.918509066104889,-0.255145013332367,-0.139218792319298,-0.96094274520874,-0.239179998636246,-0.459643959999084,-0.860540568828583,-0.219538941979408,-0.302062928676605,-0.918509066104889,-0.255145013332367,-0.563874542713165,-0.812261521816254,-0.149253830313683,-0.572573721408844,-0.779998600482941,-0.252509832382202,-0.302062928676605,-0.918509066104889,-0.255145013332367,-0.139218792319298,-0.96094274520874,-0.239179998636246,-0.342332065105438,-0.905113399028778,-0.252147674560547,-0.459643959999084,-0.860540568828583,-0.219538941979408,-0.459643959999084,-0.860540568828583,-0.219538941979408, +-0.563874542713165,-0.812261521816254,-0.149253830313683,-0.302062928676605,-0.918509066104889,-0.255145013332367,-0.342332065105438,-0.905113399028778,-0.252147674560547,-0.139218792319298,-0.96094274520874,-0.239179998636246,-0.0156903639435768,-0.968316256999969,-0.249233439564705,-0.342332065105438,-0.905113399028778,-0.252147674560547,-0.0156903639435768,-0.968316256999969,-0.249233439564705,-0.16277414560318,-0.944039642810822,-0.28686860203743,-0.0156903639435768,-0.968316256999969,-0.249233439564705,-0.00276464712806046,-0.95152872800827,-0.307547360658646,-0.16277414560318,-0.944039642810822,-0.28686860203743,-0.342332065105438,-0.905113399028778,-0.252147674560547,-0.16277414560318,-0.944039642810822,-0.28686860203743,-0.325141280889511,-0.890359461307526,-0.318658202886581,-0.157104820013046,-0.914907276630402,-0.371836811304092,-0.16277414560318,-0.944039642810822,-0.28686860203743,-0.00276464712806046,-0.95152872800827,-0.307547360658646,-0.157104820013046,-0.914907276630402,-0.371836811304092,-0.325141280889511,-0.890359461307526,-0.318658202886581,-0.16277414560318,-0.944039642810822,-0.28686860203743,0.0459299869835377,-0.92097407579422,-0.386907011270523,-0.157104820013046,-0.914907276630402,-0.371836811304092,-0.00276464712806046,-0.95152872800827,-0.307547360658646,-0.269685178995132,-0.797865033149719,-0.539148509502411,-0.325141280889511,-0.890359461307526,-0.318658202886581,-0.157104820013046,-0.914907276630402,-0.371836811304092,-0.140051230788231,-0.826616525650024,-0.545060217380524,-0.157104820013046,-0.914907276630402,-0.371836811304092,0.0459299869835377,-0.92097407579422,-0.386907011270523,-0.140051230788231,-0.826616525650024,-0.545060217380524,-0.269685178995132,-0.797865033149719,-0.539148509502411,-0.157104820013046,-0.914907276630402,-0.371836811304092,-0.225220322608948,-0.723771572113037,-0.652250230312347,-0.269685178995132,-0.797865033149719,-0.539148509502411,-0.140051230788231,-0.826616525650024,-0.545060217380524,-0.269685178995132,-0.797865033149719,-0.539148509502411,-0.225220322608948,-0.723771572113037,-0.652250230312347, +-0.229749068617821,-0.540937960147858,-0.809074461460114,-0.481594622135162,0.820498406887054,0.307975560426712,-0.612618863582611,0.730165004730225,0.302583873271942,-0.456542074680328,0.822449326515198,0.339332163333893,-0.612618863582611,0.730165004730225,0.302583873271942,-0.481594622135162,0.820498406887054,0.307975560426712,-0.524287402629852,0.790542244911194,0.316489368677139,-0.481594622135162,0.820498406887054,0.307975560426712,-0.456542074680328,0.822449326515198,0.339332163333893,-0.331681579351425,0.888959407806396,0.31581375002861,-0.331681579351425,0.888959407806396,0.31581375002861,-0.524287402629852,0.790542244911194,0.316489368677139,-0.481594622135162,0.820498406887054,0.307975560426712,-0.612618863582611,0.730165004730225,0.302583873271942,-0.524287402629852,0.790542244911194,0.316489368677139,-0.681716024875641,0.65416294336319,0.327618569135666,-0.400785028934479,0.842192709445953,0.360669791698456,-0.524287402629852,0.790542244911194,0.316489368677139,-0.331681579351425,0.888959407806396,0.31581375002861,-0.593291282653809,0.71287876367569,0.373910814523697,-0.681716024875641,0.65416294336319,0.327618569135666,-0.524287402629852,0.790542244911194,0.316489368677139,-0.400785028934479,0.842192709445953,0.360669791698456,-0.593291282653809,0.71287876367569,0.373910814523697,-0.524287402629852,0.790542244911194,0.316489368677139,-0.403034508228302,0.800877153873444,0.442898362874985,-0.593291282653809,0.71287876367569,0.373910814523697,-0.400785028934479,0.842192709445953,0.360669791698456,-0.403034508228302,0.800877153873444,0.442898362874985,-0.580230176448822,0.705451190471649,0.40702748298645,-0.593291282653809,0.71287876367569,0.373910814523697,-0.580230176448822,0.705451190471649,0.40702748298645,-0.403034508228302,0.800877153873444,0.442898362874985,-0.47083368897438,0.766032695770264,0.437617868185043,-0.47083368897438,0.766032695770264,0.437617868185043,-0.673294723033905,0.636821389198303,0.37567612528801,-0.580230176448822,0.705451190471649,0.40702748298645,-0.673294723033905,0.636821389198303,0.37567612528801, +-0.47083368897438,0.766032695770264,0.437617868185043,-0.693672299385071,0.639470517635345,0.331505715847015,-0.693672299385071,0.639470517635345,0.331505715847015,-0.47083368897438,0.766032695770264,0.437617868185043,-0.511714220046997,0.761099457740784,0.398592561483383,-0.673294723033905,0.636821389198303,0.37567612528801,-0.693672299385071,0.639470517635345,0.331505715847015,-0.900354981422424,0.397759199142456,0.176488935947418,-0.511714220046997,0.761099457740784,0.398592561483383,-0.805204570293427,0.546985566616058,0.229024559259415,-0.693672299385071,0.639470517635345,0.331505715847015,-0.900354981422424,0.397759199142456,0.176488935947418,-0.693672299385071,0.639470517635345,0.331505715847015,-0.943374633789063,0.302140653133392,0.136949732899666,-0.652809798717499,0.677241683006287,0.339385986328125,-0.805204570293427,0.546985566616058,0.229024559259415,-0.511714220046997,0.761099457740784,0.398592561483383,-0.805204570293427,0.546985566616058,0.229024559259415,-0.943374633789063,0.302140653133392,0.136949732899666,-0.693672299385071,0.639470517635345,0.331505715847015,-0.652809798717499,0.677241683006287,0.339385986328125,-0.942041397094727,0.333629459142685,0.0353448241949081,-0.805204570293427,0.546985566616058,0.229024559259415,-0.350924611091614,0.828971028327942,0.435498356819153,-0.652809798717499,0.677241683006287,0.339385986328125,-0.511714220046997,0.761099457740784,0.398592561483383,-0.983838260173798,-0.0431407280266285,-0.173784554004669,-0.943374633789063,0.302140653133392,0.136949732899666,-0.805204570293427,0.546985566616058,0.229024559259415,-0.790588080883026,0.591912865638733,0.156874552369118,-0.942041397094727,0.333629459142685,0.0353448241949081,-0.652809798717499,0.677241683006287,0.339385986328125,-0.983838260173798,-0.0431407280266285,-0.173784554004669,-0.805204570293427,0.546985566616058,0.229024559259415,-0.942041397094727,0.333629459142685,0.0353448241949081,-0.652809798717499,0.677241683006287,0.339385986328125,-0.350924611091614,0.828971028327942,0.435498356819153,-0.478296548128128,0.809032618999481,0.341611415147781, +-0.942041397094727,0.333629459142685,0.0353448241949081,-0.790588080883026,0.591912865638733,0.156874552369118,-0.954597473144531,-0.00291809788905084,-0.297884315252304,-0.790588080883026,0.591912865638733,0.156874552369118,-0.652809798717499,0.677241683006287,0.339385986328125,-0.478296548128128,0.809032618999481,0.341611415147781,-0.983838260173798,-0.0431407280266285,-0.173784554004669,-0.942041397094727,0.333629459142685,0.0353448241949081,-0.800574660301209,-0.392559945583344,-0.452743619680405,-0.350924611091614,0.828971028327942,0.435498356819153,-0.210136875510216,0.90447986125946,0.371158480644226,-0.478296548128128,0.809032618999481,0.341611415147781,-0.905507743358612,0.406940698623657,-0.120228409767151,-0.954597473144531,-0.00291809788905084,-0.297884315252304,-0.790588080883026,0.591912865638733,0.156874552369118,-0.942041397094727,0.333629459142685,0.0353448241949081,-0.954597473144531,-0.00291809788905084,-0.297884315252304,-0.800574660301209,-0.392559945583344,-0.452743619680405,-0.629594683647156,0.764622628688812,0.137704744935036,-0.790588080883026,0.591912865638733,0.156874552369118,-0.478296548128128,0.809032618999481,0.341611415147781,-0.399235755205154,0.892464280128479,0.210042789578438,-0.478296548128128,0.809032618999481,0.341611415147781,-0.210136875510216,0.90447986125946,0.371158480644226,-0.790588080883026,0.591912865638733,0.156874552369118,-0.629594683647156,0.764622628688812,0.137704744935036,-0.905507743358612,0.406940698623657,-0.120228409767151,-0.399235755205154,0.892464280128479,0.210042789578438,-0.629594683647156,0.764622628688812,0.137704744935036,-0.478296548128128,0.809032618999481,0.341611415147781,-0.438989728689194,0.896220862865448,0.0638439953327179,-0.399235755205154,0.892464280128479,0.210042789578438,-0.210136875510216,0.90447986125946,0.371158480644226,-0.905507743358612,0.406940698623657,-0.120228409767151,-0.629594683647156,0.764622628688812,0.137704744935036,-0.865359544754028,0.460894554853439,-0.196796774864197,-0.629594683647156,0.764622628688812,0.137704744935036, +-0.399235755205154,0.892464280128479,0.210042789578438,-0.667168855667114,0.719561874866486,-0.192655846476555,-0.399235755205154,0.892464280128479,0.210042789578438,-0.438989728689194,0.896220862865448,0.0638439953327179,-0.667168855667114,0.719561874866486,-0.192655846476555,-0.134650439023972,0.94197142124176,0.307504057884216,-0.438989728689194,0.896220862865448,0.0638439953327179,-0.210136875510216,0.90447986125946,0.371158480644226,-0.629594683647156,0.764622628688812,0.137704744935036,-0.667168855667114,0.719561874866486,-0.192655846476555,-0.865359544754028,0.460894554853439,-0.196796774864197,-0.728738129138947,0.511489570140839,-0.455322921276093,-0.667168855667114,0.719561874866486,-0.192655846476555,-0.438989728689194,0.896220862865448,0.0638439953327179,-0.399762332439423,0.916303753852844,-0.0240312572568655,-0.438989728689194,0.896220862865448,0.0638439953327179,-0.134650439023972,0.94197142124176,0.307504057884216,-0.134650439023972,0.94197142124176,0.307504057884216,-0.210136875510216,0.90447986125946,0.371158480644226,0.0905180051922798,0.866768658161163,0.49042683839798,-0.757534384727478,0.546052157878876,-0.357727080583572,-0.728738129138947,0.511489570140839,-0.455322921276093,-0.438989728689194,0.896220862865448,0.0638439953327179,-0.399762332439423,0.916303753852844,-0.0240312572568655,-0.757534384727478,0.546052157878876,-0.357727080583572,-0.438989728689194,0.896220862865448,0.0638439953327179,-0.0992717891931534,0.983115017414093,0.153720155358315,-0.399762332439423,0.916303753852844,-0.0240312572568655,-0.134650439023972,0.94197142124176,0.307504057884216,0.0905180051922798,0.866768658161163,0.49042683839798,0.142591893672943,0.888154745101929,0.436862170696259,-0.134650439023972,0.94197142124176,0.307504057884216,-0.757534384727478,0.546052157878876,-0.357727080583572,-0.399762332439423,0.916303753852844,-0.0240312572568655,-0.655299663543701,0.57027280330658,-0.495349436998367,-0.399762332439423,0.916303753852844,-0.0240312572568655,-0.0992717891931534,0.983115017414093,0.153720155358315, +-0.481663167476654,0.78721672296524,-0.385084807872772,-0.0992717891931534,0.983115017414093,0.153720155358315,-0.134650439023972,0.94197142124176,0.307504057884216,0.142591893672943,0.888154745101929,0.436862170696259,-0.481663167476654,0.78721672296524,-0.385084807872772,-0.655299663543701,0.57027280330658,-0.495349436998367,-0.399762332439423,0.916303753852844,-0.0240312572568655,-0.0992717891931534,0.983115017414093,0.153720155358315,-0.227027699351311,0.973782002925873,-0.0143857775256038,-0.481663167476654,0.78721672296524,-0.385084807872772,0.142591893672943,0.888154745101929,0.436862170696259,0.101576685905457,0.940180599689484,0.325180739164352,-0.0992717891931534,0.983115017414093,0.153720155358315,-0.0992717891931534,0.983115017414093,0.153720155358315,0.101576685905457,0.940180599689484,0.325180739164352,-0.227027699351311,0.973782002925873,-0.0143857775256038,-0.481663167476654,0.78721672296524,-0.385084807872772,-0.227027699351311,0.973782002925873,-0.0143857775256038,-0.627161502838135,0.555069386959076,-0.546411991119385,0.142591893672943,0.888154745101929,0.436862170696259,0.316875010728836,0.818814098834991,0.478678941726685,0.101576685905457,0.940180599689484,0.325180739164352,0.0742268934845924,0.965558469295502,0.249373450875282,-0.227027699351311,0.973782002925873,-0.0143857775256038,0.101576685905457,0.940180599689484,0.325180739164352,-0.627161502838135,0.555069386959076,-0.546411991119385,-0.227027699351311,0.973782002925873,-0.0143857775256038,-0.330974608659744,0.929172575473785,-0.164602696895599,0.316875010728836,0.818814098834991,0.478678941726685,0.0742268934845924,0.965558469295502,0.249373450875282,0.101576685905457,0.940180599689484,0.325180739164352,-0.330974608659744,0.929172575473785,-0.164602696895599,-0.227027699351311,0.973782002925873,-0.0143857775256038,0.0742268934845924,0.965558469295502,0.249373450875282,-0.627161502838135,0.555069386959076,-0.546411991119385,-0.330974608659744,0.929172575473785,-0.164602696895599,-0.620979905128479,0.451020091772079,-0.641065239906311, +0.291788369417191,0.879703402519226,0.375474810600281,0.0742268934845924,0.965558469295502,0.249373450875282,0.316875010728836,0.818814098834991,0.478678941726685,0.0742268934845924,0.965558469295502,0.249373450875282,0.0381486788392067,0.993809878826141,0.104338437318802,-0.330974608659744,0.929172575473785,-0.164602696895599,-0.330974608659744,0.929172575473785,-0.164602696895599,-0.278878301382065,0.911949574947357,-0.300956517457962,-0.620979905128479,0.451020091772079,-0.641065239906311,0.0742268934845924,0.965558469295502,0.249373450875282,0.291788369417191,0.879703402519226,0.375474810600281,0.0381486788392067,0.993809878826141,0.104338437318802,0.291788369417191,0.879703402519226,0.375474810600281,0.316875010728836,0.818814098834991,0.478678941726685,0.458853900432587,0.733976662158966,0.500730693340302,-0.330974608659744,0.929172575473785,-0.164602696895599,0.0381486788392067,0.993809878826141,0.104338437318802,-0.278878301382065,0.911949574947357,-0.300956517457962,-0.449395298957825,0.637455999851227,-0.625854253768921,-0.620979905128479,0.451020091772079,-0.641065239906311,-0.278878301382065,0.911949574947357,-0.300956517457962,0.291788369417191,0.879703402519226,0.375474810600281,0.240779221057892,0.951038718223572,0.193779855966568,0.0381486788392067,0.993809878826141,0.104338437318802,0.291788369417191,0.879703402519226,0.375474810600281,0.458853900432587,0.733976662158966,0.500730693340302,0.441538393497467,0.809811592102051,0.386327385902405,-0.0228468142449856,0.990802228450775,-0.133375227451324,-0.278878301382065,0.911949574947357,-0.300956517457962,0.0381486788392067,0.993809878826141,0.104338437318802,-0.0228468142449856,0.990802228450775,-0.133375227451324,-0.449395298957825,0.637455999851227,-0.625854253768921,-0.278878301382065,0.911949574947357,-0.300956517457962,0.291788369417191,0.879703402519226,0.375474810600281,0.441538393497467,0.809811592102051,0.386327385902405,0.240779221057892,0.951038718223572,0.193779855966568,0.240779221057892,0.951038718223572,0.193779855966568,-0.0228468142449856,0.990802228450775,-0.133375227451324, +0.0381486788392067,0.993809878826141,0.104338437318802,0.552429914474487,0.681873083114624,0.479447722434998,0.441538393497467,0.809811592102051,0.386327385902405,0.458853900432587,0.733976662158966,0.500730693340302,-0.449395298957825,0.637455999851227,-0.625854253768921,-0.0228468142449856,0.990802228450775,-0.133375227451324,-0.202666446566582,0.879656910896301,-0.430267363786697,0.240779221057892,0.951038718223572,0.193779855966568,0.441538393497467,0.809811592102051,0.386327385902405,0.357087850570679,0.920640349388123,0.157827526330948,0.153226852416992,0.987651705741882,-0.032642487436533,-0.0228468142449856,0.990802228450775,-0.133375227451324,0.240779221057892,0.951038718223572,0.193779855966568,0.552429914474487,0.681873083114624,0.479447722434998,0.532086908817291,0.781991720199585,0.324610948562622,0.441538393497467,0.809811592102051,0.386327385902405,0.153226852416992,0.987651705741882,-0.032642487436533,-0.202666446566582,0.879656910896301,-0.430267363786697,-0.0228468142449856,0.990802228450775,-0.133375227451324,-0.449395298957825,0.637455999851227,-0.625854253768921,-0.202666446566582,0.879656910896301,-0.430267363786697,-0.50001734495163,0.301383346319199,-0.811880946159363,0.357087850570679,0.920640349388123,0.157827526330948,0.441538393497467,0.809811592102051,0.386327385902405,0.532086908817291,0.781991720199585,0.324610948562622,0.153226852416992,0.987651705741882,-0.032642487436533,0.240779221057892,0.951038718223572,0.193779855966568,0.357087850570679,0.920640349388123,0.157827526330948,0.552429914474487,0.681873083114624,0.479447722434998,0.678956270217896,0.588558197021484,0.438882082700729,0.532086908817291,0.781991720199585,0.324610948562622,0.11612243950367,0.941549956798553,-0.316226452589035,-0.202666446566582,0.879656910896301,-0.430267363786697,0.153226852416992,0.987651705741882,-0.032642487436533,-0.189817383885384,0.709078967571259,-0.679099559783936,-0.50001734495163,0.301383346319199,-0.811880946159363,-0.202666446566582,0.879656910896301,-0.430267363786697,0.392968505620956,0.918508470058441,0.0437928214669228, +0.357087850570679,0.920640349388123,0.157827526330948,0.532086908817291,0.781991720199585,0.324610948562622,0.153226852416992,0.987651705741882,-0.032642487436533,0.357087850570679,0.920640349388123,0.157827526330948,0.11612243950367,0.941549956798553,-0.316226452589035,0.692304253578186,0.683771908283234,0.230587586760521,0.532086908817291,0.781991720199585,0.324610948562622,0.678956270217896,0.588558197021484,0.438882082700729,-0.189817383885384,0.709078967571259,-0.679099559783936,-0.202666446566582,0.879656910896301,-0.430267363786697,0.11612243950367,0.941549956798553,-0.316226452589035,-0.50001734495163,0.301383346319199,-0.811880946159363,-0.189817383885384,0.709078967571259,-0.679099559783936,-0.258229225873947,0.53266853094101,-0.805966317653656,0.392968505620956,0.918508470058441,0.0437928214669228,0.11612243950367,0.941549956798553,-0.316226452589035,0.357087850570679,0.920640349388123,0.157827526330948,0.392968505620956,0.918508470058441,0.0437928214669228,0.532086908817291,0.781991720199585,0.324610948562622,0.537665963172913,0.830786883831024,0.143903747200966,0.537665963172913,0.830786883831024,0.143903747200966,0.532086908817291,0.781991720199585,0.324610948562622,0.692304253578186,0.683771908283234,0.230587586760521,0.692304253578186,0.683771908283234,0.230587586760521,0.678956270217896,0.588558197021484,0.438882082700729,0.78973776102066,0.517282128334045,0.329747319221497,-0.258229225873947,0.53266853094101,-0.805966317653656,-0.189817383885384,0.709078967571259,-0.679099559783936,0.11612243950367,0.941549956798553,-0.316226452589035,-0.50001734495163,0.301383346319199,-0.811880946159363,-0.258229225873947,0.53266853094101,-0.805966317653656,-0.558971881866455,0.0223034080117941,-0.82888650894165,0.11612243950367,0.941549956798553,-0.316226452589035,0.392968505620956,0.918508470058441,0.0437928214669228,0.212079614400864,0.889915227890015,-0.403823018074036,0.392968505620956,0.918508470058441,0.0437928214669228,0.537665963172913,0.830786883831024,0.143903747200966,0.212079614400864,0.889915227890015,-0.403823018074036, +0.692304253578186,0.683771908283234,0.230587586760521,0.66941499710083,0.715507328510284,-0.199831277132034,0.537665963172913,0.830786883831024,0.143903747200966,0.692304253578186,0.683771908283234,0.230587586760521,0.78973776102066,0.517282128334045,0.329747319221497,0.777567386627197,0.628122866153717,0.029161898419261,-0.258229225873947,0.53266853094101,-0.805966317653656,0.11612243950367,0.941549956798553,-0.316226452589035,0.212079614400864,0.889915227890015,-0.403823018074036,-0.258229225873947,0.53266853094101,-0.805966317653656,-0.399341255426407,0.149480476975441,-0.904534161090851,-0.558971881866455,0.0223034080117941,-0.82888650894165,0.212079614400864,0.889915227890015,-0.403823018074036,0.537665963172913,0.830786883831024,0.143903747200966,0.493837267160416,0.864870131015778,-0.0901349186897278,0.777567386627197,0.628122866153717,0.029161898419261,0.66941499710083,0.715507328510284,-0.199831277132034,0.692304253578186,0.683771908283234,0.230587586760521,0.493837267160416,0.864870131015778,-0.0901349186897278,0.537665963172913,0.830786883831024,0.143903747200966,0.66941499710083,0.715507328510284,-0.199831277132034,0.777567386627197,0.628122866153717,0.029161898419261,0.78973776102066,0.517282128334045,0.329747319221497,0.86332380771637,0.446198761463165,0.235751062631607,-0.258229225873947,0.53266853094101,-0.805966317653656,0.212079614400864,0.889915227890015,-0.403823018074036,-0.139212444424629,0.492664337158203,-0.859012007713318,-0.258229225873947,0.53266853094101,-0.805966317653656,-0.139212444424629,0.492664337158203,-0.859012007713318,-0.399341255426407,0.149480476975441,-0.904534161090851,-0.558971881866455,0.0223034080117941,-0.82888650894165,-0.399341255426407,0.149480476975441,-0.904534161090851,-0.517861127853394,-0.0313512794673443,-0.854889929294586,0.212079614400864,0.889915227890015,-0.403823018074036,0.493837267160416,0.864870131015778,-0.0901349186897278,0.66941499710083,0.715507328510284,-0.199831277132034,0.777567386627197,0.628122866153717,0.029161898419261,0.298005431890488,0.607091069221497,-0.736636281013489, +0.66941499710083,0.715507328510284,-0.199831277132034,0.260190308094025,0.600193023681641,-0.756352543830872,-0.139212444424629,0.492664337158203,-0.859012007713318,0.212079614400864,0.889915227890015,-0.403823018074036,-0.139212444424629,0.492664337158203,-0.859012007713318,-0.155990317463875,0.175203636288643,-0.972096025943756,-0.399341255426407,0.149480476975441,-0.904534161090851,-0.399341255426407,0.149480476975441,-0.904534161090851,-0.155990317463875,0.175203636288643,-0.972096025943756,-0.517861127853394,-0.0313512794673443,-0.854889929294586,0.260190308094025,0.600193023681641,-0.756352543830872,0.212079614400864,0.889915227890015,-0.403823018074036,0.66941499710083,0.715507328510284,-0.199831277132034,0.298005431890488,0.607091069221497,-0.736636281013489,0.260190308094025,0.600193023681641,-0.756352543830872,0.66941499710083,0.715507328510284,-0.199831277132034,-0.139212444424629,0.492664337158203,-0.859012007713318,0.260190308094025,0.600193023681641,-0.756352543830872,-0.155990317463875,0.175203636288643,-0.972096025943756,0.298005431890488,0.607091069221497,-0.736636281013489,-0.155990317463875,0.175203636288643,-0.972096025943756,0.260190308094025,0.600193023681641,-0.756352543830872,0.777567386627197,0.628122866153717,0.029161898419261,0.86332380771637,0.446198761463165,0.235751062631607,0.689971089363098,0.722794830799103,-0.0388253480195999,0.777567386627197,0.628122866153717,0.029161898419261,0.689971089363098,0.722794830799103,-0.0388253480195999,0.298005431890488,0.607091069221497,-0.736636281013489,0.902410924434662,0.430667549371719,-0.0134096303954721,0.689971089363098,0.722794830799103,-0.0388253480195999,0.86332380771637,0.446198761463165,0.235751062631607,-0.155990317463875,0.175203636288643,-0.972096025943756,-0.2538241147995,0.196635499596596,-0.947052121162415,-0.517861127853394,-0.0313512794673443,-0.854889929294586,0.298005431890488,0.607091069221497,-0.736636281013489,0.689971089363098,0.722794830799103,-0.0388253480195999,0.640661597251892,0.678450345993042,-0.359524220228195,0.689971089363098,0.722794830799103,-0.0388253480195999, +0.902410924434662,0.430667549371719,-0.0134096303954721,0.640661597251892,0.678450345993042,-0.359524220228195,0.902410924434662,0.430667549371719,-0.0134096303954721,0.86332380771637,0.446198761463165,0.235751062631607,0.950215816497803,0.274013519287109,0.148345306515694,-0.155990317463875,0.175203636288643,-0.972096025943756,0.298005431890488,0.607091069221497,-0.736636281013489,-0.2538241147995,0.196635499596596,-0.947052121162415,0.567006945610046,0.458186358213425,-0.684520423412323,0.298005431890488,0.607091069221497,-0.736636281013489,0.640661597251892,0.678450345993042,-0.359524220228195,0.567006945610046,0.458186358213425,-0.684520423412323,0.640661597251892,0.678450345993042,-0.359524220228195,0.902410924434662,0.430667549371719,-0.0134096303954721,0.9326211810112,0.300039708614349,-0.200483843684196,0.902410924434662,0.430667549371719,-0.0134096303954721,0.950215816497803,0.274013519287109,0.148345306515694,0.298005431890488,0.607091069221497,-0.736636281013489,-0.0479806922376156,0.281917631626129,-0.958238065242767,-0.2538241147995,0.196635499596596,-0.947052121162415,0.567006945610046,0.458186358213425,-0.684520423412323,-0.0479806922376156,0.281917631626129,-0.958238065242767,0.298005431890488,0.607091069221497,-0.736636281013489,0.567006945610046,0.458186358213425,-0.684520423412323,0.902410924434662,0.430667549371719,-0.0134096303954721,0.9326211810112,0.300039708614349,-0.200483843684196,0.9326211810112,0.300039708614349,-0.200483843684196,0.950215816497803,0.274013519287109,0.148345306515694,0.983355939388275,0.151628792285919,0.100098095834255,-0.2538241147995,0.196635499596596,-0.947052121162415,-0.0479806922376156,0.281917631626129,-0.958238065242767,-0.334265798330307,0.0702492967247963,-0.939857065677643,0.567006945610046,0.458186358213425,-0.684520423412323,0.487372934818268,0.256327331066132,-0.834723830223084,-0.0479806922376156,0.281917631626129,-0.958238065242767,0.567006945610046,0.458186358213425,-0.684520423412323,0.9326211810112,0.300039708614349,-0.200483843684196,0.487372934818268,0.256327331066132,-0.834723830223084, +0.9326211810112,0.300039708614349,-0.200483843684196,0.983355939388275,0.151628792285919,0.100098095834255,0.911339044570923,0.240983784198761,-0.333748161792755,-0.0479806922376156,0.281917631626129,-0.958238065242767,-0.138682052493095,0.0998300090432167,-0.985292434692383,-0.334265798330307,0.0702492967247963,-0.939857065677643,0.487372934818268,0.256327331066132,-0.834723830223084,-0.138682052493095,0.0998300090432167,-0.985292434692383,-0.0479806922376156,0.281917631626129,-0.958238065242767,0.9326211810112,0.300039708614349,-0.200483843684196,0.911339044570923,0.240983784198761,-0.333748161792755,0.487372934818268,0.256327331066132,-0.834723830223084,0.983355939388275,0.151628792285919,0.100098095834255,0.99692714214325,0.0783278048038483,-0.00101123040076345,0.911339044570923,0.240983784198761,-0.333748161792755,-0.138682052493095,0.0998300090432167,-0.985292434692383,-0.465555250644684,-0.0485031455755234,-0.883688628673553,-0.334265798330307,0.0702492967247963,-0.939857065677643,0.293303906917572,0.188983663916588,-0.937154173851013,-0.138682052493095,0.0998300090432167,-0.985292434692383,0.487372934818268,0.256327331066132,-0.834723830223084,0.293303906917572,0.188983663916588,-0.937154173851013,0.487372934818268,0.256327331066132,-0.834723830223084,0.911339044570923,0.240983784198761,-0.333748161792755,0.990151345729828,0.0489564053714275,0.131162285804749,0.99692714214325,0.0783278048038483,-0.00101123040076345,0.983355939388275,0.151628792285919,0.100098095834255,0.911339044570923,0.240983784198761,-0.333748161792755,0.99692714214325,0.0783278048038483,-0.00101123040076345,0.831472158432007,0.23171629011631,-0.504937171936035,-0.241671726107597,0.0245706085115671,-0.970046877861023,-0.465555250644684,-0.0485031455755234,-0.883688628673553,-0.138682052493095,0.0998300090432167,-0.985292434692383,0.293303906917572,0.188983663916588,-0.937154173851013,-0.241671726107597,0.0245706085115671,-0.970046877861023,-0.138682052493095,0.0998300090432167,-0.985292434692383,0.911339044570923,0.240983784198761,-0.333748161792755, +0.831472158432007,0.23171629011631,-0.504937171936035,0.293303906917572,0.188983663916588,-0.937154173851013,0.951134741306305,-0.154016524553299,-0.26762181520462,0.99692714214325,0.0783278048038483,-0.00101123040076345,0.990151345729828,0.0489564053714275,0.131162285804749,0.831472158432007,0.23171629011631,-0.504937171936035,0.99692714214325,0.0783278048038483,-0.00101123040076345,0.883360981941223,-0.0354714579880238,-0.467348873615265,-0.348505616188049,-0.0962213128805161,-0.932354629039764,-0.465555250644684,-0.0485031455755234,-0.883688628673553,-0.241671726107597,0.0245706085115671,-0.970046877861023,-0.241671726107597,0.0245706085115671,-0.970046877861023,0.293303906917572,0.188983663916588,-0.937154173851013,-0.0308960154652596,-0.00956684350967407,-0.999476790428162,0.293303906917572,0.188983663916588,-0.937154173851013,0.831472158432007,0.23171629011631,-0.504937171936035,0.467602103948593,0.0666474103927612,-0.881422877311707,0.951134741306305,-0.154016524553299,-0.26762181520462,0.883360981941223,-0.0354714579880238,-0.467348873615265,0.99692714214325,0.0783278048038483,-0.00101123040076345,0.951134741306305,-0.154016524553299,-0.26762181520462,0.990151345729828,0.0489564053714275,0.131162285804749,0.995206952095032,-0.0210538748651743,0.095497228205204,0.467602103948593,0.0666474103927612,-0.881422877311707,0.831472158432007,0.23171629011631,-0.504937171936035,0.883360981941223,-0.0354714579880238,-0.467348873615265,-0.241671726107597,0.0245706085115671,-0.970046877861023,-0.0308960154652596,-0.00956684350967407,-0.999476790428162,-0.348505616188049,-0.0962213128805161,-0.932354629039764,0.467602103948593,0.0666474103927612,-0.881422877311707,-0.0308960154652596,-0.00956684350967407,-0.999476790428162,0.293303906917572,0.188983663916588,-0.937154173851013,0.951134741306305,-0.154016524553299,-0.26762181520462,0.501327335834503,-0.13983553647995,-0.853883326053619,0.883360981941223,-0.0354714579880238,-0.467348873615265,0.976718485355377,-0.173597082495689,-0.126035705208778,0.951134741306305,-0.154016524553299,-0.26762181520462, +0.995206952095032,-0.0210538748651743,0.095497228205204,0.467602103948593,0.0666474103927612,-0.881422877311707,0.883360981941223,-0.0354714579880238,-0.467348873615265,0.501327335834503,-0.13983553647995,-0.853883326053619,-0.0308960154652596,-0.00956684350967407,-0.999476790428162,0.00353197078220546,-0.142815634608269,-0.989742934703827,-0.348505616188049,-0.0962213128805161,-0.932354629039764,0.467602103948593,0.0666474103927612,-0.881422877311707,0.501327335834503,-0.13983553647995,-0.853883326053619,-0.0308960154652596,-0.00956684350967407,-0.999476790428162,0.417570412158966,-0.274832725524902,-0.866084218025208,0.501327335834503,-0.13983553647995,-0.853883326053619,0.951134741306305,-0.154016524553299,-0.26762181520462,0.951134741306305,-0.154016524553299,-0.26762181520462,0.976718485355377,-0.173597082495689,-0.126035705208778,0.722142517566681,-0.262055605649948,-0.640185117721558,0.995206952095032,-0.0210538748651743,0.095497228205204,0.986194014549255,-0.121706694364548,0.112288370728493,0.976718485355377,-0.173597082495689,-0.126035705208778,-0.0308960154652596,-0.00956684350967407,-0.999476790428162,0.501327335834503,-0.13983553647995,-0.853883326053619,0.00353197078220546,-0.142815634608269,-0.989742934703827,-0.348505616188049,-0.0962213128805161,-0.932354629039764,0.00353197078220546,-0.142815634608269,-0.989742934703827,-0.228636085987091,-0.203442096710205,-0.952017188072205,0.417570412158966,-0.274832725524902,-0.866084218025208,0.00353197078220546,-0.142815634608269,-0.989742934703827,0.501327335834503,-0.13983553647995,-0.853883326053619,0.722142517566681,-0.262055605649948,-0.640185117721558,0.417570412158966,-0.274832725524902,-0.866084218025208,0.951134741306305,-0.154016524553299,-0.26762181520462,0.722142517566681,-0.262055605649948,-0.640185117721558,0.976718485355377,-0.173597082495689,-0.126035705208778,0.780369758605957,-0.339860379695892,-0.524897873401642,0.976718485355377,-0.173597082495689,-0.126035705208778,0.986194014549255,-0.121706694364548,0.112288370728493,0.932361483573914,-0.308132141828537,-0.189094036817551, +0.00353197078220546,-0.142815634608269,-0.989742934703827,0.417570412158966,-0.274832725524902,-0.866084218025208,-0.228636085987091,-0.203442096710205,-0.952017188072205,0.0523047484457493,-0.271629929542542,-0.960979342460632,0.417570412158966,-0.274832725524902,-0.866084218025208,0.722142517566681,-0.262055605649948,-0.640185117721558,0.976718485355377,-0.173597082495689,-0.126035705208778,0.932361483573914,-0.308132141828537,-0.189094036817551,0.780369758605957,-0.339860379695892,-0.524897873401642,0.722142517566681,-0.262055605649948,-0.640185117721558,0.780369758605957,-0.339860379695892,-0.524897873401642,0.310634136199951,-0.352414071559906,-0.882785737514496,0.986194014549255,-0.121706694364548,0.112288370728493,0.972024917602539,-0.229633763432503,0.0493537932634354,0.932361483573914,-0.308132141828537,-0.189094036817551,-0.228636085987091,-0.203442096710205,-0.952017188072205,0.417570412158966,-0.274832725524902,-0.866084218025208,0.0523047484457493,-0.271629929542542,-0.960979342460632,0.310634136199951,-0.352414071559906,-0.882785737514496,0.0523047484457493,-0.271629929542542,-0.960979342460632,0.722142517566681,-0.262055605649948,-0.640185117721558,0.932361483573914,-0.308132141828537,-0.189094036817551,0.509033262729645,-0.446508765220642,-0.735876977443695,0.780369758605957,-0.339860379695892,-0.524897873401642,0.310634136199951,-0.352414071559906,-0.882785737514496,0.780369758605957,-0.339860379695892,-0.524897873401642,0.509033262729645,-0.446508765220642,-0.735876977443695,0.880154311656952,-0.393603354692459,-0.265338897705078,0.932361483573914,-0.308132141828537,-0.189094036817551,0.972024917602539,-0.229633763432503,0.0493537932634354,0.310634136199951,-0.352414071559906,-0.882785737514496,-0.115175165235996,-0.334916055202484,-0.935182213783264,0.0523047484457493,-0.271629929542542,-0.960979342460632,0.880154311656952,-0.393603354692459,-0.265338897705078,0.509033262729645,-0.446508765220642,-0.735876977443695,0.932361483573914,-0.308132141828537,-0.189094036817551,0.310634136199951,-0.352414071559906,-0.882785737514496, +0.509033262729645,-0.446508765220642,-0.735876977443695,-0.115175165235996,-0.334916055202484,-0.935182213783264,0.972024917602539,-0.229633763432503,0.0493537932634354,0.947608292102814,-0.319333165884018,-0.00804164633154869,0.880154311656952,-0.393603354692459,-0.265338897705078,0.509033262729645,-0.446508765220642,-0.735876977443695,0.880154311656952,-0.393603354692459,-0.265338897705078,0.481749385595322,-0.520523130893707,-0.704963147640228,0.00190833199303597,-0.377771496772766,-0.925896883010864,-0.115175165235996,-0.334916055202484,-0.935182213783264,0.509033262729645,-0.446508765220642,-0.735876977443695,0.880154311656952,-0.393603354692459,-0.265338897705078,0.947608292102814,-0.319333165884018,-0.00804164633154869,0.796639502048492,-0.524639844894409,-0.300197184085846,0.481749385595322,-0.520523130893707,-0.704963147640228,0.880154311656952,-0.393603354692459,-0.265338897705078,0.796639502048492,-0.524639844894409,-0.300197184085846,0.509033262729645,-0.446508765220642,-0.735876977443695,0.481749385595322,-0.520523130893707,-0.704963147640228,0.00190833199303597,-0.377771496772766,-0.925896883010864,0.947608292102814,-0.319333165884018,-0.00804164633154869,0.8987837433815,-0.422688126564026,-0.116285927593708,0.796639502048492,-0.524639844894409,-0.300197184085846,0.481749385595322,-0.520523130893707,-0.704963147640228,0.796639502048492,-0.524639844894409,-0.300197184085846,0.32957512140274,-0.675335943698883,-0.659773766994476,0.481749385595322,-0.520523130893707,-0.704963147640228,-0.0788229927420616,-0.479235231876373,-0.874139785766602,0.00190833199303597,-0.377771496772766,-0.925896883010864,0.8987837433815,-0.422688126564026,-0.116285927593708,0.558652281761169,-0.65938538312912,-0.503108680248261,0.796639502048492,-0.524639844894409,-0.300197184085846,0.558652281761169,-0.65938538312912,-0.503108680248261,0.32957512140274,-0.675335943698883,-0.659773766994476,0.796639502048492,-0.524639844894409,-0.300197184085846,0.481749385595322,-0.520523130893707,-0.704963147640228,0.32957512140274,-0.675335943698883,-0.659773766994476, +-0.0788229927420616,-0.479235231876373,-0.874139785766602,0.558652281761169,-0.65938538312912,-0.503108680248261,0.8987837433815,-0.422688126564026,-0.116285927593708,0.679299175739288,-0.588134527206421,-0.438919574022293,0.558652281761169,-0.65938538312912,-0.503108680248261,-0.0880248695611954,-0.598908722400665,-0.79596471786499,0.32957512140274,-0.675335943698883,-0.659773766994476,-0.0788229927420616,-0.479235231876373,-0.874139785766602,0.32957512140274,-0.675335943698883,-0.659773766994476,-0.0880248695611954,-0.598908722400665,-0.79596471786499,0.844319641590118,-0.509151935577393,-0.166998520493507,0.679299175739288,-0.588134527206421,-0.438919574022293,0.8987837433815,-0.422688126564026,-0.116285927593708,0.558652281761169,-0.65938538312912,-0.503108680248261,0.679299175739288,-0.588134527206421,-0.438919574022293,0.164703354239464,-0.624059855937958,-0.763820588588715,0.164703354239464,-0.624059855937958,-0.763820588588715,-0.0880248695611954,-0.598908722400665,-0.79596471786499,0.558652281761169,-0.65938538312912,-0.503108680248261,0.844319641590118,-0.509151935577393,-0.166998520493507,0.541086077690125,-0.69378674030304,-0.475274264812469,0.679299175739288,-0.588134527206421,-0.438919574022293,0.164703354239464,-0.624059855937958,-0.763820588588715,0.679299175739288,-0.588134527206421,-0.438919574022293,0.541086077690125,-0.69378674030304,-0.475274264812469,0.782150328159332,-0.586284458637238,-0.210976868867874,0.541086077690125,-0.69378674030304,-0.475274264812469,0.844319641590118,-0.509151935577393,-0.166998520493507,0.164703354239464,-0.624059855937958,-0.763820588588715,0.541086077690125,-0.69378674030304,-0.475274264812469,0.0905409827828407,-0.704576671123505,-0.703828036785126,0.782150328159332,-0.586284458637238,-0.210976868867874,0.282944470643997,-0.781816124916077,-0.555613100528717,0.541086077690125,-0.69378674030304,-0.475274264812469,0.282944470643997,-0.781816124916077,-0.555613100528717,0.0905409827828407,-0.704576671123505,-0.703828036785126,0.541086077690125,-0.69378674030304,-0.475274264812469, +0.698516190052032,-0.643461227416992,-0.31310161948204,0.282944470643997,-0.781816124916077,-0.555613100528717,0.782150328159332,-0.586284458637238,-0.210976868867874,0.0905409827828407,-0.704576671123505,-0.703828036785126,0.282944470643997,-0.781816124916077,-0.555613100528717,-0.177448913455009,-0.687497437000275,-0.704172551631927,0.237520799040794,-0.773743450641632,-0.587285935878754,0.282944470643997,-0.781816124916077,-0.555613100528717,0.698516190052032,-0.643461227416992,-0.31310161948204,0.282944470643997,-0.781816124916077,-0.555613100528717,-0.294139981269836,-0.626961529254913,-0.721387982368469,-0.177448913455009,-0.687497437000275,-0.704172551631927,0.237520799040794,-0.773743450641632,-0.587285935878754,-0.294139981269836,-0.626961529254913,-0.721387982368469,0.282944470643997,-0.781816124916077,-0.555613100528717,0.698516190052032,-0.643461227416992,-0.31310161948204,0.626310408115387,-0.733514249324799,-0.263992100954056,0.237520799040794,-0.773743450641632,-0.587285935878754,-0.229001119732857,-0.722850382328033,-0.651955246925354,-0.294139981269836,-0.626961529254913,-0.721387982368469,0.237520799040794,-0.773743450641632,-0.587285935878754,0.237520799040794,-0.773743450641632,-0.587285935878754,0.626310408115387,-0.733514249324799,-0.263992100954056,0.218011647462845,-0.825384795665741,-0.520778954029083,0.218011647462845,-0.825384795665741,-0.520778954029083,-0.229001119732857,-0.722850382328033,-0.651955246925354,0.237520799040794,-0.773743450641632,-0.587285935878754,-0.229001119732857,-0.722850382328033,-0.651955246925354,0.218011647462845,-0.825384795665741,-0.520778954029083,-0.589365839958191,-0.555926442146301,-0.586168467998505,-0.589365839958191,-0.555926442146301,-0.586168467998505,0.218011647462845,-0.825384795665741,-0.520778954029083,-0.323904097080231,-0.644972205162048,-0.692168176174164,0.178219750523567,-0.795235157012939,-0.579515874385834,-0.323904097080231,-0.644972205162048,-0.692168176174164,0.218011647462845,-0.825384795665741,-0.520778954029083,-0.589365839958191,-0.555926442146301,-0.586168467998505, +-0.323904097080231,-0.644972205162048,-0.692168176174164,-0.815479338169098,-0.268738687038422,-0.512613713741302,-0.323904097080231,-0.644972205162048,-0.692168176174164,0.178219750523567,-0.795235157012939,-0.579515874385834,-0.254218697547913,-0.721252083778381,-0.644335389137268,-0.689245283603668,-0.415547698736191,-0.593515694141388,-0.815479338169098,-0.268738687038422,-0.512613713741302,-0.323904097080231,-0.644972205162048,-0.692168176174164,0.178219750523567,-0.795235157012939,-0.579515874385834,-0.0343982242047787,-0.849719643592834,-0.526111423969269,-0.254218697547913,-0.721252083778381,-0.644335389137268,-0.323904097080231,-0.644972205162048,-0.692168176174164,-0.254218697547913,-0.721252083778381,-0.644335389137268,-0.689245283603668,-0.415547698736191,-0.593515694141388,0.178219750523567,-0.795235157012939,-0.579515874385834,0.458349376916885,-0.806909620761871,-0.372575521469116,-0.0343982242047787,-0.849719643592834,-0.526111423969269,-0.542487263679504,-0.638179540634155,-0.546291530132294,-0.254218697547913,-0.721252083778381,-0.644335389137268,-0.0343982242047787,-0.849719643592834,-0.526111423969269,-0.542487263679504,-0.638179540634155,-0.546291530132294,-0.689245283603668,-0.415547698736191,-0.593515694141388,-0.254218697547913,-0.721252083778381,-0.644335389137268,-0.0343982242047787,-0.849719643592834,-0.526111423969269,0.458349376916885,-0.806909620761871,-0.372575521469116,0.194269239902496,-0.888628721237183,-0.415449678897858,-0.542487263679504,-0.638179540634155,-0.546291530132294,-0.0343982242047787,-0.849719643592834,-0.526111423969269,-0.274226635694504,-0.817692697048187,-0.50614058971405,0.194269239902496,-0.888628721237183,-0.415449678897858,-0.274226635694504,-0.817692697048187,-0.50614058971405,-0.0343982242047787,-0.849719643592834,-0.526111423969269,-0.274226635694504,-0.817692697048187,-0.50614058971405,0.194269239902496,-0.888628721237183,-0.415449678897858,-0.0317179150879383,-0.89952427148819,-0.435717821121216,0.194269239902496,-0.888628721237183,-0.415449678897858,0.279122710227966,-0.892987966537476,-0.35307639837265, +-0.0317179150879383,-0.89952427148819,-0.435717821121216,0.29568013548851,-0.895565807819366,-0.332468032836914,-0.0317179150879383,-0.89952427148819,-0.435717821121216,0.279122710227966,-0.892987966537476,-0.35307639837265,0.12588806450367,-0.92530483007431,-0.357719331979752,-0.0317179150879383,-0.89952427148819,-0.435717821121216,0.29568013548851,-0.895565807819366,-0.332468032836914,0.465740203857422,-0.842628657817841,-0.270301431417465,0.12588806450367,-0.92530483007431,-0.357719331979752,0.29568013548851,-0.895565807819366,-0.332468032836914,-0.103354178369045,-0.423040568828583,-0.90019690990448,-0.15397983789444,-0.384853780269623,-0.910042643547058,-0.177261054515839,-0.347469091415405,-0.92078423500061,-0.103354178369045,-0.423040568828583,-0.90019690990448,-0.0762273445725441,-0.47655987739563,-0.875831007957459,-0.15397983789444,-0.384853780269623,-0.910042643547058,-0.177261054515839,-0.347469091415405,-0.92078423500061,-0.15397983789444,-0.384853780269623,-0.910042643547058,-0.203420758247375,-0.290740013122559,-0.934927880764008,-0.141162976622581,-0.383272290229797,-0.912784337997437,-0.103354178369045,-0.423040568828583,-0.90019690990448,-0.177261054515839,-0.347469091415405,-0.92078423500061,-0.15397983789444,-0.384853780269623,-0.910042643547058,-0.0762273445725441,-0.47655987739563,-0.875831007957459,-0.19807280600071,-0.327413201332092,-0.923887252807617,-0.19807280600071,-0.327413201332092,-0.923887252807617,-0.203420758247375,-0.290740013122559,-0.934927880764008,-0.15397983789444,-0.384853780269623,-0.910042643547058,-0.177261054515839,-0.347469091415405,-0.92078423500061,-0.203420758247375,-0.290740013122559,-0.934927880764008,-0.255490452051163,-0.23562216758728,-0.937660217285156,-0.141162976622581,-0.383272290229797,-0.912784337997437,-0.177261054515839,-0.347469091415405,-0.92078423500061,-0.213235542178154,-0.295109003782272,-0.931365191936493,-0.160240605473518,-0.413350194692612,-0.896361768245697,-0.19807280600071,-0.327413201332092,-0.923887252807617,-0.0762273445725441,-0.47655987739563,-0.875831007957459, +-0.19807280600071,-0.327413201332092,-0.923887252807617,-0.294238895177841,-0.2286007553339,-0.927989780902863,-0.203420758247375,-0.290740013122559,-0.934927880764008,-0.255490452051163,-0.23562216758728,-0.937660217285156,-0.203420758247375,-0.290740013122559,-0.934927880764008,-0.297000348567963,-0.177909344434738,-0.938157200813293,-0.213235542178154,-0.295109003782272,-0.931365191936493,-0.177261054515839,-0.347469091415405,-0.92078423500061,-0.255490452051163,-0.23562216758728,-0.937660217285156,-0.213235542178154,-0.295109003782272,-0.931365191936493,-0.191180720925331,-0.352346926927567,-0.916133940219879,-0.141162976622581,-0.383272290229797,-0.912784337997437,-0.319442838430405,-0.244591385126114,-0.915495097637177,-0.19807280600071,-0.327413201332092,-0.923887252807617,-0.160240605473518,-0.413350194692612,-0.896361768245697,-0.160240605473518,-0.413350194692612,-0.896361768245697,-0.0762273445725441,-0.47655987739563,-0.875831007957459,-0.104181073606014,-0.521702945232391,-0.84674209356308,-0.19807280600071,-0.327413201332092,-0.923887252807617,-0.377615541219711,-0.156039506196976,-0.912720143795013,-0.294238895177841,-0.2286007553339,-0.927989780902863,-0.203420758247375,-0.290740013122559,-0.934927880764008,-0.294238895177841,-0.2286007553339,-0.927989780902863,-0.297000348567963,-0.177909344434738,-0.938157200813293,-0.357868403196335,-0.0783951729536057,-0.930475294589996,-0.255490452051163,-0.23562216758728,-0.937660217285156,-0.297000348567963,-0.177909344434738,-0.938157200813293,-0.213235542178154,-0.295109003782272,-0.931365191936493,-0.255490452051163,-0.23562216758728,-0.937660217285156,-0.310144990682602,-0.152985215187073,-0.938299298286438,-0.213235542178154,-0.295109003782272,-0.931365191936493,-0.262406408786774,-0.236945912241936,-0.93541407585144,-0.191180720925331,-0.352346926927567,-0.916133940219879,-0.134643882513046,-0.421502709388733,-0.896775543689728,-0.141162976622581,-0.383272290229797,-0.912784337997437,-0.191180720925331,-0.352346926927567,-0.916133940219879,-0.319442838430405,-0.244591385126114,-0.915495097637177, +-0.377615541219711,-0.156039506196976,-0.912720143795013,-0.19807280600071,-0.327413201332092,-0.923887252807617,-0.319442838430405,-0.244591385126114,-0.915495097637177,-0.160240605473518,-0.413350194692612,-0.896361768245697,-0.247098609805107,-0.378908097743988,-0.891835629940033,-0.104181073606014,-0.521702945232391,-0.84674209356308,-0.247098609805107,-0.378908097743988,-0.891835629940033,-0.160240605473518,-0.413350194692612,-0.896361768245697,-0.410482943058014,-0.074946328997612,-0.908783078193665,-0.294238895177841,-0.2286007553339,-0.927989780902863,-0.377615541219711,-0.156039506196976,-0.912720143795013,-0.294238895177841,-0.2286007553339,-0.927989780902863,-0.410482943058014,-0.074946328997612,-0.908783078193665,-0.297000348567963,-0.177909344434738,-0.938157200813293,-0.357868403196335,-0.0783951729536057,-0.930475294589996,-0.310144990682602,-0.152985215187073,-0.938299298286438,-0.255490452051163,-0.23562216758728,-0.937660217285156,-0.357868403196335,-0.0783951729536057,-0.930475294589996,-0.297000348567963,-0.177909344434738,-0.938157200813293,-0.410482943058014,-0.074946328997612,-0.908783078193665,-0.213235542178154,-0.295109003782272,-0.931365191936493,-0.310144990682602,-0.152985215187073,-0.938299298286438,-0.262406408786774,-0.236945912241936,-0.93541407585144,-0.191180720925331,-0.352346926927567,-0.916133940219879,-0.262406408786774,-0.236945912241936,-0.93541407585144,-0.2444858700037,-0.303027719259262,-0.921086728572845,-0.191180720925331,-0.352346926927567,-0.916133940219879,-0.220119193196297,-0.34867450594902,-0.911028802394867,-0.134643882513046,-0.421502709388733,-0.896775543689728,-0.477289378643036,-0.0511281564831734,-0.877257466316223,-0.377615541219711,-0.156039506196976,-0.912720143795013,-0.319442838430405,-0.244591385126114,-0.915495097637177,-0.40399494767189,-0.184336498379707,-0.895995557308197,-0.319442838430405,-0.244591385126114,-0.915495097637177,-0.247098609805107,-0.378908097743988,-0.891835629940033,-0.184469699859619,-0.456980168819427,-0.870137870311737,-0.247098609805107,-0.378908097743988,-0.891835629940033, +-0.104181073606014,-0.521702945232391,-0.84674209356308,-0.410482943058014,-0.074946328997612,-0.908783078193665,-0.377615541219711,-0.156039506196976,-0.912720143795013,-0.501462697982788,-0.00266003399156034,-0.865175068378448,-0.357868403196335,-0.0783951729536057,-0.930475294589996,-0.407360076904297,0.0100348247215152,-0.913212478160858,-0.310144990682602,-0.152985215187073,-0.938299298286438,-0.357868403196335,-0.0783951729536057,-0.930475294589996,-0.410482943058014,-0.074946328997612,-0.908783078193665,-0.494953453540802,0.061847273260355,-0.866715550422668,-0.310144990682602,-0.152985215187073,-0.938299298286438,-0.364160031080246,-0.0694103538990021,-0.928746223449707,-0.262406408786774,-0.236945912241936,-0.93541407585144,-0.262406408786774,-0.236945912241936,-0.93541407585144,-0.30936536192894,-0.201121121644974,-0.929431676864624,-0.2444858700037,-0.303027719259262,-0.921086728572845,-0.220119193196297,-0.34867450594902,-0.911028802394867,-0.191180720925331,-0.352346926927567,-0.916133940219879,-0.2444858700037,-0.303027719259262,-0.921086728572845,-0.182984232902527,-0.417932957410812,-0.889858782291412,-0.134643882513046,-0.421502709388733,-0.896775543689728,-0.220119193196297,-0.34867450594902,-0.911028802394867,-0.477289378643036,-0.0511281564831734,-0.877257466316223,-0.501462697982788,-0.00266003399156034,-0.865175068378448,-0.377615541219711,-0.156039506196976,-0.912720143795013,-0.40399494767189,-0.184336498379707,-0.895995557308197,-0.477289378643036,-0.0511281564831734,-0.877257466316223,-0.319442838430405,-0.244591385126114,-0.915495097637177,-0.345758050680161,-0.289344489574432,-0.892597913742065,-0.40399494767189,-0.184336498379707,-0.895995557308197,-0.247098609805107,-0.378908097743988,-0.891835629940033,-0.345758050680161,-0.289344489574432,-0.892597913742065,-0.247098609805107,-0.378908097743988,-0.891835629940033,-0.184469699859619,-0.456980168819427,-0.870137870311737,-0.184469699859619,-0.456980168819427,-0.870137870311737,-0.104181073606014,-0.521702945232391,-0.84674209356308,-0.0970537289977074,-0.551767885684967,-0.828331232070923, +-0.410482943058014,-0.074946328997612,-0.908783078193665,-0.501462697982788,-0.00266003399156034,-0.865175068378448,-0.494953453540802,0.061847273260355,-0.866715550422668,-0.494953453540802,0.061847273260355,-0.866715550422668,-0.407360076904297,0.0100348247215152,-0.913212478160858,-0.357868403196335,-0.0783951729536057,-0.930475294589996,-0.364160031080246,-0.0694103538990021,-0.928746223449707,-0.310144990682602,-0.152985215187073,-0.938299298286438,-0.407360076904297,0.0100348247215152,-0.913212478160858,-0.30936536192894,-0.201121121644974,-0.929431676864624,-0.262406408786774,-0.236945912241936,-0.93541407585144,-0.364160031080246,-0.0694103538990021,-0.928746223449707,-0.220119193196297,-0.34867450594902,-0.911028802394867,-0.2444858700037,-0.303027719259262,-0.921086728572845,-0.30936536192894,-0.201121121644974,-0.929431676864624,-0.182984232902527,-0.417932957410812,-0.889858782291412,-0.220119193196297,-0.34867450594902,-0.911028802394867,-0.276764661073685,-0.298260986804962,-0.913477718830109,-0.501462697982788,-0.00266003399156034,-0.865175068378448,-0.477289378643036,-0.0511281564831734,-0.877257466316223,-0.527705132961273,0.0681223496794701,-0.846691370010376,-0.40399494767189,-0.184336498379707,-0.895995557308197,-0.461345136165619,-0.104360960423946,-0.881061494350433,-0.477289378643036,-0.0511281564831734,-0.877257466316223,-0.40399494767189,-0.184336498379707,-0.895995557308197,-0.345758050680161,-0.289344489574432,-0.892597913742065,-0.461345136165619,-0.104360960423946,-0.881061494350433,-0.184469699859619,-0.456980168819427,-0.870137870311737,-0.281248182058334,-0.376822054386139,-0.882555663585663,-0.345758050680161,-0.289344489574432,-0.892597913742065,-0.184469699859619,-0.456980168819427,-0.870137870311737,-0.0970537289977074,-0.551767885684967,-0.828331232070923,-0.160073459148407,-0.505856573581696,-0.847635209560394,-0.494953453540802,0.061847273260355,-0.866715550422668,-0.501462697982788,-0.00266003399156034,-0.865175068378448,-0.527705132961273,0.0681223496794701,-0.846691370010376, +-0.418920934200287,-0.0193157885223627,-0.907817184925079,-0.30936536192894,-0.201121121644974,-0.929431676864624,-0.364160031080246,-0.0694103538990021,-0.928746223449707,-0.30936536192894,-0.201121121644974,-0.929431676864624,-0.276764661073685,-0.298260986804962,-0.913477718830109,-0.220119193196297,-0.34867450594902,-0.911028802394867,-0.521974503993988,0.0146251274272799,-0.852835595607758,-0.527705132961273,0.0681223496794701,-0.846691370010376,-0.477289378643036,-0.0511281564831734,-0.877257466316223,-0.461345136165619,-0.104360960423946,-0.881061494350433,-0.521974503993988,0.0146251274272799,-0.852835595607758,-0.477289378643036,-0.0511281564831734,-0.877257466316223,-0.345758050680161,-0.289344489574432,-0.892597913742065,-0.4259212911129,-0.200448662042618,-0.882276237010956,-0.461345136165619,-0.104360960423946,-0.881061494350433,-0.160073459148407,-0.505856573581696,-0.847635209560394,-0.281248182058334,-0.376822054386139,-0.882555663585663,-0.184469699859619,-0.456980168819427,-0.870137870311737,-0.345758050680161,-0.289344489574432,-0.892597913742065,-0.281248182058334,-0.376822054386139,-0.882555663585663,-0.4259212911129,-0.200448662042618,-0.882276237010956,-0.368102520704269,-0.141905561089516,-0.918892383575439,-0.30936536192894,-0.201121121644974,-0.929431676864624,-0.418920934200287,-0.0193157885223627,-0.907817184925079,-0.368102520704269,-0.141905561089516,-0.918892383575439,-0.276764661073685,-0.298260986804962,-0.913477718830109,-0.30936536192894,-0.201121121644974,-0.929431676864624,-0.461345136165619,-0.104360960423946,-0.881061494350433,-0.498620599508286,-0.065055325627327,-0.864375591278076,-0.521974503993988,0.0146251274272799,-0.852835595607758,-0.461345136165619,-0.104360960423946,-0.881061494350433,-0.4259212911129,-0.200448662042618,-0.882276237010956,-0.498620599508286,-0.065055325627327,-0.864375591278076,-0.160073459148407,-0.505856573581696,-0.847635209560394,-0.258182257413864,-0.449599862098694,-0.855103373527527,-0.281248182058334,-0.376822054386139,-0.882555663585663,-0.377678275108337,-0.292435228824615,-0.878544569015503, +-0.4259212911129,-0.200448662042618,-0.882276237010956,-0.281248182058334,-0.376822054386139,-0.882555663585663,-0.276764661073685,-0.298260986804962,-0.913477718830109,-0.368102520704269,-0.141905561089516,-0.918892383575439,-0.316790461540222,-0.239248141646385,-0.917825698852539,-0.524719893932343,-0.0277547519654036,-0.850822269916534,-0.521974503993988,0.0146251274272799,-0.852835595607758,-0.498620599508286,-0.065055325627327,-0.864375591278076,-0.485192507505417,-0.141312494874001,-0.862913012504578,-0.498620599508286,-0.065055325627327,-0.864375591278076,-0.4259212911129,-0.200448662042618,-0.882276237010956,-0.160073459148407,-0.505856573581696,-0.847635209560394,-0.156739294528961,-0.530167639255524,-0.833279609680176,-0.258182257413864,-0.449599862098694,-0.855103373527527,-0.377678275108337,-0.292435228824615,-0.878544569015503,-0.281248182058334,-0.376822054386139,-0.882555663585663,-0.258182257413864,-0.449599862098694,-0.855103373527527,-0.377678275108337,-0.292435228824615,-0.878544569015503,-0.485192507505417,-0.141312494874001,-0.862913012504578,-0.4259212911129,-0.200448662042618,-0.882276237010956,-0.485192507505417,-0.141312494874001,-0.862913012504578,-0.524719893932343,-0.0277547519654036,-0.850822269916534,-0.498620599508286,-0.065055325627327,-0.864375591278076,-0.156739294528961,-0.530167639255524,-0.833279609680176,-0.207523912191391,-0.489217460155487,-0.847112715244293,-0.258182257413864,-0.449599862098694,-0.855103373527527,-0.309157609939575,-0.378721058368683,-0.872348487377167,-0.377678275108337,-0.292435228824615,-0.878544569015503,-0.258182257413864,-0.449599862098694,-0.855103373527527,-0.423335134983063,-0.197044551372528,-0.884285271167755,-0.485192507505417,-0.141312494874001,-0.862913012504578,-0.377678275108337,-0.292435228824615,-0.878544569015503,-0.423335134983063,-0.197044551372528,-0.884285271167755,-0.524719893932343,-0.0277547519654036,-0.850822269916534,-0.485192507505417,-0.141312494874001,-0.862913012504578,-0.309157609939575,-0.378721058368683,-0.872348487377167, +-0.258182257413864,-0.449599862098694,-0.855103373527527,-0.207523912191391,-0.489217460155487,-0.847112715244293,-0.423335134983063,-0.197044551372528,-0.884285271167755,-0.377678275108337,-0.292435228824615,-0.878544569015503,-0.309157609939575,-0.378721058368683,-0.872348487377167,-0.423335134983063,-0.197044551372528,-0.884285271167755,-0.445915430784225,-0.124628864228725,-0.886355996131897,-0.524719893932343,-0.0277547519654036,-0.850822269916534,-0.207523912191391,-0.489217460155487,-0.847112715244293,-0.250841170549393,-0.424099117517471,-0.870183050632477,-0.309157609939575,-0.378721058368683,-0.872348487377167,-0.309157609939575,-0.378721058368683,-0.872348487377167,-0.342594265937805,-0.301313787698746,-0.889853358268738,-0.423335134983063,-0.197044551372528,-0.884285271167755,-0.423335134983063,-0.197044551372528,-0.884285271167755,-0.342594265937805,-0.301313787698746,-0.889853358268738,-0.445915430784225,-0.124628864228725,-0.886355996131897,-0.544984877109528,0.033917386084795,-0.837759494781494,-0.524719893932343,-0.0277547519654036,-0.850822269916534,-0.445915430784225,-0.124628864228725,-0.886355996131897,-0.250841170549393,-0.424099117517471,-0.870183050632477,-0.207523912191391,-0.489217460155487,-0.847112715244293,-0.207031965255737,-0.494574069976807,-0.844117343425751,-0.309157609939575,-0.378721058368683,-0.872348487377167,-0.250841170549393,-0.424099117517471,-0.870183050632477,-0.342594265937805,-0.301313787698746,-0.889853358268738,-0.342594265937805,-0.301313787698746,-0.889853358268738,-0.402132332324982,-0.232918575406075,-0.885459423065186,-0.445915430784225,-0.124628864228725,-0.886355996131897,-0.49146232008934,-0.0840618088841438,-0.866832315921783,-0.544984877109528,0.033917386084795,-0.837759494781494,-0.445915430784225,-0.124628864228725,-0.886355996131897,-0.250841170549393,-0.424099117517471,-0.870183050632477,-0.207031965255737,-0.494574069976807,-0.844117343425751,-0.29824087023735,-0.384383797645569,-0.873671174049377,-0.342594265937805,-0.301313787698746,-0.889853358268738, +-0.250841170549393,-0.424099117517471,-0.870183050632477,-0.29824087023735,-0.384383797645569,-0.873671174049377,-0.342594265937805,-0.301313787698746,-0.889853358268738,-0.29824087023735,-0.384383797645569,-0.873671174049377,-0.402132332324982,-0.232918575406075,-0.885459423065186,-0.445915430784225,-0.124628864228725,-0.886355996131897,-0.402132332324982,-0.232918575406075,-0.885459423065186,-0.49146232008934,-0.0840618088841438,-0.866832315921783,-0.49146232008934,-0.0840618088841438,-0.866832315921783,-0.543747067451477,-0.00784854963421822,-0.839212357997894,-0.544984877109528,0.033917386084795,-0.837759494781494,-0.282845854759216,-0.418496757745743,-0.863051891326904,-0.29824087023735,-0.384383797645569,-0.873671174049377,-0.207031965255737,-0.494574069976807,-0.844117343425751,-0.29824087023735,-0.384383797645569,-0.873671174049377,-0.384363174438477,-0.29156619310379,-0.875930368900299,-0.402132332324982,-0.232918575406075,-0.885459423065186,-0.402132332324982,-0.232918575406075,-0.885459423065186,-0.472522348165512,-0.147894248366356,-0.86882096529007,-0.49146232008934,-0.0840618088841438,-0.866832315921783,-0.49146232008934,-0.0840618088841438,-0.866832315921783,-0.472522348165512,-0.147894248366356,-0.86882096529007,-0.543747067451477,-0.00784854963421822,-0.839212357997894,-0.544984877109528,0.033917386084795,-0.837759494781494,-0.543747067451477,-0.00784854963421822,-0.839212357997894,-0.605161845684052,0.0932225584983826,-0.790625393390656,-0.29824087023735,-0.384383797645569,-0.873671174049377,-0.282845854759216,-0.418496757745743,-0.863051891326904,-0.384363174438477,-0.29156619310379,-0.875930368900299,-0.26857390999794,-0.466782569885254,-0.842604279518127,-0.282845854759216,-0.418496757745743,-0.863051891326904,-0.207031965255737,-0.494574069976807,-0.844117343425751,-0.402132332324982,-0.232918575406075,-0.885459423065186,-0.384363174438477,-0.29156619310379,-0.875930368900299,-0.472522348165512,-0.147894248366356,-0.86882096529007,-0.495766550302505,-0.124136529862881,-0.859537959098816,-0.543747067451477,-0.00784854963421822,-0.839212357997894, +-0.472522348165512,-0.147894248366356,-0.86882096529007,-0.571556150913239,-0.0298572555184364,-0.820019483566284,-0.605161845684052,0.0932225584983826,-0.790625393390656,-0.543747067451477,-0.00784854963421822,-0.839212357997894,-0.351598620414734,-0.374402195215225,-0.85802173614502,-0.384363174438477,-0.29156619310379,-0.875930368900299,-0.282845854759216,-0.418496757745743,-0.863051891326904,-0.282845854759216,-0.418496757745743,-0.863051891326904,-0.26857390999794,-0.466782569885254,-0.842604279518127,-0.351598620414734,-0.374402195215225,-0.85802173614502,-0.384363174438477,-0.29156619310379,-0.875930368900299,-0.495766550302505,-0.124136529862881,-0.859537959098816,-0.472522348165512,-0.147894248366356,-0.86882096529007,-0.571556150913239,-0.0298572555184364,-0.820019483566284,-0.543747067451477,-0.00784854963421822,-0.839212357997894,-0.495766550302505,-0.124136529862881,-0.859537959098816,-0.571556150913239,-0.0298572555184364,-0.820019483566284,-0.613461315631866,0.0716683119535446,-0.78646594285965,-0.605161845684052,0.0932225584983826,-0.790625393390656,-0.463316768407822,-0.204713359475136,-0.86222380399704,-0.384363174438477,-0.29156619310379,-0.875930368900299,-0.351598620414734,-0.374402195215225,-0.85802173614502,-0.322462350130081,-0.41818904876709,-0.849197149276733,-0.351598620414734,-0.374402195215225,-0.85802173614502,-0.26857390999794,-0.466782569885254,-0.842604279518127,-0.463316768407822,-0.204713359475136,-0.86222380399704,-0.495766550302505,-0.124136529862881,-0.859537959098816,-0.384363174438477,-0.29156619310379,-0.875930368900299,-0.495766550302505,-0.124136529862881,-0.859537959098816,-0.463316768407822,-0.204713359475136,-0.86222380399704,-0.571556150913239,-0.0298572555184364,-0.820019483566284,-0.571556150913239,-0.0298572555184364,-0.820019483566284,-0.584866523742676,-0.0540646351873875,-0.809325635433197,-0.613461315631866,0.0716683119535446,-0.78646594285965,-0.605161845684052,0.0932225584983826,-0.790625393390656,-0.613461315631866,0.0716683119535446,-0.78646594285965,-0.656244695186615,0.167765647172928,-0.735661208629608, +-0.427561700344086,-0.305727809667587,-0.850718140602112,-0.463316768407822,-0.204713359475136,-0.86222380399704,-0.351598620414734,-0.374402195215225,-0.85802173614502,-0.427561700344086,-0.305727809667587,-0.850718140602112,-0.351598620414734,-0.374402195215225,-0.85802173614502,-0.322462350130081,-0.41818904876709,-0.849197149276733,-0.523868024349213,-0.144636243581772,-0.83942985534668,-0.571556150913239,-0.0298572555184364,-0.820019483566284,-0.463316768407822,-0.204713359475136,-0.86222380399704,-0.571556150913239,-0.0298572555184364,-0.820019483566284,-0.523868024349213,-0.144636243581772,-0.83942985534668,-0.584866523742676,-0.0540646351873875,-0.809325635433197,-0.584866523742676,-0.0540646351873875,-0.809325635433197,-0.570946753025055,-0.00283921393565834,-0.820982098579407,-0.613461315631866,0.0716683119535446,-0.78646594285965,-0.621401250362396,0.11330384016037,-0.775256454944611,-0.656244695186615,0.167765647172928,-0.735661208629608,-0.613461315631866,0.0716683119535446,-0.78646594285965,-0.523868024349213,-0.144636243581772,-0.83942985534668,-0.463316768407822,-0.204713359475136,-0.86222380399704,-0.427561700344086,-0.305727809667587,-0.850718140602112,-0.342664122581482,-0.327983170747757,-0.880345523357391,-0.427561700344086,-0.305727809667587,-0.850718140602112,-0.322462350130081,-0.41818904876709,-0.849197149276733,-0.488873928785324,-0.175844103097916,-0.854447782039642,-0.584866523742676,-0.0540646351873875,-0.809325635433197,-0.523868024349213,-0.144636243581772,-0.83942985534668,-0.584866523742676,-0.0540646351873875,-0.809325635433197,-0.488873928785324,-0.175844103097916,-0.854447782039642,-0.570946753025055,-0.00283921393565834,-0.820982098579407,-0.621401250362396,0.11330384016037,-0.775256454944611,-0.613461315631866,0.0716683119535446,-0.78646594285965,-0.570946753025055,-0.00283921393565834,-0.820982098579407,-0.621401250362396,0.11330384016037,-0.775256454944611,-0.684755086898804,0.232766196131706,-0.690601348876953,-0.656244695186615,0.167765647172928,-0.735661208629608,-0.488873928785324,-0.175844103097916,-0.854447782039642, +-0.523868024349213,-0.144636243581772,-0.83942985534668,-0.427561700344086,-0.305727809667587,-0.850718140602112,-0.342664122581482,-0.327983170747757,-0.880345523357391,-0.488873928785324,-0.175844103097916,-0.854447782039642,-0.427561700344086,-0.305727809667587,-0.850718140602112,-0.511155128479004,-0.0751373246312141,-0.856197774410248,-0.570946753025055,-0.00283921393565834,-0.820982098579407,-0.488873928785324,-0.175844103097916,-0.854447782039642,-0.621401250362396,0.11330384016037,-0.775256454944611,-0.570946753025055,-0.00283921393565834,-0.820982098579407,-0.528958678245544,0.0225066151469946,-0.84834897518158,-0.621401250362396,0.11330384016037,-0.775256454944611,-0.6242755651474,0.15438324213028,-0.765797436237335,-0.684755086898804,0.232766196131706,-0.690601348876953,-0.380192220211029,-0.242155939340591,-0.89264452457428,-0.488873928785324,-0.175844103097916,-0.854447782039642,-0.342664122581482,-0.327983170747757,-0.880345523357391,-0.570946753025055,-0.00283921393565834,-0.820982098579407,-0.511155128479004,-0.0751373246312141,-0.856197774410248,-0.528958678245544,0.0225066151469946,-0.84834897518158,-0.511155128479004,-0.0751373246312141,-0.856197774410248,-0.488873928785324,-0.175844103097916,-0.854447782039642,-0.441275179386139,-0.185230329632759,-0.878046631813049,-0.528958678245544,0.0225066151469946,-0.84834897518158,-0.6242755651474,0.15438324213028,-0.765797436237335,-0.621401250362396,0.11330384016037,-0.775256454944611,-0.684755086898804,0.232766196131706,-0.690601348876953,-0.6242755651474,0.15438324213028,-0.765797436237335,-0.693003118038177,0.275843530893326,-0.666075706481934,-0.380192220211029,-0.242155939340591,-0.89264452457428,-0.441275179386139,-0.185230329632759,-0.878046631813049,-0.488873928785324,-0.175844103097916,-0.854447782039642,-0.341610372066498,-0.279393762350082,-0.897352397441864,-0.380192220211029,-0.242155939340591,-0.89264452457428,-0.342664122581482,-0.327983170747757,-0.880345523357391,-0.511155128479004,-0.0751373246312141,-0.856197774410248,-0.475844830274582,-0.0902857258915901,-0.874882876873016, +-0.528958678245544,0.0225066151469946,-0.84834897518158,-0.441275179386139,-0.185230329632759,-0.878046631813049,-0.475844830274582,-0.0902857258915901,-0.874882876873016,-0.511155128479004,-0.0751373246312141,-0.856197774410248,-0.551616787910461,0.13411907851696,-0.823244094848633,-0.6242755651474,0.15438324213028,-0.765797436237335,-0.528958678245544,0.0225066151469946,-0.84834897518158,-0.6242755651474,0.15438324213028,-0.765797436237335,-0.596718966960907,0.25280749797821,-0.761586964130402,-0.693003118038177,0.275843530893326,-0.666075706481934,-0.380192220211029,-0.242155939340591,-0.89264452457428,-0.341610372066498,-0.279393762350082,-0.897352397441864,-0.441275179386139,-0.185230329632759,-0.878046631813049,-0.402011513710022,-0.0612742193043232,-0.913582026958466,-0.528958678245544,0.0225066151469946,-0.84834897518158,-0.475844830274582,-0.0902857258915901,-0.874882876873016,-0.441275179386139,-0.185230329632759,-0.878046631813049,-0.391232490539551,-0.186095669865608,-0.901279866695404,-0.475844830274582,-0.0902857258915901,-0.874882876873016,-0.6242755651474,0.15438324213028,-0.765797436237335,-0.551616787910461,0.13411907851696,-0.823244094848633,-0.596718966960907,0.25280749797821,-0.761586964130402,-0.551616787910461,0.13411907851696,-0.823244094848633,-0.528958678245544,0.0225066151469946,-0.84834897518158,-0.434198677539825,0.0786142274737358,-0.897380173206329,-0.596718966960907,0.25280749797821,-0.761586964130402,-0.649209976196289,0.372879147529602,-0.662938416004181,-0.693003118038177,0.275843530893326,-0.666075706481934,-0.441275179386139,-0.185230329632759,-0.878046631813049,-0.341610372066498,-0.279393762350082,-0.897352397441864,-0.391232490539551,-0.186095669865608,-0.901279866695404,-0.402011513710022,-0.0612742193043232,-0.913582026958466,-0.434198677539825,0.0786142274737358,-0.897380173206329,-0.528958678245544,0.0225066151469946,-0.84834897518158,-0.402011513710022,-0.0612742193043232,-0.913582026958466,-0.475844830274582,-0.0902857258915901,-0.874882876873016,-0.391232490539551,-0.186095669865608,-0.901279866695404, +-0.478839069604874,0.186456322669983,-0.857873618602753,-0.596718966960907,0.25280749797821,-0.761586964130402,-0.551616787910461,0.13411907851696,-0.823244094848633,-0.478839069604874,0.186456322669983,-0.857873618602753,-0.551616787910461,0.13411907851696,-0.823244094848633,-0.434198677539825,0.0786142274737358,-0.897380173206329,-0.596718966960907,0.25280749797821,-0.761586964130402,-0.517750918865204,0.384319126605988,-0.764351189136505,-0.649209976196289,0.372879147529602,-0.662938416004181,-0.341610372066498,-0.279393762350082,-0.897352397441864,-0.281331807374954,-0.294681221246719,-0.913244366645813,-0.391232490539551,-0.186095669865608,-0.901279866695404,-0.402011513710022,-0.0612742193043232,-0.913582026958466,-0.303342044353485,-0.0325490608811378,-0.952325582504272,-0.434198677539825,0.0786142274737358,-0.897380173206329,-0.402011513710022,-0.0612742193043232,-0.913582026958466,-0.391232490539551,-0.186095669865608,-0.901279866695404,-0.322760671377182,-0.211426883935928,-0.922563910484314,-0.478839069604874,0.186456322669983,-0.857873618602753,-0.493766754865646,0.285687506198883,-0.821326375007629,-0.596718966960907,0.25280749797821,-0.761586964130402,-0.273532658815384,0.13772913813591,-0.95195084810257,-0.478839069604874,0.186456322669983,-0.857873618602753,-0.434198677539825,0.0786142274737358,-0.897380173206329,-0.596718966960907,0.25280749797821,-0.761586964130402,-0.493766754865646,0.285687506198883,-0.821326375007629,-0.517750918865204,0.384319126605988,-0.764351189136505,-0.545680463314056,0.508948564529419,-0.66573566198349,-0.649209976196289,0.372879147529602,-0.662938416004181,-0.517750918865204,0.384319126605988,-0.764351189136505,-0.322760671377182,-0.211426883935928,-0.922563910484314,-0.391232490539551,-0.186095669865608,-0.901279866695404,-0.281331807374954,-0.294681221246719,-0.913244366645813,-0.402011513710022,-0.0612742193043232,-0.913582026958466,-0.296341300010681,-0.145342439413071,-0.943958282470703,-0.303342044353485,-0.0325490608811378,-0.952325582504272,-0.273532658815384,0.13772913813591,-0.95195084810257, +-0.434198677539825,0.0786142274737358,-0.897380173206329,-0.303342044353485,-0.0325490608811378,-0.952325582504272,-0.322760671377182,-0.211426883935928,-0.922563910484314,-0.296341300010681,-0.145342439413071,-0.943958282470703,-0.402011513710022,-0.0612742193043232,-0.913582026958466,-0.478839069604874,0.186456322669983,-0.857873618602753,-0.370775729417801,0.254168808460236,-0.893265604972839,-0.493766754865646,0.285687506198883,-0.821326375007629,-0.273532658815384,0.13772913813591,-0.95195084810257,-0.370775729417801,0.254168808460236,-0.893265604972839,-0.478839069604874,0.186456322669983,-0.857873618602753,-0.376515060663223,0.377286076545715,-0.846103727817535,-0.517750918865204,0.384319126605988,-0.764351189136505,-0.493766754865646,0.285687506198883,-0.821326375007629,-0.323579967021942,0.549561381340027,-0.770245492458344,-0.545680463314056,0.508948564529419,-0.66573566198349,-0.517750918865204,0.384319126605988,-0.764351189136505,-0.162020012736321,-0.159517049789429,-0.973808765411377,-0.303342044353485,-0.0325490608811378,-0.952325582504272,-0.296341300010681,-0.145342439413071,-0.943958282470703,-0.273532658815384,0.13772913813591,-0.95195084810257,-0.303342044353485,-0.0325490608811378,-0.952325582504272,-0.0464253909885883,-0.0177971906960011,-0.998763144016266,-0.322760671377182,-0.211426883935928,-0.922563910484314,-0.227206453680992,-0.267461210489273,-0.936398208141327,-0.296341300010681,-0.145342439413071,-0.943958282470703,-0.493766754865646,0.285687506198883,-0.821326375007629,-0.370775729417801,0.254168808460236,-0.893265604972839,-0.376515060663223,0.377286076545715,-0.846103727817535,-0.376515060663223,0.377286076545715,-0.846103727817535,-0.323579967021942,0.549561381340027,-0.770245492458344,-0.517750918865204,0.384319126605988,-0.764351189136505,-0.545680463314056,0.508948564529419,-0.66573566198349,-0.323579967021942,0.549561381340027,-0.770245492458344,-0.449537098407745,0.684517741203308,-0.573891639709473,-0.0464253909885883,-0.0177971906960011,-0.998763144016266,-0.303342044353485,-0.0325490608811378,-0.952325582504272, +-0.162020012736321,-0.159517049789429,-0.973808765411377,-0.227206453680992,-0.267461210489273,-0.936398208141327,-0.162020012736321,-0.159517049789429,-0.973808765411377,-0.296341300010681,-0.145342439413071,-0.943958282470703,0.821252405643463,0.430427610874176,0.37453505396843,0.690792083740234,0.72295081615448,0.0121760629117489,0.779515206813812,0.425029695034027,0.46011483669281,0.787440359592438,0.616327285766602,0.00884426943957806,0.690792083740234,0.72295081615448,0.0121760629117489,0.821252405643463,0.430427610874176,0.37453505396843,0.842786490917206,0.344725906848907,0.413370043039322,0.821252405643463,0.430427610874176,0.37453505396843,0.779515206813812,0.425029695034027,0.46011483669281,-0.340127378702164,0.348741143941879,-0.873322904109955,0.0867357552051544,0.693573415279388,-0.715145289897919,0.281916826963425,0.767829835414886,-0.575291395187378,0.0867357552051544,0.693573415279388,-0.715145289897919,0.690792083740234,0.72295081615448,0.0121760629117489,0.281916826963425,0.767829835414886,-0.575291395187378,0.787440359592438,0.616327285766602,0.00884426943957806,0.281916826963425,0.767829835414886,-0.575291395187378,0.690792083740234,0.72295081615448,0.0121760629117489,0.913149654865265,0.402100205421448,0.0668811947107315,0.787440359592438,0.616327285766602,0.00884426943957806,0.821252405643463,0.430427610874176,0.37453505396843,0.842786490917206,0.344725906848907,0.413370043039322,0.913149654865265,0.402100205421448,0.0668811947107315,0.821252405643463,0.430427610874176,0.37453505396843,0.0452613793313503,0.481111407279968,-0.875490188598633,-0.340127378702164,0.348741143941879,-0.873322904109955,0.281916826963425,0.767829835414886,-0.575291395187378,0.688639044761658,0.570120811462402,-0.448038309812546,0.281916826963425,0.767829835414886,-0.575291395187378,0.787440359592438,0.616327285766602,0.00884426943957806,0.913149654865265,0.402100205421448,0.0668811947107315,0.688639044761658,0.570120811462402,-0.448038309812546,0.787440359592438,0.616327285766602,0.00884426943957806,0.913149654865265,0.402100205421448,0.0668811947107315, +0.842786490917206,0.344725906848907,0.413370043039322,0.919832766056061,0.3608518242836,0.153926342725754,-0.340127378702164,0.348741143941879,-0.873322904109955,0.0452613793313503,0.481111407279968,-0.875490188598633,-0.246586918830872,0.201044395565987,-0.948037981987,0.688639044761658,0.570120811462402,-0.448038309812546,0.0452613793313503,0.481111407279968,-0.875490188598633,0.281916826963425,0.767829835414886,-0.575291395187378,0.494765132665634,0.419842183589935,-0.760881006717682,0.688639044761658,0.570120811462402,-0.448038309812546,0.913149654865265,0.402100205421448,0.0668811947107315,0.842786490917206,0.344725906848907,0.413370043039322,0.874907076358795,0.343086570501328,0.341802835464478,0.919832766056061,0.3608518242836,0.153926342725754,0.913149654865265,0.402100205421448,0.0668811947107315,0.919832766056061,0.3608518242836,0.153926342725754,0.876393139362335,0.437095105648041,-0.202194422483444,0.494765132665634,0.419842183589935,-0.760881006717682,-0.246586918830872,0.201044395565987,-0.948037981987,0.0452613793313503,0.481111407279968,-0.875490188598633,0.494765132665634,0.419842183589935,-0.760881006717682,0.0452613793313503,0.481111407279968,-0.875490188598633,0.688639044761658,0.570120811462402,-0.448038309812546,0.913149654865265,0.402100205421448,0.0668811947107315,0.876393139362335,0.437095105648041,-0.202194422483444,0.494765132665634,0.419842183589935,-0.760881006717682,0.818791151046753,0.352441251277924,0.453173369169235,0.874907076358795,0.343086570501328,0.341802835464478,0.842786490917206,0.344725906848907,0.413370043039322,0.906435251235962,0.408212661743164,0.108339197933674,0.919832766056061,0.3608518242836,0.153926342725754,0.874907076358795,0.343086570501328,0.341802835464478,0.876393139362335,0.437095105648041,-0.202194422483444,0.919832766056061,0.3608518242836,0.153926342725754,0.711552083492279,0.467286109924316,-0.524725794792175,-0.246586918830872,0.201044395565987,-0.948037981987,0.494765132665634,0.419842183589935,-0.760881006717682,-0.103350751101971,0.169804632663727,-0.980043292045593, +0.494765132665634,0.419842183589935,-0.760881006717682,0.876393139362335,0.437095105648041,-0.202194422483444,0.711552083492279,0.467286109924316,-0.524725794792175,0.869438827037811,0.317747890949249,0.378301948308945,0.874907076358795,0.343086570501328,0.341802835464478,0.818791151046753,0.352441251277924,0.453173369169235,0.906435251235962,0.408212661743164,0.108339197933674,0.711552083492279,0.467286109924316,-0.524725794792175,0.919832766056061,0.3608518242836,0.153926342725754,0.906435251235962,0.408212661743164,0.108339197933674,0.874907076358795,0.343086570501328,0.341802835464478,0.974393427371979,0.221952125430107,-0.0359800830483437,-0.103350751101971,0.169804632663727,-0.980043292045593,0.494765132665634,0.419842183589935,-0.760881006717682,0.711552083492279,0.467286109924316,-0.524725794792175,0.869438827037811,0.317747890949249,0.378301948308945,0.939753174781799,0.245412394404411,0.237984001636505,0.874907076358795,0.343086570501328,0.341802835464478,0.869438827037811,0.317747890949249,0.378301948308945,0.818791151046753,0.352441251277924,0.453173369169235,0.904684722423553,0.271347522735596,0.328505605459213,0.711552083492279,0.467286109924316,-0.524725794792175,0.906435251235962,0.408212661743164,0.108339197933674,0.904145658016205,0.300250291824341,-0.303924739360809,0.939753174781799,0.245412394404411,0.237984001636505,0.974393427371979,0.221952125430107,-0.0359800830483437,0.874907076358795,0.343086570501328,0.341802835464478,0.906435251235962,0.408212661743164,0.108339197933674,0.974393427371979,0.221952125430107,-0.0359800830483437,0.904145658016205,0.300250291824341,-0.303924739360809,0.00864444579929113,0.0953328758478165,-0.99540776014328,-0.103350751101971,0.169804632663727,-0.980043292045593,0.711552083492279,0.467286109924316,-0.524725794792175,0.965241432189941,0.141782134771347,0.21956017613411,0.939753174781799,0.245412394404411,0.237984001636505,0.869438827037811,0.317747890949249,0.378301948308945,0.965241432189941,0.141782134771347,0.21956017613411,0.869438827037811,0.317747890949249,0.378301948308945, +0.904684722423553,0.271347522735596,0.328505605459213,0.711552083492279,0.467286109924316,-0.524725794792175,0.904145658016205,0.300250291824341,-0.303924739360809,0.550391018390656,0.287493288516998,-0.783847689628601,0.974393427371979,0.221952125430107,-0.0359800830483437,0.939753174781799,0.245412394404411,0.237984001636505,0.973211944103241,0.0169193670153618,-0.22928623855114,0.8268683552742,-0.0100430678576231,-0.562305748462677,0.904145658016205,0.300250291824341,-0.303924739360809,0.974393427371979,0.221952125430107,-0.0359800830483437,0.00864444579929113,0.0953328758478165,-0.99540776014328,-0.431080013513565,-0.115305848419666,-0.894915878772736,-0.103350751101971,0.169804632663727,-0.980043292045593,0.711552083492279,0.467286109924316,-0.524725794792175,0.550391018390656,0.287493288516998,-0.783847689628601,0.00864444579929113,0.0953328758478165,-0.99540776014328,0.965241432189941,0.141782134771347,0.21956017613411,0.999696671962738,-0.000871743832249194,0.0246097389608622,0.939753174781799,0.245412394404411,0.237984001636505,0.965241432189941,0.141782134771347,0.21956017613411,0.904684722423553,0.271347522735596,0.328505605459213,0.997614145278931,0.0135507816448808,0.0676923766732216,0.550391018390656,0.287493288516998,-0.783847689628601,0.904145658016205,0.300250291824341,-0.303924739360809,0.478156477212906,-0.0630126968026161,-0.876011192798615,0.973211944103241,0.0169193670153618,-0.22928623855114,0.939753174781799,0.245412394404411,0.237984001636505,0.999696671962738,-0.000871743832249194,0.0246097389608622,0.974393427371979,0.221952125430107,-0.0359800830483437,0.973211944103241,0.0169193670153618,-0.22928623855114,0.723957061767578,-0.108858287334442,-0.681201815605164,0.478156477212906,-0.0630126968026161,-0.876011192798615,0.904145658016205,0.300250291824341,-0.303924739360809,0.8268683552742,-0.0100430678576231,-0.562305748462677,0.8268683552742,-0.0100430678576231,-0.562305748462677,0.974393427371979,0.221952125430107,-0.0359800830483437,0.723957061767578,-0.108858287334442,-0.681201815605164, +0.00864444579929113,0.0953328758478165,-0.99540776014328,-0.167247250676155,-0.209401547908783,-0.963420569896698,-0.431080013513565,-0.115305848419666,-0.894915878772736,0.00864444579929113,0.0953328758478165,-0.99540776014328,0.550391018390656,0.287493288516998,-0.783847689628601,0.478156477212906,-0.0630126968026161,-0.876011192798615,0.965241432189941,0.141782134771347,0.21956017613411,0.977089107036591,-0.208284959197044,-0.0437514409422874,0.999696671962738,-0.000871743832249194,0.0246097389608622,0.950440168380737,0.168193981051445,0.26148447394371,0.997614145278931,0.0135507816448808,0.0676923766732216,0.904684722423553,0.271347522735596,0.328505605459213,0.997614145278931,0.0135507816448808,0.0676923766732216,0.977089107036591,-0.208284959197044,-0.0437514409422874,0.965241432189941,0.141782134771347,0.21956017613411,0.973211944103241,0.0169193670153618,-0.22928623855114,0.999696671962738,-0.000871743832249194,0.0246097389608622,0.872268676757813,-0.237518519163132,-0.427471876144409,0.760581910610199,-0.243008509278297,-0.60204815864563,0.723957061767578,-0.108858287334442,-0.681201815605164,0.973211944103241,0.0169193670153618,-0.22928623855114,0.294533044099808,-0.268085092306137,-0.917267978191376,0.478156477212906,-0.0630126968026161,-0.876011192798615,0.8268683552742,-0.0100430678576231,-0.562305748462677,0.294533044099808,-0.268085092306137,-0.917267978191376,0.8268683552742,-0.0100430678576231,-0.562305748462677,0.723957061767578,-0.108858287334442,-0.681201815605164,0.00864444579929113,0.0953328758478165,-0.99540776014328,0.478156477212906,-0.0630126968026161,-0.876011192798615,-0.167247250676155,-0.209401547908783,-0.963420569896698,-0.519632995128632,-0.251721739768982,-0.816466510295868,-0.431080013513565,-0.115305848419666,-0.894915878772736,-0.167247250676155,-0.209401547908783,-0.963420569896698,0.977089107036591,-0.208284959197044,-0.0437514409422874,0.875648021697998,-0.348684132099152,-0.334155261516571,0.999696671962738,-0.000871743832249194,0.0246097389608622,0.987868249416351,-0.146669581532478,-0.0510322339832783, +0.997614145278931,0.0135507816448808,0.0676923766732216,0.950440168380737,0.168193981051445,0.26148447394371,0.904684722423553,0.271347522735596,0.328505605459213,0.847056686878204,0.326450973749161,0.419433683156967,0.950440168380737,0.168193981051445,0.26148447394371,0.997614145278931,0.0135507816448808,0.0676923766732216,0.859579265117645,-0.398241937160492,-0.320197850465775,0.977089107036591,-0.208284959197044,-0.0437514409422874,0.875648021697998,-0.348684132099152,-0.334155261516571,0.872268676757813,-0.237518519163132,-0.427471876144409,0.999696671962738,-0.000871743832249194,0.0246097389608622,0.872268676757813,-0.237518519163132,-0.427471876144409,0.722086489200592,-0.315779626369476,-0.61552757024765,0.973211944103241,0.0169193670153618,-0.22928623855114,0.760581910610199,-0.243008509278297,-0.60204815864563,0.438501954078674,-0.312903076410294,-0.842500746250153,0.723957061767578,-0.108858287334442,-0.681201815605164,0.760581910610199,-0.243008509278297,-0.60204815864563,0.973211944103241,0.0169193670153618,-0.22928623855114,0.722086489200592,-0.315779626369476,-0.61552757024765,0.294533044099808,-0.268085092306137,-0.917267978191376,-0.167247250676155,-0.209401547908783,-0.963420569896698,0.478156477212906,-0.0630126968026161,-0.876011192798615,0.294533044099808,-0.268085092306137,-0.917267978191376,0.723957061767578,-0.108858287334442,-0.681201815605164,0.0177003238350153,-0.382669568061829,-0.923715651035309,-0.167247250676155,-0.209401547908783,-0.963420569896698,-0.258984953165054,-0.316251188516617,-0.912640035152435,-0.519632995128632,-0.251721739768982,-0.816466510295868,0.977089107036591,-0.208284959197044,-0.0437514409422874,0.58751767873764,-0.606679737567902,-0.535501956939697,0.875648021697998,-0.348684132099152,-0.334155261516571,0.859579265117645,-0.398241937160492,-0.320197850465775,0.997614145278931,0.0135507816448808,0.0676923766732216,0.987868249416351,-0.146669581532478,-0.0510322339832783,0.983104348182678,0.013426885008812,0.182552456855774,0.987868249416351,-0.146669581532478,-0.0510322339832783, +0.950440168380737,0.168193981051445,0.26148447394371,0.983104348182678,0.013426885008812,0.182552456855774,0.950440168380737,0.168193981051445,0.26148447394371,0.847056686878204,0.326450973749161,0.419433683156967,0.859579265117645,-0.398241937160492,-0.320197850465775,0.58751767873764,-0.606679737567902,-0.535501956939697,0.977089107036591,-0.208284959197044,-0.0437514409422874,0.875648021697998,-0.348684132099152,-0.334155261516571,0.354228407144547,-0.543577373027802,-0.76095062494278,0.872268676757813,-0.237518519163132,-0.427471876144409,0.722086489200592,-0.315779626369476,-0.61552757024765,0.872268676757813,-0.237518519163132,-0.427471876144409,0.354228407144547,-0.543577373027802,-0.76095062494278,0.243664786219597,-0.480725526809692,-0.842336237430573,0.438501954078674,-0.312903076410294,-0.842500746250153,0.760581910610199,-0.243008509278297,-0.60204815864563,0.0177003238350153,-0.382669568061829,-0.923715651035309,0.723957061767578,-0.108858287334442,-0.681201815605164,0.438501954078674,-0.312903076410294,-0.842500746250153,0.760581910610199,-0.243008509278297,-0.60204815864563,0.722086489200592,-0.315779626369476,-0.61552757024765,0.243664786219597,-0.480725526809692,-0.842336237430573,0.294533044099808,-0.268085092306137,-0.917267978191376,-0.258984953165054,-0.316251188516617,-0.912640035152435,-0.167247250676155,-0.209401547908783,-0.963420569896698,0.294533044099808,-0.268085092306137,-0.917267978191376,0.0177003238350153,-0.382669568061829,-0.923715651035309,-0.258984953165054,-0.316251188516617,-0.912640035152435,-0.258984953165054,-0.316251188516617,-0.912640035152435,-0.446410536766052,-0.396181344985962,-0.802345216274261,-0.519632995128632,-0.251721739768982,-0.816466510295868,0.875648021697998,-0.348684132099152,-0.334155261516571,0.58751767873764,-0.606679737567902,-0.535501956939697,0.354228407144547,-0.543577373027802,-0.76095062494278,0.859579265117645,-0.398241937160492,-0.320197850465775,0.987868249416351,-0.146669581532478,-0.0510322339832783,0.734976530075073,-0.540907800197601,-0.408935308456421, +0.875124573707581,-0.428804278373718,-0.22424028813839,0.987868249416351,-0.146669581532478,-0.0510322339832783,0.983104348182678,0.013426885008812,0.182552456855774,0.847056686878204,0.326450973749161,0.419433683156967,0.920381128787994,0.174091443419456,0.35012948513031,0.983104348182678,0.013426885008812,0.182552456855774,0.58751767873764,-0.606679737567902,-0.535501956939697,0.859579265117645,-0.398241937160492,-0.320197850465775,0.212719798088074,-0.717150926589966,-0.663660049438477,0.243664786219597,-0.480725526809692,-0.842336237430573,0.722086489200592,-0.315779626369476,-0.61552757024765,0.354228407144547,-0.543577373027802,-0.76095062494278,0.0177003238350153,-0.382669568061829,-0.923715651035309,0.438501954078674,-0.312903076410294,-0.842500746250153,0.243664786219597,-0.480725526809692,-0.842336237430573,-0.258984953165054,-0.316251188516617,-0.912640035152435,0.0177003238350153,-0.382669568061829,-0.923715651035309,-0.446410536766052,-0.396181344985962,-0.802345216274261,-0.108794905245304,-0.63979697227478,-0.76080447435379,0.354228407144547,-0.543577373027802,-0.76095062494278,0.58751767873764,-0.606679737567902,-0.535501956939697,0.875124573707581,-0.428804278373718,-0.22424028813839,0.734976530075073,-0.540907800197601,-0.408935308456421,0.987868249416351,-0.146669581532478,-0.0510322339832783,0.734976530075073,-0.540907800197601,-0.408935308456421,0.212719798088074,-0.717150926589966,-0.663660049438477,0.859579265117645,-0.398241937160492,-0.320197850465775,0.875124573707581,-0.428804278373718,-0.22424028813839,0.983104348182678,0.013426885008812,0.182552456855774,0.914265394210815,-0.401454359292984,-0.0543417185544968,0.847056686878204,0.326450973749161,0.419433683156967,0.758879959583282,0.384290248155594,0.525758683681488,0.920381128787994,0.174091443419456,0.35012948513031,0.96470832824707,-0.220447063446045,0.144016832113266,0.983104348182678,0.013426885008812,0.182552456855774,0.920381128787994,0.174091443419456,0.35012948513031,-0.108794905245304,-0.63979697227478,-0.76080447435379,0.58751767873764,-0.606679737567902,-0.535501956939697, +0.212719798088074,-0.717150926589966,-0.663660049438477,0.243664786219597,-0.480725526809692,-0.842336237430573,0.354228407144547,-0.543577373027802,-0.76095062494278,-0.258272796869278,-0.529074907302856,-0.808316051959991,0.243664786219597,-0.480725526809692,-0.842336237430573,-0.258272796869278,-0.529074907302856,-0.808316051959991,0.0177003238350153,-0.382669568061829,-0.923715651035309,-0.258272796869278,-0.529074907302856,-0.808316051959991,-0.446410536766052,-0.396181344985962,-0.802345216274261,0.0177003238350153,-0.382669568061829,-0.923715651035309,-0.258272796869278,-0.529074907302856,-0.808316051959991,0.354228407144547,-0.543577373027802,-0.76095062494278,-0.108794905245304,-0.63979697227478,-0.76080447435379,0.875124573707581,-0.428804278373718,-0.22424028813839,0.355656117200851,-0.735060095787048,-0.577230632305145,0.734976530075073,-0.540907800197601,-0.408935308456421,0.212719798088074,-0.717150926589966,-0.663660049438477,0.734976530075073,-0.540907800197601,-0.408935308456421,0.355656117200851,-0.735060095787048,-0.577230632305145,0.96470832824707,-0.220447063446045,0.144016832113266,0.914265394210815,-0.401454359292984,-0.0543417185544968,0.983104348182678,0.013426885008812,0.182552456855774,0.875124573707581,-0.428804278373718,-0.22424028813839,0.914265394210815,-0.401454359292984,-0.0543417185544968,0.58896267414093,-0.707315683364868,-0.390931308269501,0.758879959583282,0.384290248155594,0.525758683681488,0.94767153263092,-0.00335598667152226,0.319229245185852,0.920381128787994,0.174091443419456,0.35012948513031,0.94767153263092,-0.00335598667152226,0.319229245185852,0.96470832824707,-0.220447063446045,0.144016832113266,0.920381128787994,0.174091443419456,0.35012948513031,-0.108794905245304,-0.63979697227478,-0.76080447435379,0.212719798088074,-0.717150926589966,-0.663660049438477,-0.32580640912056,-0.631749749183655,-0.703379273414612,-0.258272796869278,-0.529074907302856,-0.808316051959991,-0.108794905245304,-0.63979697227478,-0.76080447435379,-0.407715231180191,-0.555059313774109,-0.725036144256592, +0.355656117200851,-0.735060095787048,-0.577230632305145,0.875124573707581,-0.428804278373718,-0.22424028813839,0.58896267414093,-0.707315683364868,-0.390931308269501,0.212719798088074,-0.717150926589966,-0.663660049438477,0.355656117200851,-0.735060095787048,-0.577230632305145,-0.199936538934708,-0.716123342514038,-0.668724596500397,0.96470832824707,-0.220447063446045,0.144016832113266,0.6811363697052,-0.703610241413116,-0.202449172735214,0.914265394210815,-0.401454359292984,-0.0543417185544968,0.6811363697052,-0.703610241413116,-0.202449172735214,0.58896267414093,-0.707315683364868,-0.390931308269501,0.914265394210815,-0.401454359292984,-0.0543417185544968,0.94767153263092,-0.00335598667152226,0.319229245185852,0.758879959583282,0.384290248155594,0.525758683681488,0.889263927936554,0.152903854846954,0.431080102920532,0.94767153263092,-0.00335598667152226,0.319229245185852,0.896109402179718,-0.443595260381699,0.0145273795351386,0.96470832824707,-0.220447063446045,0.144016832113266,-0.32580640912056,-0.631749749183655,-0.703379273414612,0.212719798088074,-0.717150926589966,-0.663660049438477,-0.199936538934708,-0.716123342514038,-0.668724596500397,-0.108794905245304,-0.63979697227478,-0.76080447435379,-0.32580640912056,-0.631749749183655,-0.703379273414612,-0.407715231180191,-0.555059313774109,-0.725036144256592,0.355656117200851,-0.735060095787048,-0.577230632305145,0.58896267414093,-0.707315683364868,-0.390931308269501,0.133064717054367,-0.825734555721283,-0.548138678073883,-0.199936538934708,-0.716123342514038,-0.668724596500397,0.355656117200851,-0.735060095787048,-0.577230632305145,0.133064717054367,-0.825734555721283,-0.548138678073883,0.96470832824707,-0.220447063446045,0.144016832113266,0.896109402179718,-0.443595260381699,0.0145273795351386,0.6811363697052,-0.703610241413116,-0.202449172735214,0.6811363697052,-0.703610241413116,-0.202449172735214,0.133064717054367,-0.825734555721283,-0.548138678073883,0.58896267414093,-0.707315683364868,-0.390931308269501,0.94767153263092,-0.00335598667152226,0.319229245185852, +0.889263927936554,0.152903854846954,0.431080102920532,0.896109402179718,-0.443595260381699,0.0145273795351386,-0.0434652380645275,-0.816667079925537,-0.575469851493835,-0.199936538934708,-0.716123342514038,-0.668724596500397,0.133064717054367,-0.825734555721283,-0.548138678073883,0.433459788560867,-0.817594349384308,-0.379014492034912,0.6811363697052,-0.703610241413116,-0.202449172735214,0.896109402179718,-0.443595260381699,0.0145273795351386,0.133064717054367,-0.825734555721283,-0.548138678073883,0.6811363697052,-0.703610241413116,-0.202449172735214,0.433459788560867,-0.817594349384308,-0.379014492034912,0.952232420444489,-0.293303668498993,0.085007406771183,0.896109402179718,-0.443595260381699,0.0145273795351386,0.889263927936554,0.152903854846954,0.431080102920532,-0.0434652380645275,-0.816667079925537,-0.575469851493835,0.133064717054367,-0.825734555721283,-0.548138678073883,0.433459788560867,-0.817594349384308,-0.379014492034912,0.581612765789032,-0.723864674568176,-0.371141999959946,0.433459788560867,-0.817594349384308,-0.379014492034912,0.896109402179718,-0.443595260381699,0.0145273795351386,0.952232420444489,-0.293303668498993,0.085007406771183,0.581612765789032,-0.723864674568176,-0.371141999959946,0.896109402179718,-0.443595260381699,0.0145273795351386,0.881018102169037,0.0932691916823387,0.463797271251678,0.952232420444489,-0.293303668498993,0.085007406771183,0.889263927936554,0.152903854846954,0.431080102920532,0.581612765789032,-0.723864674568176,-0.371141999959946,-0.0434652380645275,-0.816667079925537,-0.575469851493835,0.433459788560867,-0.817594349384308,-0.379014492034912,0.581612765789032,-0.723864674568176,-0.371141999959946,0.952232420444489,-0.293303668498993,0.085007406771183,0.723192155361176,-0.66845840215683,-0.173655673861504,0.886206865310669,-0.424130737781525,0.186414510011673,0.952232420444489,-0.293303668498993,0.085007406771183,0.881018102169037,0.0932691916823387,0.463797271251678,0.581612765789032,-0.723864674568176,-0.371141999959946,0.262285321950912,-0.858041763305664,-0.441554754972458, +-0.0434652380645275,-0.816667079925537,-0.575469851493835,0.886206865310669,-0.424130737781525,0.186414510011673,0.723192155361176,-0.66845840215683,-0.173655673861504,0.952232420444489,-0.293303668498993,0.085007406771183,0.581612765789032,-0.723864674568176,-0.371141999959946,0.723192155361176,-0.66845840215683,-0.173655673861504,0.262285321950912,-0.858041763305664,-0.441554754972458,0.886206865310669,-0.424130737781525,0.186414510011673,0.881018102169037,0.0932691916823387,0.463797271251678,0.935642600059509,-0.282773077487946,0.211215987801552,-0.0434652380645275,-0.816667079925537,-0.575469851493835,0.262285321950912,-0.858041763305664,-0.441554754972458,0.00936393160372972,-0.858172357082367,-0.513276219367981,0.517147660255432,-0.834819555282593,-0.18877087533474,0.723192155361176,-0.66845840215683,-0.173655673861504,0.886206865310669,-0.424130737781525,0.186414510011673,0.723192155361176,-0.66845840215683,-0.173655673861504,0.517147660255432,-0.834819555282593,-0.18877087533474,0.262285321950912,-0.858041763305664,-0.441554754972458,0.758095860481262,0.337383568286896,0.558088541030884,0.935642600059509,-0.282773077487946,0.211215987801552,0.881018102169037,0.0932691916823387,0.463797271251678,0.886206865310669,-0.424130737781525,0.186414510011673,0.935642600059509,-0.282773077487946,0.211215987801552,0.517147660255432,-0.834819555282593,-0.18877087533474,0.517147660255432,-0.834819555282593,-0.18877087533474,0.00936393160372972,-0.858172357082367,-0.513276219367981,0.262285321950912,-0.858041763305664,-0.441554754972458,0.758095860481262,0.337383568286896,0.558088541030884,0.853417336940765,0.167059242725372,0.493730664253235,0.935642600059509,-0.282773077487946,0.211215987801552,0.517147660255432,-0.834819555282593,-0.18877087533474,0.935642600059509,-0.282773077487946,0.211215987801552,0.672768175601959,-0.730615377426147,-0.116550326347351,0.2318045347929,-0.877021074295044,-0.420833230018616,0.00936393160372972,-0.858172357082367,-0.513276219367981,0.517147660255432,-0.834819555282593,-0.18877087533474, +0.758095860481262,0.337383568286896,0.558088541030884,0.561893165111542,0.494647771120071,0.663022994995117,0.853417336940765,0.167059242725372,0.493730664253235,0.923319160938263,-0.224092721939087,0.311871826648712,0.935642600059509,-0.282773077487946,0.211215987801552,0.853417336940765,0.167059242725372,0.493730664253235,0.923319160938263,-0.224092721939087,0.311871826648712,0.672768175601959,-0.730615377426147,-0.116550326347351,0.935642600059509,-0.282773077487946,0.211215987801552,0.517147660255432,-0.834819555282593,-0.18877087533474,0.672768175601959,-0.730615377426147,-0.116550326347351,0.2318045347929,-0.877021074295044,-0.420833230018616,0.2318045347929,-0.877021074295044,-0.420833230018616,-0.0046850317157805,-0.819392323493958,-0.573213875293732,0.00936393160372972,-0.858172357082367,-0.513276219367981,0.853417336940765,0.167059242725372,0.493730664253235,0.561893165111542,0.494647771120071,0.663022994995117,0.708579659461975,0.353462874889374,0.610719799995422,0.853417336940765,0.167059242725372,0.493730664253235,0.708579659461975,0.353462874889374,0.610719799995422,0.923319160938263,-0.224092721939087,0.311871826648712,0.923319160938263,-0.224092721939087,0.311871826648712,0.794367611408234,-0.581908643245697,0.17424800992012,0.672768175601959,-0.730615377426147,-0.116550326347351,0.672768175601959,-0.730615377426147,-0.116550326347351,0.510656416416168,-0.845521748065948,-0.155956923961639,0.2318045347929,-0.877021074295044,-0.420833230018616,0.2318045347929,-0.877021074295044,-0.420833230018616,0.152846723794937,-0.861648917198181,-0.483941107988358,-0.0046850317157805,-0.819392323493958,-0.573213875293732,0.923319160938263,-0.224092721939087,0.311871826648712,0.708579659461975,0.353462874889374,0.610719799995422,0.866335332393646,0.0220404490828514,0.498976171016693,0.923319160938263,-0.224092721939087,0.311871826648712,0.866335332393646,0.0220404490828514,0.498976171016693,0.794367611408234,-0.581908643245697,0.17424800992012,0.672768175601959,-0.730615377426147,-0.116550326347351,0.794367611408234,-0.581908643245697,0.17424800992012, +0.510656416416168,-0.845521748065948,-0.155956923961639,0.2318045347929,-0.877021074295044,-0.420833230018616,0.510656416416168,-0.845521748065948,-0.155956923961639,0.152846723794937,-0.861648917198181,-0.483941107988358,0.708579659461975,0.353462874889374,0.610719799995422,0.641508340835571,0.46287015080452,0.611733555793762,0.866335332393646,0.0220404490828514,0.498976171016693,0.809695363044739,-0.48652583360672,0.328155428171158,0.794367611408234,-0.581908643245697,0.17424800992012,0.866335332393646,0.0220404490828514,0.498976171016693,0.809695363044739,-0.48652583360672,0.328155428171158,0.510656416416168,-0.845521748065948,-0.155956923961639,0.794367611408234,-0.581908643245697,0.17424800992012,0.510656416416168,-0.845521748065948,-0.155956923961639,0.467744588851929,-0.86238831281662,-0.193652540445328,0.152846723794937,-0.861648917198181,-0.483941107988358,0.641508340835571,0.46287015080452,0.611733555793762,0.759328365325928,0.168215215206146,0.628588855266571,0.866335332393646,0.0220404490828514,0.498976171016693,0.866335332393646,0.0220404490828514,0.498976171016693,0.759328365325928,0.168215215206146,0.628588855266571,0.809695363044739,-0.48652583360672,0.328155428171158,0.809695363044739,-0.48652583360672,0.328155428171158,0.705902457237244,-0.70018482208252,0.106971196830273,0.510656416416168,-0.845521748065948,-0.155956923961639,0.510656416416168,-0.845521748065948,-0.155956923961639,0.705902457237244,-0.70018482208252,0.106971196830273,0.467744588851929,-0.86238831281662,-0.193652540445328,0.152846723794937,-0.861648917198181,-0.483941107988358,0.467744588851929,-0.86238831281662,-0.193652540445328,0.200194463133812,-0.889614343643188,-0.410497814416885,0.759328365325928,0.168215215206146,0.628588855266571,0.820528209209442,-0.275594085454941,0.500780582427979,0.809695363044739,-0.48652583360672,0.328155428171158,0.809695363044739,-0.48652583360672,0.328155428171158,0.820528209209442,-0.275594085454941,0.500780582427979,0.705902457237244,-0.70018482208252,0.106971196830273,0.764477431774139,-0.612632870674133,0.200636744499207, +0.467744588851929,-0.86238831281662,-0.193652540445328,0.705902457237244,-0.70018482208252,0.106971196830273,0.200194463133812,-0.889614343643188,-0.410497814416885,0.467744588851929,-0.86238831281662,-0.193652540445328,0.464081019163132,-0.873642146587372,-0.146212309598923,0.152846723794937,-0.861648917198181,-0.483941107988358,0.200194463133812,-0.889614343643188,-0.410497814416885,0.0539583414793015,-0.829480171203613,-0.555923521518707,0.764477431774139,-0.612632870674133,0.200636744499207,0.705902457237244,-0.70018482208252,0.106971196830273,0.820528209209442,-0.275594085454941,0.500780582427979,0.464081019163132,-0.873642146587372,-0.146212309598923,0.467744588851929,-0.86238831281662,-0.193652540445328,0.764477431774139,-0.612632870674133,0.200636744499207,0.200194463133812,-0.889614343643188,-0.410497814416885,0.464081019163132,-0.873642146587372,-0.146212309598923,0.262964874505997,-0.91510009765625,-0.305681645870209,0.119110487401485,-0.868180155754089,-0.481742382049561,0.0539583414793015,-0.829480171203613,-0.555923521518707,0.200194463133812,-0.889614343643188,-0.410497814416885,0.200194463133812,-0.889614343643188,-0.410497814416885,0.262964874505997,-0.91510009765625,-0.305681645870209,0.119110487401485,-0.868180155754089,-0.481742382049561,0.119110487401485,-0.868180155754089,-0.481742382049561,0.0364860668778419,-0.806113839149475,-0.59063446521759,0.0539583414793015,-0.829480171203613,-0.555923521518707,0.262964874505997,-0.91510009765625,-0.305681645870209,0.229289188981056,-0.918832540512085,-0.321205824613571,0.119110487401485,-0.868180155754089,-0.481742382049561,0.119110487401485,-0.868180155754089,-0.481742382049561,0.0995777770876884,-0.851943671703339,-0.5140780210495,0.0364860668778419,-0.806113839149475,-0.59063446521759,0.119110487401485,-0.868180155754089,-0.481742382049561,0.229289188981056,-0.918832540512085,-0.321205824613571,0.0995777770876884,-0.851943671703339,-0.5140780210495,0.194934412837029,-0.952674388885498,-0.233263611793518,0.195589005947113,-0.963940680027008,-0.180452942848206, +0.273695230484009,-0.885812759399414,-0.37473526597023,0.22250971198082,-0.895494341850281,-0.385459423065186,0.194934412837029,-0.952674388885498,-0.233263611793518,0.273695230484009,-0.885812759399414,-0.37473526597023,0.22250971198082,-0.895494341850281,-0.385459423065186,0.21283908188343,-0.932673692703247,-0.29123729467392,0.194934412837029,-0.952674388885498,-0.233263611793518,0.194934412837029,-0.952674388885498,-0.233263611793518,0.078129768371582,-0.992809057235718,-0.0906949788331985,0.195589005947113,-0.963940680027008,-0.180452942848206,0.168940544128418,-0.974272549152374,-0.14917117357254,0.078129768371582,-0.992809057235718,-0.0906949788331985,0.194934412837029,-0.952674388885498,-0.233263611793518,0.194934412837029,-0.952674388885498,-0.233263611793518,0.21283908188343,-0.932673692703247,-0.29123729467392,0.168940544128418,-0.974272549152374,-0.14917117357254,-0.020694037899375,-0.99973464012146,-0.010114312171936,0.195589005947113,-0.963940680027008,-0.180452942848206,0.078129768371582,-0.992809057235718,-0.0906949788331985,0.21283908188343,-0.932673692703247,-0.29123729467392,0.161134108901024,-0.971689105033875,-0.172788992524147,0.168940544128418,-0.974272549152374,-0.14917117357254,0.206492960453033,-0.929435670375824,-0.305793881416321,0.161134108901024,-0.971689105033875,-0.172788992524147,0.21283908188343,-0.932673692703247,-0.29123729467392,-0.020694037899375,-0.99973464012146,-0.010114312171936,0.078129768371582,-0.992809057235718,-0.0906949788331985,-0.206800580024719,-0.974077761173248,0.091682568192482,-0.0482739806175232,-0.998018264770508,0.0403616614639759,-0.206800580024719,-0.974077761173248,0.091682568192482,0.078129768371582,-0.992809057235718,-0.0906949788331985,-0.0482739806175232,-0.998018264770508,0.0403616614639759,0.078129768371582,-0.992809057235718,-0.0906949788331985,0.097259908914566,-0.994111776351929,-0.0477714873850346,0.168940544128418,-0.974272549152374,-0.14917117357254,0.097259908914566,-0.994111776351929,-0.0477714873850346,0.078129768371582,-0.992809057235718,-0.0906949788331985, +0.168940544128418,-0.974272549152374,-0.14917117357254,0.161134108901024,-0.971689105033875,-0.172788992524147,0.097259908914566,-0.994111776351929,-0.0477714873850346,-0.206800580024719,-0.974077761173248,0.091682568192482,-0.340551406145096,-0.917936861515045,0.203510582447052,-0.020694037899375,-0.99973464012146,-0.010114312171936,0.184030428528786,-0.961094319820404,-0.205986544489861,0.161134108901024,-0.971689105033875,-0.172788992524147,0.206492960453033,-0.929435670375824,-0.305793881416321,0.097259908914566,-0.994111776351929,-0.0477714873850346,0.161134108901024,-0.971689105033875,-0.172788992524147,0.126597717404366,-0.987491369247437,-0.0939877107739449,0.184030428528786,-0.961094319820404,-0.205986544489861,0.126597717404366,-0.987491369247437,-0.0939877107739449,0.161134108901024,-0.971689105033875,-0.172788992524147,-0.0482739806175232,-0.998018264770508,0.0403616614639759,0.097259908914566,-0.994111776351929,-0.0477714873850346,-0.12050848454237,-0.984380424022675,0.128346398472786,0.097259908914566,-0.994111776351929,-0.0477714873850346,-0.0376114659011364,-0.99830287694931,0.0444600470364094,-0.12050848454237,-0.984380424022675,0.128346398472786,-0.0376114659011364,-0.99830287694931,0.0444600470364094,0.097259908914566,-0.994111776351929,-0.0477714873850346,0.0740802586078644,-0.997150421142578,-0.0142519045621157,0.097259908914566,-0.994111776351929,-0.0477714873850346,0.126597717404366,-0.987491369247437,-0.0939877107739449,0.0740802586078644,-0.997150421142578,-0.0142519045621157,-0.206800580024719,-0.974077761173248,0.091682568192482,-0.0482739806175232,-0.998018264770508,0.0403616614639759,-0.322997540235519,-0.916313111782074,0.236733481287956,-0.322997540235519,-0.916313111782074,0.236733481287956,-0.0482739806175232,-0.998018264770508,0.0403616614639759,-0.12050848454237,-0.984380424022675,0.128346398472786,-0.206800580024719,-0.974077761173248,0.091682568192482,-0.510048985481262,-0.814544379711151,0.276346415281296,-0.340551406145096,-0.917936861515045,0.203510582447052,-0.322997540235519,-0.916313111782074,0.236733481287956, +-0.510048985481262,-0.814544379711151,0.276346415281296,-0.206800580024719,-0.974077761173248,0.091682568192482,-0.340551406145096,-0.917936861515045,0.203510582447052,-0.510048985481262,-0.814544379711151,0.276346415281296,-0.537781059741974,-0.773346543312073,0.335747689008713,0.178598269820213,-0.976244151592255,-0.122678078711033,0.126597717404366,-0.987491369247437,-0.0939877107739449,0.184030428528786,-0.961094319820404,-0.205986544489861,0.265495628118515,-0.938710510730743,-0.219851046800613,0.178598269820213,-0.976244151592255,-0.122678078711033,0.184030428528786,-0.961094319820404,-0.205986544489861,0.126597717404366,-0.987491369247437,-0.0939877107739449,0.146828964352608,-0.988367021083832,-0.03964639082551,0.0740802586078644,-0.997150421142578,-0.0142519045621157,0.178598269820213,-0.976244151592255,-0.122678078711033,0.146828964352608,-0.988367021083832,-0.03964639082551,0.126597717404366,-0.987491369247437,-0.0939877107739449,-0.0376114659011364,-0.99830287694931,0.0444600470364094,0.0740802586078644,-0.997150421142578,-0.0142519045621157,-0.170673921704292,-0.981977641582489,0.0811805203557014,0.0740802586078644,-0.997150421142578,-0.0142519045621157,0.0547250136733055,-0.998140454292297,0.0268453434109688,-0.170673921704292,-0.981977641582489,0.0811805203557014,0.0740802586078644,-0.997150421142578,-0.0142519045621157,0.146828964352608,-0.988367021083832,-0.03964639082551,0.0547250136733055,-0.998140454292297,0.0268453434109688,-0.0376114659011364,-0.99830287694931,0.0444600470364094,-0.250613540410995,-0.952537059783936,0.172817587852478,-0.12050848454237,-0.984380424022675,0.128346398472786,-0.170673921704292,-0.981977641582489,0.0811805203557014,-0.250613540410995,-0.952537059783936,0.172817587852478,-0.0376114659011364,-0.99830287694931,0.0444600470364094,-0.322997540235519,-0.916313111782074,0.236733481287956,-0.12050848454237,-0.984380424022675,0.128346398472786,-0.411421358585358,-0.871922731399536,0.26548644900322,-0.250613540410995,-0.952537059783936,0.172817587852478,-0.411421358585358,-0.871922731399536,0.26548644900322, +-0.12050848454237,-0.984380424022675,0.128346398472786,-0.322997540235519,-0.916313111782074,0.236733481287956,-0.528976440429688,-0.781013906002045,0.331965625286102,-0.510048985481262,-0.814544379711151,0.276346415281296,-0.322997540235519,-0.916313111782074,0.236733481287956,-0.411421358585358,-0.871922731399536,0.26548644900322,-0.528976440429688,-0.781013906002045,0.331965625286102,-0.537781059741974,-0.773346543312073,0.335747689008713,-0.510048985481262,-0.814544379711151,0.276346415281296,-0.61250251531601,-0.724491059780121,0.316153734922409,-0.528976440429688,-0.781013906002045,0.331965625286102,-0.61250251531601,-0.724491059780121,0.316153734922409,-0.510048985481262,-0.814544379711151,0.276346415281296,0.178598269820213,-0.976244151592255,-0.122678078711033,0.265495628118515,-0.938710510730743,-0.219851046800613,0.239216268062592,-0.963123083114624,-0.123163931071758,0.265495628118515,-0.938710510730743,-0.219851046800613,0.31026354432106,-0.93649286031723,-0.163455083966255,0.239216268062592,-0.963123083114624,-0.123163931071758,0.178598269820213,-0.976244151592255,-0.122678078711033,0.239216268062592,-0.963123083114624,-0.123163931071758,0.146828964352608,-0.988367021083832,-0.03964639082551,0.0547250136733055,-0.998140454292297,0.0268453434109688,0.146828964352608,-0.988367021083832,-0.03964639082551,0.175519376993179,-0.983834028244019,0.0355443544685841,0.239216268062592,-0.963123083114624,-0.123163931071758,0.234916463494301,-0.969098687171936,-0.0752455815672874,0.146828964352608,-0.988367021083832,-0.03964639082551,0.175519376993179,-0.983834028244019,0.0355443544685841,0.146828964352608,-0.988367021083832,-0.03964639082551,0.234916463494301,-0.969098687171936,-0.0752455815672874,-0.158610165119171,-0.986393213272095,0.043256901204586,-0.170673921704292,-0.981977641582489,0.0811805203557014,0.0547250136733055,-0.998140454292297,0.0268453434109688,0.00831621047109365,-0.998623430728912,0.0517885200679302,-0.158610165119171,-0.986393213272095,0.043256901204586,0.0547250136733055,-0.998140454292297,0.0268453434109688, +0.0547250136733055,-0.998140454292297,0.0268453434109688,0.175519376993179,-0.983834028244019,0.0355443544685841,0.123867549002171,-0.989214181900024,0.0781795158982277,0.00831621047109365,-0.998623430728912,0.0517885200679302,0.0547250136733055,-0.998140454292297,0.0268453434109688,0.123867549002171,-0.989214181900024,0.0781795158982277,-0.170673921704292,-0.981977641582489,0.0811805203557014,-0.468571662902832,-0.863121211528778,0.188314244151115,-0.250613540410995,-0.952537059783936,0.172817587852478,-0.468571662902832,-0.863121211528778,0.188314244151115,-0.170673921704292,-0.981977641582489,0.0811805203557014,-0.425864398479462,-0.904734551906586,0.00973417889326811,-0.158610165119171,-0.986393213272095,0.043256901204586,-0.425864398479462,-0.904734551906586,0.00973417889326811,-0.170673921704292,-0.981977641582489,0.0811805203557014,-0.250613540410995,-0.952537059783936,0.172817587852478,-0.468571662902832,-0.863121211528778,0.188314244151115,-0.411421358585358,-0.871922731399536,0.26548644900322,-0.528976440429688,-0.781013906002045,0.331965625286102,-0.411421358585358,-0.871922731399536,0.26548644900322,-0.525588572025299,-0.791434109210968,0.31207138299942,-0.411421358585358,-0.871922731399536,0.26548644900322,-0.468571662902832,-0.863121211528778,0.188314244151115,-0.525588572025299,-0.791434109210968,0.31207138299942,0.234916463494301,-0.969098687171936,-0.0752455815672874,0.239216268062592,-0.963123083114624,-0.123163931071758,0.31026354432106,-0.93649286031723,-0.163455083966255,0.335968643426895,-0.936915814876556,-0.0965075865387917,0.234916463494301,-0.969098687171936,-0.0752455815672874,0.31026354432106,-0.93649286031723,-0.163455083966255,0.175519376993179,-0.983834028244019,0.0355443544685841,0.234916463494301,-0.969098687171936,-0.0752455815672874,0.276309430599213,-0.960526883602142,0.0322656892240047,0.335968643426895,-0.936915814876556,-0.0965075865387917,0.276309430599213,-0.960526883602142,0.0322656892240047,0.234916463494301,-0.969098687171936,-0.0752455815672874,0.181032836437225,-0.979064464569092,0.0930581092834473, +0.123867549002171,-0.989214181900024,0.0781795158982277,0.175519376993179,-0.983834028244019,0.0355443544685841,0.175519376993179,-0.983834028244019,0.0355443544685841,0.276309430599213,-0.960526883602142,0.0322656892240047,0.242595821619034,-0.960004866123199,0.139777794480324,0.181032836437225,-0.979064464569092,0.0930581092834473,0.175519376993179,-0.983834028244019,0.0355443544685841,0.242595821619034,-0.960004866123199,0.139777794480324,0.123867549002171,-0.989214181900024,0.0781795158982277,0.146900564432144,-0.980062901973724,0.133778229355812,0.00831621047109365,-0.998623430728912,0.0517885200679302,0.181032836437225,-0.979064464569092,0.0930581092834473,0.193905994296074,-0.971814155578613,0.134080648422241,0.123867549002171,-0.989214181900024,0.0781795158982277,0.146900564432144,-0.980062901973724,0.133778229355812,0.123867549002171,-0.989214181900024,0.0781795158982277,0.159038990736008,-0.974675059318542,0.157210052013397,0.156584173440933,-0.980077266693115,0.122187942266464,0.123867549002171,-0.989214181900024,0.0781795158982277,0.193905994296074,-0.971814155578613,0.134080648422241,0.156584173440933,-0.980077266693115,0.122187942266464,0.159038990736008,-0.974675059318542,0.157210052013397,0.123867549002171,-0.989214181900024,0.0781795158982277,-0.158610165119171,-0.986393213272095,0.043256901204586,0.00831621047109365,-0.998623430728912,0.0517885200679302,-0.242951154708862,-0.968195378780365,-0.0597671866416931,0.0676233023405075,-0.995519876480103,0.0660842284560204,-0.242951154708862,-0.968195378780365,-0.0597671866416931,0.00831621047109365,-0.998623430728912,0.0517885200679302,0.0676233023405075,-0.995519876480103,0.0660842284560204,0.00831621047109365,-0.998623430728912,0.0517885200679302,0.146900564432144,-0.980062901973724,0.133778229355812,-0.158610165119171,-0.986393213272095,0.043256901204586,-0.242951154708862,-0.968195378780365,-0.0597671866416931,-0.425864398479462,-0.904734551906586,0.00973417889326811,-0.468571662902832,-0.863121211528778,0.188314244151115,-0.425864398479462,-0.904734551906586,0.00973417889326811, +-0.586102783679962,-0.810113310813904,0.0141346892341971,-0.425864398479462,-0.904734551906586,0.00973417889326811,-0.557467460632324,-0.817623734474182,-0.143948912620544,-0.586102783679962,-0.810113310813904,0.0141346892341971,-0.425864398479462,-0.904734551906586,0.00973417889326811,-0.470660358667374,-0.866263508796692,-0.167530193924904,-0.557467460632324,-0.817623734474182,-0.143948912620544,-0.242951154708862,-0.968195378780365,-0.0597671866416931,-0.470660358667374,-0.866263508796692,-0.167530193924904,-0.425864398479462,-0.904734551906586,0.00973417889326811,-0.525588572025299,-0.791434109210968,0.31207138299942,-0.468571662902832,-0.863121211528778,0.188314244151115,-0.598381280899048,-0.790379106998444,0.131303951144218,-0.598381280899048,-0.790379106998444,0.131303951144218,-0.468571662902832,-0.863121211528778,0.188314244151115,-0.586102783679962,-0.810113310813904,0.0141346892341971,0.382312715053558,-0.923962235450745,0.0114310858771205,0.276309430599213,-0.960526883602142,0.0322656892240047,0.335968643426895,-0.936915814876556,-0.0965075865387917,0.309051543474197,-0.939855754375458,0.145458459854126,0.242595821619034,-0.960004866123199,0.139777794480324,0.276309430599213,-0.960526883602142,0.0322656892240047,0.382312715053558,-0.923962235450745,0.0114310858771205,0.309051543474197,-0.939855754375458,0.145458459854126,0.276309430599213,-0.960526883602142,0.0322656892240047,0.181032836437225,-0.979064464569092,0.0930581092834473,0.242595821619034,-0.960004866123199,0.139777794480324,0.193905994296074,-0.971814155578613,0.134080648422241,0.309051543474197,-0.939855754375458,0.145458459854126,0.299707859754562,-0.935646414756775,0.186388939619064,0.242595821619034,-0.960004866123199,0.139777794480324,0.193905994296074,-0.971814155578613,0.134080648422241,0.242595821619034,-0.960004866123199,0.139777794480324,0.267794132232666,-0.944221198558807,0.191657438874245,0.299707859754562,-0.935646414756775,0.186388939619064,0.267794132232666,-0.944221198558807,0.191657438874245,0.242595821619034,-0.960004866123199,0.139777794480324, +0.225335165858269,-0.948840439319611,0.221191838383675,0.156584173440933,-0.980077266693115,0.122187942266464,0.193905994296074,-0.971814155578613,0.134080648422241,0.225335165858269,-0.948840439319611,0.221191838383675,0.193905994296074,-0.971814155578613,0.134080648422241,0.267794132232666,-0.944221198558807,0.191657438874245,0.156584173440933,-0.980077266693115,0.122187942266464,0.225335165858269,-0.948840439319611,0.221191838383675,0.159038990736008,-0.974675059318542,0.157210052013397,0.146900564432144,-0.980062901973724,0.133778229355812,0.159038990736008,-0.974675059318542,0.157210052013397,0.235555216670036,-0.942402362823486,0.237468704581261,0.159038990736008,-0.974675059318542,0.157210052013397,0.225335165858269,-0.948840439319611,0.221191838383675,0.235555216670036,-0.942402362823486,0.237468704581261,0.23817540705204,-0.944939017295837,0.224416151642799,0.0676233023405075,-0.995519876480103,0.0660842284560204,0.146900564432144,-0.980062901973724,0.133778229355812,0.23817540705204,-0.944939017295837,0.224416151642799,0.146900564432144,-0.980062901973724,0.133778229355812,0.235555216670036,-0.942402362823486,0.237468704581261,-0.136139914393425,-0.987576127052307,-0.078480638563633,-0.242951154708862,-0.968195378780365,-0.0597671866416931,0.0676233023405075,-0.995519876480103,0.0660842284560204,0.0268291644752026,-0.999012172222137,0.0354239121079445,-0.136139914393425,-0.987576127052307,-0.078480638563633,0.0676233023405075,-0.995519876480103,0.0660842284560204,0.0268291644752026,-0.999012172222137,0.0354239121079445,0.0676233023405075,-0.995519876480103,0.0660842284560204,0.17764113843441,-0.972853720188141,0.148321211338043,0.23817540705204,-0.944939017295837,0.224416151642799,0.17764113843441,-0.972853720188141,0.148321211338043,0.0676233023405075,-0.995519876480103,0.0660842284560204,-0.242951154708862,-0.968195378780365,-0.0597671866416931,-0.382580369710922,-0.889498472213745,-0.249849200248718,-0.470660358667374,-0.866263508796692,-0.167530193924904,-0.242951154708862,-0.968195378780365,-0.0597671866416931, +-0.136139914393425,-0.987576127052307,-0.078480638563633,-0.382580369710922,-0.889498472213745,-0.249849200248718,-0.470660358667374,-0.866263508796692,-0.167530193924904,-0.520008563995361,-0.798071205615997,-0.30442288517952,-0.557467460632324,-0.817623734474182,-0.143948912620544,-0.470660358667374,-0.866263508796692,-0.167530193924904,-0.382580369710922,-0.889498472213745,-0.249849200248718,-0.520008563995361,-0.798071205615997,-0.30442288517952,-0.586102783679962,-0.810113310813904,0.0141346892341971,-0.557467460632324,-0.817623734474182,-0.143948912620544,-0.617903351783752,-0.78050971031189,-0.0948682427406311,-0.617903351783752,-0.78050971031189,-0.0948682427406311,-0.557467460632324,-0.817623734474182,-0.143948912620544,-0.559816420078278,-0.788114011287689,-0.25589394569397,-0.559816420078278,-0.788114011287689,-0.25589394569397,-0.557467460632324,-0.817623734474182,-0.143948912620544,-0.520008563995361,-0.798071205615997,-0.30442288517952,-0.598381280899048,-0.790379106998444,0.131303951144218,-0.586102783679962,-0.810113310813904,0.0141346892341971,-0.617903351783752,-0.78050971031189,-0.0948682427406311,0.267794132232666,-0.944221198558807,0.191657438874245,0.265630483627319,-0.930368602275848,0.252694606781006,0.225335165858269,-0.948840439319611,0.221191838383675,0.235555216670036,-0.942402362823486,0.237468704581261,0.225335165858269,-0.948840439319611,0.221191838383675,0.259758979082108,-0.914674580097198,0.309670239686966,0.259758979082108,-0.914674580097198,0.309670239686966,0.225335165858269,-0.948840439319611,0.221191838383675,0.243824228644371,-0.914848804473877,0.3218714594841,0.225335165858269,-0.948840439319611,0.221191838383675,0.265630483627319,-0.930368602275848,0.252694606781006,0.243824228644371,-0.914848804473877,0.3218714594841,0.23817540705204,-0.944939017295837,0.224416151642799,0.235555216670036,-0.942402362823486,0.237468704581261,0.278047859668732,-0.904672741889954,0.322887748479843,0.278047859668732,-0.904672741889954,0.322887748479843,0.235555216670036,-0.942402362823486,0.237468704581261, +0.259758979082108,-0.914674580097198,0.309670239686966,0.23817540705204,-0.944939017295837,0.224416151642799,0.351173043251038,-0.89715439081192,0.267939060926437,0.17764113843441,-0.972853720188141,0.148321211338043,0.23817540705204,-0.944939017295837,0.224416151642799,0.318477660417557,-0.883532762527466,0.343426465988159,0.351173043251038,-0.89715439081192,0.267939060926437,0.278047859668732,-0.904672741889954,0.322887748479843,0.318477660417557,-0.883532762527466,0.343426465988159,0.23817540705204,-0.944939017295837,0.224416151642799,0.17764113843441,-0.972853720188141,0.148321211338043,0.142743065953255,-0.984451711177826,0.102366626262665,0.0268291644752026,-0.999012172222137,0.0354239121079445,0.276522696018219,-0.944294095039368,0.178448095917702,0.142743065953255,-0.984451711177826,0.102366626262665,0.17764113843441,-0.972853720188141,0.148321211338043,0.276522696018219,-0.944294095039368,0.178448095917702,0.17764113843441,-0.972853720188141,0.148321211338043,0.351173043251038,-0.89715439081192,0.267939060926437,0.0268291644752026,-0.999012172222137,0.0354239121079445,-0.173388302326202,-0.972432911396027,-0.155917957425117,-0.136139914393425,-0.987576127052307,-0.078480638563633,0.0301706567406654,-0.999519944190979,0.00703302072361112,-0.173388302326202,-0.972432911396027,-0.155917957425117,0.0268291644752026,-0.999012172222137,0.0354239121079445,0.0301706567406654,-0.999519944190979,0.00703302072361112,0.0268291644752026,-0.999012172222137,0.0354239121079445,0.142743065953255,-0.984451711177826,0.102366626262665,-0.173388302326202,-0.972432911396027,-0.155917957425117,-0.382580369710922,-0.889498472213745,-0.249849200248718,-0.136139914393425,-0.987576127052307,-0.078480638563633,-0.367527395486832,-0.853760302066803,-0.368804544210434,-0.520008563995361,-0.798071205615997,-0.30442288517952,-0.382580369710922,-0.889498472213745,-0.249849200248718,-0.173388302326202,-0.972432911396027,-0.155917957425117,-0.367527395486832,-0.853760302066803,-0.368804544210434,-0.382580369710922,-0.889498472213745,-0.249849200248718, +-0.461669117212296,-0.765853583812714,-0.447582125663757,-0.559816420078278,-0.788114011287689,-0.25589394569397,-0.520008563995361,-0.798071205615997,-0.30442288517952,-0.461669117212296,-0.765853583812714,-0.447582125663757,-0.520008563995361,-0.798071205615997,-0.30442288517952,-0.367527395486832,-0.853760302066803,-0.368804544210434,0.259758979082108,-0.914674580097198,0.309670239686966,0.243824228644371,-0.914848804473877,0.3218714594841,0.263385146856308,-0.887956738471985,0.377042412757874,0.278047859668732,-0.904672741889954,0.322887748479843,0.259758979082108,-0.914674580097198,0.309670239686966,0.263385146856308,-0.887956738471985,0.377042412757874,0.278047859668732,-0.904672741889954,0.322887748479843,0.263385146856308,-0.887956738471985,0.377042412757874,0.318477660417557,-0.883532762527466,0.343426465988159,0.385124176740646,-0.865175068378448,0.321171790361404,0.351173043251038,-0.89715439081192,0.267939060926437,0.318477660417557,-0.883532762527466,0.343426465988159,0.385124176740646,-0.865175068378448,0.321171790361404,0.318477660417557,-0.883532762527466,0.343426465988159,0.35479462146759,-0.851547241210938,0.385989516973495,0.263385146856308,-0.887956738471985,0.377042412757874,0.35479462146759,-0.851547241210938,0.385989516973495,0.318477660417557,-0.883532762527466,0.343426465988159,0.276522696018219,-0.944294095039368,0.178448095917702,0.351173043251038,-0.89715439081192,0.267939060926437,0.434501528739929,-0.876595914363861,0.206852585077286,0.458358734846115,-0.850490093231201,0.258018851280212,0.351173043251038,-0.89715439081192,0.267939060926437,0.385124176740646,-0.865175068378448,0.321171790361404,0.434501528739929,-0.876595914363861,0.206852585077286,0.351173043251038,-0.89715439081192,0.267939060926437,0.458358734846115,-0.850490093231201,0.258018851280212,0.276522696018219,-0.944294095039368,0.178448095917702,0.307719826698303,-0.944160580635071,0.117767333984375,0.142743065953255,-0.984451711177826,0.102366626262665,0.276522696018219,-0.944294095039368,0.178448095917702,0.434501528739929,-0.876595914363861,0.206852585077286, +0.307719826698303,-0.944160580635071,0.117767333984375,0.120160691440105,-0.991060495376587,0.0579689927399158,0.0301706567406654,-0.999519944190979,0.00703302072361112,0.142743065953255,-0.984451711177826,0.102366626262665,0.120160691440105,-0.991060495376587,0.0579689927399158,0.142743065953255,-0.984451711177826,0.102366626262665,0.307719826698303,-0.944160580635071,0.117767333984375,0.0301706567406654,-0.999519944190979,0.00703302072361112,-0.112680055201054,-0.977257907390594,-0.179638713598251,-0.173388302326202,-0.972432911396027,-0.155917957425117,0.0301706567406654,-0.999519944190979,0.00703302072361112,0.0165667030960321,-0.999861657619476,-0.00144569540861994,-0.112680055201054,-0.977257907390594,-0.179638713598251,0.0165667030960321,-0.999861657619476,-0.00144569540861994,0.0301706567406654,-0.999519944190979,0.00703302072361112,0.120160691440105,-0.991060495376587,0.0579689927399158,-0.112680055201054,-0.977257907390594,-0.179638713598251,-0.367527395486832,-0.853760302066803,-0.368804544210434,-0.173388302326202,-0.972432911396027,-0.155917957425117,-0.275559812784195,-0.845956861972809,-0.456534504890442,-0.461669117212296,-0.765853583812714,-0.447582125663757,-0.367527395486832,-0.853760302066803,-0.368804544210434,-0.112680055201054,-0.977257907390594,-0.179638713598251,-0.275559812784195,-0.845956861972809,-0.456534504890442,-0.367527395486832,-0.853760302066803,-0.368804544210434,-0.461669117212296,-0.765853583812714,-0.447582125663757,-0.275559812784195,-0.845956861972809,-0.456534504890442,-0.419998019933701,-0.617481708526611,-0.665069818496704,0.385124176740646,-0.865175068378448,0.321171790361404,0.35479462146759,-0.851547241210938,0.385989516973495,0.41211211681366,-0.858661532402039,0.304735720157623,0.458358734846115,-0.850490093231201,0.258018851280212,0.385124176740646,-0.865175068378448,0.321171790361404,0.41211211681366,-0.858661532402039,0.304735720157623,0.434501528739929,-0.876595914363861,0.206852585077286,0.458358734846115,-0.850490093231201,0.258018851280212,0.530144155025482,-0.827777922153473,0.183659359812737, +0.453572779893875,-0.881403744220734,0.131905198097229,0.307719826698303,-0.944160580635071,0.117767333984375,0.434501528739929,-0.876595914363861,0.206852585077286,0.530144155025482,-0.827777922153473,0.183659359812737,0.453572779893875,-0.881403744220734,0.131905198097229,0.434501528739929,-0.876595914363861,0.206852585077286,0.0218589678406715,-0.999741315841675,0.00627833371981978,0.0165667030960321,-0.999861657619476,-0.00144569540861994,0.120160691440105,-0.991060495376587,0.0579689927399158,0.0218589678406715,-0.999741315841675,0.00627833371981978,0.120160691440105,-0.991060495376587,0.0579689927399158,0.0497986413538456,-0.998663187026978,0.0138514339923859,-0.0531366430222988,-0.990837335586548,-0.124168120324612,-0.112680055201054,-0.977257907390594,-0.179638713598251,0.0165667030960321,-0.999861657619476,-0.00144569540861994,0.0218589678406715,-0.999741315841675,0.00627833371981978,-0.0531366430222988,-0.990837335586548,-0.124168120324612,0.0165667030960321,-0.999861657619476,-0.00144569540861994,-0.0531366430222988,-0.990837335586548,-0.124168120324612,-0.275559812784195,-0.845956861972809,-0.456534504890442,-0.112680055201054,-0.977257907390594,-0.179638713598251,-0.419998019933701,-0.617481708526611,-0.665069818496704,-0.275559812784195,-0.845956861972809,-0.456534504890442,-0.0564642138779163,-0.967810094356537,-0.245265960693359,-0.0531366430222988,-0.990837335586548,-0.124168120324612,-0.0564642138779163,-0.967810094356537,-0.245265960693359,-0.275559812784195,-0.845956861972809,-0.456534504890442,0.0218589678406715,-0.999741315841675,0.00627833371981978,0.0497986413538456,-0.998663187026978,0.0138514339923859,0.028103431686759,-0.998831450939178,0.0393171012401581,0.0497986413538456,-0.998663187026978,0.0138514339923859,-0.0273258332163095,-0.997748255729675,0.0612501055002213,0.028103431686759,-0.998831450939178,0.0393171012401581,-0.0273258332163095,-0.997748255729675,0.0612501055002213,0.0497986413538456,-0.998663187026978,0.0138514339923859,-0.0256036333739758,-0.999657869338989,0.00533970212563872, +0.0218589678406715,-0.999741315841675,0.00627833371981978,-0.0564642138779163,-0.967810094356537,-0.245265960693359,-0.0531366430222988,-0.990837335586548,-0.124168120324612,0.0733116418123245,-0.996685922145844,0.0352488830685616,-0.0564642138779163,-0.967810094356537,-0.245265960693359,0.0218589678406715,-0.999741315841675,0.00627833371981978,0.0733116418123245,-0.996685922145844,0.0352488830685616,0.0218589678406715,-0.999741315841675,0.00627833371981978,0.028103431686759,-0.998831450939178,0.0393171012401581,-0.0564642138779163,-0.967810094356537,-0.245265960693359,0.0733116418123245,-0.996685922145844,0.0352488830685616,0.0777720287442207,-0.992449522018433,0.0948441475629807,-0.157075762748718,-0.984058380126953,0.083402656018734,-0.0273258332163095,-0.997748255729675,0.0612501055002213,-0.0256036333739758,-0.999657869338989,0.00533970212563872,-0.0273258332163095,-0.997748255729675,0.0612501055002213,-0.147487714886665,-0.971263408660889,0.186801254749298,-0.0150147080421448,-0.9989053606987,0.0443011485040188,-0.0150147080421448,-0.9989053606987,0.0443011485040188,-0.0206463187932968,-0.998193383216858,0.0564231723546982,-0.0273258332163095,-0.997748255729675,0.0612501055002213,-0.0273258332163095,-0.997748255729675,0.0612501055002213,-0.287566423416138,-0.933751106262207,0.213106364011765,-0.147487714886665,-0.971263408660889,0.186801254749298,0.028103431686759,-0.998831450939178,0.0393171012401581,-0.0273258332163095,-0.997748255729675,0.0612501055002213,-0.0206463187932968,-0.998193383216858,0.0564231723546982,-0.0273258332163095,-0.997748255729675,0.0612501055002213,-0.157075762748718,-0.984058380126953,0.083402656018734,-0.287566423416138,-0.933751106262207,0.213106364011765,0.0733116418123245,-0.996685922145844,0.0352488830685616,0.028103431686759,-0.998831450939178,0.0393171012401581,-0.0206463187932968,-0.998193383216858,0.0564231723546982,0.0733116418123245,-0.996685922145844,0.0352488830685616,-0.0206463187932968,-0.998193383216858,0.0564231723546982,0.0777720287442207,-0.992449522018433,0.0948441475629807, +0.0777720287442207,-0.992449522018433,0.0948441475629807,-0.0206463187932968,-0.998193383216858,0.0564231723546982,-0.0178166925907135,-0.994571447372437,0.102518878877163,-0.233936458826065,-0.915087759494781,0.328463047742844,-0.0435228422284126,-0.994615912437439,0.0940471217036247,-0.147487714886665,-0.971263408660889,0.186801254749298,-0.0150147080421448,-0.9989053606987,0.0443011485040188,-0.147487714886665,-0.971263408660889,0.186801254749298,-0.0435228422284126,-0.994615912437439,0.0940471217036247,-0.233936458826065,-0.915087759494781,0.328463047742844,-0.147487714886665,-0.971263408660889,0.186801254749298,-0.358236134052277,-0.839041888713837,0.409481853246689,-0.147487714886665,-0.971263408660889,0.186801254749298,-0.316778719425201,-0.890985310077667,0.325263440608978,-0.358236134052277,-0.839041888713837,0.409481853246689,-0.287566423416138,-0.933751106262207,0.213106364011765,-0.316778719425201,-0.890985310077667,0.325263440608978,-0.147487714886665,-0.971263408660889,0.186801254749298,-0.0150147080421448,-0.9989053606987,0.0443011485040188,-0.0435228422284126,-0.994615912437439,0.0940471217036247,-0.0196461174637079,-0.999342381954193,-0.0304746944457293,-0.0150147080421448,-0.9989053606987,0.0443011485040188,-0.0196461174637079,-0.999342381954193,-0.0304746944457293,-0.0206463187932968,-0.998193383216858,0.0564231723546982,-0.0196461174637079,-0.999342381954193,-0.0304746944457293,-0.114537082612515,-0.99328476190567,-0.0163273233920336,-0.0206463187932968,-0.998193383216858,0.0564231723546982,-0.115289948880672,-0.991837441921234,0.0544660985469818,-0.0206463187932968,-0.998193383216858,0.0564231723546982,-0.114537082612515,-0.99328476190567,-0.0163273233920336,-0.0178166925907135,-0.994571447372437,0.102518878877163,-0.0206463187932968,-0.998193383216858,0.0564231723546982,-0.115289948880672,-0.991837441921234,0.0544660985469818,-0.316778719425201,-0.890985310077667,0.325263440608978,-0.287566423416138,-0.933751106262207,0.213106364011765,-0.469103634357452,-0.782316327095032,0.409783840179443,-0.0435228422284126,-0.994615912437439,0.0940471217036247, +-0.162222623825073,-0.96266758441925,0.216690719127655,0.00585170276463032,-0.99807196855545,0.0617904663085938,0.00585170276463032,-0.99807196855545,0.0617904663085938,0.0561287924647331,-0.998272240161896,-0.01737623475492,-0.0435228422284126,-0.994615912437439,0.0940471217036247,-0.0435228422284126,-0.994615912437439,0.0940471217036247,-0.233936458826065,-0.915087759494781,0.328463047742844,-0.162222623825073,-0.96266758441925,0.216690719127655,-0.0435228422284126,-0.994615912437439,0.0940471217036247,0.0561287924647331,-0.998272240161896,-0.01737623475492,-0.0196461174637079,-0.999342381954193,-0.0304746944457293,-0.316778719425201,-0.890985310077667,0.325263440608978,-0.469103634357452,-0.782316327095032,0.409783840179443,-0.358236134052277,-0.839041888713837,0.409481853246689,-0.449412137269974,-0.700222671031952,0.554722368717194,-0.233936458826065,-0.915087759494781,0.328463047742844,-0.358236134052277,-0.839041888713837,0.409481853246689,-0.449412137269974,-0.700222671031952,0.554722368717194,-0.358236134052277,-0.839041888713837,0.409481853246689,-0.506627559661865,-0.67433899641037,0.537210643291473,-0.506627559661865,-0.67433899641037,0.537210643291473,-0.358236134052277,-0.839041888713837,0.409481853246689,-0.469103634357452,-0.782316327095032,0.409783840179443,-0.334285438060761,-0.847836852073669,0.411613643169403,-0.162222623825073,-0.96266758441925,0.216690719127655,-0.233936458826065,-0.915087759494781,0.328463047742844,-0.334285438060761,-0.847836852073669,0.411613643169403,-0.233936458826065,-0.915087759494781,0.328463047742844,-0.449412137269974,-0.700222671031952,0.554722368717194,-0.0196461174637079,-0.999342381954193,-0.0304746944457293,0.0561287924647331,-0.998272240161896,-0.01737623475492,0.0717418938875198,-0.99324631690979,-0.0911852344870567,-0.0730344653129578,-0.994201898574829,-0.0789203867316246,-0.0196461174637079,-0.999342381954193,-0.0304746944457293,0.0717418938875198,-0.99324631690979,-0.0911852344870567,-0.114537082612515,-0.99328476190567,-0.0163273233920336,-0.0196461174637079,-0.999342381954193,-0.0304746944457293, +-0.0730344653129578,-0.994201898574829,-0.0789203867316246,-0.162222623825073,-0.96266758441925,0.216690719127655,-0.097537599503994,-0.983774304389954,0.150580301880836,0.00585170276463032,-0.99807196855545,0.0617904663085938,-0.162222623825073,-0.96266758441925,0.216690719127655,-0.287550121545792,-0.898085057735443,0.332803428173065,-0.097537599503994,-0.983774304389954,0.150580301880836,-0.334285438060761,-0.847836852073669,0.411613643169403,-0.287550121545792,-0.898085057735443,0.332803428173065,-0.162222623825073,-0.96266758441925,0.216690719127655,0.136235952377319,-0.990676283836365,-0.000495914253406227,0.00585170276463032,-0.99807196855545,0.0617904663085938,-0.097537599503994,-0.983774304389954,0.150580301880836,0.136235952377319,-0.990676283836365,-0.000495914253406227,0.123652823269367,-0.990374863147736,-0.0621892735362053,0.00585170276463032,-0.99807196855545,0.0617904663085938,0.00585170276463032,-0.99807196855545,0.0617904663085938,0.123652823269367,-0.990374863147736,-0.0621892735362053,0.0561287924647331,-0.998272240161896,-0.01737623475492,0.0717418938875198,-0.99324631690979,-0.0911852344870567,0.0561287924647331,-0.998272240161896,-0.01737623475492,0.123652823269367,-0.990374863147736,-0.0621892735362053,-0.449412137269974,-0.700222671031952,0.554722368717194,-0.506627559661865,-0.67433899641037,0.537210643291473,-0.540582954883575,-0.639463722705841,0.54667741060257,-0.480002343654633,-0.696702301502228,0.533107340335846,-0.334285438060761,-0.847836852073669,0.411613643169403,-0.449412137269974,-0.700222671031952,0.554722368717194,-0.480002343654633,-0.696702301502228,0.533107340335846,-0.449412137269974,-0.700222671031952,0.554722368717194,-0.531244039535522,-0.593717455863953,0.604383289813995,-0.531244039535522,-0.593717455863953,0.604383289813995,-0.449412137269974,-0.700222671031952,0.554722368717194,-0.471083730459213,-0.670215904712677,0.573489844799042,-0.540582954883575,-0.639463722705841,0.54667741060257,-0.471083730459213,-0.670215904712677,0.573489844799042,-0.449412137269974,-0.700222671031952,0.554722368717194, +-0.334285438060761,-0.847836852073669,0.411613643169403,-0.480002343654633,-0.696702301502228,0.533107340335846,-0.287550121545792,-0.898085057735443,0.332803428173065,0.0717418938875198,-0.99324631690979,-0.0911852344870567,0.123652823269367,-0.990374863147736,-0.0621892735362053,0.147593751549721,-0.981811940670013,-0.119420602917671,0.00404170481488109,-0.996722936630249,0.0807895585894585,0.136235952377319,-0.990676283836365,-0.000495914253406227,-0.097537599503994,-0.983774304389954,0.150580301880836,-0.193094581365585,-0.954370498657227,0.22779668867588,0.00404170481488109,-0.996722936630249,0.0807895585894585,-0.097537599503994,-0.983774304389954,0.150580301880836,-0.193094581365585,-0.954370498657227,0.22779668867588,-0.097537599503994,-0.983774304389954,0.150580301880836,-0.287550121545792,-0.898085057735443,0.332803428173065,-0.287550121545792,-0.898085057735443,0.332803428173065,-0.364107936620712,-0.842690348625183,0.3966084420681,-0.193094581365585,-0.954370498657227,0.22779668867588,-0.287550121545792,-0.898085057735443,0.332803428173065,-0.480002343654633,-0.696702301502228,0.533107340335846,-0.364107936620712,-0.842690348625183,0.3966084420681,0.136235952377319,-0.990676283836365,-0.000495914253406227,0.00404170481488109,-0.996722936630249,0.0807895585894585,0.192912727594376,-0.980905950069427,0.02465845271945,0.284451901912689,-0.95784854888916,-0.0401649475097656,0.136235952377319,-0.990676283836365,-0.000495914253406227,0.192912727594376,-0.980905950069427,0.02465845271945,0.202655747532845,-0.976470768451691,-0.0737255066633224,0.136235952377319,-0.990676283836365,-0.000495914253406227,0.284451901912689,-0.95784854888916,-0.0401649475097656,0.123652823269367,-0.990374863147736,-0.0621892735362053,0.136235952377319,-0.990676283836365,-0.000495914253406227,0.202655747532845,-0.976470768451691,-0.0737255066633224,0.147593751549721,-0.981811940670013,-0.119420602917671,0.123652823269367,-0.990374863147736,-0.0621892735362053,0.202655747532845,-0.976470768451691,-0.0737255066633224,-0.540582954883575,-0.639463722705841,0.54667741060257, +-0.480639547109604,-0.709499359130859,0.515360176563263,-0.471083730459213,-0.670215904712677,0.573489844799042,-0.471083730459213,-0.670215904712677,0.573489844799042,-0.47290712594986,-0.680483102798462,0.559733390808105,-0.480002343654633,-0.696702301502228,0.533107340335846,-0.47290712594986,-0.680483102798462,0.559733390808105,-0.471083730459213,-0.670215904712677,0.573489844799042,-0.317955762147903,-0.844724535942078,0.430516481399536,-0.471083730459213,-0.670215904712677,0.573489844799042,-0.480002343654633,-0.696702301502228,0.533107340335846,-0.531244039535522,-0.593717455863953,0.604383289813995,-0.317955762147903,-0.844724535942078,0.430516481399536,-0.471083730459213,-0.670215904712677,0.573489844799042,-0.212419539690018,-0.91420841217041,0.345109879970551,-0.353620082139969,-0.820792615413666,0.448611438274384,-0.212419539690018,-0.91420841217041,0.345109879970551,-0.471083730459213,-0.670215904712677,0.573489844799042,-0.353620082139969,-0.820792615413666,0.448611438274384,-0.471083730459213,-0.670215904712677,0.573489844799042,-0.480639547109604,-0.709499359130859,0.515360176563263,-0.364107936620712,-0.842690348625183,0.3966084420681,-0.480002343654633,-0.696702301502228,0.533107340335846,-0.493991315364838,-0.716734230518341,0.492203712463379,-0.480002343654633,-0.696702301502228,0.533107340335846,-0.47290712594986,-0.680483102798462,0.559733390808105,-0.493991315364838,-0.716734230518341,0.492203712463379,0.00404170481488109,-0.996722936630249,0.0807895585894585,-0.193094581365585,-0.954370498657227,0.22779668867588,-0.139295265078545,-0.973026096820831,0.183893814682961,-0.361553132534027,-0.867315948009491,0.342114329338074,-0.139295265078545,-0.973026096820831,0.183893814682961,-0.193094581365585,-0.954370498657227,0.22779668867588,-0.361553132534027,-0.867315948009491,0.342114329338074,-0.193094581365585,-0.954370498657227,0.22779668867588,-0.364107936620712,-0.842690348625183,0.3966084420681,-0.093847818672657,-0.991515755653381,0.0899385288357735,0.0524392686784267,-0.995820879936218,0.0747719332575798, +0.00404170481488109,-0.996722936630249,0.0807895585894585,0.192912727594376,-0.980905950069427,0.02465845271945,0.00404170481488109,-0.996722936630249,0.0807895585894585,0.0524392686784267,-0.995820879936218,0.0747719332575798,-0.139295265078545,-0.973026096820831,0.183893814682961,-0.093847818672657,-0.991515755653381,0.0899385288357735,0.00404170481488109,-0.996722936630249,0.0807895585894585,-0.364107936620712,-0.842690348625183,0.3966084420681,-0.493991315364838,-0.716734230518341,0.492203712463379,-0.361553132534027,-0.867315948009491,0.342114329338074,-0.353620082139969,-0.820792615413666,0.448611438274384,-0.480639547109604,-0.709499359130859,0.515360176563263,-0.304088413715363,-0.900885820388794,0.309733480215073,-0.468380123376846,-0.739380061626434,0.483670383691788,-0.493991315364838,-0.716734230518341,0.492203712463379,-0.47290712594986,-0.680483102798462,0.559733390808105,-0.468380123376846,-0.739380061626434,0.483670383691788,-0.47290712594986,-0.680483102798462,0.559733390808105,-0.317955762147903,-0.844724535942078,0.430516481399536,-0.353620082139969,-0.820792615413666,0.448611438274384,-0.147112920880318,-0.961290180683136,0.232978284358978,-0.212419539690018,-0.91420841217041,0.345109879970551,-0.304088413715363,-0.900885820388794,0.309733480215073,-0.147112920880318,-0.961290180683136,0.232978284358978,-0.353620082139969,-0.820792615413666,0.448611438274384,-0.317955762147903,-0.844724535942078,0.430516481399536,-0.212419539690018,-0.91420841217041,0.345109879970551,-0.0862768515944481,-0.977811753749847,0.190893560647964,-0.0862768515944481,-0.977811753749847,0.190893560647964,-0.212419539690018,-0.91420841217041,0.345109879970551,0.00179139152169228,-0.994337797164917,0.10624884814024,-0.147112920880318,-0.961290180683136,0.232978284358978,0.00179139152169228,-0.994337797164917,0.10624884814024,-0.212419539690018,-0.91420841217041,0.345109879970551,-0.317955762147903,-0.844724535942078,0.430516481399536,-0.231485664844513,-0.932414889335632,0.277518898248672,-0.468380123376846,-0.739380061626434,0.483670383691788, +-0.0862768515944481,-0.977811753749847,0.190893560647964,-0.231485664844513,-0.932414889335632,0.277518898248672,-0.317955762147903,-0.844724535942078,0.430516481399536,-0.361553132534027,-0.867315948009491,0.342114329338074,-0.493991315364838,-0.716734230518341,0.492203712463379,-0.559334814548492,-0.690314412117004,0.45892322063446,-0.559334814548492,-0.690314412117004,0.45892322063446,-0.493991315364838,-0.716734230518341,0.492203712463379,-0.468380123376846,-0.739380061626434,0.483670383691788,-0.139295265078545,-0.973026096820831,0.183893814682961,-0.361553132534027,-0.867315948009491,0.342114329338074,-0.222222238779068,-0.95393979549408,0.201534122228622,-0.426759719848633,-0.861941397190094,0.273739010095596,-0.222222238779068,-0.95393979549408,0.201534122228622,-0.361553132534027,-0.867315948009491,0.342114329338074,-0.426759719848633,-0.861941397190094,0.273739010095596,-0.361553132534027,-0.867315948009491,0.342114329338074,-0.545527637004852,-0.743736326694489,0.38633605837822,-0.361553132534027,-0.867315948009491,0.342114329338074,-0.559334814548492,-0.690314412117004,0.45892322063446,-0.545527637004852,-0.743736326694489,0.38633605837822,-0.139295265078545,-0.973026096820831,0.183893814682961,-0.222222238779068,-0.95393979549408,0.201534122228622,-0.093847818672657,-0.991515755653381,0.0899385288357735,-0.304088413715363,-0.900885820388794,0.309733480215073,-0.0364438109099865,-0.993548333644867,0.107394054532051,-0.147112920880318,-0.961290180683136,0.232978284358978,-0.559334814548492,-0.690314412117004,0.45892322063446,-0.468380123376846,-0.739380061626434,0.483670383691788,-0.542870938777924,-0.720339417457581,0.431743085384369,-0.29101437330246,-0.912958920001984,0.286035746335983,-0.542870938777924,-0.720339417457581,0.431743085384369,-0.468380123376846,-0.739380061626434,0.483670383691788,-0.468380123376846,-0.739380061626434,0.483670383691788,-0.231485664844513,-0.932414889335632,0.277518898248672,-0.29101437330246,-0.912958920001984,0.286035746335983,-0.0364438109099865,-0.993548333644867,0.107394054532051, +0.00179139152169228,-0.994337797164917,0.10624884814024,-0.147112920880318,-0.961290180683136,0.232978284358978,0.0251305215060711,-0.996753454208374,0.0764908194541931,0.00179139152169228,-0.994337797164917,0.10624884814024,0.0482384748756886,-0.997548401355743,0.0506960526108742,-0.0862768515944481,-0.977811753749847,0.190893560647964,0.00179139152169228,-0.994337797164917,0.10624884814024,0.0251305215060711,-0.996753454208374,0.0764908194541931,0.0482384748756886,-0.997548401355743,0.0506960526108742,0.00179139152169228,-0.994337797164917,0.10624884814024,0.0487124510109425,-0.996004998683929,0.0748395696282387,-0.0364438109099865,-0.993548333644867,0.107394054532051,0.0487124510109425,-0.996004998683929,0.0748395696282387,0.00179139152169228,-0.994337797164917,0.10624884814024,-0.0862768515944481,-0.977811753749847,0.190893560647964,-0.00982866436243057,-0.995724678039551,0.0918455868959427,-0.231485664844513,-0.932414889335632,0.277518898248672,-0.0862768515944481,-0.977811753749847,0.190893560647964,0.0251305215060711,-0.996753454208374,0.0764908194541931,-0.00982866436243057,-0.995724678039551,0.0918455868959427,-0.231485664844513,-0.932414889335632,0.277518898248672,-0.100277446210384,-0.982060551643372,0.159691944718361,-0.29101437330246,-0.912958920001984,0.286035746335983,-0.00982866436243057,-0.995724678039551,0.0918455868959427,-0.100277446210384,-0.982060551643372,0.159691944718361,-0.231485664844513,-0.932414889335632,0.277518898248672,-0.545527637004852,-0.743736326694489,0.38633605837822,-0.559334814548492,-0.690314412117004,0.45892322063446,-0.569900572299957,-0.717265009880066,0.400929003953934,-0.569900572299957,-0.717265009880066,0.400929003953934,-0.559334814548492,-0.690314412117004,0.45892322063446,-0.542870938777924,-0.720339417457581,0.431743085384369,-0.542870938777924,-0.720339417457581,0.431743085384369,-0.29101437330246,-0.912958920001984,0.286035746335983,-0.395175844430923,-0.84804779291153,0.3530592918396,-0.158827006816864,-0.972283363342285,0.171578079462051,-0.395175844430923,-0.84804779291153,0.3530592918396, +-0.29101437330246,-0.912958920001984,0.286035746335983,-0.158827006816864,-0.972283363342285,0.171578079462051,-0.29101437330246,-0.912958920001984,0.286035746335983,-0.0255853291600943,-0.994992911815643,0.0966135486960411,-0.0255853291600943,-0.994992911815643,0.0966135486960411,-0.29101437330246,-0.912958920001984,0.286035746335983,-0.100277446210384,-0.982060551643372,0.159691944718361,-0.542870938777924,-0.720339417457581,0.431743085384369,-0.395175844430923,-0.84804779291153,0.3530592918396,-0.569900572299957,-0.717265009880066,0.400929003953934,0.0385789684951305,-0.995219528675079,0.089719794690609,0.0482384748756886,-0.997548401355743,0.0506960526108742,0.0487124510109425,-0.996004998683929,0.0748395696282387,0.0436160191893578,-0.998257100582123,0.0397536568343639,0.0482384748756886,-0.997548401355743,0.0506960526108742,0.0395830944180489,-0.996393918991089,0.07504802942276,0.0436160191893578,-0.998257100582123,0.0397536568343639,-0.00982866436243057,-0.995724678039551,0.0918455868959427,0.0482384748756886,-0.997548401355743,0.0506960526108742,0.0482384748756886,-0.997548401355743,0.0506960526108742,0.0385789684951305,-0.995219528675079,0.089719794690609,0.0395830944180489,-0.996393918991089,0.07504802942276,0.0251305215060711,-0.996753454208374,0.0764908194541931,0.0482384748756886,-0.997548401355743,0.0506960526108742,-0.00982866436243057,-0.995724678039551,0.0918455868959427,0.0436160191893578,-0.998257100582123,0.0397536568343639,-0.0255853291600943,-0.994992911815643,0.0966135486960411,-0.00982866436243057,-0.995724678039551,0.0918455868959427,-0.0255853291600943,-0.994992911815643,0.0966135486960411,-0.100277446210384,-0.982060551643372,0.159691944718361,-0.00982866436243057,-0.995724678039551,0.0918455868959427,-0.0255853291600943,-0.994992911815643,0.0966135486960411,0.0436160191893578,-0.998257100582123,0.0397536568343639,-0.0343938991427422,-0.99642550945282,0.0771572217345238,-0.0255853291600943,-0.994992911815643,0.0966135486960411,-0.0343938991427422,-0.99642550945282,0.0771572217345238,-0.158827006816864,-0.972283363342285,0.171578079462051, +0.0436160191893578,-0.998257100582123,0.0397536568343639,0.0249471850693226,-0.997819423675537,0.0611042194068432,0.0246136114001274,-0.998632431030273,0.0461237207055092,0.0436160191893578,-0.998257100582123,0.0397536568343639,0.0395830944180489,-0.996393918991089,0.07504802942276,0.0249471850693226,-0.997819423675537,0.0611042194068432,0.0249471850693226,-0.997819423675537,0.0611042194068432,0.0395830944180489,-0.996393918991089,0.07504802942276,0.0259841587394476,-0.995611846446991,0.089898370206356,0.0295560862869024,-0.995258748531342,0.092662401497364,0.0259841587394476,-0.995611846446991,0.089898370206356,0.0395830944180489,-0.996393918991089,0.07504802942276,0.0199811346828938,-0.995869219303131,0.0885733738541603,0.0246136114001274,-0.998632431030273,0.0461237207055092,0.0249471850693226,-0.997819423675537,0.0611042194068432,0.0249471850693226,-0.997819423675537,0.0611042194068432,0.0259841587394476,-0.995611846446991,0.089898370206356,0.0199811346828938,-0.995869219303131,0.0885733738541603,0.00785439554601908,-0.997408092021942,0.071521058678627,0.0246136114001274,-0.998632431030273,0.0461237207055092,0.0199811346828938,-0.995869219303131,0.0885733738541603,0.033177062869072,-0.996918499469757,0.0710820853710175,0.0246136114001274,-0.998632431030273,0.0461237207055092,0.00785439554601908,-0.997408092021942,0.071521058678627,0.0240670274943113,-0.991354942321777,0.128979980945587,0.0259841587394476,-0.995611846446991,0.089898370206356,0.0295560862869024,-0.995258748531342,0.092662401497364,0.0199811346828938,-0.995869219303131,0.0885733738541603,0.0259841587394476,-0.995611846446991,0.089898370206356,0.0240670274943113,-0.991354942321777,0.128979980945587,0.0199811346828938,-0.995869219303131,0.0885733738541603,0.0220855548977852,-0.993190407752991,0.11438973993063,0.00785439554601908,-0.997408092021942,0.071521058678627,0.0220855548977852,-0.993190407752991,0.11438973993063,0.0199811346828938,-0.995869219303131,0.0885733738541603,0.0248435270041227,-0.990361452102661,0.136260315775871,0.0248435270041227,-0.990361452102661,0.136260315775871, +0.0199811346828938,-0.995869219303131,0.0885733738541603,0.0240670274943113,-0.991354942321777,0.128979980945587,0.00785439554601908,-0.997408092021942,0.071521058678627,0.0220855548977852,-0.993190407752991,0.11438973993063,0.033177062869072,-0.996918499469757,0.0710820853710175,0.0363240465521812,-0.993178308010101,0.110802926123142,0.0221267528831959,-0.997239708900452,0.0708746090531349,0.033177062869072,-0.996918499469757,0.0710820853710175,0.0363240465521812,-0.993178308010101,0.110802926123142,0.033177062869072,-0.996918499469757,0.0710820853710175,0.0220855548977852,-0.993190407752991,0.11438973993063,0.0275333374738693,-0.987375855445862,0.155983060598373,0.0248435270041227,-0.990361452102661,0.136260315775871,0.0240670274943113,-0.991354942321777,0.128979980945587,0.0220855548977852,-0.993190407752991,0.11438973993063,0.0248435270041227,-0.990361452102661,0.136260315775871,0.0275333374738693,-0.987375855445862,0.155983060598373,0.0220855548977852,-0.993190407752991,0.11438973993063,0.0395733825862408,-0.987298369407654,0.153869330883026,0.0363240465521812,-0.993178308010101,0.110802926123142,0.0221267528831959,-0.997239708900452,0.0708746090531349,0.0363240465521812,-0.993178308010101,0.110802926123142,0.023672342300415,-0.996148228645325,0.0844284668564796,0.0363240465521812,-0.993178308010101,0.110802926123142,0.0383325107395649,-0.991800606250763,0.121910199522972,0.023672342300415,-0.996148228645325,0.0844284668564796,0.0383325107395649,-0.991800606250763,0.121910199522972,0.0363240465521812,-0.993178308010101,0.110802926123142,0.0395733825862408,-0.987298369407654,0.153869330883026,0.0318183824419975,-0.99312835931778,0.112621635198593,0.023672342300415,-0.996148228645325,0.0844284668564796,0.0383325107395649,-0.991800606250763,0.121910199522972,0.0345578864216805,-0.989020884037018,0.143678158521652,0.0318183824419975,-0.99312835931778,0.112621635198593,0.0383325107395649,-0.991800606250763,0.121910199522972,0.0314269438385963,-0.996424853801727,0.0784209743142128,0.023672342300415,-0.996148228645325,0.0844284668564796, +0.0318183824419975,-0.99312835931778,0.112621635198593,0.0456116534769535,-0.988736152648926,0.142549023032188,0.0318183824419975,-0.99312835931778,0.112621635198593,0.0345578864216805,-0.989020884037018,0.143678158521652,0.0318189226090908,-0.998701453208923,0.0397854670882225,0.0314269438385963,-0.996424853801727,0.0784209743142128,0.0318183824419975,-0.99312835931778,0.112621635198593,0.0318189226090908,-0.998701453208923,0.0397854670882225,0.0318183824419975,-0.99312835931778,0.112621635198593,0.0456116534769535,-0.988736152648926,0.142549023032188,0.0318189226090908,-0.998701453208923,0.0397854670882225,0.0595862492918968,-0.998094737529755,0.0160093419253826,0.0314269438385963,-0.996424853801727,0.0784209743142128,-0.0101088183000684,0.973163604736328,-0.229892030358315,0.0595862492918968,-0.998094737529755,0.0160093419253826,0.0318189226090908,-0.998701453208923,0.0397854670882225,0.779850006103516,0.610774993896484,0.137068405747414,0.348779290914536,0.908047258853912,-0.231954380869865,0.855585336685181,0.439547032117844,0.273444682359695,0.779850006103516,0.610774993896484,0.137068405747414,0.0557303875684738,0.89520138502121,-0.442163348197937,0.348779290914536,0.908047258853912,-0.231954380869865,0.542684078216553,0.838871598243713,-0.0422878675162792,0.855585336685181,0.439547032117844,0.273444682359695,0.348779290914536,0.908047258853912,-0.231954380869865,0.855780065059662,0.281191557645798,0.434248358011246,0.779850006103516,0.610774993896484,0.137068405747414,0.855585336685181,0.439547032117844,0.273444682359695,0.779850006103516,0.610774993896484,0.137068405747414,0.60889083147049,0.793252229690552,-0.00164051202591509,0.0557303875684738,0.89520138502121,-0.442163348197937,0.0557303875684738,0.89520138502121,-0.442163348197937,-0.373403966426849,0.719381392002106,-0.585712909698486,0.348779290914536,0.908047258853912,-0.231954380869865,0.850745975971222,0.318017512559891,0.418444871902466,0.855585336685181,0.439547032117844,0.273444682359695,0.542684078216553,0.838871598243713,-0.0422878675162792, +0.542684078216553,0.838871598243713,-0.0422878675162792,0.348779290914536,0.908047258853912,-0.231954380869865,-0.288024067878723,0.836333811283112,-0.466462999582291,0.779850006103516,0.610774993896484,0.137068405747414,0.855780065059662,0.281191557645798,0.434248358011246,0.850741863250732,0.393817186355591,0.348060578107834,0.855780065059662,0.281191557645798,0.434248358011246,0.855585336685181,0.439547032117844,0.273444682359695,0.853951513767242,0.193813428282738,0.482911020517349,0.779850006103516,0.610774993896484,0.137068405747414,0.850741863250732,0.393817186355591,0.348060578107834,0.60889083147049,0.793252229690552,-0.00164051202591509,0.0557303875684738,0.89520138502121,-0.442163348197937,0.60889083147049,0.793252229690552,-0.00164051202591509,-0.157215446233749,0.830069959163666,-0.535039305686951,0.0557303875684738,0.89520138502121,-0.442163348197937,-0.582265615463257,0.464549511671066,-0.667203366756439,-0.373403966426849,0.719381392002106,-0.585712909698486,-0.288024067878723,0.836333811283112,-0.466462999582291,0.348779290914536,0.908047258853912,-0.231954380869865,-0.373403966426849,0.719381392002106,-0.585712909698486,0.850745975971222,0.318017512559891,0.418444871902466,0.853951513767242,0.193813428282738,0.482911020517349,0.855585336685181,0.439547032117844,0.273444682359695,0.542684078216553,0.838871598243713,-0.0422878675162792,0.580496847629547,0.789411783218384,0.199630483984947,0.850745975971222,0.318017512559891,0.418444871902466,-0.117830477654934,0.942831635475159,-0.311744123697281,0.542684078216553,0.838871598243713,-0.0422878675162792,-0.288024067878723,0.836333811283112,-0.466462999582291,0.850741863250732,0.393817186355591,0.348060578107834,0.855780065059662,0.281191557645798,0.434248358011246,0.82640528678894,0.341271132230759,0.44787073135376,0.850741863250732,0.393817186355591,0.348060578107834,0.786850094795227,0.52639502286911,0.322141289710999,0.60889083147049,0.793252229690552,-0.00164051202591509,0.60889083147049,0.793252229690552,-0.00164051202591509,0.483810991048813,0.863404273986816,-0.143037915229797, +-0.157215446233749,0.830069959163666,-0.535039305686951,0.0557303875684738,0.89520138502121,-0.442163348197937,-0.157215446233749,0.830069959163666,-0.535039305686951,-0.582265615463257,0.464549511671066,-0.667203366756439,-0.582265615463257,0.464549511671066,-0.667203366756439,-0.632649719715118,0.484614938497543,-0.60407155752182,-0.373403966426849,0.719381392002106,-0.585712909698486,-0.288024067878723,0.836333811283112,-0.466462999582291,-0.373403966426849,0.719381392002106,-0.585712909698486,-0.632649719715118,0.484614938497543,-0.60407155752182,0.805518507957459,0.0838503688573837,0.586607992649078,0.853951513767242,0.193813428282738,0.482911020517349,0.850745975971222,0.318017512559891,0.418444871902466,0.542684078216553,0.838871598243713,-0.0422878675162792,-0.117830477654934,0.942831635475159,-0.311744123697281,0.580496847629547,0.789411783218384,0.199630483984947,0.749607145786285,0.454299837350845,0.481352895498276,0.850745975971222,0.318017512559891,0.418444871902466,0.580496847629547,0.789411783218384,0.199630483984947,-0.581838607788086,0.626670718193054,-0.518408536911011,-0.117830477654934,0.942831635475159,-0.311744123697281,-0.288024067878723,0.836333811283112,-0.466462999582291,0.850741863250732,0.393817186355591,0.348060578107834,0.82640528678894,0.341271132230759,0.44787073135376,0.786850094795227,0.52639502286911,0.322141289710999,0.60889083147049,0.793252229690552,-0.00164051202591509,0.786850094795227,0.52639502286911,0.322141289710999,0.483810991048813,0.863404273986816,-0.143037915229797,-0.0181518439203501,0.806248843669891,-0.59129786491394,-0.157215446233749,0.830069959163666,-0.535039305686951,0.483810991048813,0.863404273986816,-0.143037915229797,-0.582265615463257,0.464549511671066,-0.667203366756439,-0.157215446233749,0.830069959163666,-0.535039305686951,-0.542790949344635,0.403749734163284,-0.736453652381897,-0.632649719715118,0.484614938497543,-0.60407155752182,-0.581838607788086,0.626670718193054,-0.518408536911011,-0.288024067878723,0.836333811283112,-0.466462999582291,0.749607145786285,0.454299837350845,0.481352895498276, +0.805518507957459,0.0838503688573837,0.586607992649078,0.850745975971222,0.318017512559891,0.418444871902466,0.106745071709156,0.991677284240723,0.0719828456640244,0.580496847629547,0.789411783218384,0.199630483984947,-0.117830477654934,0.942831635475159,-0.311744123697281,0.749607145786285,0.454299837350845,0.481352895498276,0.580496847629547,0.789411783218384,0.199630483984947,0.106745071709156,0.991677284240723,0.0719828456640244,-0.117830477654934,0.942831635475159,-0.311744123697281,-0.581838607788086,0.626670718193054,-0.518408536911011,-0.486489176750183,0.799892067909241,-0.351426810026169,0.786850094795227,0.52639502286911,0.322141289710999,0.82640528678894,0.341271132230759,0.44787073135376,0.779515206813812,0.425029695034027,0.46011483669281,0.635182499885559,0.765227317810059,0.104739263653755,0.483810991048813,0.863404273986816,-0.143037915229797,0.786850094795227,0.52639502286911,0.322141289710999,-0.0181518439203501,0.806248843669891,-0.59129786491394,-0.542790949344635,0.403749734163284,-0.736453652381897,-0.157215446233749,0.830069959163666,-0.535039305686951,0.635182499885559,0.765227317810059,0.104739263653755,-0.0181518439203501,0.806248843669891,-0.59129786491394,0.483810991048813,0.863404273986816,-0.143037915229797,0.805518507957459,0.0838503688573837,0.586607992649078,0.749607145786285,0.454299837350845,0.481352895498276,0.81856906414032,0.147801890969276,0.555066764354706,-0.117830477654934,0.942831635475159,-0.311744123697281,-0.486489176750183,0.799892067909241,-0.351426810026169,0.106745071709156,0.991677284240723,0.0719828456640244,0.749607145786285,0.454299837350845,0.481352895498276,0.106745071709156,0.991677284240723,0.0719828456640244,0.404096633195877,0.808793246746063,0.427269548177719,0.786850094795227,0.52639502286911,0.322141289710999,0.779515206813812,0.425029695034027,0.46011483669281,0.635182499885559,0.765227317810059,0.104739263653755,-0.542790949344635,0.403749734163284,-0.736453652381897,-0.0181518439203501,0.806248843669891,-0.59129786491394,-0.405961364507675,0.404996901750565,-0.819251298904419, +0.418924808502197,0.854383170604706,-0.30745941400528,-0.0181518439203501,0.806248843669891,-0.59129786491394,0.635182499885559,0.765227317810059,0.104739263653755,0.751353919506073,0.324701696634293,0.574487626552582,0.81856906414032,0.147801890969276,0.555066764354706,0.749607145786285,0.454299837350845,0.481352895498276,0.805518507957459,0.0838503688573837,0.586607992649078,0.81856906414032,0.147801890969276,0.555066764354706,0.819758296012878,0.0189909972250462,0.572394549846649,-0.486489176750183,0.799892067909241,-0.351426810026169,-0.344709098339081,0.936210036277771,-0.0684566050767899,0.106745071709156,0.991677284240723,0.0719828456640244,0.106745071709156,0.991677284240723,0.0719828456640244,-0.344709098339081,0.936210036277771,-0.0684566050767899,0.404096633195877,0.808793246746063,0.427269548177719,0.751353919506073,0.324701696634293,0.574487626552582,0.749607145786285,0.454299837350845,0.481352895498276,0.404096633195877,0.808793246746063,0.427269548177719,0.690792083740234,0.72295081615448,0.0121760629117489,0.635182499885559,0.765227317810059,0.104739263653755,0.779515206813812,0.425029695034027,0.46011483669281,-0.0181518439203501,0.806248843669891,-0.59129786491394,0.0867357552051544,0.693573415279388,-0.715145289897919,-0.405961364507675,0.404996901750565,-0.819251298904419,-0.0181518439203501,0.806248843669891,-0.59129786491394,0.418924808502197,0.854383170604706,-0.30745941400528,0.0867357552051544,0.693573415279388,-0.715145289897919,0.690792083740234,0.72295081615448,0.0121760629117489,0.418924808502197,0.854383170604706,-0.30745941400528,0.635182499885559,0.765227317810059,0.104739263653755,0.81856906414032,0.147801890969276,0.555066764354706,0.751353919506073,0.324701696634293,0.574487626552582,0.819758296012878,0.0189909972250462,0.572394549846649,-0.486489176750183,0.799892067909241,-0.351426810026169,-0.662547588348389,0.641905009746552,-0.3859903216362,-0.344709098339081,0.936210036277771,-0.0684566050767899,0.125661015510559,0.957829236984253,0.258403599262238,0.404096633195877,0.808793246746063,0.427269548177719, +-0.344709098339081,0.936210036277771,-0.0684566050767899,0.736391484737396,0.385629147291183,0.55589348077774,0.751353919506073,0.324701696634293,0.574487626552582,0.404096633195877,0.808793246746063,0.427269548177719,0.0867357552051544,0.693573415279388,-0.715145289897919,-0.340127378702164,0.348741143941879,-0.873322904109955,-0.405961364507675,0.404996901750565,-0.819251298904419,0.690792083740234,0.72295081615448,0.0121760629117489,0.0867357552051544,0.693573415279388,-0.715145289897919,0.418924808502197,0.854383170604706,-0.30745941400528,0.736391484737396,0.385629147291183,0.55589348077774,0.819758296012878,0.0189909972250462,0.572394549846649,0.751353919506073,0.324701696634293,0.574487626552582,-0.344709098339081,0.936210036277771,-0.0684566050767899,-0.662547588348389,0.641905009746552,-0.3859903216362,-0.522601068019867,0.842803001403809,-0.128728747367859,0.125661015510559,0.957829236984253,0.258403599262238,0.736391484737396,0.385629147291183,0.55589348077774,0.404096633195877,0.808793246746063,0.427269548177719,-0.344709098339081,0.936210036277771,-0.0684566050767899,-0.522601068019867,0.842803001403809,-0.128728747367859,0.125661015510559,0.957829236984253,0.258403599262238,0.838589608669281,8.54392346809618e-005,0.544763505458832,0.819758296012878,0.0189909972250462,0.572394549846649,0.736391484737396,0.385629147291183,0.55589348077774,-0.662547588348389,0.641905009746552,-0.3859903216362,-0.677449107170105,0.673013865947723,-0.296841531991959,-0.522601068019867,0.842803001403809,-0.128728747367859,0.736391484737396,0.385629147291183,0.55589348077774,0.125661015510559,0.957829236984253,0.258403599262238,0.727163553237915,0.426064610481262,0.538239657878876,0.125661015510559,0.957829236984253,0.258403599262238,-0.522601068019867,0.842803001403809,-0.128728747367859,-0.412953734397888,0.909557938575745,0.0466202609241009,0.736391484737396,0.385629147291183,0.55589348077774,0.727163553237915,0.426064610481262,0.538239657878876,0.838589608669281,8.54392346809618e-005,0.544763505458832,-0.522601068019867,0.842803001403809,-0.128728747367859, +-0.677449107170105,0.673013865947723,-0.296841531991959,-0.412953734397888,0.909557938575745,0.0466202609241009,0.167753636837006,0.896029770374298,0.41108313202858,0.727163553237915,0.426064610481262,0.538239657878876,0.125661015510559,0.957829236984253,0.258403599262238,0.167753636837006,0.896029770374298,0.41108313202858,0.125661015510559,0.957829236984253,0.258403599262238,-0.412953734397888,0.909557938575745,0.0466202609241009,0.838589608669281,8.54392346809618e-005,0.544763505458832,0.727163553237915,0.426064610481262,0.538239657878876,0.790116667747498,0.108334116637707,0.603307008743286,-0.677449107170105,0.673013865947723,-0.296841531991959,-0.61747819185257,0.756037056446075,-0.217091232538223,-0.412953734397888,0.909557938575745,0.0466202609241009,0.366756588220596,0.716972768306732,0.592823207378387,0.727163553237915,0.426064610481262,0.538239657878876,0.167753636837006,0.896029770374298,0.41108313202858,0.366756588220596,0.716972768306732,0.592823207378387,0.167753636837006,0.896029770374298,0.41108313202858,-0.412953734397888,0.909557938575745,0.0466202609241009,0.727163553237915,0.426064610481262,0.538239657878876,0.366756588220596,0.716972768306732,0.592823207378387,0.790116667747498,0.108334116637707,0.603307008743286,-0.412953734397888,0.909557938575745,0.0466202609241009,-0.61747819185257,0.756037056446075,-0.217091232538223,-0.298293709754944,0.941628873348236,0.156063258647919,-0.412953734397888,0.909557938575745,0.0466202609241009,-0.298293709754944,0.941628873348236,0.156063258647919,0.366756588220596,0.716972768306732,0.592823207378387,0.75214010477066,0.182770356535912,0.633150935173035,0.790116667747498,0.108334116637707,0.603307008743286,0.366756588220596,0.716972768306732,0.592823207378387,-0.602489233016968,0.795535445213318,-0.0642641112208366,-0.298293709754944,0.941628873348236,0.156063258647919,-0.61747819185257,0.756037056446075,-0.217091232538223,0.366756588220596,0.716972768306732,0.592823207378387,-0.298293709754944,0.941628873348236,0.156063258647919,0.261202245950699,0.77480810880661,0.575713157653809, +0.366756588220596,0.716972768306732,0.592823207378387,0.261202245950699,0.77480810880661,0.575713157653809,0.75214010477066,0.182770356535912,0.633150935173035,-0.30200257897377,0.886800348758698,0.349827647209167,-0.298293709754944,0.941628873348236,0.156063258647919,-0.602489233016968,0.795535445213318,-0.0642641112208366,-0.602489233016968,0.795535445213318,-0.0642641112208366,-0.61747819185257,0.756037056446075,-0.217091232538223,-0.724854290485382,0.610236823558807,-0.319682627916336,0.261202245950699,0.77480810880661,0.575713157653809,-0.298293709754944,0.941628873348236,0.156063258647919,-0.30200257897377,0.886800348758698,0.349827647209167,0.463855266571045,0.454978376626968,0.76015317440033,0.75214010477066,0.182770356535912,0.633150935173035,0.261202245950699,0.77480810880661,0.575713157653809,-0.623652100563049,0.780848205089569,-0.0365240834653378,-0.30200257897377,0.886800348758698,0.349827647209167,-0.602489233016968,0.795535445213318,-0.0642641112208366,-0.623652100563049,0.780848205089569,-0.0365240834653378,-0.602489233016968,0.795535445213318,-0.0642641112208366,-0.724854290485382,0.610236823558807,-0.319682627916336,-0.30200257897377,0.886800348758698,0.349827647209167,0.463855266571045,0.454978376626968,0.76015317440033,0.261202245950699,0.77480810880661,0.575713157653809,-0.0545033067464828,0.857796609401703,0.511090993881226,-0.30200257897377,0.886800348758698,0.349827647209167,-0.623652100563049,0.780848205089569,-0.0365240834653378,-0.705883681774139,0.618047654628754,-0.346042335033417,-0.623652100563049,0.780848205089569,-0.0365240834653378,-0.724854290485382,0.610236823558807,-0.319682627916336,-0.0545033067464828,0.857796609401703,0.511090993881226,0.463855266571045,0.454978376626968,0.76015317440033,-0.30200257897377,0.886800348758698,0.349827647209167,-0.5024334192276,0.864268064498901,0.0245183166116476,-0.0545033067464828,0.857796609401703,0.511090993881226,-0.623652100563049,0.780848205089569,-0.0365240834653378,-0.705883681774139,0.618047654628754,-0.346042335033417,-0.666199326515198,0.684379577636719,-0.296315550804138, +-0.623652100563049,0.780848205089569,-0.0365240834653378,0.463855266571045,0.454978376626968,0.76015317440033,-0.0545033067464828,0.857796609401703,0.511090993881226,0.645113527774811,0.156735077500343,0.747838616371155,-0.128601551055908,0.9002605676651,0.415923565626144,-0.0545033067464828,0.857796609401703,0.511090993881226,-0.5024334192276,0.864268064498901,0.0245183166116476,-0.5024334192276,0.864268064498901,0.0245183166116476,-0.623652100563049,0.780848205089569,-0.0365240834653378,-0.666199326515198,0.684379577636719,-0.296315550804138,0.496160537004471,0.477428525686264,0.725180387496948,0.645113527774811,0.156735077500343,0.747838616371155,-0.0545033067464828,0.857796609401703,0.511090993881226,-0.128601551055908,0.9002605676651,0.415923565626144,0.496160537004471,0.477428525686264,0.725180387496948,-0.0545033067464828,0.857796609401703,0.511090993881226,-0.109210975468159,0.877037405967712,0.467844307422638,-0.128601551055908,0.9002605676651,0.415923565626144,-0.5024334192276,0.864268064498901,0.0245183166116476,-0.621035695075989,0.746946573257446,-0.237455934286118,-0.5024334192276,0.864268064498901,0.0245183166116476,-0.666199326515198,0.684379577636719,-0.296315550804138,0.496160537004471,0.477428525686264,0.725180387496948,0.740694224834442,-0.158357843756676,0.652912557125092,0.645113527774811,0.156735077500343,0.747838616371155,-0.109210975468159,0.877037405967712,0.467844307422638,0.496160537004471,0.477428525686264,0.725180387496948,-0.128601551055908,0.9002605676651,0.415923565626144,-0.5024334192276,0.864268064498901,0.0245183166116476,-0.485630035400391,0.868235647678375,0.101637601852417,-0.109210975468159,0.877037405967712,0.467844307422638,-0.5024334192276,0.864268064498901,0.0245183166116476,-0.621035695075989,0.746946573257446,-0.237455934286118,-0.485630035400391,0.868235647678375,0.101637601852417,0.659816145896912,-0.0139634907245636,0.751297235488892,0.740694224834442,-0.158357843756676,0.652912557125092,0.496160537004471,0.477428525686264,0.725180387496948,0.406345754861832,0.489812523126602,0.771340847015381, +0.496160537004471,0.477428525686264,0.725180387496948,-0.109210975468159,0.877037405967712,0.467844307422638,-0.109210975468159,0.877037405967712,0.467844307422638,-0.485630035400391,0.868235647678375,0.101637601852417,-0.0665697604417801,0.768150806427002,0.636798739433289,-0.485630035400391,0.868235647678375,0.101637601852417,-0.621035695075989,0.746946573257446,-0.237455934286118,-0.580990374088287,0.811691522598267,-0.0600578673183918,0.659816145896912,-0.0139634907245636,0.751297235488892,0.75469982624054,-0.268750041723251,0.598499298095703,0.740694224834442,-0.158357843756676,0.652912557125092,0.659816145896912,-0.0139634907245636,0.751297235488892,0.496160537004471,0.477428525686264,0.725180387496948,0.406345754861832,0.489812523126602,0.771340847015381,0.274290859699249,0.472306430339813,0.837669968605042,0.406345754861832,0.489812523126602,0.771340847015381,-0.109210975468159,0.877037405967712,0.467844307422638,-0.0665697604417801,0.768150806427002,0.636798739433289,-0.485630035400391,0.868235647678375,0.101637601852417,-0.304106771945953,0.887821197509766,0.345387399196625,-0.109210975468159,0.877037405967712,0.467844307422638,-0.0665697604417801,0.768150806427002,0.636798739433289,0.274290859699249,0.472306430339813,0.837669968605042,-0.304106771945953,0.887821197509766,0.345387399196625,-0.485630035400391,0.868235647678375,0.101637601852417,-0.580990374088287,0.811691522598267,-0.0600578673183918,0.75469982624054,-0.268750041723251,0.598499298095703,0.659816145896912,-0.0139634907245636,0.751297235488892,0.752604126930237,-0.176060438156128,0.634499549865723,0.274290859699249,0.472306430339813,0.837669968605042,0.659816145896912,-0.0139634907245636,0.751297235488892,0.406345754861832,0.489812523126602,0.771340847015381,-0.0665697604417801,0.768150806427002,0.636798739433289,-0.304106771945953,0.887821197509766,0.345387399196625,0.358601599931717,0.507097899913788,0.783745169639587,0.53783655166626,0.220236465334892,0.81377375125885,0.274290859699249,0.472306430339813,0.837669968605042,-0.0665697604417801,0.768150806427002,0.636798739433289, +-0.304106771945953,0.887821197509766,0.345387399196625,-0.580990374088287,0.811691522598267,-0.0600578673183918,-0.404577344655991,0.881717085838318,0.2426767796278,0.53783655166626,0.220236465334892,0.81377375125885,0.752604126930237,-0.176060438156128,0.634499549865723,0.659816145896912,-0.0139634907245636,0.751297235488892,0.53783655166626,0.220236465334892,0.81377375125885,0.659816145896912,-0.0139634907245636,0.751297235488892,0.274290859699249,0.472306430339813,0.837669968605042,0.358601599931717,0.507097899913788,0.783745169639587,-0.304106771945953,0.887821197509766,0.345387399196625,0.182615086436272,0.710974216461182,0.679092943668365,-0.0665697604417801,0.768150806427002,0.636798739433289,0.358601599931717,0.507097899913788,0.783745169639587,0.53783655166626,0.220236465334892,0.81377375125885,-0.550345599651337,0.833755731582642,0.0443950071930885,-0.404577344655991,0.881717085838318,0.2426767796278,-0.580990374088287,0.811691522598267,-0.0600578673183918,-0.304106771945953,0.887821197509766,0.345387399196625,-0.404577344655991,0.881717085838318,0.2426767796278,0.182615086436272,0.710974216461182,0.679092943668365,0.700762093067169,-0.00298877665773034,0.713388681411743,0.752604126930237,-0.176060438156128,0.634499549865723,0.53783655166626,0.220236465334892,0.81377375125885,0.358601599931717,0.507097899913788,0.783745169639587,0.182615086436272,0.710974216461182,0.679092943668365,0.668041288852692,0.0836354196071625,0.73940908908844,0.700762093067169,-0.00298877665773034,0.713388681411743,0.53783655166626,0.220236465334892,0.81377375125885,0.358601599931717,0.507097899913788,0.783745169639587,-0.404577344655991,0.881717085838318,0.2426767796278,-0.550345599651337,0.833755731582642,0.0443950071930885,-0.156233429908752,0.846404194831848,0.509107947349548,0.182615086436272,0.710974216461182,0.679092943668365,-0.404577344655991,0.881717085838318,0.2426767796278,-0.156233429908752,0.846404194831848,0.509107947349548,0.767053186893463,-0.253628462553024,0.589323222637177,0.752604126930237,-0.176060438156128,0.634499549865723, +0.700762093067169,-0.00298877665773034,0.713388681411743,0.538246929645538,0.323065757751465,0.778407692909241,0.668041288852692,0.0836354196071625,0.73940908908844,0.182615086436272,0.710974216461182,0.679092943668365,0.668041288852692,0.0836354196071625,0.73940908908844,0.700762093067169,-0.00298877665773034,0.713388681411743,0.358601599931717,0.507097899913788,0.783745169639587,-0.550345599651337,0.833755731582642,0.0443950071930885,-0.495883941650391,0.856540560722351,0.14295893907547,-0.156233429908752,0.846404194831848,0.509107947349548,0.538246929645538,0.323065757751465,0.778407692909241,0.182615086436272,0.710974216461182,0.679092943668365,-0.156233429908752,0.846404194831848,0.509107947349548,0.668041288852692,0.0836354196071625,0.73940908908844,0.767053186893463,-0.253628462553024,0.589323222637177,0.700762093067169,-0.00298877665773034,0.713388681411743,0.538246929645538,0.323065757751465,0.778407692909241,0.738605380058289,-0.127417668700218,0.661986887454987,0.668041288852692,0.0836354196071625,0.73940908908844,-0.156233429908752,0.846404194831848,0.509107947349548,-0.495883941650391,0.856540560722351,0.14295893907547,-0.285291999578476,0.786038756370544,0.548408091068268,0.538246929645538,0.323065757751465,0.778407692909241,-0.156233429908752,0.846404194831848,0.509107947349548,0.454133987426758,0.439163118600845,0.775176048278809,0.738605380058289,-0.127417668700218,0.661986887454987,0.767053186893463,-0.253628462553024,0.589323222637177,0.668041288852692,0.0836354196071625,0.73940908908844,0.738605380058289,-0.127417668700218,0.661986887454987,0.538246929645538,0.323065757751465,0.778407692909241,0.710988759994507,-0.0355837680399418,0.7023024559021,-0.454541802406311,0.845846235752106,0.279169917106628,-0.285291999578476,0.786038756370544,0.548408091068268,-0.495883941650391,0.856540560722351,0.14295893907547,-0.156233429908752,0.846404194831848,0.509107947349548,-0.285291999578476,0.786038756370544,0.548408091068268,0.149259939789772,0.587952256202698,0.795005321502686,0.149259939789772,0.587952256202698,0.795005321502686, +0.454133987426758,0.439163118600845,0.775176048278809,-0.156233429908752,0.846404194831848,0.509107947349548,0.538246929645538,0.323065757751465,0.778407692909241,0.454133987426758,0.439163118600845,0.775176048278809,0.710988759994507,-0.0355837680399418,0.7023024559021,0.767053186893463,-0.253628462553024,0.589323222637177,0.738605380058289,-0.127417668700218,0.661986887454987,0.770972847938538,-0.283977031707764,0.570050656795502,0.738605380058289,-0.127417668700218,0.661986887454987,0.710988759994507,-0.0355837680399418,0.7023024559021,0.770972847938538,-0.283977031707764,0.570050656795502,-0.285291999578476,0.786038756370544,0.548408091068268,-0.454541802406311,0.845846235752106,0.279169917106628,-0.0726219192147255,0.742078959941864,0.666366875171661,0.149259939789772,0.587952256202698,0.795005321502686,-0.285291999578476,0.786038756370544,0.548408091068268,0.258421301841736,0.427494674921036,0.866294741630554,0.454133987426758,0.439163118600845,0.775176048278809,0.149259939789772,0.587952256202698,0.795005321502686,0.589096963405609,0.131659612059593,0.797264277935028,0.454133987426758,0.439163118600845,0.775176048278809,0.589096963405609,0.131659612059593,0.797264277935028,0.710988759994507,-0.0355837680399418,0.7023024559021,0.759416580200195,-0.177383422851563,0.625956416130066,0.770972847938538,-0.283977031707764,0.570050656795502,0.710988759994507,-0.0355837680399418,0.7023024559021,-0.454541802406311,0.845846235752106,0.279169917106628,-0.342672348022461,0.86136132478714,0.375009626150131,-0.0726219192147255,0.742078959941864,0.666366875171661,-0.285291999578476,0.786038756370544,0.548408091068268,-0.0726219192147255,0.742078959941864,0.666366875171661,0.258421301841736,0.427494674921036,0.866294741630554,0.589096963405609,0.131659612059593,0.797264277935028,0.149259939789772,0.587952256202698,0.795005321502686,0.258421301841736,0.427494674921036,0.866294741630554,0.759416580200195,-0.177383422851563,0.625956416130066,0.710988759994507,-0.0355837680399418,0.7023024559021,0.589096963405609,0.131659612059593,0.797264277935028, +0.770972847938538,-0.283977031707764,0.570050656795502,0.759416580200195,-0.177383422851563,0.625956416130066,0.775993883609772,-0.297175824642181,0.556345045566559,-0.0726219192147255,0.742078959941864,0.666366875171661,-0.342672348022461,0.86136132478714,0.375009626150131,0.116234198212624,0.707555174827576,0.697033166885376,0.518780648708344,0.266524970531464,0.812299787998199,0.258421301841736,0.427494674921036,0.866294741630554,-0.0726219192147255,0.742078959941864,0.666366875171661,0.258421301841736,0.427494674921036,0.866294741630554,0.677801966667175,-0.0510902889072895,0.733467161655426,0.589096963405609,0.131659612059593,0.797264277935028,0.677801966667175,-0.0510902889072895,0.733467161655426,0.759416580200195,-0.177383422851563,0.625956416130066,0.589096963405609,0.131659612059593,0.797264277935028,0.677801966667175,-0.0510902889072895,0.733467161655426,0.775993883609772,-0.297175824642181,0.556345045566559,0.759416580200195,-0.177383422851563,0.625956416130066,0.116234198212624,0.707555174827576,0.697033166885376,-0.342672348022461,0.86136132478714,0.375009626150131,-0.0994513630867004,0.731586575508118,0.67445570230484,-0.0726219192147255,0.742078959941864,0.666366875171661,0.116234198212624,0.707555174827576,0.697033166885376,0.518780648708344,0.266524970531464,0.812299787998199,0.518780648708344,0.266524970531464,0.812299787998199,0.677801966667175,-0.0510902889072895,0.733467161655426,0.258421301841736,0.427494674921036,0.866294741630554,0.677801966667175,-0.0510902889072895,0.733467161655426,0.753810524940491,-0.236630260944366,0.613005399703979,0.775993883609772,-0.297175824642181,0.556345045566559,-0.342672348022461,0.86136132478714,0.375009626150131,-0.321639955043793,0.809638142585754,0.490951865911484,-0.0994513630867004,0.731586575508118,0.67445570230484,0.116234198212624,0.707555174827576,0.697033166885376,-0.0994513630867004,0.731586575508118,0.67445570230484,0.374739646911621,0.382853448390961,0.844389319419861,0.518780648708344,0.266524970531464,0.812299787998199,0.116234198212624,0.707555174827576,0.697033166885376, +0.374739646911621,0.382853448390961,0.844389319419861,0.677801966667175,-0.0510902889072895,0.733467161655426,0.518780648708344,0.266524970531464,0.812299787998199,0.753810524940491,-0.236630260944366,0.613005399703979,-0.0994513630867004,0.731586575508118,0.67445570230484,-0.321639955043793,0.809638142585754,0.490951865911484,0.0876500755548477,0.533470392227173,0.84126490354538,-0.0994513630867004,0.731586575508118,0.67445570230484,0.0876500755548477,0.533470392227173,0.84126490354538,0.374739646911621,0.382853448390961,0.844389319419861,0.518780648708344,0.266524970531464,0.812299787998199,0.374739646911621,0.382853448390961,0.844389319419861,0.681475043296814,-0.0190276484936476,0.731593906879425,0.681475043296814,-0.0190276484936476,0.731593906879425,0.753810524940491,-0.236630260944366,0.613005399703979,0.518780648708344,0.266524970531464,0.812299787998199,0.0876500755548477,0.533470392227173,0.84126490354538,-0.321639955043793,0.809638142585754,0.490951865911484,-0.0109569057822227,0.635639667510986,0.771908104419708,0.48510754108429,0.124095536768436,0.865604341030121,0.374739646911621,0.382853448390961,0.844389319419861,0.0876500755548477,0.533470392227173,0.84126490354538,0.48510754108429,0.124095536768436,0.865604341030121,0.681475043296814,-0.0190276484936476,0.731593906879425,0.374739646911621,0.382853448390961,0.844389319419861,0.674040079116821,-0.135003179311752,0.72625344991684,0.753810524940491,-0.236630260944366,0.613005399703979,0.681475043296814,-0.0190276484936476,0.731593906879425,-0.23018179833889,0.768166780471802,0.59744119644165,-0.0109569057822227,0.635639667510986,0.771908104419708,-0.321639955043793,0.809638142585754,0.490951865911484,0.0876500755548477,0.533470392227173,0.84126490354538,-0.0109569057822227,0.635639667510986,0.771908104419708,0.410668104887009,0.25159564614296,0.876385271549225,0.410668104887009,0.25159564614296,0.876385271549225,0.48510754108429,0.124095536768436,0.865604341030121,0.0876500755548477,0.533470392227173,0.84126490354538,0.674040079116821,-0.135003179311752,0.72625344991684, +0.681475043296814,-0.0190276484936476,0.731593906879425,0.48510754108429,0.124095536768436,0.865604341030121,0.674040079116821,-0.135003179311752,0.72625344991684,0.775683522224426,-0.297049760818481,0.55684494972229,0.753810524940491,-0.236630260944366,0.613005399703979,0.26367723941803,0.489682883024216,0.83107453584671,-0.0109569057822227,0.635639667510986,0.771908104419708,-0.23018179833889,0.768166780471802,0.59744119644165,0.26367723941803,0.489682883024216,0.83107453584671,0.410668104887009,0.25159564614296,0.876385271549225,-0.0109569057822227,0.635639667510986,0.771908104419708,0.410668104887009,0.25159564614296,0.876385271549225,0.674040079116821,-0.135003179311752,0.72625344991684,0.48510754108429,0.124095536768436,0.865604341030121,0.674040079116821,-0.135003179311752,0.72625344991684,0.678318202495575,0.0220880582928658,0.734436094760895,0.775683522224426,-0.297049760818481,0.55684494972229,0.0955817103385925,0.63368421792984,0.767664194107056,0.26367723941803,0.489682883024216,0.83107453584671,-0.23018179833889,0.768166780471802,0.59744119644165,0.678318202495575,0.0220880582928658,0.734436094760895,0.410668104887009,0.25159564614296,0.876385271549225,0.26367723941803,0.489682883024216,0.83107453584671,0.678318202495575,0.0220880582928658,0.734436094760895,0.674040079116821,-0.135003179311752,0.72625344991684,0.410668104887009,0.25159564614296,0.876385271549225,0.775683522224426,-0.297049760818481,0.55684494972229,0.678318202495575,0.0220880582928658,0.734436094760895,0.740456104278564,-0.158223956823349,0.653214871883392,0.0955817103385925,0.63368421792984,0.767664194107056,0.519934713840485,0.251370161771774,0.816382765769959,0.26367723941803,0.489682883024216,0.83107453584671,-0.151554778218269,0.752554297447205,0.640853345394135,0.0955817103385925,0.63368421792984,0.767664194107056,-0.23018179833889,0.768166780471802,0.59744119644165,0.519934713840485,0.251370161771774,0.816382765769959,0.678318202495575,0.0220880582928658,0.734436094760895,0.26367723941803,0.489682883024216,0.83107453584671,0.519934713840485,0.251370161771774,0.816382765769959, +0.740456104278564,-0.158223956823349,0.653214871883392,0.678318202495575,0.0220880582928658,0.734436094760895,0.775683522224426,-0.297049760818481,0.55684494972229,0.740456104278564,-0.158223956823349,0.653214871883392,0.785748362541199,-0.303555369377136,0.538937389850616,0.220527559518814,0.510757029056549,0.830960094928741,0.519934713840485,0.251370161771774,0.816382765769959,0.0955817103385925,0.63368421792984,0.767664194107056,0.220527559518814,0.510757029056549,0.830960094928741,0.0955817103385925,0.63368421792984,0.767664194107056,-0.151554778218269,0.752554297447205,0.640853345394135,0.606550633907318,0.0592340268194675,0.792835116386414,0.740456104278564,-0.158223956823349,0.653214871883392,0.519934713840485,0.251370161771774,0.816382765769959,0.785748362541199,-0.303555369377136,0.538937389850616,0.740456104278564,-0.158223956823349,0.653214871883392,0.606550633907318,0.0592340268194675,0.792835116386414,0.606550633907318,0.0592340268194675,0.792835116386414,0.519934713840485,0.251370161771774,0.816382765769959,0.220527559518814,0.510757029056549,0.830960094928741,0.220527559518814,0.510757029056549,0.830960094928741,-0.151554778218269,0.752554297447205,0.640853345394135,0.226890608668327,0.497016817331314,0.837552845478058,0.732301115989685,-0.120346330106258,0.670262396335602,0.785748362541199,-0.303555369377136,0.538937389850616,0.606550633907318,0.0592340268194675,0.792835116386414,0.220527559518814,0.510757029056549,0.830960094928741,0.226890608668327,0.497016817331314,0.837552845478058,0.606550633907318,0.0592340268194675,0.792835116386414,0.0218547694385052,0.669559240341187,0.742436945438385,0.226890608668327,0.497016817331314,0.837552845478058,-0.151554778218269,0.752554297447205,0.640853345394135,0.732301115989685,-0.120346330106258,0.670262396335602,0.785460412502289,-0.268385708332062,0.557692468166351,0.785748362541199,-0.303555369377136,0.538937389850616,0.470964163541794,0.256901979446411,0.84391587972641,0.732301115989685,-0.120346330106258,0.670262396335602,0.606550633907318,0.0592340268194675,0.792835116386414, +0.470964163541794,0.256901979446411,0.84391587972641,0.606550633907318,0.0592340268194675,0.792835116386414,0.226890608668327,0.497016817331314,0.837552845478058,0.0218547694385052,0.669559240341187,0.742436945438385,0.470964163541794,0.256901979446411,0.84391587972641,0.226890608668327,0.497016817331314,0.837552845478058,0.0218547694385052,0.669559240341187,0.742436945438385,-0.151554778218269,0.752554297447205,0.640853345394135,-0.276927828788757,0.798900663852692,0.533918082714081,0.732301115989685,-0.120346330106258,0.670262396335602,0.676241993904114,0.00723978644236922,0.736643850803375,0.785460412502289,-0.268385708332062,0.557692468166351,0.676241993904114,0.00723978644236922,0.736643850803375,0.732301115989685,-0.120346330106258,0.670262396335602,0.470964163541794,0.256901979446411,0.84391587972641,0.393839508295059,0.405888915061951,0.824708700180054,0.470964163541794,0.256901979446411,0.84391587972641,0.0218547694385052,0.669559240341187,0.742436945438385,0.0218547694385052,0.669559240341187,0.742436945438385,-0.276927828788757,0.798900663852692,0.533918082714081,-0.124548092484474,0.664768397808075,0.736593902111053,0.785460412502289,-0.268385708332062,0.557692468166351,0.676241993904114,0.00723978644236922,0.736643850803375,0.726232290267944,-0.153156131505966,0.67017138004303,0.393839508295059,0.405888915061951,0.824708700180054,0.676241993904114,0.00723978644236922,0.736643850803375,0.470964163541794,0.256901979446411,0.84391587972641,0.145381912589073,0.525221049785614,0.838455021381378,0.393839508295059,0.405888915061951,0.824708700180054,0.0218547694385052,0.669559240341187,0.742436945438385,-0.124548092484474,0.664768397808075,0.736593902111053,-0.276927828788757,0.798900663852692,0.533918082714081,-0.183405965566635,0.749204218387604,0.636439383029938,0.0218547694385052,0.669559240341187,0.742436945438385,-0.124548092484474,0.664768397808075,0.736593902111053,0.145381912589073,0.525221049785614,0.838455021381378,0.49054217338562,0.198866963386536,0.848422229290009,0.726232290267944,-0.153156131505966,0.67017138004303, +0.676241993904114,0.00723978644236922,0.736643850803375,0.785460412502289,-0.268385708332062,0.557692468166351,0.726232290267944,-0.153156131505966,0.67017138004303,0.797490835189819,-0.335376739501953,0.501528263092041,0.49054217338562,0.198866963386536,0.848422229290009,0.676241993904114,0.00723978644236922,0.736643850803375,0.393839508295059,0.405888915061951,0.824708700180054,0.49054217338562,0.198866963386536,0.848422229290009,0.393839508295059,0.405888915061951,0.824708700180054,0.145381912589073,0.525221049785614,0.838455021381378,0.100760489702225,0.535176336765289,0.83870941400528,-0.124548092484474,0.664768397808075,0.736593902111053,-0.183405965566635,0.749204218387604,0.636439383029938,0.170537069439888,0.415335804224014,0.893539726734161,0.145381912589073,0.525221049785614,0.838455021381378,-0.124548092484474,0.664768397808075,0.736593902111053,0.506067633628845,0.12890550494194,0.852806389331818,0.726232290267944,-0.153156131505966,0.67017138004303,0.49054217338562,0.198866963386536,0.848422229290009,0.726232290267944,-0.153156131505966,0.67017138004303,0.73709625005722,-0.205095872282982,0.643913567066193,0.797490835189819,-0.335376739501953,0.501528263092041,0.170537069439888,0.415335804224014,0.893539726734161,0.49054217338562,0.198866963386536,0.848422229290009,0.145381912589073,0.525221049785614,0.838455021381378,0.100760489702225,0.535176336765289,0.83870941400528,0.170537069439888,0.415335804224014,0.893539726734161,-0.124548092484474,0.664768397808075,0.736593902111053,0.0239938236773014,0.626766920089722,0.778837263584137,0.100760489702225,0.535176336765289,0.83870941400528,-0.183405965566635,0.749204218387604,0.636439383029938,0.726232290267944,-0.153156131505966,0.67017138004303,0.506067633628845,0.12890550494194,0.852806389331818,0.73709625005722,-0.205095872282982,0.643913567066193,0.506067633628845,0.12890550494194,0.852806389331818,0.49054217338562,0.198866963386536,0.848422229290009,0.170537069439888,0.415335804224014,0.893539726734161,0.777174711227417,-0.279720216989517,0.563698351383209, +0.797490835189819,-0.335376739501953,0.501528263092041,0.73709625005722,-0.205095872282982,0.643913567066193,0.100760489702225,0.535176336765289,0.83870941400528,0.506067633628845,0.12890550494194,0.852806389331818,0.170537069439888,0.415335804224014,0.893539726734161,0.0239938236773014,0.626766920089722,0.778837263584137,0.302157461643219,0.369005471467972,0.878940105438232,0.100760489702225,0.535176336765289,0.83870941400528,0.0239938236773014,0.626766920089722,0.778837263584137,-0.183405965566635,0.749204218387604,0.636439383029938,-0.149653360247612,0.694210112094879,0.704042613506317,0.506067633628845,0.12890550494194,0.852806389331818,0.643674254417419,-0.0194435194134712,0.765052437782288,0.73709625005722,-0.205095872282982,0.643913567066193,0.777174711227417,-0.279720216989517,0.563698351383209,0.73709625005722,-0.205095872282982,0.643913567066193,0.643674254417419,-0.0194435194134712,0.765052437782288,0.506067633628845,0.12890550494194,0.852806389331818,0.100760489702225,0.535176336765289,0.83870941400528,0.302157461643219,0.369005471467972,0.878940105438232,0.0239938236773014,0.626766920089722,0.778837263584137,0.0508133508265018,0.510626614093781,0.858299732208252,0.302157461643219,0.369005471467972,0.878940105438232,0.0239938236773014,0.626766920089722,0.778837263584137,-0.149653360247612,0.694210112094879,0.704042613506317,0.0508133508265018,0.510626614093781,0.858299732208252,0.506067633628845,0.12890550494194,0.852806389331818,0.302157461643219,0.369005471467972,0.878940105438232,0.643674254417419,-0.0194435194134712,0.765052437782288,0.770500659942627,-0.267281860113144,0.578695893287659,0.777174711227417,-0.279720216989517,0.563698351383209,0.643674254417419,-0.0194435194134712,0.765052437782288,0.0508133508265018,0.510626614093781,0.858299732208252,0.345889955759048,0.25228425860405,0.903721570968628,0.302157461643219,0.369005471467972,0.878940105438232,-0.0635645464062691,0.621780097484589,0.780608057975769,0.0508133508265018,0.510626614093781,0.858299732208252,-0.149653360247612,0.694210112094879,0.704042613506317, +0.302157461643219,0.369005471467972,0.878940105438232,0.345889955759048,0.25228425860405,0.903721570968628,0.643674254417419,-0.0194435194134712,0.765052437782288,0.552327573299408,0.0385440103709698,0.832735538482666,0.770500659942627,-0.267281860113144,0.578695893287659,0.643674254417419,-0.0194435194134712,0.765052437782288,0.345889955759048,0.25228425860405,0.903721570968628,0.0508133508265018,0.510626614093781,0.858299732208252,0.243170872330666,0.362286984920502,0.899786591529846,0.0508133508265018,0.510626614093781,0.858299732208252,-0.0635645464062691,0.621780097484589,0.780608057975769,0.243170872330666,0.362286984920502,0.899786591529846,0.552327573299408,0.0385440103709698,0.832735538482666,0.643674254417419,-0.0194435194134712,0.765052437782288,0.345889955759048,0.25228425860405,0.903721570968628,0.552327573299408,0.0385440103709698,0.832735538482666,0.651851654052734,-0.139659553766251,0.745375394821167,0.770500659942627,-0.267281860113144,0.578695893287659,0.345889955759048,0.25228425860405,0.903721570968628,0.243170872330666,0.362286984920502,0.899786591529846,0.552327573299408,0.0385440103709698,0.832735538482666,0.243170872330666,0.362286984920502,0.899786591529846,-0.0635645464062691,0.621780097484589,0.780608057975769,0.177869200706482,0.442385077476501,0.879009604454041,0.552327573299408,0.0385440103709698,0.832735538482666,0.419903814792633,0.175652325153351,0.890408337116241,0.651851654052734,-0.139659553766251,0.745375394821167,0.552327573299408,0.0385440103709698,0.832735538482666,0.243170872330666,0.362286984920502,0.899786591529846,0.419903814792633,0.175652325153351,0.890408337116241,0.011230206117034,0.564097344875336,0.82563179731369,0.177869200706482,0.442385077476501,0.879009604454041,-0.0635645464062691,0.621780097484589,0.780608057975769,0.243170872330666,0.362286984920502,0.899786591529846,0.177869200706482,0.442385077476501,0.879009604454041,0.419903814792633,0.175652325153351,0.890408337116241,0.491851359605789,0.0479839630424976,0.869355916976929,0.651851654052734,-0.139659553766251,0.745375394821167, +0.419903814792633,0.175652325153351,0.890408337116241,0.225138872861862,0.321603149175644,0.919719398021698,0.177869200706482,0.442385077476501,0.879009604454041,0.011230206117034,0.564097344875336,0.82563179731369,0.225138872861862,0.321603149175644,0.919719398021698,0.419903814792633,0.175652325153351,0.890408337116241,0.177869200706482,0.442385077476501,0.879009604454041,0.696971654891968,-0.185633108019829,0.69265478849411,0.651851654052734,-0.139659553766251,0.745375394821167,0.491851359605789,0.0479839630424976,0.869355916976929,0.491851359605789,0.0479839630424976,0.869355916976929,0.419903814792633,0.175652325153351,0.890408337116241,0.225138872861862,0.321603149175644,0.919719398021698,0.011230206117034,0.564097344875336,0.82563179731369,0.116317607462406,0.443737328052521,0.888576030731201,0.225138872861862,0.321603149175644,0.919719398021698,0.588877975940704,-0.0419148206710815,0.807134330272675,0.696971654891968,-0.185633108019829,0.69265478849411,0.491851359605789,0.0479839630424976,0.869355916976929,0.332688361406326,0.21376371383667,0.918489754199982,0.491851359605789,0.0479839630424976,0.869355916976929,0.225138872861862,0.321603149175644,0.919719398021698,0.332688361406326,0.21376371383667,0.918489754199982,0.225138872861862,0.321603149175644,0.919719398021698,0.116317607462406,0.443737328052521,0.888576030731201,0.332688361406326,0.21376371383667,0.918489754199982,0.588877975940704,-0.0419148206710815,0.807134330272675,0.491851359605789,0.0479839630424976,0.869355916976929,0.332688361406326,0.21376371383667,0.918489754199982,0.116317607462406,0.443737328052521,0.888576030731201,0.214255422353745,0.325911849737167,0.920801818370819,0.430192232131958,0.13835172355175,0.89207249879837,0.588877975940704,-0.0419148206710815,0.807134330272675,0.332688361406326,0.21376371383667,0.918489754199982,0.0184622779488564,0.476772278547287,0.878832876682281,0.214255422353745,0.325911849737167,0.920801818370819,0.116317607462406,0.443737328052521,0.888576030731201,0.430192232131958,0.13835172355175,0.89207249879837, +0.332688361406326,0.21376371383667,0.918489754199982,0.214255422353745,0.325911849737167,0.920801818370819,0.649603962898254,-0.077555887401104,0.756306648254395,0.588877975940704,-0.0419148206710815,0.807134330272675,0.430192232131958,0.13835172355175,0.89207249879837,0.214255422353745,0.325911849737167,0.920801818370819,0.0184622779488564,0.476772278547287,0.878832876682281,0.248058170080185,0.276558250188828,0.928430140018463,0.214255422353745,0.325911849737167,0.920801818370819,0.248058170080185,0.276558250188828,0.928430140018463,0.430192232131958,0.13835172355175,0.89207249879837,0.430192232131958,0.13835172355175,0.89207249879837,0.471187561750412,0.108772940933704,0.875300168991089,0.649603962898254,-0.077555887401104,0.756306648254395,0.0184622779488564,0.476772278547287,0.878832876682281,0.133045077323914,0.371088236570358,0.91901707649231,0.248058170080185,0.276558250188828,0.928430140018463,0.430192232131958,0.13835172355175,0.89207249879837,0.248058170080185,0.276558250188828,0.928430140018463,0.471187561750412,0.108772940933704,0.875300168991089,0.522089779376984,0.0642031654715538,0.850470542907715,0.649603962898254,-0.077555887401104,0.756306648254395,0.471187561750412,0.108772940933704,0.875300168991089,0.0184622779488564,0.476772278547287,0.878832876682281,-0.0166128817945719,0.487799763679504,0.87279736995697,0.133045077323914,0.371088236570358,0.91901707649231,0.328464478254318,0.244814142584801,0.912237346172333,0.248058170080185,0.276558250188828,0.928430140018463,0.133045077323914,0.371088236570358,0.91901707649231,0.471187561750412,0.108772940933704,0.875300168991089,0.248058170080185,0.276558250188828,0.928430140018463,0.328464478254318,0.244814142584801,0.912237346172333,0.522089779376984,0.0642031654715538,0.850470542907715,0.651140987873077,-0.0331539548933506,0.758232176303864,0.649603962898254,-0.077555887401104,0.756306648254395,0.328464478254318,0.244814142584801,0.912237346172333,0.522089779376984,0.0642031654715538,0.850470542907715,0.471187561750412,0.108772940933704,0.875300168991089, +0.194262117147446,0.37288710474968,0.907313227653503,0.133045077323914,0.371088236570358,0.91901707649231,-0.0166128817945719,0.487799763679504,0.87279736995697,0.194262117147446,0.37288710474968,0.907313227653503,0.328464478254318,0.244814142584801,0.912237346172333,0.133045077323914,0.371088236570358,0.91901707649231,0.441979259252548,0.201303958892822,0.874145805835724,0.651140987873077,-0.0331539548933506,0.758232176303864,0.522089779376984,0.0642031654715538,0.850470542907715,0.328464478254318,0.244814142584801,0.912237346172333,0.441979259252548,0.201303958892822,0.874145805835724,0.522089779376984,0.0642031654715538,0.850470542907715,-0.0166128817945719,0.487799763679504,0.87279736995697,0.103461161255836,0.458975791931152,0.882403910160065,0.194262117147446,0.37288710474968,0.907313227653503,0.328464478254318,0.244814142584801,0.912237346172333,0.194262117147446,0.37288710474968,0.907313227653503,0.441979259252548,0.201303958892822,0.874145805835724,0.556739687919617,0.103391379117966,0.824227511882782,0.651140987873077,-0.0331539548933506,0.758232176303864,0.441979259252548,0.201303958892822,0.874145805835724,-0.0166128817945719,0.487799763679504,0.87279736995697,-0.0878424122929573,0.566415309906006,0.81942492723465,0.103461161255836,0.458975791931152,0.882403910160065,0.194262117147446,0.37288710474968,0.907313227653503,0.103461161255836,0.458975791931152,0.882403910160065,0.314179122447968,0.335769057273865,0.888003647327423,0.314179122447968,0.335769057273865,0.888003647327423,0.441979259252548,0.201303958892822,0.874145805835724,0.194262117147446,0.37288710474968,0.907313227653503,0.314179122447968,0.335769057273865,0.888003647327423,0.556739687919617,0.103391379117966,0.824227511882782,0.441979259252548,0.201303958892822,0.874145805835724,0.0564125217497349,0.53067010641098,0.845698952674866,0.103461161255836,0.458975791931152,0.882403910160065,-0.0878424122929573,0.566415309906006,0.81942492723465,0.314179122447968,0.335769057273865,0.888003647327423,0.103461161255836,0.458975791931152,0.882403910160065, +0.198068290948868,0.424347043037415,0.883571445941925,0.37807509303093,0.288995832204819,0.879511535167694,0.556739687919617,0.103391379117966,0.824227511882782,0.314179122447968,0.335769057273865,0.888003647327423,0.0564125217497349,0.53067010641098,0.845698952674866,0.198068290948868,0.424347043037415,0.883571445941925,0.103461161255836,0.458975791931152,0.882403910160065,-0.0878424122929573,0.566415309906006,0.81942492723465,-0.122283548116684,0.634320259094238,0.763337671756744,0.0564125217497349,0.53067010641098,0.845698952674866,0.37807509303093,0.288995832204819,0.879511535167694,0.314179122447968,0.335769057273865,0.888003647327423,0.198068290948868,0.424347043037415,0.883571445941925,0.616427898406982,0.066298708319664,0.784615159034729,0.556739687919617,0.103391379117966,0.824227511882782,0.37807509303093,0.288995832204819,0.879511535167694,0.181693181395531,0.457442402839661,0.870479106903076,0.198068290948868,0.424347043037415,0.883571445941925,0.0564125217497349,0.53067010641098,0.845698952674866,0.0564125217497349,0.53067010641098,0.845698952674866,-0.122283548116684,0.634320259094238,0.763337671756744,0.0647969320416451,0.540483713150024,0.838855504989624,0.181693181395531,0.457442402839661,0.870479106903076,0.37807509303093,0.288995832204819,0.879511535167694,0.198068290948868,0.424347043037415,0.883571445941925,0.37807509303093,0.288995832204819,0.879511535167694,0.461415380239487,0.202915489673615,0.863667190074921,0.616427898406982,0.066298708319664,0.784615159034729,0.0564125217497349,0.53067010641098,0.845698952674866,0.0647969320416451,0.540483713150024,0.838855504989624,0.181693181395531,0.457442402839661,0.870479106903076,0.0103870760649443,0.565562665462494,0.824639797210693,0.0647969320416451,0.540483713150024,0.838855504989624,-0.122283548116684,0.634320259094238,0.763337671756744,0.258721381425858,0.393818914890289,0.882025957107544,0.37807509303093,0.288995832204819,0.879511535167694,0.181693181395531,0.457442402839661,0.870479106903076,0.37807509303093,0.288995832204819,0.879511535167694, +0.258721381425858,0.393818914890289,0.882025957107544,0.461415380239487,0.202915489673615,0.863667190074921,0.258721381425858,0.393818914890289,0.882025957107544,0.181693181395531,0.457442402839661,0.870479106903076,0.0647969320416451,0.540483713150024,0.838855504989624,0.0647969320416451,0.540483713150024,0.838855504989624,0.0103870760649443,0.565562665462494,0.824639797210693,0.187363475561142,0.456372618675232,0.869838416576386,0.412739425897598,0.285188913345337,0.865051090717316,0.461415380239487,0.202915489673615,0.863667190074921,0.258721381425858,0.393818914890289,0.882025957107544,0.187363475561142,0.456372618675232,0.869838416576386,0.258721381425858,0.393818914890289,0.882025957107544,0.0647969320416451,0.540483713150024,0.838855504989624,0.187363475561142,0.456372618675232,0.869838416576386,0.0103870760649443,0.565562665462494,0.824639797210693,0.163704290986061,0.439286261796951,0.883305370807648,0.187363475561142,0.456372618675232,0.869838416576386,0.412739425897598,0.285188913345337,0.865051090717316,0.258721381425858,0.393818914890289,0.882025957107544,0.070015549659729,0.537744641304016,0.840195417404175,0.163704290986061,0.439286261796951,0.883305370807648,0.0103870760649443,0.565562665462494,0.824639797210693,0.187363475561142,0.456372618675232,0.869838416576386,0.163704290986061,0.439286261796951,0.883305370807648,0.281863778829575,0.384592801332474,0.879000008106232,0.281863778829575,0.384592801332474,0.879000008106232,0.412739425897598,0.285188913345337,0.865051090717316,0.187363475561142,0.456372618675232,0.869838416576386,0.070015549659729,0.537744641304016,0.840195417404175,0.236143693327904,0.409129083156586,0.881390631198883,0.163704290986061,0.439286261796951,0.883305370807648,0.281863778829575,0.384592801332474,0.879000008106232,0.163704290986061,0.439286261796951,0.883305370807648,0.317232072353363,0.320876151323318,0.892413675785065,0.281863778829575,0.384592801332474,0.879000008106232,0.317232072353363,0.320876151323318,0.892413675785065,0.412739425897598,0.285188913345337,0.865051090717316, +0.177898719906807,0.569624483585358,0.80242121219635,0.236143693327904,0.409129083156586,0.881390631198883,0.070015549659729,0.537744641304016,0.840195417404175,0.317232072353363,0.320876151323318,0.892413675785065,0.163704290986061,0.439286261796951,0.883305370807648,0.236143693327904,0.409129083156586,0.881390631198883,0.236143693327904,0.409129083156586,0.881390631198883,0.177898719906807,0.569624483585358,0.80242121219635,0.391959398984909,0.411307096481323,0.822918057441711,0.403216242790222,0.575127720832825,0.711789727210999,0.391959398984909,0.411307096481323,0.822918057441711,0.177898719906807,0.569624483585358,0.80242121219635,0.403216242790222,0.575127720832825,0.711789727210999,0.570243775844574,0.494201123714447,0.656191349029541,0.391959398984909,0.411307096481323,0.822918057441711,0.403216242790222,0.575127720832825,0.711789727210999,0.565264761447906,0.667678415775299,0.484439015388489,0.570243775844574,0.494201123714447,0.656191349029541,0.565264761447906,0.667678415775299,0.484439015388489,0.686942994594574,0.597724914550781,0.413320749998093,0.570243775844574,0.494201123714447,0.656191349029541,0.643102586269379,0.681853175163269,0.348561525344849,0.686942994594574,0.597724914550781,0.413320749998093,0.565264761447906,0.667678415775299,0.484439015388489,0.66301017999649,0.671490252017975,0.33093535900116,0.686942994594574,0.597724914550781,0.413320749998093,0.643102586269379,0.681853175163269,0.348561525344849,0.686942994594574,0.597724914550781,0.413320749998093,0.66301017999649,0.671490252017975,0.33093535900116,0.792878091335297,0.55015617609024,0.26205387711525,0.120160691440105,-0.991060495376587,0.0579689927399158,0.307719826698303,-0.944160580635071,0.117767333984375,0.297604143619537,-0.951470971107483,0.0783239752054214,0.453572779893875,-0.881403744220734,0.131905198097229,0.297604143619537,-0.951470971107483,0.0783239752054214,0.307719826698303,-0.944160580635071,0.117767333984375,0.297604143619537,-0.951470971107483,0.0783239752054214,0.159546434879303,-0.986728131771088,0.030207796022296, +0.120160691440105,-0.991060495376587,0.0579689927399158,0.458358734846115,-0.850490093231201,0.258018851280212,0.41211211681366,-0.858661532402039,0.304735720157623,0.501618027687073,-0.820316433906555,0.274700105190277,0.468713045120239,-0.793812811374664,0.387516677379608,0.41211211681366,-0.858661532402039,0.304735720157623,0.35479462146759,-0.851547241210938,0.385989516973495,0.530144155025482,-0.827777922153473,0.183659359812737,0.458358734846115,-0.850490093231201,0.258018851280212,0.501618027687073,-0.820316433906555,0.274700105190277,0.0497986413538456,-0.998663187026978,0.0138514339923859,0.120160691440105,-0.991060495376587,0.0579689927399158,0.159546434879303,-0.986728131771088,0.030207796022296,0.382184118032455,-0.91899973154068,0.0968217179179192,0.297604143619537,-0.951470971107483,0.0783239752054214,0.453572779893875,-0.881403744220734,0.131905198097229,0.297604143619537,-0.951470971107483,0.0783239752054214,0.382184118032455,-0.91899973154068,0.0968217179179192,0.159546434879303,-0.986728131771088,0.030207796022296,0.530144155025482,-0.827777922153473,0.183659359812737,0.526057839393616,-0.83855539560318,0.141732051968575,0.453572779893875,-0.881403744220734,0.131905198097229,0.501618027687073,-0.820316433906555,0.274700105190277,0.41211211681366,-0.858661532402039,0.304735720157623,0.468713045120239,-0.793812811374664,0.387516677379608,0.530144155025482,-0.827777922153473,0.183659359812737,0.501618027687073,-0.820316433906555,0.274700105190277,0.590501368045807,-0.769497096538544,0.243273913860321,0.159546434879303,-0.986728131771088,0.030207796022296,0.0265890471637249,-0.999555826187134,-0.0134581932798028,0.0497986413538456,-0.998663187026978,0.0138514339923859,-0.59003221988678,-0.679775476455688,0.43562263250351,-0.506627559661865,-0.67433899641037,0.537210643291473,-0.469103634357452,-0.782316327095032,0.409783840179443,-0.540582954883575,-0.639463722705841,0.54667741060257,-0.506627559661865,-0.67433899641037,0.537210643291473,-0.59003221988678,-0.679775476455688,0.43562263250351,0.0395830944180489,-0.996393918991089,0.07504802942276, +0.0385789684951305,-0.995219528675079,0.089719794690609,0.0569719225168228,-0.993271350860596,0.100827269256115,0.0295560862869024,-0.995258748531342,0.092662401497364,0.0395830944180489,-0.996393918991089,0.07504802942276,0.0569719225168228,-0.993271350860596,0.100827269256115,0.382184118032455,-0.91899973154068,0.0968217179179192,0.453572779893875,-0.881403744220734,0.131905198097229,0.526057839393616,-0.83855539560318,0.141732051968575,0.203816115856171,-0.977341651916504,0.0571151450276375,0.159546434879303,-0.986728131771088,0.030207796022296,0.382184118032455,-0.91899973154068,0.0968217179179192,0.530144155025482,-0.827777922153473,0.183659359812737,0.58408910036087,-0.793264865875244,0.171961069107056,0.526057839393616,-0.83855539560318,0.141732051968575,0.501618027687073,-0.820316433906555,0.274700105190277,0.468713045120239,-0.793812811374664,0.387516677379608,0.583117246627808,-0.721384167671204,0.373602896928787,0.590501368045807,-0.769497096538544,0.243273913860321,0.501618027687073,-0.820316433906555,0.274700105190277,0.583117246627808,-0.721384167671204,0.373602896928787,0.58408910036087,-0.793264865875244,0.171961069107056,0.530144155025482,-0.827777922153473,0.183659359812737,0.590501368045807,-0.769497096538544,0.243273913860321,0.159546434879303,-0.986728131771088,0.030207796022296,0.0891056135296822,-0.99570232629776,0.0252391509711742,0.0265890471637249,-0.999555826187134,-0.0134581932798028,0.0265890471637249,-0.999555826187134,-0.0134581932798028,-0.0256036333739758,-0.999657869338989,0.00533970212563872,0.0497986413538456,-0.998663187026978,0.0138514339923859,-0.480639547109604,-0.709499359130859,0.515360176563263,-0.540582954883575,-0.639463722705841,0.54667741060257,-0.497364103794098,-0.790284037590027,0.357882589101791,-0.407692670822144,-0.902799367904663,0.136893793940544,-0.287566423416138,-0.933751106262207,0.213106364011765,-0.157075762748718,-0.984058380126953,0.083402656018734,-0.287566423416138,-0.933751106262207,0.213106364011765,-0.563676059246063,-0.781757712364197,0.266690909862518, +-0.469103634357452,-0.782316327095032,0.409783840179443,-0.59003221988678,-0.679775476455688,0.43562263250351,-0.469103634357452,-0.782316327095032,0.409783840179443,-0.563676059246063,-0.781757712364197,0.266690909862518,-0.540582954883575,-0.639463722705841,0.54667741060257,-0.59003221988678,-0.679775476455688,0.43562263250351,-0.497364103794098,-0.790284037590027,0.357882589101791,0.0385789684951305,-0.995219528675079,0.089719794690609,0.0487124510109425,-0.996004998683929,0.0748395696282387,0.0338953286409378,-0.993001997470856,0.113128244876862,0.0569719225168228,-0.993271350860596,0.100827269256115,0.0385789684951305,-0.995219528675079,0.089719794690609,0.0411115400493145,-0.992761135101318,0.112849719822407,0.526057839393616,-0.83855539560318,0.141732051968575,0.487699776887894,-0.85866904258728,0.157595291733742,0.382184118032455,-0.91899973154068,0.0968217179179192,0.159546434879303,-0.986728131771088,0.030207796022296,0.203816115856171,-0.977341651916504,0.0571151450276375,0.0891056135296822,-0.99570232629776,0.0252391509711742,0.382184118032455,-0.91899973154068,0.0968217179179192,0.327014535665512,-0.935421407222748,0.134343490004539,0.203816115856171,-0.977341651916504,0.0571151450276375,0.526057839393616,-0.83855539560318,0.141732051968575,0.58408910036087,-0.793264865875244,0.171961069107056,0.487699776887894,-0.85866904258728,0.157595291733742,0.590501368045807,-0.769497096538544,0.243273913860321,0.583117246627808,-0.721384167671204,0.373602896928787,0.660230159759521,-0.685432732105255,0.307047158479691,0.58408910036087,-0.793264865875244,0.171961069107056,0.590501368045807,-0.769497096538544,0.243273913860321,0.656560838222504,-0.71994960308075,0.224945083260536,0.0479638390243053,-0.99875944852829,0.013377046212554,0.0265890471637249,-0.999555826187134,-0.0134581932798028,0.0891056135296822,-0.99570232629776,0.0252391509711742,0.0265890471637249,-0.999555826187134,-0.0134581932798028,-0.110590532422066,-0.992487907409668,-0.0523181185126305,-0.0256036333739758,-0.999657869338989,0.00533970212563872, +-0.304088413715363,-0.900885820388794,0.309733480215073,-0.480639547109604,-0.709499359130859,0.515360176563263,-0.497364103794098,-0.790284037590027,0.357882589101791,-0.250152826309204,-0.968196749687195,0.00431486079469323,-0.157075762748718,-0.984058380126953,0.083402656018734,-0.0256036333739758,-0.999657869338989,0.00533970212563872,-0.407692670822144,-0.902799367904663,0.136893793940544,-0.563676059246063,-0.781757712364197,0.266690909862518,-0.287566423416138,-0.933751106262207,0.213106364011765,-0.250152826309204,-0.968196749687195,0.00431486079469323,-0.407692670822144,-0.902799367904663,0.136893793940544,-0.157075762748718,-0.984058380126953,0.083402656018734,-0.633633613586426,-0.738015472888947,0.232037499547005,-0.59003221988678,-0.679775476455688,0.43562263250351,-0.563676059246063,-0.781757712364197,0.266690909862518,-0.633633613586426,-0.738015472888947,0.232037499547005,-0.497364103794098,-0.790284037590027,0.357882589101791,-0.59003221988678,-0.679775476455688,0.43562263250351,0.0338953286409378,-0.993001997470856,0.113128244876862,0.0487124510109425,-0.996004998683929,0.0748395696282387,0.058581817895174,-0.992120385169983,0.110748127102852,0.0338953286409378,-0.993001997470856,0.113128244876862,0.0411115400493145,-0.992761135101318,0.112849719822407,0.0385789684951305,-0.995219528675079,0.089719794690609,0.382184118032455,-0.91899973154068,0.0968217179179192,0.487699776887894,-0.85866904258728,0.157595291733742,0.327014535665512,-0.935421407222748,0.134343490004539,0.203396335244179,-0.970668137073517,0.128192007541656,0.0891056135296822,-0.99570232629776,0.0252391509711742,0.203816115856171,-0.977341651916504,0.0571151450276375,0.203396335244179,-0.970668137073517,0.128192007541656,0.203816115856171,-0.977341651916504,0.0571151450276375,0.327014535665512,-0.935421407222748,0.134343490004539,0.575266778469086,-0.781846642494202,0.240382879972458,0.487699776887894,-0.85866904258728,0.157595291733742,0.58408910036087,-0.793264865875244,0.171961069107056,0.660230159759521,-0.685432732105255,0.307047158479691, +0.656560838222504,-0.71994960308075,0.224945083260536,0.590501368045807,-0.769497096538544,0.243273913860321,0.656560838222504,-0.71994960308075,0.224945083260536,0.655960619449615,-0.724235415458679,0.212599441409111,0.58408910036087,-0.793264865875244,0.171961069107056,0.0479638390243053,-0.99875944852829,0.013377046212554,-0.031636543571949,-0.998661458492279,-0.0409185402095318,0.0265890471637249,-0.999555826187134,-0.0134581932798028,0.0891056135296822,-0.99570232629776,0.0252391509711742,0.12107153236866,-0.980454325675964,0.155083432793617,0.0479638390243053,-0.99875944852829,0.013377046212554,-0.110590532422066,-0.992487907409668,-0.0523181185126305,0.0265890471637249,-0.999555826187134,-0.0134581932798028,-0.031636543571949,-0.998661458492279,-0.0409185402095318,-0.0256036333739758,-0.999657869338989,0.00533970212563872,-0.110590532422066,-0.992487907409668,-0.0523181185126305,-0.250152826309204,-0.968196749687195,0.00431486079469323,-0.304088413715363,-0.900885820388794,0.309733480215073,-0.497364103794098,-0.790284037590027,0.357882589101791,-0.212495967745781,-0.960789144039154,0.178128182888031,-0.304088413715363,-0.900885820388794,0.309733480215073,-0.212495967745781,-0.960789144039154,0.178128182888031,-0.0364438109099865,-0.993548333644867,0.107394054532051,-0.6647008061409,-0.745737314224243,0.0452606081962585,-0.563676059246063,-0.781757712364197,0.266690909862518,-0.407692670822144,-0.902799367904663,0.136893793940544,-0.250152826309204,-0.968196749687195,0.00431486079469323,-0.533924758434296,-0.842813551425934,-0.0677459985017776,-0.407692670822144,-0.902799367904663,0.136893793940544,-0.633633613586426,-0.738015472888947,0.232037499547005,-0.563676059246063,-0.781757712364197,0.266690909862518,-0.6647008061409,-0.745737314224243,0.0452606081962585,-0.633633613586426,-0.738015472888947,0.232037499547005,-0.425783634185791,-0.887706577777863,0.175171852111816,-0.497364103794098,-0.790284037590027,0.357882589101791,0.00586567632853985,-0.997732102870941,0.0670533999800682,0.0487124510109425,-0.996004998683929,0.0748395696282387, +-0.0364438109099865,-0.993548333644867,0.107394054532051,0.058581817895174,-0.992120385169983,0.110748127102852,0.0487124510109425,-0.996004998683929,0.0748395696282387,0.00586567632853985,-0.997732102870941,0.0670533999800682,0.487699776887894,-0.85866904258728,0.157595291733742,0.439236134290695,-0.861935913562775,0.253254771232605,0.327014535665512,-0.935421407222748,0.134343490004539,0.203396335244179,-0.970668137073517,0.128192007541656,0.12107153236866,-0.980454325675964,0.155083432793617,0.0891056135296822,-0.99570232629776,0.0252391509711742,0.327014535665512,-0.935421407222748,0.134343490004539,0.336119800806046,-0.915375769138336,0.221608519554138,0.203396335244179,-0.970668137073517,0.128192007541656,0.487699776887894,-0.85866904258728,0.157595291733742,0.575266778469086,-0.781846642494202,0.240382879972458,0.439236134290695,-0.861935913562775,0.253254771232605,0.58408910036087,-0.793264865875244,0.171961069107056,0.655960619449615,-0.724235415458679,0.212599441409111,0.575266778469086,-0.781846642494202,0.240382879972458,0.0479638390243053,-0.99875944852829,0.013377046212554,-0.00468617677688599,-0.999801099300385,-0.0193844065070152,-0.031636543571949,-0.998661458492279,-0.0409185402095318,0.0479638390243053,-0.99875944852829,0.013377046212554,0.12107153236866,-0.980454325675964,0.155083432793617,0.0977801084518433,-0.988054811954498,0.119107708334923,-0.110590532422066,-0.992487907409668,-0.0523181185126305,-0.031636543571949,-0.998661458492279,-0.0409185402095318,-0.126646667718887,-0.982256412506104,-0.138321667909622,-0.250152826309204,-0.968196749687195,0.00431486079469323,-0.110590532422066,-0.992487907409668,-0.0523181185126305,-0.342810481786728,-0.924918651580811,-0.164335981011391,-0.212495967745781,-0.960789144039154,0.178128182888031,-0.497364103794098,-0.790284037590027,0.357882589101791,-0.425783634185791,-0.887706577777863,0.175171852111816,-0.0364438109099865,-0.993548333644867,0.107394054532051,-0.212495967745781,-0.960789144039154,0.178128182888031,-0.084639884531498,-0.99461841583252,0.0597513802349567, +-0.533924758434296,-0.842813551425934,-0.0677459985017776,-0.6647008061409,-0.745737314224243,0.0452606081962585,-0.407692670822144,-0.902799367904663,0.136893793940544,-0.250152826309204,-0.968196749687195,0.00431486079469323,-0.342810481786728,-0.924918651580811,-0.164335981011391,-0.533924758434296,-0.842813551425934,-0.0677459985017776,-0.633633613586426,-0.738015472888947,0.232037499547005,-0.6647008061409,-0.745737314224243,0.0452606081962585,-0.595417320728302,-0.768283009529114,0.234987780451775,-0.633633613586426,-0.738015472888947,0.232037499547005,-0.595417320728302,-0.768283009529114,0.234987780451775,-0.425783634185791,-0.887706577777863,0.175171852111816,-0.084639884531498,-0.99461841583252,0.0597513802349567,0.00586567632853985,-0.997732102870941,0.0670533999800682,-0.0364438109099865,-0.993548333644867,0.107394054532051,0.327014535665512,-0.935421407222748,0.134343490004539,0.439236134290695,-0.861935913562775,0.253254771232605,0.336119800806046,-0.915375769138336,0.221608519554138,0.12107153236866,-0.980454325675964,0.155083432793617,0.203396335244179,-0.970668137073517,0.128192007541656,0.255920022726059,-0.927014291286469,0.274133682250977,0.203396335244179,-0.970668137073517,0.128192007541656,0.336119800806046,-0.915375769138336,0.221608519554138,0.344884186983109,-0.894802749156952,0.28351879119873,0.534161031246185,-0.751201212406158,0.387773871421814,0.439236134290695,-0.861935913562775,0.253254771232605,0.575266778469086,-0.781846642494202,0.240382879972458,0.678994357585907,-0.677961111068726,0.281664997339249,0.575266778469086,-0.781846642494202,0.240382879972458,0.655960619449615,-0.724235415458679,0.212599441409111,0.0479638390243053,-0.99875944852829,0.013377046212554,0.0549856014549732,-0.997020125389099,0.05410310998559,-0.00468617677688599,-0.999801099300385,-0.0193844065070152,-0.00468617677688599,-0.999801099300385,-0.0193844065070152,-0.126646667718887,-0.982256412506104,-0.138321667909622,-0.031636543571949,-0.998661458492279,-0.0409185402095318,0.12107153236866,-0.980454325675964,0.155083432793617, +0.181443855166435,-0.917213976383209,0.354677766561508,0.0977801084518433,-0.988054811954498,0.119107708334923,0.0977801084518433,-0.988054811954498,0.119107708334923,0.0549856014549732,-0.997020125389099,0.05410310998559,0.0479638390243053,-0.99875944852829,0.013377046212554,-0.342810481786728,-0.924918651580811,-0.164335981011391,-0.110590532422066,-0.992487907409668,-0.0523181185126305,-0.126646667718887,-0.982256412506104,-0.138321667909622,-0.425783634185791,-0.887706577777863,0.175171852111816,-0.17359484732151,-0.982040286064148,0.0739029571413994,-0.212495967745781,-0.960789144039154,0.178128182888031,-0.084639884531498,-0.99461841583252,0.0597513802349567,-0.212495967745781,-0.960789144039154,0.178128182888031,-0.17359484732151,-0.982040286064148,0.0739029571413994,-0.680262565612793,-0.700267851352692,-0.216489300131798,-0.6647008061409,-0.745737314224243,0.0452606081962585,-0.533924758434296,-0.842813551425934,-0.0677459985017776,-0.342810481786728,-0.924918651580811,-0.164335981011391,-0.557658493518829,-0.775048494338989,-0.297181218862534,-0.533924758434296,-0.842813551425934,-0.0677459985017776,-0.6647008061409,-0.745737314224243,0.0452606081962585,-0.782948791980743,-0.582388818264008,-0.218664795160294,-0.595417320728302,-0.768283009529114,0.234987780451775,-0.595417320728302,-0.768283009529114,0.234987780451775,-0.168858617544174,-0.940454840660095,0.295010715723038,-0.425783634185791,-0.887706577777863,0.175171852111816,0.00586567632853985,-0.997732102870941,0.0670533999800682,-0.084639884531498,-0.99461841583252,0.0597513802349567,-0.122738793492317,-0.992334246635437,0.014415149576962,0.458219558000565,-0.808679640293121,0.368879288434982,0.336119800806046,-0.915375769138336,0.221608519554138,0.439236134290695,-0.861935913562775,0.253254771232605,0.203396335244179,-0.970668137073517,0.128192007541656,0.344884186983109,-0.894802749156952,0.28351879119873,0.255920022726059,-0.927014291286469,0.274133682250977,0.12107153236866,-0.980454325675964,0.155083432793617,0.255920022726059,-0.927014291286469,0.274133682250977, +0.266453742980957,-0.848693370819092,0.456860840320587,0.336119800806046,-0.915375769138336,0.221608519554138,0.458219558000565,-0.808679640293121,0.368879288434982,0.344884186983109,-0.894802749156952,0.28351879119873,0.458219558000565,-0.808679640293121,0.368879288434982,0.439236134290695,-0.861935913562775,0.253254771232605,0.534161031246185,-0.751201212406158,0.387773871421814,0.642636895179749,-0.650201082229614,0.405285507440567,0.534161031246185,-0.751201212406158,0.387773871421814,0.575266778469086,-0.781846642494202,0.240382879972458,0.642636895179749,-0.650201082229614,0.405285507440567,0.575266778469086,-0.781846642494202,0.240382879972458,0.678994357585907,-0.677961111068726,0.281664997339249,0.0549856014549732,-0.997020125389099,0.05410310998559,0.0484997890889645,-0.989838123321533,0.133672058582306,-0.00468617677688599,-0.999801099300385,-0.0193844065070152,-0.126646667718887,-0.982256412506104,-0.138321667909622,-0.00468617677688599,-0.999801099300385,-0.0193844065070152,-0.088193267583847,-0.989474058151245,-0.114729672670364,0.12107153236866,-0.980454325675964,0.155083432793617,0.266453742980957,-0.848693370819092,0.456860840320587,0.181443855166435,-0.917213976383209,0.354677766561508,0.101337917149067,-0.970939636230469,0.216810524463654,0.0977801084518433,-0.988054811954498,0.119107708334923,0.181443855166435,-0.917213976383209,0.354677766561508,0.0977801084518433,-0.988054811954498,0.119107708334923,0.101337917149067,-0.970939636230469,0.216810524463654,0.0549856014549732,-0.997020125389099,0.05410310998559,-0.342810481786728,-0.924918651580811,-0.164335981011391,-0.126646667718887,-0.982256412506104,-0.138321667909622,-0.3883036673069,-0.848955631256104,-0.358461380004883,-0.425783634185791,-0.887706577777863,0.175171852111816,-0.168858617544174,-0.940454840660095,0.295010715723038,-0.17359484732151,-0.982040286064148,0.0739029571413994,-0.122738793492317,-0.992334246635437,0.014415149576962,-0.084639884531498,-0.99461841583252,0.0597513802349567,-0.17359484732151,-0.982040286064148,0.0739029571413994, +-0.6647008061409,-0.745737314224243,0.0452606081962585,-0.680262565612793,-0.700267851352692,-0.216489300131798,-0.782948791980743,-0.582388818264008,-0.218664795160294,-0.557658493518829,-0.775048494338989,-0.297181218862534,-0.680262565612793,-0.700267851352692,-0.216489300131798,-0.533924758434296,-0.842813551425934,-0.0677459985017776,-0.557658493518829,-0.775048494338989,-0.297181218862534,-0.342810481786728,-0.924918651580811,-0.164335981011391,-0.3883036673069,-0.848955631256104,-0.358461380004883,-0.782948791980743,-0.582388818264008,-0.218664795160294,-0.653231978416443,-0.705114543437958,0.275864690542221,-0.595417320728302,-0.768283009529114,0.234987780451775,-0.168858617544174,-0.940454840660095,0.295010715723038,-0.595417320728302,-0.768283009529114,0.234987780451775,-0.653231978416443,-0.705114543437958,0.275864690542221,0.344884186983109,-0.894802749156952,0.28351879119873,0.425818026065826,-0.745764493942261,0.512361347675323,0.255920022726059,-0.927014291286469,0.274133682250977,0.425818026065826,-0.745764493942261,0.512361347675323,0.266453742980957,-0.848693370819092,0.456860840320587,0.255920022726059,-0.927014291286469,0.274133682250977,0.458219558000565,-0.808679640293121,0.368879288434982,0.425818026065826,-0.745764493942261,0.512361347675323,0.344884186983109,-0.894802749156952,0.28351879119873,0.534161031246185,-0.751201212406158,0.387773871421814,0.549715757369995,-0.59162175655365,0.589742362499237,0.458219558000565,-0.808679640293121,0.368879288434982,0.642636895179749,-0.650201082229614,0.405285507440567,0.549715757369995,-0.59162175655365,0.589742362499237,0.534161031246185,-0.751201212406158,0.387773871421814,0.0549856014549732,-0.997020125389099,0.05410310998559,0.101337917149067,-0.970939636230469,0.216810524463654,0.0484997890889645,-0.989838123321533,0.133672058582306,-0.00468617677688599,-0.999801099300385,-0.0193844065070152,0.0484997890889645,-0.989838123321533,0.133672058582306,-0.00410118512809277,-0.999211251735687,0.039496723562479,-0.0542060434818268,-0.996305644512177,-0.0666086301207542, +-0.088193267583847,-0.989474058151245,-0.114729672670364,-0.00468617677688599,-0.999801099300385,-0.0193844065070152,-0.226463228464127,-0.925143599510193,-0.304669767618179,-0.126646667718887,-0.982256412506104,-0.138321667909622,-0.088193267583847,-0.989474058151245,-0.114729672670364,0.266453742980957,-0.848693370819092,0.456860840320587,0.302627205848694,-0.633063733577728,0.712493479251862,0.181443855166435,-0.917213976383209,0.354677766561508,0.101337917149067,-0.970939636230469,0.216810524463654,0.181443855166435,-0.917213976383209,0.354677766561508,0.156552895903587,-0.839922249317169,0.51963609457016,-0.226463228464127,-0.925143599510193,-0.304669767618179,-0.3883036673069,-0.848955631256104,-0.358461380004883,-0.126646667718887,-0.982256412506104,-0.138321667909622,-0.122738793492317,-0.992334246635437,0.014415149576962,-0.17359484732151,-0.982040286064148,0.0739029571413994,-0.168858617544174,-0.940454840660095,0.295010715723038,-0.680262565612793,-0.700267851352692,-0.216489300131798,-0.658609509468079,-0.587279856204987,-0.470463424921036,-0.782948791980743,-0.582388818264008,-0.218664795160294,-0.557658493518829,-0.775048494338989,-0.297181218862534,-0.658609509468079,-0.587279856204987,-0.470463424921036,-0.680262565612793,-0.700267851352692,-0.216489300131798,-0.557658493518829,-0.775048494338989,-0.297181218862534,-0.3883036673069,-0.848955631256104,-0.358461380004883,-0.658609509468079,-0.587279856204987,-0.470463424921036,-0.653231978416443,-0.705114543437958,0.275864690542221,-0.782948791980743,-0.582388818264008,-0.218664795160294,-0.759458363056183,-0.416283339262009,-0.499931007623672,0.425818026065826,-0.745764493942261,0.512361347675323,0.394631445407867,-0.544737637042999,0.73995053768158,0.266453742980957,-0.848693370819092,0.456860840320587,0.549715757369995,-0.59162175655365,0.589742362499237,0.425818026065826,-0.745764493942261,0.512361347675323,0.458219558000565,-0.808679640293121,0.368879288434982,0.0484997890889645,-0.989838123321533,0.133672058582306,0.101337917149067,-0.970939636230469,0.216810524463654, +0.136574983596802,-0.877577185630798,0.459570854902267,0.0473684296011925,-0.964747726917267,0.258878439664841,-0.00410118512809277,-0.999211251735687,0.039496723562479,0.0484997890889645,-0.989838123321533,0.133672058582306,-0.00468617677688599,-0.999801099300385,-0.0193844065070152,-0.00410118512809277,-0.999211251735687,0.039496723562479,-0.0542060434818268,-0.996305644512177,-0.0666086301207542,-0.0542060434818268,-0.996305644512177,-0.0666086301207542,-0.226463228464127,-0.925143599510193,-0.304669767618179,-0.088193267583847,-0.989474058151245,-0.114729672670364,0.266453742980957,-0.848693370819092,0.456860840320587,0.394631445407867,-0.544737637042999,0.73995053768158,0.302627205848694,-0.633063733577728,0.712493479251862,0.229684382677078,-0.710994482040405,0.66462904214859,0.181443855166435,-0.917213976383209,0.354677766561508,0.302627205848694,-0.633063733577728,0.712493479251862,0.229684382677078,-0.710994482040405,0.66462904214859,0.156552895903587,-0.839922249317169,0.51963609457016,0.181443855166435,-0.917213976383209,0.354677766561508,0.136574983596802,-0.877577185630798,0.459570854902267,0.101337917149067,-0.970939636230469,0.216810524463654,0.156552895903587,-0.839922249317169,0.51963609457016,-0.3883036673069,-0.848955631256104,-0.358461380004883,-0.226463228464127,-0.925143599510193,-0.304669767618179,-0.658609509468079,-0.587279856204987,-0.470463424921036,-0.658609509468079,-0.587279856204987,-0.470463424921036,-0.759458363056183,-0.416283339262009,-0.499931007623672,-0.782948791980743,-0.582388818264008,-0.218664795160294,0.484358608722687,-0.396458089351654,0.779883086681366,0.394631445407867,-0.544737637042999,0.73995053768158,0.425818026065826,-0.745764493942261,0.512361347675323,0.549715757369995,-0.59162175655365,0.589742362499237,0.484358608722687,-0.396458089351654,0.779883086681366,0.425818026065826,-0.745764493942261,0.512361347675323,0.136574983596802,-0.877577185630798,0.459570854902267,0.134773403406143,-0.912932097911835,0.38521546125412,0.0484997890889645,-0.989838123321533,0.133672058582306, +-0.00410118512809277,-0.999211251735687,0.039496723562479,0.0473684296011925,-0.964747726917267,0.258878439664841,0.0348202586174011,-0.987121164798737,0.156138494610786,0.0473684296011925,-0.964747726917267,0.258878439664841,0.0484997890889645,-0.989838123321533,0.133672058582306,0.134773403406143,-0.912932097911835,0.38521546125412,-0.0542060434818268,-0.996305644512177,-0.0666086301207542,-0.00410118512809277,-0.999211251735687,0.039496723562479,0.00450415816158056,-0.998498141765594,-0.0545994639396667,-0.0542060434818268,-0.996305644512177,-0.0666086301207542,0.00450415816158056,-0.998498141765594,-0.0545994639396667,-0.226463228464127,-0.925143599510193,-0.304669767618179,0.302627205848694,-0.633063733577728,0.712493479251862,0.394631445407867,-0.544737637042999,0.73995053768158,0.319532662630081,-0.232398837804794,0.918634593486786,0.229684382677078,-0.710994482040405,0.66462904214859,0.302627205848694,-0.633063733577728,0.712493479251862,0.242843106389046,-0.364319056272507,0.899054348468781,0.229684382677078,-0.710994482040405,0.66462904214859,0.176049306988716,-0.484307914972305,0.857001960277557,0.156552895903587,-0.839922249317169,0.51963609457016,0.136574983596802,-0.877577185630798,0.459570854902267,0.156552895903587,-0.839922249317169,0.51963609457016,0.176049306988716,-0.484307914972305,0.857001960277557,-0.658609509468079,-0.587279856204987,-0.470463424921036,-0.226463228464127,-0.925143599510193,-0.304669767618179,-0.759458363056183,-0.416283339262009,-0.499931007623672,0.484358608722687,-0.396458089351654,0.779883086681366,0.319532662630081,-0.232398837804794,0.918634593486786,0.394631445407867,-0.544737637042999,0.73995053768158,0.136574983596802,-0.877577185630798,0.459570854902267,0.231585055589676,-0.587118029594421,0.77566784620285,0.134773403406143,-0.912932097911835,0.38521546125412,0.0473684296011925,-0.964747726917267,0.258878439664841,0.0725646540522575,-0.831033229827881,0.551468968391418,0.0348202586174011,-0.987121164798737,0.156138494610786,-0.00410118512809277,-0.999211251735687,0.039496723562479, +0.0348202586174011,-0.987121164798737,0.156138494610786,0.00143669755198061,-0.999987542629242,0.00476956320926547,0.0473684296011925,-0.964747726917267,0.258878439664841,0.134773403406143,-0.912932097911835,0.38521546125412,0.13854992389679,-0.723032653331757,0.676777303218842,-0.00410118512809277,-0.999211251735687,0.039496723562479,0.00143669755198061,-0.999987542629242,0.00476956320926547,0.00450415816158056,-0.998498141765594,-0.0545994639396667,-0.226463228464127,-0.925143599510193,-0.304669767618179,0.00450415816158056,-0.998498141765594,-0.0545994639396667,0.0828030034899712,-0.99601686000824,-0.0330758802592754,0.319532662630081,-0.232398837804794,0.918634593486786,0.242843106389046,-0.364319056272507,0.899054348468781,0.302627205848694,-0.633063733577728,0.712493479251862,0.229684382677078,-0.710994482040405,0.66462904214859,0.242843106389046,-0.364319056272507,0.899054348468781,0.176049306988716,-0.484307914972305,0.857001960277557,0.176049306988716,-0.484307914972305,0.857001960277557,0.231585055589676,-0.587118029594421,0.77566784620285,0.136574983596802,-0.877577185630798,0.459570854902267,0.134773403406143,-0.912932097911835,0.38521546125412,0.231585055589676,-0.587118029594421,0.77566784620285,0.13854992389679,-0.723032653331757,0.676777303218842,0.0725646540522575,-0.831033229827881,0.551468968391418,0.0473684296011925,-0.964747726917267,0.258878439664841,0.13854992389679,-0.723032653331757,0.676777303218842,0.0725646540522575,-0.831033229827881,0.551468968391418,0.0979195088148117,-0.868289053440094,0.486298054456711,0.0348202586174011,-0.987121164798737,0.156138494610786,0.0142686618492007,-0.997468292713165,0.0696653723716736,0.00143669755198061,-0.999987542629242,0.00476956320926547,0.0348202586174011,-0.987121164798737,0.156138494610786,0.00450415816158056,-0.998498141765594,-0.0545994639396667,0.00143669755198061,-0.999987542629242,0.00476956320926547,-0.0182900913059711,-0.997738242149353,-0.0646823570132256,0.0828030034899712,-0.99601686000824,-0.0330758802592754,0.00450415816158056,-0.998498141765594,-0.0545994639396667, +-0.0638819709420204,-0.994699358940125,-0.0805745422840118,0.319532662630081,-0.232398837804794,0.918634593486786,0.184904679656029,-0.110358953475952,0.976540386676788,0.242843106389046,-0.364319056272507,0.899054348468781,0.176049306988716,-0.484307914972305,0.857001960277557,0.242843106389046,-0.364319056272507,0.899054348468781,0.184904679656029,-0.110358953475952,0.976540386676788,0.176049306988716,-0.484307914972305,0.857001960277557,0.201260134577751,-0.11511142551899,0.972750544548035,0.231585055589676,-0.587118029594421,0.77566784620285,0.231585055589676,-0.587118029594421,0.77566784620285,0.203167721629143,-0.260633260011673,0.943818390369415,0.13854992389679,-0.723032653331757,0.676777303218842,0.0725646540522575,-0.831033229827881,0.551468968391418,0.13854992389679,-0.723032653331757,0.676777303218842,0.130089104175568,-0.355731725692749,0.925489962100983,0.0725646540522575,-0.831033229827881,0.551468968391418,0.126557350158691,-0.471088290214539,0.872959852218628,0.0979195088148117,-0.868289053440094,0.486298054456711,0.0625865310430527,-0.934289276599884,0.35097923874855,0.0348202586174011,-0.987121164798737,0.156138494610786,0.0979195088148117,-0.868289053440094,0.486298054456711,0.0142686618492007,-0.997468292713165,0.0696653723716736,-0.0182900913059711,-0.997738242149353,-0.0646823570132256,0.00143669755198061,-0.999987542629242,0.00476956320926547,0.0625865310430527,-0.934289276599884,0.35097923874855,0.0142686618492007,-0.997468292713165,0.0696653723716736,0.0348202586174011,-0.987121164798737,0.156138494610786,0.00450415816158056,-0.998498141765594,-0.0545994639396667,-0.0182900913059711,-0.997738242149353,-0.0646823570132256,-0.0398198924958706,-0.993935942649841,-0.102496802806854,-0.0638819709420204,-0.994699358940125,-0.0805745422840118,0.00450415816158056,-0.998498141765594,-0.0545994639396667,-0.0398198924958706,-0.993935942649841,-0.102496802806854,0.184904679656029,-0.110358953475952,0.976540386676788,0.201260134577751,-0.11511142551899,0.972750544548035,0.176049306988716,-0.484307914972305,0.857001960277557, +0.231585055589676,-0.587118029594421,0.77566784620285,0.201260134577751,-0.11511142551899,0.972750544548035,0.203167721629143,-0.260633260011673,0.943818390369415,0.130089104175568,-0.355731725692749,0.925489962100983,0.13854992389679,-0.723032653331757,0.676777303218842,0.203167721629143,-0.260633260011673,0.943818390369415,0.130089104175568,-0.355731725692749,0.925489962100983,0.126557350158691,-0.471088290214539,0.872959852218628,0.0725646540522575,-0.831033229827881,0.551468968391418,0.152154341340065,-0.570204257965088,0.807289302349091,0.0979195088148117,-0.868289053440094,0.486298054456711,0.126557350158691,-0.471088290214539,0.872959852218628,0.0979195088148117,-0.868289053440094,0.486298054456711,0.152154341340065,-0.570204257965088,0.807289302349091,0.0625865310430527,-0.934289276599884,0.35097923874855,-0.00492334086447954,-0.999977052211761,-0.00463662389665842,-0.0182900913059711,-0.997738242149353,-0.0646823570132256,0.0142686618492007,-0.997468292713165,0.0696653723716736,0.0490109845995903,-0.956404387950897,0.287903726100922,0.0142686618492007,-0.997468292713165,0.0696653723716736,0.0625865310430527,-0.934289276599884,0.35097923874855,-0.0398198924958706,-0.993935942649841,-0.102496802806854,-0.0182900913059711,-0.997738242149353,-0.0646823570132256,-0.0141607634723186,-0.99429178237915,-0.105750873684883,0.201260134577751,-0.11511142551899,0.972750544548035,0.162875175476074,-0.0189905539155006,0.986463844776154,0.203167721629143,-0.260633260011673,0.943818390369415,0.130089104175568,-0.355731725692749,0.925489962100983,0.203167721629143,-0.260633260011673,0.943818390369415,0.162875175476074,-0.0189905539155006,0.986463844776154,0.130089104175568,-0.355731725692749,0.925489962100983,0.131407126784325,-0.0619342401623726,0.9893918633461,0.126557350158691,-0.471088290214539,0.872959852218628,0.152154341340065,-0.570204257965088,0.807289302349091,0.126557350158691,-0.471088290214539,0.872959852218628,0.136822134256363,-0.111212283372879,0.984332978725433,0.150027588009834,-0.717889487743378,0.679798662662506, +0.0625865310430527,-0.934289276599884,0.35097923874855,0.152154341340065,-0.570204257965088,0.807289302349091,-0.0182900913059711,-0.997738242149353,-0.0646823570132256,-0.00492334086447954,-0.999977052211761,-0.00463662389665842,-0.0288012288510799,-0.995715856552124,-0.0878642126917839,-0.00492334086447954,-0.999977052211761,-0.00463662389665842,0.0142686618492007,-0.997468292713165,0.0696653723716736,0.033571120351553,-0.983877301216125,0.175665497779846,0.033571120351553,-0.983877301216125,0.175665497779846,0.0142686618492007,-0.997468292713165,0.0696653723716736,0.0490109845995903,-0.956404387950897,0.287903726100922,0.0490109845995903,-0.956404387950897,0.287903726100922,0.0625865310430527,-0.934289276599884,0.35097923874855,0.150027588009834,-0.717889487743378,0.679798662662506,-0.0141607634723186,-0.99429178237915,-0.105750873684883,-0.0182900913059711,-0.997738242149353,-0.0646823570132256,-0.0288012288510799,-0.995715856552124,-0.0878642126917839,0.131407126784325,-0.0619342401623726,0.9893918633461,0.130089104175568,-0.355731725692749,0.925489962100983,0.162875175476074,-0.0189905539155006,0.986463844776154,0.136822134256363,-0.111212283372879,0.984332978725433,0.126557350158691,-0.471088290214539,0.872959852218628,0.131407126784325,-0.0619342401623726,0.9893918633461,0.136822134256363,-0.111212283372879,0.984332978725433,0.199213624000549,-0.169640943408012,0.965161025524139,0.152154341340065,-0.570204257965088,0.807289302349091,0.150027588009834,-0.717889487743378,0.679798662662506,0.152154341340065,-0.570204257965088,0.807289302349091,0.199213624000549,-0.169640943408012,0.965161025524139,-0.00492334086447954,-0.999977052211761,-0.00463662389665842,-0.0241786036640406,-0.997798621654511,-0.0617513619363308,-0.0288012288510799,-0.995715856552124,-0.0878642126917839,0.0258965492248535,-0.994910180568695,0.0973804667592049,-0.00492334086447954,-0.999977052211761,-0.00463662389665842,0.033571120351553,-0.983877301216125,0.175665497779846,0.033571120351553,-0.983877301216125,0.175665497779846,0.0490109845995903,-0.956404387950897,0.287903726100922, +0.0873522683978081,-0.851779222488403,0.51656711101532,0.0490109845995903,-0.956404387950897,0.287903726100922,0.150027588009834,-0.717889487743378,0.679798662662506,0.0873522683978081,-0.851779222488403,0.51656711101532,0.150027588009834,-0.717889487743378,0.679798662662506,0.199213624000549,-0.169640943408012,0.965161025524139,0.171856760978699,-0.432693690061569,0.885009229183197,-0.00492334086447954,-0.999977052211761,-0.00463662389665842,0.0258965492248535,-0.994910180568695,0.0973804667592049,-0.0241786036640406,-0.997798621654511,-0.0617513619363308,-0.0288012288510799,-0.995715856552124,-0.0878642126917839,-0.0241786036640406,-0.997798621654511,-0.0617513619363308,-0.0526864491403103,-0.99235612154007,-0.111595056951046,0.033571120351553,-0.983877301216125,0.175665497779846,0.100177153944969,-0.905174612998962,0.413065791130066,0.0258965492248535,-0.994910180568695,0.0973804667592049,0.100177153944969,-0.905174612998962,0.413065791130066,0.033571120351553,-0.983877301216125,0.175665497779846,0.0873522683978081,-0.851779222488403,0.51656711101532,0.150027588009834,-0.717889487743378,0.679798662662506,0.171856760978699,-0.432693690061569,0.885009229183197,0.0873522683978081,-0.851779222488403,0.51656711101532,0.199213624000549,-0.169640943408012,0.965161025524139,0.195252776145935,-0.0552942343056202,0.979192972183228,0.171856760978699,-0.432693690061569,0.885009229183197,0.0258965492248535,-0.994910180568695,0.0973804667592049,0.00909474957734346,-0.998661398887634,0.05091742426157,-0.0241786036640406,-0.997798621654511,-0.0617513619363308,-0.0526864491403103,-0.99235612154007,-0.111595056951046,-0.0241786036640406,-0.997798621654511,-0.0617513619363308,-0.0437456183135509,-0.992634415626526,-0.112974397838116,0.086935743689537,-0.953060209751129,0.290031582117081,0.0258965492248535,-0.994910180568695,0.0973804667592049,0.100177153944969,-0.905174612998962,0.413065791130066,0.100177153944969,-0.905174612998962,0.413065791130066,0.0873522683978081,-0.851779222488403,0.51656711101532,0.164251521229744,-0.507718443870544,0.845720589160919, +0.164251521229744,-0.507718443870544,0.845720589160919,0.0873522683978081,-0.851779222488403,0.51656711101532,0.171856760978699,-0.432693690061569,0.885009229183197,0.164251521229744,-0.507718443870544,0.845720589160919,0.171856760978699,-0.432693690061569,0.885009229183197,0.195252776145935,-0.0552942343056202,0.979192972183228,0.0258965492248535,-0.994910180568695,0.0973804667592049,0.086935743689537,-0.953060209751129,0.290031582117081,0.00909474957734346,-0.998661398887634,0.05091742426157,-0.0150580983608961,-0.999444544315338,-0.0297288186848164,-0.0241786036640406,-0.997798621654511,-0.0617513619363308,0.00909474957734346,-0.998661398887634,0.05091742426157,-0.0241786036640406,-0.997798621654511,-0.0617513619363308,-0.0150580983608961,-0.999444544315338,-0.0297288186848164,-0.0437456183135509,-0.992634415626526,-0.112974397838116,0.086935743689537,-0.953060209751129,0.290031582117081,0.100177153944969,-0.905174612998962,0.413065791130066,0.192767009139061,-0.643192291259766,0.741042792797089,0.192767009139061,-0.643192291259766,0.741042792797089,0.100177153944969,-0.905174612998962,0.413065791130066,0.164251521229744,-0.507718443870544,0.845720589160919,0.232683315873146,-0.116002723574638,0.965609550476074,0.164251521229744,-0.507718443870544,0.845720589160919,0.195252776145935,-0.0552942343056202,0.979192972183228,0.0532339476048946,-0.982029795646667,0.181062161922455,0.00909474957734346,-0.998661398887634,0.05091742426157,0.086935743689537,-0.953060209751129,0.290031582117081,-0.0150580983608961,-0.999444544315338,-0.0297288186848164,0.00909474957734346,-0.998661398887634,0.05091742426157,0.0532339476048946,-0.982029795646667,0.181062161922455,-0.0150580983608961,-0.999444544315338,-0.0297288186848164,-0.0245448723435402,-0.99579256772995,-0.088287390768528,-0.0437456183135509,-0.992634415626526,-0.112974397838116,0.192767009139061,-0.643192291259766,0.741042792797089,0.135382622480392,-0.805875360965729,0.576399385929108,0.086935743689537,-0.953060209751129,0.290031582117081,0.192767009139061,-0.643192291259766,0.741042792797089, +0.164251521229744,-0.507718443870544,0.845720589160919,0.232683315873146,-0.116002723574638,0.965609550476074,0.0532339476048946,-0.982029795646667,0.181062161922455,0.086935743689537,-0.953060209751129,0.290031582117081,0.135382622480392,-0.805875360965729,0.576399385929108,0.0148718897253275,-0.998425900936127,0.0540778823196888,-0.0150580983608961,-0.999444544315338,-0.0297288186848164,0.0532339476048946,-0.982029795646667,0.181062161922455,-0.0150580983608961,-0.999444544315338,-0.0297288186848164,0.0148718897253275,-0.998425900936127,0.0540778823196888,-0.0245448723435402,-0.99579256772995,-0.088287390768528,-0.0437456183135509,-0.992634415626526,-0.112974397838116,-0.0245448723435402,-0.99579256772995,-0.088287390768528,-0.0183449313044548,-0.992282450199127,-0.122633285820484,0.192767009139061,-0.643192291259766,0.741042792797089,0.287048995494843,-0.331043183803558,0.898895502090454,0.135382622480392,-0.805875360965729,0.576399385929108,0.287048995494843,-0.331043183803558,0.898895502090454,0.192767009139061,-0.643192291259766,0.741042792797089,0.232683315873146,-0.116002723574638,0.965609550476074,0.204430088400841,-0.818650305271149,0.536674916744232,0.0532339476048946,-0.982029795646667,0.181062161922455,0.135382622480392,-0.805875360965729,0.576399385929108,0.0148718897253275,-0.998425900936127,0.0540778823196888,0.0532339476048946,-0.982029795646667,0.181062161922455,0.100509241223335,-0.93483030796051,0.340573132038116,0.00324276718311012,-0.999677538871765,-0.0251839216798544,-0.0245448723435402,-0.99579256772995,-0.088287390768528,0.0148718897253275,-0.998425900936127,0.0540778823196888,-0.0183449313044548,-0.992282450199127,-0.122633285820484,-0.0245448723435402,-0.99579256772995,-0.088287390768528,-0.0476880334317684,-0.976192712783813,-0.211597636342049,0.204430088400841,-0.818650305271149,0.536674916744232,0.135382622480392,-0.805875360965729,0.576399385929108,0.287048995494843,-0.331043183803558,0.898895502090454,0.204430088400841,-0.818650305271149,0.536674916744232,0.100509241223335,-0.93483030796051,0.340573132038116, +0.0532339476048946,-0.982029795646667,0.181062161922455,0.0148718897253275,-0.998425900936127,0.0540778823196888,0.100509241223335,-0.93483030796051,0.340573132038116,0.0461776256561279,-0.982742011547089,0.179124787449837,0.00324276718311012,-0.999677538871765,-0.0251839216798544,-0.0476880334317684,-0.976192712783813,-0.211597636342049,-0.0245448723435402,-0.99579256772995,-0.088287390768528,0.0148718897253275,-0.998425900936127,0.0540778823196888,0.0461776256561279,-0.982742011547089,0.179124787449837,0.00324276718311012,-0.999677538871765,-0.0251839216798544,0.204430088400841,-0.818650305271149,0.536674916744232,0.287048995494843,-0.331043183803558,0.898895502090454,0.268877685070038,-0.618069589138031,0.738711476325989,0.204430088400841,-0.818650305271149,0.536674916744232,0.268877685070038,-0.618069589138031,0.738711476325989,0.100509241223335,-0.93483030796051,0.340573132038116,0.1241569891572,-0.840798318386078,0.526918590068817,0.0461776256561279,-0.982742011547089,0.179124787449837,0.100509241223335,-0.93483030796051,0.340573132038116,0.00324276718311012,-0.999677538871765,-0.0251839216798544,-0.0219246670603752,-0.998410046100616,-0.0519293621182442,-0.0476880334317684,-0.976192712783813,-0.211597636342049,0.0216071698814631,-0.994424104690552,0.103216640651226,0.00324276718311012,-0.999677538871765,-0.0251839216798544,0.0461776256561279,-0.982742011547089,0.179124787449837,0.287048995494843,-0.331043183803558,0.898895502090454,0.284545183181763,-0.120181113481522,0.951099574565887,0.268877685070038,-0.618069589138031,0.738711476325989,0.193721294403076,-0.653062701225281,0.732107222080231,0.100509241223335,-0.93483030796051,0.340573132038116,0.268877685070038,-0.618069589138031,0.738711476325989,0.1241569891572,-0.840798318386078,0.526918590068817,0.102116651833057,-0.912719309329987,0.39562052488327,0.0461776256561279,-0.982742011547089,0.179124787449837,0.100509241223335,-0.93483030796051,0.340573132038116,0.193721294403076,-0.653062701225281,0.732107222080231,0.1241569891572,-0.840798318386078,0.526918590068817, +0.00324276718311012,-0.999677538871765,-0.0251839216798544,0.0216071698814631,-0.994424104690552,0.103216640651226,-0.0219246670603752,-0.998410046100616,-0.0519293621182442,-0.0476880334317684,-0.976192712783813,-0.211597636342049,-0.0219246670603752,-0.998410046100616,-0.0519293621182442,-0.0630142465233803,-0.979826211929321,-0.189656808972359,0.0216071698814631,-0.994424104690552,0.103216640651226,0.0461776256561279,-0.982742011547089,0.179124787449837,0.102116651833057,-0.912719309329987,0.39562052488327,0.193721294403076,-0.653062701225281,0.732107222080231,0.268877685070038,-0.618069589138031,0.738711476325989,0.284545183181763,-0.120181113481522,0.951099574565887,0.1241569891572,-0.840798318386078,0.526918590068817,0.218509346246719,-0.556130886077881,0.801855385303497,0.102116651833057,-0.912719309329987,0.39562052488327,0.1241569891572,-0.840798318386078,0.526918590068817,0.193721294403076,-0.653062701225281,0.732107222080231,0.247418656945229,-0.355897039175034,0.901177644729614,0.0216071698814631,-0.994424104690552,0.103216640651226,-0.0195152796804905,-0.999206125736237,0.034729577600956,-0.0219246670603752,-0.998410046100616,-0.0519293621182442,-0.0195152796804905,-0.999206125736237,0.034729577600956,-0.0630142465233803,-0.979826211929321,-0.189656808972359,-0.0219246670603752,-0.998410046100616,-0.0519293621182442,-0.170096352696419,-0.784347236156464,-0.596545577049255,-0.0476880334317684,-0.976192712783813,-0.211597636342049,-0.0630142465233803,-0.979826211929321,-0.189656808972359,0.102116651833057,-0.912719309329987,0.39562052488327,0.0536669157445431,-0.957176625728607,0.284486651420593,0.0216071698814631,-0.994424104690552,0.103216640651226,0.284545183181763,-0.120181113481522,0.951099574565887,0.247418656945229,-0.355897039175034,0.901177644729614,0.193721294403076,-0.653062701225281,0.732107222080231,0.247418656945229,-0.355897039175034,0.901177644729614,0.218509346246719,-0.556130886077881,0.801855385303497,0.1241569891572,-0.840798318386078,0.526918590068817,0.16749107837677,-0.711831212043762,0.682087182998657, +0.102116651833057,-0.912719309329987,0.39562052488327,0.218509346246719,-0.556130886077881,0.801855385303497,0.0216071698814631,-0.994424104690552,0.103216640651226,0.0536669157445431,-0.957176625728607,0.284486651420593,-0.0195152796804905,-0.999206125736237,0.034729577600956,-0.0195152796804905,-0.999206125736237,0.034729577600956,-0.00203544553369284,-0.99905914068222,-0.0433196052908897,-0.0630142465233803,-0.979826211929321,-0.189656808972359,0.102116651833057,-0.912719309329987,0.39562052488327,0.16749107837677,-0.711831212043762,0.682087182998657,0.0536669157445431,-0.957176625728607,0.284486651420593,-0.0195152796804905,-0.999206125736237,0.034729577600956,0.0536669157445431,-0.957176625728607,0.284486651420593,0.0222227331250906,-0.98620742559433,0.16401518881321,-0.0195152796804905,-0.999206125736237,0.034729577600956,0.0222227331250906,-0.98620742559433,0.16401518881321,-0.00203544553369284,-0.99905914068222,-0.0433196052908897,-0.0630142465233803,-0.979826211929321,-0.189656808972359,-0.00203544553369284,-0.99905914068222,-0.0433196052908897,0.00244317529723048,-0.993616044521332,-0.112788073718548,0.0536669157445431,-0.957176625728607,0.284486651420593,0.16749107837677,-0.711831212043762,0.682087182998657,0.117448851466179,-0.853252053260803,0.508100926876068,0.0536669157445431,-0.957176625728607,0.284486651420593,0.117448851466179,-0.853252053260803,0.508100926876068,0.0222227331250906,-0.98620742559433,0.16401518881321,0.0285132229328156,-0.995249032974243,0.0930926203727722,-0.00203544553369284,-0.99905914068222,-0.0433196052908897,0.0222227331250906,-0.98620742559433,0.16401518881321,0.00244317529723048,-0.993616044521332,-0.112788073718548,-0.00203544553369284,-0.99905914068222,-0.0433196052908897,0.00572041375562549,-0.995704293251038,-0.092412494122982,0.248926490545273,-0.412970989942551,0.876065194606781,0.117448851466179,-0.853252053260803,0.508100926876068,0.16749107837677,-0.711831212043762,0.682087182998657,0.117448851466179,-0.853252053260803,0.508100926876068,0.0898901149630547,-0.928216576576233,0.361017465591431, +0.0222227331250906,-0.98620742559433,0.16401518881321,-0.00275756698101759,-0.999886512756348,-0.0148003613576293,-0.00203544553369284,-0.99905914068222,-0.0433196052908897,0.0285132229328156,-0.995249032974243,0.0930926203727722,0.0285132229328156,-0.995249032974243,0.0930926203727722,0.0222227331250906,-0.98620742559433,0.16401518881321,0.0898901149630547,-0.928216576576233,0.361017465591431,-0.00275756698101759,-0.999886512756348,-0.0148003613576293,0.00572041375562549,-0.995704293251038,-0.092412494122982,-0.00203544553369284,-0.99905914068222,-0.0433196052908897,0.248926490545273,-0.412970989942551,0.876065194606781,0.207897424697876,-0.61188817024231,0.763132572174072,0.117448851466179,-0.853252053260803,0.508100926876068,-0.00678135547786951,-0.998082339763641,0.0615250803530216,-0.0100736701861024,-0.998942077159882,0.0448658689856529,-0.0224066842347384,-0.996970415115356,0.0744839310646057,0.117448851466179,-0.853252053260803,0.508100926876068,0.207897424697876,-0.61188817024231,0.763132572174072,0.0898901149630547,-0.928216576576233,0.361017465591431,0.0419169068336487,-0.987381756305695,0.152709394693375,-0.00275756698101759,-0.999886512756348,-0.0148003613576293,0.0285132229328156,-0.995249032974243,0.0930926203727722,0.0811435356736183,-0.957521557807922,0.276709377765656,0.0285132229328156,-0.995249032974243,0.0930926203727722,0.0898901149630547,-0.928216576576233,0.361017465591431,0.00572041375562549,-0.995704293251038,-0.092412494122982,-0.00275756698101759,-0.999886512756348,-0.0148003613576293,-0.0168444085866213,-0.998921513557434,-0.0432668030261993,-0.0100736701861024,-0.998942077159882,0.0448658689856529,-0.00678135547786951,-0.998082339763641,0.0615250803530216,0.0173398144543171,-0.999464869499207,0.0277342367917299,0.177646741271019,-0.750194430351257,0.636906385421753,0.0898901149630547,-0.928216576576233,0.361017465591431,0.207897424697876,-0.61188817024231,0.763132572174072,0.0296243391931057,-0.996353924274445,0.0800071805715561,-0.00275756698101759,-0.999886512756348,-0.0148003613576293, +0.0419169068336487,-0.987381756305695,0.152709394693375,0.0419169068336487,-0.987381756305695,0.152709394693375,0.0285132229328156,-0.995249032974243,0.0930926203727722,0.0811435356736183,-0.957521557807922,0.276709377765656,0.0898901149630547,-0.928216576576233,0.361017465591431,0.177646741271019,-0.750194430351257,0.636906385421753,0.0811435356736183,-0.957521557807922,0.276709377765656,-0.0168444085866213,-0.998921513557434,-0.0432668030261993,-0.00275756698101759,-0.999886512756348,-0.0148003613576293,-0.0209987033158541,-0.999124050140381,-0.0361950770020485,0.0173398144543171,-0.999464869499207,0.0277342367917299,-0.00678135547786951,-0.998082339763641,0.0615250803530216,0.0739076137542725,-0.99658328294754,0.0368683710694313,-0.00398188224062324,-0.999978423118591,-0.00521548371762037,-0.00275756698101759,-0.999886512756348,-0.0148003613576293,0.0296243391931057,-0.996353924274445,0.0800071805715561,0.0296243391931057,-0.996353924274445,0.0800071805715561,0.0419169068336487,-0.987381756305695,0.152709394693375,0.095495730638504,-0.946719110012054,0.307576268911362,0.129887446761131,-0.8835688829422,0.449927985668182,0.0419169068336487,-0.987381756305695,0.152709394693375,0.0811435356736183,-0.957521557807922,0.276709377765656,0.177646741271019,-0.750194430351257,0.636906385421753,0.129887446761131,-0.8835688829422,0.449927985668182,0.0811435356736183,-0.957521557807922,0.276709377765656,-0.00398188224062324,-0.999978423118591,-0.00521548371762037,-0.0209987033158541,-0.999124050140381,-0.0361950770020485,-0.00275756698101759,-0.999886512756348,-0.0148003613576293,0.0667781457304955,-0.997754752635956,0.00508093973621726,0.0173398144543171,-0.999464869499207,0.0277342367917299,0.0739076137542725,-0.99658328294754,0.0368683710694313,0.0206700097769499,-0.993899643421173,0.108333930373192,-0.00398188224062324,-0.999978423118591,-0.00521548371762037,0.0296243391931057,-0.996353924274445,0.0800071805715561,0.095495730638504,-0.946719110012054,0.307576268911362,0.0419169068336487,-0.987381756305695,0.152709394693375, +0.129887446761131,-0.8835688829422,0.449927985668182,0.095495730638504,-0.946719110012054,0.307576268911362,0.0758995190262794,-0.976089239120483,0.203688502311707,0.0296243391931057,-0.996353924274445,0.0800071805715561,0.267917186021805,-0.481245338916779,0.834639549255371,0.129887446761131,-0.8835688829422,0.449927985668182,0.177646741271019,-0.750194430351257,0.636906385421753,-0.00398188224062324,-0.999978423118591,-0.00521548371762037,-0.013399557210505,-0.999745726585388,-0.0181338768452406,-0.0209987033158541,-0.999124050140381,-0.0361950770020485,0.0173398144543171,-0.999464869499207,0.0277342367917299,0.0667781457304955,-0.997754752635956,0.00508093973621726,0.00550259696319699,-0.999937415122986,-0.00973962619900703,0.0126136057078838,-0.99820077419281,0.0586176030337811,-0.00398188224062324,-0.999978423118591,-0.00521548371762037,0.0206700097769499,-0.993899643421173,0.108333930373192,0.0206700097769499,-0.993899643421173,0.108333930373192,0.0296243391931057,-0.996353924274445,0.0800071805715561,0.0758995190262794,-0.976089239120483,0.203688502311707,0.095495730638504,-0.946719110012054,0.307576268911362,0.129887446761131,-0.8835688829422,0.449927985668182,0.205523788928986,-0.679157733917236,0.704630732536316,0.095495730638504,-0.946719110012054,0.307576268911362,0.172151833772659,-0.827459216117859,0.534485578536987,0.0758995190262794,-0.976089239120483,0.203688502311707,0.205523788928986,-0.679157733917236,0.704630732536316,0.129887446761131,-0.8835688829422,0.449927985668182,0.267917186021805,-0.481245338916779,0.834639549255371,-0.00398188224062324,-0.999978423118591,-0.00521548371762037,0.0126136057078838,-0.99820077419281,0.0586176030337811,-0.013399557210505,-0.999745726585388,-0.0181338768452406,0.0340221747756004,-0.998894810676575,-0.0324275977909565,0.00550259696319699,-0.999937415122986,-0.00973962619900703,0.0667781457304955,-0.997754752635956,0.00508093973621726,-0.0175798106938601,-0.996267914772034,0.0845049247145653,0.0173398144543171,-0.999464869499207,0.0277342367917299,0.00550259696319699,-0.999937415122986,-0.00973962619900703, +0.0126136057078838,-0.99820077419281,0.0586176030337811,0.0206700097769499,-0.993899643421173,0.108333930373192,0.128925085067749,-0.936172127723694,0.327047348022461,0.128925085067749,-0.936172127723694,0.327047348022461,0.0206700097769499,-0.993899643421173,0.108333930373192,0.0758995190262794,-0.976089239120483,0.203688502311707,0.172151833772659,-0.827459216117859,0.534485578536987,0.095495730638504,-0.946719110012054,0.307576268911362,0.205523788928986,-0.679157733917236,0.704630732536316,0.128925085067749,-0.936172127723694,0.327047348022461,0.0758995190262794,-0.976089239120483,0.203688502311707,0.172151833772659,-0.827459216117859,0.534485578536987,-0.00176976202055812,-0.998611271381378,0.0526529960334301,-0.013399557210505,-0.999745726585388,-0.0181338768452406,0.0126136057078838,-0.99820077419281,0.0586176030337811,-0.0185060333460569,-0.999298870563507,-0.032545767724514,0.00550259696319699,-0.999937415122986,-0.00973962619900703,0.0340221747756004,-0.998894810676575,-0.0324275977909565,-0.0175798106938601,-0.996267914772034,0.0845049247145653,0.00550259696319699,-0.999937415122986,-0.00973962619900703,-0.014552547596395,-0.999756574630737,0.0165826380252838,0.128925085067749,-0.936172127723694,0.327047348022461,0.0511197298765183,-0.979135096073151,0.196674659848213,0.0126136057078838,-0.99820077419281,0.0586176030337811,0.172151833772659,-0.827459216117859,0.534485578536987,0.205523788928986,-0.679157733917236,0.704630732536316,0.277099609375,-0.362266838550568,0.889931678771973,0.128925085067749,-0.936172127723694,0.327047348022461,0.172151833772659,-0.827459216117859,0.534485578536987,0.302004158496857,-0.574054956436157,0.761087536811829,-0.00176976202055812,-0.998611271381378,0.0526529960334301,-0.00252893031574786,-0.999996483325958,0.000717511516995728,-0.013399557210505,-0.999745726585388,-0.0181338768452406,-0.00176976202055812,-0.998611271381378,0.0526529960334301,0.0126136057078838,-0.99820077419281,0.0586176030337811,0.0511197298765183,-0.979135096073151,0.196674659848213,-0.0185060333460569,-0.999298870563507,-0.032545767724514, +-0.014552547596395,-0.999756574630737,0.0165826380252838,0.00550259696319699,-0.999937415122986,-0.00973962619900703,-0.014552547596395,-0.999756574630737,0.0165826380252838,0.0172833688557148,-0.984961867332459,0.171905055642128,-0.0175798106938601,-0.996267914772034,0.0845049247145653,0.128925085067749,-0.936172127723694,0.327047348022461,0.201653152704239,-0.827229678630829,0.5244300365448,0.0511197298765183,-0.979135096073151,0.196674659848213,0.277099609375,-0.362266838550568,0.889931678771973,0.302004158496857,-0.574054956436157,0.761087536811829,0.172151833772659,-0.827459216117859,0.534485578536987,0.302004158496857,-0.574054956436157,0.761087536811829,0.245846837759018,-0.726159751415253,0.642067790031433,0.128925085067749,-0.936172127723694,0.327047348022461,-0.00252893031574786,-0.999996483325958,0.000717511516995728,-0.00176976202055812,-0.998611271381378,0.0526529960334301,-0.0172487068921328,-0.999788105487823,-0.0112200183793902,-0.00176976202055812,-0.998611271381378,0.0526529960334301,0.0511197298765183,-0.979135096073151,0.196674659848213,0.0228001642972231,-0.963836431503296,0.265517145395279,-0.0172487068921328,-0.999788105487823,-0.0112200183793902,-0.014552547596395,-0.999756574630737,0.0165826380252838,-0.0185060333460569,-0.999298870563507,-0.032545767724514,-0.014552547596395,-0.999756574630737,0.0165826380252838,-0.00176976202055812,-0.998611271381378,0.0526529960334301,0.0172833688557148,-0.984961867332459,0.171905055642128,0.201653152704239,-0.827229678630829,0.5244300365448,0.128925085067749,-0.936172127723694,0.327047348022461,0.245846837759018,-0.726159751415253,0.642067790031433,0.201653152704239,-0.827229678630829,0.5244300365448,0.119255863130093,-0.908088386058807,0.401439189910889,0.0511197298765183,-0.979135096073151,0.196674659848213,0.302004158496857,-0.574054956436157,0.761087536811829,0.353288650512695,-0.363729119300842,0.861909568309784,0.245846837759018,-0.726159751415253,0.642067790031433,-0.0172487068921328,-0.999788105487823,-0.0112200183793902,-0.00176976202055812,-0.998611271381378,0.0526529960334301, +-0.014552547596395,-0.999756574630737,0.0165826380252838,0.0228001642972231,-0.963836431503296,0.265517145395279,0.0511197298765183,-0.979135096073151,0.196674659848213,0.119255863130093,-0.908088386058807,0.401439189910889,0.0172833688557148,-0.984961867332459,0.171905055642128,-0.00176976202055812,-0.998611271381378,0.0526529960334301,0.0228001642972231,-0.963836431503296,0.265517145395279,0.201653152704239,-0.827229678630829,0.5244300365448,0.245846837759018,-0.726159751415253,0.642067790031433,0.353288650512695,-0.363729119300842,0.861909568309784,0.201653152704239,-0.827229678630829,0.5244300365448,0.313925087451935,-0.595674157142639,0.739339768886566,0.119255863130093,-0.908088386058807,0.401439189910889,0.119255863130093,-0.908088386058807,0.401439189910889,0.141898572444916,-0.794461786746979,0.590504109859467,0.0228001642972231,-0.963836431503296,0.265517145395279,0.0172833688557148,-0.984961867332459,0.171905055642128,0.0228001642972231,-0.963836431503296,0.265517145395279,0.0643405988812447,-0.898112237453461,0.435033947229385,0.353288650512695,-0.363729119300842,0.861909568309784,0.313925087451935,-0.595674157142639,0.739339768886566,0.201653152704239,-0.827229678630829,0.5244300365448,0.119255863130093,-0.908088386058807,0.401439189910889,0.313925087451935,-0.595674157142639,0.739339768886566,0.141898572444916,-0.794461786746979,0.590504109859467,0.0228001642972231,-0.963836431503296,0.265517145395279,0.141898572444916,-0.794461786746979,0.590504109859467,0.0643405988812447,-0.898112237453461,0.435033947229385,0.353288650512695,-0.363729119300842,0.861909568309784,0.361224353313446,-0.105485685169697,0.926493227481842,0.313925087451935,-0.595674157142639,0.739339768886566,0.28393492102623,-0.378126740455627,0.881136178970337,0.141898572444916,-0.794461786746979,0.590504109859467,0.313925087451935,-0.595674157142639,0.739339768886566,0.0643405988812447,-0.898112237453461,0.435033947229385,0.141898572444916,-0.794461786746979,0.590504109859467,0.186159580945969,-0.558516979217529,0.8083336353302,0.28393492102623,-0.378126740455627,0.881136178970337, +0.313925087451935,-0.595674157142639,0.739339768886566,0.361224353313446,-0.105485685169697,0.926493227481842,0.186159580945969,-0.558516979217529,0.8083336353302,0.141898572444916,-0.794461786746979,0.590504109859467,0.28393492102623,-0.378126740455627,0.881136178970337,0.361224353313446,-0.105485685169697,0.926493227481842,0.282409846782684,-0.111748047173023,0.9527627825737,0.28393492102623,-0.378126740455627,0.881136178970337,0.186159580945969,-0.558516979217529,0.8083336353302,0.28393492102623,-0.378126740455627,0.881136178970337,0.282409846782684,-0.111748047173023,0.9527627825737,0.186159580945969,-0.558516979217529,0.8083336353302,0.282409846782684,-0.111748047173023,0.9527627825737,0.232231959700584,-0.235388413071632,0.943748116493225,0.0795059204101563,-0.707274198532104,-0.702454149723053,0.0468369498848915,-0.678771555423737,-0.732854247093201,0.0948396474123001,-0.401841223239899,-0.910784780979156,0.0948396474123001,-0.401841223239899,-0.910784780979156,0.0842657908797264,-0.38159367442131,-0.920481085777283,0.0795059204101563,-0.707274198532104,-0.702454149723053,0.0948396474123001,-0.401841223239899,-0.910784780979156,0.0468369498848915,-0.678771555423737,-0.732854247093201,0.141851052641869,-0.444758206605911,-0.88434624671936,0.084542416036129,-0.492398649454117,-0.866254031658173,0.0962731242179871,-0.704849779605865,-0.702793061733246,0.0842657908797264,-0.38159367442131,-0.920481085777283,0.0962731242179871,-0.704849779605865,-0.702793061733246,0.0795059204101563,-0.707274198532104,-0.702454149723053,0.0842657908797264,-0.38159367442131,-0.920481085777283,0.0200244262814522,-0.949937224388123,-0.311798393726349,0.0795059204101563,-0.707274198532104,-0.702454149723053,0.0588926672935486,-0.96165144443512,-0.267877042293549,0.0962731242179871,-0.704849779605865,-0.702793061733246,0.0588926672935486,-0.96165144443512,-0.267877042293549,0.0795059204101563,-0.707274198532104,-0.702454149723053,0.0795059204101563,-0.707274198532104,-0.702454149723053,0.0200244262814522,-0.949937224388123,-0.311798393726349, +0.0468369498848915,-0.678771555423737,-0.732854247093201,0.0200244262814522,-0.949937224388123,-0.311798393726349,0.0911552757024765,-0.887406289577484,-0.451885730028152,0.0468369498848915,-0.678771555423737,-0.732854247093201,0.0911552757024765,-0.887406289577484,-0.451885730028152,0.141851052641869,-0.444758206605911,-0.88434624671936,0.0468369498848915,-0.678771555423737,-0.732854247093201,0.141851052641869,-0.444758206605911,-0.88434624671936,0.0911552757024765,-0.887406289577484,-0.451885730028152,0.200125440955162,-0.677185416221619,-0.708074569702148,0.0811764746904373,-0.484127789735794,-0.871223568916321,0.0758015215396881,-0.760276615619659,-0.6451615691185,0.084542416036129,-0.492398649454117,-0.866254031658173,0.0856988653540611,-0.79458075761795,-0.601079821586609,0.084542416036129,-0.492398649454117,-0.866254031658173,0.0758015215396881,-0.760276615619659,-0.6451615691185,0.0962731242179871,-0.704849779605865,-0.702793061733246,0.084542416036129,-0.492398649454117,-0.866254031658173,0.0856988653540611,-0.79458075761795,-0.601079821586609,0.0962731242179871,-0.704849779605865,-0.702793061733246,0.0856988653540611,-0.79458075761795,-0.601079821586609,0.0588926672935486,-0.96165144443512,-0.267877042293549,0.0200244262814522,-0.949937224388123,-0.311798393726349,0.0588926672935486,-0.96165144443512,-0.267877042293549,0.0106870997697115,-0.999923944473267,0.00615181541070342,-0.0110616385936737,-0.999857664108276,-0.0127362571656704,0.0200244262814522,-0.949937224388123,-0.311798393726349,0.0106870997697115,-0.999923944473267,0.00615181541070342,0.0200244262814522,-0.949937224388123,-0.311798393726349,-0.0110616385936737,-0.999857664108276,-0.0127362571656704,0.0911552757024765,-0.887406289577484,-0.451885730028152,0.0224122628569603,-0.999687433242798,0.011073162779212,0.00714346440508962,-0.998603403568268,0.0523464865982533,0.0588926672935486,-0.96165144443512,-0.267877042293549,0.0461166426539421,-0.961715877056122,-0.270139783620834,0.0224122628569603,-0.999687433242798,0.011073162779212,0.0588926672935486,-0.96165144443512,-0.267877042293549, +0.00714346440508962,-0.998603403568268,0.0523464865982533,0.0106870997697115,-0.999923944473267,0.00615181541070342,0.0588926672935486,-0.96165144443512,-0.267877042293549,0.0461166426539421,-0.961715877056122,-0.270139783620834,0.0588926672935486,-0.96165144443512,-0.267877042293549,0.0856988653540611,-0.79458075761795,-0.601079821586609,0.0609014630317688,-0.997560381889343,-0.0341209471225739,0.0911552757024765,-0.887406289577484,-0.451885730028152,-0.0110616385936737,-0.999857664108276,-0.0127362571656704,0.0911552757024765,-0.887406289577484,-0.451885730028152,0.0609014630317688,-0.997560381889343,-0.0341209471225739,0.121859662234783,-0.951022803783417,-0.284087538719177,0.0911552757024765,-0.887406289577484,-0.451885730028152,0.121859662234783,-0.951022803783417,-0.284087538719177,0.200125440955162,-0.677185416221619,-0.708074569702148,0.102374263107777,-0.918786525726318,-0.381248891353607,0.200125440955162,-0.677185416221619,-0.708074569702148,0.121859662234783,-0.951022803783417,-0.284087538719177,0.141881495714188,-0.673281848430634,-0.725645244121552,0.200125440955162,-0.677185416221619,-0.708074569702148,0.102374263107777,-0.918786525726318,-0.381248891353607,0.117043107748032,-0.406934291124344,-0.905927896499634,0.103796251118183,-0.725943148136139,-0.679876983165741,0.0811764746904373,-0.484127789735794,-0.871223568916321,0.0871955379843712,-0.830848097801209,-0.549625515937805,0.0811764746904373,-0.484127789735794,-0.871223568916321,0.103796251118183,-0.725943148136139,-0.679876983165741,0.0758015215396881,-0.760276615619659,-0.6451615691185,0.0811764746904373,-0.484127789735794,-0.871223568916321,0.0871955379843712,-0.830848097801209,-0.549625515937805,0.0758015215396881,-0.760276615619659,-0.6451615691185,0.0871955379843712,-0.830848097801209,-0.549625515937805,0.0461166426539421,-0.961715877056122,-0.270139783620834,0.0856988653540611,-0.79458075761795,-0.601079821586609,0.0758015215396881,-0.760276615619659,-0.6451615691185,0.0461166426539421,-0.961715877056122,-0.270139783620834,0.00714346440508962,-0.998603403568268,0.0523464865982533, +-0.0324100516736507,-0.976807951927185,0.211650118231773,0.0106870997697115,-0.999923944473267,0.00615181541070342,-0.0324100516736507,-0.976807951927185,0.211650118231773,-0.0110616385936737,-0.999857664108276,-0.0127362571656704,0.0106870997697115,-0.999923944473267,0.00615181541070342,-0.0233477801084518,-0.973347246646881,0.228144466876984,-0.0110616385936737,-0.999857664108276,-0.0127362571656704,-0.0324100516736507,-0.976807951927185,0.211650118231773,0.0609014630317688,-0.997560381889343,-0.0341209471225739,-0.0110616385936737,-0.999857664108276,-0.0127362571656704,-0.0233477801084518,-0.973347246646881,0.228144466876984,0.0224122628569603,-0.999687433242798,0.011073162779212,-0.0198927707970142,-0.976373791694641,0.215170785784721,0.00714346440508962,-0.998603403568268,0.0523464865982533,-0.0198927707970142,-0.976373791694641,0.215170785784721,-0.0284085739403963,-0.970497786998749,0.239430278539658,0.00714346440508962,-0.998603403568268,0.0523464865982533,-0.0324100516736507,-0.976807951927185,0.211650118231773,0.00714346440508962,-0.998603403568268,0.0523464865982533,-0.0284085739403963,-0.970497786998749,0.239430278539658,0.0461166426539421,-0.961715877056122,-0.270139783620834,0.0681706070899963,-0.950664758682251,-0.302637010812759,0.00100872467737645,-0.999975979328156,0.0068477550521493,0.00100872467737645,-0.999975979328156,0.0068477550521493,0.0224122628569603,-0.999687433242798,0.011073162779212,0.0461166426539421,-0.961715877056122,-0.270139783620834,0.0461166426539421,-0.961715877056122,-0.270139783620834,0.0871955379843712,-0.830848097801209,-0.549625515937805,0.0681706070899963,-0.950664758682251,-0.302637010812759,0.00100872467737645,-0.999975979328156,0.0068477550521493,-0.0198927707970142,-0.976373791694641,0.215170785784721,0.0224122628569603,-0.999687433242798,0.011073162779212,0.0609014630317688,-0.997560381889343,-0.0341209471225739,-0.0233477801084518,-0.973347246646881,0.228144466876984,0.0276575833559036,-0.999599158763886,-0.00602093851193786,0.0609014630317688,-0.997560381889343,-0.0341209471225739, +0.0276575833559036,-0.999599158763886,-0.00602093851193786,0.121859662234783,-0.951022803783417,-0.284087538719177,0.102374263107777,-0.918786525726318,-0.381248891353607,0.121859662234783,-0.951022803783417,-0.284087538719177,0.0276575833559036,-0.999599158763886,-0.00602093851193786,0.102374263107777,-0.918786525726318,-0.381248891353607,0.0276575833559036,-0.999599158763886,-0.00602093851193786,0.062904492020607,-0.960011541843414,-0.272801578044891,0.102374263107777,-0.918786525726318,-0.381248891353607,0.062904492020607,-0.960011541843414,-0.272801578044891,0.141881495714188,-0.673281848430634,-0.725645244121552,0.0721768289804459,-0.920635581016541,-0.383693218231201,0.141881495714188,-0.673281848430634,-0.725645244121552,0.062904492020607,-0.960011541843414,-0.272801578044891,0.122711107134819,-0.699450731277466,-0.70406711101532,0.141881495714188,-0.673281848430634,-0.725645244121552,0.0721768289804459,-0.920635581016541,-0.383693218231201,0.167896181344986,-0.491339564323425,-0.854632198810577,0.103796251118183,-0.725943148136139,-0.679876983165741,0.117043107748032,-0.406934291124344,-0.905927896499634,0.12173242866993,-0.857075750827789,-0.500601887702942,0.103796251118183,-0.725943148136139,-0.679876983165741,0.167896181344986,-0.491339564323425,-0.854632198810577,0.12173242866993,-0.857075750827789,-0.500601887702942,0.0681706070899963,-0.950664758682251,-0.302637010812759,0.103796251118183,-0.725943148136139,-0.679876983165741,0.0871955379843712,-0.830848097801209,-0.549625515937805,0.103796251118183,-0.725943148136139,-0.679876983165741,0.0681706070899963,-0.950664758682251,-0.302637010812759,-0.0324100516736507,-0.976807951927185,0.211650118231773,-0.0284085739403963,-0.970497786998749,0.239430278539658,-0.0738492161035538,-0.863859176635742,0.498290538787842,-0.0850189253687859,-0.853815019130707,0.513586938381195,-0.0324100516736507,-0.976807951927185,0.211650118231773,-0.0738492161035538,-0.863859176635742,0.498290538787842,-0.0233477801084518,-0.973347246646881,0.228144466876984,-0.0324100516736507,-0.976807951927185,0.211650118231773, +-0.0850189253687859,-0.853815019130707,0.513586938381195,-0.0693340003490448,-0.848764955997467,0.524204611778259,-0.0233477801084518,-0.973347246646881,0.228144466876984,-0.0850189253687859,-0.853815019130707,0.513586938381195,-0.0693340003490448,-0.848764955997467,0.524204611778259,-0.0693748444318771,-0.831668019294739,0.550922155380249,-0.0233477801084518,-0.973347246646881,0.228144466876984,-0.0624116100370884,-0.865096867084503,0.497706800699234,-0.0233477801084518,-0.973347246646881,0.228144466876984,-0.0693748444318771,-0.831668019294739,0.550922155380249,0.0276575833559036,-0.999599158763886,-0.00602093851193786,-0.0233477801084518,-0.973347246646881,0.228144466876984,0.0194399692118168,-0.999768912792206,0.00917435344308615,-0.0233477801084518,-0.973347246646881,0.228144466876984,-0.0624116100370884,-0.865096867084503,0.497706800699234,0.0109502375125885,-0.976810574531555,0.213824898004532,-0.0233477801084518,-0.973347246646881,0.228144466876984,0.0109502375125885,-0.976810574531555,0.213824898004532,0.0194399692118168,-0.999768912792206,0.00917435344308615,-0.0323839038610458,-0.971943914890289,0.232972055673599,-0.0198927707970142,-0.976373791694641,0.215170785784721,0.00100872467737645,-0.999975979328156,0.0068477550521493,-0.0323839038610458,-0.971943914890289,0.232972055673599,-0.0897464081645012,-0.814998686313629,0.572470486164093,-0.0198927707970142,-0.976373791694641,0.215170785784721,-0.0738492161035538,-0.863859176635742,0.498290538787842,-0.0198927707970142,-0.976373791694641,0.215170785784721,-0.0897464081645012,-0.814998686313629,0.572470486164093,-0.0198927707970142,-0.976373791694641,0.215170785784721,-0.0738492161035538,-0.863859176635742,0.498290538787842,-0.0284085739403963,-0.970497786998749,0.239430278539658,0.0681706070899963,-0.950664758682251,-0.302637010812759,0.0453175567090511,-0.983221650123596,-0.176696002483368,0.00100872467737645,-0.999975979328156,0.0068477550521493,0.0681706070899963,-0.950664758682251,-0.302637010812759,0.12173242866993,-0.857075750827789,-0.500601887702942, +0.0453175567090511,-0.983221650123596,-0.176696002483368,0.00100872467737645,-0.999975979328156,0.0068477550521493,0.0311154965311289,-0.999503076076508,-0.00503590144217014,-0.0323839038610458,-0.971943914890289,0.232972055673599,0.00100872467737645,-0.999975979328156,0.0068477550521493,0.0453175567090511,-0.983221650123596,-0.176696002483368,0.0311154965311289,-0.999503076076508,-0.00503590144217014,0.0276575833559036,-0.999599158763886,-0.00602093851193786,0.0194399692118168,-0.999768912792206,0.00917435344308615,0.062904492020607,-0.960011541843414,-0.272801578044891,0.0721768289804459,-0.920635581016541,-0.383693218231201,0.062904492020607,-0.960011541843414,-0.272801578044891,0.0194399692118168,-0.999768912792206,0.00917435344308615,0.0721768289804459,-0.920635581016541,-0.383693218231201,0.0194399692118168,-0.999768912792206,0.00917435344308615,0.0534284636378288,-0.954685628414154,-0.292780995368958,0.0721768289804459,-0.920635581016541,-0.383693218231201,0.0534284636378288,-0.954685628414154,-0.292780995368958,0.122711107134819,-0.699450731277466,-0.70406711101532,0.0534284636378288,-0.954685628414154,-0.292780995368958,0.0728467330336571,-0.881653606891632,-0.466240465641022,0.122711107134819,-0.699450731277466,-0.70406711101532,0.219833821058273,-0.499458253383636,-0.837982356548309,0.17319492995739,-0.793925166130066,-0.582826018333435,0.167896181344986,-0.491339564323425,-0.854632198810577,0.12173242866993,-0.857075750827789,-0.500601887702942,0.167896181344986,-0.491339564323425,-0.854632198810577,0.17319492995739,-0.793925166130066,-0.582826018333435,0.12173242866993,-0.857075750827789,-0.500601887702942,0.17319492995739,-0.793925166130066,-0.582826018333435,0.10127317160368,-0.96205872297287,-0.253350853919983,0.10127317160368,-0.96205872297287,-0.253350853919983,0.0453175567090511,-0.983221650123596,-0.176696002483368,0.12173242866993,-0.857075750827789,-0.500601887702942,-0.0738492161035538,-0.863859176635742,0.498290538787842,-0.0897464081645012,-0.814998686313629,0.572470486164093,-0.126365572214127,-0.59325098991394,0.795037627220154, +-0.126365572214127,-0.59325098991394,0.795037627220154,-0.120318792760372,-0.63971620798111,0.759135246276855,-0.0738492161035538,-0.863859176635742,0.498290538787842,-0.0850189253687859,-0.853815019130707,0.513586938381195,-0.0738492161035538,-0.863859176635742,0.498290538787842,-0.120318792760372,-0.63971620798111,0.759135246276855,-0.120318792760372,-0.63971620798111,0.759135246276855,-0.11723405867815,-0.637466609477997,0.761506617069244,-0.0850189253687859,-0.853815019130707,0.513586938381195,-0.0693340003490448,-0.848764955997467,0.524204611778259,-0.0850189253687859,-0.853815019130707,0.513586938381195,-0.11723405867815,-0.637466609477997,0.761506617069244,-0.0693340003490448,-0.848764955997467,0.524204611778259,-0.11723405867815,-0.637466609477997,0.761506617069244,-0.0693748444318771,-0.831668019294739,0.550922155380249,-0.114519663155079,-0.625801980495453,0.771528959274292,-0.0693748444318771,-0.831668019294739,0.550922155380249,-0.11723405867815,-0.637466609477997,0.761506617069244,-0.0624116100370884,-0.865096867084503,0.497706800699234,-0.0693748444318771,-0.831668019294739,0.550922155380249,-0.114519663155079,-0.625801980495453,0.771528959274292,-0.00412752572447062,-0.969103813171387,0.246618494391441,0.0109502375125885,-0.976810574531555,0.213824898004532,-0.0624116100370884,-0.865096867084503,0.497706800699234,-0.114519663155079,-0.625801980495453,0.771528959274292,-0.115721926093102,-0.623646795749664,0.773093163967133,-0.0624116100370884,-0.865096867084503,0.497706800699234,-0.0624116100370884,-0.865096867084503,0.497706800699234,-0.064152903854847,-0.8457852602005,0.529652237892151,-0.00412752572447062,-0.969103813171387,0.246618494391441,-0.0624116100370884,-0.865096867084503,0.497706800699234,-0.115721926093102,-0.623646795749664,0.773093163967133,-0.064152903854847,-0.8457852602005,0.529652237892151,0.0194399692118168,-0.999768912792206,0.00917435344308615,0.0109502375125885,-0.976810574531555,0.213824898004532,0.0394030772149563,-0.998648881912231,-0.03387800604105,-0.00412752572447062,-0.969103813171387,0.246618494391441, +0.0394030772149563,-0.998648881912231,-0.03387800604105,0.0109502375125885,-0.976810574531555,0.213824898004532,0.0194399692118168,-0.999768912792206,0.00917435344308615,0.0394030772149563,-0.998648881912231,-0.03387800604105,0.0534284636378288,-0.954685628414154,-0.292780995368958,-0.0534386746585369,-0.978878617286682,0.19733427464962,-0.0323839038610458,-0.971943914890289,0.232972055673599,0.0311154965311289,-0.999503076076508,-0.00503590144217014,-0.0534386746585369,-0.978878617286682,0.19733427464962,-0.138682082295418,-0.839019000530243,0.526131391525269,-0.0323839038610458,-0.971943914890289,0.232972055673599,-0.138682082295418,-0.839019000530243,0.526131391525269,-0.0897464081645012,-0.814998686313629,0.572470486164093,-0.0323839038610458,-0.971943914890289,0.232972055673599,-0.138682082295418,-0.839019000530243,0.526131391525269,-0.158076450228691,-0.586525142192841,0.794355034828186,-0.0897464081645012,-0.814998686313629,0.572470486164093,-0.111131399869919,-0.57400107383728,0.811278283596039,-0.0897464081645012,-0.814998686313629,0.572470486164093,-0.158076450228691,-0.586525142192841,0.794355034828186,-0.111131399869919,-0.57400107383728,0.811278283596039,-0.126365572214127,-0.59325098991394,0.795037627220154,-0.0897464081645012,-0.814998686313629,0.572470486164093,0.10127317160368,-0.96205872297287,-0.253350853919983,0.0311154965311289,-0.999503076076508,-0.00503590144217014,0.0453175567090511,-0.983221650123596,-0.176696002483368,0.0311154965311289,-0.999503076076508,-0.00503590144217014,-0.00887930393218994,-0.999856650829315,-0.0144144278019667,-0.0534386746585369,-0.978878617286682,0.19733427464962,0.0311154965311289,-0.999503076076508,-0.00503590144217014,0.075142964720726,-0.942124783992767,-0.326732784509659,-0.00887930393218994,-0.999856650829315,-0.0144144278019667,0.075142964720726,-0.942124783992767,-0.326732784509659,0.0311154965311289,-0.999503076076508,-0.00503590144217014,0.10127317160368,-0.96205872297287,-0.253350853919983,0.0534284636378288,-0.954685628414154,-0.292780995368958,0.0394030772149563,-0.998648881912231,-0.03387800604105, +0.0728467330336571,-0.881653606891632,-0.466240465641022,0.0728467330336571,-0.881653606891632,-0.466240465641022,0.0394030772149563,-0.998648881912231,-0.03387800604105,0.186527162790298,-0.904004335403442,-0.384686559438705,0.17319492995739,-0.793925166130066,-0.582826018333435,0.219833821058273,-0.499458253383636,-0.837982356548309,0.188089981675148,-0.608807981014252,-0.770697712898254,0.17319492995739,-0.793925166130066,-0.582826018333435,0.188089981675148,-0.608807981014252,-0.770697712898254,0.075142964720726,-0.942124783992767,-0.326732784509659,0.075142964720726,-0.942124783992767,-0.326732784509659,0.10127317160368,-0.96205872297287,-0.253350853919983,0.17319492995739,-0.793925166130066,-0.582826018333435,-0.126365572214127,-0.59325098991394,0.795037627220154,-0.111131399869919,-0.57400107383728,0.811278283596039,-0.102169699966908,-0.645558059215546,0.756846070289612,-0.126365572214127,-0.59325098991394,0.795037627220154,-0.102169699966908,-0.645558059215546,0.756846070289612,-0.123232640326023,-0.66044557094574,0.740692377090454,-0.126365572214127,-0.59325098991394,0.795037627220154,-0.14354296028614,-0.518438398838043,0.842980921268463,-0.120318792760372,-0.63971620798111,0.759135246276855,-0.123232640326023,-0.66044557094574,0.740692377090454,-0.115213610231876,-0.677138447761536,0.726779997348785,-0.126365572214127,-0.59325098991394,0.795037627220154,-0.115213610231876,-0.677138447761536,0.726779997348785,-0.14354296028614,-0.518438398838043,0.842980921268463,-0.126365572214127,-0.59325098991394,0.795037627220154,-0.120318792760372,-0.63971620798111,0.759135246276855,-0.14354296028614,-0.518438398838043,0.842980921268463,-0.11723405867815,-0.637466609477997,0.761506617069244,-0.126956060528755,-0.515093743801117,0.847679436206818,-0.11723405867815,-0.637466609477997,0.761506617069244,-0.14354296028614,-0.518438398838043,0.842980921268463,-0.11723405867815,-0.637466609477997,0.761506617069244,-0.126956060528755,-0.515093743801117,0.847679436206818,-0.114519663155079,-0.625801980495453,0.771528959274292, +-0.115728765726089,-0.619198024272919,0.776659905910492,-0.114519663155079,-0.625801980495453,0.771528959274292,-0.126956060528755,-0.515093743801117,0.847679436206818,-0.114519663155079,-0.625801980495453,0.771528959274292,-0.115728765726089,-0.619198024272919,0.776659905910492,-0.115721926093102,-0.623646795749664,0.773093163967133,-0.123215705156326,-0.52348917722702,0.843075811862946,-0.115721926093102,-0.623646795749664,0.773093163967133,-0.115728765726089,-0.619198024272919,0.776659905910492,-0.0545523092150688,-0.600632071495056,0.797662198543549,-0.115721926093102,-0.623646795749664,0.773093163967133,-0.123215705156326,-0.52348917722702,0.843075811862946,-0.0545523092150688,-0.600632071495056,0.797662198543549,-0.064152903854847,-0.8457852602005,0.529652237892151,-0.115721926093102,-0.623646795749664,0.773093163967133,-0.0340013168752193,-0.976860523223877,0.211157158017159,-0.00412752572447062,-0.969103813171387,0.246618494391441,-0.064152903854847,-0.8457852602005,0.529652237892151,-0.0340013168752193,-0.976860523223877,0.211157158017159,-0.064152903854847,-0.8457852602005,0.529652237892151,-0.0183772519230843,-0.8812255859375,0.472338438034058,-0.0183772519230843,-0.8812255859375,0.472338438034058,-0.064152903854847,-0.8457852602005,0.529652237892151,-0.0545523092150688,-0.600632071495056,0.797662198543549,0.0394030772149563,-0.998648881912231,-0.03387800604105,-0.00412752572447062,-0.969103813171387,0.246618494391441,0.0365356728434563,-0.999329328536987,0.00243300385773182,-0.0340013168752193,-0.976860523223877,0.211157158017159,0.0365356728434563,-0.999329328536987,0.00243300385773182,-0.00412752572447062,-0.969103813171387,0.246618494391441,0.0394030772149563,-0.998648881912231,-0.03387800604105,0.0365356728434563,-0.999329328536987,0.00243300385773182,0.186527162790298,-0.904004335403442,-0.384686559438705,-0.0534386746585369,-0.978878617286682,0.19733427464962,-0.00887930393218994,-0.999856650829315,-0.0144144278019667,-0.0305759217590094,-0.991299748420715,0.128022685647011,-0.0534386746585369,-0.978878617286682,0.19733427464962, +-0.0305759217590094,-0.991299748420715,0.128022685647011,-0.17559078335762,-0.875933051109314,0.449342995882034,-0.138682082295418,-0.839019000530243,0.526131391525269,-0.0534386746585369,-0.978878617286682,0.19733427464962,-0.17559078335762,-0.875933051109314,0.449342995882034,-0.138682082295418,-0.839019000530243,0.526131391525269,-0.17559078335762,-0.875933051109314,0.449342995882034,-0.253703147172928,-0.637672364711761,0.727329611778259,-0.158076450228691,-0.586525142192841,0.794355034828186,-0.138682082295418,-0.839019000530243,0.526131391525269,-0.253703147172928,-0.637672364711761,0.727329611778259,-0.158076450228691,-0.586525142192841,0.794355034828186,-0.253703147172928,-0.637672364711761,0.727329611778259,-0.230459794402123,-0.54960823059082,0.803006172180176,-0.230459794402123,-0.54960823059082,0.803006172180176,-0.122276648879051,-0.517558217048645,0.846865713596344,-0.158076450228691,-0.586525142192841,0.794355034828186,-0.111131399869919,-0.57400107383728,0.811278283596039,-0.158076450228691,-0.586525142192841,0.794355034828186,-0.122276648879051,-0.517558217048645,0.846865713596344,-0.122276648879051,-0.517558217048645,0.846865713596344,-0.102169699966908,-0.645558059215546,0.756846070289612,-0.111131399869919,-0.57400107383728,0.811278283596039,0.0536094941198826,-0.998436510562897,-0.0158281866461039,-0.0305759217590094,-0.991299748420715,0.128022685647011,-0.00887930393218994,-0.999856650829315,-0.0144144278019667,-0.00887930393218994,-0.999856650829315,-0.0144144278019667,0.0487594977021217,-0.978826999664307,-0.198796615004539,0.0536094941198826,-0.998436510562897,-0.0158281866461039,0.075142964720726,-0.942124783992767,-0.326732784509659,0.0487594977021217,-0.978826999664307,-0.198796615004539,-0.00887930393218994,-0.999856650829315,-0.0144144278019667,0.075142964720726,-0.942124783992767,-0.326732784509659,0.13045234978199,-0.822402536869049,-0.553747355937958,0.0487594977021217,-0.978826999664307,-0.198796615004539,0.075142964720726,-0.942124783992767,-0.326732784509659,0.188089981675148,-0.608807981014252,-0.770697712898254, +0.13045234978199,-0.822402536869049,-0.553747355937958,0.0922555103898048,-0.958398580551147,-0.270112901926041,0.186527162790298,-0.904004335403442,-0.384686559438705,0.0365356728434563,-0.999329328536987,0.00243300385773182,0.188089981675148,-0.608807981014252,-0.770697712898254,0.126468554139137,-0.451952517032623,-0.88303142786026,0.13045234978199,-0.822402536869049,-0.553747355937958,-0.091622069478035,-0.752653300762177,0.652010917663574,-0.102169699966908,-0.645558059215546,0.756846070289612,-0.122276648879051,-0.517558217048645,0.846865713596344,-0.102169699966908,-0.645558059215546,0.756846070289612,-0.0689095482230186,-0.868890941143036,0.490183621644974,-0.123232640326023,-0.66044557094574,0.740692377090454,-0.091622069478035,-0.752653300762177,0.652010917663574,-0.0343954600393772,-0.915860533714294,0.400020390748978,-0.102169699966908,-0.645558059215546,0.756846070289612,-0.0689095482230186,-0.868890941143036,0.490183621644974,-0.102169699966908,-0.645558059215546,0.756846070289612,-0.0343954600393772,-0.915860533714294,0.400020390748978,-0.123232640326023,-0.66044557094574,0.740692377090454,-0.0689095482230186,-0.868890941143036,0.490183621644974,-0.115213610231876,-0.677138447761536,0.726779997348785,-0.115213610231876,-0.677138447761536,0.726779997348785,-0.105166077613831,-0.709848403930664,0.696459114551544,-0.14354296028614,-0.518438398838043,0.842980921268463,-0.0484514124691486,-0.926823198795319,0.372358858585358,-0.115213610231876,-0.677138447761536,0.726779997348785,-0.0689095482230186,-0.868890941143036,0.490183621644974,-0.115213610231876,-0.677138447761536,0.726779997348785,-0.0484514124691486,-0.926823198795319,0.372358858585358,-0.105166077613831,-0.709848403930664,0.696459114551544,-0.14354296028614,-0.518438398838043,0.842980921268463,-0.105166077613831,-0.709848403930664,0.696459114551544,-0.126956060528755,-0.515093743801117,0.847679436206818,-0.105166077613831,-0.709848403930664,0.696459114551544,-0.115728765726089,-0.619198024272919,0.776659905910492,-0.126956060528755,-0.515093743801117,0.847679436206818, +-0.105166077613831,-0.709848403930664,0.696459114551544,-0.0434642285108566,-0.918126463890076,0.393896579742432,-0.115728765726089,-0.619198024272919,0.776659905910492,-0.115728765726089,-0.619198024272919,0.776659905910492,-0.0434642285108566,-0.918126463890076,0.393896579742432,-0.103934623301029,-0.730477452278137,0.674981594085693,-0.123215705156326,-0.52348917722702,0.843075811862946,-0.115728765726089,-0.619198024272919,0.776659905910492,-0.103934623301029,-0.730477452278137,0.674981594085693,-0.103934623301029,-0.730477452278137,0.674981594085693,-0.0889186710119247,-0.675688922405243,0.731804490089417,-0.123215705156326,-0.52348917722702,0.843075811862946,-0.123215705156326,-0.52348917722702,0.843075811862946,-0.0889186710119247,-0.675688922405243,0.731804490089417,-0.0545523092150688,-0.600632071495056,0.797662198543549,-0.0889186710119247,-0.675688922405243,0.731804490089417,-0.0468697026371956,-0.672857701778412,0.738285601139069,-0.0545523092150688,-0.600632071495056,0.797662198543549,-0.0254903268069029,-0.740726888179779,0.671322405338287,-0.0183772519230843,-0.8812255859375,0.472338438034058,-0.0545523092150688,-0.600632071495056,0.797662198543549,0.0140523631125689,-0.590322554111481,0.807044982910156,-0.0545523092150688,-0.600632071495056,0.797662198543549,-0.0468697026371956,-0.672857701778412,0.738285601139069,-0.0254903268069029,-0.740726888179779,0.671322405338287,-0.0545523092150688,-0.600632071495056,0.797662198543549,-0.00095319707179442,-0.536871612071991,0.843663334846497,-0.00095319707179442,-0.536871612071991,0.843663334846497,-0.0545523092150688,-0.600632071495056,0.797662198543549,0.0140523631125689,-0.590322554111481,0.807044982910156,-0.0340013168752193,-0.976860523223877,0.211157158017159,-0.0183772519230843,-0.8812255859375,0.472338438034058,0.004625647328794,-0.982105612754822,0.188273921608925,-0.0183772519230843,-0.8812255859375,0.472338438034058,-0.0119402995333076,-0.923454761505127,0.383521348237991,0.004625647328794,-0.982105612754822,0.188273921608925,-0.0183772519230843,-0.8812255859375,0.472338438034058, +-0.0254903268069029,-0.740726888179779,0.671322405338287,-0.0119402995333076,-0.923454761505127,0.383521348237991,0.0365356728434563,-0.999329328536987,0.00243300385773182,-0.0340013168752193,-0.976860523223877,0.211157158017159,-0.00851019285619259,-0.99980753660202,-0.0176734682172537,-0.00609943363815546,-0.999980807304382,-0.00107273727189749,-0.00851019285619259,-0.99980753660202,-0.0176734682172537,-0.0340013168752193,-0.976860523223877,0.211157158017159,-0.00609943363815546,-0.999980807304382,-0.00107273727189749,-0.0340013168752193,-0.976860523223877,0.211157158017159,0.004625647328794,-0.982105612754822,0.188273921608925,0.0365356728434563,-0.999329328536987,0.00243300385773182,-0.00851019285619259,-0.99980753660202,-0.0176734682172537,0.0922555103898048,-0.958398580551147,-0.270112901926041,-0.00733992643654346,-0.998009860515594,0.0626292079687119,-0.0305759217590094,-0.991299748420715,0.128022685647011,0.0536094941198826,-0.998436510562897,-0.0158281866461039,-0.00733992643654346,-0.998009860515594,0.0626292079687119,-0.187508746981621,-0.919660866260529,0.345056891441345,-0.0305759217590094,-0.991299748420715,0.128022685647011,-0.17559078335762,-0.875933051109314,0.449342995882034,-0.0305759217590094,-0.991299748420715,0.128022685647011,-0.187508746981621,-0.919660866260529,0.345056891441345,-0.17559078335762,-0.875933051109314,0.449342995882034,-0.187508746981621,-0.919660866260529,0.345056891441345,-0.289835244417191,-0.685666680335999,0.667724907398224,-0.253703147172928,-0.637672364711761,0.727329611778259,-0.17559078335762,-0.875933051109314,0.449342995882034,-0.289835244417191,-0.685666680335999,0.667724907398224,-0.253703147172928,-0.637672364711761,0.727329611778259,-0.289835244417191,-0.685666680335999,0.667724907398224,-0.303626090288162,-0.577875435352325,0.757542729377747,-0.253703147172928,-0.637672364711761,0.727329611778259,-0.303626090288162,-0.577875435352325,0.757542729377747,-0.230459794402123,-0.54960823059082,0.803006172180176,-0.230459794402123,-0.54960823059082,0.803006172180176, +-0.303626090288162,-0.577875435352325,0.757542729377747,-0.269200921058655,-0.719301342964172,0.640418827533722,-0.230459794402123,-0.54960823059082,0.803006172180176,-0.269200921058655,-0.719301342964172,0.640418827533722,-0.181772485375404,-0.701002180576324,0.689604640007019,-0.230459794402123,-0.54960823059082,0.803006172180176,-0.181772485375404,-0.701002180576324,0.689604640007019,-0.122276648879051,-0.517558217048645,0.846865713596344,-0.091622069478035,-0.752653300762177,0.652010917663574,-0.122276648879051,-0.517558217048645,0.846865713596344,-0.181772485375404,-0.701002180576324,0.689604640007019,0.121147073805332,-0.971322953701019,-0.204584956169128,0.0536094941198826,-0.998436510562897,-0.0158281866461039,0.0487594977021217,-0.978826999664307,-0.198796615004539,0.121147073805332,-0.971322953701019,-0.204584956169128,0.0487594977021217,-0.978826999664307,-0.198796615004539,0.13045234978199,-0.822402536869049,-0.553747355937958,0.0753918290138245,-0.994254767894745,-0.0759829506278038,-0.00733992643654346,-0.998009860515594,0.0626292079687119,0.0536094941198826,-0.998436510562897,-0.0158281866461039,0.0753918290138245,-0.994254767894745,-0.0759829506278038,0.0536094941198826,-0.998436510562897,-0.0158281866461039,0.121147073805332,-0.971322953701019,-0.204584956169128,0.121147073805332,-0.971322953701019,-0.204584956169128,0.13045234978199,-0.822402536869049,-0.553747355937958,0.147956669330597,-0.913846909999847,-0.378143578767776,0.0922555103898048,-0.958398580551147,-0.270112901926041,-0.00851019285619259,-0.99980753660202,-0.0176734682172537,0.0724783018231392,-0.933188915252686,-0.352001756429672,-0.091622069478035,-0.752653300762177,0.652010917663574,-0.181772485375404,-0.701002180576324,0.689604640007019,-0.13522432744503,-0.911711156368256,0.387939423322678,-0.0344855301082134,-0.944027125835419,0.328060269355774,-0.091622069478035,-0.752653300762177,0.652010917663574,-0.13522432744503,-0.911711156368256,0.387939423322678,-0.0343954600393772,-0.915860533714294,0.400020390748978,-0.091622069478035,-0.752653300762177,0.652010917663574, +-0.0344855301082134,-0.944027125835419,0.328060269355774,-0.0343954600393772,-0.915860533714294,0.400020390748978,-0.0344855301082134,-0.944027125835419,0.328060269355774,0.0135940844193101,-0.994413435459137,0.104675702750683,0.0135940844193101,-0.994413435459137,0.104675702750683,0.00256143603473902,-0.993648052215576,0.11250289529562,-0.0343954600393772,-0.915860533714294,0.400020390748978,-0.0689095482230186,-0.868890941143036,0.490183621644974,-0.0343954600393772,-0.915860533714294,0.400020390748978,0.00256143603473902,-0.993648052215576,0.11250289529562,-0.0484514124691486,-0.926823198795319,0.372358858585358,-0.0689095482230186,-0.868890941143036,0.490183621644974,0.00256143603473902,-0.993648052215576,0.11250289529562,0.00474998075515032,-0.996386706829071,0.0847988724708557,-0.0484514124691486,-0.926823198795319,0.372358858585358,0.00256143603473902,-0.993648052215576,0.11250289529562,-0.0452103540301323,-0.917502462863922,0.39515209197998,-0.105166077613831,-0.709848403930664,0.696459114551544,-0.0484514124691486,-0.926823198795319,0.372358858585358,0.00190212356392294,-0.990893602371216,0.134633511304855,-0.0484514124691486,-0.926823198795319,0.372358858585358,0.00474998075515032,-0.996386706829071,0.0847988724708557,-0.0452103540301323,-0.917502462863922,0.39515209197998,-0.0484514124691486,-0.926823198795319,0.372358858585358,0.00190212356392294,-0.990893602371216,0.134633511304855,-0.0452103540301323,-0.917502462863922,0.39515209197998,-0.0434642285108566,-0.918126463890076,0.393896579742432,-0.105166077613831,-0.709848403930664,0.696459114551544,-0.0452103540301323,-0.917502462863922,0.39515209197998,0.00190212356392294,-0.990893602371216,0.134633511304855,-0.0434642285108566,-0.918126463890076,0.393896579742432,0.0116748576983809,-0.995969474315643,0.0889291241765022,-0.0434642285108566,-0.918126463890076,0.393896579742432,0.00190212356392294,-0.990893602371216,0.134633511304855,-0.0427758172154427,-0.932839393615723,0.357744127511978,-0.103934623301029,-0.730477452278137,0.674981594085693,-0.0434642285108566,-0.918126463890076,0.393896579742432, +0.0116748576983809,-0.995969474315643,0.0889291241765022,-0.00281666172668338,-0.992958962917328,0.118424765765667,-0.0434642285108566,-0.918126463890076,0.393896579742432,-0.0427758172154427,-0.932839393615723,0.357744127511978,-0.0434642285108566,-0.918126463890076,0.393896579742432,-0.00281666172668338,-0.992958962917328,0.118424765765667,-0.0510744526982307,-0.897869288921356,0.437289386987686,-0.103934623301029,-0.730477452278137,0.674981594085693,-0.0427758172154427,-0.932839393615723,0.357744127511978,-0.103934623301029,-0.730477452278137,0.674981594085693,-0.0510744526982307,-0.897869288921356,0.437289386987686,-0.0889186710119247,-0.675688922405243,0.731804490089417,-0.0459471940994263,-0.905543982982636,0.4217569231987,-0.0889186710119247,-0.675688922405243,0.731804490089417,-0.0510744526982307,-0.897869288921356,0.437289386987686,-0.0889186710119247,-0.675688922405243,0.731804490089417,-0.0459471940994263,-0.905543982982636,0.4217569231987,-0.0468697026371956,-0.672857701778412,0.738285601139069,-0.0459471940994263,-0.905543982982636,0.4217569231987,-0.00933704804629087,-0.869487643241882,0.493866294622421,-0.0468697026371956,-0.672857701778412,0.738285601139069,0.0140523631125689,-0.590322554111481,0.807044982910156,-0.0468697026371956,-0.672857701778412,0.738285601139069,-0.00933704804629087,-0.869487643241882,0.493866294622421,-0.00095319707179442,-0.536871612071991,0.843663334846497,0.0140523631125689,-0.590322554111481,0.807044982910156,0.0725380256772041,-0.574352204799652,0.815388023853302,-0.00933704804629087,-0.869487643241882,0.493866294622421,0.0463035888969898,-0.812277376651764,0.581430375576019,0.0140523631125689,-0.590322554111481,0.807044982910156,0.0463035888969898,-0.812277376651764,0.581430375576019,0.0725380256772041,-0.574352204799652,0.815388023853302,0.0140523631125689,-0.590322554111481,0.807044982910156,0.0287728440016508,-0.600178301334381,0.799348473548889,-0.0254903268069029,-0.740726888179779,0.671322405338287,-0.00095319707179442,-0.536871612071991,0.843663334846497,0.0287728440016508,-0.600178301334381,0.799348473548889, +-0.00095319707179442,-0.536871612071991,0.843663334846497,0.0725380256772041,-0.574352204799652,0.815388023853302,-0.0260712541639805,-0.92661440372467,0.375107824802399,-0.0119402995333076,-0.923454761505127,0.383521348237991,-0.0254903268069029,-0.740726888179779,0.671322405338287,0.0152589734643698,-0.797281324863434,0.603414833545685,-0.0260712541639805,-0.92661440372467,0.375107824802399,-0.0254903268069029,-0.740726888179779,0.671322405338287,0.0152589734643698,-0.797281324863434,0.603414833545685,-0.0254903268069029,-0.740726888179779,0.671322405338287,0.0287728440016508,-0.600178301334381,0.799348473548889,-0.00917005073279142,-0.987003922462463,0.160433903336525,0.004625647328794,-0.982105612754822,0.188273921608925,-0.0119402995333076,-0.923454761505127,0.383521348237991,-0.0260712541639805,-0.92661440372467,0.375107824802399,-0.00917005073279142,-0.987003922462463,0.160433903336525,-0.0119402995333076,-0.923454761505127,0.383521348237991,-0.00609943363815546,-0.999980807304382,-0.00107273727189749,0.004625647328794,-0.982105612754822,0.188273921608925,0.0303511805832386,-0.999438047409058,-0.014225710183382,-0.00917005073279142,-0.987003922462463,0.160433903336525,0.0303511805832386,-0.999438047409058,-0.014225710183382,0.004625647328794,-0.982105612754822,0.188273921608925,-0.00609943363815546,-0.999980807304382,-0.00107273727189749,0.0356921218335629,-0.967829644680023,-0.249061778187752,-0.00851019285619259,-0.99980753660202,-0.0176734682172537,0.0356921218335629,-0.967829644680023,-0.249061778187752,-0.00609943363815546,-0.999980807304382,-0.00107273727189749,0.0698400065302849,-0.93700236082077,-0.342270046472549,-0.00609943363815546,-0.999980807304382,-0.00107273727189749,0.0303511805832386,-0.999438047409058,-0.014225710183382,0.0698400065302849,-0.93700236082077,-0.342270046472549,0.0724783018231392,-0.933188915252686,-0.352001756429672,-0.00851019285619259,-0.99980753660202,-0.0176734682172537,0.0356921218335629,-0.967829644680023,-0.249061778187752,-0.00733992643654346,-0.998009860515594,0.0626292079687119, +0.0753918290138245,-0.994254767894745,-0.0759829506278038,0.019340893253684,-0.999812543392181,0.000700145377777517,-0.00733992643654346,-0.998009860515594,0.0626292079687119,0.019340893253684,-0.999812543392181,0.000700145377777517,-0.116527996957302,-0.980892300605774,0.155792877078056,-0.116527996957302,-0.980892300605774,0.155792877078056,-0.187508746981621,-0.919660866260529,0.345056891441345,-0.00733992643654346,-0.998009860515594,0.0626292079687119,-0.36477854847908,-0.840851664543152,0.399881154298782,-0.187508746981621,-0.919660866260529,0.345056891441345,-0.116527996957302,-0.980892300605774,0.155792877078056,-0.36477854847908,-0.840851664543152,0.399881154298782,-0.424162119626999,-0.699603259563446,0.575014412403107,-0.187508746981621,-0.919660866260529,0.345056891441345,-0.424162119626999,-0.699603259563446,0.575014412403107,-0.289835244417191,-0.685666680335999,0.667724907398224,-0.187508746981621,-0.919660866260529,0.345056891441345,-0.424162119626999,-0.699603259563446,0.575014412403107,-0.371830433607101,-0.693378031253815,0.617226779460907,-0.289835244417191,-0.685666680335999,0.667724907398224,-0.289835244417191,-0.685666680335999,0.667724907398224,-0.371830433607101,-0.693378031253815,0.617226779460907,-0.303626090288162,-0.577875435352325,0.757542729377747,-0.303626090288162,-0.577875435352325,0.757542729377747,-0.371830433607101,-0.693378031253815,0.617226779460907,-0.288869857788086,-0.700473487377167,0.652603209018707,-0.288869857788086,-0.700473487377167,0.652603209018707,-0.269200921058655,-0.719301342964172,0.640418827533722,-0.303626090288162,-0.577875435352325,0.757542729377747,-0.288869857788086,-0.700473487377167,0.652603209018707,-0.245221510529518,-0.894521117210388,0.373762309551239,-0.269200921058655,-0.719301342964172,0.640418827533722,-0.13522432744503,-0.911711156368256,0.387939423322678,-0.269200921058655,-0.719301342964172,0.640418827533722,-0.245221510529518,-0.894521117210388,0.373762309551239,-0.181772485375404,-0.701002180576324,0.689604640007019,-0.269200921058655,-0.719301342964172,0.640418827533722, +-0.13522432744503,-0.911711156368256,0.387939423322678,0.0753918290138245,-0.994254767894745,-0.0759829506278038,0.121147073805332,-0.971322953701019,-0.204584956169128,0.147956669330597,-0.913846909999847,-0.378143578767776,0.0753918290138245,-0.994254767894745,-0.0759829506278038,0.118634842336178,-0.985062658786774,-0.124808788299561,0.019340893253684,-0.999812543392181,0.000700145377777517,0.0753918290138245,-0.994254767894745,-0.0759829506278038,0.139191508293152,-0.949877917766571,-0.279923766851425,0.118634842336178,-0.985062658786774,-0.124808788299561,0.147956669330597,-0.913846909999847,-0.378143578767776,0.139191508293152,-0.949877917766571,-0.279923766851425,0.0753918290138245,-0.994254767894745,-0.0759829506278038,-0.13522432744503,-0.911711156368256,0.387939423322678,-0.245221510529518,-0.894521117210388,0.373762309551239,-0.106189876794815,-0.982910990715027,0.150364831089973,-0.106189876794815,-0.982910990715027,0.150364831089973,-0.0109110716730356,-0.996045231819153,0.0881747305393219,-0.13522432744503,-0.911711156368256,0.387939423322678,-0.0344855301082134,-0.944027125835419,0.328060269355774,-0.13522432744503,-0.911711156368256,0.387939423322678,-0.0109110716730356,-0.996045231819153,0.0881747305393219,0.0135940844193101,-0.994413435459137,0.104675702750683,-0.0344855301082134,-0.944027125835419,0.328060269355774,-0.0109110716730356,-0.996045231819153,0.0881747305393219,0.0135940844193101,-0.994413435459137,0.104675702750683,-0.0109110716730356,-0.996045231819153,0.0881747305393219,0.0274163521826267,-0.999539434909821,-0.0130056543275714,0.0135940844193101,-0.994413435459137,0.104675702750683,0.0274163521826267,-0.999539434909821,-0.0130056543275714,0.00256143603473902,-0.993648052215576,0.11250289529562,0.0274163521826267,-0.999539434909821,-0.0130056543275714,0.0244569107890129,-0.999579727649689,-0.0155595969408751,0.00256143603473902,-0.993648052215576,0.11250289529562,0.00474998075515032,-0.996386706829071,0.0847988724708557,0.00256143603473902,-0.993648052215576,0.11250289529562,0.0244569107890129,-0.999579727649689,-0.0155595969408751, +0.0245620794594288,-0.99966961145401,-0.00755282957106829,0.00474998075515032,-0.996386706829071,0.0847988724708557,0.0244569107890129,-0.999579727649689,-0.0155595969408751,0.00190212356392294,-0.990893602371216,0.134633511304855,0.00474998075515032,-0.996386706829071,0.0847988724708557,0.0245620794594288,-0.99966961145401,-0.00755282957106829,0.0116748576983809,-0.995969474315643,0.0889291241765022,0.00190212356392294,-0.990893602371216,0.134633511304855,0.0245620794594288,-0.99966961145401,-0.00755282957106829,0.0245620794594288,-0.99966961145401,-0.00755282957106829,0.032447200268507,-0.999472379684448,-0.00142972334288061,0.0116748576983809,-0.995969474315643,0.0889291241765022,0.0116748576983809,-0.995969474315643,0.0889291241765022,0.032447200268507,-0.999472379684448,-0.00142972334288061,-0.00281666172668338,-0.992958962917328,0.118424765765667,-0.00281666172668338,-0.992958962917328,0.118424765765667,0.032447200268507,-0.999472379684448,-0.00142972334288061,0.00403490010648966,-0.994669556617737,0.103034220635891,-0.00281666172668338,-0.992958962917328,0.118424765765667,0.00403490010648966,-0.994669556617737,0.103034220635891,-0.0427758172154427,-0.932839393615723,0.357744127511978,-0.0510744526982307,-0.897869288921356,0.437289386987686,-0.0427758172154427,-0.932839393615723,0.357744127511978,0.00403490010648966,-0.994669556617737,0.103034220635891,-0.0459471940994263,-0.905543982982636,0.4217569231987,-0.0510744526982307,-0.897869288921356,0.437289386987686,0.00403490010648966,-0.994669556617737,0.103034220635891,0.00403490010648966,-0.994669556617737,0.103034220635891,-0.00898563861846924,-0.987987756729126,0.154270350933075,-0.0459471940994263,-0.905543982982636,0.4217569231987,-0.00898563861846924,-0.987987756729126,0.154270350933075,-0.00933704804629087,-0.869487643241882,0.493866294622421,-0.0459471940994263,-0.905543982982636,0.4217569231987,-0.00898563861846924,-0.987987756729126,0.154270350933075,-0.00367920892313123,-0.982922375202179,0.183983743190765,-0.00933704804629087,-0.869487643241882,0.493866294622421, +-0.00933704804629087,-0.869487643241882,0.493866294622421,-0.00367920892313123,-0.982922375202179,0.183983743190765,0.0463035888969898,-0.812277376651764,0.581430375576019,0.175397247076035,-0.736786246299744,0.652979075908661,0.0725380256772041,-0.574352204799652,0.815388023853302,0.0463035888969898,-0.812277376651764,0.581430375576019,0.0463035888969898,-0.812277376651764,0.581430375576019,-0.00367920892313123,-0.982922375202179,0.183983743190765,0.0517810322344303,-0.958633661270142,0.279892981052399,0.175397247076035,-0.736786246299744,0.652979075908661,0.0463035888969898,-0.812277376651764,0.581430375576019,0.0517810322344303,-0.958633661270142,0.279892981052399,0.137409225106239,-0.665299892425537,0.733821988105774,0.0287728440016508,-0.600178301334381,0.799348473548889,0.0725380256772041,-0.574352204799652,0.815388023853302,0.137409225106239,-0.665299892425537,0.733821988105774,0.0725380256772041,-0.574352204799652,0.815388023853302,0.175397247076035,-0.736786246299744,0.652979075908661,0.0152589734643698,-0.797281324863434,0.603414833545685,0.0287728440016508,-0.600178301334381,0.799348473548889,0.137409225106239,-0.665299892425537,0.733821988105774,-0.0260712541639805,-0.92661440372467,0.375107824802399,0.0152589734643698,-0.797281324863434,0.603414833545685,0.0108841992914677,-0.951428771018982,0.307676285505295,0.0108841992914677,-0.951428771018982,0.307676285505295,0.0152589734643698,-0.797281324863434,0.603414833545685,0.0670536234974861,-0.861624419689178,0.503097355365753,0.0152589734643698,-0.797281324863434,0.603414833545685,0.137409225106239,-0.665299892425537,0.733821988105774,0.0670536234974861,-0.861624419689178,0.503097355365753,-0.026105921715498,-0.992159783840179,0.122218556702137,-0.00917005073279142,-0.987003922462463,0.160433903336525,-0.0260712541639805,-0.92661440372467,0.375107824802399,-0.0260712541639805,-0.92661440372467,0.375107824802399,0.0108841992914677,-0.951428771018982,0.307676285505295,-0.026105921715498,-0.992159783840179,0.122218556702137,0.0183435473591089,-0.999374747276306,-0.0302240755409002, +0.0303511805832386,-0.999438047409058,-0.014225710183382,-0.00917005073279142,-0.987003922462463,0.160433903336525,-0.026105921715498,-0.992159783840179,0.122218556702137,0.0183435473591089,-0.999374747276306,-0.0302240755409002,-0.00917005073279142,-0.987003922462463,0.160433903336525,0.0698400065302849,-0.93700236082077,-0.342270046472549,0.0303511805832386,-0.999438047409058,-0.014225710183382,0.0599019415676594,-0.964753031730652,-0.256248295307159,0.0183435473591089,-0.999374747276306,-0.0302240755409002,0.0599019415676594,-0.964753031730652,-0.256248295307159,0.0303511805832386,-0.999438047409058,-0.014225710183382,0.019340893253684,-0.999812543392181,0.000700145377777517,0.118634842336178,-0.985062658786774,-0.124808788299561,0.139507234096527,-0.988946676254272,-0.0502199158072472,-0.36477854847908,-0.840851664543152,0.399881154298782,-0.531963109970093,-0.679120659828186,0.505776882171631,-0.424162119626999,-0.699603259563446,0.575014412403107,-0.424162119626999,-0.699603259563446,0.575014412403107,-0.531963109970093,-0.679120659828186,0.505776882171631,-0.558633208274841,-0.671957194805145,0.486212372779846,-0.558633208274841,-0.671957194805145,0.486212372779846,-0.371830433607101,-0.693378031253815,0.617226779460907,-0.424162119626999,-0.699603259563446,0.575014412403107,-0.558633208274841,-0.671957194805145,0.486212372779846,-0.493067234754562,-0.821241676807404,0.287135452032089,-0.371830433607101,-0.693378031253815,0.617226779460907,-0.493067234754562,-0.821241676807404,0.287135452032089,-0.245221510529518,-0.894521117210388,0.373762309551239,-0.371830433607101,-0.693378031253815,0.617226779460907,-0.288869857788086,-0.700473487377167,0.652603209018707,-0.371830433607101,-0.693378031253815,0.617226779460907,-0.245221510529518,-0.894521117210388,0.373762309551239,-0.245221510529518,-0.894521117210388,0.373762309551239,-0.493067234754562,-0.821241676807404,0.287135452032089,-0.304795503616333,-0.937436282634735,0.168263897299767,-0.245221510529518,-0.894521117210388,0.373762309551239,-0.304795503616333,-0.937436282634735,0.168263897299767, +-0.167762130498886,-0.976824879646301,0.13292433321476,-0.106189876794815,-0.982910990715027,0.150364831089973,-0.245221510529518,-0.894521117210388,0.373762309551239,-0.167762130498886,-0.976824879646301,0.13292433321476,-0.106189876794815,-0.982910990715027,0.150364831089973,-0.167762130498886,-0.976824879646301,0.13292433321476,-0.0710990428924561,-0.996858417987823,0.0349016524851322,-0.0710990428924561,-0.996858417987823,0.0349016524851322,-0.0109110716730356,-0.996045231819153,0.0881747305393219,-0.106189876794815,-0.982910990715027,0.150364831089973,0.0117403659969568,-0.999805629253387,-0.015828238800168,-0.0109110716730356,-0.996045231819153,0.0881747305393219,-0.0710990428924561,-0.996858417987823,0.0349016524851322,0.0274163521826267,-0.999539434909821,-0.0130056543275714,-0.0109110716730356,-0.996045231819153,0.0881747305393219,0.0117403659969568,-0.999805629253387,-0.015828238800168,0.0117403659969568,-0.999805629253387,-0.015828238800168,0.0312389396131039,-0.999047815799713,-0.0304554980248213,0.0274163521826267,-0.999539434909821,-0.0130056543275714,0.0312389396131039,-0.999047815799713,-0.0304554980248213,0.0318588465452194,-0.999212265014648,-0.0236605834215879,0.0274163521826267,-0.999539434909821,-0.0130056543275714,0.0274163521826267,-0.999539434909821,-0.0130056543275714,0.0318588465452194,-0.999212265014648,-0.0236605834215879,0.0244569107890129,-0.999579727649689,-0.0155595969408751,0.0318588465452194,-0.999212265014648,-0.0236605834215879,0.0321035794913769,-0.999036967754364,-0.0299054905772209,0.0244569107890129,-0.999579727649689,-0.0155595969408751,0.037716917693615,-0.998752295970917,-0.0327290631830692,0.0244569107890129,-0.999579727649689,-0.0155595969408751,0.0321035794913769,-0.999036967754364,-0.0299054905772209,0.037716917693615,-0.998752295970917,-0.0327290631830692,0.0245620794594288,-0.99966961145401,-0.00755282957106829,0.0244569107890129,-0.999579727649689,-0.0155595969408751,0.037716917693615,-0.998752295970917,-0.0327290631830692,0.0286166034638882,-0.998547255992889,-0.0456547252833843, +0.0245620794594288,-0.99966961145401,-0.00755282957106829,0.0245620794594288,-0.99966961145401,-0.00755282957106829,0.0286166034638882,-0.998547255992889,-0.0456547252833843,0.0305384341627359,-0.998835146427155,-0.0373591594398022,0.0305384341627359,-0.998835146427155,-0.0373591594398022,0.041902270168066,-0.998656034469604,-0.0305004827678204,0.0245620794594288,-0.99966961145401,-0.00755282957106829,0.041902270168066,-0.998656034469604,-0.0305004827678204,0.032447200268507,-0.999472379684448,-0.00142972334288061,0.0245620794594288,-0.99966961145401,-0.00755282957106829,0.041902270168066,-0.998656034469604,-0.0305004827678204,0.030776547268033,-0.999326050281525,-0.0199987087398767,0.032447200268507,-0.999472379684448,-0.00142972334288061,0.030776547268033,-0.999326050281525,-0.0199987087398767,0.00403490010648966,-0.994669556617737,0.103034220635891,0.032447200268507,-0.999472379684448,-0.00142972334288061,-0.000811716134194285,-0.999992907047272,-0.00365967815741897,0.00403490010648966,-0.994669556617737,0.103034220635891,0.030776547268033,-0.999326050281525,-0.0199987087398767,0.00403490010648966,-0.994669556617737,0.103034220635891,-0.000811716134194285,-0.999992907047272,-0.00365967815741897,-0.00898563861846924,-0.987987756729126,0.154270350933075,-0.00898563861846924,-0.987987756729126,0.154270350933075,-0.000811716134194285,-0.999992907047272,-0.00365967815741897,-0.00367920892313123,-0.982922375202179,0.183983743190765,0.00925365556031466,-0.999942302703857,0.00544713670387864,-0.00367920892313123,-0.982922375202179,0.183983743190765,-0.000811716134194285,-0.999992907047272,-0.00365967815741897,0.00925365556031466,-0.999942302703857,0.00544713670387864,0.0517810322344303,-0.958633661270142,0.279892981052399,-0.00367920892313123,-0.982922375202179,0.183983743190765,0.00925365556031466,-0.999942302703857,0.00544713670387864,0.0513531416654587,-0.994722366333008,0.0888268426060677,0.0517810322344303,-0.958633661270142,0.279892981052399,0.126484975218773,-0.929601728916168,0.34618204832077,0.175397247076035,-0.736786246299744,0.652979075908661, +0.0517810322344303,-0.958633661270142,0.279892981052399,0.126484975218773,-0.929601728916168,0.34618204832077,0.0517810322344303,-0.958633661270142,0.279892981052399,0.0513531416654587,-0.994722366333008,0.0888268426060677,0.175397247076035,-0.736786246299744,0.652979075908661,0.319474160671234,-0.649659156799316,0.689839899539948,0.137409225106239,-0.665299892425537,0.733821988105774,0.175397247076035,-0.736786246299744,0.652979075908661,0.281944245100021,-0.822226583957672,0.494419634342194,0.319474160671234,-0.649659156799316,0.689839899539948,0.175397247076035,-0.736786246299744,0.652979075908661,0.126484975218773,-0.929601728916168,0.34618204832077,0.281944245100021,-0.822226583957672,0.494419634342194,0.0670536234974861,-0.861624419689178,0.503097355365753,0.137409225106239,-0.665299892425537,0.733821988105774,0.196864113211632,-0.791901469230652,0.578045308589935,0.196864113211632,-0.791901469230652,0.578045308589935,0.137409225106239,-0.665299892425537,0.733821988105774,0.232045382261276,-0.682286322116852,0.693282067775726,0.319474160671234,-0.649659156799316,0.689839899539948,0.232045382261276,-0.682286322116852,0.693282067775726,0.137409225106239,-0.665299892425537,0.733821988105774,0.0529097877442837,-0.974794268608093,0.21674071252346,0.0108841992914677,-0.951428771018982,0.307676285505295,0.0670536234974861,-0.861624419689178,0.503097355365753,0.0529097877442837,-0.974794268608093,0.21674071252346,0.0670536234974861,-0.861624419689178,0.503097355365753,0.118295639753342,-0.893004238605499,0.434222817420959,0.0670536234974861,-0.861624419689178,0.503097355365753,0.196864113211632,-0.791901469230652,0.578045308589935,0.118295639753342,-0.893004238605499,0.434222817420959,-0.00110254308674484,-0.996733486652374,0.0807531327009201,-0.026105921715498,-0.992159783840179,0.122218556702137,0.0108841992914677,-0.951428771018982,0.307676285505295,0.0529097877442837,-0.974794268608093,0.21674071252346,-0.00110254308674484,-0.996733486652374,0.0807531327009201,0.0108841992914677,-0.951428771018982,0.307676285505295, +0.00370917282998562,-0.99977445602417,0.0209085773676634,0.0183435473591089,-0.999374747276306,-0.0302240755409002,-0.026105921715498,-0.992159783840179,0.122218556702137,-0.026105921715498,-0.992159783840179,0.122218556702137,-0.00522640813142061,-0.999719798564911,-0.0230856947600842,0.00370917282998562,-0.99977445602417,0.0209085773676634,-0.00110254308674484,-0.996733486652374,0.0807531327009201,-0.00522640813142061,-0.999719798564911,-0.0230856947600842,-0.026105921715498,-0.992159783840179,0.122218556702137,0.0599019415676594,-0.964753031730652,-0.256248295307159,0.0183435473591089,-0.999374747276306,-0.0302240755409002,0.160131052136421,-0.925731837749481,-0.342605412006378,0.160131052136421,-0.925731837749481,-0.342605412006378,0.0183435473591089,-0.999374747276306,-0.0302240755409002,0.18714414536953,-0.961242854595184,-0.202458009123802,0.00370917282998562,-0.99977445602417,0.0209085773676634,0.18714414536953,-0.961242854595184,-0.202458009123802,0.0183435473591089,-0.999374747276306,-0.0302240755409002,-0.223468393087387,-0.974461078643799,0.0220750328153372,-0.167762130498886,-0.976824879646301,0.13292433321476,-0.304795503616333,-0.937436282634735,0.168263897299767,-0.223468393087387,-0.974461078643799,0.0220750328153372,-0.0710990428924561,-0.996858417987823,0.0349016524851322,-0.167762130498886,-0.976824879646301,0.13292433321476,-0.223468393087387,-0.974461078643799,0.0220750328153372,-0.0824144035577774,-0.995026290416718,-0.055950190871954,-0.0710990428924561,-0.996858417987823,0.0349016524851322,-0.0824144035577774,-0.995026290416718,-0.055950190871954,0.0117403659969568,-0.999805629253387,-0.015828238800168,-0.0710990428924561,-0.996858417987823,0.0349016524851322,0.0117403659969568,-0.999805629253387,-0.015828238800168,-0.0824144035577774,-0.995026290416718,-0.055950190871954,-0.00875756144523621,-0.998479187488556,-0.0544271357357502,0.0312389396131039,-0.999047815799713,-0.0304554980248213,0.0117403659969568,-0.999805629253387,-0.015828238800168,-0.00875756144523621,-0.998479187488556,-0.0544271357357502, +-0.00875756144523621,-0.998479187488556,-0.0544271357357502,0.0185172855854034,-0.999067068099976,-0.0390099510550499,0.0312389396131039,-0.999047815799713,-0.0304554980248213,0.0185172855854034,-0.999067068099976,-0.0390099510550499,0.0230424217879772,-0.999233961105347,-0.0316292084753513,0.0312389396131039,-0.999047815799713,-0.0304554980248213,0.0312389396131039,-0.999047815799713,-0.0304554980248213,0.0230424217879772,-0.999233961105347,-0.0316292084753513,0.0292050205171108,-0.998979032039642,-0.0344661250710487,0.0312389396131039,-0.999047815799713,-0.0304554980248213,0.0292050205171108,-0.998979032039642,-0.0344661250710487,0.0318588465452194,-0.999212265014648,-0.0236605834215879,0.0321035794913769,-0.999036967754364,-0.0299054905772209,0.0318588465452194,-0.999212265014648,-0.0236605834215879,0.0292050205171108,-0.998979032039642,-0.0344661250710487,0.0274897534400225,-0.999215960502625,-0.0284908711910248,0.0321035794913769,-0.999036967754364,-0.0299054905772209,0.0292050205171108,-0.998979032039642,-0.0344661250710487,0.0274897534400225,-0.999215960502625,-0.0284908711910248,0.026348888874054,-0.999297618865967,-0.0266437008976936,0.0321035794913769,-0.999036967754364,-0.0299054905772209,0.0321035794913769,-0.999036967754364,-0.0299054905772209,0.026348888874054,-0.999297618865967,-0.0266437008976936,0.037716917693615,-0.998752295970917,-0.0327290631830692,0.0323852449655533,-0.999334335327148,-0.0167939905077219,0.037716917693615,-0.998752295970917,-0.0327290631830692,0.026348888874054,-0.999297618865967,-0.0266437008976936,0.0322445295751095,-0.998880803585052,-0.0346024967730045,0.037716917693615,-0.998752295970917,-0.0327290631830692,0.0323852449655533,-0.999334335327148,-0.0167939905077219,0.0322445295751095,-0.998880803585052,-0.0346024967730045,0.0286166034638882,-0.998547255992889,-0.0456547252833843,0.037716917693615,-0.998752295970917,-0.0327290631830692,0.0322445295751095,-0.998880803585052,-0.0346024967730045,0.0243081115186214,-0.998917639255524,-0.0396560356020927,0.0286166034638882,-0.998547255992889,-0.0456547252833843, +0.0286166034638882,-0.998547255992889,-0.0456547252833843,0.0243081115186214,-0.998917639255524,-0.0396560356020927,0.0305384341627359,-0.998835146427155,-0.0373591594398022,0.041902270168066,-0.998656034469604,-0.0305004827678204,0.0305384341627359,-0.998835146427155,-0.0373591594398022,0.0243081115186214,-0.998917639255524,-0.0396560356020927,0.0243081115186214,-0.998917639255524,-0.0396560356020927,0.024304885417223,-0.999512672424316,-0.0195838250219822,0.041902270168066,-0.998656034469604,-0.0305004827678204,0.024304885417223,-0.999512672424316,-0.0195838250219822,0.030776547268033,-0.999326050281525,-0.0199987087398767,0.041902270168066,-0.998656034469604,-0.0305004827678204,0.024304885417223,-0.999512672424316,-0.0195838250219822,0.0114490082487464,-0.999199032783508,-0.038342323154211,0.030776547268033,-0.999326050281525,-0.0199987087398767,-0.000811716134194285,-0.999992907047272,-0.00365967815741897,0.030776547268033,-0.999326050281525,-0.0199987087398767,0.0114490082487464,-0.999199032783508,-0.038342323154211,-0.000811716134194285,-0.999992907047272,-0.00365967815741897,0.0114490082487464,-0.999199032783508,-0.038342323154211,0.00925365556031466,-0.999942302703857,0.00544713670387864,0.0114490082487464,-0.999199032783508,-0.038342323154211,-0.0105809951201081,-0.999096691608429,-0.0411546006798744,0.00925365556031466,-0.999942302703857,0.00544713670387864,0.0179140791296959,-0.999756813049316,-0.0128555344417691,0.00925365556031466,-0.999942302703857,0.00544713670387864,-0.0105809951201081,-0.999096691608429,-0.0411546006798744,0.00925365556031466,-0.999942302703857,0.00544713670387864,0.0179140791296959,-0.999756813049316,-0.0128555344417691,0.0513531416654587,-0.994722366333008,0.0888268426060677,0.0513531416654587,-0.994722366333008,0.0888268426060677,0.0179140791296959,-0.999756813049316,-0.0128555344417691,0.117791049182415,-0.979192018508911,0.165251851081848,0.0513531416654587,-0.994722366333008,0.0888268426060677,0.117791049182415,-0.979192018508911,0.165251851081848,0.126484975218773,-0.929601728916168,0.34618204832077, +0.117791049182415,-0.979192018508911,0.165251851081848,0.281944245100021,-0.822226583957672,0.494419634342194,0.126484975218773,-0.929601728916168,0.34618204832077,0.281944245100021,-0.822226583957672,0.494419634342194,0.412412345409393,-0.723655462265015,0.553388357162476,0.319474160671234,-0.649659156799316,0.689839899539948,0.281944245100021,-0.822226583957672,0.494419634342194,0.252728819847107,-0.924633681774139,0.284922063350677,0.412412345409393,-0.723655462265015,0.553388357162476,0.252728819847107,-0.924633681774139,0.284922063350677,0.281944245100021,-0.822226583957672,0.494419634342194,0.117791049182415,-0.979192018508911,0.165251851081848,0.232045382261276,-0.682286322116852,0.693282067775726,0.319474160671234,-0.649659156799316,0.689839899539948,0.331636309623718,-0.739624500274658,0.585638761520386,0.443045437335968,-0.677261710166931,0.587390124797821,0.319474160671234,-0.649659156799316,0.689839899539948,0.412412345409393,-0.723655462265015,0.553388357162476,0.443045437335968,-0.677261710166931,0.587390124797821,0.331636309623718,-0.739624500274658,0.585638761520386,0.319474160671234,-0.649659156799316,0.689839899539948,0.232045382261276,-0.682286322116852,0.693282067775726,0.331636309623718,-0.739624500274658,0.585638761520386,0.196864113211632,-0.791901469230652,0.578045308589935,0.144093662500381,-0.927390098571777,0.345231086015701,0.118295639753342,-0.893004238605499,0.434222817420959,0.196864113211632,-0.791901469230652,0.578045308589935,0.196864113211632,-0.791901469230652,0.578045308589935,0.331636309623718,-0.739624500274658,0.585638761520386,0.235907152295113,-0.859161674976349,0.454080283641815,0.196864113211632,-0.791901469230652,0.578045308589935,0.235907152295113,-0.859161674976349,0.454080283641815,0.144093662500381,-0.927390098571777,0.345231086015701,0.144093662500381,-0.927390098571777,0.345231086015701,0.0529097877442837,-0.974794268608093,0.21674071252346,0.118295639753342,-0.893004238605499,0.434222817420959,-0.00110254308674484,-0.996733486652374,0.0807531327009201,0.0529097877442837,-0.974794268608093,0.21674071252346, +0.00359165179543197,-0.998873233795166,0.0473211258649826,0.00359165179543197,-0.998873233795166,0.0473211258649826,0.0529097877442837,-0.974794268608093,0.21674071252346,0.0398196503520012,-0.993996679782867,0.101906381547451,0.144093662500381,-0.927390098571777,0.345231086015701,0.0398196503520012,-0.993996679782867,0.101906381547451,0.0529097877442837,-0.974794268608093,0.21674071252346,-0.0221181455999613,-0.995086193084717,-0.0965097770094872,-0.00522640813142061,-0.999719798564911,-0.0230856947600842,-0.00110254308674484,-0.996733486652374,0.0807531327009201,-0.0221181455999613,-0.995086193084717,-0.0965097770094872,-0.00110254308674484,-0.996733486652374,0.0807531327009201,0.00359165179543197,-0.998873233795166,0.0473211258649826,0.0460121817886829,-0.995894312858582,-0.0779569521546364,0.00370917282998562,-0.99977445602417,0.0209085773676634,-0.00522640813142061,-0.999719798564911,-0.0230856947600842,0.0460121817886829,-0.995894312858582,-0.0779569521546364,0.18714414536953,-0.961242854595184,-0.202458009123802,0.00370917282998562,-0.99977445602417,0.0209085773676634,0.0274897534400225,-0.999215960502625,-0.0284908711910248,0.0292050205171108,-0.998979032039642,-0.0344661250710487,0.0230424217879772,-0.999233961105347,-0.0316292084753513,0.0323852449655533,-0.999334335327148,-0.0167939905077219,0.0144710522145033,-0.999786138534546,-0.0147695550695062,0.0322445295751095,-0.998880803585052,-0.0346024967730045,0.0323852449655533,-0.999334335327148,-0.0167939905077219,0.020983574911952,-0.999685645103455,-0.0137183982878923,0.0144710522145033,-0.999786138534546,-0.0147695550695062,0.0144710522145033,-0.999786138534546,-0.0147695550695062,0.0243081115186214,-0.998917639255524,-0.0396560356020927,0.0322445295751095,-0.998880803585052,-0.0346024967730045,0.0144710522145033,-0.999786138534546,-0.0147695550695062,0.0187129825353622,-0.999626517295837,-0.0199137330055237,0.0243081115186214,-0.998917639255524,-0.0396560356020927,0.0187129825353622,-0.999626517295837,-0.0199137330055237,0.024304885417223,-0.999512672424316,-0.0195838250219822, +0.0243081115186214,-0.998917639255524,-0.0396560356020927,0.0121595682576299,-0.999860167503357,-0.0114769032225013,0.024304885417223,-0.999512672424316,-0.0195838250219822,0.0187129825353622,-0.999626517295837,-0.0199137330055237,0.024304885417223,-0.999512672424316,-0.0195838250219822,0.00747424457222223,-0.999930262565613,-0.00914164632558823,0.0114490082487464,-0.999199032783508,-0.038342323154211,0.0121595682576299,-0.999860167503357,-0.0114769032225013,0.0102866934612393,-0.999776244163513,-0.018481807783246,0.024304885417223,-0.999512672424316,-0.0195838250219822,0.024304885417223,-0.999512672424316,-0.0195838250219822,0.0102866934612393,-0.999776244163513,-0.018481807783246,0.00747424457222223,-0.999930262565613,-0.00914164632558823,0.00747424457222223,-0.999930262565613,-0.00914164632558823,-0.00989023316651583,-0.999816358089447,-0.0164113231003284,0.0114490082487464,-0.999199032783508,-0.038342323154211,-0.0105809951201081,-0.999096691608429,-0.0411546006798744,0.0114490082487464,-0.999199032783508,-0.038342323154211,-0.00989023316651583,-0.999816358089447,-0.0164113231003284,-0.0105809951201081,-0.999096691608429,-0.0411546006798744,-0.00989023316651583,-0.999816358089447,-0.0164113231003284,0.00168793566990644,-0.999578237533569,-0.0289897955954075,-0.0105809951201081,-0.999096691608429,-0.0411546006798744,0.00168793566990644,-0.999578237533569,-0.0289897955954075,0.0100194960832596,-0.999584794044495,-0.027014372870326,0.0100194960832596,-0.999584794044495,-0.027014372870326,0.0179140791296959,-0.999756813049316,-0.0128555344417691,-0.0105809951201081,-0.999096691608429,-0.0411546006798744,0.0100194960832596,-0.999584794044495,-0.027014372870326,0.0747324377298355,-0.996113002300262,0.0466252006590366,0.0179140791296959,-0.999756813049316,-0.0128555344417691,0.117791049182415,-0.979192018508911,0.165251851081848,0.0179140791296959,-0.999756813049316,-0.0128555344417691,0.0747324377298355,-0.996113002300262,0.0466252006590366,0.117791049182415,-0.979192018508911,0.165251851081848,0.0747324377298355,-0.996113002300262,0.0466252006590366, +0.252728819847107,-0.924633681774139,0.284922063350677,0.181974366307259,-0.971222460269928,0.153662323951721,0.252728819847107,-0.924633681774139,0.284922063350677,0.0747324377298355,-0.996113002300262,0.0466252006590366,0.252728819847107,-0.924633681774139,0.284922063350677,0.378556281328201,-0.838217973709106,0.392537415027618,0.412412345409393,-0.723655462265015,0.553388357162476,0.252728819847107,-0.924633681774139,0.284922063350677,0.181974366307259,-0.971222460269928,0.153662323951721,0.378556281328201,-0.838217973709106,0.392537415027618,0.506555259227753,-0.680231273174286,0.529798984527588,0.443045437335968,-0.677261710166931,0.587390124797821,0.412412345409393,-0.723655462265015,0.553388357162476,0.378556281328201,-0.838217973709106,0.392537415027618,0.506555259227753,-0.680231273174286,0.529798984527588,0.412412345409393,-0.723655462265015,0.553388357162476,0.358185887336731,-0.820785045623779,0.444988369941711,0.331636309623718,-0.739624500274658,0.585638761520386,0.443045437335968,-0.677261710166931,0.587390124797821,0.22071173787117,-0.904506742954254,0.364902347326279,0.235907152295113,-0.859161674976349,0.454080283641815,0.331636309623718,-0.739624500274658,0.585638761520386,0.358185887336731,-0.820785045623779,0.444988369941711,0.22071173787117,-0.904506742954254,0.364902347326279,0.331636309623718,-0.739624500274658,0.585638761520386,0.144093662500381,-0.927390098571777,0.345231086015701,0.235907152295113,-0.859161674976349,0.454080283641815,0.128946542739868,-0.957494020462036,0.258026957511902,0.22071173787117,-0.904506742954254,0.364902347326279,0.128946542739868,-0.957494020462036,0.258026957511902,0.235907152295113,-0.859161674976349,0.454080283641815,0.144093662500381,-0.927390098571777,0.345231086015701,0.128946542739868,-0.957494020462036,0.258026957511902,0.0398196503520012,-0.993996679782867,0.101906381547451,0.00359165179543197,-0.998873233795166,0.0473211258649826,0.0398196503520012,-0.993996679782867,0.101906381547451,-0.00657857768237591,-0.998406529426575,-0.0560448952019215,0.0398196503520012,-0.993996679782867,0.101906381547451, +0.0184723176062107,-0.998772919178009,0.0459497682750225,-0.00657857768237591,-0.998406529426575,-0.0560448952019215,0.128946542739868,-0.957494020462036,0.258026957511902,0.0785489827394485,-0.984790146350861,0.154978558421135,0.0398196503520012,-0.993996679782867,0.101906381547451,0.0398196503520012,-0.993996679782867,0.101906381547451,0.0785489827394485,-0.984790146350861,0.154978558421135,0.0184723176062107,-0.998772919178009,0.0459497682750225,-0.00657857768237591,-0.998406529426575,-0.0560448952019215,-0.0221181455999613,-0.995086193084717,-0.0965097770094872,0.00359165179543197,-0.998873233795166,0.0473211258649826,0.0144710522145033,-0.999786138534546,-0.0147695550695062,0.020983574911952,-0.999685645103455,-0.0137183982878923,0.021568400785327,-0.999623477458954,-0.0169592443853617,0.0144710522145033,-0.999786138534546,-0.0147695550695062,0.021568400785327,-0.999623477458954,-0.0169592443853617,0.0187129825353622,-0.999626517295837,-0.0199137330055237,0.0121595682576299,-0.999860167503357,-0.0114769032225013,0.0187129825353622,-0.999626517295837,-0.0199137330055237,0.021568400785327,-0.999623477458954,-0.0169592443853617,0.0121595682576299,-0.999860167503357,-0.0114769032225013,0.021568400785327,-0.999623477458954,-0.0169592443853617,0.0337596498429775,-0.999106764793396,-0.0254137851297855,0.0121595682576299,-0.999860167503357,-0.0114769032225013,0.0337596498429775,-0.999106764793396,-0.0254137851297855,0.0108351120725274,-0.99961519241333,-0.0255351327359676,0.0121595682576299,-0.999860167503357,-0.0114769032225013,0.0108351120725274,-0.99961519241333,-0.0255351327359676,0.0102866934612393,-0.999776244163513,-0.018481807783246,-0.00989023316651583,-0.999816358089447,-0.0164113231003284,0.00747424457222223,-0.999930262565613,-0.00914164632558823,0.0102866934612393,-0.999776244163513,-0.018481807783246,0.0108351120725274,-0.99961519241333,-0.0255351327359676,0.0502747520804405,-0.997401118278503,-0.0516085736453533,0.0102866934612393,-0.999776244163513,-0.018481807783246,-0.00559412548318505,-0.999683499336243,-0.0245250929147005, +-0.00989023316651583,-0.999816358089447,-0.0164113231003284,0.0102866934612393,-0.999776244163513,-0.018481807783246,0.0895073562860489,-0.993259370326996,-0.0736491233110428,0.0102866934612393,-0.999776244163513,-0.018481807783246,0.0502747520804405,-0.997401118278503,-0.0516085736453533,-0.00559412548318505,-0.999683499336243,-0.0245250929147005,0.0102866934612393,-0.999776244163513,-0.018481807783246,0.0285395793616772,-0.997918725013733,-0.0578240565955639,0.0452325455844402,-0.997001051902771,-0.0627902150154114,0.0102866934612393,-0.999776244163513,-0.018481807783246,0.0895073562860489,-0.993259370326996,-0.0736491233110428,0.0285395793616772,-0.997918725013733,-0.0578240565955639,0.0102866934612393,-0.999776244163513,-0.018481807783246,0.0452325455844402,-0.997001051902771,-0.0627902150154114,0.00168793566990644,-0.999578237533569,-0.0289897955954075,-0.00989023316651583,-0.999816358089447,-0.0164113231003284,-0.00559412548318505,-0.999683499336243,-0.0245250929147005,-0.00559412548318505,-0.999683499336243,-0.0245250929147005,0.00844634417444468,-0.999358475208282,-0.0348014868795872,0.00168793566990644,-0.999578237533569,-0.0289897955954075,0.043037798255682,-0.998685717582703,-0.0278289895504713,0.00168793566990644,-0.999578237533569,-0.0289897955954075,0.00844634417444468,-0.999358475208282,-0.0348014868795872,0.0213583074510098,-0.999124825000763,-0.0359630770981312,0.00168793566990644,-0.999578237533569,-0.0289897955954075,0.043037798255682,-0.998685717582703,-0.0278289895504713,0.0100194960832596,-0.999584794044495,-0.027014372870326,0.0645628049969673,-0.997673034667969,0.0219103507697582,0.0747324377298355,-0.996113002300262,0.0466252006590366,0.181974366307259,-0.971222460269928,0.153662323951721,0.0747324377298355,-0.996113002300262,0.0466252006590366,0.0645628049969673,-0.997673034667969,0.0219103507697582,0.181974366307259,-0.971222460269928,0.153662323951721,0.0645628049969673,-0.997673034667969,0.0219103507697582,0.281492471694946,-0.927177309989929,0.247192621231079,0.378556281328201,-0.838217973709106,0.392537415027618, +0.181974366307259,-0.971222460269928,0.153662323951721,0.281492471694946,-0.927177309989929,0.247192621231079,0.128946542739868,-0.957494020462036,0.258026957511902,0.22071173787117,-0.904506742954254,0.364902347326279,0.0785489827394485,-0.984790146350861,0.154978558421135,0.0895073562860489,-0.993259370326996,-0.0736491233110428,0.0502747520804405,-0.997401118278503,-0.0516085736453533,0.0432611666619778,0.999060750007629,0.00244085164740682,0.110816404223442,-0.988604187965393,-0.101889029145241,0.0285395793616772,-0.997918725013733,-0.0578240565955639,0.0452325455844402,-0.997001051902771,-0.0627902150154114,-0.00559412548318505,-0.999683499336243,-0.0245250929147005,0.0285395793616772,-0.997918725013733,-0.0578240565955639,0.00844634417444468,-0.999358475208282,-0.0348014868795872,0.168060839176178,-0.614413797855377,0.770876824855804,0.104648001492023,-0.745454967021942,0.658289849758148,0.0309442467987537,-0.575371563434601,0.817306458950043,0.104648001492023,-0.745454967021942,0.658289849758148,0.168060839176178,-0.614413797855377,0.770876824855804,0.134991869330406,-0.8232581615448,0.551382839679718,-0.133357033133507,-0.762132346630096,0.633537709712982,0.0309442467987537,-0.575371563434601,0.817306458950043,0.104648001492023,-0.745454967021942,0.658289849758148,0.129113391041756,-0.697246253490448,0.705107927322388,0.134991869330406,-0.8232581615448,0.551382839679718,0.168060839176178,-0.614413797855377,0.770876824855804,0.104648001492023,-0.745454967021942,0.658289849758148,0.134991869330406,-0.8232581615448,0.551382839679718,0.074092261493206,-0.963567435741425,0.256998151540756,0.0309442467987537,-0.575371563434601,0.817306458950043,-0.133357033133507,-0.762132346630096,0.633537709712982,-0.219321459531784,-0.576956927776337,0.786777377128601,-0.133357033133507,-0.762132346630096,0.633537709712982,0.104648001492023,-0.745454967021942,0.658289849758148,0.074092261493206,-0.963567435741425,0.256998151540756,0.039522796869278,-0.897197365760803,0.439857631921768,0.134991869330406,-0.8232581615448,0.551382839679718, +0.129113391041756,-0.697246253490448,0.705107927322388,0.074092261493206,-0.963567435741425,0.256998151540756,0.134991869330406,-0.8232581615448,0.551382839679718,0.0567598640918732,-0.984523296356201,0.165807336568832,-0.219321459531784,-0.576956927776337,0.786777377128601,-0.133357033133507,-0.762132346630096,0.633537709712982,-0.379963099956512,-0.677799880504608,0.629456281661987,-0.0302810054272413,-0.974657416343689,0.221643507480621,-0.133357033133507,-0.762132346630096,0.633537709712982,0.074092261493206,-0.963567435741425,0.256998151540756,0.039522796869278,-0.897197365760803,0.439857631921768,0.0567598640918732,-0.984523296356201,0.165807336568832,0.134991869330406,-0.8232581615448,0.551382839679718,-0.0159715935587883,-0.800815999507904,0.598697364330292,0.039522796869278,-0.897197365760803,0.439857631921768,0.129113391041756,-0.697246253490448,0.705107927322388,0.074092261493206,-0.963567435741425,0.256998151540756,0.0567598640918732,-0.984523296356201,0.165807336568832,0.0263913255184889,-0.999604463577271,-0.00971473660320044,-0.133357033133507,-0.762132346630096,0.633537709712982,-0.272545754909515,-0.859851181507111,0.431711405515671,-0.379963099956512,-0.677799880504608,0.629456281661987,-0.133357033133507,-0.762132346630096,0.633537709712982,-0.0302810054272413,-0.974657416343689,0.221643507480621,-0.272545754909515,-0.859851181507111,0.431711405515671,0.0806439444422722,-0.996740341186523,-0.00226468779146671,-0.0302810054272413,-0.974657416343689,0.221643507480621,0.074092261493206,-0.963567435741425,0.256998151540756,0.0567598640918732,-0.984523296356201,0.165807336568832,0.039522796869278,-0.897197365760803,0.439857631921768,0.00573364924639463,-0.996251583099365,0.0863118693232536,0.0497421845793724,-0.916766822338104,0.39631325006485,0.039522796869278,-0.897197365760803,0.439857631921768,-0.0159715935587883,-0.800815999507904,0.598697364330292,0.0567598640918732,-0.984523296356201,0.165807336568832,0.00573364924639463,-0.996251583099365,0.0863118693232536,0.0263913255184889,-0.999604463577271,-0.00971473660320044, +0.0806439444422722,-0.996740341186523,-0.00226468779146671,0.074092261493206,-0.963567435741425,0.256998151540756,0.0263913255184889,-0.999604463577271,-0.00971473660320044,-0.272545754909515,-0.859851181507111,0.431711405515671,-0.455144941806793,-0.733030915260315,0.50547856092453,-0.379963099956512,-0.677799880504608,0.629456281661987,-0.050407949835062,-0.993949174880981,0.0975913554430008,-0.272545754909515,-0.859851181507111,0.431711405515671,-0.0302810054272413,-0.974657416343689,0.221643507480621,0.0688551366329193,-0.997272908687592,-0.0265639815479517,-0.0302810054272413,-0.974657416343689,0.221643507480621,0.0806439444422722,-0.996740341186523,-0.00226468779146671,0.0497421845793724,-0.916766822338104,0.39631325006485,0.00573364924639463,-0.996251583099365,0.0863118693232536,0.039522796869278,-0.897197365760803,0.439857631921768,0.0916284471750259,-0.793682634830475,0.601391613483429,0.0497421845793724,-0.916766822338104,0.39631325006485,-0.0159715935587883,-0.800815999507904,0.598697364330292,-0.0129504380747676,-0.998880803585052,-0.0454892292618752,0.0263913255184889,-0.999604463577271,-0.00971473660320044,0.00573364924639463,-0.996251583099365,0.0863118693232536,0.0806439444422722,-0.996740341186523,-0.00226468779146671,0.0263913255184889,-0.999604463577271,-0.00971473660320044,0.047006893903017,-0.998518943786621,-0.0273886192589998,-0.272545754909515,-0.859851181507111,0.431711405515671,-0.25805851817131,-0.923718869686127,0.283105820417404,-0.455144941806793,-0.733030915260315,0.50547856092453,-0.272545754909515,-0.859851181507111,0.431711405515671,-0.050407949835062,-0.993949174880981,0.0975913554430008,-0.25805851817131,-0.923718869686127,0.283105820417404,-0.050407949835062,-0.993949174880981,0.0975913554430008,-0.0302810054272413,-0.974657416343689,0.221643507480621,0.0688551366329193,-0.997272908687592,-0.0265639815479517,0.0688551366329193,-0.997272908687592,-0.0265639815479517,0.0806439444422722,-0.996740341186523,-0.00226468779146671,0.127972066402435,-0.989606320858002,-0.0655925571918488, +0.111182138323784,-0.973299503326416,0.200814068317413,0.00573364924639463,-0.996251583099365,0.0863118693232536,0.0497421845793724,-0.916766822338104,0.39631325006485,0.0916284471750259,-0.793682634830475,0.601391613483429,0.218147307634354,-0.827641844749451,0.517127275466919,0.0497421845793724,-0.916766822338104,0.39631325006485,-0.0129504380747676,-0.998880803585052,-0.0454892292618752,0.0180694703012705,-0.998579442501068,-0.0501226522028446,0.0263913255184889,-0.999604463577271,-0.00971473660320044,-0.00328072579577565,-0.999989628791809,-0.00314005394466221,-0.0129504380747676,-0.998880803585052,-0.0454892292618752,0.00573364924639463,-0.996251583099365,0.0863118693232536,0.047006893903017,-0.998518943786621,-0.0273886192589998,0.0263913255184889,-0.999604463577271,-0.00971473660320044,0.0180694703012705,-0.998579442501068,-0.0501226522028446,0.0806439444422722,-0.996740341186523,-0.00226468779146671,0.047006893903017,-0.998518943786621,-0.0273886192589998,0.142150819301605,-0.988779723644257,-0.0459093116223812,-0.25805851817131,-0.923718869686127,0.283105820417404,-0.409708291292191,-0.782580256462097,0.468729257583618,-0.455144941806793,-0.733030915260315,0.50547856092453,0.00221211230382323,-0.999956727027893,-0.00902872439473867,-0.25805851817131,-0.923718869686127,0.283105820417404,-0.050407949835062,-0.993949174880981,0.0975913554430008,0.0688551366329193,-0.997272908687592,-0.0265639815479517,0.0904784724116325,-0.991862773895264,-0.0895645543932915,-0.050407949835062,-0.993949174880981,0.0975913554430008,0.0806439444422722,-0.996740341186523,-0.00226468779146671,0.142150819301605,-0.988779723644257,-0.0459093116223812,0.127972066402435,-0.989606320858002,-0.0655925571918488,0.0688551366329193,-0.997272908687592,-0.0265639815479517,0.127972066402435,-0.989606320858002,-0.0655925571918488,0.271335422992706,-0.950131773948669,-0.1537094861269,-0.00328072579577565,-0.999989628791809,-0.00314005394466221,0.00573364924639463,-0.996251583099365,0.0863118693232536,0.111182138323784,-0.973299503326416,0.200814068317413, +0.111182138323784,-0.973299503326416,0.200814068317413,0.0497421845793724,-0.916766822338104,0.39631325006485,0.218147307634354,-0.827641844749451,0.517127275466919,0.0916284471750259,-0.793682634830475,0.601391613483429,0.353142261505127,-0.651618957519531,0.671329319477081,0.218147307634354,-0.827641844749451,0.517127275466919,-0.0221687331795692,-0.998738527297974,-0.0450534969568253,0.0180694703012705,-0.998579442501068,-0.0501226522028446,-0.0129504380747676,-0.998880803585052,-0.0454892292618752,-0.0751076489686966,-0.992904424667358,-0.0921928212046623,-0.0129504380747676,-0.998880803585052,-0.0454892292618752,-0.00328072579577565,-0.999989628791809,-0.00314005394466221,-0.0221687331795692,-0.998738527297974,-0.0450534969568253,0.047006893903017,-0.998518943786621,-0.0273886192589998,0.0180694703012705,-0.998579442501068,-0.0501226522028446,0.047006893903017,-0.998518943786621,-0.0273886192589998,0.144140556454659,-0.989555180072784,-0.0019798472058028,0.142150819301605,-0.988779723644257,-0.0459093116223812,-0.25805851817131,-0.923718869686127,0.283105820417404,-0.19473323225975,-0.957117319107056,0.214487910270691,-0.409708291292191,-0.782580256462097,0.468729257583618,-0.455144941806793,-0.733030915260315,0.50547856092453,-0.409708291292191,-0.782580256462097,0.468729257583618,-0.474688947200775,-0.686963498592377,0.550228476524353,-0.25805851817131,-0.923718869686127,0.283105820417404,0.00221211230382323,-0.999956727027893,-0.00902872439473867,-0.19473323225975,-0.957117319107056,0.214487910270691,0.00221211230382323,-0.999956727027893,-0.00902872439473867,-0.050407949835062,-0.993949174880981,0.0975913554430008,0.0904784724116325,-0.991862773895264,-0.0895645543932915,0.271335422992706,-0.950131773948669,-0.1537094861269,0.0904784724116325,-0.991862773895264,-0.0895645543932915,0.0688551366329193,-0.997272908687592,-0.0265639815479517,0.153606235980988,-0.987659633159637,-0.0305529180914164,0.127972066402435,-0.989606320858002,-0.0655925571918488,0.142150819301605,-0.988779723644257,-0.0459093116223812, +0.476398497819901,-0.870094656944275,-0.126410618424416,0.271335422992706,-0.950131773948669,-0.1537094861269,0.127972066402435,-0.989606320858002,-0.0655925571918488,0.0928514748811722,-0.992798864841461,0.0756900385022163,-0.00328072579577565,-0.999989628791809,-0.00314005394466221,0.111182138323784,-0.973299503326416,0.200814068317413,0.296904057264328,-0.884543597698212,0.359764397144318,0.111182138323784,-0.973299503326416,0.200814068317413,0.218147307634354,-0.827641844749451,0.517127275466919,0.296904057264328,-0.884543597698212,0.359764397144318,0.218147307634354,-0.827641844749451,0.517127275466919,0.353142261505127,-0.651618957519531,0.671329319477081,-0.0221687331795692,-0.998738527297974,-0.0450534969568253,-0.0129504380747676,-0.998880803585052,-0.0454892292618752,-0.0751076489686966,-0.992904424667358,-0.0921928212046623,-0.00328072579577565,-0.999989628791809,-0.00314005394466221,-0.0610741451382637,-0.994511246681213,-0.0849543064832687,-0.0751076489686966,-0.992904424667358,-0.0921928212046623,-0.0221687331795692,-0.998738527297974,-0.0450534969568253,-0.0043971324339509,-0.999989151954651,0.00152654503472149,0.047006893903017,-0.998518943786621,-0.0273886192589998,0.144140556454659,-0.989555180072784,-0.0019798472058028,0.047006893903017,-0.998518943786621,-0.0273886192589998,0.0255380738526583,-0.999607682228088,0.0114881005138159,0.142150819301605,-0.988779723644257,-0.0459093116223812,0.144140556454659,-0.989555180072784,-0.0019798472058028,0.153606235980988,-0.987659633159637,-0.0305529180914164,-0.357408374547958,-0.856166124343872,0.373147130012512,-0.409708291292191,-0.782580256462097,0.468729257583618,-0.19473323225975,-0.957117319107056,0.214487910270691,-0.357408374547958,-0.856166124343872,0.373147130012512,-0.474688947200775,-0.686963498592377,0.550228476524353,-0.409708291292191,-0.782580256462097,0.468729257583618,0.00221211230382323,-0.999956727027893,-0.00902872439473867,-0.0993935689330101,-0.990446448326111,0.0955862179398537,-0.19473323225975,-0.957117319107056,0.214487910270691, +0.0904784724116325,-0.991862773895264,-0.0895645543932915,0.164928287267685,-0.969408094882965,-0.181787103414536,0.00221211230382323,-0.999956727027893,-0.00902872439473867,0.271335422992706,-0.950131773948669,-0.1537094861269,0.380041241645813,-0.88980621099472,-0.252612769603729,0.0904784724116325,-0.991862773895264,-0.0895645543932915,0.153606235980988,-0.987659633159637,-0.0305529180914164,0.155409842729568,-0.987775027751923,-0.0121751492843032,0.127972066402435,-0.989606320858002,-0.0655925571918488,0.476398497819901,-0.870094656944275,-0.126410618424416,0.656744718551636,-0.693685710430145,-0.29578110575676,0.271335422992706,-0.950131773948669,-0.1537094861269,0.476398497819901,-0.870094656944275,-0.126410618424416,0.127972066402435,-0.989606320858002,-0.0655925571918488,0.155409842729568,-0.987775027751923,-0.0121751492843032,0.0928514748811722,-0.992798864841461,0.0756900385022163,-0.0610741451382637,-0.994511246681213,-0.0849543064832687,-0.00328072579577565,-0.999989628791809,-0.00314005394466221,0.0928514748811722,-0.992798864841461,0.0756900385022163,0.111182138323784,-0.973299503326416,0.200814068317413,0.296904057264328,-0.884543597698212,0.359764397144318,0.444893777370453,-0.730442523956299,0.518192112445831,0.296904057264328,-0.884543597698212,0.359764397144318,0.353142261505127,-0.651618957519531,0.671329319477081,-0.171603113412857,-0.977608799934387,-0.121792130172253,-0.0221687331795692,-0.998738527297974,-0.0450534969568253,-0.0751076489686966,-0.992904424667358,-0.0921928212046623,-0.0751076489686966,-0.992904424667358,-0.0921928212046623,-0.0610741451382637,-0.994511246681213,-0.0849543064832687,-0.169975727796555,-0.969295501708984,-0.177691802382469,-0.0221687331795692,-0.998738527297974,-0.0450534969568253,-0.0883512645959854,-0.995815992355347,-0.023334052413702,-0.0043971324339509,-0.999989151954651,0.00152654503472149,-0.0043971324339509,-0.999989151954651,0.00152654503472149,0.0255380738526583,-0.999607682228088,0.0114881005138159,0.047006893903017,-0.998518943786621,-0.0273886192589998, +0.144140556454659,-0.989555180072784,-0.0019798472058028,0.0255380738526583,-0.999607682228088,0.0114881005138159,0.139507234096527,-0.988946676254272,-0.0502199158072472,0.144140556454659,-0.989555180072784,-0.0019798472058028,0.155409842729568,-0.987775027751923,-0.0121751492843032,0.153606235980988,-0.987659633159637,-0.0305529180914164,-0.0993935689330101,-0.990446448326111,0.0955862179398537,-0.357408374547958,-0.856166124343872,0.373147130012512,-0.19473323225975,-0.957117319107056,0.214487910270691,-0.474688947200775,-0.686963498592377,0.550228476524353,-0.357408374547958,-0.856166124343872,0.373147130012512,-0.537781059741974,-0.773346543312073,0.335747689008713,0.00221211230382323,-0.999956727027893,-0.00902872439473867,0.135786861181259,-0.985840201377869,-0.0983916670084,-0.0993935689330101,-0.990446448326111,0.0955862179398537,0.380041241645813,-0.88980621099472,-0.252612769603729,0.164928287267685,-0.969408094882965,-0.181787103414536,0.0904784724116325,-0.991862773895264,-0.0895645543932915,0.164928287267685,-0.969408094882965,-0.181787103414536,0.18709434568882,-0.96151077747345,-0.201227635145187,0.00221211230382323,-0.999956727027893,-0.00902872439473867,0.380041241645813,-0.88980621099472,-0.252612769603729,0.271335422992706,-0.950131773948669,-0.1537094861269,0.639754891395569,-0.717177748680115,-0.276350378990173,0.656744718551636,-0.693685710430145,-0.29578110575676,0.476398497819901,-0.870094656944275,-0.126410618424416,0.778610348701477,-0.587314128875732,-0.220970332622528,0.656744718551636,-0.693685710430145,-0.29578110575676,0.639754891395569,-0.717177748680115,-0.276350378990173,0.271335422992706,-0.950131773948669,-0.1537094861269,0.476398497819901,-0.870094656944275,-0.126410618424416,0.155409842729568,-0.987775027751923,-0.0121751492843032,0.476559072732925,-0.876515626907349,-0.0679090917110443,-0.00987988989800215,-0.999942064285278,-0.00425811624154449,-0.0610741451382637,-0.994511246681213,-0.0849543064832687,0.0928514748811722,-0.992798864841461,0.0756900385022163,0.149158820509911,-0.970673203468323,0.188534155488014, +0.0928514748811722,-0.992798864841461,0.0756900385022163,0.296904057264328,-0.884543597698212,0.359764397144318,0.444893777370453,-0.730442523956299,0.518192112445831,0.149158820509911,-0.970673203468323,0.188534155488014,0.296904057264328,-0.884543597698212,0.359764397144318,0.591926097869873,-0.381469637155533,0.710003018379211,0.444893777370453,-0.730442523956299,0.518192112445831,0.353142261505127,-0.651618957519531,0.671329319477081,-0.171603113412857,-0.977608799934387,-0.121792130172253,-0.0883512645959854,-0.995815992355347,-0.023334052413702,-0.0221687331795692,-0.998738527297974,-0.0450534969568253,-0.171603113412857,-0.977608799934387,-0.121792130172253,-0.0751076489686966,-0.992904424667358,-0.0921928212046623,-0.277583748102188,-0.93305629491806,-0.228808045387268,-0.0610741451382637,-0.994511246681213,-0.0849543064832687,-0.30286779999733,-0.91792768239975,-0.256280481815338,-0.169975727796555,-0.969295501708984,-0.177691802382469,-0.0751076489686966,-0.992904424667358,-0.0921928212046623,-0.169975727796555,-0.969295501708984,-0.177691802382469,-0.277583748102188,-0.93305629491806,-0.228808045387268,0.0255380738526583,-0.999607682228088,0.0114881005138159,-0.0043971324339509,-0.999989151954651,0.00152654503472149,-0.0883512645959854,-0.995815992355347,-0.023334052413702,-0.000476566841825843,-0.999766767024994,0.0215892791748047,0.139507234096527,-0.988946676254272,-0.0502199158072472,0.0255380738526583,-0.999607682228088,0.0114881005138159,0.144140556454659,-0.989555180072784,-0.0019798472058028,0.139507234096527,-0.988946676254272,-0.0502199158072472,0.214405000209808,-0.975381731987,-0.0515841580927372,0.144140556454659,-0.989555180072784,-0.0019798472058028,0.185997292399406,-0.982483208179474,-0.0114728920161724,0.155409842729568,-0.987775027751923,-0.0121751492843032,-0.357408374547958,-0.856166124343872,0.373147130012512,-0.0993935689330101,-0.990446448326111,0.0955862179398537,-0.340551406145096,-0.917936861515045,0.203510582447052,-0.357408374547958,-0.856166124343872,0.373147130012512,-0.340551406145096,-0.917936861515045,0.203510582447052, +-0.537781059741974,-0.773346543312073,0.335747689008713,0.135786861181259,-0.985840201377869,-0.0983916670084,0.00221211230382323,-0.999956727027893,-0.00902872439473867,0.18709434568882,-0.96151077747345,-0.201227635145187,0.135786861181259,-0.985840201377869,-0.0983916670084,-0.020694037899375,-0.99973464012146,-0.010114312171936,-0.0993935689330101,-0.990446448326111,0.0955862179398537,0.380041241645813,-0.88980621099472,-0.252612769603729,0.353421717882156,-0.826284766197205,-0.438573241233826,0.164928287267685,-0.969408094882965,-0.181787103414536,0.164928287267685,-0.969408094882965,-0.181787103414536,0.353421717882156,-0.826284766197205,-0.438573241233826,0.18709434568882,-0.96151077747345,-0.201227635145187,0.558647692203522,-0.687967240810394,-0.463264107704163,0.380041241645813,-0.88980621099472,-0.252612769603729,0.639754891395569,-0.717177748680115,-0.276350378990173,0.778610348701477,-0.587314128875732,-0.220970332622528,0.476398497819901,-0.870094656944275,-0.126410618424416,0.798410177230835,-0.586962759494781,-0.134223222732544,0.656744718551636,-0.693685710430145,-0.29578110575676,0.778610348701477,-0.587314128875732,-0.220970332622528,0.736960232257843,-0.58683443069458,-0.335432231426239,0.639754891395569,-0.717177748680115,-0.276350378990173,0.656744718551636,-0.693685710430145,-0.29578110575676,0.666936457157135,-0.647988200187683,-0.367840796709061,0.185997292399406,-0.982483208179474,-0.0114728920161724,0.476559072732925,-0.876515626907349,-0.0679090917110443,0.155409842729568,-0.987775027751923,-0.0121751492843032,0.476559072732925,-0.876515626907349,-0.0679090917110443,0.798410177230835,-0.586962759494781,-0.134223222732544,0.476398497819901,-0.870094656944275,-0.126410618424416,-0.169772952795029,-0.976947546005249,-0.129423812031746,-0.0610741451382637,-0.994511246681213,-0.0849543064832687,-0.00987988989800215,-0.999942064285278,-0.00425811624154449,0.0928514748811722,-0.992798864841461,0.0756900385022163,0.149158820509911,-0.970673203468323,0.188534155488014,-0.00987988989800215,-0.999942064285278,-0.00425811624154449, +0.217045292258263,-0.903323292732239,0.36999773979187,0.149158820509911,-0.970673203468323,0.188534155488014,0.444893777370453,-0.730442523956299,0.518192112445831,0.469941169023514,-0.815891683101654,0.336862057447433,0.444893777370453,-0.730442523956299,0.518192112445831,0.591926097869873,-0.381469637155533,0.710003018379211,-0.171603113412857,-0.977608799934387,-0.121792130172253,-0.305969268083572,-0.946202039718628,-0.105282485485077,-0.0883512645959854,-0.995815992355347,-0.023334052413702,-0.277583748102188,-0.93305629491806,-0.228808045387268,-0.432275027036667,-0.858059108257294,-0.277259528636932,-0.171603113412857,-0.977608799934387,-0.121792130172253,-0.169772952795029,-0.976947546005249,-0.129423812031746,-0.30286779999733,-0.91792768239975,-0.256280481815338,-0.0610741451382637,-0.994511246681213,-0.0849543064832687,-0.431036978960037,-0.82799357175827,-0.358655244112015,-0.169975727796555,-0.969295501708984,-0.177691802382469,-0.30286779999733,-0.91792768239975,-0.256280481815338,-0.431036978960037,-0.82799357175827,-0.358655244112015,-0.277583748102188,-0.93305629491806,-0.228808045387268,-0.169975727796555,-0.969295501708984,-0.177691802382469,0.0255380738526583,-0.999607682228088,0.0114881005138159,-0.0883512645959854,-0.995815992355347,-0.023334052413702,-0.185191556811333,-0.982533097267151,0.0182387176901102,0.019340893253684,-0.999812543392181,0.000700145377777517,0.139507234096527,-0.988946676254272,-0.0502199158072472,-0.000476566841825843,-0.999766767024994,0.0215892791748047,-0.185191556811333,-0.982533097267151,0.0182387176901102,-0.000476566841825843,-0.999766767024994,0.0215892791748047,0.0255380738526583,-0.999607682228088,0.0114881005138159,0.256227433681488,-0.958962798118591,-0.12139917165041,0.144140556454659,-0.989555180072784,-0.0019798472058028,0.214405000209808,-0.975381731987,-0.0515841580927372,0.256227433681488,-0.958962798118591,-0.12139917165041,0.185997292399406,-0.982483208179474,-0.0114728920161724,0.144140556454659,-0.989555180072784,-0.0019798472058028,-0.0993935689330101,-0.990446448326111,0.0955862179398537, +-0.020694037899375,-0.99973464012146,-0.010114312171936,-0.340551406145096,-0.917936861515045,0.203510582447052,0.135786861181259,-0.985840201377869,-0.0983916670084,0.18709434568882,-0.96151077747345,-0.201227635145187,0.317339152097702,-0.899321377277374,-0.300860226154327,0.135786861181259,-0.985840201377869,-0.0983916670084,0.195589005947113,-0.963940680027008,-0.180452942848206,-0.020694037899375,-0.99973464012146,-0.010114312171936,0.380041241645813,-0.88980621099472,-0.252612769603729,0.558647692203522,-0.687967240810394,-0.463264107704163,0.353421717882156,-0.826284766197205,-0.438573241233826,0.353421717882156,-0.826284766197205,-0.438573241233826,0.317339152097702,-0.899321377277374,-0.300860226154327,0.18709434568882,-0.96151077747345,-0.201227635145187,0.639754891395569,-0.717177748680115,-0.276350378990173,0.602038145065308,-0.687158584594727,-0.40664866566658,0.558647692203522,-0.687967240810394,-0.463264107704163,0.666936457157135,-0.647988200187683,-0.367840796709061,0.656744718551636,-0.693685710430145,-0.29578110575676,0.736960232257843,-0.58683443069458,-0.335432231426239,0.639754891395569,-0.717177748680115,-0.276350378990173,0.666936457157135,-0.647988200187683,-0.367840796709061,0.593249201774597,-0.720966875553131,-0.358136862516403,0.44307205080986,-0.882459819316864,-0.157961055636406,0.476559072732925,-0.876515626907349,-0.0679090917110443,0.185997292399406,-0.982483208179474,-0.0114728920161724,0.798410177230835,-0.586962759494781,-0.134223222732544,0.476559072732925,-0.876515626907349,-0.0679090917110443,0.787183046340942,-0.589440822601318,-0.181389316916466,0.0495869107544422,-0.998399972915649,0.0271767526865005,-0.169772952795029,-0.976947546005249,-0.129423812031746,-0.00987988989800215,-0.999942064285278,-0.00425811624154449,0.0495869107544422,-0.998399972915649,0.0271767526865005,-0.00987988989800215,-0.999942064285278,-0.00425811624154449,0.149158820509911,-0.970673203468323,0.188534155488014,0.215186566114426,-0.952173352241516,0.216934636235237,0.149158820509911,-0.970673203468323,0.188534155488014, +0.217045292258263,-0.903323292732239,0.36999773979187,0.469941169023514,-0.815891683101654,0.336862057447433,0.217045292258263,-0.903323292732239,0.36999773979187,0.444893777370453,-0.730442523956299,0.518192112445831,-0.171603113412857,-0.977608799934387,-0.121792130172253,-0.432275027036667,-0.858059108257294,-0.277259528636932,-0.305969268083572,-0.946202039718628,-0.105282485485077,-0.305969268083572,-0.946202039718628,-0.105282485485077,-0.185191556811333,-0.982533097267151,0.0182387176901102,-0.0883512645959854,-0.995815992355347,-0.023334052413702,-0.277583748102188,-0.93305629491806,-0.228808045387268,-0.55541718006134,-0.727104842662811,-0.403522163629532,-0.432275027036667,-0.858059108257294,-0.277259528636932,-0.169772952795029,-0.976947546005249,-0.129423812031746,-0.485045790672302,-0.803629338741302,-0.344833761453629,-0.30286779999733,-0.91792768239975,-0.256280481815338,-0.431036978960037,-0.82799357175827,-0.358655244112015,-0.30286779999733,-0.91792768239975,-0.256280481815338,-0.549823641777039,-0.718385517597198,-0.426164299249649,-0.431036978960037,-0.82799357175827,-0.358655244112015,-0.55541718006134,-0.727104842662811,-0.403522163629532,-0.277583748102188,-0.93305629491806,-0.228808045387268,-0.000476566841825843,-0.999766767024994,0.0215892791748047,-0.081295944750309,-0.9940544962883,0.0724327936768532,0.019340893253684,-0.999812543392181,0.000700145377777517,-0.185191556811333,-0.982533097267151,0.0182387176901102,-0.251435548067093,-0.96356600522995,0.091217115521431,-0.000476566841825843,-0.999766767024994,0.0215892791748047,0.256227433681488,-0.958962798118591,-0.12139917165041,0.44307205080986,-0.882459819316864,-0.157961055636406,0.185997292399406,-0.982483208179474,-0.0114728920161724,0.135786861181259,-0.985840201377869,-0.0983916670084,0.317339152097702,-0.899321377277374,-0.300860226154327,0.195589005947113,-0.963940680027008,-0.180452942848206,0.353421717882156,-0.826284766197205,-0.438573241233826,0.558647692203522,-0.687967240810394,-0.463264107704163,0.37223282456398,-0.738109529018402,-0.562704980373383, +0.317339152097702,-0.899321377277374,-0.300860226154327,0.353421717882156,-0.826284766197205,-0.438573241233826,0.311445504426956,-0.780799031257629,-0.541622042655945,0.593249201774597,-0.720966875553131,-0.358136862516403,0.602038145065308,-0.687158584594727,-0.40664866566658,0.639754891395569,-0.717177748680115,-0.276350378990173,0.37223282456398,-0.738109529018402,-0.562704980373383,0.558647692203522,-0.687967240810394,-0.463264107704163,0.602038145065308,-0.687158584594727,-0.40664866566658,0.44307205080986,-0.882459819316864,-0.157961055636406,0.787183046340942,-0.589440822601318,-0.181389316916466,0.476559072732925,-0.876515626907349,-0.0679090917110443,-0.169772952795029,-0.976947546005249,-0.129423812031746,0.0495869107544422,-0.998399972915649,0.0271767526865005,-0.134318009018898,-0.988624393939972,-0.0676784887909889,0.0495869107544422,-0.998399972915649,0.0271767526865005,0.149158820509911,-0.970673203468323,0.188534155488014,0.215186566114426,-0.952173352241516,0.216934636235237,0.215186566114426,-0.952173352241516,0.216934636235237,0.217045292258263,-0.903323292732239,0.36999773979187,0.469941169023514,-0.815891683101654,0.336862057447433,-0.528153479099274,-0.818183183670044,-0.227222323417664,-0.305969268083572,-0.946202039718628,-0.105282485485077,-0.432275027036667,-0.858059108257294,-0.277259528636932,-0.305969268083572,-0.946202039718628,-0.105282485485077,-0.50208854675293,-0.864154458045959,-0.0338230207562447,-0.185191556811333,-0.982533097267151,0.0182387176901102,-0.641942322254181,-0.676494956016541,-0.360921710729599,-0.432275027036667,-0.858059108257294,-0.277259528636932,-0.55541718006134,-0.727104842662811,-0.403522163629532,-0.485045790672302,-0.803629338741302,-0.344833761453629,-0.169772952795029,-0.976947546005249,-0.129423812031746,-0.396453648805618,-0.885535478591919,-0.242180213332176,-0.549823641777039,-0.718385517597198,-0.426164299249649,-0.30286779999733,-0.91792768239975,-0.256280481815338,-0.485045790672302,-0.803629338741302,-0.344833761453629,-0.549823641777039,-0.718385517597198,-0.426164299249649, +-0.627071142196655,-0.613172173500061,-0.48041820526123,-0.431036978960037,-0.82799357175827,-0.358655244112015,-0.431036978960037,-0.82799357175827,-0.358655244112015,-0.627071142196655,-0.613172173500061,-0.48041820526123,-0.55541718006134,-0.727104842662811,-0.403522163629532,-0.000476566841825843,-0.999766767024994,0.0215892791748047,-0.251435548067093,-0.96356600522995,0.091217115521431,-0.081295944750309,-0.9940544962883,0.0724327936768532,-0.081295944750309,-0.9940544962883,0.0724327936768532,-0.116527996957302,-0.980892300605774,0.155792877078056,0.019340893253684,-0.999812543392181,0.000700145377777517,-0.50208854675293,-0.864154458045959,-0.0338230207562447,-0.251435548067093,-0.96356600522995,0.091217115521431,-0.185191556811333,-0.982533097267151,0.0182387176901102,0.273695230484009,-0.885812759399414,-0.37473526597023,0.195589005947113,-0.963940680027008,-0.180452942848206,0.317339152097702,-0.899321377277374,-0.300860226154327,0.311445504426956,-0.780799031257629,-0.541622042655945,0.353421717882156,-0.826284766197205,-0.438573241233826,0.37223282456398,-0.738109529018402,-0.562704980373383,0.273695230484009,-0.885812759399414,-0.37473526597023,0.317339152097702,-0.899321377277374,-0.300860226154327,0.311445504426956,-0.780799031257629,-0.541622042655945,0.593249201774597,-0.720966875553131,-0.358136862516403,0.37223282456398,-0.738109529018402,-0.562704980373383,0.602038145065308,-0.687158584594727,-0.40664866566658,0.0189902670681477,-0.999818980693817,0.00110918597783893,-0.134318009018898,-0.988624393939972,-0.0676784887909889,0.0495869107544422,-0.998399972915649,0.0271767526865005,-0.169772952795029,-0.976947546005249,-0.129423812031746,-0.134318009018898,-0.988624393939972,-0.0676784887909889,-0.396453648805618,-0.885535478591919,-0.242180213332176,0.0495869107544422,-0.998399972915649,0.0271767526865005,0.215186566114426,-0.952173352241516,0.216934636235237,0.299316495656967,-0.954096674919128,0.0104445954784751,0.215186566114426,-0.952173352241516,0.216934636235237,0.469941169023514,-0.815891683101654,0.336862057447433, +0.299316495656967,-0.954096674919128,0.0104445954784751,-0.305969268083572,-0.946202039718628,-0.105282485485077,-0.528153479099274,-0.818183183670044,-0.227222323417664,-0.50208854675293,-0.864154458045959,-0.0338230207562447,-0.528153479099274,-0.818183183670044,-0.227222323417664,-0.432275027036667,-0.858059108257294,-0.277259528636932,-0.641942322254181,-0.676494956016541,-0.360921710729599,-0.641942322254181,-0.676494956016541,-0.360921710729599,-0.55541718006134,-0.727104842662811,-0.403522163629532,-0.673972606658936,-0.593026638031006,-0.440545260906219,-0.485045790672302,-0.803629338741302,-0.344833761453629,-0.396453648805618,-0.885535478591919,-0.242180213332176,-0.636269629001617,-0.664388597011566,-0.392107874155045,-0.549823641777039,-0.718385517597198,-0.426164299249649,-0.485045790672302,-0.803629338741302,-0.344833761453629,-0.64163076877594,-0.611781299114227,-0.462637484073639,-0.549823641777039,-0.718385517597198,-0.426164299249649,-0.64163076877594,-0.611781299114227,-0.462637484073639,-0.627071142196655,-0.613172173500061,-0.48041820526123,-0.55541718006134,-0.727104842662811,-0.403522163629532,-0.627071142196655,-0.613172173500061,-0.48041820526123,-0.673972606658936,-0.593026638031006,-0.440545260906219,-0.251435548067093,-0.96356600522995,0.091217115521431,-0.325855672359467,-0.917914211750031,0.226387873291969,-0.081295944750309,-0.9940544962883,0.0724327936768532,-0.081295944750309,-0.9940544962883,0.0724327936768532,-0.325855672359467,-0.917914211750031,0.226387873291969,-0.116527996957302,-0.980892300605774,0.155792877078056,-0.50208854675293,-0.864154458045959,-0.0338230207562447,-0.583659112453461,-0.801514744758606,0.13006167113781,-0.251435548067093,-0.96356600522995,0.091217115521431,0.0189902670681477,-0.999818980693817,0.00110918597783893,-0.192101359367371,-0.981069922447205,-0.0244692545384169,-0.134318009018898,-0.988624393939972,-0.0676784887909889,0.0495869107544422,-0.998399972915649,0.0271767526865005,0.299316495656967,-0.954096674919128,0.0104445954784751,0.0189902670681477,-0.999818980693817,0.00110918597783893, +-0.351402044296265,-0.926632702350616,-0.133672222495079,-0.396453648805618,-0.885535478591919,-0.242180213332176,-0.134318009018898,-0.988624393939972,-0.0676784887909889,0.114452183246613,-0.978702902793884,-0.170414760708809,0.299316495656967,-0.954096674919128,0.0104445954784751,0.469941169023514,-0.815891683101654,0.336862057447433,-0.528153479099274,-0.818183183670044,-0.227222323417664,-0.663721561431885,-0.718635857105255,-0.20745162665844,-0.50208854675293,-0.864154458045959,-0.0338230207562447,-0.528153479099274,-0.818183183670044,-0.227222323417664,-0.641942322254181,-0.676494956016541,-0.360921710729599,-0.663721561431885,-0.718635857105255,-0.20745162665844,-0.641942322254181,-0.676494956016541,-0.360921710729599,-0.673972606658936,-0.593026638031006,-0.440545260906219,-0.724077165126801,-0.623618960380554,-0.29463791847229,-0.396453648805618,-0.885535478591919,-0.242180213332176,-0.563574731349945,-0.773372530937195,-0.290307193994522,-0.636269629001617,-0.664388597011566,-0.392107874155045,-0.485045790672302,-0.803629338741302,-0.344833761453629,-0.636269629001617,-0.664388597011566,-0.392107874155045,-0.64163076877594,-0.611781299114227,-0.462637484073639,-0.635008573532104,-0.605691194534302,-0.479481071233749,-0.627071142196655,-0.613172173500061,-0.48041820526123,-0.64163076877594,-0.611781299114227,-0.462637484073639,-0.60878598690033,-0.648826479911804,-0.456512629985809,-0.673972606658936,-0.593026638031006,-0.440545260906219,-0.627071142196655,-0.613172173500061,-0.48041820526123,-0.251435548067093,-0.96356600522995,0.091217115521431,-0.583659112453461,-0.801514744758606,0.13006167113781,-0.325855672359467,-0.917914211750031,0.226387873291969,-0.116527996957302,-0.980892300605774,0.155792877078056,-0.325855672359467,-0.917914211750031,0.226387873291969,-0.36477854847908,-0.840851664543152,0.399881154298782,-0.50208854675293,-0.864154458045959,-0.0338230207562447,-0.697792887687683,-0.713211715221405,-0.0664384886622429,-0.583659112453461,-0.801514744758606,0.13006167113781,-0.124276474118233,-0.992247521877289,0.000360319158062339, +-0.192101359367371,-0.981069922447205,-0.0244692545384169,0.0189902670681477,-0.999818980693817,0.00110918597783893,-0.192101359367371,-0.981069922447205,-0.0244692545384169,-0.351402044296265,-0.926632702350616,-0.133672222495079,-0.134318009018898,-0.988624393939972,-0.0676784887909889,-0.103571563959122,-0.990683674812317,-0.0884237587451935,0.0189902670681477,-0.999818980693817,0.00110918597783893,0.299316495656967,-0.954096674919128,0.0104445954784751,-0.351402044296265,-0.926632702350616,-0.133672222495079,-0.563574731349945,-0.773372530937195,-0.290307193994522,-0.396453648805618,-0.885535478591919,-0.242180213332176,-0.103571563959122,-0.990683674812317,-0.0884237587451935,0.299316495656967,-0.954096674919128,0.0104445954784751,0.114452183246613,-0.978702902793884,-0.170414760708809,-0.663721561431885,-0.718635857105255,-0.20745162665844,-0.697792887687683,-0.713211715221405,-0.0664384886622429,-0.50208854675293,-0.864154458045959,-0.0338230207562447,-0.641942322254181,-0.676494956016541,-0.360921710729599,-0.724077165126801,-0.623618960380554,-0.29463791847229,-0.663721561431885,-0.718635857105255,-0.20745162665844,-0.724077165126801,-0.623618960380554,-0.29463791847229,-0.673972606658936,-0.593026638031006,-0.440545260906219,-0.660858511924744,-0.664384603500366,-0.349083006381989,-0.636269629001617,-0.664388597011566,-0.392107874155045,-0.563574731349945,-0.773372530937195,-0.290307193994522,-0.696264863014221,-0.651738345623016,-0.300752699375153,-0.643431961536407,-0.631065130233765,-0.433303475379944,-0.64163076877594,-0.611781299114227,-0.462637484073639,-0.636269629001617,-0.664388597011566,-0.392107874155045,-0.635008573532104,-0.605691194534302,-0.479481071233749,-0.60878598690033,-0.648826479911804,-0.456512629985809,-0.627071142196655,-0.613172173500061,-0.48041820526123,-0.64163076877594,-0.611781299114227,-0.462637484073639,-0.643431961536407,-0.631065130233765,-0.433303475379944,-0.635008573532104,-0.605691194534302,-0.479481071233749,-0.660858511924744,-0.664384603500366,-0.349083006381989, +-0.673972606658936,-0.593026638031006,-0.440545260906219,-0.60878598690033,-0.648826479911804,-0.456512629985809,-0.583659112453461,-0.801514744758606,0.13006167113781,-0.586687326431274,-0.738007724285126,0.333380520343781,-0.325855672359467,-0.917914211750031,0.226387873291969,-0.36477854847908,-0.840851664543152,0.399881154298782,-0.325855672359467,-0.917914211750031,0.226387873291969,-0.586687326431274,-0.738007724285126,0.333380520343781,-0.667230725288391,-0.736421167850494,0.111745290458202,-0.583659112453461,-0.801514744758606,0.13006167113781,-0.697792887687683,-0.713211715221405,-0.0664384886622429,-0.124276474118233,-0.992247521877289,0.000360319158062339,-0.322700500488281,-0.946500480175018,0.00104723311960697,-0.192101359367371,-0.981069922447205,-0.0244692545384169,-0.124276474118233,-0.992247521877289,0.000360319158062339,0.0189902670681477,-0.999818980693817,0.00110918597783893,-0.103571563959122,-0.990683674812317,-0.0884237587451935,-0.351402044296265,-0.926632702350616,-0.133672222495079,-0.192101359367371,-0.981069922447205,-0.0244692545384169,-0.403789579868317,-0.913510203361511,-0.0495270937681198,-0.565365076065063,-0.806019425392151,-0.175199463963509,-0.563574731349945,-0.773372530937195,-0.290307193994522,-0.351402044296265,-0.926632702350616,-0.133672222495079,-0.384638786315918,-0.916700422763824,-0.10822781920433,-0.103571563959122,-0.990683674812317,-0.0884237587451935,0.114452183246613,-0.978702902793884,-0.170414760708809,-0.697792887687683,-0.713211715221405,-0.0664384886622429,-0.663721561431885,-0.718635857105255,-0.20745162665844,-0.724077165126801,-0.623618960380554,-0.29463791847229,-0.660858511924744,-0.664384603500366,-0.349083006381989,-0.674798011779785,-0.725177764892578,-0.136984199285507,-0.724077165126801,-0.623618960380554,-0.29463791847229,-0.565365076065063,-0.806019425392151,-0.175199463963509,-0.696264863014221,-0.651738345623016,-0.300752699375153,-0.563574731349945,-0.773372530937195,-0.290307193994522,-0.636269629001617,-0.664388597011566,-0.392107874155045,-0.696264863014221,-0.651738345623016,-0.300752699375153, +-0.692322194576263,-0.617709279060364,-0.372994869947433,-0.636269629001617,-0.664388597011566,-0.392107874155045,-0.692322194576263,-0.617709279060364,-0.372994869947433,-0.643431961536407,-0.631065130233765,-0.433303475379944,-0.60878598690033,-0.648826479911804,-0.456512629985809,-0.635008573532104,-0.605691194534302,-0.479481071233749,-0.492713153362274,-0.773737728595734,-0.398200333118439,-0.635008573532104,-0.605691194534302,-0.479481071233749,-0.643431961536407,-0.631065130233765,-0.433303475379944,-0.571750044822693,-0.700590968132019,-0.426935732364655,-0.60878598690033,-0.648826479911804,-0.456512629985809,-0.492192298173904,-0.810448169708252,-0.317679673433304,-0.660858511924744,-0.664384603500366,-0.349083006381989,-0.667230725288391,-0.736421167850494,0.111745290458202,-0.586687326431274,-0.738007724285126,0.333380520343781,-0.583659112453461,-0.801514744758606,0.13006167113781,-0.36477854847908,-0.840851664543152,0.399881154298782,-0.586687326431274,-0.738007724285126,0.333380520343781,-0.531963109970093,-0.679120659828186,0.505776882171631,-0.697792887687683,-0.713211715221405,-0.0664384886622429,-0.674798011779785,-0.725177764892578,-0.136984199285507,-0.667230725288391,-0.736421167850494,0.111745290458202,-0.313101559877396,-0.949105083942413,0.0341589115560055,-0.322700500488281,-0.946500480175018,0.00104723311960697,-0.124276474118233,-0.992247521877289,0.000360319158062339,-0.192101359367371,-0.981069922447205,-0.0244692545384169,-0.322700500488281,-0.946500480175018,0.00104723311960697,-0.403789579868317,-0.913510203361511,-0.0495270937681198,-0.124276474118233,-0.992247521877289,0.000360319158062339,-0.103571563959122,-0.990683674812317,-0.0884237587451935,-0.251072436571121,-0.967959403991699,-0.00415213545784354,-0.351402044296265,-0.926632702350616,-0.133672222495079,-0.403789579868317,-0.913510203361511,-0.0495270937681198,-0.565365076065063,-0.806019425392151,-0.175199463963509,-0.251072436571121,-0.967959403991699,-0.00415213545784354,-0.103571563959122,-0.990683674812317,-0.0884237587451935, +-0.384638786315918,-0.916700422763824,-0.10822781920433,-0.697792887687683,-0.713211715221405,-0.0664384886622429,-0.724077165126801,-0.623618960380554,-0.29463791847229,-0.674798011779785,-0.725177764892578,-0.136984199285507,-0.660858511924744,-0.664384603500366,-0.349083006381989,-0.464824199676514,-0.872459530830383,-0.150839865207672,-0.674798011779785,-0.725177764892578,-0.136984199285507,-0.696264863014221,-0.651738345623016,-0.300752699375153,-0.565365076065063,-0.806019425392151,-0.175199463963509,-0.714209258556366,-0.68284684419632,-0.153704643249512,-0.696264863014221,-0.651738345623016,-0.300752699375153,-0.72419935464859,-0.636834442615509,-0.264531791210175,-0.692322194576263,-0.617709279060364,-0.372994869947433,-0.692322194576263,-0.617709279060364,-0.372994869947433,-0.577450096607208,-0.740226566791534,-0.344406485557556,-0.643431961536407,-0.631065130233765,-0.433303475379944,-0.635008573532104,-0.605691194534302,-0.479481071233749,-0.571750044822693,-0.700590968132019,-0.426935732364655,-0.492713153362274,-0.773737728595734,-0.398200333118439,-0.392803847789764,-0.863833069801331,-0.315432131290436,-0.60878598690033,-0.648826479911804,-0.456512629985809,-0.492713153362274,-0.773737728595734,-0.398200333118439,-0.643431961536407,-0.631065130233765,-0.433303475379944,-0.480593472719193,-0.809147953987122,-0.338096469640732,-0.571750044822693,-0.700590968132019,-0.426935732364655,-0.492192298173904,-0.810448169708252,-0.317679673433304,-0.60878598690033,-0.648826479911804,-0.456512629985809,-0.392803847789764,-0.863833069801331,-0.315432131290436,-0.464824199676514,-0.872459530830383,-0.150839865207672,-0.660858511924744,-0.664384603500366,-0.349083006381989,-0.492192298173904,-0.810448169708252,-0.317679673433304,-0.586687326431274,-0.738007724285126,0.333380520343781,-0.667230725288391,-0.736421167850494,0.111745290458202,-0.493067234754562,-0.821241676807404,0.287135452032089,-0.586687326431274,-0.738007724285126,0.333380520343781,-0.558633208274841,-0.671957194805145,0.486212372779846,-0.531963109970093,-0.679120659828186,0.505776882171631, +-0.674798011779785,-0.725177764892578,-0.136984199285507,-0.486000716686249,-0.872227549552917,0.0549761429429054,-0.667230725288391,-0.736421167850494,0.111745290458202,-0.313101559877396,-0.949105083942413,0.0341589115560055,-0.462634056806564,-0.885851442813873,0.0351685993373394,-0.322700500488281,-0.946500480175018,0.00104723311960697,-0.124276474118233,-0.992247521877289,0.000360319158062339,-0.196556061506271,-0.979094326496124,0.0523442402482033,-0.313101559877396,-0.949105083942413,0.0341589115560055,-0.322700500488281,-0.946500480175018,0.00104723311960697,-0.540776431560516,-0.841141164302826,0.00649940175935626,-0.403789579868317,-0.913510203361511,-0.0495270937681198,-0.0974145829677582,-0.992436170578003,0.0747046023607254,-0.124276474118233,-0.992247521877289,0.000360319158062339,-0.251072436571121,-0.967959403991699,-0.00415213545784354,-0.403789579868317,-0.913510203361511,-0.0495270937681198,-0.626456558704376,-0.777114450931549,-0.0603748336434364,-0.565365076065063,-0.806019425392151,-0.175199463963509,-0.204921826720238,-0.969278931617737,0.136034071445465,-0.251072436571121,-0.967959403991699,-0.00415213545784354,-0.384638786315918,-0.916700422763824,-0.10822781920433,-0.486000716686249,-0.872227549552917,0.0549761429429054,-0.674798011779785,-0.725177764892578,-0.136984199285507,-0.464824199676514,-0.872459530830383,-0.150839865207672,-0.714209258556366,-0.68284684419632,-0.153704643249512,-0.565365076065063,-0.806019425392151,-0.175199463963509,-0.626456558704376,-0.777114450931549,-0.0603748336434364,-0.696264863014221,-0.651738345623016,-0.300752699375153,-0.714209258556366,-0.68284684419632,-0.153704643249512,-0.72419935464859,-0.636834442615509,-0.264531791210175,-0.72419935464859,-0.636834442615509,-0.264531791210175,-0.616561651229858,-0.735002458095551,-0.282175272703171,-0.692322194576263,-0.617709279060364,-0.372994869947433,-0.616561651229858,-0.735002458095551,-0.282175272703171,-0.577450096607208,-0.740226566791534,-0.344406485557556,-0.692322194576263,-0.617709279060364,-0.372994869947433, +-0.643431961536407,-0.631065130233765,-0.433303475379944,-0.577450096607208,-0.740226566791534,-0.344406485557556,-0.480593472719193,-0.809147953987122,-0.338096469640732,-0.391314804553986,-0.864058911800385,-0.316661983728409,-0.492713153362274,-0.773737728595734,-0.398200333118439,-0.571750044822693,-0.700590968132019,-0.426935732364655,-0.392803847789764,-0.863833069801331,-0.315432131290436,-0.492713153362274,-0.773737728595734,-0.398200333118439,-0.241909101605415,-0.94611668586731,-0.215274453163147,-0.480593472719193,-0.809147953987122,-0.338096469640732,-0.391314804553986,-0.864058911800385,-0.316661983728409,-0.571750044822693,-0.700590968132019,-0.426935732364655,-0.492192298173904,-0.810448169708252,-0.317679673433304,-0.392803847789764,-0.863833069801331,-0.315432131290436,-0.241642966866493,-0.960524201393127,-0.137846931815147,-0.241642966866493,-0.960524201393127,-0.137846931815147,-0.464824199676514,-0.872459530830383,-0.150839865207672,-0.492192298173904,-0.810448169708252,-0.317679673433304,-0.493067234754562,-0.821241676807404,0.287135452032089,-0.667230725288391,-0.736421167850494,0.111745290458202,-0.486000716686249,-0.872227549552917,0.0549761429429054,-0.558633208274841,-0.671957194805145,0.486212372779846,-0.586687326431274,-0.738007724285126,0.333380520343781,-0.493067234754562,-0.821241676807404,0.287135452032089,-0.462634056806564,-0.885851442813873,0.0351685993373394,-0.313101559877396,-0.949105083942413,0.0341589115560055,-0.511722266674042,-0.854977667331696,0.0845777243375778,-0.540776431560516,-0.841141164302826,0.00649940175935626,-0.322700500488281,-0.946500480175018,0.00104723311960697,-0.462634056806564,-0.885851442813873,0.0351685993373394,-0.0974145829677582,-0.992436170578003,0.0747046023607254,-0.196556061506271,-0.979094326496124,0.0523442402482033,-0.124276474118233,-0.992247521877289,0.000360319158062339,-0.313101559877396,-0.949105083942413,0.0341589115560055,-0.196556061506271,-0.979094326496124,0.0523442402482033,-0.426484495401382,-0.899716019630432,0.0928544402122498, +-0.540776431560516,-0.841141164302826,0.00649940175935626,-0.626456558704376,-0.777114450931549,-0.0603748336434364,-0.403789579868317,-0.913510203361511,-0.0495270937681198,-0.204921826720238,-0.969278931617737,0.136034071445465,-0.0974145829677582,-0.992436170578003,0.0747046023607254,-0.251072436571121,-0.967959403991699,-0.00415213545784354,-0.486000716686249,-0.872227549552917,0.0549761429429054,-0.464824199676514,-0.872459530830383,-0.150839865207672,-0.223468393087387,-0.974461078643799,0.0220750328153372,-0.626456558704376,-0.777114450931549,-0.0603748336434364,-0.716101467609406,-0.697365045547485,-0.0296735074371099,-0.714209258556366,-0.68284684419632,-0.153704643249512,-0.705407202243805,-0.697682619094849,-0.125058010220528,-0.72419935464859,-0.636834442615509,-0.264531791210175,-0.714209258556366,-0.68284684419632,-0.153704643249512,-0.616561651229858,-0.735002458095551,-0.282175272703171,-0.72419935464859,-0.636834442615509,-0.264531791210175,-0.607043862342834,-0.771687984466553,-0.189724057912827,-0.616561651229858,-0.735002458095551,-0.282175272703171,-0.337904512882233,-0.917655110359192,-0.209116235375404,-0.577450096607208,-0.740226566791534,-0.344406485557556,-0.480593472719193,-0.809147953987122,-0.338096469640732,-0.577450096607208,-0.740226566791534,-0.344406485557556,-0.337904512882233,-0.917655110359192,-0.209116235375404,-0.391314804553986,-0.864058911800385,-0.316661983728409,-0.241909101605415,-0.94611668586731,-0.215274453163147,-0.492713153362274,-0.773737728595734,-0.398200333118439,-0.241642966866493,-0.960524201393127,-0.137846931815147,-0.392803847789764,-0.863833069801331,-0.315432131290436,-0.241909101605415,-0.94611668586731,-0.215274453163147,-0.480593472719193,-0.809147953987122,-0.338096469640732,-0.183408439159393,-0.968779742717743,-0.166814357042313,-0.391314804553986,-0.864058911800385,-0.316661983728409,-0.223468393087387,-0.974461078643799,0.0220750328153372,-0.464824199676514,-0.872459530830383,-0.150839865207672,-0.241642966866493,-0.960524201393127,-0.137846931815147, +-0.304795503616333,-0.937436282634735,0.168263897299767,-0.493067234754562,-0.821241676807404,0.287135452032089,-0.486000716686249,-0.872227549552917,0.0549761429429054,-0.426484495401382,-0.899716019630432,0.0928544402122498,-0.511722266674042,-0.854977667331696,0.0845777243375778,-0.313101559877396,-0.949105083942413,0.0341589115560055,-0.511722266674042,-0.854977667331696,0.0845777243375778,-0.648312449455261,-0.759399712085724,0.054798673838377,-0.462634056806564,-0.885851442813873,0.0351685993373394,-0.540776431560516,-0.841141164302826,0.00649940175935626,-0.462634056806564,-0.885851442813873,0.0351685993373394,-0.648312449455261,-0.759399712085724,0.054798673838377,-0.093847818672657,-0.991515755653381,0.0899385288357735,-0.196556061506271,-0.979094326496124,0.0523442402482033,-0.0974145829677582,-0.992436170578003,0.0747046023607254,-0.345268726348877,-0.924455165863037,0.161777660250664,-0.426484495401382,-0.899716019630432,0.0928544402122498,-0.196556061506271,-0.979094326496124,0.0523442402482033,-0.540776431560516,-0.841141164302826,0.00649940175935626,-0.699810028076172,-0.714118719100952,0.0173262692987919,-0.626456558704376,-0.777114450931549,-0.0603748336434364,-0.204921826720238,-0.969278931617737,0.136034071445465,0.0378010496497154,-0.987363636493683,0.15389621257782,-0.0974145829677582,-0.992436170578003,0.0747046023607254,-0.223468393087387,-0.974461078643799,0.0220750328153372,-0.304795503616333,-0.937436282634735,0.168263897299767,-0.486000716686249,-0.872227549552917,0.0549761429429054,-0.626456558704376,-0.777114450931549,-0.0603748336434364,-0.699810028076172,-0.714118719100952,0.0173262692987919,-0.716101467609406,-0.697365045547485,-0.0296735074371099,-0.716101467609406,-0.697365045547485,-0.0296735074371099,-0.705407202243805,-0.697682619094849,-0.125058010220528,-0.714209258556366,-0.68284684419632,-0.153704643249512,-0.705407202243805,-0.697682619094849,-0.125058010220528,-0.607043862342834,-0.771687984466553,-0.189724057912827,-0.72419935464859,-0.636834442615509,-0.264531791210175, +-0.616561651229858,-0.735002458095551,-0.282175272703171,-0.607043862342834,-0.771687984466553,-0.189724057912827,-0.368941426277161,-0.915048658847809,-0.162997037172318,-0.368941426277161,-0.915048658847809,-0.162997037172318,-0.337904512882233,-0.917655110359192,-0.209116235375404,-0.616561651229858,-0.735002458095551,-0.282175272703171,-0.480593472719193,-0.809147953987122,-0.338096469640732,-0.337904512882233,-0.917655110359192,-0.209116235375404,-0.183408439159393,-0.968779742717743,-0.166814357042313,-0.241909101605415,-0.94611668586731,-0.215274453163147,-0.391314804553986,-0.864058911800385,-0.316661983728409,-0.183408439159393,-0.968779742717743,-0.166814357042313,-0.241642966866493,-0.960524201393127,-0.137846931815147,-0.241909101605415,-0.94611668586731,-0.215274453163147,-0.0824144035577774,-0.995026290416718,-0.055950190871954,-0.241642966866493,-0.960524201393127,-0.137846931815147,-0.0824144035577774,-0.995026290416718,-0.055950190871954,-0.223468393087387,-0.974461078643799,0.0220750328153372,-0.426484495401382,-0.899716019630432,0.0928544402122498,-0.641249120235443,-0.748390197753906,0.169444635510445,-0.511722266674042,-0.854977667331696,0.0845777243375778,-0.511722266674042,-0.854977667331696,0.0845777243375778,-0.641249120235443,-0.748390197753906,0.169444635510445,-0.648312449455261,-0.759399712085724,0.054798673838377,-0.540776431560516,-0.841141164302826,0.00649940175935626,-0.648312449455261,-0.759399712085724,0.054798673838377,-0.699810028076172,-0.714118719100952,0.0173262692987919,-0.093847818672657,-0.991515755653381,0.0899385288357735,-0.218654334545136,-0.966441214084625,0.134839072823524,-0.196556061506271,-0.979094326496124,0.0523442402482033,0.0524392686784267,-0.995820879936218,0.0747719332575798,-0.093847818672657,-0.991515755653381,0.0899385288357735,-0.0974145829677582,-0.992436170578003,0.0747046023607254,-0.345268726348877,-0.924455165863037,0.161777660250664,-0.523307621479034,-0.829010307788849,0.197207719087601,-0.426484495401382,-0.899716019630432,0.0928544402122498,-0.218654334545136,-0.966441214084625,0.134839072823524, +-0.345268726348877,-0.924455165863037,0.161777660250664,-0.196556061506271,-0.979094326496124,0.0523442402482033,0.0524392686784267,-0.995820879936218,0.0747719332575798,-0.0974145829677582,-0.992436170578003,0.0747046023607254,0.0378010496497154,-0.987363636493683,0.15389621257782,-0.716101467609406,-0.697365045547485,-0.0296735074371099,-0.699810028076172,-0.714118719100952,0.0173262692987919,-0.629973113536835,-0.775570392608643,0.0403026044368744,-0.716101467609406,-0.697365045547485,-0.0296735074371099,-0.58426433801651,-0.81142246723175,-0.0151200825348496,-0.705407202243805,-0.697682619094849,-0.125058010220528,-0.705407202243805,-0.697682619094849,-0.125058010220528,-0.50713574886322,-0.858430862426758,-0.0768749117851257,-0.607043862342834,-0.771687984466553,-0.189724057912827,-0.368941426277161,-0.915048658847809,-0.162997037172318,-0.607043862342834,-0.771687984466553,-0.189724057912827,-0.307270854711533,-0.946566581726074,-0.0979603752493858,-0.368941426277161,-0.915048658847809,-0.162997037172318,-0.113877020776272,-0.989497363567352,-0.0890327095985413,-0.337904512882233,-0.917655110359192,-0.209116235375404,-0.337904512882233,-0.917655110359192,-0.209116235375404,-0.072522446513176,-0.993714392185211,-0.0852762386202812,-0.183408439159393,-0.968779742717743,-0.166814357042313,-0.241909101605415,-0.94611668586731,-0.215274453163147,-0.183408439159393,-0.968779742717743,-0.166814357042313,-0.0824144035577774,-0.995026290416718,-0.055950190871954,-0.641249120235443,-0.748390197753906,0.169444635510445,-0.426484495401382,-0.899716019630432,0.0928544402122498,-0.523307621479034,-0.829010307788849,0.197207719087601,-0.648312449455261,-0.759399712085724,0.054798673838377,-0.641249120235443,-0.748390197753906,0.169444635510445,-0.64159482717514,-0.755843937397003,0.130598619580269,-0.699810028076172,-0.714118719100952,0.0173262692987919,-0.648312449455261,-0.759399712085724,0.054798673838377,-0.64159482717514,-0.755843937397003,0.130598619580269,-0.218654334545136,-0.966441214084625,0.134839072823524,-0.093847818672657,-0.991515755653381,0.0899385288357735, +-0.222222238779068,-0.95393979549408,0.201534122228622,-0.551538825035095,-0.778482735157013,0.299615651369095,-0.523307621479034,-0.829010307788849,0.197207719087601,-0.345268726348877,-0.924455165863037,0.161777660250664,-0.218654334545136,-0.966441214084625,0.134839072823524,-0.426759719848633,-0.861941397190094,0.273739010095596,-0.345268726348877,-0.924455165863037,0.161777660250664,0.192912727594376,-0.980905950069427,0.02465845271945,0.0524392686784267,-0.995820879936218,0.0747719332575798,0.0378010496497154,-0.987363636493683,0.15389621257782,-0.699810028076172,-0.714118719100952,0.0173262692987919,-0.64159482717514,-0.755843937397003,0.130598619580269,-0.629973113536835,-0.775570392608643,0.0403026044368744,-0.58426433801651,-0.81142246723175,-0.0151200825348496,-0.716101467609406,-0.697365045547485,-0.0296735074371099,-0.629973113536835,-0.775570392608643,0.0403026044368744,-0.58426433801651,-0.81142246723175,-0.0151200825348496,-0.50713574886322,-0.858430862426758,-0.0768749117851257,-0.705407202243805,-0.697682619094849,-0.125058010220528,-0.307270854711533,-0.946566581726074,-0.0979603752493858,-0.607043862342834,-0.771687984466553,-0.189724057912827,-0.50713574886322,-0.858430862426758,-0.0768749117851257,-0.307270854711533,-0.946566581726074,-0.0979603752493858,-0.0572371669113636,-0.997011661529541,-0.0518781952559948,-0.368941426277161,-0.915048658847809,-0.162997037172318,-0.113877020776272,-0.989497363567352,-0.0890327095985413,-0.368941426277161,-0.915048658847809,-0.162997037172318,-0.0572371669113636,-0.997011661529541,-0.0518781952559948,-0.113877020776272,-0.989497363567352,-0.0890327095985413,-0.072522446513176,-0.993714392185211,-0.0852762386202812,-0.337904512882233,-0.917655110359192,-0.209116235375404,-0.00875756144523621,-0.998479187488556,-0.0544271357357502,-0.183408439159393,-0.968779742717743,-0.166814357042313,-0.072522446513176,-0.993714392185211,-0.0852762386202812,-0.183408439159393,-0.968779742717743,-0.166814357042313,-0.00875756144523621,-0.998479187488556,-0.0544271357357502, +-0.0824144035577774,-0.995026290416718,-0.055950190871954,-0.641249120235443,-0.748390197753906,0.169444635510445,-0.523307621479034,-0.829010307788849,0.197207719087601,-0.652828216552734,-0.708751857280731,0.267368584871292,-0.64159482717514,-0.755843937397003,0.130598619580269,-0.641249120235443,-0.748390197753906,0.169444635510445,-0.610131919384003,-0.7618488073349,0.217544138431549,-0.218654334545136,-0.966441214084625,0.134839072823524,-0.222222238779068,-0.95393979549408,0.201534122228622,-0.426759719848633,-0.861941397190094,0.273739010095596,-0.551538825035095,-0.778482735157013,0.299615651369095,-0.652828216552734,-0.708751857280731,0.267368584871292,-0.523307621479034,-0.829010307788849,0.197207719087601,-0.345268726348877,-0.924455165863037,0.161777660250664,-0.426759719848633,-0.861941397190094,0.273739010095596,-0.551538825035095,-0.778482735157013,0.299615651369095,-0.58426433801651,-0.81142246723175,-0.0151200825348496,-0.629973113536835,-0.775570392608643,0.0403026044368744,-0.362342834472656,-0.932024836540222,0.00608741026371717,-0.58426433801651,-0.81142246723175,-0.0151200825348496,-0.307181745767593,-0.951514780521393,-0.0160908661782742,-0.50713574886322,-0.858430862426758,-0.0768749117851257,-0.216505989432335,-0.975568175315857,-0.0373073369264603,-0.307270854711533,-0.946566581726074,-0.0979603752493858,-0.50713574886322,-0.858430862426758,-0.0768749117851257,-0.307270854711533,-0.946566581726074,-0.0979603752493858,-0.0552780441939831,-0.997909605503082,-0.0334765017032623,-0.0572371669113636,-0.997011661529541,-0.0518781952559948,0.0185172855854034,-0.999067068099976,-0.0390099510550499,-0.113877020776272,-0.989497363567352,-0.0890327095985413,-0.0572371669113636,-0.997011661529541,-0.0518781952559948,-0.113877020776272,-0.989497363567352,-0.0890327095985413,0.0185172855854034,-0.999067068099976,-0.0390099510550499,-0.072522446513176,-0.993714392185211,-0.0852762386202812,-0.072522446513176,-0.993714392185211,-0.0852762386202812,0.0185172855854034,-0.999067068099976,-0.0390099510550499, +-0.00875756144523621,-0.998479187488556,-0.0544271357357502,-0.641249120235443,-0.748390197753906,0.169444635510445,-0.652828216552734,-0.708751857280731,0.267368584871292,-0.610131919384003,-0.7618488073349,0.217544138431549,-0.652828216552734,-0.708751857280731,0.267368584871292,-0.551538825035095,-0.778482735157013,0.299615651369095,-0.635447859764099,-0.703979194164276,0.317205399274826,-0.426759719848633,-0.861941397190094,0.273739010095596,-0.606785178184509,-0.711790561676025,0.353787779808044,-0.551538825035095,-0.778482735157013,0.299615651369095,-0.58426433801651,-0.81142246723175,-0.0151200825348496,-0.362342834472656,-0.932024836540222,0.00608741026371717,-0.307181745767593,-0.951514780521393,-0.0160908661782742,-0.216505989432335,-0.975568175315857,-0.0373073369264603,-0.50713574886322,-0.858430862426758,-0.0768749117851257,-0.307181745767593,-0.951514780521393,-0.0160908661782742,-0.216505989432335,-0.975568175315857,-0.0373073369264603,-0.0552780441939831,-0.997909605503082,-0.0334765017032623,-0.307270854711533,-0.946566581726074,-0.0979603752493858,-0.0552780441939831,-0.997909605503082,-0.0334765017032623,0.00972930714488029,-0.999701678752899,-0.0224021300673485,-0.0572371669113636,-0.997011661529541,-0.0518781952559948,0.0185172855854034,-0.999067068099976,-0.0390099510550499,-0.0572371669113636,-0.997011661529541,-0.0518781952559948,0.0230424217879772,-0.999233961105347,-0.0316292084753513,-0.610131919384003,-0.7618488073349,0.217544138431549,-0.652828216552734,-0.708751857280731,0.267368584871292,-0.635447859764099,-0.703979194164276,0.317205399274826,-0.635447859764099,-0.703979194164276,0.317205399274826,-0.551538825035095,-0.778482735157013,0.299615651369095,-0.606785178184509,-0.711790561676025,0.353787779808044,-0.545527637004852,-0.743736326694489,0.38633605837822,-0.606785178184509,-0.711790561676025,0.353787779808044,-0.426759719848633,-0.861941397190094,0.273739010095596,-0.307181745767593,-0.951514780521393,-0.0160908661782742,-0.362342834472656,-0.932024836540222,0.00608741026371717, +-0.0616685897111893,-0.997940480709076,-0.0176566485315561,-0.216505989432335,-0.975568175315857,-0.0373073369264603,-0.307181745767593,-0.951514780521393,-0.0160908661782742,-0.0616685897111893,-0.997940480709076,-0.0176566485315561,-0.216505989432335,-0.975568175315857,-0.0373073369264603,-0.0616685897111893,-0.997940480709076,-0.0176566485315561,-0.0552780441939831,-0.997909605503082,-0.0334765017032623,0.00972930714488029,-0.999701678752899,-0.0224021300673485,-0.0552780441939831,-0.997909605503082,-0.0334765017032623,-0.0616685897111893,-0.997940480709076,-0.0176566485315561,-0.0572371669113636,-0.997011661529541,-0.0518781952559948,0.00972930714488029,-0.999701678752899,-0.0224021300673485,0.0255984906107187,-0.999369502067566,-0.0245997663587332,0.0230424217879772,-0.999233961105347,-0.0316292084753513,-0.0572371669113636,-0.997011661529541,-0.0518781952559948,0.0255984906107187,-0.999369502067566,-0.0245997663587332,-0.635447859764099,-0.703979194164276,0.317205399274826,-0.606785178184509,-0.711790561676025,0.353787779808044,-0.569900572299957,-0.717265009880066,0.400929003953934,-0.545527637004852,-0.743736326694489,0.38633605837822,-0.569900572299957,-0.717265009880066,0.400929003953934,-0.606785178184509,-0.711790561676025,0.353787779808044,0.0261679049581289,-0.999509692192078,-0.0171922780573368,0.0255984906107187,-0.999369502067566,-0.0245997663587332,0.00972930714488029,-0.999701678752899,-0.0224021300673485,0.0274897534400225,-0.999215960502625,-0.0284908711910248,0.0230424217879772,-0.999233961105347,-0.0316292084753513,0.0255984906107187,-0.999369502067566,-0.0245997663587332,0.0261679049581289,-0.999509692192078,-0.0171922780573368,0.0274897534400225,-0.999215960502625,-0.0284908711910248,0.0255984906107187,-0.999369502067566,-0.0245997663587332,0.0190547332167625,-0.999635636806488,-0.0191160626709461,0.026348888874054,-0.999297618865967,-0.0266437008976936,0.0274897534400225,-0.999215960502625,-0.0284908711910248,0.0190547332167625,-0.999635636806488,-0.0191160626709461,0.0175724159926176,-0.999753594398499,-0.0135580748319626, +0.026348888874054,-0.999297618865967,-0.0266437008976936,0.0323852449655533,-0.999334335327148,-0.0167939905077219,0.026348888874054,-0.999297618865967,-0.0266437008976936,0.0175724159926176,-0.999753594398499,-0.0135580748319626,0.0323852449655533,-0.999334335327148,-0.0167939905077219,0.0175724159926176,-0.999753594398499,-0.0135580748319626,0.0224652830511332,-0.999542534351349,-0.0202482175081968,0.0175724159926176,-0.999753594398499,-0.0135580748319626,0.020591739565134,-0.999780356884003,-0.00389362848363817,0.0243775714188814,-0.99956738948822,-0.0164532363414764,0.0224652830511332,-0.999542534351349,-0.0202482175081968,0.0175724159926176,-0.999753594398499,-0.0135580748319626,0.0243775714188814,-0.99956738948822,-0.0164532363414764,0.0224652830511332,-0.999542534351349,-0.0202482175081968,0.020983574911952,-0.999685645103455,-0.0137183982878923,0.0323852449655533,-0.999334335327148,-0.0167939905077219,0.0243775714188814,-0.99956738948822,-0.0164532363414764,0.020591739565134,-0.999780356884003,-0.00389362848363817,0.0227305050939322,-0.999718189239502,-0.0068416828289628,0.0273404065519571,-0.9994797706604,0.017105370759964,0.0227305050939322,-0.999718189239502,-0.0068416828289628,0.020591739565134,-0.999780356884003,-0.00389362848363817,0.0224652830511332,-0.999542534351349,-0.0202482175081968,0.0243775714188814,-0.99956738948822,-0.0164532363414764,0.020983574911952,-0.999685645103455,-0.0137183982878923,0.0243775714188814,-0.99956738948822,-0.0164532363414764,0.0227305050939322,-0.999718189239502,-0.0068416828289628,0.021568400785327,-0.999623477458954,-0.0169592443853617,0.0273404065519571,-0.9994797706604,0.017105370759964,0.0307195540517569,-0.999508202075958,0.00628531211987138,0.0227305050939322,-0.999718189239502,-0.0068416828289628,0.0243775714188814,-0.99956738948822,-0.0164532363414764,0.021568400785327,-0.999623477458954,-0.0169592443853617,0.020983574911952,-0.999685645103455,-0.0137183982878923,0.0327508039772511,-0.998833775520325,0.0354705192148685,0.0307195540517569,-0.999508202075958,0.00628531211987138, +0.0273404065519571,-0.9994797706604,0.017105370759964,0.0292164403945208,-0.999473989009857,-0.0140729574486613,0.021568400785327,-0.999623477458954,-0.0169592443853617,0.0227305050939322,-0.999718189239502,-0.0068416828289628,0.0292164403945208,-0.999473989009857,-0.0140729574486613,0.0227305050939322,-0.999718189239502,-0.0068416828289628,0.0307195540517569,-0.999508202075958,0.00628531211987138,0.0307195540517569,-0.999508202075958,0.00628531211987138,0.0327508039772511,-0.998833775520325,0.0354705192148685,0.0315686836838722,-0.999476671218872,0.0070482213050127,0.021568400785327,-0.999623477458954,-0.0169592443853617,0.0292164403945208,-0.999473989009857,-0.0140729574486613,0.0337596498429775,-0.999106764793396,-0.0254137851297855,0.0307195540517569,-0.999508202075958,0.00628531211987138,0.0315686836838722,-0.999476671218872,0.0070482213050127,0.0292164403945208,-0.999473989009857,-0.0140729574486613,0.0327508039772511,-0.998833775520325,0.0354705192148685,0.0310562159866095,-0.998759090900421,0.0389319695532322,0.0315686836838722,-0.999476671218872,0.0070482213050127,0.0292164403945208,-0.999473989009857,-0.0140729574486613,0.0438755191862583,-0.999009907245636,-0.00735670514404774,0.0337596498429775,-0.999106764793396,-0.0254137851297855,0.0315686836838722,-0.999476671218872,0.0070482213050127,0.0438755191862583,-0.999009907245636,-0.00735670514404774,0.0292164403945208,-0.999473989009857,-0.0140729574486613,0.0310562159866095,-0.998759090900421,0.0389319695532322,0.0525699369609356,-0.998450934886932,0.0182238388806582,0.0315686836838722,-0.999476671218872,0.0070482213050127,0.0438755191862583,-0.999009907245636,-0.00735670514404774,0.0599545240402222,-0.998040795326233,-0.0178876724094152,0.0337596498429775,-0.999106764793396,-0.0254137851297855,0.0525699369609356,-0.998450934886932,0.0182238388806582,0.0438755191862583,-0.999009907245636,-0.00735670514404774,0.0315686836838722,-0.999476671218872,0.0070482213050127,0.0501299612224102,-0.996169030666351,0.0716536045074463,0.0632090866565704,-0.996572375297546,0.0533675998449326, +0.0310562159866095,-0.998759090900421,0.0389319695532322,0.0525699369609356,-0.998450934886932,0.0182238388806582,0.0310562159866095,-0.998759090900421,0.0389319695532322,0.0632090866565704,-0.996572375297546,0.0533675998449326,0.0438755191862583,-0.999009907245636,-0.00735670514404774,0.0917432755231857,-0.99572229385376,0.0109622851014137,0.0599545240402222,-0.998040795326233,-0.0178876724094152,0.0599545240402222,-0.998040795326233,-0.0178876724094152,-0.0532150417566299,-0.998549699783325,-0.00816325005143881,0.0337596498429775,-0.999106764793396,-0.0254137851297855,0.0108351120725274,-0.99961519241333,-0.0255351327359676,0.0337596498429775,-0.999106764793396,-0.0254137851297855,-0.0532150417566299,-0.998549699783325,-0.00816325005143881,0.0525699369609356,-0.998450934886932,0.0182238388806582,0.0917432755231857,-0.99572229385376,0.0109622851014137,0.0438755191862583,-0.999009907245636,-0.00735670514404774,0.0501299612224102,-0.996169030666351,0.0716536045074463,0.087553009390831,-0.993955254554749,0.066236712038517,0.0632090866565704,-0.996572375297546,0.0533675998449326,0.0525699369609356,-0.998450934886932,0.0182238388806582,0.0632090866565704,-0.996572375297546,0.0533675998449326,0.0365664139389992,-0.998941004276276,0.0279214754700661,0.0917432755231857,-0.99572229385376,0.0109622851014137,0.249012619256973,-0.968241691589355,0.0223752073943615,0.0599545240402222,-0.998040795326233,-0.0178876724094152,-0.0131052285432816,-0.990273654460907,-0.138514399528503,-0.0532150417566299,-0.998549699783325,-0.00816325005143881,0.0599545240402222,-0.998040795326233,-0.0178876724094152,-0.0532150417566299,-0.998549699783325,-0.00816325005143881,0.0502747520804405,-0.997401118278503,-0.0516085736453533,0.0108351120725274,-0.99961519241333,-0.0255351327359676,0.0525699369609356,-0.998450934886932,0.0182238388806582,0.220773592591286,-0.970116674900055,0.100660473108292,0.0917432755231857,-0.99572229385376,0.0109622851014137,0.087553009390831,-0.993955254554749,0.066236712038517,0.0501299612224102,-0.996169030666351,0.0716536045074463, +0.167423233389854,-0.981696128845215,0.0907855480909348,0.258215606212616,-0.96127861738205,0.0962705463171005,0.0632090866565704,-0.996572375297546,0.0533675998449326,0.087553009390831,-0.993955254554749,0.066236712038517,0.0365664139389992,-0.998941004276276,0.0279214754700661,0.0632090866565704,-0.996572375297546,0.0533675998449326,0.127549469470978,-0.990575194358826,0.049917958676815,0.0525699369609356,-0.998450934886932,0.0182238388806582,0.0365664139389992,-0.998941004276276,0.0279214754700661,0.220773592591286,-0.970116674900055,0.100660473108292,0.249012619256973,-0.968241691589355,0.0223752073943615,0.0917432755231857,-0.99572229385376,0.0109622851014137,0.220773592591286,-0.970116674900055,0.100660473108292,0.0599545240402222,-0.998040795326233,-0.0178876724094152,0.249012619256973,-0.968241691589355,0.0223752073943615,-0.0131052285432816,-0.990273654460907,-0.138514399528503,-0.0131052285432816,-0.990273654460907,-0.138514399528503,-0.231822714209557,-0.959304988384247,-0.161220848560333,-0.0532150417566299,-0.998549699783325,-0.00816325005143881,-0.0126381488516927,-0.999759674072266,0.0179114546626806,0.0502747520804405,-0.997401118278503,-0.0516085736453533,-0.0532150417566299,-0.998549699783325,-0.00816325005143881,0.301677137613297,-0.942814886569977,0.14174222946167,0.087553009390831,-0.993955254554749,0.066236712038517,0.167423233389854,-0.981696128845215,0.0907855480909348,0.0632090866565704,-0.996572375297546,0.0533675998449326,0.258215606212616,-0.96127861738205,0.0962705463171005,0.127549469470978,-0.990575194358826,0.049917958676815,0.258215606212616,-0.96127861738205,0.0962705463171005,0.087553009390831,-0.993955254554749,0.066236712038517,0.301677137613297,-0.942814886569977,0.14174222946167,0.301856905221939,-0.952143847942352,0.0480047613382339,0.0365664139389992,-0.998941004276276,0.0279214754700661,0.127549469470978,-0.990575194358826,0.049917958676815,0.0365664139389992,-0.998941004276276,0.0279214754700661,0.218933299183846,-0.969606101512909,0.109234221279621,0.220773592591286,-0.970116674900055,0.100660473108292, +0.249012619256973,-0.968241691589355,0.0223752073943615,0.220773592591286,-0.970116674900055,0.100660473108292,0.421470403671265,-0.906799554824829,0.00878175068646669,0.249012619256973,-0.968241691589355,0.0223752073943615,0.421470403671265,-0.906799554824829,0.00878175068646669,-0.0131052285432816,-0.990273654460907,-0.138514399528503,-0.0131052285432816,-0.990273654460907,-0.138514399528503,0.421470403671265,-0.906799554824829,0.00878175068646669,-0.231822714209557,-0.959304988384247,-0.161220848560333,-0.0819445475935936,-0.994477152824402,0.0655742138624191,-0.0532150417566299,-0.998549699783325,-0.00816325005143881,-0.231822714209557,-0.959304988384247,-0.161220848560333,-0.0126381488516927,-0.999759674072266,0.0179114546626806,-0.0532150417566299,-0.998549699783325,-0.00816325005143881,-0.0819445475935936,-0.994477152824402,0.0655742138624191,0.414100766181946,-0.899486899375916,0.139440923929214,0.301677137613297,-0.942814886569977,0.14174222946167,0.167423233389854,-0.981696128845215,0.0907855480909348,0.258215606212616,-0.96127861738205,0.0962705463171005,0.47153103351593,-0.876305758953094,0.0987247079610825,0.127549469470978,-0.990575194358826,0.049917958676815,0.301677137613297,-0.942814886569977,0.14174222946167,0.582094252109528,-0.784447371959686,0.214028984308243,0.258215606212616,-0.96127861738205,0.0962705463171005,0.301856905221939,-0.952143847942352,0.0480047613382339,0.218933299183846,-0.969606101512909,0.109234221279621,0.0365664139389992,-0.998941004276276,0.0279214754700661,0.301856905221939,-0.952143847942352,0.0480047613382339,0.127549469470978,-0.990575194358826,0.049917958676815,0.47153103351593,-0.876305758953094,0.0987247079610825,0.218933299183846,-0.969606101512909,0.109234221279621,0.567440807819366,-0.783017158508301,0.254744797945023,0.220773592591286,-0.970116674900055,0.100660473108292,0.421470403671265,-0.906799554824829,0.00878175068646669,0.220773592591286,-0.970116674900055,0.100660473108292,0.567440807819366,-0.783017158508301,0.254744797945023,0.414100766181946,-0.899486899375916,0.139440923929214, +0.565199255943298,-0.79681932926178,0.213608235120773,0.301677137613297,-0.942814886569977,0.14174222946167,0.414100766181946,-0.899486899375916,0.139440923929214,0.167423233389854,-0.981696128845215,0.0907855480909348,0.414391607046127,-0.899359583854675,0.139397814869881,0.258215606212616,-0.96127861738205,0.0962705463171005,0.530578553676605,-0.832911789417267,0.157302632927895,0.47153103351593,-0.876305758953094,0.0987247079610825,0.582094252109528,-0.784447371959686,0.214028984308243,0.301677137613297,-0.942814886569977,0.14174222946167,0.565199255943298,-0.79681932926178,0.213608235120773,0.582094252109528,-0.784447371959686,0.214028984308243,0.530578553676605,-0.832911789417267,0.157302632927895,0.258215606212616,-0.96127861738205,0.0962705463171005,0.301856905221939,-0.952143847942352,0.0480047613382339,0.548267722129822,-0.819021761417389,0.169132187962532,0.218933299183846,-0.969606101512909,0.109234221279621,0.301856905221939,-0.952143847942352,0.0480047613382339,0.47153103351593,-0.876305758953094,0.0987247079610825,0.665039002895355,-0.735815584659576,0.12766495347023,0.567440807819366,-0.783017158508301,0.254744797945023,0.218933299183846,-0.969606101512909,0.109234221279621,0.548267722129822,-0.819021761417389,0.169132187962532,0.421470403671265,-0.906799554824829,0.00878175068646669,0.567440807819366,-0.783017158508301,0.254744797945023,0.706536650657654,-0.605450749397278,0.366381227970123,0.630413293838501,-0.75530081987381,0.179163634777069,0.565199255943298,-0.79681932926178,0.213608235120773,0.414100766181946,-0.899486899375916,0.139440923929214,0.414391607046127,-0.899359583854675,0.139397814869881,0.630413293838501,-0.75530081987381,0.179163634777069,0.414100766181946,-0.899486899375916,0.139440923929214,0.681600451469421,-0.710913777351379,0.173269465565681,0.47153103351593,-0.876305758953094,0.0987247079610825,0.530578553676605,-0.832911789417267,0.157302632927895,0.582094252109528,-0.784447371959686,0.214028984308243,0.565199255943298,-0.79681932926178,0.213608235120773,0.649501144886017,-0.725326538085938,0.228143289685249, +0.530578553676605,-0.832911789417267,0.157302632927895,0.582094252109528,-0.784447371959686,0.214028984308243,0.681600451469421,-0.710913777351379,0.173269465565681,0.665039002895355,-0.735815584659576,0.12766495347023,0.548267722129822,-0.819021761417389,0.169132187962532,0.301856905221939,-0.952143847942352,0.0480047613382339,0.681600451469421,-0.710913777351379,0.173269465565681,0.665039002895355,-0.735815584659576,0.12766495347023,0.47153103351593,-0.876305758953094,0.0987247079610825,0.567440807819366,-0.783017158508301,0.254744797945023,0.548267722129822,-0.819021761417389,0.169132187962532,0.698159456253052,-0.675448775291443,0.237365037202835,0.698159456253052,-0.675448775291443,0.237365037202835,0.706536650657654,-0.605450749397278,0.366381227970123,0.567440807819366,-0.783017158508301,0.254744797945023,0.630413293838501,-0.75530081987381,0.179163634777069,0.649501144886017,-0.725326538085938,0.228143289685249,0.565199255943298,-0.79681932926178,0.213608235120773,0.649501144886017,-0.725326538085938,0.228143289685249,0.533649146556854,-0.816048324108124,0.221998944878578,0.582094252109528,-0.784447371959686,0.214028984308243,0.603404641151428,-0.775742650032043,0.184732258319855,0.681600451469421,-0.710913777351379,0.173269465565681,0.582094252109528,-0.784447371959686,0.214028984308243,0.698159456253052,-0.675448775291443,0.237365037202835,0.548267722129822,-0.819021761417389,0.169132187962532,0.665039002895355,-0.735815584659576,0.12766495347023,0.681600451469421,-0.710913777351379,0.173269465565681,0.68191534280777,-0.715709865093231,0.150833398103714,0.665039002895355,-0.735815584659576,0.12766495347023,0.698159456253052,-0.675448775291443,0.237365037202835,0.579351782798767,-0.760978400707245,0.291998654603958,0.706536650657654,-0.605450749397278,0.366381227970123,0.630413293838501,-0.75530081987381,0.179163634777069,0.631890177726746,-0.759713053703308,0.153462544083595,0.649501144886017,-0.725326538085938,0.228143289685249,0.48196804523468,-0.859102249145508,0.172191619873047,0.533649146556854,-0.816048324108124,0.221998944878578, +0.649501144886017,-0.725326538085938,0.228143289685249,0.603404641151428,-0.775742650032043,0.184732258319855,0.582094252109528,-0.784447371959686,0.214028984308243,0.533649146556854,-0.816048324108124,0.221998944878578,0.603404641151428,-0.775742650032043,0.184732258319855,0.68191534280777,-0.715709865093231,0.150833398103714,0.681600451469421,-0.710913777351379,0.173269465565681,0.68191534280777,-0.715709865093231,0.150833398103714,0.698159456253052,-0.675448775291443,0.237365037202835,0.665039002895355,-0.735815584659576,0.12766495347023,0.519602835178375,-0.8416628241539,0.147025287151337,0.579351782798767,-0.760978400707245,0.291998654603958,0.698159456253052,-0.675448775291443,0.237365037202835,0.706536650657654,-0.605450749397278,0.366381227970123,0.579351782798767,-0.760978400707245,0.291998654603958,0.521391808986664,-0.805715084075928,0.281022161245346,0.44904813170433,-0.89000391960144,-0.0790482684969902,0.631890177726746,-0.759713053703308,0.153462544083595,0.630413293838501,-0.75530081987381,0.179163634777069,0.48196804523468,-0.859102249145508,0.172191619873047,0.649501144886017,-0.725326538085938,0.228143289685249,0.631890177726746,-0.759713053703308,0.153462544083595,0.48196804523468,-0.859102249145508,0.172191619873047,0.279049932956696,-0.949527621269226,0.143277108669281,0.533649146556854,-0.816048324108124,0.221998944878578,0.603404641151428,-0.775742650032043,0.184732258319855,0.533649146556854,-0.816048324108124,0.221998944878578,0.30207633972168,-0.943366527557373,0.137147471308708,0.603404641151428,-0.775742650032043,0.184732258319855,0.45993384718895,-0.880685806274414,0.113372176885605,0.68191534280777,-0.715709865093231,0.150833398103714,0.68191534280777,-0.715709865093231,0.150833398103714,0.519602835178375,-0.8416628241539,0.147025287151337,0.698159456253052,-0.675448775291443,0.237365037202835,0.519602835178375,-0.8416628241539,0.147025287151337,0.276220619678497,-0.957542836666107,0.0825454071164131,0.579351782798767,-0.760978400707245,0.291998654603958,0.521391808986664,-0.805715084075928,0.281022161245346, +0.579351782798767,-0.760978400707245,0.291998654603958,0.276220619678497,-0.957542836666107,0.0825454071164131,0.412430167198181,-0.905467689037323,0.100147232413292,0.631890177726746,-0.759713053703308,0.153462544083595,0.44904813170433,-0.89000391960144,-0.0790482684969902,0.412430167198181,-0.905467689037323,0.100147232413292,0.48196804523468,-0.859102249145508,0.172191619873047,0.631890177726746,-0.759713053703308,0.153462544083595,0.196298018097878,-0.976298034191132,0.0911543369293213,0.279049932956696,-0.949527621269226,0.143277108669281,0.48196804523468,-0.859102249145508,0.172191619873047,0.533649146556854,-0.816048324108124,0.221998944878578,0.279049932956696,-0.949527621269226,0.143277108669281,0.30207633972168,-0.943366527557373,0.137147471308708,0.30207633972168,-0.943366527557373,0.137147471308708,0.45993384718895,-0.880685806274414,0.113372176885605,0.603404641151428,-0.775742650032043,0.184732258319855,0.68191534280777,-0.715709865093231,0.150833398103714,0.45993384718895,-0.880685806274414,0.113372176885605,0.519602835178375,-0.8416628241539,0.147025287151337,0.276220619678497,-0.957542836666107,0.0825454071164131,0.519602835178375,-0.8416628241539,0.147025287151337,0.121892511844635,-0.99078494310379,0.0590531565248966,0.238688036799431,-0.970523595809937,0.0333454348146915,0.521391808986664,-0.805715084075928,0.281022161245346,0.276220619678497,-0.957542836666107,0.0825454071164131,0.44904813170433,-0.89000391960144,-0.0790482684969902,0.293226510286331,-0.956027090549469,0.00550037762150168,0.412430167198181,-0.905467689037323,0.100147232413292,0.412430167198181,-0.905467689037323,0.100147232413292,0.196298018097878,-0.976298034191132,0.0911543369293213,0.48196804523468,-0.859102249145508,0.172191619873047,0.196298018097878,-0.976298034191132,0.0911543369293213,0.0381021574139595,-0.998102486133575,0.0483692474663258,0.279049932956696,-0.949527621269226,0.143277108669281,0.30207633972168,-0.943366527557373,0.137147471308708,0.279049932956696,-0.949527621269226,0.143277108669281,0.0381021574139595,-0.998102486133575,0.0483692474663258, +0.30207633972168,-0.943366527557373,0.137147471308708,0.121892511844635,-0.99078494310379,0.0590531565248966,0.45993384718895,-0.880685806274414,0.113372176885605,0.121892511844635,-0.99078494310379,0.0590531565248966,0.519602835178375,-0.8416628241539,0.147025287151337,0.45993384718895,-0.880685806274414,0.113372176885605,0.276220619678497,-0.957542836666107,0.0825454071164131,0.121892511844635,-0.99078494310379,0.0590531565248966,-0.0389143750071526,-0.998901963233948,0.0260867886245251,0.238688036799431,-0.970523595809937,0.0333454348146915,0.276220619678497,-0.957542836666107,0.0825454071164131,0.0988683179020882,-0.995098531246185,-0.00197190744802356,-0.0469929724931717,-0.992826819419861,-0.109938584268093,0.293226510286331,-0.956027090549469,0.00550037762150168,0.44904813170433,-0.89000391960144,-0.0790482684969902,0.0783976167440414,-0.996476054191589,0.0298204980790615,0.412430167198181,-0.905467689037323,0.100147232413292,0.293226510286331,-0.956027090549469,0.00550037762150168,0.196298018097878,-0.976298034191132,0.0911543369293213,0.412430167198181,-0.905467689037323,0.100147232413292,0.0783976167440414,-0.996476054191589,0.0298204980790615,0.0380854569375515,-0.997650802135468,0.0569412708282471,0.0381021574139595,-0.998102486133575,0.0483692474663258,0.196298018097878,-0.976298034191132,0.0911543369293213,0.0381021574139595,-0.998102486133575,0.0483692474663258,0.121892511844635,-0.99078494310379,0.0590531565248966,0.30207633972168,-0.943366527557373,0.137147471308708,-0.151195287704468,-0.987908780574799,0.0342950895428658,-0.0389143750071526,-0.998901963233948,0.0260867886245251,0.121892511844635,-0.99078494310379,0.0590531565248966,0.276220619678497,-0.957542836666107,0.0825454071164131,-0.0389143750071526,-0.998901963233948,0.0260867886245251,0.0988683179020882,-0.995098531246185,-0.00197190744802356,0.238688036799431,-0.970523595809937,0.0333454348146915,0.0988683179020882,-0.995098531246185,-0.00197190744802356,0.130908712744713,-0.991070210933685,-0.0253502409905195,0.0241366922855377,-0.999702274799347,0.00356373260729015, +0.293226510286331,-0.956027090549469,0.00550037762150168,-0.0469929724931717,-0.992826819419861,-0.109938584268093,0.44904813170433,-0.89000391960144,-0.0790482684969902,-0.338940769433975,-0.935973405838013,-0.0952515080571175,-0.0469929724931717,-0.992826819419861,-0.109938584268093,0.0783976167440414,-0.996476054191589,0.0298204980790615,0.293226510286331,-0.956027090549469,0.00550037762150168,0.0241366922855377,-0.999702274799347,0.00356373260729015,0.196298018097878,-0.976298034191132,0.0911543369293213,0.0783976167440414,-0.996476054191589,0.0298204980790615,0.0380854569375515,-0.997650802135468,0.0569412708282471,0.0380854569375515,-0.997650802135468,0.0569412708282471,-0.0314143970608711,-0.999488651752472,0.00595629913732409,0.0381021574139595,-0.998102486133575,0.0483692474663258,0.0381021574139595,-0.998102486133575,0.0483692474663258,-0.24448749423027,-0.968359112739563,-0.0500639230012894,0.121892511844635,-0.99078494310379,0.0590531565248966,-0.151195287704468,-0.987908780574799,0.0342950895428658,-0.276225686073303,-0.960395038127899,0.036614291369915,-0.0389143750071526,-0.998901963233948,0.0260867886245251,-0.24448749423027,-0.968359112739563,-0.0500639230012894,-0.151195287704468,-0.987908780574799,0.0342950895428658,0.121892511844635,-0.99078494310379,0.0590531565248966,0.0988683179020882,-0.995098531246185,-0.00197190744802356,-0.0389143750071526,-0.998901963233948,0.0260867886245251,-0.188817545771599,-0.98199063539505,0.00650751776993275,0.130908712744713,-0.991070210933685,-0.0253502409905195,0.0988683179020882,-0.995098531246185,-0.00197190744802356,0.147735461592674,-0.988788068294525,-0.0217315461486578,0.0241366922855377,-0.999702274799347,0.00356373260729015,-0.0469929724931717,-0.992826819419861,-0.109938584268093,-0.00536902947351336,-0.999359667301178,0.03537417948246,-0.139741867780685,-0.980940341949463,0.135011598467827,-0.0469929724931717,-0.992826819419861,-0.109938584268093,-0.338940769433975,-0.935973405838013,-0.0952515080571175,0.0783976167440414,-0.996476054191589,0.0298204980790615, +0.0241366922855377,-0.999702274799347,0.00356373260729015,-0.0287991873919964,-0.998278021812439,0.0511026494204998,0.0783976167440414,-0.996476054191589,0.0298204980790615,-0.00861648190766573,-0.999319911003113,0.0358488410711288,0.0380854569375515,-0.997650802135468,0.0569412708282471,0.0380854569375515,-0.997650802135468,0.0569412708282471,-0.0235425364226103,-0.999710023403168,0.00504988571628928,-0.0314143970608711,-0.999488651752472,0.00595629913732409,-0.0314143970608711,-0.999488651752472,0.00595629913732409,-0.16991750895977,-0.981762588024139,-0.0852653905749321,0.0381021574139595,-0.998102486133575,0.0483692474663258,-0.24448749423027,-0.968359112739563,-0.0500639230012894,0.0381021574139595,-0.998102486133575,0.0483692474663258,-0.16991750895977,-0.981762588024139,-0.0852653905749321,-0.276225686073303,-0.960395038127899,0.036614291369915,-0.151195287704468,-0.987908780574799,0.0342950895428658,-0.465513914823532,-0.885037660598755,-0.00225600809790194,-0.392109423875809,-0.919916987419128,0.00166579335927963,-0.0389143750071526,-0.998901963233948,0.0260867886245251,-0.276225686073303,-0.960395038127899,0.036614291369915,-0.24448749423027,-0.968359112739563,-0.0500639230012894,-0.465513914823532,-0.885037660598755,-0.00225600809790194,-0.151195287704468,-0.987908780574799,0.0342950895428658,-0.392109423875809,-0.919916987419128,0.00166579335927963,-0.188817545771599,-0.98199063539505,0.00650751776993275,-0.0389143750071526,-0.998901963233948,0.0260867886245251,0.0396719351410866,-0.999189078807831,-0.00687075406312943,0.0988683179020882,-0.995098531246185,-0.00197190744802356,-0.188817545771599,-0.98199063539505,0.00650751776993275,0.145433604717255,-0.989260315895081,-0.0145936803892255,0.147735461592674,-0.988788068294525,-0.0217315461486578,0.0988683179020882,-0.995098531246185,-0.00197190744802356,-0.139741867780685,-0.980940341949463,0.135011598467827,-0.00536902947351336,-0.999359667301178,0.03537417948246,-0.0469929724931717,-0.992826819419861,-0.109938584268093,-0.0287991873919964,-0.998278021812439,0.0511026494204998, +0.0241366922855377,-0.999702274799347,0.00356373260729015,-0.00536902947351336,-0.999359667301178,0.03537417948246,-0.0950371772050858,-0.955512583255768,0.279219418764114,-0.139741867780685,-0.980940341949463,0.135011598467827,-0.338940769433975,-0.935973405838013,-0.0952515080571175,0.0783976167440414,-0.996476054191589,0.0298204980790615,-0.0287991873919964,-0.998278021812439,0.0511026494204998,-0.00861648190766573,-0.999319911003113,0.0358488410711288,-0.0235425364226103,-0.999710023403168,0.00504988571628928,0.0380854569375515,-0.997650802135468,0.0569412708282471,-0.00861648190766573,-0.999319911003113,0.0358488410711288,-0.0235425364226103,-0.999710023403168,0.00504988571628928,-0.0993482768535614,-0.993716835975647,-0.0515435896813869,-0.0314143970608711,-0.999488651752472,0.00595629913732409,-0.0314143970608711,-0.999488651752472,0.00595629913732409,-0.207619547843933,-0.963688671588898,-0.167922928929329,-0.16991750895977,-0.981762588024139,-0.0852653905749321,-0.24448749423027,-0.968359112739563,-0.0500639230012894,-0.16991750895977,-0.981762588024139,-0.0852653905749321,-0.467196434736252,-0.837293446063995,-0.284019470214844,-0.276225686073303,-0.960395038127899,0.036614291369915,-0.465513914823532,-0.885037660598755,-0.00225600809790194,-0.597992837429047,-0.801419079303741,-0.0114816874265671,-0.392109423875809,-0.919916987419128,0.00166579335927963,-0.276225686073303,-0.960395038127899,0.036614291369915,-0.597992837429047,-0.801419079303741,-0.0114816874265671,-0.465513914823532,-0.885037660598755,-0.00225600809790194,-0.24448749423027,-0.968359112739563,-0.0500639230012894,-0.632106959819794,-0.763713300228119,-0.131082370877266,-0.392109423875809,-0.919916987419128,0.00166579335927963,-0.609063625335693,-0.793053150177002,-0.0103950351476669,-0.188817545771599,-0.98199063539505,0.00650751776993275,0.145433604717255,-0.989260315895081,-0.0145936803892255,0.0988683179020882,-0.995098531246185,-0.00197190744802356,0.0396719351410866,-0.999189078807831,-0.00687075406312943,-0.256701976060867,-0.961503148078918,0.0980595126748085, +0.0396719351410866,-0.999189078807831,-0.00687075406312943,-0.188817545771599,-0.98199063539505,0.00650751776993275,0.00244860164821148,-0.998522341251373,0.0542862340807915,-0.00536902947351336,-0.999359667301178,0.03537417948246,-0.139741867780685,-0.980940341949463,0.135011598467827,-0.0287991873919964,-0.998278021812439,0.0511026494204998,-0.00536902947351336,-0.999359667301178,0.03537417948246,-0.07386564463377,-0.989459216594696,0.124556183815002,-0.0723040774464607,-0.986517310142517,0.146818399429321,-0.139741867780685,-0.980940341949463,0.135011598467827,-0.0950371772050858,-0.955512583255768,0.279219418764114,-0.0219102967530489,-0.999547898769379,0.0205893293023109,-0.00861648190766573,-0.999319911003113,0.0358488410711288,-0.0287991873919964,-0.998278021812439,0.0511026494204998,-0.00861648190766573,-0.999319911003113,0.0358488410711288,0.000838913954794407,-0.999584019184113,0.0288259405642748,-0.0235425364226103,-0.999710023403168,0.00504988571628928,-0.0235425364226103,-0.999710023403168,0.00504988571628928,-0.115738458931446,-0.977128803730011,-0.178392380475998,-0.0993482768535614,-0.993716835975647,-0.0515435896813869,-0.0993482768535614,-0.993716835975647,-0.0515435896813869,-0.207619547843933,-0.963688671588898,-0.167922928929329,-0.0314143970608711,-0.999488651752472,0.00595629913732409,-0.207619547843933,-0.963688671588898,-0.167922928929329,-0.467196434736252,-0.837293446063995,-0.284019470214844,-0.16991750895977,-0.981762588024139,-0.0852653905749321,-0.24448749423027,-0.968359112739563,-0.0500639230012894,-0.467196434736252,-0.837293446063995,-0.284019470214844,-0.632106959819794,-0.763713300228119,-0.131082370877266,-0.597992837429047,-0.801419079303741,-0.0114816874265671,-0.465513914823532,-0.885037660598755,-0.00225600809790194,-0.63868123292923,-0.769460260868073,0.00412552012130618,-0.742507934570313,-0.667572259902954,-0.0550357736647129,-0.392109423875809,-0.919916987419128,0.00166579335927963,-0.597992837429047,-0.801419079303741,-0.0114816874265671,-0.465513914823532,-0.885037660598755,-0.00225600809790194, +-0.632106959819794,-0.763713300228119,-0.131082370877266,-0.69880074262619,-0.715315282344818,0.00118987692985684,-0.609063625335693,-0.793053150177002,-0.0103950351476669,-0.392109423875809,-0.919916987419128,0.00166579335927963,-0.742507934570313,-0.667572259902954,-0.0550357736647129,-0.256701976060867,-0.961503148078918,0.0980595126748085,-0.188817545771599,-0.98199063539505,0.00650751776993275,-0.609063625335693,-0.793053150177002,-0.0103950351476669,-0.00536902947351336,-0.999359667301178,0.03537417948246,0.00244860164821148,-0.998522341251373,0.0542862340807915,-0.0838482081890106,-0.99046790599823,0.109282478690147,-0.0723040774464607,-0.986517310142517,0.146818399429321,0.00244860164821148,-0.998522341251373,0.0542862340807915,-0.139741867780685,-0.980940341949463,0.135011598467827,-0.07386564463377,-0.989459216594696,0.124556183815002,-0.00536902947351336,-0.999359667301178,0.03537417948246,-0.0838482081890106,-0.99046790599823,0.109282478690147,-0.0287991873919964,-0.998278021812439,0.0511026494204998,-0.07386564463377,-0.989459216594696,0.124556183815002,-0.0949774086475372,-0.969039559364319,0.227906823158264,-0.0219102967530489,-0.999547898769379,0.0205893293023109,-0.0247255004942417,-0.999132454395294,0.033508375287056,-0.00861648190766573,-0.999319911003113,0.0358488410711288,-0.0219102967530489,-0.999547898769379,0.0205893293023109,-0.0287991873919964,-0.998278021812439,0.0511026494204998,0.00228894082829356,-0.998833417892456,0.0482330210506916,-0.00861648190766573,-0.999319911003113,0.0358488410711288,-0.0247255004942417,-0.999132454395294,0.033508375287056,0.000838913954794407,-0.999584019184113,0.0288259405642748,0.000838913954794407,-0.999584019184113,0.0288259405642748,0.0699213221669197,-0.988274455070496,-0.135736659169197,-0.0235425364226103,-0.999710023403168,0.00504988571628928,-0.115738458931446,-0.977128803730011,-0.178392380475998,-0.0235425364226103,-0.999710023403168,0.00504988571628928,0.0699213221669197,-0.988274455070496,-0.135736659169197,-0.207619547843933,-0.963688671588898,-0.167922928929329, +-0.0993482768535614,-0.993716835975647,-0.0515435896813869,-0.115738458931446,-0.977128803730011,-0.178392380475998,-0.207619547843933,-0.963688671588898,-0.167922928929329,-0.29424774646759,-0.891521275043488,-0.344395190477371,-0.467196434736252,-0.837293446063995,-0.284019470214844,-0.632106959819794,-0.763713300228119,-0.131082370877266,-0.467196434736252,-0.837293446063995,-0.284019470214844,-0.601714193820953,-0.733107388019562,-0.317007005214691,-0.63868123292923,-0.769460260868073,0.00412552012130618,-0.465513914823532,-0.885037660598755,-0.00225600809790194,-0.69880074262619,-0.715315282344818,0.00118987692985684,-0.597992837429047,-0.801419079303741,-0.0114816874265671,-0.63868123292923,-0.769460260868073,0.00412552012130618,-0.723913848400116,-0.686296105384827,-0.0703304633498192,-0.742507934570313,-0.667572259902954,-0.0550357736647129,-0.597992837429047,-0.801419079303741,-0.0114816874265671,-0.793657600879669,-0.604278147220612,-0.070393517613411,-0.69880074262619,-0.715315282344818,0.00118987692985684,-0.632106959819794,-0.763713300228119,-0.131082370877266,-0.601714193820953,-0.733107388019562,-0.317007005214691,-0.609063625335693,-0.793053150177002,-0.0103950351476669,-0.742507934570313,-0.667572259902954,-0.0550357736647129,-0.825862050056458,-0.562438488006592,-0.0401829145848751,-0.256701976060867,-0.961503148078918,0.0980595126748085,-0.609063625335693,-0.793053150177002,-0.0103950351476669,-0.624052226543427,-0.745389580726624,0.234420627355576,0.00244860164821148,-0.998522341251373,0.0542862340807915,-0.0542549192905426,-0.993161499500275,0.103375740349293,-0.0838482081890106,-0.99046790599823,0.109282478690147,-0.0723040774464607,-0.986517310142517,0.146818399429321,-0.0348530486226082,-0.997027993202209,0.0687047466635704,0.00244860164821148,-0.998522341251373,0.0542862340807915,-0.187488913536072,-0.955331683158875,0.228449463844299,-0.07386564463377,-0.989459216594696,0.124556183815002,-0.0838482081890106,-0.99046790599823,0.109282478690147,-0.0949774086475372,-0.969039559364319,0.227906823158264, +-0.07386564463377,-0.989459216594696,0.124556183815002,-0.25117689371109,-0.903538048267365,0.347172886133194,-0.0287991873919964,-0.998278021812439,0.0511026494204998,-0.0949774086475372,-0.969039559364319,0.227906823158264,0.00287791038863361,-0.98587828874588,0.167438358068466,0.00228894082829356,-0.998833417892456,0.0482330210506916,-0.0247255004942417,-0.999132454395294,0.033508375287056,-0.0219102967530489,-0.999547898769379,0.0205893293023109,-0.0287991873919964,-0.998278021812439,0.0511026494204998,0.00287791038863361,-0.98587828874588,0.167438358068466,0.00228894082829356,-0.998833417892456,0.0482330210506916,0.000838913954794407,-0.999584019184113,0.0288259405642748,-0.0247255004942417,-0.999132454395294,0.033508375287056,0.0322862379252911,-0.995583534240723,0.088153138756752,0.000838913954794407,-0.999584019184113,0.0288259405642748,0.240269511938095,-0.962818384170532,-0.123495735228062,0.0699213221669197,-0.988274455070496,-0.135736659169197,-0.115738458931446,-0.977128803730011,-0.178392380475998,0.0699213221669197,-0.988274455070496,-0.135736659169197,-0.0113888056948781,-0.954031109809875,-0.299490958452225,-0.207619547843933,-0.963688671588898,-0.167922928929329,-0.115738458931446,-0.977128803730011,-0.178392380475998,-0.29424774646759,-0.891521275043488,-0.344395190477371,-0.29424774646759,-0.891521275043488,-0.344395190477371,-0.601714193820953,-0.733107388019562,-0.317007005214691,-0.467196434736252,-0.837293446063995,-0.284019470214844,-0.723913848400116,-0.686296105384827,-0.0703304633498192,-0.63868123292923,-0.769460260868073,0.00412552012130618,-0.69880074262619,-0.715315282344818,0.00118987692985684,-0.793657600879669,-0.604278147220612,-0.070393517613411,-0.597992837429047,-0.801419079303741,-0.0114816874265671,-0.723913848400116,-0.686296105384827,-0.0703304633498192,-0.825862050056458,-0.562438488006592,-0.0401829145848751,-0.742507934570313,-0.667572259902954,-0.0550357736647129,-0.793657600879669,-0.604278147220612,-0.070393517613411,-0.825862050056458,-0.562438488006592,-0.0401829145848751, +-0.624052226543427,-0.745389580726624,0.234420627355576,-0.609063625335693,-0.793053150177002,-0.0103950351476669,-0.0348530486226082,-0.997027993202209,0.0687047466635704,-0.0542549192905426,-0.993161499500275,0.103375740349293,0.00244860164821148,-0.998522341251373,0.0542862340807915,-0.0838482081890106,-0.99046790599823,0.109282478690147,-0.0542549192905426,-0.993161499500275,0.103375740349293,-0.245746552944183,-0.941833317279816,0.22925665974617,-0.0723040774464607,-0.986517310142517,0.146818399429321,-0.131126075983047,-0.986843109130859,0.0945862010121346,-0.0348530486226082,-0.997027993202209,0.0687047466635704,-0.25117689371109,-0.903538048267365,0.347172886133194,-0.07386564463377,-0.989459216594696,0.124556183815002,-0.187488913536072,-0.955331683158875,0.228449463844299,-0.0838482081890106,-0.99046790599823,0.109282478690147,-0.36576721072197,-0.8657146692276,0.341690331697464,-0.187488913536072,-0.955331683158875,0.228449463844299,-0.0949774086475372,-0.969039559364319,0.227906823158264,-0.25117689371109,-0.903538048267365,0.347172886133194,-0.23674176633358,-0.723964095115662,0.647942245006561,0.00287791038863361,-0.98587828874588,0.167438358068466,-0.0949774086475372,-0.969039559364319,0.227906823158264,-0.00279740244150162,-0.914767920970917,0.403970003128052,-0.0247255004942417,-0.999132454395294,0.033508375287056,0.00228894082829356,-0.998833417892456,0.0482330210506916,-0.0107911955565214,-0.999857544898987,0.0129765942692757,0.0454252064228058,-0.993519723415375,0.10418626666069,0.00228894082829356,-0.998833417892456,0.0482330210506916,0.00287791038863361,-0.98587828874588,0.167438358068466,-0.0247255004942417,-0.999132454395294,0.033508375287056,-0.0139928311109543,-0.997585654258728,0.068020224571228,0.0322862379252911,-0.995583534240723,0.088153138756752,0.0322862379252911,-0.995583534240723,0.088153138756752,0.240269511938095,-0.962818384170532,-0.123495735228062,0.000838913954794407,-0.999584019184113,0.0288259405642748,-0.0113888056948781,-0.954031109809875,-0.299490958452225,0.0699213221669197,-0.988274455070496,-0.135736659169197, +0.240269511938095,-0.962818384170532,-0.123495735228062,-0.29424774646759,-0.891521275043488,-0.344395190477371,-0.115738458931446,-0.977128803730011,-0.178392380475998,-0.0113888056948781,-0.954031109809875,-0.299490958452225,-0.601714193820953,-0.733107388019562,-0.317007005214691,-0.29424774646759,-0.891521275043488,-0.344395190477371,-0.0113888056948781,-0.954031109809875,-0.299490958452225,-0.825862050056458,-0.562438488006592,-0.0401829145848751,-0.740835309028625,-0.562863647937775,0.366534262895584,-0.624052226543427,-0.745389580726624,0.234420627355576,-0.0542549192905426,-0.993161499500275,0.103375740349293,-0.0348530486226082,-0.997027993202209,0.0687047466635704,-0.028345474973321,-0.998417794704437,0.0485625267028809,-0.0838482081890106,-0.99046790599823,0.109282478690147,-0.245746552944183,-0.941833317279816,0.22925665974617,-0.36576721072197,-0.8657146692276,0.341690331697464,-0.0669759511947632,-0.988064467906952,0.138717994093895,-0.0348530486226082,-0.997027993202209,0.0687047466635704,-0.131126075983047,-0.986843109130859,0.0945862010121346,-0.25117689371109,-0.903538048267365,0.347172886133194,-0.187488913536072,-0.955331683158875,0.228449463844299,-0.444866180419922,-0.734166622161865,0.51292622089386,-0.36576721072197,-0.8657146692276,0.341690331697464,-0.444866180419922,-0.734166622161865,0.51292622089386,-0.187488913536072,-0.955331683158875,0.228449463844299,-0.23674176633358,-0.723964095115662,0.647942245006561,-0.25117689371109,-0.903538048267365,0.347172886133194,-0.566608309745789,-0.488668888807297,0.663443744182587,-0.00279740244150162,-0.914767920970917,0.403970003128052,-0.0949774086475372,-0.969039559364319,0.227906823158264,-0.23674176633358,-0.723964095115662,0.647942245006561,-0.00279740244150162,-0.914767920970917,0.403970003128052,0.108198501169682,-0.948828041553497,0.296678990125656,0.00287791038863361,-0.98587828874588,0.167438358068466,-0.0107911955565214,-0.999857544898987,0.0129765942692757,0.00228894082829356,-0.998833417892456,0.0482330210506916,0.0454252064228058,-0.993519723415375,0.10418626666069, +-0.0139928311109543,-0.997585654258728,0.068020224571228,-0.0247255004942417,-0.999132454395294,0.033508375287056,-0.0107911955565214,-0.999857544898987,0.0129765942692757,0.0454252064228058,-0.993519723415375,0.10418626666069,0.00287791038863361,-0.98587828874588,0.167438358068466,0.108198501169682,-0.948828041553497,0.296678990125656,0.0322862379252911,-0.995583534240723,0.088153138756752,-0.0139928311109543,-0.997585654258728,0.068020224571228,0.0433109812438488,-0.991632759571075,0.121608048677444,0.288274735212326,-0.934873342514038,0.207145795226097,0.240269511938095,-0.962818384170532,-0.123495735228062,0.0322862379252911,-0.995583534240723,0.088153138756752,-0.0100736701861024,-0.998942077159882,0.0448658689856529,-0.028345474973321,-0.998417794704437,0.0485625267028809,-0.0348530486226082,-0.997027993202209,0.0687047466635704,-0.0669759511947632,-0.988064467906952,0.138717994093895,-0.0203301906585693,-0.994535505771637,0.102399788796902,-0.0348530486226082,-0.997027993202209,0.0687047466635704,-0.25117689371109,-0.903538048267365,0.347172886133194,-0.444866180419922,-0.734166622161865,0.51292622089386,-0.566608309745789,-0.488668888807297,0.663443744182587,-0.566608309745789,-0.488668888807297,0.663443744182587,-0.511537253856659,-0.228545039892197,0.828309535980225,-0.23674176633358,-0.723964095115662,0.647942245006561,-0.00279740244150162,-0.914767920970917,0.403970003128052,-0.23674176633358,-0.723964095115662,0.647942245006561,0.103692747652531,-0.588402509689331,0.801891624927521,-0.00279740244150162,-0.914767920970917,0.403970003128052,0.204961687326431,-0.736329734325409,0.644832611083984,0.108198501169682,-0.948828041553497,0.296678990125656,0.0454252064228058,-0.993519723415375,0.10418626666069,0.00503814732655883,-0.999637961387634,0.0264282468706369,-0.0107911955565214,-0.999857544898987,0.0129765942692757,-0.0139928311109543,-0.997585654258728,0.068020224571228,-0.0107911955565214,-0.999857544898987,0.0129765942692757,-0.0141362510621548,-0.999814867973328,0.0130485165864229,0.0454252064228058,-0.993519723415375,0.10418626666069, +0.108198501169682,-0.948828041553497,0.296678990125656,0.0759395733475685,-0.980480074882507,0.181361094117165,-0.0139928311109543,-0.997585654258728,0.068020224571228,0.0100722704082727,-0.986918330192566,0.1609056442976,0.0433109812438488,-0.991632759571075,0.121608048677444,0.288274735212326,-0.934873342514038,0.207145795226097,0.0322862379252911,-0.995583534240723,0.088153138756752,0.0433109812438488,-0.991632759571075,0.121608048677444,-0.0100736701861024,-0.998942077159882,0.0448658689856529,-0.0348530486226082,-0.997027993202209,0.0687047466635704,-0.0203301906585693,-0.994535505771637,0.102399788796902,-0.0201946627348661,-0.991750717163086,0.126580134034157,-0.0203301906585693,-0.994535505771637,0.102399788796902,-0.0669759511947632,-0.988064467906952,0.138717994093895,-0.23674176633358,-0.723964095115662,0.647942245006561,-0.511537253856659,-0.228545039892197,0.828309535980225,0.0204367060214281,-0.199286758899689,0.979728043079376,-0.23674176633358,-0.723964095115662,0.647942245006561,0.0204367060214281,-0.199286758899689,0.979728043079376,0.103692747652531,-0.588402509689331,0.801891624927521,0.204961687326431,-0.736329734325409,0.644832611083984,-0.00279740244150162,-0.914767920970917,0.403970003128052,0.103692747652531,-0.588402509689331,0.801891624927521,0.181428268551826,-0.87577223777771,0.447332799434662,0.108198501169682,-0.948828041553497,0.296678990125656,0.204961687326431,-0.736329734325409,0.644832611083984,0.00503814732655883,-0.999637961387634,0.0264282468706369,0.0454252064228058,-0.993519723415375,0.10418626666069,0.0759395733475685,-0.980480074882507,0.181361094117165,-0.0107911955565214,-0.999857544898987,0.0129765942692757,0.00503814732655883,-0.999637961387634,0.0264282468706369,-0.0141362510621548,-0.999814867973328,0.0130485165864229,-0.0139928311109543,-0.997585654258728,0.068020224571228,-0.0141362510621548,-0.999814867973328,0.0130485165864229,-0.00979156699031591,-0.995563983917236,0.0935755148530006,0.181428268551826,-0.87577223777771,0.447332799434662,0.0759395733475685,-0.980480074882507,0.181361094117165, +0.108198501169682,-0.948828041553497,0.296678990125656,-0.0139928311109543,-0.997585654258728,0.068020224571228,-0.00979156699031591,-0.995563983917236,0.0935755148530006,0.0100722704082727,-0.986918330192566,0.1609056442976,0.0100722704082727,-0.986918330192566,0.1609056442976,0.0558324605226517,-0.986178517341614,0.155995607376099,0.0433109812438488,-0.991632759571075,0.121608048677444,0.288274735212326,-0.934873342514038,0.207145795226097,0.0433109812438488,-0.991632759571075,0.121608048677444,0.0558324605226517,-0.986178517341614,0.155995607376099,-0.0224066842347384,-0.996970415115356,0.0744839310646057,-0.0100736701861024,-0.998942077159882,0.0448658689856529,-0.0203301906585693,-0.994535505771637,0.102399788796902,0.0651274919509888,-0.996976733207703,0.0423755496740341,-0.0203301906585693,-0.994535505771637,0.102399788796902,-0.0201946627348661,-0.991750717163086,0.126580134034157,0.0204367060214281,-0.199286758899689,0.979728043079376,0.33131530880928,-0.172719866037369,0.9275763630867,0.103692747652531,-0.588402509689331,0.801891624927521,0.204961687326431,-0.736329734325409,0.644832611083984,0.103692747652531,-0.588402509689331,0.801891624927521,0.33131530880928,-0.172719866037369,0.9275763630867,0.181428268551826,-0.87577223777771,0.447332799434662,0.204961687326431,-0.736329734325409,0.644832611083984,0.319517523050308,-0.53386390209198,0.782877862453461,0.00503814732655883,-0.999637961387634,0.0264282468706369,0.0759395733475685,-0.980480074882507,0.181361094117165,0.0339107066392899,-0.992947816848755,0.113598689436913,-0.0141362510621548,-0.999814867973328,0.0130485165864229,0.00503814732655883,-0.999637961387634,0.0264282468706369,0.00655972864478827,-0.999971807003021,0.00364732043817639,0.00778050348162651,-0.999713063240051,0.0226532947272062,-0.00979156699031591,-0.995563983917236,0.0935755148530006,-0.0141362510621548,-0.999814867973328,0.0130485165864229,0.181428268551826,-0.87577223777771,0.447332799434662,0.107965044677258,-0.935742616653442,0.335751801729202,0.0759395733475685,-0.980480074882507,0.181361094117165, +-0.0409214496612549,-0.975447297096252,0.216397538781166,0.0100722704082727,-0.986918330192566,0.1609056442976,-0.00979156699031591,-0.995563983917236,0.0935755148530006,0.0558324605226517,-0.986178517341614,0.155995607376099,0.0100722704082727,-0.986918330192566,0.1609056442976,0.0445485077798367,-0.986564695835114,0.157179638743401,0.319517523050308,-0.53386390209198,0.782877862453461,0.204961687326431,-0.736329734325409,0.644832611083984,0.33131530880928,-0.172719866037369,0.9275763630867,0.319517523050308,-0.53386390209198,0.782877862453461,0.252474784851074,-0.664206862449646,0.703623116016388,0.181428268551826,-0.87577223777771,0.447332799434662,0.107965044677258,-0.935742616653442,0.335751801729202,0.0339107066392899,-0.992947816848755,0.113598689436913,0.0759395733475685,-0.980480074882507,0.181361094117165,0.0240944996476173,-0.998648107051849,0.046057790517807,0.00503814732655883,-0.999637961387634,0.0264282468706369,0.0339107066392899,-0.992947816848755,0.113598689436913,0.0114173144102097,-0.999882817268372,0.0101929744705558,0.00655972864478827,-0.999971807003021,0.00364732043817639,0.00503814732655883,-0.999637961387634,0.0264282468706369,0.00778050348162651,-0.999713063240051,0.0226532947272062,-0.0141362510621548,-0.999814867973328,0.0130485165864229,0.00655972864478827,-0.999971807003021,0.00364732043817639,-0.00979156699031591,-0.995563983917236,0.0935755148530006,0.00778050348162651,-0.999713063240051,0.0226532947272062,-0.0072314846329391,-0.998073041439056,0.0616266168653965,0.181428268551826,-0.87577223777771,0.447332799434662,0.252474784851074,-0.664206862449646,0.703623116016388,0.107965044677258,-0.935742616653442,0.335751801729202,-0.0409214496612549,-0.975447297096252,0.216397538781166,0.010400109924376,-0.974038898944855,0.22614161670208,0.0100722704082727,-0.986918330192566,0.1609056442976,-0.0409214496612549,-0.975447297096252,0.216397538781166,-0.00979156699031591,-0.995563983917236,0.0935755148530006,-0.0072314846329391,-0.998073041439056,0.0616266168653965,0.0445485077798367,-0.986564695835114,0.157179638743401, +0.0100722704082727,-0.986918330192566,0.1609056442976,0.010400109924376,-0.974038898944855,0.22614161670208,0.0339107066392899,-0.992947816848755,0.113598689436913,0.107965044677258,-0.935742616653442,0.335751801729202,0.0798556432127953,-0.978785812854767,0.188683301210403,0.0114173144102097,-0.999882817268372,0.0101929744705558,0.00503814732655883,-0.999637961387634,0.0264282468706369,0.0240944996476173,-0.998648107051849,0.046057790517807,0.0339107066392899,-0.992947816848755,0.113598689436913,0.0798556432127953,-0.978785812854767,0.188683301210403,0.0240944996476173,-0.998648107051849,0.046057790517807,0.0114173144102097,-0.999882817268372,0.0101929744705558,0.00778050348162651,-0.999713063240051,0.0226532947272062,0.00655972864478827,-0.999971807003021,0.00364732043817639,-0.0072314846329391,-0.998073041439056,0.0616266168653965,0.00778050348162651,-0.999713063240051,0.0226532947272062,0.0114173144102097,-0.999882817268372,0.0101929744705558,0.252474784851074,-0.664206862449646,0.703623116016388,0.190357357263565,-0.734283208847046,0.6516073346138,0.107965044677258,-0.935742616653442,0.335751801729202,0.010400109924376,-0.974038898944855,0.22614161670208,-0.0409214496612549,-0.975447297096252,0.216397538781166,-0.0273285731673241,-0.961806774139404,0.272361427545547,-0.102364741265774,-0.978809237480164,0.177351638674736,-0.0409214496612549,-0.975447297096252,0.216397538781166,-0.0072314846329391,-0.998073041439056,0.0616266168653965,0.107965044677258,-0.935742616653442,0.335751801729202,0.18120077252388,-0.85315728187561,0.489171624183655,0.0798556432127953,-0.978785812854767,0.188683301210403,0.0114173144102097,-0.999882817268372,0.0101929744705558,0.0240944996476173,-0.998648107051849,0.046057790517807,0.0193864852190018,-0.999429285526276,0.0276628211140633,0.0614623017609119,-0.993601381778717,0.0947554036974907,0.0240944996476173,-0.998648107051849,0.046057790517807,0.0798556432127953,-0.978785812854767,0.188683301210403,-0.0072314846329391,-0.998073041439056,0.0616266168653965,0.0114173144102097,-0.999882817268372,0.0101929744705558, +0.026708671823144,-0.999061048030853,0.0341112427413464,0.107965044677258,-0.935742616653442,0.335751801729202,0.190357357263565,-0.734283208847046,0.6516073346138,0.18120077252388,-0.85315728187561,0.489171624183655,-0.0273285731673241,-0.961806774139404,0.272361427545547,-0.0409214496612549,-0.975447297096252,0.216397538781166,-0.0679580345749855,-0.961276948451996,0.267073422670364,-0.102364741265774,-0.978809237480164,0.177351638674736,-0.0982141867280006,-0.96052211523056,0.26029047369957,-0.0409214496612549,-0.975447297096252,0.216397538781166,-0.0072314846329391,-0.998073041439056,0.0616266168653965,-0.0128736384212971,-0.996168196201324,0.0865055248141289,-0.102364741265774,-0.978809237480164,0.177351638674736,0.18120077252388,-0.85315728187561,0.489171624183655,0.13426199555397,-0.948890447616577,0.285623013973236,0.0798556432127953,-0.978785812854767,0.188683301210403,0.0614623017609119,-0.993601381778717,0.0947554036974907,0.0193864852190018,-0.999429285526276,0.0276628211140633,0.0240944996476173,-0.998648107051849,0.046057790517807,0.0114173144102097,-0.999882817268372,0.0101929744705558,0.0193864852190018,-0.999429285526276,0.0276628211140633,0.0230838470160961,-0.999715864658356,0.0059421849437058,0.0798556432127953,-0.978785812854767,0.188683301210403,0.13426199555397,-0.948890447616577,0.285623013973236,0.0614623017609119,-0.993601381778717,0.0947554036974907,0.0114173144102097,-0.999882817268372,0.0101929744705558,0.0230838470160961,-0.999715864658356,0.0059421849437058,0.026708671823144,-0.999061048030853,0.0341112427413464,0.026708671823144,-0.999061048030853,0.0341112427413464,-0.0128736384212971,-0.996168196201324,0.0865055248141289,-0.0072314846329391,-0.998073041439056,0.0616266168653965,-0.0679580345749855,-0.961276948451996,0.267073422670364,-0.0409214496612549,-0.975447297096252,0.216397538781166,-0.0982141867280006,-0.96052211523056,0.26029047369957,-0.0982141867280006,-0.96052211523056,0.26029047369957,-0.102364741265774,-0.978809237480164,0.177351638674736,-0.185835391283035,-0.949786067008972,0.251736998558044, +-0.102364741265774,-0.978809237480164,0.177351638674736,-0.0128736384212971,-0.996168196201324,0.0865055248141289,-0.147191807627678,-0.966743588447571,0.209144175052643,0.18120077252388,-0.85315728187561,0.489171624183655,0.218316376209259,-0.721683084964752,0.656895220279694,0.13426199555397,-0.948890447616577,0.285623013973236,0.0614623017609119,-0.993601381778717,0.0947554036974907,0.0448717251420021,-0.985016286373138,0.166521430015564,0.0193864852190018,-0.999429285526276,0.0276628211140633,0.0205856319516897,-0.999318420886993,0.0306395180523396,0.0230838470160961,-0.999715864658356,0.0059421849437058,0.0193864852190018,-0.999429285526276,0.0276628211140633,0.13426199555397,-0.948890447616577,0.285623013973236,0.0448717251420021,-0.985016286373138,0.166521430015564,0.0614623017609119,-0.993601381778717,0.0947554036974907,0.0122165391221642,-0.999725878238678,0.0199721436947584,0.026708671823144,-0.999061048030853,0.0341112427413464,0.0230838470160961,-0.999715864658356,0.0059421849437058,-0.0153352273628116,-0.9953972697258,0.0945995599031448,-0.0128736384212971,-0.996168196201324,0.0865055248141289,0.026708671823144,-0.999061048030853,0.0341112427413464,-0.102364741265774,-0.978809237480164,0.177351638674736,-0.147191807627678,-0.966743588447571,0.209144175052643,-0.185835391283035,-0.949786067008972,0.251736998558044,-0.0153352273628116,-0.9953972697258,0.0945995599031448,-0.147191807627678,-0.966743588447571,0.209144175052643,-0.0128736384212971,-0.996168196201324,0.0865055248141289,0.218316376209259,-0.721683084964752,0.656895220279694,0.134191811084747,-0.844798266887665,0.517984867095947,0.13426199555397,-0.948890447616577,0.285623013973236,0.0193864852190018,-0.999429285526276,0.0276628211140633,0.0448717251420021,-0.985016286373138,0.166521430015564,0.0205856319516897,-0.999318420886993,0.0306395180523396,0.00985689461231232,-0.999950647354126,-0.00119050836656243,0.0230838470160961,-0.999715864658356,0.0059421849437058,0.0205856319516897,-0.999318420886993,0.0306395180523396,0.13426199555397,-0.948890447616577,0.285623013973236, +0.134191811084747,-0.844798266887665,0.517984867095947,0.0448717251420021,-0.985016286373138,0.166521430015564,0.026708671823144,-0.999061048030853,0.0341112427413464,0.0122165391221642,-0.999725878238678,0.0199721436947584,0.00983716826885939,-0.999161183834076,0.0397492498159409,0.00985689461231232,-0.999950647354126,-0.00119050836656243,0.0122165391221642,-0.999725878238678,0.0199721436947584,0.0230838470160961,-0.999715864658356,0.0059421849437058,-0.0194712337106466,-0.998264729976654,0.0555718205869198,-0.0153352273628116,-0.9953972697258,0.0945995599031448,0.026708671823144,-0.999061048030853,0.0341112427413464,-0.185835391283035,-0.949786067008972,0.251736998558044,-0.147191807627678,-0.966743588447571,0.209144175052643,-0.227739453315735,-0.932409226894379,0.280620157718658,-0.147191807627678,-0.966743588447571,0.209144175052643,-0.0153352273628116,-0.9953972697258,0.0945995599031448,-0.149409949779511,-0.977563321590424,0.148480549454689,0.0167720522731543,-0.992017507553101,0.124979518353939,0.0205856319516897,-0.999318420886993,0.0306395180523396,0.0448717251420021,-0.985016286373138,0.166521430015564,0.00985689461231232,-0.999950647354126,-0.00119050836656243,0.0205856319516897,-0.999318420886993,0.0306395180523396,0.000716769252903759,-0.998404383659363,0.0564629621803761,0.134191811084747,-0.844798266887665,0.517984867095947,0.056921798735857,-0.922482848167419,0.381818234920502,0.0448717251420021,-0.985016286373138,0.166521430015564,0.0230286438018084,-0.999325275421143,0.0286100283265114,0.00983716826885939,-0.999161183834076,0.0397492498159409,0.0122165391221642,-0.999725878238678,0.0199721436947584,0.026708671823144,-0.999061048030853,0.0341112427413464,0.00983716826885939,-0.999161183834076,0.0397492498159409,-0.0194712337106466,-0.998264729976654,0.0555718205869198,0.0122165391221642,-0.999725878238678,0.0199721436947584,0.00985689461231232,-0.999950647354126,-0.00119050836656243,0.00549602089449763,-0.999946296215057,0.00877796951681376,-0.0194712337106466,-0.998264729976654,0.0555718205869198, +-0.088620662689209,-0.99369215965271,0.0687165260314941,-0.0153352273628116,-0.9953972697258,0.0945995599031448,-0.227739453315735,-0.932409226894379,0.280620157718658,-0.147191807627678,-0.966743588447571,0.209144175052643,-0.218252614140511,-0.950841724872589,0.219694629311562,-0.0153352273628116,-0.9953972697258,0.0945995599031448,-0.088620662689209,-0.99369215965271,0.0687165260314941,-0.149409949779511,-0.977563321590424,0.148480549454689,-0.147191807627678,-0.966743588447571,0.209144175052643,-0.149409949779511,-0.977563321590424,0.148480549454689,-0.218252614140511,-0.950841724872589,0.219694629311562,0.000716769252903759,-0.998404383659363,0.0564629621803761,0.0205856319516897,-0.999318420886993,0.0306395180523396,0.0167720522731543,-0.992017507553101,0.124979518353939,0.0167720522731543,-0.992017507553101,0.124979518353939,0.0448717251420021,-0.985016286373138,0.166521430015564,0.056921798735857,-0.922482848167419,0.381818234920502,0.00985689461231232,-0.999950647354126,-0.00119050836656243,0.000716769252903759,-0.998404383659363,0.0564629621803761,0.00549602089449763,-0.999946296215057,0.00877796951681376,0.00983716826885939,-0.999161183834076,0.0397492498159409,0.0230286438018084,-0.999325275421143,0.0286100283265114,-0.00459290621802211,-0.999618351459503,0.0272391587495804,0.0230286438018084,-0.999325275421143,0.0286100283265114,0.0122165391221642,-0.999725878238678,0.0199721436947584,0.00549602089449763,-0.999946296215057,0.00877796951681376,-0.0487371198832989,-0.99850994348526,0.0245472490787506,-0.0194712337106466,-0.998264729976654,0.0555718205869198,0.00983716826885939,-0.999161183834076,0.0397492498159409,-0.0233895946294069,-0.998195767402649,0.0553001128137112,-0.088620662689209,-0.99369215965271,0.0687165260314941,-0.0194712337106466,-0.998264729976654,0.0555718205869198,-0.149409949779511,-0.977563321590424,0.148480549454689,-0.088620662689209,-0.99369215965271,0.0687165260314941,-0.254037261009216,-0.958154320716858,0.131929248571396,-0.218252614140511,-0.950841724872589,0.219694629311562, +-0.149409949779511,-0.977563321590424,0.148480549454689,-0.160936340689659,-0.979065001010895,0.124624088406563,-0.134678080677986,-0.988995730876923,0.0612304881215096,-0.0473774410784245,-0.998720109462738,0.0177029576152563,-0.16237960755825,-0.986423552036285,-0.024523077532649,-0.16237960755825,-0.986423552036285,-0.024523077532649,-0.414771229028702,-0.909308731555939,-0.0335014685988426,-0.134678080677986,-0.988995730876923,0.0612304881215096,-0.0473774410784245,-0.998720109462738,0.0177029576152563,-0.0233895946294069,-0.998195767402649,0.0553001128137112,-0.0692507028579712,-0.996698617935181,0.0423799268901348,-0.112270824611187,-0.993194699287415,0.0309757106006145,-0.180115565657616,-0.981284022331238,0.0681169703602791,-0.0781481042504311,-0.996165871620178,0.0393231026828289,-0.0781481042504311,-0.996165871620178,0.0393231026828289,-0.0692507028579712,-0.996698617935181,0.0423799268901348,-0.112270824611187,-0.993194699287415,0.0309757106006145,0.0167720522731543,-0.992017507553101,0.124979518353939,0.0269863288849592,-0.968023240566254,0.249404564499855,0.000716769252903759,-0.998404383659363,0.0564629621803761,0.056921798735857,-0.922482848167419,0.381818234920502,0.0269863288849592,-0.968023240566254,0.249404564499855,0.0167720522731543,-0.992017507553101,0.124979518353939,-0.0710163861513138,-0.993943393230438,0.0838637501001358,0.00549602089449763,-0.999946296215057,0.00877796951681376,0.000716769252903759,-0.998404383659363,0.0564629621803761,-0.00274603092111647,-0.999795198440552,0.0200429614633322,-0.00459290621802211,-0.999618351459503,0.0272391587495804,0.0230286438018084,-0.999325275421143,0.0286100283265114,0.00983716826885939,-0.999161183834076,0.0397492498159409,-0.00459290621802211,-0.999618351459503,0.0272391587495804,-0.0233411528170109,-0.999477744102478,0.0223467312753201,0.00549602089449763,-0.999946296215057,0.00877796951681376,-0.00274603092111647,-0.999795198440552,0.0200429614633322,0.0230286438018084,-0.999325275421143,0.0286100283265114,-0.112270824611187,-0.993194699287415,0.0309757106006145, +-0.0194712337106466,-0.998264729976654,0.0555718205869198,-0.0487371198832989,-0.99850994348526,0.0245472490787506,0.00983716826885939,-0.999161183834076,0.0397492498159409,-0.0233411528170109,-0.999477744102478,0.0223467312753201,-0.0487371198832989,-0.99850994348526,0.0245472490787506,-0.0233895946294069,-0.998195767402649,0.0553001128137112,-0.0161404851824045,-0.997900485992432,0.0627214834094048,-0.088620662689209,-0.99369215965271,0.0687165260314941,-0.0194712337106466,-0.998264729976654,0.0555718205869198,-0.0692507028579712,-0.996698617935181,0.0423799268901348,-0.0233895946294069,-0.998195767402649,0.0553001128137112,-0.254037261009216,-0.958154320716858,0.131929248571396,-0.088620662689209,-0.99369215965271,0.0687165260314941,-0.262110680341721,-0.957093477249146,0.123571909964085,-0.160936340689659,-0.979065001010895,0.124624088406563,-0.149409949779511,-0.977563321590424,0.148480549454689,-0.254037261009216,-0.958154320716858,0.131929248571396,-0.134678080677986,-0.988995730876923,0.0612304881215096,-0.0233895946294069,-0.998195767402649,0.0553001128137112,-0.0473774410784245,-0.998720109462738,0.0177029576152563,-0.370698302984238,-0.923178255558014,0.101610444486141,-0.134678080677986,-0.988995730876923,0.0612304881215096,-0.414771229028702,-0.909308731555939,-0.0335014685988426,-0.180115565657616,-0.981284022331238,0.0681169703602791,-0.112270824611187,-0.993194699287415,0.0309757106006145,-0.390555381774902,-0.920544624328613,-0.007995898835361,-0.0194712337106466,-0.998264729976654,0.0555718205869198,-0.112270824611187,-0.993194699287415,0.0309757106006145,-0.0692507028579712,-0.996698617935181,0.0423799268901348,0.0269863288849592,-0.968023240566254,0.249404564499855,-0.0467874854803085,-0.978813529014587,0.199336230754852,0.000716769252903759,-0.998404383659363,0.0564629621803761,-0.00274603092111647,-0.999795198440552,0.0200429614633322,0.00549602089449763,-0.999946296215057,0.00877796951681376,-0.0710163861513138,-0.993943393230438,0.0838637501001358,-0.0710163861513138,-0.993943393230438,0.0838637501001358, +0.000716769252903759,-0.998404383659363,0.0564629621803761,-0.0467874854803085,-0.978813529014587,0.199336230754852,-0.0303282793611288,-0.999185383319855,0.0266203563660383,-0.00459290621802211,-0.999618351459503,0.0272391587495804,-0.00274603092111647,-0.999795198440552,0.0200429614633322,-0.031140360981226,-0.999387741088867,0.0159480851143599,-0.0233411528170109,-0.999477744102478,0.0223467312753201,-0.00459290621802211,-0.999618351459503,0.0272391587495804,-0.112270824611187,-0.993194699287415,0.0309757106006145,-0.0487371198832989,-0.99850994348526,0.0245472490787506,-0.275939524173737,-0.957456946372986,-0.0844604223966599,-0.0487371198832989,-0.99850994348526,0.0245472490787506,-0.0233411528170109,-0.999477744102478,0.0223467312753201,-0.0866794213652611,-0.996235430240631,0.00121113809291273,-0.0233895946294069,-0.998195767402649,0.0553001128137112,-0.134678080677986,-0.988995730876923,0.0612304881215096,-0.0161404851824045,-0.997900485992432,0.0627214834094048,-0.0161404851824045,-0.997900485992432,0.0627214834094048,-0.262110680341721,-0.957093477249146,0.123571909964085,-0.088620662689209,-0.99369215965271,0.0687165260314941,-0.254037261009216,-0.958154320716858,0.131929248571396,-0.262110680341721,-0.957093477249146,0.123571909964085,-0.485684245824814,-0.853665888309479,0.188056409358978,-0.262110680341721,-0.957093477249146,0.123571909964085,-0.134678080677986,-0.988995730876923,0.0612304881215096,-0.370698302984238,-0.923178255558014,0.101610444486141,-0.112270824611187,-0.993194699287415,0.0309757106006145,-0.275939524173737,-0.957456946372986,-0.0844604223966599,-0.390555381774902,-0.920544624328613,-0.007995898835361,-0.180115565657616,-0.981284022331238,0.0681169703602791,-0.390555381774902,-0.920544624328613,-0.007995898835361,-0.472220778465271,-0.871082425117493,0.134991824626923,-0.0710163861513138,-0.993943393230438,0.0838637501001358,-0.131065011024475,-0.98811000585556,0.0803757682442665,-0.00274603092111647,-0.999795198440552,0.0200429614633322,-0.0710163861513138,-0.993943393230438,0.0838637501001358, +-0.0467874854803085,-0.978813529014587,0.199336230754852,-0.174143970012665,-0.954230546951294,0.24314147233963,-0.0303282793611288,-0.999185383319855,0.0266203563660383,-0.031140360981226,-0.999387741088867,0.0159480851143599,-0.00459290621802211,-0.999618351459503,0.0272391587495804,-0.0303282793611288,-0.999185383319855,0.0266203563660383,-0.00274603092111647,-0.999795198440552,0.0200429614633322,-0.131065011024475,-0.98811000585556,0.0803757682442665,-0.0866794213652611,-0.996235430240631,0.00121113809291273,-0.0233411528170109,-0.999477744102478,0.0223467312753201,-0.031140360981226,-0.999387741088867,0.0159480851143599,-0.275939524173737,-0.957456946372986,-0.0844604223966599,-0.0487371198832989,-0.99850994348526,0.0245472490787506,-0.0866794213652611,-0.996235430240631,0.00121113809291273,-0.262110680341721,-0.957093477249146,0.123571909964085,-0.0161404851824045,-0.997900485992432,0.0627214834094048,-0.134678080677986,-0.988995730876923,0.0612304881215096,-0.485684245824814,-0.853665888309479,0.188056409358978,-0.262110680341721,-0.957093477249146,0.123571909964085,-0.370698302984238,-0.923178255558014,0.101610444486141,-0.390555381774902,-0.920544624328613,-0.007995898835361,-0.275939524173737,-0.957456946372986,-0.0844604223966599,-0.910565853118896,-0.379725903272629,-0.163333669304848,-0.472220778465271,-0.871082425117493,0.134991824626923,-0.390555381774902,-0.920544624328613,-0.007995898835361,-0.910565853118896,-0.379725903272629,-0.163333669304848,-0.0710163861513138,-0.993943393230438,0.0838637501001358,-0.245923191308975,-0.94794899225235,0.202272966504097,-0.131065011024475,-0.98811000585556,0.0803757682442665,-0.174143970012665,-0.954230546951294,0.24314147233963,-0.300626397132874,-0.897688806056976,0.322146534919739,-0.0710163861513138,-0.993943393230438,0.0838637501001358,-0.0596597045660019,-0.998118698596954,0.0141334403306246,-0.031140360981226,-0.999387741088867,0.0159480851143599,-0.0303282793611288,-0.999185383319855,0.0266203563660383,-0.190681383013725,-0.980166256427765,0.0539849363267422, +-0.0303282793611288,-0.999185383319855,0.0266203563660383,-0.131065011024475,-0.98811000585556,0.0803757682442665,-0.0978269055485725,-0.995128273963928,-0.0122283156961203,-0.0866794213652611,-0.996235430240631,0.00121113809291273,-0.031140360981226,-0.999387741088867,0.0159480851143599,-0.275939524173737,-0.957456946372986,-0.0844604223966599,-0.0866794213652611,-0.996235430240631,0.00121113809291273,-0.274105548858643,-0.960202872753143,-0.0536326542496681,-0.910565853118896,-0.379725903272629,-0.163333669304848,-0.275939524173737,-0.957456946372986,-0.0844604223966599,-0.746282041072845,-0.533033013343811,-0.398671388626099,-0.897202432155609,-0.398109018802643,0.191146120429039,-0.472220778465271,-0.871082425117493,0.134991824626923,-0.910565853118896,-0.379725903272629,-0.163333669304848,-0.0710163861513138,-0.993943393230438,0.0838637501001358,-0.300626397132874,-0.897688806056976,0.322146534919739,-0.245923191308975,-0.94794899225235,0.202272966504097,-0.131065011024475,-0.98811000585556,0.0803757682442665,-0.245923191308975,-0.94794899225235,0.202272966504097,-0.440862327814102,-0.858264982700348,0.262719392776489,-0.0978269055485725,-0.995128273963928,-0.0122283156961203,-0.031140360981226,-0.999387741088867,0.0159480851143599,-0.0596597045660019,-0.998118698596954,0.0141334403306246,-0.0596597045660019,-0.998118698596954,0.0141334403306246,-0.0303282793611288,-0.999185383319855,0.0266203563660383,-0.190681383013725,-0.980166256427765,0.0539849363267422,-0.356898099184036,-0.92310106754303,0.143205553293228,-0.190681383013725,-0.980166256427765,0.0539849363267422,-0.131065011024475,-0.98811000585556,0.0803757682442665,-0.274105548858643,-0.960202872753143,-0.0536326542496681,-0.0866794213652611,-0.996235430240631,0.00121113809291273,-0.0978269055485725,-0.995128273963928,-0.0122283156961203,-0.581981182098389,-0.784523546695709,-0.21405765414238,-0.275939524173737,-0.957456946372986,-0.0844604223966599,-0.274105548858643,-0.960202872753143,-0.0536326542496681,-0.581981182098389,-0.784523546695709,-0.21405765414238, +-0.746282041072845,-0.533033013343811,-0.398671388626099,-0.275939524173737,-0.957456946372986,-0.0844604223966599,-0.910565853118896,-0.379725903272629,-0.163333669304848,-0.746282041072845,-0.533033013343811,-0.398671388626099,-0.841287136077881,0.168122723698616,-0.513780772686005,-0.54243540763855,-0.705175459384918,0.456608414649963,-0.245923191308975,-0.94794899225235,0.202272966504097,-0.300626397132874,-0.897688806056976,0.322146534919739,-0.54243540763855,-0.705175459384918,0.456608414649963,-0.440862327814102,-0.858264982700348,0.262719392776489,-0.245923191308975,-0.94794899225235,0.202272966504097,-0.356898099184036,-0.92310106754303,0.143205553293228,-0.131065011024475,-0.98811000585556,0.0803757682442665,-0.440862327814102,-0.858264982700348,0.262719392776489,-0.0978269055485725,-0.995128273963928,-0.0122283156961203,-0.0596597045660019,-0.998118698596954,0.0141334403306246,-0.242758765816689,-0.970010340213776,0.0121685676276684,-0.242758765816689,-0.970010340213776,0.0121685676276684,-0.0596597045660019,-0.998118698596954,0.0141334403306246,-0.190681383013725,-0.980166256427765,0.0539849363267422,-0.356898099184036,-0.92310106754303,0.143205553293228,-0.410643398761749,-0.905597448348999,0.106137841939926,-0.190681383013725,-0.980166256427765,0.0539849363267422,-0.274105548858643,-0.960202872753143,-0.0536326542496681,-0.0978269055485725,-0.995128273963928,-0.0122283156961203,-0.331353515386581,-0.939651250839233,-0.0852076336741447,-0.581981182098389,-0.784523546695709,-0.21405765414238,-0.274105548858643,-0.960202872753143,-0.0536326542496681,-0.638972222805023,-0.76111364364624,-0.111446619033813,-0.746282041072845,-0.533033013343811,-0.398671388626099,-0.581981182098389,-0.784523546695709,-0.21405765414238,-0.820861876010895,-0.00331404758617282,-0.571117103099823,-0.841287136077881,0.168122723698616,-0.513780772686005,-0.746282041072845,-0.533033013343811,-0.398671388626099,-0.820861876010895,-0.00331404758617282,-0.571117103099823,-0.54243540763855,-0.705175459384918,0.456608414649963,-0.748864650726318,-0.469806611537933,0.467422008514404, +-0.440862327814102,-0.858264982700348,0.262719392776489,-0.738873243331909,-0.590097725391388,0.325347453355789,-0.356898099184036,-0.92310106754303,0.143205553293228,-0.440862327814102,-0.858264982700348,0.262719392776489,-0.242758765816689,-0.970010340213776,0.0121685676276684,-0.331353515386581,-0.939651250839233,-0.0852076336741447,-0.0978269055485725,-0.995128273963928,-0.0122283156961203,-0.242758765816689,-0.970010340213776,0.0121685676276684,-0.190681383013725,-0.980166256427765,0.0539849363267422,-0.404567509889603,-0.913363933563232,0.0457289963960648,-0.356898099184036,-0.92310106754303,0.143205553293228,-0.70205169916153,-0.670906782150269,0.238762125372887,-0.410643398761749,-0.905597448348999,0.106137841939926,-0.190681383013725,-0.980166256427765,0.0539849363267422,-0.410643398761749,-0.905597448348999,0.106137841939926,-0.511200726032257,-0.855185985565186,0.0856176093220711,-0.274105548858643,-0.960202872753143,-0.0536326542496681,-0.331353515386581,-0.939651250839233,-0.0852076336741447,-0.638001799583435,-0.733924984931946,-0.233039930462837,-0.638001799583435,-0.733924984931946,-0.233039930462837,-0.638972222805023,-0.76111364364624,-0.111446619033813,-0.274105548858643,-0.960202872753143,-0.0536326542496681,-0.581981182098389,-0.784523546695709,-0.21405765414238,-0.638972222805023,-0.76111364364624,-0.111446619033813,-0.843885838985443,-0.428337931632996,-0.323083817958832,-0.581981182098389,-0.784523546695709,-0.21405765414238,-0.843885838985443,-0.428337931632996,-0.323083817958832,-0.820861876010895,-0.00331404758617282,-0.571117103099823,-0.54243540763855,-0.705175459384918,0.456608414649963,-0.777651607990265,-0.172501429915428,0.604566872119904,-0.748864650726318,-0.469806611537933,0.467422008514404,-0.738873243331909,-0.590097725391388,0.325347453355789,-0.440862327814102,-0.858264982700348,0.262719392776489,-0.748864650726318,-0.469806611537933,0.467422008514404,-0.738873243331909,-0.590097725391388,0.325347453355789,-0.6466144323349,-0.720760762691498,0.249787002801895,-0.356898099184036,-0.92310106754303,0.143205553293228, +-0.577984690666199,-0.812830865383148,-0.0723842531442642,-0.331353515386581,-0.939651250839233,-0.0852076336741447,-0.242758765816689,-0.970010340213776,0.0121685676276684,-0.190681383013725,-0.980166256427765,0.0539849363267422,-0.511200726032257,-0.855185985565186,0.0856176093220711,-0.404567509889603,-0.913363933563232,0.0457289963960648,-0.242758765816689,-0.970010340213776,0.0121685676276684,-0.404567509889603,-0.913363933563232,0.0457289963960648,-0.577284634113312,-0.812013924121857,0.0858815684914589,-0.70205169916153,-0.670906782150269,0.238762125372887,-0.356898099184036,-0.92310106754303,0.143205553293228,-0.6466144323349,-0.720760762691498,0.249787002801895,-0.70205169916153,-0.670906782150269,0.238762125372887,-0.70343941450119,-0.697313368320465,0.13757561147213,-0.410643398761749,-0.905597448348999,0.106137841939926,-0.70343941450119,-0.697313368320465,0.13757561147213,-0.511200726032257,-0.855185985565186,0.0856176093220711,-0.410643398761749,-0.905597448348999,0.106137841939926,-0.757601916790009,-0.620732367038727,-0.201817944645882,-0.638001799583435,-0.733924984931946,-0.233039930462837,-0.331353515386581,-0.939651250839233,-0.0852076336741447,-0.638001799583435,-0.733924984931946,-0.233039930462837,-0.936037838459015,-0.186424568295479,-0.298461079597473,-0.638972222805023,-0.76111364364624,-0.111446619033813,-0.843885838985443,-0.428337931632996,-0.323083817958832,-0.638972222805023,-0.76111364364624,-0.111446619033813,-0.936037838459015,-0.186424568295479,-0.298461079597473,-0.820861876010895,-0.00331404758617282,-0.571117103099823,-0.843885838985443,-0.428337931632996,-0.323083817958832,-0.867374897003174,0.131990298628807,-0.479832500219345,-0.876842677593231,0.00274545722641051,0.480769425630569,-0.748864650726318,-0.469806611537933,0.467422008514404,-0.777651607990265,-0.172501429915428,0.604566872119904,-0.738873243331909,-0.590097725391388,0.325347453355789,-0.748864650726318,-0.469806611537933,0.467422008514404,-0.876842677593231,0.00274545722641051,0.480769425630569,-0.738873243331909,-0.590097725391388,0.325347453355789, +-0.887111306190491,-0.206109777092934,0.41297972202301,-0.6466144323349,-0.720760762691498,0.249787002801895,-0.577984690666199,-0.812830865383148,-0.0723842531442642,-0.757601916790009,-0.620732367038727,-0.201817944645882,-0.331353515386581,-0.939651250839233,-0.0852076336741447,-0.577984690666199,-0.812830865383148,-0.0723842531442642,-0.242758765816689,-0.970010340213776,0.0121685676276684,-0.577284634113312,-0.812013924121857,0.0858815684914589,-0.404567509889603,-0.913363933563232,0.0457289963960648,-0.511200726032257,-0.855185985565186,0.0856176093220711,-0.675827383995056,-0.732827663421631,0.0788720175623894,-0.577284634113312,-0.812013924121857,0.0858815684914589,-0.404567509889603,-0.913363933563232,0.0457289963960648,-0.675827383995056,-0.732827663421631,0.0788720175623894,-0.70205169916153,-0.670906782150269,0.238762125372887,-0.6466144323349,-0.720760762691498,0.249787002801895,-0.887111306190491,-0.206109777092934,0.41297972202301,-0.70205169916153,-0.670906782150269,0.238762125372887,-0.949908196926117,-0.237760320305824,0.202840551733971,-0.70343941450119,-0.697313368320465,0.13757561147213,-0.70343941450119,-0.697313368320465,0.13757561147213,-0.875495851039886,-0.467004537582397,0.124151855707169,-0.511200726032257,-0.855185985565186,0.0856176093220711,-0.757601916790009,-0.620732367038727,-0.201817944645882,-0.871283113956451,-0.416864901781082,-0.259015917778015,-0.638001799583435,-0.733924984931946,-0.233039930462837,-0.936037838459015,-0.186424568295479,-0.298461079597473,-0.638001799583435,-0.733924984931946,-0.233039930462837,-0.871283113956451,-0.416864901781082,-0.259015917778015,-0.867374897003174,0.131990298628807,-0.479832500219345,-0.843885838985443,-0.428337931632996,-0.323083817958832,-0.936037838459015,-0.186424568295479,-0.298461079597473,-0.876842677593231,0.00274545722641051,0.480769425630569,-0.887111306190491,-0.206109777092934,0.41297972202301,-0.738873243331909,-0.590097725391388,0.325347453355789,-0.577984690666199,-0.812830865383148,-0.0723842531442642,-0.955446779727936,-0.250880509614944,-0.155500188469887, +-0.757601916790009,-0.620732367038727,-0.201817944645882,-0.577984690666199,-0.812830865383148,-0.0723842531442642,-0.577284634113312,-0.812013924121857,0.0858815684914589,-0.795327544212341,-0.605015814304352,0.037547629326582,-0.675827383995056,-0.732827663421631,0.0788720175623894,-0.511200726032257,-0.855185985565186,0.0856176093220711,-0.875495851039886,-0.467004537582397,0.124151855707169,-0.577284634113312,-0.812013924121857,0.0858815684914589,-0.675827383995056,-0.732827663421631,0.0788720175623894,-0.944355607032776,-0.321180552244186,0.0709613561630249,-0.887111306190491,-0.206109777092934,0.41297972202301,-0.924686014652252,-0.13287578523159,0.356790721416473,-0.70205169916153,-0.670906782150269,0.238762125372887,-0.70205169916153,-0.670906782150269,0.238762125372887,-0.924686014652252,-0.13287578523159,0.356790721416473,-0.949908196926117,-0.237760320305824,0.202840551733971,-0.70343941450119,-0.697313368320465,0.13757561147213,-0.949908196926117,-0.237760320305824,0.202840551733971,-0.875495851039886,-0.467004537582397,0.124151855707169,-0.967003703117371,-0.0359421595931053,-0.252214103937149,-0.871283113956451,-0.416864901781082,-0.259015917778015,-0.757601916790009,-0.620732367038727,-0.201817944645882,-0.936037838459015,-0.186424568295479,-0.298461079597473,-0.871283113956451,-0.416864901781082,-0.259015917778015,-0.967003703117371,-0.0359421595931053,-0.252214103937149,-0.876842677593231,0.00274545722641051,0.480769425630569,-0.864578425884247,0.22791063785553,0.447840124368668,-0.887111306190491,-0.206109777092934,0.41297972202301,-0.955446779727936,-0.250880509614944,-0.155500188469887,-0.577984690666199,-0.812830865383148,-0.0723842531442642,-0.795327544212341,-0.605015814304352,0.037547629326582,-0.955446779727936,-0.250880509614944,-0.155500188469887,-0.967003703117371,-0.0359421595931053,-0.252214103937149,-0.757601916790009,-0.620732367038727,-0.201817944645882,-0.795327544212341,-0.605015814304352,0.037547629326582,-0.577284634113312,-0.812013924121857,0.0858815684914589,-0.944355607032776,-0.321180552244186,0.0709613561630249, +-0.875495851039886,-0.467004537582397,0.124151855707169,-0.944355607032776,-0.321180552244186,0.0709613561630249,-0.675827383995056,-0.732827663421631,0.0788720175623894,-0.887111306190491,-0.206109777092934,0.41297972202301,-0.885355532169342,0.161656454205513,0.43590435385704,-0.924686014652252,-0.13287578523159,0.356790721416473,-0.943506300449371,0.199307754635811,0.264711439609528,-0.949908196926117,-0.237760320305824,0.202840551733971,-0.924686014652252,-0.13287578523159,0.356790721416473,-0.949908196926117,-0.237760320305824,0.202840551733971,-0.991604447364807,0.0703159272670746,0.108518116176128,-0.875495851039886,-0.467004537582397,0.124151855707169,-0.864578425884247,0.22791063785553,0.447840124368668,-0.876842677593231,0.00274545722641051,0.480769425630569,-0.835808515548706,0.270195215940475,0.477931559085846,-0.885355532169342,0.161656454205513,0.43590435385704,-0.887111306190491,-0.206109777092934,0.41297972202301,-0.864578425884247,0.22791063785553,0.447840124368668,-0.955446779727936,-0.250880509614944,-0.155500188469887,-0.795327544212341,-0.605015814304352,0.037547629326582,-0.944355607032776,-0.321180552244186,0.0709613561630249,-0.9719517827034,0.205238476395607,-0.114833451807499,-0.967003703117371,-0.0359421595931053,-0.252214103937149,-0.955446779727936,-0.250880509614944,-0.155500188469887,-0.944355607032776,-0.321180552244186,0.0709613561630249,-0.875495851039886,-0.467004537582397,0.124151855707169,-0.991604447364807,0.0703159272670746,0.108518116176128,-0.885355532169342,0.161656454205513,0.43590435385704,-0.943506300449371,0.199307754635811,0.264711439609528,-0.924686014652252,-0.13287578523159,0.356790721416473,-0.949908196926117,-0.237760320305824,0.202840551733971,-0.943506300449371,0.199307754635811,0.264711439609528,-0.991604447364807,0.0703159272670746,0.108518116176128,-0.955446779727936,-0.250880509614944,-0.155500188469887,-0.944355607032776,-0.321180552244186,0.0709613561630249,-0.984268188476563,0.176666036248207,-0.00226434180513024,-0.984268188476563,0.176666036248207,-0.00226434180513024, +-0.9719517827034,0.205238476395607,-0.114833451807499,-0.955446779727936,-0.250880509614944,-0.155500188469887,-0.944355607032776,-0.321180552244186,0.0709613561630249,-0.991604447364807,0.0703159272670746,0.108518116176128,-0.984268188476563,0.176666036248207,-0.00226434180513024 + } + NormalsW: *91014 { + a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "default" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *36506 { + a: 0.783957421779633,0.133178472518921,0.781626760959625,0.133716523647308,0.781165897846222,0.129450127482414,0.784015655517578,0.136947333812714,0.778798520565033,0.132732838392258,0.785360157489777,0.129457727074623,0.787026166915894,0.137076452374458,0.779907524585724,0.137081518769264,0.773550987243652,0.129470378160477,0.78667426109314,0.133096188306808,0.784235954284668,0.12586610019207,0.787735164165497,0.140512362122536,0.784033417701721,0.140269294381142,0.775904476642609,0.133093655109406,0.780488610267639,0.125534415245056,0.79034560918808,0.133013889193535,0.795418441295624,0.125593915581703,0.790878593921661,0.139459058642387,0.789046704769135,0.136004164814949,0.779954373836517,0.140304729342461,0.774876475334167,0.13728155195713,0.773238301277161,0.133983641862869,0.772221684455872,0.125910416245461,0.800015270709991,0.129205793142319,0.783680200576782,0.122393496334553,0.789346754550934,0.14528514444828,0.799354434013367,0.143439337611198,0.78173691034317,0.144026756286621,0.770558178424835,0.133087322115898,0.768635153770447,0.129070326685905,0.77916944026947,0.11915635317564,0.791910409927368,0.137048602104187,0.796250224113464,0.133084788918495,0.801100194454193,0.125923082232475,0.799531638622284,0.12204534560442,0.799435436725616,0.146609365940094,0.795989394187927,0.13967427611351,0.775247395038605,0.142087250947952,0.77003026008606,0.136967584490776,0.767309665679932,0.122463122010231,0.773505389690399,0.119769096374512,0.795023441314697,0.136539682745934,0.802362382411957,0.132943004369736,0.785955190658569,0.118073932826519,0.803722083568573,0.129128560423851,0.796402096748352,0.116659820079803,0.797521233558655,0.148756489157677,0.785590529441834,0.146095380187035,0.805209636688232,0.142834186553955,0.80547422170639,0.148427337408066,0.775405645370483,0.144857242703438,0.7676020860672,0.132749304175377,0.767788171768188,0.137013152241707,0.764697909355164,0.12607753276825,0.777666747570038,0.112812474370003,0.80188262462616,0.136808067560196,0.783204138278961,0.114955797791481, +0.804599404335022,0.125103980302811,0.801340758800507,0.116673745214939,0.801825642585754,0.149402141571045,0.793892920017242,0.149262890219688,0.783771336078644,0.148526087403297,0.787217378616333,0.148561537265778,0.805009603500366,0.140049010515213,0.769317507743835,0.144636958837509,0.779766976833344,0.146259963512421,0.762462139129639,0.129422277212143,0.767260253429413,0.118534751236439,0.756687998771667,0.123643025755882,0.773352205753326,0.114036686718464,0.80621862411499,0.137038484215736,0.805795788764954,0.132926538586617,0.78816682100296,0.114601314067841,0.80776309967041,0.128957659006119,0.798275768756866,0.1114806458354,0.800902724266052,0.152042999863625,0.808587312698364,0.140773147344589,0.808356881141663,0.145973846316338,0.805962860584259,0.152511417865753,0.775863945484161,0.147974103689194,0.772333085536957,0.148495703935623,0.762631833553314,0.133237972855568,0.762998938560486,0.137099251151085,0.763523042201996,0.144697725772858,0.763043284416199,0.120223581790924,0.77030622959137,0.116285085678101,0.77798068523407,0.107904225587845,0.784519553184509,0.111605979502201,0.806646525859833,0.118070133030415,0.808820247650146,0.124774821102619,0.803053617477417,0.113358117640018,0.794933557510376,0.15288108587265,0.787999749183655,0.151615098118782,0.779829025268555,0.149133756756783,0.812918245792389,0.141401082277298,0.809633016586304,0.14891853928566,0.808504998683929,0.151627764105797,0.763769924640656,0.148376703262329,0.757461488246918,0.133030354976654,0.763017952442169,0.118258766829968,0.763643324375153,0.112966924905777,0.75449401140213,0.129250094294548,0.758775591850281,0.117984049022198,0.768497169017792,0.113501168787479,0.782323062419891,0.107369974255562,0.771017730236053,0.104434140026569,0.811034440994263,0.136006698012352,0.810468554496765,0.132986038923264,0.790082275867462,0.111069202423096,0.813295483589172,0.128289207816124,0.80240797996521,0.108172617852688,0.804114520549774,0.155509293079376,0.79876571893692,0.15651448071003,0.782129347324371,0.152493700385094,0.810207784175873, +0.139345109462738,0.811412990093231,0.147249966859818,0.813927233219147,0.145447194576263,0.808629035949707,0.156033411622047,0.777504682540894,0.151896148920059,0.772091269493103,0.151944264769554,0.763044536113739,0.152027815580368,0.759970724582672,0.137099251151085,0.758461654186249,0.144555941224098,0.758265376091003,0.148250102996826,0.763414204120636,0.115952126681805,0.761605083942413,0.113168217241764,0.753207743167877,0.124958388507366,0.753406524658203,0.119951397180557,0.766724765300751,0.107190206646919,0.781862199306488,0.103908754885197,0.776066482067108,0.103580862283707,0.790169656276703,0.107135765254498,0.793752431869507,0.106892697513103,0.807466864585876,0.107152223587036,0.810259640216827,0.121004700660706,0.814762771129608,0.123821534216404,0.799272119998932,0.103977121412754,0.79028993844986,0.155610576272011,0.815817356109619,0.138808339834213,0.813985466957092,0.150187060236931,0.811030626296997,0.151804998517036,0.815128684043884,0.144024223089218,0.811367392539978,0.155116826295853,0.75824385881424,0.152007564902306,0.751913905143738,0.133003771305084,0.756990551948547,0.136747300624847,0.759568095207214,0.113369509577751,0.765184044837952,0.110077932476997,0.758924961090088,0.10948671400547,0.747807025909424,0.124172210693359,0.753948390483856,0.113617643713951,0.786355197429657,0.103182077407837,0.76117467880249,0.104663290083408,0.775418341159821,0.100888103246689,0.815393269062042,0.135543346405029,0.813290417194366,0.137960121035576,0.814132332801819,0.132212519645691,0.811087608337402,0.107206664979458,0.816450357437134,0.125155881047249,0.806313574314117,0.102374374866486,0.808237850666046,0.159664273262024,0.801306545734406,0.159466773271561,0.796297073364258,0.160099774599075,0.782371163368225,0.158509686589241,0.778961837291718,0.158519819378853,0.816945374011993,0.147999435663223,0.817325174808502,0.141727715730667,0.811171174049377,0.158879354596138,0.774720728397369,0.155349776148796,0.763119220733643,0.155623227357864,0.757660269737244,0.155797928571701,0.755827128887177,0.140076860785484, +0.753135621547699,0.136605516076088,0.748178005218506,0.129128560423851,0.751902520656586,0.148077920079231,0.751430332660675,0.15178981423378,0.762408971786499,0.108814470469952,0.750623881816864,0.121190801262856,0.746025800704956,0.11146292835474,0.78013414144516,0.100014567375183,0.759718775749207,0.100151292979717,0.769147872924805,0.0997208580374718,0.792653501033783,0.0998259335756302,0.816216170787811,0.129871696233749,0.795783042907715,0.0949898511171341,0.81549072265625,0.10783839225769,0.817031443119049,0.115097589790821,0.821624457836151,0.118948727846146,0.80295741558075,0.0986966714262962,0.793019413948059,0.161988630890846,0.823546230792999,0.144115373492241,0.824589431285858,0.14898943901062,0.814507067203522,0.152972251176834,0.814536154270172,0.156197994947433,0.769473195075989,0.157917201519012,0.752653241157532,0.144290074706078,0.748757839202881,0.136618167161942,0.748128592967987,0.132910087704659,0.753048241138458,0.107534557580948,0.741858184337616,0.116258502006531,0.743115305900574,0.122542880475521,0.746965169906616,0.105979919433594,0.78137481212616,0.0963824391365051,0.758226156234741,0.10423918068409,0.774984061717987,0.0969571992754936,0.786821126937866,0.0985131040215492,0.817478358745575,0.13322152197361,0.79854416847229,0.0980814024806023,0.810240685939789,0.101356521248817,0.818427860736847,0.127929672598839,0.820516705513,0.125040680170059,0.811345875263214,0.163191318511963,0.808411300182343,0.163464784622192,0.80141669511795,0.163201451301575,0.796928763389587,0.163300201296806,0.780232906341553,0.163763552904129,0.784425854682922,0.162978634238243,0.775015711784363,0.159621223807335,0.825261652469635,0.146257430315018,0.813955068588257,0.16085684299469,0.765594244003296,0.162705183029175,0.761184751987457,0.159570589661598,0.746595501899719,0.155587777495384,0.749706029891968,0.140800997614861,0.744085013866425,0.132425203919411,0.747851371765137,0.151721447706223,0.748413443565369,0.147910818457603,0.755277693271637,0.103816337883472,0.740054130554199,0.128828525543213,0.741326451301575, +0.103374511003494,0.769994795322418,0.0966660231351852,0.790389955043793,0.0909171551465988,0.819151997566223,0.136397883296013,0.819773614406586,0.131642818450928,0.80191171169281,0.09324911236763,0.816878259181976,0.10020700097084,0.824275434017181,0.102017365396023,0.823632299900055,0.121909886598587,0.810196340084076,0.095031626522541,0.797028779983521,0.166951313614845,0.774106740951538,0.16313561797142,0.790356993675232,0.167328581213951,0.828802645206451,0.143378555774689,0.823612093925476,0.152346849441528,0.830882668495178,0.146108046174049,0.82111930847168,0.155577659606934,0.816923856735229,0.159947857260704,0.756563901901245,0.159522488713264,0.75043398141861,0.159395888447762,0.74847674369812,0.144122958183289,0.745820701122284,0.140241429209709,0.745675146579742,0.136102914810181,0.747195601463318,0.103482119739056,0.738534927368164,0.104553148150444,0.737919688224792,0.11522039026022,0.737501859664917,0.123539216816425,0.786302030086517,0.0895536839962006,0.774524509906769,0.0926958695054054,0.753719210624695,0.0991043224930763,0.764115571975708,0.0925895273685455,0.793167531490326,0.0890675410628319,0.821718156337738,0.134403944015503,0.797659277915955,0.0909969136118889,0.82926219701767,0.104536689817905,0.821611821651459,0.129396960139275,0.823514580726624,0.127208054065704,0.82951158285141,0.117273822426796,0.8104128241539,0.167361497879028,0.813728451728821,0.16634364426136,0.801896512508392,0.166563928127289,0.780272126197815,0.167062729597092,0.772036850452423,0.166695594787598,0.785133540630341,0.168873086571693,0.826704859733582,0.141135230660439,0.833565294742584,0.14916667342186,0.816361725330353,0.165135890245438,0.762282371520996,0.16659177839756,0.758928775787354,0.163598969578743,0.744228065013886,0.158892020583153,0.739210963249207,0.157360166311264,0.745721936225891,0.146601781249046,0.739766716957092,0.132635354995728,0.742591142654419,0.136413082480431,0.730049014091492,0.12058312445879,0.736504256725311,0.0997423827648163,0.742998838424683,0.0996170490980148,0.780554473400116,0.0929161533713341, +0.757175385951996,0.093228854238987,0.768978238105774,0.0929895862936974,0.785891890525818,0.0852391868829727,0.790952026844025,0.0857468470931053,0.823939979076386,0.136309266090393,0.823800683021545,0.132301136851311,0.800349473953247,0.0875394940376282,0.821994125843048,0.0965824648737907,0.81761634349823,0.0955671370029449,0.829374849796295,0.0993967652320862,0.826358020305634,0.124587453901768,0.829352080821991,0.122140295803547,0.809424102306366,0.0916109159588814,0.800496339797974,0.17039480805397,0.790765941143036,0.170572057366371,0.831063687801361,0.141155481338501,0.833334863185883,0.14322917163372,0.833860278129578,0.152331650257111,0.828229129314423,0.156109362840652,0.835159182548523,0.146032080054283,0.825754106044769,0.159719973802567,0.819705247879028,0.164082586765289,0.756296813488007,0.164437055587769,0.743836879730225,0.162659615278244,0.741394817829132,0.151534080505371,0.742391169071198,0.146523281931877,0.74309378862381,0.140102177858353,0.734145760536194,0.128596857190132,0.748786926269531,0.0998449251055717,0.734986364841461,0.103712528944016,0.775663912296295,0.0891169160604477,0.754576325416565,0.0926021859049797,0.763210356235504,0.0893220081925392,0.770285964012146,0.085941806435585,0.7796910405159,0.0854771882295609,0.797012329101563,0.0817020088434219,0.826969504356384,0.134031742811203,0.804322183132172,0.0856810137629509,0.825560450553894,0.0994575321674347,0.814171552658081,0.0904943123459816,0.832929790019989,0.0980510115623474,0.831715703010559,0.107932075858116,0.825402200222015,0.13078448176384,0.826894760131836,0.129323527216911,0.832019507884979,0.116372436285019,0.814174115657806,0.17137722671032,0.810340702533722,0.1717848777771,0.795466542243958,0.172126695513725,0.782050848007202,0.172572314739227,0.775570213794708,0.171554461121559,0.789179623126984,0.17427633702755,0.841930985450745,0.152430400252342,0.83897864818573,0.147566467523575,0.818700015544891,0.168893352150917,0.770009994506836,0.170630291104317,0.760377049446106,0.170283406972885,0.749930143356323,0.165665075182915, +0.755505561828613,0.172225430607796,0.740438997745514,0.163712918758392,0.740232646465302,0.158942654728889,0.736077666282654,0.155491560697556,0.732705056667328,0.132687270641327,0.739888250827789,0.136364966630936,0.740576982498169,0.140162944793701,0.733003795146942,0.113954395055771,0.731734037399292,0.116133168339729,0.729970514774323,0.131104782223701,0.732872128486633,0.0951746851205826,0.742527842521667,0.0958937630057335,0.748856544494629,0.0924262180924416,0.756744921207428,0.0883092135190964,0.785707056522369,0.08212611079216,0.779712557792664,0.0818969681859016,0.791020393371582,0.0817906260490417,0.827513873577118,0.0959064289927483,0.825038850307465,0.0919413417577744,0.818408846855164,0.0920286923646927,0.835014879703522,0.102766834199429,0.830357253551483,0.12648643553257,0.828841865062714,0.12825882434845,0.832266390323639,0.121166750788689,0.80765426158905,0.0851606950163841,0.812056124210358,0.178454115986824,0.801902830600739,0.176666527986526,0.835898518562317,0.141054198145866,0.838892579078674,0.142748102545738,0.836704969406128,0.155997961759567,0.83147007226944,0.160142824053764,0.8270543217659,0.16318878531456,0.823877930641174,0.167065262794495,0.75211775302887,0.167984366416931,0.746817052364349,0.170083373785019,0.737499356269836,0.162616565823555,0.731754302978516,0.162244364619255,0.732350587844849,0.150625094771385,0.73541933298111,0.136152282357216,0.727547407150269,0.101393230259418,0.726916909217834,0.114562071859837,0.726770102977753,0.128217056393623,0.725111603736877,0.0891574248671532,0.736906886100769,0.0958583205938339,0.774301707744598,0.0854493379592896,0.753863573074341,0.0889434739947319,0.760113775730133,0.0857772305607796,0.765491664409637,0.0849239528179169,0.794277787208557,0.0778394639492035,0.829249501228333,0.132013753056526,0.805053889751434,0.0803056135773659,0.815602123737335,0.0809550732374191,0.835017383098602,0.0965963900089264,0.828368425369263,0.0898853689432144,0.836226403713226,0.105986244976521,0.832017004489899,0.124839387834072,0.830925703048706,0.131182000041008, +0.834248900413513,0.120215989649296,0.810428023338318,0.174689054489136,0.817299842834473,0.174245953559875,0.798664450645447,0.180431589484215,0.79183566570282,0.178213581442833,0.779616355895996,0.178314849734306,0.785269021987915,0.177983164787292,0.770797431468964,0.178023681044579,0.842306971549988,0.149217307567596,0.841354966163635,0.156114429235458,0.842342436313629,0.144216641783714,0.822086572647095,0.170784741640091,0.762322902679443,0.173769950866699,0.757917284965515,0.174906805157661,0.748879373073578,0.177003294229507,0.742463290691376,0.172286197543144,0.734692633152008,0.162583649158478,0.732431590557098,0.155099108815193,0.731082022190094,0.148303270339966,0.735832035541534,0.143234238028526,0.732565760612488,0.13608518242836,0.737499356269836,0.139565393328667,0.730414867401123,0.10848531126976,0.726681470870972,0.109872840344906,0.729975581169128,0.135833248496056,0.728838682174683,0.0893245413899422,0.739379346370697,0.0885218977928162,0.743871092796326,0.0888865068554878,0.769198477268219,0.0818982347846031,0.751469552516937,0.0849556028842926,0.752649486064911,0.0814551338553429,0.781929314136505,0.0777951553463936,0.788303554058075,0.078044556081295,0.774347305297852,0.0814019665122032,0.79901385307312,0.0767405852675438,0.824534952640533,0.0878180116415024,0.820477485656738,0.0825945287942886,0.829874932765961,0.0860873982310295,0.839991450309753,0.0945644751191139,0.836885988712311,0.110253907740116,0.833717226982117,0.128909543156624,0.831962525844574,0.130024895071983,0.835185766220093,0.114137962460518,0.833905816078186,0.12441148608923,0.812806844711304,0.0781496316194534,0.804856419563293,0.181869760155678,0.846665740013123,0.150083258748055,0.842717170715332,0.160074457526207,0.845885932445526,0.157020881772041,0.837822794914246,0.160064324736595,0.833118379116058,0.163872420787811,0.841915786266327,0.140479445457459,0.829414129257202,0.168528735637665,0.752198755741119,0.178882017731667,0.748094439506531,0.173645883798599,0.737860143184662,0.166809529066086,0.743008971214294,0.179302334785461, +0.733394980430603,0.167834982275963,0.731985986232758,0.16621957719326,0.729145050048828,0.162687465548515,0.729289412498474,0.156790480017662,0.734721779823303,0.139307141304016,0.74930727481842,0.0886282399296761,0.722407460212708,0.0886459648609161,0.724025428295136,0.110676743090153,0.722620129585266,0.11645346134901,0.724344432353973,0.127746105194092,0.726927042007446,0.0845150351524353,0.732379674911499,0.0896574929356575,0.737311959266663,0.0889409407973289,0.746025800704956,0.0890194326639175,0.764502942562103,0.0818716511130333,0.790968477725983,0.0743845775723457,0.794985473155975,0.0726995393633842,0.80726432800293,0.0733629241585732,0.818029046058655,0.0755454897880554,0.837015092372894,0.082888238132,0.8388951420784,0.0913589894771576,0.824721097946167,0.0838503912091255,0.841515719890594,0.101098254323006,0.834788262844086,0.1281967908144,0.809683620929718,0.0738819763064384,0.823366463184357,0.181902676820755,0.815114736557007,0.181449443101883,0.794593036174774,0.183616831898689,0.804436087608337,0.185903206467628,0.785738706588745,0.181510210037231,0.773190200328827,0.181636810302734,0.767794549465179,0.183464899659157,0.846064448356628,0.145561128854752,0.848452091217041,0.15316466987133,0.8451908826828,0.141877099871635,0.827166974544525,0.177583113312721,0.764095306396484,0.187303394079208,0.758121073246002,0.188612431287766,0.746622085571289,0.181489959359169,0.740269362926483,0.180608823895454,0.729104578495026,0.166244894266129,0.730405986309052,0.144847109913826,0.72752457857132,0.152513951063156,0.731764435768127,0.140155345201492,0.724440634250641,0.0983345955610275,0.723432898521423,0.0836136490106583,0.724141895771027,0.105744443833828,0.723729193210602,0.131859302520752,0.730226218700409,0.0805942639708519,0.733787477016449,0.084055483341217,0.738341212272644,0.0846479684114456,0.744759798049927,0.084936611354351,0.769477009773254,0.0779344141483307,0.747875392436981,0.0813222080469131,0.763224303722382,0.0778837725520134,0.785970330238342,0.0744985193014145,0.776227295398712,0.0780977308750153, +0.798507452011108,0.0722121372818947,0.803934752941132,0.0722349211573601,0.836311221122742,0.0798182114958763,0.840733349323273,0.0883180722594261,0.83000659942627,0.0789927840232849,0.84372866153717,0.0980598777532578,0.842536091804504,0.106034353375435,0.836226403713226,0.131480783224106,0.818677246570587,0.0686407759785652,0.812819480895996,0.0727438554167748,0.81858104467392,0.184556186199188,0.78960245847702,0.183619365096092,0.850089013576508,0.146665081381798,0.852774202823639,0.151042878627777,0.845206081867218,0.162662133574486,0.838959693908691,0.163586318492889,0.850475132465363,0.156547397375107,0.839458465576172,0.167250096797943,0.836680889129639,0.174640953540802,0.756393015384674,0.192111626267433,0.750969469547272,0.185586705803871,0.734943330287933,0.176544994115829,0.741559386253357,0.188812449574471,0.729094445705414,0.171367093920708,0.726828336715698,0.165928393602371,0.727757573127747,0.148133620619774,0.726582705974579,0.157993167638779,0.728739976882935,0.139484375715256,0.721323788166046,0.0940137729048729,0.721713721752167,0.0832566395401955,0.72117692232132,0.106148295104504,0.720316052436829,0.109709531068802,0.719999551773071,0.124691270291805,0.726600408554077,0.135897815227509,0.720566749572754,0.128151223063469,0.729312181472778,0.0773596540093422,0.77364593744278,0.0766215845942497,0.749437630176544,0.0777217298746109,0.754126906394959,0.0780458226799965,0.781455814838409,0.0747618451714516,0.77632349729538,0.0748403370380402,0.786522328853607,0.0666177198290825,0.794515788555145,0.0664822608232498,0.8059983253479,0.0678862407803535,0.808892369270325,0.0690079107880592,0.828234195709229,0.073694609105587,0.837815225124359,0.0762240588665009,0.845083296298981,0.0930111035704613,0.83768105506897,0.112160488963127,0.827696144580841,0.0680406913161278,0.828619062900543,0.18206724524498,0.823555111885071,0.185401871800423,0.811964929103851,0.18752621114254,0.802815616130829,0.189470767974854,0.79120397567749,0.188318714499474,0.784939825534821,0.18984043598175,0.779521405696869,0.185404404997826, +0.771311461925507,0.185528472065926,0.768575608730316,0.189204916357994,0.848742008209229,0.143462121486664,0.854728877544403,0.155851110816002,0.850778996944427,0.159854173660278,0.837312638759613,0.177773013710976,0.762015283107758,0.192858561873436,0.75336092710495,0.192709177732468,0.74607264995575,0.187445178627968,0.73227334022522,0.176896944642067,0.735074996948242,0.181191191077232,0.726929605007172,0.170131489634514,0.728653848171234,0.142902553081512,0.721301019191742,0.0994334742426872,0.718047380447388,0.0877445787191391,0.71896904706955,0.0845555514097214,0.726002871990204,0.0762417837977409,0.718128442764282,0.114077195525169,0.720019817352295,0.135626897215843,0.715649604797363,0.132453054189682,0.73324179649353,0.0785294324159622,0.742412686347961,0.0814817249774933,0.768112301826477,0.073818676173687,0.763680040836334,0.0743162110447884,0.745445966720581,0.0776647627353668,0.78151661157608,0.0673038884997368,0.795541226863861,0.0628172159194946,0.802430748939514,0.0682267919182777,0.840028166770935,0.0800486207008362,0.83163845539093,0.071090467274189,0.844385743141174,0.0878294035792351,0.846588551998138,0.0962988808751106,0.845432698726654,0.101857848465443,0.820786356925964,0.066001184284687,0.812939763069153,0.0649871230125427,0.833594381809235,0.182209044694901,0.81640350818634,0.189830303192139,0.769295990467072,0.192807927727699,0.854778230190277,0.148518487811089,0.85299825668335,0.144257158041,0.85884964466095,0.152815267443657,0.844269275665283,0.167174130678177,0.850166261196136,0.163500219583511,0.842533588409424,0.173023015260696,0.760831594467163,0.196545124053955,0.755170047283173,0.196466639637947,0.750490963459015,0.189989820122719,0.734747111797333,0.18500941991806,0.741525232791901,0.19191412627697,0.730613648891449,0.181492492556572,0.726218104362488,0.180953174829483,0.724929332733154,0.1683109998703,0.725445866584778,0.139117240905762,0.726435840129852,0.142307534813881,0.715333104133606,0.0913488566875458,0.71651303768158,0.0989156886935234,0.718675315380096,0.0803841054439545, +0.722939193248749,0.0752695053815842,0.71852844953537,0.102287024259567,0.714765965938568,0.10306054353714,0.713943064212799,0.110190607607365,0.713505029678345,0.117007963359356,0.713122665882111,0.122283354401588,0.714188635349274,0.128479108214378,0.73274427652359,0.0736452341079712,0.736224472522736,0.0778432637453079,0.773450970649719,0.0703372061252594,0.750011146068573,0.0743200108408928,0.756301879882813,0.0741782188415527,0.779710054397583,0.0627247989177704,0.791716694831848,0.0626007318496704,0.802643477916718,0.0646453052759171,0.807620048522949,0.0627551823854446,0.835564315319061,0.0704916566610336,0.838993847370148,0.0738857761025429,0.846368253231049,0.0865127742290497,0.825423717498779,0.0625184401869774,0.816692173480988,0.062029767781496,0.828911483287811,0.186845108866692,0.823789298534393,0.189182117581367,0.803343534469604,0.193185180425644,0.793473899364471,0.193129479885101,0.785937428474426,0.192443311214447,0.776341199874878,0.18918465077877,0.773309171199799,0.192306593060493,0.85929149389267,0.156281545758247,0.849176228046417,0.166936129331589,0.855415046215057,0.163781270384789,0.857765972614288,0.159899741411209,0.840205430984497,0.180029004812241,0.766489267349243,0.196689456701279,0.749626278877258,0.196732491254807,0.74483448266983,0.196441322565079,0.736495435237885,0.188878282904625,0.724921703338623,0.172060862183571,0.723412692546844,0.145431995391846,0.711881995201111,0.089777760207653,0.715864837169647,0.0838959664106369,0.72755753993988,0.0695497542619705,0.710064053535461,0.112642832100391,0.716297805309296,0.139421075582504,0.721463024616241,0.139170408248901,0.712990999221802,0.136072531342506,0.733405113220215,0.0697826966643333,0.740273118019104,0.0775887966156006,0.764894127845764,0.0713449344038963,0.769145309925079,0.066492386162281,0.744691431522369,0.0739845260977745,0.761124014854431,0.0667671114206314,0.778632640838623,0.0659682676196098,0.785077810287476,0.0629906579852104,0.790625393390656,0.0597636438906193,0.798507452011108,0.0616727583110332,0.831570088863373, +0.0666936784982681,0.84585428237915,0.0798777118325233,0.84717720746994,0.0928756445646286,0.812749862670898,0.0615423619747162,0.835245251655579,0.186007022857666,0.819579899311066,0.192352160811424,0.787998497486115,0.193709313869476,0.779296040534973,0.193010479211807,0.774071276187897,0.196269139647484,0.857558369636536,0.149802207946777,0.856845617294312,0.146462514996529,0.863266706466675,0.156696796417236,0.846601188182831,0.171807661652565,0.845912516117096,0.178838968276978,0.757475435733795,0.2000772356987,0.763624370098114,0.200029134750366,0.752388656139374,0.200239285826683,0.730678200721741,0.183966234326363,0.740537703037262,0.196028605103493,0.737584173679352,0.192645877599716,0.724964797496796,0.179806187748909,0.723726630210876,0.14252781867981,0.724972367286682,0.148870438337326,0.711400926113129,0.0946581587195396,0.717834711074829,0.0763088837265968,0.715034365653992,0.082213468849659,0.724349498748779,0.0695421621203423,0.711978256702423,0.106057144701481,0.705739438533783,0.105559609830379,0.709051251411438,0.114424079656601,0.71088695526123,0.124950796365738,0.73923122882843,0.0701295807957649,0.739659130573273,0.0739085674285889,0.765462577342987,0.0669797956943512,0.774244725704193,0.0671595633029938,0.750449180603027,0.070700541138649,0.756979167461395,0.0664164274930954,0.782391369342804,0.0590698830783367,0.795448839664459,0.0577962957322598,0.785898208618164,0.0552465878427029,0.804617166519165,0.0583849810063839,0.834593296051025,0.0664771944284439,0.83952808380127,0.0703688561916351,0.844885766506195,0.0750365629792213,0.824940085411072,0.0589521452784538,0.831810653209686,0.0628045573830605,0.81593257188797,0.0582621805369854,0.811414241790771,0.0579292252659798,0.823280394077301,0.196793258190155,0.828346848487854,0.193537130951881,0.807332694530487,0.197211042046547,0.791482508182526,0.197008475661278,0.780869662761688,0.198555514216423,0.860805630683899,0.14838682115078,0.860991716384888,0.160580843687058,0.863398373126984,0.152116432785988,0.850906848907471,0.170665740966797,0.860459983348846, +0.163839519023895,0.854440212249756,0.167374163866043,0.836222589015961,0.191425457596779,0.844743967056274,0.184427052736282,0.775306940078735,0.200039267539978,0.766341149806976,0.204292997717857,0.74819952249527,0.200120285153389,0.733679831027985,0.192455977201462,0.744466125965118,0.199986085295677,0.727225840091705,0.18640960752964,0.72426849603653,0.184923335909843,0.721364319324493,0.142413884401321,0.711585760116577,0.0977041348814964,0.706671178340912,0.0912311226129532,0.720916152000427,0.0730033814907074,0.731075704097748,0.0662721022963524,0.727071404457092,0.0659302845597267,0.709977984428406,0.102021165192127,0.704516470432281,0.109200596809387,0.714943170547485,0.142158150672913,0.711026191711426,0.135459780693054,0.736896753311157,0.0662733688950539,0.767278015613556,0.0625981986522675,0.771393716335297,0.0631982758641243,0.754363596439362,0.070372648537159,0.744659781455994,0.0703042894601822,0.757728636264801,0.0629995167255402,0.777023613452911,0.0587179362773895,0.78932774066925,0.0534425489604473,0.797956764698029,0.0547756403684616,0.800877392292023,0.0550111122429371,0.816989660263062,0.200748220086098,0.816111087799072,0.197413593530655,0.803663849830627,0.196684390306473,0.78427517414093,0.200641870498657,0.865493595600128,0.160327658057213,0.850778996944427,0.175891742110252,0.858417987823486,0.168356567621231,0.842018306255341,0.188744083046913,0.848045706748962,0.187900945544243,0.769574522972107,0.200393736362457,0.761375963687897,0.203933447599411,0.754616796970367,0.204034730792046,0.749336361885071,0.203903064131737,0.739733815193176,0.199796199798584,0.723131597042084,0.180472105741501,0.720974385738373,0.145867496728897,0.703111231327057,0.095093660056591,0.710413455963135,0.0873495936393738,0.709757685661316,0.0811044573783875,0.714938104152679,0.0740971937775612,0.72159469127655,0.0662898272275925,0.724346995353699,0.0657606422901154,0.703068196773529,0.101838864386082,0.707415580749512,0.117158621549606,0.718660116195679,0.143107637763023,0.742225289344788,0.0665468275547028,0.751887321472168, +0.066882312297821,0.747555136680603,0.0666557028889656,0.753011524677277,0.0626412406563759,0.771406412124634,0.0589040368795395,0.780089855194092,0.0552288629114628,0.795220971107483,0.0512030124664307,0.785519659519196,0.0522575825452805,0.803942382335663,0.0555099137127399,0.807470679283142,0.0548541322350502,0.835936486721039,0.0607384592294693,0.837810158729553,0.0657631754875183,0.821826994419098,0.0541261844336987,0.831453621387482,0.0595370307564735,0.815113484859467,0.0541363134980202,0.828781127929688,0.197264209389687,0.821448504924774,0.200074717402458,0.810969889163971,0.204371482133865,0.807468175888062,0.204563915729523,0.796366691589355,0.200598835945129,0.790462076663971,0.200492486357689,0.781536877155304,0.2037283629179,0.86597216129303,0.163773685693741,0.855713784694672,0.170810058712959,0.854504764080048,0.176294326782227,0.861194312572479,0.16721211373806,0.840016782283783,0.192731961607933,0.845823884010315,0.190612688660622,0.777585685253143,0.204049929976463,0.772658467292786,0.204098030924797,0.766203165054321,0.207741558551788,0.733805179595947,0.198512479662895,0.742877304553986,0.203794196248055,0.725387632846832,0.189311251044273,0.723197460174561,0.173293933272362,0.721255421638489,0.18476128578186,0.700126051902771,0.0896992683410645,0.706005275249481,0.0872331187129021,0.729878067970276,0.0622475184500217,0.734788835048676,0.0624956525862217,0.727063775062561,0.0620728135108948,0.698973953723907,0.0990891307592392,0.704531669616699,0.114632964134216,0.717391610145569,0.145535811781883,0.712066829204559,0.145490229129791,0.70533686876297,0.127876505255699,0.742124021053314,0.0624880567193031,0.757847607135773,0.0593800507485867,0.764021873474121,0.0590686164796352,0.774715721607208,0.0552250668406487,0.780158162117004,0.0518537312746048,0.795013308525085,0.0479139685630798,0.788521349430084,0.0486583709716797,0.798337817192078,0.0503636598587036,0.804747521877289,0.0520955361425877,0.810864806175232,0.0534590072929859,0.840383946895599,0.0643186792731285,0.827061891555786,0.0555529594421387, +0.827308773994446,0.200267136096954,0.837191104888916,0.196408405900002,0.819616615772247,0.2033561617136,0.814453899860382,0.204229697585106,0.800065875053406,0.204298064112663,0.788651704788208,0.204315781593323,0.865501165390015,0.167480498552322,0.852401971817017,0.186133623123169,0.86318439245224,0.171296194195747,0.857140600681305,0.175501823425293,0.84295642375946,0.194286599755287,0.850486516952515,0.190610155463219,0.775122106075287,0.204072713851929,0.761259496212006,0.207989692687988,0.754939675331116,0.20756684243679,0.770578444004059,0.207878276705742,0.745564997196198,0.203811913728714,0.730750381946564,0.198768213391304,0.740168035030365,0.20532351732254,0.737035989761353,0.204452514648438,0.723650693893433,0.189569517970085,0.718751311302185,0.148379221558571,0.699946284294128,0.0937681645154953,0.711995959281921,0.0739743933081627,0.716163575649261,0.0663961693644524,0.724334299564362,0.0619297549128532,0.698746085166931,0.104824066162109,0.704174637794495,0.120283089578152,0.715477406978607,0.145756095647812,0.748057723045349,0.0626754239201546,0.753590106964111,0.0590838082134724,0.77091521024704,0.0563176162540913,0.776603281497955,0.0520069152116776,0.784790456295013,0.0483279451727867,0.800753355026245,0.048633050173521,0.835198402404785,0.0555504262447357,0.844247698783875,0.0675279647111893,0.816059172153473,0.0515448302030563,0.824538767337799,0.0523955747485161,0.831563770771027,0.0533235482871532,0.812252342700958,0.0504927895963192,0.835932672023773,0.200259551405907,0.810905337333679,0.206533804535866,0.806880712509155,0.208212494850159,0.801068544387817,0.207777008414268,0.796662926673889,0.204338565468788,0.784875273704529,0.207830175757408,0.779285907745361,0.207728892564774,0.857652068138123,0.185153737664223,0.859199106693268,0.17468398809433,0.841498017311096,0.200545653700829,0.848063409328461,0.198935315012932,0.775972843170166,0.205913469195366,0.751630365848541,0.21082803606987,0.768988370895386,0.211435720324516,0.763224303722382,0.211501553654671,0.748299539089203,0.20987094938755, +0.733922898769379,0.204961434006691,0.745581448078156,0.20904552936554,0.743038058280945,0.208280861377716,0.726987838745117,0.196937590837479,0.702083230018616,0.0869622007012367,0.697766244411469,0.0911273062229156,0.707504212856293,0.0788370668888092,0.718533515930176,0.0608296096324921,0.728139877319336,0.0584254935383797,0.735942184925079,0.0586280487477779,0.741683423519135,0.0586153902113438,0.721118688583374,0.0609954558312893,0.696117877960205,0.0985510796308517,0.700123488903046,0.115022890269756,0.716426908969879,0.1495211571455,0.714497566223145,0.149186924099922,0.748053908348084,0.0589090995490551,0.766204416751862,0.055507380515337,0.758617341518402,0.0553276129066944,0.77094304561615,0.0523018911480904,0.773748457431793,0.0505598895251751,0.781341910362244,0.0481595695018768,0.795010805130005,0.0422651134431362,0.796621143817902,0.0420562252402306,0.78766930103302,0.041803028434515,0.808264434337616,0.048502653837204,0.840965032577515,0.0589787289500237,0.843033611774445,0.0629729330539703,0.818983614444733,0.0499003082513809,0.827898740768433,0.0500446297228336,0.832585394382477,0.207852959632874,0.838614046573639,0.202391475439072,0.825275599956512,0.20402966439724,0.81590723991394,0.208247944712639,0.810839474201202,0.208698645234108,0.796757876873016,0.207931458950043,0.790897607803345,0.207999810576439,0.854625046253204,0.19074435532093,0.865851879119873,0.171496227383614,0.862975537776947,0.175501823425293,0.85896360874176,0.181945711374283,0.844333827495575,0.202649742364883,0.758959174156189,0.211374953389168,0.774932205677032,0.207802325487137,0.773286402225494,0.211493954062462,0.729334950447083,0.201928123831749,0.740181982517242,0.211283802986145,0.738229811191559,0.213433444499969,0.723903894424438,0.19742625951767,0.696510374546051,0.0842757672071457,0.70227062702179,0.0813373997807503,0.708076477050781,0.0705486238002777,0.713087260723114,0.0693421363830566,0.71488493680954,0.0613385364413261,0.725066065788269,0.0545946024358273,0.696874976158142,0.103558078408241,0.754668712615967,0.0552010126411915, +0.776860296726227,0.0483393408358097,0.783076286315918,0.0432652495801449,0.805202007293701,0.0429576113820076,0.83332222700119,0.0486292541027069,0.840118050575256,0.0553491339087486,0.815421104431152,0.0480798110365868,0.820916771888733,0.0465049184858799,0.828615248203278,0.0475075840950012,0.808303713798523,0.0415878109633923,0.821723222732544,0.207713708281517,0.803308129310608,0.211833238601685,0.799807667732239,0.211405336856842,0.787700951099396,0.211711704730988,0.779816389083862,0.211499020457268,0.860085248947144,0.186705842614174,0.838091194629669,0.214509546756744,0.833637475967407,0.214534863829613,0.85391104221344,0.203449845314026,0.844442665576935,0.210843235254288,0.755587816238403,0.215537533164024,0.753049492835999,0.219138011336327,0.770956993103027,0.215360283851624,0.765472710132599,0.215274199843407,0.76059228181839,0.215157732367516,0.745859980583191,0.217932775616646,0.732912659645081,0.209197446703911,0.743508994579315,0.215236216783524,0.724729299545288,0.200917854905128,0.700488090515137,0.0803942382335663,0.695378541946411,0.0868507921695709,0.713391065597534,0.065102331340313,0.721463024616241,0.0534184984862804,0.714796304702759,0.0561137907207012,0.731030166149139,0.0543831810355186,0.73892867565155,0.0548250116407871,0.745589017868042,0.0551756918430328,0.695191204547882,0.0935972556471825,0.751029014587402,0.0546300522983074,0.756015717983246,0.0519081689417362,0.762819170951843,0.0513359420001507,0.77168995141983,0.0479709357023239,0.776732444763184,0.043207012116909,0.799292385578156,0.0377442613244057,0.790653228759766,0.0388950482010841,0.781934380531311,0.0402167402207851,0.834578096866608,0.0438716560602188,0.8120396733284,0.043588075786829,0.827945530414581,0.217031389474869,0.824650168418884,0.213197976350784,0.820471167564392,0.213370144367218,0.81187504529953,0.211450904607773,0.805932521820068,0.211291387677193,0.792123079299927,0.214251279830933,0.783576369285584,0.213314443826675,0.862888157367706,0.193959966301918,0.865074574947357,0.175863891839981,0.861423432826996, +0.183616831898689,0.857963502407074,0.197264209389687,0.849401593208313,0.206237554550171,0.775258779525757,0.215185582637787,0.72956794500351,0.207708641886711,0.740254163742065,0.215509667992592,0.736271321773529,0.216773137450218,0.726129472255707,0.204839900135994,0.722020089626312,0.198390945792198,0.698209345340729,0.0764051005244255,0.693672001361847,0.0755695477128029,0.70834481716156,0.0645908713340759,0.704526603221893,0.0695067122578621,0.718609511852264,0.0524373538792133,0.710684418678284,0.0611093938350677,0.735516786575317,0.0547629781067371,0.725782632827759,0.0506687648594379,0.75959849357605,0.0515473634004593,0.766408264636993,0.0468442030251026,0.794400572776794,0.034027311950922,0.785990595817566,0.0389748029410839,0.804085433483124,0.0389786027371883,0.830345869064331,0.041371326893568,0.838631808757782,0.0500585548579693,0.820858538150787,0.0439893938601017,0.814728617668152,0.0421486422419548,0.80530458688736,0.215469166636467,0.801944613456726,0.215542584657669,0.798560619354248,0.215532466769218,0.789213836193085,0.215952768921852,0.786247611045837,0.21531218290329,0.780848145484924,0.215167850255966,0.864178240299225,0.190217703580856,0.867044448852539,0.174689054489136,0.843028604984283,0.215304583311081,0.833875477313995,0.217907458543777,0.828802645206451,0.219168394804001,0.857617855072021,0.201662257313728,0.853435039520264,0.208113759756088,0.846931636333466,0.214079111814499,0.757770419120789,0.219267129898071,0.749074280261993,0.223039790987968,0.772667348384857,0.218897461891174,0.768831372261047,0.218925312161446,0.76255202293396,0.218844294548035,0.742768406867981,0.218775928020477,0.721688389778137,0.204908266663551,0.722878396511078,0.193868815898895,0.694834172725677,0.0733097493648529,0.721852958202362,0.0434741377830505,0.713522732257843,0.0527373924851418,0.70776754617691,0.0608410015702248,0.736462533473969,0.0511321164667606,0.745666265487671,0.0513524003326893,0.750371932983398,0.0513903796672821,0.72446346282959,0.0466581024229527,0.728066444396973,0.0466948188841343, +0.757243752479553,0.0479405522346497,0.761101245880127,0.0481279194355011,0.770598709583282,0.0442577861249447,0.795127272605896,0.0287873726338148,0.790493726730347,0.0347881726920605,0.774880290031433,0.0393571332097054,0.780924141407013,0.0358756557106972,0.808491051197052,0.0331702344119549,0.812691628932953,0.0394837334752083,0.826094686985016,0.040837075561285,0.832417011260986,0.0395964048802853,0.821614325046539,0.221368685364723,0.817749261856079,0.218808844685555,0.815785706043243,0.216160401701927,0.811044573783875,0.215210899710655,0.809382319450378,0.217383340001106,0.796469211578369,0.219084829092026,0.79167240858078,0.222639739513397,0.784619569778442,0.220026731491089,0.780730426311493,0.218856960535049,0.778156638145447,0.215390667319298,0.862448871135712,0.197476893663406,0.866576015949249,0.193570047616959,0.866115212440491,0.179018750786781,0.840528249740601,0.219024062156677,0.837217688560486,0.219013944268227,0.829659700393677,0.221307918429375,0.822165071964264,0.226047784090042,0.829231798648834,0.220236882567406,0.859399080276489,0.202713042497635,0.850468814373016,0.212126940488815,0.756568968296051,0.222703039646149,0.753785073757172,0.222690373659134,0.743943274021149,0.222756206989288,0.775100529193878,0.220414131879807,0.726613104343414,0.207832708954811,0.730517387390137,0.21194463968277,0.740146517753601,0.222439706325531,0.723757028579712,0.208716362714767,0.71916651725769,0.193164929747581,0.697188913822174,0.0719640031456947,0.691960394382477,0.0688623264431953,0.705182373523712,0.0645946636795998,0.719437479972839,0.0432462580502033,0.734663546085358,0.0472113415598869,0.753791391849518,0.0479342229664326,0.763854742050171,0.0433361418545246,0.773193955421448,0.0427765734493732,0.80091792345047,0.0324448198080063,0.791111528873444,0.0303939152508974,0.783233284950256,0.0317979007959366,0.812584042549133,0.0360326394438744,0.825876951217651,0.037196084856987,0.835833966732025,0.0419486165046692,0.816901028156281,0.0400787480175495,0.819471001625061,0.0374657437205315,0.804796934127808, +0.221859887242317,0.801581263542175,0.220596432685852,0.797611117362976,0.221502870321274,0.787535130977631,0.222685307264328,0.777984499931335,0.221983954310417,0.8669393658638,0.18621464073658,0.865288496017456,0.198269411921501,0.868186354637146,0.189096033573151,0.868840873241425,0.17886683344841,0.844117343425751,0.219175979495049,0.856029033660889,0.211580038070679,0.849738359451294,0.215610951185226,0.759703576564789,0.222857490181923,0.752007603645325,0.226361751556396,0.746067583560944,0.226544052362442,0.769123792648315,0.222627073526382,0.737276554107666,0.222282722592354,0.721437692642212,0.209627881646156,0.694525301456451,0.0667152032256126,0.701873123645782,0.0681900829076767,0.720629990100861,0.0387152768671513,0.724422931671143,0.0428411401808262,0.709198117256165,0.0544464811682701,0.715533137321472,0.0433120913803577,0.742282271385193,0.047087274491787,0.747101902961731,0.0476227886974812,0.727284073829651,0.0429753363132477,0.732846856117249,0.0431614369153976,0.754649758338928,0.0418967120349407,0.769361793994904,0.0399800017476082,0.799332916736603,0.0274327620863914,0.790914058685303,0.0280075222253799,0.775023341178894,0.0324701406061649,0.779468238353729,0.0327461287379265,0.806374311447144,0.030217943713069,0.814309597015381,0.0327752456068993,0.830587685108185,0.0357401967048645,0.818696200847626,0.222867622971535,0.818684816360474,0.228848159313202,0.813766479492188,0.219077244400978,0.810786306858063,0.219365879893303,0.806535124778748,0.223044857382774,0.794400572776794,0.225657865405083,0.79258006811142,0.228597491979599,0.782228112220764,0.223186641931534,0.862343788146973,0.201074838638306,0.871479213237762,0.190106302499771,0.869209289550781,0.19758577644825,0.869805574417114,0.18259896337986,0.84861034154892,0.219011411070824,0.838463425636292,0.222627073526382,0.842109441757202,0.222880274057388,0.83359569311142,0.222667589783669,0.825912356376648,0.223677843809128,0.755865097045898,0.226501002907753,0.758822441101074,0.226754203438759,0.742454469203949,0.226706102490425,0.769004821777344, +0.226440235972404,0.726445972919464,0.212061122059822,0.734476149082184,0.222300454974175,0.738962829113007,0.226078167557716,0.723513960838318,0.215578034520149,0.692352831363678,0.0637021437287331,0.701290726661682,0.0644883215427399,0.705962240695953,0.0598864443600178,0.724397599697113,0.0389406234025955,0.710656523704529,0.0510143786668777,0.739968061447144,0.0430563576519489,0.730089485645294,0.0430690199136734,0.735537052154541,0.0433171540498734,0.751906335353851,0.0436146631836891,0.757699489593506,0.0394710712134838,0.763000190258026,0.0395014546811581,0.793584048748016,0.0255793519318104,0.787911117076874,0.0267326701432467,0.783894121646881,0.0288139581680298,0.77243310213089,0.0361516438424587,0.777407169342041,0.0289911981672049,0.821350991725922,0.0340045243501663,0.825213551521301,0.033368993550539,0.81573885679245,0.223217025399208,0.822520792484283,0.227534055709839,0.812382757663727,0.222637206315994,0.803690433502197,0.226721286773682,0.800195038318634,0.227242887020111,0.797195911407471,0.225971832871437,0.787036299705505,0.226642802357674,0.778660535812378,0.226609885692596,0.775373995304108,0.22285495698452,0.869766294956207,0.186148807406425,0.861036062240601,0.207549124956131,0.871344983577728,0.193866282701492,0.866307616233826,0.202616825699806,0.870562613010406,0.177909731864929,0.843743860721588,0.224652662873268,0.829284965991974,0.227916389703751,0.850808084011078,0.220269799232483,0.761735498905182,0.226579502224922,0.75261652469635,0.230921849608421,0.749551594257355,0.230552181601524,0.74409008026123,0.228445574641228,0.773048400878906,0.226974487304688,0.729469180107117,0.215296983718872,0.721739053726196,0.218006208539009,0.694664537906647,0.0633552595973015,0.714522898197174,0.0376733653247356,0.723491132259369,0.0350046567618847,0.727625906467438,0.0392343327403069,0.702890932559967,0.0563568621873856,0.705296337604523,0.0515752136707306,0.712163090705872,0.0416840240359306,0.743720412254334,0.0435488298535347,0.74679297208786,0.0435462966561317,0.732687294483185,0.0385266430675983, +0.735513031482697,0.039382454007864,0.751527786254883,0.0367352664470673,0.756393015384674,0.0362719111144543,0.766719698905945,0.0355325751006603,0.801581263542175,0.0241057369858027,0.8033726811409,0.0263933837413788,0.780507624149323,0.0278986468911171,0.768732607364655,0.0320726186037064,0.810572385787964,0.0268504060804844,0.828174710273743,0.0317535884678364,0.816061675548553,0.225900933146477,0.822876513004303,0.229022860527039,0.808072030544281,0.226149067282677,0.798546731472015,0.230630666017532,0.789332807064056,0.231640934944153,0.782990217208862,0.22664786875248,0.776038646697998,0.226599752902985,0.875351846218109,0.190169602632523,0.875712692737579,0.186186790466309,0.874458074569702,0.193595364689827,0.869732141494751,0.203614428639412,0.868433237075806,0.174739688634872,0.875939309597015,0.182325512170792,0.834050178527832,0.226242750883102,0.838522911071777,0.227425187826157,0.826278269290924,0.22834175825119,0.856907665729523,0.213815778493881,0.754528224468231,0.232749938964844,0.758752822875977,0.233947575092316,0.745832085609436,0.230448365211487,0.742112636566162,0.230347096920013,0.764578878879547,0.234160259366035,0.769284605979919,0.230048313736916,0.725858569145203,0.219196245074272,0.73155552148819,0.226225018501282,0.719305813312531,0.216990888118744,0.723645627498627,0.219973564147949,0.694492340087891,0.0602915622293949,0.70125275850296,0.060359925031662,0.718801915645599,0.0342678502202034,0.727281510829926,0.0350717529654503,0.707785248756409,0.0433146208524704,0.740865647792816,0.0392204076051712,0.744495213031769,0.0395862758159637,0.76103538274765,0.0359908640384674,0.794791758060455,0.0205255150794983,0.782881319522858,0.0259097758680582,0.787007212638855,0.0223890542984009,0.776957750320435,0.026547834277153,0.819481134414673,0.0302432626485825,0.825573086738586,0.0284139048308134,0.813103079795837,0.229463428258896,0.820263504981995,0.233598157763481,0.802828311920166,0.230154663324356,0.807175695896149,0.229648262262344,0.795814692974091,0.234494477510452,0.78631979227066,0.233190506696701, +0.779326438903809,0.230473697185516,0.864531457424164,0.209805116057396,0.873327553272247,0.197970628738403,0.875487327575684,0.17896556854248,0.843417227268219,0.228308841586113,0.839035630226135,0.232038453221321,0.825441420078278,0.233739942312241,0.829764783382416,0.232522070407867,0.860757529735565,0.217768207192421,0.761667132377625,0.234107092022896,0.748994529247284,0.23762147128582,0.747251272201538,0.234737545251846,0.773136973381042,0.232253670692444,0.735748469829559,0.233820974826813,0.737382888793945,0.232013136148453,0.721207320690155,0.221842169761658,0.69161856174469,0.0593521967530251,0.715634405612946,0.033894382417202,0.710957825183868,0.0388355441391468,0.719128549098969,0.0302673168480396,0.726848542690277,0.0310775507241488,0.730361700057983,0.0356427133083344,0.702559232711792,0.0524398870766163,0.704534232616425,0.0440818108618259,0.735601603984833,0.0348843857645988,0.739883184432983,0.0336690358817577,0.755427062511444,0.0321814939379692,0.760549247264862,0.0319802016019821,0.792066097259521,0.0188176929950714,0.798037767410278,0.0187138821929693,0.805785655975342,0.0234727412462235,0.779840409755707,0.0246488470584154,0.76757550239563,0.0287772454321384,0.772052049636841,0.0254578161984682,0.813092947006226,0.0241791643202305,0.814603269100189,0.23349940776825,0.800021588802338,0.234000742435455,0.783837139606476,0.230096429586411,0.788789689540863,0.238208889961243,0.794299304485321,0.237540453672409,0.775119543075562,0.23068131506443,0.871526062488556,0.175061255693436,0.848701477050781,0.22404246032238,0.833428561687469,0.231711834669113,0.833558976650238,0.235854148864746,0.855139076709747,0.225278064608574,0.754081308841705,0.237937971949577,0.761578500270844,0.237732887268066,0.729778051376343,0.227344155311584,0.727349877357483,0.227804973721504,0.74030476808548,0.237705036997795,0.724671065807343,0.227931573987007,0.694363236427307,0.0543945766985416,0.712598562240601,0.0358161553740501,0.730056583881378,0.0311028715223074,0.707261145114899,0.0391393825411797,0.743872344493866,0.0358490720391274, +0.732796192169189,0.0312813743948936,0.735553503036499,0.02757328748703,0.741373300552368,0.0352502577006817,0.747576653957367,0.036439023911953,0.75093150138855,0.0322891026735306,0.795382976531982,0.0157881751656532,0.809616565704346,0.0218510068953037,0.779837906360626,0.0215294454246759,0.786069095134735,0.0192228090018034,0.821219325065613,0.0242285393178463,0.809216499328613,0.233187973499298,0.819458365440369,0.237193569540977,0.823960244655609,0.237482219934464,0.80419933795929,0.233826041221619,0.797285795211792,0.237927839159966,0.784233391284943,0.23538826406002,0.781188726425171,0.234380543231964,0.777418613433838,0.234015926718712,0.868804156780243,0.171245560050011,0.874540388584137,0.175914540886879,0.834693312644959,0.237148001790047,0.827943027019501,0.237864553928375,0.751385986804962,0.241409316658974,0.744620561599731,0.237783521413803,0.76859587430954,0.237986087799072,0.764906823635101,0.237801253795624,0.730137586593628,0.232668921351433,0.721093356609344,0.225726217031479,0.697275042533875,0.0538451373577118,0.695251941680908,0.0482418574392796,0.72639787197113,0.0265225153416395,0.730008482933044,0.0268326830118895,0.700277924537659,0.0481469109654427,0.699133515357971,0.0450300388038158,0.711190760135651,0.0351249240338802,0.740977048873901,0.0271365214139223,0.743622958660126,0.0276467148214579,0.754872560501099,0.0291241258382797,0.761653184890747,0.0286696366965771,0.791027963161469,0.0147563926875591,0.796786963939667,0.0110710924491286,0.804179131984711,0.0177340041846037,0.781416594982147,0.0204584170132875,0.775876581668854,0.0219003818929195,0.766294300556183,0.0266022719442844,0.81394624710083,0.237183436751366,0.801401495933533,0.237679705023766,0.793475151062012,0.241725817322731,0.78214704990387,0.23758602142334,0.829093813896179,0.241047248244286,0.759088277816772,0.24139666557312,0.74637645483017,0.24178658425808,0.755572617053986,0.24152073264122,0.776532411575317,0.238084822893143,0.763526856899261,0.241378933191299,0.738426029682159,0.240376278758049,0.732677161693573,0.237302452325821, +0.742896258831024,0.241085231304169,0.72366589307785,0.229607746005058,0.73274302482605,0.0270896796137095,0.700599491596222,0.0399306267499924,0.738951444625854,0.0231891609728336,0.748043775558472,0.0272226072847843,0.789468288421631,0.0110103255137801,0.802076280117035,0.0146854976192117,0.791848361492157,0.00975952576845884,0.778171837329865,0.0176339913159609,0.783453583717346,0.0182188786566257,0.785394310951233,0.0110596986487508,0.771506428718567,0.0196519810706377,0.763695240020752,0.0241652391850948,0.769173204898834,0.0216269269585609,0.808375895023346,0.237008735537529,0.821430742740631,0.241057381033897,0.817132711410522,0.241123214364052,0.825288236141205,0.241614416241646,0.798330247402191,0.241773933172226,0.787945330142975,0.241844817996025,0.783272504806519,0.241513133049011,0.752496302127838,0.245068043470383,0.768723785877228,0.241806849837303,0.772778749465942,0.241328299045563,0.728266477584839,0.236173182725906,0.72065532207489,0.229941979050636,0.697672545909882,0.0440539605915546,0.727539777755737,0.0223877876996994,0.732596158981323,0.0228688642382622,0.703407466411591,0.0360326394438744,0.735385119915009,0.0230448376387358,0.744792699813843,0.0240006595849991,0.756328463554382,0.0256439168006182,0.793475151062012,0.00701992120593786,0.807740330696106,0.0141879627481103,0.810811638832092,0.24091811478138,0.804252505302429,0.2401382625103,0.790011405944824,0.245683312416077,0.780008792877197,0.241434648633003,0.795495688915253,0.245526328682899,0.763097703456879,0.245326295495033,0.757743835449219,0.24532376229763,0.747358918190002,0.245268061757088,0.775737345218658,0.242404386401176,0.768849074840546,0.245283260941505,0.736048519611359,0.244847759604454,0.741774618625641,0.245052844285965,0.72899317741394,0.241049781441689,0.723293662071228,0.233747541904449,0.717981576919556,0.225718632340431,0.692036330699921,0.0440248437225819,0.724367201328278,0.0218788590282202,0.700328588485718,0.0359149016439915,0.709322214126587,0.0350122526288033,0.737779140472412,0.0189683455973864,0.741106152534485, +0.0200355760753155,0.751207530498505,0.0234398264437914,0.787965536117554,0.00837832968682051,0.800108969211578,0.0100734913721681,0.774525821208954,0.0159957986325026,0.78203821182251,0.0127687864005566,0.766322195529938,0.01883415132761,0.762981235980988,0.0218358151614666,0.756677865982056,0.0233752615749836,0.822713196277618,0.244412258267403,0.81736946105957,0.244518592953682,0.810150802135468,0.244835093617439,0.801887691020966,0.245004743337631,0.784894287586212,0.245974481105804,0.780453145503998,0.244878143072128,0.751027762889862,0.248263403773308,0.758522391319275,0.248934373259544,0.7735915184021,0.245533928275108,0.72976541519165,0.245194628834724,0.726286470890045,0.237153053283691,0.718617081642151,0.233208224177361,0.719267785549164,0.221540853381157,0.717804312705994,0.230126813054085,0.690724790096283,0.0525905378162861,0.725266098976135,0.0176707040518522,0.720690786838531,0.0260376408696175,0.732492327690125,0.0186898279935122,0.692922532558441,0.0404927283525467,0.750582098960876,0.0206622425466776,0.783958673477173,0.00646921480074525,0.769439041614532,0.0162793807685375,0.779093503952026,0.0109381638467312,0.78173816204071,0.008953089825809,0.784115672111511,0.248893857002258,0.789646804332733,0.249073639512062,0.7949538230896,0.248696371912956,0.762365937232971,0.249134406447411,0.765346109867096,0.24837227165699,0.745686531066895,0.248595088720322,0.774899244308472,0.247957020998001,0.740180730819702,0.248625472187996,0.736572623252869,0.248640656471252,0.725747168064117,0.24090039730072,0.723488628864288,0.238062039017677,0.719979286193848,0.237034052610397,0.715555906295776,0.229800179600716,0.721331357955933,0.0214218366891146,0.727982878684998,0.0139967985451221,0.732529044151306,0.0145740900188684,0.739486932754517,0.0170946791768074,0.749694645404816,0.0181353241205215,0.754775047302246,0.019301300868392,0.770444214344025,0.0108305541798472,0.760712563991547,0.0193468760699034,0.763807892799377,0.012347212061286,0.81499445438385,0.247549384832382,0.802490293979645,0.248073503375053,0.769620060920715, +0.24842543900013,0.757276654243469,0.251595497131348,0.75206458568573,0.250506728887558,0.765280246734619,0.252167701721191,0.731713771820068,0.248909056186676,0.72589910030365,0.244622409343719,0.714689970016479,0.237132802605629,0.715011537075043,0.226478219032288,0.721865653991699,0.017649183049798,0.726124405860901,0.0139221046119928,0.735705435276031,0.0144993970170617,0.743011474609375,0.0178593378514051,0.778412401676178,0.00753391347825527,0.768322467803955,0.0117483977228403,0.773329436779022,0.0066970931366086,0.809351921081543,0.248032987117767,0.784456253051758,0.250628262758255,0.794924736022949,0.251289129257202,0.765462577342987,0.249947160482407,0.770482242107391,0.250823229551315,0.743336856365204,0.25185626745224,0.739714860916138,0.251884132623672,0.729028582572937,0.248774856328964,0.735320568084717,0.25207656621933,0.71886271238327,0.247562035918236,0.717401742935181,0.241508066654205,0.715692639350891,0.222176387906075,0.712636530399323,0.229635611176491,0.718781650066376,0.0194266345351934,0.72476726770401,0.0157590582966805,0.726797938346863,0.00941391009837389,0.732260704040527,0.0109875369817019,0.740259230136871,0.0118534751236439,0.743064641952515,0.0135676274076104,0.754811763763428,0.0151627762243152,0.748712241649628,0.0143854571506381,0.757012069225311,0.0166781675070524,0.770764529705048,0.0019914039876312,0.767067849636078,0.00522854365408421,0.764782726764679,0.00656922813504934,0.805808424949646,0.249997809529305,0.78684264421463,0.251699298620224,0.780465841293335,0.251739799976349,0.776096880435944,0.250061094760895,0.749261677265167,0.251673966646194,0.731772005558014,0.252684235572815,0.72206312417984,0.248681172728539,0.725481271743774,0.24948887526989,0.713206231594086,0.241168782114983,0.71226179599762,0.232998073101044,0.712793529033661,0.225285664200783,0.716877639293671,0.0239310301840305,0.724265933036804,0.013848677277565,0.768961787223816,0.00338146230205894,0.761245548725128,0.00972027983516455,0.737894356250763,0.254198372364044,0.728139877319336,0.25289186835289, +0.734697699546814,0.255899846553802,0.71946781873703,0.252544969320297,0.71521919965744,0.248739406466484,0.714484870433807,0.24491611123085,0.710137486457825,0.241584032773972,0.709767818450928,0.237348020076752,0.709907054901123,0.229445710778236,0.712512493133545,0.0235246475785971,0.725017964839935,0.00860367622226477,0.731220006942749,0.00889358762651682,0.736799240112305,0.00916451029479504,0.743453323841095,0.00892397202551365,0.748364090919495,0.00873913709074259,0.752826690673828,0.00877078715711832,0.757048785686493,0.00904550682753325,0.763667404651642,0.00340298423543572,0.760347962379456,0.00592104066163301,0.741422653198242,0.25462880730629,0.729608416557312,0.255831480026245,0.715983808040619,0.252598166465759,0.722133994102478,0.255699843168259,0.710831224918365,0.245265528559685,0.704384803771973,0.237393602728844,0.703751802444458,0.234859079122543,0.709962785243988,0.224981814622879,0.706395208835602,0.0322258062660694,0.718981683254242,0.0144171072170138,0.727200508117676,0.00596028659492731,0.730179369449615,0.00679963873699307,0.739684462547302,0.256899982690811,0.73150360584259,0.258340686559677,0.718009412288666,0.255796045064926,0.712889730930328,0.253046303987503,0.712585926055908,0.248802706599236,0.707481443881989,0.240553513169289,0.707483947277069,0.244440108537674,0.706628143787384,0.229367211461067,0.71265172958374,0.221442103385925,0.7465980052948,0.00595395639538765,0.752548217773438,0.0049525573849678,0.756628453731537,0.00516651012003422,0.736218154430389,0.25852045416832,0.721820056438446,0.258771121501923,0.727058708667755,0.258801519870758,0.71391773223877,0.256692379713058,0.709347486495972,0.248382404446602,0.70467346906662,0.241444766521454,0.701652824878693,0.24107763171196,0.700267791748047,0.234651461243629,0.706926941871643,0.226417452096939,0.728388011455536,0.261343628168106,0.733081042766571,0.260611861944199,0.715950906276703,0.25977885723114,0.709334850311279,0.255494743585587,0.703663229942322,0.248681172728539,0.697745978832245,0.241070032119751,0.70028555393219, +0.229136809706688,0.724779963493347,0.2618348300457,0.709648787975311,0.261525928974152,0.704903900623322,0.259082555770874,0.705863475799561,0.252552568912506,0.700305819511414,0.244592025876045,0.696712911128998,0.233846291899681,0.698776483535767,0.227136537432671,0.718958914279938,0.26226019859314,0.725382566452026,0.264245271682739,0.714094996452332,0.262184232473373,0.703650534152985,0.256120145320892,0.700483024120331,0.252165168523788,0.694492340087891,0.244733810424805,0.692388296127319,0.241021931171417,0.696366012096405,0.229212760925293,0.721212387084961,0.26483017206192,0.729621112346649,0.262905865907669,0.703410029411316,0.262407064437866,0.710945188999176,0.265835344791412,0.698001682758331,0.259999126195908,0.699981689453125,0.24837227165699,0.695168375968933,0.247995004057884,0.693368136882782,0.232263803482056,0.693953037261963,0.228840559720993,0.714284896850586,0.265012472867966,0.716548442840576,0.266954481601715,0.706673741340637,0.265708744525909,0.696707844734192,0.256145447492599,0.695568442344666,0.252008199691772,0.690745055675507,0.24849633872509,0.690752625465393,0.244708493351936,0.689094185829163,0.233329772949219,0.716135740280151,0.269600421190262,0.70058685541153,0.266083478927612,0.692598462104797,0.263908505439758,0.711968123912811,0.269109219312668,0.70853728055954,0.268878787755966,0.693872034549713,0.260009258985519,0.690724790096283,0.252274066209793,0.688438415527344,0.244148924946785,0.690010786056519,0.230382531881332,0.686098873615265,0.24049274623394,0.72258722782135,0.266746878623962,0.702460527420044,0.269496589899063,0.692990899085999,0.252788037061691,0.68792188167572,0.25227153301239,0.685939311981201,0.248967289924622,0.684559404850006,0.231805518269539,0.680379092693329,0.236520066857338,0.705921709537506,0.27253246307373,0.688299119472504,0.267926782369614,0.697902917861938,0.269602954387665,0.690896928310394,0.260272592306137,0.690643727779388,0.256046712398529,0.687845885753632,0.256008744239807,0.685529172420502,0.245187044143677,0.680670261383057,0.240910515189171, +0.70337963104248,0.275813907384872,0.68780791759491,0.26371356844902,0.699255049228668,0.273347735404968,0.702045261859894,0.27333003282547,0.685179710388184,0.25239560008049,0.685124039649963,0.256115078926086,0.681974232196808,0.244726225733757,0.682926297187805,0.248063370585442,0.680270195007324,0.232868939638138,0.6763836145401,0.240606680512428,0.690919756889343,0.270375192165375,0.683316171169281,0.267567217350006,0.696596443653107,0.272757798433304,0.687830746173859,0.259872525930405,0.682516098022461,0.251438498497009,0.685040473937988,0.259918123483658,0.676596343517303,0.237056851387024,0.676368415355682,0.244779393076897,0.699156284332275,0.27719634771347,0.692178130149841,0.273274332284927,0.683250367641449,0.271704494953156,0.685048043727875,0.263751536607742,0.696011543273926,0.276479810476303,0.682166695594788,0.255679577589035,0.682095766067505,0.259631991386414,0.677477419376373,0.249025523662567,0.674877107143402,0.234241276979446,0.670334696769714,0.240399062633514,0.686103880405426,0.274732738733292,0.677140712738037,0.271317094564438,0.682328701019287,0.263799637556076,0.677611649036407,0.253099471330643,0.671567797660828,0.236856818199158,0.6746466755867,0.247959554195404,0.667088747024536,0.244622409343719,0.687288880348206,0.277735680341721,0.678150951862335,0.275312572717667,0.679551124572754,0.267592549324036,0.692198395729065,0.280809491872787,0.692094564437866,0.27715077996254,0.679143488407135,0.256089746952057,0.679629623889923,0.263703435659409,0.67342883348465,0.248544454574585,0.6690434217453,0.234902128577232,0.665323913097382,0.242082834243774,0.665815114974976,0.239044457674026,0.681650161743164,0.277576148509979,0.676849484443665,0.267465949058533,0.671783030033112,0.275287240743637,0.677031815052032,0.259750992059708,0.676406443119049,0.256066977977753,0.67693305015564,0.263569235801697,0.662619769573212,0.248286187648773,0.663498342037201,0.245214894413948,0.684493541717529,0.280920892953873,0.68910938501358,0.280280321836472,0.678036987781525,0.280685424804688,0.674107372760773, +0.271304428577423,0.671537399291992,0.28166276216507,0.673613667488098,0.256087213754654,0.66478967666626,0.2522993683815,0.661006927490234,0.244217291474342,0.662538766860962,0.240751013159752,0.681715965270996,0.280839890241623,0.674132704734802,0.267438113689423,0.671423494815826,0.271291762590408,0.669519424438477,0.278763651847839,0.685154438018799,0.284085869789124,0.674299836158752,0.25977885723114,0.672423601150513,0.263024866580963,0.670038461685181,0.256239145994186,0.656082212924957,0.252253800630569,0.66158926486969,0.238687440752983,0.680953860282898,0.285086005926132,0.678806722164154,0.28395676612854,0.673228800296783,0.283369332551956,0.66865599155426,0.275046706199646,0.661439895629883,0.282708495855331,0.671593129634857,0.259788990020752,0.663840174674988,0.255925178527832,0.658191323280334,0.247901320457459,0.658234357833862,0.241606816649437,0.665417611598969,0.285686105489731,0.671403229236603,0.267440646886826,0.668688952922821,0.271223425865173,0.665865778923035,0.278862416744232,0.668886423110962,0.259811758995056,0.664678275585175,0.259750992059708,0.656753182411194,0.25606444478035,0.655330181121826,0.24831910431385,0.65750515460968,0.244617342948914,0.656160712242126,0.239244475960732,0.680394291877747,0.287531912326813,0.673008501529694,0.286906510591507,0.66642028093338,0.288808017969131,0.665956914424896,0.274968206882477,0.65634298324585,0.286076009273529,0.663176834583282,0.278892785310745,0.668759822845459,0.263538837432861,0.667501449584961,0.266693711280823,0.659745991230011,0.25938892364502,0.652134835720062,0.251906931400299,0.6524538397789,0.247435435652733,0.654899775981903,0.241647332906723,0.673292100429535,0.290398120880127,0.658793926239014,0.288699150085449,0.665956914424896,0.271175295114517,0.657712817192078,0.28272619843483,0.660465061664581,0.278910517692566,0.666055679321289,0.263511002063751,0.66062206029892,0.26351860165596,0.648564755916595,0.255778312683105,0.65435791015625,0.259728223085403,0.653828740119934,0.244531258940697,0.651491701602936,0.241695433855057, +0.668916821479797,0.290889322757721,0.656930387020111,0.29245662689209,0.663235068321228,0.275001138448715,0.650597929954529,0.291904658079147,0.654937744140625,0.282705962657928,0.66332620382309,0.263516068458557,0.656978487968445,0.263457834720612,0.644483208656311,0.251820832490921,0.649491429328918,0.24800007045269,0.650258660316467,0.239287525415421,0.667620420455933,0.293168097734451,0.663224935531616,0.271195560693741,0.652266502380371,0.286450743675232,0.657740652561188,0.278877586126328,0.660505592823029,0.275049239397049,0.66324520111084,0.267352014780045,0.660530865192413,0.267326682806015,0.65780645608902,0.267349481582642,0.647389888763428,0.259705424308777,0.636568188667297,0.255899846553802,0.649372458457947,0.244391992688179,0.648790061473846,0.263680636882782,0.646098613739014,0.241938501596451,0.657771050930023,0.295598804950714,0.65215003490448,0.295535504817963,0.647696256637573,0.290256321430206,0.652261435985565,0.282655328512192,0.655041575431824,0.27880921959877,0.653724908828735,0.267407715320587,0.634884417057037,0.259750992059708,0.642356336116791,0.248184904456139,0.633610844612122,0.252463966608047,0.645875751972198,0.245004743337631,0.661057531833649,0.296788841485977,0.641865134239197,0.293790966272354,0.659148454666138,0.27083095908165,0.649481296539307,0.286526709794998,0.657773554325104,0.275016337633133,0.65325140953064,0.271205693483353,0.638338088989258,0.248146921396255,0.630557298660278,0.258882522583008,0.648544490337372,0.267491281032562,0.651332199573517,0.299718350172043,0.652058899402618,0.297918111085892,0.640239596366882,0.296528041362762,0.644045174121857,0.290403187274933,0.646799921989441,0.286524176597595,0.652319669723511,0.278796583414078,0.649595260620117,0.28261986374855,0.654218673706055,0.274596005678177,0.649574995040894,0.271162658929825,0.63448691368103,0.263295769691467,0.64006233215332,0.244247674942017,0.631775140762329,0.248192504048347,0.62869119644165,0.251962631940842,0.63953822851181,0.268243283033371,0.645982146263123,0.29909548163414,0.638667225837708, +0.293259263038635,0.641338467597961,0.290380388498306,0.649585127830505,0.274983406066895,0.636099815368652,0.244756609201431,0.621130704879761,0.25170436501503,0.627374589443207,0.263637602329254,0.640505433082581,0.241525799036026,0.646848082542419,0.271165192127228,0.643379211425781,0.271134793758392,0.638462126255035,0.299741119146347,0.636426389217377,0.296360939741135,0.644073009490967,0.286552041769028,0.646868288516998,0.282609730958939,0.649585127830505,0.278801649808884,0.646860718727112,0.274985939264297,0.629083693027496,0.268334418535233,0.625308454036713,0.248291254043579,0.632869005203247,0.244242608547211,0.622855007648468,0.2614626288414,0.633618474006653,0.27367690205574,0.644673109054565,0.301640123128891,0.638244390487671,0.30283522605896,0.633957743644714,0.294074565172195,0.638993859291077,0.289818286895752,0.641335904598236,0.286534309387207,0.645523846149445,0.278237015008926,0.63012433052063,0.272258996963501,0.627665758132935,0.244683176279068,0.621447205543518,0.247683569788933,0.620166003704071,0.255183309316635,0.617925226688385,0.267620414495468,0.644128680229187,0.2749884724617,0.637905120849609,0.27501380443573,0.631187736988068,0.303470730781555,0.634659111499786,0.299860119819641,0.630709171295166,0.297591477632523,0.636114954948425,0.290681689977646,0.644126176834106,0.282629996538162,0.62623518705368,0.271251261234283,0.633165240287781,0.2421765178442,0.624323546886444,0.244531258940697,0.629663467407227,0.242576569318771,0.617709994316101,0.247744336724281,0.615578055381775,0.251724630594254,0.618082225322723,0.258928120136261,0.615793287754059,0.263531237840652,0.641394138336182,0.274980872869492,0.629848301410675,0.278702884912491,0.633220911026001,0.278801649808884,0.628653228282928,0.301100790500641,0.630296468734741,0.294059365987778,0.63304877281189,0.290208220481873,0.638563394546509,0.286468476057053,0.640399098396301,0.282138794660568,0.641371369361877,0.278763651847839,0.619631767272949,0.277165979146957,0.627316355705261,0.243229821324348,0.61996853351593,0.245328828692436, +0.613557577133179,0.255608677864075,0.614990651607513,0.274841606616974,0.609597504138947,0.266739279031754,0.622373938560486,0.281017124652863,0.638641893863678,0.278735816478729,0.635937750339508,0.278761118650436,0.627607524394989,0.297913044691086,0.635793447494507,0.286354541778564,0.614334881305695,0.248739406466484,0.61593759059906,0.246225148439407,0.611595273017883,0.25189933180809,0.615104615688324,0.271595627069473,0.610040605068207,0.271524727344513,0.609025299549103,0.25906229019165,0.630405366420746,0.282543897628784,0.626941621303558,0.282670497894287,0.633144974708557,0.282518595457077,0.627488493919373,0.303931564092636,0.630336999893188,0.290119588375092,0.627604961395264,0.2940973341465,0.625250220298767,0.300895720720291,0.631342172622681,0.285713940858841,0.613463878631592,0.283966869115829,0.609205067157745,0.255325108766556,0.602535843849182,0.281161457300186,0.60285484790802,0.27211719751358,0.60506272315979,0.259421855211258,0.621713042259216,0.286430507898331,0.635874450206757,0.28246796131134,0.625473082065582,0.307235807180405,0.624564051628113,0.303961932659149,0.624867916107178,0.297945946455002,0.603857517242432,0.285855740308762,0.615081787109375,0.286881178617477,0.610886335372925,0.249012857675552,0.606108486652374,0.252410799264908,0.602214276790619,0.266979813575745,0.606110990047455,0.255239009857178,0.627582192420959,0.286270976066589,0.624951481819153,0.286364674568176,0.624893248081207,0.294001132249832,0.622454941272736,0.301554024219513,0.602740943431854,0.290744990110397,0.613203048706055,0.290117055177689,0.59951263666153,0.288063615560532,0.598763167858124,0.27831295132637,0.598332762718201,0.270780324935913,0.602285146713257,0.255109876394272,0.599993705749512,0.263290703296661,0.622196674346924,0.290157586336136,0.616730153560638,0.290185421705246,0.622325778007507,0.307007908821106,0.622128307819366,0.297938346862793,0.627587258815765,0.290076553821564,0.620264768600464,0.305207669734955,0.606576859951019,0.251043528318405,0.593987882137299,0.291643857955933,0.596788227558136, +0.27375540137291,0.594154953956604,0.284435302019119,0.600631773471832,0.259619325399399,0.623870313167572,0.290656387805939,0.619507730007172,0.290193021297455,0.616236388683319,0.312155425548553,0.619419097900391,0.301748991012573,0.603991746902466,0.29419356584549,0.594577789306641,0.296130537986755,0.613876581192017,0.293909966945648,0.592055976390839,0.279163718223572,0.593547284603119,0.267192512750626,0.595479190349579,0.262989401817322,0.597795963287354,0.259429454803467,0.619441866874695,0.293930232524872,0.616676926612854,0.293907433748245,0.616704821586609,0.307846009731293,0.613856315612793,0.315588802099228,0.617087125778198,0.304691165685654,0.619388699531555,0.297890245914459,0.610671103000641,0.294120132923126,0.597481966018677,0.299599349498749,0.589650571346283,0.292281925678253,0.587652862071991,0.2994145154953,0.586933732032776,0.274294704198837,0.585343658924103,0.287410378456116,0.591460943222046,0.270385324954987,0.59782886505127,0.255925178527832,0.610853374004364,0.314917832612991,0.615119755268097,0.310724884271622,0.61659848690033,0.301721155643463,0.604743719100952,0.298386514186859,0.590202569961548,0.302123725414276,0.613927245140076,0.297705411911011,0.611149609088898,0.29773074388504,0.581950843334198,0.27464160323143,0.580234110355377,0.282280594110489,0.592316746711731,0.263260334730148,0.589868307113647,0.266805112361908,0.594866454601288,0.25915852189064,0.602019309997559,0.25284880399704,0.614258885383606,0.305233001708984,0.608587265014648,0.317979007959366,0.611959874629974,0.311816155910492,0.612676441669464,0.308610677719116,0.608379662036896,0.297834545373917,0.602275013923645,0.301865458488464,0.590232908725739,0.305729269981384,0.585460126399994,0.289722084999084,0.583383917808533,0.296307772397995,0.585807025432587,0.30729404091835,0.581495046615601,0.277882516384125,0.583832085132599,0.270977824926376,0.586665391921997,0.270727157592773,0.578005969524384,0.286671042442322,0.587488234043121,0.267281115055084,0.607351660728455,0.315538167953491,0.608820199966431,0.312935292720795, +0.613836050033569,0.301667958498001,0.605700790882111,0.30167555809021,0.596651494503021,0.305807769298553,0.608485996723175,0.301599591970444,0.579535305500031,0.307362407445908,0.57895040512085,0.312066823244095,0.579325139522552,0.27447447180748,0.581330478191376,0.270519524812698,0.576213359832764,0.28237172961235,0.578211069107056,0.278794050216675,0.589035332202911,0.263169169425964,0.592716813087463,0.259318023920059,0.611131906509399,0.305433034896851,0.605143785476685,0.318482875823975,0.608812630176544,0.309494316577911,0.603009283542633,0.305458337068558,0.600216507911682,0.305460870265961,0.588118731975555,0.309276580810547,0.592007875442505,0.309355080127716,0.575820863246918,0.293218731880188,0.576826095581055,0.299037247896194,0.576780498027802,0.304787367582321,0.578793406486511,0.316072404384613,0.584556221961975,0.266225278377533,0.5859614610672,0.266544312238693,0.574149787425995,0.286078542470932,0.603814482688904,0.316191405057907,0.605364084243774,0.320979386568069,0.605989456176758,0.312618792057037,0.597507297992706,0.309200614690781,0.581965982913971,0.315333068370819,0.594760119915009,0.30930694937706,0.574370086193085,0.312960624694824,0.575218260288239,0.317340940237045,0.577593266963959,0.274537771940231,0.57574999332428,0.278472483158112,0.574213087558746,0.282002061605453,0.608379662036896,0.305498868227005,0.602031946182251,0.319328546524048,0.605609655380249,0.309238582849503,0.586913526058197,0.315639436244965,0.584698021411896,0.314720332622528,0.589268267154694,0.316669970750809,0.57260525226593,0.29292756319046,0.572967350482941,0.300146251916885,0.572298884391785,0.307283908128738,0.57735276222229,0.320964217185974,0.579841673374176,0.270825892686844,0.572666049003601,0.282824963331223,0.600644469261169,0.316492736339569,0.602923214435577,0.321627587080002,0.603001713752747,0.313208758831024,0.59474241733551,0.313036561012268,0.582844614982605,0.320905983448029,0.57158488035202,0.288210481405258,0.571440577507019,0.315842002630234,0.573823153972626,0.321893453598022,0.599256932735443, +0.319389313459396,0.599479734897614,0.322263121604919,0.589349269866943,0.321389585733414,0.570435345172882,0.294773370027542,0.570475876331329,0.300943821668625,0.569202303886414,0.308575212955475,0.57892507314682,0.324939429759979,0.575942397117615,0.325192630290985,0.59747439622879,0.317161172628403,0.600143134593964,0.312968194484711,0.592023015022278,0.317059904336929,0.569131374359131,0.291666626930237,0.571422815322876,0.322566956281662,0.569379508495331,0.316788971424103,0.58218377828598,0.32498499751091,0.574691593647003,0.32753723859787,0.597028791904449,0.321007251739502,0.602946043014526,0.309284180402756,0.592678844928741,0.320986986160278,0.568346500396729,0.299011915922165,0.566926062107086,0.309041112661362,0.578790903091431,0.328289240598679,0.581558346748352,0.328312009572983,0.57716029882431,0.328836143016815,0.595033586025238,0.320414751768112,0.595231056213379,0.323592394590378,0.591985046863556,0.324010193347931,0.594681620597839,0.316968739032745,0.586933732032776,0.324174761772156,0.569688439369202,0.32248592376709,0.585014522075653,0.328393042087555,0.58985310792923,0.325352132320404,0.587189495563507,0.327132105827332,0.566022098064423,0.304675966501236,0.597421228885651,0.312998592853546,0.594471454620361,0.325969934463501,0.588865637779236,0.328755110502243,0.0151817658916116,0.855978429317474,0.0145639618858695,0.843819797039032,0.019177233800292,0.857411503791809,0.0104824071750045,0.8457390666008,0.0186860300600529,0.844685733318329,0.0151463178917766,0.860541045665741,0.0109989307820797,0.853578090667725,0.0106647098436952,0.839404046535492,0.0227321367710829,0.846508800983429,0.0184885356575251,0.841303050518036,0.0191974900662899,0.86343252658844,0.0110596986487508,0.857148170471191,0.00682622427120805,0.84464019536972,0.0146551132202148,0.837023973464966,0.0225397069007158,0.84292858839035,0.0228688642382622,0.857538104057312,0.0230258479714394,0.862298250198364,0.015050102956593,0.865878462791443,0.0107052214443684,0.861710786819458,0.00781876128166914,0.852904558181763,0.0102190803736448, +0.835909903049469,0.00585394306108356,0.837722778320313,0.0284088421612978,0.844569265842438,0.0268947165459394,0.850919485092163,0.0224738754332066,0.840492784976959,0.0184429585933685,0.838669776916504,0.0233701970428228,0.867063403129578,0.0190101228654385,0.866531729698181,0.00833528582006693,0.861498117446899,0.00536780245602131,0.849288880825043,0.00719589367508888,0.855299830436707,0.0101633770391345,0.833398163318634,0.00564125645905733,0.834304630756378,0.00242563895881176,0.835798501968384,0.0288747269660234,0.847268402576447,0.0277809090912342,0.84232085943222,0.026671901345253,0.858160972595215,0.0179365631192923,0.836289703845978,0.0269200354814529,0.863260388374329,0.0192531943321228,0.869195342063904,0.0121535155922174,0.864809930324554,0.00490191765129566,0.843556523323059,0.00603624572977424,0.832542359828949,0.00189392280299217,0.832937359809875,0.034151379019022,0.845171928405762,0.0333411432802677,0.843156456947327,0.0307787768542767,0.851486682891846,0.021916838362813,0.838598847389221,0.0263630002737045,0.839545845985413,0.0268491413444281,0.866420269012451,0.010234272107482,0.831220686435699,0.00610714126378298,0.830942153930664,0.00213192915543914,0.831397891044617,0.0316092669963837,0.847992539405823,0.030312892049551,0.840538382530212,0.0304344277828932,0.858642041683197,0.0277100149542093,0.869595408439636,0.0306572411209345,0.863979458808899,0.0231271255761385,0.870643615722656,0.0133688664063811,0.831230819225311,0.00220788852311671,0.830800354480743,0.0375594273209572,0.843439996242523,0.0343488715589046,0.848721742630005,0.0340754166245461,0.841186583042145,0.0345666222274303,0.85738617181778,0.0221599098294973,0.837099969387054,0.0325309075415134,0.866688668727875,0.0101026091724634,0.829012811183929,0.0381012707948685,0.84596186876297,0.0346780307590961,0.862434983253479,0.0306217949837446,0.869453608989716,0.0263275522738695,0.871777951717377,0.00626918813213706,0.829493880271912,0.0383240841329098,0.841576457023621,0.0417675785720348,0.843637526035309,0.0380658209323883,0.851390421390533, +0.0385266430675983,0.861680448055267,0.0339589454233646,0.868714272975922,0.0310218464583158,0.871772885322571,0.0400559604167938,0.864754259586334,0.0419600121676922,0.847597539424896,0.0381316542625427,0.857289969921112,0.0385165140032768,0.867909073829651,0.0423853844404221,0.84055358171463,0.04595547914505,0.846893668174744,0.0419498831033707,0.856358170509338,0.042192954570055,0.861006915569305,0.0346527099609375,0.871884286403656,0.0379594787955284,0.871504545211792,0.0432614497840405,0.866622865200043,0.0456668324768543,0.841530919075012,0.0463960431516171,0.855021297931671,0.0456972159445286,0.843632459640503,0.0465125143527985,0.861087918281555,0.0426790937781334,0.869266271591187,0.049793966114521,0.848174810409546,0.049404039978981,0.842781722545624,0.0467100106179714,0.857796370983124,0.0540730133652687,0.864698529243469,0.0535463616251946,0.853481888771057,0.0537286661565304,0.859128177165985,0.0496977493166924,0.84036111831665,0.0573645904660225,0.844260394573212,0.0575266368687153,0.860991716384888,0.0558150187134743,0.839530646800995,0.0571620315313339,0.851922154426575,0.0593648590147495,0.84038645029068,0.0576076619327068,0.856894969940186,0.0579013712704182,0.864845395088196,0.0640895366668701,0.834375500679016,0.0612537153065205,0.842624723911285,0.0525943376123905,0.867063403129578,0.0615676827728748,0.86194372177124,0.0627323910593987,0.85884964466095,0.0539818629622459,0.836958169937134,0.0638971030712128,0.836309969425201,0.0612486526370049,0.851917088031769,0.0619474798440933,0.855882167816162,0.0651833564043045,0.839100182056427,0.0615778118371964,0.865108728408813,0.0605954006314278,0.834264099597931,0.068667359650135,0.835266768932343,0.0652542486786842,0.850306749343872,0.0701257809996605,0.859310507774353,0.0668949708342552,0.861847519874573,0.0537033453583717,0.86795973777771,0.0719791948795319,0.855269432067871,0.0675634145736694,0.830268681049347,0.0688294097781181,0.83188408613205,0.0683736503124237,0.837798774242401,0.0659530758857727,0.853962957859039,0.069285161793232,0.844584465026855, +0.0752606391906738,0.856454432010651,0.0725868716835976,0.834076762199402,0.0726020634174347,0.838857114315033,0.0707081407308578,0.850316882133484,0.0749568045139313,0.858910441398621,0.0798587203025818,0.853243887424469,0.0756455063819885,0.852651357650757,0.0720906034111977,0.830405354499817,0.0795143693685532,0.845192134380341,0.0689712017774582,0.863756656646729,0.0788408666849136,0.855147898197174,0.0729160234332085,0.827605009078979,0.0759392157196999,0.83166629076004,0.0793016850948334,0.843019723892212,0.0795751437544823,0.849997878074646,0.0797726362943649,0.847678542137146,0.0824261531233788,0.853841423988342,0.0722678378224373,0.82619720697403,0.0761822834610939,0.826997339725494,0.0810284987092018,0.835590898990631,0.0842643678188324,0.844148993492126,0.0846745520830154,0.848073542118073,0.0846998691558838,0.850899219512939,0.0803752467036247,0.829544484615326,0.0818741768598557,0.832547426223755,0.0844213515520096,0.835403501987457,0.0874749273061752,0.85197788476944,0.0764354839920998,0.823280394077301,0.0800815373659134,0.826789736747742,0.0881990715861321,0.846868336200714,0.0884927809238434,0.840892851352692,0.0903107449412346,0.848119139671326,0.0728248730301857,0.824277997016907,0.0857633054256439,0.830749750137329,0.0873837769031525,0.829336881637573,0.0895815342664719,0.832881629467011,0.0883864387869835,0.844209730625153,0.0883965641260147,0.835727632045746,0.079889103770256,0.822525858879089,0.0846694856882095,0.826880872249603,0.0924882516264915,0.844852864742279,0.0922755599021912,0.839404046535492,0.0923667177557945,0.842908322811127,0.0841884091496468,0.824475467205048,0.0768203437328339,0.821609258651733,0.0916223153471947,0.831408023834229,0.0890953913331032,0.828065812587738,0.0924072265625,0.835206031799316,0.0842846259474754,0.821973860263824,0.0797776952385902,0.81987738609314,0.0958962962031364,0.832152426242828,0.0881281793117523,0.825802206993103,0.0959266796708107,0.834294497966766,0.0966710820794106,0.842427253723145,0.096245713531971,0.836892306804657,0.0964583978056908,0.840128183364868, +0.0838946998119354,0.819472253322601,0.0871812179684639,0.820864856243134,0.0939314812421799,0.827012538909912,0.0802233293652534,0.817937910556793,0.0999727919697762,0.832501888275146,0.0935212969779968,0.824495732784271,0.0928427278995514,0.828871011734009,0.100458927452564,0.835352897644043,0.100469060242176,0.839439511299133,0.0886295065283775,0.818211376667023,0.0840618163347244,0.813117027282715,0.0932478457689285,0.821437120437622,0.100418418645859,0.825245201587677,0.0966001898050308,0.8292356133461,0.088204137980938,0.815507173538208,0.0802131965756416,0.813567698001862,0.104180946946144,0.832861423492432,0.100008234381676,0.82782781124115,0.103861913084984,0.835190832614899,0.0950151681900024,0.816945374011993,0.098787821829319,0.818991184234619,0.0764759927988052,0.814686834812164,0.0802537128329277,0.809987485408783,0.0881534963846207,0.811531960964203,0.103856854140759,0.82633900642395,0.0999424085021019,0.829574882984161,0.0916324406862259,0.813993096351624,0.0764051005244255,0.811131954193115,0.0759594663977623,0.818327844142914,0.0843453928828239,0.809086084365845,0.107112981379032,0.820667386054993,0.104054346680641,0.828531682491302,0.0956279113888741,0.813820898532867,0.100702002644539,0.815679371356964,0.0725362300872803,0.815400838851929,0.0762633085250854,0.806407272815704,0.0801625624299049,0.805450141429901,0.0920578166842461,0.811769962310791,0.0876369699835777,0.808047950267792,0.103497311472893,0.816707372665405,0.105786219239235,0.827336609363556,0.107619374990463,0.823650062084198,0.0723184794187546,0.810124218463898,0.0724653303623199,0.819158315658569,0.0850037112832069,0.804123401641846,0.0922249257564545,0.808994948863983,0.108389101922512,0.815228700637817,0.107518099248409,0.826136469841003,0.111331261694431,0.82043445110321,0.0959317460656166,0.811223089694977,0.103532753884792,0.813922166824341,0.0684546753764153,0.812028229236603,0.0647681057453156,0.822424590587616,0.0762481167912483,0.801231861114502,0.072237454354763,0.805541336536407,0.0813373997807503,0.800548255443573,0.0883864387869835, +0.805090606212616,0.111417353153229,0.817598640918732,0.110971719026566,0.823158860206604,0.0645452961325645,0.809567153453827,0.06458580493927,0.813932299613953,0.089206799864769,0.800922989845276,0.0963419303297997,0.808498680591583,0.0939719900488853,0.805485606193542,0.090624712407589,0.803470134735107,0.107345923781395,0.810990154743195,0.111452795565128,0.814307034015656,0.113361909985542,0.820561051368713,0.103892296552658,0.811040759086609,0.0616993457078934,0.820115387439728,0.0811753496527672,0.796076774597168,0.0720247700810432,0.801241993904114,0.0676950812339783,0.802057325839996,0.0869533345103264,0.797114849090576,0.113848052918911,0.815593302249908,0.0611068606376648,0.813375294208527,0.0608334057033062,0.826987206935883,0.0756151229143143,0.796988248825073,0.0618006251752377,0.808792352676392,0.0945037081837654,0.796648979187012,0.0983421951532364,0.79686164855957,0.0992891564965248,0.802021861076355,0.103497311472893,0.806928813457489,0.111650295555592,0.807303547859192,0.11472412198782,0.810519218444824,0.116248369216919,0.814084231853485,0.0575975328683853,0.826683342456818,0.0641604289412498,0.826298475265503,0.0569493472576141,0.817284643650055,0.0815197005867958,0.792273700237274,0.0941087156534195,0.790526628494263,0.0728400647640228,0.794613301753998,0.065715067088604,0.796532511711121,0.102808609604836,0.802634596824646,0.107720658183098,0.80230039358139,0.0570506267249584,0.81107622385025,0.0535970032215118,0.827893674373627,0.0726476386189461,0.820925652980804,0.0550554245710373,0.815730035305023,0.0855658128857613,0.79026335477829,0.0777014717459679,0.791240692138672,0.061192948371172,0.802452266216278,0.0983016788959503,0.791012823581696,0.102454133331776,0.797849178314209,0.115271024405956,0.803824603557587,0.112506099045277,0.802695393562317,0.117443464696407,0.807389676570892,0.0563366077840328,0.803672730922699,0.0543363392353058,0.831402957439423,0.0533893778920174,0.820561051368713,0.0831300467252731,0.788617551326752,0.0900676771998405,0.78499174118042,0.0696902796626091,0.788369417190552, +0.0730324983596802,0.784419536590576,0.0600788779556751,0.79059249162674,0.0985093042254448,0.785928606987,0.106231853365898,0.79302316904068,0.110136166214943,0.798315048217773,0.0495002530515194,0.816408574581146,0.053414698690176,0.803880333900452,0.0503256805241108,0.830643355846405,0.0496015325188637,0.822520792484283,0.0842390507459641,0.785067677497864,0.0935314297676086,0.784500539302826,0.0631172582507133,0.789063155651093,0.0776103213429451,0.784323275089264,0.0575924701988697,0.797094643115997,0.102752909064293,0.788617551326752,0.117777690291405,0.79951012134552,0.112997308373451,0.798831582069397,0.0515207760035992,0.809977352619171,0.0470948703587055,0.834172964096069,0.0479810647666454,0.828810214996338,0.0941087156534195,0.780104994773865,0.0691737532615662,0.778403520584106,0.0775850042700768,0.781097531318665,0.0562606453895569,0.792896568775177,0.0594813302159309,0.784399271011353,0.103173218667507,0.781634330749512,0.106545813381672,0.790784895420074,0.111366711556911,0.794213235378265,0.11902342736721,0.805642604827881,0.115812867879868,0.798477053642273,0.0454744026064873,0.814788103103638,0.0500269047915936,0.802194058895111,0.052462674677372,0.794496834278107,0.0503104887902737,0.835626304149628,0.0452110767364502,0.826440274715424,0.0459504164755344,0.821411788463593,0.0897334516048431,0.780424058437347,0.0724045634269714,0.773182570934296,0.0775242373347282,0.774752378463745,0.0898955017328262,0.775856375694275,0.0568835139274597,0.787295818328857,0.0990005061030388,0.778935253620148,0.107183873653412,0.784627139568329,0.119469054043293,0.797626316547394,0.117038354277611,0.792597830295563,0.114405088126659,0.793352365493774,0.0454338900744915,0.808782279491425,0.0457124076783657,0.836811304092407,0.042192954570055,0.833226025104523,0.0417675785720348,0.825822472572327,0.0945340916514397,0.775942444801331,0.059162300080061,0.779558122158051,0.0662164017558098,0.773375034332275,0.086046889424324,0.774701774120331,0.0528981760144234,0.786328613758087,0.106302745640278,0.780074656009674,0.102641500532627, +0.775998115539551,0.110936276614666,0.788956820964813,0.119063936173916,0.791190028190613,0.0421169921755791,0.819224119186401,0.0417371951043606,0.812595427036285,0.0439349561929703,0.803135931491852,0.0411750972270966,0.796051442623138,0.0415143817663193,0.837251842021942,0.072237454354763,0.768260419368744,0.0817627757787704,0.771501362323761,0.0904018953442574,0.771673500537872,0.047793697565794,0.785837411880493,0.0556327141821384,0.780165791511536,0.0981092527508736,0.773147106170654,0.109356313943863,0.781573593616486,0.115721717476845,0.786931216716766,0.118365108966827,0.78612607717514,0.039063423871994,0.817289710044861,0.038354467600584,0.82299679517746,0.0415751487016678,0.807080745697021,0.0447654463350773,0.792729496955872,0.038283571600914,0.836127638816834,0.0377771779894829,0.829939484596252,0.0941998735070229,0.772154569625854,0.061972800642252,0.770139157772064,0.0682875663042068,0.765206813812256,0.0800207704305649,0.763616740703583,0.089348591864109,0.767085552215576,0.049454677850008,0.781862199306488,0.051824614405632,0.779517590999603,0.0550706163048744,0.772686302661896,0.106971189379692,0.771131694316864,0.1105767339468,0.775942444801331,0.103011168539524,0.76752108335495,0.112652957439423,0.782915532588959,0.120081789791584,0.786298274993896,0.0345514304935932,0.818489849567413,0.0365871451795101,0.814200699329376,0.0380506291985512,0.808134078979492,0.0369466841220856,0.802148461341858,0.0384152345359325,0.798811316490173,0.0414536148309708,0.790987491607666,0.0379847995936871,0.838127911090851,0.0732147991657257,0.764589011669159,0.0858038142323494,0.760659396648407,0.0940125063061714,0.764857411384583,0.0443198196589947,0.785563945770264,0.0455554276704788,0.782667398452759,0.0993043482303619,0.767126083374023,0.116775020956993,0.776747584342957,0.119013294577599,0.775805711746216,0.114172145724297,0.777623653411865,0.0302521251142025,0.816175639629364,0.0342172086238861,0.82175612449646,0.035032507032156,0.798836648464203,0.0385874100029469,0.79321563243866,0.0423246175050735,0.787002146244049, +0.0347691811621189,0.837039172649384,0.0339792035520077,0.833859026432037,0.0341766960918903,0.827559411525726,0.0591116584837437,0.765054941177368,0.0665708780288696,0.761849403381348,0.0696092545986176,0.759509861469269,0.0787699669599533,0.760791063308716,0.0902398526668549,0.759823858737946,0.049702811986208,0.777350246906281,0.0466289855539799,0.779330253601074,0.111538887023926,0.770159363746643,0.107001572847366,0.767880618572235,0.102479450404644,0.761393666267395,0.121130034327507,0.778717517852783,0.029765984043479,0.818302512168884,0.029482401907444,0.813025832176209,0.0337968990206718,0.804482936859131,0.0403699278831482,0.787650346755981,0.05493388697505,0.767207086086273,0.0742377191781998,0.759980797767639,0.0844112262129784,0.756820917129517,0.0981092527508736,0.762148201465607,0.0949088260531425,0.759671926498413,0.0427297353744507,0.783984005451202,0.0442590527236462,0.780707657337189,0.114415213465691,0.769283354282379,0.110450133681297,0.766123414039612,0.106485046446323,0.76497894525528,0.117063671350479,0.771678566932678,0.120112180709839,0.772215366363525,0.0231828298419714,0.816185772418976,0.030241996049881,0.825219869613647,0.0262515917420387,0.814990699291229,0.0300748851150274,0.809460818767548,0.0320650227367878,0.802310526371002,0.0308800563216209,0.835241436958313,0.0631375089287758,0.758876860141754,0.0579823963344097,0.76103413105011,0.0654568076133728,0.755797982215881,0.0736806839704514,0.755711913108826,0.0904373452067375,0.754704177379608,0.0940580815076828,0.756430983543396,0.0474493503570557,0.776347577571869,0.0460213124752045,0.776909649372101,0.0522753074765205,0.767414748668671,0.113797411322594,0.766391813755035,0.0987270548939705,0.757960319519043,0.106555946171284,0.761459529399872,0.0258971154689789,0.819553315639496,0.0256135333329439,0.812327027320862,0.0304445549845696,0.805232405662537,0.0293507389724255,0.836142838001251,0.0547920987010002,0.762350738048553,0.069204144179821,0.75132143497467,0.0859456062316895,0.752759635448456,0.049064751714468,0.774094104766846, +0.117823265492916,0.764477610588074,0.114415213465691,0.76346480846405,0.110769160091877,0.762462139129639,0.11767640709877,0.767885684967041,0.10290989279747,0.757231116294861,0.106910422444344,0.759018659591675,0.119783021509647,0.7676020860672,0.0217345356941223,0.815031170845032,0.0218358151614666,0.818074643611908,0.0263022314757109,0.829579949378967,0.0265351738780737,0.807946681976318,0.0281151309609413,0.805040001869202,0.0227574575692415,0.831104218959808,0.0567721091210842,0.757301986217499,0.0619424171745777,0.746890485286713,0.0653352737426758,0.747488021850586,0.0789269506931305,0.752906441688538,0.0727084055542946,0.744029343128204,0.0945340916514397,0.753519177436829,0.0898955017328262,0.751579701900482,0.0985143706202507,0.754851043224335,0.0498192831873894,0.76832115650177,0.0529234930872917,0.762178599834442,0.11774730682373,0.766184151172638,0.11771185696125,0.767034947872162,0.110870443284512,0.760239064693451,0.0178656671196222,0.818297445774078,0.0219370946288109,0.82037365436554,0.0222206767648458,0.824232399463654,0.0231119338423014,0.811152160167694,0.021987734362483,0.832836091518402,0.0579823963344097,0.752896308898926,0.0541540384292603,0.758775591850281,0.069057285785675,0.743735611438751,0.0859861224889755,0.748551428318024,0.0825021117925644,0.748131155967712,0.0514397509396076,0.764887809753418,0.118942402303219,0.761844336986542,0.118800610303879,0.766037344932556,0.115250773727894,0.761044263839722,0.101907223463058,0.7530837059021,0.106621772050858,0.756360113620758,0.110693201422691,0.75739312171936,0.0183214247226715,0.81960391998291,0.0214306991547346,0.81378036737442,0.0260642264038324,0.83621883392334,0.0147260092198849,0.826896071434021,0.0551313832402229,0.753073573112488,0.0629855915904045,0.740018665790558,0.0560682155191898,0.746809422969818,0.0776761546730995,0.744262278079987,0.0720906034111977,0.739446461200714,0.0944125577807426,0.750992298126221,0.0985548794269562,0.752633035182953,0.0901689529418945,0.748612225055695,0.0529386848211288,0.756643652915955,0.120537549257278, +0.763799071311951,0.118765160441399,0.766893148422241,0.116116710007191,0.759560525417328,0.114030353724957,0.758314788341522,0.0181593764573336,0.822272658348084,0.0173947177827358,0.825852870941162,0.0585090480744839,0.738200724124908,0.0577899627387524,0.742145538330078,0.0540325008332729,0.754861176013947,0.0655783414840698,0.739360332489014,0.0862545073032379,0.745553612709045,0.0817222595214844,0.741391003131866,0.12228462100029,0.76070499420166,0.121925078332424,0.75882625579834,0.119296878576279,0.766822218894959,0.0985042378306389,0.75040990114212,0.106576196849346,0.751868367195129,0.1110730022192,0.754055976867676,0.114845655858517,0.754805445671082,0.0147462654858828,0.821568787097931,0.014422170817852,0.824622333049774,0.0547262653708458,0.751144230365753,0.0603725872933865,0.734463512897491,0.0539514794945717,0.740828931331635,0.054316084831953,0.751584768295288,0.0774330869317055,0.739395797252655,0.0668544620275497,0.732767105102539,0.0942707657814026,0.74839448928833,0.0899461433291435,0.74433821439743,0.0534957237541676,0.750095963478088,0.12015775591135,0.76569801568985,0.102606050670147,0.749827563762665,0.119347520172596,0.754121840000153,0.0102494647726417,0.825326204299927,0.0543211475014687,0.74921989440918,0.0539818629622459,0.736428320407867,0.0556175224483013,0.734336912631989,0.0535058490931988,0.745366215705872,0.0730932652950287,0.733096241950989,0.085925355553627,0.740504801273346,0.0818539261817932,0.736018121242523,0.100519694387913,0.748956561088562,0.106343254446983,0.747675359249115,0.110141232609749,0.749366760253906,0.114212661981583,0.750668168067932,0.118912018835545,0.750804901123047,0.0571519061923027,0.732296109199524,0.0517081432044506,0.735197782516479,0.0599978528916836,0.730802237987518,0.0778280720114708,0.734985113143921,0.0687585100531578,0.729576766490936,0.0984333455562592,0.748080492019653,0.0941239073872566,0.745786547660828,0.0897081345319748,0.740565598011017,0.085783563554287,0.736625790596008,0.102525025606155,0.747832357883453,0.0994765236973763,0.748516023159027, +0.121808603405952,0.751422703266144,0.0525436960160732,0.732858240604401,0.0534754656255245,0.731101036071777,0.0774482786655426,0.731480836868286,0.0734983831644058,0.72957170009613,0.0946860089898109,0.742808938026428,0.0895511507987976,0.736757457256317,0.081185482442379,0.732108771800995,0.0853075459599495,0.733136773109436,0.101319804787636,0.745806813240051,0.110450133681297,0.745923280715942,0.114840589463711,0.747229754924774,0.123165749013424,0.749331295490265,0.126214250922203,0.75090616941452,0.0555516928434372,0.728538691997528,0.0612840987741947,0.727384090423584,0.0655580833554268,0.724639415740967,0.0977243930101395,0.745796680450439,0.100479185581207,0.74795389175415,0.0980029106140137,0.74430787563324,0.0928680449724197,0.737967789173126,0.0891764163970947,0.733151912689209,0.102373108267784,0.743766009807587,0.106414154171944,0.743062138557434,0.118547409772873,0.749240159988403,0.129961594939232,0.751888632774353,0.0506497733294964,0.72907543182373,0.0576684288680553,0.726781487464905,0.0524424165487289,0.726649820804596,0.0813120827078819,0.727591693401337,0.0768507272005081,0.727652490139008,0.0723184794187546,0.72645229101181,0.0998816415667534,0.746941089630127,0.0977800935506821,0.742606341838837,0.0927870273590088,0.735445916652679,0.0924477353692055,0.732777178287506,0.0851657539606094,0.73081237077713,0.0895308926701546,0.730574369430542,0.110738776624203,0.742297470569611,0.119124703109264,0.745756149291992,0.126513034105301,0.747169017791748,0.120613507926464,0.755337178707123,0.0540476962924004,0.724578619003296,0.0515714175999165,0.728452563285828,0.0612689070403576,0.722466945648193,0.084897369146347,0.727920889854431,0.0651934817433357,0.720208466053009,0.095364585518837,0.740302264690399,0.0927211940288544,0.730538904666901,0.0980181023478508,0.740104734897614,0.10266175866127,0.74072253704071,0.106485046446323,0.739633798599243,0.130589514970779,0.748885691165924,0.0557542517781258,0.7225581407547,0.0512574501335621,0.722902476787567,0.0787547752261162,0.724796414375305,0.0883003547787666, +0.726340889930725,0.0734376162290573,0.724781215190887,0.0687382593750954,0.720927536487579,0.0887814313173294,0.728331029415131,0.11093121021986,0.738175392150879,0.116724386811256,0.742986142635345,0.129981845617294,0.744956016540527,0.130741432309151,0.750546634197235,0.051946148276329,0.720583200454712,0.0596940144896507,0.718365132808685,0.0948733761906624,0.737972855567932,0.0930300951004028,0.727703094482422,0.0979218855500221,0.738448858261108,0.102454133331776,0.737486720085144,0.10666735470295,0.737537324428558,0.11397971957922,0.738940060138702,0.122137762606144,0.743897676467896,0.134235575795174,0.747194290161133,0.134265959262848,0.748981893062592,0.0537641122937202,0.719712197780609,0.0549743995070457,0.718091726303101,0.0618158169090748,0.716466188430786,0.0875154361128807,0.725090086460114,0.0739338845014572,0.721428871154785,0.093166820704937,0.726523220539093,0.0969141572713852,0.73591685295105,0.106728121638298,0.735111713409424,0.110728651285172,0.735167384147644,0.122446663677692,0.741937935352325,0.13534964621067,0.744945883750916,0.050624456256628,0.71679025888443,0.0563011579215527,0.716562390327454,0.0579773299396038,0.714865982532501,0.0650364980101585,0.718349993228912,0.0930756703019142,0.72565221786499,0.0811145827174187,0.722755610942841,0.0705005154013634,0.7202388048172,0.10276810079813,0.734904050827026,0.114617772400379,0.734316647052765,0.120780616998672,0.737658858299255,0.131095916032791,0.742808938026428,0.138175338506699,0.745796680450439,0.0520474277436733,0.715645790100098,0.0850644782185555,0.722421407699585,0.0686876177787781,0.715600252151489,0.0759645327925682,0.719180464744568,0.10710284858942,0.732417643070221,0.103239044547081,0.731268167495728,0.110657751560211,0.731916308403015,0.123591117560863,0.740889668464661,0.126837119460106,0.744829416275024,0.133941859006882,0.741026401519775,0.138631090521812,0.744049608707428,0.0795346274971962,0.718319594860077,0.0670114457607269,0.716425657272339,0.100301951169968,0.731825172901154,0.114779822528362,0.732316374778748,0.126163616776466, +0.740089595317841,0.142023950815201,0.740889668464661,0.0815399587154388,0.71654212474823,0.0723944380879402,0.715666055679321,0.0642414540052414,0.713812649250031,0.0767190605401993,0.716000318527222,0.0987270548939705,0.73073136806488,0.107366181910038,0.728432297706604,0.102033823728561,0.728037357330322,0.111447736620903,0.729941368103027,0.126568734645844,0.737567722797394,0.126751035451889,0.741775870323181,0.138393089175224,0.739775598049164,0.142104968428612,0.742545604705811,0.0865431576967239,0.721312403678894,0.0699384137988091,0.712739109992981,0.114749439060688,0.730179369449615,0.120917350053787,0.732898712158203,0.130174279212952,0.739871799945831,0.135045811533928,0.738853991031647,0.146287813782692,0.739294528961182,0.146419480443001,0.74118846654892,0.0790586173534393,0.713908851146698,0.0890042409300804,0.722897410392761,0.0650719478726387,0.712055444717407,0.0745820701122284,0.713503777980804,0.111316069960594,0.726923286914825,0.130923748016357,0.74077320098877,0.138357639312744,0.737329721450806,0.146394148468971,0.737294256687164,0.119225986301899,0.729870498180389,0.134473577141762,0.737436056137085,0.142510086297989,0.735957384109497,0.150744095444679,0.7383171916008,0.126639634370804,0.735749781131744,0.114759564399719,0.728675365447998,0.137982904911041,0.735126912593842,0.150450393557549,0.736235916614532,0.115336857736111,0.726548552513123,0.14244931936264,0.733678579330444,0.15443067252636,0.736904323101044,0.153367236256599,0.732807576656342,0.13903620839119,0.733055710792542,0.146581515669823,0.732483506202698,0.154896557331085,0.734990179538727,0.113240376114845,0.722406208515167,0.142034083604813,0.731268167495728,0.158512219786644,0.732706308364868,0.146571397781372,0.729981899261475,0.137917071580887,0.732285976409912,0.154501557350159,0.730387032032013,0.159221172332764,0.734458446502686,0.150136426091194,0.727308094501495,0.134979978203774,0.735572516918182,0.142530351877213,0.729095697402954,0.158431202173233,0.729318499565125,0.162836849689484,0.732640504837036,0.146085247397423, +0.727465093135834,0.138276621699333,0.731328904628754,0.15670944750309,0.727206826210022,0.163115367293358,0.730554103851318,0.146520748734474,0.725120484828949,0.142348051071167,0.726978957653046,0.154531940817833,0.725100219249725,0.162588715553284,0.727799355983734,0.150131359696388,0.723667144775391,0.139005824923515,0.729829967021942,0.154881358146667,0.722360610961914,0.162598833441734,0.725135684013367,0.166817128658295,0.728589296340942,0.146399214863777,0.722922742366791,0.166827246546745,0.726528286933899,0.142894953489304,0.724953353404999,0.150541543960571,0.72137314081192,0.165697991847992,0.722082138061523,0.166806995868683,0.724274814128876,0.170108705759048,0.727070093154907,0.146475180983543,0.721033871173859,0.158309668302536,0.717281460762024,0.154526874423027,0.720137536525726,0.170706242322922,0.725616753101349,0.150597244501114,0.718982994556427,0.162583649158478,0.715372383594513,0.171313926577568,0.723515212535858,0.146860033273697,0.719271600246429,0.154045805335045,0.717747330665588,0.158137485384941,0.713924050331116,0.166614562273026,0.71179211139679,0.170777142047882,0.720669269561768,0.150744095444679,0.715924322605133,0.15472437441349,0.714779853820801,0.162679865956306,0.712769508361816,0.171151876449585,0.717276394367218,0.174980238080025,0.721595942974091,0.158537536859512,0.711766839027405,0.154511690139771,0.712941646575928,0.167551398277283,0.709199368953705,0.162229165434837,0.710359036922455,0.174929589033127,0.7193323969841,0.178342700004578,0.713240444660187,0.175263822078705,0.716871321201324,0.178874418139458,0.719342529773712,0.154663607478142,0.710667908191681,0.158603370189667,0.709518432617188,0.16260389983654,0.70823723077774,0.171273410320282,0.705816686153412,0.179102301597595,0.718142330646515,0.150420010089874,0.713108777999878,0.166756361722946,0.70710289478302,0.179071918129921,0.710485637187958,0.178889617323875,0.715534389019012,0.158633753657341,0.706809222698212,0.162867233157158,0.705517888069153,0.166229709982872,0.704854488372803,0.183421865105629,0.706100225448608, +0.183062314987183,0.711893439292908,0.18360923230648,0.713989913463593,0.179628953337669,0.717043459415436,0.170903742313385,0.702373147010803,0.175856307148933,0.70155280828476,0.182890146970749,0.709457635879517,0.182890146970749,0.71587872505188,0.162512749433517,0.703147947788239,0.166888013482094,0.701887011528015,0.186809659004211,0.702150344848633,0.187326177954674,0.708201766014099,0.187467977404594,0.711584508419037,0.187356561422348,0.710151433944702,0.158431202173233,0.703588485717773,0.170523941516876,0.698377668857574,0.175354972481728,0.699957668781281,0.18715400993824,0.705978691577911,0.18509803712368,0.697050929069519,0.154471173882484,0.707548558712006,0.162776082754135,0.699841201305389,0.166528478264809,0.698954999446869,0.191033005714417,0.704353153705597,0.191114023327827,0.700033605098724,0.191427990794182,0.706900358200073,0.190800055861473,0.708606898784637,0.175598040223122,0.698083996772766,0.166776612401009,0.695212721824646,0.192010343074799,0.702231347560883,0.190931722521782,0.697552263736725,0.174894154071808,0.696291327476501,0.170979708433151,0.693688452243805,0.187994629144669,0.693506181240082,0.195408269762993,0.702763080596924,0.194800585508347,0.704586088657379,0.195727303624153,0.698934733867645,0.195418402552605,0.701137542724609,0.162269681692123,0.696909129619598,0.175106838345528,0.693141579627991,0.179628953337669,0.693865716457367,0.170858159661293,0.691156506538391,0.195175319910049,0.696463525295258,0.158289402723312,0.70080840587616,0.166563928127289,0.691450178623199,0.188318714499474,0.691541314125061,0.195023402571678,0.694113850593567,0.199672132730484,0.696954727172852,0.198370680212975,0.699805736541748,0.178697183728218,0.690234839916229,0.170387223362923,0.688133299350739,0.174823254346848,0.687956035137177,0.193646013736725,0.68764716386795,0.184242218732834,0.691004574298859,0.19936828315258,0.69487851858139,0.199013814330101,0.698757469654083,0.199277132749558,0.693774521350861,0.199180915951729,0.692670583724976,0.202933311462402,0.693202316761017,0.179598569869995, +0.686087429523468,0.184905603528023,0.68869537115097,0.174767553806305,0.683049082756042,0.203186511993408,0.692447781562805,0.199206247925758,0.685996294021606,0.186257690191269,0.68579375743866,0.178727567195892,0.683271884918213,0.19319024682045,0.684973359107971,0.202669993042946,0.69087290763855,0.184763818979263,0.683079481124878,0.178555399179459,0.678709268569946,0.19733764231205,0.680643677711487,0.203378945589066,0.685925424098969,0.190789937973022,0.683185815811157,0.185391739010811,0.680041074752808,0.174838438630104,0.678511738777161,0.205586835741997,0.689500570297241,0.202882677316666,0.682041347026825,0.206893339753151,0.686219096183777,0.170969575643539,0.681226015090942,0.179294735193253,0.675260722637177,0.182647079229355,0.677974998950958,0.195388004183769,0.67789900302887,0.20394104719162,0.677473664283752,0.206943973898888,0.683727622032166,0.190870955586433,0.677195131778717,0.171080976724625,0.684406220912933,0.175081506371498,0.674642860889435,0.186946377158165,0.675908863544464,0.206650272011757,0.680648744106293,0.208599895238876,0.68380868434906,0.167131096124649,0.686305224895477,0.183310449123383,0.672946453094482,0.176646277308464,0.672141313552856,0.202173724770546,0.672693252563477,0.195225968956947,0.673893451690674,0.208098560571671,0.67765086889267,0.209010079503059,0.680750012397766,0.191179856657982,0.67263251543045,0.170918941497803,0.673594653606415,0.186900809407234,0.672095715999603,0.205971702933311,0.675944328308105,0.209850698709488,0.67737740278244,0.179163068532944,0.666302561759949,0.170969575643539,0.676293730735779,0.172600165009499,0.669751107692719,0.186855226755142,0.665669560432434,0.208554312586784,0.674561858177185,0.195393070578575,0.668171167373657,0.191144406795502,0.666900098323822,0.182728096842766,0.664636492729187,0.166295528411865,0.674931526184082,0.20698955655098,0.671442449092865,0.200335502624512,0.669452309608459,0.210498884320259,0.673326253890991,0.181143075227737,0.662271618843079,0.172878682613373,0.667102634906769,0.166639879345894,0.67787367105484, +0.162441864609718,0.674349188804626,0.194395467638969,0.66443395614624,0.188921332359314,0.661041080951691,0.209729164838791,0.671482980251312,0.201191321015358,0.666819036006927,0.162755817174912,0.676673531532288,0.206483155488968,0.668242037296295,0.20902019739151,0.668312907218933,0.180165737867355,0.660089075565338,0.166827246546745,0.668829441070557,0.157848834991455,0.677225530147552,0.158542603254318,0.681464076042175,0.199130281805992,0.659445941448212,0.199388548731804,0.66377055644989,0.206336304545403,0.664970695972443,0.193230763077736,0.657217800617218,0.162300065159798,0.671842515468597,0.158102035522461,0.673903524875641,0.208184644579887,0.664925158023834,0.203115627169609,0.664752960205078,0.170529007911682,0.663679420948029,0.187042593955994,0.655106127262115,0.161743029952049,0.668829441070557,0.154856041073799,0.680988013744354,0.154552206397057,0.673711121082306,0.197940245270729,0.656625330448151,0.203100427985191,0.661431014537811,0.205809652805328,0.661603152751923,0.206781938672066,0.661739885807037,0.176114559173584,0.659587740898132,0.166391745209694,0.666408896446228,0.191433057188988,0.653247654438019,0.157975435256958,0.671199381351471,0.153022885322571,0.677493929862976,0.154714241623878,0.683844089508057,0.195514604449272,0.652847588062286,0.20085708796978,0.65534919500351,0.203075110912323,0.657820403575897,0.170534074306488,0.66087394952774,0.165895476937294,0.663228690624237,0.178474366664886,0.655516266822815,0.187255278229713,0.652315855026245,0.157529816031456,0.668809175491333,0.162948250770569,0.66401869058609,0.150652945041656,0.679863810539246,0.159028738737106,0.683099687099457,0.149923741817474,0.683044016361237,0.151493564248085,0.674151659011841,0.155048474669456,0.669497907161713,0.198436513543129,0.65333878993988,0.204888015985489,0.658767342567444,0.182717978954315,0.65212345123291,0.190227836370468,0.648892641067505,0.193251013755798,0.65049284696579,0.158947721123695,0.666186094284058,0.150009825825691,0.677291333675385,0.154673740267754,0.686127960681915,0.151209980249405, +0.685616493225098,0.153225436806679,0.671022176742554,0.197281926870346,0.650867581367493,0.199094831943512,0.651647448539734,0.202720627188683,0.655182063579559,0.170179590582848,0.657855868339539,0.166047394275665,0.659916877746582,0.16285203397274,0.661137282848358,0.177745163440704,0.652999520301819,0.186748892068863,0.649424374103546,0.19432458281517,0.649181246757507,0.15624862909317,0.667001366615295,0.160588443279266,0.662909686565399,0.147963985800743,0.679873943328857,0.147877901792526,0.686750829219818,0.200948238372803,0.653004586696625,0.178454115986824,0.650482714176178,0.187943980097771,0.647662103176117,0.183011680841446,0.649231910705566,0.158026084303856,0.663988292217255,0.145680129528046,0.684983491897583,0.150956779718399,0.6889688372612,0.166918396949768,0.657349467277527,0.170093506574631,0.655288398265839,0.163859769701958,0.658387541770935,0.161388546228409,0.66015487909317,0.174752354621887,0.65212345123291,0.183558583259583,0.647970974445343,0.154466107487679,0.688963770866394,0.145356044173241,0.68839156627655,0.147543668746948,0.690300643444061,0.171349376440048,0.653485655784607,0.17477260529995,0.650751113891602,0.179907470941544,0.648639440536499,0.150308594107628,0.691232442855835,0.143097519874573,0.688006699085236,0.16774383187294,0.654812395572662,0.171648144721985,0.65212345123291,0.151002362370491,0.692528784275055,0.145021826028824,0.690822243690491,0.147639885544777,0.692741513252258,0.142753168940544,0.691278040409088,0.147675335407257,0.694974720478058,0.144961059093475,0.69340991973877,0.140494629740715,0.691374242305756,0.141704916954041,0.694053053855896,0.144819259643555,0.695688724517822,0.137810736894608,0.696245789527893,0.146541014313698,0.697354793548584,0.142682269215584,0.696898996829987,0.13889442384243,0.697795331478119,0.136534616351128,0.699527204036713,0.14187203347683,0.699820935726166,0.13804367184639,0.702084541320801,0.14670304954052,0.699537336826324,0.135612979531288,0.702859282493591,0.142591118812561,0.703299880027771,0.139274224638939,0.705993890762329, +0.134974911808968,0.705740690231323,0.143472239375114,0.704788684844971,0.138990640640259,0.70851069688797,0.146834716200829,0.701036274433136,0.14294558763504,0.7063028216362,0.135086327791214,0.708682835102081,0.142580986022949,0.708135962486267,0.132392287254334,0.70544695854187,0.138463988900185,0.710424840450287,0.132240369915962,0.708181500434875,0.133116438984871,0.702363014221191,0.13499516248703,0.710870504379272,0.139051407575607,0.711675643920898,0.131592184305191,0.71022230386734,0.134924277663231,0.713073313236237,0.131632700562477,0.712885975837708,0.134787544608116,0.715119183063507,0.138980507850647,0.713189780712128,0.130589514970779,0.713994979858398,0.138914674520493,0.714648187160492,0.135248363018036,0.717058658599854,0.64988899230957,0.667695105075836,0.646031498908997,0.668236970901489,0.649832010269165,0.663513541221619,0.6495281457901,0.670817077159882,0.645641565322876,0.66103857755661,0.653856575489044,0.66385155916214,0.645811200141907,0.673833906650543,0.65289443731308,0.667524218559265,0.642422139644623,0.665283441543579,0.650266230106354,0.660382747650146,0.654226243495941,0.660439729690552,0.648911595344543,0.674636542797089,0.641977787017822,0.67108416557312,0.637541770935059,0.660405576229095,0.646275818347931,0.657803952693939,0.65725576877594,0.659018039703369,0.652160167694092,0.670405626296997,0.645604848861694,0.677249550819397,0.641184031963348,0.675817728042603,0.638474762439728,0.664939045906067,0.636631488800049,0.655664443969727,0.650119364261627,0.656516432762146,0.653824925422668,0.657446920871735,0.638567209243774,0.671374082565308,0.634076714515686,0.66437441110611,0.63128650188446,0.660167574882507,0.636849284172058,0.652738690376282,0.646266937255859,0.653400838375092,0.657676100730896,0.6569544672966,0.641629636287689,0.67903083562851,0.632753789424896,0.676202595233917,0.633676707744598,0.670999348163605,0.631432056427002,0.652567803859711,0.650330781936646,0.649444580078125,0.654430091381073,0.650680184364319,0.637153089046478,0.680209457874298,0.645049095153809, +0.682159066200256,0.629924297332764,0.667476117610931,0.628614008426666,0.663479387760162,0.628148078918457,0.655972063541412,0.631706774234772,0.648628056049347,0.637951910495758,0.648514091968536,0.658454656600952,0.652403235435486,0.64130049943924,0.682133734226227,0.65021938085556,0.675161957740784,0.631978988647461,0.679846107959747,0.627574622631073,0.670082807540894,0.627292275428772,0.660221993923187,0.627537906169891,0.652493119239807,0.628288626670837,0.649542093276978,0.655384659767151,0.64513772726059,0.649420559406281,0.645374417304993,0.658372342586517,0.650159895420074,0.65794575214386,0.655040264129639,0.637524008750916,0.685174643993378,0.64105486869812,0.685498774051666,0.647783637046814,0.680487990379334,0.6280797123909,0.679089069366455,0.634041309356689,0.683774471282959,0.624343812465668,0.665984749794006,0.623820960521698,0.662309587001801,0.62402731180191,0.653072953224182,0.623772859573364,0.65894079208374,0.632647454738617,0.646315097808838,0.628189861774445,0.647221505641937,0.657876074314117,0.646955668926239,0.662572920322418,0.645980834960938,0.661915898323059,0.651817083358765,0.644949078559875,0.685087323188782,0.629544496536255,0.683125019073486,0.623977899551392,0.677093863487244,0.624056398868561,0.67078161239624,0.623986780643463,0.650347232818604,0.624247550964355,0.647953271865845,0.662909686565399,0.6422398686409,0.660300493240356,0.641409337520599,0.644765496253967,0.64397805929184,0.6668621301651,0.64511114358902,0.633109509944916,0.687666118144989,0.640195250511169,0.688677668571472,0.621361136436462,0.679909408092499,0.620376169681549,0.666375994682312,0.620276153087616,0.663551568984985,0.620166003704071,0.659692823886871,0.620359718799591,0.655413746833801,0.620181202888489,0.650337100028992,0.663390755653381,0.643956542015076,0.649034440517426,0.642528474330902,0.639929413795471,0.64312732219696,0.636156737804413,0.691178023815155,0.641272604465485,0.690308272838593,0.624203264713287,0.684455573558807,0.627811372280121,0.686703979969025,0.619924247264862,0.675479710102081, +0.621063590049744,0.672231197357178,0.62004828453064,0.669377624988556,0.621339619159698,0.653384387493134,0.620283782482147,0.648463487625122,0.667898952960968,0.640292763710022,0.665873348712921,0.639768660068512,0.655785977840424,0.63975977897644,0.631483972072601,0.690934956073761,0.620234370231628,0.683566868305206,0.616727590560913,0.680061340332031,0.616751670837402,0.66790783405304,0.616988360881805,0.664352893829346,0.618938028812408,0.651698052883148,0.648579955101013,0.640913069248199,0.632157504558563,0.695893824100494,0.636515021324158,0.694716453552246,0.619869768619537,0.690434873104095,0.616525053977966,0.682778179645538,0.623739898204803,0.692616164684296,0.630563616752625,0.693706214427948,0.61704409122467,0.672589480876923,0.616746604442596,0.67729514837265,0.616674423217773,0.661376595497131,0.616723775863647,0.647511422634125,0.637838006019592,0.642389237880707,0.639748394489288,0.694049298763275,0.616147756576538,0.686396360397339,0.627625226974487,0.694027721881866,0.613062560558319,0.680099308490753,0.612900495529175,0.682880699634552,0.613487899303436,0.671813428401947,0.635713636875153,0.699251234531403,0.619174778461456,0.698072612285614,0.616504788398743,0.691224813461304,0.61268275976181,0.68634569644928,0.627058088779449,0.700918555259705,0.613133430480957,0.67734956741333,0.612821996212006,0.674873292446136,0.630978882312775,0.699209451675415,0.62322336435318,0.698239684104919,0.611894011497498,0.695224106311798,0.608949363231659,0.682762980461121,0.609555780887604,0.680143594741821,0.609210133552551,0.685606360435486,0.631439685821533,0.701778173446655,0.62220424413681,0.702828943729401,0.615789473056793,0.697030663490295,0.608780980110168,0.691078007221222,0.608965814113617,0.688333332538605,0.634452760219574,0.70447850227356,0.615674316883087,0.701327443122864,0.611923158168793,0.699187934398651,0.608269512653351,0.69564950466156,0.626401007175446,0.704807639122009,0.604550004005432,0.686440646648407,0.604103147983551,0.689871490001678,0.630356013774872,0.704872250556946,0.61615788936615, +0.704467117786407,0.608779728412628,0.69884866476059,0.604190468788147,0.695474803447723,0.605232417583466,0.691091895103455,0.621285140514374,0.70461905002594,0.63191819190979,0.707373797893524,0.612803041934967,0.701947808265686,0.608588516712189,0.701719880104065,0.605526089668274,0.699367702007294,0.628275990486145,0.707749843597412,0.620210349559784,0.70674592256546,0.601496458053589,0.693855583667755,0.63470721244812,0.707719445228577,0.611978888511658,0.7047278881073,0.601528108119965,0.698938548564911,0.631190299987793,0.70994508266449,0.615681886672974,0.707237124443054,0.604729771614075,0.701888263225555,0.601815462112427,0.6961989402771,0.627072036266327,0.710412204265594,0.634651482105255,0.710660338401794,0.608539164066315,0.70486968755722,0.612690329551697,0.708525896072388,0.62021666765213,0.710518538951874,0.595564007759094,0.696239411830902,0.631045937538147,0.713193595409393,0.61544132232666,0.711071789264679,0.597832679748535,0.698999285697937,0.598079562187195,0.693730235099792,0.626856803894043,0.712906181812286,0.634873032569885,0.714898884296417,0.611791491508484,0.711416125297546,0.619571030139923,0.711793422698975,0.59471583366394,0.693556785583496,0.623134791851044,0.714278519153595,0.630978882312775,0.716767489910126,0.608236610889435,0.708967685699463,0.615027368068695,0.717914462089539,0.61927604675293,0.719296932220459,0.598485946655273,0.690980494022369,0.592223048210144,0.696714162826538,0.627363204956055,0.718904495239258,0.633524775505066,0.718552529811859,0.611623108386993,0.715888857841492,0.595039904117584,0.690848827362061,0.5953728556633,0.699411988258362,0.591231822967529,0.693609952926636,0.623284161090851,0.719539999961853,0.636064350605011,0.717540979385376,0.630681335926056,0.720728754997253,0.612915694713593,0.71913743019104,0.616568088531494,0.72070723772049,0.599122703075409,0.685048043727875,0.588471949100494,0.695776104927063,0.629059612751007,0.724349498748779,0.632887959480286,0.721235156059265,0.618916511535645,0.724344432353973,0.62261825799942,0.723902583122253, +0.588825166225433,0.691160261631012,0.596052706241608,0.683522582054138,0.590827941894531,0.698952436447144,0.588295936584473,0.693341553211212,0.635865569114685,0.721855521202087,0.615070402622223,0.723325312137604,0.599964618682861,0.677440702915192,0.594499349594116,0.700970470905304,0.586769163608551,0.697283864021301,0.584282755851746,0.693287134170532,0.622925877571106,0.726776421070099,0.638031721115112,0.717679023742676,0.636087119579315,0.724170982837677,0.632192969322205,0.726481437683105,0.611676275730133,0.720984518527985,0.615232467651367,0.726773858070374,0.592896580696106,0.683685839176178,0.596489429473877,0.67748886346817,0.59128874540329,0.703820168972015,0.628591179847717,0.727366387844086,0.638841927051544,0.721375703811646,0.639401495456696,0.703751802444458,0.611762404441834,0.725276231765747,0.608579695224762,0.716057240962982,0.619151949882507,0.729328632354736,0.586455225944519,0.686709046363831,0.592658579349518,0.679547369480133,0.600098788738251,0.67412257194519,0.594882905483246,0.707037091255188,0.585175275802612,0.700264036655426,0.584076404571533,0.697301626205444,0.62438428401947,0.730190813541412,0.63641631603241,0.727862656116486,0.638910293579102,0.724398851394653,0.632424592971802,0.73100483417511,0.615379333496094,0.729427397251129,0.580405056476593,0.688397884368896,0.589440405368805,0.682490766048431,0.593899250030518,0.676782429218292,0.596835076808929,0.673508584499359,0.603623330593109,0.674826443195343,0.591121673583984,0.706642091274261,0.580754458904266,0.695381104946136,0.628567159175873,0.732372105121613,0.625121116638184,0.735815584659576,0.617927730083466,0.732101142406464,0.578162968158722,0.692117393016815,0.580393671989441,0.683946669101715,0.585901975631714,0.681686878204346,0.589894890785217,0.6778724193573,0.60089510679245,0.667252063751221,0.603644847869873,0.671555161476135,0.580441772937775,0.698666334152222,0.585042357444763,0.703889846801758,0.639696478843689,0.728804528713226,0.636496067047119,0.734269797801971,0.632428407669067,0.737452507019043,0.621359825134277, +0.73605740070343,0.614329814910889,0.731875836849213,0.577279329299927,0.686749577522278,0.590512692928314,0.673071801662445,0.593851149082184,0.671136081218719,0.596253991127014,0.669006705284119,0.582857251167297,0.701100826263428,0.591460943222046,0.710635006427765,0.578009784221649,0.696372389793396,0.628859579563141,0.742242991924286,0.622024476528168,0.739623665809631,0.617861926555634,0.735877633094788,0.611477553844452,0.727725923061371,0.582415461540222,0.680298089981079,0.577410995960236,0.682570517063141,0.586441278457642,0.676873564720154,0.604271531105042,0.664478242397308,0.600941956043243,0.663800954818726,0.58008599281311,0.700627386569977,0.58781361579895,0.709189236164093,0.580048024654388,0.702978312969208,0.577145099639893,0.699575304985046,0.576363980770111,0.698040962219238,0.639896512031555,0.733030378818512,0.63619726896286,0.738048791885376,0.632784187793732,0.741597354412079,0.614501953125,0.734776198863983,0.579516291618347,0.680480360984802,0.587329983711243,0.671337366104126,0.591641962528229,0.668577551841736,0.606985807418823,0.671442449092865,0.594534754753113,0.663210988044739,0.57748818397522,0.701657891273499,0.583664953708649,0.706155955791473,0.592068612575531,0.713256895542145,0.576146245002747,0.693465650081635,0.620586335659027,0.74265444278717,0.641972720623016,0.731164336204529,0.640295267105103,0.737427175045013,0.632420837879181,0.746877789497375,0.617466926574707,0.741563200950623,0.614072799682617,0.738039910793304,0.581905245780945,0.675546824932098,0.578113615512848,0.678500354290009,0.607750475406647,0.661628484725952,0.604347467422485,0.660192847251892,0.59965193271637,0.657320320606232,0.583971321582794,0.71101987361908,0.5948765873909,0.712312459945679,0.586719810962677,0.711335122585297,0.580573439598084,0.705745756626129,0.575627207756042,0.70368093252182,0.576177895069122,0.688829600811005,0.622690439224243,0.745454847812653,0.641695499420166,0.735002815723419,0.64006233215332,0.740988433361053,0.636436522006989,0.742040455341339,0.6361985206604,0.746922135353088, +0.627358138561249,0.747422218322754,0.583058536052704,0.669172525405884,0.58786803483963,0.666725397109985,0.592369914054871,0.660758793354034,0.576755166053772,0.704412698745728,0.598007380962372,0.717154860496521,0.588151633739471,0.713975965976715,0.57748818397522,0.706534445285797,0.617865741252899,0.745595335960388,0.643326044082642,0.737344920635223,0.643245041370392,0.740745365619659,0.636556804180145,0.752990007400513,0.63222461938858,0.751832902431488,0.614307045936584,0.742797553539276,0.578268051147461,0.674116253852844,0.580092370510101,0.672045052051544,0.588414967060089,0.659707963466644,0.607612431049347,0.658115386962891,0.601842045783997,0.655787229537964,0.592391431331635,0.656401216983795,0.58036071062088,0.710334956645966,0.598461866378784,0.714451968669891,0.594034731388092,0.71698272228241,0.577911019325256,0.708203077316284,0.614191830158234,0.745537102222443,0.621438324451447,0.749459147453308,0.617497324943542,0.749821245670319,0.640072464942932,0.745804250240326,0.643310904502869,0.745219349861145,0.639918029308319,0.749436378479004,0.625732600688934,0.7510986328125,0.578640222549438,0.669434607028961,0.584730923175812,0.665056824684143,0.604605734348297,0.655012428760529,0.598851799964905,0.655170679092407,0.580106258392334,0.712963163852692,0.583095252513886,0.716878890991211,0.593714416027069,0.719913482666016,0.587242662906647,0.718993067741394,0.613820850849152,0.749659180641174,0.645145297050476,0.743182361125946,0.640039563179016,0.75496119260788,0.631567537784576,0.760987281799316,0.626904904842377,0.754037022590637,0.580930411815643,0.664770662784576,0.584318220615387,0.66020679473877,0.607579529285431,0.655274510383606,0.600316524505615,0.651241064071655,0.590562105178833,0.652929902076721,0.577888250350952,0.713468313217163,0.577302098274231,0.711433887481689,0.598401129245758,0.721213638782501,0.610422968864441,0.748272955417633,0.620921850204468,0.754786431789398,0.617235243320465,0.754938364028931,0.613634765148163,0.75496119260788,0.643913507461548,0.749871909618378,0.64583021402359, +0.749017357826233,0.643585622310638,0.754180073738098,0.639737010002136,0.761883616447449,0.635588347911835,0.76200008392334,0.578075587749481,0.664618790149689,0.607920110225677,0.651723384857178,0.609960854053497,0.655750513076782,0.596269190311432,0.650095343589783,0.604738652706146,0.648059606552124,0.579292237758636,0.716050922870636,0.584548652172089,0.720241367816925,0.595022201538086,0.722627758979797,0.601476192474365,0.720752835273743,0.610233068466187,0.752345621585846,0.643904626369476,0.757462739944458,0.628107607364655,0.761055648326874,0.633752644062042,0.764780223369598,0.62435394525528,0.758860409259796,0.578918755054474,0.662756502628326,0.581371009349823,0.659862458705902,0.584699273109436,0.653938889503479,0.600821673870087,0.646675884723663,0.590149402618408,0.649215459823608,0.580424010753632,0.718689262866974,0.576795697212219,0.717420756816864,0.59703254699707,0.726406753063202,0.602338314056396,0.723927915096283,0.616832673549652,0.761040449142456,0.613467693328857,0.759199678897858,0.610038101673126,0.756571531295776,0.645852982997894,0.751107513904572,0.646275818347931,0.75421929359436,0.646649301052094,0.756832301616669,0.642803192138672,0.76586639881134,0.64654928445816,0.761908948421478,0.620442032814026,0.761010050773621,0.578484535217285,0.660346031188965,0.585986793041229,0.649400293827057,0.611462354660034,0.653028607368469,0.607966959476471,0.647378504276276,0.596250176429749,0.644317328929901,0.604469001293182,0.644850313663483,0.590060770511627,0.64558207988739,0.577555298805237,0.718841195106506,0.583428204059601,0.721423804759979,0.600758373737335,0.725781321525574,0.609987437725067,0.759176909923553,0.647039234638214,0.759460508823395,0.623948812484741,0.76426112651825,0.627851843833923,0.764737129211426,0.642386674880981,0.769444108009338,0.580627858638763,0.653986990451813,0.582141995429993,0.650220632553101,0.61077743768692,0.647674739360809,0.601388871669769,0.637203752994537,0.579220056533813,0.721247851848602,0.592811763286591,0.728287994861603,0.601744592189789,0.728441178798676, +0.605176687240601,0.729136228561401,0.616597175598145,0.765046060085297,0.613216996192932,0.762015283107758,0.609460830688477,0.762417852878571,0.650249779224396,0.760929048061371,0.646641671657562,0.76517516374588,0.650180160999298,0.763501524925232,0.633704543113709,0.767765402793884,0.646637916564941,0.769411206245422,0.619955897331238,0.765311896800995,0.578960537910461,0.656965851783752,0.582325577735901,0.646860718727112,0.608022630214691,0.644023656845093,0.592490196228027,0.639972448348999,0.597187042236328,0.635631382465363,0.604633569717407,0.639500260353088,0.585614621639252,0.64508581161499,0.576452612876892,0.722851812839508,0.586227357387543,0.726076304912567,0.579623937606812,0.723467111587524,0.597541511058807,0.730116069316864,0.598751783370972,0.72835385799408,0.604660153388977,0.725695252418518,0.612829625606537,0.764878928661346,0.627630293369293,0.76762866973877,0.642379105091095,0.771183550357819,0.623715877532959,0.768785774707794,0.577398300170898,0.658677458763123,0.578107237815857,0.65527069568634,0.578989684581757,0.651557564735413,0.579322636127472,0.64781779050827,0.586205840110779,0.64108020067215,0.601160943508148,0.634147644042969,0.60423731803894,0.634283065795898,0.587059080600739,0.728514611721039,0.582877516746521,0.726019322872162,0.577286899089813,0.725326836109161,0.594199299812317,0.731182038784027,0.601607859134674,0.730707287788391,0.615727484226227,0.76821357011795,0.611526906490326,0.768226206302643,0.609696269035339,0.765046060085297,0.650729596614838,0.767018496990204,0.629319131374359,0.769666910171509,0.647250652313232,0.77262681722641,0.636880934238434,0.771469712257385,0.619598865509033,0.769132673740387,0.581955909729004,0.643697023391724,0.607993543148041,0.638863444328308,0.58670711517334,0.63696700334549,0.59631472826004,0.633667826652527,0.590803921222687,0.729522347450256,0.579922676086426,0.727419555187225,0.597422480583191,0.733921647071838,0.604708254337311,0.731294751167297,0.608087182044983,0.768527507781982,0.60666298866272,0.766390562057495,0.65096378326416, +0.770368278026581,0.654597163200378,0.767648935317993,0.646696150302887,0.774708092212677,0.619725465774536,0.772143185138702,0.578612387180328,0.645255446434021,0.582914233207703,0.637974739074707,0.596798360347748,0.631596684455872,0.601026773452759,0.632203042507172,0.608113765716553,0.636650502681732,0.586751461029053,0.731302320957184,0.582542061805725,0.730197131633759,0.577047646045685,0.729343831539154,0.600752055644989,0.733113944530487,0.594830989837646,0.738684296607971,0.590327858924866,0.732755661010742,0.604691803455353,0.735096514225006,0.615754067897797,0.773469984531403,0.654745280742645,0.769363105297089,0.624008297920227,0.772214114665985,0.629059612751007,0.772986352443695,0.65499472618103,0.77461189031601,0.641982853412628,0.778739035129547,0.57955938577652,0.641987919807434,0.587130010128021,0.633789360523224,0.592555999755859,0.631585240364075,0.578892171382904,0.730723738670349,0.600817859172821,0.7370246052742,0.61201810836792,0.770527780056,0.654982030391693,0.771920382976532,0.652248799800873,0.776776731014252,0.647116422653198,0.780402541160584,0.5822913646698,0.635083198547363,0.594070136547089,0.628241777420044,0.580416440963745,0.638344407081604,0.586152613162994,0.735383868217468,0.582601547241211,0.733936846256256,0.579677104949951,0.732935428619385,0.576684296131134,0.735619366168976,0.597380697727203,0.74135684967041,0.58944296836853,0.739945232868195,0.658904075622559,0.772798955440521,0.633471608161926,0.776404500007629,0.659073710441589,0.774642288684845,0.655137777328491,0.777166664600372,0.586910963058472,0.630437016487122,0.58348137140274,0.632676541805267,0.590140521526337,0.624947667121887,0.59460312128067,0.6264289021492,0.578366816043854,0.64080548286438,0.601398944854736,0.742312669754028,0.594613254070282,0.745182633399963,0.627932906150818,0.774454891681671,0.659258544445038,0.776688098907471,0.65148788690567,0.781691312789917,0.586712181568146,0.626399755477905,0.580732941627502,0.633727312088013,0.579354286193848,0.635188281536102,0.577599585056305,0.64519214630127, +0.581643164157867,0.738748908042908,0.585601925849915,0.739952862262726,0.577614784240723,0.740173101425171,0.604984283447266,0.740235149860382,0.598125100135803,0.744844615459442,0.588771998882294,0.745643496513367,0.624334931373596,0.773908019065857,0.655870795249939,0.782445847988129,0.659364938735962,0.778326272964478,0.58298134803772,0.629996418952942,0.580097377300262,0.631323218345642,0.590974807739258,0.623377859592438,0.586770415306091,0.624441266059875,0.584415674209595,0.746843636035919,0.575409412384033,0.741335332393646,0.607549130916595,0.737522125244141,0.604765236377716,0.742877304553986,0.594230949878693,0.748209655284882,0.601372361183167,0.745606780052185,0.587932646274567,0.748984396457672,0.659609258174896,0.780397474765778,0.581633031368256,0.627453088760376,0.587009727954865,0.623029708862305,0.595248758792877,0.624609649181366,0.583485186100006,0.625259101390839,0.581955909729004,0.745678901672363,0.579332768917084,0.743225455284119,0.576420962810516,0.743841946125031,0.597779512405396,0.748461544513702,0.586038708686829,0.748729944229126,0.659900426864624,0.783719420433044,0.601225554943085,0.629825532436371,0.58149379491806,0.749865531921387,0.593204200267792,0.75070995092392,0.601106524467468,0.748279273509979,0.585981726646423,0.751787304878235,0.663942754268646,0.783959984779358,0.578836500644684,0.629362165927887,0.580275893211365,0.626183271408081,0.5793137550354,0.74671196937561,0.577469229698181,0.745762467384338,0.597337663173676,0.753229320049286,0.577441334724426,0.749064207077026,0.575689196586609,0.747724771499634,0.592875063419342,0.753287553787231,0.60064697265625,0.752896308898926,0.581910312175751,0.754956126213074,0.577676832675934,0.7540243268013,0.594242334365845,0.756991803646088,0.587438881397247,0.756133496761322,0.597921311855316,0.756900668144226,0.575442373752594,0.751935422420502,0.600335538387299,0.758586943149567,0.578521251678467,0.760002315044403,0.582596480846405,0.760607481002808,0.57530689239502,0.756523430347443,0.590963423252106,0.762177288532257,0.594230949878693, +0.761187314987183,0.602811813354492,0.756133496761322,0.596650242805481,0.762283682823181,0.576479196548462,0.758614838123322,0.586753964424133,0.761349380016327,0.604052484035492,0.750758051872253,0.576543748378754,0.761379718780518,0.57912003993988,0.764711856842041,0.583120584487915,0.765266358852386,0.575296759605408,0.760977149009705,0.593481481075287,0.764050960540771,0.587250232696533,0.765742361545563,0.576315879821777,0.763706624507904,0.590783655643463,0.76636016368866,0.57649564743042,0.766871631145477,0.579766988754272,0.767276704311371,0.583353519439697,0.767735004425049,0.594191670417786,0.765717029571533,0.587603449821472,0.767735004425049,0.578826367855072,0.769147872924805,0.911609828472137,0.650258660316467,0.914508998394012,0.650415599346161,0.914929270744324,0.654530107975006,0.911759257316589,0.646304965019226,0.917823314666748,0.652041137218475,0.908632218837738,0.65385913848877,0.907095313072205,0.646691083908081,0.915868639945984,0.648801505565643,0.918861448764801,0.65628981590271,0.906707942485809,0.6500244140625,0.911533892154694,0.659634590148926,0.918180346488953,0.649386346340179,0.919805884361267,0.652486801147461,0.916863739490509,0.660130858421326,0.904862105846405,0.653821110725403,0.906082510948181,0.658125519752502,0.903335332870483,0.646749317646027,0.918871581554413,0.66288560628891,0.902135193347931,0.649821877479553,0.914126634597778,0.662283003330231,0.906794011592865,0.665364444255829,0.916623175144196,0.664660573005676,0.898891687393188,0.653742671012878,0.89776748418808,0.658467292785645,0.913805067539215,0.665879726409912,0.903472065925598,0.663454055786133,0.898116886615753,0.64602518081665,0.916352272033691,0.670096695423126,0.897873818874359,0.650172531604767,0.900464057922363,0.664552927017212,0.908318281173706,0.669654905796051,0.900922358036041,0.670349895954132,0.915207803249359,0.668690204620361,0.893625199794769,0.649571180343628,0.892840266227722,0.657350718975067,0.897099077701569,0.668726921081543,0.911964356899261,0.669625759124756,0.895445704460144,0.64613276720047, +0.913551867008209,0.672159016132355,0.890432357788086,0.653346359729767,0.894498705863953,0.662669122219086,0.900238692760468,0.683557987213135,0.906059741973877,0.676569700241089,0.912604928016663,0.676310181617737,0.887158513069153,0.649387657642365,0.890655159950256,0.645778298377991,0.889536023139954,0.659500360488892,0.896959781646729,0.673011004924774,0.889622092247009,0.668190121650696,0.894891142845154,0.67657858133316,0.909115850925446,0.677053332328796,0.88507217168808,0.653448939323425,0.88673061132431,0.672504603862762,0.896273612976074,0.682838916778564,0.906054675579071,0.681523561477661,0.910432457923889,0.680844962596893,0.88714075088501,0.645701050758362,0.882173001766205,0.649437010288239,0.88722687959671,0.665316343307495,0.88372004032135,0.664276957511902,0.882995903491974,0.678797900676727,0.884558141231537,0.668647170066834,0.901317358016968,0.687381267547607,0.886917948722839,0.684726536273956,0.908680319786072,0.682350218296051,0.883958041667938,0.645655512809753,0.880714595317841,0.653191924095154,0.876790046691895,0.663666725158691,0.878357350826263,0.674347937107086,0.895633041858673,0.695345640182495,0.888943552970886,0.691108345985413,0.903948068618774,0.688257336616516,0.909799456596375,0.684783458709717,0.876491248607636,0.654725074768066,0.88049179315567,0.6446173787117,0.880506992340088,0.668832004070282,0.884335339069366,0.684888541698456,0.880405724048615,0.681207060813904,0.898119449615479,0.695524156093597,0.891726195812225,0.693858087062836,0.88664448261261,0.691709697246552,0.907067477703094,0.688353598117828,0.875926613807678,0.660497963428497,0.878142118453979,0.648354589939117,0.881666600704193,0.64303994178772,0.873708605766296,0.669111788272858,0.875868380069733,0.680233478546143,0.892847836017609,0.706923127174377,0.888226985931396,0.7065509557724,0.88123619556427,0.704779803752899,0.901694595813751,0.694441735744476,0.9046950340271,0.692963063716888,0.872067868709564,0.665529012680054,0.872379302978516,0.657048165798187,0.87284517288208,0.660085260868073,0.87841808795929, +0.644176840782166,0.878656089305878,0.640695333480835,0.879884123802185,0.688496649265289,0.881433665752411,0.692368030548096,0.875848114490509,0.688121914863586,0.873098373413086,0.678463637828827,0.897468745708466,0.704098701477051,0.880304396152496,0.700198173522949,0.875402510166168,0.649121761322021,0.876587450504303,0.644692063331604,0.870019495487213,0.67437070608139,0.873356640338898,0.688944816589355,0.894997537136078,0.708675265312195,0.887523114681244,0.712450444698334,0.88396817445755,0.710698306560516,0.875835478305817,0.705773591995239,0.900099456310272,0.700672924518585,0.868783891201019,0.665987312793732,0.874685943126678,0.645457983016968,0.869300425052643,0.661267697811127,0.876784980297089,0.641006767749786,0.867755889892578,0.671789348125458,0.877078652381897,0.691989481449127,0.87833708524704,0.69540137052536,0.870379030704498,0.682345151901245,0.892665565013886,0.712759375572205,0.89790678024292,0.708809435367584,0.876341879367828,0.715297639369965,0.871358931064606,0.699808239936829,0.90058308839798,0.703337848186493,0.869546055793762,0.65626323223114,0.867406487464905,0.677145779132843,0.871700763702393,0.695762157440186,0.870710730552673,0.688894152641296,0.896217942237854,0.712645411491394,0.885059475898743,0.716368675231934,0.888540983200073,0.716933310031891,0.878858685493469,0.716201603412628,0.873364269733429,0.709718465805054,0.870624661445618,0.714631736278534,0.863722443580627,0.673255383968353,0.865155577659607,0.666601300239563,0.872964203357697,0.645925164222717,0.87502521276474,0.64141571521759,0.866307616233826,0.661223411560059,0.864717543125153,0.677083730697632,0.868049621582031,0.685546875,0.895020306110382,0.716785192489624,0.89773964881897,0.714507699012756,0.8919717669487,0.716640889644623,0.874270677566528,0.719014585018158,0.865423977375031,0.707435846328735,0.866208851337433,0.651500582695007,0.873690903186798,0.641090333461761,0.864709913730621,0.657082319259644,0.863968074321747,0.687417984008789,0.866535484790802,0.699529767036438,0.866069614887238,0.695555806159973, +0.865765750408173,0.691741347312927,0.883945405483246,0.720119833946228,0.888723254203796,0.720589518547058,0.878600418567657,0.721509873867035,0.868269920349121,0.712418794631958,0.869900524616241,0.72015780210495,0.861750066280365,0.67108166217804,0.861309468746185,0.679268836975098,0.861967802047729,0.661694347858429,0.861127197742462,0.683354198932648,0.896053373813629,0.720493316650391,0.89285796880722,0.720080554485321,0.88178813457489,0.724010229110718,0.876974880695343,0.724282383918762,0.867383718490601,0.719232380390167,0.862509667873383,0.704169631004334,0.862595736980438,0.718910813331604,0.872804701328278,0.723441779613495,0.857921719551086,0.677064716815948,0.858992695808411,0.686933159828186,0.859906792640686,0.702314913272858,0.860187828540802,0.694730401039124,0.862142503261566,0.691109657287598,0.895154476165771,0.720959186553955,0.88981705904007,0.723927915096283,0.883330166339874,0.727587878704071,0.861628532409668,0.714539349079132,0.864750444889069,0.72377347946167,0.869313061237335,0.72595602273941,0.856716454029083,0.674356758594513,0.856412649154663,0.683798551559448,0.857979953289032,0.690909624099731,0.893141567707062,0.724358379840851,0.886601448059082,0.727862656116486,0.873470604419708,0.728390574455261,0.858344554901123,0.715592622756958,0.858066022396088,0.719174146652222,0.853392004966736,0.685551941394806,0.854318678379059,0.688927054405212,0.858258426189423,0.700885593891144,0.889779090881348,0.72838419675827,0.883707404136658,0.73155552148819,0.880382895469666,0.731249153614044,0.860554933547974,0.722540378570557,0.854364275932312,0.712615013122559,0.863069236278534,0.727875292301178,0.874840378761292,0.734721779823303,0.853926241397858,0.696628093719482,0.855521380901337,0.700289368629456,0.892217397689819,0.728586792945862,0.886690080165863,0.732626557350159,0.853045105934143,0.717209339141846,0.85658985376358,0.723244309425354,0.867353320121765,0.734505295753479,0.850505530834198,0.698139667510986,0.852680504322052,0.705686271190643,0.889082789421082,0.732640504837036,0.881907165050507, +0.738713443279266,0.878896653652191,0.73829060792923,0.875407576560974,0.739033758640289,0.858215391635895,0.726376354694366,0.854146540164948,0.724655866622925,0.851336002349854,0.712827742099762,0.864542841911316,0.734810411930084,0.868520557880402,0.738500773906708,0.847132921218872,0.699715852737427,0.887459814548492,0.736546039581299,0.885869741439819,0.740406095981598,0.861304402351379,0.730290770530701,0.851839900016785,0.725585103034973,0.850340962409973,0.716645956039429,0.845844149589539,0.708008110523224,0.850594162940979,0.707509279251099,0.883213639259338,0.741083383560181,0.878235816955566,0.742092370986938,0.870675265789032,0.742587387561798,0.856351852416992,0.731826424598694,0.850244700908661,0.721946656703949,0.853212237358093,0.73056548833847,0.844659149646759,0.712980926036835,0.862755239009857,0.738950192928314,0.860043525695801,0.734115362167358,0.883540272712708,0.744849681854248,0.881122231483459,0.743625462055206,0.875562012195587,0.743816673755646,0.866930484771729,0.744911730289459,0.848284959793091,0.728155076503754,0.850533366203308,0.730004668235779,0.848130524158478,0.720511019229889,0.886155843734741,0.744440793991089,0.878238320350647,0.745805501937866,0.872840166091919,0.750892281532288,0.86975109577179,0.749179363250732,0.860013127326965,0.740383267402649,0.853779375553131,0.736005485057831,0.850930869579315,0.736504256725311,0.844281911849976,0.71646112203598,0.864727675914764,0.743444442749023,0.884074568748474,0.748427391052246,0.881902098655701,0.74770450592041,0.88024365901947,0.748189389705658,0.878288984298706,0.74941486120224,0.875805079936981,0.749952912330627,0.854397177696228,0.742003738880157,0.848682522773743,0.731991052627563,0.845790982246399,0.721884608268738,0.87610387802124,0.753839492797852,0.868330657482147,0.753902792930603,0.862899601459503,0.749918699264526,0.857605218887329,0.746513187885284,0.846808850765228,0.7312833070755,0.849295258522034,0.738391876220703,0.882811069488525,0.752349436283112,0.87872701883316,0.753302693367004,0.871637463569641,0.758021056652069, +0.853809773921967,0.747584223747253,0.847360789775848,0.738559007644653,0.850854933261871,0.742158174514771,0.876070916652679,0.761775970458984,0.878605484962463,0.754749774932861,0.865927815437317,0.75739061832428,0.862957835197449,0.753522992134094,0.857314050197601,0.749385714530945,0.848226726055145,0.743850827217102,0.872047603130341,0.761453151702881,0.878939688205719,0.763839542865753,0.855222582817078,0.753654658794403,0.850728332996368,0.747296869754791,0.877263486385345,0.76514732837677,0.880610764026642,0.759368062019348,0.860167562961578,0.757075369358063,0.862848937511444,0.760860681533813,0.859068691730499,0.753428041934967,0.853115975856781,0.75350147485733,0.849502861499786,0.749398410320282,0.873381972312927,0.765235960483551,0.880390524864197,0.767695784568787,0.867586255073547,0.764476358890533,0.856245517730713,0.757252633571625,0.877790153026581,0.767588138580322,0.857909023761749,0.760927796363831,0.861177802085876,0.76371169090271,0.85388320684433,0.758289456367493,0.868512988090515,0.766862750053406,0.876303911209106,0.768669307231903,0.156114429235458,0.968909859657288,0.150728911161423,0.96757048368454,0.159993425011635,0.966185450553894,0.150414943695068,0.974133372306824,0.157281681895256,0.958895862102509,0.161783546209335,0.96978086233139,0.154785141348839,0.974171340465546,0.146292880177498,0.968466758728027,0.153514087200165,0.959587097167969,0.161730363965034,0.961172163486481,0.164477571845055,0.966828584671021,0.151999965310097,0.977085649967194,0.150470644235611,0.961356997489929,0.14640174806118,0.974300444126129,0.154415473341942,0.955057382583618,0.161626562476158,0.95238870382309,0.165110573172569,0.962468504905701,0.164847239851952,0.971854567527771,0.161145478487015,0.974530875682831,0.1446293592453,0.977176785469055,0.160636559128761,0.977214753627777,0.146824583411217,0.962111532688141,0.142507568001747,0.975444912910461,0.157894417643547,0.952472269535065,0.165358707308769,0.955285251140594,0.168604701757431,0.965517044067383,0.167738765478134,0.969446659088135,0.148303270339966, +0.979559421539307,0.15509657561779,0.979967057704926,0.1476069688797,0.954849779605865,0.143525421619415,0.961789965629578,0.142540469765663,0.968861758708954,0.151030212640762,0.954361081123352,0.155225709080696,0.951689839363098,0.167837515473366,0.952236771583557,0.15979340672493,0.950330197811127,0.168108433485031,0.959706127643585,0.164591506123543,0.977075517177582,0.144014090299606,0.982354700565338,0.160963177680969,0.979820191860199,0.139183074235916,0.975829780101776,0.139076724648476,0.968803524971008,0.167186796665192,0.949884533882141,0.168690785765648,0.955399215221405,0.170529007911682,0.957100689411163,0.169452920556068,0.968332588672638,0.168690785765648,0.970988631248474,0.151040345430374,0.982374966144562,0.138580456376076,0.984314441680908,0.158497035503387,0.982658565044403,0.140066727995873,0.957948923110962,0.148424804210663,0.952573537826538,0.137836053967476,0.980070829391479,0.152800068259239,0.952520370483398,0.173415467143059,0.950201034545898,0.171554461121559,0.95261150598526,0.168194517493248,0.974725842475891,0.164396554231644,0.980136692523956,0.144872426986694,0.985008239746094,0.142596185207367,0.954786479473114,0.139127358794212,0.961764633655548,0.141745433211327,0.953219175338745,0.152207583189011,0.951606333255768,0.13637763261795,0.974037110805511,0.135623097419739,0.97819972038269,0.167100697755814,0.977814853191376,0.153752088546753,0.984957575798035,0.149513557553291,0.985231041908264,0.135640829801559,0.982704102993011,0.141720116138458,0.987479448318481,0.163593903183937,0.982990205287933,0.139431208372116,0.954880177974701,0.135595247149467,0.957477986812592,0.136268749833107,0.96406364440918,0.136605516076088,0.969183325767517,0.164282605051994,0.985243678092957,0.145639628171921,0.988120019435883,0.135364845395088,0.987588286399841,0.13786643743515,0.991019129753113,0.134053274989128,0.976936280727386,0.134468510746956,0.968968093395233,0.149554073810577,0.988039016723633,0.156476512551308,0.988001048564911,0.141314998269081,0.99081152677536,0.166984230279922,0.980845630168915, +0.134114041924477,0.961202502250671,0.133987441658974,0.985180377960205,0.162928000092506,0.98846435546875,0.145563662052155,0.9908646941185,0.136083915829659,0.991672396659851,0.138833656907082,0.993497967720032,0.133792474865913,0.952733039855957,0.155656144022942,0.991252064704895,0.165348574519157,0.988484621047974,0.149098306894302,0.990788757801056,0.134549543261528,0.990365922451019,0.142720252275467,0.993133366107941,0.168052732944489,0.982709169387817,0.160406142473221,0.991034328937531,0.13602314889431,0.994981706142426,0.140704795718193,0.995558977127075,0.149852842092514,0.994141101837158,0.161631628870964,0.993130803108215,0.159079387784004,0.993528366088867,0.153177335858345,0.994298040866852,0.148229837417603,0.996597111225128,0.153577387332916,0.996321141719818,0.157615900039673,0.995693206787109,0.847758293151855,0.898089051246643,0.846132814884186,0.90185409784317,0.847844421863556,0.895184874534607,0.240021795034409,0.599686086177826,0.237839221954346,0.601893961429596,0.232137203216553,0.599546849727631,0.240543380379677,0.604818403720856,0.233104422688484,0.603618264198303,0.236198499798775,0.590344309806824,0.235570564866066,0.606712341308594,0.244442641735077,0.603347361087799,0.226779535412788,0.605079233646393,0.23052179813385,0.595493137836456,0.239277392625809,0.593064963817596,0.237013801932335,0.609996318817139,0.244999676942825,0.595166504383087,0.241571366786957,0.607636511325836,0.221457302570343,0.614153861999512,0.225807249546051,0.598301112651825,0.221188917756081,0.61171555519104,0.227134004235268,0.593968868255615,0.242877870798111,0.585856378078461,0.242260068655014,0.594641089439392,0.231357350945473,0.613941133022308,0.247217684984207,0.600744426250458,0.246447965502739,0.605747640132904,0.225751549005508,0.615586936473846,0.21920382976532,0.603914499282837,0.217380806803703,0.610214054584503,0.234056442975998,0.586122274398804,0.242401853203774,0.581207692623138,0.24456924200058,0.588064312934875,0.235889598727226,0.616498470306396,0.229807779192925,0.620415449142456,0.248291254043579, +0.587179362773895,0.249141991138458,0.602694094181061,0.249633207917213,0.596098244190216,0.220535665750504,0.618551909923553,0.214626014232636,0.614131033420563,0.221229419112206,0.597637712955475,0.227903723716736,0.585795640945435,0.245931446552277,0.584458768367767,0.231838434934616,0.620628118515015,0.249633207917213,0.590496242046356,0.250737130641937,0.598968267440796,0.247764602303505,0.594856321811676,0.216145202517509,0.616868138313293,0.214134812355042,0.605565369129181,0.213506877422333,0.598677098751068,0.211374953389168,0.613872766494751,0.220252081751823,0.593476414680481,0.229873612523079,0.583188951015472,0.23744423687458,0.581902682781219,0.24730883538723,0.581333041191101,0.234122276306152,0.622461259365082,0.229098826646805,0.626816272735596,0.250899195671082,0.584680318832397,0.2526715695858,0.599305033683777,0.252408266067505,0.592344582080841,0.255284577608109,0.5924471616745,0.225604683160782,0.623251259326935,0.213299259543419,0.621504187583923,0.210220366716385,0.606694638729095,0.226394668221474,0.583526968955994,0.222009271383286,0.588688433170319,0.239398926496506,0.578355371952057,0.2427968531847,0.574772655963898,0.239338159561157,0.616860508918762,0.254423707723618,0.587446510791779,0.258378654718399,0.591111540794373,0.220738217234612,0.625274300575256,0.206979423761368,0.621329486370087,0.20855937898159,0.600281119346619,0.21462094783783,0.59167617559433,0.206473022699356,0.611659824848175,0.231291517615318,0.57790219783783,0.219350695610046,0.588017463684082,0.248468488454819,0.576490581035614,0.252286732196808,0.579904973506927,0.234876811504364,0.626223802566528,0.243723556399345,0.611707925796509,0.240442112088203,0.623228430747986,0.223862677812576,0.630100250244141,0.254489541053772,0.581844449043274,0.207014873623848,0.626206040382385,0.213572710752487,0.627829074859619,0.200457036495209,0.618321478366852,0.2049690335989,0.605684340000153,0.222804322838783,0.582810401916504,0.238219022750854,0.574822008609772,0.244635060429573,0.572610318660736,0.228237956762314,0.632118225097656, +0.242295518517494,0.615969240665436,0.242614552378654,0.620293915271759,0.218499943614006,0.634561598300934,0.258844554424286,0.585360109806061,0.218322709202766,0.6306471824646,0.20238134264946,0.624365329742432,0.201550856232643,0.620797753334045,0.192030608654022,0.598564445972443,0.209126546978951,0.593924582004547,0.217507407069206,0.583137035369873,0.194380283355713,0.616498470306396,0.189898669719696,0.605826139450073,0.225812315940857,0.578530132770538,0.228734225034714,0.575203061103821,0.248478621244431,0.571298778057098,0.254185706377029,0.576575398445129,0.256474614143372,0.578971922397614,0.222232088446617,0.638339340686798,0.234897062182426,0.628036677837372,0.248919188976288,0.608983516693115,0.247643068432808,0.618235409259796,0.261067628860474,0.582496464252472,0.202234491705894,0.63081681728363,0.207263007760048,0.629664778709412,0.209410130977631,0.632429659366608,0.187209710478783,0.622565090656281,0.197894677519798,0.595948874950409,0.211567372083664,0.587212264537811,0.190486088395119,0.611687660217285,0.219882413744926,0.57942134141922,0.230739548802376,0.571163296699524,0.239226758480072,0.571122765541077,0.244756609201431,0.567610919475555,0.248144388198853,0.61199152469635,0.250499129295349,0.605859041213989,0.250347226858139,0.614677965641022,0.246361881494522,0.622405588626862,0.217021271586418,0.640093982219696,0.213658794760704,0.634731233119965,0.195134818553925,0.627548038959503,0.193418130278587,0.624155163764954,0.181841909885406,0.599815189838409,0.193443447351456,0.591943264007568,0.204660132527351,0.590158224105835,0.210701435804367,0.58345103263855,0.173901602625847,0.613361299037933,0.234567910432816,0.569708704948425,0.2221460044384,0.570622742176056,0.250240862369537,0.568761706352234,0.254261672496796,0.571241796016693,0.257112681865692,0.5743687748909,0.262586832046509,0.578888356685638,0.251744866371155,0.608955681324005,0.248220354318619,0.61944568157196,0.21334482729435,0.639141976833344,0.196745157241821,0.63134092092514,0.209248080849648,0.636040270328522,0.174251019954681, +0.602982699871063,0.185776606202126,0.59540194272995,0.206219837069511,0.586756527423859,0.214615881443024,0.579374551773071,0.17256473004818,0.620896518230438,0.17151141166687,0.605864107608795,0.219867214560509,0.575413227081299,0.230992749333382,0.567329883575439,0.238441839814186,0.56534731388092,0.245440244674683,0.562653303146362,0.263999670743942,0.581039309501648,0.253395736217499,0.606155276298523,0.212772607803345,0.64179801940918,0.198780864477158,0.635528802871704,0.191210240125656,0.631252288818359,0.17179499566555,0.599807620048523,0.194066315889359,0.587023615837097,0.182444512844086,0.590113937854767,0.202816843986511,0.582507848739624,0.209526598453522,0.579141557216644,0.17300021648407,0.623732328414917,0.163277417421341,0.620147049427032,0.16710576415062,0.611763656139374,0.236082032322884,0.559787094593048,0.224905863404274,0.567238748073578,0.2175023406744,0.57403838634491,0.250808030366898,0.562882483005524,0.255244076251984,0.567293167114258,0.258231818675995,0.570170760154724,0.263326168060303,0.575232207775116,0.265863209962845,0.577651500701904,0.255846679210663,0.609163284301758,0.253643870353699,0.611885190010071,0.20624515414238,0.6406130194664,0.184692919254303,0.630477547645569,0.174094036221504,0.595453858375549,0.212286457419395,0.574938476085663,0.160963177680969,0.607537746429443,0.221447169780731,0.561677217483521,0.217613756656647,0.565135896205902,0.245019927620888,0.559527575969696,0.251147329807281,0.559187054634094,0.256626546382904,0.604003131389618,0.196745157241821,0.639709115028381,0.191843241453171,0.63716447353363,0.163981303572655,0.602258563041687,0.171774744987488,0.593263685703278,0.183730766177177,0.585996925830841,0.198527663946152,0.582231879234314,0.207739025354385,0.574333369731903,0.17838828265667,0.630667448043823,0.161479711532593,0.624864101409912,0.161439195275307,0.612480163574219,0.230850949883461,0.557312071323395,0.225204631686211,0.559822559356689,0.244143858551979,0.556753814220428,0.2556491792202,0.560634076595306,0.259907990694046,0.561684846878052, +0.262738734483719,0.564063608646393,0.268060982227325,0.569670677185059,0.197362959384918,0.64246141910553,0.180631622672081,0.636242866516113,0.163773685693741,0.596019804477692,0.171835511922836,0.58739709854126,0.192957311868668,0.583076298236847,0.203662529587746,0.571997582912445,0.212402939796448,0.568787038326263,0.158917337656021,0.61828351020813,0.157190531492233,0.610310256481171,0.15546877682209,0.60067355632782,0.237064436078072,0.555819511413574,0.225381880998611,0.552525401115417,0.215132415294647,0.559292078018188,0.252469033002853,0.556132197380066,0.239743277430534,0.557029783725739,0.256682246923447,0.55800461769104,0.258328020572662,0.560673296451569,0.270390391349792,0.572197616100311,0.204442381858826,0.643864095211029,0.190794989466667,0.642770290374756,0.189301133155823,0.638871073722839,0.162026613950729,0.590915322303772,0.173410400748253,0.583413064479828,0.182535663247108,0.574752390384674,0.19811749458313,0.574530839920044,0.209805116057396,0.566498100757599,0.160401076078415,0.62755560874939,0.172038063406944,0.636354267597198,0.158081784844399,0.624960362911224,0.233646258711815,0.54878693819046,0.2226422727108,0.549255311489105,0.246797382831573,0.551194846630096,0.257300049066544,0.546856284141541,0.260535925626755,0.557399451732636,0.263538837432861,0.559614956378937,0.270344823598862,0.566238582134247,0.176281675696373,0.638800144195557,0.156309396028519,0.592209160327911,0.158917337656021,0.582961082458496,0.180960774421692,0.581127941608429,0.192754745483398,0.572205245494843,0.15858818590641,0.586318492889404,0.204786732792854,0.567045032978058,0.16802741587162,0.632470190525055,0.155377626419067,0.617949247360229,0.153271019458771,0.608135282993317,0.242812037467957,0.548550188541412,0.226283267140388,0.546703100204468,0.215654000639915,0.550114929676056,0.258014053106308,0.555101692676544,0.24585548043251,0.548822343349457,0.275545507669449,0.566676616668701,0.181841909885406,0.641737222671509,0.152835518121719,0.592002809047699,0.16281658411026,0.575860142707825,0.171962112188339, +0.575655043125153,0.169171869754791,0.567033648490906,0.180530339479446,0.568675637245178,0.200193718075752,0.565970182418823,0.20603246986866,0.56115186214447,0.15600049495697,0.627132773399353,0.159504756331444,0.632303059101105,0.169723838567734,0.638805210590363,0.164249688386917,0.63721764087677,0.152313932776451,0.61903041601181,0.150987163186073,0.598612546920776,0.242953836917877,0.544793963432312,0.233165189623833,0.544668614864349,0.223508208990097,0.544878780841827,0.207576975226402,0.551475882530212,0.252707034349442,0.546070098876953,0.263214766979218,0.549136340618134,0.270020723342896,0.555987894535065,0.271884262561798,0.557507038116455,0.274092137813568,0.564566254615784,0.271570295095444,0.574027001857758,0.151103645563126,0.58808958530426,0.154886424541473,0.582036912441254,0.15947437286377,0.575013160705566,0.192450910806656,0.568430006504059,0.149635091423988,0.609900116920471,0.148703321814537,0.601205289363861,0.24634163081646,0.545192778110504,0.234223559498787,0.540478229522705,0.227913856506348,0.539214730262756,0.261928498744965,0.55369645357132,0.26253616809845,0.543143093585968,0.265306174755096,0.5460245013237,0.267043113708496,0.552665889263153,0.271772861480713,0.562012732028961,0.268238216638565,0.579327702522278,0.276148110628128,0.571786165237427,0.171977296471596,0.643091857433319,0.171496227383614,0.561997532844543,0.181968510150909,0.563781321048737,0.194927185773849,0.563605308532715,0.201545789837837,0.558148920536041,0.202376276254654,0.553855955600739,0.152784883975983,0.632644891738892,0.152825385332108,0.627575874328613,0.159327521920204,0.636463105678558,0.16412815451622,0.641572654247284,0.149356573820114,0.617716312408447,0.147072717547417,0.599640488624573,0.242108151316643,0.540956735610962,0.244675576686859,0.539873063564301,0.222890406847,0.541296064853668,0.208447977900505,0.545825779438019,0.253188103437424,0.542482256889343,0.262931168079376,0.539336264133453,0.270841091871262,0.55088084936142,0.273975670337677,0.553992688655853,0.274634003639221,0.559660494327545, +0.27724701166153,0.567884385585785,0.271286725997925,0.577862918376923,0.148151353001595,0.588482081890106,0.1484754383564,0.582596480846405,0.155326992273331,0.573530733585358,0.162527948617935,0.561653196811676,0.201900273561478,0.54886794090271,0.150126293301582,0.621053457260132,0.144140690565109,0.614455163478851,0.140808597207069,0.609583616256714,0.143274754285812,0.60547924041748,0.250256061553955,0.538056373596191,0.235651597380638,0.53661060333252,0.211719304323196,0.541585981845856,0.225786983966827,0.537176489830017,0.251942366361618,0.539151430130005,0.266592413187027,0.54213285446167,0.276776045560837,0.554559826850891,0.276841878890991,0.562663435935974,0.14886537194252,0.572422981262207,0.157033547759056,0.564613044261932,0.17998343706131,0.558278024196625,0.160669475793839,0.556639850139618,0.188799798488617,0.55659806728363,0.193245947360992,0.549873113632202,0.157225981354713,0.637620270252228,0.144824326038361,0.631110489368439,0.148819789290428,0.626357972621918,0.146748632192612,0.619622886180878,0.139608442783356,0.600589990615845,0.144115373492241,0.594582855701447,0.247962087392807,0.534474909305573,0.229645729064941,0.532965838909149,0.218788594007492,0.537699341773987,0.225827500224113,0.534391343593597,0.208331510424614,0.533400058746338,0.204584166407585,0.53998064994812,0.261482864618301,0.535961151123047,0.269600421190262,0.544690191745758,0.266273379325867,0.535162329673767,0.275743007659912,0.549880743026733,0.144905343651772,0.585694372653961,0.144383758306503,0.571579813957214,0.151761949062347,0.569421291351318,0.157150015234947,0.560359358787537,0.164675071835518,0.554809212684631,0.189032733440399,0.54735255241394,0.152222782373428,0.636242866516113,0.140246495604515,0.615710973739624,0.136797934770584,0.609930515289307,0.136149749159813,0.605370402336121,0.233712092041969,0.532993674278259,0.24557189643383,0.53125673532486,0.255228877067566,0.53249990940094,0.197930127382278,0.538329839706421,0.268562287092209,0.539119780063629,0.272415965795517,0.547253787517548,0.281369060277939, +0.545886516571045,0.143527954816818,0.580125272274017,0.14449517428875,0.562340617179871,0.153306469321251,0.561368346214294,0.180211305618286,0.553184986114502,0.154886424541473,0.556510746479034,0.159859240055084,0.55297863483429,0.145133227109909,0.624433696269989,0.142464518547058,0.619617879390717,0.134873628616333,0.594310700893402,0.140281945466995,0.591634392738342,0.25323873758316,0.528726041316986,0.225624948740005,0.525377452373505,0.234983146190643,0.527915775775909,0.214494347572327,0.534043192863464,0.200527936220169,0.53302276134491,0.263700902462006,0.531892240047455,0.273530036211014,0.543215274810791,0.269914388656616,0.53131115436554,0.277439445257187,0.544152140617371,0.139826193451881,0.578764319419861,0.139669209718704,0.573896586894989,0.136408016085625,0.562974870204926,0.177618563175201,0.550095975399017,0.154861107468605,0.552802622318268,0.163034334778786,0.546382784843445,0.189731568098068,0.535193979740143,0.139491975307465,0.625919938087463,0.135921880602837,0.613763928413391,0.131835252046585,0.605909705162048,0.131571933627129,0.600605189800262,0.137294203042984,0.584601819515228,0.246220082044601,0.525266051292419,0.257862150669098,0.528672814369202,0.226911187171936,0.523037910461426,0.222242221236229,0.52954638004303,0.209369614720345,0.52957421541214,0.215810984373093,0.530086934566498,0.195823505520821,0.523673415184021,0.269802957773209,0.528042376041412,0.274082034826279,0.539998412132263,0.271018326282501,0.535771250724792,0.27615824341774,0.543127954006195,0.28246796131134,0.541891038417816,0.135101512074471,0.559226274490356,0.148505821824074,0.556043565273285,0.164381355047226,0.539531230926514,0.146763816475868,0.550751745700836,0.155068725347519,0.543921709060669,0.158810988068581,0.545428216457367,0.178205981850624,0.543174743652344,0.193656131625175,0.527082741260529,0.183578848838806,0.536986589431763,0.140540212392807,0.623752593994141,0.141487166285515,0.630857348442078,0.132230252027512,0.608775913715363,0.131075665354729,0.589023888111115,0.238588690757751,0.522584676742554, +0.252712100744247,0.525171101093292,0.223249942064285,0.522569477558136,0.221852287650108,0.525862336158752,0.231661185622215,0.522027671337128,0.208336561918259,0.519672930240631,0.202052190899849,0.522654294967651,0.26376673579216,0.52764230966568,0.272137463092804,0.530080616474152,0.279054820537567,0.536540985107422,0.130549013614655,0.574018120765686,0.13353168964386,0.567586898803711,0.13126303255558,0.556886732578278,0.147133499383926,0.542605102062225,0.160178259015083,0.536776483058929,0.135410413146019,0.617855608463287,0.140646547079086,0.621291518211365,0.135891497135162,0.627689838409424,0.125799015164375,0.599807620048523,0.12711563706398,0.595062673091888,0.131835252046585,0.580022692680359,0.242538586258888,0.51859176158905,0.246326431632042,0.520708501338959,0.258373618125916,0.524776101112366,0.226019933819771,0.518632292747498,0.217603623867035,0.526324450969696,0.229681178927422,0.518387913703918,0.210301384329796,0.524462163448334,0.191564723849297,0.514597535133362,0.263407170772552,0.524793863296509,0.274760603904724,0.535911798477173,0.272112131118774,0.524481117725372,0.277403980493546,0.536447286605835,0.28566837310791,0.534552097320557,0.132802471518517,0.553629338741302,0.138656422495842,0.553516626358032,0.175547391176224,0.535062313079834,0.139714777469635,0.544763565063477,0.147194266319275,0.538237392902374,0.166614562273026,0.5253546833992,0.133389890193939,0.623826026916504,0.127986639738083,0.58538419008255,0.233453840017319,0.517266273498535,0.23918117582798,0.517789125442505,0.252747535705566,0.521255373954773,0.219462096691132,0.518667697906494,0.205591902136803,0.508414447307587,0.214063912630081,0.517395377159119,0.199692383408546,0.508022010326386,0.184434652328491,0.517033338546753,0.26959028840065,0.52399879693985,0.27310973405838,0.53222268819809,0.277343213558197,0.53269237279892,0.281136125326157,0.530561685562134,0.126781418919563,0.570137858390808,0.126092717051506,0.573600351810455,0.129333660006523,0.563355922698975,0.127338454127312,0.555475115776062,0.140808597207069, +0.538351356983185,0.153458386659622,0.534958481788635,0.147255033254623,0.533868491649628,0.160233974456787,0.524755895137787,0.130984514951706,0.615389466285706,0.123550608754158,0.595532357692719,0.124239310622215,0.591805279254913,0.125955998897552,0.580835461616516,0.241642266511917,0.51428234577179,0.246432781219482,0.517315626144409,0.260723292827606,0.521004736423492,0.227022603154182,0.514163315296173,0.222171321511269,0.514481067657471,0.191990092396736,0.50719279050827,0.185827240347862,0.506543338298798,0.265898644924164,0.520532548427582,0.270005524158478,0.519723534584045,0.279009252786636,0.528837442398071,0.282771795988083,0.527896761894226,0.124695062637329,0.552034199237823,0.175987958908081,0.518048644065857,0.132974654436111,0.542087256908417,0.157413333654404,0.532727837562561,0.166179060935974,0.517178893089294,0.13012869656086,0.619739413261414,0.122137762606144,0.59849351644516,0.124234244227409,0.58497017621994,0.234208360314369,0.512555539608002,0.246159315109253,0.513603746891022,0.251891732215881,0.51356703042984,0.227797389030457,0.510581851005554,0.201793923974037,0.503321349620819,0.214671581983566,0.508111894130707,0.196253955364227,0.504558265209198,0.273150265216827,0.520164132118225,0.278599083423615,0.523068308830261,0.281095623970032,0.525028049945831,0.286974877119064,0.530217349529266,0.120821133255959,0.562302649021149,0.122866973280907,0.557574152946472,0.130842715501785,0.548185586929321,0.169673204421997,0.51629775762558,0.13425076007843,0.533596277236938,0.149579390883446,0.527013123035431,0.141725182533264,0.532070755958557,0.162335515022278,0.515324234962463,0.120562866330147,0.595314621925354,0.121423743665218,0.592057228088379,0.123753167688847,0.581084907054901,0.239206492900848,0.509285449981689,0.258905321359634,0.517715692520142,0.222515672445297,0.51166045665741,0.207176923751831,0.503730297088623,0.212296590209007,0.504696249961853,0.189209967851639,0.504443049430847,0.178413599729538,0.508177697658539,0.263159036636353,0.512316226959229,0.270567625761032,0.515367269515991, +0.276178508996964,0.525667369365692,0.28673180937767,0.520480632781982,0.289456218481064,0.531661868095398,0.286620408296585,0.525140702724457,0.120983175933361,0.567398250102997,0.124219052493572,0.548795759677887,0.117423214018345,0.554100275039673,0.129267826676369,0.541673302650452,0.147017017006874,0.527585387229919,0.154597774147987,0.516781389713287,0.158502086997032,0.51384174823761,0.16543972492218,0.51218456029892,0.121160417795181,0.584776520729065,0.121798478066921,0.575051188468933,0.227984756231308,0.506821811199188,0.234578028321266,0.504489898681641,0.245931446552277,0.509998202323914,0.249820560216904,0.509369015693665,0.258115351200104,0.512555539608002,0.224485546350479,0.505401372909546,0.196299523115158,0.500379204750061,0.205262735486031,0.499655067920685,0.215795785188675,0.501243889331818,0.184257417917252,0.502298474311829,0.192486360669136,0.502246558666229,0.18047970533371,0.503555595874786,0.273150265216827,0.515623033046722,0.277991414070129,0.520138800144196,0.29084375500679,0.528523445129395,0.288843482732773,0.524664700031281,0.11845625936985,0.561107516288757,0.170078322291374,0.508548676967621,0.127409353852272,0.536516904830933,0.13605859875679,0.528503179550171,0.146748632192612,0.52258974313736,0.141811266541481,0.521906137466431,0.150435194373131,0.519734919071198,0.160968244075775,0.51022481918335,0.11866894364357,0.588517487049103,0.12019319832325,0.58096969127655,0.238867208361626,0.500171601772308,0.24102446436882,0.505264639854431,0.255846679210663,0.508928418159485,0.218074575066566,0.504415214061737,0.200502619147301,0.499403119087219,0.210169717669487,0.500062704086304,0.188055396080017,0.500942587852478,0.17665134370327,0.505033016204834,0.267017781734467,0.508624613285065,0.275246739387512,0.517649829387665,0.270425826311111,0.512060523033142,0.283384531736374,0.511524975299835,0.285481005907059,0.512841641902924,0.116891495883465,0.56782865524292,0.119772888720036,0.572006464004517,0.118451200425625,0.544714212417603,0.114850714802742,0.546210646629334,0.17282298207283, +0.506810426712036,0.123753167688847,0.5346799492836,0.132366970181465,0.525252163410187,0.136656150221825,0.519523501396179,0.148804605007172,0.511495888233185,0.154081255197525,0.505478620529175,0.168670535087585,0.502606093883514,0.118299275636673,0.586724877357483,0.11792454123497,0.584930956363678,0.22952926158905,0.501055240631104,0.235935181379318,0.498751133680344,0.245328828692436,0.506277441978455,0.251051098108292,0.505519151687622,0.219163328409195,0.499906986951828,0.192136943340302,0.499292999505997,0.200381085276604,0.496848344802856,0.203297927975655,0.496914178133011,0.208655595779419,0.496807843446732,0.212580174207687,0.496347039937973,0.183862432837486,0.499752551317215,0.179942920804024,0.500375390052795,0.176281675696373,0.500870406627655,0.262100666761398,0.508582830429077,0.275378406047821,0.514762103557587,0.273023664951324,0.510327339172363,0.280082821846008,0.513383448123932,0.287739545106888,0.512753009796143,0.289223283529282,0.515678703784943,0.292064160108566,0.525282502174377,0.114126570522785,0.556655049324036,0.122502371668816,0.539789497852325,0.112511165440083,0.549814879894257,0.126811802387238,0.526685237884521,0.143325388431549,0.512039005756378,0.136939734220505,0.508057415485382,0.158400818705559,0.498934715986252,0.163738235831261,0.502189576625824,0.115579925477505,0.583970069885254,0.118218258023262,0.579749286174774,0.22430831193924,0.493166863918304,0.232071369886398,0.500819802284241,0.239247009158134,0.494808852672577,0.243510872125626,0.498761266469955,0.254469275474548,0.505241870880127,0.2202318161726,0.495246887207031,0.20678699016571,0.49521142244339,0.216646537184715,0.494791120290756,0.188495948910713,0.498967617750168,0.172625496983528,0.501538872718811,0.262024730443954,0.504600048065186,0.2767254114151,0.515098869800568,0.278431981801987,0.510543823242188,0.284751802682877,0.502763092517853,0.29018035531044,0.519923567771912,0.117251038551331,0.574142158031464,0.113670811057091,0.569832742214203,0.115873642265797,0.539643943309784,0.113746777176857,0.541493535041809, +0.109457597136498,0.54495096206665,0.115276090800762,0.531001031398773,0.120238773524761,0.521326303482056,0.128062605857849,0.519242465496063,0.131278216838837,0.521413624286652,0.133440539240837,0.508414447307587,0.148890689015388,0.500291883945465,0.144135624170303,0.5002361536026,0.166017010807991,0.498200446367264,0.115949600934982,0.581094980239868,0.232203036546707,0.494546800851822,0.251294195652008,0.497678846120834,0.253780573606491,0.501523673534393,0.257801383733749,0.504907667636871,0.204609498381615,0.494953155517578,0.210240617394447,0.493784666061401,0.213846161961555,0.492095828056335,0.179254218935966,0.498594164848328,0.176393076777458,0.498597949743271,0.173121765255928,0.49805611371994,0.267752051353455,0.504142999649048,0.275722742080688,0.510298252105713,0.280882924795151,0.506159722805023,0.289734750986099,0.509189248085022,0.288610547780991,0.502876996994019,0.109422147274017,0.54958575963974,0.10972598940134,0.563425540924072,0.169703587889671,0.497835844755173,0.118309408426285,0.523110091686249,0.120805941522121,0.514843165874481,0.137689203023911,0.501243889331818,0.134736910462379,0.496663510799408,0.152683600783348,0.494241684675217,0.159428805112839,0.49585834145546,0.112885899841785,0.573901653289795,0.22179152071476,0.485405057668686,0.228617742657661,0.487129330635071,0.237565770745277,0.490747541189194,0.243693172931671,0.494460701942444,0.250868797302246,0.493856817483902,0.257867217063904,0.499704420566559,0.217446640133858,0.490194320678711,0.209668397903442,0.492484480142593,0.259725689888,0.500972986221313,0.272020995616913,0.498634666204453,0.278700351715088,0.505164682865143,0.282290697097778,0.501432538032532,0.284432768821716,0.496731877326965,0.111078061163425,0.569782137870789,0.110819801688194,0.537492990493774,0.108181476593018,0.539935111999512,0.107001572847366,0.547838687896729,0.112718790769577,0.526409268379211,0.128731042146683,0.504983603954315,0.122208654880524,0.510293185710907,0.130832597613335,0.492292046546936,0.143852040171623,0.495593756437302,0.148348838090897, +0.493956834077835,0.165034607052803,0.494161933660507,0.168017283082008,0.495154470205307,0.113994911313057,0.577800869941711,0.225943967700005,0.484180837869644,0.231483951210976,0.481988161802292,0.241125732660294,0.491038739681244,0.254200905561447,0.495056986808777,0.256935447454453,0.491190642118454,0.21260042488575,0.490303188562393,0.215598300099373,0.48792439699173,0.170807525515556,0.49568110704422,0.266901314258575,0.500975489616394,0.276122808456421,0.502185761928558,0.291436225175858,0.501507222652435,0.289922118186951,0.499080300331116,0.104368314146996,0.556356251239777,0.105806477367878,0.561408817768097,0.108839794993401,0.534003913402557,0.107047148048878,0.54235565662384,0.106692671775818,0.552581071853638,0.109341122210026,0.529610931873322,0.112582065165043,0.520435035228729,0.117402955889702,0.515225470066071,0.120380565524101,0.501812338829041,0.128098055720329,0.495208889245987,0.133440539240837,0.490760207176209,0.147670269012451,0.488253533840179,0.154856041073799,0.491426110267639,0.160542875528336,0.492542713880539,0.218656927347183,0.486182391643524,0.223614543676376,0.480363875627518,0.239039391279221,0.487200230360031,0.250078827142715,0.490122139453888,0.253892004489899,0.489924639463425,0.260839760303497,0.490058839321136,0.262981802225113,0.496745824813843,0.174681454896927,0.497081309556961,0.269625723361969,0.493369400501251,0.272147595882416,0.49399608373642,0.28041198849678,0.498595416545868,0.289182752370834,0.495231688022614,0.106287553906441,0.53719425201416,0.105563409626484,0.545167446136475,0.108713194727898,0.526031970977783,0.109629772603512,0.519431114196777,0.126016765832901,0.50296688079834,0.119919747114182,0.505326688289642,0.116258502006531,0.511723756790161,0.121383234858513,0.493221282958984,0.126730784773827,0.483609884977341,0.128614574670792,0.480782926082611,0.13882352411747,0.488824516534805,0.151483431458473,0.487664848566055,0.220414131879807,0.482015997171402,0.22795943915844,0.47892826795578,0.243298187851906,0.487126797437668,0.234532460570335,0.480508208274841, +0.256651848554611,0.486250758171082,0.264257937669754,0.492193311452866,0.2179986089468,0.484251737594604,0.27704444527626,0.495755821466446,0.281288057565689,0.492071777582169,0.293152898550034,0.491912245750427,0.284250468015671,0.492271810770035,0.102028757333755,0.55701208114624,0.103203602135181,0.552243053913116,0.107315540313721,0.527675271034241,0.105477318167686,0.541321337223053,0.112146563827991,0.516011655330658,0.117848582565784,0.499577850103378,0.12022864818573,0.489620804786682,0.132296070456505,0.483257949352264,0.137172669172287,0.485586106777191,0.148445054888725,0.484366953372955,0.154643356800079,0.487548381090164,0.157990634441376,0.489691704511642,0.222667589783669,0.47821044921875,0.225133746862412,0.476588696241379,0.23179791867733,0.476716578006744,0.240036994218826,0.482355296611786,0.253314703702927,0.485777258872986,0.266860812902451,0.485808908939362,0.266886115074158,0.489698052406311,0.27090185880661,0.486945778131485,0.275773376226425,0.489656269550323,0.294975936412811,0.492114812135696,0.286640644073486,0.48929038643837,0.291937559843063,0.489791721105576,0.104737982153893,0.548638761043549,0.104839257895947,0.516329407691956,0.105629235506058,0.521511137485504,0.107902958989143,0.51557868719101,0.11799544095993,0.49310228228569,0.116374969482422,0.506585121154785,0.11291628330946,0.512098491191864,0.119514629244804,0.47898268699646,0.130280613899231,0.475727826356888,0.142732903361321,0.480674058198929,0.149624958634377,0.482236295938492,0.15238481760025,0.484377086162567,0.163550868630409,0.491995811462402,0.228617742657661,0.474450439214706,0.243652656674385,0.482594549655914,0.234613478183746,0.472427397966385,0.264141470193863,0.481551378965378,0.273449033498764,0.486705243587494,0.281303226947784,0.487929463386536,0.297214210033417,0.487626880407333,0.284047901630402,0.487052112817764,0.288514316082001,0.489142268896103,0.100727319717407,0.552201271057129,0.107978917658329,0.511762976646423,0.116182543337345,0.498061180114746,0.113027691841125,0.508652448654175,0.117580197751522, +0.489201784133911,0.121621236205101,0.474954307079315,0.133197456598282,0.475454360246658,0.139704659581184,0.475408792495728,0.144474908709526,0.477366030216217,0.146530881524086,0.477809131145477,0.226961836218834,0.472429931163788,0.231899201869965,0.472413450479507,0.243708357214928,0.476522862911224,0.238279789686203,0.475280940532684,0.2511827647686,0.482767999172211,0.254175573587418,0.481953978538513,0.257219016551971,0.48185521364212,0.267493814229965,0.480286657810211,0.272836297750473,0.481218427419662,0.275930374860764,0.484208703041077,0.278077483177185,0.486795127391815,0.296439439058304,0.493692249059677,0.285324037075043,0.47900801897049,0.290367722511292,0.485730409622192,0.296403974294662,0.483054131269455,0.0975826010107994,0.557028532028198,0.101451463997364,0.548552691936493,0.10415056347847,0.51215922832489,0.102621242403984,0.519017100334167,0.114450663328171,0.502350330352783,0.1142987459898,0.49459108710289,0.108075134456158,0.508253693580627,0.117251038551331,0.475083440542221,0.117256097495556,0.480056256055832,0.132296070456505,0.471015810966492,0.127561271190643,0.470879077911377,0.14148211479187,0.472651481628418,0.229676112532616,0.469408005475998,0.235054045915604,0.467888802289963,0.232395470142365,0.466636747121811,0.261523395776749,0.477936983108521,0.265260607004166,0.477457165718079,0.270051091909409,0.479910671710968,0.281100690364838,0.480122089385986,0.299634784460068,0.491322308778763,0.287420511245728,0.476264595985413,0.294813901185989,0.479953706264496,0.29880428314209,0.482480615377426,0.101086862385273,0.559625089168549,0.0960937961935997,0.549899697303772,0.0990258306264877,0.5483438372612,0.0996942743659019,0.515738189220428,0.105563409626484,0.52587628364563,0.104687340557575,0.508560061454773,0.112212389707565,0.502617478370667,0.11039949208498,0.50464940071106,0.113311275839806,0.488162398338318,0.118081524968147,0.471051245927811,0.116182543337345,0.486146926879883,0.136732116341591,0.470830976963043,0.138160154223442,0.467702716588974,0.145675078034401,0.4746935069561, +0.144019156694412,0.473161667585373,0.248468488454819,0.474535256624222,0.242938637733459,0.46894845366478,0.237292319536209,0.464499741792679,0.254114806652069,0.474534004926682,0.265012472867966,0.466267079114914,0.273514866828918,0.476505160331726,0.275991141796112,0.480248689651489,0.278599083423615,0.47994738817215,0.283404767513275,0.47957518696785,0.299882918596268,0.495045572519302,0.299680352210999,0.487242013216019,0.28519743680954,0.474402338266373,0.290469020605087,0.475746810436249,0.292535096406937,0.472050130367279,0.296530574560165,0.478630751371384,0.103704929351807,0.561668395996094,0.099299281835556,0.56421172618866,0.0945746004581451,0.551132798194885,0.100909620523453,0.539994597434998,0.0995170325040817,0.511437654495239,0.10096026211977,0.520718634128571,0.107381373643875,0.504694998264313,0.11078941822052,0.49701926112175,0.114673480391502,0.477145731449127,0.115038082003593,0.472145080566406,0.134691327810287,0.46664434671402,0.126675069332123,0.464773207902908,0.121844053268433,0.464512407779694,0.140560463070869,0.468545854091644,0.141917616128922,0.468235701322556,0.231251016259193,0.465164393186569,0.245708629488945,0.467739433050156,0.234664127230644,0.463456571102142,0.251699298620224,0.474479556083679,0.25886482000351,0.473022401332855,0.26785334944725,0.47172224521637,0.259725689888,0.470148593187332,0.270339757204056,0.473466753959656,0.278907984495163,0.476222842931747,0.281779259443283,0.475843042135239,0.296464741230011,0.499161332845688,0.287141978740692,0.471558928489685,0.289881587028503,0.471458911895752,0.105381101369858,0.566323399543762,0.104520231485367,0.5727179646492,0.0969141572713852,0.562397599220276,0.0953949689865112,0.544334411621094,0.0970913916826248,0.542700052261353,0.102241449058056,0.541277050971985,0.0963115468621254,0.512249112129211,0.103770762681961,0.526962518692017,0.099030889570713,0.520666718482971,0.099056214094162,0.508699297904968,0.108971454203129,0.500272870063782,0.103841662406921,0.50437593460083,0.113655619323254,0.482318580150604,0.111275561153889, +0.488452315330505,0.114749439060688,0.465534061193466,0.117144696414471,0.463957905769348,0.139876827597618,0.465028941631317,0.249972492456436,0.467068433761597,0.239814177155495,0.46104234457016,0.2452781945467,0.463245153427124,0.233190506696701,0.462043732404709,0.235560446977615,0.459133207798004,0.25351220369339,0.467091232538223,0.258297652006149,0.465734094381332,0.267508983612061,0.465691059827805,0.272674232721329,0.47271603345871,0.276705145835876,0.476322829723358,0.282153993844986,0.472583115100861,0.293871998786926,0.468900322914124,0.103497311472893,0.57470428943634,0.0925338268280029,0.536553621292114,0.0997398495674133,0.535601615905762,0.102347791194916,0.535053431987762,0.0962153300642967,0.515610337257385,0.102221190929413,0.527501821517944,0.104297414422035,0.501275539398193,0.112906157970428,0.473732620477676,0.1130580753088,0.46810656785965,0.111716121435165,0.48088926076889,0.130209729075432,0.456839233636856,0.135916814208031,0.463380604982376,0.124538078904152,0.458740770816803,0.120243839919567,0.460177659988403,0.138372838497162,0.462689399719238,0.237459436058998,0.45933198928833,0.234502077102661,0.459024339914322,0.270273923873901,0.469573855400085,0.264050304889679,0.462389349937439,0.275717675685883,0.472417265176773,0.278599083423615,0.473638951778412,0.289228349924088,0.467731833457947,0.287673711776733,0.465315043926239,0.291993260383606,0.468068569898605,0.108885370194912,0.573316752910614,0.107234515249729,0.577440083026886,0.0980181023478508,0.567595720291138,0.0913083478808403,0.538975477218628,0.0939719900488853,0.533725440502167,0.0957696959376335,0.531168103218079,0.103846721351147,0.53722208738327,0.092285692691803,0.511873126029968,0.0967115983366966,0.507583975791931,0.104069538414478,0.531341552734375,0.0962406471371651,0.522023856639862,0.108829662203789,0.497651010751724,0.113483443856239,0.462394416332245,0.115726783871651,0.460776478052139,0.133374705910683,0.457244366407394,0.248509004712105,0.463098287582397,0.23762147128582,0.455211162567139,0.23996102809906,0.456194847822189, +0.23634535074234,0.455430179834366,0.252509534358978,0.462821036577225,0.257730484008789,0.462272882461548,0.270213156938553,0.465568244457245,0.268678784370422,0.46221336722374,0.273089498281479,0.469316840171814,0.281718492507935,0.467979967594147,0.294261932373047,0.464404791593552,0.0926553606987,0.529152631759644,0.0972028002142906,0.530245184898376,0.0999879837036133,0.530716180801392,0.0904120281338692,0.513964533805847,0.0944429412484169,0.508065044879913,0.0988739058375359,0.505417823791504,0.106895230710506,0.494061917066574,0.130209729075432,0.451056182384491,0.136504232883453,0.459073722362518,0.121119908988476,0.455226361751556,0.116992771625519,0.456774681806564,0.24609349668026,0.458363503217697,0.258829355239868,0.458082437515259,0.262814700603485,0.458691388368607,0.275611340999603,0.468352168798447,0.278426915407181,0.468873739242554,0.291522324085236,0.462399482727051,0.285850673913956,0.463533788919449,0.11000956594944,0.577938914299011,0.090624712407589,0.507806777954102,0.0926958695054054,0.507948577404022,0.0990156978368759,0.500501990318298,0.0893384665250778,0.518639862537384,0.108920812606812,0.493314981460571,0.134635627269745,0.453704655170441,0.127171337604523,0.448297590017319,0.137851238250732,0.458100169897079,0.249592691659927,0.459034472703934,0.239226758480072,0.451787948608398,0.242609485983849,0.455420076847076,0.273094534873962,0.465201109647751,0.269980221986771,0.457482367753983,0.281343758106232,0.464365571737289,0.290955156087875,0.458820521831512,0.109877906739712,0.58063417673111,0.0937390476465225,0.523611426353455,0.0883965641260147,0.510298252105713,0.0927870273590088,0.500848889350891,0.0966609567403793,0.501003324985504,0.102114848792553,0.495545655488968,0.0876521617174149,0.515917956829071,0.108424544334412,0.490061372518539,0.114339254796505,0.456651866436005,0.132437869906425,0.445844113826752,0.136671334505081,0.454531341791153,0.122618839144707,0.442252486944199,0.118577793240547,0.451714515686035,0.248529255390167,0.45505166053772,0.242867738008499,0.449681311845779, +0.262956500053406,0.452921003103256,0.27387946844101,0.460992962121964,0.276026576757431,0.464847892522812,0.294378399848938,0.454257875680923,0.280538588762283,0.460686594247818,0.288063615560532,0.458109021186829,0.107958659529686,0.581431746482849,0.0907867550849915,0.527799308300018,0.0895359590649605,0.501746475696564,0.100291818380356,0.493744134902954,0.086269699037075,0.519874215126038,0.0912020057439804,0.52419376373291,0.115498907864094,0.452123433351517,0.134681209921837,0.445330113172531,0.131187066435814,0.439676195383072,0.135850980877876,0.451147347688675,0.259269922971725,0.448611557483673,0.273160368204117,0.457035481929779,0.268552184104919,0.453260272741318,0.293355464935303,0.452676653862,0.284189701080322,0.460332095623016,0.291370391845703,0.452548801898956,0.111478120088577,0.586388111114502,0.0898600518703461,0.533211410045624,0.0865077078342438,0.50774097442627,0.09343521296978,0.493118762969971,0.0976889431476593,0.491402059793472,0.102145232260227,0.491389393806458,0.0871660262346268,0.523915231227875,0.133840590715408,0.440114229917526,0.130174279212952,0.434388160705566,0.120188139379025,0.444904744625092,0.118648692965508,0.445109844207764,0.256018847227097,0.454232573509216,0.250610560178757,0.45096629858017,0.240269929170609,0.447624087333679,0.256677180528641,0.450430780649185,0.262156397104263,0.449886411428452,0.277485013008118,0.456561982631683,0.262723535299301,0.446772068738937,0.278583884239197,0.452550053596497,0.285086005926132,0.456448048353195,0.288873851299286,0.451418250799179,0.112399756908417,0.584054887294769,0.0881585627794266,0.530118584632874,0.0904829204082489,0.493228882551193,0.0878749787807465,0.501809775829315,0.0976484268903732,0.483473151922226,0.104175880551338,0.490063905715942,0.133227840065956,0.436688452959061,0.124917879700661,0.436796069145203,0.121798478066921,0.438096255064011,0.115635633468628,0.450039595365524,0.242938637733459,0.443642556667328,0.240958631038666,0.444264143705368,0.255198508501053,0.444238841533661,0.274451702833176,0.453114688396454, +0.265498608350754,0.44652646780014,0.2927325963974,0.448858439922333,0.289841085672379,0.44766840338707,0.113012500107288,0.588818788528442,0.0879509374499321,0.493879616260529,0.0834895819425583,0.503836631774902,0.0950050428509712,0.483007282018662,0.0895055755972862,0.488929569721222,0.103507436811924,0.485984891653061,0.105279825627804,0.49297821521759,0.101051412522793,0.486278593540192,0.135572463274002,0.434867948293686,0.134681209921837,0.429624229669571,0.13019959628582,0.427626490592957,0.115777425467968,0.447955787181854,0.252377867698669,0.444319844245911,0.248929306864738,0.443346291780472,0.245713695883751,0.44053453207016,0.258074820041656,0.442447453737259,0.270739793777466,0.449049592018127,0.263275533914566,0.441984087228775,0.29461133480072,0.448952108621597,0.281115859746933,0.452242434024811,0.282240062952042,0.448083639144897,0.283814966678619,0.444612294435501,0.0855404883623123,0.527224540710449,0.0840415582060814,0.499718368053436,0.085267037153244,0.511988341808319,0.0923262014985085,0.483309835195541,0.0938909649848938,0.477904081344604,0.106363512575626,0.487364828586578,0.106216661632061,0.489368885755539,0.0980687364935875,0.479657471179962,0.135228112339973,0.422538489103317,0.136281415820122,0.429793864488602,0.123606309294701,0.430136948823929,0.126852318644524,0.422408074140549,0.240826964378357,0.440101563930511,0.242543652653694,0.434417277574539,0.255056709051132,0.43825575709343,0.249415457248688,0.438809007406235,0.274654239416122,0.449160993099213,0.268531918525696,0.445616215467453,0.290818423032761,0.444805979728699,0.293223798274994,0.445011079311371,0.279130786657333,0.448191255331039,0.28517210483551,0.440397799015045,0.0850442200899124,0.495069652795792,0.0819096267223358,0.501243889331818,0.0820919275283813,0.511681973934174,0.0901486948132515,0.484677106142044,0.10333526134491,0.476421594619751,0.137385353446007,0.422278940677643,0.138651356101036,0.423108160495758,0.121712386608124,0.433004438877106,0.124173477292061,0.422991693019867,0.13428620994091,0.418208777904511, +0.240300312638283,0.434464126825333,0.24504017829895,0.434591978788376,0.260616928339005,0.438136756420136,0.27247166633606,0.445497214794159,0.269919455051422,0.441666334867477,0.287942081689835,0.440618097782135,0.280715823173523,0.44380334019661,0.282817363739014,0.440273731946945,0.0885434225201607,0.485891193151474,0.0784863904118538,0.507396578788757,0.0792307928204536,0.51113760471344,0.0821982771158218,0.515807867050171,0.091156430542469,0.478916853666306,0.0979522690176964,0.471818447113037,0.107021830976009,0.480395525693893,0.102727584540844,0.500351369380951,0.139188125729561,0.414038598537445,0.120259031653404,0.438470959663391,0.121003434062004,0.427382171154022,0.120967984199524,0.418846845626831,0.125277414917946,0.414622247219086,0.129521027207375,0.417330175638199,0.242700636386871,0.429900199174881,0.252565234899521,0.434162795543671,0.25735068321228,0.434084326028824,0.26649621129036,0.437658220529556,0.278340816497803,0.441424518823624,0.275216341018677,0.445194661617279,0.290413320064545,0.440894067287445,0.282802164554596,0.436359286308289,0.284802436828613,0.436444133520126,0.0842036008834839,0.517440974712372,0.0914855822920799,0.47513535618782,0.0946303084492683,0.474855571985245,0.105051949620247,0.474602371454239,0.141785949468613,0.412914425134659,0.118689201772213,0.431721985340118,0.12313536554575,0.417239040136337,0.134362176060677,0.41288149356842,0.138205721974373,0.412082642316818,0.248554572463036,0.434261560440063,0.240295246243477,0.429073512554169,0.24606816470623,0.430109113454819,0.263979405164719,0.433757692575455,0.273140132427216,0.44152706861496,0.272198230028152,0.437698721885681,0.286919176578522,0.436679601669312,0.280710756778717,0.439405262470245,0.0771343111991882,0.511204719543457,0.0790130421519279,0.515917956829071,0.088447205722332,0.473731368780136,0.0870039761066437,0.481889396905899,0.0936732143163681,0.467724233865738,0.102525025606155,0.473360419273376,0.108196668326855,0.47206911444664,0.141365632414818,0.410017818212509,0.119322195649147,0.420047014951706, +0.118901886045933,0.436454236507416,0.118395492434502,0.424191862344742,0.12168200314045,0.414029747247696,0.1292425096035,0.41333344578743,0.24017371237278,0.425178080797195,0.242746204137802,0.426089584827423,0.252701967954636,0.429939448833466,0.258687555789948,0.429790079593658,0.267493814229965,0.433675408363342,0.275899976491928,0.44119918346405,0.278811752796173,0.435318648815155,0.0812968909740448,0.521057903766632,0.0900119692087173,0.470819592475891,0.0912526398897171,0.470647394657135,0.0860823318362236,0.488673865795136,0.0907968878746033,0.463148951530457,0.0978459268808365,0.465347975492477,0.10344160348177,0.46914467215538,0.105608984827995,0.469338357448578,0.109989315271378,0.477652132511139,0.144414141774178,0.409640550613403,0.116628170013428,0.437134087085724,0.126943469047546,0.409507632255554,0.136575132608414,0.409662067890167,0.132934138178825,0.40907084941864,0.139755293726921,0.407977044582367,0.245673179626465,0.426052868366241,0.263994604349136,0.429696381092072,0.277277380228043,0.437193602323532,0.27196529507637,0.433677941560745,0.0828971043229103,0.486051976680756,0.0880471542477608,0.471262663602829,0.0852569118142128,0.491910994052887,0.0928123444318771,0.464035123586655,0.107827000319958,0.461222112178802,0.108839794993401,0.484246671199799,0.109963990747929,0.471590578556061,0.115579925477505,0.417506158351898,0.116957329213619,0.41312962770462,0.122765697538853,0.409250646829605,0.143097519874573,0.406803458929062,0.249521791934967,0.425698399543762,0.242366418242455,0.41929879784584,0.255431443452835,0.425733834505081,0.261280328035355,0.426142752170563,0.267316579818726,0.42953559756279,0.275621473789215,0.434062778949738,0.0855252966284752,0.470898061990738,0.0893637835979462,0.467621684074402,0.0842694342136383,0.490423440933228,0.0928072780370712,0.459878891706467,0.103669486939907,0.464114904403687,0.110353916883469,0.458525538444519,0.110627368092537,0.464779525995255,0.116486378014088,0.423976629972458,0.118587926030159,0.408844262361526,0.123813934624195,0.404881685972214, +0.129941329360008,0.405786871910095,0.137957587838173,0.405954003334045,0.246382132172585,0.42133703827858,0.240852281451225,0.421583920717239,0.264273136854172,0.42539456486702,0.270714491605759,0.43022683262825,0.276416510343552,0.432291656732559,0.0828160792589188,0.478657335042953,0.0872926190495491,0.467162132263184,0.0815804675221443,0.489204317331314,0.0914551988244057,0.455722630023956,0.0985852628946304,0.459005355834961,0.10166921466589,0.467189997434616,0.104464523494244,0.45990926027298,0.108687870204449,0.45626699924469,0.116861112415791,0.428306341171265,0.111832596361637,0.416957974433899,0.113301143050194,0.413514494895935,0.115119107067585,0.409320265054703,0.134068459272385,0.405861586332321,0.142180934548378,0.404790550470352,0.252241134643555,0.42183330655098,0.245521262288094,0.417168140411377,0.239910393953323,0.413952529430389,0.256489813327789,0.421110451221466,0.260206758975983,0.421302855014801,0.267934381961823,0.425364166498184,0.0803955048322678,0.484361886978149,0.0823400616645813,0.473897218704224,0.0797219946980476,0.496282458305359,0.0933946967124939,0.456274598836899,0.099689207971096,0.463619887828827,0.101902157068253,0.464069306850433,0.105846986174583,0.454419940710068,0.10305167734623,0.459229439496994,0.110358983278275,0.452629804611206,0.114202529191971,0.422892957925797,0.118380300700665,0.40478041768074,0.131359249353409,0.402543425559998,0.136975184082985,0.403033345937729,0.249901592731476,0.41670098900795,0.242857620120049,0.412991642951965,0.239373609423637,0.419348180294037,0.26416677236557,0.42045846581459,0.0786889493465424,0.479211837053299,0.0774381458759308,0.496071040630341,0.0950911268591881,0.452146202325821,0.0994511991739273,0.469718158245087,0.100777961313725,0.459672540426254,0.110404558479786,0.413698047399521,0.113478384912014,0.429034262895584,0.10965508967638,0.418392360210419,0.112014897167683,0.4084492623806,0.113053008913994,0.40389296412468,0.124097518622875,0.401630640029907,0.141264364123344,0.40292701125145,0.25613534450531,0.416560471057892,0.245369344949722, +0.412586510181427,0.23762147128582,0.412696659564972,0.239434376358986,0.407804876565933,0.261574029922485,0.418789863586426,0.267554581165314,0.42016726732254,0.0771900117397308,0.48175773024559,0.0788965672254562,0.475539207458496,0.0781167149543762,0.490669041872025,0.0763190090656281,0.501732528209686,0.0934807881712914,0.449311643838882,0.101036220788956,0.455303579568863,0.108647361397743,0.448973625898361,0.111275561153889,0.42824050784111,0.106874972581863,0.421553522348404,0.118365108966827,0.401240706443787,0.133141756057739,0.399972170591354,0.142170801758766,0.39978101849556,0.249987676739693,0.412292808294296,0.237378403544426,0.409074664115906,0.259361088275909,0.416265487670898,0.26408576965332,0.415851503610611,0.270785391330719,0.424194395542145,0.0779344141483307,0.486844509840012,0.0744554698467255,0.50390625,0.0792054682970047,0.500356435775757,0.0908272713422775,0.452418386936188,0.097618043422699,0.448595106601715,0.102641500532627,0.456464499235153,0.112602315843105,0.448815375566483,0.108135901391506,0.414100646972656,0.108161218464375,0.408068209886551,0.110131099820137,0.432741105556488,0.104854449629784,0.41788849234581,0.109695598483086,0.405804604291916,0.112708657979965,0.401278674602509,0.116602852940559,0.398351728916168,0.147184133529663,0.399394899606705,0.253892004489899,0.412068724632263,0.244508475065231,0.406575590372086,0.237530320882797,0.400245636701584,0.234345093369484,0.404766499996185,0.257608950138092,0.412718176841736,0.267539381980896,0.415992021560669,0.270284056663513,0.419898897409439,0.097759835422039,0.444642692804337,0.10283899307251,0.449286341667175,0.104834198951721,0.449921876192093,0.117119371891022,0.440505415201187,0.112394697964191,0.433012008666992,0.119686804711819,0.396351456642151,0.130473047494888,0.397483229637146,0.247496202588081,0.404752552509308,0.234785661101341,0.400621622800827,0.264156639575958,0.41156992316246,0.273398399353027,0.423900693655014,0.0944986417889595,0.445627629756927,0.104418948292732,0.414262682199478,0.106930680572987,0.405815988779068, +0.114865906536579,0.432487905025482,0.108728386461735,0.400793820619583,0.111807271838188,0.398964464664459,0.141917616128922,0.39619192481041,0.254808574914932,0.405274152755737,0.240548446774483,0.399565786123276,0.234704628586769,0.396099507808685,0.231959968805313,0.401134371757507,0.270289123058319,0.415937602519989,0.269833356142044,0.411985158920288,0.2752366065979,0.428168326616287,0.272983133792877,0.419907748699188,0.0968280658125877,0.441343516111374,0.104996241629124,0.444530010223389,0.103669486939907,0.410568535327911,0.1140506118536,0.436598569154739,0.114805139601231,0.396503359079361,0.148840054869652,0.396602123975754,0.246498599648476,0.399639219045639,0.239449560642242,0.396374225616455,0.230957299470901,0.394674003124237,0.260900527238846,0.403337180614471,0.275737941265106,0.42393359541893,0.0991119146347046,0.440680116415024,0.104712657630444,0.440629482269287,0.1073864325881,0.446570783853531,0.105350717902184,0.401759773492813,0.110014632344246,0.436884701251984,0.251142263412476,0.400714039802551,0.237910121679306,0.394352436065674,0.229498878121376,0.39854034781456,0.274790972471237,0.415847718715668,0.268268585205078,0.405415952205658,0.275737941265106,0.419993847608566,0.277069747447968,0.428002506494522,0.108110584318638,0.436622619628906,0.10415056347847,0.406140089035034,0.11103755235672,0.440982699394226,0.257857084274292,0.395899474620819,0.247481018304825,0.396153956651688,0.231661185622215,0.393871366977692,0.227615088224411,0.396576792001724,0.273312300443649,0.411561071872711,0.26359960436821,0.399830400943756,0.278609216213226,0.423637360334396,0.103411220014095,0.435417413711548,0.11277449131012,0.440181314945221,0.249780058860779,0.394309401512146,0.225984483957291,0.39415243268013,0.278112947940826,0.419384896755219,0.275667041540146,0.411688923835754,0.267098814249039,0.398499846458435,0.269787788391113,0.398928999900818,0.278796583414078,0.428064525127411,0.106469854712486,0.43627193570137,0.262753933668137,0.395789355039597,0.278452217578888,0.415808469057083,0.276041775941849, +0.4069604575634,0.27247166633606,0.399412602186203,0.280690491199493,0.428269624710083,0.28091835975647,0.419707715511322,0.106398962438107,0.432427138090134,0.257791250944138,0.394113183021545,0.280158787965775,0.414936184883118,0.264495939016342,0.394347369670868,0.268050849437714,0.395779222249985,0.281520992517471,0.424374163150787,0.2749884724617,0.398227661848068,0.278690218925476,0.407331377267838,0.28289332985878,0.428493708372116,0.283556699752808,0.420644551515579,0.282766729593277,0.416992157697678,0.278624385595322,0.40265354514122,0.28155642747879,0.412610560655594,0.284812569618225,0.424591898918152,0.2787104845047,0.399858236312866,0.287248343229294,0.42881777882576,0.276917845010757,0.396737575531006,0.281353861093521,0.404651284217834,0.27090185880661,0.394010633230209,0.381503909826279,0.798117518424988,0.38382825255394,0.795180439949036,0.385869055986404,0.797864317893982,0.380734175443649,0.79636538028717,0.387205928564072,0.793828368186951,0.381767243146896,0.80022919178009,0.377397030591965,0.79835045337677,0.381969779729843,0.79396003484726,0.384238451719284,0.791959762573242,0.390649437904358,0.796319842338562,0.388198465108871,0.801591396331787,0.377873033285141,0.799965858459473,0.378738969564438,0.795367836952209,0.387757897377014,0.789123952388763,0.3909532725811,0.789073288440704,0.391074806451797,0.799596190452576,0.382278680801392,0.802786529064178,0.378531366586685,0.801905393600464,0.381083607673645,0.792359828948975,0.384015619754791,0.78910368680954,0.394872784614563,0.792491495609283,0.394796818494797,0.798694849014282,0.394518285989761,0.802624464035034,0.389697402715683,0.80409300327301,0.374946057796478,0.799955785274506,0.386405825614929,0.786586880683899,0.390305072069168,0.78476893901825,0.394842386245728,0.785442411899567,0.390072137117386,0.806346476078033,0.380339205265045,0.804923534393311,0.376490592956543,0.802933394908905,0.383311748504639,0.787938952445984,0.398954331874847,0.787680685520172,0.399172067642212,0.793089032173157,0.399602502584457,0.800360858440399,0.394523352384567, +0.806685745716095,0.383661150932312,0.807303547859192,0.386577993631363,0.783984005451202,0.392381310462952,0.780525326728821,0.399643033742905,0.78065699338913,0.398093461990356,0.804503202438354,0.390527874231339,0.809121549129486,0.392978847026825,0.809516549110413,0.3821622133255,0.808255612850189,0.384096652269363,0.784313201904297,0.389069467782974,0.781740665435791,0.395966589450836,0.775491774082184,0.406226187944412,0.78082412481308,0.403846114873886,0.789189755916595,0.403547346591949,0.794998109340668,0.401850908994675,0.804219603538513,0.398868232965469,0.807131409645081,0.38580322265625,0.810017883777618,0.395784288644791,0.810362219810486,0.386314660310745,0.781477332115173,0.392219245433807,0.777127385139465,0.389160633087158,0.779026389122009,0.404261350631714,0.785847544670105,0.40664142370224,0.776256382465363,0.400726705789566,0.771658301353455,0.405755221843719,0.797742784023285,0.398204863071442,0.810286223888397,0.393373847007751,0.811982691287994,0.397536426782608,0.81300562620163,0.391895145177841,0.774195373058319,0.414531081914902,0.778768122196198,0.411462306976318,0.776671648025513,0.397343993186951,0.769617557525635,0.41174590587616,0.78452080488205,0.407081991434097,0.790101289749146,0.402959913015366,0.807511210441589,0.406448990106583,0.801854729652405,0.400676071643829,0.809896349906921,0.400210201740265,0.813324630260468,0.386122226715088,0.779259324073792,0.388785898685455,0.776382982730865,0.394437283277512,0.770762026309967,0.407755494117737,0.771167099475861,0.399789869785309,0.762897670269012,0.41025710105896,0.791012823581696,0.410510301589966,0.795205771923065,0.403400480747223,0.813117027282715,0.391368508338928,0.771313965320587,0.388441532850266,0.773876368999481,0.416343986988068,0.772964835166931,0.415938854217529,0.782971203327179,0.407319992780685,0.766082882881165,0.41188770532608,0.769359290599823,0.393708050251007,0.766077816486359,0.402276277542114,0.76420921087265,0.396523624658585,0.761545598506927,0.406768023967743,0.808078348636627,0.404803216457367,0.810939490795136, +0.411877572536469,0.798482120037079,0.404423415660858,0.815674304962158,0.39088237285614,0.768493354320526,0.420395165681839,0.773172438144684,0.420248299837112,0.778970718383789,0.399106234312058,0.760061860084534,0.414206981658936,0.790800094604492,0.40912276506424,0.802659928798676,0.41580718755722,0.796203374862671,0.406950324773788,0.81430196762085,0.388223797082901,0.771511495113373,0.416030019521713,0.766842484474182,0.420435667037964,0.768447756767273,0.421235769987106,0.78383207321167,0.407492160797119,0.756633520126343,0.411634504795074,0.76393073797226,0.390335470438004,0.765870213508606,0.393080115318298,0.763115406036377,0.404063880443573,0.753858506679535,0.395389288663864,0.757737457752228,0.406975656747818,0.812018096446991,0.41008996963501,0.805911004543304,0.414308279752731,0.80238139629364,0.406651556491852,0.81601357460022,0.424491912126541,0.768533885478973,0.425565451383591,0.772007763385773,0.411725640296936,0.756542384624481,0.388046532869339,0.769303560256958,0.392502844333649,0.760360598564148,0.400807738304138,0.751716434955597,0.397819995880127,0.753701508045197,0.418430328369141,0.792435765266418,0.409143030643463,0.813101828098297,0.410287469625473,0.809946954250336,0.418055593967438,0.800138056278229,0.408049196004868,0.81369936466217,0.415685653686523,0.760649263858795,0.420567333698273,0.764290273189545,0.424881815910339,0.762396335601807,0.42452734708786,0.783680200576782,0.407411158084869,0.747391819953918,0.38997083902359,0.763439536094666,0.403658747673035,0.748931229114532,0.392143279314041,0.757686853408813,0.394852519035339,0.754709243774414,0.413609445095062,0.807870745658875,0.416946589946747,0.804827272891998,0.409801334142685,0.816803574562073,0.420147031545639,0.760441660881042,0.429611563682556,0.76247227191925,0.422380238771439,0.787837684154511,0.42772775888443,0.776195645332336,0.411740839481354,0.747761487960815,0.416870623826981,0.754380106925964,0.396989494562149,0.749199628829956,0.399789869785309,0.746925950050354,0.39440181851387,0.751974701881409,0.421023070812225, +0.796436309814453,0.412282675504684,0.814590632915497,0.421458572149277,0.802492797374725,0.428786128759384,0.758086919784546,0.431657403707504,0.766244947910309,0.424486845731735,0.790364623069763,0.430310398340225,0.781249463558197,0.403653681278229,0.743092477321625,0.413736045360565,0.739416062831879,0.416050285100937,0.748769223690033,0.391910344362259,0.755276381969452,0.411644607782364,0.817927777767181,0.413695514202118,0.8128941655159,0.416870623826981,0.808837950229645,0.419068396091461,0.808994948863983,0.420278668403625,0.753341972827911,0.424962848424912,0.757271587848663,0.433024674654007,0.754258513450623,0.43715688586235,0.756187915802002,0.428355693817139,0.78612607717514,0.435121148824692,0.770524024963379,0.4342400431633,0.776418447494507,0.407877027988434,0.740975737571716,0.396371692419052,0.746343553066254,0.393900483846664,0.749392092227936,0.399227768182755,0.743882477283478,0.414571583271027,0.819482386112213,0.421215504407883,0.807182013988495,0.429054528474808,0.749523758888245,0.435607314109802,0.765060007572174,0.428740561008453,0.792506694793701,0.433683007955551,0.781077325344086,0.431009232997894,0.785396873950958,0.407937794923782,0.735749781131744,0.419534265995026,0.741097271442413,0.411543339490891,0.735076248645782,0.420729368925095,0.745583951473236,0.401795208454132,0.740281999111176,0.424071580171585,0.801874995231628,0.416698455810547,0.813015699386597,0.420212835073471,0.812879025936127,0.424517214298248,0.752050638198853,0.437703788280487,0.7501060962677,0.4332475066185,0.749240159988403,0.438969761133194,0.76006692647934,0.425641417503357,0.793716967105865,0.436893552541733,0.774408042430878,0.437916457653046,0.767029881477356,0.435759216547012,0.780717730522156,0.404575318098068,0.735121846199036,0.4237120449543,0.737142324447632,0.418106228113174,0.733886241912842,0.424517214298248,0.747128486633301,0.393591582775116,0.747006952762604,0.396027356386185,0.743715345859528,0.398609966039658,0.739502131938934,0.418015092611313,0.814266502857208,0.446099847555161,0.737491726875305, +0.433318376541138,0.744581282138824,0.442296802997589,0.756517052650452,0.432285338640213,0.787645280361176,0.426314920186996,0.799145519733429,0.408788532018662,0.731349170207977,0.424709647893906,0.74240380525589,0.412849843502045,0.729607164859772,0.401293873786926,0.735947251319885,0.415999621152878,0.821715593338013,0.42920646071434,0.742859542369843,0.437430322170258,0.74168473482132,0.444286942481995,0.74748295545578,0.441714435815811,0.737436056137085,0.440407931804657,0.763206541538239,0.439415395259857,0.769673228263855,0.437764555215836,0.77847945690155,0.40359291434288,0.729612231254578,0.424729913473129,0.732594907283783,0.420111566781998,0.72399628162384,0.395799487829208,0.741279602050781,0.397941529750824,0.735800385475159,0.400448203086853,0.731885969638824,0.447720319032669,0.74058586359024,0.448277354240417,0.723388612270355,0.433439910411835,0.737233519554138,0.444246411323547,0.754886448383331,0.442808270454407,0.761348068714142,0.408560663461685,0.727996826171875,0.429160863161087,0.734316647052765,0.424426078796387,0.72719669342041,0.415878087282181,0.721145272254944,0.395601987838745,0.739071726799011,0.437734156847,0.736200451850891,0.451184064149857,0.728766560554504,0.44734051823616,0.746611952781677,0.444742679595947,0.728624761104584,0.450809329748154,0.723895013332367,0.440813064575195,0.770959496498108,0.399967104196548,0.727865159511566,0.405461519956589,0.722598612308502,0.412095308303833,0.724082350730896,0.428745627403259,0.730488300323486,0.420152068138123,0.715412855148315,0.424628615379334,0.716937124729156,0.397576928138733,0.73189103603363,0.441765069961548,0.727774024009705,0.453250139951706,0.728103160858154,0.451700568199158,0.737704455852509,0.44588714838028,0.720284402370453,0.453240036964417,0.709594368934631,0.433358907699585,0.730230033397675,0.437480956315994,0.727738559246063,0.447036683559418,0.751908838748932,0.446251749992371,0.757210850715637,0.402494043111801,0.724416613578796,0.40892019867897,0.722345411777496,0.428598761558533,0.725034415721893,0.412075072526932, +0.718046128749847,0.415888220071793,0.715944588184357,0.429550796747208,0.717762529850006,0.457017749547958,0.711746573448181,0.451634764671326,0.742565870285034,0.450181394815445,0.710217237472534,0.456521481275558,0.7082878947258,0.449168592691422,0.748419761657715,0.399582266807556,0.725581288337708,0.401931941509247,0.718552529811859,0.40827202796936,0.716663658618927,0.433156341314316,0.724710285663605,0.414799481630325,0.71118950843811,0.424203246831894,0.711199641227722,0.428578525781631,0.71118950843811,0.442068934440613,0.718689262866974,0.456410080194473,0.718511998653412,0.455159276723862,0.728128492832184,0.454819977283478,0.7368283867836,0.447801321744919,0.711680710315704,0.44979652762413,0.705290019512177,0.45760515332222,0.700676739215851,0.449128091335297,0.752546906471252,0.399268299341202,0.72115033864975,0.404524683952332,0.71530145406723,0.433156341314316,0.720542669296265,0.410925537347794,0.712961912155151,0.420699000358582,0.70611035823822,0.433156341314316,0.70958423614502,0.437308788299561,0.721899807453156,0.459478825330734,0.714440584182739,0.4602991938591,0.705026686191559,0.452338635921478,0.746191620826721,0.445421278476715,0.713144242763519,0.445877015590668,0.708333432674408,0.460749894380569,0.700666606426239,0.401182472705841,0.715539455413818,0.407183259725571,0.711736440658569,0.432553738355637,0.717018127441406,0.417736560106277,0.704621553421021,0.412865042686462,0.703740417957306,0.424375414848328,0.705674886703491,0.428801327943802,0.705401420593262,0.437430322170258,0.716759860515594,0.461549997329712,0.708789229393005,0.457483619451523,0.728158891201019,0.442210704088211,0.710455238819122,0.454490840435028,0.698068797588348,0.446079581975937,0.701881945133209,0.461514532566071,0.694918990135193,0.403587847948074,0.710505902767181,0.424360245466232,0.700317203998566,0.408839195966721,0.703801214694977,0.437734156847,0.710399568080902,0.432958841323853,0.703669548034668,0.46136263012886,0.713964581489563,0.463033735752106,0.700124740600586,0.450226962566376,0.696812927722931, +0.459316790103912,0.691936314105988,0.441471368074417,0.706505358219147,0.400863438844681,0.712683379650116,0.405831187963486,0.705107688903809,0.423484176397324,0.693987250328064,0.410864770412445,0.696534395217896,0.428932994604111,0.698266267776489,0.437197387218475,0.705325424671173,0.465003609657288,0.705998957157135,0.455012410879135,0.688953638076782,0.445937782526016,0.69473671913147,0.441739767789841,0.700676739215851,0.462365299463272,0.686755895614624,0.464370608329773,0.689085304737091,0.400701403617859,0.710181772708893,0.403015613555908,0.706961095333099,0.404970318078995,0.701167941093445,0.407735228538513,0.698504269123077,0.433348774909973,0.697157263755798,0.438063323497772,0.69909679889679,0.466193646192551,0.693217515945435,0.450520664453506,0.690801978111267,0.460177659988403,0.684441685676575,0.402570009231567,0.704429149627686,0.428943127393723,0.691662847995758,0.414232313632965,0.693815052509308,0.40706679224968,0.695577323436737,0.433034807443619,0.691450178623199,0.468097686767578,0.69620019197464,0.45031812787056,0.687849700450897,0.454293340444565,0.684142887592316,0.441547334194183,0.694903790950775,0.445740282535553,0.689318239688873,0.466305047273636,0.681342542171478,0.467084914445877,0.684978425502777,0.424385547637939,0.689287900924683,0.409968435764313,0.69305545091629,0.404494315385818,0.698635935783386,0.402570009231567,0.701826274394989,0.438969761133194,0.692645311355591,0.467647016048431,0.692290782928467,0.458400219678879,0.680977880954742,0.466598778963089,0.673959255218506,0.428973495960236,0.68480122089386,0.413219511508942,0.690938711166382,0.407127559185028,0.692933917045593,0.437055587768555,0.686001360416412,0.470746159553528,0.685707628726959,0.449978828430176,0.68403148651123,0.454759210348129,0.67848140001297,0.463428735733032,0.674582123756409,0.468983888626099,0.674855589866638,0.469383955001831,0.684436619281769,0.42459824681282,0.677554666996002,0.432675272226334,0.682562947273254,0.409284800291061,0.690189242362976,0.415878087282181,0.685803890228271,0.441339701414108, +0.682456612586975,0.471855163574219,0.690336108207703,0.445846647024155,0.681053876876831,0.458931922912598,0.674956858158112,0.472169131040573,0.671619713306427,0.470670193433762,0.677858531475067,0.463094502687454,0.669492840766907,0.420435667037964,0.679397940635681,0.426198452711105,0.672829985618591,0.432619571685791,0.676759600639343,0.412181407213211,0.687940835952759,0.437187254428864,0.678471267223358,0.474458038806915,0.683940351009369,0.450702995061874,0.677742063999176,0.454566776752472,0.671761512756348,0.474047869443893,0.663679420948029,0.467454582452774,0.666469633579254,0.420111566781998,0.675782263278961,0.422511875629425,0.673746585845947,0.409330397844315,0.68764716386795,0.411619305610657,0.685074687004089,0.414622247219086,0.682841420173645,0.441977769136429,0.67304265499115,0.473278135061264,0.675301194190979,0.446094781160355,0.672505915164948,0.459929525852203,0.66904217004776,0.475379675626755,0.66765969991684,0.415022283792496,0.679580271244049,0.422253638505936,0.671017110347748,0.430502831935883,0.670110642910004,0.436366885900497,0.668621838092804,0.47696977853775,0.671452581882477,0.45014089345932,0.671012043952942,0.455660611391068,0.664469361305237,0.471070259809494,0.662459015846252,0.48024109005928,0.664332687854767,0.467403948307037,0.662960350513458,0.417422592639923,0.674394726753235,0.419833064079285,0.673103451728821,0.425286948680878,0.668834507465363,0.41196870803833,0.682021081447601,0.441344767808914,0.667988836765289,0.476883679628372,0.678987801074982,0.4460289478302,0.664752960205078,0.45015099644661,0.663664221763611,0.46711528301239,0.659521877765656,0.476250678300858,0.658428072929382,0.47888395190239,0.661719679832459,0.422825843095779,0.668014168739319,0.434543877840042,0.664084553718567,0.428522825241089,0.66694563627243,0.438529223203659,0.66203361749649,0.479415655136108,0.669457376003265,0.454526275396347,0.655637860298157,0.458541989326477,0.654832661151886,0.471733629703522,0.655273199081421,0.481643795967102,0.659076273441315,0.419929265975952,0.67102724313736, +0.425611048936844,0.66575562953949,0.442337304353714,0.660377681255341,0.482150197029114,0.667781233787537,0.449664860963821,0.65811413526535,0.465272009372711,0.654452860355377,0.475349307060242,0.65425032377243,0.479542255401611,0.657359600067139,0.484109967947006,0.663431286811829,0.428416460752487,0.664216160774231,0.435126215219498,0.660043478012085,0.440488964319229,0.657435536384583,0.480656325817108,0.675944328308105,0.45014089345932,0.655384659767151,0.456025213003159,0.65198165178299,0.460359960794449,0.651753783226013,0.477992683649063,0.654700994491577,0.471895664930344,0.652295589447021,0.483309835195541,0.659400343894959,0.481841295957565,0.655561864376068,0.431044667959213,0.662104487419128,0.444651544094086,0.656422734260559,0.483958035707474,0.671427249908447,0.467454582452774,0.65146005153656,0.47747614979744,0.652558922767639,0.475121408700943,0.651176452636719,0.48500120639801,0.667912900447845,0.485072106122971,0.659927010536194,0.478124350309372,0.652361452579498,0.43247777223587,0.659547209739685,0.440007895231247,0.655273199081421,0.444347709417343,0.65383505821228,0.447456985712051,0.653029918670654,0.451260030269623,0.652239918708801,0.459438323974609,0.650538444519043,0.464826375246048,0.649991512298584,0.471136063337326,0.649956047534943,0.4833604991436,0.656615197658539,0.481436192989349,0.653050124645233,0.455204844474792,0.649864912033081,0.459326922893524,0.649404108524323,0.466801315546036,0.649125576019287,0.447634220123291,0.651834785938263,0.463185667991638,0.648978710174561,0.682556629180908,0.824998319149017,0.685336709022522,0.819270968437195,0.68485563993454,0.826877057552338,0.682652831077576,0.816982090473175,0.687630712985992,0.826456725597382,0.682835102081299,0.830908000469208,0.678606688976288,0.818187296390533,0.683913767337799,0.814293086528778,0.687757313251495,0.820329368114471,0.686805248260498,0.832422077655792,0.679538488388062,0.824760317802429,0.684911370277405,0.832285404205322,0.678358554840088,0.812956213951111,0.685772240161896,0.816435158252716,0.680455029010773, +0.811345875263214,0.690025925636292,0.826375722885132,0.689919590950012,0.835566818714142,0.679665088653564,0.829971134662628,0.682450234889984,0.840205430984497,0.67345666885376,0.825079381465912,0.676125347614288,0.81347781419754,0.68132096529007,0.809745669364929,0.68888658285141,0.838159561157227,0.686202645301819,0.839066028594971,0.678819417953491,0.83574914932251,0.667739450931549,0.823950111865997,0.668028116226196,0.816095888614655,0.676682412624359,0.809122800827026,0.678145885467529,0.807674527168274,0.691413462162018,0.830604135990143,0.688557386398315,0.841699302196503,0.674190938472748,0.830082535743713,0.686065912246704,0.842853844165802,0.679371356964111,0.840767502784729,0.670241057872772,0.811973810195923,0.673578202724457,0.809451937675476,0.692340195178986,0.839719295501709,0.691079258918762,0.840838432312012,0.674434006214142,0.835318684577942,0.68319970369339,0.848135590553284,0.679346024990082,0.844935178756714,0.676176011562347,0.842529773712158,0.664169371128082,0.819210231304169,0.666073381900787,0.830507934093475,0.6636021733284,0.810849606990814,0.671542465686798,0.80690985918045,0.675284743309021,0.805638790130615,0.689722120761871,0.845431447029114,0.688243448734283,0.848424255847931,0.663647770881653,0.826947927474976,0.667683720588684,0.809082269668579,0.6922287940979,0.844712316989899,0.669689059257507,0.835647821426392,0.685751974582672,0.85220193862915,0.679320752620697,0.851594269275665,0.675624012947083,0.848039388656616,0.660624563694,0.827510058879852,0.660027027130127,0.815594553947449,0.661566495895386,0.833075344562531,0.665146708488464,0.807254195213318,0.668164789676666,0.801547110080719,0.690056324005127,0.850409328937531,0.672160267829895,0.843623578548431,0.687519311904907,0.853169143199921,0.68171089887619,0.85689115524292,0.671436131000519,0.849882662296295,0.660239696502686,0.820861101150513,0.659966230392456,0.812029540538788,0.659297823905945,0.808170795440674,0.66619998216629,0.803501784801483,0.669856190681458,0.800189971923828,0.692243993282318,0.847846925258636, +0.667653381824493,0.844737648963928,0.68803071975708,0.856334149837494,0.683842837810516,0.857797622680664,0.678181350231171,0.857559621334076,0.675522744655609,0.854739010334015,0.656548082828522,0.830249667167664,0.656664550304413,0.825054049491882,0.656365752220154,0.818587362766266,0.656284749507904,0.813371479511261,0.659485161304474,0.803967714309692,0.663440108299255,0.800584971904755,0.665718913078308,0.798220098018646,0.660756230354309,0.845036447048187,0.680834829807281,0.86365157365799,0.67801421880722,0.862967908382416,0.671501994132996,0.856850683689117,0.657029151916504,0.834128677845001,0.655631482601166,0.806281924247742,0.669385254383087,0.798858165740967,0.691089391708374,0.853148937225342,0.667926788330078,0.85173100233078,0.685179710388184,0.860486567020416,0.674560606479645,0.85868889093399,0.653752744197845,0.832300543785095,0.653008341789246,0.827935457229614,0.652208268642426,0.818177163600922,0.655135214328766,0.809816539287567,0.655479609966278,0.79948103427887,0.661262631416321,0.796554028987885,0.658953487873077,0.799283504486084,0.663424968719482,0.794862687587738,0.675700008869171,0.803061246871948,0.661520898342133,0.853341341018677,0.656573414802551,0.844297111034393,0.689296722412109,0.858471155166626,0.681969165802002,0.865287244319916,0.675907611846924,0.867044448852539,0.674474537372589,0.864421308040619,0.667445719242096,0.857736885547638,0.670965194702148,0.861934900283813,0.651134729385376,0.8383469581604,0.652522206306458,0.813493013381958,0.651620864868164,0.80436772108078,0.68361496925354,0.865251779556274,0.640723168849945,0.837394893169403,0.64174610376358,0.831733405590057,0.644895911216736,0.820243239402771,0.646045386791229,0.812961280345917,0.643842577934265,0.809127867221832,0.65145879983902,0.797875761985779,0.656401216983795,0.79592102766037,0.66054356098175,0.792599081993103,0.65678608417511,0.859701693058014,0.656340479850769,0.852921009063721,0.652694404125214,0.844616115093231,0.678540885448456,0.868842124938965,0.67097532749176,0.86569744348526,0.666594982147217, +0.862127304077148,0.648471057415009,0.846287250518799,0.640064895153046,0.801577508449554,0.641239702701569,0.798042833805084,0.658619225025177,0.794452488422394,0.674788475036621,0.870411992073059,0.671010732650757,0.869075059890747,0.640925765037537,0.848226726055145,0.637001156806946,0.832057476043701,0.637193620204926,0.823038578033447,0.636965751647949,0.81838983297348,0.636991024017334,0.813589215278625,0.636601150035858,0.80939120054245,0.644460380077362,0.795490622520447,0.653489470481873,0.793059885501862,0.656715214252472,0.791768610477448,0.651904404163361,0.85799515247345,0.662356436252594,0.864902377128601,0.652623534202576,0.851411998271942,0.676687479019165,0.872376799583435,0.667455852031708,0.86823445558548,0.647574722766876,0.851832270622253,0.63694041967392,0.837192356586456,0.636069416999817,0.80215984582901,0.639482498168945,0.795961558818817,0.654325008392334,0.862127304077148,0.670580327510834,0.873308539390564,0.672383069992065,0.874220073223114,0.67991828918457,0.869895458221436,0.66619998216629,0.8718501329422,0.641006767749786,0.854941546916962,0.63694041967392,0.847998857498169,0.632656276226044,0.837658226490021,0.633213341236115,0.830978870391846,0.632853806018829,0.820187568664551,0.63263601064682,0.813614547252655,0.636135220527649,0.79732882976532,0.632327139377594,0.808824002742767,0.644571781158447,0.79365748167038,0.653155207633972,0.790725409984589,0.645311117172241,0.86133736371994,0.65678608417511,0.865702450275421,0.663931310176849,0.869966328144073,0.645959317684174,0.8575798869133,0.632094204425812,0.802463710308075,0.648369789123535,0.791236877441406,0.63718855381012,0.79319155216217,0.649853527545929,0.864401042461395,0.660578966140747,0.871860265731812,0.667997717857361,0.874630272388458,0.640657365322113,0.860243499279022,0.636960685253143,0.854642808437347,0.632990539073944,0.849183797836304,0.629364728927612,0.831743538379669,0.628650724887848,0.825514853000641,0.628757059574127,0.818764567375183,0.628291130065918,0.813270211219788,0.630721867084503,0.793951153755188, +0.628129124641418,0.808515131473541,0.642991840839386,0.790244340896606,0.644703447818756,0.868852257728577,0.64881032705307,0.869323194026947,0.663323640823364,0.876032948493958,0.668028116226196,0.877547085285187,0.658264756202698,0.876088678836823,0.628620326519012,0.839207828044891,0.627911329269409,0.803749918937683,0.646896183490753,0.787757933139801,0.63694041967392,0.790629208087921,0.640996634960175,0.866684913635254,0.649625658988953,0.87422513961792,0.664052903652191,0.878610551357269,0.649493992328644,0.876949548721313,0.636920154094696,0.859863698482513,0.632560074329376,0.854911148548126,0.628513991832733,0.851872801780701,0.624452650547028,0.835268080234528,0.624498248100281,0.818951964378357,0.624361515045166,0.813224613666534,0.62697958946228,0.794948756694794,0.624224781990051,0.808661997318268,0.631182670593262,0.790669739246368,0.638059556484222,0.788547933101654,0.641320765018463,0.874964475631714,0.659556090831757,0.878240883350372,0.653023540973663,0.878473818302155,0.624361515045166,0.850130796432495,0.624402046203613,0.840250968933105,0.624498248100281,0.827768325805664,0.623009443283081,0.797313630580902,0.623409509658813,0.803765118122101,0.637142956256866,0.865808844566345,0.645108580589294,0.876164615154266,0.637679755687714,0.873465538024902,0.658264756202698,0.882038831710815,0.64947372674942,0.880028426647186,0.633117139339447,0.859230756759644,0.628594994544983,0.857129156589508,0.623991847038269,0.854551613330841,0.621105372905731,0.836184620857239,0.619976103305817,0.83020406961441,0.619403898715973,0.824593186378479,0.619839370250702,0.813604414463043,0.623181641101837,0.793348550796509,0.627815127372742,0.789889872074127,0.619834363460541,0.808044195175171,0.631749868392944,0.86213743686676,0.641705572605133,0.877744615077972,0.636580884456635,0.876022815704346,0.645761847496033,0.879294157028198,0.654254078865051,0.880879163742065,0.620072364807129,0.840311765670776,0.620158433914185,0.849882662296295,0.619201362133026,0.804544985294342,0.632114470005035,0.865018844604492,0.626280784606934, +0.873475670814514,0.621824502944946,0.860020697116852,0.619160830974579,0.854673147201538,0.615950286388397,0.835774421691895,0.616137623786926,0.830437004566193,0.615383088588715,0.824512183666229,0.615742623806,0.8112952709198,0.615317285060883,0.807223796844482,0.625191986560822,0.864613711833954,0.62628585100174,0.86978405714035,0.641163766384125,0.880261361598969,0.635568082332611,0.878468751907349,0.629597663879395,0.876721680164337,0.616395890712738,0.84695565700531,0.614932417869568,0.83964329957962,0.615935087203979,0.815827488899231,0.625581920146942,0.877283751964569,0.622163772583008,0.872503399848938,0.616613626480103,0.856800019741058,0.613337278366089,0.850946068763733,0.61207127571106,0.830548465251923,0.611661076545715,0.836427688598633,0.611412942409515,0.824547648429871,0.61149400472641,0.816389620304108,0.610420405864716,0.810490071773529,0.62173330783844,0.864365577697754,0.621383905410767,0.868654787540436,0.637816488742828,0.881314694881439,0.629693865776062,0.884028971195221,0.617104887962341,0.861858904361725,0.612689077854156,0.84521871805191,0.644090712070465,0.882681965827942,0.633785545825958,0.884484708309174,0.62192577123642,0.876706480979919,0.625941455364227,0.882403433322906,0.619297564029694,0.87182480096817,0.614810883998871,0.858972489833832,0.61130154132843,0.853498339653015,0.610364735126495,0.846611320972443,0.60895186662674,0.832842409610748,0.608030259609222,0.824684381484985,0.618355631828308,0.865565776824951,0.637401223182678,0.88432776927948,0.639639496803284,0.88620138168335,0.645326316356659,0.886910378932953,0.636874556541443,0.887938320636749,0.641102969646454,0.887588918209076,0.649428129196167,0.884196102619171,0.633866608142853,0.887457251548767,0.720870554447174,0.806332528591156,0.716067373752594,0.807775795459747,0.719971716403961,0.803689181804657,0.72018438577652,0.809001266956329,0.715378701686859,0.803813219070435,0.723901331424713,0.804147481918335,0.719776749610901,0.811862409114838,0.724435567855835,0.806337594985962,0.710679352283478,0.803038418292999, +0.717518210411072,0.801078677177429,0.72432416677475,0.801574945449829,0.724283695220947,0.809054434299469,0.712580859661102,0.811366140842438,0.711373090744019,0.798939168453217,0.709355115890503,0.808732867240906,0.720554053783417,0.80017477273941,0.728418409824371,0.803248584270477,0.724367201328278,0.811745941638947,0.717930912971497,0.815667986869812,0.72846394777298,0.806960463523865,0.707853615283966,0.800557076931,0.706977546215057,0.806249022483826,0.717465043067932,0.797716200351715,0.725577533245087,0.799574673175812,0.720685720443726,0.814191818237305,0.727808177471161,0.809424102306366,0.708803117275238,0.814708352088928,0.706592738628387,0.811186373233795,0.706139504909515,0.803719580173492,0.709167718887329,0.796260356903076,0.704779803752899,0.80828469991684,0.713188529014587,0.795705854892731,0.720181882381439,0.797131359577179,0.727385342121124,0.799101233482361,0.736146032810211,0.808879733085632,0.724286198616028,0.814450085163116,0.728377878665924,0.811745941638947,0.711608588695526,0.816847860813141,0.7319176197052,0.8093101978302,0.703199863433838,0.806704759597778,0.714006364345551,0.790462076663971,0.725797772407532,0.795895755290985,0.731249153614044,0.800478637218475,0.720612287521362,0.79398912191391,0.736148536205292,0.805167853832245,0.703078329563141,0.815602123737335,0.719047546386719,0.819729268550873,0.704389870166779,0.81298154592514,0.723749399185181,0.817761898040771,0.702751696109772,0.810279905796051,0.710973024368286,0.791783809661865,0.735323131084442,0.811761140823364,0.743650794029236,0.810900270938873,0.728334844112396,0.814508318901062,0.731742918491364,0.812171280384064,0.71061098575592,0.819906532764435,0.714183568954468,0.820458471775055,0.701647758483887,0.812120676040649,0.711266756057739,0.787221133708954,0.71645987033844,0.789294838905334,0.737300574779511,0.803284049034119,0.739804744720459,0.811966240406036,0.698340952396393,0.813971519470215,0.706233143806458,0.81993180513382,0.726324439048767,0.822871446609497,0.720766723155975,0.827436625957489,0.728147447109222, +0.817154228687286,0.71262389421463,0.785879194736481,0.732304990291595,0.814528584480286,0.736313104629517,0.814528584480286,0.743815362453461,0.814553916454315,0.740974485874176,0.804124653339386,0.710436284542084,0.822838544845581,0.706354677677155,0.822858810424805,0.702189564704895,0.817903697490692,0.729545116424561,0.819663465023041,0.724703967571259,0.826763093471527,0.714515268802643,0.825995922088623,0.739766716957092,0.814915955066681,0.747461438179016,0.813371479511261,0.702308595180511,0.820696473121643,0.698181450366974,0.816111087799072,0.730547785758972,0.822246074676514,0.734343230724335,0.83042186498642,0.718809545040131,0.829712867736816,0.729924917221069,0.831935942173004,0.732201159000397,0.817252993583679,0.736221969127655,0.817280828952789,0.740273118019104,0.817242860794067,0.74894517660141,0.818594932556152,0.710064053535461,0.825367987155914,0.736052334308624,0.820007801055908,0.73420649766922,0.827198624610901,0.723113894462585,0.833526074886322,0.714287400245667,0.829373598098755,0.743686258792877,0.817622661590576,0.751882255077362,0.818339228630066,0.710456490516663,0.828474760055542,0.735902965068817,0.822719573974609,0.738052606582642,0.835880815982819,0.739528715610504,0.829021632671356,0.71836644411087,0.832865178585052,0.729892015457153,0.834614813327789,0.740149080753326,0.820015370845795,0.752398788928986,0.822357475757599,0.744164824485779,0.820005238056183,0.735900402069092,0.825378119945526,0.739880681037903,0.825459122657776,0.714644432067871,0.831472635269165,0.724878668785095,0.836430251598358,0.754735827445984,0.819417834281921,0.747608304023743,0.821651041507721,0.740014851093292,0.822732210159302,0.733586192131042,0.83679735660553,0.741969585418701,0.834394514560699,0.743934392929077,0.825509786605835,0.718710780143738,0.834954082965851,0.754930794239044,0.822481513023376,0.747929871082306,0.825605988502502,0.744055926799774,0.822765111923218,0.736497938632965,0.839896500110626,0.745473802089691,0.840291500091553,0.743693828582764,0.828778564929962,0.730914950370789,0.840020596981049, +0.757247567176819,0.820924341678619,0.751821517944336,0.825631320476532,0.740690886974335,0.840233266353607,0.747851371765137,0.834738850593567,0.747648775577545,0.830897867679596,0.726433336734772,0.839516699314117,0.755449831485748,0.825281918048859,0.747719705104828,0.828279793262482,0.745476365089417,0.845656752586365,0.736920773983002,0.845730185508728,0.752282321453094,0.840997934341431,0.722480893135071,0.837767124176025,0.75173544883728,0.828251898288727,0.731069386005402,0.844451546669006,0.751606285572052,0.830864906311035,0.751444220542908,0.846763253211975,0.751550614833832,0.836298584938049,0.718571543693542,0.836627721786499,0.755703032016754,0.828256964683533,0.741561889648438,0.849391460418701,0.734707832336426,0.846864521503448,0.726861238479614,0.842633605003357,0.751545548439026,0.833546280860901,0.75612336397171,0.845173180103302,0.755566298961639,0.836377084255219,0.748069107532501,0.850221931934357,0.75874650478363,0.825466752052307,0.75565493106842,0.830928206443787,0.755563795566559,0.839876234531403,0.75670063495636,0.848112821578979,0.755622029304504,0.833594381809235,0.75288999080658,0.84979659318924,0.759736478328705,0.829054594039917,0.736700534820557,0.849267363548279,0.759893476963043,0.840380132198334,0.760090947151184,0.845628917217255,0.759265542030334,0.832984209060669,0.759587109088898,0.83649605512619,0.762050747871399,0.827039122581482,0.760212481021881,0.822230875492096,0.760475814342499,0.851105570793152,0.762736856937408,0.831346035003662,0.763217985630035,0.842251241207123,0.763521790504456,0.83654922246933,0.764372527599335,0.849773764610291,0.757804572582245,0.852591872215271,0.763539552688599,0.834078013896942,0.764858663082123,0.828064560890198,0.763466119766235,0.839086294174194,0.766810834407806,0.847026586532593,0.767309665679932,0.8541060090065,0.766375362873077,0.856949388980865,0.766233563423157,0.830963671207428,0.767464101314545,0.839177429676056,0.767474234104156,0.842990577220917,0.767000734806061,0.833728611469269,0.767279267311096,0.836417555809021,0.770765781402588, +0.851974070072174,0.757017135620117,0.854842782020569,0.7715203166008,0.844947814941406,0.771608948707581,0.857124149799347,0.771978616714478,0.848373591899872,0.765909433364868,0.859481394290924,0.748942673206329,0.85346794128418,0.770720243453979,0.835840284824371,0.771312713623047,0.83887106180191,0.771489977836609,0.841967701911926,0.777293264865875,0.852900803089142,0.77792876958847,0.850378930568695,0.753669857978821,0.856318950653076,0.769745409488678,0.832842409610748,0.777857899665833,0.845165550708771,0.775986731052399,0.841443538665771,0.771682381629944,0.862010836601257,0.775685429573059,0.856620252132416,0.778123736381531,0.848052024841309,0.761914014816284,0.860139727592468,0.77367502450943,0.834597051143646,0.774728357791901,0.837837994098663,0.770165741443634,0.864697277545929,0.776870429515839,0.861271500587463,0.783770084381104,0.85024219751358,0.78162294626236,0.855772018432617,0.782367348670959,0.846188485622406,0.760746777057648,0.861813366413116,0.772097647190094,0.831447303295136,0.780868411064148,0.841757535934448,0.777804732322693,0.836164355278015,0.777366697788239,0.863836407661438,0.783878922462463,0.853075504302979,0.781445682048798,0.858182489871979,0.75554096698761,0.859413027763367,0.776115894317627,0.832882940769196,0.76426112651825,0.86555814743042,0.778146505355835,0.866583585739136,0.783524453639984,0.862020969390869,0.786165297031403,0.845385849475861,0.78786426782608,0.849753499031067,0.786866664886475,0.854030013084412,0.774047255516052,0.829857230186462,0.783552289009094,0.841063737869263,0.780149340629578,0.834989547729492,0.759445309638977,0.864064276218414,0.770069479942322,0.866459548473358,0.787307262420654,0.858729422092438,0.781881213188171,0.837303757667542,0.778024971485138,0.831151068210602,0.755523264408112,0.86238557100296,0.76752233505249,0.867740750312805,0.775505661964417,0.869424521923065,0.783663690090179,0.868183791637421,0.789750576019287,0.852576673030853,0.787887036800385,0.863051474094391,0.790244340896606,0.855653047561646,0.771988749504089,0.871014595031738, +0.763547122478485,0.869247257709503,0.7794429063797,0.869492828845978,0.790332973003387,0.848176121711731,0.790327906608582,0.859418094158173,0.767762899398804,0.871637463569641,0.759870707988739,0.866391181945801,0.775725960731506,0.874359309673309,0.779554307460785,0.87237423658371,0.787882030010223,0.866702616214752,0.787861764431,0.844398379325867,0.791743278503418,0.851589202880859,0.79153311252594,0.862550139427185,0.792839646339417,0.85517954826355,0.77168995141983,0.876268446445465,0.763471186161041,0.873030006885529,0.787388265132904,0.871556401252747,0.784253656864166,0.873746573925018,0.793092846870422,0.859833359718323,0.767919838428497,0.876812815666199,0.759612441062927,0.872197031974792,0.779351770877838,0.876592516899109,0.776386797428131,0.884897410869598,0.791206479072571,0.867305219173431,0.794786691665649,0.861575365066528,0.767509698867798,0.880810797214508,0.763554692268372,0.878947257995605,0.75957190990448,0.877529382705688,0.772328019142151,0.885991275310516,0.789444208145142,0.873564302921295,0.791723012924194,0.869913160800934,0.794148683547974,0.866107583045959,0.783410549163818,0.878651022911072,0.755697965621948,0.873852908611298,0.781574845314026,0.884284675121307,0.777057766914368,0.887576282024384,0.787914931774139,0.877417981624603,0.766342401504517,0.88772314786911,0.760415077209473,0.886636912822723,0.7557612657547,0.882279396057129,0.771173477172852,0.889335989952087,0.791583776473999,0.874678373336792,0.793209314346313,0.871817231178284,0.786747694015503,0.881370365619659,0.750302314758301,0.877341985702515,0.782058417797089,0.886824250221252,0.794849991798401,0.868188858032227,0.784620821475983,0.884396076202393,0.790054440498352,0.879089057445526,0.791710376739502,0.875863313674927,0.275350540876389,0.970320165157318,0.270651191473007,0.964986562728882,0.276079744100571,0.966428518295288,0.271767795085907,0.969736576080322,0.27343761920929,0.961907684803009,0.28205269575119,0.966860234737396,0.269500404596329,0.969587206840515,0.272947698831558,0.973778903484344,0.271779179573059, +0.958326160907745,0.276760846376419,0.962917923927307,0.282524913549423,0.962911605834961,0.281729876995087,0.970361948013306,0.270225822925568,0.97416877746582,0.275869607925415,0.973787724971771,0.273808568716049,0.956574082374573,0.28834468126297,0.966939985752106,0.268164783716202,0.973325669765472,0.273324966430664,0.977546453475952,0.271946281194687,0.954142093658447,0.282045096158981,0.959211111068726,0.278599083423615,0.959031343460083,0.288773834705353,0.963472425937653,0.280751258134842,0.974329590797424,0.287695229053497,0.970506310462952,0.266111344099045,0.977965533733368,0.276520311832428,0.977027416229248,0.27174374461174,0.98084819316864,0.272988200187683,0.952653288841248,0.284816354513168,0.957607090473175,0.275808840990067,0.954851031303406,0.290393054485321,0.966755151748657,0.285493671894073,0.973958671092987,0.266703814268112,0.980488657951355,0.274364352226257,0.980846881866455,0.269953638315201,0.951535403728485,0.28143236041069,0.955599248409271,0.277879983186722,0.953914225101471,0.288816899061203,0.95873761177063,0.291337490081787,0.96199631690979,0.279163718223572,0.978323757648468,0.281734943389893,0.977446436882019,0.287840813398361,0.974161207675934,0.290690571069717,0.970346748828888,0.264245271682739,0.982512950897217,0.275308758020401,0.98239266872406,0.271466493606567,0.984370172023773,0.26728492975235,0.984109342098236,0.283046513795853,0.953510344028473,0.274109870195389,0.95167338848114,0.286453276872635,0.955800533294678,0.292723745107651,0.963381290435791,0.285039186477661,0.977222383022308,0.292552828788757,0.967123568058014,0.264603555202484,0.984344840049744,0.279616922140121,0.95233553647995,0.291666626930237,0.956319570541382,0.288173764944077,0.954029440879822,0.293087095022202,0.959378242492676,0.278915584087372,0.981262147426605,0.281691908836365,0.981135547161102,0.289218217134476,0.97607034444809,0.272346347570419,0.98744148015976,0.268637001514435,0.988341569900513,0.264994740486145,0.987527549266815,0.276183575391769,0.950942933559418,0.280850023031235,0.951191067695618, +0.285005003213882,0.952579855918884,0.295438021421433,0.958912372589111,0.284899920225143,0.98434990644455,0.286024123430252,0.981168448925018,0.262691885232925,0.987660467624664,0.290712088346481,0.952879905700684,0.286321610212326,0.951524019241333,0.295540571212769,0.962788820266724,0.277602732181549,0.988339066505432,0.280506938695908,0.98829597234726,0.265994876623154,0.991071045398712,0.26179051399231,0.991119146347046,0.293940365314484,0.953563511371613,0.29597732424736,0.955860018730164,0.299810767173767,0.959633946418762,0.287711679935455,0.983348488807678,0.284931570291519,0.987260401248932,0.297231942415237,0.963820576667786,0.289675235748291,0.978079438209534,0.298962533473969,0.956489264965057,0.300509601831436,0.963250875473022,0.295839339494705,0.966804504394531,0.297201544046402,0.953466057777405,0.299767702817917,0.96679949760437,0.294845551252365,0.952771008014679,0.299765199422836,0.954610526561737,0.295007586479187,0.971416532993317,0.905311524868011,0.779292225837708,0.904041767120361,0.782912969589233,0.901500880718231,0.782350897789001,0.908134698867798,0.778877019882202,0.899386703968048,0.786095678806305,0.908165097236633,0.782123029232025,0.898053646087646,0.782402813434601,0.905116558074951,0.787395834922791,0.910497069358826,0.778179466724396,0.903658151626587,0.778831422328949,0.897214293479919,0.785909593105316,0.900545060634613,0.795845091342926,0.91195547580719,0.779179573059082,0.910451471805573,0.787164211273193,0.898646116256714,0.798401117324829,0.904011368751526,0.795228540897369,0.914662182331085,0.775843679904938,0.912760615348816,0.783275067806244,0.902718782424927,0.807271897792816,0.905008971691132,0.807478308677673,0.915177404880524,0.779090940952301,0.917020678520203,0.783466219902039,0.910409688949585,0.794104337692261,0.901222407817841,0.810000121593475,0.908499300479889,0.804541170597076,0.917071342468262,0.775415778160095,0.921768188476563,0.787649035453796,0.915533185005188,0.794768989086151,0.905257105827332,0.815469205379486,0.909626066684723,0.810078620910645,0.918474078178406, +0.779158055782318,0.921985924243927,0.783714354038239,0.914445698261261,0.80183070898056,0.903736650943756,0.81877726316452,0.914538085460663,0.806013524532318,0.918490529060364,0.775632262229919,0.924721717834473,0.785647511482239,0.92166942358017,0.792944729328156,0.911447823047638,0.814989387989044,0.90831196308136,0.82158899307251,0.914379835128784,0.809846937656403,0.921912491321564,0.779932856559753,0.925421833992004,0.783913135528564,0.924612820148468,0.78761488199234,0.923660814762115,0.789430320262909,0.918752551078796,0.802421927452087,0.911665558815002,0.820907890796661,0.906088888645172,0.824489414691925,0.918486714363098,0.810836970806122,0.921168088912964,0.776071548461914,0.92509263753891,0.780140459537506,0.927456259727478,0.787580668926239,0.925552189350128,0.791210293769836,0.91879940032959,0.804513335227966,0.920907318592072,0.802716910839081,0.916782677173615,0.820647120475769,0.90988302230835,0.830911755561829,0.904063284397125,0.824384331703186,0.90806633234024,0.831189036369324,0.918413281440735,0.806124925613403,0.91995906829834,0.775342345237732,0.923186063766479,0.775804460048676,0.928856432437897,0.784110605716705,0.927506923675537,0.7966388463974,0.921983361244202,0.802865028381348,0.91582053899765,0.827680945396423,0.906410396099091,0.831915676593781,0.920350253582001,0.806181907653809,0.925442039966583,0.776355147361755,0.92798924446106,0.780396223068237,0.932513892650604,0.789915204048157,0.929809749126434,0.791607797145844,0.923060715198517,0.803013145923615,0.920930087566376,0.80376261472702,0.922522664070129,0.802938461303711,0.925224304199219,0.810998976230621,0.92147570848465,0.826093435287476,0.908601880073547,0.835837721824646,0.915690124034882,0.834914863109589,0.920388221740723,0.808536648750305,0.920737624168396,0.804569005966187,0.924898982048035,0.772467315196991,0.930374383926392,0.780694961547852,0.933496296405792,0.785410761833191,0.929971814155579,0.794794321060181,0.931906223297119,0.800779938697815,0.921996057033539,0.803387880325317,0.922527730464935,0.803200483322144, +0.923855781555176,0.821030735969543,0.921170592308044,0.833000659942627,0.912866950035095,0.836725234985352,0.90676361322403,0.836217522621155,0.921320021152496,0.806209743022919,0.921898543834686,0.80379045009613,0.927419543266296,0.776565313339233,0.93351149559021,0.797547817230225,0.922288477420807,0.806237578392029,0.931932806968689,0.820796489715576,0.921337723731995,0.807387113571167,0.928919732570648,0.826731443405151,0.910983204841614,0.844247698783875,0.922313809394836,0.837436676025391,0.917273879051209,0.844245195388794,0.908200562000275,0.840578854084015,0.921706140041351,0.804596900939941,0.936963856220245,0.80169016122818,0.933192491531372,0.806669294834137,0.921803593635559,0.806223690509796,0.922479629516602,0.80340176820755,0.931463122367859,0.81110405921936,0.923755764961243,0.808617651462555,0.929688215255737,0.834318578243256,0.923740565776825,0.845160484313965,0.921813726425171,0.806812345981598,0.922189712524414,0.804610788822174,0.922383427619934,0.803804397583008,0.923022747039795,0.807427644729614,0.929208397865295,0.808834135532379,0.93331778049469,0.816004753112793,0.93613588809967,0.823128461837769,0.936140954494476,0.829902768135071,0.916018009185791,0.848144471645355,0.909227252006531,0.847184836864471,0.932715177536011,0.837044239044189,0.920813620090485,0.849314212799072,0.938255190849304,0.807056725025177,0.928474128246307,0.807644128799438,0.932327806949615,0.808887302875519,0.935015499591827,0.811467409133911,0.931199789047241,0.807751715183258,0.936848640441895,0.833814680576324,0.911847829818726,0.848260939121246,0.930565536022186,0.847379803657532,0.925353467464447,0.848897695541382,0.940497219562531,0.804996907711029,0.936979055404663,0.811025559902191,0.937758922576904,0.821191489696503,0.939324915409088,0.833422243595123,0.913315117359161,0.851622104644775,0.910370469093323,0.851856350898743,0.936991691589355,0.838421642780304,0.93784373998642,0.848777413368225,0.924357116222382,0.853350222110748,0.940288364887238,0.812580227851868,0.938453912734985,0.800196290016174,0.937784194946289, +0.813876569271088,0.939237594604492,0.839491426944733,0.931234002113342,0.853109657764435,0.941773355007172,0.810857236385345,0.936839759349823,0.795471608638763,0.939780712127686,0.822006821632385,0.941412568092346,0.839702844619751,0.915190100669861,0.855532765388489,0.911471843719482,0.855664432048798,0.940508604049683,0.849087595939636,0.938747644424438,0.853369176387787,0.942717790603638,0.816501021385193,0.941036522388458,0.817189693450928,0.941782236099243,0.836158037185669,0.942072153091431,0.843221008777618,0.924626767635345,0.856801271438599,0.942691206932068,0.849876344203949,0.932716429233551,0.856949388980865,0.941565752029419,0.823639929294586,0.945710599422455,0.842563986778259,0.944739580154419,0.845275700092316,0.916125655174255,0.859710514545441,0.912623882293701,0.86014986038208,0.942616522312164,0.853129923343658,0.938907146453857,0.857108950614929,0.944280028343201,0.838491261005402,0.945266246795654,0.850519418716431,0.925894021987915,0.86039799451828,0.910508453845978,0.860849916934967,0.934309065341949,0.862119734287262,0.945908069610596,0.838382363319397,0.930322468280792,0.862003266811371,0.917739808559418,0.863331258296967,0.911745309829712,0.867126703262329,0.909605801105499,0.854569375514984,0.943578660488129,0.857617855072021,0.945668816566467,0.854427576065063,0.941220104694366,0.861024618148804,0.92393171787262,0.863955438137054,0.914278566837311,0.867136836051941,0.947161436080933,0.853571772575378,0.941663205623627,0.864909946918488,0.930351555347443,0.869804263114929,0.92291259765625,0.868074953556061,0.918236076831818,0.867781221866608,0.913489818572998,0.870967745780945,0.944691479206085,0.862948954105377,0.946856319904327,0.857688724994659,0.936237156391144,0.871339917182922,0.915479958057404,0.87097156047821,0.946913301944733,0.86094743013382,0.942891240119934,0.87135636806488,0.940118730068207,0.872056484222412,0.921532690525055,0.87221223115921,0.934015333652496,0.875816464424133,0.91802716255188,0.872057735919952,0.915488839149475,0.874911308288574,0.946505606174469,0.864677011966705, +0.94993394613266,0.861014485359192,0.946518301963806,0.868393957614899,0.939312279224396,0.875751912593842,0.929131150245667,0.876002609729767,0.916572511196136,0.875344276428223,0.949238896369934,0.865240395069122,0.945881485939026,0.872297048568726,0.924663484096527,0.875537991523743,0.938413441181183,0.879781544208527,0.930250287055969,0.879598021507263,0.92015278339386,0.875478446483612,0.917910695075989,0.878839671611786,0.948983192443848,0.869045972824097,0.941960692405701,0.877433180809021,0.926164925098419,0.879311859607697,0.947995722293854,0.873771905899048,0.944943368434906,0.87712424993515,0.920499622821808,0.879347324371338,0.938736259937286,0.886144459247589,0.932867109775543,0.885784924030304,0.929550230503082,0.882933855056763,0.941858172416687,0.883682072162628,0.925488889217377,0.882873117923737,0.936758756637573,0.885681092739105,0.919555187225342,0.886734366416931,0.921418726444244,0.882768034934998,0.935896635055542,0.890684306621552,0.942112624645233,0.887368679046631,0.932250559329987,0.89072859287262,0.927510678768158,0.886691331863403,0.922089695930481,0.886940717697144,0.93886536359787,0.891008377075195,0.928152561187744,0.890348792076111,0.933741927146912,0.89439868927002,0.928031027317047,0.893906235694885,0.922853112220764,0.890504539012909,0.919832468032837,0.890318393707275,0.925019204616547,0.893911302089691,0.920113503932953,0.892914950847626,0.930649101734161,0.897505462169647,0.923673450946808,0.897499084472656,0.922163128852844,0.894282221794128,0.9255091547966,0.898020684719086,0.921803593635559,0.897643446922302,0.919812202453613,0.89776623249054,0.249999076128006,0.963409125804901,0.2547807097435,0.96368008852005,0.252291768789291,0.965563833713531,0.247407585382462,0.956408202648163,0.246111214160919,0.968355357646942,0.24640366435051,0.959840297698975,0.246892333030701,0.96489542722702,0.250778913497925,0.968954205513,0.243241205811501,0.950942933559418,0.244371742010117,0.966964066028595,0.245160460472107,0.971395015716553,0.253837555646896,0.968116104602814,0.244617342948914, +0.962704002857208,0.243646323680878,0.971069633960724,0.248511537909508,0.972205221652985,0.254763007164001,0.962672352790833,0.252452552318573,0.970929145812988,0.243760272860527,0.957456469535828,0.245479479432106,0.973416805267334,0.249802842736244,0.97389280796051,0.246770799160004,0.975696861743927,0.251698046922684,0.976093113422394,0.245584562420845,0.980042994022369,0.251248598098755,0.981773614883423,0.247941836714745,0.984206855297089,0.24575799703598,0.987576901912689,0.25029531121254,0.986414730548859,0.245417445898056,0.991828083992004,0.181512743234634,0.976708352565765,0.182215377688408,0.972501516342163,0.185203105211258,0.972397685050964,0.180530339479446,0.973353505134583,0.184704318642616,0.969761908054352,0.182141944766045,0.980900049209595,0.181719109416008,0.968205988407135,0.186277940869331,0.980336725711823,0.180168271064758,0.983129501342773,0.184446051716805,0.964629530906677,0.18317499756813,0.983591556549072,0.182492628693581,0.963050842285156,0.186413407325745,0.983126938343048,0.180680990219116,0.984717071056366,0.184595435857773,0.959094643592834,0.186114624142647,0.984177708625793,0.181636810302734,0.961302518844604,0.182538196444511,0.987219929695129,0.182296395301819,0.957328617572784,0.183872550725937,0.989221453666687,0.185123354196548,0.956349968910217,0.181355759501457,0.991558432579041,0.186450108885765,0.987597167491913,0.182214111089706,0.952782392501831,0.18291799724102,0.949884533882141,0.0171086043119431,0.886311531066895,0.0201874952763319,0.876692533493042,0.0220573637634516,0.87789398431778,0.0251919589936733,0.880090475082397,0.0208204910159111,0.889470219612122,0.0291380528360605,0.882440149784088,0.024700753390789,0.89183509349823,0.0317890383303165,0.878582656383514,0.0192886404693127,0.893828988075256,0.0324270986020565,0.885576009750366,0.0266643054783344,0.875683546066284,0.0359997227787972,0.881917297840118,0.0232625883072615,0.896477460861206,0.0306154638528824,0.895348191261292,0.0189113765954971,0.898663818836212,0.0357136093080044,0.886705279350281,0.0350211150944233, +0.891353964805603,0.0288532041013241,0.89986652135849,0.0219826698303223,0.900798261165619,0.0344577468931675,0.899332284927368,0.0164528209716082,0.90165787935257,0.0402559861540794,0.88973480463028,0.0379683412611485,0.894797503948212,0.028660774230957,0.903458118438721,0.0207040198147297,0.904681086540222,0.039127990603447,0.884483456611633,0.0409965924918652,0.896778762340546,0.0359946601092815,0.905368506908417,0.0438159555196762,0.892014861106873,0.0364225655794144,0.910907208919525,0.0286025386303663,0.908510684967041,0.0449452176690102,0.898642301559448,0.0461846217513084,0.893691003322601,0.0438488684594631,0.908408164978027,0.0193873886018991,0.907956182956696,0.043280441313982,0.913797497749329,0.0283809900283813,0.912474513053894,0.0242665186524391,0.910291969776154,0.048420362174511,0.910446405410767,0.0477012805640697,0.89746618270874,0.0489343553781509,0.914991319179535,0.0379303619265556,0.915610373020172,0.0189607497304678,0.911507308483124,0.0500610880553722,0.902698516845703,0.0495698824524879,0.894727885723114,0.0455630235373974,0.917813181877136,0.0230726897716522,0.913018882274628,0.0329714752733707,0.916977643966675,0.051259983330965,0.911616206169128,0.0504332892596722,0.898991703987122,0.0486811585724354,0.891607165336609,0.0499230958521366,0.918546199798584,0.043576680123806,0.920214772224426,0.0277783777564764,0.916088938713074,0.0385355055332184,0.919113397598267,0.0212445985525846,0.915763556957245,0.0551060624420643,0.90378350019455,0.0535843409597874,0.915525555610657,0.052962739020586,0.899795591831207,0.0487672463059425,0.921833992004395,0.0324106402695179,0.920518636703491,0.0547098070383072,0.911906063556671,0.0523373410105705,0.896482527256012,0.0548617281019688,0.919422268867493,0.0535539574921131,0.922949314117432,0.0466188602149487,0.924145698547363,0.0395343713462353,0.921988427639008,0.0278226882219315,0.919291913509369,0.037453081458807,0.922207474708557,0.0619981177151203,0.904430389404297,0.0557010807096958,0.900402009487152,0.058760978281498,0.918074011802673,0.0546844899654388, +0.897553563117981,0.0502927638590336,0.925642073154449,0.0429221652448177,0.922850608825684,0.027280842885375,0.921440243721008,0.0320827476680279,0.923600077629089,0.0587913617491722,0.900846421718597,0.0652099400758743,0.912663161754608,0.0575646162033081,0.926984071731567,0.054298359900713,0.929198265075684,0.0475822761654854,0.926709353923798,0.0448882468044758,0.925997853279114,0.0424220971763134,0.925097703933716,0.0336335860192776,0.926185190677643,0.0223092958331108,0.919610917568207,0.0617347918450832,0.900919795036316,0.0713208764791489,0.904398739337921,0.0576367788016796,0.898496687412262,0.0638224110007286,0.919909715652466,0.0611321814358234,0.92429506778717,0.050932090729475,0.931753039360046,0.039752122014761,0.926459908485413,0.024877991527319,0.923570930957794,0.0292380657047033,0.925097703933716,0.0660530850291252,0.900565326213837,0.0717032104730606,0.910598337650299,0.0615398287773132,0.898952484130859,0.0662062764167786,0.922868311405182,0.062842532992363,0.927638590335846,0.0580887384712696,0.930152833461761,0.0552288629114628,0.932608842849731,0.0419422872364521,0.928864061832428,0.0335854776203632,0.928289294242859,0.0292709823697805,0.927053689956665,0.066006250679493,0.898815751075745,0.0713943019509315,0.900816023349762,0.0755315646529198,0.904274702072144,0.0526196546852589,0.934458434581757,0.0461846217513084,0.931783437728882,0.0247412659227848,0.926163673400879,0.0693459287285805,0.89895498752594,0.0764759927988052,0.912027597427368,0.0707739666104317,0.919228613376617,0.0654530078172684,0.931739091873169,0.068093866109848,0.926784038543701,0.0635173097252846,0.934460997581482,0.0577760376036167,0.93619030714035,0.0494154319167137,0.933646976947784,0.0777533799409866,0.90141099691391,0.0741313770413399,0.917762577533722,0.0550832748413086,0.937958896160126,0.0498699247837067,0.935932099819183,0.0798701196908951,0.906197726726532,0.0728527307510376,0.923776030540466,0.0700510889291763,0.929974317550659,0.0687597766518593,0.934050798416138,0.0624095648527145,0.93657773733139,0.075748048722744, +0.921375691890717,0.065944217145443,0.936985373497009,0.0642566457390785,0.93960976600647,0.0723437964916229,0.933284878730774,0.0705853402614594,0.936735987663269,0.0732920244336128,0.930181920528412,0.0677355900406837,0.938860297203064,0.0745656117796898,0.934353351593018,0.0741731524467468,0.937670290470123,0.942600071430206,0.901819944381714,0.946455001831055,0.904902637004852,0.945218145847321,0.907429575920105,0.499894320964813,0.752852022647858,0.500837504863739,0.749375641345978,0.505571007728577,0.75490927696228,0.510379254817963,0.752897620201111,0.507356107234955,0.760978400707245,0.504056930541992,0.743938207626343,0.515873670578003,0.753429293632507,0.516062319278717,0.75929719209671,0.512306094169617,0.747499406337738,0.519215881824493,0.762365937232971,0.519975483417511,0.744026780128479,0.521675705909729,0.75825023651123,0.51461398601532,0.766699433326721,0.51522171497345,0.740489602088928,0.519899547100067,0.768352806568146,0.505700170993805,0.765332162380219,0.528268992900848,0.764608025550842,0.528146207332611,0.756731033325195,0.51229727268219,0.73986804485321,0.518898129463196,0.739837646484375,0.525111615657806,0.766883015632629,0.508627116680145,0.770359396934509,0.53139853477478,0.761015117168427,0.530064165592194,0.751387298107147,0.513717710971832,0.733872294425964,0.526195287704468,0.745857417583466,0.525696516036987,0.769544124603271,0.515058398246765,0.772869884967804,0.504005014896393,0.767933785915375,0.53942996263504,0.767224848270416,0.532736659049988,0.76809960603714,0.537990510463715,0.757567822933197,0.511280655860901,0.733234226703644,0.525253415107727,0.738684296607971,0.518995583057404,0.732540488243103,0.521520018577576,0.77064174413681,0.507695376873016,0.773073732852936,0.50197434425354,0.770346760749817,0.539137542247772,0.763900339603424,0.532448053359985,0.743957161903381,0.537700653076172,0.753311574459076,0.507854878902435,0.736546039581299,0.510969221591949,0.727586627006531,0.522658109664917,0.728117108345032,0.522774577140808,0.778011083602905,0.532341659069061,0.771629214286804, +0.548445105552673,0.768303453922272,0.539080560207367,0.771678566932678,0.547393083572388,0.761843085289001,0.544849693775177,0.755999267101288,0.507080078125,0.741835355758667,0.504951953887939,0.727724611759186,0.528510808944702,0.734214127063751,0.504945635795593,0.77389532327652,0.516610503196716,0.778146505355835,0.537060022354126,0.744063496589661,0.542674720287323,0.751903772354126,0.513275861740112,0.721142768859863,0.505745768547058,0.723717749118805,0.531333982944489,0.73089212179184,0.528067708015442,0.783739686012268,0.53732842206955,0.775938630104065,0.500417172908783,0.772176086902618,0.523049294948578,0.780479729175568,0.550885915756226,0.761550664901733,0.548800826072693,0.773212969303131,0.5507732629776,0.758724987506866,0.549131274223328,0.753517925739288,0.524263381958008,0.725554704666138,0.535794019699097,0.734640717506409,0.533805191516876,0.72595477104187,0.534005224704742,0.783601701259613,0.54279625415802,0.775035977363586,0.522854328155518,0.782576203346252,0.553882539272308,0.768176853656769,0.556461334228516,0.769737839698792,0.543377339839935,0.744588911533356,0.547068953514099,0.748761594295502,0.511927604675293,0.71629524230957,0.523597478866577,0.718813300132751,0.537813305854797,0.737452507019043,0.534178614616394,0.785974144935608,0.538722276687622,0.780164539813995,0.554116725921631,0.760071992874146,0.554932057857513,0.764905512332916,0.555930912494659,0.772244453430176,0.546646118164063,0.775465130805969,0.55176705121994,0.75639933347702,0.550841629505157,0.749287009239197,0.516150951385498,0.715357184410095,0.509871602058411,0.71052360534668,0.531352937221527,0.721392154693604,0.540814936161041,0.733646929264069,0.539754092693329,0.729056477546692,0.526548504829407,0.785206973552704,0.539150178432465,0.786264061927795,0.557117104530334,0.766969084739685,0.559561789035797,0.772106468677521,0.549131274223328,0.775843679904938,0.552802622318268,0.753106474876404,0.544780075550079,0.737856388092041,0.547827303409576,0.743435561656952,0.552338004112244,0.746674001216888,0.527972757816315, +0.714051902294159,0.537251174449921,0.718000531196594,0.537758886814117,0.723205029964447,0.537590503692627,0.788051664829254,0.544619262218475,0.780243039131165,0.545643448829651,0.783891618251801,0.557047486305237,0.763483822345734,0.559732675552368,0.768883287906647,0.556123316287994,0.774204254150391,0.549121141433716,0.738836228847504,0.51914370059967,0.71049702167511,0.550844132900238,0.733615279197693,0.547196805477142,0.720171749591827,0.540979564189911,0.788741588592529,0.546373903751373,0.787723779678345,0.559103488922119,0.77502715587616,0.549289524555206,0.78005313873291,0.511547803878784,0.706226825714111,0.522767007350922,0.707483947277069,0.534493863582611,0.712851762771606,0.550649166107178,0.729874312877655,0.55104923248291,0.726181387901306,0.549714863300323,0.787973165512085,0.561603784561157,0.776514649391174,0.518684148788452,0.705130517482758,0.507367491722107,0.708720862865448,0.530199646949768,0.710712254047394,0.539283096790314,0.714481115341187,0.555285215377808,0.724672317504883,0.551574647426605,0.783237099647522,0.562591254711151,0.7715203166008,0.513943016529083,0.701327443122864,0.507606744766235,0.703426480293274,0.525776267051697,0.703241646289825,0.532215058803558,0.70635974407196,0.536383986473084,0.708638548851013,0.541311204433441,0.710685670375824,0.557158887386322,0.719445049762726,0.555966317653656,0.779320120811462,0.552443087100983,0.785924792289734,0.564771294593811,0.77881246805191,0.524276077747345,0.697772562503815,0.543741941452026,0.708157479763031,0.556814551353455,0.716204106807709,0.556084096431732,0.777229964733124,0.558231234550476,0.782085001468658,0.556815803050995,0.784586608409882,0.558923721313477,0.78996330499649,0.524005115032196,0.691464126110077,0.509101867675781,0.69951331615448,0.530688285827637,0.692398428916931,0.532989859580994,0.695082306861877,0.540687084197998,0.70045393705368,0.540209829807281,0.706476211547852,0.546617031097412,0.706244587898254,0.555663764476776,0.713263213634491,0.558946490287781,0.779178321361542,0.559338927268982,0.788059234619141, +0.520670533180237,0.686873614788055,0.503820180892944,0.700107038021088,0.513134062290192,0.697325646877289,0.543774843215942,0.70254784822464,0.552639305591583,0.709024667739868,0.561627864837646,0.782891452312469,0.561544299125671,0.780796229839325,0.561183512210846,0.785695612430573,0.562453269958496,0.789986073970795,0.532610058784485,0.680401861667633,0.526391506195068,0.680019557476044,0.505478620529175,0.696387529373169,0.511055290699005,0.693447947502136,0.533898830413818,0.690710842609406,0.549769341945648,0.706382572650909,0.564900457859039,0.78692489862442,0.528975427150726,0.68250846862793,0.535425662994385,0.680741190910339,0.521068036556244,0.681242525577545,0.53583961725235,0.686578631401062,0.536561250686646,0.692759215831757,0.543439388275146,0.699524700641632,0.564499139785767,0.78424859046936,0.564532041549683,0.782225549221039,0.565073907375336,0.789468288421631,0.530124962329865,0.67635577917099,0.537648737430573,0.674906194210052,0.527020752429962,0.67387318611145,0.50729912519455,0.69230729341507,0.537542402744293,0.688920736312866,0.536963820457459,0.69788521528244,0.540547847747803,0.695119023323059,0.567467868328094,0.785919725894928,0.568079352378845,0.788779616355896,0.536334633827209,0.672248899936676,0.512113690376282,0.689072668552399,0.524597644805908,0.6717728972435,0.532784759998322,0.670876562595367,0.53915274143219,0.672816038131714,0.518086612224579,0.67787116765976,0.527404308319092,0.667445719242096,0.508842349052429,0.686357080936432,0.538095593452454,0.667334318161011,0.539959132671356,0.669704258441925,0.510464072227478,0.682133734226227,0.522449254989624,0.668840825557709,0.515662252902985,0.676279842853546,0.534643232822418,0.665377080440521,0.528991878032684,0.665617644786835,0.521078169345856,0.664060473442078,0.505650818347931,0.683212399482727,0.540233850479126,0.662994503974915,0.541465699672699,0.667091250419617,0.513253092765808,0.675965845584869,0.52808541059494,0.661986768245697,0.519753932952881,0.666959583759308,0.509027183055878,0.676558315753937,0.533822894096375, +0.659561157226563,0.516031920909882,0.669938445091248,0.525582551956177,0.65720134973526,0.516975104808807,0.664777040481567,0.54022878408432,0.658029317855835,0.529329895973206,0.651246130466461,0.521211087703705,0.660161197185516,0.514557063579559,0.666557013988495,0.53559148311615,0.654221177101135,0.543287456035614,0.660422027111053,0.522137820720673,0.654449045658112,0.526347219944,0.651565134525299,0.517905592918396,0.658740758895874,0.540105998516083,0.652760207653046,0.543021559715271,0.664463043212891,0.542976021766663,0.656274616718292,0.532503724098206,0.64939272403717,0.529583096504211,0.638097524642944,0.544742047786713,0.64632648229599,0.517495393753052,0.654026210308075,0.522620141506195,0.649362325668335,0.525771200656891,0.640594065189362,0.542886137962341,0.652144968509674,0.532072007656097,0.636712551116943,0.534568548202515,0.635844051837921,0.512017488479614,0.658540725708008,0.525754749774933,0.635428786277771,0.54575103521347,0.654560446739197,0.545689046382904,0.651124596595764,0.528219640254974,0.634066581726074,0.542444288730621,0.640670001506805,0.512009859085083,0.664025008678436,0.512856841087341,0.652271568775177,0.517489075660706,0.647215187549591,0.522383391857147,0.637363255023956,0.548438787460327,0.64928126335144,0.532659471035004,0.632051169872284,0.538852691650391,0.635102212429047,0.545452296733856,0.640105366706848,0.52179092168808,0.630134463310242,0.548265337944031,0.644984543323517,0.526202917098999,0.62874436378479,0.54290384054184,0.634421110153198,0.510973036289215,0.643802106380463,0.516694009304047,0.642586708068848,0.51455956697464,0.634269177913666,0.551084697246552,0.647235453128815,0.532285988330841,0.629643261432648,0.538070321083069,0.631025671958923,0.548074185848236,0.639593899250031,0.547371506690979,0.635049045085907,0.506298959255219,0.646154284477234,0.513826549053192,0.639558494091034,0.51961088180542,0.62838739156723,0.524620413780212,0.626728951931,0.550926446914673,0.643804609775543,0.54262787103653,0.63076239824295,0.546913266181946,0.631157338619232, +0.507882714271545,0.64008766412735,0.511593341827393,0.632681608200073,0.553741991519928,0.645597279071808,0.537056267261505,0.62805312871933,0.540444016456604,0.626171886920929,0.551025211811066,0.638614058494568,0.551160633563995,0.631937205791473,0.504063248634338,0.643166542053223,0.553654670715332,0.642700672149658,0.546925902366638,0.623029708862305,0.549873113632202,0.623931109905243,0.552877306938171,0.634838879108429,0.555270075798035,0.62841522693634,0.502319991588593,0.651775300502777,0.502557992935181,0.640358567237854,0.557248771190643,0.643526077270508,0.541117548942566,0.623148679733276,0.555366277694702,0.63602888584137,0.56103789806366,0.630742132663727,0.557052552700043,0.632767677307129,0.508229613304138,0.656636714935303,0.499201834201813,0.649081289768219,0.561249315738678,0.625614821910858,0.556492984294891,0.641075134277344,0.561513900756836,0.62874436378479,0.504017651081085,0.657388687133789,0.495584905147552,0.653785705566406,0.559259176254272,0.634507179260254,0.559047758579254,0.637302458286285,0.506706655025482,0.661090433597565,0.496207773685455,0.650949895381927,0.565233409404755,0.626939058303833,0.559156656265259,0.639963567256927,0.499931037425995,0.660449862480164,0.496858477592468,0.656350612640381,0.497026860713959,0.647020220756531,0.493090897798538,0.652357637882233,0.564088940620422,0.63089656829834,0.503731548786163,0.66412627696991,0.491819828748703,0.655393481254578,0.493655532598495,0.658887624740601,0.496111541986465,0.666156947612762,0.113056808710098,0.914314031600952,0.107596591114998,0.912141561508179,0.114411421120167,0.910455286502838,0.109631039202213,0.908723413944244,0.101014703512192,0.908753752708435,0.110910952091217,0.904753267765045,0.0931402370333672,0.91223269701004,0.104117646813393,0.902479529380798,0.116707928478718,0.906176209449768,0.101505905389786,0.914450705051422,0.092386968433857,0.908333480358124,0.0984054952859879,0.904783606529236,0.113306209445,0.902428865432739,0.106164753437042,0.898114383220673,0.108537219464779,0.915114104747772,0.0965216979384422, +0.919119715690613,0.0868153423070908,0.912389695644379,0.0973749756813049,0.900388121604919,0.117399156093597,0.902459263801575,0.102379441261292,0.895916640758514,0.102621242403984,0.917099177837372,0.0918020829558373,0.922203660011292,0.0922135263681412,0.903791069984436,0.0857088640332222,0.908880352973938,0.100062675774097,0.897567451000214,0.114397495985031,0.899030983448029,0.108010567724705,0.895572245121002,0.103970788419247,0.891597032546997,0.108571402728558,0.918669044971466,0.103589728474617,0.919833719730377,0.0889624655246735,0.906510412693024,0.0911918729543686,0.898438453674316,0.0952873602509499,0.894772171974182,0.117792882025242,0.898276448249817,0.100680477917194,0.892549097537994,0.105015233159065,0.922578394412994,0.115038082003593,0.895450711250305,0.10786497592926,0.890396893024445,0.0985093042254448,0.890032291412354,0.0987333878874779,0.926771342754364,0.0884041637182236,0.8947873711586,0.113870844244957,0.8919717669487,0.118092924356461,0.893182098865509,0.105433009564877,0.885758280754089,0.101954065263271,0.886578679084778,0.106049545109272,0.925637006759644,0.089102990925312,0.925591468811035,0.0915666073560715,0.889627158641815,0.120532482862473,0.897228181362152,0.11055900901556,0.886335611343384,0.0938998311758041,0.887414216995239,0.0984308123588562,0.884953141212463,0.0989663302898407,0.92967301607132,0.0865950584411621,0.922320127487183,0.119556404650211,0.888908088207245,0.121243976056576,0.893080830574036,0.120385631918907,0.901102125644684,0.109474055469036,0.88203626871109,0.101395763456821,0.882173001766205,0.104787357151508,0.930908620357513,0.0947594419121742,0.932534158229828,0.123239174485207,0.896448314189911,0.123322732746601,0.899228453636169,0.113184675574303,0.881722331047058,0.104879774153233,0.880780458450317,0.0944176241755486,0.883337736129761,0.0985700711607933,0.881362795829773,0.105803944170475,0.933526694774628,0.0928832367062569,0.935810565948486,0.123641759157181,0.889444887638092,0.125592648983002,0.892640233039856,0.119864046573639,0.884325206279755,0.105355784296989, +0.878000319004059,0.113121375441551,0.878891587257385,0.10166921466589,0.878719389438629,0.0907677710056305,0.885044276714325,0.102535158395767,0.937203109264374,0.0862545073032379,0.928204476833344,0.125326797366142,0.88581907749176,0.127290353178978,0.89732438325882,0.125931933522224,0.895683705806732,0.0946961417794228,0.880587995052338,0.0993321985006332,0.876050710678101,0.0987105965614319,0.941740453243256,0.128422141075134,0.889814555644989,0.129341259598732,0.894934237003326,0.122758097946644,0.882076799869537,0.102937743067741,0.875878512859344,0.108529627323151,0.875681042671204,0.0905690044164658,0.882968068122864,0.105864711105824,0.940636515617371,0.129518494009972,0.892574429512024,0.128875374794006,0.886993944644928,0.127800539135933,0.883206069469452,0.114230379462242,0.877078652381897,0.100857719779015,0.944495260715485,0.108395427465439,0.936367571353912,0.131251633167267,0.889794290065765,0.134334325790405,0.891637563705444,0.106047011911869,0.944616794586182,0.133840590715408,0.88689261674881,0.134783744812012,0.888310551643372,0.132815137505531,0.883596003055573,0.139267891645432,0.888437151908875,0.139280542731285,0.885839343070984,0.408483445644379,0.846203684806824,0.403960049152374,0.850300431251526,0.403611898422241,0.844132542610168,0.399911403656006,0.852391839027405,0.406073004007339,0.843226075172424,0.400565922260284,0.857222855091095,0.391925543546677,0.849029362201691,0.403019428253174,0.840273797512054,0.405942589044571,0.85275137424469,0.395548820495605,0.857395052909851,0.392316728830338,0.84380841255188,0.396770477294922,0.840334534645081,0.398703664541245,0.860473930835724,0.387299597263336,0.852462768554688,0.388027548789978,0.847135424613953,0.388438999652863,0.856919050216675,0.388892233371735,0.842304408550262,0.391917943954468,0.840749800205231,0.38310918211937,0.851024568080902,0.391257107257843,0.860641062259674,0.377247631549835,0.859152257442474,0.381893843412399,0.848371088504791,0.393792867660522,0.837574660778046,0.395332336425781,0.862317204475403,0.38863018155098, +0.864049077033997,0.377169162034988,0.86473274230957,0.38674384355545,0.840288996696472,0.389461934566498,0.838050723075867,0.376348793506622,0.855784714221954,0.39162677526474,0.866611480712891,0.384261220693588,0.866677284240723,0.373445868492126,0.862089335918427,0.374363720417023,0.853647708892822,0.372812867164612,0.858488857746124,0.388934016227722,0.869062423706055,0.37269514799118,0.867031753063202,0.376951396465302,0.869275093078613,0.378230065107346,0.847976088523865,0.383418083190918,0.872602105140686,0.393348515033722,0.870763897895813,0.371034145355225,0.865264415740967,0.37289896607399,0.851971566677094,0.390748172998428,0.873209834098816,0.370601177215576,0.870470225811005,0.376723527908325,0.873549103736877,0.389794886112213,0.876111447811127,0.3825863301754,0.8762127161026,0.373690217733383,0.875432908535004,0.388484567403793,0.879377722740173,0.368003368377686,0.872627437114716,0.379685938358307,0.878795385360718,0.367367833852768,0.876430511474609,0.365690410137177,0.869776427745819,0.371877312660217,0.878856122493744,0.382558465003967,0.883656740188599,0.367060214281082,0.867117881774902,0.374044686555862,0.881514728069305,0.38954421877861,0.88413280248642,0.367855250835419,0.881570398807526,0.384118169546127,0.886852145195007,0.375928491353989,0.885408878326416,0.368341386318207,0.884213805198669,0.390144288539886,0.886872410774231,0.385561406612396,0.889606952667236,0.378747850656509,0.890027225017548,0.371002495288849,0.888740956783295,0.364661157131195,0.886943280696869,0.381801426410675,0.894488573074341,0.373680084943771,0.892093300819397,0.366300612688065,0.889617025852203,0.387975662946701,0.893683433532715,0.370244175195694,0.894230306148529,0.384844839572906,0.897440850734711,0.375671476125717,0.897471249103546,0.39075955748558,0.89790678024292,0.379913806915283,0.900079190731049,0.387097060680389,0.900929927825928,0.373349666595459,0.89992219209671,0.39263704419136,0.900514721870422,0.382882565259933,0.903603732585907,0.375573992729187,0.903001129627228,0.390389889478683,0.903325200080872, +0.387137562036514,0.905284941196442,0.371155679225922,0.903618931770325,0.395008236169815,0.903755664825439,0.381417810916901,0.90668261051178,0.374080121517181,0.905391275882721,0.392931997776031,0.906718075275421,0.387851595878601,0.908085346221924,0.372336864471436,0.907052278518677,0.396970510482788,0.907725811004639,0.385428488254547,0.91027295589447,0.37874910235405,0.908530950546265,0.369295954704285,0.905386209487915,0.397504776716232,0.911285758018494,0.390401303768158,0.911731362342834,0.399941802024841,0.910146355628967,0.387814879417419,0.913311362266541,0.380288541316986,0.910338819026947,0.396371692419052,0.914936900138855,0.398570716381073,0.906378746032715,0.403452396392822,0.912885963916779,0.402047127485275,0.909862756729126,0.407698512077332,0.919256448745728,0.102719992399216,0.959626376628876,0.095070868730545,0.959033906459808,0.0996347665786743,0.954962432384491,0.0994562655687332,0.964877665042877,0.0938972979784012,0.955342233181,0.104915216565132,0.963388860225677,0.0988777056336403,0.971106350421906,0.0963406637310982,0.952091157436371,0.0894258171319962,0.959150373935699,0.105676077306271,0.968609809875488,0.0937086641788483,0.973678886890411,0.0996398329734802,0.951129019260406,0.093350388109684,0.951787352561951,0.0868761092424393,0.954709231853485,0.0979155525565147,0.975481629371643,0.107261098921299,0.971278548240662,0.102708600461483,0.950855553150177,0.0983333289623261,0.948414742946625,0.0904651954770088,0.951205015182495,0.0950240269303322,0.948946475982666,0.0837529078125954,0.957757771015167,0.0871217101812363,0.966057598590851,0.103315003216267,0.973683953285217,0.0940631404519081,0.978854238986969,0.101556546986103,0.948546409606934,0.0924325436353683,0.948728740215302,0.0864418745040894,0.951731622219086,0.0825742706656456,0.952992558479309,0.0861291736364365,0.962750852108002,0.0843529924750328,0.970751881599426,0.103390969336033,0.977304637432098,0.0889244824647903,0.977142632007599,0.103221319615841,0.979897439479828,0.1096196398139,0.976069033145905,0.0892650336027145, +0.948794543743134,0.0880509540438652,0.950009882450104,0.0804524719715118,0.956866502761841,0.0839428082108498,0.968098402023315,0.0852455124258995,0.974489092826843,0.0818982347846031,0.965282797813416,0.0917767658829689,0.982474982738495,0.0949341431260109,0.983462452888489,0.082459069788456,0.950177013874054,0.0851860120892525,0.949832677841187,0.0789674669504166,0.952379822731018,0.0815513506531715,0.969212472438812,0.107215523719788,0.979340374469757,0.0879002958536148,0.980611443519592,0.0845745429396629,0.977578103542328,0.0990511476993561,0.984520792961121,0.0781395062804222,0.949964344501495,0.0792371183633804,0.971617817878723,0.108324535191059,0.982495248317719,0.111645229160786,0.979583442211151,0.0925958603620529,0.988252937793732,0.0889915823936462,0.985006928443909,0.0968128740787506,0.987979471683502,0.104663290083408,0.985467791557312,0.0834832563996315,0.979902505874634,0.111608512699604,0.984855055809021,0.114368371665478,0.982763588428497,0.0965495482087135,0.991068542003632,0.0862215906381607,0.98275351524353,0.107621908187866,0.989503741264343,0.104994975030422,0.992415547370911,0.0931744202971458,0.992896616458893,0.114700064063072,0.985057592391968,0.115068465471268,0.988065600395203,0.103891029953957,0.995155155658722,0.0967850238084793,0.993960022926331,0.110657751560211,0.993165016174316,0.0973002836108208,0.996643960475922,0.114855781197548,0.991504013538361,0.110152624547482,0.996005892753601,0.0926034525036812,0.995458960533142,0.117905557155609,0.989048004150391,0.114684872329235,0.99475508928299,0.109420880675316,0.998006165027618,0.104231581091881,0.997636497020721,0.0908639803528786,0.993296682834625,0.117701731622219,0.992182612419128,0.117701731622219,0.986232459545136,0.116769962012768,0.997773230075836,0.120667949318886,0.989939272403717,0.12027295678854,0.988308668136597,0.117965057492256,0.995514690876007,0.120508432388306,0.992390215396881,0.122427672147751,0.994881689548492,0.122960656881332,0.990850746631622,0.123199932277203,0.992790281772614,0.126664951443672,0.993691623210907, +0.328969061374664,0.23519204556942,0.32858419418335,0.232044786214828,0.332999974489212,0.235456630587578,0.326908022165298,0.233267739415169,0.329650163650513,0.227294787764549,0.331594735383987,0.239058375358582,0.326718121767044,0.23022934794426,0.333729207515717,0.231530800461769,0.338000655174255,0.239896461367607,0.328176558017731,0.236806184053421,0.327059954404831,0.226565569639206,0.335473746061325,0.223372742533684,0.332182168960571,0.242306903004646,0.329693228006363,0.240719363093376,0.330029964447021,0.223512008786201,0.345611780881882,0.225749015808105,0.346892982721329,0.243389338254929,0.336347252130508,0.244705960154533,0.327568888664246,0.221705436706543,0.346579015254974,0.219736814498901,0.349799692630768,0.229279860854149,0.331680834293365,0.221275001764297,0.348564088344574,0.235790848731995,0.331885904073715,0.244573026895523,0.33719801902771,0.218750610947609,0.350483328104019,0.225024864077568,0.328776627779007,0.219988748431206,0.359205991029739,0.241354882717133,0.347457617521286,0.251662582159042,0.335858583450317,0.246986016631126,0.347601920366287,0.215103298425674,0.351478397846222,0.217658057808876,0.354357242584229,0.227363154292107,0.353764772415161,0.233417123556137,0.332240402698517,0.217075705528259,0.356114447116852,0.237293586134911,0.340600997209549,0.249709159135818,0.334974944591522,0.248944506049156,0.342727869749069,0.214087963104248,0.35466867685318,0.220726817846298,0.354096472263336,0.23042431473732,0.354554742574692,0.22430831193924,0.337904423475266,0.215642601251602,0.328817158937454,0.216507270932198,0.362176030874252,0.239745810627937,0.366546213626862,0.248067170381546,0.34477624297142,0.25371727347374,0.343826740980148,0.210379883646965,0.352086067199707,0.213257476687431,0.355301678180695,0.214320912957191,0.358021020889282,0.228529125452042,0.357522219419479,0.224124744534492,0.358099520206451,0.231800451874733,0.357985585927963,0.235013529658318,0.336676418781281,0.212523207068443,0.32944256067276,0.213996812701225,0.366467714309692,0.241353616118431,0.362054467201233, +0.236503601074219,0.369171887636185,0.24568584561348,0.371205061674118,0.256180912256241,0.339590728282928,0.252379149198532,0.353020370006561,0.257429182529449,0.34872105717659,0.209034129977226,0.358086854219437,0.219444379210472,0.331356734037399,0.212496623396873,0.366001844406128,0.237908855080605,0.385163873434067,0.251870214939117,0.38211789727211,0.255175709724426,0.356793016195297,0.255811244249344,0.342368304729462,0.255270659923553,0.338284224271774,0.253400802612305,0.337304353713989,0.208691045641899,0.344507843255997,0.204893067479134,0.355982780456543,0.207980826497078,0.353058338165283,0.206527471542358,0.357620984315872,0.213963896036148,0.360811293125153,0.228544324636459,0.361765831708908,0.233033522963524,0.3324935734272,0.209393665194511,0.330561697483063,0.208336561918259,0.36985045671463,0.239169776439667,0.370779693126678,0.242932304739952,0.36517134308815,0.234150126576424,0.376641243696213,0.245276927947998,0.387490779161453,0.263812303543091,0.368424952030182,0.260144710540771,0.347252517938614,0.257434248924255,0.360988527536392,0.260291576385498,0.339446425437927,0.206632539629936,0.34968575835228,0.203689113259315,0.359765559434891,0.214729830622673,0.360178291797638,0.222892940044403,0.368493318557739,0.235114812850952,0.397236377000809,0.256144195795059,0.385158807039261,0.248809039592743,0.334152042865753,0.20507538318634,0.332382172346115,0.207003474235535,0.339061558246613,0.202770009636879,0.345247179269791,0.200048118829727,0.353931874036789,0.202350959181786,0.358314752578735,0.208820179104805,0.362264633178711,0.218018874526024,0.36246719956398,0.223893061280251,0.364269971847534,0.230305314064026,0.373873770236969,0.240542113780975,0.373815536499023,0.233128473162651,0.367166548967361,0.231090232729912,0.395003169775009,0.252881735563278,0.383216798305511,0.244351491332054,0.390131622552872,0.250853627920151,0.40134072303772,0.265187174081802,0.382191330194473,0.26788118481636,0.368754118680954,0.263541370630264,0.351597398519516,0.192015409469604,0.356884181499481,0.201257139444351, +0.362421631813049,0.211174920201302,0.331245332956314,0.205355152487755,0.370366990566254,0.231933385133743,0.378287017345428,0.242258802056313,0.400262087583542,0.252093017101288,0.388688415288925,0.246637865900993,0.411637037992477,0.260952413082123,0.377223581075668,0.2668696641922,0.334088742733002,0.200811520218849,0.34118589758873,0.197598427534103,0.346619516611099,0.193291530013084,0.355747312307358,0.190507620573044,0.360236525535584,0.208137810230255,0.365799278020859,0.213100492954254,0.365358710289001,0.222895473241806,0.365784078836441,0.226851686835289,0.375734776258469,0.237421452999115,0.373367369174957,0.229512795805931,0.369468122720718,0.228251874446869,0.394560068845749,0.248365938663483,0.41134712100029,0.254131257534027,0.38008725643158,0.239133074879646,0.385080337524414,0.24113966524601,0.394200533628464,0.271485477685928,0.411925673484802,0.267032980918884,0.377464115619659,0.26976752281189,0.335916817188263,0.196041256189346,0.331802368164063,0.202672526240349,0.347470253705978,0.18890106678009,0.35909965634346,0.186199441552162,0.352640569210052,0.186328575015068,0.363019168376923,0.205352634191513,0.3667032122612,0.208142876625061,0.365652441978455,0.21946969628334,0.379107385873795,0.235080629587173,0.377742648124695,0.231218099594116,0.400054484605789,0.250035792589188,0.405490636825562,0.251185297966003,0.390860855579376,0.242260068655014,0.382049560546875,0.272053897380829,0.405685603618622,0.272529929876328,0.418877214193344,0.262504518032074,0.422886610031128,0.269206702709198,0.372478663921356,0.267317831516266,0.340942800045013,0.192992761731148,0.342499971389771,0.190045535564423,0.357410818338394,0.180856958031654,0.360834062099457,0.202552258968353,0.370799958705902,0.213056176900864,0.369739055633545,0.216942772269249,0.36915922164917,0.221752271056175,0.369090855121613,0.224907130002975,0.373377501964569,0.226412385702133,0.379274487495422,0.229338094592094,0.413418263196945,0.250762462615967,0.387369245290756,0.238351956009865,0.420205265283585,0.255075693130493,0.411178737878799, +0.276717811822891,0.376605778932571,0.272295713424683,0.336957484483719,0.189731568098068,0.348285555839539,0.183380082249641,0.342201203107834,0.187089443206787,0.360991060733795,0.17645637691021,0.353579938411713,0.180168271064758,0.367538750171661,0.202282592654228,0.3640978038311,0.200853288173676,0.371954530477524,0.205422252416611,0.385799407958984,0.234605878591537,0.405971705913544,0.247531652450562,0.391233056783676,0.241172581911087,0.396755307912827,0.283170580863953,0.424126029014587,0.261487931013107,0.42668205499649,0.272572964429855,0.381006360054016,0.276583611965179,0.334081143140793,0.191688790917397,0.364411771297455,0.179684653878212,0.358661621809006,0.174020618200302,0.355152308940887,0.171101242303848,0.361624032258987,0.195626020431519,0.374121904373169,0.219315245747566,0.389587253332138,0.20677687227726,0.374066203832626,0.223615810275078,0.392486363649368,0.234248876571655,0.417287141084671,0.245802313089371,0.422577708959579,0.246380865573883,0.392387628555298,0.238174721598625,0.38826048374176,0.279528319835663,0.426279485225677,0.248384937644005,0.427391022443771,0.264650374650955,0.427202373743057,0.268978804349899,0.428982377052307,0.278894066810608,0.417778342962265,0.281036108732224,0.377385646104813,0.275836676359177,0.349232524633408,0.17725396156311,0.343001306056976,0.183509215712547,0.337714523077011,0.18379533290863,0.363383769989014,0.173737034201622,0.360140293836594,0.190630421042442,0.36190003156662,0.171096175909042,0.369660556316376,0.191849559545517,0.365067541599274,0.193563714623451,0.384687870740891,0.216538920998573,0.376010775566101,0.190201252698898,0.384434670209885,0.22605411708355,0.402242094278336,0.231766268610954,0.410088717937469,0.243966624140739,0.388154149055481,0.289313167333603,0.428351908922195,0.259852290153503,0.431050986051559,0.270357489585876,0.430587649345398,0.276401311159134,0.415902137756348,0.290084153413773,0.384867638349533,0.279289036989212,0.379492253065109,0.279281437397003,0.344535708427429,0.180611357092857,0.365548610687256,0.173524349927902, +0.363307803869247,0.186229825019836,0.359560489654541,0.168445184826851,0.350508630275726,0.170898675918579,0.404039800167084,0.19637168943882,0.393714398145676,0.214647531509399,0.396600842475891,0.235162928700447,0.398423880338669,0.233945041894913,0.416713654994965,0.240610480308533,0.4129878282547,0.242228418588638,0.406938940286636,0.245698496699333,0.427769541740417,0.2421765178442,0.383583933115005,0.286877393722534,0.387792080640793,0.292361676692963,0.430281281471252,0.249952226877213,0.430468648672104,0.263641387224197,0.431007951498032,0.267054498195648,0.430982649326324,0.273494601249695,0.436975836753845,0.278664916753769,0.40255606174469,0.291486859321594,0.344548344612122,0.175798058509827,0.340623795986176,0.178730100393295,0.367589384317398,0.179715037345886,0.365898042917252,0.158631220459938,0.361325263977051,0.15899583697319,0.351207464933395,0.166295528411865,0.345723181962967,0.173078715801239,0.376415878534317,0.184961304068565,0.366551280021667,0.185255020856857,0.401715457439423,0.222497940063477,0.400750756263733,0.205112084746361,0.384657502174377,0.185203105211258,0.419514030218124,0.23890645802021,0.431050986051559,0.246171981096268,0.382396429777145,0.289494186639786,0.432499289512634,0.2522993683815,0.431476384401321,0.259911775588989,0.433658927679062,0.268387585878372,0.434466630220413,0.271396845579147,0.434778064489365,0.274728953838348,0.437578439712524,0.282390713691711,0.426645338535309,0.290457606315613,0.405202001333237,0.297269910573959,0.379672020673752,0.285458207130432,0.368607252836227,0.173314183950424,0.368047684431076,0.159876957535744,0.357666552066803,0.157501965761185,0.364649772644043,0.155856177210808,0.351764500141144,0.162796333432198,0.346629649400711,0.167943850159645,0.345500379800797,0.170653074979782,0.37084299325943,0.185309454798698,0.411778807640076,0.208660662174225,0.404569000005722,0.182763546705246,0.410016566514969,0.216755405068398,0.404837399721146,0.230171114206314,0.432258754968643,0.241908118128777,0.42150416970253,0.237720221281052,0.387035012245178, +0.29721674323082,0.382872432470322,0.293135195970535,0.434114694595337,0.246693566441536,0.433707058429718,0.263718605041504,0.438272207975388,0.276424109935761,0.43284872174263,0.284040302038193,0.444116026163101,0.281789362430573,0.430023014545441,0.298537164926529,0.341423898935318,0.173096433281899,0.3730508685112,0.172425463795662,0.370280891656876,0.164295271039009,0.365460008382797,0.150716245174408,0.362735599279404,0.150989696383476,0.346059948205948,0.164566189050674,0.372015297412872,0.179499819874763,0.377276748418808,0.174757421016693,0.413817048072815,0.194197982549667,0.412984043359756,0.186813458800316,0.395139902830124,0.17833511531353,0.413786679506302,0.221821904182434,0.408196061849594,0.227327704429626,0.433193057775497,0.238001272082329,0.433228492736816,0.233334824442863,0.37934285402298,0.28735214471817,0.380720257759094,0.29045507311821,0.435243964195251,0.250130742788315,0.436474502086639,0.269544720649719,0.437467038631439,0.271175295114517,0.442399352788925,0.276795029640198,0.448136806488037,0.283704817295074,0.446678400039673,0.288652300834656,0.45098277926445,0.294746786355972,0.417780876159668,0.302149057388306,0.39081272482872,0.30011460185051,0.37220773100853,0.152587383985519,0.369440287351608,0.151301130652428,0.352855801582336,0.156785413622856,0.358960390090942,0.151037812232971,0.347829818725586,0.160894811153412,0.342388570308685,0.168602168560028,0.416644006967545,0.201904073357582,0.414950132369995,0.182088777422905,0.399145483970642,0.17167092859745,0.416775673627853,0.220039397478104,0.411892741918564,0.222956240177155,0.435600966215134,0.242503136396408,0.436834037303925,0.239657193422318,0.425155282020569,0.233344957232475,0.383708000183105,0.296635657548904,0.436006098985672,0.247794985771179,0.434540063142776,0.252814650535584,0.45088654756546,0.282695829868317,0.454046458005905,0.301928758621216,0.440778881311417,0.303383380174637,0.400581121444702,0.304674685001373,0.385855108499527,0.300279170274735,0.37465363740921,0.164507955312729,0.376357644796371,0.153592586517334, +0.370194792747498,0.147422134876251,0.354372441768646,0.149959191679955,0.360378295183182,0.142548069357872,0.365184009075165,0.137818336486816,0.344143241643906,0.160249158740044,0.341793566942215,0.164120554924011,0.433236092329025,0.197849094867706,0.434145092964172,0.211131870746613,0.430959850549698,0.19170144200325,0.408765763044357,0.175980374217033,0.422562539577484,0.216599687933922,0.438170939683914,0.244486942887306,0.438403874635696,0.235221162438393,0.42834684252739,0.230496481060982,0.433947592973709,0.255231410264969,0.458560973405838,0.29069310426712,0.454456657171249,0.282879382371902,0.461429715156555,0.29884734749794,0.427956908941269,0.310478001832962,0.411823123693466,0.309639900922775,0.386596977710724,0.303449213504791,0.390293687582016,0.305363386869431,0.373539566993713,0.145538344979286,0.367250114679337,0.140671879053116,0.349647760391235,0.148936256766319,0.344753444194794,0.155364960432053,0.406435072422028,0.166586712002754,0.440171211957932,0.207325041294098,0.425649017095566,0.2145766466856,0.422700524330139,0.179140284657478,0.41826069355011,0.171017676591873,0.420321732759476,0.2181745916605,0.439173609018326,0.240496546030045,0.439441978931427,0.231706768274307,0.441173851490021,0.236698567867279,0.438869774341583,0.228824108839035,0.433415859937668,0.25806850194931,0.454806059598923,0.285775989294052,0.464361757040024,0.294259399175644,0.451466381549835,0.306430637836456,0.461305648088455,0.301593273878098,0.406721174716949,0.31200984120369,0.380039155483246,0.161586046218872,0.378041416406631,0.144702792167664,0.355375111103058,0.143639355897903,0.36214816570282,0.13350635766983,0.368926286697388,0.130835115909576,0.444561660289764,0.193577647209167,0.44442492723465,0.203328311443329,0.437970906496048,0.210578635334969,0.437867105007172,0.180758222937584,0.440143346786499,0.242182835936546,0.443675458431244,0.231511801481247,0.430828183889389,0.228635475039482,0.461860150098801,0.285639256238937,0.469253540039063,0.28916123509407,0.457467168569565,0.305671036243439,0.469233304262161, +0.300244987010956,0.441616952419281,0.315383732318878,0.415236234664917,0.316758573055267,0.386954009532928,0.305874854326248,0.394046068191528,0.310357719659805,0.383366167545319,0.146470114588737,0.371412694454193,0.140466779470444,0.374385237693787,0.141927734017372,0.345487713813782,0.149138823151588,0.351384699344635,0.137003034353256,0.357453882694244,0.133663341403008,0.367242515087128,0.126464918255806,0.407935261726379,0.160585910081863,0.447344303131104,0.186195656657219,0.448091238737106,0.197041392326355,0.449088841676712,0.2062097042799,0.442723453044891,0.209479764103889,0.435522466897964,0.174922004342079,0.416817456483841,0.165295407176018,0.440796613693237,0.241332098841667,0.444802194833755,0.234342560172081,0.43433752655983,0.226457968354225,0.459216773509979,0.282559096813202,0.482485681772232,0.291667908430099,0.4519322514534,0.309481680393219,0.467683732509613,0.303369462490082,0.463105887174606,0.304407566785812,0.44687083363533,0.311759173870087,0.436054199934006,0.31720295548439,0.405088067054749,0.319851398468018,0.389797419309616,0.30787006020546,0.392704129219055,0.314392447471619,0.390005022287369,0.153445720672607,0.369513690471649,0.138534873723984,0.379011154174805,0.13898304104805,0.346184015274048,0.143484905362129,0.34292283654213,0.151845514774323,0.36361163854599,0.124327927827835,0.358671754598618,0.125257164239883,0.369809955358505,0.126801669597626,0.464544057846069,0.188166797161102,0.463602155447006,0.194908201694489,0.44853687286377,0.208199843764305,0.454147756099701,0.205283001065254,0.456778466701508,0.202086374163628,0.444657862186432,0.169749155640602,0.457520335912704,0.176271542906761,0.445265561342239,0.228268340229988,0.440718114376068,0.225637599825859,0.467379868030548,0.285067021846771,0.466139197349548,0.283211082220078,0.472405880689621,0.283985882997513,0.45673543214798,0.309437364339828,0.47231724858284,0.304560750722885,0.477100163698196,0.300165235996246,0.445865631103516,0.315116584300995,0.440300345420837,0.318995594978333,0.428473442792892,0.323773443698883, +0.41464376449585,0.32667002081871,0.38826048374176,0.30875626206398,0.390144288539886,0.311279386281967,0.399029016494751,0.145112976431847,0.375803142786026,0.133412674069405,0.372673600912094,0.132896155118942,0.389736652374268,0.132435336709023,0.343403905630112,0.143998891115189,0.351604998111725,0.133189871907234,0.346781551837921,0.137894287705421,0.36923012137413,0.119942530989647,0.353357136249542,0.130764231085777,0.404834866523743,0.153957188129425,0.41885569691658,0.160046607255936,0.468180000782013,0.182868629693985,0.470008075237274,0.201060920953751,0.455084562301636,0.210583701729774,0.439203977584839,0.166017010807991,0.447493702173233,0.2313282340765,0.43674036860466,0.224651396274567,0.464949190616608,0.281328558921814,0.483898520469666,0.28183114528656,0.459490239620209,0.308023244142532,0.454613626003265,0.312193423509598,0.450471311807632,0.313774645328522,0.492725014686584,0.291537493467331,0.445255428552628,0.318034708499908,0.435066729784012,0.321735203266144,0.419436782598495,0.325623065233231,0.398016214370728,0.320966750383377,0.397041410207748,0.317000389099121,0.390437990427017,0.314601331949234,0.370731592178345,0.131551668047905,0.386237442493439,0.13039456307888,0.381089925765991,0.130698397755623,0.347910821437836,0.134703993797302,0.36511817574501,0.117625772953033,0.359261691570282,0.120524890720844,0.353876173496246,0.126280084252357,0.372731864452362,0.117737181484699,0.475456893444061,0.189394816756248,0.472702115774155,0.19935816526413,0.459272474050522,0.207209840416908,0.465037792921066,0.174210518598557,0.462194383144379,0.167953982949257,0.450235843658447,0.227372005581856,0.439523011445999,0.222758740186691,0.469759941101074,0.279977738857269,0.47675833106041,0.281399458646774,0.492484480142593,0.281410843133926,0.461571514606476,0.306321740150452,0.483630150556564,0.304444283246994,0.488071233034134,0.301140040159225,0.449714243412018,0.316529452800751,0.443726092576981,0.320790767669678,0.439874947071075,0.321987122297287,0.432570189237595,0.326407968997955,0.426316201686859, +0.328286707401276,0.419812798500061,0.328834861516953,0.404624700546265,0.325743317604065,0.393030762672424,0.317415624856949,0.415918618440628,0.151589781045914,0.397930145263672,0.135093912482262,0.375084072351456,0.125107780098915,0.393704265356064,0.128412008285522,0.378413617610931,0.123821534216404,0.344474941492081,0.134519159793854,0.346627116203308,0.132045403122902,0.348536223173141,0.129374161362648,0.370566993951797,0.114053145051003,0.353377372026443,0.122145362198353,0.374208003282547,0.120314732193947,0.436350435018539,0.157686799764633,0.487017929553986,0.182783797383308,0.482024878263474,0.209135413169861,0.459312975406647,0.210891336202621,0.470144808292389,0.206276804208755,0.472929984331131,0.17393958568573,0.451144814491272,0.223495543003082,0.451686650514603,0.230234414339066,0.482597082853317,0.277279913425446,0.488256067037582,0.277325481176376,0.452945053577423,0.314787447452545,0.481391876935959,0.308475196361542,0.502303540706635,0.286843210458755,0.499024599790573,0.300910919904709,0.447681069374084,0.319776713848114,0.438297539949417,0.324716597795486,0.417306125164032,0.330809831619263,0.409212648868561,0.327576488256454,0.40017095208168,0.324331730604172,0.417190939188004,0.144781276583672,0.38352569937706,0.123051807284355,0.387483179569244,0.121023692190647,0.36009219288826,0.115139365196228,0.366239845752716,0.112906157970428,0.355544745922089,0.118876568973064,0.348961591720581,0.125492632389069,0.373980104923248,0.114668413996696,0.376767843961716,0.118780352175236,0.427104920148849,0.156296730041504,0.481303244829178,0.192519277334213,0.492583245038986,0.208350494503975,0.463247686624527,0.208916395902634,0.4568772315979,0.214023396372795,0.463495820760727,0.158962920308113,0.455621361732483,0.225722432136536,0.455038994550705,0.228868409991264,0.443093121051788,0.22020523250103,0.472922384738922,0.279156118631363,0.478763669729233,0.277012795209885,0.49335041642189,0.272898316383362,0.49575075507164,0.306234389543533,0.490861475467682,0.309456348419189,0.478576302528381,0.310307085514069, +0.510266602039337,0.278849750757217,0.500553905963898,0.295589953660965,0.442308187484741,0.324122846126556,0.435821264982224,0.328829795122147,0.431805521249771,0.330281913280487,0.425528734922409,0.331038951873779,0.413423329591751,0.329389363527298,0.397441476583481,0.323611408472061,0.39427649974823,0.320337533950806,0.429926812648773,0.147320866584778,0.408112496137619,0.134878695011139,0.409588664770126,0.13878807425499,0.376167744398117,0.120372973382473,0.39395746588707,0.124391227960587,0.383518099784851,0.119489312171936,0.344381242990494,0.131219983100891,0.345221877098084,0.128386691212654,0.372134298086166,0.108824603259563,0.351485997438431,0.115397624671459,0.347566485404968,0.120811007916927,0.375418275594711,0.11071852594614,0.43830007314682,0.152815267443657,0.501032471656799,0.188054129481316,0.482731282711029,0.174473837018013,0.486625492572784,0.198433980345726,0.490443706512451,0.212757408618927,0.473046451807022,0.209816515445709,0.463612288236618,0.211862355470657,0.462814718484879,0.215694516897202,0.468017935752869,0.210848301649094,0.478829503059387,0.166900679469109,0.458631873130798,0.221302852034569,0.444941461086273,0.219712764024735,0.487716764211655,0.274257987737656,0.480860143899918,0.275346755981445,0.50680285692215,0.273054033517838,0.492613613605499,0.312637776136398,0.474398523569107,0.308528363704681,0.482647746801376,0.311916172504425,0.512226343154907,0.28762811422348,0.511841475963593,0.294135332107544,0.508782863616943,0.300891906023026,0.506524324417114,0.30660405755043,0.445098429918289,0.323012590408325,0.439900279045105,0.327052354812622,0.433750092983246,0.32771572470665,0.421442121267319,0.143454521894455,0.401996493339539,0.129837527871132,0.389873385429382,0.11895252764225,0.380958259105682,0.117175079882145,0.361522763967514,0.109432272613049,0.35660058259964,0.111822463572025,0.368159085512161,0.10679142177105,0.345713078975677,0.12354301661253,0.378147751092911,0.115739442408085,0.377056479454041,0.112323798239231,0.494259417057037,0.182222962379456,0.494872152805328, +0.193083912134171,0.499239802360535,0.217003539204597,0.477674931287766,0.21169650554657,0.498885333538055,0.201133072376251,0.459778875112534,0.218594893813133,0.454768091440201,0.152058199048042,0.483559250831604,0.16004154086113,0.4655821621418,0.224209561944008,0.449954777956009,0.218539193272591,0.459611773490906,0.228035390377045,0.482754081487656,0.273683220148087,0.489504337310791,0.267302632331848,0.498806834220886,0.26547709107399,0.500247538089752,0.309189230203629,0.49830549955368,0.312356740236282,0.487033128738403,0.313513845205307,0.469030737876892,0.306074887514114,0.525298953056335,0.273747801780701,0.523650646209717,0.280237257480621,0.429146945476532,0.143753290176392,0.417942941188812,0.139471709728241,0.407839059829712,0.132080852985382,0.385685473680496,0.117466256022453,0.398608714342117,0.125231847167015,0.394947469234467,0.121021158993244,0.376623511314392,0.107586458325386,0.372534364461899,0.105500109493732,0.347262650728226,0.117332063615322,0.355481445789337,0.108584061264992,0.379553020000458,0.110429875552654,0.43649223446846,0.149404674768448,0.501824975013733,0.182259678840637,0.517518222332001,0.191274806857109,0.50349098443985,0.211383804678917,0.488537132740021,0.216016069054604,0.504620254039764,0.206906005740166,0.473056584596634,0.212918192148209,0.468220502138138,0.21441712975502,0.464574456214905,0.220555916428566,0.447832971811295,0.149581924080849,0.472251415252686,0.156534746289253,0.496933192014694,0.163214117288589,0.464675724506378,0.227061837911606,0.457269668579102,0.215659067034721,0.460189044475555,0.230676248669624,0.484840422868729,0.270549893379211,0.494484752416611,0.262272864580154,0.51138573884964,0.262651383876801,0.496528059244156,0.316248387098312,0.491712242364883,0.315388768911362,0.521928906440735,0.266617745161057,0.526418089866638,0.292204678058624,0.52344810962677,0.301371723413467,0.517971396446228,0.306782573461533,0.504324018955231,0.311366736888886,0.434431195259094,0.146004229784012,0.413090378046036,0.13444572687149,0.404199331998825,0.127794206142426, +0.387351512908936,0.115458391606808,0.392007827758789,0.117294080555439,0.383644700050354,0.114182271063328,0.361813932657242,0.102813675999641,0.374590337276459,0.102221190929413,0.348285555839539,0.11272132396698,0.349764227867126,0.109260104596615,0.508863866329193,0.172696381807327,0.518141090869904,0.18793386220932,0.497475028038025,0.169194653630257,0.516596555709839,0.196552723646164,0.505974888801575,0.216450303792953,0.495226621627808,0.218670859932899,0.481715977191925,0.21662375330925,0.509610831737518,0.204579100012779,0.478006601333618,0.214960232377052,0.46902060508728,0.218798726797104,0.454866826534271,0.1480323523283,0.48029550909996,0.151306197047234,0.469476372003555,0.222554922103882,0.4716437458992,0.229315310716629,0.467091232538223,0.230496481060982,0.485407590866089,0.267806500196457,0.490147471427917,0.256331562995911,0.50368595123291,0.25636699795723,0.519239962100983,0.258848339319229,0.500802040100098,0.316073685884476,0.526283919811249,0.267609000205994,0.529745161533356,0.27161967754364,0.527694225311279,0.284887254238129,0.425751566886902,0.139983177185059,0.43275249004364,0.142664536833763,0.418354362249374,0.136808067560196,0.40991148352623,0.130450263619423,0.399084717035294,0.122203595936298,0.357355117797852,0.105006366968155,0.368417352437973,0.0978484600782394,0.377975583076477,0.104925349354744,0.380806356668472,0.108594186604023,0.352349400520325,0.104418948292732,0.439563512802124,0.147771552205086,0.513922810554504,0.178114831447601,0.519136130809784,0.182871162891388,0.502680778503418,0.21892911195755,0.508765161037445,0.213471427559853,0.51213264465332,0.208815112709999,0.491590708494186,0.220644533634186,0.500746369361877,0.222166255116463,0.474535256624222,0.217668190598488,0.449483841657639,0.146237164735794,0.498437166213989,0.157243698835373,0.511243939399719,0.166295528411865,0.474522590637207,0.224615946412086,0.480338573455811,0.230050846934319,0.465344160795212,0.232001736760139,0.485597491264343,0.26609867811203,0.486015260219574,0.260727077722549,0.496836960315704, +0.252703219652176,0.50247061252594,0.314002513885498,0.523237943649292,0.259891539812088,0.526980221271515,0.263313502073288,0.530205965042114,0.293858081102371,0.531803667545319,0.28388711810112,0.523002445697784,0.306033104658127,0.515955984592438,0.311009705066681,0.437922805547714,0.144644558429718,0.414223432540894,0.132215052843094,0.406938940286636,0.126639634370804,0.384611904621124,0.1096196398139,0.389941722154617,0.114058203995228,0.395410805940628,0.116402819752693,0.3570436835289,0.102137632668018,0.363355934619904,0.0988536551594734,0.383095264434814,0.103953063488007,0.382695198059082,0.100550085306168,0.349293291568756,0.106285020709038,0.44492119550705,0.147060066461563,0.517224490642548,0.172119095921516,0.516039490699768,0.199513882398605,0.500781774520874,0.223619610071182,0.49243637919426,0.224761545658112,0.513836681842804,0.207193374633789,0.473937720060349,0.221412986516953,0.451833516359329,0.144330590963364,0.482655316591263,0.142950654029846,0.504265785217285,0.153574854135513,0.514429152011871,0.162019014358521,0.471066445112228,0.232028320431709,0.478467434644699,0.232352420687675,0.484415054321289,0.256853133440018,0.491064041852951,0.251984149217606,0.514170944690704,0.252484202384949,0.505876123905182,0.314865916967392,0.524197578430176,0.255040258169174,0.530056595802307,0.265810042619705,0.533226609230042,0.275037854909897,0.528550028800964,0.299981683492661,0.526810586452484,0.304129064083099,0.520343899726868,0.310841351747513,0.509937465190887,0.313402444124222,0.42099142074585,0.135466113686562,0.428154408931732,0.138246238231659,0.436352968215942,0.14174796640873,0.401885092258453,0.119522228837013,0.358378052711487,0.0989827811717987,0.36199876666069,0.0959925130009651,0.384913206100464,0.107085131108761,0.382221728563309,0.094336599111557,0.518399298191071,0.175071388483047,0.519518435001373,0.180008754134178,0.515783786773682,0.20192939043045,0.484192252159119,0.225119814276695,0.514844417572021,0.206113487482071,0.448157072067261,0.143057003617287,0.455818861722946,0.14505472779274, +0.443910926580429,0.144295141100883,0.487359762191772,0.147108167409897,0.46885097026825,0.145150944590569,0.515145719051361,0.164097771048546,0.484870821237564,0.228755742311478,0.475611358880997,0.233988076448441,0.486050724983215,0.235371813178062,0.48329085111618,0.252151250839233,0.489808171987534,0.248681172728539,0.499034732580185,0.249382540583611,0.520062863826752,0.253359019756317,0.527598023414612,0.258224219083786,0.53335827589035,0.270846158266068,0.531221270561218,0.261644929647446,0.534259676933289,0.291734993457794,0.53294050693512,0.297615528106689,0.535748481750488,0.280765175819397,0.525959849357605,0.308381527662277,0.513330280780792,0.315095067024231,0.417954325675964,0.129865378141403,0.410717904567719,0.126042082905769,0.387999713420868,0.110872976481915,0.392990231513977,0.112911216914654,0.398618847131729,0.115422949194908,0.353579938411713,0.0997980833053589,0.368333786725998,0.094825267791748,0.389529019594193,0.106160953640938,0.390503823757172,0.103492245078087,0.398798614740372,0.0959216207265854,0.373633235692978,0.0939593315124512,0.498875200748444,0.227498605847359,0.494380950927734,0.229303911328316,0.451757550239563,0.142072066664696,0.460108041763306,0.144178673624992,0.502283275127411,0.14129726588726,0.47073221206665,0.142178401350975,0.506567358970642,0.147320866584778,0.509182929992676,0.156033411622047,0.494669586420059,0.232557505369186,0.481427311897278,0.236193433403969,0.495175987482071,0.235866814851761,0.483437716960907,0.246498599648476,0.515431821346283,0.249007806181908,0.509590566158295,0.315709084272385,0.524625480175018,0.250063627958298,0.527800559997559,0.253274202346802,0.533287405967712,0.264985889196396,0.536032021045685,0.272900849580765,0.534973680973053,0.284846752882004,0.531785905361176,0.300937503576279,0.535996615886688,0.275872141122818,0.52982360124588,0.304787367582321,0.515892684459686,0.313269525766373,0.426287084817886,0.135326862335205,0.434902131557465,0.13866400718689,0.441285282373428,0.141416281461716,0.407693475484848,0.122185871005058,0.404270231723785, +0.118008099496365,0.35087576508522,0.10177556425333,0.355985313653946,0.096488781273365,0.364849776029587,0.0908373966813087,0.390184819698334,0.109146162867546,0.391192525625229,0.100486785173416,0.39729967713356,0.0930250287055969,0.373653501272202,0.0909513384103775,0.503921449184418,0.228330373764038,0.444440126419067,0.139091923832893,0.456269532442093,0.142783552408218,0.490595638751984,0.132516354322433,0.465035259723663,0.14309498667717,0.47556072473526,0.138347506523132,0.511790871620178,0.151969581842422,0.512418806552887,0.153863504528999,0.486329227685928,0.238074705004692,0.490142405033112,0.240090161561966,0.478510469198227,0.237592354416847,0.489625871181488,0.244966760277748,0.512428939342499,0.244060307741165,0.520845234394073,0.248091220855713,0.530755400657654,0.25519722700119,0.530866801738739,0.258260935544968,0.535611748695374,0.269326955080032,0.533535540103912,0.260573893785477,0.537703156471252,0.286379873752594,0.536573886871338,0.293607413768768,0.534963548183441,0.29859921336174,0.538194358348846,0.281091809272766,0.519158899784088,0.312970727682114,0.421800404787064,0.130956664681435,0.413367629051209,0.124763429164886,0.395200669765472,0.111328728497028,0.401112854480743,0.113615110516548,0.349480658769608,0.103985980153084,0.354190140962601,0.095096193253994,0.357909619808197,0.0932934209704399,0.368407219648361,0.0915210321545601,0.397132575511932,0.109085395932198,0.399988651275635,0.106350854039192,0.390625357627869,0.0908779129385948,0.410679936408997,0.0930073037743568,0.378909885883331,0.0898701772093773,0.500460207462311,0.23176246881485,0.448529273271561,0.138233572244644,0.457839369773865,0.141150414943695,0.480946242809296,0.134724244475365,0.502551674842834,0.134070992469788,0.50972980260849,0.143821656703949,0.461146146059036,0.141593515872955,0.470787942409515,0.13958565890789,0.46642279624939,0.140355378389359,0.500184237957001,0.235026195645332,0.484258085489273,0.24020029604435,0.500827372074127,0.243242472410202,0.483349084854126,0.24749493598938,0.518237292766571,0.24066998064518, +0.524795114994049,0.2464669495821,0.527939856052399,0.248847022652626,0.529945194721222,0.251805633306503,0.535074949264526,0.264669388532639,0.53763735294342,0.275285989046097,0.428286075592041,0.133741840720177,0.437145471572876,0.136932134628296,0.418588578701019,0.12699156999588,0.409620314836502,0.120443865656853,0.406794607639313,0.116382569074631,0.386959046125412,0.0880724713206291,0.40134072303772,0.087277427315712,0.410464704036713,0.0978332683444023,0.404472768306732,0.0992334485054016,0.375111907720566,0.0881155133247375,0.370146691799164,0.0883180722594261,0.505212783813477,0.233726024627686,0.443305790424347,0.136468783020973,0.452831119298935,0.137815803289413,0.485184788703918,0.131832718849182,0.500609636306763,0.12642440199852,0.508962631225586,0.141801133751869,0.462817251682281,0.139894559979439,0.476246893405914,0.135534480214119,0.471547514200211,0.136005431413651,0.481191843748093,0.243418455123901,0.485161989927292,0.243581756949425,0.522080838680267,0.241548582911491,0.532429039478302,0.256435364484787,0.538908362388611,0.287814229726791,0.424750149250031,0.12963242828846,0.415323585271835,0.122580863535404,0.405961573123932,0.112921349704266,0.415299534797668,0.094830334186554,0.411509156227112,0.0879813209176064,0.407539010047913,0.108239710330963,0.383118033409119,0.0865304991602898,0.510210871696472,0.232776522636414,0.446334034204483,0.13481792807579,0.45014214515686,0.13617254793644,0.45772796869278,0.136613100767136,0.461634814739227,0.137739837169647,0.487883865833282,0.127290353178978,0.481493145227432,0.130617365241051,0.505934357643127,0.131513699889183,0.506711721420288,0.133711457252502,0.476768463850021,0.132559403777123,0.46746090054512,0.137466385960579,0.464893490076065,0.137005567550659,0.47204378247261,0.234317243099213,0.523744344711304,0.23662893474102,0.527448654174805,0.24569596350193,0.526547253131866,0.242296785116196,0.435598433017731,0.133526623249054,0.422724574804306,0.126031950116158,0.411230653524399,0.117256097495556,0.394993036985397,0.0844466760754585,0.416097104549408, +0.0897714346647263,0.414958983659744,0.0991245731711388,0.401236921548843,0.0834364145994186,0.506982624530792,0.23653145134449,0.510886907577515,0.230935782194138,0.440913081169128,0.132997438311577,0.451473981142044,0.13390389084816,0.456477165222168,0.134053274989128,0.493036448955536,0.121200926601887,0.504123985767365,0.124006368219852,0.469795405864716,0.133997574448586,0.517229557037354,0.234346359968185,0.526972591876984,0.239122942090034,0.433314591646194,0.129865378141403,0.420602768659592,0.122233979403973,0.416393339633942,0.118441067636013,0.412177592515945,0.112604849040508,0.419676065444946,0.0911868140101433,0.418968379497528,0.097537025809288,0.412972658872604,0.108903095126152,0.417007356882095,0.0851556286215782,0.411990225315094,0.0826312452554703,0.515219151973724,0.231739684939384,0.446559399366379,0.132215052843094,0.459864944219589,0.13387855887413,0.483007282018662,0.125069797039032,0.478447169065475,0.128961458802223,0.50285804271698,0.121426276862621,0.487769931554794,0.12260364741087,0.462776750326157,0.134709060192108,0.474545389413834,0.130632564425468,0.528299391269684,0.231296584010124,0.527861356735229,0.235283195972443,0.529580533504486,0.239695176482201,0.430458515882492,0.125933200120926,0.417042821645737,0.114468388259411,0.420162200927734,0.087277427315712,0.418987363576889,0.0944100245833397,0.418656945228577,0.101380571722984,0.406918674707413,0.0798688530921936,0.513401210308075,0.228372141718864,0.441746085882187,0.129531145095825,0.455975830554962,0.131640285253525,0.451038479804993,0.130095779895782,0.497687697410584,0.119886830449104,0.489744871854782,0.117509298026562,0.465351760387421,0.131308600306511,0.467909067869186,0.131111115217209,0.522004842758179,0.227997407317162,0.530702233314514,0.237002402544022,0.421429455280304,0.116499036550522,0.43004834651947,0.122570730745792,0.417387157678604,0.111505970358849,0.4227195084095,0.0888649821281433,0.421306669712067,0.0940150320529938,0.421364903450012,0.0965343564748764,0.421423137187958,0.100370310246944,0.417732775211334, +0.108267560601234,0.421853572130203,0.0836465656757355,0.418030291795731,0.0799726620316505,0.401943325996399,0.081038624048233,0.412377625703812,0.0793067514896393,0.515826821327209,0.22572748363018,0.462194383144379,0.130543947219849,0.48083484172821,0.123203724622726,0.484617620706558,0.121005967259407,0.476196259260178,0.127637222409248,0.501703441143036,0.11879301071167,0.493236482143402,0.117757432162762,0.470782876014709,0.127568870782852,0.533282339572906,0.227893605828285,0.532775938510895,0.233284190297127,0.532401204109192,0.237944304943085,0.439426809549332,0.124148160219193,0.42524516582489,0.120686940848827,0.421520620584488,0.112956792116165,0.425327450037003,0.0859582647681236,0.421359837055206,0.0920426249504089,0.421462386846542,0.104558207094669,0.39819347858429,0.0812437161803246,0.408398628234863,0.0763772502541542,0.451271414756775,0.12340122461319,0.458895206451416,0.128333523869514,0.497464895248413,0.116919346153736,0.491681843996048,0.113184675574303,0.48651659488678,0.117086455225945,0.467622965574265,0.126664951443672,0.527468860149384,0.2243272960186,0.534031808376312,0.230412930250168,0.534472346305847,0.235349029302597,0.444511026144028,0.125300213694572,0.425059050321579,0.117937207221985,0.429364711046219,0.118046082556248,0.434150159358978,0.121013559401035,0.425346434116364,0.115027956664562,0.420724302530289,0.109913349151611,0.422106772661209,0.107133239507675,0.423067659139633,0.0807373225688934,0.425452798604965,0.0831857472658157,0.413442343473434,0.076734259724617,0.405285537242889,0.0780331641435623,0.458750873804092,0.124644428491592,0.463333785533905,0.12674343585968,0.499936103820801,0.114817805588245,0.49449235200882,0.114156953990459,0.472008347511292,0.123426541686058,0.535677552223206,0.223915860056877,0.53744238615036,0.230117946863174,0.536209285259247,0.232744872570038,0.442009419202805,0.122180804610252,0.423201858997345,0.109224654734135,0.423425942659378,0.0776609629392624,0.427297323942184,0.083998516201973,0.418317675590515,0.0756961405277252,0.403487831354141, +0.074126310646534,0.412549793720245,0.0738224759697914,0.518257558345795,0.224174112081528,0.45581379532814,0.121162950992584,0.447701305150986,0.120978116989136,0.464483290910721,0.123193599283695,0.475031524896622,0.123689867556095,0.469180107116699,0.121659219264984,0.5342698097229,0.215332433581352,0.539470493793488,0.226376935839653,0.427063137292862,0.0796941444277763,0.403401762247086,0.0774102956056595,0.406571805477142,0.071847528219223,0.520331203937531,0.222694173455238,0.463133752346039,0.119557671248913,0.450600445270538,0.11980327218771,0.47430232167244,0.119367770850658,0.540852963924408,0.220117881894112,0.526268720626831,0.215952768921852,0.539860427379608,0.223372742533684,0.541597366333008,0.228711426258087,0.424099445343018,0.0750074461102486,0.428106307983398,0.0771267116069794,0.431921988725662,0.0796561613678932,0.41841134428978,0.0727337226271629,0.40094318985939,0.0756682902574539,0.402300328016281,0.0691560357809067,0.412404209375381,0.0701612308621407,0.456031531095505,0.117190271615982,0.478786468505859,0.115987576544285,0.470392942428589,0.117701731622219,0.546630918979645,0.213466361165047,0.528780460357666,0.212718158960342,0.542913973331451,0.225935116410255,0.398553013801575,0.0721412375569344,0.40719085931778,0.066740520298481,0.523491144180298,0.218711361289024,0.464921325445175,0.116190135478973,0.482566714286804,0.114498771727085,0.475198656320572,0.115331791341305,0.544767379760742,0.222501739859581,0.53685998916626,0.206684455275536,0.545192778110504,0.219129145145416,0.529337465763092,0.210068449378014,0.424632430076599,0.0720070451498032,0.429724246263504,0.07453902810812,0.433081656694412,0.076324075460434,0.419587463140488,0.0676140561699867,0.398608714342117,0.0668038204312325,0.403019428253174,0.0647478550672531,0.413911998271942,0.0666215196251869,0.524060845375061,0.217925190925598,0.457778602838516,0.115367241203785,0.480510741472244,0.111348986625671,0.478404134511948,0.122444130480289,0.470985412597656,0.114212661981583,0.548598289489746,0.205133616924286,0.550165593624115, +0.216355353593826,0.547304451465607,0.224005743861198,0.433712124824524,0.0784813240170479,0.395524770021439,0.0698725804686546,0.405966639518738,0.0613727197051048,0.41105592250824,0.0634514763951302,0.458786338567734,0.114139229059219,0.484870821237564,0.109171479940414,0.476606428623199,0.110034890472889,0.548661589622498,0.220574900507927,0.529461562633514,0.207507342100143,0.535632014274597,0.203386545181274,0.551467001438141,0.211314186453819,0.425223648548126,0.0664442777633667,0.430187582969666,0.0715614184737206,0.434636294841766,0.0734325498342514,0.436158001422882,0.0768887102603912,0.417980909347534,0.0636970773339272,0.395281672477722,0.0659277588129044,0.400657087564468,0.0615195743739605,0.466587364673615,0.112138964235783,0.482432514429092,0.105512768030167,0.486911594867706,0.110827401280403,0.471815913915634,0.109249971807003,0.529785633087158,0.204767733812332,0.544357180595398,0.199450582265854,0.553188741207123,0.202258542180061,0.554166078567505,0.213014408946037,0.551436603069305,0.218612626194954,0.550532698631287,0.221221834421158,0.430868685245514,0.067763440310955,0.39299276471138,0.0676267147064209,0.396945208311081,0.0629197582602501,0.41241055727005,0.0581165887415409,0.402171224355698,0.0567467883229256,0.462209582328796,0.109384171664715,0.486060857772827,0.106221720576286,0.48919290304184,0.106753438711166,0.47789266705513,0.104806341230869,0.473124951124191,0.104492381215096,0.530233800411224,0.201619222760201,0.530922532081604,0.198741614818573,0.549844026565552,0.199208766222,0.556123316287994,0.204006880521774,0.553793907165527,0.216326236724854,0.555857479572296,0.208730295300484,0.425756633281708,0.0607093386352062,0.435188263654709,0.070454940199852,0.437963306903839,0.0729919895529747,0.398231446743011,0.0579342879354954,0.406673073768616,0.0544502809643745,0.418775945901871,0.059038233011961,0.464936524629593,0.107186406850815,0.487423062324524,0.103444136679173,0.48299714922905,0.101416021585464,0.531682133674622,0.196058988571167,0.545451045036316,0.194818317890167,0.553928077220917, +0.196143805980682,0.557103216648102,0.19827826321125,0.556358814239502,0.213447377085686,0.556875348091125,0.21111162006855,0.431430786848068,0.0598813816905022,0.435821264982224,0.0677355900406837,0.442374020814896,0.074536494910717,0.396565407514572,0.0550655499100685,0.412013024091721,0.0509282909333706,0.401011556386948,0.0494217611849308,0.40431073307991,0.0480266399681568,0.473542720079422,0.100208267569542,0.467815369367599,0.103996112942696,0.550960600376129,0.192568644881248,0.558364152908325,0.203178927302361,0.425718635320663,0.05571373924613,0.436320066452026,0.0649225562810898,0.439761012792587,0.0698016881942749,0.442682921886444,0.0706650912761688,0.408220112323761,0.046573281288147,0.419493764638901,0.0505434311926365,0.491215974092484,0.105191208422184,0.487914264202118,0.100415885448456,0.481191843748093,0.0926097854971886,0.468656003475189,0.101643897593021,0.532348036766052,0.19316366314888,0.547547519207001,0.187997162342072,0.554383873939514,0.190329104661942,0.556520879268646,0.193413063883781,0.558673024177551,0.1994569003582,0.557974219322205,0.210122883319855,0.431987822055817,0.0547667779028416,0.436758100986481,0.0552453212440014,0.441267549991608,0.0671836212277412,0.444384425878525,0.0740351602435112,0.397932678461075,0.0479152351617813,0.412344723939896,0.0449907928705215,0.40148252248764,0.0443907156586647,0.406409740447998,0.0441451109945774,0.491540044546127,0.102362982928753,0.490975439548492,0.0969647914171219,0.49233004450798,0.0917083993554115,0.475137889385223,0.092430017888546,0.469207972288132,0.0994056239724159,0.532806277275085,0.19123175740242,0.54337477684021,0.187337577342987,0.551406264305115,0.188679531216621,0.558288156986237,0.196248888969421,0.425499618053436,0.0496065989136696,0.442933589220047,0.0632160007953644,0.447217702865601,0.0717108026146889,0.398672014474869,0.0420536957681179,0.418037891387939,0.041608065366745,0.494254350662231,0.105368442833424,0.493160516023636,0.0997550413012505,0.476067125797272,0.0876749530434608,0.470187842845917,0.0947467759251595, +0.469997942447662,0.0962659642100334,0.548302054405212,0.181973576545715,0.551583468914032,0.185546189546585,0.554211676120758,0.187103360891342,0.556105613708496,0.189822718501091,0.432104289531708,0.049085009843111,0.442672789096832,0.049457211047411,0.448329240083694,0.0692674368619919,0.446199864149094,0.0662062764167786,0.449180006980896,0.0747415870428085,0.410667270421982,0.041238397359848,0.402550995349884,0.0400863438844681,0.501055240631104,0.0967875570058823,0.50023490190506,0.0993448570370674,0.495646923780441,0.103117510676384,0.485184788703918,0.0819881185889244,0.469410538673401,0.0885434225201607,0.538903295993805,0.184852436184883,0.544098973274231,0.183112964034081,0.437649339437485,0.0480671525001526,0.431739687919617,0.0431677661836147,0.448625475168228,0.0601447075605392,0.42415389418602,0.038676030933857,0.451673984527588,0.0650035813450813,0.451190382242203,0.0731844156980515,0.405293136835098,0.0410459637641907,0.401183724403381,0.0324650779366493,0.412175059318542,0.0378075614571571,0.49914613366127,0.0844036340713501,0.500017106533051,0.102195873856544,0.472917318344116,0.0822084024548531,0.471312046051025,0.08450997620821,0.533044338226318,0.185703173279762,0.551203668117523,0.182759746909142,0.544926881790161,0.179583370685577,0.553431808948517,0.183429464697838,0.44266265630722,0.0443577989935875,0.447255700826645,0.0516245886683464,0.416331321001053,0.0348704606294632,0.452453851699829,0.0682369247078896,0.452856421470642,0.0712727680802345,0.454165458679199,0.076835535466671,0.406619906425476,0.038622859865427,0.39650970697403,0.0400508977472782,0.403594195842743,0.0364048406481743,0.51066666841507,0.103641629219055,0.508291661739349,0.0903487280011177,0.508073925971985,0.106031820178032,0.499905735254288,0.104907624423504,0.470813244581223,0.0789548009634018,0.492876946926117,0.0813500583171844,0.465445458889008,0.0827198624610901,0.540526330471039,0.178000882267952,0.535988986492157,0.178555399179459,0.551330268383026,0.180003687739372,0.548469126224518,0.177798330783844,0.437401205301285, +0.0421271212399006,0.429648280143738,0.035278107970953,0.448969841003418,0.0492445230484009,0.453360289335251,0.0548452697694302,0.462523549795151,0.0663100853562355,0.422525823116302,0.0318877846002579,0.461941182613373,0.0693180784583092,0.455621361732483,0.0751264467835426,0.399484783411026,0.0304749384522438,0.404822200536728,0.0316447168588638,0.408347994089127,0.0355363711714745,0.517761290073395,0.103061810135841,0.508524596691132,0.0877053365111351,0.505151987075806,0.107457332313061,0.46739000082016,0.0802005380392075,0.476540595293045,0.0783040821552277,0.50227564573288,0.0819552019238472,0.486192524433136,0.0785851329565048,0.53214293718338,0.183083847165108,0.545481383800507,0.174453586339951,0.442095518112183,0.0382177419960499,0.447027802467346,0.0425499640405178,0.453264087438583,0.0594205595552921,0.463364154100418,0.0636666938662529,0.418399959802628,0.0312193427234888,0.457517802715302,0.0732705071568489,0.460146009922028,0.0715107768774033,0.458095103502274,0.0789801254868507,0.40262696146965,0.0270795505493879,0.410964787006378,0.0329638794064522,0.519315898418427,0.111229985952377,0.518136024475098,0.0916045904159546,0.522349238395691,0.0964609310030937,0.511666774749756,0.115159623324871,0.463278084993362,0.0754935815930367,0.467410266399384,0.074394702911377,0.490983009338379,0.0775774046778679,0.460877746343613,0.0776660293340683,0.541759371757507,0.172162130475044,0.530074298381805,0.174937188625336,0.550626397132874,0.176091775298119,0.548691987991333,0.173023015260696,0.433603227138519,0.0289152376353741,0.428027808666229,0.0276062022894621,0.454097092151642,0.0463378094136715,0.459632009267807,0.0506269857287407,0.463333785533905,0.0600940696895123,0.468914270401001,0.06444401293993,0.47132471203804,0.0694345533847809,0.416343986988068,0.0289430897682905,0.419300079345703,0.026231337338686,0.39839094877243,0.0260920785367489,0.407516211271286,0.0319485515356064,0.40738582611084,0.0274593476206064,0.521627604961395,0.105867244303226,0.51602178812027,0.114108845591545,0.51210480928421,0.0858696475625038, +0.522351741790771,0.100707061588764,0.502769410610199,0.108748637139797,0.47184631228447,0.0731033906340599,0.479178905487061,0.0757999569177628,0.502425074577332,0.0784509405493736,0.48406058549881,0.0744706615805626,0.538184225559235,0.167799532413483,0.533586144447327,0.167817249894142,0.545570015907288,0.170511290431023,0.423890560865402,0.0255958084017038,0.446718901395798,0.0379113703966141,0.440221846103668,0.0308522041887045,0.456750631332397,0.0356072671711445,0.399434149265289,0.0228739287704229,0.404191732406616,0.0229979958385229,0.409819066524506,0.0287481267005205,0.525615453720093,0.110850185155869,0.519477963447571,0.11641801148653,0.513213813304901,0.0830540806055069,0.523101210594177,0.0933288708329201,0.518728494644165,0.0885535478591919,0.5268434882164,0.098643496632576,0.467369765043259,0.0862241238355637,0.542453169822693,0.167275413870811,0.529393196105957,0.173028081655502,0.548134922981262,0.169278204441071,0.42905580997467,0.0218408796936274,0.445685863494873,0.0331613719463348,0.436626434326172,0.0205369088798761,0.462888151407242,0.0387241393327713,0.463847756385803,0.0492647811770439,0.469719439744949,0.0570354349911213,0.472686916589737,0.0663202106952667,0.477598965167999,0.0717791691422462,0.414858967065811,0.0238689966499805,0.422035872936249,0.0225143861025572,0.397289544343948,0.0207825116813183,0.408198595046997,0.0208584703505039,0.526359856128693,0.105993844568729,0.524615347385406,0.116749703884125,0.518092930316925,0.0849961116909981,0.522883474826813,0.0900195688009262,0.526835918426514,0.0944859832525253,0.518247425556183,0.119322195649147,0.539202094078064,0.162079781293869,0.542870938777924,0.164335787296295,0.527203023433685,0.164690256118774,0.546008050441742,0.166098043322563,0.433380424976349,0.0161692388355732,0.425945252180099,0.0166705716401339,0.452114552259445,0.031778909265995,0.446572065353394,0.0245602279901505,0.461358815431595,0.0242817103862762,0.470139741897583,0.0511435121297836,0.475897461175919,0.0666316449642181,0.417660623788834,0.0174225699156523,0.419896364212036, +0.0185974109917879,0.400801420211792,0.0200153198093176,0.530041396617889,0.108115643262863,0.529537498950958,0.114078462123871,0.51629775762558,0.0809500068426132,0.526043355464935,0.0899689272046089,0.522118806838989,0.0863431319594383,0.529945194721222,0.0960558131337166,0.529965400695801,0.103297285735607,0.512927711009979,0.117922015488148,0.485713958740234,0.0704017654061317,0.535201549530029,0.160282075405121,0.452243685722351,0.0281379204243422,0.440176278352737,0.0128244906663895,0.468840837478638,0.0272618532180786,0.456953167915344,0.0213218238204718,0.469066172838211,0.039574883878231,0.475950628519058,0.0576886832714081,0.482432514429092,0.0670013129711151,0.409407615661621,0.0178049001842737,0.420631885528564,0.0109255034476519,0.398056745529175,0.0173643343150616,0.402690261602402,0.0172706507146358,0.529859066009521,0.111100852489471,0.528357625007629,0.120575532317162,0.523296177387238,0.122236512601376,0.529362797737122,0.0924806520342827,0.521093368530273,0.0828743129968643,0.530198335647583,0.0994587987661362,0.514246881008148,0.123975984752178,0.490729808807373,0.0717411860823631,0.539916098117828,0.157281681895256,0.542964637279511,0.160388424992561,0.545906782150269,0.16284191608429,0.53076046705246,0.15731206536293,0.434828728437424,0.009350610896945,0.451180249452591,0.0164072457700968,0.445392161607742,0.0119838723912835,0.465794861316681,0.0161160677671433,0.469266206026077,0.0331588387489319,0.460037142038345,0.0145082585513592,0.471613347530365,0.0412789061665535,0.475492358207703,0.0496344491839409,0.485602557659149,0.0609498769044876,0.411147087812424,0.0135461054742336,0.426533937454224,0.00634767953306437,0.532573342323303,0.105368442833424,0.532983541488647,0.109682939946651,0.532573342323303,0.117144696414471,0.533160805702209,0.11288083344698,0.522080838680267,0.128217056393623,0.524172246456146,0.0833224728703499,0.527549922466278,0.0866900086402893,0.531968235969543,0.0986308380961418,0.515548288822174,0.126723185181618,0.487433195114136,0.0654264241456985,0.535882651805878,0.155924528837204, +0.524379849433899,0.154683858156204,0.442986756563187,0.00706676254048944,0.471775412559509,0.0139512224122882,0.476059526205063,0.0272846408188343,0.457753270864487,0.00973800383508205,0.474631488323212,0.03740244358778,0.479077637195587,0.0523867160081863,0.479665070772171,0.0573114193975925,0.404733568429947,0.0146576454862952,0.414779216051102,0.00893283355981112,0.417369425296783,0.00553997745737433,0.399183481931686,0.0146247297525406,0.532375872135162,0.121155351400375,0.527246057987213,0.127308070659637,0.491636276245117,0.0669937208294868,0.540331363677979,0.154321789741516,0.543379843235016,0.155957445502281,0.545309245586395,0.159021154046059,0.531454205513,0.152435466647148,0.526577651500702,0.163019150495529,0.446572065353394,0.00258768582716584,0.463642686605453,0.00685407593846321,0.47935363650322,0.0411523096263409,0.484696120023727,0.0574152320623398,0.490719705820084,0.0632286593317986,0.407970726490021,0.0101861646398902,0.397552877664566,0.0122623899951577,0.534905314445496,0.115698933601379,0.535163581371307,0.119385495781899,0.532072007656097,0.124016493558884,0.526038289070129,0.132668271660805,0.517735958099365,0.130799680948257,0.536637187004089,0.151739165186882,0.527415692806244,0.151227712631226,0.456755697727203,0.00612233346328139,0.46911683678627,0.00384608120657504,0.476269662380219,0.0201621744781733,0.478467434644699,0.0307332016527653,0.481898277997971,0.0463681928813457,0.482460379600525,0.0537463873624802,0.489805638790131,0.0589344203472137,0.400930523872375,0.0120167881250381,0.414690583944321,0.00239272322505713,0.535226881504059,0.122530221939087,0.53172767162323,0.126973852515221,0.51894623041153,0.134471043944359,0.531013667583466,0.131987169384956,0.494943052530289,0.0646212548017502,0.543268442153931,0.15279246866703,0.540392100811005,0.150351643562317,0.523769676685333,0.152777284383774,0.532998740673065,0.147493034601212,0.472003281116486,0.00199267012067139,0.475327759981155,0.0131688397377729,0.481179177761078,0.0267757121473551,0.461090445518494,0.0024357670918107, +0.482080578804016,0.0396432466804981,0.483093351125717,0.0490799434483051,0.485068321228027,0.0528044924139977,0.493145346641541,0.0606232509016991,0.403492897748947,0.00861633569002151,0.40745797753334,0.00437779724597931,0.400036752223969,0.00760607467964292,0.535282611846924,0.125687599182129,0.525126814842224,0.139831259846687,0.53029203414917,0.135630697011948,0.537612020969391,0.146011829376221,0.521675705909729,0.144490107893944,0.52833479642868,0.145292744040489,0.480685442686081,0.0183745957911015,0.481883078813553,0.0317029505968094,0.484642922878265,0.0449882633984089,0.488486498594284,0.052976667881012,0.534907877445221,0.129298210144043,0.520966768264771,0.142672136425972,0.534786343574524,0.134035542607307,0.542701303958893,0.149136289954185,0.540761768817902,0.145814329385757,0.533887445926666,0.142084717750549,0.479396671056747,0.0110596986487508,0.48609122633934,0.0260110534727573,0.486050724983215,0.0297052171081305,0.485113888978958,0.0375189147889614,0.487407863140106,0.0486900210380554,0.491535007953644,0.0563264787197113,0.536956250667572,0.128637358546257,0.529507160186768,0.139935061335564,0.534366011619568,0.13703341782093,0.540300965309143,0.142710119485855,0.537728488445282,0.141135230660439,0.475710093975067,0.0031801697332412,0.486678659915924,0.0140651613473892,0.487453430891037,0.0412839725613594,0.487321764230728,0.0449730716645718,0.491114675998688,0.0528044924139977,0.537455022335052,0.132250502705574,0.537670254707336,0.13565094769001,0.537343621253967,0.138418406248093,0.481969177722931,0.00759341474622488,0.490714639425278,0.0155311794951558,0.491580575704575,0.0263579357415438,0.489332169294357,0.0317409299314022,0.487693965435028,0.0366631038486958,0.490096837282181,0.0485583581030369,0.539766728878021,0.139162808656693,0.486850827932358,0.00985700730234385,0.491626143455505,0.0218434110283852,0.489554971456528,0.0403927154839039,0.489456236362457,0.0450591556727886,0.482647746801376,0.00448160851374269,0.494953155517578,0.0197013542056084,0.492550313472748,0.0114394957199693, +0.496317893266678,0.02287139557302,0.493114948272705,0.0293000992387533,0.490342438220978,0.0353110246360302,0.49533548951149,0.0158881898969412,0.495191186666489,0.0273656640201807,0.492742747068405,0.0342906378209591,0.491524875164032,0.0410459637641907,0.497024327516556,0.0187138821929693,0.494173318147659,0.00952278543263674,0.497297793626785,0.0255299769341946,0.495018988847733,0.030578751116991,0.494679719209671,0.0341944210231304,0.492380678653717,0.0447072125971317,0.49810802936554,0.021881390362978,0.496879994869232,0.031143382191658,0.493646681308746,0.0413118228316307,0.808132767677307,0.762749552726746,0.811054706573486,0.766172766685486,0.806643962860107,0.766638696193695,0.804820954799652,0.763929426670074,0.803970217704773,0.767190635204315,0.805631220340729,0.760597348213196,0.804046154022217,0.770867109298706,0.809302568435669,0.759341478347778,0.807170629501343,0.769018709659576,0.815921187400818,0.761245548725128,0.806102156639099,0.757042467594147,0.815835058689117,0.758733808994293,0.810487568378448,0.756141066551209,0.823258876800537,0.760653078556061,0.80726683139801,0.752869725227356,0.815278053283691,0.753938257694244,0.821861207485199,0.756677865982056,0.804046154022217,0.75443959236145,0.81910640001297,0.753826856613159,0.82561868429184,0.757007002830505,0.815819919109344,0.748443841934204,0.803752481937408,0.759452879428864,0.804441154003143,0.750540316104889,0.826530158519745,0.76155948638916,0.827218890190125,0.751948118209839,0.823663949966431,0.748150110244751,0.809206366539001,0.742382287979126,0.829811632633209,0.754783928394318,0.813981652259827,0.738300740718842,0.805489420890808,0.742701292037964,0.819445669651031,0.73671567440033,0.830556035041809,0.759842813014984,0.83069783449173,0.748069107532501,0.828403830528259,0.74505603313446,0.806871891021729,0.735591530799866,0.806400895118713,0.738234877586365,0.821891605854034,0.739749014377594,0.831963837146759,0.756368935108185,0.832596838474274,0.752738058567047,0.825203418731689,0.74317729473114,0.813951313495636,0.726835906505585, +0.803448617458344,0.739121079444885,0.822777807712555,0.734619200229645,0.833645045757294,0.758819937705994,0.834014713764191,0.742782354354858,0.831573903560638,0.742473423480988,0.825669288635254,0.737262606620789,0.807287096977234,0.731560587882996,0.803524613380432,0.736194133758545,0.81982547044754,0.728268980979919,0.80309921503067,0.74312162399292,0.834718585014343,0.752555787563324,0.831320703029633,0.763919293880463,0.836136519908905,0.742397487163544,0.828636765480042,0.736791670322418,0.803585350513458,0.731813788414001,0.80861896276474,0.72366589307785,0.815029919147491,0.723032891750336,0.802942216396332,0.747350037097931,0.826322555541992,0.730081915855408,0.823456346988678,0.727549910545349,0.834222316741943,0.73564213514328,0.836425185203552,0.737870275974274,0.83158403635025,0.736270070075989,0.804719686508179,0.724227964878082,0.801407873630524,0.733008861541748,0.820412933826447,0.722764492034912,0.8319131731987,0.728988111019135,0.801605343818665,0.729869246482849,0.80508428812027,0.718763947486877,0.812938511371613,0.711831390857697,0.816903591156006,0.717670142650604,0.826398491859436,0.723402559757233,0.823598146438599,0.722556829452515,0.836921453475952,0.730026185512543,0.834318578243256,0.730122447013855,0.802638411521912,0.723741829395294,0.805418491363525,0.714434266090393,0.805585622787476,0.711638927459717,0.819293797016144,0.715811669826508,0.834374248981476,0.724248230457306,0.829335629940033,0.723822832107544,0.802846014499664,0.719422280788422,0.802785277366638,0.715168535709381,0.817470729351044,0.711183190345764,0.80886709690094,0.704017698764801,0.823461413383484,0.715497672557831,0.83635425567627,0.726689040660858,0.831948637962341,0.721893489360809,0.82923436164856,0.716480076313019,0.802613079547882,0.712398529052734,0.82017993927002,0.703425228595734,0.805119752883911,0.705881237983704,0.813237249851227,0.700265288352966,0.826413691043854,0.715831935405731,0.833472847938538,0.71391773223877,0.801772475242615,0.706706643104553,0.805236220359802,0.702311098575592,0.808836698532104, +0.694482266902924,0.826530158519745,0.710686922073364,0.831401705741882,0.712834060192108,0.812249779701233,0.694867074489594,0.823071479797363,0.702706098556519,0.801767408847809,0.702979564666748,0.804846286773682,0.693261802196503,0.829087495803833,0.708934783935547,0.819192469120026,0.696912944316864,0.800065875053406,0.703227698802948,0.801428079605103,0.696953475475311,0.811328172683716,0.689418256282806,0.826120018959045,0.704134166240692,0.8306725025177,0.703161895275116,0.81805819272995,0.687828183174133,0.822463810443878,0.693793535232544,0.799422800540924,0.699910819530487,0.801058411598206,0.692016065120697,0.803382813930511,0.685194909572601,0.814472854137421,0.686729311943054,0.825623750686646,0.695449471473694,0.828515231609344,0.702802360057831,0.832495510578156,0.704043030738831,0.799124002456665,0.6944620013237,0.799503803253174,0.697237014770508,0.810310304164886,0.678976356983185,0.829391300678253,0.696239411830902,0.817090928554535,0.679705560207367,0.821076273918152,0.686774909496307,0.7990682721138,0.691332459449768,0.8003950715065,0.686572313308716,0.802699148654938,0.677421748638153,0.813298046588898,0.6778724193573,0.827401161193848,0.695809006690979,0.823638677597046,0.686410307884216,0.799205005168915,0.677386283874512,0.803641080856323,0.671501994132996,0.826520025730133,0.690314590930939,0.820078670978546,0.679310619831085,0.818853199481964,0.676900148391724,0.822818279266357,0.680363893508911,0.797782063484192,0.681477963924408,0.801524341106415,0.670438528060913,0.80850750207901,0.667967319488525,0.812259912490845,0.673325002193451,0.825350284576416,0.684951841831207,0.796252727508545,0.674322605133057,0.801179945468903,0.666924118995667,0.798339068889618,0.669020652770996,0.803367614746094,0.663029968738556,0.821709275245667,0.67549741268158,0.813353717327118,0.671623528003693,0.803073883056641,0.659231960773468,0.817789793014526,0.67221599817276,0.824327349662781,0.677082479000092,0.796050190925598,0.670251190662384,0.800597608089447,0.662508368492126,0.798637866973877,0.664868175983429, +0.800379872322083,0.659789025783539,0.809282302856445,0.661211967468262,0.819405198097229,0.670225858688354,0.814138650894165,0.667719185352325,0.796313524246216,0.667303919792175,0.800111472606659,0.656360685825348,0.803246080875397,0.656684815883636,0.823208212852478,0.673669338226318,0.816782057285309,0.66815972328186,0.798637866973877,0.661708235740662,0.811014175415039,0.659469962120056,0.81803286075592,0.664432644844055,0.80141294002533,0.652972936630249,0.804800689220428,0.654608607292175,0.81427538394928,0.659510493278503,0.812897980213165,0.654628813266754,0.815966725349426,0.657596290111542,0.803332149982452,0.651134729385376,0.807140231132507,0.65286660194397,0.801114141941071,0.648779928684235,0.807844161987305,0.648136854171753,0.814503252506256,0.653403341770172,0.805160224437714,0.650015592575073,0.803094148635864,0.645513713359833,0.810978770256042,0.647468388080597,0.805074155330658,0.645736515522003,0.809191167354584,0.644288241863251,0.805590689182281,0.640692830085754,0.67892450094223,0.761929154396057,0.681836247444153,0.759088277816772,0.684708774089813,0.761265814304352,0.6785649061203,0.758893311023712,0.686472296714783,0.757677972316742,0.682904720306396,0.763676226139069,0.681585609912872,0.75074291229248,0.684618890285492,0.753771126270294,0.688840985298157,0.759447813034058,0.686783730983734,0.762111485004425,0.679348587989807,0.764618158340454,0.687748432159424,0.750087082386017,0.690153837203979,0.755632162094116,0.687821865081787,0.762534320354462,0.686754643917084,0.744843363761902,0.691517293453217,0.760212481021881,0.688858687877655,0.762957155704498,0.684636652469635,0.741977155208588,0.691388130187988,0.742225289344788,0.691281795501709,0.747547507286072,0.688849866390228,0.7612025141716,0.694794952869415,0.756374001502991,0.680939912796021,0.745919466018677,0.689551174640656,0.733236730098724,0.69454425573349,0.751289784908295,0.694429039955139,0.761359512805939,0.682159066200256,0.736938536167145,0.68590259552002,0.729699552059174,0.692773163318634,0.734555900096893,0.69550895690918, +0.744653463363647,0.692080676555634,0.763486325740814,0.698963820934296,0.75642466545105,0.697926998138428,0.752796351909637,0.679565072059631,0.741977155208588,0.69117671251297,0.7259801030159,0.695072174072266,0.737786710262299,0.694313883781433,0.729086816310883,0.696935713291168,0.739997148513794,0.697887778282166,0.747739970684052,0.695130407810211,0.764144659042358,0.698454916477203,0.760845482349396,0.699794352054596,0.749960482120514,0.67911434173584,0.73652583360672,0.680406928062439,0.732236623764038,0.689774036407471,0.723582327365875,0.69793838262558,0.734355866909027,0.696260929107666,0.731925189495087,0.698733448982239,0.742359519004822,0.700383007526398,0.744863629341125,0.698708117008209,0.76385098695755,0.681384265422821,0.726843476295471,0.695589959621429,0.723759531974792,0.687104046344757,0.722068190574646,0.693803668022156,0.721500992774963,0.699543654918671,0.736976504325867,0.698811948299408,0.728841245174408,0.697280049324036,0.726172506809235,0.691954076290131,0.719419717788696,0.683356702327728,0.721009790897369,0.698266267776489,0.720455288887024,0.690762758255005,0.717087805271149,0.696631908416748,0.717875242233276,0.688448548316956,0.715545773506165,0.69498485326767,0.715492606163025,0.685092389583588,0.712717592716217,0.692792117595673,0.712454259395599,0.681772947311401,0.715330600738525,0.689205586910248,0.709588050842285,0.697738349437714,0.712201058864594,0.677534401416779,0.717781543731689,0.682384431362152,0.709800720214844,0.686100125312805,0.70423036813736,0.694227755069733,0.707554876804352,0.696057140827179,0.709765255451202,0.678818106651306,0.723534226417542,0.679002940654755,0.713555634021759,0.691437542438507,0.704235434532166,0.682141363620758,0.704326570034027,0.680011987686157,0.709514617919922,0.689213156700134,0.700318455696106,0.696849644184113,0.704281032085419,0.685964643955231,0.697642147541046,0.677786350250244,0.708127081394196,0.694407522678375,0.700376689434052,0.681722342967987,0.693312466144562,0.67547082901001,0.714505136013031,0.691132426261902,0.69721931219101, +0.679432153701782,0.702225029468536,0.684503674507141,0.68695467710495,0.696102678775787,0.696345806121826,0.689406871795654,0.693788468837738,0.679687857627869,0.696497678756714,0.682043850421906,0.685281038284302,0.687880098819733,0.686255812644959,0.694306254386902,0.694064438343048,0.676098763942719,0.698064982891083,0.678329467773438,0.692471861839294,0.686078608036041,0.682523667812347,0.691528677940369,0.68963098526001,0.684002339839935,0.680437326431274,0.679010570049286,0.68513160943985,0.690205693244934,0.681166529655457,0.691949009895325,0.684020102024078,0.679787874221802,0.68162989616394,0.688595354557037,0.678662419319153,0.68201094865799,0.677824318408966,0.686783730983734,0.676591277122498,0.679167568683624,0.67928272485733,0.691275477409363,0.675446808338165,0.685662090778351,0.673580706119537,0.679373919963837,0.676289916038513,0.689737319946289,0.672912299633026,0.682609796524048,0.673011004924774,0.686277329921722,0.668716788291931,0.68866503238678,0.67030942440033,0.680679142475128,0.671934962272644,0.683049082756042,0.667904019355774,0.690608322620392,0.667119085788727,0.686583697795868,0.662138700485229,0.689334690570831,0.66421240568161,0.683780789375305,0.662852704524994,0.693131446838379,0.664057910442352,0.684678375720978,0.658543288707733,0.689923405647278,0.659626960754395,0.692097127437592,0.661417067050934,0.687587678432465,0.653985738754272,0.690569043159485,0.654423773288727,0.692780733108521,0.656127750873566,0.693756818771362,0.658672392368317,0.690104424953461,0.650126993656158,0.694346785545349,0.653560340404511,0.687168598175049,0.649795293807983,0.693260550498962,0.650504231452942,0.689361274242401,0.647458255290985,0.692861795425415,0.646951854228973,0.687195181846619,0.646832883358002,0.695708990097046,0.64806592464447,0.69004875421524,0.644683182239532,0.69432145357132,0.642880439758301,0.689966440200806,0.64100170135498,0.692462980747223,0.639474928379059,0.695716559886932,0.639512896537781,0.690268993377686,0.637927889823914,0.693116247653961,0.636522650718689,0.697734594345093, +0.641584038734436,0.697367429733276,0.636494755744934,0.699162602424622,0.639502763748169,0.695092439651489,0.634334981441498,0.692813634872437,0.63329690694809,0.697302877902985,0.633631110191345,0.695307672023773,0.63180810213089,0.699861407279968,0.634241342544556,0.698725819587708,0.631210505962372,0.701681911945343,0.632701873779297,0.69548487663269,0.629559695720673,0.702368080615997,0.630587637424469,0.698732197284698,0.628278493881226,0.701875627040863,0.628027856349945,0.700409591197968,0.625898420810699,0.705372273921967,0.623758912086487,0.703274548053741,0.623029708862305,0.792380094528198,0.463124871253967,0.798502385616302,0.465039074420929,0.795142471790314,0.466745615005493,0.796474277973175,0.461372762918472,0.787041366100311,0.457200050354004,0.8021320104599,0.462704569101334,0.791774928569794,0.454632610082626,0.798744201660156,0.458450853824615,0.803330898284912,0.466776013374329,0.785908341407776,0.452055066823959,0.805754005908966,0.461509466171265,0.799160718917847,0.468568652868271,0.798778414726257,0.454257875680923,0.782557249069214,0.454399675130844,0.789146721363068,0.4452845454216,0.807645380496979,0.465677112340927,0.780973494052887,0.449183791875839,0.785561442375183,0.460775196552277,0.783890306949615,0.445112377405167,0.802330732345581,0.450895398855209,0.807628929615021,0.461048662662506,0.805738806724548,0.470244824886322,0.796721160411835,0.445228844881058,0.779865741729736,0.436432719230652,0.809502601623535,0.460582762956619,0.809458315372467,0.468872487545013,0.785941243171692,0.433753877878189,0.77751100063324,0.441182732582092,0.799692451953888,0.442398071289063,0.80591607093811,0.455741614103317,0.812819480895996,0.463671803474426,0.811138272285461,0.466274678707123,0.807811260223389,0.473379403352737,0.793646037578583,0.432619571685791,0.772117853164673,0.435976982116699,0.780648112297058,0.433850109577179,0.805261552333832,0.449178725481033,0.812351107597351,0.459397822618485,0.811978876590729,0.464973241090775,0.811825692653656,0.468720555305481,0.788266837596893,0.428451925516129, +0.773326873779297,0.441000431776047,0.773806691169739,0.431211769580841,0.782720565795898,0.429434329271317,0.802426993846893,0.4315105676651,0.817322611808777,0.458050787448883,0.812323212623596,0.466198712587357,0.809983670711517,0.476838111877441,0.794762670993805,0.423180341720581,0.774728357791901,0.444094508886337,0.769097208976746,0.430366098880768,0.776198148727417,0.425945252180099,0.807822644710541,0.434548944234848,0.809582352638245,0.447907686233521,0.817142844200134,0.461950033903122,0.814837515354156,0.451396733522415,0.815510988235474,0.468001484870911,0.806704759597778,0.478073716163635,0.813827216625214,0.475359410047531,0.7816241979599,0.423155009746552,0.789587318897247,0.424132347106934,0.771639347076416,0.425995886325836,0.801017940044403,0.424517214298248,0.807609915733337,0.429991364479065,0.819440603256226,0.463373005390167,0.821250975131989,0.455447912216187,0.812946081161499,0.479668855667114,0.78192549943924,0.419230431318283,0.771764695644379,0.419620364904404,0.79951012134552,0.420430600643158,0.812311828136444,0.438113957643509,0.823143661022186,0.459549725055695,0.817055523395538,0.472336232662201,0.809541821479797,0.481076627969742,0.816045224666595,0.478569984436035,0.794062554836273,0.414976716041565,0.769554257392883,0.422005504369736,0.808743000030518,0.414799481630325,0.815327405929565,0.41682505607605,0.816109836101532,0.439207792282104,0.824578046798706,0.463084369897842,0.828810214996338,0.456374615430832,0.812138378620148,0.483877003192902,0.814962804317474,0.484327703714371,0.78347384929657,0.414444983005524,0.776267826557159,0.414986848831177,0.795596957206726,0.408798664808273,0.807444095611572,0.409006297588348,0.812570095062256,0.428467124700546,0.830118000507355,0.461641132831573,0.821548521518707,0.46587461233139,0.819443166255951,0.471688061952591,0.824367880821228,0.448717892169952,0.818587362766266,0.477541983127594,0.808116316795349,0.48524934053421,0.817741692066193,0.483436435461044,0.773799121379852,0.411538273096085,0.815750241279602,0.411087572574615,0.820909202098846, +0.429434329271317,0.82156240940094,0.435602247714996,0.830992817878723,0.46530744433403,0.825232565402985,0.468229353427887,0.832291722297668,0.438073456287384,0.834333777427673,0.448272287845612,0.835525035858154,0.461560130119324,0.811206638813019,0.490323454141617,0.816779494285584,0.490748822689056,0.785251259803772,0.410044401884079,0.779883444309235,0.406869292259216,0.807056725025177,0.401410341262817,0.825623750686646,0.409750699996948,0.816640257835388,0.406793355941772,0.824000716209412,0.417230188846588,0.829368531703949,0.467576116323471,0.821939706802368,0.472756534814835,0.821218073368073,0.477065980434418,0.837288558483124,0.456967115402222,0.820458471775055,0.483046531677246,0.813895583152771,0.493118762969971,0.819858431816101,0.489330917596817,0.796110928058624,0.40567421913147,0.777373015880585,0.4006507396698,0.810860991477966,0.404403150081635,0.826308608055115,0.403172612190247,0.827831625938416,0.427854359149933,0.833614647388458,0.467257082462311,0.828510165214539,0.470462560653687,0.824266612529755,0.475678443908691,0.837344288825989,0.444494545459747,0.840157330036163,0.453503340482712,0.83964329957962,0.46156519651413,0.809025347232819,0.50307959318161,0.818368315696716,0.500020921230316,0.816064238548279,0.499970287084579,0.791591346263886,0.402301609516144,0.772443234920502,0.403972715139389,0.780644357204437,0.400382369756699,0.795319676399231,0.401268571615219,0.818503797054291,0.400858372449875,0.832151174545288,0.405020952224731,0.833700776100159,0.412677675485611,0.833695709705353,0.429176062345505,0.837563276290894,0.465641677379608,0.833670377731323,0.472017198801041,0.83238285779953,0.475354373455048,0.826770722866058,0.476929247379303,0.823877930641174,0.482762932777405,0.842504441738129,0.441071331501007,0.841798007488251,0.458233088254929,0.823027193546295,0.490799456834793,0.811472475528717,0.506047070026398,0.821515560150146,0.494718968868256,0.789373338222504,0.399060666561127,0.776500761508942,0.397111028432846,0.805833756923676,0.397526293992996,0.815666735172272,0.392411679029465, +0.834416031837463,0.408530294895172,0.834390699863434,0.398052930831909,0.835706055164337,0.416014820337296,0.825304687023163,0.398417532444,0.83555793762207,0.469191521406174,0.825516104698181,0.480950027704239,0.82405012845993,0.488069981336594,0.844547748565674,0.447381019592285,0.843076705932617,0.451979100704193,0.8444464802742,0.455493479967117,0.84276270866394,0.462198168039322,0.840262413024902,0.465499877929688,0.807284593582153,0.507302939891815,0.814405798912048,0.510002017021179,0.820695221424103,0.502841532230377,0.783053517341614,0.391672343015671,0.788073182106018,0.394092917442322,0.803286612033844,0.391150742769241,0.840292751789093,0.403856247663498,0.840044617652893,0.410611569881439,0.842230975627899,0.427363157272339,0.838186144828796,0.470847427845001,0.836318850517273,0.473141402006149,0.846699953079224,0.443491905927658,0.849978864192963,0.438377290964127,0.845937848091125,0.45941299200058,0.825089454650879,0.497438311576843,0.810339391231537,0.517521977424622,0.816074371337891,0.519253849983215,0.819562137126923,0.510346353054047,0.823956429958344,0.502299726009369,0.793078899383545,0.392305344343185,0.779616355895996,0.391469776630402,0.80790114402771,0.3863804936409,0.823458909988403,0.390836805105209,0.832963943481445,0.394371449947357,0.844502210617065,0.389216333627701,0.842336058616638,0.415959119796753,0.848562240600586,0.44719871878624,0.84687340259552,0.451801866292953,0.848536908626556,0.454936444759369,0.846087217330933,0.463707238435745,0.843191862106323,0.465783476829529,0.840810537338257,0.470325857400894,0.807178258895874,0.514260828495026,0.812965095043182,0.521249055862427,0.823798179626465,0.511465489864349,0.825136303901672,0.509227216243744,0.792005360126495,0.386800825595856,0.783461153507233,0.386851459741592,0.799517750740051,0.384157419204712,0.804794371128082,0.382334381341934,0.813063859939575,0.385332256555557,0.828211426734924,0.392604112625122,0.8186354637146,0.383504182100296,0.845292150974274,0.41156867146492,0.848479926586151,0.392897814512253,0.849544644355774, +0.423377841711044,0.838405191898346,0.473247736692429,0.851470232009888,0.441810667514801,0.84464019536972,0.464745342731476,0.840904235839844,0.47393137216568,0.806709825992584,0.521304786205292,0.818051815032959,0.521345257759094,0.814051330089569,0.532648026943207,0.821661174297333,0.512893557548523,0.811281323432922,0.529898345470428,0.789810121059418,0.383483916521072,0.781079828739166,0.38374724984169,0.810644507408142,0.380501240491867,0.830682635307312,0.391647011041641,0.827453076839447,0.378982037305832,0.852488040924072,0.396300822496414,0.839154660701752,0.386648893356323,0.849547147750854,0.388304799795151,0.853879392147064,0.436209917068481,0.838624179363251,0.475643008947372,0.850377678871155,0.450368762016296,0.851595520973206,0.445897281169891,0.846637904644012,0.46686714887619,0.843410909175873,0.468801587820053,0.843794524669647,0.471703231334686,0.808191061019897,0.526064872741699,0.824879348278046,0.518985450267792,0.795461475849152,0.381422877311707,0.802175045013428,0.379058003425598,0.80624520778656,0.376591861248016,0.828402578830719,0.388927668333054,0.824884414672852,0.375467658042908,0.855026364326477,0.404479116201401,0.830038249492645,0.388198465108871,0.834946513175964,0.38602602481842,0.843455195426941,0.385114520788193,0.846891105175018,0.383696585893631,0.852666556835175,0.418197393417358,0.853181838989258,0.427692323923111,0.856865882873535,0.440012961626053,0.854669392108917,0.444742679595947,0.843390643596649,0.474270671606064,0.820324301719666,0.521887123584747,0.816270589828491,0.534906566143036,0.810064673423767,0.536906838417053,0.828101277351379,0.520271718502045,0.80723774433136,0.533169627189636,0.79244464635849,0.378262966871262,0.788641571998596,0.377113431692123,0.817903697490692,0.372312813997269,0.829714119434357,0.376095592975616,0.832071423530579,0.381235510110855,0.855534017086029,0.395110785961151,0.851033449172974,0.412105441093445,0.831675171852112,0.387474328279495,0.839440762996674,0.382668614387512,0.849720597267151,0.383630782365799,0.852451324462891,0.388588398694992, +0.85606324672699,0.432953774929047,0.858029305934906,0.435394614934921,0.853851556777954,0.449026823043823,0.847112655639648,0.469854891300201,0.846656918525696,0.473652869462967,0.841266334056854,0.47682797908783,0.812505543231964,0.540547847747803,0.830820620059967,0.526738405227661,0.823450028896332,0.524479866027832,0.799737989902496,0.37498152256012,0.782568633556366,0.377366632223129,0.807089626789093,0.365891695022583,0.824528634548187,0.371208876371384,0.858401536941528,0.403127044439316,0.836028933525085,0.382567346096039,0.844059109687805,0.38127601146698,0.84739625453949,0.379751771688461,0.856240451335907,0.427899956703186,0.858944594860077,0.443198174238205,0.860811948776245,0.438448190689087,0.852975487709045,0.453614771366119,0.857189953327179,0.447877287864685,0.846911370754242,0.471845030784607,0.818207561969757,0.535767436027527,0.814548850059509,0.54475599527359,0.80696302652359,0.538841307163239,0.808358132839203,0.545404195785522,0.828455746173859,0.528596878051758,0.820821821689606,0.534344494342804,0.794287919998169,0.370889842510223,0.786948978900909,0.373543351888657,0.779597342014313,0.381174743175507,0.802416861057281,0.370854377746582,0.812462508678436,0.36437252163887,0.82992559671402,0.372393816709518,0.834503412246704,0.376257628202438,0.85722541809082,0.39336371421814,0.857631802558899,0.410991370677948,0.837110042572021,0.379108637571335,0.840380132198334,0.378587067127228,0.85385662317276,0.386669158935547,0.850204229354858,0.380192339420319,0.857433021068573,0.422729641199112,0.860066294670105,0.430913001298904,0.861796915531158,0.435121148824692,0.857191205024719,0.452444970607758,0.810649573802948,0.549845278263092,0.825802206993103,0.532734155654907,0.799411356449127,0.366884231567383,0.782787680625916,0.371770977973938,0.819474816322327,0.369031369686127,0.806395828723907,0.359678208827972,0.825357854366302,0.366529762744904,0.860811948776245,0.409563332796097,0.842855155467987,0.377336263656616,0.848948359489441,0.377594530582428,0.862955272197723,0.441628366708755,0.861570298671722, +0.4462770819664,0.863569259643555,0.43839755654335,0.862889468669891,0.454323709011078,0.820667386054993,0.54550039768219,0.816493391990662,0.547677874565125,0.812990427017212,0.551734149456024,0.806098341941834,0.555127024650574,0.824008345603943,0.537398040294647,0.794268906116486,0.366200596094131,0.79360556602478,0.362625449895859,0.822603046894073,0.366737395524979,0.798237800598145,0.364033222198486,0.812453627586365,0.360250443220139,0.832085371017456,0.370342940092087,0.836046636104584,0.374216854572296,0.860292911529541,0.414455115795136,0.859435796737671,0.422035872936249,0.844573080539703,0.375498056411743,0.861852586269379,0.428537994623184,0.863562941551209,0.43315127491951,0.863447725772858,0.436037749052048,0.859448492527008,0.457139283418655,0.823215842247009,0.543753325939178,0.807316243648529,0.564277589321136,0.780713975429535,0.367426067590714,0.801620543003082,0.358052670955658,0.810663521289825,0.356756299734116,0.820453405380249,0.360584676265717,0.827949345111847,0.365344792604446,0.865636646747589,0.444540143013,0.865358114242554,0.441248565912247,0.865296065807343,0.451229631900787,0.865098595619202,0.436954319477081,0.866165816783905,0.459048390388489,0.819303929805756,0.550832748413086,0.824742615222931,0.553116619586945,0.816104769706726,0.5534508228302,0.809772253036499,0.565219461917877,0.804800689220428,0.561791181564331,0.826855540275574,0.541525185108185,0.792012929916382,0.358812272548676,0.81457793712616,0.357465267181396,0.79824161529541,0.355404227972031,0.803634703159332,0.351839184761047,0.824195683002472,0.360154241323471,0.832899391651154,0.368651568889618,0.864331424236298,0.435055315494537,0.866306364536285,0.448748290538788,0.867007732391357,0.440048396587372,0.872388184070587,0.456835448741913,0.82233339548111,0.552589952945709,0.804979205131531,0.572536885738373,0.803042232990265,0.5682173371315,0.780930459499359,0.363045752048492,0.796032428741455,0.353079855442047,0.809981167316437,0.352917820215225,0.812525808811188,0.350699812173843,0.821747243404388,0.356675297021866, +0.817485928535461,0.355824530124664,0.837518990039825,0.370864510536194,0.827823996543884,0.361313879489899,0.868490219116211,0.443446308374405,0.868982672691345,0.448560923337936,0.871918499469757,0.453543871641159,0.87224006652832,0.459883958101273,0.819487452507019,0.55921870470047,0.824494481086731,0.561786115169525,0.812573909759521,0.56504225730896,0.808408796787262,0.573230683803558,0.782033145427704,0.357758969068527,0.791639447212219,0.351322680711746,0.800560891628265,0.349033772945404,0.807582080364227,0.34695753455162,0.824495732784271,0.35682213306427,0.82708466053009,0.358326137065887,0.831037104129791,0.365562528371811,0.876473546028137,0.454551607370377,0.871445000171661,0.463631272315979,0.878462374210358,0.462628602981567,0.816138923168182,0.566991865634918,0.811055958271027,0.57210648059845,0.799293637275696,0.575276494026184,0.80409300327301,0.579251706600189,0.793700516223907,0.346278965473175,0.800995111465454,0.345190227031708,0.818068265914917,0.351282149553299,0.824452698230743,0.352634251117706,0.871303200721741,0.446342915296555,0.878662407398224,0.458810389041901,0.878630757331848,0.466431647539139,0.866239249706268,0.462253898382187,0.817716360092163,0.574415624141693,0.820031821727753,0.574947357177734,0.8144171833992,0.572866082191467,0.809027850627899,0.586148858070374,0.806973159313202,0.582031846046448,0.796737611293793,0.34564596414566,0.789779722690582,0.345701664686203,0.800565958023071,0.341498583555222,0.812402963638306,0.347332268953323,0.817797362804413,0.348876774311066,0.821953594684601,0.352674752473831,0.875065743923187,0.450115561485291,0.881714761257172,0.457032948732376,0.881747663021088,0.462076634168625,0.88341623544693,0.467277348041534,0.823698163032532,0.575980424880981,0.811913073062897,0.579849243164063,0.800077319145203,0.580988645553589,0.804820954799652,0.596681892871857,0.790906429290771,0.342410087585449,0.794134736061096,0.342060685157776,0.797341465950012,0.339245110750198,0.803956270217896,0.339133709669113,0.809467136859894,0.343215256929398,0.820564806461334, +0.348775506019592,0.875751912593842,0.447112619876862,0.879008054733276,0.452434867620468,0.884710073471069,0.46057265996933,0.881741344928741,0.454733908176422,0.817774593830109,0.58218377828598,0.814943850040436,0.57897824048996,0.822039723396301,0.583945989608765,0.802085161209106,0.592605412006378,0.81068754196167,0.59048867225647,0.786326110363007,0.341929018497467,0.800297558307648,0.334545761346817,0.81502103805542,0.344592660665512,0.878464937210083,0.449588894844055,0.88559627532959,0.458121687173843,0.884559392929077,0.455194711685181,0.884813904762268,0.465034008026123,0.813041031360626,0.593020617961884,0.809781134128571,0.596859157085419,0.80724024772644,0.599391102790833,0.801286339759827,0.597871899604797,0.79004180431366,0.338632375001907,0.794796824455261,0.336834669113159,0.808078348636627,0.339290708303452,0.803996801376343,0.335006594657898,0.797594666481018,0.332631587982178,0.812249779701233,0.341296017169952,0.881962895393372,0.450495362281799,0.881907165050507,0.452490568161011,0.891328692436218,0.460273861885071,0.889262557029724,0.465297341346741,0.888895452022552,0.46941938996315,0.816346526145935,0.589759469032288,0.819239318370819,0.588883399963379,0.804255068302155,0.598889768123627,0.808092296123505,0.336019366979599,0.884661972522736,0.453148871660233,0.889776587486267,0.461853832006454,0.88874351978302,0.472918599843979,0.823594331741333,0.593744814395905,0.81609970331192,0.595274090766907,0.811709225177765,0.599355638027191,0.811017990112305,0.605533719062805,0.803690433502197,0.601097643375397,0.791638195514679,0.333259522914886,0.893723905086517,0.463889539241791,0.896642029285431,0.471834897994995,0.883163034915924,0.474047869443893,0.897249698638916,0.479289054870605,0.819514036178589,0.599689900875092,0.815105855464935,0.599497437477112,0.807828962802887,0.60624772310257,0.895762145519257,0.462172865867615,0.896568596363068,0.467839449644089,0.89760547876358,0.475450575351715,0.887904167175293,0.476519078016281,0.822922110557556,0.599608838558197,0.8137246966362,0.602307975292206, +0.812216877937317,0.612638413906097,0.802194058895111,0.603538513183594,0.898138463497162,0.464527606964111,0.901233792304993,0.472052663564682,0.903582215309143,0.479623287916183,0.893087148666382,0.481491893529892,0.825505971908569,0.606004655361176,0.821582674980164,0.608050465583801,0.819967269897461,0.610648274421692,0.814295649528503,0.610709071159363,0.807112395763397,0.61199027299881,0.805427372455597,0.608004927635193,0.799713969230652,0.601315438747406,0.901184439659119,0.467454582452774,0.905848324298859,0.477278679609299,0.901212275028229,0.484074503183365,0.897423148155212,0.482570499181747,0.819195032119751,0.614182949066162,0.811537027359009,0.617596089839935,0.814350068569183,0.61690229177475,0.801644563674927,0.606981992721558,0.903593599796295,0.470199257135391,0.906153440475464,0.473273068666458,0.901379346847534,0.464476972818375,0.910698354244232,0.482747763395309,0.905548274517059,0.485381007194519,0.826899826526642,0.610957205295563,0.824804663658142,0.614000618457794,0.825014770030975,0.618517696857452,0.817135274410248,0.615616023540497,0.802940964698792,0.611230671405792,0.904338002204895,0.46754065155983,0.910424888134003,0.47786608338356,0.903744220733643,0.465418875217438,0.821933388710022,0.618796229362488,0.818891167640686,0.618983566761017,0.81311571598053,0.621449768543243,0.816109836101532,0.620406568050385,0.906404078006744,0.469566255807877,0.909981787204742,0.473288267850876,0.916859924793243,0.484758138656616,0.910141289234161,0.48814594745636,0.826812505722046,0.622032105922699,0.809598803520203,0.619272232055664,0.907900512218475,0.468112885951996,0.909179151058197,0.47066006064415,0.913246750831604,0.475440442562103,0.917743563652039,0.480787992477417,0.913927853107452,0.48666724562645,0.907457411289215,0.490191787481308,0.820467352867126,0.622457444667816,0.823685526847839,0.622872710227966,0.817923963069916,0.62369304895401,0.816037654876709,0.624903380870819,0.912516295909882,0.472898334264755,0.911565542221069,0.471343696117401,0.920592069625854,0.483831435441971,0.916428208351135, +0.489796787500381,0.912373244762421,0.491214692592621,0.828288614749908,0.626392185688019,0.917252361774445,0.47623547911644,0.914924204349518,0.47368323802948,0.920697152614594,0.480311989784241,0.919855237007141,0.488404184579849,0.822437226772308,0.626300990581512,0.819621682167053,0.626280784606934,0.831733405590057,0.626513719558716,0.826107323169708,0.628113925457001,0.818625330924988,0.627673327922821,0.919319748878479,0.478068649768829,0.91722959280014,0.475136607885361,0.923018932342529,0.48141086101532,0.923332929611206,0.486743211746216,0.918452560901642,0.492895931005478,0.914243102073669,0.494111299514771,0.831633388996124,0.630017995834351,0.826812505722046,0.630767464637756,0.923429131507874,0.483557969331741,0.922173261642456,0.491493225097656,0.823903262615204,0.630119264125824,0.821124374866486,0.629298865795136,0.925623118877411,0.482611030340195,0.925868690013886,0.484155535697937,0.92597758769989,0.489629685878754,0.920064151287079,0.495990008115768,0.915674924850464,0.496876209974289,0.833324730396271,0.634205877780914,0.825792133808136,0.632124602794647,0.926344692707062,0.486155807971954,0.92423939704895,0.494597434997559,0.823512077331543,0.631770074367523,0.834788262844086,0.630544602870941,0.829558432102203,0.63501101732254,0.928403198719025,0.484874606132507,0.928063929080963,0.493007332086563,0.928315877914429,0.486854612827301,0.921794772148132,0.498992949724197,0.91703587770462,0.499565184116364,0.835676968097687,0.633329808712006,0.832977890968323,0.636864423751831,0.926302969455719,0.497747212648392,0.929678082466125,0.489082753658295,0.837134122848511,0.634383082389832,0.835623800754547,0.636894822120667,0.930961787700653,0.486763477325439,0.931618869304657,0.49173629283905,0.930333852767944,0.496030539274216,0.93298614025116,0.489168852567673,0.934954702854156,0.494298666715622,0.934377431869507,0.491194427013397,0.932625293731689,0.499317049980164,0.936506807804108,0.492146462202072,0.938708364963531,0.493853032588959,0.939186930656433,0.496167242527008,0.936349868774414,0.498142212629318, +0.939159095287323,0.500451385974884,0.942130386829376,0.497990280389786,0.942641854286194,0.500633656978607,0.940934002399445,0.504213869571686,0.944638311862946,0.4996158182621,0.945252299308777,0.503130197525024,0.94488388299942,0.508533477783203,0.945468783378601,0.500947654247284,0.947060108184814,0.505778670310974,0.947401940822601,0.501995861530304,0.949200928211212,0.50379866361618,0.94993269443512,0.507551074028015,0.947577953338623,0.51290363073349,0.705152034759521,0.895929276943207,0.708906948566437,0.893133997917175,0.7079017162323,0.898876488208771,0.70516973733902,0.90177309513092,0.331245332956314,0.94816917181015,0.337620854377747,0.952650725841522,0.32857409119606,0.950908720493317,0.33762463927269,0.94822233915329,0.331263035535812,0.953673660755157,0.334530562162399,0.94545990228653,0.334520429372787,0.956367671489716,0.328733593225479,0.94537889957428,0.340375661849976,0.945457398891449,0.331578284502029,0.942616522312164,0.338046222925186,0.942707657814026,0.335358530282974,0.939940214157104,0.329534977674484,0.93991231918335,0.341050416231155,0.939930081367493,0.332691073417664,0.937160074710846,0.338986843824387,0.937266409397125,0.336414366960526,0.934547066688538,0.330500930547714,0.934390068054199,0.341842919588089,0.934481263160706,0.333841860294342,0.931726455688477,0.34007054567337,0.931789755821228,0.329129844903946,0.931782126426697,0.337960124015808,0.929022312164307,0.33187073469162,0.928923547267914,0.34307473897934,0.928996980190277,0.335640847682953,0.926201641559601,0.341608732938766,0.926287770271301,0.330909818410873,0.92625480890274,0.339679360389709,0.92352283000946,0.334136843681335,0.92346203327179,0.338099390268326,0.920803487300873,0.342415153980255,0.918048679828644,0.344426810741425,0.923540532588959,0.408306211233139,0.495990008115768,0.412970125675201,0.495245605707169,0.408559411764145,0.507313013076782,0.409744381904602,0.47967392206192,0.414266496896744,0.509272813796997,0.403860032558441,0.501747727394104,0.418656945228577,0.485041737556458,0.404103100299835,0.484469503164291, +0.419482380151749,0.498213082551956,0.411354720592499,0.518038511276245,0.400821655988693,0.509819686412811,0.401702791452408,0.495053172111511,0.416357904672623,0.473430067300797,0.423330992460251,0.488454848527908,0.406093239784241,0.475820243358612,0.419127881526947,0.507687747478485,0.419234246015549,0.513703763484955,0.405743837356567,0.513080894947052,0.400370955467224,0.501864194869995,0.409977316856384,0.468821853399277,0.423280358314514,0.475146740674973,0.428339242935181,0.479562520980835,0.385594308376312,0.490429788827896,0.395028501749039,0.480124622583389,0.425280600786209,0.497716814279556,0.419973582029343,0.522530257701874,0.409967184066772,0.522970795631409,0.401631891727448,0.516726970672607,0.391022890806198,0.505910336971283,0.386515974998474,0.495164602994919,0.414934933185577,0.460096627473831,0.419963449239731,0.466072112321854,0.427807539701462,0.490247488021851,0.387027412652969,0.483851701021194,0.392511695623398,0.466932982206345,0.403156161308289,0.467236816883087,0.425868034362793,0.504826605319977,0.425685733556747,0.511262953281403,0.42524516582489,0.518448710441589,0.403252363204956,0.524216532707214,0.388435214757919,0.510619819164276,0.407055407762527,0.454708576202393,0.429488778114319,0.474939107894897,0.431200385093689,0.491153925657272,0.382753431797028,0.496147006750107,0.3813456594944,0.486778676509857,0.387538880109787,0.474326372146606,0.404771566390991,0.459352225065231,0.42822277545929,0.500674188137054,0.429149478673935,0.507383942604065,0.41055965423584,0.528839945793152,0.422946125268936,0.526115536689758,0.404958933591843,0.529862880706787,0.392582595348358,0.527898073196411,0.388379514217377,0.521031320095062,0.415178000926971,0.454414874315262,0.418996244668961,0.460557460784912,0.433463990688324,0.480377823114395,0.433094322681427,0.47368323802948,0.378519952297211,0.494313836097717,0.376382976770401,0.475460708141327,0.382196396589279,0.471369028091431,0.394172668457031,0.461099296808243,0.432775288820267,0.503945529460907,0.431053519248962,0.511789560317993,0.430339515209198, +0.517532110214233,0.4136081635952,0.532587289810181,0.41984698176384,0.533691227436066,0.430425614118576,0.524955868721008,0.384313136339188,0.509536147117615,0.410195052623749,0.447821587324142,0.400852054357529,0.453366637229919,0.423913329839706,0.464011073112488,0.435504764318466,0.486950844526291,0.374099135398865,0.490718424320221,0.378140151500702,0.467879951000214,0.388318747282028,0.452444970607758,0.431954920291901,0.500350117683411,0.433641225099564,0.507140874862671,0.429387480020523,0.530252814292908,0.398573249578476,0.532511353492737,0.386298209428787,0.529381811618805,0.381897628307343,0.515572369098663,0.401176154613495,0.446216315031052,0.415522366762161,0.445102244615555,0.419122844934464,0.451695531606674,0.423153758049011,0.450424462556839,0.436912536621094,0.479982823133469,0.436137765645981,0.472376763820648,0.434390693902969,0.491862893104553,0.377046346664429,0.505317866802216,0.372488766908646,0.494111299514771,0.371551960706711,0.475455641746521,0.395651340484619,0.452637404203415,0.43589973449707,0.500066518783569,0.438735574483871,0.506578743457794,0.437824040651321,0.519294381141663,0.403784096240997,0.535863697528839,0.412205457687378,0.53655743598938,0.429787546396255,0.534233093261719,0.435064196586609,0.52907794713974,0.389594852924347,0.533787429332733,0.403470128774643,0.442914605140686,0.411881357431412,0.441289067268372,0.426632702350616,0.461944967508316,0.431975185871124,0.465135276317596,0.439241975545883,0.485786139965057,0.437940537929535,0.490860223770142,0.366953879594803,0.48641911149025,0.36630567908287,0.477349549531937,0.378454118967056,0.458202719688416,0.389913886785507,0.446079581975937,0.437505036592484,0.50357586145401,0.440442115068436,0.51403796672821,0.404624700546265,0.538896977901459,0.412833392620087,0.539661645889282,0.419411480426788,0.537286639213562,0.435200929641724,0.534764766693115,0.395717173814774,0.53713470697403,0.381765961647034,0.526075005531311,0.38461697101593,0.53415709733963,0.37599304318428,0.512098491191864,0.399413883686066,0.440362364053726, +0.418520212173462,0.440458565950394,0.420490115880966,0.444914877414703,0.42695677280426,0.452779203653336,0.440381348133087,0.479689121246338,0.437373369932175,0.469069987535477,0.370387226343155,0.499661386013031,0.362441867589951,0.490055054426193,0.372341930866241,0.465115010738373,0.363307803869247,0.47150069475174,0.376534879207611,0.454354107379913,0.384576469659805,0.449487626552582,0.443688124418259,0.503540396690369,0.445288330316544,0.513394892215729,0.448159605264664,0.52521413564682,0.440963715314865,0.52808541059494,0.39645653963089,0.541099786758423,0.40228009223938,0.542745590209961,0.429969847202301,0.537580370903015,0.440016746520996,0.531184554100037,0.387928813695908,0.537620842456818,0.409496247768402,0.435435116291046,0.414322197437286,0.433333575725555,0.431965053081512,0.446196049451828,0.430369883775711,0.460861295461655,0.440887749195099,0.47375413775444,0.436239033937454,0.462623566389084,0.443105757236481,0.481841295957565,0.44134858250618,0.488389015197754,0.439368575811386,0.496390074491501,0.360370725393295,0.482742697000504,0.357661485671997,0.477886348962784,0.371592462062836,0.459129422903061,0.383229464292526,0.439521759748459,0.443055123090744,0.499661386013031,0.445207327604294,0.517051041126251,0.444204658269882,0.506705343723297,0.412306725978851,0.542659521102905,0.406746506690979,0.54508513212204,0.420363515615463,0.54138845205307,0.434583127498627,0.544335663318634,0.438811510801315,0.539697110652924,0.391747027635574,0.539661645889282,0.378742784261703,0.528956413269043,0.372630566358566,0.51809424161911,0.380986124277115,0.535443365573883,0.369845390319824,0.506695210933685,0.408508747816086,0.432133436203003,0.391498893499374,0.439450860023499,0.427468240261078,0.438508957624435,0.417730242013931,0.431308001279831,0.428982377052307,0.443041205406189,0.436102300882339,0.449538260698318,0.4354287981987,0.456713914871216,0.443981826305389,0.476569712162018,0.441920787096024,0.470751225948334,0.361044228076935,0.499681651592255,0.356805682182312,0.490667790174484,0.360937863588333, +0.466846913099289,0.356542348861694,0.468710452318192,0.365936011075974,0.463443905115128,0.371921628713608,0.446722716093063,0.377021014690399,0.446155548095703,0.446432799100876,0.502461791038513,0.449233174324036,0.520727455615997,0.45388188958168,0.516453504562378,0.45172968506813,0.510174155235291,0.445268094539642,0.532055556774139,0.389123916625977,0.544082462787628,0.397150278091431,0.546341001987457,0.426987171173096,0.540912449359894,0.431124418973923,0.544173657894135,0.442199319601059,0.538583040237427,0.385746240615845,0.541742920875549,0.380859524011612,0.540542781352997,0.366255044937134,0.505819141864777,0.397383242845535,0.434675544500351,0.422991693019867,0.431652337312698,0.413132160902023,0.427712589502335,0.433539927005768,0.43995726108551,0.437155604362488,0.443451374769211,0.439322978258133,0.462826102972031,0.445759296417236,0.480874091386795,0.443120956420898,0.490870356559753,0.442224651575089,0.495635539293289,0.353154569864273,0.479830890893936,0.354258507490158,0.472336232662201,0.361150562763214,0.453397005796433,0.389291018247604,0.435825049877167,0.376585513353348,0.437972187995911,0.448033004999161,0.497073709964752,0.452869087457657,0.520727455615997,0.45378565788269,0.527604341506958,0.450423210859299,0.531979620456696,0.409713983535767,0.546097934246063,0.395950138568878,0.552220284938812,0.424212127923965,0.543687522411346,0.43861910700798,0.546898066997528,0.435094565153122,0.547971606254578,0.441505551338196,0.546720802783966,0.375436007976532,0.531047821044922,0.373187601566315,0.524844467639923,0.377517282962799,0.537428438663483,0.401029288768768,0.42698335647583,0.431843519210815,0.431657403707504,0.419183611869812,0.423200577497482,0.440244615077972,0.449786394834518,0.440634548664093,0.456951916217804,0.446209967136383,0.473982036113739,0.442462652921677,0.465023875236511,0.446366965770721,0.47707611322403,0.447440534830093,0.486059576272964,0.446361899375916,0.491807192564011,0.362745702266693,0.506538271903992,0.355418145656586,0.498400449752808,0.351285964250565,0.475526541471481, +0.349878191947937,0.482079297304153,0.354405373334885,0.45834955573082,0.350460529327393,0.461884200572968,0.358962923288345,0.450232028961182,0.388060480356216,0.432179003953934,0.381786227226257,0.434609711170197,0.456099897623062,0.504938066005707,0.455147862434387,0.513475894927979,0.45864200592041,0.522008657455444,0.454818725585938,0.53271895647049,0.449491441249847,0.53581303358078,0.388131380081177,0.551799952983856,0.406189471483231,0.553177356719971,0.427842974662781,0.54616379737854,0.429250746965408,0.548143804073334,0.446787267923355,0.546158730983734,0.38404980301857,0.54522693157196,0.37477770447731,0.540927648544312,0.369268089532852,0.524363398551941,0.40767827630043,0.426021218299866,0.422394156455994,0.421311736106873,0.415152668952942,0.419311463832855,0.436355501413345,0.434513479471207,0.441606819629669,0.447654485702515,0.44543519616127,0.467155814170837,0.443505823612213,0.461585432291031,0.449790209531784,0.481618493795395,0.35892242193222,0.506963610649109,0.353215336799622,0.491022258996964,0.348232388496399,0.477390080690384,0.348141252994537,0.465530276298523,0.354815542697906,0.452541202306747,0.366710811853409,0.441982835531235,0.371344327926636,0.437440454959869,0.376575410366058,0.432047337293625,0.449324309825897,0.491508394479752,0.452874153852463,0.497129410505295,0.457451969385147,0.530424952507019,0.461984217166901,0.521487057209015,0.382485032081604,0.551263213157654,0.409653216600418,0.549819946289063,0.420677483081818,0.547060072422028,0.397474378347397,0.55665123462677,0.392481327056885,0.55582582950592,0.437302470207214,0.550584614276886,0.442822188138962,0.550463080406189,0.431053519248962,0.552083551883698,0.448741972446442,0.552929222583771,0.37418520450592,0.54638659954071,0.372063398361206,0.533058226108551,0.368235051631927,0.528212010860443,0.373557269573212,0.537317037582397,0.410909086465836,0.419306397438049,0.387300878763199,0.426517486572266,0.405713438987732,0.421240836381912,0.429822981357574,0.424978047609329,0.418277144432068,0.416409820318222,0.439814180135727, +0.44266140460968,0.443814724683762,0.451918333768845,0.451841115951538,0.469307988882065,0.450853645801544,0.474716305732727,0.452109485864639,0.477744549512863,0.450483977794647,0.487928181886673,0.361925363540649,0.517633378505707,0.355180144309998,0.507358610630035,0.350759297609329,0.497291445732117,0.344768643379211,0.468386352062225,0.346804350614548,0.485355705022812,0.344961076974869,0.4792839884758,0.348404556512833,0.456182181835175,0.345426946878433,0.461980432271957,0.35139736533165,0.453969240188599,0.352567136287689,0.444038808345795,0.359788358211517,0.438291192054749,0.456813931465149,0.499970287084579,0.459072440862656,0.50823974609375,0.462986886501312,0.512387156486511,0.462556451559067,0.527857542037964,0.457436800003052,0.538117110729218,0.454276859760284,0.538360238075256,0.453441321849823,0.547343671321869,0.388425081968308,0.558119773864746,0.412848591804504,0.55411422252655,0.405115902423859,0.557279169559479,0.424060195684433,0.554615557193756,0.450367480516434,0.55060487985611,0.370741724967957,0.540000915527344,0.364766240119934,0.524135529994965,0.391169756650925,0.420612901449203,0.39997598528862,0.422906875610352,0.435352832078934,0.425960451364517,0.425159066915512,0.414029747247696,0.415096968412399,0.40887463092804,0.420474916696548,0.410454601049423,0.439662277698517,0.436402350664139,0.44660496711731,0.445385813713074,0.447896271944046,0.448971092700958,0.446341633796692,0.459271222352982,0.447881072759628,0.463530004024506,0.45544159412384,0.481218427419662,0.454737693071365,0.485639274120331,0.341401100158691,0.470067590475082,0.366214513778687,0.433596909046173,0.369561821222305,0.429408997297287,0.454737693071365,0.495073437690735,0.459695309400558,0.50123119354248,0.466577231884003,0.516696572303772,0.46463268995285,0.525320470333099,0.459847241640091,0.533498823642731,0.385543674230576,0.559846639633179,0.411066055297852,0.559041440486908,0.404599368572235,0.561846852302551,0.395600706338882,0.560732781887054,0.440786480903625,0.552908957004547,0.434542596340179,0.55783623456955, +0.448863506317139,0.555213093757629,0.431914418935776,0.559552907943726,0.454064190387726,0.551881015300751,0.377198278903961,0.551891148090363,0.367895752191544,0.544153392314911,0.368873119354248,0.535291433334351,0.360223859548569,0.527082741260529,0.408387213945389,0.410383701324463,0.384100437164307,0.420217901468277,0.373471200466156,0.426365554332733,0.394071400165558,0.418212592601776,0.44078141450882,0.431206703186035,0.436694800853729,0.422253638505936,0.428258210420609,0.416804790496826,0.446113765239716,0.44162330031395,0.4499471783638,0.453554004430771,0.456520199775696,0.468644618988037,0.458100169897079,0.478868752717972,0.350035160779953,0.516448438167572,0.351858198642731,0.504299998283386,0.346692949533463,0.497934579849243,0.339912295341492,0.466087311506271,0.342049300670624,0.481532394886017,0.338418424129486,0.474108636379242,0.346313148736954,0.451087832450867,0.344241976737976,0.455280810594559,0.347898155450821,0.443664073944092,0.351022630929947,0.437379688024521,0.357438683509827,0.43116620182991,0.457760870456696,0.495519071817398,0.462657749652863,0.508103013038635,0.467144399881363,0.51144015789032,0.466324031352997,0.529179215431213,0.465361893177032,0.532248020172119,0.46052074432373,0.538238644599915,0.457821637392044,0.545621931552887,0.380773425102234,0.558828771114349,0.389974653720856,0.570886075496674,0.418616443872452,0.55576503276825,0.393818199634552,0.566125929355621,0.43763667345047,0.555142164230347,0.454889625310898,0.559016108512878,0.428227841854095,0.560646712779999,0.462090581655502,0.554088890552521,0.370326459407806,0.550594747066498,0.366067677736282,0.540598452091217,0.362614035606384,0.53506863117218,0.354055941104889,0.521963119506836,0.364968806505203,0.537615776062012,0.400092452764511,0.411761105060577,0.385295540094376,0.410717904567719,0.442675322294235,0.429282397031784,0.43371719121933,0.41320937871933,0.432385355234146,0.409299999475479,0.410412818193436,0.40327388048172,0.419872283935547,0.402372509241104,0.44414895772934,0.436827719211578,0.45185124874115, +0.447193652391434,0.452403217554092,0.461985498666763,0.457862168550491,0.473293334245682,0.454985827207565,0.47551640868187,0.45807483792305,0.487528145313263,0.348531156778336,0.501236259937286,0.339041292667389,0.495048105716705,0.336094081401825,0.467069715261459,0.341902434825897,0.486839443445206,0.33726891875267,0.457341849803925,0.363626837730408,0.429657131433487,0.3673235476017,0.421959906816483,0.460181444883347,0.493412464857101,0.462379217147827,0.503991067409515,0.46939280629158,0.513931632041931,0.468385070562363,0.519739985466003,0.469058573246002,0.523836731910706,0.465564459562302,0.534501492977142,0.462424784898758,0.546270132064819,0.38529047369957,0.568485736846924,0.417259305715561,0.562429249286652,0.408863246440887,0.563902854919434,0.399646818637848,0.565913259983063,0.42294105887413,0.560661911964417,0.448341906070709,0.557831168174744,0.439100176095963,0.560312509536743,0.436856836080551,0.560504913330078,0.459826976060867,0.558023571968079,0.451699316501617,0.559411108493805,0.432638555765152,0.564505457878113,0.370741724967957,0.560823976993561,0.375932276248932,0.561127781867981,0.365768909454346,0.549359142780304,0.363500237464905,0.545206665992737,0.359038889408112,0.533113956451416,0.347148716449738,0.526196539402008,0.402082592248917,0.404555082321167,0.370964527130127,0.420314133167267,0.378565549850464,0.418192327022552,0.389782220125198,0.406281888484955,0.446128964424133,0.436220049858093,0.439393877983093,0.419812798500061,0.430856049060822,0.403061211109161,0.414661467075348,0.402250975370407,0.454038858413696,0.442144870758057,0.454449057579041,0.451908200979233,0.457882404327393,0.457093715667725,0.459290206432343,0.467272281646729,0.46141704916954,0.472204566001892,0.460439711809158,0.487831979990005,0.345958679914474,0.51538497209549,0.337987989187241,0.501889526844025,0.330452799797058,0.488328248262405,0.330265432596207,0.471819698810577,0.33471667766571,0.450728297233582,0.344181209802628,0.443370372056961,0.344885110855103,0.434903413057327,0.351458132266998,0.431844770908356, +0.356243580579758,0.425170481204987,0.462460249662399,0.497762411832809,0.469342172145844,0.509318351745605,0.46505805850029,0.504259467124939,0.469868808984756,0.533873558044434,0.464744091033936,0.544634461402893,0.465655595064163,0.537884175777435,0.378990918397903,0.566698133945465,0.392035692930222,0.573559820652008,0.38734644651413,0.575079023838043,0.398958116769791,0.571893811225891,0.444766759872437,0.55737030506134,0.436922669410706,0.56445986032486,0.461958914995193,0.561142981052399,0.455320060253143,0.564687788486481,0.422384023666382,0.566060066223145,0.368417352437973,0.555506765842438,0.357646286487579,0.540411114692688,0.356704413890839,0.537114500999451,0.351073265075684,0.528313279151917,0.342175900936127,0.522175788879395,0.376458942890167,0.41174590587616,0.447936803102493,0.430609166622162,0.449886411428452,0.428249359130859,0.43705940246582,0.409137964248657,0.438998878002167,0.414526015520096,0.403885364532471,0.39943540096283,0.425878167152405,0.397409826517105,0.454788327217102,0.445922583341599,0.459614306688309,0.473997205495834,0.46137148141861,0.474706172943115,0.347305685281754,0.510746419429779,0.335233181715012,0.499205619096756,0.334205210208893,0.493498533964157,0.339051425457001,0.505626738071442,0.332574605941772,0.456399947404861,0.332204937934875,0.478767484426498,0.325900316238403,0.461661398410797,0.347867786884308,0.43258410692215,0.357590585947037,0.420790135860443,0.361499965190887,0.420197665691376,0.369420021772385,0.414809584617615,0.462303251028061,0.490718424320221,0.464597225189209,0.49525573849678,0.46431365609169,0.501550257205963,0.471747547388077,0.510624885559082,0.471641212701797,0.515314102172852,0.470775276422501,0.520155251026154,0.472091913223267,0.528272807598114,0.468547135591507,0.53705370426178,0.465316325426102,0.542522788047791,0.383021831512451,0.573828220367432,0.412489026784897,0.567761600017548,0.40302449464798,0.574689090251923,0.448873609304428,0.564383924007416,0.442979156970978,0.562079846858978,0.440280079841614,0.564358592033386,0.4574975669384, +0.563325524330139,0.452068984508514,0.563664853572845,0.434608429670334,0.572116613388062,0.465144127607346,0.559056639671326,0.365677744150162,0.560054242610931,0.363885104656219,0.55330902338028,0.355544745922089,0.550822615623474,0.353498905897141,0.546928465366364,0.349579393863678,0.533119022846222,0.344292610883713,0.534800231456757,0.395003169775009,0.400736838579178,0.383264899253845,0.407861828804016,0.451846182346344,0.435035079717636,0.444589495658875,0.41962543129921,0.441373884677887,0.416247755289078,0.438649475574493,0.40000256896019,0.432537287473679,0.396589457988739,0.457289934158325,0.442362636327744,0.457968503236771,0.447553187608719,0.463802188634872,0.461863964796066,0.462855219841003,0.468872487545013,0.461391746997833,0.473455369472504,0.464663058519363,0.48542657494545,0.342008769512177,0.515131831169128,0.330579400062561,0.496334373950958,0.328047424554825,0.484692305326462,0.326740920543671,0.473541468381882,0.325069814920425,0.467950850725174,0.333025306463242,0.446064382791519,0.340773165225983,0.435450315475464,0.331470668315887,0.452723503112793,0.340641498565674,0.423884212970734,0.347498118877411,0.421686470508575,0.344363510608673,0.423372775316238,0.353058338165283,0.418982297182083,0.469630807638168,0.506391406059265,0.468223035335541,0.499995619058609,0.471641212701797,0.506963610649109,0.474335223436356,0.530141413211823,0.470461308956146,0.538208305835724,0.464997291564941,0.553374886512756,0.466784864664078,0.541758120059967,0.379137754440308,0.573301553726196,0.391205191612244,0.578395903110504,0.382961064577103,0.577610969543457,0.416945338249207,0.569037735462189,0.396274209022522,0.575833559036255,0.447030335664749,0.564551055431366,0.441986620426178,0.570693612098694,0.458429336547852,0.567199468612671,0.452195584774017,0.569088339805603,0.424019694328308,0.57329648733139,0.438588708639145,0.572607815265656,0.463832587003708,0.563041985034943,0.37463590502739,0.572071015834808,0.364816874265671,0.564348459243774,0.350283294916153,0.545794129371643,0.354218006134033,0.539494514465332, +0.337132185697556,0.523416459560394,0.388435214757919,0.400458335876465,0.369617521762848,0.402038276195526,0.451547384262085,0.42583891749382,0.439439445734024,0.406884491443634,0.44509083032608,0.411204069852829,0.454752892255783,0.435612380504608,0.457543134689331,0.437496155500412,0.459761142730713,0.450201660394669,0.465559393167496,0.454688310623169,0.464678257703781,0.469429522752762,0.463108420372009,0.472781866788864,0.464516222476959,0.480013221502304,0.339674293994904,0.510027348995209,0.338798224925995,0.517608106136322,0.334372311830521,0.508857548236847,0.326528251171112,0.493108630180359,0.326811820268631,0.480529725551605,0.324634313583374,0.486803978681564,0.320785701274872,0.465287208557129,0.335769981145859,0.436726450920105,0.338276624679565,0.425038814544678,0.362062066793442,0.413229644298553,0.370083391666412,0.407203525304794,0.466632932424545,0.488591551780701,0.468309134244919,0.496536910533905,0.473297119140625,0.514924168586731,0.473854154348373,0.535554766654968,0.46840026974678,0.540841579437256,0.467164665460587,0.55214935541153,0.379527688026428,0.576557695865631,0.385670274496078,0.578882038593292,0.408589780330658,0.577124834060669,0.398877114057541,0.577362835407257,0.44987627863884,0.568926274776459,0.44484269618988,0.566429793834686,0.458014070987701,0.570627808570862,0.431220650672913,0.577448964118958,0.439014077186584,0.578588366508484,0.468020468950272,0.558864176273346,0.359423756599426,0.558383107185364,0.360553026199341,0.561558246612549,0.35124546289444,0.555623292922974,0.348647624254227,0.553521692752838,0.348566621541977,0.542482256889343,0.346622049808502,0.538886845111847,0.33843868970871,0.53090101480484,0.379482120275497,0.398751765489578,0.454018622636795,0.429940730333328,0.447319000959396,0.417827725410461,0.451598048210144,0.411715507507324,0.444002091884613,0.4001544713974,0.438082307577133,0.394948720932007,0.460363745689392,0.443912208080292,0.46137148141861,0.440448462963104,0.467807799577713,0.457235485315323,0.466465830802917,0.462988168001175,0.466926664113998, +0.479972690343857,0.464794725179672,0.473359167575836,0.328731060028076,0.506761074066162,0.327318221330643,0.452647536993027,0.322573274374008,0.495083570480347,0.323813945055008,0.483395934104919,0.325074881315231,0.475040405988693,0.321844071149826,0.469551056623459,0.324376046657562,0.456070780754089,0.329627394676209,0.448773622512817,0.331298500299454,0.436868220567703,0.34572571516037,0.419276028871536,0.336757451295853,0.421691536903381,0.366624712944031,0.408428996801376,0.471783012151718,0.502578258514404,0.473985821008682,0.497078776359558,0.474274456501007,0.511171758174896,0.475793659687042,0.521137654781342,0.476370960474014,0.532901227474213,0.472172915935516,0.541277050971985,0.375142306089401,0.575818359851837,0.417061805725098,0.580740511417389,0.404108166694641,0.57936817407608,0.447065800428391,0.56816166639328,0.444862961769104,0.571883678436279,0.442381620407104,0.580041706562042,0.460865080356598,0.568617403507233,0.453086853027344,0.575013160705566,0.435418665409088,0.57834529876709,0.426728904247284,0.579753041267395,0.469909340143204,0.563366055488586,0.370640426874161,0.571650683879852,0.359362989664078,0.566379129886627,0.341578334569931,0.550756812095642,0.339542627334595,0.547718405723572,0.341031432151794,0.537099301815033,0.335010379552841,0.529148876667023,0.33400771021843,0.517699241638184,0.361768364906311,0.400822937488556,0.457097500562668,0.431865036487579,0.454540193080902,0.4224713742733,0.449385076761246,0.406261622905731,0.432517021894455,0.393870115280151,0.459609240293503,0.435394614934921,0.464906126260757,0.451209366321564,0.468000203371048,0.452201902866364,0.470592975616455,0.460091561079025,0.467230498790741,0.485730409622192,0.32538378238678,0.500618457794189,0.330047696828842,0.511060357093811,0.322299838066101,0.473440170288086,0.321145236492157,0.487528145313263,0.318982928991318,0.460770130157471,0.318582862615585,0.465520143508911,0.328563958406448,0.44308677315712,0.333683609962463,0.429459661245346,0.344525575637817,0.417751759290695,0.333217740058899,0.424390614032745, +0.349361658096313,0.416409820318222,0.352901369333267,0.410890102386475,0.362406432628632,0.408955663442612,0.471990615129471,0.499666452407837,0.468820571899414,0.492744028568268,0.47808763384819,0.512630224227905,0.477682530879974,0.518656313419342,0.476720362901688,0.527599275112152,0.478426933288574,0.533650696277618,0.47531259059906,0.545591533184052,0.470056176185608,0.541287183761597,0.373754769563675,0.578542768955231,0.370939195156097,0.575236022472382,0.397752910852432,0.580441772937775,0.413552463054657,0.580811440944672,0.409177213907242,0.580846846103668,0.448321640491486,0.574071288108826,0.445349097251892,0.577155232429504,0.463083118200302,0.569007337093353,0.454692125320435,0.572395086288452,0.450782746076584,0.57674503326416,0.461234748363495,0.571519076824188,0.432035952806473,0.585536122322083,0.439247012138367,0.583814382553101,0.472871750593185,0.55855530500412,0.468769937753677,0.567245066165924,0.365237176418304,0.569716274738312,0.351812601089478,0.56390792131424,0.344525575637817,0.557871639728546,0.345507979393005,0.54188472032547,0.342246770858765,0.540593445301056,0.336868852376938,0.53697270154953,0.332954406738281,0.523983597755432,0.449952244758606,0.41732132434845,0.454104691743851,0.410869836807251,0.450175076723099,0.400822937488556,0.462632417678833,0.443917274475098,0.461725980043411,0.435470581054688,0.466876029968262,0.447289854288101,0.470203042030334,0.45287036895752,0.47045624256134,0.464031338691711,0.469853639602661,0.467495083808899,0.467873632907867,0.47246789932251,0.469590306282043,0.48297056555748,0.324289977550507,0.507161140441895,0.326735854148865,0.513202428817749,0.327065020799637,0.447684854269028,0.316653519868851,0.44593271613121,0.320973068475723,0.499246150255203,0.320132464170456,0.47910675406456,0.317666292190552,0.472564101219177,0.315493851900101,0.450925797224045,0.327221989631653,0.43534904718399,0.3324935734272,0.421747237443924,0.341076999902725,0.415189385414124,0.358745187520981,0.402494043111801,0.466339230537415,0.494248002767563,0.476558327674866, +0.493999868631363,0.478396534919739,0.508320748806,0.47868013381958,0.528485476970673,0.477783799171448,0.540051579475403,0.471367746591568,0.546584069728851,0.469706773757935,0.544062256813049,0.371501296758652,0.577616035938263,0.427994906902313,0.58659952878952,0.412651091814041,0.583328187465668,0.402482628822327,0.582021713256836,0.445333898067474,0.583885252475739,0.45534536242485,0.577145099639893,0.455031394958496,0.582193911075592,0.459685176610947,0.573711752891541,0.435697197914124,0.584903120994568,0.442482888698578,0.585748791694641,0.469995409250259,0.555066227912903,0.367085516452789,0.574273824691772,0.346242249011993,0.563274919986725,0.364614307880402,0.576243698596954,0.352182269096375,0.56730580329895,0.338717192411423,0.552888751029968,0.339552760124207,0.543839395046234,0.338195621967316,0.540471911430359,0.333283573389053,0.531503617763519,0.330655366182327,0.526900470256805,0.458945840597153,0.429282397031784,0.453147619962692,0.417878359556198,0.44586056470871,0.39812383055687,0.4639692902565,0.438245624303818,0.461270213127136,0.428694993257523,0.470182776451111,0.457336783409119,0.469954907894135,0.447441786527634,0.471089243888855,0.489867687225342,0.47041067481041,0.477486282587051,0.319838732481003,0.445952981710434,0.31856769323349,0.491022258996964,0.315660983324051,0.461230963468552,0.313199877738953,0.462729901075363,0.324771046638489,0.444135010242462,0.324163377285004,0.434994548559189,0.349052757024765,0.410890102386475,0.329551428556442,0.424836248159409,0.345123112201691,0.412875175476074,0.355149775743485,0.407740294933319,0.354866176843643,0.397288292646408,0.477140665054321,0.497600346803665,0.473838955163956,0.490607023239136,0.479535937309265,0.510938823223114,0.474765688180923,0.508401811122894,0.479394137859344,0.517289042472839,0.479348570108414,0.523451924324036,0.480614542961121,0.534866094589233,0.475251823663712,0.548888206481934,0.479490339756012,0.541540384292603,0.368518620729446,0.578811168670654,0.418773412704468,0.585728526115417,0.407019942998886,0.584082722663879, +0.448174804449081,0.580193638801575,0.46503272652626,0.572511613368988,0.457254499197006,0.576739966869354,0.453107088804245,0.586326062679291,0.437145471572876,0.588027596473694,0.431529551744461,0.590159475803375,0.367141246795654,0.57740843296051,0.348050087690353,0.567407131195068,0.341659367084503,0.56009978055954,0.335035711526871,0.548498272895813,0.335430681705475,0.544224262237549,0.333450675010681,0.537519574165344,0.3280069231987,0.522849261760712,0.334235578775406,0.540335178375244,0.457325369119644,0.423003107309341,0.455912530422211,0.409563332796097,0.45601886510849,0.417777091264725,0.44798743724823,0.395029753446579,0.472527414560318,0.456192314624786,0.472177982330322,0.450085163116455,0.472041249275208,0.46934849023819,0.473600953817368,0.476909011602402,0.472654014825821,0.482747763395309,0.322071939706802,0.50821441411972,0.320431232452393,0.50487220287323,0.313918977975845,0.442823439836502,0.318643659353256,0.442524671554565,0.317321956157684,0.497671246528625,0.316992789506912,0.479137152433395,0.313341677188873,0.457873553037643,0.313432812690735,0.471951365470886,0.323196142911911,0.440078794956207,0.326573818922043,0.431490302085876,0.328331023454666,0.421929538249969,0.33482301235199,0.416288286447525,0.343593806028366,0.410322934389114,0.354800343513489,0.403709381818771,0.352020233869553,0.40128880739212,0.475601226091385,0.50043112039566,0.477495163679123,0.490156322717667,0.479454904794693,0.50371253490448,0.481247544288635,0.528591811656952,0.476781129837036,0.549318611621857,0.471919715404511,0.550366878509521,0.423447459936142,0.587627530097961,0.41499063372612,0.586477994918823,0.44866093993187,0.5850550532341,0.446346700191498,0.591334342956543,0.471281677484512,0.574906826019287,0.463559120893478,0.57497775554657,0.455335229635239,0.591749608516693,0.428258210420609,0.589242935180664,0.441652417182922,0.59581595659256,0.342955738306046,0.564667522907257,0.359585791826248,0.576020896434784,0.350820064544678,0.57503342628479,0.339010924100876,0.560742914676666,0.335866183042526, +0.553045690059662,0.3297438621521,0.535331964492798,0.32659912109375,0.53004515171051,0.323236674070358,0.5239177942276,0.323099941015244,0.515152037143707,0.460176378488541,0.42477548122406,0.453497022390366,0.402433276176453,0.45128408074379,0.396407157182693,0.468405336141586,0.444008409976959,0.473525017499924,0.466107547283173,0.475256890058517,0.484651803970337,0.311756640672684,0.450905531644821,0.316410422325134,0.49347323179245,0.31411138176918,0.478038251399994,0.313832879066467,0.48396310210228,0.310434967279434,0.464871942996979,0.321444004774094,0.438336789608002,0.32471027970314,0.428446859121323,0.348105788230896,0.407649159431458,0.326432019472122,0.423453778028488,0.340403497219086,0.412181407213211,0.349862992763519,0.398523896932602,0.475454360246658,0.552858352661133,0.474456787109375,0.551850616931915,0.419396281242371,0.588376998901367,0.411420553922653,0.586072862148285,0.465761959552765,0.578021168708801,0.457933068275452,0.583044648170471,0.45197781920433,0.593405485153198,0.436152935028076,0.593537151813507,0.428324043750763,0.592134475708008,0.363864839076996,0.579545438289642,0.344814211130142,0.569245338439941,0.360198527574539,0.579165637493134,0.355063676834106,0.575408160686493,0.33134913444519,0.545713067054749,0.331425100564957,0.549728810787201,0.327348589897156,0.540431380271912,0.327794224023819,0.532192289829254,0.323930412530899,0.527437210083008,0.320805966854095,0.520610988140106,0.45764946937561,0.408434063196182,0.458885073661804,0.417402356863022,0.469813108444214,0.434346377849579,0.471180379390717,0.44372484087944,0.472345113754272,0.463859170675278,0.476998895406723,0.470852494239807,0.475616425275803,0.473136335611343,0.476062059402466,0.4792839884758,0.31874492764473,0.506102740764618,0.319372862577438,0.514149367809296,0.310070365667343,0.449011623859406,0.317595392465591,0.440023064613342,0.310754001140594,0.460000425577164,0.310293167829514,0.470862627029419,0.320917367935181,0.434133678674698,0.330133765935898,0.416814923286438,0.324011445045471,0.420931935310364, +0.334782510995865,0.413179010152817,0.337952554225922,0.406626224517822,0.342170834541321,0.405486851930618,0.341456800699234,0.402190208435059,0.478001534938812,0.48237806558609,0.421199053525925,0.590939342975616,0.416747838258743,0.588837802410126,0.424541264772415,0.590539276599884,0.448969841003418,0.595785558223724,0.465412527322769,0.581955909729004,0.459654808044434,0.580867111682892,0.457846969366074,0.58908087015152,0.452291786670685,0.598155498504639,0.431914418935776,0.594549953937531,0.435788333415985,0.597578227519989,0.34006929397583,0.566642463207245,0.355965077877045,0.578907370567322,0.348632454872131,0.579418838024139,0.346890449523926,0.575286626815796,0.335658580064774,0.559993445873261,0.333217740058899,0.552726686000824,0.324553281068802,0.538507044315338,0.318425893783569,0.533341825008392,0.316380053758621,0.530308485031128,0.315969884395599,0.525067329406738,0.465488493442535,0.434903413057327,0.475920259952545,0.464790940284729,0.314663380384445,0.501828789710999,0.312531441450119,0.440185129642487,0.309437364339828,0.482889533042908,0.310318499803543,0.475597441196442,0.326664954423904,0.418151825666428,0.332984805107117,0.407330125570297,0.342464536428452,0.396174222230911,0.448448240756989,0.600019037723541,0.469357371330261,0.583024382591248,0.460135877132416,0.585809528827667,0.457274734973907,0.59581595659256,0.454712361097336,0.597436428070068,0.428344309329987,0.595203220844269,0.424946397542953,0.593430817127228,0.438608974218369,0.600221574306488,0.340347796678543,0.572035551071167,0.354633241891861,0.582047045230865,0.340722531080246,0.575995564460754,0.334650844335556,0.567933738231659,0.329217195510864,0.548331141471863,0.330133765935898,0.556089162826538,0.325520515441895,0.547946274280548,0.321114867925644,0.535919368267059,0.313731610774994,0.523142993450165,0.466784864664078,0.431733369827271,0.478467434644699,0.477222949266434,0.31544828414917,0.511430025100708,0.311594605445862,0.505804002285004,0.309229731559753,0.477582514286041,0.309563964605331,0.48581650853157,0.324730515480042, +0.41655158996582,0.328442424535751,0.412500441074371,0.334002643823624,0.404286682605743,0.339127391576767,0.398736566305161,0.467397600412369,0.585571527481079,0.453603357076645,0.60359925031662,0.431965053081512,0.597466826438904,0.434648960828781,0.600489974021912,0.336899250745773,0.570420145988464,0.351579666137695,0.58179384469986,0.341963201761246,0.579499840736389,0.333658307790756,0.564080059528351,0.326538354158401,0.555385231971741,0.330817401409149,0.56004410982132,0.322694808244705,0.548356473445892,0.319777965545654,0.541666984558105,0.315397650003433,0.536314368247986,0.31307327747345,0.532207489013672,0.310480535030365,0.528617143630981,0.312566876411438,0.520565450191498,0.464389622211456,0.431429535150528,0.468035668134689,0.42732772231102,0.47989547252655,0.477379947900772,0.307730793952942,0.500365257263184,0.31314417719841,0.490728557109833,0.322937875986099,0.418668329715729,0.329105794429779,0.408555597066879,0.336818218231201,0.402347177267075,0.330245196819305,0.404869049787521,0.452276617288589,0.609043002128601,0.441130816936493,0.603229582309723,0.456646800041199,0.601355910301209,0.427265673875809,0.597497165203094,0.431392818689346,0.599943101406097,0.437327772378922,0.603396713733673,0.331820070743561,0.575494289398193,0.334544479846954,0.577291965484619,0.349012225866318,0.585455060005188,0.347574084997177,0.584021985530853,0.344323009252548,0.583363652229309,0.335157245397568,0.584052383899689,0.332275837659836,0.570541679859161,0.331485867500305,0.56537139415741,0.328670293092728,0.56048971414566,0.316349655389786,0.541474521160126,0.465478360652924,0.427580922842026,0.479480236768723,0.471465229988098,0.479794204235077,0.481400728225708,0.311037570238113,0.512361824512482,0.312420040369034,0.497504144906998,0.32186433672905,0.41639968752861,0.326330751180649,0.407836526632309,0.333531707525253,0.400478571653366,0.447688668966293,0.608060598373413,0.454828858375549,0.610491335391998,0.423270225524902,0.594752490520477,0.433661460876465,0.602890312671661,0.340251594781876,0.5849689245224, +0.327429622411728,0.567898333072662,0.324315279722214,0.55946683883667,0.321190804243088,0.555947363376617,0.316673755645752,0.548528671264648,0.311386972665787,0.534936964511871,0.312668174505234,0.53849184513092,0.465387225151062,0.422942340373993,0.308870196342468,0.506345808506012,0.308748662471771,0.493341565132141,0.32857409119606,0.403314411640167,0.448909074068069,0.613838613033295,0.441581517457962,0.609412670135498,0.457811534404755,0.607037723064423,0.448949575424194,0.617935359477997,0.431058585643768,0.602409243583679,0.435150265693665,0.60580712556839,0.329374194145203,0.57520055770874,0.345538347959518,0.58709579706192,0.342808872461319,0.587541460990906,0.336448550224304,0.587166726589203,0.326467484235764,0.571103811264038,0.324436813592911,0.56250011920929,0.313422709703445,0.546184062957764,0.467129230499268,0.422770142555237,0.32396587729454,0.408337861299515,0.33103010058403,0.399151831865311,0.445283263921738,0.614775419235229,0.437778472900391,0.607751727104187,0.458647072315216,0.6003178358078,0.456748098134995,0.614041149616241,0.454661726951599,0.620431900024414,0.326816886663437,0.587136328220367,0.331708669662476,0.586736261844635,0.339836329221725,0.587794601917267,0.324295043945313,0.567878067493439,0.321474403142929,0.561659514904022,0.318775296211243,0.558975636959076,0.314815282821655,0.550128877162933,0.306956022977829,0.539145112037659,0.305725485086441,0.545571267604828,0.325662285089493,0.403456181287766,0.327768921852112,0.399546802043915,0.439495146274567,0.611959874629974,0.441277682781219,0.614167749881744,0.461341112852097,0.601492643356323,0.458991438150406,0.596028625965118,0.460515677928925,0.609022796154022,0.448250740766525,0.625217318534851,0.323626577854156,0.580168306827545,0.323059409856796,0.576289296150208,0.33990216255188,0.590341806411743,0.336696684360504,0.590670943260193,0.3327417075634,0.589739203453064,0.320466667413712,0.570648074150085,0.316764920949936,0.558924973011017,0.445409864187241,0.620345771312714,0.437206238508224,0.610460937023163,0.443505823612213, +0.617130160331726,0.46151328086853,0.597669363021851,0.458971172571182,0.615464150905609,0.455790996551514,0.624650180339813,0.31824865937233,0.582999050617218,0.320689499378204,0.572866082191467,0.320821136236191,0.566693067550659,0.31831955909729,0.562307715415955,0.441890418529511,0.619636833667755,0.464045256376266,0.613084077835083,0.44600236415863,0.626270651817322,0.448027938604355,0.630164802074432,0.323413908481598,0.590124070644379,0.315893918275833,0.57906436920166,0.316390186548233,0.576147496700287,0.32931849360466,0.590291142463684,0.334068477153778,0.592792749404907,0.318187892436981,0.569027602672577,0.443870425224304,0.622761309146881,0.461467713117599,0.616973221302032,0.465969562530518,0.604931116104126,0.454859226942062,0.633512079715729,0.317711889743805,0.58930367231369,0.314587414264679,0.585870325565338,0.331632703542709,0.593147218227386,0.316673755645752,0.573397755622864,0.458130538463593,0.626766920089722,0.452408283948898,0.636596083641052,0.326204150915146,0.59504622220993,0.318846195936203,0.593754947185516,0.3129922747612,0.577089428901672,0.328179091215134,0.597421228885651,0.314313948154449,0.573412954807281,0.447192400693893,0.637725293636322,0.322056770324707,0.593977749347687,0.314749449491501,0.590519070625305,0.312070608139038,0.583024382591248,0.329551428556442,0.599087297916412,0.447521537542343,0.645179450511932,0.445769399404526,0.633836209774017,0.323418974876404,0.601001441478729,0.312683343887329,0.590306341648102,0.31601545214653,0.596636295318604,0.311123669147491,0.575595557689667,0.30984753370285,0.579697370529175,0.310921102762222,0.58560699224472,0.32708528637886,0.601598978042603,0.313929080963135,0.597081959247589,0.318891793489456,0.601457178592682,0.324289977550507,0.603037178516388,0.316385120153427,0.602176308631897,0.322325140237808,0.605888187885284,0.316354721784592,0.606004655361176,0.319266498088837,0.608187198638916,0.323986113071442,0.605857789516449,0.313655644655228,0.603492915630341,0.321626305580139,0.610010266304016,0.32355061173439,0.608972132205963, +0.314253181219101,0.600525438785553,0.312956809997559,0.607169330120087,0.318866461515427,0.613944947719574,0.310885637998581,0.604242384433746,0.313432812690735,0.61411714553833,0.321104735136032,0.615443885326386,0.310905903577805,0.607219994068146,0.310460269451141,0.611367404460907,0.315119117498398,0.620993971824646,0.310495734214783,0.616127490997314,0.31953489780426,0.618087291717529,0.30739152431488,0.615757822990417,0.319033563137054,0.624564051628113,0.310283035039902,0.622903108596802,0.30732062458992,0.618537962436676,0.315078616142273,0.625338852405548,0.31666362285614,0.628503859043121,0.313903778791428,0.630539536476135,0.308237195014954,0.632524609565735,0.30970573425293,0.629481196403503,0.316278785467148,0.633334875106812,0.312592208385468,0.635416150093079,0.88134378194809,0.883903622627258,0.879104256629944,0.885888695716858,0.877902805805206,0.881374180316925,0.876064598560333,0.88535064458847,0.880131006240845,0.879405558109283,0.873933970928192,0.881112098693848,0.877366065979004,0.888129532337189,0.873993456363678,0.874316275119781,0.884011268615723,0.881656527519226,0.872924983501434,0.88366436958313,0.872698366641998,0.876897633075714,0.874496042728424,0.888559937477112,0.876645684242249,0.873062968254089,0.870358765125275,0.885075926780701,0.870232224464417,0.881547629833221,0.870963931083679,0.878785252571106,0.876268446445465,0.890438675880432,0.870477795600891,0.866039216518402,0.869171321392059,0.873879492282867,0.879299223423004,0.871339917182922,0.867426753044128,0.875968396663666,0.873618721961975,0.891389429569244,0.869100391864777,0.869475126266479,0.87353640794754,0.866429150104523,0.884479641914368,0.873630106449127,0.867371082305908,0.882314801216125,0.867862284183502,0.879604339599609,0.869161188602448,0.887047111988068,0.864836513996124,0.863488256931305,0.869044721126556,0.859838426113129,0.866454482078552,0.871700763702393,0.876603901386261,0.865844249725342,0.886538147926331,0.877154648303986,0.86561131477356,0.877339482307434,0.86613541841507,0.868380069732666,0.866224050521851, +0.860184013843536,0.87113356590271,0.857726752758026,0.862337470054626,0.871526062488556,0.886533081531525,0.880815863609314,0.862993240356445,0.875183463096619,0.86045116186142,0.863446474075317,0.86282867193222,0.858496427536011,0.866479814052582,0.851447403430939,0.861036062240601,0.867121636867523,0.872551500797272,0.853761672973633,0.888865053653717,0.876896381378174,0.858362257480621,0.858060956001282,0.860661327838898,0.853240072727203,0.864418745040894,0.852419674396515,0.868416786193848,0.847426652908325,0.858405292034149,0.872665405273438,0.85512387752533,0.865368247032166,0.876995146274567,0.855797350406647,0.891374230384827,0.879294157028198,0.853657841682434,0.857696354389191,0.857329189777374,0.8538578748703,0.863142669200897,0.839453399181366,0.875489830970764,0.848844528198242,0.879834711551666,0.863719940185547,0.87097156047821,0.844866812229156,0.854055345058441,0.854062974452972,0.856017649173737,0.84933066368103,0.860415697097778,0.848272323608398,0.860744833946228,0.840266168117523,0.86613541841507,0.838959693908691,0.851599335670471,0.859192728996277,0.849269926548004,0.850867569446564,0.852376639842987,0.849756062030792,0.857590019702911,0.832042276859283,0.862079203128815,0.827515125274658,0.848748326301575,0.854232609272003,0.869761228561401,0.838316559791565,0.851862668991089,0.845841586589813,0.855632781982422,0.843770444393158,0.858048319816589,0.840291500091553,0.856620252132416,0.819701433181763,0.866520285606384,0.834386944770813,0.872645199298859,0.839582562446594,0.847935557365417,0.845439016819,0.845915019512177,0.851888000965118,0.854306042194366,0.835711121559143,0.854847848415375,0.822630941867828,0.860339760780334,0.820185005664825,0.86555814743042,0.826304852962494,0.868431925773621,0.831809341907501,0.872475504875183,0.834467947483063,0.875113844871521,0.842770338058472,0.845507383346558,0.847198724746704,0.84800136089325,0.842899441719055,0.851298034191132,0.841901838779449,0.851072669029236,0.828748226165771,0.851974070072174,0.815078020095825,0.852827370166779,0.8243248462677, +0.864201009273529,0.822192907333374,0.856605052947998,0.811923146247864,0.875339210033417,0.837270855903625,0.844514846801758,0.840585231781006,0.843421041965485,0.849720597267151,0.84933066368103,0.836842954158783,0.850383996963501,0.834579348564148,0.853095710277557,0.810160934925079,0.848722994327545,0.816169321537018,0.863985776901245,0.817012429237366,0.859830796718597,0.81217634677887,0.867816686630249,0.827368259429932,0.867533087730408,0.822577774524689,0.871338665485382,0.829130530357361,0.875107526779175,0.831961274147034,0.878438353538513,0.841349899768829,0.842256307601929,0.841770172119141,0.847532987594604,0.8387570977211,0.847186088562012,0.822957575321198,0.847317755222321,0.830469965934753,0.849072396755219,0.806800961494446,0.847553253173828,0.809467136859894,0.867163419723511,0.818860828876495,0.858792722225189,0.808449268341064,0.854944109916687,0.806119859218597,0.870211958885193,0.824917316436768,0.878152251243591,0.837146759033203,0.843856513500214,0.835728883743286,0.844335079193115,0.832748711109161,0.844785749912262,0.82818865776062,0.850525796413422,0.803992986679077,0.844160377979279,0.813908219337463,0.845433950424194,0.818420231342316,0.867654621601105,0.813812017440796,0.862851440906525,0.812571346759796,0.862562835216522,0.808393597602844,0.870667695999146,0.820678770542145,0.876035511493683,0.829084932804108,0.878439605236053,0.831667542457581,0.884315073490143,0.842332303524017,0.840476334095001,0.833282947540283,0.843223512172699,0.823362648487091,0.842243671417236,0.800346970558167,0.841762602329254,0.80362331867218,0.84356027841568,0.807932794094086,0.870632231235504,0.816143989562988,0.861451268196106,0.805904626846313,0.858790159225464,0.804699420928955,0.854009807109833,0.801531910896301,0.873855471611023,0.823813378810883,0.880704462528229,0.83624541759491,0.838344395160675,0.832229673862457,0.841276466846466,0.828434228897095,0.840572535991669,0.795457720756531,0.841722071170807,0.818192362785339,0.841043531894684,0.811244606971741,0.870748698711395,0.813252449035645,0.865550577640533, +0.810155868530273,0.856746852397919,0.802478909492493,0.850925803184509,0.800205171108246,0.872473001480103,0.81830883026123,0.874464392662048,0.820633172988892,0.878316819667816,0.827507495880127,0.840094029903412,0.824550151824951,0.83693915605545,0.799177169799805,0.844947814941406,0.794794321060181,0.837673425674438,0.796402096748352,0.838352024555206,0.804053783416748,0.83964329957962,0.815159022808075,0.838769793510437,0.807613730430603,0.869054794311523,0.810955941677094,0.865624010562897,0.806717395782471,0.849158525466919,0.797376930713654,0.876469731330872,0.823858916759491,0.87999552488327,0.830568671226501,0.838663458824158,0.828315198421478,0.840600430965424,0.791993916034698,0.83602511882782,0.791758477687836,0.838384926319122,0.819215297698975,0.83765572309494,0.811533272266388,0.86768501996994,0.808783531188965,0.863681972026825,0.804491817951202,0.851411998271942,0.798204898834229,0.83663535118103,0.82192450761795,0.832551240921021,0.798751831054688,0.830738306045532,0.794303119182587,0.848089993000031,0.793315649032593,0.844813644886017,0.791216611862183,0.830880105495453,0.790943145751953,0.835354149341583,0.804826021194458,0.835733950138092,0.817164361476898,0.834118545055389,0.807482063770294,0.851427137851715,0.795237421989441,0.854303479194641,0.797652900218964,0.835683286190033,0.824689447879791,0.839942097663879,0.78816556930542,0.834908485412598,0.78780859708786,0.833105742931366,0.78940623998642,0.833915948867798,0.809971034526825,0.834045112133026,0.81320184469223,0.832366406917572,0.818506300449371,0.827446758747101,0.798154234886169,0.827239155769348,0.794996857643127,0.823142409324646,0.788236498832703,0.831647336483002,0.788228869438171,0.82978630065918,0.811553478240967,0.825438916683197,0.7867830991745,0.836569488048553,0.785038590431213,0.830533266067505,0.788998603820801,0.822982847690582,0.794703185558319,0.822359979152679,0.790543138980865,0.820106565952301,0.781559646129608,0.831505537033081,0.784010589122772,0.830186367034912,0.787054061889648,0.825145184993744,0.800676107406616, +0.817961931228638,0.787276864051819,0.826479554176331,0.783567488193512,0.812475144863129,0.779787242412567,0.833548843860626,0.781698882579803,0.828155696392059,0.815432488918304,0.822960078716278,0.801693975925446,0.81949383020401,0.791555881500244,0.82490462064743,0.779989838600159,0.815650224685669,0.778683304786682,0.82843679189682,0.780367076396942,0.818189859390259,0.793333351612091,0.825112283229828,0.81157374382019,0.81494128704071,0.788613736629486,0.808563232421875,0.780167043209076,0.822714507579803,0.778313636779785,0.812556147575378,0.776528596878052,0.819587469100952,0.777852833271027,0.808826565742493,0.784423291683197,0.808717668056488,0.776470363140106,0.825854122638702,0.778055369853973,0.815569221973419,0.775834858417511,0.818063259124756,0.776136159896851,0.813713312149048,0.792611718177795,0.805595755577087,0.777533769607544,0.805570423603058,0.780587375164032,0.806950390338898,0.774670124053955,0.803889214992523,0.782688915729523,0.803377747535706,0.775153756141663,0.802086412906647,0.778989672660828,0.800688743591309,0.776138663291931,0.815065383911133,0.906117975711823,0.816084504127502,0.908651232719421,0.815475523471832,0.910309672355652,0.904793739318848,0.901818692684174,0.907487809658051,0.903872132301331,0.903644204139709,0.907792866230011,0.576077878475189,0.840678870677948,0.576670348644257,0.836070716381073,0.579253017902374,0.839195132255554,0.579270720481873,0.835118651390076,0.57969605922699,0.843013405799866,0.577197015285492,0.83149790763855,0.584686636924744,0.832723379135132,0.577260315418243,0.845312416553497,0.587555348873138,0.84019273519516,0.575262606143951,0.833209574222565,0.580650627613068,0.830677568912506,0.586689412593842,0.836232721805573,0.580863356590271,0.848244488239288,0.589023888111115,0.844076812267303,0.574373841285706,0.829938232898712,0.578708589076996,0.827456891536713,0.585170209407806,0.828307628631592,0.590274691581726,0.831214368343353,0.583770036697388,0.845671951770782,0.577941417694092,0.849115490913391,0.591988861560822,0.840547263622284,0.575457572937012, +0.827624022960663,0.583992838859558,0.825107216835022,0.592399060726166,0.834181845188141,0.587844014167786,0.84833562374115,0.575786709785461,0.848953425884247,0.57862251996994,0.85291850566864,0.59427273273468,0.847601354122162,0.576050043106079,0.824140012264252,0.577693283557892,0.821967542171478,0.588813781738281,0.82329934835434,0.591297626495361,0.826884686946869,0.594687938690186,0.831148505210876,0.586205840110779,0.855212450027466,0.580455660820007,0.853799641132355,0.594047367572784,0.837837994098663,0.595915973186493,0.843590676784515,0.591431796550751,0.848983824253082,0.573485136032104,0.824833750724792,0.581668496131897,0.820068538188934,0.586593210697174,0.82024073600769,0.597323775291443,0.837787389755249,0.589198589324951,0.853824973106384,0.582286298274994,0.854680776596069,0.577029883861542,0.857197523117065,0.579508721828461,0.855754315853119,0.597933948040009,0.850953698158264,0.59465503692627,0.85363757610321,0.572297632694244,0.821851074695587,0.573920607566834,0.820367336273193,0.577918648719788,0.815571784973145,0.592361032962799,0.82032173871994,0.595295608043671,0.826611220836639,0.600265920162201,0.834860384464264,0.587160348892212,0.860929667949677,0.580394923686981,0.858590126037598,0.599101185798645,0.84635055065155,0.574239671230316,0.816680788993835,0.58190906047821,0.815992057323456,0.587699711322784,0.816326320171356,0.599010050296783,0.831725835800171,0.600696325302124,0.839853465557098,0.592902898788452,0.858544588088989,0.578711152076721,0.857896387577057,0.601114153862,0.848968625068665,0.597898483276367,0.856635451316834,0.570041656494141,0.817359328269959,0.570259392261505,0.814807116985321,0.578108549118042,0.810026705265045,0.574725806713104,0.812852382659912,0.591034293174744,0.814776718616486,0.596389472484589,0.821101605892181,0.598002314567566,0.826423823833466,0.591052055358887,0.862129867076874,0.580784857273102,0.862155199050903,0.577769219875336,0.861425936222076,0.602002859115601,0.853197038173676,0.571593761444092,0.813485383987427,0.583263635635376,0.813414514064789, +0.586719810962677,0.812442243099213,0.594457566738129,0.818123996257782,0.601344525814056,0.829163432121277,0.595526039600372,0.8617804646492,0.588163018226624,0.865770816802979,0.582273662090302,0.865963280200958,0.60186105966568,0.859243392944336,0.568284451961517,0.811459839344025,0.57359653711319,0.809581100940704,0.582222998142242,0.809616565704346,0.571044325828552,0.810533106327057,0.589750587940216,0.810786306858063,0.593110501766205,0.811682641506195,0.600255787372589,0.823238611221313,0.600121557712555,0.819086134433746,0.594401836395264,0.8657506108284,0.577933847904205,0.865451812744141,0.598706185817719,0.860342264175415,0.578404784202576,0.806659162044525,0.584000468254089,0.806816160678864,0.59694904088974,0.814320981502533,0.597959280014038,0.864768147468567,0.586841344833374,0.869072556495667,0.578559219837189,0.869827091693878,0.575189173221588,0.863603472709656,0.601716756820679,0.863137602806091,0.567681849002838,0.809201300144196,0.570522725582123,0.806005954742432,0.574097871780396,0.804152548313141,0.588525116443634,0.807104825973511,0.5950728058815,0.809677302837372,0.59452086687088,0.868201553821564,0.575614511966705,0.870019495487213,0.575123310089111,0.866484880447388,0.575424611568451,0.860114395618439,0.567542552947998,0.806735157966614,0.577607214450836,0.802172482013702,0.581450760364532,0.803443551063538,0.591940760612488,0.806785762310028,0.584808170795441,0.805018484592438,0.597612380981445,0.870044827461243,0.586165308952332,0.872353971004486,0.592490196228027,0.871736168861389,0.576619744300842,0.875382244586945,0.602195262908936,0.865279614925385,0.56794011592865,0.803803086280823,0.572074830532074,0.802273809909821,0.586914777755737,0.804041087627411,0.594470202922821,0.807195961475372,0.584648668766022,0.875878512859344,0.573171138763428,0.869416892528534,0.572768568992615,0.873928904533386,0.564762473106384,0.804182887077332,0.570385992527008,0.795407056808472,0.582716763019562,0.801291406154633,0.585681676864624,0.800329208374023,0.600240588188171,0.869827091693878,0.597037613391876, +0.87278950214386,0.590239286422729,0.87466824054718,0.572553336620331,0.877590119838715,0.581222891807556,0.879458725452423,0.569337725639343,0.799792468547821,0.577278017997742,0.800131738185883,0.587702214717865,0.878162384033203,0.570358157157898,0.872414767742157,0.569770693778992,0.874815106391907,0.584468901157379,0.881165266036987,0.564861178398132,0.802015542984009,0.566555082798004,0.795736193656921,0.573444604873657,0.794449985027313,0.581584930419922,0.798840403556824,0.600739419460297,0.871898233890533,0.590862154960632,0.87786865234375,0.569780826568604,0.879139721393585,0.580498695373535,0.882400929927826,0.565109312534332,0.799362003803253,0.566793084144592,0.793781518936157,0.57707804441452,0.797078132629395,0.586881875991821,0.883013665676117,0.589905023574829,0.881220996379852,0.567342519760132,0.877230584621429,0.584258735179901,0.885748207569122,0.562486231327057,0.800324141979218,0.5621697306633,0.797868132591248,0.562324166297913,0.79512345790863,0.5667804479599,0.879484057426453,0.57762998342514,0.886052012443542,0.581169724464417,0.886057078838348,0.588193416595459,0.885884881019592,0.566529750823975,0.881610929965973,0.56697541475296,0.884710073471069,0.582111597061157,0.888654887676239,0.559174358844757,0.796257793903351,0.573953568935394,0.888761222362518,0.563878774642944,0.883778274059296,0.578024983406067,0.888913154602051,0.566481649875641,0.891065359115601,0.563010334968567,0.887540817260742,0.57334840297699,0.890660226345062,0.579002320766449,0.890614628791809,0.424562782049179,0.927573978900909,0.421711772680283,0.932131588459015,0.421782672405243,0.923059463500977,0.416083186864853,0.926389038562775,0.417263090610504,0.931655526161194,0.412123173475266,0.932924091815948,0.409700065851212,0.931014955043793,0.415432453155518,0.934567332267761,0.407699793577194,0.93408876657486,0.413690477609634,0.926108002662659,0.419101297855377,0.935177564620972,0.413700580596924,0.936919569969177,0.40985956788063,0.937458872795105,0.416759222745895,0.936985373497009,0.405580520629883,0.937319576740265, +0.411809206008911,0.939550280570984,0.404555082321167,0.934068560600281,0.406656622886658,0.943743228912354,0.409608900547028,0.943026661872864,0.400329202413559,0.939823746681213,0.402088910341263,0.936881542205811,0.401916742324829,0.947082936763763,0.399275898933411,0.936901807785034,0.403334647417068,0.94929838180542,0.398706197738647,0.943545758724213,0.39700722694397,0.941001117229462,0.39960503578186,0.950564384460449,0.397533893585205,0.94998961687088,0.395356386899948,0.945890367031097,0.398027628660202,0.953291356563568,0.83798485994339,0.907315611839294,0.842120885848999,0.905760943889618,0.838935613632202,0.910115957260132,0.17742232978344,0.934990167617798,0.177321046590805,0.939547717571259,0.173614233732224,0.937405705451965,0.179964438080788,0.937339842319489,0.174723237752914,0.931025087833405,0.183205381035805,0.933172225952148,0.171720311045647,0.933187425136566,0.180865824222565,0.930219948291779,0.18572723865509,0.935121834278107,0.167041197419167,0.937501907348633,0.168357834219933,0.92917674779892,0.178602233529091,0.925935804843903,0.18896310031414,0.931161820888519,0.18416753411293,0.939841449260712,0.187849029898643,0.928305745124817,0.170651808381081,0.941152989864349,0.17256598174572,0.927961409091949,0.184668868780136,0.923935532569885,0.18944925069809,0.93442302942276,0.187246426939964,0.937258839607239,0.166793063282967,0.941021382808685,0.170667007565498,0.925520539283752,0.176682993769646,0.923069596290588,0.183012947440147,0.921256721019745,0.191565990447998,0.931906223297119,0.191641941666603,0.928523480892181,0.18714514374733,0.940854251384735,0.190269604325294,0.925090134143829,0.165451124310493,0.926973938941956,0.186826109886169,0.921656727790833,0.188897281885147,0.939517378807068,0.185322120785713,0.942753255367279,0.171963378787041,0.92268979549408,0.165922060608864,0.9225834608078,0.180192321538925,0.91891211271286,0.183266147971153,0.943973660469055,0.172935664653778,0.919119715690613,0.161030277609825,0.925414204597473,0.185200586915016,0.946085333824158,0.159445255994797, +0.921742856502533,0.177827447652817,0.916658639907837,0.164053469896317,0.919443786144257,0.156639814376831,0.924553334712982,0.17366486787796,0.91584837436676,0.165739759802818,0.916613042354584,0.158356502652168,0.919104516506195,0.158250167965889,0.928199410438538,0.154806658625603,0.919990718364716,0.155292809009552,0.929733753204346,0.153981238603592,0.92650294303894,0.171254426240921,0.913620233535767,0.157824784517288,0.916445910930634,0.156285345554352,0.932245492935181,0.176369026303291,0.914369702339172,0.163714185357094,0.913412630558014,0.152421534061432,0.91463303565979,0.16983650624752,0.910916090011597,0.155996695160866,0.913711369037628,0.173148348927498,0.911564290523529,0.16557265818119,0.91060209274292,0.158559069037437,0.909761488437653,0.152112632989883,0.910946488380432,0.168367967009544,0.90872848033905,0.14938822388649,0.913701295852661,0.163496434688568,0.908141016960144,0.153322920203209,0.904788672924042,0.148294404149055,0.9107945561409,0.148775488138199,0.916005373001099,0.159212321043015,0.90511280298233,0.167157679796219,0.906368672847748,0.149747759103775,0.906054675579071,0.145995363593102,0.915017902851105,0.151272013783455,0.920259118080139,0.163886353373528,0.905087471008301,0.150441527366638,0.901492059230804,0.154847174882889,0.900276720523834,0.146643549203873,0.918805718421936,0.163395151495934,0.90257066488266,0.165137156844139,0.903249263763428,0.159982040524483,0.900266587734222,0.147995635867119,0.922026395797729,0.153206452727318,0.895379841327667,0.156082779169083,0.897557318210602,0.151368230581284,0.921930193901062,0.163425534963608,0.900236189365387,0.16088342666626,0.897233247756958,0.149114772677422,0.927470207214355,0.1580830514431,0.892523765563965,0.147215783596039,0.924963533878326,0.152487367391586,0.924112796783447,0.155464977025986,0.890376627445221,0.160564392805099,0.894356906414032,0.145721912384033,0.922796130180359,0.150952994823456,0.929602086544037,0.159247756004334,0.889287889003754,0.153778687119484,0.888224482536316,0.16109611093998,0.891966760158539, +0.145119294524193,0.919945120811462,0.158240035176277,0.885029077529907,0.15989089012146,0.886548280715942,0.15705506503582,0.879539787769318,0.159035071730614,0.881129860877991,0.159794673323631,0.878405451774597,0.160640358924866,0.875681042671204,0.729186832904816,0.769666910171509,0.728660225868225,0.775642395019531,0.723970949649811,0.770066976547241,0.731754302978516,0.773272454738617,0.723535478115082,0.774573922157288,0.725282549858093,0.764962494373322,0.734807848930359,0.769499838352203,0.720952868461609,0.77116584777832,0.73304557800293,0.765013158321381,0.72214287519455,0.766907036304474,0.738696992397308,0.769823908805847,0.720289468765259,0.774168789386749,0.728898227214813,0.762916684150696,0.719301998615265,0.760972082614899,0.740104734897614,0.764663696289063,0.736894190311432,0.775373995304108,0.71540778875351,0.764030754566193,0.717559993267059,0.763843357563019,0.725601553916931,0.761184751987457,0.738504528999329,0.761741816997528,0.722502410411835,0.761331617832184,0.742783606052399,0.766208231449127,0.740570664405823,0.772097647190094,0.727510690689087,0.757204532623291,0.730944037437439,0.755472600460052,0.723393678665161,0.756779134273529,0.716415524482727,0.75979220867157,0.743943274021149,0.760496079921722,0.742940604686737,0.769428908824921,0.744748413562775,0.763666093349457,0.741239070892334,0.774766325950623,0.740788400173187,0.754859864711761,0.719504535198212,0.75295078754425,0.716481387615204,0.755138397216797,0.742738008499146,0.757812201976776,0.745239615440369,0.767018496990204,0.743517875671387,0.772624254226685,0.738727390766144,0.77792626619339,0.714232981204987,0.760177075862885,0.726467490196228,0.753912925720215,0.732093572616577,0.748626172542572,0.722198605537415,0.751522719860077,0.713523983955383,0.756627202033997,0.745816886425018,0.756839871406555,0.745199084281921,0.770603775978088,0.73437237739563,0.78021514415741,0.742231607437134,0.777541399002075,0.729728698730469,0.751502454280853,0.741811335086823,0.749066710472107,0.745776414871216,0.754910528659821,0.718800663948059, +0.747846305370331,0.715291321277618,0.752150654792786,0.740601003170013,0.779921472072601,0.725601553916931,0.750307381153107,0.727176487445831,0.74345076084137,0.735764920711517,0.744574964046478,0.745067417621613,0.751613914966583,0.712571978569031,0.751867055892944,0.73738032579422,0.782078683376312,0.729997098445892,0.740741550922394,0.739821195602417,0.744453430175781,0.745705485343933,0.749497175216675,0.723241746425629,0.743086159229279,0.714172184467316,0.74828177690506,0.725778818130493,0.738437473773956,0.74287474155426,0.746256232261658,0.737861454486847,0.740118682384491,0.732746839523315,0.739652812480927,0.745199084281921,0.747339904308319,0.720066666603088,0.743091225624084,0.716901659965515,0.746722102165222,0.727171421051025,0.733140528202057,0.744783878326416,0.744372427463531,0.743543207645416,0.741334021091461,0.722786009311676,0.733413994312286,0.716658592224121,0.742281019687653,0.743350744247437,0.738943874835968,0.73561304807663,0.733464658260345,0.729607164859772,0.728380441665649,0.71894246339798,0.734244465827942,0.714384913444519,0.741587221622467,0.725505352020264,0.728279113769531,0.746404349803925,0.74155181646347,0.741193532943726,0.736766338348389,0.746080219745636,0.7387615442276,0.715914189815521,0.73522686958313,0.718709528446198,0.725949704647064,0.721494674682617,0.722663223743439,0.744814276695251,0.736877739429474,0.732888638973236,0.72426849603653,0.739993333816528,0.733494997024536,0.724396347999573,0.723088562488556,0.716699123382568,0.727965176105499,0.713361978530884,0.737637341022491,0.744074881076813,0.73370772600174,0.727130889892578,0.720348954200745,0.73762845993042,0.726952373981476,0.713908851146698,0.731854319572449,0.716334521770477,0.724248230457306,0.719443798065186,0.718130946159363,0.722841680049896,0.717422008514404,0.729784429073334,0.717999279499054,0.735526919364929,0.718880414962769,0.742672204971313,0.729636251926422,0.714536786079407,0.725088834762573,0.717063724994659,0.717432141304016,0.725292682647705,0.716075003147125,0.740302264690399,0.722551822662354, +0.745351016521454,0.728734910488129,0.7210693359375,0.711066722869873,0.718010663986206,0.71242892742157,0.729095697402954,0.712722659111023,0.732959508895874,0.714160799980164,0.738195657730103,0.716672539710999,0.743583679199219,0.722273290157318,0.72598135471344,0.706807911396027,0.728032290935516,0.707861244678497,0.741856873035431,0.716971278190613,0.745837152004242,0.725230634212494,0.719955265522003,0.706731975078583,0.724198877811432,0.702376961708069,0.732989907264709,0.709846317768097,0.740413665771484,0.711846590042114,0.744404077529907,0.718105614185333,0.745401680469513,0.721939027309418,0.728204429149628,0.703779697418213,0.717387795448303,0.707648575305939,0.733324110507965,0.706174910068512,0.743978679180145,0.714221596717834,0.721935272216797,0.701926290988922,0.729359030723572,0.700594425201416,0.7383171916008,0.708225846290588,0.744581282138824,0.711102187633514,0.734088778495789,0.702974498271942,0.723560810089111,0.697819411754608,0.727672755718231,0.695565938949585,0.738377928733826,0.70519757270813,0.74370014667511,0.708008110523224,0.733865976333618,0.699834823608398,0.730594635009766,0.69791054725647,0.742363274097443,0.705734372138977,0.746606886386871,0.708580315113068,0.737106919288635,0.700741291046143,0.72498881816864,0.694117605686188,0.730913639068604,0.694477200508118,0.740033864974976,0.702954232692719,0.745609283447266,0.702523827552795,0.748510956764221,0.706362307071686,0.734093844890594,0.697145879268646,0.736529588699341,0.69771808385849,0.748541355133057,0.703222632408142,0.738636195659637,0.697267413139343,0.724193811416626,0.68714964389801,0.733992576599121,0.694431602954865,0.741548001766205,0.696755945682526,0.750860631465912,0.700893223285675,0.72976416349411,0.688263714313507,0.721915006637573,0.691185593605042,0.735101580619812,0.694451868534088,0.731875836849213,0.6924769282341,0.746399283409119,0.697434544563293,0.75107330083847,0.703465700149536,0.750820100307465,0.697753548622131,0.73992246389389,0.690309524536133,0.73122763633728,0.682804763317108,0.721874475479126, +0.694948136806488,0.722345411777496,0.685610175132751,0.744024276733398,0.692238926887512,0.750288367271423,0.70588630437851,0.736838519573212,0.689732253551483,0.732296109199524,0.687762379646301,0.727262556552887,0.680313289165497,0.719889402389526,0.687028110027313,0.749630093574524,0.694679737091064,0.738813459873199,0.684612572193146,0.744495213031769,0.689848721027374,0.732837975025177,0.678753554821014,0.752952039241791,0.6954545378685,0.748359024524689,0.691970527172089,0.736083984375,0.685903906822205,0.744318008422852,0.687463581562042,0.728700697422028,0.676869750022888,0.75300270318985,0.692254066467285,0.737598121166229,0.678358554840088,0.742216408252716,0.684182107448578,0.750759363174438,0.684506237506866,0.751949369907379,0.689276456832886,0.730903565883636,0.675148010253906,0.740287065505981,0.676535546779633,0.743492543697357,0.679523289203644,0.73263543844223,0.675958275794983,0.755418181419373,0.69001579284668,0.739735066890717,0.669516921043396,0.749619960784912,0.679817020893097,0.755332112312317,0.686876177787781,0.754906713962555,0.694107532501221,0.744216680526733,0.674277007579803,0.743046939373016,0.667805254459381,0.753964841365814,0.681437492370605,0.742454469203949,0.665734112262726,0.754385113716125,0.675411343574524,0.750992298126221,0.6748948097229,0.756881654262543,0.681477963924408,0.746480286121368,0.668964922428131,0.749149024486542,0.656158149242401,0.756329715251923,0.676707744598389,0.748743891716003,0.664695978164673,0.742657005786896,0.661455035209656,0.753767311573029,0.665668308734894,0.758218586444855,0.66956752538681,0.750916302204132,0.658654689788818,0.756101846694946,0.668838322162628,0.755251049995422,0.662103235721588,0.751686036586761,0.653722405433655,0.757028520107269,0.664898574352264,0.755205512046814,0.656380951404572,0.750961899757385,0.650537133216858,0.758097052574158,0.662665367126465,0.756739914417267,0.657181084156036,0.760983467102051,0.667060852050781,0.763292670249939,0.658097624778748,0.761879801750183,0.654897212982178,0.764087677001953,0.649939596652985, +0.762087404727936,0.648612856864929,0.77072149515152,0.65162593126297,0.7658651471138,0.644278109073639,0.769106090068817,0.645508646965027,0.765596747398376,0.658634424209595,0.764290273189545,0.643295705318451,0.775167644023895,0.64392364025116,0.764290273189545,0.663278102874756,0.769526422023773,0.64080423116684,0.775729775428772,0.649169862270355,0.775957643985748,0.640692830085754,0.778682053089142,0.644389510154724,0.779649257659912,0.641837239265442,0.779137790203094,0.648855924606323,0.786191880702972,0.642374038696289,0.774711906909943,0.652051270008087,0.784373939037323,0.646693587303162,0.788860619068146,0.646151781082153,0.875817775726318,0.900894522666931,0.876492500305176,0.895182371139526,0.878226935863495,0.901618659496307,0.800387442111969,0.908153712749481,0.7971351146698,0.910746455192566,0.798887252807617,0.906607925891876,0.918258845806122,0.904339253902435,0.914774835109711,0.907708048820496,0.91628897190094,0.901818692684174,0.895013988018036,0.901816129684448,0.896496474742889,0.90447473526001,0.894368290901184,0.906814277172089,0.896791398525238,0.906616806983948,0.897388994693756,0.907999217510223,0.944975018501282,0.913569629192352,0.946995556354523,0.911224961280823,0.947853922843933,0.914926767349243,0.945033311843872,0.915797770023346,0.94817042350769,0.916876375675201,0.94993269443512,0.91570657491684,0.894629120826721,0.91413676738739,0.895049393177032,0.916861176490784,0.894056856632233,0.911797225475311,0.608393549919128,0.891733765602112,0.609282314777374,0.895101308822632,0.606833875179291,0.894964575767517,0.607942879199982,0.898190319538116,0.610426783561707,0.897937119007111,0.610768556594849,0.901117324829102,0.607208609580994,0.900474190711975,0.612718224525452,0.898884117603302,0.610325455665588,0.903497397899628,0.613414466381073,0.90152245759964,0.613475263118744,0.903699934482574,0.388149082660675,0.95451682806015,0.385260105133057,0.953331828117371,0.38771864771843,0.951331615447998,0.384999305009842,0.956071436405182,0.384541004896164,0.950470685958862,0.387019813060761, +0.947943806648254,0.38404855132103,0.946844935417175,0.385827273130417,0.944773733615875,0.382942080497742,0.942930459976196,0.384795486927032,0.941694855690002,0.380405008792877,0.944763600826263,0.380716443061829,0.948566675186157,0.379390954971313,0.940226316452026,0.381619095802307,0.938879311084747,0.378426283597946,0.935506701469421,0.375846177339554,0.938489377498627,0.374839723110199,0.933830499649048,0.377472996711731,0.932448089122772,0.376424759626389,0.930037617683411,0.372753381729126,0.930240154266357,0.374342203140259,0.926756143569946,0.371075928211212,0.926832139492035,0.372830599546433,0.923808932304382,0.369384557008743,0.923054397106171,0.754268646240234,0.905836939811707,0.757603287696838,0.904844403266907,0.755834698677063,0.908910751342773,0.716282606124878,0.901628792285919,0.719727396965027,0.89313143491745,0.717657446861267,0.900251388549805,0.887276232242584,0.901552796363831,0.886279881000519,0.901643991470337,0.885093688964844,0.895182371139526,0.780507624149323,0.908747434616089,0.781158328056335,0.904677271842957,0.782854735851288,0.908034682273865,0.490877956151962,0.523107528686523,0.490615874528885,0.517029523849487,0.493488430976868,0.520788252353668,0.49387201666832,0.515052020549774,0.493392199277878,0.526562452316284,0.496320426464081,0.516861140727997,0.491336226463318,0.513145446777344,0.496253341436386,0.524281144142151,0.490360140800476,0.527303040027618,0.496747076511383,0.508925914764404,0.496190041303635,0.530270516872406,0.49228698015213,0.530640184879303,0.500388085842133,0.512084543704987,0.499137282371521,0.52226310968399,0.498872667551041,0.526563704013824,0.48933470249176,0.531088352203369,0.498890399932861,0.504749417304993,0.499922186136246,0.518701910972595,0.500546336174011,0.530126214027405,0.501300871372223,0.505452036857605,0.505841970443726,0.517356157302856,0.502283275127411,0.525943338871002,0.500656485557556,0.534053325653076,0.497873812913895,0.499190449714661,0.506655991077423,0.512688457965851,0.50945258140564,0.527276456356049,0.504632949829102,0.530288219451904, +0.503996133804321,0.534084975719452,0.496385008096695,0.534858465194702,0.502749145030975,0.501069188117981,0.493999868631363,0.500951409339905,0.512382090091705,0.519957780838013,0.508691728115082,0.530768036842346,0.493441581726074,0.534045696258545,0.501567959785461,0.49528107047081,0.50895881652832,0.509732365608215,0.514867186546326,0.515354633331299,0.512859344482422,0.52974259853363,0.507120609283447,0.534176111221313,0.497766196727753,0.495767205953598,0.504834234714508,0.499156266450882,0.510417222976685,0.507306694984436,0.517559945583344,0.519843816757202,0.514493763446808,0.525935769081116,0.511849105358124,0.534022927284241,0.506044507026672,0.537624657154083,0.497699111700058,0.489656269550323,0.494221419095993,0.49590265750885,0.508627116680145,0.494841754436493,0.512677073478699,0.509931087493896,0.518908262252808,0.515273571014404,0.514733016490936,0.530827581882477,0.513493597507477,0.53081613779068,0.510028600692749,0.537109434604645,0.495208889245987,0.489404320716858,0.50219589471817,0.487063527107239,0.513134062290192,0.50299346446991,0.505609035491943,0.486591309309006,0.518319547176361,0.512160539627075,0.516606688499451,0.531912505626678,0.521521270275116,0.519193112850189,0.514127850532532,0.531888484954834,0.514179766178131,0.537890553474426,0.512403607368469,0.540904879570007,0.496630609035492,0.482640147209167,0.501102089881897,0.478009134531021,0.5103919506073,0.49315419793129,0.518322110176086,0.507663726806641,0.519175350666046,0.530012249946594,0.527519524097443,0.512094676494598,0.536387801170349,0.519570350646973,0.522064387798309,0.523315191268921,0.514445662498474,0.532425224781036,0.515397667884827,0.534035563468933,0.494599968194962,0.482769280672073,0.503813862800598,0.477720499038696,0.520024836063385,0.504054367542267,0.511283218860626,0.489984154701233,0.522517621517181,0.507947325706482,0.521254122257233,0.537322103977203,0.533088624477386,0.515861034393311,0.514763414859772,0.532962024211884,0.517791628837585,0.53760439157486,0.514676034450531,0.541051685810089,0.50125527381897, +0.472876816987991,0.494185984134674,0.477928131818771,0.506577491760254,0.482204645872116,0.517473876476288,0.499220818281174,0.52510529756546,0.526639640331268,0.524049460887909,0.533307611942291,0.516902923583984,0.533335506916046,0.52830570936203,0.507728278636932,0.532989859580994,0.511500954627991,0.53873997926712,0.515263438224792,0.536052286624908,0.524972379207611,0.515685021877289,0.532437920570374,0.516002833843231,0.532973408699036,0.516833305358887,0.541142880916595,0.516576290130615,0.544652163982391,0.508148610591888,0.473509818315506,0.509746253490448,0.48076394200325,0.519694447517395,0.497492760419846,0.512223839759827,0.48537215590477,0.515842020511627,0.492465496063232,0.523760795593262,0.503827750682831,0.531687140464783,0.528707027435303,0.519226014614105,0.536039650440216,0.516304135322571,0.532442986965179,0.540242731571198,0.520203351974487,0.538829863071442,0.525305330753326,0.517199158668518,0.534758448600769,0.519690632820129,0.54122132062912,0.49630144238472,0.470419526100159,0.507778942584991,0.468956053256989,0.50884997844696,0.476432979106903,0.520388185977936,0.537392973899841,0.527268886566162,0.503741681575775,0.534891366958618,0.508181512355804,0.540285766124725,0.511323690414429,0.543312788009644,0.515595138072968,0.519523501396179,0.537462592124939,0.519109547138214,0.545049726963043,0.502104759216309,0.467849552631378,0.487086296081543,0.473260402679443,0.511982023715973,0.471818447113037,0.514368414878845,0.477282464504242,0.513031542301178,0.481446295976639,0.523798763751984,0.49652174115181,0.523179709911346,0.492318630218506,0.520862936973572,0.538296937942505,0.533393740653992,0.50412780046463,0.527057468891144,0.496382474899292,0.542920291423798,0.511728823184967,0.543955862522125,0.519788146018982,0.543226659297943,0.525837004184723,0.520473003387451,0.539271712303162,0.496266007423401,0.465864479541779,0.504713952541351,0.462127298116684,0.513175845146179,0.463366687297821,0.5203577876091,0.485359489917755,0.521913707256317,0.539350211620331,0.533622860908508,0.496422976255417, +0.536706805229187,0.503903746604919,0.542007505893707,0.508538544178009,0.548585593700409,0.509433567523956,0.548536241054535,0.516225636005402,0.543221592903137,0.530357897281647,0.522573292255402,0.541380882263184,0.495041787624359,0.461870282888412,0.515507817268372,0.465742945671082,0.515412867069244,0.471976697444916,0.517386555671692,0.481062710285187,0.525135636329651,0.492094576358795,0.526083886623383,0.538005709648132,0.539271712303162,0.496671110391617,0.53100860118866,0.493408650159836,0.540137648582459,0.504151880741119,0.540137648582459,0.500360190868378,0.54569536447525,0.507685244083405,0.550571978092194,0.520342648029327,0.546172618865967,0.527209341526031,0.521328806877136,0.545118093490601,0.496109008789063,0.458240687847137,0.514046847820282,0.45908385515213,0.517566323280334,0.461922198534012,0.519399464130402,0.473879486322403,0.51922219991684,0.477188795804977,0.523187279701233,0.48155266046524,0.524419128894806,0.486483693122864,0.524329245090485,0.539692044258118,0.539738893508911,0.492866814136505,0.534754693508148,0.49213632941246,0.544214129447937,0.50371128320694,0.548255205154419,0.503251731395721,0.551273345947266,0.511817455291748,0.551627814769745,0.517168760299683,0.547366440296173,0.530603468418121,0.523894965648651,0.545282661914825,0.504059433937073,0.458103954792023,0.51834237575531,0.466041743755341,0.526014268398285,0.541145384311676,0.544440746307373,0.497397810220718,0.542924106121063,0.492837697267532,0.531917572021484,0.489258736371994,0.542926609516144,0.500251352787018,0.550947964191437,0.505336821079254,0.554061055183411,0.522883474826813,0.550344109535217,0.529890716075897,0.523910164833069,0.549245178699493,0.49765732884407,0.452950119972229,0.504896283149719,0.45462629199028,0.517546057701111,0.456896215677261,0.520904719829559,0.463174253702164,0.523768365383148,0.477186262607574,0.526467502117157,0.481619745492935,0.530023634433746,0.541603684425354,0.536376416683197,0.489043533802032,0.541185915470123,0.48948410153389,0.548351407051086,0.497330695390701,0.551451802253723, +0.500148773193359,0.556376516819,0.508014380931854,0.555920779705048,0.518085360527039,0.526819407939911,0.545477628707886,0.511885821819305,0.454332590103149,0.521352887153625,0.458234369754791,0.525204002857208,0.469121873378754,0.526962518692017,0.477791398763657,0.548405826091766,0.492575645446777,0.545399129390717,0.488561183214188,0.534385025501251,0.484613806009293,0.556151211261749,0.504010081291199,0.556372702121735,0.512926459312439,0.553733110427856,0.530294597148895,0.55687028169632,0.523154377937317,0.526600420475006,0.549113512039185,0.500093102455139,0.444840162992477,0.504577219486237,0.445892214775085,0.519342482089996,0.449886411428452,0.522880911827087,0.451051115989685,0.522894859313965,0.462641268968582,0.531413733959198,0.485575973987579,0.529483079910278,0.476831763982773,0.529765367507935,0.545561194419861,0.540170550346375,0.485408872365952,0.544888913631439,0.483961820602417,0.552213966846466,0.496095091104507,0.558836340904236,0.499291718006134,0.559064209461212,0.504205048084259,0.559706091880798,0.509417116641998,0.558993339538574,0.515167236328125,0.551097333431244,0.534239411354065,0.556168913841248,0.529426097869873,0.55952000617981,0.51944375038147,0.496560990810394,0.446763217449188,0.512055456638336,0.443743824958801,0.514750719070435,0.447922855615616,0.524039328098297,0.454395890235901,0.526052236557007,0.457184851169586,0.531242787837982,0.467764735221863,0.534039378166199,0.545599162578583,0.548228621482849,0.48656091094017,0.551606297492981,0.4908247590065,0.5377436876297,0.478315502405167,0.554061055183411,0.534467279911041,0.559668123722076,0.52394562959671,0.532839238643646,0.549503445625305,0.501798391342163,0.440443396568298,0.513463199138641,0.439025491476059,0.523401260375977,0.442669004201889,0.527020752429962,0.44642773270607,0.526471257209778,0.450837165117264,0.526642203330994,0.461527198553085,0.532248020172119,0.473364233970642,0.534914195537567,0.477225482463837,0.53650426864624,0.542193651199341,0.542054355144501,0.481558978557587,0.544226825237274,0.479156136512756, +0.555925846099854,0.489147335290909,0.559037625789642,0.496882528066635,0.562434315681458,0.500586807727814,0.561992466449738,0.506364822387695,0.561989963054657,0.511806070804596,0.56222540140152,0.515755951404572,0.557504534721375,0.534090042114258,0.5593541264534,0.530661702156067,0.561681032180786,0.523241758346558,0.53098326921463,0.553326785564423,0.497269928455353,0.442487955093384,0.519707083702087,0.441080182790756,0.529228627681732,0.458929389715195,0.534997761249542,0.470874011516571,0.539146363735199,0.545328199863434,0.537337303161621,0.549060344696045,0.551249265670776,0.485592424869537,0.549183189868927,0.482117295265198,0.53744238615036,0.473623752593994,0.539965510368347,0.476627945899963,0.55499279499054,0.488094031810761,0.556453764438629,0.492626279592514,0.561660766601563,0.496659725904465,0.562231719493866,0.519540011882782,0.557952702045441,0.537998139858246,0.535924434661865,0.5534508228302,0.527270138263702,0.552379786968231,0.531473219394684,0.444379359483719,0.528757691383362,0.452652603387833,0.532128989696503,0.464123755693436,0.534725546836853,0.465950578451157,0.54064154624939,0.541358053684235,0.544395208358765,0.475689858198166,0.560703694820404,0.484827786684036,0.559546589851379,0.489146053791046,0.562357068061829,0.489276468753815,0.567770421504974,0.496055841445923,0.567190647125244,0.504454433917999,0.567079246044159,0.507939696311951,0.564694106578827,0.511546492576599,0.564580142498016,0.519372880458832,0.564071238040924,0.537866473197937,0.552410185337067,0.538217127323151,0.564282655715942,0.534576177597046,0.565965116024017,0.530104696750641,0.533124089241028,0.558018505573273,0.529313445091248,0.556529700756073,0.531031370162964,0.439529329538345,0.531851768493652,0.455420076847076,0.537420868873596,0.467917919158936,0.540252864360809,0.549435079097748,0.538850128650665,0.553435623645782,0.553924322128296,0.480582892894745,0.557960271835327,0.481089293956757,0.5494464635849,0.477705299854279,0.540459215641022,0.470073908567429,0.569359242916107,0.500132322311401,0.565306842327118, +0.515309035778046,0.527204275131226,0.556944966316223,0.532958209514618,0.443107038736343,0.534228026866913,0.450083911418915,0.534702777862549,0.458150804042816,0.538080453872681,0.458707839250565,0.544578731060028,0.545538365840912,0.546968936920166,0.473084449768066,0.562136769294739,0.481199443340302,0.567118465900421,0.488709300756454,0.571173429489136,0.495696306228638,0.571486115455627,0.503349244594574,0.567883133888245,0.512250423431396,0.570132791996002,0.524601399898529,0.568979442119598,0.532394886016846,0.568170487880707,0.525333166122437,0.535486400127411,0.561429083347321,0.530941486358643,0.561170816421509,0.533734261989594,0.445442795753479,0.534443259239197,0.441835969686508,0.536538422107697,0.453814774751663,0.542554438114166,0.461839914321899,0.542844355106354,0.549257874488831,0.541133999824524,0.553739488124847,0.554339528083801,0.47714701294899,0.543116509914398,0.467300117015839,0.553301453590393,0.474635273218155,0.565415680408478,0.485506355762482,0.565624594688416,0.481114625930786,0.560021340847015,0.477757215499878,0.574530839920044,0.491672992706299,0.576114594936371,0.506071090698242,0.570527791976929,0.508273899555206,0.539438843727112,0.561001181602478,0.528471529483795,0.560925245285034,0.535111665725708,0.448295056819916,0.535323083400726,0.450138360261917,0.542226552963257,0.458700239658356,0.545614361763,0.549675643444061,0.545556128025055,0.463940173387527,0.550169348716736,0.46919783949852,0.565262496471405,0.477471083402634,0.572777450084686,0.489030867815018,0.570411324501038,0.485192388296127,0.572506546974182,0.511928856372833,0.572681248188019,0.521666824817657,0.530757904052734,0.56537139415741,0.536843538284302,0.565075159072876,0.535995364189148,0.446506232023239,0.536418199539185,0.450192779302597,0.540360450744629,0.454143941402435,0.546106815338135,0.458716690540314,0.5487020611763,0.546406865119934,0.544025540351868,0.553435623645782,0.55665248632431,0.472833782434464,0.560706198215485,0.474349170923233,0.553931891918182,0.469939708709717,0.570631563663483,0.477291315793991, +0.574830889701843,0.483199715614319,0.580040454864502,0.503173232078552,0.576010763645172,0.515462219715118,0.572729349136353,0.526749789714813,0.537832319736481,0.442600637674332,0.538608372211456,0.450302928686142,0.543771028518677,0.455020010471344,0.547298133373261,0.552655756473541,0.54861980676651,0.462424784898758,0.551194846630096,0.465941727161407,0.565779030323029,0.473712384700775,0.577867984771729,0.489438503980637,0.575398027896881,0.477462232112885,0.581226646900177,0.509123384952545,0.58068859577179,0.496259659528732,0.575871527194977,0.525748431682587,0.574892938137054,0.530419886112213,0.531411170959473,0.569321274757385,0.541763186454773,0.448441922664642,0.548578023910522,0.453978091478348,0.548729956150055,0.549166679382324,0.548524856567383,0.557170331478119,0.557655155658722,0.470318257808685,0.554068624973297,0.461927264928818,0.572005212306976,0.472928732633591,0.563568651676178,0.469648540019989,0.578644037246704,0.484245419502258,0.577540099620819,0.473321169614792,0.583743453025818,0.505725502967834,0.583880186080933,0.500769138336182,0.57760214805603,0.521735191345215,0.539108395576477,0.568364202976227,0.543092489242554,0.446955651044846,0.550903677940369,0.458328038454056,0.549950361251831,0.553754687309265,0.557383000850677,0.46282485127449,0.567724883556366,0.468981355428696,0.578531384468079,0.478477567434311,0.581055760383606,0.48847508430481,0.584176421165466,0.511594593524933,0.583609282970428,0.495648205280304,0.581141829490662,0.51580023765564,0.578727602958679,0.52706378698349,0.531718790531158,0.573086321353912,0.543226659297943,0.441790401935577,0.551366984844208,0.452657669782639,0.54666006565094,0.44645556807518,0.551549315452576,0.549268007278442,0.553976237773895,0.457164585590363,0.571098744869232,0.469530791044235,0.564881443977356,0.462188065052032,0.58132541179657,0.481245011091232,0.581101357936859,0.473247736692429,0.586794495582581,0.503813862800598,0.586756527423859,0.507291495800018,0.587183177471161,0.500641286373138,0.583537101745605,0.522175788879395,0.578992187976837, +0.530519902706146,0.539726197719574,0.573777556419373,0.552988708019257,0.553316652774811,0.561035394668579,0.462022215127945,0.568095803260803,0.462269067764282,0.575455009937286,0.469230771064758,0.580627858638763,0.477567315101624,0.584397971630096,0.488240897655487,0.578701019287109,0.469152271747589,0.583806753158569,0.51825624704361,0.587632596492767,0.511488258838654,0.586158990859985,0.49374920129776,0.584042251110077,0.528450012207031,0.577502131462097,0.534434378147125,0.538038671016693,0.576995730400085,0.546567618846893,0.442019551992416,0.551635384559631,0.446456849575043,0.554015457630157,0.452579170465469,0.55228865146637,0.557329833507538,0.561439216136932,0.458229303359985,0.564742207527161,0.457873553037643,0.584157466888428,0.478720635175705,0.581483662128448,0.468067318201065,0.592045843601227,0.502041459083557,0.592929482460022,0.507952392101288,0.58689957857132,0.515367269515991,0.593002915382385,0.511535108089447,0.591277360916138,0.496255874633789,0.586531162261963,0.521185755729675,0.581176042556763,0.534388780593872,0.531187117099762,0.577335000038147,0.555776476860046,0.442227154970169,0.55651581287384,0.448712855577469,0.555504262447357,0.556879103183746,0.561406314373016,0.453756541013718,0.571655750274658,0.459585160017014,0.575610756874084,0.46565306186676,0.56730329990387,0.457002550363541,0.585807025432587,0.482580631971359,0.589032769203186,0.487916797399521,0.57817816734314,0.462017148733139,0.586618542671204,0.470892995595932,0.591491341590881,0.516566157341003,0.589874625205994,0.492649078369141,0.585886776447296,0.534340679645538,0.531589686870575,0.581398844718933,0.559378206729889,0.451118230819702,0.557169020175934,0.553823053836823,0.554890275001526,0.56084418296814,0.564178824424744,0.451319515705109,0.580911457538605,0.461403131484985,0.5865438580513,0.465692311525345,0.596421122550964,0.500799536705017,0.59962785243988,0.512247860431671,0.588768184185028,0.519304513931274,0.593619465827942,0.492742747068405,0.586850225925446,0.527289092540741,0.581189930438995,0.538163959980011, +0.538604557514191,0.58052533864975,0.559087038040161,0.446549266576767,0.562098801136017,0.450123161077499,0.570401191711426,0.453647673130035,0.57597029209137,0.461279064416885,0.56730580329895,0.450361162424088,0.589034020900726,0.47449854016304,0.589298605918884,0.481005758047104,0.59225469827652,0.488727033138275,0.584010601043701,0.461872816085815,0.578085720539093,0.458259671926498,0.589254319667816,0.466374695301056,0.595885574817657,0.496155858039856,0.599205017089844,0.507905542850494,0.600283622741699,0.524605214595795,0.591985046863556,0.526085138320923,0.589311301708221,0.527520775794983,0.585561394691467,0.538305759429932,0.536856234073639,0.584723353385925,0.559306025505066,0.442110687494278,0.572948336601257,0.457760870456696,0.564673840999603,0.446539133787155,0.591420412063599,0.485018938779831,0.583050966262817,0.457964718341827,0.588549137115479,0.458283722400665,0.58632355928421,0.458645820617676,0.601552128791809,0.503030180931091,0.605157673358917,0.508216977119446,0.600117802619934,0.516152203083038,0.599603772163391,0.49287948012352,0.597374379634857,0.488775134086609,0.589042901992798,0.536704301834106,0.528212010860443,0.584675252437592,0.562065899372101,0.44620743393898,0.57368391752243,0.455307394266129,0.570071995258331,0.449286341667175,0.567662835121155,0.446121364831924,0.591645777225494,0.476701378822327,0.591829359531403,0.472478032112122,0.592761099338531,0.481056392192841,0.594515800476074,0.484544187784195,0.57831996679306,0.454086989164352,0.592457294464111,0.4624083340168,0.602648496627808,0.499775320291519,0.605320990085602,0.513012528419495,0.594885468482971,0.527301788330078,0.59228128194809,0.536727070808411,0.59852135181427,0.483698517084122,0.587897181510925,0.542112588882446,0.535367429256439,0.589321434497833,0.561926662921906,0.442260086536407,0.573233187198639,0.450999230146408,0.564932107925415,0.442052453756332,0.592071175575256,0.466613948345184,0.583102881908417,0.454985827207565,0.586643874645233,0.454024940729141,0.589393556118011,0.45336788892746,0.606749057769775, +0.5044025182724,0.608173310756683,0.509091734886169,0.605585634708405,0.530595898628235,0.595662772655487,0.534234344959259,0.600439369678497,0.489294201135635,0.603948652744293,0.495181053876877,0.600196301937103,0.484954357147217,0.529428660869598,0.590043008327484,0.569958090782166,0.441082715988159,0.572917997837067,0.446308732032776,0.567290663719177,0.439183741807938,0.594362616539001,0.472829967737198,0.595048785209656,0.477525532245636,0.594833552837372,0.468669921159744,0.59482342004776,0.481051325798035,0.597238898277283,0.480656325817108,0.57870227098465,0.450385212898254,0.593930900096893,0.454175591468811,0.594733536243439,0.465516328811646,0.608022630214691,0.500983059406281,0.609017729759216,0.52057933807373,0.60445761680603,0.534268498420715,0.595614671707153,0.537858903408051,0.604228436946869,0.48898783326149,0.60713267326355,0.496478676795959,0.603252410888672,0.481441259384155,0.5266472697258,0.588706135749817,0.534426748752594,0.600077271461487,0.575656294822693,0.444637626409531,0.565528392791748,0.437253087759018,0.599629104137421,0.477088779211044,0.581360876560211,0.448930591344833,0.584054887294769,0.446280866861343,0.594491720199585,0.449493944644928,0.594672739505768,0.461108148097992,0.610781252384186,0.504183530807495,0.611259758472443,0.51522421836853,0.60840368270874,0.533510208129883,0.606059074401855,0.537627220153809,0.603582799434662,0.485820323228836,0.607863128185272,0.492919981479645,0.602759897708893,0.476670980453491,0.527908205986023,0.592990279197693,0.538303256034851,0.593344748020172,0.526039600372314,0.599603772163391,0.572229266166687,0.434088110923767,0.561753213405609,0.438032954931259,0.597822546958923,0.473647803068161,0.597147762775421,0.463533788919449,0.597503542900085,0.477074831724167,0.578279435634613,0.445708632469177,0.587151527404785,0.440583914518356,0.597318708896637,0.451524615287781,0.598116278648376,0.456355631351471,0.612773895263672,0.497226893901825,0.613129675388336,0.500432372093201,0.610733151435852,0.509515881538391,0.614010751247406,0.517634689807892, +0.609982371330261,0.485979825258255,0.613552510738373,0.489286601543427,0.605657756328583,0.477153331041336,0.606264173984528,0.481144994497299,0.539646446704865,0.599844336509705,0.533781111240387,0.604384183883667,0.574900507926941,0.438620358705521,0.564320623874664,0.434988230466843,0.572071015834808,0.43091806769371,0.600458323955536,0.468553453683853,0.601512908935547,0.473417401313782,0.579698622226715,0.440762430429459,0.583872616291046,0.437994956970215,0.593920767307281,0.444574326276779,0.615389466285706,0.501426160335541,0.613953828811646,0.512108623981476,0.615445137023926,0.523939311504364,0.605499505996704,0.472761601209641,0.537586688995361,0.603168845176697,0.527008056640625,0.60357391834259,0.574934720993042,0.433803260326386,0.566979229450226,0.430020481348038,0.602520644664764,0.461784213781357,0.578469336032867,0.431891620159149,0.587561666965485,0.435760498046875,0.598603665828705,0.448006421327591,0.601747095584869,0.455578327178955,0.614034831523895,0.492714911699295,0.616678237915039,0.496607810258865,0.615241348743439,0.505650818347931,0.619013965129852,0.519015848636627,0.616630136966705,0.514414012432098,0.608942985534668,0.481214642524719,0.614055097103119,0.485888659954071,0.608341693878174,0.473202168941498,0.608317613601685,0.477145731449127,0.531713783740997,0.611096441745758,0.524820446968079,0.606574356555939,0.535196483135223,0.611656010150909,0.561384797096252,0.430775016546249,0.570402443408966,0.423600643873215,0.574265003204346,0.427250504493713,0.603040933609009,0.469330787658691,0.58486133813858,0.432946175336838,0.594065070152283,0.435449063777924,0.597399711608887,0.437193602323532,0.616769373416901,0.492624998092651,0.616116106510162,0.488733351230621,0.619034230709076,0.497081309556961,0.621490240097046,0.50120210647583,0.616664290428162,0.508263826370239,0.620268583297729,0.527811944484711,0.611040771007538,0.484021335840225,0.608407497406006,0.469361156225204,0.528569042682648,0.611835777759552,0.526010453701019,0.611278772354126,0.562621653079987,0.425157815217972,0.561351895332336, +0.434145092964172,0.579496085643768,0.424912214279175,0.605664074420929,0.468383818864822,0.581898927688599,0.426218718290329,0.589916408061981,0.426561802625656,0.600384891033173,0.440381348133087,0.604960203170776,0.454726308584213,0.605633735656738,0.459362357854843,0.619426667690277,0.493609964847565,0.620471119880676,0.51571923494339,0.627763211727142,0.528680443763733,0.619650781154633,0.533186078071594,0.619460880756378,0.511284470558167,0.611419320106506,0.477578699588776,0.613874077796936,0.481074094772339,0.618797481060028,0.488968819379807,0.536373853683472,0.61497038602829,0.52999073266983,0.6158287525177,0.55847430229187,0.427454322576523,0.558480620384216,0.43347156047821,0.567246317863464,0.419092446565628,0.573197782039642,0.42157506942749,0.577274262905121,0.423170208930969,0.594661355018616,0.430085062980652,0.600220322608948,0.427980959415436,0.606067955493927,0.447564601898193,0.621871292591095,0.496760994195938,0.619362115859985,0.508091628551483,0.626777052879334,0.52107310295105,0.625969350337982,0.535968780517578,0.611104071140289,0.473205983638763,0.608151793479919,0.463084369897842,0.538025975227356,0.611478805541992,0.527467608451843,0.615448951721191,0.558456540107727,0.422091573476791,0.558397054672241,0.431099116802216,0.564471304416656,0.418274611234665,0.570097327232361,0.418611377477646,0.583254814147949,0.418548077344894,0.586672961711884,0.417787224054337,0.592872500419617,0.422809392213821,0.597600996494293,0.429243177175522,0.605045020580292,0.439973711967468,0.608298599720001,0.452883005142212,0.608250498771667,0.456803798675537,0.621771275997162,0.492552846670151,0.624115943908691,0.500163972377777,0.622048556804657,0.50415313243866,0.623898148536682,0.512373208999634,0.626035153865814,0.515645802021027,0.633750081062317,0.534606516361237,0.541540384292603,0.603781580924988,0.531915068626404,0.618786096572876,0.555956244468689,0.421905487775803,0.561624050140381,0.422563791275024,0.555799245834351,0.429779946804047,0.565792977809906,0.413577795028687,0.577221095561981,0.419145613908768, +0.589387238025665,0.414528548717499,0.602928280830383,0.427475839853287,0.596007108688354,0.420802801847458,0.608237862586975,0.446934133768082,0.624394416809082,0.49622169137001,0.625656604766846,0.508660078048706,0.630114197731018,0.522183358669281,0.634023547172546,0.543297588825226,0.535147130489349,0.619231700897217,0.572044432163239,0.416002154350281,0.582550883293152,0.411663621664047,0.586161494255066,0.408897429704666,0.591617941856384,0.412738442420959,0.606010973453522,0.432043522596359,0.598694801330566,0.419086128473282,0.608675897121429,0.435160398483276,0.611140787601471,0.449419260025024,0.610993921756744,0.454090774059296,0.626559257507324,0.500018417835236,0.625189483165741,0.495149403810501,0.628848195075989,0.50357586145401,0.628235459327698,0.511493325233459,0.631563723087311,0.515925586223602,0.642637372016907,0.53802216053009,0.642227172851563,0.54401159286499,0.552936851978302,0.426954239606857,0.575209438800812,0.411487638950348,0.578397154808044,0.410030484199524,0.587460398674011,0.406821191310883,0.605364084243774,0.424857765436172,0.601931929588318,0.417436540126801,0.594615817070007,0.41199404001236,0.610888838768005,0.443940043449402,0.610931873321533,0.457898885011673,0.621420621871948,0.489175200462341,0.629907846450806,0.508084058761597,0.632603108882904,0.519798219203949,0.636245369911194,0.527600526809692,0.552976071834564,0.421518087387085,0.582216680049896,0.407503575086594,0.592407882213593,0.406549006700516,0.597236394882202,0.409250646829605,0.611157238483429,0.437480956315994,0.61387026309967,0.442813336849213,0.629810333251953,0.500000655651093,0.632032155990601,0.503940463066101,0.63627701997757,0.508172631263733,0.63542628288269,0.516630709171295,0.642620921134949,0.5290766954422,0.648240625858307,0.542206287384033,0.632900655269623,0.508091628551483,0.546142280101776,0.430643349885941,0.575456261634827,0.404281616210938,0.58088356256485,0.400797605514526,0.583629548549652,0.399137884378433,0.589192271232605,0.401390105485916,0.605052649974823,0.408426463603973,0.60829484462738, +0.425176799297333,0.599536716938019,0.409136682748795,0.594736039638519,0.406937658786774,0.610925555229187,0.431339651346207,0.613880395889282,0.43845197558403,0.637391090393066,0.521087050437927,0.637874722480774,0.525263547897339,0.645238995552063,0.534400165081024,0.648067176342011,0.538139939308167,0.578181982040405,0.401930660009384,0.58640331029892,0.399989902973175,0.593656182289124,0.399725317955017,0.608325183391571,0.41139143705368,0.597954213619232,0.400846987962723,0.613614499568939,0.434124827384949,0.632509410381317,0.499877870082855,0.634889483451843,0.503717601299286,0.638348162174225,0.512098491191864,0.641177654266357,0.515581250190735,0.64345520734787,0.523120224475861,0.64930659532547,0.524041831493378,0.654223740100861,0.543371021747589,0.575044810771942,0.393539667129517,0.58091014623642,0.393101662397385,0.587517380714417,0.395696938037872,0.600515305995941,0.402000308036804,0.603201746940613,0.400959670543671,0.611253440380096,0.413662612438202,0.613866448402405,0.42760244011879,0.616443991661072,0.434150159358978,0.628722846508026,0.496516674757004,0.637664556503296,0.503497362136841,0.639806628227234,0.507283926010132,0.643064022064209,0.518925964832306,0.646902501583099,0.520216047763824,0.649385094642639,0.53459769487381,0.648911595344543,0.529056429862976,0.656722784042358,0.537695586681366,0.648784995079041,0.546996772289276,0.578149020671844,0.394132167100906,0.58345353603363,0.390814006328583,0.59388279914856,0.395274102687836,0.610462188720703,0.404204398393631,0.597897231578827,0.393924534320831,0.641828417778015,0.510643839836121,0.643981873989105,0.513073325157166,0.65165376663208,0.525869965553284,0.64905846118927,0.519052565097809,0.662186801433563,0.542839288711548,0.578149020671844,0.385477840900421,0.581860959529877,0.385028421878815,0.58753764629364,0.388344049453735,0.603748679161072,0.392643362283707,0.613887965679169,0.414747565984726,0.61657190322876,0.426618754863739,0.646412551403046,0.516095221042633,0.656054317951202,0.53457236289978,0.655730247497559,0.530999720096588, +0.652291834354401,0.51977926492691,0.663032472133636,0.538655161857605,0.661244928836823,0.547814607620239,0.575614511966705,0.381817877292633,0.591890096664429,0.385149955749512,0.610567271709442,0.395063936710358,0.616659224033356,0.421473771333694,0.61392217874527,0.406879425048828,0.595129787921906,0.387042611837387,0.645411133766174,0.510080516338348,0.647007584571838,0.512509942054749,0.662761569023132,0.534536898136139,0.655016243457794,0.523121476173401,0.649612963199615,0.514148116111755,0.652263939380646,0.515429317951202,0.669661223888397,0.543034255504608,0.668772518634796,0.552673518657684,0.578823804855347,0.380434155464172,0.572611570358276,0.384180217981339,0.588328897953033,0.384096652269363,0.607121229171753,0.387906014919281,0.616665542125702,0.411097705364227,0.619295001029968,0.421011686325073,0.657707750797272,0.523912727832794,0.659024357795715,0.517890393733978,0.655588448047638,0.513944327831268,0.670360028743744,0.53896152973175,0.663857936859131,0.556415796279907,0.577933847904205,0.37639182806015,0.573014199733734,0.395631104707718,0.571765899658203,0.379872053861618,0.58375358581543,0.38032653927803,0.588718831539154,0.379546672105789,0.595455169677734,0.383789032697678,0.611124336719513,0.38769206404686,0.613862633705139,0.397694677114487,0.619450747966766,0.412234574556351,0.616532623767853,0.399615168571472,0.648764789104462,0.510405838489532,0.651937365531921,0.511022388935089,0.666660845279694,0.535177528858185,0.671699464321136,0.552919089794159,0.676013946533203,0.539431214332581,0.657084882259369,0.552144348621368,0.581487476825714,0.376793146133423,0.574887871742249,0.376755177974701,0.57260400056839,0.40473610162735,0.568903505802155,0.388349115848541,0.567681849002838,0.383891552686691,0.593094050884247,0.380003690719604,0.60307389497757,0.383600383996964,0.608698666095734,0.38367760181427,0.619045615196228,0.400635570287704,0.663108468055725,0.524955868721008,0.663404703140259,0.519784331321716,0.657520353794098,0.5145583152771,0.666232883930206,0.529913544654846,0.672914803028107, +0.53462427854538,0.676598846912384,0.545467495918274,0.67500114440918,0.535886466503143,0.656917750835419,0.560887277126312,0.580016374588013,0.372824281454086,0.574734687805176,0.372905284166336,0.570545494556427,0.376342445611954,0.565482795238495,0.379949271678925,0.590203821659088,0.374492853879929,0.600139319896698,0.380037873983383,0.613994300365448,0.38736417889595,0.612106740474701,0.383980184793472,0.618734180927277,0.388144016265869,0.662933766841888,0.515861034393311,0.660814464092255,0.514113962650299,0.677003979682922,0.55234432220459,0.682771801948547,0.535224318504334,0.680503189563751,0.541973352432251,0.66111832857132,0.56117844581604,0.652757704257965,0.553430557250977,0.584924638271332,0.372686266899109,0.565804362297058,0.376248776912689,0.595555186271667,0.37634751200676,0.604494333267212,0.379851788282394,0.609592437744141,0.380588591098785,0.616642773151398,0.388057947158813,0.667602717876434,0.520156502723694,0.665093541145325,0.515700221061707,0.67367947101593,0.531412422657013,0.678989052772522,0.554800391197205,0.67682671546936,0.531106054782867,0.680455029010773,0.538513422012329,0.670625925064087,0.559583306312561,0.649716794490814,0.560912549495697,0.577454030513763,0.368259102106094,0.583887755870819,0.369085788726807,0.567855298519135,0.372706532478333,0.561836719512939,0.375985443592072,0.59360933303833,0.371954530477524,0.591862261295319,0.368687003850937,0.599741816520691,0.376352578401566,0.60315614938736,0.377052664756775,0.615488171577454,0.38434100151062,0.618922829627991,0.384637236595154,0.666068315505981,0.518885493278503,0.669223189353943,0.526602923870087,0.676548182964325,0.560783445835114,0.685111343860626,0.530893385410309,0.685448110103607,0.54417872428894,0.684746742248535,0.549964308738709,0.580789923667908,0.368707269430161,0.572848320007324,0.368750303983688,0.588416218757629,0.366815865039825,0.564445972442627,0.372449547052383,0.597927629947662,0.373110383749008,0.668061017990112,0.516115486621857,0.671162664890289,0.523418962955475,0.675667107105255,0.527871489524841, +0.682637631893158,0.561294913291931,0.684126436710358,0.527315676212311,0.68725597858429,0.540618717670441,0.690134823322296,0.551394879817963,0.683726370334625,0.556385397911072,0.580983579158783,0.361080944538116,0.577781915664673,0.362852066755295,0.583580136299133,0.362221598625183,0.586664080619812,0.363263517618179,0.561753213405609,0.372314065694809,0.594710767269135,0.368950337171555,0.597055375576019,0.369809955358505,0.590782344341278,0.364077538251877,0.601259708404541,0.373858571052551,0.670879125595093,0.519576668739319,0.689220786094666,0.52711695432663,0.690248787403107,0.536694169044495,0.692459166049957,0.546285331249237,0.594436049461365,0.365813195705414,0.600041806697845,0.370960742235184,0.673968136310577,0.520894587039948,0.676616549491882,0.522975862026215,0.688045918941498,0.523535430431366,0.692312300205231,0.541679620742798,0.6933833360672,0.550442814826965,0.689717054367065,0.557714700698853,0.577794551849365,0.35825777053833,0.58347886800766,0.356998115777969,0.586778044700623,0.357779234647751,0.5892214179039,0.358642637729645,0.597592115402222,0.367645084857941,0.592788994312286,0.361265778541565,0.673666834831238,0.517332077026367,0.690631091594696,0.52154278755188,0.693021297454834,0.53291392326355,0.699432253837585,0.542343020439148,0.697272479534149,0.545953631401062,0.573297739028931,0.363900303840637,0.580821573734283,0.355263710021973,0.595658957958221,0.363788902759552,0.676910281181335,0.51804107427597,0.680538594722748,0.520527482032776,0.69545704126358,0.519989430904388,0.696095108985901,0.534533143043518,0.69942718744278,0.538809657096863,0.699143588542938,0.552217721939087,0.694586038589478,0.55808436870575,0.577374279499054,0.354035705327988,0.581221580505371,0.348834991455078,0.586990714073181,0.354250907897949,0.590372204780579,0.356625914573669,0.675550580024719,0.515264749526978,0.693327665328979,0.519194364547729,0.687200248241425,0.516538321971893,0.696315407752991,0.522869527339935,0.698829650878906,0.531265616416931,0.703536629676819,0.547310769557953,0.70440000295639, +0.538523495197296,0.57456374168396,0.355308026075363,0.586207091808319,0.346547365188599,0.678725719451904,0.514664649963379,0.680308222770691,0.517367541790009,0.694325268268585,0.516221821308136,0.690489292144775,0.517444789409637,0.697548449039459,0.527167558670044,0.699637353420258,0.519464015960693,0.708972752094269,0.543353259563446,0.70368093252182,0.55744880437851,0.705579936504364,0.55386608839035,0.5778768658638,0.349423676729202,0.571329176425934,0.357922285795212,0.569340288639069,0.345634579658508,0.583810567855835,0.342384785413742,0.589675903320313,0.352887451648712,0.698211848735809,0.515896439552307,0.683693468570709,0.514930486679077,0.702726364135742,0.523611426353455,0.703015029430389,0.526845991611481,0.708395481109619,0.548728704452515,0.704192399978638,0.530671834945679,0.70900571346283,0.539876878261566,0.579125106334686,0.343578606843948,0.56970739364624,0.354854792356491,0.570002377033234,0.351168215274811,0.587984502315521,0.341626435518265,0.589046716690063,0.348286837339401,0.701331257820129,0.516496539115906,0.703853130340576,0.519600749015808,0.714173436164856,0.550974547863007,0.713846862316132,0.544449627399445,0.575876593589783,0.341969519853592,0.566314578056335,0.358098268508911,0.564496576786041,0.350680828094482,0.581408977508545,0.338938742876053,0.585650026798248,0.338253855705261,0.706066071987152,0.523011326789856,0.706547141075134,0.526881456375122,0.714292466640472,0.548493206501007,0.711474359035492,0.534262180328369,0.714381098747253,0.535110414028168,0.714403867721558,0.553934454917908,0.570926547050476,0.341431498527527,0.576867878437042,0.339548945426941,0.565465092658997,0.354292690753937,0.563157200813293,0.34499779343605,0.588328897953033,0.337442338466644,0.708967685699463,0.527571439743042,0.722941696643829,0.549404740333557,0.70997542142868,0.530832648277283,0.717280209064484,0.538280427455902,0.719391882419586,0.545302927494049,0.718034744262695,0.558580636978149,0.565228343009949,0.34086686372757,0.573492705821991,0.338196873664856,0.561272144317627,0.358259052038193, +0.561422765254974,0.351739197969437,0.561220228672028,0.35519152879715,0.584232151508331,0.33595860004425,0.578122437000275,0.336644768714905,0.587631344795227,0.334835678339005,0.709210753440857,0.523437976837158,0.722665727138519,0.553420424461365,0.713492333889008,0.530933916568756,0.718320846557617,0.534573614597321,0.714565932750702,0.562239348888397,0.569354176521301,0.337848722934723,0.57473087310791,0.336062431335449,0.560732781887054,0.340856730937958,0.559141457080841,0.345425695180893,0.581081092357636,0.335848450660706,0.711535155773163,0.526942253112793,0.728243708610535,0.548333704471588,0.723473429679871,0.544166028499603,0.716973841190338,0.530747830867767,0.719979286193848,0.538567841053009,0.720262885093689,0.557853937149048,0.565258741378784,0.338070273399353,0.552744388580322,0.355372577905655,0.560601115226746,0.337109386920929,0.554629445075989,0.351522713899612,0.725858569145203,0.545107960700989,0.728256344795227,0.556116998195648,0.714674770832062,0.527348637580872,0.720176815986633,0.531004786491394,0.722412526607513,0.534286260604858,0.720457851886749,0.567131102085114,0.557291865348816,0.340184479951859,0.554788947105408,0.348626106977463,0.730211019515991,0.545102894306183,0.731284618377686,0.553572356700897,0.723921597003937,0.538384258747101,0.716252207756042,0.569090902805328,0.548823654651642,0.351786017417908,0.554881393909454,0.345110446214676,0.557027220726013,0.33608141541481,0.549944043159485,0.347917169332504,0.727598011493683,0.561993718147278,0.725552201271057,0.53462678194046,0.712064325809479,0.564538359642029,0.54704362154007,0.354753524065018,0.550566911697388,0.344045758247375,0.554642140865326,0.337924689054489,0.730950355529785,0.538778007030487,0.733277261257172,0.544520497322083,0.731669485569,0.562578618526459,0.727010607719421,0.565801858901978,0.544122993946075,0.350407361984253,0.550098478794098,0.340606063604355,0.736908137798309,0.543940722942352,0.73638653755188,0.551648080348969,0.726142168045044,0.570047974586487,0.541451752185822,0.355175077915192,0.544663608074188, +0.347855120897293,0.546575248241425,0.344141960144043,0.548836290836334,0.337365120649338,0.735720634460449,0.537884175777435,0.739716112613678,0.551040351390839,0.539751529693604,0.351399898529053,0.538508355617523,0.347734868526459,0.545248448848724,0.340057879686356,0.742860853672028,0.537990510463715,0.738186776638031,0.560016274452209,0.73365706205368,0.565465092658997,0.537846207618713,0.353612840175629,0.542421519756317,0.344310343265533,0.543548226356506,0.33635738492012,0.743969857692719,0.545492827892303,0.735923171043396,0.562740683555603,0.745045900344849,0.555294096469879,0.536181449890137,0.350950479507446,0.538095593452454,0.345087677240372,0.539984464645386,0.341013699769974,0.542113900184631,0.338336139917374,0.749152779579163,0.5461106300354,0.745370030403137,0.541644215583801,0.746251165866852,0.560639142990112,0.533210158348084,0.356927216053009,0.535419285297394,0.346676498651505,0.754333257675171,0.541613817214966,0.750750482082367,0.548984408378601,0.748157739639282,0.556441068649292,0.535114228725433,0.342711389064789,0.534338176250458,0.33896279335022,0.753796458244324,0.545434594154358,0.751130282878876,0.560011208057404,0.536320686340332,0.33606493473053,0.758024871349335,0.551643013954163,0.532230257987976,0.34247213602066,0.531328916549683,0.335977584123611,0.760805010795593,0.548812210559845,0.532670855522156,0.345842212438583,0.53095668554306,0.339186877012253,0.760379612445831,0.555149793624878,0.75504469871521,0.559499740600586,0.763258457183838,0.553896427154541,0.305339336395264,0.84527063369751,0.308968931436539,0.840690314769745,0.308751195669174,0.844956696033478,0.311545222997665,0.844862997531891,0.306996524333954,0.848901510238647,0.313498646020889,0.839168548583984,0.310286849737167,0.848823010921478,0.315178632736206,0.842847526073456,0.31284287571907,0.84736967086792,0.309567749500275,0.85324639081955,0.317813158035278,0.84011298418045,0.313551843166351,0.852094352245331,0.307057291269302,0.852347552776337,0.317613124847412,0.843867957592011,0.316625654697418,0.849268674850464, +0.312790960073471,0.856570899486542,0.306409120559692,0.856054365634918,0.320584416389465,0.844146430492401,0.320336282253265,0.852899491786957,0.316354721784592,0.856153130531311,0.310846418142319,0.859700441360474,0.307872593402863,0.860070109367371,0.321164220571518,0.848443210124969,0.323332875967026,0.842617154121399,0.315130531787872,0.859819412231445,0.323979794979095,0.837781071662903,0.31976529955864,0.856168270111084,0.324373513460159,0.851063847541809,0.318343609571457,0.859852313995361,0.309870332479477,0.863262891769409,0.312251657247543,0.863313555717468,0.324627995491028,0.847587406635284,0.326169967651367,0.839852213859558,0.322873324155808,0.856211364269257,0.316907972097397,0.863635122776031,0.313767045736313,0.866483569145203,0.325362265110016,0.844067931175232,0.322860658168793,0.858983874320984,0.329632461071014,0.845420062541962,0.326343417167664,0.85589736700058,0.320638835430145,0.864488363265991,0.311328738927841,0.867440700531006,0.329560279846191,0.841958820819855,0.329833745956421,0.8491091132164,0.328812092542648,0.855684697628021,0.330412298440933,0.838376045227051,0.326966255903244,0.860082745552063,0.325539499521255,0.863146424293518,0.334097594022751,0.840510547161102,0.335040748119354,0.848552107810974,0.322309941053391,0.867825567722321,0.334972411394119,0.845030128955841,0.331566870212555,0.856315135955811,0.332274585962296,0.852783024311066,0.329624861478806,0.860070109367371,0.333643108606339,0.837578475475311,0.328224658966064,0.868433237075806,0.31972861289978,0.867539405822754,0.338127255439758,0.843827426433563,0.337024569511414,0.846835434436798,0.335193961858749,0.852909624576569,0.329564094543457,0.863976955413818,0.322579622268677,0.87168937921524,0.319248795509338,0.870899379253387,0.339310944080353,0.839940845966339,0.332231521606445,0.860090315341949,0.328108191490173,0.870319545269012,0.332654356956482,0.86406809091568,0.345002859830856,0.844576895236969,0.341494798660278,0.848572373390198,0.338974207639694,0.852955222129822,0.332340389490128,0.871896982192993,0.327991724014282, +0.872205853462219,0.318777829408646,0.874760627746582,0.348484307527542,0.841761291027069,0.33532053232193,0.860513210296631,0.33863490819931,0.856662034988403,0.326023101806641,0.875674664974213,0.321930170059204,0.875922799110413,0.335397779941559,0.868412971496582,0.348722338676453,0.845508635044098,0.345905512571335,0.848435640335083,0.344677478075027,0.851909518241882,0.342122703790665,0.858285009860992,0.337619572877884,0.864607393741608,0.332854390144348,0.876315295696259,0.319109529256821,0.878743469715118,0.338088005781174,0.870605647563934,0.353124171495438,0.844214797019959,0.328374058008194,0.879865109920502,0.322974592447281,0.87990814447403,0.349987059831619,0.849023044109344,0.351963251829147,0.841277718544006,0.34655749797821,0.856510102748871,0.340422481298447,0.867777466773987,0.340611129999161,0.872679352760315,0.333984911441803,0.878908038139343,0.319394379854202,0.882169246673584,0.354677557945251,0.848521709442139,0.354813009500504,0.83966988325119,0.350598514080048,0.852600753307343,0.3445103764534,0.860685348510742,0.332255572080612,0.883181989192963,0.328923493623734,0.884235322475433,0.322811275720596,0.883574485778809,0.358822405338287,0.847820341587067,0.354730725288391,0.852327287197113,0.358400821685791,0.843943893909454,0.353424221277237,0.856978535652161,0.350637763738632,0.860411882400513,0.343534290790558,0.868263602256775,0.338347524404526,0.879662573337555,0.336418151855469,0.883782088756561,0.320837616920471,0.886544466018677,0.357808351516724,0.851020753383636,0.347995638847351,0.864108622074127,0.343386173248291,0.873400986194611,0.340941548347473,0.876482367515564,0.332875907421112,0.888803005218506,0.327080219984055,0.888825833797455,0.324025362730026,0.89001327753067,0.35791090130806,0.855712532997131,0.353849589824677,0.8605055809021,0.351231515407562,0.865627765655518,0.340406030416489,0.883123755455017,0.334993928670883,0.888916969299316,0.329981863498688,0.892162978649139,0.320276767015457,0.892188251018524,0.357155084609985,0.85934591293335,0.346049815416336,0.873866856098175, +0.344378709793091,0.879837274551392,0.337918370962143,0.889008104801178,0.332684755325317,0.895993828773499,0.327184021472931,0.897951066493988,0.322428971529007,0.897237062454224,0.356235980987549,0.862655222415924,0.352693736553192,0.868448436260223,0.348759055137634,0.886268496513367,0.341044098138809,0.889623403549194,0.33638396859169,0.896568596363068,0.318713277578354,0.898378968238831,0.348466604948044,0.878396570682526,0.346809417009354,0.893661916255951,0.356542348861694,0.867374837398529,0.351332813501358,0.877287566661835,0.351137846708298,0.891585648059845,0.344611644744873,0.899437367916107,0.340479463338852,0.896634459495544,0.351184695959091,0.882592082023621,0.349969327449799,0.904562056064606,0.353823006153107,0.878766238689423,0.351145446300507,0.899652540683746,0.344636976718903,0.904293715953827,0.340465545654297,0.902435183525085,0.354240775108337,0.907119393348694,0.34740823507309,0.908843636512756,0.336343467235565,0.903116285800934,0.352952003479004,0.912168145179749,0.341854333877563,0.908572733402252,0.350184559822083,0.914249420166016,0.720038831233978,0.909300684928894,0.720538854598999,0.905429303646088,0.72250497341156,0.908191680908203,0.806226193904877,0.910457789897919,0.809226632118225,0.906606674194336,0.80884176492691,0.910727441310883,0.143950790166855,0.34329628944397,0.143924206495285,0.340197145938873,0.146661281585693,0.340642780065537,0.140727579593658,0.343579858541489,0.141327664256096,0.339832544326782,0.143201321363449,0.336095333099365,0.137418270111084,0.344136923551559,0.146011829376221,0.336389034986496,0.140154078602791,0.336328268051147,0.136199131608009,0.340166747570038,0.14375202357769,0.329795747995377,0.140917479991913,0.330838948488235,0.134826794266701,0.344076126813889,0.133387356996536,0.336196601390839,0.133024021983147,0.340045213699341,0.141133964061737,0.323111325502396,0.136069998145103,0.329795747995377,0.131659284234047,0.344238191843033,0.13487996160984,0.323830395936966,0.144011557102203,0.322584688663483,0.127597987651825,0.340521246194839,0.131251633167267, +0.329076677560806,0.138058871030808,0.320245116949081,0.14110104739666,0.315920501947403,0.125766098499298,0.335973799228668,0.124602645635605,0.344055891036987,0.13368234038353,0.319860249757767,0.144002690911293,0.316376268863678,0.122675806283951,0.339690744876862,0.129046276211739,0.324630528688431,0.127580255270004,0.346658766269684,0.12879940867424,0.320700883865356,0.133970975875854,0.316234469413757,0.138119637966156,0.304658234119415,0.143501371145248,0.311838954687119,0.122422613203526,0.331831485033035,0.124853312969208,0.348269104957581,0.130445197224617,0.346901834011078,0.118523359298706,0.344147026538849,0.130131229758263,0.317267507314682,0.134365975856781,0.307767510414124,0.141060531139374,0.307899177074432,0.119017094373703,0.333026558160782,0.122204862535,0.325673699378967,0.119991905987263,0.347742438316345,0.132859438657761,0.347570270299912,0.118051141500473,0.340207278728485,0.126854851841927,0.316315472126007,0.128355041146278,0.31235545873642,0.130690798163414,0.309570282697678,0.141451731324196,0.304334133863449,0.13166181743145,0.295279771089554,0.119612112641335,0.321379452943802,0.120533749461174,0.350699812173843,0.114945665001869,0.347843736410141,0.112787149846554,0.340126246213913,0.127977773547173,0.304830402135849,0.138310804963112,0.299432218074799,0.115403957664967,0.33620673418045,0.117863774299622,0.328367710113525,0.115968585014343,0.352087318897247,0.113221384584904,0.34428882598877,0.119515895843506,0.316183835268021,0.124325394630432,0.311697155237198,0.140832647681236,0.29971581697464,0.126037016510963,0.301599591970444,0.135433197021484,0.294874668121338,0.114677280187607,0.332125186920166,0.116759829223156,0.323050558567047,0.115290015935898,0.356928497552872,0.108337193727493,0.347752571105957,0.106644563376904,0.340561747550964,0.108625836670399,0.335872530937195,0.138165205717087,0.289344817399979,0.129867911338806,0.287947148084641,0.132416352629662,0.289962619543076,0.113973386585712,0.327871441841125,0.113140366971493,0.356908231973648,0.110166549682617,0.352269649505615, +0.107061073184013,0.344167292118073,0.11946652084589,0.311960488557816,0.116552211344242,0.314087331295013,0.120297014713287,0.307605475187302,0.127035886049271,0.288727015256882,0.13547371327877,0.285394906997681,0.109833598136902,0.329390645027161,0.113741710782051,0.313347995281219,0.111497104167938,0.359176874160767,0.103226386010647,0.35146951675415,0.10088050365448,0.344207793474197,0.100745044648647,0.340298414230347,0.103440336883068,0.336865067481995,0.12141615152359,0.28935495018959,0.129861578345299,0.283845335245132,0.132323920726776,0.284240335226059,0.138160154223442,0.283875733613968,0.105550743639469,0.32761824131012,0.105778627097607,0.320599615573883,0.111171744763851,0.317652374505997,0.109829798340797,0.364321857690811,0.102668084204197,0.360108643770218,0.102916218340397,0.356027096509933,0.102811142802238,0.332560688257217,0.116471186280251,0.308790445327759,0.118900626897812,0.298784047365189,0.12116801738739,0.284473270177841,0.127181470394135,0.283845335245132,0.132422670722008,0.276614010334015,0.135153412818909,0.278173714876175,0.102840259671211,0.324812829494476,0.111137568950653,0.306461006402969,0.106790155172348,0.36430162191391,0.098971389234066,0.348886907100677,0.0994486659765244,0.352279752492905,0.0975572764873505,0.340632647275925,0.100087992846966,0.33670300245285,0.100133568048477,0.331163018941879,0.113639160990715,0.307575076818466,0.11891708523035,0.291238725185394,0.118823401629925,0.28594183921814,0.128974109888077,0.277039378881454,0.10287444293499,0.317510575056076,0.106607846915722,0.313499927520752,0.107999175786972,0.305792570114136,0.107421882450581,0.368889570236206,0.100352585315704,0.368960469961166,0.0964419394731522,0.360888510942459,0.0974724590778351,0.344916760921478,0.0969673246145248,0.356675297021866,0.0971901416778564,0.335578799247742,0.116481311619282,0.297518044710159,0.113749302923679,0.298713147640228,0.116395227611065,0.289121985435486,0.118893027305603,0.275631606578827,0.132582187652588,0.27204629778862,0.0996803492307663,0.322655558586121,0.1098323315382, +0.300819754600525,0.103109918534756,0.368180602788925,0.0975863933563232,0.366155028343201,0.0928212031722069,0.352624118328094,0.122307404875755,0.276137977838516,0.115712858736515,0.276512712240219,0.12985397875309,0.272086828947067,0.135363578796387,0.272188097238541,0.0995195657014847,0.317520707845688,0.102932676672935,0.309469014406204,0.10444300621748,0.307261109352112,0.105240575969219,0.302014857530594,0.10565709322691,0.37190768122673,0.0986219793558121,0.377994567155838,0.0965875312685966,0.373234450817108,0.0922527760267258,0.368018567562103,0.0921628922224045,0.360554277896881,0.0909006968140602,0.356634765863419,0.113550543785095,0.29233255982399,0.11078941822052,0.296181172132492,0.11623191088438,0.283875733613968,0.122447930276394,0.272026062011719,0.11750803142786,0.272137463092804,0.126813068985939,0.270415723323822,0.135442063212395,0.268126785755157,0.0999525338411331,0.313145458698273,0.105720393359661,0.295188635587692,0.102939009666443,0.377447664737701,0.107509233057499,0.371320277452469,0.0909905806183815,0.374328255653381,0.0885459557175636,0.353110253810883,0.111091993749142,0.290793091058731,0.11385565251112,0.286600142717361,0.109277822077274,0.276532977819443,0.11182626336813,0.271529793739319,0.127533420920372,0.262728601694107,0.137736037373543,0.271722227334976,0.100094325840473,0.304739266633987,0.100095592439175,0.308770179748535,0.102246508002281,0.299411982297897,0.105569735169411,0.375695526599884,0.10752822458744,0.373082518577576,0.103209927678108,0.382572412490845,0.092449001967907,0.378105998039246,0.0884598642587662,0.372383713722229,0.0880066379904747,0.360432744026184,0.0904170870780945,0.348907172679901,0.0866013914346695,0.356553763151169,0.110081732273102,0.282103329896927,0.111075535416603,0.265848010778427,0.123149290680885,0.262698233127594,0.138299405574799,0.275894910097122,0.138133555650711,0.268329352140427,0.130174279212952,0.260814428329468,0.100052550435066,0.300637453794479,0.102455399930477,0.29070195555687,0.105172216892242,0.382369846105576,0.0975838676095009, +0.38105320930481,0.0894625335931778,0.380860775709152,0.0809259563684464,0.368129968643188,0.0865773409605026,0.375290423631668,0.106395162642002,0.287825614213943,0.106772430241108,0.27452763915062,0.107957392930985,0.282194495201111,0.108194135129452,0.267731815576553,0.114486113190651,0.266951948404312,0.124136760830879,0.25685441493988,0.135381296277046,0.26409587264061,0.127665087580681,0.255983412265778,0.0972939506173134,0.300698220729828,0.100089259445667,0.296069771051407,0.104182213544846,0.384689152240753,0.10044626891613,0.385296821594238,0.0966052561998367,0.385631024837494,0.0930338948965073,0.38573232293129,0.0802714377641678,0.372353315353394,0.0807550475001335,0.376971662044525,0.0844960510730743,0.358984440565109,0.118986710906029,0.263154000043869,0.109143629670143,0.262627333402634,0.132567003369331,0.260095357894897,0.0971850752830505,0.296566039323807,0.100094325840473,0.288808017969131,0.102226257324219,0.284726470708847,0.0873761773109436,0.386664092540741,0.0828831717371941,0.384537220001221,0.0755480229854584,0.371948212385178,0.105272226035595,0.284311234951019,0.105206400156021,0.280239790678024,0.104591123759747,0.271428495645523,0.105325400829315,0.264561772346497,0.114159487187862,0.261006861925125,0.124543145298958,0.25260066986084,0.114748172461987,0.252843767404556,0.132516354322433,0.256125211715698,0.135281279683113,0.260044723749161,0.0973965004086494,0.29205909371376,0.103894829750061,0.388517498970032,0.0989169552922249,0.389216333627701,0.0953759774565697,0.389125168323517,0.0857544466853142,0.389307469129562,0.0743276104331017,0.377366632223129,0.0749555379152298,0.366458863019943,0.0783306732773781,0.385560125112534,0.10337071120739,0.278153449296951,0.109748773276806,0.258079886436462,0.121502235531807,0.252701967954636,0.127147287130356,0.252155065536499,0.130878165364265,0.252722233533859,0.0991752147674561,0.284240335226059,0.0951898768544197,0.289101749658585,0.0919312164187431,0.389358103275299,0.0838605239987373,0.387535095214844,0.0728084146976471,0.383261114358902, +0.0723691210150719,0.370185941457748,0.0701713562011719,0.373366117477417,0.0807575732469559,0.388142764568329,0.0993866324424744,0.2762291431427,0.0992942154407501,0.26884588599205,0.105220325291157,0.259052187204361,0.121649093925953,0.245399728417397,0.127768889069557,0.248164653778076,0.117387764155865,0.249926909804344,0.135239511728287,0.25613534450531,0.0996512249112129,0.280776590108871,0.0675507560372353,0.37864276766777,0.0780774727463722,0.389368236064911,0.0716753527522087,0.387069195508957,0.0991410315036774,0.272147595882416,0.100106984376907,0.260561227798462,0.109190471470356,0.252225965261459,0.124430470168591,0.244265392422676,0.110052607953548,0.248448237776756,0.135210394859314,0.252225965261459,0.0892979502677917,0.28844341635704,0.0649010390043259,0.38523605465889,0.0631020665168762,0.37282931804657,0.0598294772207737,0.376991897821426,0.0745770037174225,0.389479637145996,0.0680837407708168,0.387980729341507,0.0878813117742538,0.272623598575592,0.0894587337970734,0.267083615064621,0.104943074285984,0.256266981363297,0.121227517724037,0.240923181176186,0.118437267839909,0.24208790063858,0.131535217165947,0.244954094290733,0.132501170039177,0.248397588729858,0.116007834672928,0.241672649979591,0.137600585818291,0.252276599407196,0.0622462518513203,0.383210450410843,0.0648427978157997,0.36969980597496,0.0709334835410118,0.389945536851883,0.0880104377865791,0.276836812496185,0.0946151167154312,0.26032829284668,0.104280956089497,0.252469033002853,0.0987612381577492,0.256226480007172,0.125233113765717,0.240001544356346,0.107881434261799,0.245916247367859,0.138205721974373,0.26005482673645,0.135273680090904,0.248245671391487,0.0624564066529274,0.387899696826935,0.0653378069400787,0.38914543390274,0.0542274639010429,0.373852252960205,0.0633033588528633,0.368271768093109,0.0564442165195942,0.381711512804031,0.067763440310955,0.39006707072258,0.085063211619854,0.275864541530609,0.0859519392251968,0.268147051334381,0.0873774439096451,0.260237157344818,0.118634767830372,0.236497282981873,0.125400215387344, +0.23634535074234,0.116024293005466,0.236466899514198,0.131476983428001,0.2398901283741,0.108509369194508,0.239262208342552,0.0591698959469795,0.385509490966797,0.0541717633605003,0.377032428979874,0.0568911097943783,0.370449274778366,0.0553086213767529,0.379371970891953,0.0814361497759819,0.27211719751358,0.0856101214885712,0.263478070497513,0.0931187123060226,0.256398648023605,0.100753903388977,0.250747263431549,0.112998574972153,0.237044185400009,0.135195195674896,0.244255274534225,0.101640097796917,0.243262737989426,0.0599332861602306,0.389459401369095,0.0562214031815529,0.384476453065872,0.0519689358770847,0.381286144256592,0.0792548432946205,0.276117742061615,0.0807208642363548,0.267296314239502,0.0824413448572159,0.260510593652725,0.0886282399296761,0.256317645311356,0.0965811982750893,0.253107070922852,0.114326596260071,0.233043655753136,0.120328664779663,0.232385337352753,0.129412144422531,0.236375734210014,0.134960994124413,0.240335762500763,0.101693272590637,0.234542593359947,0.110227316617966,0.232841089367867,0.0566113255918026,0.388112366199493,0.0535235740244389,0.385813325643539,0.0766418352723122,0.272826164960861,0.0778306052088737,0.266668379306793,0.0819298848509789,0.256479680538177,0.0852910876274109,0.255487143993378,0.0964229479432106,0.246604949235916,0.1257154494524,0.232618272304535,0.132397353649139,0.235950365662575,0.0995157659053802,0.235069245100021,0.0753239393234253,0.276624143123627,0.0779673308134079,0.260459959506989,0.0771862119436264,0.25635814666748,0.081100657582283,0.246868282556534,0.0899474024772644,0.249450892210007,0.0968508571386337,0.241470083594322,0.118871502578259,0.228789925575256,0.122560605406761,0.228475958108902,0.133020222187042,0.232679054141045,0.113099850714207,0.228729158639908,0.137279018759727,0.238938108086586,0.0986954048275948,0.228739276528358,0.109171479940414,0.228435441851616,0.0537970289587975,0.389469534158707,0.078581340610981,0.281303226947784,0.0705574825406075,0.277576148509979,0.07538091391325,0.266840547323227,0.0734211578965187,0.261087894439697, +0.078866183757782,0.252327233552933,0.12866647541523,0.227584704756737,0.138869106769562,0.244974359869957,0.096816673874855,0.236659318208694,0.0937162637710571,0.232780322432518,0.0508751198649406,0.388142764568329,0.0751935467123985,0.283551633358002,0.068215399980545,0.272623598575592,0.0676532983779907,0.266131609678268,0.0751163214445114,0.251577764749527,0.0841858834028244,0.244852811098099,0.0777533799409866,0.245946630835533,0.0896321758627892,0.244599625468254,0.121155351400375,0.222976490855217,0.116992771625519,0.223898127675056,0.127679005265236,0.224667862057686,0.140588313341141,0.235281929373741,0.140017360448837,0.226774469017982,0.113191001117229,0.221477553248405,0.142941802740097,0.24449834227562,0.0929427444934845,0.24201700091362,0.0930275619029999,0.228860810399055,0.104303747415543,0.225012198090553,0.0704232901334763,0.284777104854584,0.0610144436359406,0.27254256606102,0.0696864798665047,0.261725962162018,0.0704296231269836,0.256894916296005,0.0700447559356689,0.253076702356339,0.0802347213029861,0.237570837140083,0.077736921608448,0.238512739539146,0.130966782569885,0.216626286506653,0.142688602209091,0.239545777440071,0.141382098197937,0.217173188924789,0.108837261795998,0.221669986844063,0.141520082950592,0.249055907130241,0.0926123186945915,0.236689701676369,0.0890017077326775,0.233256340026855,0.0940669402480125,0.225062847137451,0.0975104346871376,0.225326165556908,0.0627577155828476,0.2767254114151,0.062966600060463,0.267691284418106,0.0619765967130661,0.259913057088852,0.0700472891330719,0.248346954584122,0.0749137625098228,0.243657723069191,0.0832325890660286,0.237601220607758,0.0874179527163506,0.240345895290375,0.118541084229946,0.220393866300583,0.126214250922203,0.215370416641235,0.137382835149765,0.216535121202469,0.147353768348694,0.225346431136131,0.150085777044296,0.222095355391502,0.109727248549461,0.217618823051453,0.146009296178818,0.240011662244797,0.086969792842865,0.223371475934982,0.0896549597382545,0.22278405725956,0.0996866747736931,0.220363482832909,0.0569088347256184, +0.27239066362381,0.0667506530880928,0.257117748260498,0.0670139789581299,0.252610802650452,0.0771507695317268,0.234735012054443,0.0805119723081589,0.231666252017021,0.117613106966019,0.213972762227058,0.126724451780319,0.209273397922516,0.139291942119598,0.208767011761665,0.149809792637825,0.230390131473541,0.1485995054245,0.213466361165047,0.114035420119762,0.21334482729435,0.146887883543968,0.243272855877876,0.0874496027827263,0.236375734210014,0.0857746973633766,0.231190234422684,0.0939403399825096,0.217902392148972,0.0533767193555832,0.257948219776154,0.0577481873333454,0.276968479156494,0.0602130703628063,0.256510078907013,0.0669886544346809,0.243404522538185,0.0724754631519318,0.239525526762009,0.0833921059966087,0.232040986418724,0.123420208692551,0.212808042764664,0.145172476768494,0.206964239478111,0.15185184776783,0.213010609149933,0.10091595351696,0.217193439602852,0.103536553680897,0.213648661971092,0.150675728917122,0.233317106962204,0.14536489546299,0.246878400444984,0.149221107363701,0.239383742213249,0.0861329734325409,0.217446640133858,0.0826249122619629,0.22250047326088,0.0910298302769661,0.216879472136498,0.0520550236105919,0.27302873134613,0.0433981753885746,0.258130520582199,0.0643300712108612,0.254707306623459,0.0692940279841423,0.237884804606438,0.0640426948666573,0.242665186524391,0.0769418776035309,0.22795943915844,0.122128903865814,0.20652873814106,0.124550744891167,0.206184387207031,0.135452196002007,0.205222234129906,0.155585244297981,0.221902936697006,0.145209193229675,0.202021807432175,0.148233637213707,0.206913590431213,0.156406879425049,0.216666787862778,0.152453184127808,0.208908796310425,0.106276161968708,0.208584696054459,0.156641080975533,0.224991947412491,0.0919071584939957,0.212949842214584,0.0580380968749523,0.252570301294327,0.0487115420401096,0.268552184104919,0.0497306659817696,0.276958346366882,0.0498154871165752,0.253654003143311,0.0668899118900299,0.231180116534233,0.0727767646312714,0.229012742638588,0.0780572146177292,0.222561240196228,0.080671489238739,0.222713157534599, +0.111690804362297,0.205596968531609,0.127766355872154,0.205009549856186,0.141622632741928,0.203642278909683,0.149987041950226,0.201221704483032,0.158640086650848,0.211005285382271,0.0974952429533005,0.210914120078087,0.15067321062088,0.237935438752174,0.0838706493377686,0.214985549449921,0.0888535901904106,0.211390137672424,0.0476164594292641,0.273423701524735,0.0439767353236675,0.264855474233627,0.0380164496600628,0.253947705030441,0.0591433085501194,0.246918916702271,0.0696459710597992,0.229579895734787,0.0613575279712677,0.237732887268066,0.0754454806447029,0.219330430030823,0.0725666135549545,0.221953570842743,0.113745510578156,0.200593769550323,0.123045481741428,0.202690243721008,0.136153548955917,0.197514876723289,0.141178265213966,0.197261676192284,0.163566052913666,0.217942908406258,0.160318791866302,0.222176387906075,0.147162616252899,0.197332575917244,0.162272214889526,0.211653470993042,0.160278275609016,0.204806983470917,0.104261964559555,0.205627351999283,0.09234519302845,0.209232896566391,0.0501079298555851,0.249734476208687,0.0396913550794125,0.258079886436462,0.0441577732563019,0.249916777014732,0.0558200813829899,0.248022854328156,0.0669873878359795,0.223411992192268,0.0617917627096176,0.226956769824028,0.0694611370563507,0.222085237503052,0.0778901055455208,0.217618823051453,0.118680343031883,0.201262205839157,0.128272756934166,0.199621483683586,0.13262777030468,0.196127355098724,0.152754500508308,0.196664124727249,0.0983295366168022,0.20532351732254,0.0861886814236641,0.206873089075089,0.0927591696381569,0.205576702952385,0.0373619310557842,0.258100152015686,0.0379012450575829,0.247870936989784,0.0587065406143665,0.237277120351791,0.0722830295562744,0.2177504748106,0.0787902250885963,0.213901862502098,0.103904955089092,0.20192052423954,0.117292813956738,0.195752620697021,0.122942931950092,0.197261676192284,0.140160411596298,0.192450910806656,0.146556198596954,0.19375741481781,0.166775345802307,0.213162526488304,0.163582518696785,0.221801653504372,0.154334455728531,0.193483963608742,0.1589515209198, +0.197464242577553,0.160375759005547,0.2005735039711,0.16648542881012,0.204584166407585,0.0834642648696899,0.207440242171288,0.0886915400624275,0.204482898116112,0.0550351664423943,0.242239817976952,0.0484899915754795,0.24578458070755,0.0402901694178581,0.269200354814529,0.0343032963573933,0.253745138645172,0.0342032834887505,0.248579889535904,0.0408864505589008,0.244083091616631,0.0693522617220879,0.217396005988121,0.0620221719145775,0.222297921776772,0.058843269944191,0.226349085569382,0.0749631375074387,0.213729694485664,0.110642559826374,0.196451440453529,0.114168345928192,0.196036204695702,0.128690525889397,0.196066588163376,0.130613580346107,0.189807519316673,0.143015220761299,0.192592710256577,0.168055266141891,0.217274472117424,0.166971579194069,0.208544194698334,0.16691081225872,0.221112951636314,0.0973572507500649,0.201626822352409,0.0845947936177254,0.19986455142498,0.0922464430332184,0.201626822352409,0.0349426232278347,0.239566043019295,0.0560403652489185,0.231838434934616,0.0662948936223984,0.217811241745949,0.0719855204224586,0.213506877422333,0.0797207280993462,0.207419991493225,0.106885097920895,0.197545260190964,0.123911418020725,0.193868815898895,0.118418283760548,0.188511148095131,0.137152418494225,0.185462638735771,0.173380017280579,0.213101759552956,0.161004960536957,0.193109229207039,0.164202854037285,0.196502089500427,0.171056926250458,0.200695052742958,0.174467504024506,0.204067647457123,0.10375177115202,0.194790467619896,0.0896207764744759,0.197636410593987,0.0504624061286449,0.231848552823067,0.0437615178525448,0.241176381707191,0.0315586291253567,0.241875201463699,0.0401914231479168,0.223401859402657,0.0522892326116562,0.230896532535553,0.0685584843158722,0.21369931101799,0.0586521029472351,0.221872553229332,0.0617398582398891,0.218044191598892,0.055888444185257,0.225397065281868,0.0746453702449799,0.20951646566391,0.1216199696064,0.190131619572639,0.130207195878029,0.185695588588715,0.140436396002769,0.184551119804382,0.170469507575035,0.220201432704926,0.17307111620903,0.217507407069206, +0.176857694983482,0.213111892342567,0.0956317037343979,0.197504743933678,0.0802790299057961,0.20220410823822,0.0901550278067589,0.193848565220833,0.0482861697673798,0.23137255012989,0.0428373441100121,0.232952505350113,0.029863465577364,0.23059269785881,0.0620664842426777,0.213871479034424,0.0726109221577644,0.207278206944466,0.0691686943173409,0.208128944039345,0.107220590114594,0.188997283577919,0.112851716578007,0.182231828570366,0.125797748565674,0.189726501703262,0.125948399305344,0.185614556074142,0.137317001819611,0.183366164565086,0.14402548968792,0.189989820122719,0.176971644163132,0.217021271586418,0.16728301346302,0.193169996142387,0.171915262937546,0.196623623371124,0.178311049938202,0.201292589306831,0.179297268390656,0.209364548325539,0.100409559905529,0.193737164139748,0.0856227800250053,0.194162532687187,0.0953455939888954,0.19389919936657,0.0504168309271336,0.222865089774132,0.0426145270466805,0.222409322857857,0.0321030020713806,0.22384749352932,0.0621551014482975,0.210498884320259,0.0587356612086296,0.214398130774498,0.0555327013134956,0.221781387925148,0.0783230736851692,0.201576173305511,0.0634135007858276,0.205840036273003,0.104288555681705,0.189736619591713,0.120966717600822,0.183315515518188,0.129559010267258,0.181310191750526,0.14550669491291,0.186141207814217,0.146985366940498,0.191043123602867,0.140808597207069,0.179608702659607,0.180159404873848,0.213101759552956,0.181907743215561,0.204087898135185,0.0842365175485611,0.192886412143707,0.0935516804456711,0.19021263718605,0.0475860759615898,0.222622007131577,0.0410484969615936,0.218216359615326,0.0576557703316212,0.210660934448242,0.067314013838768,0.202011674642563,0.0725957304239273,0.200492486357689,0.109266430139542,0.182596430182457,0.102646559476852,0.187265411019325,0.132510021328926,0.178443983197212,0.184808120131493,0.215633735060692,0.1752600222826,0.192714244127274,0.180335372686386,0.197281926870346,0.184858769178391,0.206569239497185,0.184386551380157,0.212554857134819,0.0512498542666435,0.218104958534241,0.0443502031266689, +0.217760607600212,0.0321409851312637,0.218894928693771,0.0581089928746223,0.206346437335014,0.0539654046297073,0.21476274728775,0.0794320851564407,0.191883742809296,0.0638224110007286,0.202062323689461,0.103474520146847,0.182231828570366,0.110300742089748,0.178838968276978,0.128627240657806,0.177107095718384,0.142893686890602,0.178666800260544,0.17242419719696,0.189209967851639,0.184713169932365,0.196714773774147,0.18780979514122,0.209050580859184,0.188164263963699,0.206022337079048,0.0931149125099182,0.186272874474525,0.097785159945488,0.186120957136154,0.0475430302321911,0.217730224132538,0.0410003885626793,0.214782997965813,0.0534349530935287,0.206751555204391,0.060187753289938,0.202163591980934,0.0508662573993206,0.210549518465996,0.0701764225959778,0.198203578591347,0.0767380520701408,0.191539391875267,0.0655276998877525,0.197788327932358,0.10094253718853,0.177583113312721,0.0968280658125877,0.182231828570366,0.143724173307419,0.174372553825378,0.146589115262032,0.182434394955635,0.17858324944973,0.187508478760719,0.167390614748001,0.188521280884743,0.179704919457436,0.189351767301559,0.188520014286041,0.202994093298912,0.188388347625732,0.212747275829315,0.0817918926477432,0.186364024877548,0.0448325462639332,0.209232896566391,0.0472683124244213,0.209273397922516,0.0335285104811192,0.213891744613647,0.0534159652888775,0.202518075704575,0.102266766130924,0.170615091919899,0.147861436009407,0.177755281329155,0.137008100748062,0.175344839692116,0.14929074048996,0.185077786445618,0.17721851170063,0.18453086912632,0.162224113941193,0.189270734786987,0.184409335255623,0.191559657454491,0.18920111656189,0.193058595061302,0.191510275006294,0.206113487482071,0.190016403794289,0.204553782939911,0.191315323114395,0.212605491280556,0.0871546268463135,0.181887477636337,0.042172696441412,0.209212630987167,0.0350780822336674,0.202426925301552,0.0502623803913593,0.20312574505806,0.0612081401050091,0.197950378060341,0.0739098265767097,0.189746752381325,0.0973787754774094,0.177866697311401,0.0982042029500008,0.165287807583809, +0.108246043324471,0.173997819423676,0.151812598109245,0.181522876024246,0.168274283409119,0.185270205140114,0.183242097496986,0.185493022203445,0.184935986995697,0.188257947564125,0.190879821777344,0.200624153017998,0.194500550627708,0.209243014454842,0.0792282596230507,0.18219131231308,0.0465758144855499,0.203085243701935,0.0541666969656944,0.198426395654678,0.070516973733902,0.187022343277931,0.0665594860911369,0.189250484108925,0.0945644751191139,0.177886947989464,0.101843923330307,0.164619356393814,0.11391768604517,0.175557523965836,0.193009212613106,0.196491956710815,0.0802689045667648,0.178302198648453,0.0425322391092777,0.201930657029152,0.0506168566644192,0.197666794061661,0.0584229603409767,0.190577238798141,0.0636907517910004,0.189696118235588,0.0998423919081688,0.160233974456787,0.105500109493732,0.16508524119854,0.109341122210026,0.171708911657333,0.18755279481411,0.187407210469246,0.192163527011871,0.191427990794182,0.193928331136703,0.200421586632729,0.197642743587494,0.209040462970734,0.087896503508091,0.178768083453178,0.0403078943490982,0.195286735892296,0.0561897531151772,0.189807519316673,0.0672735050320625,0.180094838142395,0.0943809077143669,0.165115624666214,0.0955544784665108,0.160689726471901,0.117371305823326,0.17126327753067,0.195070251822472,0.193119361996651,0.19992658495903,0.196340039372444,0.0909450054168701,0.174402937293053,0.0827907547354698,0.173369899392128,0.0468606613576412,0.191053256392479,0.0365795493125916,0.189574584364891,0.0526956170797348,0.188723832368851,0.0587938949465752,0.187356561422348,0.0630324333906174,0.178808584809303,0.110095657408237,0.163515418767929,0.111449003219604,0.166412010788918,0.117852382361889,0.175679057836533,0.195444986224175,0.184925854206085,0.201615422964096,0.199297398328781,0.203770145773888,0.208108693361282,0.0701359137892723,0.174939721822739,0.0797131359577179,0.174818187952042,0.0544464811682701,0.183801665902138,0.0448452048003674,0.184632152318954,0.0629412829875946,0.175344839692116,0.0868520587682724,0.16643226146698,0.110064007341862, +0.160264357924461,0.120894558727741,0.170523941516876,0.113715127110481,0.163505285978317,0.192404076457024,0.18438908457756,0.198273211717606,0.186738759279251,0.200815320014954,0.189999952912331,0.206112220883369,0.193058595061302,0.0789016336202621,0.171020209789276,0.0411231890320778,0.179406136274338,0.106795214116573,0.156891748309135,0.118760101497173,0.166665211319923,0.123363241553307,0.172691315412521,0.187473028898239,0.181654542684555,0.193297863006592,0.176985561847687,0.204167664051056,0.190567120909691,0.209244281053543,0.193808048963547,0.208087176084518,0.207875743508339,0.0691053941845894,0.172002628445625,0.0525804124772549,0.17551700770855,0.0325714200735092,0.181988760828972,0.100058875977993,0.157134816050529,0.115008965134621,0.159980773925781,0.12216055393219,0.162695050239563,0.188907399773598,0.174868822097778,0.196207106113434,0.178373083472252,0.201876223087311,0.184054851531982,0.205717235803604,0.183376282453537,0.209239214658737,0.187407210469246,0.209021463990211,0.200684919953346,0.0623589269816875,0.172103896737099,0.038797564804554,0.171951979398727,0.0430107824504375,0.176003158092499,0.0592787712812424,0.170959442853928,0.094520166516304,0.158117234706879,0.112826399505138,0.156749963760376,0.124351978302002,0.16607777774334,0.185249954462051,0.175041005015373,0.198797330260277,0.181431725621223,0.210398867726326,0.183872550725937,0.213295459747314,0.185432255268097,0.214217096567154,0.19652234017849,0.212373808026314,0.203946113586426,0.0506966151297092,0.171192392706871,0.119133569300175,0.156861364841461,0.184700518846512,0.180418938398361,0.213495478034019,0.179679587483406,0.211981356143951,0.192157208919525,0.212340906262398,0.208047926425934,0.0421790257096291,0.171891212463379,0.0462352633476257,0.168012216687202,0.125244498252869,0.161023944616318,0.180560722947121,0.176246225833893,0.21447029709816,0.182383745908737,0.218253076076508,0.185189187526703,0.217711240053177,0.205009549856186,0.216873154044151,0.19269397854805,0.215108349919319,0.208139076828957,0.0421410463750362, +0.167688131332397,0.0503535307943821,0.167789399623871,0.123478449881077,0.154197722673416,0.181944444775581,0.171891212463379,0.217285856604576,0.188997283577919,0.219551980495453,0.199803784489632,0.0390444323420525,0.16820465028286,0.0502573177218437,0.163566052913666,0.0554554760456085,0.164467439055443,0.126787751913071,0.151615098118782,0.218491077423096,0.181958377361298,0.223423391580582,0.186434924602509,0.222671389579773,0.204229697585106,0.220802783966064,0.208250477910042,0.221721887588501,0.192592710256577,0.0362693816423416,0.168255284428597,0.0401496440172195,0.163799002766609,0.0457111410796642,0.164244621992111,0.0532450564205647,0.16395092010498,0.0581507720053196,0.164497822523117,0.131185799837112,0.158826187252998,0.224408328533173,0.183153480291367,0.223013207316399,0.201171055436134,0.0357262715697289,0.164295271039009,0.0487913005053997,0.159666806459427,0.0525778792798519,0.160092175006866,0.0552453212440014,0.159980773925781,0.0581925511360168,0.15947437286377,0.228406324982643,0.185371488332748,0.228378474712372,0.190678521990776,0.22670990228653,0.19857831299305,0.22428172826767,0.20702500641346,0.032487865537405,0.167931199073792,0.0334892645478249,0.160426393151283,0.0440590232610703,0.160669475793839,0.0539122335612774,0.160031408071518,0.0620373636484146,0.159930124878883,0.231082633137703,0.180591106414795,0.227598622441292,0.205698236823082,0.0272023528814316,0.164953589439392,0.033812090754509,0.171688660979271,0.031719408929348,0.156172662973404,0.0400648228824139,0.156061261892319,0.053036168217659,0.15543332695961,0.0567759051918983,0.156101778149605,0.0608802475035191,0.15550422668457,0.234419777989388,0.194425851106644,0.225021064281464,0.178909868001938,0.235457897186279,0.182677462697029,0.234265327453613,0.199196115136147,0.0283657982945442,0.169065520167351,0.0263338815420866,0.160132691264153,0.0481000691652298,0.155018091201782,0.0408864505589008,0.152222782373428,0.0657340586185455,0.155615627765656,0.235827565193176,0.188207313418388,0.218650594353676,0.179679587483406, +0.234632477164268,0.178474366664886,0.233044922351837,0.205900803208351,0.0255527663975954,0.167951449751854,0.0308711938560009,0.171911478042603,0.022271316498518,0.160365626215935,0.0241335891187191,0.15642586350441,0.0474075712263584,0.150369361042976,0.0581634305417538,0.153883755207062,0.0657074749469757,0.161013826727867,0.0625437647104263,0.152060732245445,0.23954451084137,0.186384275555611,0.24037754535675,0.198163062334061,0.240228146314621,0.183376282453537,0.229765996336937,0.176043659448624,0.23743537068367,0.204452514648438,0.230274930596352,0.206619888544083,0.0259806700050831,0.171577244997025,0.0219231694936752,0.164477571845055,0.0284493528306484,0.174342170357704,0.0298571363091469,0.152111366391182,0.0259996596723795,0.15216201543808,0.0535577572882175,0.146308064460754,0.0602156035602093,0.153590053319931,0.0595522224903107,0.151675865054131,0.0696029290556908,0.155696660280228,0.0681875497102737,0.151969581842422,0.244421109557152,0.189858168363571,0.241038382053375,0.194405600428581,0.243522256612778,0.203510612249374,0.242096751928329,0.177390679717064,0.232011869549751,0.174514353275299,0.236176982522011,0.207116156816483,0.0220067240297794,0.1690554022789,0.0204179063439369,0.156446129083633,0.0152134159579873,0.159160405397415,0.0367833748459816,0.148039937019348,0.022430831566453,0.152972251176834,0.0427411273121834,0.143148154020309,0.0513435378670692,0.138347506523132,0.0565543584525585,0.148991972208023,0.065918892621994,0.147239834070206,0.247621536254883,0.198314979672432,0.24347922205925,0.173147082328796,0.246699899435043,0.178281933069229,0.23812660574913,0.173987701535225,0.24603146314621,0.207693442702293,0.0226485822349787,0.172012746334076,0.0153222912922502,0.164740890264511,0.0157881751656532,0.153326719999313,0.029517849907279,0.145892813801765,0.022306764498353,0.142256900668144,0.04619475081563,0.141396015882492,0.0577633790671825,0.133384823799133,0.0622829683125019,0.141355514526367,0.0731122568249702,0.150288343429565,0.0705612823367119,0.148222237825394,0.24459582567215, +0.186060190200806,0.248054504394531,0.195570319890976,0.247682303190231,0.204067647457123,0.247819036245346,0.184844836592674,0.239678710699081,0.170139089226723,0.0173402801156044,0.168579384684563,0.0177479293197393,0.151777148246765,0.0118129635229707,0.15883632004261,0.0116800339892507,0.152941852807999,0.0257148128002882,0.144272357225418,0.0386697016656399,0.143907740712166,0.0179188381880522,0.1445052921772,0.0436374507844448,0.135329395532608,0.049138180911541,0.132128968834877,0.0755264982581139,0.152232900261879,0.0652694404125214,0.142398685216904,0.248069703578949,0.188602298498154,0.24933822453022,0.192896544933319,0.251698046922684,0.197099626064301,0.249753475189209,0.176884278655052,0.250604212284088,0.181725427508354,0.235779464244843,0.1685591340065,0.253186851739883,0.208503678441048,0.010392521508038,0.164933323860168,0.0141385896131396,0.145933330059052,0.01138252671808,0.148586854338646,0.0259642135351896,0.136848583817482,0.0286696366965771,0.137162551283836,0.0380253121256828,0.13605859875679,0.0176555123180151,0.137273952364922,0.0622677765786648,0.134043142199516,0.0532830357551575,0.127257436513901,0.0762354582548141,0.146146014332771,0.0699498131871223,0.144444525241852,0.25395655632019,0.200350701808929,0.245785847306252,0.169541537761688,0.251222014427185,0.173278748989105,0.252571552991867,0.185462638735771,0.231842219829559,0.170848041772842,0.252931118011475,0.205495685338974,0.0129814734682441,0.169318720698357,0.00862393155694008,0.159454122185707,0.00670722126960754,0.152638018131256,0.00418916484341025,0.149133756756783,0.0219130404293537,0.136585250496864,0.0413396768271923,0.132078319787979,0.0450616888701916,0.130083128809929,0.0595522224903107,0.128685474395752,0.0787433832883835,0.149022355675697,0.252295583486557,0.18991893529892,0.253890722990036,0.193514347076416,0.255232691764832,0.196654006838799,0.258131802082062,0.178048998117447,0.256807565689087,0.185037270188332,0.228381007909775,0.17126327753067,0.257258266210556,0.208908796310425,0.0170009955763817,0.174544736742973, +0.00741617614403367,0.144150823354721,0.0281037371605635,0.131541550159454,0.0339703410863876,0.132078319787979,0.0101760365068913,0.136494100093842,0.0200089905411005,0.132189735770226,0.025176765397191,0.132199853658676,0.0637996271252632,0.123803809285164,0.0485102497041225,0.11973237991333,0.0587154030799866,0.123834192752838,0.0749757960438728,0.142894953489304,0.0700941309332848,0.132230252027512,0.258235603570938,0.200370952486992,0.25792670249939,0.20454366505146,0.25214871764183,0.169744089245796,0.261593014001846,0.175577774643898,0.256683498620987,0.189159333705902,0.0123763298615813,0.172600165009499,0.00189645471982658,0.151523947715759,0.00379037763923407,0.145386427640915,0.0173086319118738,0.132169470191002,0.0409029088914394,0.128260090947151,0.0444451533257961,0.120238773524761,0.0544224269688129,0.118851251900196,0.0801739543676376,0.142793670296669,0.259000271558762,0.192562311887741,0.260390341281891,0.196745157241821,0.24843430519104,0.166462644934654,0.264821290969849,0.179061785340309,0.264550387859344,0.185452505946159,0.263798385858536,0.192339509725571,0.260205507278442,0.208645477890968,0.0140018621459603,0.177289396524429,0.00646541686728597,0.136980250477791,0.00383848510682583,0.137638553977013,0.0256856940686703,0.123550608754158,0.032744862139225,0.126953586935997,0.0101836333051324,0.132686004042625,0.0200950782746077,0.124279819428921,0.0558643937110901,0.114101253449917,0.0704270899295807,0.128310739994049,0.04703663662076,0.110131099820137,0.0516271181404591,0.109462656080723,0.0786788165569305,0.132088452577591,0.0817032679915428,0.145862430334091,0.0788446664810181,0.139745160937309,0.263433784246445,0.198527663946152,0.261529713869095,0.172397613525391,0.265674561262131,0.175486624240875,0.262185513973236,0.203085243701935,0.0283392127603292,0.124239310622215,0.0317497923970222,0.123621501028538,0.0172162130475044,0.124877370893955,0.0656656920909882,0.116096451878548,0.0719855204224586,0.123540483415127,0.0438463389873505,0.111670546233654,0.0811677575111389,0.136575132608414, +0.0839124247431755,0.142915204167366,0.0818855762481689,0.139613509178162,0.269540905952454,0.188521280884743,0.268738269805908,0.177329912781715,0.263170450925827,0.208280861377716,0.0285518988966942,0.117332063615322,0.0367124788463116,0.119924813508987,0.0118990512564778,0.128614574670792,0.0232853759080172,0.113422676920891,0.0168756619095802,0.119053810834885,0.062927357852459,0.112035155296326,0.0674874559044838,0.12022864818573,0.0808221399784088,0.124603912234306,0.0486735627055168,0.104135371744633,0.052781704813242,0.104104988276958,0.0875597447156906,0.132149219512939,0.266897529363632,0.196167856454849,0.267186164855957,0.200178518891335,0.268545836210251,0.173663601279259,0.272407114505768,0.181705176830292,0.27278944849968,0.191590040922165,0.2638920545578,0.204958900809288,0.262641251087189,0.212311774492264,0.031710546463728,0.116785153746605,0.0132726514711976,0.123580992221832,0.00872647669166327,0.127875238656998,0.0190519001334906,0.112541548907757,0.0575392991304398,0.104054346680641,0.0736135914921761,0.114040486514568,0.0741516351699829,0.118861377239227,0.0437020137906075,0.104084730148315,0.0862266570329666,0.136747300624847,0.0854151546955109,0.139370441436768,0.270991742610931,0.203784063458443,0.277174830436707,0.188673198223114,0.273462951183319,0.178474366664886,0.273105949163437,0.174504220485687,0.268378734588623,0.207268074154854,0.265798628330231,0.211937054991722,0.0301141310483217,0.112025022506714,0.0226599760353565,0.108753703534603,0.0601978786289692,0.100469060242176,0.0738326013088226,0.10915882140398,0.0802739709615707,0.120542615652084,0.0882471799850464,0.123348049819469,0.039763517677784,0.108419485390186,0.0456060655415058,0.100205734372139,0.0505029186606407,0.101147629320621,0.056943017989397,0.100053809583187,0.0900676771998405,0.136585250496864,0.271812111139297,0.19446636736393,0.2731793820858,0.200897604227066,0.281101942062378,0.184713169932365,0.281691908836365,0.177674263715744,0.277273595333099,0.191954642534256,0.0294836685061455,0.10802449285984,0.013451156206429, +0.120026089251041,0.0198937859386206,0.107821933925152,0.0624602064490318,0.10142108052969,0.0773875042796135,0.116258502006531,0.0771279782056808,0.111386969685555,0.0908766463398933,0.129283010959625,0.0342767089605331,0.108530886471272,0.0404851324856281,0.0998411253094673,0.0373619310557842,0.103720121085644,0.0909652635455132,0.133435472846031,0.0881231129169464,0.140676930546761,0.27434915304184,0.197281926870346,0.275372058153152,0.195003151893616,0.276716560125351,0.203297927975655,0.282970547676086,0.18991893529892,0.277987599372864,0.175223305821419,0.273346483707428,0.206609755754471,0.269019335508347,0.211339503526688,0.0236651729792356,0.100458927452564,0.0629830583930016,0.0968331322073936,0.0601282492280006,0.0967318490147591,0.0780255645513535,0.10674837231636,0.0686648264527321,0.104054346680641,0.080736055970192,0.117088988423347,0.089167557656765,0.119509562849998,0.0917071327567101,0.125029280781746,0.0424588099122047,0.0965596809983253,0.0470100492238998,0.0988789722323418,0.0546844899654388,0.0981092527508736,0.0929819867014885,0.135126829147339,0.278585165739059,0.200614020228386,0.287773728370667,0.182414129376411,0.285431623458862,0.186850160360336,0.272933781147003,0.171668395400047,0.282259047031403,0.17353193461895,0.282611012458801,0.193139612674713,0.278144598007202,0.195347502827644,0.27226784825325,0.208868280053139,0.267720431089401,0.215218499302864,0.0302483271807432,0.101522363722324,0.0664392188191414,0.0992840901017189,0.0582621805369854,0.0954962447285652,0.0748656541109085,0.104732915759087,0.081369049847126,0.112642832100391,0.0934643298387527,0.130700930953026,0.0389026440680027,0.0960026383399963,0.0339817330241203,0.10035765171051,0.0484127663075924,0.0975522175431252,0.0516347140073776,0.0980788692831993,0.283603549003601,0.203824579715729,0.289923369884491,0.179335236549377,0.287634462118149,0.190303787589073,0.273040115833282,0.165115624666214,0.278473734855652,0.164285138249397,0.28871813416481,0.193727031350136,0.277303963899612,0.211461037397385,0.271148711442947,0.215390667319298, +0.272207081317902,0.211724355816841,0.0284683424979448,0.097005307674408,0.0615499578416348,0.0935010462999344,0.065673291683197,0.096367247402668,0.0765924677252769,0.10227183252573,0.0699725970625877,0.100904561579227,0.08334019780159,0.114313937723637,0.0938808396458626,0.126356050372124,0.0362301357090473,0.0968736410140991,0.0959292128682137,0.133040472865105,0.282028645277023,0.208392277359962,0.283522516489029,0.200786203145981,0.283687084913254,0.19915559887886,0.292923778295517,0.184834703803062,0.271513313055038,0.167566582560539,0.290531039237976,0.175901874899864,0.287439495325089,0.168052732944489,0.283059179782867,0.195661470293999,0.0253375470638275,0.0959013625979424,0.0324853323400021,0.0952734276652336,0.0702561810612679,0.0977446436882019,0.0898676514625549,0.116288885474205,0.0349881984293461,0.092164158821106,0.285750657320023,0.208149209618568,0.287880063056946,0.202042058110237,0.293475747108459,0.178909868001938,0.294756919145584,0.18814654648304,0.290422171354294,0.191671058535576,0.271095544099808,0.160699859261513,0.267181098461151,0.160335242748261,0.268290102481842,0.170128956437111,0.288001596927643,0.170918941497803,0.286312758922577,0.164528205990791,0.289348602294922,0.196684390306473,0.275108754634857,0.216302186250687,0.281770378351212,0.215309649705887,0.0289532169699669,0.0917286574840546,0.0220915451645851,0.095607653260231,0.0900296941399574,0.112592190504074,0.288118064403534,0.205191850662231,0.284641653299332,0.216413587331772,0.296491324901581,0.181219041347504,0.29614445567131,0.184854969382286,0.296065956354141,0.195428520441055,0.263724952936172,0.16331285238266,0.264446556568146,0.166280344128609,0.293923914432526,0.171486094594002,0.293090879917145,0.198487162590027,0.274536520242691,0.219067111611366,0.0243576690554619,0.0917185246944427,0.0751555636525154,0.0971774831414223,0.0867925584316254,0.110829927027225,0.0924034267663956,0.116136968135834,0.289452433586121,0.208037793636322,0.288437098264694,0.211977556347847,0.293966948986053,0.203095361590385,0.300732403993607, +0.176570326089859,0.297519326210022,0.192157208919525,0.26040044426918,0.159221172332764,0.293437749147415,0.166553795337677,0.278729468584061,0.220191314816475,0.285502523183823,0.221609219908714,0.0793624520301819,0.09979048371315,0.0730717405676842,0.0952936857938766,0.0905841961503029,0.107892833650112,0.295567154884338,0.206873089075089,0.287563562393188,0.218621477484703,0.302317410707474,0.180560722947121,0.299137264490128,0.185462638735771,0.297359794378281,0.199965834617615,0.302651643753052,0.195499420166016,0.260970145463943,0.165804326534271,0.298628330230713,0.171415209770203,0.29946893453598,0.168690785765648,0.0818729177117348,0.0947872921824455,0.0700447559356689,0.0938960313796997,0.0729489400982857,0.0920730084180832,0.292819947004318,0.213243544101715,0.295389920473099,0.210681185126305,0.291728675365448,0.219340562820435,0.299056231975555,0.204330965876579,0.304755717515945,0.177947714924812,0.303089678287506,0.19070890545845,0.300732403993607,0.199469566345215,0.25762540102005,0.161925330758095,0.281995743513107,0.225792050361633,0.291105806827545,0.221892803907394,0.301555305719376,0.20879739522934,0.3037049472332,0.174423202872276,0.310427367687225,0.183761149644852,0.306320488452911,0.187822446227074,0.306601524353027,0.197950378060341,0.28606715798378,0.226987153291702,0.276372194290161,0.22242958843708,0.288951098918915,0.226733952760696,0.0764506757259369,0.0898347347974777,0.299600601196289,0.213152393698692,0.296648323535919,0.222024470567703,0.304107546806335,0.202720627188683,0.308310627937317,0.174716904759407,0.311176836490631,0.179355502128601,0.286819159984589,0.232780322432518,0.294475883245468,0.227007403969765,0.0825742706656456,0.0923262014985085,0.0733451992273331,0.0884370803833008,0.302441477775574,0.212696641683578,0.306568622589111,0.171597510576248,0.314354479312897,0.18126967549324,0.307700425386429,0.19276487827301,0.308424562215805,0.201252087950706,0.281775444746017,0.228992477059364,0.292579412460327,0.230977550148964,0.0778268054127693,0.0879711955785751,0.304710149765015, +0.219097495079041,0.304180949926376,0.225964233279228,0.315729320049286,0.177886947989464,0.313037842512131,0.189463168382645,0.316253453493118,0.19552980363369,0.315035581588745,0.199540466070175,0.306533187627792,0.206548988819122,0.277493864297867,0.225883200764656,0.297329425811768,0.231635868549347,0.0826439037919044,0.0883560553193092,0.0743491277098656,0.0808613896369934,0.305973619222641,0.213901862502098,0.315478652715683,0.174828320741653,0.314354479312897,0.202923193573952,0.285072088241577,0.239869877696037,0.292083144187927,0.237661987543106,0.0816944092512131,0.0842846259474754,0.085370846092701,0.092386968433857,0.0777622386813164,0.079767569899559,0.307330757379532,0.225528731942177,0.306890189647675,0.217912524938583,0.30514058470726,0.232456237077713,0.309799432754517,0.168873086571693,0.316430687904358,0.188136413693428,0.318380326032639,0.19808204472065,0.309520900249481,0.208382144570351,0.283218681812286,0.235646530985832,0.294359415769577,0.240832030773163,0.0836908742785454,0.0860975235700607,0.0856873467564583,0.0879205539822578,0.0846808850765228,0.0962659642100334,0.0758012235164642,0.076688677072525,0.309885531663895,0.216008469462395,0.298451095819473,0.237388536334038,0.312979608774185,0.164082586765289,0.317147254943848,0.181614026427269,0.319203227758408,0.195215836167336,0.287978798151016,0.246898666024208,0.279643535614014,0.238887473940849,0.0821856111288071,0.0770330280065537,0.0826059207320213,0.0838389992713928,0.087956003844738,0.0938048809766769,0.0719209611415863,0.0766988098621368,0.078762374818325,0.0759695991873741,0.312101006507874,0.220920518040657,0.311493337154388,0.226014867424965,0.305310219526291,0.238016471266747,0.318709462881088,0.172944515943527,0.280241072177887,0.243323504924774,0.280041038990021,0.235109746456146,0.297390192747116,0.244873076677322,0.0835187062621117,0.0833933725953102,0.0887497812509537,0.0882446467876434,0.070556215941906,0.0812563747167587,0.0707511827349663,0.0700953975319862,0.0797625035047531,0.0721817538142204,0.309680432081223,0.234694510698318, +0.30120587348938,0.244954094290733,0.286148190498352,0.250575095415115,0.275610059499741,0.241064965724945,0.274675786495209,0.236720085144043,0.294597417116165,0.250605493783951,0.0853417292237282,0.0824919864535332,0.0760442912578583,0.0726172551512718,0.0674849227070808,0.0698118135333061,0.305598884820938,0.246027663350105,0.309601932764053,0.23868490755558,0.282264113426209,0.249136924743652,0.278202831745148,0.246361881494522,0.274103552103043,0.232851222157478,0.300345003604889,0.248914122581482,0.0832325890660286,0.0719791948795319,0.0901803448796272,0.0842238590121269,0.0733629241585732,0.0691535025835037,0.0684660673141479,0.07402503490448,0.0770710110664368,0.0680900663137436,0.298514395952225,0.25529471039772,0.280648708343506,0.254697173833847,0.272146314382553,0.238593757152557,0.275678426027298,0.248154520988464,0.269702970981598,0.234593227505684,0.299663901329041,0.252053767442703,0.0824704617261887,0.0679077655076981,0.0853404626250267,0.0760911330580711,0.0878002867102623,0.080648697912693,0.0915450900793076,0.0881534963846207,0.071005642414093,0.0664088353514671,0.0694535374641418,0.0784509405493736,0.0799182206392288,0.0646060630679131,0.288996666669846,0.254838943481445,0.274030119180679,0.242533519864082,0.269915640354156,0.230967432260513,0.0870951265096664,0.0680698156356812,0.0867026671767235,0.0723235458135605,0.0913096144795418,0.0802435800433159,0.0898993015289307,0.0930250287055969,0.0933402627706528,0.0840314328670502,0.0678887739777565,0.0663278102874756,0.0739414766430855,0.0653757825493813,0.0773052200675011,0.0635021179914474,0.291928708553314,0.263366669416428,0.272769182920456,0.253390669822693,0.283849149942398,0.261270195245743,0.268105268478394,0.2379050552845,0.271852612495422,0.243343755602837,0.263074219226837,0.229509010910988,0.0821552276611328,0.0618613921105862,0.0860671401023865,0.0631780251860619,0.088444672524929,0.0762633085250854,0.0942910239100456,0.0882952883839607,0.0712069422006607,0.0630564913153648,0.0805284306406975,0.0596636310219765,0.298101663589478,0.263265401124954, +0.28502145409584,0.265432775020599,0.27363258600235,0.257755786180496,0.277774930000305,0.258798986673355,0.263403385877609,0.233691841363907,0.0907601714134216,0.0721918791532516,0.0945935919880867,0.076344333589077,0.0976826101541519,0.0778736472129822,0.0929224863648415,0.0925490185618401,0.0757176652550697,0.0614765323698521,0.302233874797821,0.260652393102646,0.297266125679016,0.271357595920563,0.284408718347549,0.272947698831558,0.269176304340363,0.253390669822693,0.275344222784042,0.265635341405869,0.264755457639694,0.242209434509277,0.263251453638077,0.238138005137444,0.258815437555313,0.232051119208336,0.0924008935689926,0.0679685324430466,0.0747023373842239,0.0592787712812424,0.304629117250443,0.264895975589752,0.304353147745132,0.271387994289398,0.290624737739563,0.272947698831558,0.28009420633316,0.273413568735123,0.271087944507599,0.261655062437058,0.268095135688782,0.257137984037399,0.265899926424026,0.248326703906059,0.276172161102295,0.26956495642662,0.259992808103561,0.235616147518158,0.257283598184586,0.227422654628754,0.0900309607386589,0.0640692785382271,0.0953228026628494,0.0721817538142204,0.303897380828857,0.255912512540817,0.298549830913544,0.278882652521133,0.292047709226608,0.277545779943466,0.28137794137001,0.277414113283157,0.26632022857666,0.253694504499435,0.269358605146408,0.268896520137787,0.266978532075882,0.265372008085251,0.263562887907028,0.249693974852562,0.25817483663559,0.241865083575249,0.256187230348587,0.238938108086586,0.253257721662521,0.232962623238564,0.253837555646896,0.229539394378662,0.0951493605971336,0.0639477446675301,0.0973901674151421,0.0680292993783951,0.0997347831726074,0.0719285532832146,0.302907377481461,0.279075086116791,0.287267327308655,0.277566015720367,0.275893658399582,0.276917845010757,0.2756607234478,0.27295783162117,0.264803558588028,0.260733425617218,0.269133269786835,0.273251533508301,0.258463501930237,0.248954623937607,0.092817410826683,0.0600181072950363,0.102414883673191,0.0755948647856712,0.296997725963593,0.283804833889008,0.292318612337112, +0.28141462802887,0.288092732429504,0.285536706447601,0.276301294565201,0.28091835975647,0.25968137383461,0.253684371709824,0.265492260456085,0.270162522792816,0.260739743709564,0.262789368629456,0.25519722700119,0.241865083575249,0.252060115337372,0.236953034996986,0.250426977872849,0.229134276509285,0.0990144312381744,0.0640794113278389,0.101627439260483,0.0645756796002388,0.104149296879768,0.068667359650135,0.296769857406616,0.288463681936264,0.281709611415863,0.284969538450241,0.268930703401566,0.280300557613373,0.266796231269836,0.276583611965179,0.262438714504242,0.268228083848953,0.253483086824417,0.250301629304886,0.252156317234039,0.241399198770523,0.24958635866642,0.233377873897552,0.252011984586716,0.225822433829308,0.0976142510771751,0.0598965734243393,0.107390232384205,0.0740149095654488,0.294098615646362,0.28688371181488,0.281985610723495,0.288544714450836,0.274878323078156,0.284412503242493,0.269454836845398,0.276786178350449,0.255617529153824,0.256449311971664,0.263785719871521,0.276826679706573,0.263342618942261,0.272299498319626,0.258271068334579,0.262718498706818,0.249930709600449,0.248255804181099,0.244962960481644,0.234502077102661,0.246522665023804,0.242411985993385,0.242557570338249,0.22795943915844,0.10516082495451,0.0642515867948532,0.109546214342117,0.0701460391283035,0.289718270301819,0.289253652095795,0.274306088685989,0.288433283567429,0.268487602472305,0.284230202436447,0.265968292951584,0.280634790658951,0.260656177997589,0.273970603942871,0.257987469434738,0.270891726016998,0.251189112663269,0.255811244249344,0.245347827672958,0.237803772091866,0.243104487657547,0.23045089840889,0.24714806675911,0.224931180477142,0.102844059467316,0.0599472150206566,0.282570481300354,0.292129993438721,0.255645394325256,0.265392243862152,0.261638581752777,0.281515926122665,0.244785726070404,0.247070834040642,0.24030664563179,0.237753137946129,0.233115807175636,0.234542593359947,0.237194836139679,0.226987153291702,0.241101682186127,0.224445044994354,0.100342459976673,0.0561897531151772,0.108428344130516, +0.0599370859563351,0.112064272165298,0.0636540353298187,0.2901791036129,0.293335229158401,0.275128990411758,0.292585760354996,0.268991470336914,0.287896513938904,0.263894587755203,0.284361869096756,0.258159637451172,0.277859747409821,0.254837691783905,0.271945029497147,0.252708286046982,0.263862937688828,0.24443630874157,0.252924770116806,0.23191311955452,0.232091620564461,0.105529226362705,0.0557947605848312,0.283256649971008,0.296717941761017,0.272186845541,0.292292028665543,0.277688831090927,0.298773914575577,0.265168190002441,0.288230746984482,0.259402841329575,0.283936500549316,0.255255460739136,0.277890115976334,0.249371141195297,0.265625208616257,0.241261199116707,0.246301114559174,0.245930179953575,0.256611347198486,0.234551444649696,0.238421589136124,0.225517332553864,0.234694510698318,0.231270000338554,0.228648126125336,0.110902093350887,0.0558150187134743,0.114034153521061,0.0598965734243393,0.288702964782715,0.297609210014343,0.273235082626343,0.300313353538513,0.269601672887802,0.291583091020584,0.26656836271286,0.292535096406937,0.26141831278801,0.288109213113785,0.25417685508728,0.283906102180481,0.250887811183929,0.276117742061615,0.246396064758301,0.263609737157822,0.241157382726669,0.253259003162384,0.231763735413551,0.241297915577888,0.22346642613411,0.231261134147644,0.224347561597824,0.228354424238205,0.2317004352808,0.225265398621559,0.10590522736311,0.0519664064049721,0.119361445307732,0.061405636370182,0.291207075119019,0.298095345497131,0.283492147922516,0.304658234119415,0.269730806350708,0.300515919923782,0.275420188903809,0.303929030895233,0.268862336874008,0.295846939086914,0.264879524707794,0.295958340167999,0.259843409061432,0.291086822748184,0.256546765565872,0.287704080343246,0.251725882291794,0.280209422111511,0.251014411449432,0.272066563367844,0.237513870000839,0.247354418039322,0.239230558276176,0.264723807573318,0.240380078554153,0.257543116807938,0.227603688836098,0.241865083575249,0.21719217300415,0.234329894185066,0.224707096815109,0.225204631686211,0.109604448080063,0.0516119264066219, +0.116569936275482,0.055906169116497,0.286791294813156,0.30682560801506,0.277605265378952,0.307534575462341,0.273473083972931,0.308192878961563,0.275539189577103,0.307868808507919,0.260904312133789,0.296049505472183,0.248801440000534,0.283804833889008,0.246441632509232,0.279632121324539,0.243314638733864,0.272066563367844,0.234229892492294,0.252722233533859,0.236161783337593,0.256824016571045,0.231746017932892,0.244680643081665,0.224005743861198,0.240781396627426,0.213591694831848,0.230886399745941,0.106164753437042,0.0474392212927341,0.114051878452301,0.0516929514706135,0.122475780546665,0.0557846352458,0.291186839342117,0.305073499679565,0.267786234617233,0.307524442672729,0.266715228557587,0.299584150314331,0.263628721237183,0.299624651670456,0.253202021121979,0.295684903860092,0.253007054328918,0.291876792907715,0.250505477190018,0.287967413663864,0.243648856878281,0.275854408740997,0.231905519962311,0.248934373259544,0.235217362642288,0.271013259887695,0.235837697982788,0.264977008104324,0.225724950432777,0.248711556196213,0.215452700853348,0.241824567317963,0.212406724691391,0.234410926699638,0.214675381779671,0.227534055709839,0.1112325116992,0.0478848479688168,0.117889098823071,0.0517334640026093,0.125536948442459,0.0579216256737709,0.29387578368187,0.301943957805634,0.287677496671677,0.311565488576889,0.277005195617676,0.315819203853607,0.268862336874008,0.315373599529266,0.266034126281738,0.303645461797714,0.274356752634048,0.310096949338913,0.257184833288193,0.29937145113945,0.242428451776505,0.287612944841385,0.243464022874832,0.283592134714127,0.235533863306046,0.279794186353683,0.234951496124268,0.27566197514534,0.228059440851212,0.252438634634018,0.23338420689106,0.256510078907013,0.232642337679863,0.264885872602463,0.203263744711876,0.23023821413517,0.114987447857857,0.0475405007600784,0.122183337807655,0.0517841018736362,0.293594747781754,0.311676889657974,0.2909235060215,0.312183290719986,0.275240391492844,0.312011122703552,0.261228412389755,0.31143382191658,0.260975211858749,0.307504177093506,0.259134471416473, +0.303544163703918,0.252391785383224,0.299594283103943,0.248692572116852,0.295816570520401,0.249102756381035,0.291674226522446,0.241435915231705,0.291684359312058,0.237946838140488,0.28445303440094,0.233558908104897,0.26039919257164,0.230090096592903,0.276634246110916,0.23051293194294,0.270314425230026,0.215475499629974,0.248559638857841,0.211062252521515,0.241490349173546,0.204924717545509,0.234117209911346,0.112221255898476,0.0431348495185375,0.118652492761612,0.0476822927594185,0.127262488007545,0.0516625680029392,0.283494681119919,0.316011637449265,0.288107931613922,0.316021770238876,0.264514923095703,0.315738201141357,0.250487744808197,0.303098529577255,0.231247216463089,0.284230202436447,0.224208295345306,0.256348013877869,0.221395269036293,0.252580434083939,0.227953106164932,0.271762728691101,0.20082038640976,0.23364120721817,0.116940870881081,0.0413725897669792,0.124831795692444,0.0475405007600784,0.130495831370354,0.0550554245710373,0.292569279670715,0.316173702478409,0.278648465871811,0.319667845964432,0.270705610513687,0.319475412368774,0.253108352422714,0.315687566995621,0.259595274925232,0.315576136112213,0.265591025352478,0.319576680660248,0.25319442152977,0.307311743497849,0.245709896087646,0.299634784460068,0.244676843285561,0.295117735862732,0.232001736760139,0.291309624910355,0.231409251689911,0.287612944841385,0.22311195731163,0.260368794202805,0.227813839912415,0.262799501419067,0.227104887366295,0.276219010353088,0.214201912283897,0.252722233533859,0.210847035050392,0.248792588710785,0.20898349583149,0.24350580573082,0.204448714852333,0.237115085124969,0.197387009859085,0.22995463013649,0.13033252954483,0.0474797338247299,0.1328404545784,0.0512068122625351,0.119534887373447,0.0437729097902775,0.292361676692963,0.319941282272339,0.283426314592361,0.31973871588707,0.274855554103851,0.31965771317482,0.257665902376175,0.31958681344986,0.250004142522812,0.307372540235519,0.245811179280281,0.303270727396011,0.241597950458527,0.295786172151566,0.232984155416489,0.295239269733429,0.228365808725357,0.286205142736435, +0.217392206192017,0.259356021881104,0.224377945065498,0.283328831195831,0.223228424787521,0.268147051334381,0.223170191049576,0.271560162305832,0.199782267212868,0.240234479308128,0.124860912561417,0.0434690713882446,0.285137921571732,0.327344805002213,0.281871676445007,0.327203005552292,0.298914432525635,0.31817901134491,0.273741483688354,0.32753723859787,0.256212562322617,0.326575070619583,0.247634202241898,0.30732187628746,0.241663783788681,0.299472749233246,0.227606222033501,0.294975936412811,0.22351960837841,0.263954102993011,0.21876959502697,0.267569750547409,0.221076235175133,0.280209422111511,0.221701636910439,0.274760603904724,0.210401400923729,0.253147602081299,0.215065315365791,0.263883203268051,0.206428721547127,0.245460495352745,0.203109294176102,0.241895467042923,0.197483226656914,0.233914658427238,0.130528748035431,0.0433779209852219,0.135010361671448,0.0475506260991097,0.121828861534595,0.039823018014431,0.290515840053558,0.327679038047791,0.29486072063446,0.326321870088577,0.296620458364487,0.312507390975952,0.266545563936234,0.326514303684235,0.252832353115082,0.319252580404282,0.249973759055138,0.315434366464615,0.250520646572113,0.323962062597275,0.24253985285759,0.307210475206375,0.241164982318878,0.303220063447952,0.237210035324097,0.2992904484272,0.226107284426689,0.299077749252319,0.224767863750458,0.290550023317337,0.218268275260925,0.28388586640358,0.21990393102169,0.271732330322266,0.207347825169563,0.252225965261459,0.207545325160027,0.262252599000931,0.211973756551743,0.260520726442337,0.205281734466553,0.248914122581482,0.195938721299171,0.240599080920219,0.199888616800308,0.244994610548019,0.127397954463959,0.0393875166773796,0.285816490650177,0.3313048183918,0.282732546329498,0.331284552812576,0.275832891464233,0.331142783164978,0.271103143692017,0.331021249294281,0.249933242797852,0.319201946258545,0.258843272924423,0.327223271131516,0.250067442655563,0.328013241291046,0.244828760623932,0.315383732318878,0.239769861102104,0.310856521129608,0.232470154762268,0.299432218074799,0.222246021032333, +0.299209415912628,0.221177518367767,0.291583091020584,0.215283066034317,0.272147595882416,0.215500816702843,0.290246188640594,0.216954171657562,0.277363479137421,0.20132677257061,0.259447157382965,0.20449934899807,0.262586832046509,0.209345564246178,0.266840547323227,0.189998686313629,0.237348020076752,0.135245829820633,0.0433880500495434,0.131393417716026,0.0393166206777096,0.12255933880806,0.0353363454341888,0.289695501327515,0.331507384777069,0.265302360057831,0.330798417329788,0.258886337280273,0.330909818410873,0.255652993917465,0.331061750650406,0.247345551848412,0.326777637004852,0.241808116436005,0.316437035799026,0.238617807626724,0.306410372257233,0.237592354416847,0.302906095981598,0.219121545553207,0.303321361541748,0.227869540452957,0.302966862916946,0.210639402270317,0.274213671684265,0.213460028171539,0.288676381111145,0.212363690137863,0.282670497894287,0.202212974429131,0.253461569547653,0.206355288624763,0.267478615045547,0.189745485782623,0.244690775871277,0.189274534583092,0.241085231304169,0.189639151096344,0.233600690960884,0.199174597859383,0.248569771647453,0.142958253622055,0.0476417802274227,0.130185663700104,0.0351844280958176,0.293936550617218,0.331628918647766,0.284839153289795,0.335224330425262,0.278169900178909,0.335629433393478,0.270232141017914,0.333624124526978,0.247388601303101,0.322868257761002,0.244666710495949,0.322847992181778,0.247656986117363,0.331173151731491,0.254723757505417,0.335254728794098,0.241982817649841,0.325724333524704,0.234034925699234,0.311514854431152,0.238934308290482,0.321409821510315,0.233607023954391,0.306501537561417,0.218615144491196,0.299118250608444,0.23079651594162,0.305782437324524,0.219192445278168,0.295208871364594,0.211100220680237,0.277971148490906,0.212173789739609,0.298743516206741,0.21480704843998,0.277758449316025,0.199886083602905,0.267529249191284,0.197303459048271,0.260024458169937,0.19346496462822,0.248397588729858,0.186499491333961,0.237803772091866,0.185113221406937,0.23378299176693,0.13509264588356,0.039184957742691,0.14091494679451,0.0433171540498734, +0.289728403091431,0.335447132587433,0.296716690063477,0.327901840209961,0.273204684257507,0.338931143283844,0.259909242391586,0.334971129894257,0.250343412160873,0.332550555467606,0.244628742337227,0.330676883459091,0.244669243693352,0.32676750421524,0.233493074774742,0.314755797386169,0.220529332756996,0.306693941354752,0.206170454621315,0.282174229621887,0.207241490483284,0.29461133480072,0.210322916507721,0.28410866856575,0.192637011408806,0.255750477313995,0.200810253620148,0.271712094545364,0.203699246048927,0.274618804454803,0.18896310031414,0.249845892190933,0.186634942889214,0.242969021201134,0.152500033378601,0.0428715236485004,0.135533213615417,0.0354578793048859,0.293827682733536,0.33556866645813,0.28073987364769,0.340075612068176,0.277417898178101,0.339245110750198,0.26374015212059,0.342101186513901,0.246920183300972,0.334150761365891,0.249915510416031,0.339123576879501,0.239395126700401,0.32647380232811,0.230647131800652,0.310238718986511,0.231801718473434,0.320852786302567,0.212183922529221,0.306390106678009,0.211649671196938,0.302713692188263,0.226666852831841,0.310886919498444,0.201957240700722,0.282285630702972,0.209269598126411,0.28893968462944,0.207588374614716,0.298976480960846,0.193928331136703,0.268126785755157,0.191636875271797,0.259609222412109,0.180550590157509,0.241834700107574,0.174425736069679,0.238796323537827,0.140644028782845,0.0391748286783695,0.134279876947403,0.0315485000610352,0.272032380104065,0.347013235092163,0.267983734607697,0.343387454748154,0.260967612266541,0.341068148612976,0.256711363792419,0.338404506444931,0.24207903444767,0.334677428007126,0.252650052309036,0.342354387044907,0.236769467592239,0.327132105827332,0.227239087224007,0.314158231019974,0.227244153618813,0.318482875823975,0.233726024627686,0.32604843378067,0.216736420989037,0.31044128537178,0.205894470214844,0.288099080324173,0.201876223087311,0.288838416337967,0.203501746058464,0.298834681510925,0.19506011903286,0.263538837432861,0.189768269658089,0.256256878376007,0.189715102314949,0.271144926548004,0.196878090500832, +0.279439687728882,0.183339580893517,0.251709431409836,0.181245625019073,0.246453031897545,0.174956187605858,0.23534269630909,0.14737656712532,0.038992527872324,0.13848677277565,0.029553297907114,0.139522358775139,0.0349312275648117,0.277438163757324,0.343245655298233,0.262626081705093,0.346922099590302,0.24740631878376,0.340794682502747,0.243562772870064,0.338141173124313,0.250097811222076,0.346233397722244,0.236564368009567,0.334555894136429,0.238944441080093,0.334211528301239,0.223281592130661,0.323759526014328,0.229831829667091,0.326159834861755,0.211996555328369,0.310927420854568,0.207669392228127,0.306795239448547,0.220977485179901,0.315039366483688,0.197718694806099,0.288007915019989,0.200519070029259,0.295340538024902,0.197946578264236,0.306309103965759,0.189864486455917,0.264906108379364,0.186934992671013,0.259771257638931,0.189288467168808,0.267488747835159,0.190692454576492,0.278264850378037,0.196136206388474,0.28296422958374,0.173985168337822,0.248671054840088,0.173280000686646,0.243819773197174,0.168688252568245,0.237743005156517,0.152549400925636,0.0393571332097054,0.143349438905716,0.0348299480974674,0.274789720773697,0.347215801477432,0.267376065254211,0.34691196680069,0.256759464740753,0.342253118753433,0.255711227655411,0.34705376625061,0.237232819199562,0.338708341121674,0.252928584814072,0.346861332654953,0.233037322759628,0.329309612512589,0.220564782619476,0.318189144134521,0.208061844110489,0.310319751501083,0.216298386454582,0.314269632101059,0.202397808432579,0.306774973869324,0.196819841861725,0.296110272407532,0.198169395327568,0.299482882022858,0.184359967708588,0.256398648023605,0.181990027427673,0.268714219331741,0.185646206140518,0.274882137775421,0.192976295948029,0.284189701080322,0.176257625222206,0.252550035715103,0.168902203440666,0.240933313965797,0.156414479017258,0.0434893295168877,0.149424940347672,0.0353869833052158,0.140745297074318,0.0313560701906681,0.272133648395538,0.351277112960815,0.275541722774506,0.350568145513535,0.269366204738617,0.355156093835831,0.262517184019089, +0.350953012704849,0.255926430225372,0.351155549287796,0.242572769522667,0.346476465463638,0.239663526415825,0.346425831317902,0.252589285373688,0.350507378578186,0.233589291572571,0.334414094686508,0.220516666769981,0.326332002878189,0.228198707103729,0.338080406188965,0.208087176084518,0.314330399036407,0.212459906935692,0.316011637449265,0.200455769896507,0.310856521129608,0.217566907405853,0.318077743053436,0.191297590732574,0.297599077224731,0.194452449679375,0.303949296474457,0.184056118130684,0.260996729135513,0.185201853513718,0.279581487178802,0.177374228835106,0.257370948791504,0.172953382134438,0.254849076271057,0.169697254896164,0.248822972178459,0.169483304023743,0.245004743337631,0.165097907185555,0.243282988667488,0.160040274262428,0.0389418862760067,0.154544606804848,0.0349008440971375,0.145031943917274,0.0309408232569695,0.142267018556595,0.0269402917474508,0.280165106058121,0.343417823314667,0.267054498195648,0.355034559965134,0.245661780238152,0.350628912448883,0.235921248793602,0.342759519815445,0.232606887817383,0.338647574186325,0.218139141798019,0.330393314361572,0.217199772596359,0.322868257761002,0.224671646952629,0.333948224782944,0.201286271214485,0.315555900335312,0.191424190998077,0.291198223829269,0.195508286356926,0.310228615999222,0.178799733519554,0.260733425617218,0.17883138358593,0.273990869522095,0.182153344154358,0.277474880218506,0.184979036450386,0.283480733633041,0.169084519147873,0.25251966714859,0.163592636585236,0.23918117582798,0.148995772004128,0.0309914629906416,0.138951390981674,0.024691890925169,0.271923512220383,0.355753630399704,0.28143110871315,0.347580403089523,0.268130600452423,0.359227538108826,0.261696845293045,0.355470061302185,0.256025195121765,0.355115592479706,0.251186579465866,0.358457803726196,0.241937234997749,0.35052764415741,0.238025322556496,0.350456744432449,0.236019998788834,0.346294164657593,0.246239081025124,0.35508519411087,0.217123806476593,0.327000439167023,0.225147664546967,0.338546305894852,0.205702036619186,0.319921016693115,0.210462167859077, +0.318786710500717,0.198559314012527,0.315221667289734,0.181992560625076,0.291714757680893,0.191067188978195,0.303807497024536,0.179940387606621,0.280351221561432,0.175333440303802,0.260966360569,0.166158810257912,0.256175845861435,0.163538202643394,0.24883309006691,0.162944450974464,0.254119873046875,0.16179746389389,0.0317915715277195,0.155889093875885,0.0311940219253302,0.146511897444725,0.0268896520137787,0.144031807780266,0.0230511669069529,0.274817556142807,0.355490326881409,0.277549564838409,0.351570814847946,0.261651247739792,0.359804809093475,0.250150978565216,0.355145961046219,0.241375133395195,0.354973793029785,0.229269728064537,0.345889031887054,0.229748278856277,0.342324018478394,0.21363727748394,0.326038300991058,0.218799993395805,0.334252059459686,0.225884467363358,0.342779755592346,0.218924060463905,0.338323473930359,0.200967237353325,0.325400233268738,0.213163793087006,0.322554290294647,0.198539063334465,0.324215263128281,0.186322242021561,0.298935949802399,0.184181451797485,0.290529787540436,0.192097693681717,0.310026049613953,0.195034801959991,0.317004173994064,0.166224643588066,0.0334829352796078,0.15042632818222,0.0268592685461044,0.141820132732391,0.0181796327233315,0.274708688259125,0.359460473060608,0.27011314034462,0.363683819770813,0.280970275402069,0.351763248443604,0.265254259109497,0.36323818564415,0.258154600858688,0.359004706144333,0.2528475522995,0.359450340270996,0.246580898761749,0.359075605869293,0.232482820749283,0.350446611642838,0.241537183523178,0.359419941902161,0.21225480735302,0.334171026945114,0.222061172127724,0.344653427600861,0.219369679689407,0.342475920915604,0.203587830066681,0.327354937791824,0.208317577838898,0.322017520666122,0.195346236228943,0.322483390569687,0.179488435387611,0.292271792888641,0.186310857534409,0.302197158336639,0.175920858979225,0.277930647134781,0.178784534335136,0.283440232276917,0.163083717226982,0.261401861906052,0.163103967905045,0.0268795248121023,0.158754020929337,0.0269504189491272,0.154764890670776,0.0269301645457745,0.14830707013607, +0.022909376770258,0.14844885468483,0.0173086319118738,0.278744667768478,0.355024427175522,0.272933781147003,0.363592654466629,0.286986261606216,0.347985535860062,0.248763471841812,0.363582521677017,0.235045179724693,0.354619324207306,0.227515071630478,0.35011237859726,0.234240010380745,0.359257906675339,0.208104893565178,0.33407986164093,0.212667524814606,0.338131040334702,0.214060112833977,0.344866126775742,0.198323845863342,0.331973254680634,0.202542126178741,0.332925289869308,0.195477902889252,0.332783490419388,0.181708976626396,0.299006849527359,0.189131483435631,0.310846418142319,0.185886740684509,0.30653190612793,0.192426860332489,0.323556959629059,0.17292046546936,0.26706337928772,0.169298470020294,0.0269200354814529,0.153893887996674,0.0229498874396086,0.149870559573174,0.00844669342041016,0.279243469238281,0.359612375497818,0.27062714099884,0.371776014566422,0.264816224575043,0.367188066244125,0.287702828645706,0.352087318897247,0.283854216337204,0.355986595153809,0.259066104888916,0.367319732904434,0.254045188426971,0.363521754741669,0.244628742337227,0.363683819770813,0.229416593909264,0.354639559984207,0.221962437033653,0.350355446338654,0.241572633385658,0.363106518983841,0.238529190421104,0.363866120576859,0.206365421414375,0.330433815717697,0.208791062235832,0.338424742221832,0.215612217783928,0.346820801496506,0.177359029650688,0.29290983080864,0.175824657082558,0.284908771514893,0.188066780567169,0.318604409694672,0.173364832997322,0.277819216251373,0.169630154967308,0.269463688135147,0.165781542658806,0.0228587370365858,0.173176199197769,0.0305762179195881,0.160663142800331,0.0226865615695715,0.151801198720932,0.0192531943321228,0.143070921301842,0.0133587382733822,0.282023578882217,0.364088922739029,0.265960693359375,0.371745645999908,0.278602868318558,0.368768036365509,0.254485756158829,0.367947667837143,0.245750412344933,0.367745101451874,0.229798913002014,0.358690738677979,0.223385408520699,0.354426890611649,0.232297986745834,0.363400220870972,0.206398338079453,0.337958872318268,0.213996812701225, +0.35082134604454,0.203729629516602,0.338303208351135,0.199169531464577,0.335862398147583,0.192963644862175,0.344734460115433,0.177593246102333,0.296950876712799,0.181231692433357,0.308132112026215,0.184589102864265,0.310755252838135,0.190021470189095,0.323111325502396,0.166951313614845,0.270800560712814,0.173154681921005,0.0228486079722643,0.157869100570679,0.0188379492610693,0.154649674892426,0.0125890159979463,0.282874315977097,0.359774440526962,0.266737997531891,0.375725924968719,0.276774793863297,0.371796280145645,0.260370075702667,0.37168487906456,0.240334495902061,0.367309600114822,0.225403398275375,0.363228052854538,0.218027725815773,0.354852259159088,0.236245349049568,0.36742103099823,0.208669528365135,0.346780300140381,0.201331838965416,0.345099061727524,0.189687252044678,0.332216322422028,0.197230026125908,0.349373042583466,0.178516149520874,0.305944502353668,0.172950848937035,0.292970597743988,0.173243299126625,0.284837871789932,0.186201974749565,0.322453022003174,0.16979093849659,0.276219010353088,0.160908743739128,0.264531373977661,0.163285002112389,0.0186455175280571,0.184052333235741,0.0270213149487972,0.166856363415718,0.0207926388829947,0.156127095222473,0.0151513824239373,0.285778522491455,0.359936475753784,0.283552914857864,0.367967933416367,0.271386712789536,0.375908225774765,0.263142585754395,0.375989258289337,0.278845936059952,0.373609185218811,0.255052894353867,0.371158212423325,0.249687641859055,0.371634244918823,0.244026124477386,0.371391177177429,0.228310108184814,0.363298952579498,0.22089646756649,0.358913570642471,0.229330494999886,0.367603331804276,0.203585296869278,0.342739254236221,0.214619681239128,0.353616654872894,0.206408470869064,0.34953510761261,0.190082237124443,0.341371983289719,0.194953769445419,0.350021243095398,0.176134824752808,0.30432403087616,0.183561116456985,0.318087875843048,0.169851705431938,0.2797030210495,0.170542940497398,0.0207926388829947,0.160318791866302,0.0167819783091545,0.160479575395584,0.0107153495773673,0.285781055688858,0.363582521677017,0.267226666212082, +0.38028347492218,0.264160454273224,0.379594802856445,0.275361925363541,0.375928491353989,0.256326496601105,0.374166220426559,0.236703634262085,0.371310144662857,0.225661665201187,0.367400765419006,0.215113416314125,0.358093202114105,0.220785066485405,0.363207787275314,0.228441774845123,0.3716139793396,0.211424320936203,0.354801625013351,0.20210662484169,0.350558012723923,0.188475698232651,0.346820801496506,0.186055123806,0.34287092089653,0.198295995593071,0.353717923164368,0.175803124904633,0.318330943584442,0.169951722025871,0.28467583656311,0.173772484064102,0.307129442691803,0.181073442101479,0.320569217205048,0.183347165584564,0.3332898914814,0.167931199073792,0.018736669793725,0.173107832670212,0.0187873095273972,0.162768483161926,0.0147260092198849,0.162845715880394,0.00434488151222467,0.281917244195938,0.37324458360672,0.269437104463577,0.381954610347748,0.260676443576813,0.379706203937531,0.277990132570267,0.377923667430878,0.248563438653946,0.375573992729187,0.240055978298187,0.37530055642128,0.222914457321167,0.366995632648468,0.217387139797211,0.363298952579498,0.206947773694992,0.354720592498779,0.188617497682571,0.351631581783295,0.194151133298874,0.35607773065567,0.183034464716911,0.0229802709072828,0.166065126657486,0.0107254767790437,0.264927625656128,0.382440745830536,0.261952549219131,0.383848518133163,0.276116460561752,0.380718976259232,0.253050118684769,0.379574537277222,0.234840095043182,0.375361323356628,0.214657664299011,0.362286150455475,0.217728957533836,0.367664098739624,0.211930721998215,0.358852803707123,0.204266414046288,0.354214191436768,0.201331838965416,0.355125725269318,0.182524278759956,0.346901834011078,0.182362228631973,0.340632647275925,0.198037728667259,0.358589470386505,0.172074779868126,0.31561666727066,0.177748963236809,0.324073493480682,0.168592035770416,0.014493066817522,0.180011287331581,0.0184632148593664,0.165170073509216,0.00550959352403879,0.266793698072433,0.384972721338272,0.258491337299347,0.38310918211937,0.253880590200424,0.382987648248672,0.249616742134094,0.379513770341873, +0.240281328558922,0.379260569810867,0.228560775518417,0.374996721744537,0.214703232049942,0.366327196359634,0.217490956187248,0.371532946825027,0.206481888890266,0.359744042158127,0.211674988269806,0.363572418689728,0.177524879574776,0.335599064826965,0.192983895540237,0.358954071998596,0.181573510169983,0.354599058628082,0.170415073633194,0.321602255105972,0.178145214915276,0.330990850925446,0.17236216366291,0.0146956257522106,0.176969110965729,0.0143208922818303,0.181291192770004,0.0157590582966805,0.171178460121155,0.0106545817106962,0.251725882291794,0.381853312253952,0.228859558701515,0.379118770360947,0.219633013010025,0.375138491392136,0.21397402882576,0.371006309986115,0.208598628640175,0.363005250692368,0.203511878848076,0.362610250711441,0.201015338301659,0.359956741333008,0.178685784339905,0.341179549694061,0.189517617225647,0.359035104513168,0.186804592609406,0.355145961046219,0.179216235876083,0.346932202577591,0.195037335157394,0.362995117902756,0.187838912010193,0.0157084185630083,0.168898418545723,0.00680596847087145,0.250401645898819,0.384121984243393,0.242825970053673,0.383483916521072,0.236693501472473,0.383554816246033,0.221435785293579,0.379189670085907,0.212029471993446,0.367593199014664,0.214313313364983,0.375239789485931,0.206119820475578,0.363724321126938,0.200443118810654,0.363481253385544,0.190953239798546,0.363076150417328,0.186191856861115,0.35897433757782,0.179249152541161,0.351064413785934,0.176547527313232,0.0105836857110262,0.191396340727806,0.0210154540836811,0.184216901659966,0.0102089531719685,0.17357625067234,0.006380595266819,0.247669652104378,0.382774949073792,0.239992678165436,0.38268381357193,0.227213770151138,0.383291482925415,0.213308110833168,0.379392236471176,0.204489216208458,0.37488529086113,0.206930056214333,0.367461532354355,0.219367146492004,0.383453518152237,0.204319581389427,0.366499364376068,0.174987822771072,0.347793102264404,0.188213646411896,0.363025486469269,0.182016611099243,0.359217405319214,0.178933918476105,0.35551056265831,0.194118216633797,0.36642849445343, +0.192117959260941,0.0148678002879024,0.190099969506264,0.0105533022433519,0.171553194522858,0.00199520215392113,0.206170454621315,0.379280835390091,0.203749880194664,0.371583610773087,0.201820507645607,0.367056399583817,0.17063282430172,0.346760034561157,0.189978435635567,0.370894908905029,0.185099303722382,0.36246845126152,0.176538676023483,0.351155549287796,0.198658064007759,0.367512166500092,0.179331451654434,0.00666417740285397,0.196115955710411,0.0202254746109247,0.184420734643936,0.00664392160251737,0.211079970002174,0.383048415184021,0.207092106342316,0.383878916501999,0.200270935893059,0.375776559114456,0.173859834671021,0.351165682077408,0.186361491680145,0.366408228874207,0.177610963582993,0.358923673629761,0.176103174686432,0.354426890611649,0.198660597205162,0.371077209711075,0.200306385755539,0.0159514881670475,0.177866697311401,0.00270415702834725,0.215847700834274,0.387312263250351,0.201977491378784,0.382967382669449,0.170836642384529,0.351591050624847,0.180972173810005,0.370358109474182,0.180034071207047,0.366590529680252,0.178159132599831,0.36267101764679,0.191234290599823,0.375249922275543,0.210963502526283,0.386978060007095,0.202610492706299,0.386866629123688,0.192583844065666,0.380800008773804,0.173569917678833,0.355784028768539,0.17952387034893,0.382633179426193,0.172412797808647,0.363288819789886,0.198116227984428,0.386967927217484,0.169059187173843,0.35543966293335,0.175749957561493,0.370236575603485,0.176566526293755,0.37636399269104,0.169745355844498,0.366398096084595,0.184578984975815,0.382379978895187,0.188023746013641,0.378116101026535,0.192482560873032,0.387069195508957,0.166496828198433,0.362589985132217,0.167771682143211,0.351266980171204,0.17578287422657,0.382106512784958,0.181481093168259,0.386815994977951,0.187417328357697,0.384446054697037,0.164821922779083,0.358731240034103,0.165594175457954,0.355226993560791,0.168159067630768,0.347225934267044,0.171563327312469,0.38176217675209,0.168305933475494,0.370388507843018,0.175171405076981,0.387251496315002,0.160031408071518,0.366641163825989, +0.15916420519352,0.363096386194229,0.165354907512665,0.352006316184998,0.168540135025978,0.38268381357193,0.165075123310089,0.375898092985153,0.170401141047478,0.386279225349426,0.165505558252335,0.347995638847351,0.168332517147064,0.379382103681564,0.160721376538277,0.370175808668137,0.154393956065178,0.366823464632034,0.163062199950218,0.35167208313942,0.166137292981148,0.387332528829575,0.165857508778572,0.384344786405563,0.157157614827156,0.377245098352432,0.162054464221001,0.37949350476265,0.15493705868721,0.370115041732788,0.151815131306648,0.363035619258881,0.162876099348068,0.383980184793472,0.150068059563637,0.370682209730148,0.150223776698112,0.366651296615601,0.1582071185112,0.383240848779678,0.148795738816261,0.377093195915222,0.146625831723213,0.363228052854538,0.155861228704453,0.381519109010696,0.148095652461052,0.381174743175507,0.157215848565102,0.387119829654694,0.146152347326279,0.36692476272583,0.145611777901649,0.377062797546387,0.152670934796333,0.383534550666809,0.154705390334129,0.386289358139038,0.145359843969345,0.370499908924103,0.139694526791573,0.364311754703522,0.149507224559784,0.385256290435791,0.144855976104736,0.381326675415039,0.141341581940651,0.369912475347519,0.142688602209091,0.376900762319565,0.13972744345665,0.367734998464584,0.151223912835121,0.38801109790802,0.144647091627121,0.385975390672684,0.13979834318161,0.376809597015381,0.134997695684433,0.366499364376068,0.147700652480125,0.389287203550339,0.141968250274658,0.381407678127289,0.1378044039011,0.3711177110672,0.135391429066658,0.37069234251976,0.140983313322067,0.385965257883072,0.133762091398239,0.378490835428238,0.138899490237236,0.381954610347748,0.132591053843498,0.370540410280228,0.129402026534081,0.375887960195541,0.137944921851158,0.386289358139038,0.134530544281006,0.383413016796112,0.134406477212906,0.387271761894226,0.127554938197136,0.385276556015015,0.136020615696907,0.389317601919174,0.130493298172951,0.388395965099335,0.123025223612785,0.383413016796112,0.122268162667751,0.388092130422592,0.120262831449509, +0.381397575139999,0.126639634370804,0.389155566692352,0.119358912110329,0.385286688804626,0.661939918994904,0.909001886844635,0.659177541732788,0.909204483032227,0.661544919013977,0.905831873416901,0.888218104839325,0.905447006225586,0.888148486614227,0.910399556159973,0.885306358337402,0.908779084682465,0.847959637641907,0.905902743339539,0.851466417312622,0.905659675598145,0.848159611225128,0.910126090049744,0.934801518917084,0.911412358283997,0.939136266708374,0.913316428661346,0.934436917304993,0.914076030254364,0.935156047344208,0.916911840438843,0.745587766170502,0.905102670192719,0.748362839221954,0.904960870742798,0.748429894447327,0.908971548080444,0.77458655834198,0.90477854013443,0.774668872356415,0.908870220184326,0.771836817264557,0.904950737953186,0.819401383399963,0.902318716049194,0.816190838813782,0.89945125579834,0.812746047973633,0.895184874534607,0.68761932849884,0.908404350280762,0.684502422809601,0.907705545425415,0.683922588825226,0.904687404632568,0.553381204605103,0.89511650800705,0.553209006786346,0.897891581058502,0.549704730510712,0.894670903682709,0.545714378356934,0.895582377910614,0.553036868572235,0.892037630081177,0.546058714389801,0.905983805656433,0.549866795539856,0.890883028507233,0.541906237602234,0.898468852043152,0.542959570884705,0.896352112293243,0.54500538110733,0.891713559627533,0.727413177490234,0.893133997917175,0.731183350086212,0.897085130214691,0.734563529491425,0.901222407817841,0.594060003757477,0.907837212085724,0.596916079521179,0.900524854660034,0.600693821907043,0.902813732624054,0.593847334384918,0.901537597179413,0.59725034236908,0.894873440265656,0.684746742248535,0.894984841346741,0.685720324516296,0.891743898391724,0.689392924308777,0.900879323482513,0.728343725204468,0.908971548080444,0.728596925735474,0.905021607875824,0.73083770275116,0.908667683601379,0.867076098918915,0.905528008937836,0.869708061218262,0.910278022289276,0.866860866546631,0.909964084625244,0.00932908896356821,0.997438967227936,0.00933541916310787,0.993499219417572,0.0125763565301895, +0.996800899505615,0.0114508904516697,0.992871284484863,0.00981522910296917,0.989974677562714,0.0142537942156196,0.993468821048737,0.0122763160616159,0.98915433883667,0.0143816592171788,0.986055195331573,0.0171187333762646,0.988313734531403,0.0116357244551182,0.983766257762909,0.0161059387028217,0.984313189983368,0.0150918802246451,0.980312645435333,0.0180720239877701,0.981315314769745,0.0204546190798283,0.984414458274841,0.019620331004262,0.977416098117828,0.020388787612319,0.98112291097641,0.0192164797335863,0.988759338855743,0.0188151597976685,0.97397255897522,0.0144588854163885,0.972959756851196,0.0218851882964373,0.973557353019714,0.0225232485681772,0.977497100830078,0.0172035545110703,0.967298269271851,0.0207204781472683,0.970660746097565,0.0226776991039515,0.969435274600983,0.0198494754731655,0.966467797756195,0.0172516610473394,0.963166058063507,0.022182697430253,0.965576529502869,0.0206951573491097,0.961960852146149,0.0147133488208056,0.962933123111725,0.0176187995821238,0.959266841411591,0.0205369088798761,0.957626104354858,0.0146462516859174,0.95779824256897,0.0172959715127945,0.955418229103088,0.00987852923572063,0.955185294151306,0.0197317376732826,0.953645825386047,0.0132169481366873,0.954547226428986,0.0167110841721296,0.950637817382813,0.0121028758585453,0.950354218482971,0.00925819296389818,0.949483215808868,0.0140081923455,0.947326004505157,0.0113622704520822,0.94706267118454,0.00794282834976912,0.946009337902069,0.00634641386568546,0.94941234588623,0.00189645471982658,0.94443953037262,0.00417650490999222,0.943406462669373,0.231076300144196,0.989245474338531,0.225756600499153,0.989363253116608,0.228531658649445,0.985723495483398,0.22285495698452,0.985451340675354,0.234405860304832,0.985988080501556,0.218307510018349,0.988494753837585,0.22188013792038,0.980055689811707,0.231263667345047,0.982448399066925,0.220077365636826,0.984300553798676,0.219472229480743,0.992266118526459,0.227470755577087,0.982045829296112,0.217188373208046,0.982749700546265,0.211704105138779,0.989399969577789,0.228686109185219, +0.977900922298431,0.221573770046234,0.977985739707947,0.22678205370903,0.973957359790802,0.232357487082481,0.97502589225769,0.223330974578857,0.974565029144287,0.231866285204887,0.978861808776855,0.233484223484993,0.971731781959534,0.226660519838333,0.971869766712189,0.230997815728188,0.969175755977631,0.236294716596603,0.967832505702972,0.229491278529167,0.967247605323792,0.234532460570335,0.963187575340271,0.237178385257721,0.963712990283966,0.234727427363396,0.955339729785919,0.229040592908859,0.960254311561584,0.230390131473541,0.955599248409271,0.231742218136787,0.950942933559418,0.857821702957153,0.90560907125473,0.861022114753723,0.908738553524017,0.85730516910553,0.907847344875336,0.857517838478088,0.910156488418579,0.308638513088226,0.91805624961853,0.315700203180313,0.92117565870285,0.308167576789856,0.92216819524765,0.315621733665466,0.924801468849182,0.310626119375229,0.928923547267914,0.315745800733566,0.928832411766052,0.315925568342209,0.932053089141846,0.310066550970078,0.935607969760895,0.315209001302719,0.936144769191742,0.310236185789108,0.939355313777924,0.311423689126968,0.946384072303772,0.318655043840408,0.9398313164711,0.313963264226913,0.947336137294769,0.31520140171051,0.954405426979065,0.318543642759323,0.947457671165466,0.315801501274109,0.950242817401886,0.309299349784851,0.951913952827454,0.321280717849731,0.941968321800232,0.318938612937927,0.951883554458618,0.313259392976761,0.956957638263702,0.321574419736862,0.936286568641663,0.321576952934265,0.947569072246552,0.360966980457306,0.951879739761353,0.35785773396492,0.956622183322906,0.356581598520279,0.952679872512817,0.35969340801239,0.949208498001099,0.354872524738312,0.949002146720886,0.350834012031555,0.952593803405762,0.360144108533859,0.943139374256134,0.352970987558365,0.956284165382385,0.352067083120346,0.945318102836609,0.354743391275406,0.941263139247894,0.360820144414902,0.945362448692322,0.359802275896072,0.934479951858521,0.363233119249344,0.946396768093109,0.362506449222565,0.941235303878784,0.354502856731415,0.935382604598999, +0.362048149108887,0.931716322898865,0.358997106552124,0.929917335510254,0.35468515753746,0.931003570556641,0.360194742679596,0.925552189350128,0.355865061283112,0.923058211803436,0.745962500572205,0.901160359382629,0.742253124713898,0.895562171936035,0.747788071632385,0.893133997917175,0.656920254230499,0.902023792266846,0.659553527832031,0.891743898391724,0.662870466709137,0.893982172012329,0.233477890491486,0.945004165172577,0.230442047119141,0.94057697057724,0.233034789562225,0.939559161663055,0.230545848608017,0.937461376190186,0.235814914107323,0.943086206912994,0.233133539557457,0.935310482978821,0.235954165458679,0.947144985198975,0.230325564742088,0.935064852237701,0.236212432384491,0.938952744007111,0.228441774845123,0.935929536819458,0.230758532881737,0.932450592517853,0.228069573640823,0.931003570556641,0.230442047119141,0.928361415863037,0.227446705102921,0.924760937690735,0.225264132022858,0.927796840667725,0.225545182824135,0.931313753128052,0.225112214684486,0.924420416355133,0.226066768169403,0.935419321060181,0.222911924123764,0.925457239151001,0.225329965353012,0.9206503033638,0.222592890262604,0.920868039131165,0.230596497654915,0.92429381608963,0.22254478931427,0.916676342487335,0.231069967150688,0.920498371124268,0.220043182373047,0.917299211025238,0.227727755904198,0.9168940782547,0.235065445303917,0.9248166680336,0.220263466238976,0.921841561794281,0.219929248094559,0.913091063499451,0.229596361517906,0.915098905563354,0.235880732536316,0.920875668525696,0.217594757676125,0.91391521692276,0.224215894937515,0.911926329135895,0.239007741212845,0.924333035945892,0.21533876657486,0.906516790390015,0.218587294220924,0.907499194145203,0.229553312063217,0.906183838844299,0.238420322537422,0.918789267539978,0.23865832388401,0.929084300994873,0.213216960430145,0.908097982406616,0.225261598825455,0.902156710624695,0.241716951131821,0.928060114383698,0.242653787136078,0.920540153980255,0.216969355940819,0.901332557201386,0.211826905608177,0.901494562625885,0.228829175233841,0.901379346847534,0.2335614413023, +0.908967733383179,0.241957500576973,0.924069762229919,0.241408050060272,0.916378855705261,0.214100629091263,0.898371398448944,0.209251880645752,0.902882099151611,0.224499478936195,0.898099184036255,0.227385938167572,0.897461116313934,0.232910722494125,0.904907703399658,0.235890865325928,0.910365402698517,0.245135128498077,0.924839437007904,0.245206028223038,0.916495323181152,0.239116609096527,0.915502786636353,0.218402460217476,0.897276282310486,0.208788529038429,0.897635817527771,0.211639538407326,0.894169569015503,0.23076106607914,0.897821962833405,0.233558908104897,0.901417374610901,0.23602506518364,0.90527480840683,0.24600613117218,0.928133547306061,0.245031327009201,0.912696063518524,0.247191101312637,0.920745253562927,0.241678982973099,0.911813676357269,0.218339160084724,0.893946766853333,0.224722295999527,0.894156873226166,0.22840379178524,0.892669379711151,0.23887100815773,0.909067749977112,0.250361144542694,0.923916578292847,0.2453503459692,0.932903826236725,0.250140875577927,0.916795372962952,0.20878092944622,0.892588317394257,0.21914179623127,0.889649987220764,0.235288247466087,0.897326946258545,0.231571301817894,0.892945349216461,0.235966831445694,0.900551438331604,0.239881277084351,0.904243052005768,0.249768659472466,0.928143680095673,0.2487533390522,0.931749224662781,0.242613285779953,0.908470213413239,0.250682711601257,0.919798254966736,0.20490700006485,0.892561733722687,0.21214847266674,0.889301836490631,0.224755212664604,0.889955043792725,0.238916590809822,0.901237607002258,0.253946423530579,0.928520977497101,0.249857276678085,0.935752272605896,0.258136868476868,0.91683965921402,0.255868196487427,0.925631940364838,0.206481888890266,0.899456322193146,0.206089437007904,0.889510691165924,0.208973363041878,0.886249542236328,0.216090768575668,0.885748207569122,0.227413788437843,0.889109373092651,0.234396994113922,0.892818748950958,0.244423642754555,0.907007992267609,0.253589421510696,0.931916356086731,0.257708966732025,0.913129031658173,0.257787436246872,0.921621322631836,0.202995344996452,0.885876059532166, +0.219706431031227,0.885945677757263,0.2305838316679,0.889555037021637,0.240762397646904,0.897063612937927,0.256610065698624,0.931244134902954,0.253954023122787,0.937210738658905,0.251019448041916,0.91145920753479,0.205577969551086,0.88366436958313,0.222919523715973,0.886547029018402,0.243405789136887,0.901156544685364,0.260577708482742,0.931420087814331,0.250989079475403,0.939875662326813,0.256726562976837,0.934517979621887,0.253158986568451,0.908532202243805,0.202278807759285,0.882183134555817,0.209239214658737,0.881940066814423,0.258833169937134,0.939157843589783,0.200088635087013,0.88504683971405,0.20522603392601,0.878473818302155,0.21599455177784,0.882642686367035,0.260516941547394,0.935397803783417,0.255187094211578,0.942964673042297,0.202724426984787,0.892392098903656,0.197480693459511,0.875682294368744,0.209892466664314,0.878732085227966,0.201726824045181,0.877911686897278,0.263454020023346,0.939754128456116,0.260213077068329,0.945069968700409,0.262742549180985,0.94405722618103,0.296520441770554,0.88733446598053,0.299500584602356,0.890747606754303,0.294089734554291,0.894491136074066,0.290851354598999,0.89125394821167,0.289023250341415,0.897848546504974,0.290220886468887,0.885192394256592,0.293823897838593,0.902054131031036,0.295874804258347,0.881708383560181,0.28721034526825,0.903663218021393,0.289522051811218,0.878381371498108,0.292221128940582,0.906720578670502,0.283414900302887,0.900966644287109,0.29441636800766,0.875996232032776,0.293456763029099,0.910621106624603,0.28846874833107,0.906916797161102,0.282895863056183,0.902970731258392,0.286582410335541,0.893997371196747,0.289858818054199,0.873652875423431,0.290458887815475,0.911252856254578,0.285675972700119,0.907663762569427,0.286691308021545,0.87212735414505,0.292355328798294,0.87025374174118,0.292286962270737,0.913874685764313,0.287853479385376,0.885670959949493,0.291198223829269,0.86572527885437,0.283042699098587,0.866231679916382,0.289734750986099,0.863641440868378,0.288271248340607,0.861557602882385,0.283392131328583,0.862417221069336,0.282305896282196, +0.854107260704041,0.286382406949997,0.852072834968567,0.282113462686539,0.850056111812592,0.288435816764832,0.851698100566864,0.278826951980591,0.850735902786255,0.28494930267334,0.846606254577637,0.279227018356323,0.854870676994324,0.278155982494354,0.862575471401215,0.274484604597092,0.853783190250397,0.273127466440201,0.850200414657593,0.27392503619194,0.860172629356384,0.272319763898849,0.846089720726013,0.278885185718536,0.868021786212921,0.27290466427803,0.854584515094757,0.279419451951981,0.845323801040649,0.275185972452164,0.841908156871796,0.277034312486649,0.837793707847595,0.269291520118713,0.842636108398438,0.274580836296082,0.837578475475311,0.936227023601532,0.901821196079254,0.935976386070251,0.905092537403107,0.933530509471893,0.903441667556763,0.933325409889221,0.907604277133942,0.766170263290405,0.893141567707062,0.770282208919525,0.896878778934479,0.764514327049255,0.897061049938202,0.766765296459198,0.900970458984375,0.426526337862015,0.862372934818268,0.433129757642746,0.863243937492371,0.429544478654861,0.865289747714996,0.428389877080917,0.859283924102783,0.433788061141968,0.865664482116699,0.438578575849533,0.863952875137329,0.437018871307373,0.866565883159637,0.438193708658218,0.859780192375183,0.432319521903992,0.868328154087067,0.443095654249191,0.867366015911102,0.436907470226288,0.868935823440552,0.439925611019135,0.869786560535431,0.447481036186218,0.865320146083832,0.443115890026093,0.870404362678528,0.443480491638184,0.859152257442474,0.446842968463898,0.870161294937134,0.439824312925339,0.872136235237122,0.447369635105133,0.859283924102783,0.439530611038208,0.855698645114899,0.450681447982788,0.868054687976837,0.443521022796631,0.872673034667969,0.43549969792366,0.870951294898987,0.442670255899429,0.851110637187958,0.451339781284332,0.862940073013306,0.435813665390015,0.852913439273834,0.450549781322479,0.872875571250916,0.446640402078629,0.873108506202698,0.446893602609634,0.851353704929352,0.450954914093018,0.858372390270233,0.439662277698517,0.850178897380829,0.454337626695633,0.867598950862885, +0.45453006029129,0.875508844852448,0.443743824958801,0.875275909900665,0.443500757217407,0.846948087215424,0.454681992530823,0.859496593475342,0.435580730438232,0.847251951694489,0.454995959997177,0.863426208496094,0.449223041534424,0.875579714775085,0.43962174654007,0.873959243297577,0.448230504989624,0.848396360874176,0.453983157873154,0.856123983860016,0.439571112394333,0.845337748527527,0.458560973405838,0.873918771743774,0.459300339221954,0.870080292224884,0.453000754117966,0.878547251224518,0.447167068719864,0.8777876496315,0.447450637817383,0.844102144241333,0.45864200592041,0.860610663890839,0.435844033956528,0.84102326631546,0.442872822284698,0.842765271663666,0.458084970712662,0.878243386745453,0.458429336547852,0.864216208457947,0.45076248049736,0.846299886703491,0.457436800003052,0.855496048927307,0.432005554437637,0.84414267539978,0.439743280410767,0.840982735157013,0.463908523321152,0.877615451812744,0.462399482727051,0.868267357349396,0.456079632043839,0.881514728069305,0.45132964849472,0.880420863628387,0.451360017061234,0.84118527173996,0.441191583871841,0.837721526622772,0.462298184633255,0.861319601535797,0.462348818778992,0.864266872406006,0.432633489370346,0.840071201324463,0.432299256324768,0.848234355449677,0.43763667345047,0.835949182510376,0.468709170818329,0.876673579216003,0.467564702033997,0.87345290184021,0.456292331218719,0.846613883972168,0.445982098579407,0.837802588939667,0.463240087032318,0.852579236030579,0.427468240261078,0.841995537281036,0.433808326721191,0.836121320724487,0.432673990726471,0.852305769920349,0.461346179246902,0.883459270000458,0.470076441764832,0.881778061389923,0.465822726488113,0.863750338554382,0.467726767063141,0.871163964271545,0.454692125320435,0.883459270000458,0.466612696647644,0.856508851051331,0.429463446140289,0.83806586265564,0.458854705095291,0.885950744152069,0.47440105676651,0.877078652381897,0.4742491543293,0.88319593667984,0.463169187307358,0.847889959812164,0.466541796922684,0.851850032806396,0.430931985378265,0.834622383117676,0.464789658784866, +0.886558413505554,0.468466103076935,0.889049887657166,0.470876544713974,0.865026414394379,0.474856823682785,0.87033349275589,0.457416534423828,0.843899607658386,0.470542341470718,0.861603200435638,0.424966633319855,0.833589375019073,0.464485824108124,0.889860093593597,0.478371202945709,0.884289741516113,0.474421322345734,0.890123426914215,0.479434639215469,0.874718844890594,0.423255026340485,0.83635425567627,0.478452235460281,0.890599489212036,0.474289655685425,0.89362770318985,0.418646812438965,0.831766307353973,0.482584446668625,0.886295080184937,0.418444246053696,0.835392117500305,0.469873875379562,0.894275903701782,0.482523679733276,0.892159163951874,0.478340834379196,0.89682811498642,0.414322197437286,0.829214096069336,0.46453645825386,0.893526434898376,0.473773151636124,0.897486448287964,0.482746481895447,0.899309456348419,0.419062077999115,0.826246619224548,0.455309927463531,0.88617354631424,0.416206002235413,0.825517416000366,0.424490630626678,0.831928372383118,0.478745937347412,0.902195930480957,0.486625492572784,0.907158613204956,0.47736856341362,0.904768407344818,0.479606837034225,0.90541660785675,0.472861617803574,0.90077805519104,0.486260861158371,0.910176753997803,0.469053536653519,0.896899044513702,0.433331042528152,0.940428853034973,0.435619950294495,0.935780167579651,0.437030285596848,0.941198587417603,0.438653290271759,0.935810565948486,0.436382085084915,0.932569622993469,0.439881294965744,0.939618647098541,0.439407795667648,0.931354224681854,0.433579176664352,0.929845213890076,0.440845966339111,0.936489105224609,0.441511899232864,0.932812690734863,0.437232822179794,0.928255081176758,0.43983319401741,0.927698075771332,0.434242576360703,0.925014138221741,0.437346786260605,0.924062132835388,0.43914195895195,0.923322796821594,0.435192048549652,0.920983254909515,0.438346892595291,0.92103385925293,0.430601567029953,0.919129848480225,0.432862639427185,0.917570114135742,0.43607571721077,0.916942179203033,0.430781334638596,0.914126634597778,0.433918476104736,0.914400100708008,0.435680717229843,0.913984835147858, +0.739749014377594,0.909062683582306,0.736675202846527,0.908981680870056,0.739381909370422,0.905021607875824,0.90088814496994,0.911799728870392,0.904776036739349,0.91463303565979,0.902276992797852,0.916927039623261,0.855412483215332,0.901608526706696,0.859401643276215,0.895184874534607,0.85953962802887,0.901807308197021,0.456711381673813,0.938161492347717,0.453488171100616,0.937461376190186,0.457312732934952,0.933769762516022,0.453169137239456,0.931528925895691,0.46243491768837,0.934744596481323,0.457781136035919,0.928945064544678,0.449153393507004,0.933573544025421,0.460681527853012,0.933452010154724,0.460722029209137,0.930230021476746,0.449745893478394,0.938389360904694,0.464444041252136,0.931590974330902,0.465369492769241,0.925849735736847,0.467533081769943,0.931864440441132,0.463702172040939,0.923456966876984,0.465422660112381,0.929076731204987,0.470887929201126,0.919338703155518,0.464975774288177,0.919605851173401,0.463504672050476,0.921276986598969,0.47085502743721,0.913981080055237,0.220029264688492,0.667798936367035,0.217898607254028,0.668449640274048,0.220455899834633,0.663832604885101,0.222534656524658,0.667602717876434,0.223589226603508,0.664142787456512,0.222324505448341,0.660324513912201,0.224702030420303,0.66713809967041,0.219582363963127,0.660284042358398,0.225816115736961,0.659978926181793,0.226238951086998,0.664371907711029,0.220333099365234,0.655965745449066,0.224599495530128,0.656156897544861,0.22755178809166,0.667666018009186,0.21790999174118,0.656667053699493,0.231237083673477,0.655196011066437,0.229270994663239,0.661229729652405,0.230310380458832,0.665211260318756,0.217269405722618,0.653522372245789,0.223290458321571,0.653231203556061,0.230234414339066,0.65201073884964,0.232243552803993,0.670414507389069,0.21996596455574,0.651643633842468,0.235065445303917,0.655493497848511,0.233956426382065,0.652438700199127,0.235205963253975,0.665097296237946,0.234450161457062,0.669818222522736,0.228691175580025,0.67108291387558,0.222301721572876,0.650986552238464,0.232479020953178,0.672598302364349,0.225474298000336, +0.670492947101593,0.224683046340942,0.649863660335541,0.237164452672005,0.653483092784882,0.23786960542202,0.659846007823944,0.239164724946022,0.668240785598755,0.236979618668556,0.67508727312088,0.239492610096931,0.673216104507446,0.236703634262085,0.677577435970306,0.240553513169289,0.654409825801849,0.240487679839134,0.664754211902618,0.244100823998451,0.670652508735657,0.240000277757645,0.651008129119873,0.242491751909256,0.674625158309937,0.245946630835533,0.654341459274292,0.243590623140335,0.6519575715065,0.235135063529015,0.650523245334625,0.248405188322067,0.665815114974976,0.250107944011688,0.6739541888237,0.241442233324051,0.678734600543976,0.252591818571091,0.670354962348938,0.246007397770882,0.677701532840729,0.246309980750084,0.650380194187164,0.248911589384079,0.657881140708923,0.256227761507034,0.666763365268707,0.252118349075317,0.677521765232086,0.259273737668991,0.67378705739975,0.249983876943588,0.652105689048767,0.253313422203064,0.655009925365448,0.259425640106201,0.67025625705719,0.260473877191544,0.660218179225922,0.25584289431572,0.656475901603699,0.265894860029221,0.666873514652252,0.269123136997223,0.659718096256256,0.265816360712051,0.670203030109406,0.253409653902054,0.650483965873718,0.257321566343308,0.6517613530159,0.264109820127487,0.65504664182663,0.268006533384323,0.652777969837189,0.267955899238586,0.67343008518219,0.261286646127701,0.652945041656494,0.27241724729538,0.666817784309387,0.274531453847885,0.655508697032928,0.271753877401352,0.670123279094696,0.260390341281891,0.649866163730621,0.278828233480453,0.659867525100708,0.264135122299194,0.650738418102264,0.271589279174805,0.653018474578857,0.274754256010056,0.673274338245392,0.28158301115036,0.664298474788666,0.281590610742569,0.669911861419678,0.267315298318863,0.649329423904419,0.270571440458298,0.650156080722809,0.274392187595367,0.651009380817413,0.281018376350403,0.6535325050354,0.2718146443367,0.676940679550171,0.284699887037277,0.66711151599884,0.286824226379395,0.660228312015533,0.278048366308212,0.652615904808044, +0.283578217029572,0.65568596124649,0.279962539672852,0.673175632953644,0.274774521589279,0.677362263202667,0.29367071390152,0.663913607597351,0.288986533880234,0.667416632175446,0.277455896139145,0.649329423904419,0.284277051687241,0.650977730751038,0.280620872974396,0.65019154548645,0.27763819694519,0.676351964473724,0.282717347145081,0.673066735267639,0.271888047456741,0.6809361577034,0.295118987560272,0.657017767429352,0.288518130779266,0.652971625328064,0.285456955432892,0.67284768819809,0.279992938041687,0.676944434642792,0.275817692279816,0.681133627891541,0.269168704748154,0.680856347084045,0.293359279632568,0.667716681957245,0.297932028770447,0.661301851272583,0.288543432950974,0.673185706138611,0.287598997354507,0.649214208126068,0.282808512449265,0.676872313022614,0.270941108465195,0.68447333574295,0.26909527182579,0.67704701423645,0.298858731985092,0.664866924285889,0.294250518083572,0.651962637901306,0.298785299062729,0.653129875659943,0.285925358533859,0.677226781845093,0.29070320725441,0.64960789680481,0.280018240213394,0.681119680404663,0.277774930000305,0.685635507106781,0.266459494829178,0.685013890266418,0.266396194696426,0.680943727493286,0.298456162214279,0.669732093811035,0.291402041912079,0.673417389392853,0.30301371216774,0.653849005699158,0.305533051490784,0.668778836727142,0.288378864526749,0.676682412624359,0.282843947410584,0.681127309799194,0.27117657661438,0.689471423625946,0.266456961631775,0.689280271530151,0.266365796327591,0.677209079265594,0.302557975053787,0.668773770332336,0.293984681367874,0.672398269176483,0.2910475730896,0.676941931247711,0.297762393951416,0.64939272403717,0.301162838935852,0.650254845619202,0.308454960584641,0.660918295383453,0.285922825336456,0.681670427322388,0.276888728141785,0.689971506595612,0.263656586408615,0.684978425502777,0.263679385185242,0.689171433448792,0.2636439204216,0.681042492389679,0.301347672939301,0.672799587249756,0.296840757131577,0.672313451766968,0.304775983095169,0.650352299213409,0.307852327823639,0.65281468629837,0.304046779870987, +0.672803401947021,0.308675229549408,0.668725669384003,0.266380995512009,0.69332891702652,0.272412180900574,0.693461835384369,0.279861271381378,0.689170122146606,0.262795716524124,0.692855417728424,0.262466549873352,0.677943348884583,0.298792898654938,0.673466801643372,0.29622295498848,0.676581144332886,0.312098473310471,0.65418952703476,0.306750923395157,0.672852754592896,0.316483855247498,0.662019670009613,0.29310354590416,0.681383013725281,0.287196427583694,0.685920357704163,0.278529435396194,0.693654298782349,0.284271985292435,0.689670205116272,0.260970145463943,0.689014434814453,0.260960012674332,0.684904992580414,0.260952413082123,0.681043744087219,0.300684303045273,0.67718118429184,0.307725727558136,0.64900529384613,0.310883104801178,0.649729430675507,0.315686285495758,0.654373109340668,0.305743187665939,0.677222967147827,0.309804499149323,0.67329078912735,0.313093543052673,0.668138206005096,0.269819438457489,0.697504162788391,0.265732824802399,0.69719523191452,0.258293837308884,0.692988395690918,0.296562224626541,0.681494414806366,0.314027845859528,0.650576412677765,0.31307327747345,0.672397017478943,0.319567829370499,0.656883537769318,0.315630584955215,0.669100403785706,0.291966676712036,0.685624122619629,0.289034634828568,0.689871490001678,0.260623276233673,0.699149966239929,0.278101533651352,0.697708010673523,0.284223884344101,0.693898618221283,0.25831663608551,0.688847303390503,0.258311569690704,0.684834122657776,0.258255869150162,0.697335779666901,0.301464140415192,0.681809663772583,0.317714393138886,0.651251196861267,0.309214532375336,0.681589365005493,0.322011172771454,0.661612033843994,0.3185955286026,0.668634474277496,0.266337960958481,0.703575849533081,0.260876476764679,0.705443203449249,0.276898860931396,0.701405942440033,0.258210301399231,0.681104481220245,0.255726426839828,0.69625335931778,0.306766122579575,0.681520998477936,0.297071158885956,0.686025440692902,0.314714014530182,0.681603312492371,0.321322470903397,0.65214878320694,0.323492377996445,0.665913879871368,0.325348347425461,0.654831409454346, +0.315779983997345,0.673408567905426,0.31787645816803,0.672876834869385,0.293736547231674,0.689932286739349,0.290158838033676,0.694053053855896,0.26981183886528,0.705265939235687,0.257992535829544,0.7044278383255,0.28123614192009,0.702608644962311,0.284583419561386,0.697902917861938,0.255587160587311,0.688739717006683,0.255528926849365,0.684759438037872,0.254799723625183,0.704125285148621,0.302854210138321,0.685830473899841,0.307619392871857,0.686026692390442,0.311462938785553,0.685873508453369,0.320532500743866,0.648978710174561,0.325695216655731,0.66164493560791,0.320681899785995,0.67246413230896,0.321360468864441,0.66865473985672,0.261663913726807,0.708789229393005,0.265525192022324,0.708570182323456,0.255698561668396,0.711445271968842,0.276359528303146,0.705601453781128,0.2528475522995,0.692760467529297,0.252634853124619,0.701751530170441,0.296407788991928,0.690956473350525,0.316838353872299,0.685470938682556,0.323730409145355,0.649909198284149,0.331306099891663,0.662752687931061,0.334048211574554,0.655246615409851,0.320760369300842,0.676877379417419,0.326130717992783,0.669994175434113,0.293647915124893,0.693974554538727,0.29033100605011,0.697901666164398,0.255523860454559,0.71645987033844,0.270766377449036,0.709081649780273,0.28011953830719,0.705706536769867,0.286700159311295,0.701771795749664,0.252498149871826,0.688157320022583,0.252829819917679,0.696868658065796,0.252477884292603,0.711438894271851,0.303811281919479,0.689722120761871,0.299400568008423,0.689494252204895,0.31006783246994,0.689623355865479,0.319048762321472,0.681424796581268,0.316395252943039,0.689238488674164,0.328044891357422,0.651082813739777,0.337425887584686,0.658207774162292,0.332812607288361,0.666634202003479,0.323441743850708,0.671727299690247,0.324135512113571,0.676530480384827,0.330455332994461,0.670733511447906,0.259613007307053,0.714877367019653,0.263355284929276,0.714043080806732,0.252632319927216,0.716163575649261,0.277557164430618,0.709656417369843,0.283223748207092,0.705397605895996,0.27179691195488,0.713161945343018,0.25314125418663, +0.684144139289856,0.250083893537521,0.692532598972321,0.250149726867676,0.696662247180939,0.251097947359085,0.701378107070923,0.307237058877945,0.690783023834229,0.301271706819534,0.693240284919739,0.296357125043869,0.694979786872864,0.312812477350235,0.689639806747437,0.321162968873978,0.685581028461456,0.324492514133453,0.693145334720612,0.338350057601929,0.666492462158203,0.340757966041565,0.656079649925232,0.334782510995865,0.652769088745117,0.325282514095306,0.680462658405304,0.326082617044449,0.673836469650269,0.328672826290131,0.673742771148682,0.293592214584351,0.697963714599609,0.293809950351715,0.70177686214447,0.259390205144882,0.718633532524109,0.253498286008835,0.720964252948761,0.275756925344467,0.713197410106659,0.280289173126221,0.710004568099976,0.282659113407135,0.709314584732056,0.287735730409622,0.708701848983765,0.250266194343567,0.685140490531921,0.249615475535393,0.689092934131622,0.249686375260353,0.717657446861267,0.30452024936676,0.693984687328339,0.312853008508682,0.693663120269775,0.30896133184433,0.694051802158356,0.324550747871399,0.685535490512848,0.321702271699905,0.694955706596375,0.318304359912872,0.693608701229095,0.342431604862213,0.666720330715179,0.336099117994308,0.670101761817932,0.327898025512695,0.677519202232361,0.334129244089127,0.674298524856567,0.291353940963745,0.709627270698547,0.263803452253342,0.717062473297119,0.285456955432892,0.709365248680115,0.271508276462555,0.717101693153381,0.247318968176842,0.692322432994843,0.302036374807358,0.697586476802826,0.296810358762741,0.699634850025177,0.32622691988945,0.697772562503815,0.34168216586113,0.670875310897827,0.337357521057129,0.650930881500244,0.344130575656891,0.660120725631714,0.329753994941711,0.684033989906311,0.330295830965042,0.677064716815948,0.295833021402359,0.7093905210495,0.259124338626862,0.722768306732178,0.279873937368393,0.717500507831573,0.282626181840897,0.716339588165283,0.285672158002853,0.713896214962006,0.288333296775818,0.712422609329224,0.275835424661636,0.717404246330261,0.247263267636299,0.688434600830078, +0.247439235448837,0.696363508701324,0.305621653795242,0.69813460111618,0.312812477350235,0.697628200054169,0.318271458148956,0.698677718639374,0.328761458396912,0.694930374622345,0.320892035961151,0.698273897171021,0.323808878660202,0.701489508152008,0.345923215150833,0.667308986186981,0.340281963348389,0.674869477748871,0.340932697057724,0.652380406856537,0.346723318099976,0.655252993106842,0.331260502338409,0.681147575378418,0.329290628433228,0.689705669879913,0.333787441253662,0.678186416625977,0.296855926513672,0.702392160892487,0.296506524085999,0.705595135688782,0.295919090509415,0.713207542896271,0.261853814125061,0.720823705196381,0.253721088171005,0.726824522018433,0.268518000841141,0.721246540546417,0.291105806827545,0.713550567626953,0.272440046072006,0.721033871173859,0.310510903596878,0.69807767868042,0.301864206790924,0.701724946498871,0.329100728034973,0.698829650878906,0.327087819576263,0.701618611812592,0.346606850624084,0.671072781085968,0.337372720241547,0.677882552146912,0.344128042459488,0.674549221992493,0.34732848405838,0.659633278846741,0.348214656114578,0.664061725139618,0.334233045578003,0.686145663261414,0.335587680339813,0.690023422241211,0.300107002258301,0.706186354160309,0.299091666936874,0.709781765937805,0.262345016002655,0.723879814147949,0.258511602878571,0.727379024028778,0.278638333082199,0.721820056438446,0.285581022500992,0.721839070320129,0.288391530513763,0.716545939445496,0.304902583360672,0.701217293739319,0.31009566783905,0.705206453800201,0.315574884414673,0.70158064365387,0.318304359912872,0.703303635120392,0.337114453315735,0.693640351295471,0.321418702602386,0.704965889453888,0.338043689727783,0.697925746440887,0.325442016124725,0.7052241563797,0.350450396537781,0.667755901813507,0.340175628662109,0.678031921386719,0.343219071626663,0.678559839725494,0.336797952651978,0.682345151901245,0.299929767847061,0.713782250881195,0.290877938270569,0.721642792224884,0.262079149484634,0.72670042514801,0.255521327257156,0.729139983654022,0.267571032047272,0.724654614925385,0.288401633501053, +0.720481872558594,0.273670583963394,0.724966049194336,0.314020246267319,0.705539405345917,0.30561152100563,0.705303907394409,0.330060362815857,0.702088296413422,0.337261319160461,0.702117443084717,0.329488128423691,0.705911576747894,0.348214656114578,0.674597322940826,0.351321399211884,0.671381711959839,0.339041292667389,0.681256413459778,0.346178948879242,0.678200304508209,0.340411096811295,0.692369282245636,0.302125006914139,0.709370315074921,0.295460820198059,0.717556178569794,0.268378734588623,0.729023516178131,0.261795580387115,0.731135189533234,0.260038375854492,0.733116507530212,0.252746284008026,0.73246830701828,0.284520119428635,0.725271165370941,0.288082629442215,0.724769830703735,0.278000265359879,0.724511563777924,0.311865538358688,0.709328532218933,0.305325418710709,0.709293067455292,0.320897102355957,0.709620952606201,0.323950678110123,0.709195613861084,0.340124994516373,0.702123761177063,0.326333284378052,0.71245551109314,0.341859400272369,0.682310998439789,0.345371246337891,0.681864082813263,0.340114861726761,0.685978591442108,0.304497450590134,0.713664531707764,0.304335415363312,0.717871427536011,0.294544249773026,0.721489608287811,0.268616735935211,0.732198655605316,0.263674318790436,0.732841789722443,0.255501061677933,0.733041822910309,0.279086470603943,0.732227742671967,0.31613951921463,0.709112048149109,0.341747969388962,0.698157429695129,0.333025306463242,0.705435574054718,0.338063955307007,0.705852091312408,0.330136299133301,0.708830952644348,0.350480794906616,0.678645968437195,0.353681206703186,0.675046741962433,0.348581790924072,0.6818767786026,0.343462139368057,0.68949168920517,0.292690813541412,0.725044548511505,0.273718684911728,0.730840265750885,0.25824573636055,0.735880136489868,0.255663126707077,0.738710880279541,0.286216557025909,0.729156494140625,0.282307177782059,0.729021012783051,0.317218124866486,0.715210318565369,0.311093270778656,0.71287077665329,0.319798231124878,0.713035345077515,0.32359367609024,0.712997376918793,0.344355911016464,0.69377201795578,0.342887371778488,0.701899707317352, +0.340768098831177,0.705879986286163,0.329683095216751,0.713189780712128,0.34383687376976,0.68554562330246,0.347348719835281,0.686158359050751,0.308867663145065,0.717189073562622,0.303659379482269,0.721379458904266,0.298451095819473,0.724936902523041,0.271756410598755,0.735904216766357,0.268216699361801,0.736344754695892,0.263552784919739,0.737839877605438,0.261218279600143,0.741515100002289,0.253083020448685,0.741707503795624,0.280843675136566,0.736516952514648,0.345323145389557,0.69780296087265,0.326690286397934,0.717075109481812,0.33521294593811,0.709553837776184,0.338476657867432,0.709215819835663,0.332506239414215,0.713546812534332,0.354104071855545,0.67828768491745,0.353635638952255,0.682557880878448,0.350774496793747,0.685920357704163,0.346376448869705,0.689875304698944,0.308584064245224,0.721154153347015,0.294974684715271,0.728964030742645,0.251191645860672,0.73702210187912,0.255589693784714,0.748356521129608,0.290617138147354,0.729085564613342,0.276035457849503,0.736418187618256,0.3204565346241,0.717049777507782,0.312815010547638,0.717101693153381,0.32307967543602,0.716578841209412,0.348495721817017,0.69404548406601,0.343472272157669,0.70589005947113,0.348683089017868,0.702128827571869,0.34086686372757,0.709776699542999,0.331359267234802,0.716819405555725,0.357777953147888,0.681733727455139,0.350870728492737,0.688910603523254,0.313820213079453,0.72065407037735,0.305844485759735,0.725166082382202,0.268140733242035,0.740090847015381,0.263628721237183,0.744206547737122,0.258362203836441,0.743648290634155,0.249638259410858,0.741575837135315,0.249343290925026,0.736038386821747,0.252404451370239,0.758193254470825,0.276891261339188,0.740285813808441,0.273255318403244,0.740108549594879,0.321188300848007,0.720588266849518,0.350245326757431,0.698125779628754,0.325662285089493,0.720084369182587,0.334281176328659,0.716140806674957,0.349154025316238,0.705909073352814,0.329062759876251,0.720473051071167,0.353704005479813,0.68557345867157,0.35149359703064,0.694836735725403,0.311457872390747,0.725047051906586,0.3061862885952, +0.728347480297089,0.290115803480148,0.736325800418854,0.260714411735535,0.747346222400665,0.245941564440727,0.739607214927673,0.250052243471146,0.748907208442688,0.249476224184036,0.733156979084015,0.255333960056305,0.754490196704865,0.282291978597641,0.740202248096466,0.323297441005707,0.720764219760895,0.34408500790596,0.710727453231812,0.351382166147232,0.702055394649506,0.337511986494064,0.716704189777374,0.330404698848724,0.721011102199554,0.357018381357193,0.686234295368195,0.354942142963409,0.689765155315399,0.353433072566986,0.694173336029053,0.316866189241409,0.724762201309204,0.311148971319199,0.728686809539795,0.301046371459961,0.732408821582794,0.293544113636017,0.737063825130463,0.267768532037735,0.743910312652588,0.2647605240345,0.749936461448669,0.246540382504463,0.754349708557129,0.251006811857224,0.728547513484955,0.258028000593185,0.751032769680023,0.252986818552017,0.762488722801209,0.248719155788422,0.75813752412796,0.280086606740952,0.748248875141144,0.273718684911728,0.743124127388,0.321876972913742,0.723888695240021,0.352984935045242,0.699120819568634,0.324750781059265,0.724709033966064,0.328490525484085,0.725934505462646,0.349467992782593,0.709414601325989,0.341889768838882,0.716815590858459,0.352156966924667,0.705911576747894,0.335055947303772,0.720386922359467,0.309672832489014,0.73613715171814,0.303585946559906,0.736611902713776,0.29807636141777,0.735552251338959,0.291462808847427,0.740355432033539,0.260114341974258,0.755838513374329,0.247729152441025,0.763071119785309,0.288054764270782,0.740106046199799,0.283995985984802,0.748062789440155,0.276506394147873,0.748142540454865,0.344735711812973,0.716482639312744,0.354344606399536,0.702804863452911,0.339319825172424,0.721028804779053,0.330981999635696,0.727632224559784,0.357605785131454,0.690115809440613,0.320514768362045,0.728867828845978,0.313627779483795,0.73602956533432,0.297947227954865,0.741172015666962,0.269558638334274,0.747905790805817,0.2661252617836,0.753535687923431,0.244027391076088,0.758531272411346,0.250280112028122,0.767189383506775, +0.259463608264923,0.759057939052582,0.244930043816566,0.763088822364807,0.28780409693718,0.7441685795784,0.279914438724518,0.752122819423676,0.276810228824615,0.751782238483429,0.324484914541245,0.728171527385712,0.329361528158188,0.731765687465668,0.352083534002304,0.713278412818909,0.352595001459122,0.709693133831024,0.342241734266281,0.720718622207642,0.335752248764038,0.729032397270203,0.358124852180481,0.694122672080994,0.360611259937286,0.69037789106369,0.305229216814041,0.740290880203247,0.310784369707108,0.740118682384491,0.299501866102219,0.739775598049164,0.296835690736771,0.745313048362732,0.253315955400467,0.76680451631546,0.246359348297119,0.770872116088867,0.255384594202042,0.764018058776855,0.284150451421738,0.751949369907379,0.289353668689728,0.749127507209778,0.271910846233368,0.751808822154999,0.324874848127365,0.731949269771576,0.34745255112648,0.717401742935181,0.354944676160812,0.709215819835663,0.345257312059402,0.72065532207489,0.340216130018234,0.72739040851593,0.361920297145844,0.698023200035095,0.360894829034805,0.686505198478699,0.320362865924835,0.731841623783112,0.315268516540527,0.740401029586792,0.299744933843613,0.747448801994324,0.29136660695076,0.744552195072174,0.294670850038528,0.744768679141998,0.268609136343002,0.754083812236786,0.264846622943878,0.759971976280212,0.240036994218826,0.761243045330048,0.25276905298233,0.77066832780838,0.250095278024673,0.771636784076691,0.258774936199188,0.763300240039825,0.236127600073814,0.769539058208466,0.280924707651138,0.755329549312592,0.278934568166733,0.757099449634552,0.271791845560074,0.755516946315765,0.327905625104904,0.734671115875244,0.353101402521133,0.716970026493073,0.343786239624023,0.724391281604767,0.334539443254471,0.732863306999207,0.320975601673126,0.736442267894745,0.307513058185577,0.744111597537994,0.304948151111603,0.745835900306702,0.312222540378571,0.743678629398346,0.320013433694839,0.740566849708557,0.296549558639526,0.751941800117493,0.299266397953033,0.751902520656586,0.235411062836647,0.766486763954163,0.239050775766373, +0.755670130252838,0.255680829286575,0.77030622959137,0.246337831020355,0.774738490581512,0.258582502603531,0.768556654453278,0.238625407218933,0.773663640022278,0.286588758230209,0.756003081798553,0.288307964801788,0.752760887145996,0.274706155061722,0.7559574842453,0.324084877967834,0.73638778924942,0.355344742536545,0.716642141342163,0.349386960268021,0.721114873886108,0.337354987859726,0.732705056667328,0.315704017877579,0.750325083732605,0.304629117250443,0.75352931022644,0.292270511388779,0.752021551132202,0.301884442567825,0.753869891166687,0.270809441804886,0.758964240550995,0.264140188694,0.764191508293152,0.237441703677177,0.759188294410706,0.254847824573517,0.774470090866089,0.251197963953018,0.77431309223175,0.26074481010437,0.768998503684998,0.233686774969101,0.773656070232391,0.283988416194916,0.760008692741394,0.276774793863297,0.759764313697815,0.329391896724701,0.740601003170013,0.353420436382294,0.724140584468842,0.347756385803223,0.724755883216858,0.33546108007431,0.735250949859619,0.307333290576935,0.75099104642868,0.312888443470001,0.751715183258057,0.318157494068146,0.75021368265152,0.299322098493576,0.755689084529877,0.296671092510223,0.755811929702759,0.266183495521545,0.764991641044617,0.25794443488121,0.774111807346344,0.247924119234085,0.778474450111389,0.238457024097443,0.776981830596924,0.293235212564468,0.756194233894348,0.292060375213623,0.760090947151184,0.283874452114105,0.763205289840698,0.281408309936523,0.765206813812256,0.273587018251419,0.760228931903839,0.321770638227463,0.746632218360901,0.358241319656372,0.728348791599274,0.350635230541229,0.724312782287598,0.312640309333801,0.755177676677704,0.316623121500015,0.755582749843597,0.307710558176041,0.756004333496094,0.304991185665131,0.758890807628632,0.299038499593735,0.759809911251068,0.268877536058426,0.766576647758484,0.2658771276474,0.770808815956116,0.250201642513275,0.778694689273834,0.255898594856262,0.77872633934021,0.244874343276024,0.778340220451355,0.261818379163742,0.776257693767548,0.290536105632782,0.762811601161957, +0.279291570186615,0.766025900840759,0.275179624557495,0.763040721416473,0.326325684785843,0.745759963989258,0.337215721607208,0.740337729454041,0.35374704003334,0.728628575801849,0.320324867963791,0.753874957561493,0.296043157577515,0.759633958339691,0.25846853852272,0.779211223125458,0.24722021818161,0.782205283641815,0.237364485859871,0.781207680702209,0.292992144823074,0.764161109924316,0.286474823951721,0.766667783260345,0.283046513795853,0.772634387016296,0.276362061500549,0.765723347663879,0.271875411272049,0.76785147190094,0.331458002328873,0.747177839279175,0.323279708623886,0.751680970191956,0.313989847898483,0.758645176887512,0.308844864368439,0.761355698108673,0.318547427654266,0.760064363479614,0.307262390851974,0.761888682842255,0.304808884859085,0.766346216201782,0.269037038087845,0.770717680454254,0.265547960996628,0.77604752779007,0.25482502579689,0.784587919712067,0.249983876943588,0.785114526748657,0.244008406996727,0.782277464866638,0.259770005941391,0.784597992897034,0.287393927574158,0.77392190694809,0.279841005802155,0.771846950054169,0.327723324298859,0.75664746761322,0.336048483848572,0.748351454734802,0.323454409837723,0.758752822875977,0.321018636226654,0.760259330272675,0.301735073328018,0.763481259346008,0.29807636141777,0.763749659061432,0.263775587081909,0.781888782978058,0.247182235121727,0.786094427108765,0.238259539008141,0.785013258457184,0.282676845788956,0.779689788818359,0.280185371637344,0.781411528587341,0.273460417985916,0.771179795265198,0.330138832330704,0.756617069244385,0.339114725589752,0.744162261486053,0.31500518321991,0.766596913337708,0.307677626609802,0.76641458272934,0.316324353218079,0.770059406757355,0.301970541477203,0.767693221569061,0.27021187543869,0.774897992610931,0.25336155295372,0.788398504257202,0.257258266210556,0.792431950569153,0.250326961278915,0.789294838905334,0.243714690208435,0.786528646945953,0.262043714523315,0.786526143550873,0.296754658222198,0.770351827144623,0.292126208543777,0.771096229553223,0.288156032562256,0.778356671333313,0.274911254644394, +0.775724709033966,0.327961325645447,0.761325299739838,0.341107398271561,0.737855076789856,0.338945090770721,0.749564230442047,0.333812743425369,0.75684118270874,0.310485601425171,0.767442584037781,0.323867112398148,0.763975024223328,0.320484399795532,0.770337879657745,0.30900439620018,0.770110011100769,0.303737878799438,0.770875930786133,0.299238532781601,0.766842484474182,0.27137154340744,0.786521077156067,0.251839816570282,0.793792903423309,0.246551781892776,0.794756352901459,0.239477425813675,0.789739191532135,0.265910059213638,0.786575496196747,0.29081717133522,0.775451242923737,0.287434428930283,0.784485340118408,0.283651649951935,0.790156960487366,0.276179760694504,0.784998059272766,0.335152179002762,0.761369585990906,0.344728112220764,0.742697536945343,0.336663752794266,0.757399439811707,0.313103675842285,0.770194828510284,0.319101929664612,0.77359277009964,0.299453765153885,0.770978510379791,0.272521048784256,0.781286180019379,0.260516941547394,0.794777870178223,0.295698821544647,0.774334609508514,0.289295434951782,0.782676219940186,0.280139803886414,0.789791107177734,0.328700691461563,0.764662444591522,0.346113115549088,0.739545166492462,0.31420761346817,0.773957371711731,0.325224280357361,0.771806418895721,0.306252121925354,0.774281442165375,0.301512241363525,0.77477902173996,0.274663120508194,0.789279639720917,0.268391400575638,0.792764902114868,0.25799760222435,0.797403514385223,0.254184424877167,0.801017940044403,0.242622137069702,0.798498630523682,0.266489863395691,0.793071269989014,0.298162430524826,0.775904476642609,0.29800546169281,0.782274901866913,0.288943499326706,0.789973437786102,0.279960006475449,0.796032428741455,0.335980117321014,0.765219509601593,0.329093128442764,0.769171893596649,0.349103391170502,0.727224588394165,0.339532494544983,0.76147848367691,0.321689605712891,0.776252627372742,0.271799445152283,0.793516933917999,0.262205749750137,0.800995111465454,0.249680042266846,0.800582408905029,0.237201169133186,0.793091535568237,0.266740530729294,0.796770513057709,0.295789986848831,0.785905778408051, +0.281752675771713,0.80022919178009,0.335919350385666,0.768723785877228,0.339036226272583,0.755225777626038,0.329255193471909,0.776547610759735,0.325300216674805,0.775906980037689,0.315091282129288,0.781427979469299,0.309518367052078,0.778331339359283,0.301489472389221,0.780897557735443,0.27487325668335,0.796633780002594,0.271115809679031,0.798203647136688,0.251885384321213,0.804441154003143,0.238122805953026,0.79964941740036,0.30087673664093,0.78576272726059,0.291999608278275,0.793229520320892,0.287140727043152,0.801133155822754,0.275605022907257,0.800657093524933,0.340568065643311,0.769031405448914,0.341963201761246,0.765565097332001,0.333587408065796,0.773756086826324,0.341803699731827,0.757852673530579,0.332073271274567,0.776238679885864,0.309394299983978,0.782421767711639,0.259286373853683,0.804436087608337,0.265745460987091,0.800939440727234,0.255739063024521,0.80464118719101,0.241744816303253,0.803335964679718,0.296478658914566,0.794832289218903,0.281266510486603,0.804263949394226,0.33762338757515,0.771621584892273,0.345191478729248,0.76061886548996,0.343026638031006,0.753849625587463,0.326713085174561,0.784870207309723,0.330933898687363,0.779253005981445,0.321780771017075,0.783121883869171,0.306176155805588,0.786004543304443,0.269662439823151,0.801458477973938,0.264046519994736,0.804323434829712,0.300005733966827,0.792669951915741,0.294799953699112,0.80069637298584,0.287819296121597,0.804650068283081,0.276967227458954,0.804845035076141,0.345687747001648,0.773711740970612,0.344920545816422,0.768809854984283,0.345991581678391,0.764697909355164,0.338874191045761,0.780055642127991,0.334701478481293,0.780551910400391,0.347320884466171,0.751482248306274,0.317294090986252,0.785933613777161,0.310875535011292,0.785831093788147,0.267715364694595,0.804636120796204,0.306087553501129,0.789047956466675,0.301403373479843,0.797907412052155,0.28406435251236,0.808529078960419,0.278278768062592,0.807696044445038,0.347860187292099,0.760889828205109,0.345173746347427,0.749756693840027,0.35003262758255,0.752239286899567,0.32159087061882, +0.786665380001068,0.330660432577133,0.788920104503632,0.333319008350372,0.782957315444946,0.26763179898262,0.808194816112518,0.271558910608292,0.805132389068604,0.303864449262619,0.796190679073334,0.300456404685974,0.805196940898895,0.29082727432251,0.808542966842651,0.274326354265213,0.808863282203674,0.344388842582703,0.780362010002136,0.349042624235153,0.769411206245422,0.338947623968124,0.783782720565796,0.342079669237137,0.749775648117065,0.351683467626572,0.745404183864594,0.326880186796188,0.790392458438873,0.337246119976044,0.787318646907806,0.311900973320007,0.789637923240662,0.317002922296524,0.789542973041534,0.309158831834793,0.792788982391357,0.309812098741531,0.801307857036591,0.298040896654129,0.808461964130402,0.34993389248848,0.778797268867493,0.341783434152603,0.78350043296814,0.350761830806732,0.774551093578339,0.351584732532501,0.754737079143524,0.348842591047287,0.743916690349579,0.354142040014267,0.748562872409821,0.32226437330246,0.790183544158936,0.329156428575516,0.794019520282745,0.33286327123642,0.790432989597321,0.313610076904297,0.797227561473846,0.302907377481461,0.808349251747131,0.291670441627502,0.81176620721817,0.349047690629959,0.785458922386169,0.341287165880203,0.788345336914063,0.351506233215332,0.742167055606842,0.354182541370392,0.739384412765503,0.323573410511017,0.793998003005981,0.33714485168457,0.794366419315338,0.313951879739761,0.793197870254517,0.312564343214035,0.801200211048126,0.308265060186386,0.808225214481354,0.298481464385986,0.812239646911621,0.287953495979309,0.812468826770782,0.353496372699738,0.780600011348724,0.345275044441223,0.788573205471039,0.35461550951004,0.753211557865143,0.332845538854599,0.794084072113037,0.324406445026398,0.797575712203979,0.316557288169861,0.800544440746307,0.303489744663239,0.812030792236328,0.353635638952255,0.788369417190552,0.353083670139313,0.77480810880661,0.347953885793686,0.790577292442322,0.344469875097275,0.792106628417969,0.341117531061172,0.797380745410919,0.33189857006073,0.79727691411972,0.328895628452301,0.797527611255646, +0.335430681705475,0.798622667789459,0.312321275472641,0.8067427277565,0.357555150985718,0.78703761100769,0.350658029317856,0.792325615882874,0.353387504816055,0.769301056861877,0.357410818338394,0.780717730522156,0.328890591859818,0.800872325897217,0.317175090312958,0.805145084857941,0.309184163808823,0.811801612377167,0.356134712696075,0.792550981044769,0.354086339473724,0.795679211616516,0.356668949127197,0.770934164524078,0.358610987663269,0.777004599571228,0.347156286239624,0.79462343454361,0.342740505933762,0.797958016395569,0.340385764837265,0.800783693790436,0.332296103239059,0.801029324531555,0.324730515480042,0.80577427148819,0.32097053527832,0.80679589509964,0.313992381095886,0.811920642852783,0.359659224748611,0.790826678276062,0.360416293144226,0.783611834049225,0.350554227828979,0.798956871032715,0.361669629812241,0.777408480644226,0.348546355962753,0.795705854892731,0.344793945550919,0.797473132610321,0.336043417453766,0.801571190357208,0.318096727132797,0.81160032749176,0.362011432647705,0.786704659461975,0.358907222747803,0.795366525650024,0.356041014194489,0.803239762783051,0.360793560743332,0.773367404937744,0.346376448869705,0.800938189029694,0.342760771512985,0.801643311977386,0.337436020374298,0.80495011806488,0.330308496952057,0.804305732250214,0.321801036596298,0.811326920986176,0.36432820558548,0.792468667030334,0.361449331045151,0.795684278011322,0.351134032011032,0.805374205112457,0.348095655441284,0.801631927490234,0.363082468509674,0.769411206245422,0.340970665216446,0.804813385009766,0.367045015096664,0.790046870708466,0.359565556049347,0.80433988571167,0.356099247932434,0.808937966823578,0.358056485652924,0.765481531620026,0.345887780189514,0.804998219013214,0.339046359062195,0.80815178155899,0.335602849721909,0.808617651462555,0.367566615343094,0.782645881175995,0.365346044301987,0.804625988006592,0.351688534021378,0.816850423812866,0.347650021314621,0.809468388557434,0.363350868225098,0.763791441917419,0.343692541122437,0.805181741714478,0.34077063202858,0.808880984783173,0.363300204277039, +0.811681389808655,0.359005987644196,0.815902173519135,0.356185346841812,0.81543630361557,0.34790575504303,0.815513551235199,0.359185755252838,0.761234164237976,0.345143377780914,0.810572385787964,0.343102604150772,0.809048116207123,0.367493182420731,0.810521721839905,0.348475456237793,0.825119853019714,0.344173610210419,0.825937688350677,0.344520509243011,0.815460324287415,0.362968534231186,0.815890789031982,0.356048613786697,0.820096433162689,0.342383503913879,0.812928378582001,0.33995532989502,0.812076330184937,0.360666960477829,0.821088969707489,0.358076751232147,0.821692824363709,0.346396714448929,0.82953941822052,0.352992504835129,0.825797200202942,0.335012912750244,0.822786629199982,0.335440814495087,0.81869113445282,0.365404307842255,0.817704975605011,0.337555021047592,0.830026865005493,0.335167348384857,0.826265573501587,0.337162554264069,0.814655184745789,0.359755456447601,0.833780527114868,0.354458540678024,0.828555762767792,0.35018202662468,0.831427037715912,0.330257833003998,0.822525858879089,0.330513566732407,0.826182007789612,0.33311140537262,0.814802050590515,0.36228996515274,0.828197479248047,0.330014765262604,0.829487562179565,0.331670701503754,0.818650662899017,0.365381509065628,0.830933272838593,0.326629519462585,0.826018691062927,0.328153759241104,0.818492412567139,0.324758380651474,0.822372674942017,0.326181352138519,0.830039501190186,0.32146680355072,0.824840068817139,0.323439210653305,0.818700015544891,0.321484535932541,0.822434723377228,0.31864869594574,0.829419195652008,0.31877276301384,0.822334706783295,0.645412445068359,0.906887710094452,0.644432544708252,0.909976720809937,0.642803192138672,0.907680213451386,0.711788356304169,0.905860960483551,0.71397852897644,0.905571043491364,0.714200079441071,0.90938675403595,0.876174747943878,0.91027170419693,0.875545561313629,0.907752394676209,0.879467606544495,0.908434748649597,0.87613046169281,0.905419170856476,0.642079055309296,0.899053752422333,0.646593570709229,0.891736328601837,0.650920748710632,0.899000585079193,0.647646903991699,0.903089702129364, +0.781331777572632,0.897002816200256,0.783438384532928,0.893161833286285,0.783792853355408,0.89669394493103,0.777499616146088,0.893133997917175,0.783290266990662,0.900879323482513,0.837256908416748,0.895184874534607,0.839756011962891,0.901962995529175,0.83500599861145,0.898590385913849,0.196455240249634,0.950942933559418,0.201691374182701,0.955440998077393,0.197946578264236,0.957485556602478,0.20104318857193,0.960250496864319,0.196640074253082,0.960693597793579,0.201276138424873,0.965090394020081,0.196343839168549,0.964640974998474,0.196835041046143,0.970739245414734,0.201620489358902,0.968211054801941,0.203443512320518,0.974381506443024,0.198356762528419,0.982838332653046,0.204851299524307,0.970165729522705,0.204461365938187,0.977442681789398,0.193984031677246,0.972839534282684,0.202167391777039,0.987005949020386,0.193153530359268,0.980678558349609,0.194135949015617,0.966369032859802,0.197817444801331,0.987299680709839,0.200326636433601,0.992410480976105,0.526544690132141,0.903320133686066,0.525210380554199,0.893447935581207,0.528757691383362,0.890880525112152,0.530066728591919,0.898253619670868,0.533424079418182,0.89917778968811,0.534581243991852,0.902278244495392,0.531707406044006,0.891964197158813,0.528501927852631,0.90660160779953,0.491405874490738,0.913981080055237,0.494254350662231,0.915697753429413,0.494429051876068,0.919442534446716,0.48960942029953,0.91822212934494,0.488525718450546,0.92249608039856,0.494611352682114,0.923200011253357,0.49391758441925,0.926539659500122,0.487116694450378,0.926570057868958,0.494460701942444,0.930656671524048,0.487472414970398,0.930274367332459,0.484137803316116,0.93078076839447,0.486548244953156,0.934533178806305,0.492964297533035,0.935226917266846,0.481928646564484,0.93414831161499,0.495460838079453,0.932388544082642,0.493602365255356,0.938237428665161,0.480066388845444,0.930459201335907,0.496459692716599,0.934120416641235,0.481114625930786,0.936870157718658,0.476978629827499,0.932489812374115,0.48237806558609,0.927061259746552,0.497977614402771,0.937574088573456,0.866543114185333, +0.895184874534607,0.869297921657562,0.897364914417267,0.866586148738861,0.901722431182861,0.86917507648468,0.901545226573944,0.0402775071561337,0.946563839912415,0.03733154758811,0.948655307292938,0.0382633171975613,0.943406462669373,0.0388355441391468,0.952863454818726,0.0336956195533276,0.954461097717285,0.0435108505189419,0.953149557113647,0.0353565998375416,0.947786808013916,0.035874392837286,0.958626210689545,0.0417511239647865,0.95868444442749,0.046068150550127,0.951886117458344,0.0313902497291565,0.958712339401245,0.0447084791958332,0.962500154972076,0.0386519767343998,0.962814152240753,0.0342032834887505,0.962563455104828,0.029907776042819,0.95481812953949,0.0420587584376335,0.962920486927032,0.0315928086638451,0.951475918292999,0.0413649939000607,0.966718435287476,0.0448629297316074,0.966842532157898,0.0471682995557785,0.963277459144592,0.0476025342941284,0.958750307559967,0.0483393408358097,0.966804504394531,0.0448072254657745,0.970706343650818,0.0475620217621326,0.970782279968262,0.0419081039726734,0.971194982528687,0.0501421131193638,0.970736682415009,0.0516473762691021,0.966771602630615,0.0474594756960869,0.974868893623352,0.0496002659201622,0.963125586509705,0.0526778921484947,0.970713913440704,0.050234530121088,0.974863827228546,0.0446413792669773,0.974471390247345,0.0484963245689869,0.980373442173004,0.0538793168962002,0.974673926830292,0.0446147955954075,0.977973103523254,0.0518119558691978,0.978476941585541,0.0555947348475456,0.971167147159576,0.0542287304997444,0.984589159488678,0.0556732267141342,0.978859305381775,0.0577215999364853,0.97463846206665,0.0565910711884499,0.982328116893768,0.0592496506869793,0.978958070278168,0.0586622320115566,0.98724776506424,0.0611043274402618,0.982872486114502,0.062493123114109,0.986878097057343,0.0625716149806976,0.978821337223053,0.0640199035406113,0.983282685279846,0.0610384978353977,0.990954577922821,0.0599459484219551,0.974557459354401,0.0660948678851128,0.986966729164124,0.0642794370651245,0.990483641624451,0.0666443035006523,0.991126775741577,0.069204144179821, +0.987430036067963,0.0690319687128067,0.991757214069366,0.0672380551695824,0.995269060134888,0.0708005577325821,0.995372891426086,0.0640844702720642,0.99489688873291,0.492464244365692,0.886181175708771,0.496804058551788,0.883330166339874,0.497163593769073,0.886598944664001,0.501417338848114,0.887082517147064,0.500358939170837,0.881722331047058,0.496664792299271,0.880560159683228,0.50509124994278,0.881157696247101,0.493094682693481,0.880904495716095,0.500895738601685,0.878716886043549,0.504767119884491,0.886057078838348,0.497376263141632,0.87690144777298,0.504412651062012,0.874635338783264,0.508235931396484,0.883697271347046,0.501508474349976,0.87612920999527,0.508127093315125,0.879694223403931,0.500391840934753,0.872771799564362,0.50917786359787,0.877276182174683,0.509352564811707,0.881522297859192,0.504929184913635,0.871303200721741,0.512193441390991,0.879557490348816,0.508886694908142,0.87403267621994,0.500703275203705,0.869318127632141,0.512727677822113,0.875850677490234,0.508871495723724,0.870786726474762,0.505007684230804,0.866836786270142,0.494981020689011,0.874425172805786,0.512135207653046,0.873432636260986,0.501845240592957,0.866821587085724,0.516234457492828,0.873688340187073,0.508428394794464,0.867231786251068,0.513234078884125,0.87083226442337,0.51729029417038,0.871596932411194,0.516528189182281,0.867968618869781,0.508955061435699,0.864244043827057,0.516171157360077,0.869905591011047,0.504415214061737,0.864403545856476,0.513008713722229,0.864694774150848,0.520290732383728,0.869758725166321,0.504919052124023,0.861631035804749,0.508944928646088,0.861403167247772,0.517259955406189,0.864892244338989,0.499034732580185,0.864568173885345,0.51287454366684,0.861332297325134,0.520784437656403,0.86740905046463,0.504822850227356,0.859256029129028,0.508871495723724,0.858496427536011,0.51673835515976,0.861387968063354,0.512803673744202,0.85805082321167,0.52060467004776,0.864573240280151,0.504896283149719,0.856268286705017,0.508911967277527,0.855731546878815,0.516756057739258,0.858425557613373,0.521151602268219,0.861428499221802, +0.4991714656353,0.857772290706635,0.513013780117035,0.853766739368439,0.524774849414825,0.863565504550934,0.509147465229034,0.85140186548233,0.517229557037354,0.854414880275726,0.520705938339233,0.858585059642792,0.505134284496307,0.850181400775909,0.5128213763237,0.849143326282501,0.524650812149048,0.861008167266846,0.508499264717102,0.848517894744873,0.520769238471985,0.854660511016846,0.520822405815125,0.849943399429321,0.524729251861572,0.858073592185974,0.505488753318787,0.845603585243225,0.509175300598145,0.844504714012146,0.516758620738983,0.846355617046356,0.513155579566956,0.844114780426025,0.525114119052887,0.855556845664978,0.524640679359436,0.851548671722412,0.520964205265045,0.845497250556946,0.504589915275574,0.843020975589752,0.509018301963806,0.841443538665771,0.524779915809631,0.847631692886353,0.513089776039124,0.841410636901855,0.517090320587158,0.842013239860535,0.528998196125031,0.853007137775421,0.528676629066467,0.847874820232391,0.521035134792328,0.841147303581238,0.524759650230408,0.844292044639587,0.509203195571899,0.837794959545136,0.51298850774765,0.836389720439911,0.517087757587433,0.837296187877655,0.532765805721283,0.85037636756897,0.528818428516388,0.844109714031219,0.524876117706299,0.837698757648468,0.521032571792603,0.835300981998444,0.509334802627563,0.834569215774536,0.528919696807861,0.840043365955353,0.532917737960815,0.847062051296234,0.513669610023499,0.833657681941986,0.517085254192352,0.833445012569427,0.532722771167755,0.84171450138092,0.520513534545898,0.826502323150635,0.528719663619995,0.834100782871246,0.517178893089294,0.828444361686707,0.513130247592926,0.831654906272888,0.532816410064697,0.8362757563591,0.536887884140015,0.843172907829285,0.524919152259827,0.823367714881897,0.509015798568726,0.832244873046875,0.536685287952423,0.838189959526062,0.5206578373909,0.819929301738739,0.516700387001038,0.823076546192169,0.532705008983612,0.83105480670929,0.528955161571503,0.820921838283539,0.513059377670288,0.829054594039917,0.536540985107422,0.833407044410706,0.517682790756226, +0.820924341678619,0.525271117687225,0.816404759883881,0.514297485351563,0.824805915355682,0.508820831775665,0.830080032348633,0.541027665138245,0.834523677825928,0.517171323299408,0.818622827529907,0.52126806974411,0.815938889980316,0.513504981994629,0.820653438568115,0.513079643249512,0.822719573974609,0.536647319793701,0.828558325767517,0.532740473747253,0.819114029407501,0.529145061969757,0.813237249851227,0.511347770690918,0.827188491821289,0.517234623432159,0.816338956356049,0.520832538604736,0.812857449054718,0.511671841144562,0.824891984462738,0.536723256111145,0.821395337581635,0.540523767471313,0.829685032367706,0.52449631690979,0.812834680080414,0.517305493354797,0.814022183418274,0.540939033031464,0.823884248733521,0.53318864107132,0.81077367067337,0.536958754062653,0.81300687789917,0.525088846683502,0.808363199234009,0.521197140216827,0.810469806194305,0.541349232196808,0.812941014766693,0.545033276081085,0.829191267490387,0.529129862785339,0.808274567127228,0.521726369857788,0.808548033237457,0.545385181903839,0.814184248447418,0.544820547103882,0.822856247425079,0.529129862785339,0.805547654628754,0.536913156509399,0.808072030544281,0.524959683418274,0.805674254894257,0.545152246952057,0.806094527244568,0.529433727264404,0.802605450153351,0.541382133960724,0.804547488689423,0.520845234394073,0.806249022483826,0.548641324043274,0.81957483291626,0.549221158027649,0.808439195156097,0.52479761838913,0.802448511123657,0.53658401966095,0.802367448806763,0.549335062503815,0.813619613647461,0.544893980026245,0.798351764678955,0.549223661422729,0.800164639949799,0.525926887989044,0.799787402153015,0.529256463050842,0.800068438053131,0.536895453929901,0.799131572246552,0.553021669387817,0.813328444957733,0.541004836559296,0.796799659729004,0.553095102310181,0.806605994701386,0.53272020816803,0.799673438072205,0.544549643993378,0.793784081935883,0.553335607051849,0.800762176513672,0.537282824516296,0.796589493751526,0.532925307750702,0.795845091342926,0.536799252033234,0.793799221515656,0.765998065471649,0.908237278461456, +0.764058589935303,0.908824682235718,0.763442039489746,0.904770970344543,0.632804393768311,0.899348735809326,0.632820844650269,0.891736328601837,0.635882019996643,0.897505462169647,0.635580718517303,0.901678144931793,0.635589599609375,0.903155565261841,0.517820775508881,0.906773746013641,0.517790377140045,0.89845871925354,0.517932176589966,0.890883028507233,0.91076672077179,0.916871309280396,0.910614788532257,0.91159462928772,0.91071605682373,0.913964569568634,0.828055679798126,0.895187437534332,0.827962040901184,0.898590385913849,0.825731337070465,0.898296713829041,0.826716303825378,0.902195930480957,0.925904154777527,0.905325472354889,0.926218092441559,0.901821196079254,0.927129626274109,0.907654881477356,0.705891370773315,0.905760943889618,0.705949604511261,0.909569084644318,0.70274156332016,0.907006680965424,0.696902811527252,0.909566521644592,0.693456768989563,0.909318387508392,0.695372223854065,0.905753374099731,0.651251196861267,0.909531116485596,0.65333878993988,0.906887710094452,0.653184354305267,0.910171687602997,0.636135220527649,0.906953513622284,0.636965751647949,0.909905850887299,0.634138762950897,0.909819722175598,0.832146108150482,0.91037929058075,0.829202711582184,0.909769117832184,0.831735908985138,0.906001508235931,0.794005572795868,0.900871694087982,0.791876196861267,0.900724828243256,0.793156147003174,0.897433280944824,0.79048490524292,0.897539615631104,0.791317880153656,0.893133997917175,0.805954039096832,0.899550020694733,0.806589543819427,0.902808666229248,0.804055035114288,0.902560532093048,0.803809463977814,0.899025917053223,0.80552738904953,0.895184874534607,0.801615476608276,0.9018794298172,0.790611505508423,0.90466970205307,0.791296362876892,0.908847451210022,0.788692235946655,0.90861701965332,0.677309095859528,0.894055604934692,0.67417699098587,0.892311096191406,0.678073704242706,0.891736328601837,0.674650490283966,0.895433008670807,0.670515775680542,0.894369602203369,0.672784388065338,0.897501647472382,0.669905543327332,0.897524416446686,0.672065317630768,0.901507258415222,0.626103520393372, +0.900043725967407,0.626842856407166,0.903330266475677,0.624434947967529,0.903264462947845,0.623484194278717,0.900643825531006,0.623772859573364,0.896339476108551,0.621097803115845,0.899861454963684,0.619819164276123,0.896060943603516,0.621119320392609,0.891736328601837,0.670249879360199,0.909439921379089,0.667778670787811,0.905824244022369,0.670265078544617,0.906842112541199,0.755377650260925,0.893133997917175,0.758175492286682,0.901048958301544,0.75523841381073,0.898273885250092,0.916883945465088,0.911506056785584,0.920150220394135,0.914146900177002,0.916605472564697,0.91686624288559,0.560456812381744,0.909923553466797,0.560987293720245,0.894865870475769,0.563862323760986,0.899296820163727,0.505151987075806,0.894913971424103,0.504812717437744,0.890880525112152,0.508658766746521,0.895630538463593,0.508620798587799,0.902613699436188,0.504805088043213,0.90475070476532,0.511180639266968,0.911500990390778,0.583277583122253,0.902428865432739,0.580862045288086,0.894865870475769,0.586783111095428,0.901746511459351,0.585580408573151,0.90833854675293,0.698638498783112,0.898767650127411,0.695876121520996,0.898937284946442,0.69843590259552,0.893133997917175,0.696987628936768,0.901955425739288,0.57395988702774,0.894865870475769,0.569731473922729,0.908729732036591,0.570977210998535,0.9038125872612,0.678083837032318,0.908860087394714,0.676103830337524,0.908895552158356,0.676909029483795,0.905305206775665,0.628296196460724,0.907128214836121,0.625465452671051,0.910029888153076,0.626478254795074,0.907518148422241,0.927116990089417,0.914029181003571,0.925987720489502,0.91146045923233,0.928598165512085,0.916832089424133,0.823365211486816,0.906117975711823,0.823323428630829,0.910409688949585,0.82192325592041,0.909941256046295 + } + UVIndex: *91014 { + a: 12,7,3,1,3,7,12,3,11,0,3,1,1,7,4,11,3,6,11,25,12,6,3,0,0,1,2,4,7,13,2,1,4,17,11,6,25,11,35,0,9,6,5,0,2,8,4,13,2,4,8,17,26,11,18,17,6,11,26,35,25,35,46,0,5,9,18,6,9,5,2,10,14,2,8,26,17,36,31,17,18,49,35,26,35,59,46,15,9,5,15,18,9,10,2,14,16,5,10,14,8,22,17,31,36,26,36,48,31,18,15,49,59,35,26,48,49,46,59,75,5,23,15,10,14,24,5,16,23,16,10,24,14,22,30,31,41,36,48,36,63,31,15,41,49,78,59,77,49,48,78,75,59,32,15,23,14,30,24,16,33,23,34,16,24,22,40,30,41,55,36,63,36,55,48,63,76,32,41,15,78,49,96,77,95,49,48,94,77,78,111,75,42,32,23,30,43,24,16,34,33,23,33,44,34,24,45,39,40,22,40,54,30,41,32,55,63,55,70,63,70,76,48,76,94,96,49,95,117,78,96,95,77,115,94,116,77,117,111,78,42,55,32,23,44,42,30,56,43,45,24,43,57,33,34,57,44,33,58,34,45,40,39,67,40,69,54,54,56,30,70,55,42,76,70,114,94,76,114,96,95,140,142,117,96,115,77,116,95,115,139,116,94,141,117,160,111,42,44,71,56,72,43,45,43,72,57,34,58,73,44,57,74,58,45,67,85,40,85,69,40,86,54,69,54,87,56,42,71,70,70,106,114,94,114,138,140,95,139,142,96,140,167,117,142,115,116,165,139,115,165,141,94,166,7194,7195,7196,167,160,117,73,71,44,56,87,72,72,74,45,57,58,88,73,57,89,74,90,58,100,85,67,103,69,85,104,54,86,86,69,105,87,54,104,70,71,106,114,106,155,7331,7332,7333,7204,7201,7197,140,139,192,140,192,142,142,193,167,165,116,190,191,139,165,7194,7196,7197,211,160,167,73,107,71,87,108,72,74,72,108,88,58,90,88,89,57,73,89,109,74,110,90,100,103,85,103,128,69,104,86,129,128,105,69,86,105,130,104,131,87,107,106,71,154,155,106,138,155,154,7199,7197,7201,191,192,139,142,192,193,167,193,219,165,190,218,218,191,165,7194,7197,7198,167,219,211,73,109,107,87,131,108,74,108,132,133,88,90,88,134,89,135,109,89,74,136,110,110,133,90,100,147,103,147,128,103,129,86,130,104,129,151,105,128,152,105,153,130,104,151,131,154,106,107,138,154,232,7199,7198,7197,7201,7205,7199,192,191,243,245,193,192,219,193,246,218,190,242,191,218,244,190,273,242,268,211,219,156,107,109,108,131,132,74,132,136,157,88,133,157,134,88,135,89,134,158,109,135,136,159,110,133,110,159,100,176,147,128,147,152,129, +130,179,129,179,151,152,180,105,153,105,181,153,179,130,151,182,131,156,154,107,206,232,154,7200,7198,7199,7203,7199,7205,274,243,191,192,243,245,245,246,193,219,246,275,218,242,244,274,191,244,242,273,302,268,219,275,183,156,109,184,132,131,184,136,132,133,159,157,157,185,134,134,186,135,183,109,158,158,135,187,188,159,136,176,100,148,176,152,147,202,151,179,180,152,203,180,181,105,153,181,204,153,204,179,182,151,205,131,182,184,206,154,156,261,232,206,7202,7198,7200,7199,7203,7200,7203,7205,7209,243,274,304,245,243,305,245,307,246,308,275,246,303,244,242,274,244,306,242,302,303,268,275,332,206,156,183,184,207,136,157,159,208,185,157,208,185,186,134,135,186,187,209,183,158,158,187,210,208,159,188,188,136,207,152,176,148,151,202,205,204,202,179,203,152,148,203,227,180,180,230,181,230,204,181,231,182,205,184,182,231,261,291,232,206,233,261,7202,7200,7206,7200,7203,7207,7203,7209,7210,304,274,338,243,304,305,245,305,307,307,308,246,275,308,340,303,306,244,274,306,339,303,302,371,275,340,332,206,183,233,184,234,207,235,185,208,185,236,186,187,186,236,209,233,183,158,210,209,237,210,187,238,208,188,188,207,234,205,202,256,204,257,202,227,203,148,258,180,227,230,180,259,230,257,204,256,231,205,260,184,231,7209,7219,7215,292,261,233,7200,7207,7206,7202,7206,7208,7207,7203,7210,7209,7215,7210,274,339,338,304,338,373,305,304,373,374,307,305,375,308,307,340,308,376,303,372,306,339,306,372,303,371,372,332,340,403,234,184,262,185,235,236,235,208,238,187,236,263,264,233,209,264,209,210,210,237,265,187,266,237,238,188,234,286,256,202,202,257,286,180,258,287,259,180,287,230,259,288,230,288,257,289,231,256,260,262,184,290,260,231,292,323,261,264,292,233,7207,7211,7206,7208,7206,7212,7213,7207,7210,7210,7215,7216,409,338,339,410,373,338,305,373,374,374,375,307,375,376,308,412,340,376,339,372,411,7212,7214,7208,403,340,412,234,262,293,294,236,235,238,295,235,263,236,296,266,187,263,264,210,265,265,237,297,266,298,237,299,238,234,317,256,286,257,317,286,258,318,287,319,259,287,288,259,319,257,288,320,289,290,231,321,289,256,262,260, +293,260,290,322,323,292,329,264,329,292,7211,7207,7213,7211,7212,7206,7213,7210,7216,7215,7222,7216,409,447,338,339,411,409,410,448,373,449,410,338,450,374,373,451,375,374,376,375,453,453,412,376,411,372,452,7218,7214,7212,412,483,403,293,324,234,294,325,236,294,235,295,238,326,295,236,325,296,327,263,296,263,328,266,264,265,329,298,297,237,265,297,330,331,298,266,326,238,299,234,324,299,317,321,256,317,257,320,318,357,287,319,287,357,319,320,288,289,358,290,321,359,289,260,322,293,290,360,322,393,323,329,7211,7213,7217,7217,7212,7211,7220,7213,7216,7222,7220,7216,409,490,447,338,447,491,409,411,490,449,448,410,450,373,448,338,491,449,450,451,374,451,453,375,453,493,412,411,452,492,7218,7212,7217,412,493,483,324,293,322,294,361,325,362,294,295,363,295,326,361,296,325,263,327,364,296,361,327,328,263,364,266,328,331,330,329,265,298,365,297,330,297,366,331,367,298,326,299,368,324,368,299,388,321,317,317,320,388,318,389,357,319,357,390,320,319,391,358,289,359,358,360,290,388,359,321,360,392,322,330,393,329,7217,7213,7221,7213,7220,7221,7222,7226,7220,527,447,490,528,491,447,492,490,411,529,448,449,450,448,530,449,491,531,451,450,530,453,451,532,493,453,533,7218,7224,7228,7218,7217,7224,565,483,493,324,322,394,294,362,361,363,362,295,326,395,363,327,396,364,327,361,397,364,398,328,328,398,331,399,365,298,366,297,365,330,366,400,331,401,367,367,399,298,326,368,395,324,394,368,388,320,429,357,389,430,431,390,357,391,319,390,320,391,429,432,358,359,358,433,360,434,359,388,433,392,360,435,322,392,393,330,400,7221,7223,7217,7225,7221,7220,7220,7226,7225,527,528,447,574,527,490,528,575,491,574,490,492,530,448,529,449,576,529,491,575,531,449,531,576,451,530,532,533,453,532,577,493,533,7224,7231,7228,7223,7224,7217,566,483,565,565,493,607,435,394,322,362,397,361,436,362,363,437,363,395,396,327,438,396,439,364,397,438,327,364,439,398,440,331,398,399,441,365,366,365,442,7244,7238,7226,443,401,331,444,367,401,444,399,367,395,368,445,368,394,445,388,429,434,431,357,430,472,390,431,391,390,472,429,391,472,432,433,358,434,432,359,433, +473,392,474,435,392,7227,7223,7221,7227,7221,7225,7233,7225,7226,610,528,527,574,611,527,612,575,528,7231,7236,7228,530,529,613,576,614,529,576,531,575,530,613,532,532,615,533,577,607,493,615,577,533,7231,7224,7230,7230,7224,7223,566,565,650,607,650,565,435,475,394,436,397,362,436,363,437,395,476,437,477,396,438,478,439,396,438,397,479,398,439,480,443,331,440,398,480,440,12627,12628,12629,442,365,441,7233,7226,7238,12630,12631,12632,12630,12634,12638,399,444,481,476,395,445,482,445,394,510,434,429,431,512,472,429,472,512,513,433,432,514,432,434,513,473,433,473,474,392,435,474,515,7223,7227,7229,7227,7225,7232,7225,7233,7237,612,528,610,527,611,610,7236,7240,7249,657,575,612,7240,7236,7231,613,529,658,576,659,614,658,529,614,576,575,660,615,532,613,577,661,607,661,577,615,7231,7230,7240,7230,7223,7235,651,566,650,607,689,650,516,475,435,482,394,475,436,479,397,437,479,436,476,479,437,396,477,478,517,477,438,439,478,518,519,438,479,480,439,520,12636,12633,12631,521,440,480,7256,7266,7252,442,441,522,7243,7233,7238,12633,12632,12631,12632,12634,12630,12638,12634,12641,12638,12641,12645,523,476,445,524,445,482,510,551,434,512,510,429,553,512,431,513,432,554,514,555,432,514,434,551,556,473,513,473,556,474,474,557,515,515,516,435,7227,7234,7229,7223,7229,7235,7225,7237,7232,7227,7232,7234,7243,7237,7233,612,610,694,695,610,611,7240,7247,7249,657,660,575,612,696,657,613,658,697,660,659,576,659,658,614,613,697,615,661,689,607,698,661,615,7240,7230,7247,7230,7235,7241,650,733,651,650,689,734,516,558,475,482,475,559,476,560,479,518,478,477,477,517,561,517,438,519,518,562,439,560,519,479,439,562,520,521,480,520,521,563,440,7252,7266,7264,7243,7256,7252,12633,12635,12632,12632,12637,12634,12640,12641,12634,7282,7264,7266,523,564,476,524,523,445,482,559,524,551,510,594,512,595,510,553,595,512,552,553,431,555,554,432,597,513,554,514,551,555,597,556,513,557,474,556,515,557,598,515,599,516,7239,7229,7234,7239,7235,7229,7237,7242,7232,7242,7234,7232,7243,7252,7237,695,694,610,694,738,612,7269,7279,7249,7247,7261,7249,660,657,739,696, +612,740,739,657,696,658,741,697,660,742,659,658,659,743,698,615,697,661,744,689,745,661,698,7247,7230,7241,7235,7248,7241,733,650,734,734,689,744,558,516,599,475,558,559,476,564,560,477,600,518,561,517,601,477,561,600,601,517,519,602,562,518,601,519,560,520,562,603,520,604,521,12639,12635,12633,7252,7264,7250,12637,12632,12635,12637,12640,12634,7282,7291,7271,7271,7264,7282,605,564,523,523,524,606,559,606,524,594,510,595,638,551,594,640,595,553,552,639,553,597,554,555,555,551,638,597,641,556,557,556,642,642,598,557,598,599,515,7239,7234,7245,7239,7246,7235,7250,7242,7237,7251,7234,7242,7252,7250,7237,695,738,694,740,612,738,7269,7287,7279,7269,7249,7261,7261,7247,7254,660,739,742,13792,13793,13794,777,739,696,658,743,741,741,778,697,779,659,742,779,743,659,698,697,778,661,780,744,661,745,780,698,781,745,7247,7241,7254,7246,7248,7235,7248,7254,7241,813,733,734,744,813,734,558,599,643,559,558,644,564,601,560,602,518,600,601,645,561,600,561,646,602,647,562,12653,12677,12669,12653,12646,12660,12646,12642,12639,12639,12642,12635,7264,7271,7250,12637,12635,12643,12640,12637,12644,12663,12640,12658,605,648,564,523,649,605,523,606,649,559,644,606,595,677,594,638,594,678,640,680,595,639,640,553,597,555,638,681,641,597,641,682,556,642,556,682,683,598,642,684,599,598,7245,7234,7251,7245,7253,7239,7253,7246,7239,7250,7255,7242,7242,7255,7251,7304,7287,7288,7269,7288,7287,7261,7254,7269,739,820,742,13793,13795,13794,13792,13794,13796,777,820,739,821,741,743,778,741,822,779,742,823,779,821,743,778,781,698,780,824,744,745,825,780,825,745,781,7246,7260,7248,7248,7262,7254,733,813,856,857,813,744,684,643,599,644,558,643,564,685,601,602,600,686,685,645,601,646,561,645,600,646,686,647,602,686,687,562,647,12669,12664,12653,12653,12649,12646,12646,12649,12642,12642,12647,12635,7263,7250,7271,12635,12647,12643,12637,12643,12644,12640,12644,12648,12658,12640,12652,7263,7271,7280,648,605,649,685,564,648,688,649,606,644,688,606,680,677,595,594,677,718,594,718,678,719,638,678,640,721,680,640,639,720,597,638,719,719,641,681,719,681,597,641, +722,682,642,682,722,723,598,683,724,683,642,684,598,723,7245,7251,7257,7258,7253,7245,7253,7259,7246,7250,7263,7255,7255,7265,7251,7288,7298,7304,7270,7288,7269,7270,7269,7254,862,742,820,13793,13797,13795,13794,13795,13798,13796,13794,13798,13796,13801,13804,821,822,741,778,822,863,823,742,862,823,864,779,779,865,821,778,863,781,780,866,824,857,744,824,866,780,825,867,825,781,7246,7268,7260,7262,7248,7260,7262,7270,7254,897,856,813,857,897,813,684,725,643,644,643,725,685,726,645,727,646,645,646,728,686,12684,12704,12694,12669,12684,12676,12669,12676,12664,12659,12653,12664,12659,12649,12653,12654,12642,12649,12647,12642,12650,12643,12647,12651,12643,12651,12644,12648,12644,12651,12640,12648,12652,7289,7280,7299,7289,7263,7280,648,649,729,685,648,730,688,731,649,644,732,688,718,677,680,678,718,764,719,678,765,640,766,721,680,721,768,720,766,640,765,641,719,722,641,769,642,722,724,683,770,723,724,770,683,723,771,684,7251,7265,7257,7245,7257,7258,7267,7253,7258,7267,7259,7253,7268,7246,7259,7255,7263,7272,7255,7272,7265,7278,7298,7288,7270,7278,7288,13808,13804,13801,13799,13795,13797,13798,13795,13800,13796,13798,13801,821,865,822,822,904,863,823,862,864,779,864,905,779,905,865,781,863,867,857,824,866,825,906,866,825,867,907,7260,7268,7277,7260,7278,7262,7262,7278,7270,897,943,856,944,897,857,684,772,725,732,644,725,685,730,726,645,726,727,646,727,728,12715,12694,12704,12694,12676,12684,12676,12685,12664,12670,12659,12664,12649,12659,12654,12642,12654,12650,12647,12650,12655,12647,12655,12651,12648,12651,12656,12652,12648,12657,7299,7305,7289,7281,7263,7289,729,649,731,730,648,729,732,731,688,718,680,764,678,764,765,721,766,799,801,768,721,768,764,680,720,799,766,765,802,641,802,769,641,803,722,769,724,722,803,804,723,770,724,805,770,723,804,771,771,772,684,7257,7265,7273,7257,7273,7258,7258,7274,7267,7275,7259,7267,7268,7259,7276,7263,7281,7272,7283,7265,7272,7297,7298,7278,13808,13801,13813,13800,13795,13799,13802,13799,13797,13798,13800,13803,13801,13798,13803,822,865,904,904,950,863,864,862,951,952,905,864,953, +865,905,867,863,950,944,857,866,825,954,906,944,866,906,950,907,867,954,825,907,13952,13953,13954,7286,7260,7277,7286,7278,7260,943,897,944,945,856,943,725,772,806,732,725,807,730,808,726,727,726,809,12753,12742,12715,12715,12714,12694,12694,12695,12676,12676,12695,12685,12664,12685,12687,12670,12671,12659,12678,12670,12664,12665,12654,12659,12650,12654,12661,12655,12650,12661,12651,12655,12662,12662,12656,12651,12648,12656,12657,7300,7289,7305,7289,7300,7281,729,731,810,811,730,729,732,812,731,764,802,765,801,721,799,801,845,768,768,846,764,720,800,799,847,769,802,803,769,847,848,724,803,804,770,849,805,724,848,805,850,770,804,851,771,771,851,772,7284,7273,7265,7273,7274,7258,7285,7267,7274,7275,7276,7259,7275,7267,7285,7272,7281,7290,7284,7265,7283,7272,7292,7283,7286,7297,7278,13812,13813,13801,13800,13799,13805,13805,13799,13802,13803,13800,13806,13801,13803,13807,953,904,865,904,984,950,864,951,952,952,953,905,954,985,906,986,944,906,950,987,907,988,954,907,7277,7276,7296,7277,7296,7286,943,944,1017,945,943,1018,806,772,852,807,725,806,807,853,732,730,811,808,809,726,808,727,809,854,727,854,892,12742,12714,12715,12695,12694,12714,12705,12685,12695,12687,12685,12705,12664,12687,12678,12686,12671,12670,12665,12659,12671,12678,12686,12670,12654,12665,12666,12654,12666,12661,12655,12661,12667,12667,12662,12655,12668,12656,12662,12668,12657,12656,12675,12657,12668,7301,7281,7300,812,810,731,855,729,810,811,729,855,853,812,732,802,764,846,801,799,800,801,886,845,845,846,768,887,847,802,803,847,888,888,848,803,770,850,849,851,804,849,805,848,889,850,805,889,851,890,772,7293,7273,7284,7294,7274,7273,7274,7295,7285,7275,7285,7276,7301,7290,7281,7292,7272,7290,7283,7292,7284,13815,13802,13817,13821,13813,13812,13812,13801,13807,13806,13800,13805,13805,13802,13809,13810,13803,13806,13811,13807,13803,984,904,953,1024,950,984,951,1025,952,952,1026,953,988,985,954,985,986,906,1017,944,986,987,950,1027,907,987,1028,988,907,1028,7296,7276,7303,13815,13817,13824,943,1017,1018,890,852,772,807,806,852,853,807,852,808,811,891,854, +809,808,854,940,892,12742,12752,12714,12714,12705,12695,12705,12716,12687,12678,12687,12696,12686,12679,12671,12679,12665,12671,12696,12686,12678,12679,12666,12665,12667,12674,12662,12668,12662,12674,12668,12683,12675,7313,7301,7300,812,893,810,810,894,855,895,811,855,896,812,853,802,846,930,885,801,800,801,885,886,845,886,931,846,845,930,887,932,847,887,802,930,888,847,933,888,934,848,935,849,850,936,851,849,889,848,934,889,937,850,936,890,851,7293,7294,7273,7293,7284,7292,7274,7294,7295,7285,7295,7302,7303,7276,7285,7290,7301,7306,7292,7290,7307,13815,13809,13802,951,1059,1025,13822,13821,13812,13816,13812,13807,13814,13806,13805,13805,13809,13814,13811,13803,13810,13814,13810,13806,13811,13816,13807,1026,984,953,950,1024,1027,1024,984,1058,1025,1026,952,985,988,1060,987,1027,1063,1028,987,1064,1065,988,1028,13834,13824,13837,13828,13815,13824,890,938,852,852,938,853,891,811,895,891,939,808,939,854,808,854,939,940,12766,12752,12742,12752,12743,12714,12705,12714,12729,12705,12730,12716,12687,12716,12707,12696,12687,12707,12679,12686,12697,12696,12706,12686,12666,12679,12688,12668,12674,12683,12693,12675,12683,7313,7317,7301,896,893,812,893,941,810,810,941,894,894,942,855,895,855,942,896,853,938,886,885,929,969,931,886,931,930,845,887,930,932,933,847,932,888,933,970,934,888,970,935,936,849,850,937,935,889,934,971,889,971,937,890,936,972,7294,7293,7308,7309,7293,7292,7294,7310,7295,7311,7302,7295,7285,7302,7312,7303,7285,7312,2188,2180,2159,7306,7314,7290,7290,7314,7307,7309,7292,7307,13815,13814,13809,1025,1059,1106,13822,13833,13821,13816,13822,13812,13811,13810,13818,13814,13819,13810,13816,13811,13820,984,1026,1058,1024,1104,1027,1024,1058,1105,1106,1026,1025,1065,1060,988,1107,985,1060,1063,1027,1112,987,1063,1064,1064,1113,1028,1065,1028,1113,13834,13828,13824,13837,13840,13834,13823,13815,13828,890,972,938,891,895,973,891,974,939,12778,12752,12766,12752,12767,12743,12714,12743,12729,12744,12705,12729,12744,12730,12705,12730,12732,12716,12716,12732,12707,12696,12707,12717,12706,12697,12686,12697,12688,12679,12696, +12717,12706,12683,12674,12692,12683,12692,12693,2168,2190,2179,2180,2168,2159,893,896,975,893,975,941,941,976,894,976,942,894,895,942,977,978,896,938,1007,886,929,969,1008,931,969,886,1007,1009,930,931,1009,932,930,933,932,1010,970,933,1010,934,970,1011,1012,936,935,1013,935,937,1011,971,934,1014,937,971,936,1012,972,7309,7308,7293,7294,7308,7310,7295,7310,7311,7302,7311,7315,7312,7302,7316,13837,13847,13840,2159,2176,2188,7318,7307,7314,7309,7307,7318,13823,13814,13815,1147,1106,1059,1274,1232,1147,13816,13827,13822,13818,13810,13825,13820,13811,13818,13823,13819,13814,13819,13825,13810,13816,13820,13826,1144,1058,1026,1104,1024,1145,1104,1112,1027,1058,1146,1105,1105,1145,1024,1144,1026,1106,1065,1148,1060,1107,1060,1148,1112,1064,1063,1149,1113,1064,1150,1065,1113,13823,13828,13834,13830,13834,13840,978,938,972,895,977,973,1015,891,973,1015,974,891,12778,12792,12767,12778,12767,12752,12768,12743,12767,12743,12754,12729,12744,12729,12754,12744,12755,12730,12756,12732,12730,12707,12732,12733,12707,12733,12717,12697,12706,12708,12697,12708,12688,12731,12706,12717,12693,12692,12713,12693,12713,12728,2168,2179,2154,2159,2168,2154,896,1016,975,941,975,976,976,977,942,1016,896,978,1005,1007,929,969,1007,1008,1043,931,1008,1043,1009,931,1009,1044,932,932,1044,1010,1010,1011,970,1012,935,1045,1045,935,1013,937,1046,1013,1011,1014,971,1014,1046,937,1012,1047,972,7319,7308,7309,7308,7320,7310,7310,7321,7311,7311,7321,7315,7302,7315,7316,2159,2166,2176,7318,7314,7322,7319,7309,7318,1106,1147,1187,1187,1147,1232,1385,1351,1232,13818,13825,13829,13820,13818,13829,13823,13830,13819,13819,13831,13825,13826,13820,13832,1058,1144,1146,1104,1145,1184,1184,1112,1104,1185,1105,1146,1145,1105,1186,1106,1187,1144,1188,1148,1065,1112,1149,1064,1113,1149,1150,1065,1150,1188,13830,13823,13834,13843,13830,13840,1047,978,972,1048,973,977,1048,1015,973,1049,974,1015,12808,12767,12792,12743,12768,12754,12768,12767,12793,12755,12744,12754,12756,12730,12755,12769,12732,12756,12733,12732,12758,12731,12717,12733,12706,12734,12708,12731,12734,12706, +2154,2150,2159,975,1016,976,976,1050,977,1016,978,1051,1005,1080,1007,1080,1008,1007,1043,1008,1083,1043,1084,1009,1044,1009,1084,1010,1044,1085,1010,1085,1011,1086,1012,1045,1045,1013,1087,1046,1087,1013,1014,1011,1088,1014,1089,1046,1012,1090,1047,7319,7320,7308,7323,7310,7320,7310,7323,7321,7321,7324,7315,13840,13856,13850,2159,2153,2166,2166,2158,2177,2158,2175,2177,1275,1187,1232,1232,1351,1313,13831,13829,13825,13820,13829,13832,13835,13819,13830,13836,13831,13819,1313,1351,1386,1144,1228,1146,1145,1229,1184,1229,1112,1184,1105,1185,1230,1228,1185,1146,1186,1105,1230,1186,1231,1145,1144,1187,1228,1229,1149,1112,1235,1150,1149,1188,1150,1235,13843,13841,13830,13840,13850,13843,1047,1091,978,977,1092,1048,1093,1015,1048,12792,12819,12808,12819,12863,12845,12793,12767,12808,12779,12754,12768,12794,12768,12793,12780,12755,12754,12755,12781,12756,12732,12769,12758,12769,12756,12781,12731,12733,12758,12757,12734,12731,2154,2148,2150,2159,2150,2153,976,1016,1051,976,1051,1050,1050,1092,977,1091,1051,978,1080,1005,1079,1128,1008,1080,1083,1008,1128,1043,1083,1084,1044,1084,1129,1085,1044,1129,1130,1011,1085,1086,1131,1012,1086,1045,1132,1045,1087,1132,1133,1087,1046,1011,1130,1088,1014,1088,1089,1133,1046,1089,1012,1131,1090,1134,1047,1090,7320,7319,7325,7326,7323,7320,7324,7321,7323,13860,13856,13866,13850,13856,13860,2166,2153,2158,2165,2175,2158,1275,1228,1187,1313,1275,1232,13829,13831,13838,13832,13829,13839,13836,13819,13835,13835,13830,13841,13836,13838,13831,13842,13849,13832,1229,1145,1231,1185,1270,1230,1185,1228,1271,1272,1186,1230,1186,1273,1231,1229,1279,1149,1279,1235,1149,13851,13841,13843,13850,13851,13843,1091,1047,1134,1048,1092,1135,1093,1136,1015,1135,1093,1048,12820,12808,12819,12819,12845,12820,12793,12808,12820,12779,12780,12754,12779,12768,12794,12794,12793,12821,12755,12780,12795,12755,12796,12781,12782,12758,12769,12797,12769,12781,12757,12731,12758,12757,12761,12734,2147,2150,2148,2153,2150,2147,1051,1137,1050,1092,1050,1138,1051,1091,1137,1080,1079,1164,1080,1164,1128,1167,1083,1128,1084, +1083,1167,1084,1167,1129,1168,1085,1129,1130,1085,1168,1086,1169,1131,1086,1132,1170,1132,1087,1133,1168,1088,1130,1089,1088,1171,1172,1133,1089,1173,1090,1131,1174,1134,1090,7327,7325,7319,7320,7325,7326,7326,7328,7323,7328,7324,7323,13872,13860,13866,13850,13860,13861,2158,2153,2147,2165,2158,2152,1228,1275,1271,13842,13855,13849,13829,13838,13839,13832,13839,13842,13836,13835,13844,13835,13841,13845,13846,13838,13836,1311,1229,1231,1270,1185,1271,1272,1230,1270,1272,1312,1186,1312,1273,1186,1273,1311,1231,1311,1279,1229,1318,1235,1279,13851,13852,13841,13850,13861,13851,1137,1091,1134,1092,1138,1135,12876,12845,12897,1175,1093,1135,12846,12820,12845,12820,12833,12793,12779,12809,12780,12779,12794,12809,12793,12833,12821,12794,12821,12834,12809,12795,12780,12796,12755,12795,12796,12797,12781,12758,12782,12761,12798,12782,12769,12798,12769,12797,12757,12758,12761,2147,2148,2149,1137,1138,1050,1163,1164,1079,1128,1164,1209,1128,1209,1167,1210,1129,1167,1168,1129,1211,1212,1169,1086,1131,1169,1173,1170,1132,1213,1170,1212,1086,1132,1133,1214,1168,1215,1088,1088,1215,1171,1171,1172,1089,1172,1216,1133,1174,1090,1173,1174,1138,1134,2165,2164,2187,7326,7325,7329,13891,13880,13884,13880,13866,13884,13860,13872,13873,13880,13872,13866,13873,13861,13860,2158,2147,2152,2165,2152,2164,13854,13865,13855,13842,13854,13855,13846,13839,13838,13848,13842,13839,13835,13845,13844,13836,13844,13846,13845,13841,13852,13878,13865,13870,13882,13889,13878,13896,13905,13889,13912,13919,13905,13926,13932,13919,1311,1318,1279,13851,13862,13852,13851,13861,13862,1137,1134,1138,1217,1135,1138,12845,12876,12846,7387,7396,7371,1175,1135,1218,12846,12833,12820,12822,12809,12794,12821,12833,12847,12834,12821,12848,12834,12822,12794,12809,12822,12795,12823,12796,12795,12796,12823,12797,12785,12761,12782,12782,12798,12785,12824,12798,12797,2151,2149,2148,2149,2152,2147,1251,1164,1163,1251,1209,1164,1167,1209,1254,1129,1210,1211,1167,1255,1210,1168,1211,1256,1212,1257,1169,1169,1258,1173,1213,1132,1214,1170,1213,1212,1259,1214,1133,1168,1256,1215, +1215,1260,1171,1171,1216,1172,1259,1133,1216,1174,1173,1261,1217,1138,1174,7326,7329,7330,13880,13891,13899,13872,13883,13873,13880,13883,13872,13873,13874,13861,2157,2164,2152,13865,13854,13870,13842,13848,13854,13853,13839,13846,13853,13848,13839,13852,13844,13845,13846,13844,13857,13882,13878,13870,13889,13882,13896,13912,13905,13896,13926,13919,13912,10351,10366,10377,10338,10366,10351,13852,13862,13868,13862,13861,13874,1218,1135,1217,12876,12877,12846,7370,7387,7371,1262,1175,1218,12846,12864,12833,12847,12833,12865,12848,12821,12847,12834,12848,12866,12849,12822,12834,12822,12835,12795,12835,12823,12795,12836,12797,12823,12813,12785,12798,12824,12813,12798,12797,12836,12824,2151,2155,2149,2149,2157,2152,1250,1251,1163,1251,1254,1209,1255,1167,1254,1211,1210,1297,1255,1297,1210,1211,1297,1256,1212,1298,1257,1169,1257,1258,1173,1258,1261,1214,1299,1213,1213,1300,1212,1259,1299,1214,1256,1260,1215,1171,1260,1216,1259,1216,1301,1261,1302,1174,1302,1217,1174,2174,2186,2164,13880,13899,13897,13874,13873,13883,13883,13880,13890,2174,2164,2157,13869,13870,13854,13848,13858,13854,13846,13857,13853,13859,13848,13853,13852,13857,13844,13870,13869,13882,13895,13896,13882,13912,13896,13911,10378,10377,10400,10352,10351,10377,10338,10351,10324,13862,13875,13868,13852,13868,13867,13862,13874,13875,1218,1217,1302,7387,7370,7388,12846,12877,12864,7355,7370,7371,7355,7371,7362,1218,1303,1262,12865,12833,12864,12865,12878,12847,12847,12879,12848,12880,12866,12848,12834,12866,12867,12822,12849,12835,12849,12834,12867,12836,12823,12835,12824,12850,12813,12836,12851,12824,2155,2162,2149,2149,2163,2157,1250,1296,1251,1250,1163,1206,1254,1251,1296,1255,1254,1336,1255,1337,1297,1297,1260,1256,1212,1338,1298,1298,1339,1257,1340,1258,1257,1261,1258,1340,1213,1299,1300,1338,1212,1300,1259,1341,1299,1216,1260,1342,1343,1301,1216,1259,1301,1341,1261,1344,1302,2174,2173,2186,2205,2186,2173,13897,13890,13880,13892,13874,13883,13883,13890,13898,2174,2157,2173,13864,13869,13854,13858,13848,13863,13858,13864,13854,13859,13853,13857,13848,13859, +13863,13852,13867,13857,13881,13882,13869,13895,13911,13896,13881,13895,13882,13925,13912,13911,10352,10377,10378,10324,10351,10352,13876,13868,13875,13876,13867,13868,13875,13874,13885,1302,1303,1218,7370,7378,7388,12864,12877,12898,7370,7355,7361,7349,7355,7362,12865,12864,12898,12878,12865,12898,12847,12878,12879,12880,12848,12879,12880,12867,12866,12835,12849,12868,12849,12867,12881,12836,12835,12851,12824,12839,12850,12850,12839,12813,12824,12851,12839,2162,2155,2170,2149,2162,2163,2163,2173,2157,1250,1206,1296,1254,1296,1370,1254,1371,1336,1336,1337,1255,1337,1260,1297,1298,1338,1372,1298,1372,1339,1339,1340,1257,1261,1340,1373,1299,1374,1300,1300,1375,1338,1299,1341,1374,1337,1342,1260,1216,1342,1343,1343,1341,1301,1344,1261,1373,1344,1376,1302,2205,2173,2203,13897,13906,13890,13885,13874,13892,13892,13883,13898,13906,13898,13890,13869,13864,13877,13863,13864,13858,13859,13857,13867,13871,13863,13859,13877,13881,13869,13918,13911,13895,13881,13894,13895,13918,13925,13911,10352,10378,10353,10324,10352,10337,13886,13876,13875,13876,13859,13867,13875,13885,13893,1303,1302,1376,7370,7361,7378,7397,7388,7378,7407,7388,7397,7348,7361,7355,7355,7349,7346,7394,7428,7407,12878,12914,12879,12880,12879,12915,12880,12915,12867,12849,12881,12868,12835,12868,12882,12881,12867,12899,12851,12835,12882,12851,12883,12839,2170,2183,2162,2183,2163,2162,2163,2185,2173,1295,1296,1206,1296,1366,1370,1370,1371,1254,1371,1404,1336,1336,1405,1337,1406,1372,1338,1407,1339,1372,1339,1408,1340,1408,1373,1340,1300,1374,1409,1300,1409,1375,1338,1375,1406,1374,1341,1410,1405,1342,1337,1342,1411,1343,1343,1410,1341,7334,7335,7336,7334,7336,7338,2196,2203,2173,2205,2203,2218,13885,13892,13900,13898,13900,13892,13906,13913,13898,13863,13877,13864,13879,13863,13871,13859,13876,13871,13888,13881,13877,13918,13895,13910,13888,13894,13881,13894,13910,13895,10353,10378,10381,10337,10352,10353,13876,13886,13879,13886,13875,13893,13885,13901,13893,7349,7338,7346,7378,7361,7369,7394,7397,7378,7394,7407,7397,7348,7369,7361,7355,7346,7348,7415,7428,7394, +12934,12914,12878,12914,12915,12879,12899,12867,12915,12868,12881,12899,12868,12900,12882,12851,12882,12883,2183,2170,2193,2183,2185,2163,2196,2173,2185,1295,1366,1296,1370,1366,1371,1429,1404,1371,1405,1336,1404,1406,1430,1372,1407,1431,1339,1372,1432,1407,1339,1431,1408,7339,7337,7335,1409,1374,1433,1375,1409,1434,1375,1435,1406,1374,1410,1436,1405,1411,1342,1437,1343,1411,1438,1410,1343,7335,7337,7336,7336,7341,7338,2196,2213,2203,2203,2225,2218,13885,13900,13901,13898,13913,13900,13877,13863,13879,13876,13879,13871,13877,13887,13888,13918,13910,13924,13888,13904,13894,13910,13894,13904,10353,10381,10367,10337,10353,10325,13879,13886,13887,13893,13902,13886,13901,13907,13893,7338,7343,7346,7369,7360,7378,7394,7378,7379,7369,7348,7360,7343,7348,7346,7415,7394,7405,12946,12914,12934,12914,12947,12915,12899,12915,12935,12868,12899,12916,12868,12917,12900,12883,12882,12900,2183,2193,2202,2183,2202,2185,2196,2185,2204,1366,1295,1369,1366,1429,1371,1404,1429,1457,1404,1457,1405,1406,1435,1430,1430,1432,1372,7352,7384,7375,1407,1432,1458,1431,1459,1408,7339,7342,7337,1436,1433,1374,1434,1409,1433,1375,1434,1435,1410,1438,1436,1457,1411,1405,1438,1343,1437,1457,1437,1411,7337,7340,7336,7336,7340,7341,7343,7338,7341,2213,2196,2204,2213,2217,2203,2203,2217,2225,13901,13900,13914,13900,13913,13920,13877,13879,13887,13888,13887,13903,13924,13910,13917,13903,13904,13888,13917,13910,13904,10367,10339,10353,10353,10339,10325,13887,13886,13902,13893,13907,13902,13915,13907,13901,7360,7379,7378,7394,7379,7405,7360,7348,7354,7343,7354,7348,7429,7415,7405,12962,12914,12946,12963,12946,12934,12962,12947,12914,12947,12935,12915,12916,12899,12935,12916,12917,12868,2211,2202,2193,2185,2202,2204,1295,1335,1369,1366,1369,1403,1366,1403,1429,1429,1481,1457,1482,1430,1435,1430,1482,1432,1483,1459,1431,7375,7366,7352,1482,1458,1432,7337,7342,7340,1436,1484,1433,1485,1434,1433,1434,1485,1435,1438,1486,1436,1438,1437,1487,1457,1488,1437,7340,7345,7341,7343,7341,7345,2213,2204,2216,2224,2217,2213,2224,2225,2217,13920,13914,13900,13901,13914, +13915,2224,2234,2225,13903,13887,13909,13931,13924,13917,13916,13904,13903,13923,13917,13904,10367,10354,10339,10339,10313,10325,13887,13902,13908,13908,13902,13907,13907,13915,13921,7360,7364,7379,7395,7405,7379,7354,7364,7360,7343,7350,7354,7415,7429,7440,7405,7416,7429,12962,12946,12963,12979,12947,12962,12947,12964,12935,12935,12948,12916,12916,12948,12917,2202,2211,2216,2204,2202,2216,1335,1403,1369,1403,1456,1429,1456,1481,1429,1457,1481,1488,1509,1482,1435,7347,7342,7352,7352,7366,7358,7385,7376,7366,7344,7340,7342,1436,1510,1484,1433,1484,1511,1485,1433,1511,1435,1485,1512,1486,1438,1487,1510,1436,1486,1437,1488,1487,7344,7345,7340,7343,7345,7350,2216,2226,2213,2224,2213,2229,13920,13927,13914,13927,13915,13914,2235,2234,2224,13887,13908,13909,13916,13903,13909,10354,10367,10380,13931,13917,13923,13916,13923,13904,10354,10313,10339,13907,13921,13908,13915,13928,13921,7364,7381,7379,7416,7405,7395,7379,7381,7395,7354,7350,7364,7450,7440,7429,7442,7429,7416,12992,12962,12963,12980,12947,12979,12992,12979,12962,12947,12980,12964,12948,12935,12964,2216,2211,2223,1335,1402,1403,1402,1456,1403,1456,1508,1481,1488,1481,1531,7392,7376,7385,1512,1509,1435,7342,7347,7344,7352,7358,7347,7376,7358,7366,1532,1484,1510,1484,1532,1511,1511,1512,1485,1486,1487,1533,1510,1486,1534,1488,1533,1487,7351,7345,7344,7345,7356,7350,2226,2216,2223,2229,2213,2226,2235,2224,2229,13928,13915,13927,13908,13922,13909,13922,13916,13909,10391,10354,10380,13923,13930,13931,13923,13916,13930,10354,10355,10313,13908,13921,13922,13928,13933,13921,7364,7363,7381,7406,7416,7395,7406,7395,7381,7364,7350,7363,13006,12992,12963,7451,7450,7429,7451,7429,7442,7442,7416,7441,12979,12992,12980,12980,12993,12964,2228,2223,2211,1402,1428,1456,1480,1508,1456,1508,1531,1481,1488,1531,1533,7392,7391,7376,1549,1509,1512,7353,7344,7347,7358,7353,7347,7376,7377,7358,1532,1510,1550,1532,1551,1511,1512,1511,1549,1534,1486,1533,1534,1550,1510,7345,7351,7356,7351,7344,7357,7350,7356,7363,2226,2223,2233,2229,2226,2236,2229,2241,2235,13927,13935,13928,13916,13922, +13929,13945,13948,13939,13930,13939,13931,13930,13916,13934,10354,10379,10355,10340,10313,10355,13921,13933,13922,13928,13936,13933,7363,7380,7381,7406,7420,7416,7381,7399,7406,13020,12992,13006,13046,13034,13006,7420,7441,7416,7442,7441,7453,12993,12980,12992,12993,13007,12964,2228,2233,2223,1428,1480,1456,1530,1508,1480,1508,1530,1531,1531,1573,1533,7412,7391,7392,7376,7391,7377,1509,1549,1574,7344,7353,7359,7358,7368,7353,7358,7377,7368,1550,1575,1532,1551,1532,1575,1551,1549,1511,1573,1534,1533,1534,1576,1550,7351,7365,7356,7357,7344,7359,7351,7357,7365,7356,7372,7363,2233,2240,2226,2240,2236,2226,2229,2236,2241,13928,13935,13936,13929,13922,13933,13929,13934,13916,13945,13939,13938,13938,13939,13930,13934,13938,13930,13945,13944,13950,10355,10368,10340,13933,13936,13940,7363,7372,7380,7381,7380,7399,7406,7399,7420,13007,12992,13020,13006,13034,13020,7420,7432,7441,7441,7432,7453,13007,12993,12992,2232,2233,2228,1428,1479,1480,1548,1530,1480,1530,1571,1531,1531,1571,1573,7412,7423,7391,7392,7424,7412,7391,7402,7377,1590,1574,1549,7353,7367,7359,7368,7367,7353,7386,7368,7377,1576,1575,1550,1575,1590,1551,1590,1549,1551,1573,1591,1534,1591,1576,1534,7356,7365,7372,7357,7359,7373,7374,7365,7357,2244,2240,2233,2240,2245,2236,2236,2245,2241,13942,13936,13935,2255,2266,2272,13934,13929,13937,13945,13938,13944,13934,13941,13938,10355,10382,10368,2245,2255,2258,7380,7372,7382,7409,7399,7380,7432,7420,7399,7432,7445,7453,2232,2244,2233,1479,1529,1480,1548,1572,1530,1548,1480,1529,1530,1572,1571,1573,1571,1608,7412,7424,7423,7423,7413,7391,7391,7413,7402,7404,7377,7402,7424,7462,7454,7367,7373,7359,7386,7367,7368,7393,7386,7377,1575,1576,1609,1575,1609,1590,1591,1573,1608,1591,1610,1576,7365,7382,7372,7357,7373,7374,7374,7383,7365,2244,2247,2240,2240,2247,2245,2255,2259,2266,2259,2271,2266,2283,2288,2271,13938,13941,13944,13941,13934,13943,13944,13941,13947,2255,2245,2250,7380,7382,7398,7409,7419,7399,7408,7409,7380,7399,7419,7432,7432,7419,7445,2244,2232,2238,1547,1529,1479,1570,1572,1548,1570,1548,1529,1572,1607,1571, +1607,1608,1571,7423,7424,7447,7423,7437,7413,7425,7402,7413,7393,7377,7404,7404,7402,7425,7454,7462,7469,7454,7447,7424,7367,7386,7373,7393,7403,7386,1609,1576,1610,1610,1591,1608,7365,7383,7382,7389,7374,7373,7390,7383,7374,2247,2244,2246,2250,2245,2247,2255,2250,2259,2271,2259,2270,2270,2283,2271,7400,7398,7382,7398,7408,7380,7431,7419,7409,7409,7408,7430,7431,7445,7419,2244,2238,2246,1529,1547,1569,1570,1606,1572,1529,1569,1570,1572,1606,1607,1634,1608,1607,7423,7447,7437,7438,7413,7437,7438,7425,7413,7403,7393,7404,7439,7404,7425,7469,7468,7454,7454,7461,7447,7389,7373,7386,7389,7386,7403,7469,7496,7486,1610,1608,1634,7382,7383,7400,7390,7374,7389,7383,7390,7401,2247,2246,2254,2250,2247,2254,2260,2259,2250,2270,2259,2260,2270,2279,2283,7400,7417,7398,7408,7398,7418,7431,7409,7444,7408,7418,7430,7430,7444,7409,1569,1547,1568,1570,1605,1606,1570,1569,1605,1606,1633,1607,1633,1634,1607,7447,7455,7437,7438,7437,7456,7439,7425,7438,7404,7427,7403,7404,7439,7427,7469,7486,7468,7468,7461,7454,7455,7447,7461,7414,7389,7403,7506,7486,7496,7401,7400,7383,7390,7389,7410,7401,7390,7411,2252,2254,2246,2250,2254,2260,2270,2260,2279,7421,7417,7400,7417,7418,7398,7418,7443,7430,13955,13956,13957,1568,1604,1569,1606,1605,1632,1605,1569,1604,1632,1633,1606,7507,7506,7523,7463,7437,7455,7456,7437,7463,7438,7456,7464,7439,7438,7449,7426,7403,7427,7449,7427,7439,7468,7486,7497,7461,7468,7478,7455,7461,7470,7414,7410,7389,7426,7414,7403,7506,7507,7486,7401,7421,7400,7410,7411,7390,7422,7401,7411,2252,2264,2254,2260,2254,2264,2260,2273,2279,3209,3214,3216,3214,3219,3224,3231,3237,3219,1604,1568,1603,7536,7545,7539,7551,7539,7545,7536,7530,7523,7530,7507,7523,7463,7455,7471,7456,7463,7472,7464,7456,7473,7449,7438,7464,7427,7449,7426,7507,7497,7486,7468,7497,7495,7485,7478,7468,7461,7478,7470,7471,7455,7470,7410,7414,7434,7426,7434,7414,7433,7421,7401,7411,7410,7435,3220,3212,3225,7422,7411,7436,2264,2252,2263,2273,2260,2264,3209,3211,3214,3212,3209,3216,3211,3219,3214,3231,3219,3218,1603,1568,1567,1622,1604,1603,7530,7536,7539,7539,7551, +7548,7507,7530,7513,7472,7463,7471,7473,7456,7472,7464,7473,7449,7449,7458,7426,7507,7495,7497,7468,7495,7485,7478,7485,7487,7470,7478,7487,7470,7488,7471,7446,7410,7434,7448,7434,7426,7410,7446,7435,3253,3265,3245,3215,3212,3220,3245,3226,3253,3220,3226,3215,2264,2263,2277,2273,2264,2277,3209,3210,3211,3212,3210,3209,3211,3218,3219,1622,1603,1567,7551,7553,7548,7530,7539,7534,7548,7541,7539,7530,7534,7513,7507,7513,7495,7472,7471,7489,7473,7472,7490,7473,7479,7449,7449,7465,7458,7426,7458,7457,7505,7485,7495,7487,7485,7504,7487,7488,7470,7488,7489,7471,7446,7434,7448,7448,7426,7457,3265,3277,3245,3210,3212,3215,3245,3238,3226,3227,3215,3226,3210,3213,3211,3213,3218,3211,7550,7553,7559,7553,7540,7548,7534,7539,7541,7540,7541,7548,7531,7513,7534,7505,7495,7513,7472,7489,7490,7490,7479,7473,7491,7449,7479,7465,7449,7474,7465,7457,7458,7505,7511,7485,7485,7511,7504,7504,7512,7487,7487,7508,7488,18247,18248,18249,3299,3288,3277,3318,3299,3328,3264,3245,3277,3210,3215,3221,3252,3238,3245,3238,3227,3226,3227,3221,3215,3213,3210,3217,7540,7553,7550,7541,7531,7534,7540,7531,7541,7531,7522,7513,7522,7505,7513,7498,7490,7489,7490,7498,7479,3429,3408,3439,7498,7491,7479,7480,7474,7449,3334,3352,3347,3334,3318,3328,7520,7511,7505,7504,7511,7520,7512,7504,7521,7514,7487,7512,7487,7514,7508,7488,7508,7515,7489,7525,7526,7525,7488,7515,3299,3298,3288,3264,3277,3288,3318,3298,3299,3264,3252,3245,3217,3210,3221,3252,3244,3238,3227,3238,3244,3227,3232,3221,3217,3222,3213,7535,7531,7540,7531,7535,7522,7522,7520,7505,7498,7489,7516,3429,3422,3408,7499,7449,7509,3438,3422,3429,3372,3365,3352,7480,7449,7492,3359,3347,3352,3347,3341,3334,3318,3334,3317,7529,7504,7520,7521,7504,7529,3590,3561,3573,3542,3573,3543,7524,7508,7514,7508,7524,7515,7525,7515,7526,7526,7516,7489,3288,3298,3263,3264,3288,3263,3317,3298,3318,3263,3252,3264,3217,3221,3228,3263,3244,3252,3227,3244,3239,3232,3227,3239,3221,3232,3228,3217,3228,3222,7535,7532,7522,7522,7532,7520,3438,3451,3430,3415,3408,3422,7492,7449,7499,3390,3408,3402,3430,3422,3438,3365,3372,3375,3359, +3352,3365,3372,3380,3375,3359,3338,3347,3347,3338,3341,3341,3317,3334,7520,7532,7529,7521,7529,7533,3561,3590,3589,3543,3573,3561,3543,3513,3542,3529,3542,3513,3498,3512,3529,3498,3472,3512,3472,3450,3451,3298,3287,3263,3310,3298,3317,3244,3263,3267,3254,3239,3244,3232,3239,3240,3228,3232,3240,3228,3233,3222,3430,3451,3450,3415,3402,3408,3430,3415,3422,3385,3380,3390,3395,3390,3402,3369,3365,3375,3359,3365,3369,3385,3375,3380,3356,3338,3359,3341,3338,3317,3589,3590,3620,3561,3589,3560,3530,3543,3561,3543,3530,3513,3513,3498,3529,3473,3472,3498,3450,3472,3473,3310,3287,3298,3267,3263,3287,3310,3317,3322,3254,3244,3267,3254,3266,3239,3255,3240,3239,3228,3240,3233,3233,3234,3222,3430,3450,3431,3415,3409,3402,3431,3415,3430,3385,3390,3395,3402,3409,3395,3369,3375,3379,3369,3356,3359,3385,3379,3375,3348,3338,3356,3338,3330,3317,3562,3560,3589,3560,3530,3561,3530,3499,3513,3513,3473,3498,3450,3473,3452,3310,3301,3287,3287,3278,3267,3322,3317,3330,3310,3322,3301,3254,3267,3278,3266,3254,3278,3255,3239,3266,3240,3255,3246,3233,3240,3246,3233,3247,3234,3431,3450,3452,3409,3415,3414,3431,3414,3415,3385,3395,3389,3401,3395,3409,3379,3370,3369,3369,3370,3356,3379,3385,3389,3348,3342,3338,3364,3348,3356,3321,3330,3338,3562,3532,3560,3560,3531,3530,3531,3499,3530,3473,3513,3499,3474,3452,3473,3278,3287,3301,3330,3301,3322,3266,3278,3289,3255,3266,3279,3255,3268,3246,3233,3246,3247,3256,3234,3247,3452,3437,3431,3414,3401,3409,3431,3437,3414,3401,3389,3395,3383,3370,3379,3356,3370,3364,3383,3379,3389,3342,3348,3335,3342,3321,3338,3348,3364,3360,3330,3321,3301,3532,3531,3560,3500,3499,3531,3473,3499,3474,3474,3461,3452,3300,3278,3301,3300,3289,3278,3266,3289,3279,3280,3255,3279,3280,3268,3255,3268,3247,3246,3269,3256,3247,3452,3461,3437,3414,3407,3401,3437,3428,3414,3401,3394,3389,3376,3370,3383,3360,3364,3370,3394,3383,3389,3353,3335,3348,3321,3342,3335,3360,3353,3348,3300,3301,3321,3532,3500,3531,3500,3474,3499,3484,3461,3474,3300,3311,3289,3302,3279,3289,3280,3279,3303,3280,3290,3268,3268,3269,3247,3269,3271,3256,3449,3437,3461, +3417,3407,3414,3407,3394,3401,3449,3428,3437,3417,3414,3428,3360,3370,3376,3376,3383,3386,3392,3383,3394,3353,3349,3335,3319,3321,3335,3360,3366,3353,3300,3321,3319,3500,3532,3514,3500,3484,3474,3484,3462,3461,3311,3300,3319,3320,3289,3311,3302,3303,3279,3312,3302,3289,3280,3303,3304,3304,3290,3280,3290,3291,3268,3269,3268,3291,3269,3292,3271,3461,3462,3449,3417,3398,3407,3398,3394,3407,3442,3428,3449,3416,3417,3428,3376,3373,3360,3392,3386,3383,3376,3386,3382,3392,3394,3398,3353,3354,3349,3335,3349,3336,3319,3335,3336,3373,3366,3360,3354,3353,3366,3484,3500,3514,3462,3484,3485,3311,3319,3329,3320,3312,3289,3329,3320,3311,3302,3323,3303,3312,3324,3302,3323,3304,3303,3304,3313,3290,3314,3291,3290,3291,3292,3269,3293,3271,3292,3462,3442,3449,3416,3398,3417,3416,3428,3442,3382,3373,3376,3392,3398,3386,3382,3386,3391,3354,3343,3349,3343,3336,3349,3336,3329,3319,3367,3366,3373,3354,3366,3367,3484,3514,3533,3511,3485,3484,3475,3462,3485,3312,3320,3332,3329,3337,3320,3323,3302,3324,3312,3331,3324,3323,3313,3304,3313,3314,3290,3325,3291,3314,7652,7653,7654,7660,7654,7657,3462,3475,3442,3411,3398,3416,3442,3433,3416,3381,3373,3382,3397,3386,3398,3397,3391,3386,3382,3391,3381,3354,3361,3343,3336,3343,3329,3367,3373,3381,3361,3354,3367,3533,3528,3484,3511,3515,3485,3511,3484,3528,3486,3475,3485,3337,3332,3320,3331,3312,3332,3343,3337,3329,3323,3324,3339,3339,3324,3331,3323,3333,3313,7666,7680,7672,7653,7666,7661,7653,7655,7654,7657,7654,7655,7664,7660,7657,3475,3463,3442,3411,3397,3398,3411,3416,3423,3453,3433,3442,3423,3416,3433,3403,3391,3397,3381,3391,3396,3355,3343,3361,3381,3377,3367,3367,3368,3361,3541,3515,3511,3486,3485,3515,3541,3511,3528,3463,3475,3486,3346,3332,3337,3331,3332,3344,3343,3350,3337,3340,3323,3339,3339,3331,3345,3323,3340,3333,7681,7680,7687,7672,7680,7681,7666,7672,7661,7653,7661,7658,7653,7656,7655,7655,7659,7657,7664,7657,7665,3442,3463,3453,3411,3410,3397,3410,3411,3423,3453,3440,3433,3440,3423,3433,7762,7758,7765,3397,3410,3403,7757,7758,7759,3355,3350,3343,3355,3361,3368,7757,7759,7761,3367,3377, +3368,3541,3557,3515,3486,3515,3516,3463,3486,3476,3344,3332,3346,3351,3346,3337,3344,3345,3331,3351,3337,3350,3340,3339,3345,7691,7687,7697,7681,7687,7673,7672,7681,7667,7667,7661,7672,7667,7658,7661,7653,7658,7656,7655,7656,7659,7657,7659,7665,3463,3476,3453,3410,3423,3432,7786,7796,7791,3440,3432,3423,7758,7762,7760,7766,7762,7769,7759,7758,7760,3350,3355,3362,3362,3355,3368,7761,7759,7764,3377,3374,3368,3515,3557,3546,3516,3515,3546,3486,3516,3501,3476,3486,3501,3344,3346,3357,3351,3358,3346,7704,7711,7719,3351,3350,3363,7704,7697,7711,7673,7687,7691,7691,7697,7704,7673,7667,7681,7667,7673,7658,7662,7656,7658,7656,7663,7659,7665,7659,7671,3476,3487,3453,3441,3410,3432,7786,7791,7781,7780,7786,7776,7766,7760,7762,7759,7760,7763,3350,3362,3363,3362,3368,3374,7768,7764,7759,7819,7816,7814,7805,7814,7811,7805,7803,7802,7799,7802,7795,7748,7742,7728,7728,7712,7719,3358,3351,3363,7704,7719,7712,7691,7698,7673,7691,7704,7698,7668,7658,7673,7656,7662,7663,7662,7658,7668,7659,7663,7669,7671,7659,7676,7799,7795,7791,7766,7780,7776,7781,7791,7787,7781,7776,7786,7766,7763,7760,7759,7763,7767,3371,3363,3362,3362,3374,3378,3374,3387,3384,7767,7768,7759,7811,7814,7816,7805,7811,7807,7805,7807,7803,7802,7803,7795,7742,7735,7728,7728,7720,7712,3363,3371,3358,7712,7698,7704,7705,7673,7698,3519,3505,3491,7674,7663,7662,7662,7668,7675,7669,7663,7674,7669,7676,7659,7671,7676,7684,7791,7795,7787,7766,7776,7772,7781,7787,7772,7781,7772,7776,7770,7763,7766,7767,7763,7771,3378,3371,3362,3374,3384,3378,7774,7779,7768,7774,7768,7767,7811,7816,7817,7813,7807,7811,7807,7804,7803,7801,7795,7803,7747,7735,7742,7735,7720,7728,7712,7720,7698,7751,7747,7742,3491,3505,3469,3469,3458,3445,3520,3519,3491,7682,7674,7662,3550,3519,3520,7682,7662,7675,7669,7674,7683,7669,7684,7676,7686,7671,7684,7787,7795,7793,7770,7766,7772,7782,7772,7787,7770,7771,7763,7767,7771,7773,3378,3384,3371,3405,3400,3384,7774,7767,7773,7817,7813,7811,7810,7807,7813,7810,7804,7807,7804,7801,7803,7801,7793,7795,3388,3393,3399,3399,3404,3412,7729,7698,7720,3371,3384,3388,3491, +3469,3468,3424,3445,3458,3468,3469,3445,3520,3491,3492,3628,3596,3595,3566,3550,3520,3596,3550,3579,3595,3643,3628,7683,7684,7669,7686,7684,7690,7787,7793,7782,7770,7772,7777,7782,7777,7772,7775,7771,7770,7773,7771,7778,7774,7773,7784,3393,3384,3400,7817,7818,7813,7810,7813,7815,7810,7808,7804,7804,7800,7801,7793,7801,7800,3393,3388,3384,3393,3404,3399,3419,3412,3404,3424,3412,3419,3492,3491,3468,3424,3435,3445,3468,3445,3457,3521,3520,3492,3595,3596,3579,3566,3579,3550,3566,3520,3551,3595,3629,3643,7692,7684,7683,7702,7690,7684,7782,7793,7792,7770,7777,7775,7777,7782,7788,7775,7778,7771,7773,7778,7783,3425,3420,3400,3393,3400,3406,7815,7813,7818,3778,3766,3720,7806,7804,7808,7800,7804,7806,7800,7792,7793,3406,3404,3393,3419,3404,3418,3419,3435,3424,3480,3492,3468,3457,3445,3435,3457,3480,3468,3520,3521,3551,3521,3492,3506,3595,3579,3566,3580,3566,3551,3595,3598,3629,3660,3643,3629,7692,7699,7684,7702,7684,7699,7782,7792,7788,7785,7775,7777,7777,7788,7790,7785,7778,7775,3446,3436,3420,3400,3420,3413,3400,3413,3406,3766,3779,3754,3754,3720,3766,3686,3702,3720,7800,7806,7809,3648,3616,3670,3406,3418,3404,3419,3418,3434,3435,3419,3444,3492,3480,3506,3435,3456,3457,3480,3457,3479,3567,3551,3521,3506,3536,3521,3566,3598,3595,3580,3598,3566,3580,3551,3567,3598,3631,3629,3629,3631,3660,3660,3663,3696,3681,3713,3696,7788,7792,7797,7777,7790,7785,3584,3538,3602,7785,7789,7778,3459,3436,3446,3426,3420,3436,3413,3420,3426,3406,3413,3421,3731,3720,3754,3686,3647,3702,3686,3720,3717,7812,7800,7809,3635,3616,3648,3406,3421,3418,3443,3434,3418,3434,3444,3419,3435,3444,3456,3480,3504,3506,3479,3457,3456,3479,3504,3480,3567,3521,3552,3549,3536,3506,3552,3521,3536,3580,3611,3598,3567,3597,3580,3598,3611,3631,3663,3660,3631,3681,3696,3663,3616,3584,3602,3554,3538,3523,3584,3570,3538,7794,7778,7789,3447,3436,3459,3447,3426,3436,3413,3426,3427,3421,3413,3427,3717,3720,3731,3743,3731,3754,3686,3669,3647,3686,3717,3668,3635,3647,3615,3635,3584,3616,3418,3421,3427,3443,3455,3434,3427,3443,3418,3455,3444,3434,3467,3456,3444,3504,3535,3506, +3479,3456,3478,3479,3478,3504,3567,3552,3581,3552,3536,3549,3506,3535,3549,3580,3597,3611,3567,3581,3597,3611,3644,3631,3663,3631,3644,3663,3644,3681,3509,3523,3538,3584,3601,3570,3570,3555,3538,7798,7794,7789,3447,3459,3471,3426,3447,3448,3427,3426,3448,3731,3701,3717,3743,3718,3731,3668,3669,3686,3669,3615,3647,3668,3717,3701,3584,3635,3615,3466,3455,3443,3443,3427,3454,3467,3444,3455,3467,3478,3456,3504,3503,3535,3478,3503,3504,3549,3581,3552,3565,3549,3535,3611,3597,3630,3597,3581,3612,3611,3630,3644,3681,3644,3680,3482,3523,3509,3538,3555,3509,3584,3615,3601,3601,3600,3570,3571,3555,3570,3471,3459,3482,3471,3481,3447,3447,3470,3448,3448,3460,3427,3731,3718,3701,3668,3615,3669,3668,3701,3685,3467,3455,3466,3466,3443,3465,3464,3454,3427,3465,3443,3454,3490,3478,3467,3535,3503,3534,3490,3503,3478,3578,3581,3549,3578,3549,3565,3565,3535,3534,3632,3630,3597,3627,3612,3581,3612,3632,3597,3630,3662,3644,3644,3662,3680,3494,3482,3509,3539,3509,3555,3600,3601,3615,3571,3570,3600,3571,3539,3555,3494,3471,3482,3471,3495,3481,3481,3470,3447,3448,3470,3460,3464,3427,3460,3685,3701,3718,3646,3615,3668,3668,3685,3646,3490,3467,3466,3465,3488,3466,3503,3517,3534,3490,3517,3503,3578,3610,3581,3661,3630,3632,3627,3632,3612,3627,3581,3610,3662,3630,3661,3524,3494,3509,3524,3509,3539,3600,3615,3646,3571,3600,3569,3569,3539,3571,3494,3508,3471,3471,3508,3495,3495,3493,3481,3493,3470,3481,3460,3470,3483,3464,3460,3483,3719,3685,3718,3685,3699,3646,3490,3466,3488,3488,3517,3490,3661,3632,3679,3664,3632,3627,3697,3662,3661,3524,3522,3494,3524,3539,3522,3600,3646,3634,3613,3569,3600,3522,3539,3569,3522,3508,3494,3495,3508,3525,3699,3685,3719,3744,3719,3718,3682,3646,3699,3664,3679,3632,3697,3661,3679,3634,3646,3666,3613,3600,3634,3613,3599,3569,3569,3568,3522,3522,3525,3508,3714,3699,3719,3739,3719,3744,3666,3646,3682,3682,3699,3714,3634,3666,3683,3613,3634,3645,3569,3599,3568,3553,3522,3568,3525,3522,3553,3739,3714,3719,3739,3744,3764,3683,3666,3682,3715,3682,3714,3667,3634,3683,3645,3634,3667,3714,3739,3740,3763,3739,3764,3683,3682, +3715,3715,3714,3740,3700,3667,3683,3763,3740,3739,3700,3683,3715,3741,3715,3740,3763,3741,3740,3730,3700,3715,3741,3730,3715,3840,3841,3842,3840,3843,3841,3842,3841,3844,3845,3840,3842,3846,3843,3840,3847,3841,3843,3847,3844,3841,3842,3844,3848,3840,3845,3849,3842,3850,3845,7861,7862,7863,3840,3849,3846,7877,7863,7872,3847,3851,3844,3848,3844,3852,3853,3842,3848,3854,3849,3845,3842,3853,3850,3845,3850,3855,7862,7861,7864,7865,7863,7862,3846,3849,3856,7872,7863,7868,7877,7872,7885,13958,13959,13960,13963,13965,13959,3853,3848,3857,3849,3854,3858,3854,3845,3855,3859,3850,3853,3850,3860,3855,7864,7861,7866,7867,7862,7864,7868,7863,7865,7869,7865,7862,3849,3858,3856,7872,7868,7878,7885,7872,7878,13958,13961,13959,13963,13968,13965,13963,13959,13962,3861,3853,3857,3862,3858,3854,3855,3863,3854,3859,3864,3850,3859,3853,3861,3850,3864,3860,3855,3860,3865,7870,7864,7866,7871,7862,7867,7867,7864,7870,7868,7865,7873,7874,7865,7869,7869,7862,7871,3866,3856,3858,7880,7878,7868,13962,13959,13961,13963,13969,13968,13963,13962,13966,3857,3867,3861,3868,3858,3862,3862,3854,3863,3863,3855,3869,3864,3859,3861,3870,3860,3864,3865,3860,3871,3855,3865,3869,7867,7875,7871,7876,7867,7870,7879,7873,7865,7880,7868,7873,7874,7879,7865,7881,7874,7869,7869,7871,7882,3868,3866,3858,13964,13962,13961,13963,13966,13969,13969,13973,13968,13962,13967,13966,13968,13973,13977,3872,3861,3867,3868,3862,3873,3862,3863,3874,3863,3869,3875,3872,3864,3861,3871,3860,3870,3876,3870,3864,3869,3865,3871,7867,7883,7875,7884,7871,7875,7883,7867,7876,3877,3866,3868,7879,7886,7873,7880,7873,7886,7879,7874,7887,7888,7874,7881,7869,7889,7881,7890,7882,7871,7869,7882,7889,13962,13964,13967,13971,13969,13966,13969,13976,13973,13971,13966,13967,13973,13981,13977,3872,3867,3878,3879,3873,3862,3868,3873,3877,3863,3880,3874,3879,3862,3874,3871,3875,3869,3863,3875,3880,3872,3876,3864,3881,3871,3870,3876,3882,3870,7891,7875,7883,7884,7892,7871,7893,7884,7875,7894,7883,7876,7886,7879,7895,13964,13970,13967,7888,7887,7874,7879,7887,7896,7888,7881,7897,7897,7881,7889,7882,7890, +7898,7899,7890,7871,7900,7889,7882,13969,13971,13974,13969,13974,13976,13973,13976,13980,13972,13971,13967,13973,13980,13981,13981,13985,13977,3878,3867,3883,3872,3878,3876,3884,3873,3879,3885,3877,3873,3886,3874,3880,3879,3874,3886,3871,3887,3875,3875,3888,3880,3889,3871,3881,3882,3881,3870,3876,3890,3882,7891,7893,7875,7891,7883,7894,7892,7884,7901,7892,7899,7871,7893,7902,7884,13995,13975,14003,13975,13972,13970,13972,13967,13970,7903,7887,7888,7904,7896,7887,7905,7888,7897,7897,7889,7900,7890,7906,7898,7882,7898,7900,4175,4184,4194,13971,13979,13974,13974,13979,13976,13980,13976,13984,13972,13978,13971,13991,13981,13980,13992,13985,13981,3878,3883,3890,3876,3878,3890,3884,3885,3873,3884,3879,3891,3886,3880,3888,3891,3879,3886,3889,3887,3871,3892,3875,3887,3892,3888,3875,3881,3893,3889,3881,3882,3894,3882,3890,3894,7907,7893,7891,7907,7891,7894,7901,7884,7902,7892,7901,7908,7909,7899,7892,7910,7902,7893,13988,13975,13995,13972,13975,13978,7904,7887,7903,7888,7911,7903,7888,7905,7911,4181,4193,4182,4163,4174,4182,7890,7912,7906,4163,4183,4164,4175,4155,4184,4203,4175,4194,13971,13982,13979,13976,13979,13987,13976,13989,13984,13980,13984,13990,13971,13978,13982,13981,13991,13999,13991,13980,13998,3895,3890,3883,13981,13999,13992,3884,3896,3885,3884,3891,3897,3886,3888,3898,3891,3886,3899,3887,3889,3900,3887,3900,3892,3901,3888,3892,3893,3881,3902,3903,3889,3893,3894,3902,3881,3890,3904,3894,7913,7893,7907,7907,7894,7914,7901,7902,7915,7908,7901,7916,7909,7892,7908,7910,7917,7902,7918,7910,7893,13988,13983,13975,13978,13975,13983,13988,13994,13983,14002,13994,14011,4192,4193,4172,4181,4172,4193,4181,4182,4174,4163,4154,4174,4148,4164,4155,4163,4164,4148,4156,4155,4175,4203,4195,4175,13979,13982,13987,13989,13976,13987,13997,13984,13989,13997,13990,13984,13980,13990,13998,13978,13986,13982,14008,13999,13991,13998,14009,13991,3890,3895,3904,3904,3895,3912,3905,3896,3884,3897,3891,3906,3884,3897,3905,3901,3898,3888,3886,3898,3899,3907,3891,3899,3903,3900,3889,3900,3908,3892,3908,3901,3892,3893,3902,3909,3910,3903,3893, +3894,3911,3902,3904,3911,3894,7918,7893,7913,7913,7907,7914,7902,7917,7915,4235,4231,4213,4213,4208,4222,7909,7908,7919,7918,7917,7910,13978,13983,13986,14002,13983,13994,14018,14002,14011,4180,4192,4172,4172,4181,4162,4181,4174,4162,4148,4154,4163,4154,4162,4174,4143,4148,4155,4156,4143,4155,4158,4156,4175,4195,4177,4175,13982,13993,13987,13989,13987,14001,13997,13989,14005,13997,14006,13990,13998,13990,14007,13993,13982,13986,3904,3912,3921,14008,13991,14015,14014,14009,13998,14009,14015,13991,7921,7913,7914,3907,3906,3891,3913,3897,3906,3897,3914,3905,3899,3898,3901,3915,3907,3899,3916,3900,3903,3908,3900,3917,3901,3908,3915,3909,3902,3918,3893,3909,3919,3903,3910,3920,3910,3893,3919,3911,3918,3902,3904,3921,3911,7918,7913,7920,7915,7917,7922,4213,4231,4225,4213,4187,4208,7923,7919,7908,7917,7918,7924,13986,13983,13996,13996,13983,14002,14018,14012,14002,14018,14011,14027,4180,4172,4153,4162,4153,4172,4148,4140,4154,4154,4147,4162,4143,4140,4148,4144,4143,4156,4144,4156,4158,4175,4177,4158,4195,4187,4177,13993,14001,13987,14010,13989,14001,14005,13989,14010,13997,14005,14006,14006,14007,13990,13998,14007,14014,13986,14000,13993,14022,14008,14015,14009,14014,14023,14009,14024,14015,7913,7921,7920,3922,3906,3907,3923,3897,3913,3922,3913,3906,3923,3914,3897,3905,3914,3924,3901,3915,3899,3915,3925,3907,3917,3900,3916,3903,3920,3916,3908,3917,3926,3908,3925,3915,3909,3918,3927,3928,3919,3909,3929,3920,3910,3929,3910,3919,3930,3918,3911,3931,3911,3921,7924,7918,7920,7922,7917,7925,7922,7926,7915,4225,4231,4236,4213,4225,4220,4213,4204,4187,4208,4187,4195,7917,7924,7925,13986,13996,14004,14002,14012,13996,14012,14018,14028,14018,14027,14035,4180,4153,4173,4153,4162,4147,4140,4147,4154,4140,4143,4138,4138,4143,4144,4149,4144,4158,4158,4177,4166,4187,4166,4177,13993,14000,14001,14010,14001,14017,14020,14005,14010,14005,14021,14006,14014,14007,14006,13986,14004,14000,14022,14015,14031,14014,14021,14023,14009,14023,14032,14033,14024,14009,14015,14024,14031,7921,7927,7920,3922,3907,3932,3933,3923,3913,3934,3913,3922,3914,3923, +3935,3914,3936,3924,3932,3907,3925,3917,3916,3937,3938,3916,3920,3926,3917,3939,3926,3940,3908,3940,3925,3908,3918,3941,3927,3909,3927,3928,3928,3929,3919,3942,3920,3929,3941,3918,3930,3930,3911,3931,7928,7924,7920,7922,7925,7929,7930,7926,7922,4236,4231,4240,4236,4230,4225,4230,4220,4225,4213,4220,4204,4204,4185,4187,7931,7925,7924,13996,14013,14004,14019,13996,14012,14036,14028,14018,14012,14028,14019,14035,14027,14045,14036,14018,14035,4161,4173,4153,14027,14057,14045,4153,4147,4142,4140,4142,4147,4138,4139,4140,4141,4138,4144,4149,4141,4144,4149,4158,4166,4187,4185,4166,14000,14017,14001,14017,14026,14010,14021,14005,14020,14020,14010,14026,14014,14006,14021,14000,14004,14016,3931,3964,3951,14040,14023,14021,14023,14041,14032,14009,14032,14033,14042,14024,14033,14042,14031,14024,7928,7920,7927,3934,3922,3932,3923,3933,3943,3913,3934,3933,3923,3944,3935,7942,7945,7936,7936,7928,7942,3932,3925,3945,3937,3916,3938,3939,3917,3937,3938,3920,3942,3939,3946,3926,3940,3926,3946,3945,3925,3940,3947,3927,3941,3948,3928,3927,3929,3928,3949,3950,3942,3929,3941,3930,3951,3931,3951,3930,7928,7931,7924,7931,7929,7925,7930,7922,7929,7930,7932,7926,4240,4241,4236,4236,4241,4230,4219,4220,4230,4220,4219,4204,4205,4185,4204,13996,14019,14013,14013,14016,14004,14046,14028,14036,14019,14028,14037,14035,14045,14058,14059,14036,14035,4171,4173,4161,4142,4161,4153,14057,14069,14045,4139,4142,4140,4139,4138,4141,4157,4141,4149,4149,4166,4165,4185,4165,4166,14017,14000,14025,14017,14034,14026,14021,14020,14038,14026,14039,14020,14025,14000,14016,3941,3951,3964,14040,14050,14023,14021,14038,14040,14050,14041,14023,14041,14051,14032,14052,14033,14032,14052,14042,14033,14031,14042,14053,3934,3932,3952,3933,3953,3943,3923,3943,3944,3954,3933,3934,3955,3935,3944,16313,16314,16315,7936,7933,7928,3956,3932,3945,3957,3937,3938,3939,3937,3957,3942,3958,3938,3939,3957,3946,3940,3946,3959,3945,3940,3959,3960,3927,3947,3941,3961,3947,3948,3949,3928,3960,3948,3927,3929,3949,3962,3942,3950,3963,3950,3929,3962,7928,7933,7931,7929,7931,7934,7930,7929, +7932,7932,7935,7926,7926,7935,7940,4242,4230,4241,4232,4219,4230,4205,4204,4219,4196,4185,4205,14013,14019,14029,14030,14016,14013,14046,14047,14028,14046,14036,14059,14047,14037,14028,14029,14019,14037,14058,14045,14069,14058,14059,14035,14082,14069,14057,4152,4171,4161,4152,4161,4142,4142,4139,4146,4145,4139,4141,4157,4151,4141,4157,4149,4165,4185,4176,4165,14017,14025,14034,14034,14044,14026,14038,14020,14039,14039,14026,14044,14030,14025,14016,3964,3961,3941,14062,14050,14040,14040,14038,14061,14050,14063,14041,14041,14064,14051,14032,14051,14052,14052,14065,14042,14066,14053,14042,3956,3952,3932,3952,3954,3934,3953,3933,3965,3943,3953,3944,3954,3965,3933,16262,16258,16254,7944,7941,7936,7936,7941,7933,3956,3945,3966,3957,3938,3958,3963,3958,3942,3957,3967,3946,3968,3959,3946,3945,3959,3966,3947,3969,3960,3947,3961,3969,3949,3948,3970,3948,3960,3971,3972,3962,3949,3963,3950,3973,3962,3974,3950,7931,7933,7937,7937,7934,7931,7934,7938,7929,7939,7932,7929,16283,16288,16292,4245,4244,4241,4239,4230,4242,4241,4244,4242,4232,4226,4219,4232,4230,4239,4214,4205,4219,4185,4196,4176,4214,4196,4205,14013,14029,14030,14046,14070,14047,14059,14071,14046,14047,14048,14037,14048,14029,14037,14058,14069,14083,14058,14084,14059,14082,14095,14069,4152,4170,4171,4146,4152,4142,4139,4150,4146,4139,4145,4150,4145,4141,4151,4157,4160,4151,4157,4165,4176,14025,14043,14034,14034,14056,14044,14061,14038,14039,14044,14061,14039,14025,14030,14043,14076,14050,14062,14062,14040,14061,14063,14050,14077,14041,14063,14064,14051,14064,14078,14052,14051,14065,14065,14066,14042,3983,3969,3961,3975,3952,3956,3952,3976,3954,3953,3965,3977,3944,3953,3978,3954,3979,3965,16258,16242,16254,7944,7949,7947,7941,7944,7947,7941,7937,7933,3980,3956,3966,3967,3957,3958,3967,3958,3963,3967,3968,3946,3968,3981,3959,3981,3966,3959,3969,3982,3960,3970,3948,3971,3972,3949,3970,3960,3984,3971,3972,3985,3962,3950,3974,3973,3986,3963,3973,3962,3985,3974,7937,7943,7934,7943,7938,7934,7929,7938,7939,16274,16278,16283,16278,16288,16283,16288,16296,16292,16292,16296,16300, +16316,16317,16318,4243,4242,4244,4232,4234,4226,4226,4214,4219,4232,4239,4234,4186,4176,4196,4207,4196,4214,14030,14029,14049,14046,14071,14070,14047,14070,14085,14086,14071,14059,14047,14072,14048,14048,14049,14029,14083,14069,14095,14058,14083,14096,14058,14096,14084,14059,14084,14086,14106,14095,14082,4150,4170,4152,4170,4191,4171,4150,4152,4146,4159,4150,4145,4151,4160,4145,4178,4160,4157,4186,4157,4176,14043,14055,14034,14056,14034,14055,14056,14068,14044,14075,14061,14044,14030,14054,14043,14076,14077,14050,14090,14076,14062,14061,14088,14062,14091,14063,14077,14064,14063,14078,14051,14078,14065,14092,14066,14065,3983,3982,3969,3975,3976,3952,3975,3956,3980,3954,3976,3979,3987,3977,3965,3977,3988,3953,16222,16242,16248,3965,3979,3989,16242,16247,16254,7950,7947,7949,7941,7947,7946,7946,7937,7941,3980,3966,3990,3967,3963,3991,3967,3992,3968,3968,3993,3981,3990,3966,3981,3960,3982,3984,3971,3994,3970,3994,3972,3970,3984,3995,3971,3985,3972,3996,3997,3973,3974,3991,3963,3986,3973,3997,3986,3998,3974,3985,7946,7943,7937,16253,16261,16268,16274,16268,16271,16278,16274,16271,16278,16286,16288,16288,16295,16296,16296,16301,16300,4243,4234,4239,4226,4234,4221,4226,4221,4214,4207,4186,4196,4221,4207,4214,14049,14060,14030,14070,14071,14097,3708,3721,3694,14047,14085,14072,14097,14071,14086,14087,14048,14072,14049,14048,14073,14083,14095,14107,14083,14108,14096,14096,14109,14084,14110,14086,14084,14121,14095,14106,14106,14082,14122,4170,4150,4167,14135,14106,14122,4150,4159,4167,4159,4145,4168,4160,4169,4145,4178,4179,4160,4178,4157,4190,4190,4157,4186,14054,14055,14043,14055,14080,14056,14068,14056,14081,14068,14075,14044,14061,14075,14089,14030,14067,14054,14077,14076,14090,14090,14062,14088,14089,14088,14061,14098,14063,14091,14091,14077,14099,14098,14078,14063,14100,14065,14078,14101,14066,14092,14092,14065,14100,4003,3982,3983,3975,3999,3976,3975,3980,4000,3976,3999,3979,16191,16202,16161,3965,3989,3987,16213,16222,16202,16222,16234,16242,3989,3979,4001,16247,16242,16234,7950,7948,7947,7946,7947,7948,3980,3990,4002, +3967,3991,3992,3993,3968,3992,3981,3993,3990,4004,3984,3982,4005,3994,3971,3972,3994,3996,4004,3995,3984,4005,3971,3995,4006,3985,3996,4007,3997,3974,3991,3986,4008,3997,4009,3986,3998,4007,3974,3985,4010,3998,7948,7943,7946,16252,16261,16253,16261,16271,16268,16278,16271,16270,16278,16282,16286,16295,16288,16286,16296,16295,16298,16296,16298,16301,16308,16310,16301,4228,4221,4234,4207,4216,4186,4221,4216,4207,14049,14074,14060,14060,14067,14030,3721,3732,3687,3721,3687,3694,3708,3694,3674,3674,3723,3708,14111,14097,14086,3724,3756,3769,3691,3724,3723,14049,14073,14074,14121,14107,14095,14083,14107,14108,14123,14096,14108,14096,14123,14109,14110,14084,14109,14110,14111,14086,14106,14134,14121,4167,4189,4170,4200,4170,4189,4168,4167,4159,4169,4168,4145,4160,4179,4169,4178,4201,4179,4178,4190,4202,4206,4190,4186,14055,14054,14079,14079,14080,14055,14080,14081,14056,14094,14068,14081,14075,14068,14094,14094,14089,14075,14079,14054,14067,14090,14114,14077,14090,14088,14112,14112,14088,14089,14098,14091,14115,14077,14114,14099,14116,14091,14099,14078,14098,14117,14100,14078,14117,14101,14092,14118,14100,14118,14092,14130,14145,14101,4011,3999,3975,3980,4002,4000,3975,4000,4011,4001,3979,3999,16213,16202,16191,16191,16161,16164,16145,16128,16161,16213,16230,16222,16230,16234,16222,16099,16145,16149,7950,7951,7948,3990,4012,4002,3992,3991,4013,3992,4014,3993,3993,4015,3990,4016,4004,3982,4005,3996,3994,4004,4017,3995,4005,3995,4018,3985,4006,4010,4005,4006,3996,4007,4009,3997,4019,4008,3986,4013,3991,4008,4019,3986,4009,4007,3998,4020,4021,3998,4010,16241,16253,16246,16252,16267,16261,16241,16252,16253,16270,16271,16261,16270,16282,16278,16282,16291,16286,16295,16286,16291,16298,16295,16291,16298,16303,16301,4238,4228,4234,16305,16308,16301,4228,4216,4221,4216,4215,4186,14060,14074,14067,14124,14140,14097,3694,3687,3657,3674,3694,3657,3723,3674,3691,14124,14097,14111,3724,3746,3756,3691,3693,3724,14121,14136,14107,14137,14108,14107,14137,14123,14108,14138,14109,14123,14110,14109,14139,14110,14139,14111,14134,14150,14121, +4189,4167,4199,4188,4167,4168,4169,4179,4168,4202,4201,4178,4212,4179,4201,4206,4202,4190,4206,4186,4215,14103,14080,14079,14080,14104,14081,14105,14094,14081,14089,14094,14113,14079,14067,14093,14090,14126,14114,14090,14112,14126,14112,14089,14125,14115,14091,14116,14117,14098,14115,14127,14099,14114,14116,14099,14128,14129,14100,14117,14130,14101,14118,14100,14129,14118,3999,4011,4022,4023,4000,4002,4023,4011,4000,16149,16148,16131,16191,16205,16213,16127,16164,16161,16191,16164,16178,16128,16145,16099,16127,16161,16128,16230,16213,16216,16241,16234,16230,16099,16149,16131,16234,16241,16246,4024,4012,3990,4023,4002,4012,3992,4013,4014,3993,4014,4015,4024,3990,4015,4025,4004,4016,4025,4017,4004,3995,4017,4026,4018,3995,4026,4006,4005,4018,4006,4027,4010,4020,4009,4007,4028,4008,4019,4008,4028,4013,4019,4009,4029,3998,4021,4020,4010,4027,4021,16260,16267,16252,16270,16261,16267,16237,16252,16241,16270,16279,16282,16291,16282,16287,16298,16291,16299,16298,16299,16303,16305,16301,16303,16308,16309,16312,16305,16309,16308,4228,4227,4216,4227,4215,4216,14093,14067,14074,3649,3687,3688,3649,3657,3687,3674,3657,3638,3691,3674,3672,14141,14124,14111,3726,3746,3724,3691,3655,3693,3726,3724,3693,14150,14136,14121,14136,14151,14107,14137,14107,14151,14123,14137,14152,14138,14153,14109,14138,14123,14154,7856,7858,7860,14141,14111,14139,4167,4197,4199,4167,4188,4197,4198,4188,4168,4168,4179,4198,4211,4179,4212,14104,14080,14103,14103,14079,14119,14081,14104,14105,14105,14120,14094,14120,14113,14094,14113,14125,14089,14102,14079,14093,14126,14142,14114,14126,14112,14125,14116,14117,14115,14127,14128,14099,14127,14114,14142,14116,14128,14143,14144,14129,14117,14146,14130,14118,14118,14129,14147,16130,16097,16095,16131,16148,16095,4011,4023,4030,16178,16205,16191,16213,16205,16216,16127,16147,16164,16178,16164,16147,16099,16093,16128,16127,16128,16093,16230,16216,16215,16241,16230,16232,16099,16131,16098,4031,4012,4024,4023,4012,4031,4013,4032,4014,4024,4015,4014,4025,4033,4017,4033,4026,4017,4018,4026,4034,4006,4018,4035,4027,4006, +4035,4036,4009,4020,4029,4028,4019,4037,4013,4028,4009,4036,4029,4020,4021,4038,4039,4021,4027,16260,16265,16267,16250,16260,16252,16270,16267,16273,16237,16250,16252,16237,16241,16232,16270,16273,16279,16282,16279,16287,16287,16294,16291,16299,16291,16294,16302,16303,16299,16305,16303,16307,4227,4228,4237,16311,16309,16305,4227,4233,4215,3649,3688,3671,3657,3649,3625,3638,3657,3625,3672,3674,3638,3672,3655,3691,3703,3671,3688,3655,3673,3693,3707,3726,3693,14150,14165,14136,14166,14151,14136,14167,14137,14151,14152,14137,14168,14123,14152,14154,14138,14169,14153,14170,14138,14154,7856,7851,7858,14139,14171,14141,4209,4199,4197,4188,4209,4197,4198,4210,4188,4211,4198,4179,14104,14103,14131,14102,14119,14079,14132,14103,14119,14104,14133,14105,14105,14133,14120,14113,14120,14125,3707,3735,3726,14126,14125,14142,14116,14144,14117,14127,14156,14128,14157,14127,14142,14158,14143,14128,14143,14159,14116,14160,14129,14144,14146,14118,14161,14147,14129,14162,14147,14161,14118,16095,16097,16074,16098,16131,16095,4031,4030,4023,16178,16194,16205,16194,16216,16205,16113,16147,16127,16147,16194,16178,16099,16046,16093,16092,16127,16093,16194,16215,16216,16215,16232,16230,16051,16099,16098,4031,4024,4040,4037,4032,4013,4014,4032,4041,4041,4024,4014,4025,4042,4033,4033,4043,4026,4034,4026,4043,4018,4034,4035,4027,4035,4039,4036,4020,4038,4044,4028,4029,4037,4028,4044,4045,4029,4036,4021,4046,4038,4039,4046,4021,16256,16265,16260,16273,16267,16265,16250,16256,16260,16235,16250,16237,16232,16225,16237,16279,16273,16276,16279,16285,16287,16294,16287,16285,16299,16294,16297,16302,16304,16303,16302,16299,16297,16307,16303,16304,16311,16305,16307,8022,7989,8012,3649,3671,3617,3625,3649,3617,3607,3638,3625,3639,3672,3638,3672,3639,3655,3689,3671,3703,3655,3640,3673,3673,3707,3693,14165,14166,14136,14167,14151,14166,14167,14168,14137,14178,14152,14168,14154,14152,14179,14169,14138,14170,14180,14153,14169,14154,14179,14170,7851,7856,7852,7851,7853,7858,7857,7859,7853,4210,4209,4188,4210,4198,4211,14132,14131,14103,14104,14131,14148,3735, +3734,3758,3770,3758,3748,14104,14148,14133,14133,14149,14120,14120,14155,14125,3707,3734,3735,14142,14125,14157,14172,14144,14116,14157,14156,14127,14158,14128,14156,14158,14173,14143,14143,14173,14159,14172,14116,14159,14160,14162,14129,14172,14160,14144,14147,14162,14174,14147,14174,14161,16074,16097,16049,16095,16074,16048,16098,16095,16048,4047,4030,4031,16113,16163,16147,16092,16113,16127,16194,16147,16193,16046,16099,16051,16046,16072,16093,16093,16072,16092,16193,16215,16194,16215,16225,16232,16075,16051,16098,4041,4040,4024,4047,4031,4040,4037,4048,4032,4041,4032,4048,4049,4033,4042,4043,4033,4049,4043,4050,4034,4034,4051,4035,4052,4039,4035,4036,4038,4053,4044,4029,4054,4037,4044,4055,4054,4029,4045,4045,4036,4053,4038,4046,4056,4057,4046,4039,16256,16266,16265,16273,16265,16276,16256,16250,16235,16224,16235,16237,16237,16225,16224,16285,16279,16276,16294,16285,16290,16297,16294,16290,16304,16302,16306,7955,7958,7953,7965,7961,7957,7975,7965,7964,3671,3650,3617,3625,3617,3586,3638,3607,3605,3625,3586,3607,3605,3639,3638,3606,3655,3639,3671,3689,3650,3640,3655,3606,3640,3656,3673,3673,3692,3707,14165,14191,14166,14178,14179,14152,14170,14195,14169,14180,14196,14153,14169,14195,14180,14170,14179,14197,7851,7852,7845,7847,7853,7851,7847,7857,7853,3793,3770,3783,14131,14163,14148,3758,3734,3748,3783,3770,3748,14164,14133,14148,14133,14164,14149,14149,14155,14120,14155,14157,14125,3707,3725,3734,14156,14157,14182,14158,14156,14183,14184,14173,14158,14173,14185,14159,14172,14159,14185,14162,14160,14186,14160,14172,14187,14162,14188,14174,14189,14161,14174,4047,4058,4030,16074,16049,16028,16028,16048,16074,16098,16048,16075,16113,16162,16163,16177,16147,16163,16073,16113,16092,16177,16193,16147,16046,16051,16031,16046,16027,16072,16027,16092,16072,16225,16215,16193,16007,16051,16075,4048,4040,4041,4047,4040,4048,4037,4055,4048,4059,4043,4049,4043,4060,4050,4034,4050,4051,4035,4051,4052,4057,4039,4052,4038,4061,4053,4062,4044,4054,4055,4044,4063,4045,4053,4054,4056,4046,4057,4056,4061,4038,16266,16256,16259,16266, +16272,16265,16276,16265,16280,16256,16235,16259,16224,16223,16235,16225,16193,16224,16285,16276,16290,7958,7962,7956,7952,7955,7953,7961,7952,7957,7953,7958,7956,7957,7964,7965,3618,3617,3650,3586,3617,3587,3605,3607,3576,3607,3586,3576,3606,3639,3605,3651,3650,3689,3606,3623,3640,3640,3623,3656,3673,3656,3692,3692,3725,3707,14170,14207,14195,14208,14196,14180,14195,14209,14180,14207,14170,14197,7845,7852,7848,7851,7845,7844,7847,7851,7844,3651,3689,3704,3799,3793,3783,14163,14175,14148,3748,3734,3725,16319,16320,16321,14164,14148,14175,14176,14149,14164,14149,14177,14155,14155,14181,14157,14181,14182,14157,14156,14182,14198,14198,14183,14156,14183,14184,14158,14184,14199,14173,14187,14185,14173,14187,14172,14185,14160,14200,14186,14186,14201,14162,14160,14187,14200,14202,14188,14162,14188,14189,14174,4047,4064,4058,16049,16005,16028,16028,15982,16048,16048,16029,16075,16146,16162,16113,16177,16163,16162,16073,16114,16113,16027,16073,16092,16204,16193,16177,16031,16051,16007,16046,16031,15985,16027,16046,15985,16029,16007,16075,4048,4065,4047,4055,4065,4048,14252,14217,14242,14188,14217,14189,4060,4066,4050,4067,4051,4050,4052,4051,4067,4057,4052,4068,4069,4053,4061,4062,4070,4044,4054,4071,4062,4070,4063,4044,4063,4072,4055,4069,4054,4053,4056,4057,4073,4056,4074,4061,16266,16259,16269,16272,16266,16269,16275,16265,16272,16280,16265,16275,16284,16276,16280,16255,16259,16235,16214,16223,16224,16236,16235,16223,16214,16224,16193,16290,16276,16284,7966,7956,7962,7952,7953,7954,7954,7957,7952,7953,7956,7954,3587,3617,3618,3618,3650,3651,3587,3558,3586,3605,3576,3575,3563,3576,3586,3575,3606,3605,3606,3593,3623,3623,3653,3656,3692,3656,3705,3725,3692,3705,14195,14207,14219,7854,7848,7852,14208,14180,14209,14195,14219,14209,7845,7848,7842,7844,7845,7839,7847,7844,7841,16322,16323,16324,7642,7633,7638,3748,3725,3757,7612,7618,7625,3771,3748,3757,14175,14190,14164,14149,14176,14177,14176,14164,14190,14181,14155,14177,14181,14198,14182,14198,14211,14183,14212,14184,14183,14213,14199,14184,14173,14199,14187,14214,14186,14200, +14186,14215,14201,14202,14162,14201,14216,14200,14187,14188,14202,14217,4064,4047,4065,16096,16050,16049,16049,16050,16005,16005,15982,16028,16029,16048,15982,16146,16176,16162,16114,16146,16113,16177,16162,16192,16073,16094,16114,16073,16027,16047,16214,16193,16204,16192,16204,16177,16031,16007,15985,16027,15985,15981,16030,16007,16029,4055,4064,4065,14242,14217,14227,4066,4060,4075,4076,4050,4066,4067,4050,4076,4052,4067,4077,4052,4077,4068,4057,4068,4078,4074,4069,4061,4070,4062,4079,4054,4069,4071,4062,4071,4080,4063,4070,4081,4063,4081,4072,4072,4064,4055,4073,4057,4078,4056,4073,4074,16264,16269,16259,16269,16277,16272,16275,16272,16281,16280,16275,16281,16284,16280,16289,16255,16264,16259,16249,16255,16235,16223,16214,16203,16236,16249,16235,16231,16236,16223,7962,7970,7966,7966,7963,7956,7954,7956,7959,3618,3588,3587,3651,3636,3618,3587,3559,3558,3563,3586,3558,3575,3576,3545,3576,3563,3545,3575,3593,3606,3592,3623,3593,3653,3623,3624,3653,3690,3656,3705,3656,3690,3733,3725,3705,14229,14219,14207,7854,7855,7848,14209,14230,14208,14219,14231,14209,7848,7849,7842,7845,7842,7839,7844,7839,7838,7844,7838,7841,16325,16324,16323,7638,7633,7627,3757,3725,3747,7607,7618,7612,7612,7598,7607,7627,7637,7638,14177,14176,14203,14190,14204,14176,14177,14198,14181,7632,7641,7634,14183,14211,14222,14223,14184,14212,14212,14183,14222,14199,14213,14224,14223,14213,14184,14224,14187,14199,14225,14186,14214,14214,14200,14216,14225,14215,14186,14215,14202,14201,14216,14187,14226,14227,14217,14202,16096,16076,16050,16006,16005,16050,15959,15982,16005,16029,15982,15984,16176,16146,16165,16192,16162,16176,16114,16129,16146,16073,16047,16094,16114,16094,16129,16047,16027,15981,16192,16214,16204,16007,15940,15985,15981,15985,15958,15983,16007,16030,16029,15984,16030,14242,14227,14253,4060,4082,4075,4076,4066,4075,4067,4076,4083,4067,4083,4077,4077,4084,4068,4068,4085,4078,4069,4074,4086,4062,4080,4079,4070,4079,4081,4071,4069,4087,4080,4071,4088,4089,4072,4081,4090,4073,4078,4086,4074,4073,8068,8048,8031,8031,8016,8007,16281,16272, +16277,16280,16281,16289,16293,16284,16289,8094,8047,8068,16249,16257,16255,16192,16203,16214,16223,16203,16231,16243,16249,16236,16243,16236,16231,7973,7963,7966,7963,7959,7956,3618,3636,3588,3587,3588,3559,7841,7838,7835,3528,3558,3559,3533,3563,3558,3575,3545,3544,3533,3545,3563,3593,3575,3544,3592,3624,3623,3593,3544,3592,3653,3624,3654,3653,3654,3690,3705,3690,3722,3725,3733,3747,3722,3733,3705,14219,14229,14243,14208,14230,14244,7848,7855,7849,14209,14231,14230,14243,14231,14219,7843,7842,7849,7842,7836,7839,7838,7839,7833,7618,7627,7633,7598,7587,7592,7607,7615,7618,7607,7598,7592,7627,7629,7637,14204,14203,14176,14177,14203,14218,7634,7641,7647,7632,7634,7622,14222,14211,14234,14223,14212,14235,14222,14234,14212,14224,14213,14236,14223,14236,14213,14224,14226,14187,14225,14214,14237,14214,14216,14238,14225,14239,14215,14240,14202,14215,14216,14226,14241,14227,14202,14240,16008,16050,16076,16006,15959,16005,16050,16008,16006,15959,15937,15982,15960,15984,15982,16165,16146,16129,16195,16176,16165,16192,16176,16203,16091,16094,16047,16126,16129,16094,15981,16045,16047,15940,16007,15983,15958,15985,15940,15981,15958,15936,15983,16030,15984,14227,14240,14253,4075,4082,4091,4076,4075,4092,4083,4076,4093,4077,4083,4094,4077,4095,4084,4068,4084,4085,4090,4078,4085,4096,4069,4086,4097,4079,4080,4098,4081,4079,4087,4069,4096,4088,4071,4087,4097,4080,4088,16008,16076,16052,4089,4081,4098,4090,4086,4073,8048,8068,8047,8048,8030,8031,8030,8016,8031,7986,8007,8016,7995,8007,7986,7986,7978,7995,7966,7978,7973,16257,16263,16255,16243,16257,16249,16203,16226,16231,16243,16231,16251,7963,7973,7976,3636,3619,3588,3588,3572,3559,7838,7833,7835,3533,3558,3528,3559,3541,3528,3514,3544,3545,3514,3545,3533,3624,3592,3604,3592,3544,3574,3637,3654,3624,3706,3690,3654,16326,16327,16328,16329,16330,16331,3722,3745,3733,14230,14257,14244,14231,14256,14230,14231,14243,14258,7837,7842,7843,7846,7843,7849,7837,7836,7842,7839,7836,7833,7618,7615,7627,7592,7587,7570,7607,7601,7615,7607,7592,7601,7621,7629,7627,14228,14203,14204,7634,7628,7622, +7620,7632,7622,14246,14234,14211,14234,14235,14212,14235,14247,14223,14224,14236,14248,14249,14236,14223,14226,14224,14248,14214,14238,14237,14250,14225,14237,14238,14216,14241,14225,14250,14239,14240,14215,14239,14241,14226,14251,15959,16006,15962,16008,15961,16006,15937,15959,15912,15937,15960,15982,15939,15984,15960,16165,16129,16175,16195,16203,16176,16165,16175,16195,16126,16094,16091,16091,16047,16045,16129,16126,16160,16026,16045,15981,15940,15983,15939,15940,15911,15958,15936,15958,15911,15979,15981,15936,15983,15984,15939,14240,14239,14253,14253,14239,14277,4092,4075,4091,14340,14355,14323,14404,14340,14388,4095,4077,4094,4099,4084,4095,4084,4100,4085,4085,4101,4090,4102,4096,4086,4079,4097,4103,16053,15963,16032,4096,4088,4087,4097,4088,4104,16052,16009,16008,16052,16032,16009,4102,4086,4090,8047,8023,8048,8048,8023,8030,8030,8006,8016,7986,8016,8006,7986,7973,7978,8075,8049,8047,16251,16257,16243,16217,16226,16203,16238,16231,16226,8093,8141,8126,7986,7976,7973,7831,7835,7833,3588,3619,3603,3588,3603,3572,3541,3559,3572,3532,3544,3514,3592,3574,3604,3624,3604,3637,3562,3574,3544,7561,7566,7546,7567,7561,7556,7567,7574,7579,7587,7580,7570,7580,7579,7574,14270,14257,14230,14231,14269,14256,14230,14256,14270,14258,14271,14231,7837,7843,7840,7846,7840,7843,7837,7832,7836,7832,7833,7836,7615,7621,7627,7592,7570,7590,7615,7601,7602,7590,7601,7592,7616,7629,7621,7622,7628,7616,7622,7609,7620,14234,14246,14260,14234,14261,14235,14247,14235,14262,14249,14223,14247,14249,14248,14236,14226,14248,14251,14238,14263,14237,14250,14237,14264,14265,14238,14241,14266,14239,14250,14241,14251,14267,16006,15961,15962,15959,15962,15912,15986,15961,16008,15865,15937,15912,15913,15960,15937,15913,15939,15960,16129,16160,16175,16217,16203,16195,16195,16175,16206,16125,16126,16091,16071,16091,16045,16125,16160,16126,16045,16026,16069,15979,16026,15981,15940,15939,15888,15940,15888,15911,15911,15886,15936,15936,15934,15979,14239,14266,14277,4092,4091,4105,14313,14340,14323,14388,14340,14373,4095,4094,4106,4084,4099,4107,4099,4095, +4106,4084,4107,4100,4100,4101,4085,4090,4101,4102,4102,4108,4096,4097,4109,4103,16009,16032,15963,4110,4088,4096,4104,4088,4110,4097,4104,4109,16009,15986,16008,8047,8040,8023,8006,8030,8023,7986,8006,7994,8093,8049,8075,8049,8040,8047,16212,16226,16217,16231,16238,16244,16332,16333,16334,8093,8126,8111,7994,7976,7986,7831,7833,7829,7831,7829,7827,3585,3572,3603,3572,3557,3541,3544,3532,3562,3591,3604,3574,3637,3604,3622,3562,3591,3574,3637,3622,3652,7561,7546,7556,7565,7567,7556,7567,7565,7574,7580,7574,7570,14271,14269,14231,3833,3838,3831,3833,3830,3837,14271,14258,14281,7837,7840,7834,7850,7840,7846,7837,7834,7832,7832,7829,7833,7602,7621,7615,7590,7570,7582,7590,7602,7601,7602,7616,7621,7609,7622,7616,7608,7620,7609,7608,7619,7620,14260,14272,14234,14234,14272,14261,14261,14273,14235,14273,14262,14235,14247,14262,14274,14249,14247,14274,14248,14249,14275,14251,14248,14275,14238,14265,14263,14263,14264,14237,14266,14250,14264,14265,14241,14276,14251,14278,14267,14276,14241,14267,15914,15962,15961,15914,15912,15962,15961,15986,15915,15913,15937,15865,15865,15912,15887,15913,15888,15939,16159,16175,16160,16195,16206,16217,16201,16206,16175,16091,16071,16125,16071,16045,16044,16159,16160,16125,16025,16069,16026,16069,16044,16045,16025,16026,15979,15863,15911,15888,15911,15863,15886,15936,15886,15934,15979,15934,15980,14290,14277,14266,14323,14290,14313,14313,14352,14340,14340,14352,14373,14405,14388,14373,4111,4107,4099,4112,4099,4106,4113,4100,4107,4100,4114,4101,4101,4115,4102,4115,4108,4102,4096,4108,4110,15916,15963,15918,16009,15963,15986,4110,4116,4104,4104,4116,4109,8076,8049,8093,16226,16212,16229,16200,16212,16217,16238,16245,16244,16229,16239,16226,16238,16239,16245,8112,8111,8126,8111,8076,8093,7827,7829,7824,3557,3572,3585,7820,7827,7824,3591,3622,3604,3589,3591,3562,7547,7537,7546,7546,7552,7556,7565,7556,7560,7570,7574,7565,14269,14271,14281,3831,3838,3836,3833,3831,3819,3833,3819,3830,3813,3815,3822,3830,3820,3822,7834,7830,7832,7832,7824,7829,7570,7576,7582,7590,7582,7594,7602,7590,7594,7609,7616, +7602,7608,7609,7594,7614,7619,7608,14282,14272,14260,14272,14283,14261,14261,14283,14273,14284,14262,14273,14262,14285,14274,14286,14249,14274,14275,14249,14286,14251,14275,14278,14265,14287,14263,14264,14263,14288,14289,14266,14264,14265,14276,14287,14278,14291,14267,14276,14267,14292,15890,15914,15961,15892,15912,15914,15915,15986,15963,15961,15915,15890,15866,15913,15865,15887,15912,15938,15887,15815,15865,15888,15913,15866,16201,16175,16159,16206,16201,16217,16112,16125,16071,16044,16024,16071,16125,16143,16159,16023,16069,16025,16069,16023,16044,16025,15979,15980,15817,15863,15888,15863,15836,15886,15934,15886,15909,15980,15934,15956,14301,14290,14266,14301,14313,14290,14337,14352,14313,14385,14373,14352,14405,14373,14403,4111,4117,4107,4099,4118,4111,4118,4099,4112,14403,14440,14405,4100,4113,4114,4113,4107,4117,4101,4114,4115,4115,4119,4108,4110,4108,4120,15915,15963,15916,15916,15918,15893,4110,4120,4116,15871,15918,15917,16229,16212,16221,16212,16200,16187,16200,16217,16201,8128,8126,8162,16229,16245,16239,8112,8126,8128,7820,7816,7819,7820,7824,7821,3622,3591,3621,3589,3621,3591,7547,7538,7537,7537,7542,7546,7546,7542,7552,7556,7552,7560,7565,7560,7570,3828,3831,3836,3819,3831,3824,3819,3820,3830,3813,3808,3815,3813,3822,3820,3821,3815,3808,7830,7824,7832,7570,7568,7576,7582,7576,7589,7589,7594,7582,7602,7594,7609,7600,7608,7594,7626,7619,7614,7600,7614,7608,14282,14295,14272,14283,14272,14296,14284,14273,14283,14284,14297,14262,14298,14285,14262,14286,14274,14285,14286,14299,14275,14275,14299,14278,14287,14288,14263,14264,14288,14300,14289,14301,14266,14289,14264,14300,14292,14287,14276,14291,14278,14302,14291,14292,14267,15890,15891,15914,15892,15938,15912,15914,15868,15892,15889,15890,15915,15866,15865,15839,15887,15938,15892,15815,15887,15844,15865,15815,15839,15817,15888,15866,16201,16159,16190,16112,16143,16125,16112,16071,16090,16044,15978,16024,16090,16071,16024,16159,16143,16174,16025,15980,16023,16003,16044,16023,15863,15817,15838,15863,15813,15836,15861,15886,15836,15909,15886,15861,15934,15909, +15956,16002,15980,15956,14301,14311,14313,14370,14352,14337,14313,14311,14337,14403,14373,14385,14352,14370,14385,4111,4121,4117,4111,4118,4121,4118,4112,4122,4113,4123,4114,4124,4113,4117,4114,4125,4115,4125,4119,4115,4126,4108,4119,4126,4120,4108,15870,15915,15916,15871,15893,15918,15870,15916,15893,4116,4120,4127,15871,15917,15872,16221,16212,16199,16221,16233,16229,16157,16187,16200,16187,16199,16212,16201,16190,16200,8161,8128,8162,16245,16229,16240,7820,7821,7816,7824,7825,7821,3620,3621,3589,7538,7529,7537,7532,7542,7537,7542,7543,7552,7560,7552,7557,7570,7560,7568,3828,3824,3831,3819,3824,3812,3819,3811,3820,3804,3808,3813,3820,3811,3813,3821,3808,3825,7830,7825,7824,7576,7568,7575,7576,7588,7589,7600,7594,7589,14282,14317,14303,7613,7614,7600,14282,14303,14295,14296,14272,14295,14304,14283,14296,14284,14283,14304,14297,14284,14305,14297,14298,14262,14306,14285,14298,14286,14285,14307,14307,14299,14286,14308,14278,14299,14309,14288,14287,14310,14300,14288,14289,14311,14301,14311,14289,14300,14292,14312,14287,14302,14278,14308,14302,14314,14291,14292,14291,14315,15891,15890,15842,15914,15891,15868,15844,15892,15868,15889,15867,15890,15915,15869,15889,15840,15866,15839,15887,15892,15844,15815,15844,15822,15791,15839,15815,15817,15866,15840,16159,16174,16190,16158,16143,16112,16112,16090,16124,16044,16003,15978,15978,16004,16024,16090,16024,16070,16158,16174,16143,15976,16023,15980,16003,16023,15976,15838,15817,15772,15813,15863,15838,15813,15767,15836,15861,15836,15812,15861,15910,15909,15957,15956,15909,15976,15980,16002,15930,16002,15956,14338,14370,14337,14338,14337,14311,14424,14403,14385,14370,14371,14385,4121,4128,4117,4121,4118,4129,4129,4118,4122,4113,4124,4123,4114,4123,4125,4130,4124,4117,4125,4123,4119,4126,4119,4131,4126,4127,4120,15915,15870,15869,15871,15823,15893,15893,15823,15870,15872,15917,15873,15871,15872,15824,16211,16221,16199,16233,16221,16228,16240,16229,16233,16173,16187,16157,16157,16200,16188,16173,16199,16187,16188,16200,16190,8162,8202,8161,7816,7821,7817,7822,7821,7825,7538,7533, +7529,7529,7532,7537,7542,7532,7543,7549,7552,7543,7549,7557,7552,7557,7568,7560,3828,3817,3824,3812,3824,3817,3811,3819,3812,3808,3804,3797,3804,3813,3811,7825,7828,7822,7569,7575,7568,7576,7575,7588,7588,7600,7589,14303,14317,14327,7613,7600,7599,14303,14318,14295,14319,14296,14295,14304,14296,14320,14305,14284,14304,14297,14305,14321,14321,14298,14297,14307,14285,14306,14321,14306,14298,14307,14308,14299,14309,14310,14288,14309,14287,14312,14322,14300,14310,14311,14300,14322,14292,14315,14312,14308,14324,14302,14314,14302,14325,14291,14314,14315,15890,15867,15842,15891,15842,15843,15843,15868,15891,15844,15868,15821,15867,15889,15841,15889,15869,15841,15840,15839,15816,15796,15822,15844,15770,15815,15822,15791,15816,15839,15791,15815,15770,15817,15840,15792,16188,16190,16174,16144,16158,16112,16087,16124,16090,16144,16112,16124,16003,15977,15978,16004,15978,15955,16004,15954,16024,16042,16070,16024,16090,16070,16087,16158,16188,16174,15976,15953,16003,15817,15792,15772,15813,15838,15772,15767,15813,15768,15812,15836,15767,15861,15812,15862,15861,15862,15910,15910,15957,15909,15930,15956,15957,16002,15930,15976,14338,14371,14370,14322,14338,14311,14418,14424,14385,14385,14371,14418,4121,4132,4128,4130,4117,4128,9570,9576,9574,4133,4123,4124,4134,4124,4130,4123,4131,4119,4126,4131,4135,15873,15894,15825,15869,15870,15845,15871,15824,15823,15845,15870,15823,15846,15872,15873,15872,15846,15824,16211,16228,16221,16199,16186,16211,16173,16157,16142,16188,16172,16157,16199,16173,16186,7822,7817,7821,7543,7532,7535,7535,7549,7543,7557,7549,7554,7557,7569,7568,3812,3817,3809,3811,3812,3807,3791,3797,3804,7828,7826,7822,3811,3807,3804,7575,7569,7581,7575,7581,7588,7588,7599,7600,14303,14327,14318,14327,14344,14318,14295,14318,14328,14296,14319,14320,14295,14329,14319,14304,14320,14305,14305,14330,14321,14307,14306,14331,14321,14332,14306,14307,14333,14308,14309,14334,14310,14309,14312,14335,14322,14310,14336,14339,14312,14315,14308,14341,14324,14325,14302,14324,14325,14342,14314,14343,14315,14314,15842,15867,15820,15843,15842, +15795,15821,15868,15843,15796,15844,15821,15867,15841,15819,15869,15797,15841,15840,15816,15792,15822,15796,15770,15790,15816,15791,15748,15791,15770,16144,16172,16158,16122,16124,16087,16144,16124,16122,15977,16003,15953,15933,15978,15977,15933,15955,15978,16004,15955,15954,15999,16024,15954,16042,16087,16070,15999,16042,16024,16188,16158,16172,15976,15930,15953,15749,15772,15792,15768,15813,15772,15768,15701,15767,15812,15767,15789,15837,15862,15812,15935,15910,15862,15935,15957,15910,15957,15935,15930,14338,14353,14371,14338,14322,14353,14418,14456,14424,14421,14418,14371,9568,9569,9570,4130,4128,4136,9570,9574,9572,4123,4133,4131,4133,4124,4134,4134,4130,4136,4133,4135,4131,9599,9611,9620,15873,15825,15846,15797,15869,15845,15824,15775,15823,15798,15845,15823,15776,15824,15846,16210,16211,16186,16142,16157,16123,16156,16173,16142,16141,16157,16172,16156,16186,16173,7822,7818,7817,7535,7544,7549,7549,7544,7554,7563,7557,7554,7569,7557,7563,3809,3798,3812,3812,3798,3807,3781,3797,3791,3791,3804,3796,7823,7822,7826,3807,3796,3804,7569,7578,7581,7593,7588,7581,7593,7599,7588,14318,14344,14360,14345,14328,14318,14295,14328,14329,14346,14320,14319,14329,14346,14319,14347,14305,14320,14330,14305,14348,14332,14321,14330,14331,14306,14349,14307,14331,14333,14332,14350,14306,14341,14308,14333,14309,14335,14334,14310,14334,14336,14312,14339,14335,14322,14336,14351,14339,14315,14354,14324,14341,14356,14356,14325,14324,14357,14342,14325,14358,14314,14342,14354,14315,14343,14343,14314,14359,15818,15820,15867,15842,15820,15795,15795,15821,15843,15821,15752,15796,15819,15841,15794,15867,15819,15818,15794,15841,15797,15749,15792,15816,15770,15796,15753,15749,15816,15790,15748,15790,15791,15770,15703,15748,16144,16141,16172,16111,16122,16087,16144,16122,16141,15931,15977,15953,15933,15977,15931,15933,15908,15955,15954,15955,15908,15928,15999,15954,16067,16087,16042,16021,16042,15999,15930,15883,15953,15749,15730,15772,15772,15730,15768,15768,15730,15701,15747,15767,15701,15747,15789,15767,15812,15789,15837,15864,15862,15837,15884, +15935,15862,15935,15884,15930,14353,14386,14371,14369,14353,14322,14418,14455,14456,14418,14421,14455,14371,14400,14421,4137,4136,4128,9568,9570,9571,9571,9570,9572,9591,9581,9587,9581,9577,9579,9599,9591,9595,9605,9611,9599,15825,15776,15846,15797,15845,15798,15776,15775,15824,15775,15798,15823,16210,16186,16189,16141,16123,16157,16110,16142,16123,16156,16142,16110,16186,16156,16171,7823,7818,7822,7544,7535,7540,7544,7558,7554,7563,7554,7562,7573,7569,7563,3809,3795,3798,3796,3807,3798,3791,3767,3781,3780,3791,3796,7573,7578,7569,7578,7591,7581,7581,7591,7593,7593,7606,7599,14318,14360,14345,14345,14361,14328,14361,14329,14328,14346,14347,14320,14362,14346,14329,14347,14348,14305,14330,14348,14363,14332,14330,14364,14349,14306,14350,14331,14349,14365,14333,14331,14366,14350,14332,14364,14366,14341,14333,14335,14367,14334,14336,14334,14368,14339,14367,14335,14351,14336,14368,14369,14322,14351,14339,14354,14372,14366,14356,14341,14357,14325,14356,14374,14342,14357,14358,14359,14314,14358,14342,14375,14354,14343,14376,14343,14359,14376,15773,15820,15818,15773,15795,15820,15821,15795,15752,15753,15796,15752,15794,15774,15819,15818,15819,15774,15794,15797,15754,15770,15753,15703,15771,15749,15790,15750,15790,15748,15729,15748,15703,16122,16111,16141,16067,16111,16087,15931,15953,15883,15931,15885,15933,15933,15885,15908,15954,15908,15932,15974,15999,15928,15928,15954,15932,16021,16067,16042,15974,16021,15999,15907,15883,15930,15749,15704,15730,15726,15701,15730,15701,15702,15747,15789,15747,15769,15814,15837,15789,15884,15862,15864,15814,15864,15837,15930,15884,15907,14399,14386,14353,14400,14371,14386,14384,14353,14369,14488,14456,14455,14421,14458,14455,14400,14438,14421,9568,9575,9577,9571,9573,9568,9587,9581,9584,9595,9591,9587,9577,9575,9579,9584,9581,9579,9605,9599,9595,9605,9619,9611,15776,15825,15799,15755,15797,15798,15776,15735,15775,15755,15798,15775,16186,16171,16189,16141,16111,16123,16110,16123,16088,16156,16110,16140,16156,16140,16171,3781,3754,3779,7550,7544,7540,7544,7555,7558,7554,7558,7562,7562,7572, +7563,7563,7572,7573,3795,3792,3798,3796,3798,3782,3780,3767,3791,3781,3767,3754,3780,3796,3782,7578,7573,7586,7591,7578,7586,7593,7591,7606,14345,14360,14377,14345,14362,14361,14361,14362,14329,14346,14378,14347,14362,14378,14346,14348,14347,14379,14348,14379,14363,14363,14364,14330,14349,14350,14380,14365,14349,14381,14365,14366,14331,14380,14350,14364,14368,14334,14367,14339,14382,14367,14351,14368,14383,14351,14384,14369,14354,14376,14372,14372,14387,14339,14389,14356,14366,14389,14357,14356,14375,14342,14374,14374,14357,14390,14358,14376,14359,14391,14358,14375,15793,15773,15818,15795,15773,15752,15753,15752,15707,15794,15751,15774,15818,15774,15793,15754,15797,15755,15794,15754,15751,15753,15707,15703,15749,15771,15704,15750,15771,15790,15750,15748,15729,15729,15703,15683,16088,16111,16067,15931,15883,15885,15885,15860,15908,15860,15932,15908,15974,15928,15951,15932,15929,15928,16041,16067,16021,15998,16021,15974,15907,15859,15883,15730,15704,15684,15726,15681,15701,15726,15730,15728,15701,15660,15702,15727,15747,15702,15727,15769,15747,15769,15814,15789,15835,15884,15864,15814,15835,15864,15907,15884,15859,14386,14399,14420,14384,14399,14353,14422,14400,14386,14488,14455,14512,14421,14438,14458,14487,14455,14458,14438,14400,14422,9575,9568,9573,9592,9587,9584,9592,9595,9587,9575,9580,9579,9584,9579,9586,9606,9605,9595,9606,9619,9605,15776,15799,15736,15776,15736,15735,15755,15775,15735,16189,16171,16155,16088,16123,16111,16041,16110,16088,16140,16110,16089,16171,16140,16155,7555,7544,7550,7555,7564,7558,7558,7564,7562,7571,7572,7562,7573,7572,7585,3776,3792,3795,3782,3798,3792,3755,3767,3780,3743,3754,3767,3780,3782,3755,7573,7585,7586,7597,7591,7586,7605,7606,7591,14393,14377,14360,14392,14345,14377,14362,14345,14392,14378,14379,14347,14394,14378,14362,14395,14363,14379,14364,14363,14396,14381,14349,14380,14365,14381,14397,14365,14389,14366,14380,14364,14396,14368,14367,14398,14382,14339,14387,14382,14398,14367,14383,14368,14398,14384,14351,14383,14372,14376,14401,14387,14372,14402,14390,14357,14389,14374,14406, +14375,14374,14390,14407,14391,14376,14358,14391,14375,14408,15773,15793,15733,15773,15732,15752,15752,15732,15707,15733,15774,15751,15733,15793,15774,15755,15708,15754,15754,15734,15751,15703,15707,15688,15750,15704,15771,15750,15729,15705,15703,15643,15683,15731,15729,15683,16041,16088,16067,15885,15883,15811,15811,15860,15885,15932,15860,15929,15905,15951,15928,15974,15951,15998,15881,15928,15929,15998,16041,16021,15883,15859,15811,15684,15704,15662,15730,15684,15728,15726,15728,15681,15681,15660,15701,15660,15680,15702,15727,15702,15680,15769,15727,15765,15786,15814,15769,15859,15884,15835,15786,15835,15814,14420,14399,14437,14386,14420,14422,14419,14399,14384,14510,14512,14455,14459,14458,14438,14510,14455,14487,14487,14458,14511,14438,14422,14459,9578,9575,9573,9593,9592,9584,9600,9595,9592,9578,9580,9575,9579,9580,9583,9583,9586,9579,9593,9584,9586,9600,9606,9595,9619,9606,9621,15689,15735,15736,15709,15755,15735,16185,16189,16155,16086,16110,16041,16086,16089,16110,16121,16140,16089,16121,16155,16140,1602,1621,1567,1589,1620,1602,7564,7571,7562,7571,7585,7572,3776,3768,3792,3788,3776,3795,3782,3792,3768,3767,3755,3743,3782,3768,3755,7586,7585,7596,7597,7605,7591,7597,7586,7604,14409,14377,14393,14392,14377,14410,14394,14362,14392,14378,14411,14379,14394,14411,14378,14395,14412,14363,14379,14413,14395,14363,14412,14396,14380,14414,14381,14381,14407,14397,14365,14397,14389,14380,14396,14414,14387,14415,14382,14415,14398,14382,14416,14383,14398,14384,14383,14417,14391,14401,14376,14372,14401,14402,14402,14423,14387,14390,14389,14397,14374,14407,14406,14406,14408,14375,14407,14390,14397,14408,14425,14391,15732,15773,15733,15732,15687,15707,15751,15706,15733,15755,15709,15708,15708,15734,15754,15711,15751,15734,15707,15665,15688,15703,15688,15643,15704,15750,15705,15731,15705,15729,15639,15683,15643,15731,15683,15685,15811,15834,15860,15860,15882,15929,15904,15951,15905,15905,15928,15881,15998,15951,15973,15881,15929,15882,16041,15998,16020,15859,15810,15811,15704,15705,15662,15625,15684,15662,15682,15728,15684, +15728,15682,15681,15681,15637,15660,15660,15622,15680,15725,15727,15680,15725,15765,15727,15769,15765,15786,15859,15835,15810,15835,15786,15787,14419,14437,14399,14420,14437,14422,14419,14384,14436,14512,14510,14545,14459,14492,14458,14510,14487,14525,14458,14492,14511,14525,14487,14511,14422,14437,14459,9601,9592,9593,9601,9600,9592,9582,9580,9578,9582,9583,9580,9588,9586,9583,9588,9593,9586,9606,9600,9612,9606,9612,9621,15709,15735,15689,15689,15736,15710,16170,16185,16155,16086,16041,16066,16086,16068,16089,16085,16121,16089,16139,16155,16121,1589,1602,1567,7577,7564,7583,7571,7564,7577,7584,7585,7571,3776,3744,3768,3788,3764,3776,3755,3718,3743,3768,3744,3755,7596,7585,7595,7604,7586,7596,7605,7597,7611,7610,7597,7604,14409,14427,14377,14428,14409,14393,14427,14410,14377,14410,14429,14392,14394,14392,14426,14411,14413,14379,14426,14411,14394,14430,14412,14395,14413,14430,14395,14412,14431,14396,14432,14381,14414,14381,14433,14407,14414,14396,14431,14434,14415,14387,14416,14398,14415,14383,14416,14435,14417,14383,14435,14417,14436,14384,14391,14439,14401,14402,14401,14439,14402,14439,14423,14434,14387,14423,14441,14406,14407,14442,14408,14406,14442,14425,14408,14425,14439,14391,15732,15733,15686,15732,15686,15687,15707,15687,15665,15711,15706,15751,15733,15706,15686,15709,15668,15708,15734,15708,15669,15711,15734,15669,15688,15665,15666,15666,15643,15688,15731,15685,15705,15663,15683,15639,15639,15643,15624,15683,15663,15685,15788,15834,15811,15834,15858,15860,15860,15858,15882,15904,15973,15951,15905,15856,15904,15905,15881,15856,15998,15973,16020,15882,15832,15881,16020,16066,16041,15766,15811,15810,15685,15662,15705,15625,15682,15684,15625,15662,15640,15682,15661,15681,15637,15681,15661,15660,15637,15622,15680,15622,15659,15700,15725,15680,15765,15725,15723,15746,15786,15765,15835,15787,15810,15746,15787,15786,14419,14457,14437,14436,14457,14419,9578,9589,9585,14459,14491,14492,14525,14546,14510,14511,14492,14529,14511,14547,14525,14437,14491,14459,9607,9601,9593,9613,9600,9601,9578,9585,9582,9582,9588,9583, +9593,9588,9598,9612,9600,9613,9621,9612,9630,15709,15689,15668,15710,15646,15689,16170,16155,16139,16086,16066,16068,16043,16089,16068,16121,16085,16109,16085,16089,16043,16121,16109,16139,1546,1589,1567,1589,1545,1565,7577,7584,7571,7595,7585,7584,3776,3764,3744,3788,3763,3764,3755,3744,3718,7604,7596,7595,7610,7611,7597,7595,7610,7604,14443,14427,14409,14428,14443,14409,14410,14427,14444,14429,14410,14445,14426,14392,14429,14411,14446,14413,14446,14411,14426,14447,14412,14430,14448,14430,14413,14447,14431,14412,14432,14433,14381,14432,14414,14449,14433,14441,14407,14431,14450,14414,14434,14451,14415,14452,14416,14415,14416,14452,14435,14417,14435,14453,14417,14454,14436,14439,14460,14423,14460,14434,14423,14442,14406,14441,14442,14461,14425,14461,14439,14425,15687,15686,15642,15687,15642,15665,15711,15667,15706,15686,15706,15664,15668,15669,15708,15667,15711,15669,15607,15666,15665,15643,15666,15607,15663,15639,15626,15624,15643,15607,15624,15604,15639,15685,15663,15641,15788,15785,15834,15788,15811,15766,15834,15808,15858,15858,15808,15882,15927,15973,15904,15856,15855,15904,15832,15856,15881,15975,16020,15973,15882,15808,15832,16066,16020,16022,15766,15810,15787,15640,15662,15685,15625,15661,15682,15606,15625,15640,15637,15661,15623,15622,15637,15602,15622,15621,15659,15680,15659,15700,15700,15699,15725,15699,15723,15725,15746,15765,15723,15746,15766,15787,14457,14473,14437,14436,14454,14457,14492,14491,14528,14525,14563,14546,14492,14528,14529,14511,14529,14547,14547,14563,14525,14437,14490,14491,9607,9614,9601,9593,9604,9607,9601,9622,9613,9585,9590,9582,9588,9582,9594,9598,9588,9596,9593,9598,9604,9629,9612,9613,9629,9630,9612,15646,15668,15689,9629,9642,9630,16184,16170,16139,16066,16022,16068,16043,16068,16022,16109,16085,16065,16040,16085,16043,16139,16109,16108,1589,1546,1566,1527,1546,1567,1589,1566,1545,1526,1565,1545,1588,1601,1565,7595,7584,7603,7610,7624,7611,7595,7603,7610,14443,14444,14427,1507,1427,1475,14444,14463,14410,14410,14463,14445,14429,14445,14464,14462,14426,14429,14446,14448,14413,14446, +14426,14465,14466,14447,14430,14430,14448,14467,14468,14431,14447,14432,14469,14433,14449,14414,14450,14432,14449,14469,14441,14433,14469,14468,14450,14431,14460,14451,14434,14451,14470,14415,14452,14415,14470,14471,14435,14452,14472,14453,14435,14453,14454,14417,14474,14460,14439,14441,14475,14442,14442,14476,14461,14461,14474,14439,15642,15686,15664,15607,15665,15642,15706,15667,15664,15628,15669,15668,15667,15669,15645,15639,15638,15626,15663,15626,15627,15607,15587,15624,15624,15586,15604,15639,15604,15638,15663,15627,15641,15640,15685,15641,15788,15724,15785,15834,15785,15808,15766,15724,15788,15927,15975,15973,15904,15903,15927,15855,15856,15805,15904,15855,15903,15806,15856,15832,15975,16022,16020,15808,15809,15832,15625,15623,15661,15625,15606,15573,15640,15641,15606,15603,15637,15623,15637,15603,15602,15602,15570,15622,15622,15570,15621,15621,15636,15659,15700,15659,15658,15699,15700,15658,15699,15679,15723,15679,15746,15723,15766,15746,15724,14473,14457,14489,14490,14437,14473,14457,14454,14486,14491,14527,14528,14528,14566,14529,14547,14529,14567,14547,14585,14563,14490,14527,14491,9607,9604,9614,9601,9614,9622,9613,9622,9631,9582,9590,9594,9588,9594,9596,9598,9596,9608,9610,9604,9598,9613,9631,9629,15628,15668,15646,9643,9642,9629,16169,16184,16139,16022,16001,16043,16085,16040,16065,16108,16109,16065,16040,16043,16001,16139,16108,16138,1546,1504,1566,1504,1546,1527,1567,1568,1527,1566,1504,1545,1565,1526,1588,1504,1526,1545,1588,1619,1601,1454,1427,1477,7617,7610,7603,1475,1396,1503,1451,1475,1427,14463,14444,14477,14445,14463,14477,14464,14445,14478,14464,14462,14429,14465,14426,14462,14446,14479,14448,14446,14465,14479,14468,14447,14466,14467,14466,14430,14479,14467,14448,14449,14450,14480,14469,14449,14481,14469,14481,14441,14480,14450,14468,14460,14482,14451,14483,14470,14451,14452,14470,14484,14471,14472,14435,14471,14452,14484,14453,14472,14485,14453,14485,14454,14474,14482,14460,14475,14441,14493,14494,14442,14475,14476,14442,14494,14461,14476,14474,15642,15664,15608,15642,15608,15607,15608,15664, +15667,15669,15628,15645,15644,15667,15645,15626,15638,15605,15588,15627,15626,15607,15575,15587,15586,15624,15587,15556,15604,15586,15605,15638,15604,15627,15606,15641,15724,15764,15785,15808,15785,15764,15952,15975,15927,15927,15903,15880,15806,15805,15856,15807,15855,15805,15903,15855,15880,15832,15783,15806,16022,15975,16001,15809,15808,15764,15832,15809,15783,15625,15573,15623,15606,15574,15573,15603,15623,15585,15571,15602,15603,15602,15571,15570,15601,15621,15570,15636,15621,15600,15636,15658,15659,15699,15658,15657,15699,15657,15679,15679,15724,15746,14457,14486,14489,14490,14473,14489,14454,14509,14486,14527,14565,14528,14528,14565,14566,14586,14529,14566,14586,14567,14529,14547,14567,14585,14597,14563,14585,14490,14526,14527,9614,9604,9610,9627,9622,9614,9635,9631,9622,9597,9594,9590,9602,9596,9594,9596,9602,9608,9598,9608,9617,9598,9617,9610,9643,9629,9631,15589,15628,15646,9642,9643,9655,16138,16169,16139,16040,16019,16065,16064,16108,16065,16000,16040,16001,16084,16138,16108,1504,1527,1452,1568,1528,1527,7630,7639,7635,1476,1526,1504,7630,7623,7603,1427,1454,1365,7603,7623,7617,1451,1396,1475,14497,14477,14444,1427,1400,1451,14498,14445,14477,14499,14478,14445,14464,14478,14500,14464,14496,14462,14462,14495,14465,14479,14465,14495,14468,14466,14501,14467,14502,14466,14467,14479,14503,14449,14480,14504,14449,14504,14481,14441,14481,14493,14480,14468,14501,14505,14451,14482,14483,14484,14470,14506,14483,14451,14471,14507,14472,14471,14484,14507,14472,14508,14485,14454,14485,14509,14474,14513,14482,14475,14493,14514,14475,14514,14494,14476,14494,14515,14474,14476,14513,15575,15607,15608,15608,15667,15644,15645,15628,15610,15644,15645,15609,15588,15626,15605,15627,15588,15606,15537,15587,15575,15555,15586,15587,15605,15604,15556,15555,15556,15586,15764,15724,15722,15952,16001,15975,15927,15906,15952,15927,15880,15906,15762,15805,15806,15880,15855,15807,15807,15805,15763,15783,15762,15806,15809,15764,15783,15623,15573,15585,15588,15574,15606,15535,15573,15574,15571,15603,15585,15570,15571,15551,15601,15600, +15621,15569,15601,15570,15620,15636,15600,15620,15658,15636,15620,15657,15658,15679,15657,15635,15724,15679,15698,11434,11286,11388,14526,14490,14489,11434,11471,11387,14565,14527,14564,14565,14598,14566,14599,14586,14566,14600,14567,14586,14567,14601,14585,9626,9618,9597,14527,14526,14564,9627,9614,9610,9635,9622,9627,9635,9643,9631,9603,9594,9597,9602,9594,9603,9602,9615,9608,9608,9625,9617,9628,9610,9617,15628,15589,15610,15558,15589,15611,16169,16138,16183,16040,15997,16019,16064,16065,16019,16084,16108,16064,15997,16040,16000,16001,15952,16000,16138,16084,16120,1528,1452,1527,1476,1504,1452,1528,1568,1547,7643,7635,7639,7630,7635,7623,7643,7639,7648,1478,1365,1454,1427,1365,1400,7623,7631,7617,1451,1400,1396,1326,1396,1362,14498,14499,14445,1290,1201,1326,14516,14478,14499,14500,14478,14516,14500,14496,14464,14462,14496,14495,14517,14479,14495,14501,14466,14518,14503,14502,14467,14502,14518,14466,14503,14479,14517,14519,14504,14480,14504,14520,14481,14520,14493,14481,14519,14480,14501,14506,14451,14505,14482,14521,14505,14483,14522,14484,14523,14483,14506,14507,14508,14472,14507,14484,14522,14485,14508,14524,14485,14524,14509,14513,14530,14482,14514,14493,14520,14514,14531,14494,14531,14515,14494,14513,14476,14515,15608,15576,15575,15608,15644,15609,15609,15645,15610,15605,15557,15588,15555,15587,15537,15537,15575,15538,15605,15556,15557,15518,15556,15555,15722,15724,15698,15722,15783,15764,15950,15952,15906,15880,15857,15906,15762,15763,15805,15880,15807,15857,15807,15763,15784,15783,15744,15762,15553,15585,15573,15588,15557,15574,15554,15573,15535,15535,15574,15536,15571,15585,15553,15551,15571,15552,15551,15532,15570,15568,15600,15601,15568,15601,15569,15532,15569,15570,15584,15620,15600,15657,15620,15635,15698,15679,15635,11387,11286,11434,11388,11286,11337,11386,11388,11337,14562,14583,14509,14564,14598,14565,14566,14598,14599,14599,14614,14586,14600,14615,14567,14600,14586,14616,14601,14567,14615,9609,9597,9618,11386,11285,11433,9628,9627,9610,9640,9635,9627,9648,9643,9635,9603,9597,9609,9602,9603,9616, +9602,9623,9615,9615,9624,9608,9608,9624,9625,9625,9634,9617,9628,9617,9634,15577,15610,15589,15577,15589,15558,16138,16168,16183,15997,15972,16019,16019,16018,16064,16064,16063,16084,15997,16000,15950,15950,16000,15952,16120,16154,16138,1528,1506,1452,1476,1452,1397,1528,1547,1506,7644,7635,7643,7635,7636,7623,1505,1476,1397,7640,7645,7631,1400,1365,1333,7636,7631,7623,1400,1362,1396,1290,1326,1362,1201,1157,1124,1290,1243,1201,14499,14534,14516,14535,14500,14516,14533,14496,14500,14496,14532,14495,14517,14495,14536,14537,14501,14518,14538,14502,14503,14539,14518,14502,14503,14517,14540,14504,14519,14541,14504,14541,14520,14519,14501,14537,14506,14505,14523,14482,14530,14521,14521,14523,14505,14483,14542,14522,14483,14523,14542,14507,14522,14508,14524,14508,14543,14544,14509,14524,14513,14548,14530,14514,14520,14549,14514,14550,14531,14531,14548,14515,14513,14515,14548,15608,15609,15576,15575,15576,15538,15609,15610,15577,15537,15534,15555,15537,15538,15521,15556,15572,15557,15519,15556,15518,15518,15555,15534,15698,15678,15722,15722,15745,15783,15926,15950,15906,15906,15857,15926,15762,15743,15763,15833,15857,15807,15763,15721,15784,15833,15807,15784,15783,15745,15744,15720,15762,15744,15553,15573,15554,15536,15574,15557,15517,15554,15535,15536,15503,15535,15553,15516,15571,15552,15571,15516,15552,15515,15551,15551,15515,15532,15600,15568,15567,15531,15568,15569,15532,15531,15569,15584,15635,15620,15584,15600,15567,15698,15635,15678,11286,11387,11338,11189,11337,11286,11285,11386,11337,11472,11435,11387,14509,14544,14562,14613,14598,14564,14599,14598,14633,14599,14633,14614,14586,14614,14634,14615,14600,14616,14616,14586,14634,14635,14601,14615,14632,14564,14646,9640,9627,9628,9640,9649,9635,9635,9656,9648,9609,9616,9603,9616,9623,9602,9632,9615,9623,9624,9615,9632,9638,9625,9624,9639,9634,9625,9628,9634,9641,15558,15539,15577,16154,16168,16138,15997,15950,15972,16019,15972,16018,16063,16064,16018,16063,16039,16084,16154,16120,16137,1453,1452,1506,1398,1397,1452,1547,1479,1506,7644,7636,7635,7644,7643,7650,7643,7651, +7650,1401,1328,1365,7640,7631,7636,1294,1333,1365,1399,1400,1333,1400,1395,1362,1362,1395,1290,1201,1243,1157,1157,1074,1124,1290,1291,1243,1074,1036,1124,14516,14534,14553,14535,14552,14500,14516,14553,14535,14533,14551,14496,14552,14533,14500,14532,14496,14551,14532,14536,14495,14540,14517,14536,14554,14537,14518,14538,14539,14502,14503,14540,14538,14554,14518,14539,14519,14555,14541,14549,14520,14541,14519,14537,14556,14557,14521,14530,14523,14521,14558,14542,14559,14522,14523,14560,14542,14559,14508,14522,14559,14543,14508,14524,14543,14561,14544,14524,14561,14568,14530,14548,14549,14569,14514,14514,14569,14550,14550,14570,14531,14531,14570,14548,15576,15609,15577,15538,15576,15539,15537,15505,15534,15521,15538,15506,15537,15521,15505,15556,15519,15572,15557,15572,15519,15519,15518,15485,15518,15534,15502,15678,15719,15722,15722,15719,15745,15902,15950,15926,15857,15902,15926,15762,15720,15743,15763,15743,15721,15833,15831,15857,15784,15721,15782,15833,15784,15830,15745,15697,15744,15720,15744,15697,15533,15553,15554,15557,15519,15536,15517,15533,15554,15517,15535,15503,15536,15504,15503,15553,15533,15516,15552,15516,15515,15532,15515,15482,15530,15567,15568,15530,15568,15531,15499,15531,15532,15635,15584,15619,15567,15550,15584,15635,15655,15678,11435,11338,11387,11286,11338,11238,11285,11337,11189,11286,11238,11189,14562,14544,14582,14613,14631,14598,14613,14564,14632,14598,14631,14633,14633,14647,14614,14648,14634,14614,14615,14616,14649,14616,14634,14650,14635,14615,14651,11336,11285,11237,9628,9641,9640,9657,9649,9640,9635,9649,9656,9648,9656,9663,9616,9633,9623,9632,9623,9636,9632,9637,9624,9638,9639,9625,9638,9624,9646,9634,9639,9647,9634,9647,9641,15558,15522,15539,15576,15577,15539,16168,16154,16137,15950,15902,15972,16018,15972,15996,15995,16063,16018,16063,15995,16039,1453,1398,1452,1506,1479,1453,1398,1330,1397,7644,7649,7636,7644,7650,7649,1329,1397,1330,16335,16336,16337,1294,1365,1328,7640,7636,7646,1333,1294,1248,1400,1399,1395,1333,1332,1399,1290,1395,1332,1202,1157,1243,1157,1123,1074,1290,1332, +1291,1243,1291,1202,1074,962,1036,1036,962,999,14552,14535,14572,14553,14573,14535,14552,14551,14533,14532,14551,14571,14532,14571,14536,14536,14571,14540,14554,14574,14537,14575,14539,14538,14540,14576,14538,14554,14539,14575,14519,14556,14555,14541,14555,14577,14541,14577,14549,14578,14556,14537,14557,14558,14521,14557,14530,14579,14523,14558,14580,14542,14560,14559,14523,14580,14560,14543,14559,14560,14561,14543,14581,14561,14584,14544,14530,14568,14579,14568,14548,14570,14549,14577,14569,14569,14587,14550,14550,14588,14570,15538,15539,15506,15534,15505,15520,15506,15473,15521,15505,15521,15473,15518,15502,15485,15504,15519,15485,15520,15502,15534,15678,15675,15719,15745,15719,15718,15857,15854,15902,15743,15720,15677,15677,15721,15743,15833,15830,15831,15854,15857,15831,15721,15742,15782,15830,15784,15782,15718,15697,15745,15677,15720,15697,15536,15519,15504,15483,15533,15517,15517,15503,15484,15471,15503,15504,15533,15483,15516,15515,15516,15500,15482,15515,15500,15532,15482,15499,15567,15530,15550,15498,15530,15531,15498,15531,15499,15599,15619,15584,15619,15655,15635,15566,15584,15550,15655,15675,15678,14582,14630,14644,11338,11339,11238,11237,11285,11189,11189,11238,11143,14584,14582,14544,14645,14631,14613,11336,11284,11385,14633,14631,14663,14633,14664,14647,14648,14614,14647,14634,14648,14665,14650,14649,14616,14649,14666,14615,14650,14634,14665,14615,14666,14651,11237,11284,11336,9640,9641,9654,9657,9656,9649,9662,9657,9640,9656,9668,9663,9636,9623,9633,9636,9644,9632,9632,9644,9637,9637,9645,9624,9639,9638,9652,9645,9646,9624,9646,9653,9638,9639,9652,9647,9654,9641,9647,15539,15522,15506,15949,15972,15902,15949,15996,15972,15995,16018,15996,16039,15995,15992,1426,1398,1453,1453,1479,1455,1398,1364,1330,7649,7646,7636,1327,1329,1292,1329,1330,1245,1244,1328,1363,1294,1328,1249,1294,1205,1248,1248,1332,1333,1399,1332,1395,1158,1157,1202,1157,1158,1123,1035,1074,1123,1332,1247,1291,1202,1291,1203,1074,1035,962,962,918,999,14572,14535,14590,14552,14572,14589,1006,999,918,14535,14573,14590,14551,14552,14589, +14571,14551,14589,14571,14576,14540,14591,14574,14554,14537,14574,14578,14575,14538,14576,14575,14591,14554,14555,14556,14592,14577,14555,14593,14578,14592,14556,14557,14594,14558,14595,14557,14579,11516,11440,11542,14580,14581,14560,14581,14543,14560,14596,14561,14581,11201,11350,11301,14579,14568,14595,14568,14570,14595,14569,14577,14587,14550,14587,14588,14570,14588,14595,15520,15505,15486,15473,15506,15487,15505,15473,15486,15470,15485,15502,15471,15504,15485,15502,15520,15486,15719,15675,15718,15901,15902,15854,15721,15677,15696,15830,15781,15831,15804,15854,15831,15721,15695,15742,15781,15782,15742,15781,15830,15782,15718,15656,15697,15677,15697,15656,15483,15517,15501,15471,15484,15503,15484,15501,15517,15516,15483,15500,15482,15500,15468,15499,15482,15467,15514,15550,15530,15514,15530,15498,15498,15499,15481,15599,15596,15619,15566,15599,15584,15619,15596,15655,15550,15529,15566,15675,15655,15596,14582,14612,14630,14644,14630,14661,11287,11238,11339,11142,11237,11189,11287,11143,11238,11143,11051,11189,14582,14584,14612,11384,11283,11282,14645,14613,14662,14664,14633,14663,14647,14664,14648,14665,14648,14675,14649,14650,14665,14666,14649,14665,11237,11142,11284,9662,9640,9654,9656,9657,9668,9662,9667,9657,15487,15522,15540,14666,14665,14687,14687,14686,14709,9644,9650,9637,9651,9645,9637,9652,9638,9659,9646,9645,9658,9646,9660,9653,9661,9638,9653,9647,9652,9654,15487,15506,15522,15901,15949,15902,15996,15949,15948,15995,15996,15948,15992,15995,15947,1426,1364,1398,1426,1453,1455,1455,1479,1428,1293,1330,1364,1327,1244,1363,1292,1329,1245,1327,1292,1244,1293,1245,1330,1244,1249,1328,1294,1249,1205,1248,1205,1161,1247,1332,1248,1125,1158,1202,1038,1123,1158,1038,1035,1123,1247,1203,1291,1125,1202,1203,998,962,1035,962,834,918,14603,14572,14590,14603,14589,14572,1006,918,925,14604,14590,14573,14571,14589,14602,14576,14571,14602,14591,14605,14574,14578,14574,14605,14575,14576,14606,14575,14606,14591,14592,14593,14555,14607,14577,14593,14592,14578,14608,14594,14557,14609,14594,14610,14558,14595,14609,14557,11475, +11440,11516,11516,11542,11568,14580,14611,14581,11249,11201,11301,14611,14596,14581,14629,14584,14643,14587,14577,14607,14617,14588,14587,14595,14588,14618,15461,15473,15487,15486,15473,15447,15470,15460,15485,15502,15472,15470,15460,15471,15485,15502,15486,15472,15656,15718,15675,15901,15854,15853,15634,15696,15677,15696,15695,15721,15804,15831,15781,15804,15853,15854,15695,15694,15742,15781,15742,15761,15677,15656,15634,15458,15483,15501,15484,15471,15437,15469,15501,15484,15483,15468,15500,15457,15482,15468,15457,15467,15482,15467,15481,15499,15550,15514,15529,15514,15498,15466,15481,15466,15498,15599,15565,15596,15565,15599,15566,15548,15566,15529,15675,15596,15654,14630,14612,14642,14630,14642,14661,16338,16339,16340,11142,11189,11051,16338,16340,16342,11143,11096,11051,14629,14612,14584,11283,11188,11282,11283,11284,11142,11335,11382,11282,14684,14648,14664,14648,14685,14675,14675,14686,14665,9662,9654,9667,9657,9673,9668,9657,9667,9673,9668,9679,9688,14686,14687,14665,14686,14708,14709,14732,14709,14708,9651,9637,9650,9645,9651,9658,9638,9661,9659,9659,9654,9652,9664,9646,9658,9660,9646,9664,9665,9653,9660,9653,9666,9661,15901,15948,15949,15995,15948,15947,1364,1426,1367,1426,1455,1368,1368,1455,1428,1293,1364,1331,1159,1292,1245,1292,1159,1244,1293,1204,1245,1162,1249,1244,1249,1162,1205,1076,1161,1205,1248,1161,1247,1125,1038,1158,998,1035,1038,1161,1203,1247,1203,1077,1125,998,834,962,918,834,878,14620,14603,14590,14603,14619,14589,925,918,839,14620,14590,14604,14602,14589,14619,14602,14606,14576,14621,14605,14591,14578,14605,14622,14606,14623,14591,14592,14624,14593,14625,14607,14593,14608,14578,14622,14626,14592,14608,14627,14594,14609,14627,14610,14594,14609,14595,14628,11475,11393,11440,14706,14674,14694,14674,14610,14660,11440,11393,11302,11157,11201,11249,11302,11157,11249,11191,11201,11107,14636,14587,14607,14588,14617,14618,14636,14617,14587,14595,14618,14628,15447,15473,15461,15487,15488,15461,15486,15447,15472,15470,15445,15460,15470,15472,15446,15437,15471,15460,15675,15654,15656,15900,15901,15853, +15634,15676,15696,15696,15676,15695,15761,15804,15781,15804,15829,15853,15695,15653,15694,15694,15717,15742,15717,15761,15742,15618,15634,15656,15458,15468,15483,15458,15501,15469,15437,15469,15484,15436,15457,15468,15444,15467,15457,15467,15456,15481,15514,15497,15529,15514,15466,15497,15466,15481,15456,15565,15564,15596,15566,15548,15565,15548,15529,15528,15618,15654,15596,14629,14642,14612,16348,16349,16350,16339,16341,16340,11142,11051,11095,11190,11096,11143,11006,11051,11096,11283,11236,11188,11188,11235,11282,11142,11236,11283,11335,11282,11235,14648,14684,14685,14675,14685,14695,14686,14675,14696,9654,9670,9667,9668,9673,9679,9678,9673,9667,14686,14696,14708,14708,14744,14732,14763,14732,14757,14757,14772,14763,9661,9669,9659,9670,9654,9659,14786,14772,14770,9671,9660,9664,9665,9672,9653,9665,9660,9671,9653,9672,9666,9661,9666,9669,15900,15948,15901,15925,15947,15948,1426,1368,1367,1364,1367,1331,1402,1368,1428,1293,1331,1246,1159,1245,1204,1244,1159,1162,1246,1204,1293,1162,1076,1205,1076,1077,1161,1037,1038,1125,964,998,1038,1161,1077,1203,1037,1125,1077,998,963,834,878,834,789,878,839,918,14620,14637,14603,14619,14603,14638,882,925,839,14620,14604,14639,14602,14619,14623,14602,14623,14606,14621,14640,14605,14591,14623,14621,14605,14640,14622,14626,14624,14592,14624,14625,14593,14625,14636,14607,14608,14622,14626,14609,14628,14627,14627,14641,14610,14706,14717,14727,14694,14674,14683,14706,14694,14717,14641,14660,14610,14674,14660,14683,11393,11295,11302,11107,11201,11157,11295,11157,11302,11107,11144,11191,14628,14618,14617,14636,14652,14617,15439,15447,15461,15474,15461,15488,15447,15446,15472,15446,15445,15470,15460,15445,15437,15618,15656,15654,15879,15900,15853,15653,15676,15634,15653,15695,15676,15761,15780,15804,15829,15804,15780,15879,15853,15829,15674,15694,15653,15674,15717,15694,15741,15761,15717,15598,15634,15618,15458,15436,15468,15458,15469,15459,15437,15459,15469,15435,15457,15436,15467,15444,15456,15444,15457,15435,15528,15529,15497,15565,15527,15564,15596,15564,15597,15527,15565,15548,15618, +15596,15597,16341,16339,16343,16344,16340,16341,11051,11005,11095,11142,11095,11094,11006,10965,11051,11006,11096,11053,11094,11188,11236,11188,11093,11235,11142,11094,11236,11383,11335,11235,11432,11335,11383,14685,14707,14695,14696,14675,14695,9678,9667,9670,9687,9679,9673,9687,9673,9678,14708,14696,14722,14708,14731,14744,14732,14744,14757,14757,14770,14772,9669,9674,9659,9659,9674,9670,14770,14785,14786,9671,9664,9675,9665,9676,9672,9671,9676,9665,9666,9672,9677,9666,9677,9669,15900,15925,15948,15925,15899,15947,1367,1368,1252,1367,1252,1331,1402,1334,1368,1331,1252,1246,1075,1159,1204,1126,1162,1159,1246,1160,1204,1076,1162,1126,1077,1076,1002,964,1038,1037,964,919,998,1077,1040,1037,998,919,963,963,917,834,789,834,755,878,789,839,14653,14637,14620,14638,14603,14637,14619,14638,14623,882,968,925,760,882,839,14620,14639,14654,14655,14640,14621,14655,14621,14623,14656,14622,14640,14626,14657,14624,14625,14624,14657,14657,14636,14625,14626,14622,14656,14658,14627,14628,14641,14627,14659,11298,11393,11441,14694,14683,14705,14726,14717,14694,14673,14660,14641,14683,14660,14682,11298,11295,11393,11060,11107,11157,11245,11157,11295,11107,10975,11144,11052,11191,11144,14652,14628,14617,14652,14636,14667,15447,15439,15426,15439,15461,15448,15461,15474,15448,9692,9679,9687,15426,15446,15447,15438,15445,15446,15425,15437,15445,15879,15925,15900,15653,15634,15598,15741,15780,15761,15653,15633,15674,15674,15673,15717,15673,15741,15717,15598,15618,15583,15458,15443,15436,15443,15458,15459,15443,15459,15437,15564,15527,15547,15564,15583,15597,15597,15583,15618,16341,16343,16345,11053,11096,11145,11051,10964,11005,11094,11095,11005,10925,10965,11006,11051,10965,10964,11053,10966,11006,11094,11093,11188,14760,14767,14752,14728,14760,14752,14685,14728,14719,14685,14719,14707,14720,14695,14707,14696,14695,14721,9678,9670,9686,9686,9687,9678,14696,14730,14722,14708,14722,14731,14756,14744,14731,14757,14744,14756,14756,14770,14757,9674,9669,9680,9674,9681,9670,14770,14778,14785,14804,14786,14785,9682,9671,9675,9676,9683,9672,9671, +9682,9676,9672,9684,9677,9677,9685,9669,15925,15879,15899,1334,1252,1368,1334,1402,1335,1246,1252,1207,1075,1126,1159,1075,1204,1160,1165,1160,1246,1039,1076,1126,1002,1076,1039,1077,1002,1040,1037,965,964,964,879,919,1040,966,1037,919,917,963,917,835,834,755,834,835,789,755,708,795,839,789,14653,14668,14637,14654,14653,14620,14637,14668,14638,14655,14623,14638,968,882,926,760,840,882,839,795,760,14655,14669,14640,14669,14656,14640,14670,14657,14626,14657,14667,14636,14656,14671,14626,14659,14627,14658,14672,14658,14628,14659,14673,14641,14717,14738,14751,14683,14682,14705,14718,14694,14705,14717,14726,14738,14718,14726,14694,14673,14682,14660,11298,11245,11295,11107,11060,10975,11060,11157,11153,11153,11157,11245,11144,10975,11052,14652,14672,14628,14652,14667,14676,15439,15413,15426,15428,15439,15448,15448,15474,15489,15474,15507,15489,15446,15426,15438,15438,15427,15445,15427,15425,15445,15653,15598,15633,15674,15633,15673,15547,15598,15583,15583,15564,15547,16345,16346,16341,16346,16347,16341,10964,10924,11005,11094,11005,11004,10925,10894,10965,10925,11006,10966,10965,10894,10964,11097,10966,11053,11094,11004,11093,14767,14776,14752,14739,14728,14752,14719,14728,14739,14729,14707,14719,14720,14721,14695,11234,11380,11430,14696,14721,14730,9681,9686,9670,9686,9699,9687,14722,14730,14743,14731,14722,14743,14756,14731,14762,14756,14778,14770,9685,9680,9669,9681,9674,9680,14778,14795,14785,14811,14804,14785,9676,9689,9683,9672,9683,9684,9682,9690,9676,9677,9684,9691,9677,9691,9685,1334,1253,1252,1334,1335,1253,1252,1166,1207,1246,1207,1165,1039,1126,1075,1075,1160,1081,1165,1081,1160,1039,920,1002,1002,966,1040,1037,1000,965,964,965,879,879,791,919,1037,966,1000,919,791,917,835,917,791,790,755,835,668,708,755,789,708,754,795,789,759,14677,14668,14653,14677,14653,14654,14655,14638,14668,926,882,840,840,760,796,795,713,760,14669,14655,14678,14669,14679,14656,14657,14670,14667,14626,14671,14670,14656,14680,14671,14659,14658,14672,14681,14673,14659,11298,11347,11198,14704,14705,14682,14704,14718,14705,14737,14738,14726, +14737,14726,14718,14681,14682,14673,11298,11198,11245,10975,11060,11016,11104,11060,11153,11245,11198,11153,11007,11052,10975,14672,14652,14688,14676,14667,14670,14676,14688,14652,15413,15439,15428,15401,15426,15413,9711,9703,9700,9686,9703,9699,15401,15438,15426,15401,15427,15438,15427,15412,15425,15633,15598,15595,15598,15547,15595,10966,11097,11052,10964,10894,10924,10924,11004,11005,10894,10925,10854,10966,10895,10925,11003,11093,11004,11092,11003,11049,11092,11049,11141,14729,14719,14739,14740,14707,14729,14721,14720,14741,11234,11334,11380,14740,14753,14707,14742,14730,14721,9694,9686,9681,14730,14754,14743,14731,14743,14755,14731,14755,14762,14756,14762,14771,14756,14771,14778,9693,9680,9685,9694,9681,9680,14787,14795,14778,14785,14795,14803,14811,14785,14803,9689,9676,9690,9689,9695,9683,9696,9684,9683,14831,14845,14811,9685,9691,9698,1252,1253,1166,1295,1253,1335,1082,1207,1166,1082,1165,1207,1001,1039,1075,1075,1081,1001,1082,1081,1165,1039,1001,920,1002,920,966,1000,880,965,879,965,880,792,791,879,880,1000,966,790,835,791,668,755,790,668,626,708,627,754,708,789,754,759,795,759,713,14678,14668,14677,14689,14677,14654,14678,14655,14668,926,840,883,760,714,796,796,883,840,713,671,760,14678,14690,14669,14690,14679,14669,14680,14656,14679,14670,14671,14691,14671,14680,14691,14672,14692,14659,14681,14659,14693,14766,14738,14759,14682,14681,14704,14704,14716,14718,14737,14759,14738,14716,14737,14718,10973,11016,11060,10864,10975,11016,11104,10973,11060,11104,11153,11061,11153,11198,11061,11052,11007,10966,11007,10975,10967,14697,14672,14688,14670,14691,14676,14676,14698,14688,15402,15413,15428,15379,15401,15413,9686,9700,9703,15449,15440,15428,15427,15401,15412,10924,10894,10855,10924,10923,11004,10925,10895,10854,10894,10854,10825,10966,11007,10895,11003,11004,10923,10963,11049,11003,11141,11049,11139,11139,11233,11141,11280,11233,11140,14741,14742,14721,11334,11234,11281,11280,11140,11234,14730,14742,14754,9686,9694,9700,14755,14743,14754,14755,14769,14762,14771,14762,14777,14787,14778,14771,9693,9694,9680,9685, +9698,9693,14795,14787,14803,14803,14822,14811,14831,14844,14861,9696,9683,9695,14822,14831,14811,1253,1208,1166,1253,1295,1208,1127,1082,1166,1081,1042,1001,1082,1042,1081,1001,924,920,920,880,966,879,880,792,709,791,792,790,791,710,790,710,668,668,586,626,626,627,708,627,631,754,631,759,754,712,713,759,14699,14678,14677,14677,14689,14699,14654,14700,14689,843,926,883,760,671,714,796,714,715,796,843,883,671,713,632,14701,14690,14678,14679,14690,14702,14679,14702,14680,14680,14703,14691,14692,14672,14697,11680,11666,11650,11667,11650,11595,14759,14775,14766,14681,14716,14704,11476,11394,11517,14716,14750,14737,10973,10864,11016,10864,10934,10975,11104,11061,10973,14782,14793,14766,10975,10934,10967,10967,10895,11007,14697,14688,14698,14691,14710,14676,14711,14698,14676,15379,15413,15402,15440,15402,15428,9700,9694,9706,10825,10855,10894,10924,10855,10923,10826,10854,10895,10854,10792,10825,10963,11003,10923,11049,10963,10962,11049,11050,11139,11139,11140,11233,11334,11381,11431,11187,11281,11234,11334,11281,11381,11187,11234,11140,14754,14742,14761,14754,14768,14755,14755,14768,14769,14762,14769,14777,14771,14777,14787,9694,9693,9704,9693,9698,9705,14803,14787,14802,14802,14822,14803,14831,14822,14844,1166,1208,1127,1295,1206,1208,1127,1003,1082,967,1001,1042,1082,1003,1042,1001,967,924,920,924,793,920,793,880,880,793,792,709,710,791,756,709,792,669,668,710,668,669,586,586,543,626,626,543,627,627,630,631,631,712,759,712,632,713,14678,14699,14712,14699,14689,14713,14713,14689,14700,714,671,633,714,634,715,715,762,796,843,796,762,632,589,671,14712,14690,14701,18238,18239,18240,14712,14702,14690,14680,14702,14703,14703,14714,14691,14692,14697,14715,11666,11634,11650,11650,11634,11595,14736,14681,14749,11394,11345,11296,14782,14766,14775,14725,14716,14681,11476,11346,11394,11518,11476,11543,10864,10973,10932,10934,10864,10902,11061,11017,10973,11105,11061,11154,10967,10934,10897,10967,10896,10895,11688,11668,11699,14714,14710,14691,14711,14676,14710,14711,14723,14698,15379,15402,15380,9720,9706,9716,9694,9704,9706,10766, +10855,10825,10855,10893,10923,10826,10793,10854,10826,10895,10896,10793,10792,10854,10766,10825,10792,10963,10923,10893,10893,10962,10963,11049,10962,11050,11140,11139,11050,11459,11431,11381,11187,11333,11281,11367,11381,11281,11140,11091,11187,11459,11511,11431,14761,14768,14754,14783,14769,14768,14777,14769,14784,14777,14784,14787,9693,9705,9704,14784,14802,14787,14802,14819,14822,1208,1206,1127,1127,1078,1003,1042,1003,967,924,967,881,924,881,793,792,793,756,628,710,709,756,629,709,669,710,628,669,587,586,464,543,586,627,543,585,585,630,627,630,545,631,632,712,631,14713,14712,14699,14700,14724,14713,589,633,671,714,633,634,635,715,634,762,715,674,14700,14735,14724,546,589,632,14703,14702,14712,14712,14714,14703,11666,11668,11634,11595,11634,11618,14725,14681,14736,11544,11595,11545,11345,11394,11346,11345,11246,11296,11296,11246,11154,11442,11346,11476,11442,11476,11518,10973,11017,10932,10864,10832,10902,10934,10902,10897,11105,11017,11061,10967,10897,10896,11688,11681,11668,14710,14714,14733,14711,14710,14723,11688,11698,11681,15414,15380,15402,9706,9704,9716,10766,10824,10855,10855,10824,10893,10826,10715,10793,10827,10826,10896,10793,10765,10792,10892,10962,10893,11050,10962,11002,11140,11050,11091,11459,11381,11367,16351,16352,16353,11186,11281,11333,11367,11281,11266,11459,11497,11511,11586,11611,11511,14794,14769,14783,14769,14794,14784,9704,9705,9716,14801,14802,14784,14801,14819,14802,1163,1127,1206,1163,1078,1127,1078,1041,1003,967,1003,921,921,881,967,793,881,794,793,711,756,629,628,709,711,629,756,669,628,587,464,586,587,543,464,502,543,502,585,585,545,630,546,631,545,546,632,631,14734,14712,14713,14724,14734,14713,633,589,547,633,547,634,674,715,635,635,634,549,674,761,762,14746,14724,14735,546,466,589,14734,14714,14712,11651,11634,11668,11618,11634,11651,11618,11569,11595,11518,11544,11442,11545,11595,11569,11442,11544,11545,11345,11346,11246,10902,10832,10897,10827,10896,10897,11668,11681,11651,14714,14745,14733,14723,14710,14733,11682,11681,11698,10892,10893,10824,10826,10794,10715,10765,10793, +10715,10826,10827,10794,10962,10892,10922,10962,10922,11002,11050,11002,11091,11367,11414,11459,16351,16354,16352,11186,11266,11281,16354,16355,16352,11266,11320,11367,11459,11414,11497,11511,11497,11559,11511,11559,11586,11559,11610,11586,14801,14784,14794,14828,14819,14801,1163,1079,1078,1041,1078,1004,922,1003,1041,922,921,1003,921,838,881,881,838,794,794,711,793,629,544,628,670,629,711,628,544,587,464,587,544,464,383,502,585,502,504,545,585,504,465,546,545,14724,14747,14734,547,589,466,547,549,634,674,635,591,549,591,635,672,761,674,842,762,761,14746,14747,14724,546,465,466,14714,14734,14748,11618,11651,11652,11618,11593,11569,10832,10827,10897,11651,11681,11652,14748,14745,14714,11700,11682,11705,11682,11698,11705,11682,11652,11681,10892,10824,10823,10823,10922,10892,11048,11002,10922,11090,11091,11002,11414,11367,11320,11126,11266,11186,11089,11186,11090,11266,11219,11320,11414,11413,11497,11497,11496,11559,14829,14820,14794,14794,14810,14801,14821,14828,14801,1078,1079,1004,1041,1004,922,921,922,836,838,921,836,838,758,794,794,758,711,588,544,629,670,588,629,711,758,670,503,464,544,386,383,464,502,383,504,545,504,465,14747,14758,14734,547,466,467,467,549,547,591,672,674,549,505,591,672,797,761,884,842,761,14746,14764,14747,465,384,466,14748,14734,14758,11618,11652,11635,11635,11593,11618,11700,11706,11690,11700,11690,11682,11669,11652,11682,10891,10922,10823,11048,11090,11002,10922,11001,11048,11414,11320,11368,11266,11126,11219,11126,11186,11089,11090,11048,11089,11219,11368,11320,11414,11368,11413,11497,11413,11496,11559,11496,11495,14794,14820,14810,14801,14810,14821,1004,1079,1005,1004,923,922,922,837,836,838,836,758,588,503,544,670,675,588,757,670,758,386,464,503,386,316,383,424,504,383,465,504,424,14758,14747,14765,467,466,385,549,467,505,672,591,590,591,505,590,753,797,672,797,841,761,884,928,842,884,761,841,14764,14746,14773,14765,14747,14764,465,424,384,384,385,466,11706,11717,11712,11669,11635,11652,11690,11706,11712,11682,11690,11669,10961,10922,10891,10922,10961,11001,11089,11048,11001,11126,11174, +11219,11038,11126,11089,11219,11319,11368,11368,11319,11413,11496,11413,11412,11496,11412,11495,11495,11458,11533,14830,14821,14810,923,1004,1005,922,923,837,836,837,757,757,758,836,550,503,588,670,757,675,675,636,588,468,386,503,386,354,316,383,316,351,383,423,424,14758,14765,14774,385,425,467,467,425,505,673,672,590,590,505,548,753,788,797,673,753,672,14848,14823,14833,14813,14805,14788,14788,14779,14746,884,841,927,14746,14779,14773,14773,14765,14764,424,352,384,384,283,385,14781,14792,14758,11718,11690,11712,11690,11689,11669,10961,10993,11001,11038,11089,11001,11174,11126,11077,11220,11219,11174,11038,11077,11126,11219,11220,11319,11413,11319,11412,11412,11458,11495,14830,14810,14843,923,1005,929,923,844,837,763,757,837,550,468,503,550,588,636,763,675,757,636,675,716,426,386,468,386,426,354,284,316,354,316,254,351,351,423,383,424,423,352,14774,14765,14780,14774,14781,14758,385,353,425,548,505,425,624,673,590,590,548,624,753,667,788,877,797,788,673,706,753,14823,14805,14833,14805,14796,14788,14788,14796,14779,14773,14779,14789,14773,14790,14765,384,352,283,353,385,283,14792,14781,14800,14809,14827,14838,14792,14800,14809,14838,14827,14854,10993,11038,11001,11220,11174,11077,11077,11038,10949,11318,11319,11220,11318,11412,11319,11412,11318,11458,14830,14843,14860,923,929,844,837,844,763,506,468,550,550,636,592,716,675,763,636,716,717,468,506,426,426,469,354,316,284,253,354,387,284,253,254,316,351,254,352,351,352,423,14790,14780,14765,14780,14791,14774,14774,14791,14781,421,425,353,548,425,542,624,706,673,624,548,542,706,667,753,14846,14876,14862,14823,14846,14832,14823,14812,14805,14796,14805,14812,14796,14789,14779,14790,14773,14789,283,352,254,353,283,314,14781,14799,14800,14827,14809,14818,14800,14818,14809,11038,10993,10949,11318,11494,11458,844,929,885,844,798,763,550,592,506,592,636,637,716,763,798,716,767,717,636,717,637,426,506,507,507,469,426,354,469,470,253,284,229,354,427,387,387,355,284,254,253,199,14797,14780,14790,14780,14798,14791,14799,14781,14791,425,421,501,421,353,348,542,425,501,625,706,624, +624,542,625,625,667,706,14862,14876,14891,14862,14832,14846,14823,14832,14812,14796,14812,14806,14796,14806,14789,14790,14789,14807,255,283,254,228,314,283,348,353,314,14817,14800,14799,14800,14817,14818,844,885,798,506,592,507,592,637,508,716,798,767,679,717,767,717,676,637,507,470,469,470,427,354,285,229,284,253,229,178,387,427,355,284,355,285,253,178,199,200,254,199,14798,14780,14797,14797,14790,14807,14798,14808,14791,14808,14799,14791,421,462,501,348,382,421,501,584,542,584,625,542,625,584,667,584,707,667,14862,14891,14877,14862,14847,14832,14832,14847,14812,14824,14806,14812,14814,14789,14806,14789,14815,14807,283,255,228,254,200,255,228,281,314,281,348,314,14817,14799,14816,800,798,885,592,508,507,637,593,508,800,767,798,679,676,717,720,679,767,676,593,637,508,470,507,427,470,508,229,285,252,201,178,229,427,428,355,285,355,356,178,177,199,200,199,149,14798,14797,14816,14807,14815,14797,14808,14798,14816,14799,14808,14816,421,382,462,420,501,462,281,382,348,14974,14959,14942,14926,14891,14942,14877,14891,14909,14877,14847,14862,14834,14812,14847,14824,14814,14806,14834,14824,14812,14814,14815,14789,228,255,200,281,228,224,509,508,593,720,767,800,676,679,596,679,720,639,676,596,593,427,508,428,315,252,285,229,252,201,178,201,150,428,356,355,315,285,356,127,177,178,177,149,199,200,149,173,14797,14825,14816,14826,14797,14815,422,462,382,499,501,420,422,420,462,349,382,281,14926,14942,14959,14926,14909,14891,14877,14909,14893,14877,14864,14847,14834,14847,14864,14835,14814,14824,14834,14835,14824,14814,14826,14815,228,200,173,228,173,224,282,281,224,509,428,508,509,593,511,679,639,596,596,511,593,315,258,252,201,252,198,201,198,150,127,178,150,471,356,428,315,356,318,127,126,177,149,177,126,173,149,101,14825,14797,14826,14825,14836,14816,349,422,382,499,420,419,350,420,422,349,281,282,540,499,419,540,419,500,14927,14893,14909,14877,14893,14864,14834,14864,14878,14835,14850,14814,14835,14834,14863,14814,14849,14826,224,173,197,282,224,251,471,428,509,509,511,430,596,639,552,596,552,511,318,258,315,227,252,258,227, +198,252,150,198,146,150,102,127,471,463,356,318,356,389,127,68,126,149,126,101,173,101,144,14836,14825,14826,14816,14836,14851,350,422,349,312,419,420,420,350,312,349,282,350,500,419,461,14928,14893,14927,500,461,541,14864,14893,14894,14864,14894,14878,14863,14834,14878,14850,14835,14866,14850,14849,14814,14835,14863,14866,14849,14865,14826,197,173,144,224,197,251,313,282,251,463,471,509,430,511,431,463,509,430,552,431,511,198,227,148,198,148,146,102,150,146,68,127,102,463,389,356,126,68,101,98,144,101,14826,14867,14836,14851,14836,14868,419,312,381,313,312,350,313,350,282,419,381,461,14928,14894,14893,14960,14928,14927,539,541,461,14878,14894,14911,14863,14878,14892,14866,14880,14850,14850,14879,14849,14863,14892,14866,14849,14879,14865,14865,14867,14826,197,144,196,251,197,196,313,251,250,389,463,430,125,146,148,146,99,102,102,84,68,68,66,101,98,172,144,101,66,98,14867,14881,14836,14868,14836,14881,381,312,311,313,250,312,461,381,418,14929,14894,14928,14960,14929,14928,16356,16357,16358,14894,14929,14911,14878,14911,14910,14892,14878,14910,14866,14897,14880,14895,14850,14880,14850,14895,14879,14897,14866,14892,14879,14896,14865,14867,14865,14896,172,196,144,251,196,250,146,125,124,100,125,148,146,124,99,102,99,84,84,39,68,53,66,68,172,98,145,98,66,81,14881,14867,14898,14868,14881,14899,311,312,280,381,311,347,280,312,250,418,381,347,460,461,418,623,539,583,460,498,539,14943,14911,14929,14943,14910,14911,14897,14892,14910,14897,14915,14880,14880,14912,14895,14912,14879,14895,14879,14913,14896,14867,14896,14914,172,223,196,196,223,250,125,67,124,67,125,100,124,67,99,99,67,84,84,67,39,68,39,53,66,53,29,145,98,121,172,145,171,51,81,66,98,81,121,14867,14914,14898,14899,14881,14898,311,280,225,279,347,311,280,250,223,380,418,347,460,418,380,539,498,583,666,623,583,380,498,460,14929,14961,14943,14943,14946,14910,14897,14910,14915,14880,14915,14930,14930,14912,14880,14879,14912,14913,14914,14896,14913,172,171,223,39,29,53,66,29,51,121,171,145,51,82,81,82,121,81,14914,14931,14898,14932,14899,14898,226,225,280,311,225,279, +279,380,347,249,280,223,538,583,498,583,622,666,498,380,459,14976,14943,14961,14943,14975,14946,14915,14910,14946,14930,14915,14947,14912,14930,14948,14913,14912,14944,14914,14913,14945,195,223,171,39,22,29,51,29,28,171,121,122,52,82,51,82,122,121,14931,14914,14945,14931,14932,14898,226,174,225,226,280,249,222,279,225,417,380,279,249,223,195,583,538,622,498,459,538,705,666,622,417,459,380,705,787,832,14975,14979,14946,14946,14962,14915,14947,14915,14962,14947,14948,14930,14912,14948,14944,14913,14944,14945,122,195,171,22,8,29,29,8,28,51,28,52,83,82,52,83,122,82,14931,14945,14963,14932,14931,14963,174,226,195,225,174,175,226,249,195,222,278,279,225,175,222,417,279,379,621,622,538,538,459,458,622,752,705,417,458,459,787,705,752,833,787,752,14946,14979,14962,14980,14947,14962,14977,14948,14947,14977,14944,14948,14978,14945,14944,122,174,195,28,8,21,38,52,28,83,52,64,83,123,122,14963,14945,14978,14963,14964,14932,123,175,174,248,278,222,346,279,278,170,222,175,379,279,346,417,379,458,622,621,702,621,538,581,538,458,581,622,751,752,833,752,876,14962,14979,14994,14977,14947,14980,14980,14962,14994,14992,14944,14977,14993,14978,14944,123,174,122,21,8,13,28,21,38,64,52,38,97,83,64,97,123,83,14964,14963,14978,143,175,123,248,310,278,170,248,222,346,278,345,170,175,143,379,346,345,456,458,379,621,619,702,702,751,622,621,581,582,581,458,536,752,751,831,876,752,831,15024,15006,14979,15006,14994,14979,14977,14980,15007,15008,14980,14994,14992,14993,14944,14992,14977,15004,15005,14978,14993,21,13,20,38,21,20,37,64,38,80,97,64,97,143,123,14978,15005,14964,248,343,310,345,278,310,170,247,248,143,120,170,345,456,379,458,456,536,582,619,621,619,665,702,702,749,751,582,581,536,873,831,751,916,876,831,15024,15023,15006,15023,14994,15006,15007,14980,15025,15007,15004,14977,1034,1072,1122,15023,15008,14994,14992,15004,14993,15022,15005,14993,20,13,7,37,38,20,50,64,37,80,120,97,50,80,64,143,97,120,15005,14997,14964,309,343,248,343,378,310,378,345,310,247,170,221,248,247,309,170,120,169,456,345,416,536,456,497,619,582,537,665,619,537,702, +665,749,829,751,749,582,536,497,916,831,873,829,873,751,961,876,916,15055,15023,15024,15007,15025,15039,15007,15038,15004,1034,997,1072,1034,1073,961,14993,15004,15022,15022,14997,15005,20,7,19,20,19,37,27,50,37,120,80,119,79,80,50,309,377,343,343,377,378,378,416,345,170,169,221,277,247,221,277,309,247,120,119,169,416,497,456,582,497,537,537,620,665,665,704,749,749,786,829,958,916,873,873,829,913,961,916,997,15039,15025,15056,15007,15039,15054,15038,15007,15054,15004,15038,15022,1034,961,997,997,1033,1072,15022,15044,14997,19,7,12,27,37,19,65,50,27,79,119,80,65,79,50,309,344,377,455,378,377,378,457,416,169,220,221,221,276,277,344,309,277,119,194,169,416,457,497,537,497,457,537,580,620,704,665,620,786,749,704,786,875,829,916,958,997,958,873,913,913,829,875,1156,1072,1121,15039,15056,15073,15073,15054,15039,15061,15038,15054,15061,15022,15038,958,1033,997,1072,1033,1121,15061,15044,15022,15029,14997,15044,19,12,27,27,61,65,119,79,118,93,79,65,415,377,344,378,455,457,455,377,415,169,194,220,221,220,276,277,276,342,344,277,342,119,168,194,580,537,457,620,580,664,704,620,703,786,704,703,875,786,874,958,913,995,913,875,960,1121,1200,1156,1242,1288,1156,15094,15054,15073,15063,15061,15054,958,1030,1033,1118,1121,1033,15044,15061,15063,15063,15029,15044,27,12,25,27,47,61,93,65,61,93,118,79,119,118,168,344,454,415,457,455,415,194,217,220,271,276,220,341,342,276,414,344,342,217,194,168,580,457,496,664,580,618,664,703,620,750,786,703,830,874,786,874,959,875,995,913,960,1030,958,995,960,875,959,1121,1197,1200,1242,1156,1200,1242,1325,1288,15063,15054,15094,15094,15073,15113,1033,1030,1118,1118,1197,1121,15062,15029,15063,47,27,25,61,47,62,93,61,113,93,113,118,168,118,164,344,414,454,415,454,496,457,415,496,240,220,217,341,276,271,240,271,220,341,413,342,414,342,413,217,168,164,496,535,580,535,618,580,663,664,618,664,750,703,750,830,786,830,915,874,874,915,959,995,960,1032,1032,1030,995,960,959,1031,1286,1200,1197,1242,1200,1289,1242,1289,1325,15073,15149,15130,15094,15101,15063,15130,15113,15073,15113,15131,15094,1119,1118,1030, +1119,1197,1118,15062,15045,15029,15062,15063,15101,47,25,62,61,62,92,113,61,92,113,164,118,454,414,495,535,496,454,240,217,164,271,336,341,215,271,240,408,413,341,494,414,413,579,618,535,664,663,748,579,663,618,748,750,664,830,750,872,915,830,914,996,959,915,960,1031,1032,1119,1030,1032,996,1031,959,1286,1289,1200,1197,1241,1286,1289,1361,1325,15161,15130,15149,15094,15131,15101,15130,15148,15113,15113,15148,15131,1119,1241,1197,15045,15062,15081,15062,15101,15120,60,62,25,92,62,91,113,92,137,163,164,113,494,495,414,454,495,534,454,579,535,215,240,164,270,336,271,408,341,336,270,271,215,408,489,413,494,413,489,748,663,701,579,617,663,748,785,750,750,785,872,914,830,872,996,915,914,1120,1032,1031,1119,1032,1155,996,1071,1031,1286,1359,1289,1286,1241,1287,1289,1359,1361,1394,1325,1361,1501,1394,1474,15120,15101,15131,1544,1563,1474,1198,1241,1119,15100,15081,15062,15120,15100,15062,60,91,62,60,25,46,92,91,137,163,113,137,163,215,164,578,495,494,534,495,578,579,454,534,336,270,335,408,336,406,215,216,270,489,408,488,573,494,489,701,663,617,748,701,785,579,534,617,872,785,912,914,872,912,914,994,996,1120,1155,1032,1116,1120,1031,1119,1155,1198,996,994,1071,1116,1031,1071,1286,1358,1359,1198,1287,1241,1358,1286,1287,1359,1393,1361,1394,1361,1425,1474,1394,1450,15134,15120,15131,1563,1544,1587,1544,1474,1525,9762,9752,9757,15100,15120,15134,75,91,60,60,46,75,112,137,91,163,137,189,216,215,163,578,494,609,616,534,578,335,270,272,336,335,406,488,408,406,270,216,272,489,488,572,573,609,494,489,572,573,701,617,699,785,701,784,617,534,616,785,909,912,914,912,994,1120,1199,1155,1120,1116,1195,1199,1198,1155,1071,994,1116,1359,1358,1393,1199,1287,1198,1323,1358,1287,1449,1361,1393,1449,1425,1361,1394,1425,1450,1474,1450,1502,1587,1544,1564,1525,1474,1502,1544,1525,1564,1587,1618,1631,9752,9754,9757,112,91,75,112,162,137,189,137,162,216,163,189,578,609,662,616,578,662,272,337,335,407,406,335,487,488,406,216,241,272,572,488,571,609,573,656,572,656,573,617,616,699,701,699,784,785,784,870,785,870,909,909,990,912,994,912,990,1120,1195, +1199,1195,1116,1153,994,1067,1116,1323,1393,1358,1199,1323,1287,1449,1393,1423,1425,1449,1473,1425,1473,1450,1502,1450,1500,1587,1564,1600,1525,1502,1500,1564,1525,1586,1600,1618,1587,9752,9753,9754,75,111,112,162,112,161,189,162,214,216,189,241,693,662,609,662,700,616,301,337,272,407,335,337,407,487,406,487,571,488,301,272,241,571,655,572,609,656,693,572,655,656,700,699,616,783,784,699,784,869,870,909,870,955,989,990,909,990,1067,994,1195,1283,1199,1153,1116,1067,1153,1239,1195,1393,1323,1423,1323,1199,1324,1449,1423,1472,1499,1473,1449,1450,1473,1500,1600,1564,1586,1500,1543,1525,1525,1543,1586,1600,1630,1618,9753,9752,9755,161,112,111,213,162,161,213,214,162,214,239,189,189,239,241,662,693,746,662,747,700,334,337,301,407,337,405,407,405,487,487,570,571,241,239,301,655,571,570,656,692,693,656,655,692,700,783,699,783,869,784,955,870,869,955,989,909,1066,990,989,1115,1067,990,1239,1283,1195,1283,1324,1199,1153,1067,1152,1153,1282,1239,1323,1422,1423,1323,1324,1360,1498,1472,1423,1449,1472,1499,1473,1499,1523,1524,1500,1473,1617,1600,1586,1524,1543,1500,1599,1586,1543,1617,1630,1600,1618,1630,1643,9758,9753,9755,161,111,160,161,212,213,213,269,214,269,239,214,693,737,746,782,662,746,662,782,747,700,747,783,334,405,337,239,334,301,487,405,526,570,487,526,655,570,692,737,693,692,783,828,869,955,869,911,993,989,955,1114,990,1066,993,1066,989,1115,1152,1067,1115,990,1114,1283,1239,1282,1283,1360,1324,1238,1153,1152,1282,1153,1238,1422,1323,1360,1423,1422,1470,1498,1522,1472,1498,1423,1470,1499,1472,1522,1499,1522,1523,1473,1523,1524,1617,1586,1616,1524,1562,1543,1599,1616,1586,1599,1543,1598,1630,1617,1642,1643,1630,1650,1643,1650,1657,161,160,212,213,212,269,269,300,239,737,826,746,827,782,746,782,827,747,747,828,783,404,405,334,334,239,300,405,485,526,526,569,570,654,692,570,737,692,654,828,911,869,993,955,911,1066,1151,1114,993,1070,1066,1152,1115,1193,1115,1114,1193,1283,1282,1321,1283,1390,1360,1238,1152,1237,1282,1238,1321,1424,1422,1360,1471,1470,1422,1542,1522,1498,1498,1470,1521,1522,1562,1523,1562,1524,1523,1641, +1617,1616,1562,1585,1543,1599,1628,1616,1598,1543,1585,1628,1599,1598,1649,1642,1617,1630,1642,1650,1657,1650,1665,211,212,160,212,267,269,300,269,333,819,826,737,826,868,746,868,827,746,747,827,871,747,871,828,405,404,485,404,334,370,300,370,334,569,526,485,570,569,654,654,691,737,911,828,910,993,911,992,1066,1070,1151,1194,1114,1151,993,992,1070,1193,1237,1152,1193,1114,1194,1321,1390,1283,1424,1360,1390,1321,1238,1237,1424,1471,1422,1471,1520,1470,1522,1542,1561,1542,1498,1559,1521,1470,1520,1541,1498,1521,1522,1561,1562,1641,1649,1617,1641,1616,1640,1585,1562,1597,1640,1616,1628,1598,1585,1615,1628,1598,1629,1649,1656,1642,1656,1650,1642,1665,1650,1656,1674,1657,1665,212,211,267,269,267,333,300,333,369,819,903,826,737,776,819,903,868,826,908,827,868,908,871,827,871,910,828,485,404,486,446,404,370,300,369,370,485,568,569,654,569,691,737,691,776,910,992,911,1151,1070,1154,1194,1151,1236,992,1069,1070,1237,1193,1280,1193,1194,1280,1320,1390,1321,1424,1390,1418,1320,1321,1237,1467,1471,1424,1471,1518,1520,1542,1583,1561,1559,1498,1541,1584,1542,1559,1521,1520,1558,1560,1541,1521,1561,1596,1562,1641,1655,1649,1640,1655,1641,1562,1596,1597,1615,1585,1597,1640,1628,1629,1629,1598,1615,1649,1664,1656,1656,1673,1665,1674,1665,1673,268,267,211,333,267,332,4246,4247,4248,819,902,903,819,776,861,903,908,868,956,871,908,871,957,910,446,486,404,485,486,568,446,370,369,568,653,569,691,569,653,691,736,776,910,991,992,1070,1069,1154,1151,1154,1236,1194,1236,1281,991,1069,992,1280,1320,1237,1281,1280,1194,1320,1418,1390,1424,1418,1467,1467,1518,1471,1518,1557,1520,1584,1583,1542,1583,1595,1561,1559,1541,1582,1559,1593,1584,1558,1520,1557,1558,1560,1521,1582,1541,1560,1561,1613,1596,1655,1663,1649,1640,1648,1655,1627,1597,1596,1615,1597,1627,1640,1629,1648,1629,1615,1639,1649,1663,1664,1664,1673,1656,1691,1674,1673,267,268,332,333,332,402,369,402,332,819,861,902,902,983,903,776,818,861,903,956,908,871,956,957,957,991,910,446,484,486,567,568,486,446,369,484,653,568,652,691,653,736,776,736,818,1068,1154,1069,1196,1236,1154,1281,1236, +1319,991,1068,1069,1320,1280,1356,1356,1280,1281,1389,1418,1320,1467,1418,1446,1467,1495,1518,1557,1518,1581,1583,1584,1595,1613,1561,1595,1559,1582,1593,1593,1614,1584,9913,9914,9915,1558,1592,1560,1582,1560,1594,1596,1613,1626,1655,1672,1663,1655,1648,1671,1626,1627,1596,1615,1627,1639,1648,1629,1639,1681,1664,1663,1682,1673,1664,1691,1673,1682,369,332,403,861,949,902,902,1023,983,957,903,983,818,817,861,903,957,956,957,1029,991,567,486,484,652,568,567,369,403,484,653,652,736,818,736,817,1068,1117,1154,1196,1284,1236,1196,1154,1117,1236,1284,1319,1281,1319,1357,1029,1068,991,1389,1320,1356,1357,1356,1281,1389,1446,1418,1467,1446,1495,1495,1539,1518,9930,9926,9917,9913,9917,9916,1614,1595,1584,1613,1595,1625,1582,1612,1593,1593,1612,1614,9914,9913,9916,1558,1611,1592,1560,1592,1594,1582,1594,1612,1626,1613,1638,1671,1672,1655,1663,1672,1680,1671,1648,1662,1626,1647,1627,1627,1647,1639,1639,1654,1648,1690,1664,1681,1681,1663,1680,1664,1692,1682,1691,1682,1698,949,861,901,902,949,982,982,1023,902,1023,1057,983,983,1029,957,861,817,901,567,484,525,567,608,652,525,484,403,775,736,652,775,817,736,1029,1117,1068,1284,1196,1285,1196,1117,1240,1284,1357,1319,1389,1356,1419,1357,1417,1356,1389,1419,1446,1496,1495,1446,1538,1539,1495,9926,9922,9917,9919,9916,9917,1625,1595,1614,1613,1625,1638,1636,1614,1612,9916,9918,9914,9921,9924,9914,1623,1594,1592,1624,1612,1594,1626,1638,1647,1671,1679,1672,1689,1680,1672,1662,1648,1654,1671,1662,1679,1654,1639,1647,1664,1690,1692,1690,1681,1697,1697,1681,1680,1692,1699,1682,1699,1698,1682,948,949,901,949,1022,982,982,1056,1023,1023,1102,1057,1057,1103,983,1103,1029,983,860,901,817,608,567,525,690,652,608,483,525,403,735,775,652,775,860,817,1103,1117,1029,1240,1285,1196,1284,1285,1322,1227,1240,1117,1357,1284,1392,1419,1356,1417,1421,1417,1357,1466,1446,1419,1496,1538,1495,1496,1446,1466,9929,9922,9926,9919,9917,9922,9920,9916,9919,1625,1614,1636,1646,1638,1625,1636,1612,1637,9916,9920,9918,9921,9914,9918,1623,1635,1594,1624,1637,1612,1624,1594,1635,1638,1653,1647,1679,1695,1672,1696, +1680,1689,1689,1672,1695,1662,1654,1661,1679,1662,1678,1661,1654,1647,1706,1692,1690,1706,1690,1697,1697,1680,1696,1699,1692,1707,1716,1698,1699,948,1022,949,860,948,901,982,1022,1055,1056,982,1055,1056,1101,1023,1101,1102,1023,1057,1102,1143,1103,1057,1143,566,608,525,690,735,652,651,690,608,566,525,483,735,816,775,775,816,860,1103,1143,1117,1285,1240,1322,1391,1284,1322,1227,1269,1240,1227,1117,1143,1391,1392,1284,1357,1392,1421,1419,1417,1466,1465,1417,1421,1540,1538,1496,1496,1466,1516,9931,9922,9929,9927,9919,9922,9925,9920,9919,1646,1625,1636,1652,1638,1646,1636,1637,1651,9920,9923,9918,9921,9918,9923,9934,9921,9928,1624,1644,1637,1624,1635,1645,1638,1652,1653,1661,1647,1653,1695,1679,1704,1696,1689,1705,1704,1689,1695,1661,1678,1662,1688,1679,1678,1706,1714,1692,1715,1706,1697,1696,1712,1697,1707,1692,1714,1707,1717,1699,1699,1724,1716,948,981,1022,900,948,860,1100,1055,1022,1055,1101,1056,1101,1183,1102,1183,1143,1102,651,608,566,735,690,774,690,651,733,816,735,815,860,816,900,1350,1322,1240,1420,1391,1322,1143,1269,1227,1350,1240,1269,1391,1447,1392,1447,1421,1392,1465,1466,1417,1469,1465,1421,9940,9931,9929,1496,1516,1540,1465,1516,1466,9931,9927,9922,9925,9919,9927,9923,9920,9925,1658,1646,1636,1646,1660,1652,1644,1651,1637,1651,1658,1636,9921,9923,9928,9934,9928,9938,1645,1644,1624,9945,9934,9938,1653,1652,1668,1661,1653,1670,1704,1679,1703,1704,1705,1689,1705,1713,1696,1678,1661,1670,1703,1679,1688,1688,1678,1670,1706,1715,1714,1715,1697,1722,1696,1713,1712,1712,1722,1697,1725,1707,1714,1707,1725,1717,1699,1717,1724,1734,1716,1724,900,981,948,1022,981,1054,1055,1100,1142,1022,1099,1100,1055,1142,1101,1101,1142,1183,1143,1183,1226,690,773,774,735,774,815,733,773,690,815,899,816,900,816,899,1350,1384,1322,1420,1448,1391,1420,1322,1384,1143,1226,1269,1350,1269,1310,1391,1448,1447,1447,1469,1421,1469,1517,1465,9940,9936,9931,9940,9962,9954,1517,1516,1465,9927,9931,9936,9925,9927,9935,9923,9925,9932,1658,1660,1646,1660,1669,1652,1659,1651,1644,1651,1666,1658,9945,9960,9970,1652,1677,1668,1653,1668,1670,1703, +1721,1704,1704,1721,1705,1705,1723,1713,1703,1688,1685,1688,1670,1685,1733,1714,1715,1733,1715,1722,1712,1713,1731,1712,1731,1722,1725,1714,1733,1735,1717,1725,1735,1724,1717,1734,1724,1740,900,980,981,981,1053,1054,1099,1022,1054,1100,1182,1142,1181,1100,1099,1225,1183,1142,1226,1183,1268,773,859,774,815,774,859,733,814,773,815,898,899,900,899,980,1350,1310,1384,1448,1420,1468,1420,1384,1383,1226,1310,1269,1447,1448,1497,1497,1469,1447,1517,1469,1537,9936,9940,9947,1517,1555,1516,9940,9954,9947,9936,9939,9927,9927,9939,9935,9935,9932,9925,1658,1675,1660,1675,1669,1660,1652,1669,1677,1659,1666,1651,1659,1644,1667,1676,1658,1666,1684,1668,1677,1668,1685,1670,1703,1709,1721,1705,1721,1723,1713,1723,1732,1709,1703,1685,1739,1733,1722,1731,1713,1732,1739,1722,1731,1725,1733,1741,1725,1742,1735,1724,1735,1740,1734,1740,1751,980,1053,981,1053,1141,1054,1099,1054,1141,1181,1182,1100,1225,1142,1182,1181,1099,1141,1268,1183,1225,1226,1268,1310,773,858,859,898,815,859,814,733,856,814,858,773,898,947,899,899,1021,980,1310,1383,1384,1463,1468,1420,1468,1497,1448,1383,1415,1420,1497,1519,1469,1519,1537,1469,1517,1537,1556,9955,9936,9947,1556,1555,1517,9939,9936,9948,1676,1675,1658,1675,1686,1669,1687,1677,1669,9986,9995,10007,1683,1676,1666,1668,1684,1685,1684,1677,1694,1729,1721,1709,1729,1723,1721,1723,1738,1732,1709,1685,1701,1739,1750,1733,1731,1732,1748,1731,1748,1739,1733,1750,1741,1750,1725,1741,1725,1750,1742,1742,1752,1735,1740,1735,1753,9826,9821,9810,980,1052,1053,1053,1140,1141,1181,1266,1182,1267,1225,1182,1181,1141,1224,1225,1347,1268,1310,1268,1347,859,858,946,947,898,859,858,814,856,899,947,1021,980,1021,1052,1347,1383,1310,1463,1494,1468,1463,1420,1415,1468,1494,1497,1382,1415,1383,1494,1519,1497,1519,1556,1537,9948,9936,9955,9947,9963,9955,9939,9948,9956,1686,1675,1676,1687,1669,1686,1687,1694,1677,1683,1666,1693,1686,1676,1683,1685,1684,1701,1694,1702,1684,1719,1729,1709,1729,1738,1723,1732,1738,1749,1701,1719,1709,1739,1758,1750,1757,1748,1732,1748,1758,1739,1750,1760,1742,1742,1761,1752,1735,1752,1753,9818, +9810,9821,1053,1052,1140,1140,1224,1141,1181,1224,1266,1308,1182,1266,1225,1267,1309,1182,1308,1267,1347,1225,1309,979,946,858,947,859,946,858,856,945,1021,947,1020,1021,1098,1052,1347,1309,1383,1463,1445,1494,1463,1415,1445,1415,1382,1348,1309,1382,1383,1494,1513,1519,1556,1519,1580,9948,9955,9964,9955,9963,9974,9948,9964,9956,1700,1687,1686,1687,1700,1694,1700,1686,1683,1702,1701,1684,1694,1710,1702,1729,1719,1738,1738,1745,1749,1749,1759,1732,1719,1701,1728,1767,1750,1758,1748,1757,1758,1732,1759,1757,1750,1768,1760,1742,1760,1761,1761,1769,1752,1752,1770,1753,9818,9821,9827,1139,1140,1052,1140,1223,1224,1266,1224,1223,1266,1346,1308,1309,1267,1348,1349,1267,1308,979,1019,946,979,858,945,947,946,1020,1021,1020,1097,1097,1098,1021,1098,1139,1052,1493,1494,1445,1348,1445,1415,1382,1309,1348,1493,1513,1494,1519,1513,1580,9955,9974,9964,1579,1580,1513,9956,9964,9972,1711,1694,1700,1700,1683,1708,1702,1718,1701,1710,1694,1711,1702,1710,1720,1738,1719,1745,1755,1749,1745,1749,1755,1759,1728,1701,1718,1737,1719,1728,1778,1750,1767,1758,1776,1767,1776,1758,1757,1757,1759,1777,1768,1750,1778,1760,1768,1779,1761,1760,1769,1752,1769,1770,1780,1753,1770,9818,9827,9822,1140,1139,1223,1266,1223,1306,1346,1266,1306,1381,1308,1346,1267,1349,1348,1349,1308,1381,1018,1019,979,1019,1020,946,1018,979,945,1020,1096,1097,1097,1179,1098,1098,1180,1139,1445,1444,1493,1445,1348,1444,1493,1462,1513,9981,9964,9974,1553,1579,1513,9980,9972,9964,1708,1711,1700,1702,1727,1718,1710,1711,1726,1710,1730,1720,1727,1702,1720,1737,1745,1719,1755,1745,1737,1755,1772,1759,1718,1736,1728,1737,1728,1744,1778,1767,1786,1786,1767,1776,1776,1757,1777,1777,1759,1772,1778,1787,1768,1768,1787,1779,1760,1779,1788,1760,1788,1769,1770,1769,1789,9837,9834,9827,9830,9822,9827,1223,1139,1222,1223,1222,1306,1346,1306,1380,1381,1346,1413,1349,1414,1348,1349,1381,1414,1018,1095,1019,1020,1019,1096,1096,1178,1097,1178,1179,1097,1098,1179,1221,1180,1098,1221,1222,1139,1180,1493,1444,1462,1348,1414,1444,1513,1462,1514,9981,9980,9964,9989,9981,9974,1513,1514,1553,1726, +1711,1708,1718,1727,1736,1710,1726,1730,1727,1720,1730,1765,1755,1737,1755,1765,1772,1744,1728,1736,1756,1737,1744,1786,1794,1778,1786,1776,1777,1772,1791,1777,1778,1795,1787,1796,1779,1787,1797,1788,1779,1798,1769,1788,1798,1789,1769,1770,1789,1799,9834,9830,9827,9829,9822,9830,1306,1222,1307,1380,1306,1307,1346,1380,1413,1443,1381,1413,1414,1381,1443,1018,1094,1095,1019,1095,1096,1096,1095,1178,1221,1179,1178,1221,1265,1180,1222,1180,1265,1462,1444,1414,1464,1514,1462,9981,9998,9980,1553,1514,1578,1743,1736,1727,1726,1746,1730,1747,1727,1730,1765,1737,1756,1772,1765,1773,1754,1744,1736,1744,1766,1756,1786,1806,1794,1778,1794,1795,1786,1777,1806,1772,1773,1791,1807,1777,1791,1808,1787,1795,1779,1796,1809,1796,1787,1808,1797,1798,1788,1797,1779,1810,1789,1798,1811,1789,1811,1799,9834,9829,9830,1222,1265,1307,1380,1307,1377,1439,1413,1380,1461,1443,1413,1414,1443,1464,1094,1018,1017,1094,1176,1095,1095,1219,1178,1219,1221,1178,1263,1265,1221,1464,1462,1414,1514,1464,1515,9998,9981,10009,1554,1578,1514,1754,1736,1743,1743,1727,1747,1747,1730,1746,1756,1773,1765,1754,1764,1744,1744,1764,1766,1756,1766,1774,1794,1806,1817,1794,1817,1795,1777,1807,1806,1773,1792,1791,1807,1791,1792,1808,1795,1818,1809,1796,1819,1779,1809,1810,1808,1820,1796,1798,1797,1821,1797,1810,1821,1798,1821,1811,1811,1822,1799,9834,9839,9829,1307,1265,1304,1307,1304,1377,1439,1380,1377,1461,1413,1439,1443,1461,1492,1464,1443,1492,1094,1017,1110,1094,1177,1176,1095,1176,1219,1219,1263,1221,1263,1304,1265,1464,1492,1515,1514,1515,1554,1743,1762,1754,1743,1747,1763,1746,1763,1747,1784,1773,1756,1754,1771,1764,1764,1783,1766,1766,1785,1774,1784,1756,1774,1806,1807,1817,1828,1795,1817,1773,1784,1792,1807,1792,1814,1828,1818,1795,1818,1829,1808,1820,1819,1796,1830,1809,1819,1810,1809,1831,1808,1829,1820,1810,1822,1821,1821,1822,1811,1799,1822,1832,9829,9839,9836,1345,1377,1304,1439,1377,1412,1461,1439,1460,1460,1492,1461,1017,1062,1110,1110,1177,1094,1176,1177,1263,1263,1219,1176,1304,1263,1177,1536,1515,1492,1515,1536,1554,1743,1763,1762,1762,1771,1754, +1775,1763,1746,1771,1782,1764,1764,1782,1783,1766,1783,1790,1766,1790,1785,1793,1774,1785,1793,1784,1774,1807,1838,1817,1828,1817,1838,1792,1784,1803,1792,1803,1814,1814,1834,1807,1828,1839,1818,1818,1840,1829,1820,1841,1819,1830,1831,1809,1842,1830,1819,1810,1831,1843,1829,1844,1820,1810,1843,1822,1845,1832,1822,9839,9843,9836,1345,1412,1377,1345,1304,1177,1439,1412,1460,1460,1491,1492,1062,1017,986,1062,1111,1110,1110,1220,1177,1492,1491,1536,1775,1762,1763,1762,1781,1771,1771,1781,1782,1801,1783,1782,1790,1783,1802,1790,1804,1785,1793,1785,1805,1784,1793,1803,1807,1834,1838,1828,1838,1839,1803,1825,1814,1814,1825,1834,1840,1818,1839,1840,1851,1829,1820,1844,1841,1841,1852,1819,1831,1830,1853,1854,1830,1842,1842,1819,1852,1855,1843,1831,1829,1851,1844,1843,1845,1822,9839,9847,9843,9848,9836,9843,1378,1412,1345,1177,1305,1345,1460,1412,1441,1460,1441,1491,1111,1062,986,1192,1110,1111,1110,1192,1220,1220,1264,1177,1781,1762,1775,1801,1782,1781,1801,1802,1783,1813,1790,1802,1813,1804,1790,1785,1804,1815,1816,1805,1785,1793,1805,1803,1838,1834,1858,1839,1838,1858,1803,1805,1825,1825,1837,1834,1840,1839,1858,1840,1861,1851,1841,1844,1852,1853,1830,1862,1831,1853,1855,1854,1862,1830,1854,1842,1863,1852,1863,1842,1855,1845,1843,1851,1864,1844,9847,9848,9843,9844,9836,9848,1378,1441,1412,1345,1305,1378,1305,1177,1264,1109,1111,986,1111,1109,1192,1192,1109,1220,1264,1220,1109,1824,1813,1802,1826,1804,1813,1815,1804,1827,1816,1785,1815,1816,1825,1805,1834,1837,1858,1825,1816,1837,1861,1840,1858,1851,1861,1873,1844,1874,1852,1853,1862,1875,1875,1855,1853,1862,1854,1876,1877,1854,1863,1863,1852,1874,1845,1855,1875,1864,1851,1873,1878,1844,1864,1845,1875,1886,9848,9852,9844,1826,1813,1824,1804,1826,1835,1804,1835,1827,1815,1827,1836,1816,1815,1836,1860,1858,1837,1837,1816,1836,1861,1858,1872,1861,1882,1873,1844,1878,1874,1875,1862,1883,1854,1877,1876,1862,1876,1883,1884,1877,1863,1874,1885,1863,1864,1873,1887,1878,1864,1888,1875,1883,1886,1886,1897,1919,9852,9855,9844,1847,1826,1824,1835,1826,1848,1849,1827,1835,1850,1836,1827, +1860,1872,1858,1837,1836,1860,1882,1861,1872,1894,1873,1882,1895,1874,1878,1896,1876,1877,1883,1876,1897,1884,1896,1877,1898,1884,1863,1874,1895,1885,1898,1863,1885,1887,1873,1894,1888,1864,1887,1899,1878,1888,1883,1897,1886,1919,1897,1921,9844,9855,9851,1847,1857,1826,1848,1826,1857,1835,1848,1859,1849,1850,1827,1849,1835,1859,1850,1860,1836,1860,1850,1872,1882,1872,1893,1894,1882,1905,1895,1878,1906,1896,1907,1876,1897,1876,1907,1896,1884,1908,1909,1884,1898,1895,1910,1885,1898,1885,1910,1894,1911,1887,1888,1887,1911,1906,1878,1899,1899,1888,1912,1897,1907,1921,9857,9851,9855,1857,1847,1867,1848,1857,1868,1869,1859,1848,1850,1849,1870,1849,1859,1871,1850,1870,1872,1893,1872,1870,1882,1893,1905,1894,1905,1911,1918,1895,1906,1920,1907,1896,1884,1922,1908,1896,1908,1920,1923,1884,1909,1898,1924,1909,1895,1918,1910,1925,1898,1910,1911,1926,1888,1899,1927,1906,1926,1912,1888,1899,1912,1928,1921,1907,1936,9857,9858,9851,9855,9859,9857,1847,1879,1867,1867,1880,1857,1881,1868,1857,1869,1848,1868,1869,1871,1859,1870,1849,1871,1870,1871,1893,1905,1893,1892,1934,1911,1905,1935,1918,1906,1920,1936,1907,1923,1922,1884,1908,1922,1937,1920,1908,1937,1938,1923,1909,1925,1924,1898,1938,1909,1924,1939,1910,1918,1910,1940,1925,1934,1926,1911,1899,1928,1927,1927,1941,1906,1926,1942,1912,1928,1912,1943,9857,9861,9858,9862,9857,9859,1879,1889,1867,1867,1890,1880,1881,1857,1880,1881,1891,1868,1869,1868,1891,1871,1869,1892,1871,1892,1893,1905,1892,1917,1934,1905,1933,1939,1918,1935,1941,1935,1906,1946,1922,1923,1937,1922,1947,9862,9867,9864,1938,1948,1923,1938,1924,1925,1949,1910,1939,1910,1950,1940,1940,1951,1925,1942,1926,1934,1952,1927,1928,1927,1953,1941,1943,1912,1942,1928,1943,1954,9864,9861,9857,9862,9864,9857,1889,1890,1867,1880,1890,1902,1881,1880,1903,1904,1891,1881,1892,1869,1891,1892,1891,1917,1917,1933,1905,1942,1934,1933,1939,1935,1960,1960,1935,1941,1946,1947,1922,1948,1946,1923,9868,9864,9867,1938,1961,1948,1951,1938,1925,1950,1910,1949,1962,1949,1939,1940,1950,1963,1964,1951,1940,1952,1953,1927,1952,1928,1954,1941,1953, +1965,1942,1966,1943,1966,1954,1943,9865,9861,9864,1890,1889,1914,1915,1902,1890,1880,1902,1916,1916,1903,1880,1904,1881,1903,1904,1917,1891,1917,1904,1933,1942,1933,1966,1970,1939,1960,1960,1941,1971,1947,1946,1972,1948,1972,1946,9868,9865,9864,1938,1951,1961,1973,1948,1961,1949,1962,1950,1970,1962,1939,1950,1962,1963,1974,1940,1963,1964,1975,1951,1974,1964,1940,1952,1976,1953,1959,1952,1954,1977,1965,1953,1971,1941,1965,1966,1959,1954,1913,1914,1889,1929,1890,1914,1930,1902,1915,1929,1915,1890,1931,1916,1902,1916,1932,1903,1904,1903,1932,1904,1932,1933,1966,1933,1945,1960,1980,1970,1971,1981,1960,9868,9872,9870,1973,1972,1948,9865,9868,9870,1961,1951,1975,1973,1961,1975,1970,1982,1962,1983,1963,1962,1963,1984,1974,1985,1975,1964,1986,1964,1974,1959,1976,1952,1953,1976,1977,1977,1987,1965,1971,1965,1988,1959,1966,1945,1929,1914,1913,1930,1931,1902,1915,1944,1930,1915,1929,1944,1931,1945,1916,1945,1932,1916,1945,1933,1932,1960,1981,1980,1970,1980,1982,1988,1981,1971,9870,9872,9874,1973,1993,1972,1985,1973,1975,1994,1962,1982,1983,1995,1963,1996,1983,1962,1984,1963,1995,1984,1986,1974,1997,1985,1964,1986,1997,1964,1959,1991,1976,1998,1977,1976,1987,1977,1998,1999,1965,1987,1999,1988,1965,1959,1945,1931,1913,1955,1929,1931,1930,1956,1957,1930,1944,1944,1929,1958,1981,2002,1980,1982,1980,2003,1988,2004,1981,9877,9870,9874,18250,18251,18252,1962,1994,1996,2003,1994,1982,1983,2005,1995,1983,1996,2005,2006,1984,1995,1984,2007,1986,1997,2008,1985,1997,1986,2008,10542,10543,10544,1998,1976,1991,2009,1987,1998,2009,1999,1987,1999,2010,1988,1931,1956,1959,1913,1967,1955,1968,1929,1955,1957,1956,1930,1969,1957,1944,1968,1958,1929,1944,1958,1969,2002,1981,2015,2016,1980,2002,2003,1980,2016,2004,1988,2010,2015,1981,2004,2035,1993,1985,2017,1996,1994,1994,2003,2018,1995,2005,2019,1996,2020,2005,2007,1984,2006,2006,1995,2021,2007,2008,1986,1985,2008,2022,10545,10542,10544,10552,10550,10547,10546,10549,10547,2010,1999,2009,1968,1955,1967,1969,1978,1957,1979,1958,1968,1979,1969,1958,2002,2015,2026,2016,2002,2026,2027,2003,2016,2010, +2028,2004,2015,2004,2029,2022,2035,1985,1996,2017,2020,1994,2018,2017,2027,2018,2003,2019,2005,2030,2019,2021,1995,2020,2031,2005,2007,2006,2032,2006,2021,2033,2007,2034,2008,2022,2008,2034,1991,1957,1978,10547,10550,10548,10549,10546,10551,10546,10547,10548,10554,10549,10551,1989,1968,1967,1969,1990,1978,1968,1992,1979,1969,1979,1990,2040,2026,2015,2016,2026,2041,2042,2027,2016,10554,10551,10556,2004,2028,2029,2040,2015,2029,2043,2020,2017,2018,2044,2017,2018,2027,2045,2046,2030,2005,2019,2030,2047,2048,2021,2019,2049,2031,2020,2005,2031,2046,2006,2033,2032,2007,2032,2034,2033,2021,2050,10546,10553,10551,1990,2001,2014,1992,1968,1989,1989,1967,2000,1992,2001,1979,1990,1979,2001,2040,2054,2026,2054,2041,2026,2055,2016,2041,2042,2045,2027,2016,2055,2042,10556,10551,10555,10559,10556,10557,2029,2056,2040,2049,2020,2043,2017,2044,2043,2044,2018,2057,2018,2045,2058,2046,2059,2030,2047,2030,2060,2019,2047,2048,2048,2050,2021,2061,2031,2049,2046,2031,2062,2063,2032,2033,2033,2050,2063,2014,2001,2025,10555,10551,10553,2011,1992,1989,1989,2000,2011,2013,2001,1992,2054,2040,2056,2054,2068,2041,2055,2041,2069,2042,2070,2045,2071,2042,2055,10556,10555,10557,10559,10557,10561,2072,2049,2043,2073,2043,2044,2018,2058,2057,2074,2044,2057,2045,2075,2058,2046,2062,2059,2060,2030,2059,2047,2060,2076,2047,2077,2048,2050,2048,2077,2061,2062,2031,2078,2061,2049,2063,2050,2077,2013,2025,2001,2053,2025,2036,2011,2013,1992,2024,2011,2000,10564,10561,10562,10564,10562,10566,2068,2069,2041,2082,2055,2069,2071,2070,2042,2083,2045,2070,2071,2055,2084,10558,10557,10555,10561,10557,10560,2072,2078,2049,2073,2072,2043,2073,2044,2074,2058,2085,2057,2085,2074,2057,2045,2083,2075,2086,2058,2075,2087,2059,2062,16359,16360,16361,9895,9900,9899,16362,16363,16364,2061,2088,2062,2089,2061,2078,9891,9894,9892,2036,2025,2013,2036,2065,2053,2036,2013,2011,2011,2024,2039,2038,2024,2000,10561,10560,10562,10566,10562,10565,10570,10566,10568,2084,2055,2082,10572,10570,10568,2071,2093,2070,2083,2070,2094,2095,2071,2084,10558,10560,10557,2078,2072,2096,2097,2072, +2073,2074,2098,2073,2058,2086,2085,2085,2098,2074,2083,2099,2075,2086,2075,2099,2087,2100,2059,2087,2062,2088,9902,9899,9900,9892,9894,9895,2088,2061,2089,2089,2078,2101,2036,2039,2065,2011,2039,2036,2038,2039,2024,10560,10563,10562,10563,10565,10562,10566,10565,10568,2084,2082,2105,10572,10568,10571,2071,2095,2093,2070,2093,2094,2083,2094,2106,10577,10578,10574,2065,2067,2090,2096,2072,2097,2078,2096,2107,2097,2073,2098,2108,2085,2086,2108,2098,2085,2083,2106,2099,2086,2099,2109,9906,9904,9902,16365,16366,16367,9901,9899,9902,16366,16369,16368,2101,2078,2107,16368,16369,16371,2065,2039,2067,2038,2067,2039,2090,2067,2092,10565,10563,10567,10565,10569,10568,10574,10572,10571,10571,10568,10569,2093,2095,2112,2094,2093,2106,10577,10574,10576,2096,2097,2113,2113,2107,2096,2097,2098,2114,2108,2086,2109,2108,2115,2098,2116,2099,2106,2109,2099,2117,9906,9908,9904,9904,9901,9902,16366,16368,16367,16371,16374,16372,16368,16371,16370,2052,2067,2038,2081,2092,2067,2092,2081,2104,2104,2119,2127,10574,10571,10575,10573,10571,10569,2095,2120,2112,2112,2106,2093,10576,10574,10575,2113,2097,2114,2107,2113,2121,2115,2114,2098,2108,2109,2122,2123,2115,2108,2116,2117,2099,2116,2106,2124,2117,2125,2109,16370,16367,16368,16372,16374,16376,16372,16370,16371,2067,2052,2081,2104,2102,2119,2137,2144,2118,2118,2119,2102,2128,2112,2120,2112,2124,2106,2120,2137,2128,2113,2114,2129,2121,2113,2129,2114,2115,2129,2125,2122,2109,2122,2123,2108,2123,2130,2115,2116,2131,2117,2132,2116,2124,2133,2125,2117,16372,16376,16375,16372,16373,16370,2118,2134,2137,2118,2102,2110,2128,2136,2112,2124,2112,2138,2134,2128,2137,16382,16376,16383,2130,2129,2115,16398,16396,16393,2116,2132,2131,2133,2117,2131,2140,2132,2124,16375,16376,16377,16375,16373,16372,2134,2118,2126,2110,2126,2118,2136,2128,2135,2141,2112,2136,2141,2138,2112,2124,2138,2142,2134,2135,2128,16379,16376,16382,16386,16382,16383,2143,2129,2130,16396,16398,16400,2140,2124,2142,16376,16379,16377,16373,16375,16377,2134,2126,2135,2141,2142,2138,10579,10580,10581,10582,10580,10579,10581,10580,10583,10579, +10581,10584,10582,10585,10580,10579,10586,10582,10583,10580,10587,10581,10583,10588,10581,10589,10584,10590,10579,10584,10582,10591,10585,10585,10592,10580,10590,10586,10579,10582,10586,10593,10580,10592,10587,10583,10587,10594,10588,10583,10595,10596,10581,10588,10589,10581,10596,10589,10597,10584,10590,10584,10597,10582,10598,10591,10599,10585,10591,10592,10585,10600,10586,10590,10601,10602,10593,10586,10598,10582,10593,10587,10592,10603,10587,10603,10594,10595,10583,10594,10604,10588,10595,10596,10588,10605,10589,10596,10606,10589,10607,10597,10597,10608,10590,10598,10609,10591,10599,10600,10585,10599,10591,10610,10600,10611,10592,10601,10590,10608,10586,10601,10612,10593,10602,10613,10612,10602,10586,10598,10593,10614,10603,10592,10611,10594,10603,10615,10594,10616,10595,10605,10588,10604,10604,10595,10617,10618,10596,10605,10606,10596,10618,10606,10619,10589,10589,10619,10607,10597,10607,10608,10620,10609,10598,10591,10609,10610,10600,10599,10621,10610,10621,10599,10611,10600,10622,10608,10623,10601,10612,10601,10624,10613,10602,10625,10614,10593,10613,10625,10602,10612,10598,10614,10626,10603,10611,10622,10603,10627,10615,10594,10615,10628,10616,10594,10628,10617,10595,10616,10629,10605,10604,10630,10604,10617,10605,10631,10618,10606,10618,10632,10606,10633,10619,10623,10607,10619,10608,10607,10623,10620,10634,10609,10620,10598,10626,10635,10610,10609,10636,10600,10621,10610,10637,10621,10622,10600,10636,10601,10623,10638,10601,10638,10624,10639,10612,10624,10640,10613,10625,10641,10614,10613,10640,10625,10612,10641,10626,10614,10603,10622,10627,10627,10642,10615,10628,10615,10642,10616,10628,10643,10617,10616,10644,10631,10605,10629,10629,10604,10645,10604,10630,10646,10630,10617,10647,10631,10632,10618,10606,10632,10633,10633,10648,10619,10623,10619,10648,10620,10649,10634,10634,10635,10609,10626,10650,10620,10610,10635,10651,10636,10621,10637,10610,10651,10637,10622,10636,10652,10638,10623,10648,10638,10653,10624,10640,10612,10639,10639,10624,10653,10613,10640,10654,10655,10641,10613,10626,10641,10650,10622, +10656,10627,10627,10656,10642,10628,10642,10657,10628,10657,10643,10644,10616,10643,10617,10644,10647,10631,10629,10645,10604,10646,10645,10658,10646,10630,10630,10647,10658,10631,10659,10632,10660,10633,10632,10633,10661,10648,10620,10662,10649,10649,10663,10634,10635,10634,10664,10620,10650,10662,10665,10651,10635,10636,10637,10666,10651,10667,10637,10652,10636,10666,10668,10622,10652,10638,10648,10669,10670,10653,10638,10654,10640,10639,10671,10639,10653,10655,10613,10654,10641,10655,10672,10641,10672,10650,10622,10668,10656,10642,10656,10673,10674,10657,10642,10643,10657,10675,10644,10643,10675,10675,10647,10644,10631,10645,10676,10646,10677,10645,10678,10646,10658,10679,10658,10647,10676,10659,10631,10632,10659,10680,10660,10661,10633,10660,10632,10680,10669,10648,10661,10681,10649,10662,10649,10682,10663,10634,10663,10664,10635,10664,10665,10672,10662,10650,10665,10683,10651,10637,10667,10666,10651,10684,10667,10652,10666,10685,10668,10652,10686,10670,10638,10669,10687,10653,10670,10654,10639,10671,10671,10653,10688,10655,10654,10689,10655,10690,10672,10668,10673,10656,10642,10673,10691,10692,10657,10674,10642,10691,10674,10692,10675,10657,10679,10647,10675,10693,10676,10645,10646,10694,10677,10677,10693,10645,10678,10695,10646,10658,10696,10678,10679,10696,10658,10697,10659,10676,10659,10697,10680,10660,10698,10661,10699,10660,10680,10661,10700,10669,10681,10682,10649,10701,10681,10662,10702,10663,10682,10664,10663,10703,10664,10703,10665,10672,10690,10662,10665,10704,10683,10683,10684,10651,10705,10666,10667,10667,10684,10706,10666,10705,10685,10685,10686,10652,10673,10668,10686,10707,10670,10669,10653,10687,10688,10687,10670,10708,10671,10709,10654,10688,10710,10671,10689,10654,10709,10655,10689,10711,10655,10712,10690,10713,10691,10673,10714,10692,10674,10713,10674,10691,10675,10692,10715,10675,10716,10679,10693,10717,10676,10694,10646,10695,10694,10718,10677,10677,10718,10693,10678,10719,10695,10678,10696,10719,10720,10696,10679,10697,10676,10717,10680,10697,10721,10699,10698,10660,10700,10661,10698,10680, +10721,10699,10700,10707,10669,10722,10682,10681,10701,10722,10681,10701,10662,10690,10702,10703,10663,10702,10682,10723,10665,10703,10724,10724,10704,10665,10725,10683,10704,10684,10683,10725,10667,10726,10705,10706,10684,10727,10706,10726,10667,10685,10705,10728,10729,10686,10685,10673,10686,10730,10708,10670,10707,10731,10688,10687,10687,10708,10731,10671,10710,10709,10732,10710,10688,10709,10733,10689,10711,10689,10733,10711,10712,10655,10734,10690,10712,10713,10673,10735,10714,10736,10692,10674,10737,10714,10713,10737,10674,10692,10736,10715,10715,10716,10675,10679,10716,10720,10693,10718,10717,10738,10694,10695,10718,10694,10739,10719,10740,10695,10696,10741,10719,10742,10696,10720,10697,10717,10743,10743,10721,10697,10699,10744,10698,10700,10698,10745,10746,10699,10721,10747,10707,10700,10722,10723,10682,10701,10748,10722,10749,10701,10690,10750,10703,10702,10723,10751,10702,10703,10752,10724,10704,10724,10753,10704,10754,10725,10725,10727,10684,10726,10755,10705,10756,10706,10727,10706,10756,10726,10755,10728,10705,10729,10685,10728,10729,10730,10686,10735,10673,10730,10708,10707,10757,10688,10731,10732,10708,10758,10731,10710,10759,10709,10732,10760,10710,10709,10761,10733,10711,10733,10762,10711,10763,10712,10749,10690,10734,10734,10712,10763,10713,10735,10764,10714,10765,10736,10737,10766,10714,10767,10737,10713,10765,10715,10736,10715,10768,10716,10768,10720,10716,10718,10769,10717,10694,10738,10739,10738,10695,10740,10770,10718,10739,10719,10771,10740,10741,10696,10742,10719,10741,10772,10742,10720,10773,10717,10769,10743,10774,10721,10743,10699,10746,10744,10745,10698,10744,10745,10747,10700,10746,10721,10775,10776,10707,10747,10723,10722,10748,10748,10701,10777,10777,10701,10749,10703,10750,10752,10750,10702,10778,10723,10779,10751,10702,10751,10778,10752,10780,10724,10753,10724,10781,10704,10753,10754,10754,10727,10725,10756,10755,10726,10756,10727,10782,10783,10728,10755,10728,10783,10729,10729,10784,10730,10785,10735,10730,10757,10707,10776,10757,10758,10708,10732,10731,10786,10758,10786,10731,10710, +10760,10759,10759,10761,10709,10732,10787,10760,10788,10733,10761,10733,10788,10762,10763,10711,10762,10734,10789,10749,10734,10763,10790,10735,10791,10764,10767,10713,10764,10714,10792,10765,10737,10767,10766,10714,10766,10792,10794,10768,10715,10773,10720,10768,10718,10770,10769,10795,10739,10738,10738,10740,10795,10770,10739,10796,10719,10772,10771,10771,10797,10740,10798,10741,10742,10799,10772,10741,10800,10742,10773,10769,10774,10743,10775,10721,10774,10746,10801,10744,10745,10744,10802,10776,10747,10745,10803,10746,10775,10723,10748,10779,10777,10804,10748,10777,10749,10789,10780,10752,10750,10778,10805,10750,10779,10806,10751,10751,10806,10778,10781,10724,10780,10781,10807,10753,10753,10808,10754,10754,10782,10727,10756,10809,10755,10782,10810,10756,10811,10783,10755,10729,10783,10812,10729,10813,10784,10730,10784,10785,10735,10785,10813,10757,10776,10814,10757,10815,10758,10816,10732,10786,10758,10817,10786,10818,10759,10760,10759,10818,10761,10816,10787,10732,10760,10787,10819,10788,10761,10818,10762,10788,10820,10762,10790,10763,10821,10789,10734,10790,10822,10734,10735,10813,10791,10791,10823,10764,10767,10764,10823,10767,10824,10766,10827,10768,10794,10768,10827,10773,10828,10769,10770,10739,10795,10829,10797,10795,10740,10829,10796,10739,10770,10796,10828,10771,10772,10830,10830,10797,10771,10799,10741,10798,10798,10742,10800,10831,10772,10799,10773,10832,10800,10803,10801,10746,10801,10802,10744,10802,10835,10745,10776,10745,10814,10748,10836,10779,10777,10821,10804,10836,10748,10804,10821,10777,10789,10780,10750,10805,10805,10778,10837,10779,10838,10806,10778,10806,10837,10781,10780,10839,10807,10781,10840,10808,10753,10807,10754,10808,10782,10756,10841,10809,10809,10811,10755,10782,10842,10810,10810,10841,10756,10783,10811,10843,10843,10812,10783,10813,10729,10812,10784,10813,10785,10757,10814,10844,10815,10757,10844,10845,10758,10815,10816,10786,10846,10845,10817,10758,10817,10846,10786,10818,10760,10819,10847,10787,10816,10787,10847,10819,10788,10818,10848,10820,10788,10848,10820,10849,10762,10850, +10790,10762,10822,10821,10734,10851,10822,10790,10852,10791,10813,10853,10823,10791,10823,10824,10767,10773,10827,10832,10795,10857,10829,10797,10858,10795,10829,10859,10796,10828,10796,10860,10830,10772,10831,10858,10797,10830,10799,10798,10861,10862,10798,10800,10799,10863,10831,10832,10864,10800,10803,10866,10801,10802,10801,10867,10802,10867,10835,10835,10814,10745,10779,10836,10869,10870,10804,10821,10871,10836,10804,10780,10805,10839,10872,10805,10837,10779,10869,10838,10806,10838,10873,10873,10837,10806,10781,10839,10874,10781,10874,10840,10875,10807,10840,10875,10808,10807,10808,10842,10782,10841,10876,10809,10809,10877,10811,10810,10842,10841,10878,10843,10811,10843,10879,10812,10812,10852,10813,10880,10844,10814,10881,10815,10844,10845,10815,10882,10883,10816,10846,10884,10817,10845,10817,10885,10846,10886,10818,10819,10847,10816,10883,10887,10819,10847,10888,10848,10818,10889,10820,10848,10849,10820,10890,10762,10849,10850,10850,10851,10790,10821,10822,10851,10852,10853,10791,10891,10823,10853,10857,10795,10858,10829,10857,10899,10859,10829,10900,10859,10860,10796,10858,10830,10831,10861,10798,10862,10863,10799,10861,10800,10864,10862,10901,10831,10863,10866,10867,10801,10835,10867,10904,10835,10880,10814,10871,10869,10836,10905,10804,10870,10851,10870,10821,10871,10804,10906,10839,10805,10907,10805,10872,10907,10908,10872,10837,10838,10869,10909,10838,10909,10873,10837,10873,10910,10839,10911,10874,10840,10874,10912,10913,10875,10840,10914,10808,10875,10842,10808,10914,10876,10841,10915,10809,10876,10877,10878,10811,10877,10841,10842,10915,10916,10843,10878,10879,10843,10917,10852,10812,10879,10880,10881,10844,10815,10881,10882,10884,10845,10882,10883,10846,10918,10885,10817,10884,10885,10918,10846,10888,10818,10886,10886,10819,10887,10883,10887,10847,10889,10848,10888,10890,10820,10889,10919,10849,10890,10849,10919,10850,10851,10850,10920,10853,10852,10921,10853,10921,10891,10857,10858,10899,10829,10899,10927,10927,10900,10829,10928,10859,10900,10858,10831,10901,10862,10930,10861,10863,10861,10931,10864, +10932,10862,10901,10863,10933,10880,10835,10904,10871,10939,10869,10905,10906,10804,10905,10870,10940,10941,10870,10851,10871,10906,10942,10839,10907,10943,10944,10907,10872,10945,10872,10908,10908,10837,10910,10869,10939,10909,10909,10910,10873,10911,10839,10943,10911,10946,10874,10946,10912,10874,10840,10912,10913,10875,10913,10947,10947,10914,10875,10915,10842,10914,10915,10948,10876,10878,10877,10876,10916,10917,10843,10949,10916,10878,10921,10879,10917,10852,10879,10921,10883,10918,10953,10885,10884,10954,10885,10955,10918,10886,10956,10888,10887,10957,10886,10883,10953,10887,10958,10889,10888,10959,10890,10889,10919,10890,10960,10920,10850,10919,10920,10941,10851,10961,10891,10921,10970,10899,10858,10970,10927,10899,10900,10927,10928,10901,10970,10858,10930,10862,10932,10861,10930,10972,10861,10972,10931,10933,10863,10931,10974,10901,10933,10871,10981,10939,10942,10906,10905,10870,10941,10940,10982,10905,10940,10981,10871,10942,10983,10943,10907,10944,10983,10907,10945,10944,10872,10908,10984,10945,10908,10910,10985,10986,10909,10939,10987,10910,10909,10911,10943,10988,10911,10988,10946,10989,10912,10946,10913,10912,10989,10989,10947,10913,10947,10990,10914,10915,10914,10990,10915,10990,10948,10991,10876,10948,10876,10992,10878,10916,10993,10917,10993,10916,10949,10878,10992,10949,10921,10917,10993,10996,10953,10918,10954,10955,10885,10996,10918,10955,10886,10957,10956,10958,10888,10956,10887,10998,10957,10998,10887,10953,10889,10958,10959,10960,10890,10959,10999,10919,10960,10999,10920,10919,10920,11000,10941,10961,10921,10993,10927,10970,11009,10928,10927,11010,11012,10970,10901,10930,10932,11013,11014,10972,10930,10931,10972,11014,10931,11015,10933,10974,11012,10901,11018,10974,10933,11025,10939,10981,10982,10942,10905,10941,11026,10940,11027,10982,10940,11028,10981,10942,10943,10983,11029,10983,10944,11030,11030,10944,10945,10984,10908,10985,11030,10945,10984,10985,10910,11031,11032,10909,10986,11025,10986,10939,10987,11031,10910,10987,10909,11032,10943,11029,10988,10946,10988,11029,11033,10989,10946,10989, +11034,10947,10990,10947,11035,10948,10990,11036,10876,10991,10992,10991,10948,11037,10992,10991,10949,10998,10953,10996,11043,10956,10957,10956,11044,10958,11043,10957,10998,10958,11045,10959,11046,10960,10959,11047,10999,10960,11000,10920,10999,10941,11000,11026,10970,11012,11009,11009,11010,10927,10928,11010,11057,10932,11017,11013,10930,11013,11058,11014,10930,11058,10931,11014,11015,10933,11015,11059,11062,11012,10974,11062,10974,11018,11018,10933,11059,10981,11028,11025,11028,10942,10982,11026,11027,10940,10982,11027,11068,11069,11029,10983,10983,11030,11070,10984,10985,11071,10984,11072,11030,10985,11031,11071,4392,4375,4407,10986,11025,11073,11074,11031,10987,4355,4375,4340,11033,10946,11029,11033,11075,10989,10989,11075,11034,10947,11034,11035,11035,11036,10990,10948,11036,11037,11037,11076,10991,10991,11076,10949,11082,10998,10996,10956,11043,11044,10958,11044,11045,11043,10998,11082,10959,11045,11085,11046,11047,10960,11046,10959,11085,11086,10999,11047,10999,11087,11000,11088,11026,11000,11009,11012,11062,11009,11099,11010,11100,11057,11010,11013,11017,11101,11013,11102,11058,11014,11058,11102,11103,11015,11014,11059,11015,11103,11062,11018,11106,11106,11018,11059,11025,11028,11114,11115,11028,10982,11068,11027,11026,10982,11068,11115,11116,11029,11069,11069,10983,11070,11117,11070,11030,10984,11071,11072,11118,11030,11072,11119,11071,11031,4392,4340,4375,4428,4392,4407,4473,4455,4428,11074,11120,11031,4337,4355,4301,4301,4355,4340,11116,11033,11029,11121,11075,11033,11034,11075,11122,11034,11122,11035,11035,11123,11036,11037,11036,11124,11076,11037,11125,11076,11077,10949,11044,11043,11132,11045,11044,11133,11134,11043,11082,11135,11085,11045,11136,11047,11046,11137,11046,11085,10999,11086,11087,11138,11086,11047,11088,11000,11087,11088,11068,11026,11062,11149,11009,11149,11099,11009,11099,11100,11010,11105,11101,11017,11151,11013,11101,11013,11151,11102,11103,11014,11102,11059,11103,11152,11062,11106,11155,11156,11106,11059,11163,11114,11028,11028,11115,11163,11164,11115,11068,11116,11069,11070,11165, +11070,11117,11117,11030,11118,11071,11166,11072,11167,11118,11072,11119,11166,11071,11119,11031,11120,4376,4340,4392,4394,4392,4428,4428,4455,4438,4356,4337,4325,4337,4301,4325,4301,4340,4328,11033,11116,11168,11121,11122,11075,11033,11169,11121,11170,11035,11122,11035,11171,11123,11124,11036,11123,11124,11172,11037,11125,11037,11173,11077,11076,11125,11043,11134,11132,11132,11182,11044,11133,11044,11182,11133,11183,11045,11137,11085,11135,11135,11045,11183,11138,11047,11136,11046,11137,11136,11138,11087,11086,11088,11087,11184,11088,11185,11068,11155,11149,11062,11194,11099,11149,11100,11099,11194,11196,11101,11105,11196,11151,11101,11197,11102,11151,11103,11102,11197,11197,11152,11103,11156,11059,11152,11155,11106,11199,11200,11106,11156,4438,4455,4474,11115,11209,11163,11209,11115,11164,11164,11068,11185,11168,11116,11070,11210,11070,11165,11165,11117,11211,11118,11211,11117,11167,11072,11166,11167,11212,11118,11166,11119,11213,11214,11119,11120,4376,4342,4340,4394,4376,4392,4394,4428,4438,11120,11261,11214,4301,4300,4325,4340,4342,4328,4306,4301,4328,11033,11168,11169,11215,11122,11121,11169,11216,11121,11171,11035,11170,11215,11170,11122,11171,11217,11123,11123,11218,11124,11124,11218,11172,11173,11037,11172,11077,11125,11173,11132,11134,11228,11182,11132,11229,11133,11182,11183,11230,11137,11135,11135,11183,11231,11138,11136,11230,11230,11136,11137,11087,11138,11184,11184,11232,11088,11185,11088,11232,11155,11240,11149,11240,11194,11149,11241,11100,11194,11196,11105,11154,11151,11196,11242,11151,11242,11197,11197,11243,11152,11152,11244,11156,11106,11247,11199,11248,11155,11199,11106,11200,11247,11200,11156,11244,4474,4475,4438,4474,4507,4475,4507,4547,4517,11257,11164,11185,11210,11168,11070,11210,11165,11258,11211,11259,11165,11118,11212,11211,11167,11166,11260,11260,11212,11167,11119,11214,11213,11260,11166,11213,4362,4342,4376,4362,4376,4394,4394,4438,4408,4325,4300,4327,4288,4300,4301,4342,4316,4328,4279,4301,4306,4306,4328,4316,11258,11169,11168,11216,11215,11121,11216,11169,11262,11263,11171,11170,11170, +11215,11263,11171,11264,11217,11123,11217,11218,11265,11172,11218,11220,11173,11172,11077,11173,11220,11273,11132,11228,11273,11229,11132,11274,11182,11229,11274,11183,11182,11230,11135,11275,11276,11231,11183,11231,11275,11135,11138,11230,11277,11184,11138,11278,11184,11279,11232,11257,11185,11232,11248,11240,11155,11240,11291,11194,11194,11292,11241,11196,11154,11246,11293,11242,11196,11197,11242,11243,11152,11243,11294,11152,11294,11244,11299,11199,11247,11248,11199,11299,11200,11300,11247,11200,11244,11300,4438,4475,4439,4507,4491,4475,4556,4517,4547,4507,4517,4491,11168,11210,11258,11258,11165,11259,11310,11259,11211,11310,11211,11212,11260,11311,11212,4327,4358,4374,11213,11312,11260,4331,4342,4362,4362,4394,4360,4439,4408,4438,4360,4394,4408,4327,4300,4313,4300,4288,4278,4279,4288,4301,4331,4316,4342,4306,4283,4279,4306,4316,4283,11258,11262,11169,11313,11215,11216,11314,11216,11262,11171,11263,11264,11315,11263,11215,11316,11217,11264,11217,11265,11218,11317,11172,11265,11220,11172,11318,11273,11329,11229,11274,11229,11329,11276,11183,11274,11230,11275,11277,11276,11330,11231,11231,11331,11275,11278,11138,11277,11184,11278,11279,11279,11332,11232,11257,11232,11332,11341,11240,11248,11291,11240,11342,11292,11194,11291,11292,11343,11241,11196,11246,11297,11293,11243,11242,11297,11293,11196,11293,11294,11243,11294,11344,11244,11348,11299,11247,11341,11248,11299,11348,11247,11300,11349,11300,11244,4439,4475,4456,4456,4475,4491,4518,4517,4556,4517,4482,4491,11258,11259,11360,11310,11361,11259,11310,11212,11361,11312,11311,11260,11311,11361,11212,4327,4339,4358,4391,4374,4358,11312,11213,11362,4331,4362,4361,4361,4362,4360,4439,4409,4408,4360,4408,4393,4300,4278,4313,4313,4339,4327,4260,4278,4288,4260,4288,4279,4316,4331,4307,4279,4283,4272,4283,4316,4307,11258,11360,11262,11215,11313,11315,11363,11313,11216,11314,11363,11216,11364,11314,11262,11315,11264,11263,11365,11217,11316,11264,11366,11316,11265,11217,11365,11318,11172,11317,14924,14907,14860,11273,11374,11329,11329,11276,11274,11275,11375,11277,11376,11330, +11276,11330,11331,11231,11275,11331,11377,11277,11375,11278,11378,11279,11278,11332,11279,11378,11257,11332,11379,11240,11341,11390,11390,11342,11240,11292,11291,11342,11292,11391,11343,11297,11246,11346,11297,11392,11293,11293,11392,11294,11294,11392,11344,11344,11349,11244,11396,11299,11348,11397,11341,11299,11396,11348,11300,11396,11300,11349,4456,4429,4439,4482,4456,4491,4518,4482,4517,4518,4556,4555,11360,11259,11406,11361,11406,11259,11312,11407,11311,11311,11408,11361,4373,4358,4339,4373,4391,4358,11312,11362,11409,4330,4331,4361,4361,4360,4330,4409,4439,4429,4393,4408,4409,4360,4393,4377,4326,4313,4278,4313,4338,4339,4262,4278,4260,4269,4260,4279,4331,4330,4307,4272,4283,4263,4279,4272,4269,4307,4292,4283,11364,11262,11360,11315,11313,11363,15183,15196,15170,15141,15156,15170,11264,11315,11366,11316,11410,11365,11411,11316,11366,11365,11410,11265,14924,14860,14940,14890,14860,14907,11424,11329,11374,11276,11329,11376,11275,11377,11375,11425,11330,11376,11426,11331,11330,11377,11331,11427,11378,11278,11375,11332,11378,11428,11332,11429,11379,4555,4556,4593,11436,11390,11341,11342,11390,11437,11292,11342,11391,2710,2696,2666,11395,11297,11346,11438,11392,11297,11392,11438,11344,11344,11439,11349,11397,11299,11396,11397,11443,11341,11396,11349,11444,4445,4429,4456,4456,4482,4445,4482,4518,4498,4518,4555,4516,11360,11406,11454,11408,11406,11361,11455,11407,11312,11408,11311,11407,4339,4371,4373,11312,11409,11456,4343,4330,4360,4409,4429,4363,4409,4377,4393,4343,4360,4377,4313,4326,4338,15247,15259,15237,4339,4338,4371,15272,15237,15259,4252,4262,4260,4269,4255,4260,4330,4317,4307,4292,4263,4283,4255,4272,4263,4255,4269,4272,4307,4317,4292,11364,11360,11454,11315,11363,11457,11532,11492,11363,15183,15170,15156,15141,15126,15156,11457,11366,11315,11410,11316,11411,14921,14969,14956,14860,14890,14874,11424,11376,11329,11424,11374,11466,11467,11375,11377,11425,11426,11330,11425,11376,11468,11331,11426,11469,11427,11331,11469,11467,11377,11427,11467,11378,11375,11378,11467,11428,11429,11332,11428,11470,11379,11429, +4553,4555,4593,11436,11473,11390,11436,11341,11443,2731,2756,2732,11474,11342,11437,2708,2696,2720,2696,2680,2666,11438,11297,11395,11395,11346,11442,11344,11438,11439,11439,11444,11349,11397,11396,11478,11443,11397,11479,11396,11444,11478,4445,4415,4429,4482,4498,4445,4498,4518,4516,4555,4553,4516,11408,11454,11406,11455,11490,11407,11456,11455,11312,11408,11407,11491,4373,4371,4390,4373,4390,4427,4330,4343,4317,4429,4415,4363,4409,4363,4377,4378,4343,4377,4357,4338,4326,15247,15237,15211,4357,4371,4338,4256,4271,4262,4256,4262,4252,4252,4260,4255,4292,4284,4263,4253,4255,4263,4292,4317,4295,15107,15141,15140,11492,11457,11363,11532,11558,11492,15183,15156,15157,15126,15141,15107,15126,15157,15156,11366,11457,11493,14921,14872,14890,14921,14956,14922,14874,14890,14872,14830,14860,14874,11376,11424,11468,11468,11424,11466,11505,11426,11425,11506,11425,11468,11507,11469,11426,11469,11508,11427,11467,11427,11509,11429,11428,11467,4553,4593,4615,11470,11429,11510,11512,11473,11436,11473,11513,11390,11514,11436,11443,2731,2732,2709,2708,2731,2709,2708,2680,2696,2631,2666,2680,11438,11395,11477,11395,11442,11477,11438,11477,11439,11444,11439,11515,11520,11397,11478,11520,11479,11397,11514,11443,11479,11521,11478,11444,4446,4415,4445,4445,4498,4481,4498,4516,4481,4516,4553,4515,11491,11454,11408,15128,15171,15158,15128,15108,15144,15158,15171,15185,4357,4390,4371,4426,4427,4390,4343,4344,4317,4363,4415,4399,4378,4377,4363,4344,4343,4378,4326,4372,4357,15227,15211,15237,4271,4256,4281,4249,4256,4252,4252,4255,4250,4292,4295,4284,4265,4263,4284,4250,4255,4253,4265,4253,4263,4295,4317,4332,15108,15107,15140,11492,11493,11457,11532,11584,11558,11558,11585,11492,15126,15107,15088,15126,15142,15157,14921,14922,14872,14922,14956,14957,14874,14872,14830,11506,11468,11466,11505,11507,11426,11538,11505,11425,11506,11538,11425,11507,11539,11469,11508,11469,11539,11508,11509,11427,11429,11467,11509,4594,4553,4615,11429,11509,11510,11540,11470,11510,2758,2732,2773,11512,11436,11514,2719,2709,2732,2708,2709,2679,2680,2708,2679,2679,2631, +2680,11519,11477,11442,11515,11439,11477,11515,11541,11444,11521,11520,11478,11546,11479,11520,11514,11479,11547,11521,11444,11548,4446,4416,4415,4481,4446,4445,4481,4516,4515,4515,4553,4554,15128,15158,15143,15089,15108,15128,15158,15185,15184,4357,4406,4390,4406,4426,4390,4344,4332,4317,4415,4416,4399,4383,4363,4399,4378,4363,4344,15211,15200,15218,15212,15211,15227,4256,4270,4281,4249,4261,4256,4252,4250,4249,4274,4284,4295,4274,4265,4284,4251,4250,4253,4265,4257,4253,4332,4320,4295,15070,15107,15108,14989,14957,14956,11584,11609,11558,11558,11609,11585,14990,14989,15017,15107,15070,15088,15088,15142,15126,14922,14905,14872,14922,14957,14938,14830,14872,14859,11505,11538,11507,11506,11564,11538,11565,11539,11507,11566,11508,11539,11509,11508,11510,4554,4553,4594,11567,11540,11510,2744,2732,2758,11547,11512,11514,2719,2695,2709,2719,2732,2744,2679,2709,2695,2631,2679,2665,11519,11515,11477,11442,11545,11519,11519,11541,11515,11548,11444,11541,11570,11520,11521,11546,11547,11479,11546,11520,11570,11521,11548,11571,4446,4462,4416,4481,4483,4446,4481,4515,4483,4515,4554,4519,15158,15127,15143,15143,15089,15128,15070,15108,15089,15158,15184,15168,4406,4437,4426,4332,4344,4363,4383,4399,4416,4363,4383,4348,15211,15193,15200,15212,15193,15211,15227,15219,15212,4270,4256,4261,4270,4290,4281,4249,4268,4261,4249,4250,4251,4308,4274,4295,4274,4257,4265,4257,4251,4253,4332,4348,4320,4308,4295,4320,14957,14989,14990,11628,11585,11609,15002,14990,15017,15070,15035,15088,14905,14922,14938,14873,14872,14905,14970,14938,14957,14859,14872,14873,14830,14859,14842,11538,11565,11507,11538,11564,11565,11539,11565,11590,11508,11566,11591,11566,11539,11592,11510,11508,11591,4594,4595,4554,4594,4679,4652,11510,11591,11567,2744,2758,2772,2784,2772,2758,2721,2695,2719,2744,2721,2719,2679,2695,2665,2632,2631,2665,11519,11545,11569,11541,11519,11593,11548,11541,11594,11570,11521,11571,11596,11547,11546,11546,11570,11597,11598,11571,11548,4483,4462,4446,4447,4416,4462,4483,4515,4519,4575,4519,4554,15158,15137,15127,15127,15089,15143,15089,15052, +15070,15158,15168,15137,15168,15200,15193,4332,4363,4348,4417,4383,4416,4383,4366,4348,15212,15201,15193,4303,4281,4290,15219,15201,15212,4270,4261,4282,4270,4282,4290,4249,4259,4268,4280,4261,4268,4249,4251,4254,4274,4308,4293,4273,4257,4274,4264,4251,4257,4320,4348,4366,4333,4308,4320,14957,14990,14970,11645,11585,11628,15002,14970,14990,15035,15002,15017,15070,15034,15035,14905,14938,14939,14905,14906,14873,14971,14938,14970,14859,14873,14842,14830,14842,14821,11615,11565,11564,11565,11615,11590,11539,11590,11592,11566,11616,11591,11616,11566,11592,4594,4632,4595,4595,4575,4554,4679,4699,4652,4652,4632,4594,11616,11567,11591,2744,2772,2757,11596,11619,11547,2699,2695,2721,2744,2757,2721,2682,2665,2695,2632,2665,2650,11519,11569,11593,11541,11593,11617,11617,11594,11541,11598,11548,11594,11570,11571,11597,11546,11597,11596,11620,11571,11598,4483,4499,4462,4447,4417,4416,4462,4463,4447,4483,4519,4499,4519,4575,4557,15127,15137,15105,15127,15105,15089,15052,15089,15105,15034,15070,15052,15137,15168,15153,15168,15193,15179,4400,4383,4417,4383,4349,4366,15193,15201,15179,4290,4315,4303,15219,15228,15201,4291,4282,4261,4305,4290,4282,4254,4259,4249,4277,4268,4259,4261,4280,4289,4280,4268,4277,4254,4251,4258,4308,4318,4293,4274,4293,4273,4264,4257,4273,4258,4251,4264,4349,4320,4366,4308,4333,4318,4349,4333,4320,15018,14970,15002,15002,15035,15034,14939,14938,14971,14905,14939,14906,14889,14873,14906,15001,14971,14970,14842,14873,14889,14821,14842,14840,11614,11615,11564,11590,11615,11592,11592,11631,11616,4595,4632,4596,4595,4596,4575,4722,4652,4699,4652,4678,4632,2757,2772,2783,2794,2783,2772,2682,2695,2699,2699,2721,2723,2721,2757,2745,2650,2665,2682,11632,11617,11593,11594,11617,11632,11633,11598,11594,11571,11620,11597,11596,11597,11636,11598,11637,11620,4462,4499,4463,4447,4432,4417,4447,4463,4432,4519,4535,4499,4596,4557,4575,4519,4557,4535,15105,15137,15125,15052,15105,15086,15034,15052,15018,15153,15168,15179,15125,15137,15153,4400,4349,4383,4400,4417,4432,15202,15179,15201,15248,15228,15260,15220,15201,15228, +4304,4282,4291,4261,4289,4291,4304,4305,4282,4259,4254,4267,4277,4259,4267,4289,4280,4302,4277,4287,4280,4266,4254,4258,4293,4318,4294,4294,4273,4293,4264,4273,4285,4266,4258,4264,4333,4345,4318,4345,4333,4349,15018,15001,14970,15002,15034,15018,14939,14971,14972,14923,14906,14939,14923,14889,14906,14972,14971,15001,14886,14842,14889,14856,14840,14842,14821,14840,14828,11615,11614,11646,11631,11592,11615,11647,11616,11631,4632,4633,4596,4652,4722,4697,4652,4697,4678,4678,4698,4632,2774,2757,2783,2794,2805,2783,2682,2699,2668,2723,2721,2745,2723,2711,2699,2774,2745,2757,2650,2682,2668,11635,11632,11593,11594,11632,11648,11633,11649,11598,11633,11594,11648,15121,15084,15099,2794,2816,2805,11598,11649,11637,15048,15064,15084,4500,4463,4499,4463,4464,4432,4500,4499,4535,4596,4576,4557,4557,4576,4535,15105,15125,15086,15052,15086,15051,15052,15051,15018,15154,15153,15179,15125,15153,15154,4349,4400,4395,4440,4400,4432,15202,15180,15179,15201,15220,15202,15228,15248,15229,15228,15229,15220,4304,4291,4314,4291,4289,4314,4304,4314,4305,4276,4267,4254,4277,4267,4287,4287,4302,4280,4289,4302,4314,4266,4275,4254,4319,4294,4318,4294,4285,4273,4264,4285,4266,4318,4345,4364,4349,4379,4345,15001,15018,15033,14972,14958,14939,14939,14958,14923,14923,14902,14889,14972,15001,15019,14842,14886,14856,14886,14889,14902,14840,14856,14819,14828,14840,14819,13758,13765,13772,11646,11662,11615,11631,11615,11662,11647,11631,11663,12556,12559,12558,4596,4633,4616,4697,4722,4744,4698,4678,4697,2795,2774,2783,2806,2783,2805,2699,2711,2668,2723,2745,2746,2734,2711,2723,2746,2745,2774,2634,2650,2668,11635,11648,11632,11649,11633,11664,11633,11648,11665,15099,15084,15064,2806,2805,2816,15065,15030,15048,15014,15064,15048,4463,4500,4464,4432,4464,4440,4536,4500,4535,4596,4616,4576,4576,4577,4535,15125,15087,15086,15051,15086,15087,15033,15018,15051,15180,15154,15179,15154,15138,15125,4395,4400,4410,4379,4349,4395,4410,4400,4440,15202,15194,15180,15202,15220,15203,15229,15248,15261,15229,15203,15220,4305,4314,4341,4267,4276,4287,4276,4254,4275,4287, +4299,4302,4302,4329,4314,4286,4275,4266,4296,4294,4319,4319,4318,4346,4294,4296,4285,4285,4296,4266,4380,4364,4345,4318,4364,4346,4345,4379,4396,15001,15033,15019,14972,14967,14958,14958,14935,14923,14935,14902,14923,15015,14972,15019,14856,14886,14902,14856,14857,14819,13777,13772,13765,13772,13777,13781,11663,11631,11662,4764,4744,4722,12556,12558,12553,4653,4616,4633,12551,12555,12557,12555,12553,12558,2776,2774,2795,2795,2783,2806,2668,2711,2698,2734,2723,2746,2733,2711,2734,2776,2746,2774,2667,2634,2668,11648,11635,11677,11664,11633,11665,11664,11678,11649,11665,11648,11679,15099,15064,15060,15099,15060,15119,15030,15065,15031,15014,15048,15030,15060,15064,15014,4500,4520,4464,4457,4440,4464,4500,4536,4520,4577,4536,4535,4616,4617,4576,4577,4576,4617,15106,15087,15125,15087,15069,15051,15051,15069,15033,15154,15180,15169,15138,15154,15169,15125,15138,15106,4395,4410,4379,4410,4440,4457,15202,15203,15194,15194,15169,15180,15261,15249,15229,15230,15203,15229,4341,4314,4329,4276,4299,4287,4276,4275,4298,4324,4302,4299,4324,4329,4302,4286,4297,4275,4286,4266,4296,4319,4322,4296,4365,4319,4346,4380,4381,4364,4396,4380,4345,4381,4346,4364,4410,4396,4379,15019,15033,15053,14968,14967,14972,14958,14967,14936,14958,14936,14935,14902,14935,14903,15015,14988,14972,15049,15015,15019,14856,14902,14903,14856,14887,14857,14841,14819,14857,13777,13765,13776,13777,13776,13781,13790,13781,13783,13790,13783,13789,12554,12556,12553,4616,4653,4617,12555,12551,12553,13791,13789,13786,2776,2795,2807,2806,2817,2795,2722,2698,2711,2667,2668,2698,2746,2761,2734,2733,2722,2711,2760,2733,2734,2761,2746,2776,11677,11635,11669,11648,11677,11679,14999,14986,14966,15000,15031,14999,11687,11665,11679,2828,2817,2806,14998,15030,15031,14998,15014,15030,15014,15043,15060,4508,4464,4520,4492,4457,4464,4536,4558,4520,4577,4578,4536,4577,4617,4618,15087,15106,15069,15069,15053,15033,15169,15139,15138,15138,15139,15106,4441,4410,4457,15182,15194,15203,15194,15182,15169,4341,4329,4359,15249,15230,15229,15230,15221,15203,4299,4276,4312,4297,4298,4275, +4276,4298,4311,4299,4323,4324,4324,4354,4329,4286,4309,4297,4286,4296,4310,4319,4347,4322,4322,4310,4296,4319,4365,4347,4365,4346,4381,4380,4411,4381,4396,4412,4380,4410,4430,4396,15019,15053,15067,14937,14967,14968,14988,14968,14972,14937,14936,14967,14936,14903,14935,15015,15016,14988,15016,15015,15049,15067,15049,15019,14903,14887,14856,14871,14857,14887,14819,14841,14822,14871,14841,14857,13765,13770,13776,13776,13783,13781,13789,13783,13786,12554,12553,12548,4653,4680,4617,12548,12553,12551,12548,12551,12543,2795,2818,2807,2776,2807,2819,2817,2818,2795,2698,2722,2713,2684,2667,2698,2760,2734,2761,2737,2722,2733,2760,2759,2733,2788,2761,2776,11689,11677,11669,11697,11679,11677,14986,14918,14966,14966,15000,14999,15000,14998,15031,14918,14934,14884,15060,15043,15080,15014,14998,14985,15043,15014,15011,4508,4492,4464,4508,4520,4531,4492,4476,4457,4578,4558,4536,4558,4570,4520,4578,4577,4618,4617,4654,4618,15106,15109,15069,15069,15090,15053,15169,15155,15139,15139,15109,15106,4441,4430,4410,4441,4457,4476,15195,15182,15203,15182,15155,15169,4359,4329,4354,4359,4389,4405,15230,15238,15221,15203,15221,15210,4311,4312,4276,4299,4312,4323,4321,4298,4297,4321,4311,4298,4324,4323,4353,4324,4353,4354,4286,4310,4309,4309,4321,4297,4322,4347,4334,4310,4322,4309,4347,4365,4382,4397,4365,4381,4380,4412,4411,4381,4411,4397,4430,4412,4396,15091,15067,15053,14937,14968,14954,14988,14954,14968,14904,14936,14937,14903,14936,14904,14988,15016,14991,15066,15016,15049,15067,15066,15049,14887,14903,14904,14871,14887,14904,14822,14841,14858,14841,14871,14858,13770,13780,13776,13776,13780,13783,13780,13786,13783,12548,12552,12554,4617,4680,4654,12548,12543,12545,15043,15042,15079,15118,15133,15079,15150,15164,15133,2737,2713,2722,2698,2713,2684,2652,2667,2684,2760,2761,2787,2737,2733,2759,2785,2759,2760,2788,2787,2761,14900,14854,14884,14966,14918,14952,15000,14966,14987,15000,14987,14998,14884,14885,14918,14985,14998,14952,15011,15014,14985,15043,15011,15042,4508,4531,4492,4531,4520,4570,4496,4476,4492,4578,4597,4558,4558,4598,4570, +4578,4618,4597,4618,4654,4655,15090,15069,15109,15091,15053,15090,15155,15109,15139,4412,4430,4441,4458,4441,4476,15195,15155,15182,15195,15203,15210,4359,4354,4389,4425,4405,4389,15221,15238,15250,15210,15221,15231,4335,4312,4311,4336,4323,4312,4321,4335,4311,4323,4352,4353,4388,4354,4353,4321,4309,4334,4367,4334,4347,4322,4334,4309,4397,4382,4365,4347,4382,4398,4411,4412,4442,4397,4411,4413,15066,15067,15091,14920,14937,14954,14988,14955,14954,14904,14937,14920,15032,14991,15016,14988,14991,14955,15016,15066,15050,14871,14904,14888,14858,14844,14822,14888,14858,14871,12546,12549,12539,12539,12543,12546,12548,12545,12552,4700,4654,4680,12543,12541,12545,15042,15078,15079,15118,15150,15133,15118,15079,15078,2737,2738,2713,2727,2684,2713,2683,2652,2684,2785,2760,2787,2737,2759,2775,2786,2759,2785,15163,15176,15150,14854,14855,14884,14918,14919,14952,14952,14987,14966,14998,14987,14952,14885,14884,14855,14885,14919,14918,14985,14952,14953,15011,14985,14982,15011,15028,15042,4531,4496,4492,4571,4531,4570,4496,4458,4476,4597,4598,4558,4598,4609,4570,4618,4634,4597,4654,4701,4655,4655,4634,4618,15090,15109,15129,15129,15091,15090,15155,15159,15109,4412,4441,4458,15195,15181,15155,15210,15192,15195,4388,4389,4354,4425,4389,4424,4425,4454,4472,4530,4545,4472,4530,4546,4569,4335,4336,4312,4336,4352,4323,4321,4351,4335,4387,4353,4352,4353,4387,4388,4350,4321,4334,4350,4334,4367,4367,4347,4398,4382,4397,4413,4414,4398,4382,4458,4442,4412,4459,4411,4442,4413,4411,4443,15066,15091,15085,14920,14954,14955,14904,14920,14888,15032,15020,14991,15050,15032,15016,14991,14973,14955,15050,15066,15085,14875,14844,14858,14875,14858,14888,12539,12541,12543,12545,12550,12552,4654,4700,4701,12541,12544,12545,15042,15058,15078,15118,15163,15150,2847,2830,2840,2737,2766,2738,2727,2713,2738,2727,2712,2684,2683,2651,2652,2683,2684,2712,2785,2787,2809,2786,2775,2759,2737,2775,2766,2808,2786,2785,2809,2787,2822,14855,14854,14827,14953,14952,14919,14855,14870,14885,14919,14885,14901,14985,14953,14982,15011,14982,14996,14996,15028,15011,15042,15028, +15058,4531,4532,4496,4531,4571,4532,4609,4571,4570,4496,4493,4458,4598,4597,4635,4598,4635,4609,4634,4656,4597,4701,4681,4655,4681,4634,4655,15145,15129,15109,15091,15129,15124,15159,15155,15181,15145,15109,15159,15195,15192,15181,15192,15210,15199,4389,4388,4424,4425,4424,4454,4472,4454,4490,4530,4472,4506,4506,4546,4530,4369,4336,4335,4352,4336,4370,4350,4351,4321,4368,4335,4351,4386,4387,4352,4388,4387,4423,4350,4367,4351,4367,4398,4401,4382,4413,4414,4431,4398,4414,4458,4477,4442,4459,4443,4411,4459,4442,4478,4413,4443,4460,15124,15085,15091,14925,14920,14955,14888,14920,14925,15032,15036,15020,14991,15020,15003,15068,15032,15050,14991,15003,14973,14941,14955,14973,15050,15085,15068,14875,14861,14844,14875,14888,14908,12540,12541,12539,12544,12550,12545,4700,4745,4701,12541,12542,12544,15058,15098,15078,2830,2822,2840,2767,2738,2766,2738,2751,2727,2727,2736,2712,2683,2671,2651,2712,2701,2683,2821,2785,2809,2775,2786,2789,2789,2766,2775,2786,2808,2820,2808,2785,2821,2830,2809,2822,14855,14827,14839,14919,14916,14953,14839,14870,14855,14901,14885,14870,14916,14919,14901,14949,14982,14953,14949,14996,14982,14996,15010,15028,15028,15027,15058,4493,4496,4532,4532,4571,4587,4609,4626,4571,4477,4458,4493,4597,4656,4635,4656,4609,4635,4656,4634,4681,4681,4701,4723,15124,15129,15145,15159,15181,15167,15124,15145,15159,15167,15181,15192,15199,15177,15192,4388,4423,4424,4454,4424,4453,4453,4490,4454,4472,4490,4506,4506,4568,4546,4369,4370,4336,4335,4384,4369,4352,4370,4386,4368,4384,4335,4385,4368,4351,4386,4422,4387,4422,4423,4387,4351,4367,4401,4420,4401,4398,4413,4444,4414,4431,4420,4398,4444,4431,4414,4477,4494,4442,4459,4479,4443,4442,4494,4478,4478,4495,4459,4443,4479,4460,4413,4460,4444,15085,15124,15123,14925,14955,14941,14888,14925,14908,15036,15032,15071,15003,15020,15036,15068,15071,15032,15021,14973,15003,9721,9728,9714,15104,15068,15085,9696,9695,9707,9707,9712,9701,12542,12541,12540,4765,4745,4700,4745,4746,4701,12547,12544,12542,2867,2858,2830,2767,2751,2738,2789,2767,2766,2736,2727,2751,2712,2736,2726,2683, +2701,2671,2712,2726,2701,2821,2809,2831,2786,2810,2789,15254,15277,15266,15310,15320,15277,2808,2821,2829,2809,2830,2831,14839,14827,14818,14949,14953,14916,14839,14853,14870,14883,14901,14870,14883,14916,14901,14996,14949,15010,14995,15028,15010,15027,15028,14995,15027,15059,15058,4532,4533,4493,4571,4610,4587,4587,4572,4532,4645,4626,4609,4571,4626,4610,4493,4509,4477,4656,4645,4609,4702,4656,4681,4746,4723,4701,4681,4723,4702,15136,15159,15167,15124,15159,15136,15177,15167,15192,15199,15190,15177,4423,4453,4424,4490,4453,4489,4529,4506,4490,15236,15225,15217,15217,15208,15199,4369,4403,4370,4384,4403,4369,4404,4386,4370,4368,4402,4384,4402,4368,4385,4385,4351,4401,4422,4386,4421,4422,4452,4423,4420,4385,4401,4420,4431,4434,4431,4444,4461,4494,4477,4510,4479,4459,4495,4478,4494,4511,4478,4512,4495,4460,4479,4497,4460,4480,4444,15136,15123,15124,15085,15123,15104,14941,14908,14925,15036,15071,15092,15037,15003,15036,15071,15068,15104,9723,9714,9728,15021,15003,15037,9721,9714,9712,9701,9696,9707,9712,9714,9701,4786,4745,4765,4746,4745,4787,16410,16411,16412,2846,2830,2858,2767,2778,2751,2797,2767,2789,2736,2751,2765,2726,2736,2750,2671,2701,2700,2735,2701,2726,2821,2831,2839,15310,15334,15345,15287,15277,15254,15266,15242,15254,15310,15277,15297,2839,2829,2821,15266,15255,15242,2830,2846,2831,14839,14818,14852,14933,14949,14916,14852,14853,14839,14883,14870,14853,14916,14883,14882,15010,14949,14995,15027,14995,15009,15041,15059,15027,4572,4533,4532,4509,4493,4533,4610,4627,4587,4611,4572,4587,4646,4626,4645,4646,4610,4626,4509,4510,4477,4656,4692,4645,4702,4692,4656,4746,4766,4723,4747,4702,4723,15136,15167,15151,15151,15167,15177,15190,15199,15208,15165,15177,15190,4423,4452,4453,4453,4452,4489,4489,4528,4490,15236,15257,15245,4544,4529,4490,15236,15245,15225,15225,15208,15217,4403,4404,4370,4403,4384,4418,4404,4421,4386,4418,4384,4402,4402,4385,4419,4421,4451,4422,4422,4471,4452,4420,4434,4385,4434,4431,4461,4480,4461,4444,4511,4494,4510,4479,4495,4513,4478,4511,4512,4534,4495,4512,4479,4513,4497,4497,4480,4460, +15136,15104,15123,15110,15092,15071,15072,15036,15092,15072,15037,15036,15071,15104,15122,9723,9713,9714,9723,9733,9722,9696,9701,9684,9714,9708,9701,4787,4745,4786,4746,4787,4766,16412,16414,16410,2846,2858,2868,16440,16441,16442,2765,2751,2778,16443,16442,16441,2765,2764,2736,2764,2750,2736,2735,2726,2750,2700,2701,2725,2735,2725,2701,2839,2831,2848,15334,15310,15321,15277,15287,15297,15287,15254,15276,15254,15242,15234,15310,15297,15321,2829,2839,2845,15215,15242,15255,2848,2831,2846,14852,14818,14837,14949,14933,14951,14933,14916,14882,14853,14852,14837,14853,14869,14883,14883,14851,14882,14981,14995,14949,14995,14981,15009,15041,15027,15009,15041,15076,15059,4588,4533,4572,4533,4510,4509,4627,4610,4647,4611,4587,4627,4611,4588,4572,4646,4645,4692,4646,4647,4610,4692,4702,4737,4766,4747,4723,4747,4737,4702,15104,15136,15151,15151,15177,15165,15208,15189,15190,15165,15190,15189,4452,4488,4489,4527,4528,4489,4490,4528,4544,4586,4529,4567,4544,4567,4529,15225,15245,15244,15225,15209,15208,4435,4404,4403,4418,4435,4403,4436,4421,4404,4418,4402,4419,4433,4419,4385,4436,4451,4421,4422,4451,4471,4471,4488,4452,4433,4385,4434,4467,4434,4461,4480,4467,4461,4511,4510,4533,4513,4495,4534,4548,4512,4511,4549,4534,4512,4497,4513,4514,4497,4514,4480,15112,15092,15110,15071,15122,15110,15072,15092,15112,15037,15072,15093,15122,15104,15135,9713,9723,9722,9713,9708,9714,9733,9724,9722,9701,9697,9684,9708,9697,9701,4810,4766,4787,16417,16414,16412,2846,2868,2848,11762,11760,11765,11759,11760,11761,11775,11770,11765,11759,11763,11767,11791,11797,11767,11812,11797,11804,2724,2700,2725,2749,2725,2735,2848,2845,2839,11770,11775,11780,15297,15287,15309,15253,15276,15254,15287,15276,15264,15215,15234,15242,15254,15234,15253,15319,15321,15297,2829,2845,2857,2829,2857,2866,14817,14837,14818,14933,14917,14951,14981,14949,14951,14933,14882,14917,14853,14837,14816,14869,14853,14816,14869,14851,14883,14882,14851,14868,15026,15009,14981,15041,15009,15057,15097,15076,15041,4588,4573,4533,4627,4647,4669,4628,4611,4627,4588,4611,4628,4693,4646, +4692,4693,4647,4646,4692,4737,4736,4766,4788,4747,4737,4747,4778,15104,15151,15135,15165,15135,15151,15191,15189,15208,15165,15189,15166,4488,4527,4489,4528,4527,4566,4544,4528,4567,15245,15269,15244,15225,15244,15226,15225,15226,15209,15191,15208,15209,4436,4404,4435,4418,4450,4435,4418,4419,4448,4449,4419,4433,4436,4470,4451,4470,4471,4451,4470,4488,4471,4433,4434,4467,4480,4514,4467,4573,4511,4533,4550,4513,4534,4548,4549,4512,4573,4548,4511,4549,4550,4534,4514,4513,4551,15146,15112,15110,15122,15147,15110,15072,15112,15111,15111,15093,15072,15135,15152,15122,9713,9722,9715,9713,9702,9708,9715,9722,9724,9697,9691,9684,9708,9702,9697,4810,4788,4766,4810,4787,4836,2848,2868,2865,11762,11761,11760,11762,11765,11770,11759,11761,11763,11771,11767,11763,11791,11804,11797,11791,11767,11783,2763,2735,2777,2700,2724,2688,2725,2747,2724,2747,2725,2749,2749,2735,2763,2848,2865,2845,11780,11772,11770,15287,15308,15309,15309,15319,15297,15276,15253,15265,15276,15265,15264,15308,15287,15264,15215,15224,15234,15241,15253,15234,15344,15321,15319,15174,15162,15186,15215,15186,15207,14837,14817,14816,14965,14951,14917,14981,14951,14965,14882,14899,14917,14851,14869,14816,14882,14868,14899,15040,15009,15026,15013,15026,14981,15040,15057,15009,15077,15041,15057,15116,15076,15097,15097,15041,15077,4588,4612,4573,4669,4647,4694,4669,4670,4627,4628,4627,4670,4588,4628,4612,4693,4692,4736,4694,4647,4693,4737,4778,4736,4788,4811,4747,4802,4778,4747,15165,15166,15135,15166,15189,15191,4543,4527,4488,4566,4527,4565,4566,4585,4528,4585,4567,4528,15244,15269,15270,15226,15244,15246,15209,15226,15214,15198,15191,15209,4435,4468,4436,4450,4418,4469,4435,4450,4468,4449,4448,4419,4418,4448,4465,4466,4449,4433,4470,4436,4468,4470,4504,4488,4485,4433,4467,4467,4514,4524,4550,4551,4513,4589,4549,4548,4573,4590,4548,4591,4550,4549,4514,4551,4552,15111,15112,15146,15147,15146,15110,15122,15152,15147,9729,9718,9724,15135,15166,15152,9702,9713,9715,9718,9715,9724,9691,9697,9702,4810,4837,4788,11762,11764,11761,11770,11772,11762,11766,11763,11761,11771, +11778,11767,11766,11771,11763,2777,2796,2779,11778,11783,11767,2796,2811,2779,2777,2779,2763,2724,2729,2688,2762,2724,2747,2739,2747,2749,2739,2749,2763,15174,15116,15162,11780,11786,11772,15333,15309,15308,15309,15333,15319,15253,15241,15265,15265,15241,15264,15215,15207,15224,15234,15224,15241,15344,15319,15343,15186,15162,15188,15207,15186,15188,14950,14965,14917,14984,14981,14965,14917,14899,14932,15047,15040,15026,15047,15026,15013,14984,15013,14981,15040,15074,15057,15095,15077,15057,15097,15117,15116,15097,15077,15117,4590,4573,4612,4694,4716,4669,4670,4669,4717,4670,4630,4628,4612,4628,4630,4738,4693,4736,4694,4693,4738,4736,4778,4779,4811,4788,4837,4802,4747,4811,4828,4778,4802,15166,15191,15178,4543,4565,4527,4543,4488,4540,16444,16445,16446,4566,4608,4585,15270,15246,15244,15226,15246,15233,15226,15233,15214,15198,15209,15214,15178,15191,15198,4469,4418,4465,4469,4486,4450,4468,4450,4487,4449,4484,4448,4484,4465,4448,4466,4484,4449,4466,4433,4485,4470,4468,4504,4540,4488,4504,4485,4467,4503,4524,4514,4552,4467,4524,4503,4551,4550,4552,4591,4549,4589,4589,4548,4613,4590,4613,4548,4592,4550,4591,15111,15146,15160,15147,15172,15146,15152,15173,15147,9730,9718,9729,15166,15178,15152,9715,9709,9702,9715,9718,9709,9702,9698,9691,4837,4810,4863,11762,11768,11764,11769,11761,11764,11762,11772,11768,11769,11766,11761,11771,11782,11778,11771,11766,11776,2811,2849,2841,11997,11998,11999,2752,2763,2779,2724,2748,2729,2729,2714,2688,2748,2724,2762,2739,2762,2747,2763,2752,2739,15162,15116,15132,11784,11772,11786,15333,15343,15319,15241,15243,15264,15224,15207,15216,15243,15241,15224,15344,15343,15368,15188,15162,15175,15188,15216,15207,14950,14984,14965,14917,14932,14950,15047,15075,15040,15013,15046,15047,15012,15013,14984,15075,15074,15040,15095,15057,15074,15117,15077,15095,15132,15116,15117,4630,4590,4612,4694,4739,4716,4716,4717,4669,4717,4672,4670,4670,4672,4630,4736,4779,4738,4694,4738,4739,4779,4778,4804,4811,4837,4852,4802,4811,4852,4828,4804,4778,4802,4851,4828,4565,4543,4542,4543,4540,4526,16446,16445,16447, +4608,4625,4585,15281,15246,15270,15246,15258,15233,15214,15233,15223,15206,15198,15214,15178,15198,15173,4501,4469,4465,4505,4486,4469,4450,4486,4487,4487,4504,4468,4465,4484,4501,4466,4502,4484,4466,4485,4502,4526,4540,4504,4523,4485,4503,4552,4574,4524,4524,4523,4503,4592,4552,4550,4589,4629,4591,4589,4613,4629,4613,4590,4631,4591,4629,4592,15146,15172,15160,9730,9729,9736,15147,15173,15172,15178,15173,15152,9725,9718,9730,9698,9702,9709,9718,9725,9709,4837,4863,4893,11768,11773,11764,11774,11769,11764,11773,11768,11772,11769,11777,11766,11771,11776,11782,11790,11778,11782,11766,11781,11776,2851,2841,2849,2823,2811,2841,2811,2799,2798,2780,2779,2798,2779,2780,2752,2728,2729,2748,2729,2728,2714,2739,2748,2762,15162,15132,15175,11773,11772,11784,15344,15383,15392,15333,15342,15343,15243,15268,15264,15235,15224,15216,15224,15235,15243,15342,15368,15343,15344,15368,15383,15188,15175,15187,5774,5790,5781,14950,14983,14984,14932,14964,14950,15096,15075,15047,15013,15012,15046,15083,15047,15046,14983,15012,14984,15074,15075,15114,15095,15074,15115,15117,15095,15132,4590,4630,4649,4759,4716,4739,4716,4719,4717,4719,4672,4717,4672,4649,4630,4779,4739,4738,4779,4804,4759,4893,4852,4837,4802,4852,4851,4804,4828,4884,4884,4828,4851,4543,4526,4542,4565,4542,4606,4624,4565,4606,16447,16448,16446,4625,4608,4644,15281,15271,15246,15271,15258,15246,15252,15233,15258,15233,15240,15223,15214,15223,15206,15206,15173,15198,4505,4469,4501,4505,4525,4486,4486,4525,4487,4487,4526,4504,4484,4521,4501,4502,4522,4484,4485,4523,4502,4552,4592,4574,4524,4574,4562,4562,4523,4524,4629,4613,4648,4590,4649,4631,4650,4613,4631,4592,4629,4614,9741,9736,9743,9730,9736,9737,15172,15173,15197,9734,9725,9730,9709,9710,9698,9717,9709,9725,4893,4863,4922,11773,11774,11764,11774,11779,11769,11769,11779,11777,11781,11766,11777,11776,11788,11782,11790,11782,11795,11781,11787,11776,2833,2841,2851,2823,2799,2811,2833,2823,2841,2780,2798,2799,2748,2739,2728,15175,15132,15187,11773,11784,11785,15392,15383,15405,15268,15243,15256,15268,15280,15264,5800,5790,5779, +15235,15256,15243,15382,15383,15368,5774,5781,5767,5774,5779,5790,14950,14964,14983,15075,15096,15114,15047,15083,15096,15045,15046,15012,15103,15083,15046,15012,14983,14997,5744,5741,5738,5744,5738,5749,5755,5762,5749,5755,5768,5762,4759,4780,4716,4739,4779,4759,4780,4719,4716,4719,4695,4672,4672,4695,4649,4804,4803,4759,4893,4909,4852,4851,4852,4909,4804,4884,4886,4851,4910,4884,4542,4526,4487,4584,4606,4542,4624,4606,4642,16447,16449,16448,4608,4667,4644,4668,4625,4644,15271,15281,15291,15258,15271,15282,15233,15252,15240,15275,15252,15258,15239,15223,15240,15223,15213,15206,15204,15173,15206,4505,4501,4537,4505,4537,4525,4541,4487,4525,4484,4522,4521,4521,4537,4501,4502,4538,4522,4539,4502,4523,4574,4592,4614,4562,4574,4604,4562,4581,4523,4613,4671,4648,4614,4629,4648,4673,4631,4649,4613,4650,4671,4650,4631,4674,9737,9736,9741,15197,15205,15172,9734,9730,9737,15204,15197,15173,9727,9725,9734,9717,9710,9709,9698,9710,9705,9727,9717,9725,4922,4947,4893,11773,11785,11774,11785,11779,11774,11789,11777,11779,11781,11777,11789,11776,11794,11788,11782,11788,11795,11803,11790,11795,11781,11793,11787,11776,11787,11794,11817,11790,11811,2800,2799,2823,2823,2833,2812,2780,2799,2781,5768,5755,5767,11792,11785,11784,15404,15405,15383,15416,15392,15405,15280,15268,15256,5780,5800,5779,15235,15267,15256,15382,15404,15383,5774,5767,5754,5766,5779,5774,14964,14997,14983,5750,5745,5741,15045,15082,15046,15029,15045,15012,15103,15046,15102,15029,15012,14997,5738,5741,5739,5743,5749,5738,5743,5755,5749,4803,4780,4759,4761,4719,4780,4740,4695,4719,4673,4649,4695,4803,4804,4854,4893,4947,4909,4910,4851,4909,4938,4886,4884,4886,4854,4804,4884,4910,4939,4541,4542,4487,4623,4606,4584,4541,4584,4542,4623,4642,4606,16448,16449,16450,4667,4691,4644,4691,4668,4644,15291,15290,15271,15271,15290,15282,15275,15258,15282,15252,15262,15240,15262,15252,15275,15223,15239,15213,15262,15239,15240,15213,15204,15206,4537,4563,4525,4525,4564,4541,4521,4522,4559,4521,4560,4537,4539,4538,4502,4522,4538,4559,4539,4523,4561,4622,4574,4614,4574,4622,4604, +4562,4604,4603,4562,4603,4581,4581,4561,4523,4648,4671,4675,4648,4675,4614,4631,4673,4674,4671,4650,4696,4696,4650,4674,9737,9741,9742,9747,9746,9741,9739,9734,9737,15197,15204,15213,9727,9734,9732,9705,9710,9717,9717,9727,9719,4922,4973,4947,11785,11792,11779,11789,11779,11796,11789,11793,11781,11801,11788,11794,11801,11795,11788,11790,11803,11811,11795,11808,11803,11793,11799,11787,11800,11794,11787,2833,2850,2832,2800,2781,2799,2812,2800,2823,12000,12001,12002,5754,5767,5755,15404,15429,15405,15405,15430,15416,15280,15256,15288,15278,15267,15235,5766,5780,5779,15279,15256,15267,5766,5774,5754,5745,5739,5741,15082,15045,15081,15082,15102,15046,5738,5739,5740,5738,5740,5743,5754,5755,5743,4803,4805,4780,4740,4719,4761,4761,4780,4805,4720,4695,4740,4695,4720,4673,4803,4854,4853,4947,4910,4909,4913,4886,4938,4884,4939,4938,4913,4854,4886,4910,4961,4939,4584,4607,4623,4584,4541,4564,4623,4665,4642,16448,16450,16451,4691,4667,4714,4691,4715,4668,15290,15295,15282,15295,15275,15282,15262,15275,15286,15213,15239,15251,15262,15273,15239,4583,4563,4537,4525,4563,4564,4560,4521,4559,4560,4579,4537,4539,4580,4538,4559,4538,4580,4539,4561,4582,4651,4622,4614,4604,4622,4640,4640,4603,4604,4581,4603,4601,4581,4601,4561,4718,4675,4671,4614,4675,4677,4673,4696,4674,4721,4671,4696,9746,9742,9741,9737,9742,9739,15232,15197,15222,9738,9734,9739,15222,15197,15213,9732,9734,9738,9732,9719,9727,9705,9717,9719,16432,16429,16431,11798,11779,11792,11796,11779,11798,11796,11802,11789,11789,11802,11793,11807,11801,11794,11808,11795,11801,11793,11802,11799,11787,11799,11805,11800,11806,11794,11787,11805,11800,15429,15430,15405,15279,15288,15256,15280,15288,15300,5791,5801,5780,5766,5773,5780,15289,15279,15267,5766,5754,5761,15102,15082,15081,5743,5740,5748,5743,5748,5754,4853,4805,4803,4761,4782,4740,4805,4782,4761,4742,4720,4740,4720,4742,4673,4853,4854,4912,4910,4947,4961,4913,4938,4964,4939,4986,4938,4912,4854,4913,4961,4987,4939,4584,4564,4607,4643,4623,4607,4665,4623,4666,16450,16452,16451,4714,4734,4691,4691,4735,4715,4777,4800,4715, +15295,15286,15275,15283,15262,15286,15239,15263,15251,9749,9751,9750,15262,15283,15273,15239,15273,15263,4583,4605,4563,4583,4537,4579,4605,4564,4563,4560,4559,4580,4560,4599,4579,4539,4600,4580,4601,4582,4561,4602,4539,4582,4622,4651,4676,4614,4677,4651,4663,4640,4622,4603,4640,4661,4639,4601,4603,4718,4677,4675,4671,4721,4718,4741,4696,4673,4721,4696,4743,9746,9744,9742,9744,9739,9742,9746,9749,9744,9740,9738,9739,9732,9738,9735,9732,9726,9719,9719,9716,9705,16432,16431,16434,11809,11796,11798,11796,11810,11802,11815,11801,11807,11807,11794,11806,11801,11815,11808,11813,11799,11802,11805,11799,11813,11800,11814,11806,11805,11814,11800,15429,15452,15430,15279,15298,15288,15298,15300,15288,15312,15299,15267,5791,5780,5773,5761,5773,5766,10188,10167,10150,15289,15267,15299,5748,5761,5754,5748,5740,5753,4853,4885,4805,4784,4740,4782,4805,4830,4782,4740,4784,4742,4673,4742,4741,4912,4911,4853,16432,16434,16435,4964,4938,4990,4989,4913,4964,4987,4986,4939,4938,4986,4990,4963,4912,4913,16436,16435,16434,4564,4605,4607,4643,4666,4623,4664,4643,4607,4665,4666,4712,16451,16452,16453,4757,4691,4734,4757,4735,4691,4735,4758,4715,4826,4800,4777,4777,4715,4758,15286,15295,15306,15286,15301,15283,15251,15263,15274,9749,9750,9748,15283,15292,15273,15284,15263,15273,4583,4621,4605,4579,4621,4583,4560,4580,4619,4560,4620,4599,4621,4579,4599,4602,4600,4539,4619,4580,4600,4602,4582,4601,4676,4651,4677,4663,4622,4676,4663,4688,4640,4640,4687,4661,4661,4639,4603,4602,4601,4639,4676,4677,4718,4718,4721,4760,4696,4741,4762,4743,4696,4762,4743,4763,4721,9739,9744,9745,9749,9748,9744,9740,9735,9738,9745,9740,9739,9732,9735,9726,9726,9716,9719,16431,16433,16434,11796,11809,11810,11813,11802,11810,11815,11807,11822,11821,11807,11806,11819,11805,11813,11814,11820,11806,11819,11814,11805,15279,15311,15298,15323,15300,15298,5791,5799,5811,5773,5799,5791,5760,5773,5761,10130,10150,10167,15279,15322,15311,5832,5811,5819,5748,5760,5761,5760,5748,5753,4911,4885,4853,4885,4856,4805,4782,4831,4784,4830,4805,4856,4857,4782,4830,4806,4742,4784,4783,4741, +4742,4962,4911,4912,16466,16467,16468,4989,4963,4913,4989,4964,5013,5035,4986,4987,4990,4986,5036,4963,4962,4912,16434,16433,16436,4641,4607,4605,4666,4643,4690,4664,4690,4643,4664,4607,4641,4733,4712,4666,16452,16454,16453,4757,4734,4775,4735,4757,4776,4776,4758,4735,4826,4777,4827,4758,4801,4777,15286,15306,15301,15314,15283,15301,15285,15274,15263,15302,15292,15283,15292,15293,15273,15263,15284,15285,15284,15273,15293,4641,4605,4621,4620,4560,4619,4620,4636,4599,4636,4621,4599,4637,4600,4602,4600,4638,4619,4663,4676,4710,4663,4710,4688,4688,4687,4640,4709,4661,4687,4661,4662,4639,4662,4602,4639,4676,4718,4731,4781,4760,4721,4718,4760,4731,4783,4762,4741,4762,4783,4743,4763,4743,4785,4721,4763,4781,9744,9748,9745,15316,15305,15330,15294,15305,15316,15330,15354,15366,9716,9726,9731,11824,11813,11810,11822,11807,11821,11822,11827,11815,11821,11806,11820,11825,11819,11813,11826,11820,11814,11826,11814,11819,15323,15298,15311,5799,5819,5811,5773,5789,5799,5773,5760,5778,10150,10130,10112,10189,10130,10167,10150,10187,10206,4911,4914,4885,4856,4885,4914,4782,4857,4831,4858,4784,4831,4856,4887,4830,4857,4830,4887,4806,4783,4742,4806,4784,4833,4962,4914,4911,4990,5036,5059,16468,16469,16466,5012,4963,4989,16478,16469,16476,4986,5035,5036,16438,16439,16436,4963,4988,4962,16437,16436,16433,16464,16461,16455,4713,4690,4664,4664,4641,4689,16455,16454,16452,4798,4775,4734,4757,4775,4776,4776,4799,4758,4827,4777,4801,4826,4827,4883,4799,4801,4758,15314,15302,15283,15314,15301,15325,15294,15274,15285,15292,15302,15304,15293,15292,15304,15303,15285,15284,15284,15293,15304,4641,4621,4658,4620,4619,4638,4620,4657,4636,4621,4636,4658,4659,4600,4637,4602,4660,4637,4659,4638,4600,4731,4710,4676,4710,4730,4688,4688,4728,4687,4661,4709,4662,4687,4729,4709,4662,4660,4602,4781,4795,4760,4760,4754,4731,4743,4783,4807,4808,4785,4743,4785,4809,4763,4809,4781,4763,15305,15341,15330,15294,15285,15305,15341,15354,15330,15354,15380,15366,11829,11813,11824,11833,11822,11821,11822,11833,11827,11820,11832,11821,11819,11825,11826,11825,11813,11829, +11820,11826,11831,15335,15323,15311,5799,5810,5819,5789,5773,5778,5799,5789,5810,10090,10112,10130,10150,10112,10149,5840,5854,5819,10149,10187,10150,4941,4856,4914,4831,4857,4858,4784,4858,4833,4915,4887,4856,4916,4857,4887,4783,4806,4832,4832,4806,4833,4962,4988,4914,16473,16471,16468,16468,16470,16469,4963,5012,4988,5012,4989,5038,16476,16469,16472,5035,5081,5036,5035,5159,5129,16437,16438,16436,16458,16455,16461,16465,16458,16461,4664,4732,4713,4641,4658,4689,4664,4689,4711,16456,16454,16455,4798,4825,4775,4776,4775,4799,4801,4799,4827,4908,4883,4827,15314,15327,15302,15325,15301,15337,15325,15338,15314,15302,15326,15304,15303,15305,15285,15303,15284,15315,15315,15284,15304,4620,4638,4682,4657,4620,4682,4657,4683,4636,4683,4658,4636,4659,4637,4684,4637,4660,4685,4686,4638,4659,4754,4710,4731,4710,4753,4730,4688,4730,4728,4729,4687,4728,4709,4707,4662,4727,4709,4729,4707,4660,4662,4781,4829,4795,4795,4754,4760,4783,4834,4807,4808,4743,4807,4785,4808,4835,4809,4785,4835,4781,4809,4829,15305,15328,15341,15341,15365,15354,15354,15379,15380,11821,11832,11833,11833,11839,11827,11820,11831,11832,11837,11826,11825,11829,11838,11825,11837,11831,11826,5830,5819,5810,10127,10090,10130,10145,10127,10130,5830,5840,5819,10187,10149,10148,4915,4856,4941,4941,4914,4965,4917,4858,4857,4858,4889,4833,4942,4887,4915,4857,4916,4917,4942,4916,4887,4832,4834,4783,4833,4888,4832,4991,4914,4988,5081,5107,5036,16468,16471,16470,16469,16470,16472,5012,5037,4988,16476,16472,16479,5159,5187,5129,16458,16456,16455,16458,16465,16462,4732,4664,4711,4713,4732,4756,4705,4689,4658,4711,4689,4705,16454,16456,16457,16454,16457,16460,4825,4849,4775,4850,4799,4775,4882,4827,4799,15347,15337,15301,15357,15347,15369,15338,15327,15314,15302,15327,15340,15325,15337,15348,15349,15338,15325,15302,15339,15326,15326,15329,15304,15303,15328,15305,15329,15303,15315,15315,15304,15329,4682,4638,4686,4657,4682,4703,4657,4704,4683,4683,4705,4658,4684,4637,4685,4706,4659,4684,4707,4685,4660,4708,4686,4659,4753,4710,4754,4730,4753,4773,4730,4771,4728,4729,4728,4772, +4709,4727,4707,4752,4727,4729,4795,4829,4855,4754,4795,4823,4859,4807,4834,4860,4808,4807,4835,4808,4860,4809,4835,4861,4809,4861,4829,15341,15328,15353,15353,15365,15341,15365,15379,15354,11832,11839,11833,11849,11827,11839,11848,11832,11831,11846,11837,11825,11846,11825,11838,11847,11831,11837,10090,10127,10091,10127,10145,10091,4942,4915,4941,4965,4914,4991,4965,4992,4941,4918,4858,4917,4858,4918,4889,4888,4833,4889,4917,4916,4966,4967,4916,4942,4888,4834,4832,5037,4991,4988,16471,16474,16470,16470,16475,16472,16479,16477,16481,16477,16479,16472,16459,16456,16458,4713,4756,4774,16459,16458,16462,4732,4711,4755,4732,4755,4756,4711,4705,4750,16459,16457,16456,16460,16457,16463,4880,4849,4825,4850,4775,4849,4881,4799,4850,4799,4881,4882,15357,15337,15347,15351,15327,15338,15327,15351,15340,15340,15339,15302,15348,15337,15358,15359,15325,15348,15349,15360,15338,15349,15325,15359,15326,15339,15350,15326,15350,15329,15303,15329,15328,4682,4686,4724,4682,4725,4703,4703,4704,4657,4704,4726,4683,4705,4683,4726,4707,4684,4685,4708,4659,4706,4727,4706,4684,4708,4724,4686,4794,4753,4754,4773,4753,4794,4773,4771,4730,4771,4792,4728,4728,4793,4772,4729,4772,4752,4727,4684,4707,4752,4706,4727,4855,4829,4861,4795,4855,4845,4795,4845,4823,4754,4823,4821,4860,4807,4859,4888,4859,4834,4860,4890,4835,4891,4861,4835,15353,15328,15352,15378,15365,15353,15365,15378,15379,11832,11857,11839,11849,11851,11827,11858,11849,11839,11848,11857,11832,11847,11848,11831,11855,11837,11846,11855,11847,11837,4942,4941,4993,5014,4965,4991,5015,4992,4965,4993,4941,4992,4918,4917,4966,4918,4944,4889,4943,4888,4889,4916,4994,4966,4967,4994,4916,4942,4993,4967,5014,4991,5037,16470,16474,16475,16477,16472,16475,16481,16477,16482,4797,4774,4756,16457,16459,16462,4755,4711,4750,4755,4796,4756,4750,4705,4726,4878,4905,4847,4905,4880,4825,4849,4880,4906,4849,4907,4850,4907,4881,4850,4881,4936,4882,15357,15358,15337,15351,15338,15364,15340,15351,15361,15340,15361,15339,15348,15358,15370,15359,15348,15371,15360,15349,15372,15364,15338,15360,15359,15371,15349, +15362,15350,15339,15363,15329,15350,15329,15352,15328,4724,4725,4682,4725,4748,4703,4703,4749,4704,4726,4704,4749,4706,4751,4708,4708,4751,4724,4821,4794,4754,4773,4794,4822,4773,4818,4771,4771,4819,4792,4728,4792,4793,4820,4772,4793,4772,4791,4752,4752,4751,4706,4855,4861,4903,4903,4845,4855,4876,4823,4845,4821,4823,4875,4860,4859,4919,4859,4888,4920,4860,4919,4890,4891,4835,4890,4861,4891,4921,15353,15352,15377,15353,15377,15378,15401,15379,15378,11858,11839,11857,11870,11851,11849,11827,11851,11840,11858,11871,11849,11848,11869,11857,11869,11848,11847,11855,11846,11868,11869,11847,11855,5015,4965,5014,5039,4992,5015,5039,4993,4992,4918,4966,4995,4918,4968,4944,4889,4944,4943,4920,4888,4943,5016,4966,4994,5017,4994,4967,4967,4993,5018,5037,5061,5014,5219,5246,5192,16477,16475,16480,16477,16480,16482,16484,16481,16482,4824,4774,4797,4796,4797,4756,4824,4847,4774,4755,4750,4796,4750,4726,4769,4878,4934,4905,4878,4847,4824,4906,4880,4905,4935,4849,4906,4907,4849,4935,4881,4907,4937,4937,4936,4881,15364,15374,15351,15351,15375,15361,15362,15339,15361,15384,15370,15358,15370,15371,15348,15385,15372,15349,15372,15386,15360,15387,15364,15360,15371,15385,15349,15362,15373,15350,15329,15363,15352,15373,15363,15350,4724,4767,4725,4748,4725,4767,4703,4748,4749,4726,4749,4768,4751,4770,4724,4821,4844,4794,4844,4822,4794,4822,4818,4773,4842,4771,4818,4771,4842,4819,4843,4792,4819,4793,4792,4843,4820,4841,4772,4820,4793,4843,4772,4841,4791,4752,4791,4751,4940,4903,4861,4903,4876,4845,4876,4875,4823,4874,4821,4875,4919,4859,4920,4919,4945,4890,4891,4890,4946,4891,4946,4921,4940,4861,4921,15390,15377,15352,15400,15378,15377,15401,15378,15412,11880,11858,11857,11860,11851,11870,11881,11870,11849,11860,11840,11851,11858,11880,11871,11849,11871,11881,11869,11879,11857,11879,11855,11868,11879,11869,11855,5060,5015,5014,5039,5015,5062,5039,5018,4993,4995,4966,5019,4918,4995,4968,4968,4996,4944,4943,4944,4920,4966,5016,5019,4994,5019,5016,4994,5017,5040,5018,5017,4967,5060,5014,5061,5246,5219,5249,4824,4797,4848,4796,4846,4797,4750,4790, +4796,4768,4769,4726,4769,4790,4750,4879,4934,4878,4906,4905,4934,4878,4824,4879,4958,4935,4906,4935,4959,4907,4937,4907,4960,4984,4936,4937,15364,15389,15374,15351,15374,15375,15388,15361,15375,15388,15362,15361,15393,15370,15384,15370,15394,15371,15372,15385,15395,15372,15396,15386,15387,15360,15386,15387,15389,15364,15371,15394,15385,15362,15388,15373,15363,15376,15352,15363,15373,15376,4770,4767,4724,4748,4767,4789,4768,4749,4748,4751,4791,4770,4821,4874,4844,4822,4844,4869,4822,4869,4818,4842,4818,4870,4842,4871,4819,4872,4843,4819,4841,4820,4868,4873,4820,4843,4817,4791,4841,4940,4932,4903,4903,4932,4876,4875,4876,4931,4874,4875,4930,4919,4920,4969,4919,4970,4945,4890,4945,4946,4921,4946,4971,4940,4921,4972,15377,15390,15400,15352,15376,15390,15400,15412,15378,11880,11857,11879,11870,11884,11860,11881,11893,11870,11850,11840,11860,11881,11871,11880,11892,11879,11868,5060,5062,5015,5082,5039,5062,5039,5065,5018,5019,5041,4995,5020,4968,4995,4968,5021,4996,5022,4944,4996,4944,4969,4920,5019,4994,5063,5040,5017,5064,5063,4994,5040,5064,5017,5018,4848,4797,4846,4824,4848,4879,4846,4796,4877,4816,4796,4790,4768,4815,4769,4816,4790,4769,4879,4957,4934,4958,4906,4934,4935,4958,4959,4907,4959,4960,4960,4985,4937,4937,4985,4984,15398,15374,15389,15374,15398,15375,15388,15375,15399,15393,15394,15370,15393,15384,15406,15394,15395,15385,15395,15407,15372,15396,15372,15407,15408,15386,15396,15387,15386,15389,15397,15373,15388,15373,15397,15376,4770,4812,4767,4813,4789,4767,4748,4789,4814,4814,4768,4748,4817,4770,4791,4902,4844,4874,4902,4869,4844,4869,4870,4818,4842,4870,4871,4900,4819,4871,4873,4843,4872,4819,4900,4872,4868,4820,4901,4868,4817,4841,4820,4873,4901,4940,4981,4932,4932,4931,4876,4875,4931,4930,12003,12004,12005,4919,4969,4970,4997,4945,4970,4946,4945,4998,4946,4999,4971,4971,4972,4921,4940,4972,4981,15411,15400,15390,15390,15376,15397,15425,15412,15400,11892,11880,11879,11893,11884,11870,11860,11884,11883,11893,11881,11904,11860,11873,11850,11904,11881,11880,11892,11868,11903,5108,5062,5060,5039,5082,5065,5108, +5082,5062,5065,5084,5018,5019,5063,5041,5041,5020,4995,4968,5020,5021,4996,5021,5042,4944,5022,4969,5022,4996,5043,5040,5064,5083,5040,5083,5063,5064,5018,5084,4879,4848,4846,4840,4877,4796,4904,4846,4877,4796,4816,4840,4815,4768,4814,4840,4769,4815,4840,4816,4769,4957,4879,4933,4934,4957,4983,4934,4983,4958,4958,5010,4959,5010,4960,4959,4960,5011,4985,5033,4984,4985,15409,15398,15389,15398,15410,15375,15399,15375,15410,15397,15388,15399,15393,15417,15394,5033,5056,4984,15393,15406,15417,5184,5102,5153,15395,15418,15407,15419,15396,15407,15386,15408,15420,15408,15396,15419,15386,15420,15389,4812,4770,4817,4767,4812,4813,4813,4838,4789,4839,4814,4789,12007,12010,12003,12028,12010,12022,12028,12029,12047,4927,4871,4870,12116,12078,12106,4873,4872,4928,4900,4928,4872,4899,4868,4901,4868,4899,4817,4873,4929,4901,5007,4932,4981,12008,12012,12017,12008,12004,12012,12005,12004,12006,12007,12003,12005,4969,4997,4970,4997,5023,4945,4998,4945,5023,4946,4998,4999,12052,12051,12069,12031,12041,12051,12041,12031,12024,15411,15425,15400,15390,15397,15411,11904,11880,11892,11893,11906,11884,11906,11883,11884,11860,11883,11873,11893,11904,11915,11872,11850,11873,11892,11903,11904,5112,5065,5082,5108,5134,5082,5065,5112,5084,5085,5041,5063,5066,5020,5041,5066,5021,5020,5067,5042,5021,4996,5042,5043,4969,5022,4997,5022,5043,5068,5083,5064,5110,5111,5063,5083,5064,5084,5110,4933,4879,4846,4840,4926,4877,4933,4846,4904,4904,4877,4926,4815,4814,4866,4840,4815,4867,4933,4982,4957,4957,5009,4983,4958,4983,5010,5032,4960,5010,5034,5011,4960,5033,4985,5011,15409,15422,15398,15409,15389,15420,15398,15423,15410,15410,15424,15399,15399,15421,15397,5056,5033,5078,5056,5078,5102,5102,5125,5153,15431,15418,15395,15432,15407,15418,15419,15407,15432,15420,15408,15409,15419,15433,15408,4864,4812,4817,4864,4813,4812,4865,4838,4813,4789,4838,4839,4866,4814,4839,12010,12007,12015,12022,12010,12015,12022,12029,12028,12029,12048,12047,12078,12047,12066,12078,12098,12106,4873,4928,4929,4900,4955,4928,4899,4901,4954,4894,4817,4899,4954,4901,4929,12024,12018, +12008,12004,12008,12006,12006,12009,12005,12007,12005,12011,5023,4997,5044,5023,5045,4998,4998,5046,4999,12051,12052,12031,5046,5071,4999,12024,12031,12018,15411,15437,15425,15421,15411,15397,11906,11893,11915,11906,11920,11883,11883,11896,11873,11915,11904,11927,11872,11873,11895,11904,11903,11927,5134,5112,5082,5112,5136,5084,5085,5066,5041,5085,5063,5111,5086,5021,5066,5087,5042,5067,5086,5067,5021,5087,5043,5042,5022,5068,4997,5068,5043,5088,5110,5111,5083,5084,5135,5110,4926,4840,4898,4933,4904,4956,4926,4956,4904,4867,4815,4866,4867,4898,4840,4956,4982,4933,5008,4957,4982,5008,5009,4957,5009,5031,4983,5031,5010,4983,5032,5034,4960,5010,5031,5032,5034,5057,5011,5033,5011,5058,15409,15434,15422,15423,15398,15422,15435,15410,15423,15436,15424,15410,15399,15424,15421,5033,5058,5078,5125,5102,5078,15431,15442,15418,15432,15418,15442,15419,15432,15433,15409,15408,15434,15408,15433,15434,4864,4817,4894,4864,4895,4813,4865,4896,4838,4865,4813,4895,4897,4839,4838,4839,4897,4866,12007,12021,12015,12029,12022,12015,12048,12029,12037,12066,12047,12048,12058,12078,12066,12077,12098,12078,12106,12098,12115,4928,4979,4929,4955,4979,4928,4954,4948,4899,4894,4899,4948,4954,4929,4980,12008,12018,12013,12008,12013,12006,12006,12013,12009,12005,12009,12014,12005,12014,12011,12007,12011,12016,5068,5044,4997,5023,5044,5069,5045,5023,5070,5046,4998,5045,12031,12052,12032,12052,12070,12060,12031,12032,12018,15421,15437,15411,11906,11915,11930,11920,11906,11930,11920,11907,11883,11907,11896,11883,11896,11895,11873,11935,11915,11927,11895,11894,11872,15756,15826,15847,5134,5165,5112,5112,5165,5136,5084,5136,5135,5085,5114,5066,5137,5085,5111,5086,5066,5113,5115,5087,5067,5067,5086,5116,5087,5088,5043,5088,5117,5068,5135,5111,5110,4926,4898,4953,4926,4953,4956,4867,4866,4924,4925,4898,4867,4956,5006,4982,5008,4982,5006,5008,5054,5009,5009,5055,5031,5034,5032,5077,5055,5032,5031,5079,5057,5034,5057,5080,5011,5080,5058,5011,15434,15444,15422,15435,15423,15422,15436,15410,15435,15436,15443,15424,15443,15421,15424,5105,5078,5058,5125,5078, +5154,15453,15442,15431,15454,15432,15442,15432,15455,15433,15433,15456,15434,4923,4864,4894,4923,4895,4864,4865,4923,4896,4897,4838,4896,4895,4923,4865,4866,4897,4924,12021,12007,12016,12021,12027,12015,12037,12029,12015,12046,12048,12037,12058,12066,12048,12077,12078,12058,12077,12087,12098,12114,12115,12098,4979,4980,4929,12114,12132,12115,4954,5000,4948,4974,4894,4948,5000,4954,4980,12018,12025,12013,12009,12013,12019,12020,12014,12009,12023,12011,12014,12016,12011,12023,5089,5044,5068,5069,5044,5090,5070,5023,5069,12092,12089,12108,12070,12089,12080,12060,12032,12052,12060,12070,12080,12018,12032,12025,15443,15437,15421,11935,11930,11915,11920,11930,11942,11920,11931,11907,11921,11896,11907,11896,11919,11895,11935,11927,11946,11895,11916,11894,15826,15874,15847,5165,5197,5136,5135,5136,5197,5114,5085,5139,5114,5113,5066,5139,5085,5137,5111,5166,5137,5086,5113,5138,5087,5115,5140,5115,5067,5116,5138,5116,5086,5087,5140,5088,5141,5117,5088,5117,5089,5068,16486,16487,16488,4925,4953,4898,4956,4953,5006,4925,4867,4924,5029,5008,5006,5008,5053,5054,5076,5009,5054,5076,5055,5009,5101,5077,5032,5079,5034,5077,5055,5101,5032,16489,16490,16491,5103,5080,5057,5080,5104,5058,15434,15456,15444,15444,15435,15422,5128,5078,5105,5058,5127,5105,5154,5078,5128,15453,15463,15442,15454,15464,15432,15465,15454,15442,15432,15464,15455,15455,15466,15433,15433,15466,15456,4894,4949,4923,4950,4896,4923,4897,4896,4951,4952,4924,4897,12027,12021,12016,12015,12027,12036,12046,12037,12015,12048,12046,12058,12058,12057,12077,12057,12087,12077,12105,12098,12087,12114,12098,12105,12133,12146,12132,12133,12132,12114,5024,4948,5000,4894,4974,4949,4974,4948,5001,5000,4980,5030,12013,12025,12019,12020,12009,12019,12026,12014,12020,12026,12023,12014,12016,12023,12030,5089,5090,5044,16492,16493,16494,16498,16492,16496,12092,12080,12089,12117,12092,12108,12053,12032,12060,12060,12080,12072,12042,12025,12032,11930,11935,11942,11942,11931,11920,11921,11907,11931,11896,11921,11919,11895,11919,11916,11946,11952,11935,11918,11894,11916,15874,15826,15875, +5135,5197,5166,5114,5139,5167,5167,5113,5114,5139,5137,5199,5200,5137,5166,5113,5168,5138,5140,5115,5169,5116,5170,5115,5171,5116,5138,5141,5088,5140,5117,5141,5172,5117,5143,5089,4953,4925,4978,5006,4953,5029,4925,4924,4977,5029,5053,5008,5054,5053,5052,5054,5099,5076,5055,5076,5100,5077,5101,5124,5077,5124,5079,5055,5100,5101,5079,5152,5103,5103,5126,5080,5080,5126,5104,5104,5127,5058,5128,5105,5158,5105,5127,5158,15453,15492,15477,15453,15477,15463,15463,15465,15442,15478,15464,15454,15465,15478,15454,15464,15479,15455,15455,15480,15466,4923,4949,4975,4976,4896,4950,4923,4975,4950,4976,4951,4896,4952,4897,4951,4977,4924,4952,12016,12040,12027,12027,12045,12036,12015,12036,12046,12036,12058,12046,12036,12057,12058,12086,12087,12057,12105,12087,12104,12125,12114,12105,12133,12147,12146,12125,12133,12114,5001,4948,5024,5024,5000,5030,4974,4975,4949,5025,4974,5001,12025,12033,12019,12034,12020,12019,12035,12026,12020,12038,12023,12026,12039,12030,12023,12040,12016,12030,5142,5090,5089,16495,16494,16493,16494,16496,16492,12092,12072,12080,12092,12117,12109,12053,12042,12032,12053,12060,12072,12042,12043,12025,11942,11935,11952,11942,11951,11931,11921,11931,11943,11921,11941,11919,11919,11936,11916,15941,15874,15919,11918,11916,11937,15919,15874,15875,5199,5167,5139,5113,5167,5168,5200,5199,5137,5168,5201,5138,5115,5170,5169,5141,5140,5169,5170,5116,5171,5171,5138,5202,5172,5141,5203,16509,16507,16503,5173,5143,5117,5142,5089,5143,4925,4977,4978,4953,4978,5005,5005,5029,4953,5005,5053,5029,5005,5052,5053,5098,5054,5052,5123,5099,5054,5076,5099,5100,5151,5124,5101,5079,5124,5152,5100,5150,5101,5103,5152,5183,5103,5155,5126,5126,5156,5104,5157,5127,5104,15492,15544,15526,5157,5158,5127,15492,15510,15477,15463,15477,15493,15463,15493,15465,15478,15494,15464,15495,15478,15465,15464,15496,15479,15455,15479,15480,15480,15497,15466,4976,4950,5002,4975,5002,4950,4976,5003,4951,4952,4951,5003,4952,5004,4977,12045,12027,12040,12045,12057,12036,12086,12104,12087,12086,12057,12076,12105,12104,12123,12131,12125,12105,12147,12133, +12141,12141,12133,12125,5024,5047,5001,12155,12162,12147,4974,5025,4975,5025,5001,5048,12033,12025,12043,12033,12034,12019,12035,12020,12034,12044,12026,12035,12039,12023,12038,12026,12044,12038,12039,12049,12030,12050,12040,12030,16495,16497,16494,12134,12127,12117,12092,12090,12072,12109,12117,12127,12090,12092,12109,12042,12053,12061,12053,12072,12071,12061,12043,12042,11942,11952,11951,11950,11931,11951,11950,11943,11931,11943,11941,11921,11919,11941,11936,11936,11937,11916,15964,15941,15919,11940,11918,11937,5167,5199,5225,5167,5223,5168,5199,5200,5225,5224,5201,5168,5138,5201,5202,5226,5169,5170,5141,5169,5227,5170,5171,5228,5171,5202,5229,5141,5230,5203,16507,16506,16503,16502,16501,16503,16495,16501,16499,4977,5004,4978,4978,5028,5005,5028,5052,5005,5123,5054,5098,5098,5052,5075,5099,5123,5149,5099,5150,5100,5182,5124,5151,5101,5150,5151,5124,5183,5152,5103,5183,5155,5185,5126,5155,5156,5126,5186,5157,5104,5156,15544,15561,15526,15492,15526,15510,5158,5157,5215,15510,15493,15477,15465,15493,15511,15512,15494,15478,15494,15496,15464,15478,15495,15513,15511,15495,15465,15496,15480,15479,15496,15497,15480,4976,5002,5026,5027,5002,4975,4976,5026,5003,4952,5003,5004,12045,12040,12050,12065,12057,12045,12097,12104,12086,12065,12076,12057,12086,12076,12097,12124,12123,12104,12131,12105,12123,12131,12142,12125,12155,12147,12141,12141,12125,12142,12162,12155,12167,5047,5048,5001,4975,5025,5049,5025,5048,5072,12033,12043,12054,12054,12034,12033,12055,12035,12034,12044,12035,12056,12044,12039,12038,12049,12039,12059,12050,12030,12049,16495,16499,16497,16500,16494,16497,12071,12072,12090,12109,12127,12128,12110,12090,12109,12053,12071,12061,12061,12062,12043,11957,11951,11952,11957,11950,11951,11950,11957,11943,11953,11941,11943,11953,11936,11941,11936,11954,11937,15941,15964,15987,11918,11940,11929,11937,11955,11940,16624,16625,16626,5223,5224,5168,5224,5252,5201,5202,5201,5253,5254,5169,5226,5228,5226,5170,5227,5169,5254,5227,5230,5141,5171,5229,5228,5229,5202,5253,16506,16510,16508,16505,16503,16506,16499,16501,16502, +16504,16502,16503,4978,5004,5028,5028,5075,5052,5098,5179,5123,5075,5122,5098,5123,5181,5149,5099,5149,5150,5182,5183,5124,5182,5151,5213,5151,5150,5213,5183,5214,5155,5186,5126,5185,5155,5214,5185,5186,5157,5156,15562,15526,15561,15545,15510,15526,5239,5215,5157,15493,15510,15511,15512,15527,15494,15478,15513,15512,15494,15528,15496,15495,15511,15513,15528,15497,15496,5050,5026,5002,5027,5050,5002,4975,5049,5027,5051,5003,5026,5051,5004,5003,12045,12050,12065,12113,12104,12097,12065,12085,12076,12097,12076,12085,12124,12140,12123,12113,12124,12104,12140,12131,12123,12131,12148,12142,12156,12155,12141,12156,12141,12142,12171,12167,12155,16672,16673,16674,5049,5025,5072,5091,5072,5048,12043,12062,12054,12054,12055,12034,12063,12035,12055,12063,12056,12035,12064,12044,12056,12044,12059,12039,12049,12059,12067,12050,12049,12068,16502,16497,16499,12143,12127,12149,12090,12100,12071,12128,12127,12143,12128,12110,12109,12110,12100,12090,12061,12071,12081,12062,12061,12081,15941,15987,16011,11943,11957,11953,11954,11936,11953,11937,11954,11955,15987,15964,16010,11949,11929,11940,11958,11940,11955,16626,16627,16624,16629,16631,16624,16636,16631,16633,5201,5252,5253,5226,5273,5254,5228,5273,5226,5274,5227,5254,5274,5230,5227,5275,5228,5229,5229,5253,5276,16512,16508,16510,16506,16508,16505,16505,16504,16503,12165,12157,12164,5004,5051,5028,5075,5028,5097,5098,5148,5179,5123,5179,5181,5075,5121,5122,5098,5122,5148,5181,5212,5149,16676,16677,16678,5182,5236,5183,5182,5213,5236,5214,5183,5236,5186,5185,5237,5214,5238,5185,5186,5239,5157,15562,15545,15526,15562,15561,15593,15546,15510,15545,5239,5265,5215,15546,15511,15510,15527,15512,15547,15494,15527,15548,15512,15513,15549,15494,15548,15528,15513,15511,15549,5073,5026,5050,5074,5050,5027,5074,5027,5049,5051,5026,5073,12068,12065,12050,12097,12103,12113,12068,12085,12065,12097,12085,12103,12139,12140,12124,12122,12124,12113,12145,12131,12140,12131,12145,12148,12148,12156,12142,12168,12155,12156,12171,12155,12172,16673,16675,16674,5092,5049,5072,5091,5118,5072,12062,12073,12054, +12074,12055,12054,12075,12063,12055,6280,6270,6290,12059,12044,12064,6256,6255,6270,12059,12064,12067,12049,12067,12079,12068,12049,12079,12164,12157,12149,12157,12143,12149,12071,12100,12091,12143,12135,12128,12110,12128,12118,12110,12118,12100,12071,12091,12081,12062,12081,12082,11966,11957,11971,11953,11957,11966,11953,11961,11954,11954,11962,11955,16012,16010,15964,16033,15987,16010,11929,11949,11948,11956,11949,11940,11960,11940,11958,11963,11958,11955,16629,16624,16627,16631,16629,16633,16636,16633,16641,5276,5253,5252,5290,5254,5273,5291,5273,5228,5290,5274,5254,5274,5292,5230,5291,5228,5275,5275,5229,5276,16512,16511,16508,16508,16511,16505,12165,12174,12166,12150,12157,12165,5028,5051,5096,5096,5097,5028,5097,5121,5075,5211,5179,5148,5181,5179,5233,5121,5178,5122,5148,5122,5180,5212,5181,5233,5235,5149,5212,16679,16678,16677,5236,5213,5235,5264,5214,5236,5185,5238,5237,5186,5237,5239,5264,5238,5214,15562,15582,15545,15582,15562,15593,15546,15545,15581,15632,15593,15652,15546,15563,15511,15512,15549,15547,15563,15549,15511,5093,5073,5050,5074,5094,5050,5074,5049,5092,5095,5051,5073,12103,12122,12113,12085,12068,12099,12103,12085,12099,12140,12139,12154,12122,12139,12124,12140,12154,12145,12160,12148,12145,12148,12163,12156,12172,12155,12168,12169,12168,12156,12171,12172,12176,5092,5072,5118,16680,16681,16682,12062,12082,12073,12073,12083,12054,12075,12055,12074,12074,12054,12083,12084,12063,12075,6280,6266,6270,6235,6255,6256,6256,6270,6266,6255,6235,6248,6234,6248,6235,12068,12079,12088,12150,12143,12157,12091,12100,12101,12143,12150,12135,12118,12128,12135,12118,12119,12100,12082,12081,12091,16055,15987,16033,11953,11966,11961,11954,11961,11962,11962,11967,11955,16012,16054,16010,16010,16056,16033,11949,11956,11948,11940,11960,11956,11965,11960,11958,11963,11968,11958,11969,11963,11955,16641,16633,16644,16636,16641,16645,5252,5308,5276,5290,5273,5309,5291,5309,5273,5290,5310,5274,16512,16519,16516,5311,5291,5275,5312,5275,5276,16512,16514,16511,16505,16511,16513,12150,12165,12166,5096,5051,5095,5147,5097, +5096,5097,5147,5121,5211,5233,5179,5211,5148,5234,5121,5147,5178,5180,5122,5178,5210,5148,5180,5212,5233,5263,5212,5263,5235,5281,5236,5235,5281,5264,5236,5282,5237,5238,5239,5237,5282,5264,5283,5238,15581,15545,15582,15593,15615,15582,15546,15581,15594,15632,15615,15593,15563,15546,15547,15549,15563,15547,5093,5095,5073,5050,5094,5093,5074,5119,5094,5092,5120,5074,12126,12122,12103,12068,12088,12099,12103,12099,12107,16782,16784,16788,12139,12122,12138,12154,12161,12145,12163,12148,12160,12161,12160,12145,12169,12156,12163,12172,12168,12175,12173,12168,12169,16681,16680,16683,5092,5118,5120,16682,16681,16684,12093,12073,12082,12094,12083,12073,12075,12074,12095,12074,12083,12096,6292,6280,6310,6280,6267,6266,6235,6256,6249,6249,6256,6266,6223,6234,6235,6223,6227,6234,12101,12100,12119,12101,12082,12091,12150,12158,12135,12118,12135,12144,12118,12136,12119,11978,11972,11966,11972,11961,11966,11973,11962,11961,11973,11967,11962,11969,11955,11967,16056,16010,16054,16077,16033,16056,11956,11965,11948,11960,11965,11956,11958,11968,11965,16645,16641,16644,5276,5308,5327,5290,5309,5328,5329,5309,5291,5310,5290,5330,16512,16516,16514,5291,5311,5329,5311,5275,5312,5312,5276,5327,16514,16517,16511,16513,16511,16515,12150,12166,12158,5095,5144,5096,5096,5177,5147,5261,5233,5211,5148,5210,5234,5211,5234,5262,5147,5209,5178,5178,5210,5180,5233,5261,5263,5280,5235,5263,5235,5280,5281,5281,5298,5264,5282,5238,5299,5298,5283,5264,5283,5299,5238,15615,15581,15582,15616,15594,15581,15594,15617,15546,15632,15651,15615,15546,15595,15547,5093,5144,5095,5093,5094,5145,5074,5120,5119,5146,5094,5119,12138,12122,12126,12103,12107,12126,12107,12099,12088,16784,16782,16779,16782,16788,16792,12139,12138,12153,12170,12163,12160,12170,12160,12161,12173,12169,12163,12175,12168,12177,12178,12172,12175,12177,12168,12173,12178,12179,12172,5118,5174,5120,16685,16684,16681,12094,12073,12093,12101,12093,12082,12083,12094,12102,6325,6312,6292,12083,12102,12096,6282,6280,6292,6282,6267,6280,6249,6266,6267,6249,6241,6235,6223,6235,6228,6220,6227,6223,12101, +12119,12121,16525,16530,16518,12151,12144,12135,12136,12118,12144,12136,12121,12119,16033,16101,16115,11972,11977,11961,11973,11961,11977,11973,11979,11967,11980,11969,11967,16100,16056,16054,16033,16077,16101,16056,16100,16077,16644,16648,16645,5344,5328,5309,5290,5328,5330,5329,5344,5309,16516,16523,16520,16514,16516,16520,5345,5329,5311,5312,5346,5311,5327,5347,5312,16514,16520,16517,16515,16511,16517,16513,16515,16518,5144,5177,5096,5177,5209,5147,5261,5211,5262,5260,5234,5210,5279,5262,5234,5178,5209,5210,5296,5263,5261,5280,5263,5296,5317,5281,5280,5298,5281,5317,5282,5299,5318,5298,5319,5283,5283,5320,5299,15616,15581,15615,15616,15630,15594,15631,15617,15594,15595,15546,15617,15615,15651,15650,5093,5175,5144,5094,5146,5145,5093,5145,5175,5119,5120,5176,5146,5119,5176,6233,6240,6226,6220,6226,6232,6220,6232,6227,16779,16782,16774,16792,16788,16794,16782,16792,16795,6233,6247,6240,16761,16744,16752,16761,16779,16774,16734,16752,16744,16754,16745,16715,12178,12175,12180,16734,16715,16745,16685,16681,16687,16686,16688,16684,16686,16684,16685,12093,12111,12094,12101,12111,12093,12094,12112,12102,6292,6312,6293,6326,6312,6334,6282,6292,6272,6282,6272,6267,6249,6267,6251,6242,6241,6249,6228,6235,6241,6221,6223,6228,6221,6220,6223,12111,12101,12121,16525,16533,16530,16525,16518,16522,12159,12144,12151,12136,12144,12152,12136,12137,12121,16101,16133,16115,16166,16180,16115,11973,11977,11979,11984,11967,11979,11980,11967,11984,16077,16100,16101,16648,16644,16649,16531,16542,16536,16526,16523,16531,5364,5344,5329,16526,16520,16523,5329,5345,5364,5311,5365,5345,5312,5347,5346,5346,5366,5311,5327,5367,5347,16524,16517,16520,16515,16517,16521,16522,16518,16515,5177,5144,5204,5204,5209,5177,5261,5262,5296,5234,5260,5278,5259,5260,5210,5297,5262,5279,5234,5278,5279,5259,5210,5209,5317,5280,5296,5298,5317,5316,5334,5318,5299,5319,5298,5316,5335,5283,5319,5335,5320,5283,5336,5299,5320,15615,15650,15616,15650,15630,15616,15630,15631,15594,15631,15633,15617,15633,15595,15617,15693,15650,15651,5175,5204,5144,5146,5205,5145,5175, +5145,5206,5120,5207,5176,5176,5208,5146,6233,6226,6222,6226,6220,6222,6322,6289,6309,6265,6247,6246,6279,6289,6265,6246,6247,6233,16753,16744,16761,16774,16767,16761,16734,16744,16728,12181,12180,12175,16687,16704,16698,16734,16728,16715,16685,16687,16689,16688,16686,16690,16685,16689,16686,12094,12111,12120,12094,12120,12112,6376,6346,6334,6312,6304,6293,6293,6272,6292,6326,6304,6312,18241,18242,18243,6267,6272,6258,6267,6258,6251,6249,6251,6242,6228,6241,6242,6230,6221,6228,6219,6220,6221,12111,12121,12129,16525,16539,16533,16525,16522,16529,12144,12159,12152,16533,16556,16565,16600,16606,16582,12121,12137,12129,16151,16133,16101,16152,16115,16133,16180,16166,16196,16166,16115,16152,16180,16196,16208,11979,11989,11984,11980,11984,11991,16132,16101,16100,16650,16648,16649,16551,16536,16542,16531,16536,16526,5364,5383,5344,16520,16526,16527,5364,5345,5384,5311,5366,5365,5345,5365,5385,5347,5366,5346,5367,5386,5347,16521,16517,16524,16520,16527,16524,16522,16515,16521,5209,5204,5259,5316,5296,5262,5259,5278,5260,5297,5316,5262,5297,5279,5315,5278,5315,5279,5317,5296,5316,15740,15714,15651,5334,5299,5336,5319,5316,5353,5335,5319,5355,5335,5356,5320,5320,5357,5336,15630,15650,15671,15630,15672,15631,15633,15631,15673,15671,15650,15693,15714,15693,15651,5206,5204,5175,5146,5231,5205,5205,5206,5145,5176,5207,5232,16701,16691,16696,5231,5146,5208,6233,6222,6231,6219,6222,6220,6289,6302,6309,6264,6265,6246,6302,6289,6279,6264,6279,6265,6233,6231,6246,16753,16728,16744,16753,16761,16767,6309,6302,6321,16715,16709,16704,16709,16698,16704,16687,16698,16694,16721,16715,16728,16687,16692,16689,16691,16690,16686,16686,16689,16691,12120,12111,12129,12130,12112,12120,6367,6346,6376,6283,6293,6304,6283,6272,6293,6304,6326,6327,6346,6327,6326,6283,6258,6272,6237,6251,6258,6251,6237,6242,6230,6228,6242,6230,6224,6221,6224,6219,6221,16525,16534,16539,16533,16539,16547,16529,16522,16521,16525,16529,16534,16582,16565,16574,16533,16547,16556,16556,16574,16565,16600,16582,16592,16600,16611,16616,16152,16133,16151,16150,16151,16101,16166, +16197,16196,16166,16152,16181,16196,16197,16218,11993,11991,11984,16101,16132,16150,16651,16650,16649,16536,16551,16552,16526,16536,16541,16577,16551,16585,16535,16527,16526,5345,5405,5384,5364,5384,5406,5365,5366,5407,5385,5365,5408,5345,5385,5405,5347,5386,5366,16521,16524,16528,16524,16527,16532,5259,5204,5255,5259,5293,5278,5332,5316,5297,5297,5315,5333,5278,5331,5315,5393,5334,5373,5334,5336,5373,5316,5332,5353,5319,5353,5355,5335,5355,5356,5357,5320,5356,5374,5336,5357,15671,15672,15630,15673,15631,15672,15671,15693,15715,15714,15739,15693,5255,5204,5206,5256,5205,5231,5257,5206,5205,16691,16693,16696,5231,5208,5258,6225,6231,6222,6219,6225,6222,6264,6246,6254,6302,6279,6301,6279,6264,6288,6239,6246,6231,16753,16746,16728,6342,6321,6319,6321,6302,6319,16709,16715,16721,16709,16702,16698,16698,16702,16694,16694,16692,16687,16721,16728,16735,16695,16689,16692,16691,16689,16693,16622,16616,16611,16622,16611,16623,6367,6353,6346,6305,6283,6304,6304,6327,6305,6353,6327,6346,6283,6273,6258,6237,6258,6259,6237,6230,6242,6230,6237,6224,6224,6229,6219,16539,16534,16547,16521,16528,16529,16540,16534,16529,16574,16592,16582,16547,16564,16556,16573,16574,16556,16600,16592,16607,16607,16611,16600,16152,16151,16179,16153,16151,16150,16197,16166,16181,16181,16152,16179,6783,6789,6794,11991,11993,11995,16132,16153,16150,16652,16651,16649,16551,16567,16552,16536,16552,16541,16526,16541,16535,16551,16577,16567,16535,16532,16527,5384,5405,5424,5406,5384,5425,5366,5426,5407,5365,5407,5427,5365,5427,5408,5385,5408,5428,5405,5385,5428,16651,16654,16656,16524,16532,16528,5255,5293,5259,5313,5278,5293,5297,5333,5332,5354,5333,5315,5331,5278,5351,5315,5331,5352,5393,5373,5416,5373,5336,5374,5353,5332,5371,5355,5353,5371,5394,5356,5355,5357,5356,5395,5374,5357,5396,15671,15715,15672,15673,15672,15716,15739,15715,15693,15714,15758,15739,5255,5206,5277,5205,5256,5257,16712,16718,16700,5277,5206,5257,16700,16696,16693,6231,6225,6239,6219,6229,6225,6239,6254,6246,6269,6264,6254,6301,6279,6288,6302,6301,6319,6288,6264,6278,6342,6352,6363, +16746,16735,16728,6319,6352,6342,16713,16709,16721,16709,16713,16702,16702,16697,16694,16694,16697,16692,16729,16721,16735,16693,16689,16695,16695,16692,16699,16621,16623,16611,6353,6367,6375,6283,6305,6294,6305,6327,6328,6353,6354,6327,6283,6294,6273,6259,6258,6273,6237,6259,6252,6243,6224,6237,6229,6224,6236,16534,16558,16547,16528,16538,16529,16540,16548,16534,16549,16540,16529,16574,16581,16592,16558,16564,16547,16573,16556,16564,16581,16574,16573,16599,16607,16592,16615,16611,16607,16153,16179,16151,16197,16181,16209,16181,16179,16207,6783,6777,6789,16803,16804,16805,16653,16651,16652,16567,16578,16552,16560,16541,16552,16535,16541,16550,16577,16586,16567,16535,16543,16532,5405,5445,5424,16617,16612,16595,16577,16595,16586,5446,5426,5366,5447,5407,5426,5407,5448,5427,5427,5449,5408,5450,5428,5408,5405,5428,5445,16651,16653,16654,16528,16532,16537,5255,5277,5293,5348,5278,5313,5293,5277,5313,5371,5332,5333,5354,5372,5333,5352,5354,5315,5278,5348,5351,5370,5331,5351,5354,5352,5331,5415,5416,5373,5373,5374,5415,5355,5371,5413,5394,5395,5356,5355,5417,5394,5396,5357,5395,5396,5418,5374,15715,15716,15672,15716,15741,15673,12207,12206,12210,12207,12204,12201,5256,5294,5257,16700,16706,16712,5277,5257,5295,16700,16693,16695,6239,6225,6245,6225,6229,6238,6239,6253,6254,6269,6278,6264,6254,6253,6269,6300,6301,6288,6301,6320,6319,6300,6288,6278,6352,6362,6363,16746,16741,16735,6341,6352,6319,16729,16713,16721,16713,16707,16702,16697,16702,16707,16703,16692,16697,16729,16735,16741,16699,16692,16703,16699,16705,16695,16621,16611,16615,6374,6353,6375,6305,6313,6294,6347,6328,6327,6328,6313,6305,6374,6354,6353,6354,6347,6327,6294,6295,6273,6259,6273,6274,6259,6260,6252,6243,6237,6252,6236,6224,6243,6229,6236,6238,16548,16558,16534,16545,16538,16528,16538,16546,16529,16548,16540,16557,16540,16549,16559,16546,16549,16529,16581,16599,16592,16558,16576,16564,16581,16573,16564,16599,16605,16607,16607,16605,16615,16153,16182,16179,16209,16181,16207,6777,6783,6770,16207,16179,16182,6777,6788,6789,16578,16567,16587,16568,16552,16578, +16550,16541,16560,16568,16560,16552,16543,16535,16550,16567,16586,16587,16543,16544,16532,5464,5424,5445,16595,16612,16609,16595,16602,16586,16658,16654,16655,5407,5447,5448,5447,5426,5465,5466,5427,5448,5466,5449,5427,5449,5450,5408,5467,5428,5450,5468,5445,5428,16653,16655,16654,16537,16532,16544,16537,16545,16528,5313,5349,5348,5313,5277,5314,5371,5333,5391,5354,5392,5372,5372,5391,5333,5348,5387,5351,5370,5390,5331,5370,5351,5387,5354,5331,5390,5415,5457,5416,5415,5374,5434,5391,5413,5371,5413,5417,5355,5394,5417,5395,5435,5396,5395,5418,5396,5436,5418,5434,5374,15715,15759,15716,15760,15741,15716,12207,12201,12206,12210,12206,12209,12201,12204,12202,16712,16717,16725,5257,5294,5295,16700,16695,16706,16712,16706,16717,5277,5295,5314,6244,6245,6225,6245,6253,6239,6244,6225,6238,6269,6263,6278,6269,6253,6263,6300,6320,6301,6341,6319,6320,6300,6278,6287,6341,6362,6352,6362,6387,6363,16729,16726,16713,16713,16719,16707,16708,16697,16707,16703,16697,16708,16741,16726,16729,16710,16699,16703,16705,16699,16711,16706,16695,16705,6375,6411,6397,6375,6397,6374,6295,6294,6313,6347,6330,6328,6328,6330,6313,6374,6377,6354,6347,6354,6368,6295,6274,6273,6259,6274,6260,6243,6252,6260,6250,6236,6243,6238,6236,6250,16548,16566,16558,16545,16555,16538,16538,16555,16546,16540,16559,16557,16566,16548,16557,16563,16559,16549,16546,16563,16549,16581,16584,16599,16558,16566,16576,16584,16564,16576,16584,16581,16564,16599,16584,16605,6397,6411,6419,16209,16207,16219,6777,6770,6765,16207,16182,16219,6777,6776,6788,16578,16587,16588,16568,16578,16588,16561,16550,16560,16561,16560,16568,16543,16550,16561,16586,16602,16587,16543,16561,16544,16618,16609,16612,5445,5484,5464,16595,16609,16602,5465,5426,5486,5447,5485,5448,5465,5487,5447,5449,5489,5450,5467,5468,5428,5450,5489,5467,5468,5484,5445,16553,16537,16544,16537,16554,16545,5314,5349,5313,5349,5388,5348,5392,5354,5390,5392,5414,5372,5372,5414,5391,5388,5387,5348,5390,5370,5411,5370,5387,5412,5415,5434,5457,5432,5413,5391,5413,5455,5417,5417,5435,5395,5435,5436,5396,5458,5418,5436,5418, +5459,5434,15760,15716,15759,15760,15779,15741,12203,12206,12201,12203,12209,12206,12201,12202,12196,16717,16724,16725,5294,5314,5295,16706,16705,16717,6244,6261,6245,6245,6263,6253,6250,6244,6238,6278,6263,6287,6300,6318,6320,6341,6320,6318,6287,6308,6300,6340,6362,6341,6387,6362,6393,16726,16719,16713,16720,16707,16719,16708,16707,16720,16703,16708,16714,16741,16750,16726,16699,16710,16711,16710,16703,16716,16717,16705,16711,6377,6374,6397,6295,6313,6306,6347,6348,6330,6330,6306,6313,6377,6368,6354,6347,6368,6348,6295,6284,6274,6274,6284,6260,6260,6257,6243,6257,6250,6243,16554,16555,16545,16546,16555,16563,16557,16559,16575,6510,6507,6494,16563,16575,16559,16566,16583,16576,16584,16576,16594,6419,6442,6432,6397,6419,6410,6751,6765,6770,6776,6777,6765,6776,6787,6788,9557,9563,9567,16596,16568,16588,16561,16568,16579,16602,16610,16587,16544,16561,16562,16620,16609,16618,5484,5506,5464,16613,16602,16609,5447,5487,5485,5468,5467,5509,5510,5467,5489,5468,5511,5484,16554,16537,16553,16553,16544,16562,5314,5368,5349,5349,5389,5388,5392,5390,5431,5392,5433,5414,5432,5391,5414,5387,5388,5412,5370,5412,5411,5411,5431,5390,5457,5434,5475,5432,5456,5413,5456,5455,5413,5417,5455,5435,5476,5436,5435,16826,16827,16828,5476,5458,5436,12196,12198,12190,15760,15759,15803,15760,15803,15779,15741,15779,15780,12199,12203,12201,12208,12209,12203,12201,12196,12199,16717,16711,16724,16725,16724,16739,5294,5350,5314,6261,6244,6268,6245,6261,6263,6250,6262,6244,6286,6287,6263,6308,6318,6300,6340,6341,6318,6287,6317,6308,6340,6361,6362,6393,6362,6386,16726,16732,16719,16719,16733,16720,16708,16720,16714,16714,16716,16703,6407,6415,6393,16722,16711,16710,16710,16716,16723,6377,6397,6410,6306,6284,6295,6348,6329,6330,6306,6330,6329,6377,6390,6368,6365,6348,6368,6260,6284,6281,6260,6271,6257,6262,6250,6257,16554,16571,16555,16555,16572,16563,6507,6509,6506,6507,6506,6494,16566,16601,16593,16572,16575,16563,16566,16593,16583,16583,16594,16576,6432,6442,6458,6432,6410,6419,6751,6755,6765,6776,6765,6769,6775,6787,6776,9563,9557,9553,16610,16614, +16587,16603,16568,16596,9562,9563,9553,9561,9566,9556,16579,16562,16561,9558,9564,9547,16620,16613,16609,9543,9534,9523,9480,9512,9524,9512,9523,9534,16613,16619,16602,5467,5510,5509,5468,5509,5511,5526,5484,5511,16554,16553,16569,16553,16562,16570,5314,5369,5368,5368,5389,5349,5389,5412,5388,5454,5392,5431,5392,5454,5433,5432,5414,5433,5452,5411,5412,5411,5453,5431,5473,5456,5432,5495,5455,5456,5455,5476,5435,12190,12188,12187,5496,5458,5476,12196,12190,12194,12208,12211,12209,15828,15779,15803,15779,15829,15780,12199,12205,12203,12208,12203,12205,12194,12199,12196,16730,16724,16711,16738,16739,16724,5350,5369,5314,6268,6244,6262,6268,6275,6261,6261,6276,6263,6286,6299,6287,6286,6263,6276,6308,6333,6318,6333,6340,6318,6317,6287,6299,6333,6308,6317,6361,6340,6351,6362,6361,6386,6386,6407,6393,16732,16726,16740,16732,16733,16719,16720,16733,16727,16720,16727,16714,16714,16727,16716,16722,16730,16711,16723,16722,16710,16723,16716,16731,6377,6410,6412,6306,6311,6284,6343,6329,6348,6329,6311,6306,6396,6390,6377,6365,6368,6390,6365,6343,6348,6281,6284,6291,6281,6271,6260,6257,6271,6262,16569,16571,16554,16580,16555,16571,16555,16580,16572,16572,16591,16575,6506,6505,6494,16601,16608,16593,6443,6457,6420,6443,6433,6458,6458,6433,6432,6412,6410,6432,6755,6769,6765,6769,6775,6776,6775,6778,6787,9541,9553,9557,9558,9554,9557,9553,9556,9562,9561,9556,9552,16562,16579,16589,9547,9554,9558,9543,9533,9548,9543,9523,9533,9480,9498,9512,9512,9498,9523,9548,9532,9547,5510,5544,5509,5544,5511,5509,9480,9499,9464,16570,16569,16553,9559,9565,9550,5409,5368,5369,5368,5410,5389,5430,5412,5389,5454,5431,5472,5433,5454,5474,5432,5433,5473,5453,5411,5452,5452,5412,5469,5472,5431,5453,5495,5456,5473,5495,5514,5455,5514,5476,5455,12187,12188,12185,12187,12194,12190,12188,12191,12185,5514,5496,5476,15878,15851,15803,15779,15828,15850,15851,15828,15803,15829,15779,15852,15971,15946,15898,15898,15851,15878,12194,12200,12199,16730,16738,16724,16739,16738,16759,6268,6262,6277,6268,6277,6275,6275,6285,6261,6261,6285,6276,6286,6276,6299,6340,6333, +6351,6317,6299,6332,6333,6317,6339,6361,6351,6372,6361,6372,6386,6386,6394,6407,16732,16740,16749,16733,16732,16749,16727,16733,16742,16731,16716,16727,16736,16730,16722,16723,16736,16722,16723,16731,16737,6377,6412,6396,6311,6291,6284,6343,6323,6329,6329,6323,6311,6365,6390,6396,6343,6365,6373,6281,6291,6271,6277,6262,6271,16580,16571,16569,6495,6508,6511,6508,6495,6506,6505,6506,6495,6505,6490,6494,6473,6494,6490,6457,6473,6455,6457,6440,6420,6443,6420,6433,6412,6432,6433,6755,6764,6769,6775,6769,6764,6764,6778,6775,6787,6778,6790,9541,9540,9553,9554,9541,9557,9553,9540,9556,9540,9552,9556,16562,16589,16597,9547,9542,9554,9533,9532,9548,9523,9511,9533,9498,9480,9463,9498,9497,9523,9532,9542,9547,5544,5510,5562,5511,5544,5563,9480,9464,9426,16570,16590,16569,9550,9555,9559,5429,5368,5409,16738,16762,16759,16793,16775,16789,5430,5389,5410,5430,5469,5412,5472,5494,5454,5494,5474,5454,5433,5474,5473,5453,5452,5492,5471,5452,5469,5472,5453,5493,5495,5473,5474,5514,5495,5474,12187,12185,12186,12193,12194,12187,5532,5549,5496,5514,5532,5496,15850,15828,15851,15779,15850,15852,15852,15879,15829,15993,15946,15971,15924,15898,15946,15898,15924,15851,12200,12194,12197,16730,16736,16738,6277,6296,6275,6275,6297,6285,6276,6285,6298,6299,6276,6298,6351,6333,6350,6332,6299,6316,6338,6317,6332,6317,6338,6339,6350,6333,6339,6351,6384,6372,6372,6394,6386,6416,6407,6394,6416,6430,6407,16749,16751,16733,16751,16742,16733,16742,16743,16727,16731,16727,16743,16736,16723,16747,16737,16731,16743,16748,16723,16737,6420,6396,6412,6311,6303,6291,6343,6344,6323,6311,6323,6303,6396,6389,6365,6373,6365,6389,6373,6364,6343,6277,6271,6291,16598,16580,16569,16598,16604,16580,6505,6495,6490,6473,6490,6474,6474,6455,6473,6457,6455,6440,6440,6418,6420,6412,6433,6420,6764,6772,6778,6785,6790,6778,9541,9521,9540,9541,9554,9542,9540,9546,9552,9552,9546,9550,9511,9532,9533,9523,9497,9511,9426,9463,9480,9463,9479,9498,9497,9498,9479,9522,9542,9532,16598,16569,16590,9550,9539,9555,16775,16762,16768,16755,16762,16738,16775,16785,16789,5430,5410,5451,5471, +5469,5430,5472,5513,5494,5494,5515,5474,5471,5492,5452,5492,5493,5453,5513,5472,5493,5514,5474,5515,12183,12186,12185,12186,12189,12187,12193,12197,12194,12193,12187,12189,5548,5549,5532,5532,5514,5515,15897,15850,15851,15897,15852,15850,15852,15899,15879,5727,5732,5734,15924,15946,15969,15923,15851,15924,5727,5717,5724,16755,16738,16736,6277,6307,6296,6297,6275,6296,6298,6285,6297,6299,6298,6316,6371,6351,6350,6332,6316,6337,6338,6332,6337,6338,6359,6339,6360,6350,6339,6371,6384,6351,6384,6394,6372,6405,6416,6394,16765,16749,16772,16751,16749,16765,16760,16742,16751,16743,16742,16757,16747,16723,16748,16747,16756,16736,16737,16743,16757,16737,16758,16748,6418,6396,6420,6277,6291,6303,6343,6364,6344,6344,6324,6323,6324,6303,6323,6409,6389,6396,6389,6395,6373,6388,6364,6373,6474,6495,6491,6474,6490,6495,6474,6456,6455,6431,6440,6455,6418,6440,6408,6785,6778,6772,16815,16820,16818,9522,9521,9541,9520,9540,9521,9541,9542,9522,9546,9540,9520,9546,9539,9550,9511,9522,9532,9478,9511,9497,9463,9426,9447,9463,9447,9479,9446,9497,9479,9555,9551,9560,9555,9539,9551,16755,16768,16762,16775,16768,16769,16785,16775,16781,5451,5410,5470,5430,5451,5471,5531,5494,5513,5494,5531,5515,5527,5492,5471,5492,5529,5493,5530,5513,5493,5654,5668,5621,12184,12183,12185,12186,12192,12189,5711,5702,5717,12195,12193,12189,5532,5515,5548,15897,15851,15923,15897,15899,15852,5727,5724,5732,15994,15969,15946,15969,15923,15924,5724,5717,5702,16755,16736,16756,6303,6307,6277,6307,6314,6296,6297,6296,6315,6315,6298,6297,6298,6315,6316,6360,6371,6350,6337,6316,6315,6337,6358,6338,6338,6358,6359,6339,6359,6360,6371,6392,6384,6394,6384,6405,6429,6416,6405,16766,16751,16765,16760,16757,16742,16766,16760,16751,16763,16747,16748,16747,16764,16756,16758,16737,16757,16748,16758,16763,6409,6396,6418,6364,6366,6344,6344,6345,6324,6303,6324,6307,6389,6409,6395,6388,6373,6395,6388,6391,6364,6475,6474,6491,6475,6456,6474,6431,6455,6456,6408,6440,6431,6418,6408,6409,16818,16820,16821,9522,9510,9521,9521,9494,9520,9539,9546,9520,9511,9496,9522,9496,9511,9478,9497, +9446,9478,9426,9400,9447,9446,9479,9447,6479,6491,6497,9551,9539,9545,16755,16756,16768,16769,16768,16756,16769,16781,16775,16785,16781,16790,5490,5451,5470,5491,5471,5451,5531,5513,5547,5531,5548,5515,5527,5529,5492,5512,5527,5471,5530,5493,5529,5530,5547,5513,5654,5621,5643,12182,12183,12184,5654,5680,5692,5702,5711,5680,15897,15923,15944,15897,15945,15899,5724,5728,5732,15969,15994,15990,15944,15923,15969,5702,5718,5724,6331,6314,6307,6314,6315,6296,6360,6385,6371,6336,6337,6315,6337,6357,6358,6359,6358,6382,6359,6383,6360,6392,6371,6385,6392,6405,6384,6405,6427,6429,6452,6429,6427,16760,16773,16757,9502,9481,9466,16764,16747,16763,16769,16756,16764,16758,16757,16770,16771,16763,16758,6369,6366,6364,6366,6345,6344,6331,6324,6345,6331,6307,6324,6409,6408,6395,6388,6395,6408,6391,6388,6398,6391,6369,6364,6475,6491,6479,6475,6463,6456,6456,6441,6431,6417,6408,6431,9496,9510,9522,9510,9494,9521,9494,9509,9520,9539,9520,9531,9496,9478,9462,9446,9462,9478,9446,9447,9400,6479,6497,6496,9545,9539,9531,16777,16781,16769,16790,16781,16787,16802,16790,16800,5512,5471,5491,5569,5531,5547,5569,5548,5531,5527,5564,5529,5512,5545,5527,5530,5529,5567,5568,5547,5530,5643,5621,5604,5654,5643,5669,5569,5604,5621,5654,5669,5680,5702,5680,5691,15897,15944,15970,15945,15897,15970,15945,15947,15899,5728,5724,5718,16058,16036,15994,15994,16036,15990,15944,15969,15990,5702,5707,5718,6314,6331,6335,6315,6314,6336,6383,6385,6360,6337,6336,6357,6357,6382,6358,6382,6383,6359,6392,6385,6406,6392,6414,6405,6405,6414,6427,6452,6427,6451,9451,9404,9466,16773,16770,16757,9500,9481,9502,9451,9466,9481,16764,16763,16776,16777,16769,16764,16758,16770,16771,16771,16778,16763,6349,6366,6369,6366,6349,6345,6331,6345,6349,6388,6408,6417,6388,6417,6398,6378,6391,6398,6391,6378,6369,6479,6463,6475,6456,6463,6441,6417,6431,6441,9496,9462,9510,9510,9477,9494,9494,9476,9509,9531,9520,9509,9425,9462,9446,9425,9446,9400,6496,6480,6479,9531,9538,9545,16780,16781,16777,16787,16781,16780,16790,16787,16791,16798,16800,16790,5528,5512,5491,5586,5569,5547,5564,5527, +5545,5567,5529,5564,5528,5545,5512,5568,5530,5567,5586,5547,5568,5643,5604,5642,5666,5669,5643,5569,5586,5604,5691,5680,5669,5691,5707,5702,15944,15990,15970,15991,15945,15970,15945,15992,15947,5728,5718,5729,16058,16015,16036,16036,16015,15990,5714,5718,5707,6335,6331,6349,6314,6335,6336,6383,6404,6385,6357,6336,6356,6381,6382,6357,6382,6403,6383,6385,6404,6406,6406,6414,6392,6414,6437,6427,6437,6451,6427,9451,9405,9404,9404,9384,9363,9500,9465,9481,9451,9481,9448,16776,16763,16778,16776,16780,16764,16777,16764,16780,9340,9321,9363,9278,9321,9298,6355,6349,6369,6421,6398,6417,6378,6398,6399,6355,6369,6378,6480,6463,6479,6441,6463,6472,6439,6417,6441,9462,9477,9510,9477,9443,9494,9494,9443,9476,9493,9509,9476,9519,9531,9509,9445,9462,9425,9425,9400,9380,9545,9538,9549,9531,9519,9538,16787,16780,16791,16790,16791,16796,5546,5528,5491,16798,16790,16796,5545,5583,5564,5567,5564,5599,5565,5545,5528,5568,5567,5599,5586,5568,5603,5642,5604,5620,5666,5643,5642,5689,5669,5666,5586,5620,5604,5691,5669,5689,5691,5689,5707,16015,15970,15990,15991,16016,15945,16017,15991,15970,16016,15992,15945,5721,5729,5718,16058,16080,16015,5714,5721,5718,5714,5707,5689,6335,6349,6355,6335,6356,6336,6403,6404,6383,6357,6356,6381,6381,6402,6382,6403,6382,6402,6426,6406,6404,6428,6414,6406,6437,6414,6438,9501,9465,9500,9405,9451,9448,9405,9384,9404,9340,9363,9384,9465,9448,9481,9257,9278,9240,16776,16783,16780,9340,9298,9321,9298,9240,9278,6398,6421,6399,6439,6421,6417,6379,6378,6399,6355,6378,6379,6463,6480,6472,6441,6472,6462,6462,6439,6441,9462,9445,9477,9445,9443,9477,9442,9476,9443,9509,9493,9519,9442,9493,9476,9445,9425,9424,9424,9425,9380,6480,6498,6489,9519,9530,9538,16786,16791,16780,16797,16796,16791,5546,5566,5528,16796,16799,16798,5565,5583,5545,5599,5564,5583,5528,5584,5565,5619,5568,5599,5619,5603,5568,5603,5620,5586,5642,5620,5653,5666,5642,5667,5689,5666,5667,16015,16017,15970,15991,16037,16016,16038,15991,16017,16039,15992,16016,5721,5731,5729,16015,16080,16059,5708,5721,5714,5689,5708,5714,6335,6355,6370,6356,6335,6370,6403, +6425,6404,6380,6381,6356,6402,6381,6401,6402,6425,6403,6426,6428,6406,6404,6425,6426,6428,6438,6414,6437,6438,6461,9501,9482,9465,9402,9405,9448,9384,9405,9364,9341,9340,9384,9465,9427,9448,9208,9257,9240,16786,16780,16783,9298,9340,9341,9298,9279,9240,6422,6399,6421,6421,6439,6454,6399,6400,6379,6379,6370,6355,6480,6489,6472,6462,6472,6471,6462,6454,6439,9445,9422,9443,9442,9443,9397,9493,9492,9519,9493,9442,9492,9445,9424,9399,9380,9399,9424,6504,6489,6498,9519,9492,9530,9192,9166,9164,16796,16797,16799,9149,9132,9164,5546,5585,5566,5584,5528,5566,5565,5600,5583,5599,5583,5617,5584,5600,5565,5619,5599,5641,5619,5620,5603,5653,5620,5641,5667,5642,5653,5667,5700,5689,16015,16059,16017,16060,16037,15991,16037,16061,16016,16038,16060,15991,16038,16017,16062,16039,16016,16061,5726,5731,5721,5715,5721,5708,5700,5708,5689,6356,6370,6380,6380,6401,6381,6424,6402,6401,6436,6425,6402,6426,6450,6428,6425,6450,6426,6428,6453,6438,6461,6438,6453,9465,9482,9449,9402,9364,9405,9402,9448,9427,9341,9384,9364,9465,9449,9427,9225,9208,9240,9192,9208,9166,9323,9298,9341,9298,9323,9279,9279,9258,9240,6422,6400,6399,6422,6421,6444,6444,6421,6454,6400,6380,6379,6379,6380,6370,6471,6472,6489,6471,6454,6462,9422,9445,9399,9443,9422,9397,9397,9421,9442,9475,9492,9442,9399,9380,9357,6488,6489,6504,6492,6488,6504,9166,9149,9164,16801,16799,16797,9119,9132,9149,5601,5566,5585,5584,5566,5602,5617,5583,5600,5637,5599,5617,5584,5602,5600,5637,5641,5599,5619,5641,5620,5653,5641,5662,5679,5667,5653,5667,5690,5700,16059,16062,16017,16060,16081,16037,16082,16061,16037,16083,16060,16038,16083,16038,16062,16039,16061,16084,16059,16104,16062,5726,5721,5715,5708,5700,5715,6413,6401,6380,6424,6436,6402,6401,6413,6424,6436,6449,6425,6453,6428,6450,6449,6450,6425,6461,6453,6470,9450,9449,9482,9364,9402,9361,9382,9402,9427,9323,9341,9364,9449,9382,9427,9225,9194,9208,9258,9225,9240,9194,9166,9208,9322,9279,9323,9279,9280,9258,6422,6423,6400,6422,6444,6445,6445,6444,6454,6413,6380,6400,6488,6471,6489,6471,6464,6454,9399,9356,9422,9422,9356,9397,9397,9379,9421, +9421,9461,9442,6499,6481,6492,9475,9442,9461,9399,9357,9356,6488,6492,6464,9166,9134,9149,9118,9132,9091,9119,9091,9132,9119,9149,9134,9103,9131,9118,5618,5602,5566,5617,5600,5638,5637,5617,5651,5639,5600,5602,5637,5662,5641,5662,5679,5653,5667,5679,5690,5710,5700,5690,16105,16081,16060,16037,16081,16082,16082,16106,16061,16105,16060,16083,16083,16062,16107,16106,16084,16061,16104,16107,16062,5726,5715,5730,5716,5715,5700,6424,6448,6436,6413,6435,6424,6436,6448,6449,6453,6450,6469,6468,6450,6449,6453,6469,6470,9382,9449,9450,9382,9361,9402,9364,9361,9342,9323,9364,9342,9225,9195,9194,9258,9256,9225,9194,9167,9166,9322,9280,9279,9322,9323,9342,9256,9258,9280,6422,6445,6423,6400,6423,6413,6454,6464,6445,6488,6464,6471,9379,9397,9356,9379,9423,9421,9461,9421,9423,6500,6481,6499,6481,6464,6492,9356,9357,9315,9167,9134,9166,9103,9118,9091,9092,9091,9119,9104,9119,9134,5618,5640,5602,5639,5638,5600,5651,5617,5638,5637,5651,5662,5602,5652,5639,5679,5662,5696,5679,5701,5690,5710,5716,5700,5710,5690,5709,8815,8681,8849,16081,16117,16082,16082,16118,16106,16083,16119,16105,5730,5733,5736,16106,16120,16084,5715,5725,5730,5725,5715,5716,6447,6448,6424,6435,6413,6434,6447,6424,6435,6448,6467,6449,6469,6450,6478,6468,6478,6450,6468,6449,6467,6470,6469,6487,9382,9450,9403,9320,9361,9382,9319,9342,9361,9195,9225,9239,9167,9194,9195,9256,9239,9225,9322,9299,9280,9322,9342,9299,9256,9280,9241,6446,6423,6445,6434,6413,6423,6445,6464,6446,9379,9356,9339,9379,9398,9423,9461,9423,9444,6482,6481,6500,6465,6464,6481,9356,9315,9314,9150,9134,9167,9077,9103,9091,9069,9091,9092,9104,9092,9119,9150,9104,9134,5602,5640,5652,5639,5663,5638,5663,5651,5638,5676,5662,5651,5662,5686,5696,5701,5679,5696,5690,5701,5709,5710,5723,5716,5710,5709,5723,8681,8815,8781,16081,16135,16117,16118,16082,16117,16136,16106,16118,8781,8815,8850,5725,5733,5730,16106,16137,16120,5725,5716,5723,6447,6466,6448,6459,6435,6434,6447,6435,6459,6466,6467,6448,6486,6469,6478,6468,6485,6478,6468,6467,6483,6486,6487,6469,9383,9382,9403,9320,9319,9361,9382,9383,9320,9319,9299, +9342,9195,9239,9224,9176,9167,9195,9256,9224,9239,9299,9252,9280,9252,9241,9280,9256,9241,9224,6434,6423,6446,6465,6446,6464,9356,9314,9339,9398,9379,9339,9398,9444,9423,9461,9444,9474,6482,6465,6481,9495,9461,9474,9150,9167,9176,9077,9091,9069,9069,9092,9078,9104,9078,9092,9133,9104,9150,5640,5665,5652,5639,5677,5663,5676,5651,5663,5686,5662,5676,5686,5697,5696,5713,5701,5696,5709,5701,5713,5723,5709,5722,8681,8781,8713,8681,8648,8717,16136,16137,16106,8647,8648,8545,8816,8781,8850,5725,5735,5733,8747,8851,8817,6447,6459,6466,6460,6459,6434,6466,6483,6467,6478,6485,6486,6485,6468,6483,9428,9376,9403,9383,9403,9362,9320,9294,9319,9320,9383,9362,9319,9252,9299,9193,9195,9224,9195,9193,9176,9209,9241,9252,9224,9241,9209,6434,6446,6460,6465,6460,6446,9291,9339,9314,9395,9398,9339,9398,9419,9444,9420,9474,9444,6476,6465,6482,6482,6501,6493,9150,9176,9165,9043,9077,9069,9055,9069,9078,9104,9105,9078,9133,9105,9104,9165,9133,9150,9077,9043,9068,5677,5676,5663,5697,5686,5676,5713,5696,5720,5709,5713,5722,8817,8852,8782,8746,8713,8781,8677,8681,8713,8681,8612,8648,8647,8545,8611,8545,8648,8612,8816,8746,8781,5725,5737,5735,8747,8817,8782,6466,6459,6477,6460,6476,6459,6484,6483,6466,6485,6503,6486,6485,6483,6503,9376,9428,9418,9362,9403,9376,9320,9275,9294,9252,9319,9294,9320,9362,9336,9193,9224,9209,9165,9176,9193,9209,9252,9236,6476,6460,6465,9291,9337,9339,9419,9398,9395,9395,9339,9377,9420,9444,9419,9420,9460,9474,6493,6476,6482,6501,6484,6493,9043,9069,9055,9055,9078,9070,9105,9093,9078,9133,9117,9105,9165,9151,9133,5697,5676,5677,8821,8887,8886,8852,8887,8821,8782,8852,8786,8746,8645,8713,8612,8681,8677,8645,8677,8713,8747,8746,8816,8678,8747,8782,6477,6459,6476,6466,6477,6484,6502,6483,6484,6503,6483,6502,9376,9418,9375,9336,9362,9376,9336,9275,9320,9252,9294,9275,9177,9193,9209,9165,9193,9177,9236,9252,9275,9205,9209,9236,9337,9291,9290,9337,9377,9339,9419,9395,9378,9354,9395,9377,9378,9420,9419,9441,9460,9420,6477,6476,6493,6484,6477,6493,9093,9070,9078,9105,9117,9093,9151,9117,9133,9177,9151,9165,8821,8786,8852,8782, +8786,8678,8645,8746,8714,8747,8714,8746,8678,8714,8747,9418,9441,9396,9418,9396,9375,9375,9353,9376,9336,9376,9353,9336,9313,9275,9177,9209,9205,9236,9275,9271,9205,9236,9234,9354,9337,9290,9337,9354,9377,9354,9378,9395,9378,9396,9420,9396,9441,9420,9177,9172,9151,8645,8714,8678,9355,9375,9396,9375,9312,9353,9336,9353,9313,9275,9313,9271,9177,9205,9172,9234,9236,9271,9354,9290,9338,9354,9338,9378,9355,9396,9378,9355,9312,9375,9312,9313,9353,9313,9312,9271,9234,9271,9270,9338,9290,9312,9378,9338,9355,9338,9312,9355,9312,9270,9271,9270,9312,9290,9958,9978,9984,9958,9968,9978,9978,9994,9984,9977,9958,9984,9968,9958,9950,9968,9983,9978,10005,9994,9978,10002,9984,9994,9958,9977,9967,9977,9984,9993,9958,9943,9950,9968,9950,9966,9966,9983,9968,9978,9983,9992,10005,10016,9994,9978,9992,10005,9984,10002,9993,9994,10017,10002,9977,9969,9967,9943,9958,9967,10003,9977,9993,9943,9937,9950,9950,9949,9966,9966,9965,9983,9992,9983,9976,10016,10005,10015,9994,10016,10029,10005,9992,10015,10002,10013,9993,10017,9994,10029,10017,10013,10002,9985,9969,9977,9969,9943,9967,9977,10003,10004,10003,9993,10014,9937,9943,9928,9950,9937,9949,9949,9965,9966,9965,9976,9983,9992,9976,10001,10015,10041,10016,10029,10016,10042,10012,10015,9992,10026,9993,10013,10029,10043,10017,10017,10038,10013,9971,9969,9985,9977,10004,9985,9959,9943,9969,10003,10027,10004,10026,10014,9993,10027,10003,10014,9943,9951,9928,9933,9937,9928,9937,9942,9949,9965,9949,9957,9965,9957,9976,9991,10001,9976,9992,10001,10012,10060,10041,10015,10041,10042,10016,10042,10061,10029,10015,10012,10011,10026,10013,10038,10029,10061,10043,10043,10055,10017,10017,10055,10038,9969,9971,9952,9985,9987,9971,10006,9985,10004,9951,9943,9959,9952,9959,9969,10028,10004,10027,10026,10039,10014,10027,10014,10040,9951,9944,9928,9942,9937,9933,9923,9933,9928,9942,9932,9949,9941,9957,9949,9976,9957,9975,10011,10001,9991,9991,9976,9975,10012,10001,10011,10060,10076,10041,10054,10060,10015,10041,10077,10042,10042,10078,10061,10015,10011,10037,10056,10026,10038,10043,10061,10079,10055,10043,10080, +10073,10038,10055,10006,9987,9985,9971,9987,9979,10028,10006,10004,9944,9951,9959,9959,9952,9944,10027,10040,10028,10039,10026,10057,10039,10058,10014,5954,5927,5944,9932,9942,9933,9932,9933,9923,9932,9941,9949,9957,9941,9946,9961,9975,9957,10011,9991,10025,9990,9991,9975,10060,10092,10076,10076,10077,10041,10093,10060,10054,10054,10015,10037,10077,10078,10042,10094,10061,10078,10011,10025,10037,10026,10056,10057,10056,10038,10073,10061,10094,10079,10079,10080,10043,10080,10090,10055,10073,10055,10090,10008,9987,10006,9996,9979,9987,10030,10006,10028,10040,10074,10028,5889,5900,5914,5900,5927,5914,5927,5902,5944,9932,9935,9941,9946,9941,9935,9946,9961,9957,9975,9961,9982,10023,10025,9991,9991,9990,10010,9990,9975,9982,10092,10060,10093,10107,10076,10092,10076,10108,10077,10054,10089,10093,10025,10054,10037,10108,10078,10077,10094,10078,10109,5889,5899,5863,10073,10091,10056,10110,10079,10094,10080,10079,10111,10080,10112,10090,10073,10090,10091,10008,9996,9987,10006,10030,10008,10028,10059,10030,5928,5902,5915,5900,5889,5876,5927,5900,5901,5927,5901,5902,9939,9946,9935,9961,9946,9953,9982,9961,9988,10053,10025,10023,9991,10010,10023,10010,9990,10000,9982,10000,9990,10093,10128,10092,10107,10108,10076,10107,10092,10128,10071,10089,10054,10089,10126,10093,10025,10071,10054,10078,10108,10109,6541,6562,6543,5878,5863,5899,5889,5863,5864,10110,10129,10079,6541,6525,6532,10129,10111,10079,10111,10112,10080,10008,10019,9996,10030,10032,10008,10059,10075,10030,5915,5902,5890,5876,5889,5864,5900,5876,5901,5877,5902,5901,9946,9939,9953,9973,9961,9953,9980,9988,9961,9999,9982,9988,10025,10053,10071,10023,10069,10053,10010,10036,10023,10024,10010,10000,10000,9982,9999,10144,10128,10093,10107,10146,10108,10147,10107,10128,10106,10089,10071,10106,10126,10089,10144,10093,10126,10146,10109,10108,6543,6562,6552,6541,6543,6525,5866,5863,5878,5829,5864,5863,10129,10110,10148,6520,6532,6525,10111,10129,10148,10112,10111,10149,10019,10008,10032,10031,9996,10019,10062,10032,10030,5915,5890,5926,10062,10030,10075,5902,5877,5890,5864,5852, +5876,5876,5877,5901,9953,9939,9956,9980,9961,9973,9972,9973,9953,9997,9988,9980,9997,9999,9988,10088,10071,10053,10069,10023,10052,10088,10053,10069,10036,10010,10024,10052,10023,10036,10035,10024,10000,9999,10022,10000,10165,10128,10144,10147,10146,10107,10166,10147,10128,10071,10088,10106,10124,10126,10106,10164,10144,10126,6552,6562,6570,6543,6552,6534,6543,6534,6525,5863,5866,5851,5829,5852,5864,5863,5851,5829,6532,6520,6540,6516,6520,6525,10149,10111,10148,10045,10019,10032,10031,10019,10046,10064,10032,10062,5893,5926,5890,5926,5933,5949,5865,5890,5877,5876,5852,5853,5876,5853,5877,9953,9956,9972,9972,9980,9973,9980,9998,9997,9999,9997,10020,10087,10069,10052,10088,10069,10087,10036,10024,10051,10052,10036,10070,10035,10051,10024,10035,10000,10022,10022,9999,10033,10165,10166,10128,10144,10185,10165,10147,10186,10146,10166,10186,10147,10106,10088,10124,10124,10163,10126,10184,10144,10164,10126,10163,10164,10146,10186,10204,6552,6544,6534,6525,6534,6521,5852,5829,5838,6533,6540,6520,6520,6516,6513,6525,6521,6516,10019,10045,10046,10045,10032,10064,10063,10031,10046,10064,10062,10095,5926,5893,5933,5893,5890,5888,5933,5918,5949,5888,5890,5865,5865,5877,5853,5853,5852,5838,10020,9997,9998,9999,10020,10033,10087,10052,10070,10124,10088,10087,10051,10072,10036,10072,10070,10036,10022,10051,10035,10022,10033,10050,10166,10165,10202,10184,10185,10144,10185,10203,10165,10166,10205,10186,10124,10179,10163,10184,10164,10201,10163,10201,10164,6571,6552,6579,6552,6555,6544,6527,6534,6544,6527,6521,6534,5829,5809,5838,6520,6526,6533,6514,6513,6516,6520,6513,6526,6514,6516,6521,10046,10045,10082,10083,10045,10064,10046,10082,10063,10095,10099,10064,5933,5893,5918,5893,5888,5881,5888,5865,5862,5839,5865,5853,5853,5838,5831,9998,10021,10020,10020,10047,10033,10070,10105,10087,10124,10087,10141,10068,10072,10051,10072,10104,10070,10022,10068,10051,10050,10033,10047,10050,10067,10022,10202,10165,10203,10166,10202,10205,10227,10185,10184,10228,10203,10185,10205,10229,10186,10124,10158,10179,10179,10158,10163,10184,10201,10227, +10226,10201,10163,6555,6552,6571,6555,6535,6544,6527,6544,6535,6527,6514,6521,5838,5809,5831,6512,6513,6514,6513,6524,6526,10045,10097,10082,10045,10083,10098,10064,10099,10083,10096,10063,10082,5918,5920,5948,5907,5918,5893,5881,5888,5862,5870,5893,5881,5839,5862,5865,5853,5831,5839,10021,9998,10009,10021,10047,10020,10104,10105,10070,10087,10105,10125,10141,10087,10125,10124,10141,10158,10103,10072,10068,10122,10104,10072,10022,10067,10068,10065,10050,10047,10050,10086,10067,10240,10202,10203,10241,10205,10202,10227,10228,10185,10228,10242,10203,10205,10243,10229,10163,10158,10221,10226,10227,10201,10226,10163,10221,10262,10229,10243,6553,6535,6555,6527,6535,6522,6527,6522,6514,5818,5831,5809,6515,6513,6512,6512,6514,6517,6513,6518,6524,10045,10098,10097,10114,10082,10097,10115,10098,10083,10116,10083,10099,10114,10096,10082,5920,5918,5907,5948,5920,5919,5893,5870,5907,5844,5881,5862,5844,5870,5881,5839,5837,5862,5818,5839,5831,10009,10034,10021,10021,10065,10047,10104,10142,10105,10103,10122,10072,10068,10123,10103,10104,10122,10139,10068,10067,10102,10065,10100,10050,10086,10050,10100,10067,10086,10102,10240,10241,10202,10240,10203,10242,10241,10243,10205,10260,10228,10227,10242,10228,10261,10227,10226,10259,10221,10257,10226,10274,10262,10243,6545,6535,6553,6528,6522,6535,6522,6517,6514,6513,6515,6518,6515,6512,6519,6519,6512,6517,6530,6524,6518,10098,10132,10097,10097,10133,10114,10134,10098,10115,10115,10083,10116,5936,5948,5919,10114,10135,10096,5894,5920,5907,5919,5920,5894,5907,5870,5894,5844,5862,5837,5870,5844,5856,5839,5818,5837,10009,10048,10034,10034,10049,10021,10021,10049,10065,10104,10160,10142,10103,10139,10122,10121,10123,10068,10123,10140,10103,10159,10104,10139,10121,10068,10102,10065,10085,10100,10086,10100,10119,10086,10120,10102,10240,10270,10241,10271,10240,10242,10272,10243,10241,10260,10261,10228,10227,10259,10260,10273,10242,10261,10259,10226,10257,10221,10256,10257,10243,10290,10274,6528,6535,6545,10318,10331,10274,6522,6528,6517,6523,6518,6515,6523,6515,6519,6519,6517,6528,6518,6536, +6530,10134,10132,10098,10097,10132,10133,10114,10133,10135,10115,10152,10134,5936,5934,5961,5936,5919,5909,5909,5919,5894,5882,5894,5870,5856,5882,5870,1552,1577,1536,10066,10049,10034,10065,10049,10085,10180,10160,10104,10139,10103,10156,10123,10121,10138,10123,10157,10140,10140,10156,10103,10104,10159,10180,10156,10159,10139,10102,10138,10121,10100,10085,10117,10117,10119,10100,10086,10119,10120,10120,10138,10102,10270,10240,10271,10270,10288,10241,10242,10289,10271,10290,10243,10272,10272,10241,10288,10261,10260,10287,2589,2623,2590,10289,10242,10273,10273,10261,10287,2590,2574,2554,2539,2554,2574,10305,10274,10290,6554,6528,6545,10305,10318,10274,6529,6518,6523,6523,6519,6531,6528,6531,6519,6518,6529,6536,6547,6530,6536,10168,10132,10134,10132,10169,10133,10170,10135,10133,10115,10171,10152,10134,10152,10168,5936,5909,5934,5961,5934,5960,5909,5894,5882,5882,5856,5892,1552,1536,1491,10084,10049,10066,10084,10085,10049,10160,10180,10177,10157,10123,10138,10157,10176,10140,10177,10156,10140,10180,10159,10177,10159,10156,10177,10084,10117,10085,10117,10153,10119,10154,10120,10119,10120,10155,10138,10302,10270,10271,10270,10303,10288,10302,10271,10289,10272,10304,10290,10303,10272,10288,2703,2623,2687,2589,2620,2623,2554,2589,2590,2673,2703,2687,10305,10290,10319,6528,6554,6556,10318,10305,10330,6523,6537,6529,6523,6531,6537,6546,6531,6528,6547,6536,6529,6560,6530,6547,10132,10168,10169,10133,10169,10190,10133,10190,10170,10191,10152,10171,10152,10192,10168,5909,5908,5934,5934,5935,5960,5882,5908,5909,5892,5856,5880,5908,5882,5892,1491,1535,1552,10066,10101,10084,10157,10138,10175,10176,10157,10196,10140,10176,10177,10084,10136,10117,10136,10153,10117,10154,10119,10153,10154,10155,10120,10175,10138,10155,10270,10302,10303,10272,10303,10304,10304,10317,10290,2687,2623,2674,2620,2589,2586,2641,2623,2620,2687,2655,2673,10290,10329,10319,10305,10319,10330,6554,6572,6556,6528,6556,6546,6548,6529,6537,6531,6550,6537,6531,6546,6550,6547,6529,6548,6530,6560,6558,6547,6565,6560,10168,10207,10169,10190,10169,10208,10210,10170, +10190,5983,5959,5972,5959,5960,5935,10152,10211,10192,10212,10168,10192,5934,5908,5935,5880,5906,5892,5917,5908,5892,1490,1535,1491,10118,10084,10101,10196,10157,10175,10176,10196,10218,10118,10136,10084,10136,10173,10153,10154,10153,10193,10155,10154,10193,10195,10175,10155,10328,10303,10302,10303,10317,10304,10290,10317,10329,2674,2623,2641,2655,2687,2674,2641,2620,2586,10319,10329,10345,10319,10346,10330,6572,6564,6556,6564,6546,6556,6548,6537,6550,6563,6550,6546,6547,6548,6565,6558,6560,6576,6578,6560,6565,10168,10212,10207,10207,10208,10169,10230,10190,10208,10230,10210,10190,5959,5947,5972,5959,5935,5932,10231,10192,10211,10212,10192,10231,5917,5935,5908,5906,5880,5905,5917,5892,5906,1490,1489,1535,1490,1491,1441,10118,10101,10137,10196,10175,10234,10218,10196,10236,10118,10137,10136,10173,10136,10174,10173,10193,10153,10216,10155,10193,10195,10217,10175,10155,10216,10195,10303,10328,10343,10303,10343,10317,10344,10329,10317,2640,2674,2641,2655,2674,2640,2640,2641,2586,10329,10359,10345,10319,10345,10346,6572,6583,6564,6564,6573,6546,6548,6550,6566,6563,6566,6550,6563,6546,6573,6548,6566,6565,6587,6576,6560,6588,6558,6576,6587,6560,6578,6578,6565,6580,10244,10207,10212,10245,10208,10207,10246,10230,10208,10247,10210,10230,5959,5932,5947,5947,5971,5972,5932,5935,5917,5999,5972,5971,10231,10248,10212,5905,5930,5906,5906,5932,5917,1490,1440,1489,1441,1440,1490,10234,10175,10217,10196,10234,10251,10236,10196,10251,10136,10137,10174,10213,10173,10174,10213,10193,10173,10232,10216,10193,10217,10195,10235,10195,10216,10232,10359,10329,10344,10372,10345,10359,10372,10346,10345,10346,10394,10403,6582,6573,6564,6580,6566,6563,6563,6573,6581,6580,6565,6566,6587,6594,6576,6577,6558,6588,6595,6588,6576,6587,6578,6598,6598,6578,6580,10245,10207,10244,10212,10263,10244,10245,10246,10208,10264,10230,10246,10264,10247,10230,5932,5906,5947,5957,5971,5947,5998,5999,5971,5999,5998,6025,10212,10248,10263,5930,5905,5931,5945,5906,5930,1440,1442,1489,1440,1441,1378,10217,10253,10234,10234,10253,10251,10268,10236,10251,10194,10174, +10137,10214,10213,10174,10213,10232,10193,10195,10252,10235,10235,10253,10217,10195,10232,10252,10359,10344,10370,10386,10372,10359,10346,10372,10387,10394,10346,10387,10403,10394,10411,6573,6582,6590,6582,6564,6591,6563,6581,6580,6581,6573,6590,6603,6594,6587,6594,6604,6576,6597,6577,6588,6595,6597,6588,6604,6595,6576,6599,6587,6598,6598,6580,6581,10275,10245,10244,10263,10276,10244,10246,10245,10277,10264,10246,10278,5957,5947,5906,5980,5971,5957,5980,5998,5971,6010,6025,5998,10280,10263,10248,5930,5931,5956,5906,5945,5957,5930,5958,5945,1440,1379,1442,10215,10194,10137,1378,1379,1440,10282,10251,10253,10268,10285,10236,10268,10251,10282,10194,10214,10174,10214,10249,10213,10213,10249,10232,10252,10266,10235,10235,10267,10253,10249,10252,10232,10385,10359,10370,10386,10387,10372,10359,10393,10386,10394,10387,10404,10394,10404,10411,6600,6590,6582,6582,6591,6601,6581,6590,6599,6594,6603,6610,6603,6587,6599,6594,6610,6604,6605,6577,6597,6611,6597,6595,6595,6604,6612,6599,6598,6581,10275,10277,10245,10244,10291,10275,6035,6007,6021,10291,10244,10276,10246,10277,10278,10292,10264,10278,5957,5968,5980,6010,5998,5980,6035,6010,6007,5930,5956,5958,5957,5945,5968,5958,5969,5945,1379,1388,1442,1442,1388,1416,1378,1305,1379,10253,10267,10282,10285,10268,10298,10268,10282,10299,10194,10233,10214,10214,10250,10249,10283,10266,10252,10266,10284,10235,10284,10267,10235,10249,10250,10252,10359,10385,10393,10386,10402,10387,10393,10401,10386,10410,10404,10387,10419,10411,10404,6600,6599,6590,6582,6607,6600,6601,6591,6608,6582,6601,6607,6615,6610,6603,6599,6600,6603,6618,6604,6610,6605,6597,6614,6611,6614,6597,6612,6611,6595,6612,6604,6619,10306,10277,10275,10306,10275,10291,6021,6007,5993,10307,10291,10276,10308,10278,10277,10278,10309,10292,5980,5968,5993,5980,6007,6010,5978,5958,5956,5979,5968,5945,5958,5981,5969,5945,5969,5982,1379,1316,1388,1416,1388,1354,1316,1379,1305,10282,10267,10297,10268,10299,10298,10285,10298,10314,10282,10297,10299,1416,1354,1387,10250,10214,10233,10284,10266,10283,10252,10250,10283,10267,10284,10296, +10393,10385,10401,10409,10402,10386,10410,10387,10402,10386,10401,10409,10410,10418,10404,10419,10404,10430,6615,6600,6607,6601,6608,6616,6617,6607,6601,6615,6624,6610,6615,6603,6600,6619,6604,6618,6618,6610,6624,6621,6605,6614,6611,6625,6614,6626,6611,6612,6612,6619,6627,10277,10306,10320,10291,10307,10306,5980,5993,6007,5993,6020,6021,6021,6020,6048,10308,10321,10278,10308,10277,10320,10278,10321,10309,10309,10323,10292,5992,5993,5968,5978,5991,5958,5968,5979,5992,5945,5982,5979,5981,5958,5991,5981,5994,5969,5969,5995,5982,1388,1316,1317,1388,1353,1354,1305,1264,1316,10297,10267,10296,10298,10299,10326,10314,10298,10327,10326,10299,10297,1387,1354,1315,10250,10233,10265,10284,10283,10312,10295,10283,10250,10284,10313,10296,10385,10408,10401,10417,10402,10409,10417,10410,10402,10416,10409,10401,10428,10418,10410,10418,10429,10404,10430,10404,10429,6608,6622,6616,6617,6615,6607,6601,6616,6623,6617,6601,6623,6615,6617,6624,6619,6618,6624,6614,6625,6621,6611,6632,6625,6626,6633,6611,6626,6612,6634,6631,6627,6619,6612,6627,6634,10306,10332,10320,10307,10333,10306,5993,5992,6020,6020,6033,6048,10308,10334,10321,10308,10320,10334,10309,10321,10335,10336,10323,10309,6006,5992,5979,5979,5982,6006,5981,5991,5994,5994,6008,5969,5969,6008,5995,5982,5995,6009,1234,1317,1316,1388,1317,1353,1277,1354,1353,1278,1316,1264,10313,10297,10296,10298,10326,10342,10342,10327,10298,10297,10341,10326,1277,1315,1354,10265,10281,10250,10295,10312,10283,10325,10284,10312,10295,10250,10281,10325,10313,10284,10416,10401,10408,10409,10427,10417,10417,10428,10410,10416,10427,10409,10418,10428,10438,10429,10418,10439,6622,6636,6629,6622,6629,6616,6623,6616,6630,6617,6623,6631,6624,6617,6631,6624,6631,6619,6621,6625,6635,6611,6638,6632,6632,6635,6625,6626,6639,6633,6611,6633,6638,6640,6626,6634,6631,6623,6627,6627,6630,6634,10306,10333,10332,10320,10332,10334,10347,10333,10307,6020,5992,6019,6033,6020,6019,6048,6033,6058,10334,10348,10321,10321,10348,10335,10336,10309,10335,10350,10323,10336,5992,6006,6019,5982,6009,6006,6022,6008,5994,6023,5995, +6008,5995,6024,6009,1234,1276,1317,1278,1234,1316,1317,1276,1353,1276,1277,1353,1109,1278,1264,10297,10313,10340,10356,10342,10326,16829,16830,16831,10341,10297,10340,10326,10341,10356,1277,1233,1315,10281,10265,10294,10337,10312,10295,10312,10337,10325,10311,10295,10281,10427,10435,10417,10436,10428,10417,10446,10438,10428,10418,10438,10439,6636,6675,6662,12212,12213,12214,6616,6629,6637,6616,6637,6630,6627,6623,6630,6632,6638,6644,6635,6632,6645,6640,6639,6626,6646,6633,6639,6644,6638,6633,6640,6634,6643,6630,6643,6634,10361,10332,10333,10334,10332,10362,10363,10333,10347,6006,6033,6019,6033,6047,6058,10334,10362,10348,10335,10348,10365,10336,10335,10350,10350,10364,10323,6006,6009,6034,6008,6022,6037,5995,6023,6024,6008,6037,6023,6038,6009,6024,1276,1234,1191,1234,1278,1109,1276,1189,1277,2301,2310,2305,10341,10340,10368,13951,13947,13949,1277,1190,1233,1314,1315,1233,10281,10294,10310,10337,10295,10324,10295,10311,10324,10310,10311,10281,10436,10417,10435,10446,10428,10436,10446,10454,10438,10438,10455,10439,6674,6662,6675,6636,6662,6642,6629,6642,6637,6630,6637,6643,6644,6645,6632,6640,6650,6639,6633,6646,6651,6639,6652,6646,6633,6651,6644,6643,6648,6640,10361,10362,10332,10333,10363,10361,6069,6058,6047,6047,6033,6006,10373,10348,10362,10348,10373,10365,10374,10335,10365,10375,10350,10335,10350,10376,10364,6009,6038,6034,6047,6006,6034,6024,6023,6050,6051,6023,6037,6024,6052,6038,1234,1109,1191,1189,1276,1191,1190,1277,1189,2295,2301,2305,13949,13947,13941,1148,1233,1190,1235,1314,1233,1314,1235,1352,10324,10311,10338,1355,1352,1235,10446,10461,10454,10462,10438,10454,10462,10455,10438,10463,10439,10455,6674,6668,6662,6662,6654,6642,6642,6648,6637,6643,6637,6648,6645,6644,6655,6648,6650,6640,6639,6650,6658,6646,6659,6651,6639,6658,6652,6646,6652,6660,6661,6644,6651,10388,10362,10361,10363,10389,10361,6059,6069,6047,10362,10388,10373,10365,10373,10374,10335,10374,10375,10390,10350,10375,10350,10390,10376,6059,6034,6038,6034,6059,6047,6023,6060,6050,6061,6024,6050,6023,6051,6060,6061,6052,6024,6038,6052,6059,1109, +1108,1191,1108,1189,1191,1107,1190,1189,13941,13946,13949,1188,1233,1148,1107,1148,1190,1188,1235,1233,1318,1355,1235,10454,10461,10470,10462,10454,10471,10472,10455,10462,10463,10455,10472,6668,6674,6677,6668,6654,6662,6654,6648,6642,6661,6655,6644,6648,6654,6650,6650,6663,6658,6646,6664,6659,6651,6659,6665,6658,6666,6652,6660,6652,6666,6664,6646,6660,6661,6651,6667,10389,10388,10361,10363,10395,10389,6059,6081,6069,10388,10396,10373,10373,10397,10374,10374,10398,10375,10399,10390,10375,10390,10399,10376,6070,6050,6060,6061,6050,6070,6061,6073,6052,6052,6074,6059,1109,1061,1108,1189,1108,1107,13946,13941,13943,10454,10470,10477,10477,10471,10454,10462,10471,10472,6683,6677,6674,6668,6677,6672,6668,6663,6654,15943,15922,15896,6650,6654,6663,6658,6663,6666,6670,6659,6664,6671,6665,6659,6651,6665,6667,6672,6660,6666,6664,6660,6673,16014,15989,15943,10389,10395,10388,6069,6081,6089,6081,6059,6074,10388,10405,10396,10373,10396,10406,10373,10406,10397,10398,10374,10397,10407,10375,10398,10399,10375,10407,6083,6061,6070,6061,6083,6073,6052,6073,6074,1061,1109,986,985,1108,1061,1107,1108,985,10477,10470,10486,10477,10487,10471,10472,10471,10488,6683,6688,6677,6677,6682,6672,6672,6663,6668,15968,15922,15943,6672,6666,6663,6671,6659,6670,6664,6673,6670,6665,6671,6676,6665,6676,6667,6672,6673,6660,6667,6676,6681,15943,15989,15968,10388,10395,10412,6101,6089,6081,6081,6074,6095,10412,10405,10388,10405,10406,10396,10406,10413,10397,10413,10398,10397,6083,6094,6073,6074,6073,6094,985,1061,986,10477,10486,10492,10487,10477,10492,10488,10471,10487,6677,6688,6682,6672,6682,6673,15968,15967,15922,6671,6670,6678,6673,6679,6670,6680,6676,6671,6687,6681,6676,6681,6694,6699,6119,6089,6108,6108,6089,6101,6081,6095,6101,6074,6094,6095,10405,10412,10420,10406,10405,10421,10413,10406,10422,10398,10413,10423,6103,6094,6083,10497,10492,10486,10487,10492,10498,10488,10487,10499,6691,6682,6688,6673,6682,6679,15967,15968,16013,6678,6670,6684,6685,6671,6678,6679,6684,6670,6686,6676,6680,6680,6671,6685,6681,6687,6694,6687,6676,6686,6705,6699,6694, +6119,6108,6130,6101,6113,6108,6101,6095,6113,6095,6094,6113,10420,10421,10405,10406,10421,10422,10431,10413,10422,10431,10423,10413,6103,6112,6094,10492,10497,10503,10498,10492,10503,10487,10498,10499,6691,6679,6682,16035,16013,15968,6678,6684,6689,6685,6678,6690,6679,6692,6684,6686,6680,6693,6680,6685,6693,6698,6694,6687,6686,6696,6687,6698,6705,6694,6130,6108,6141,6123,6108,6113,6123,6113,6094,10420,10440,10421,10421,10441,10422,10442,10431,10422,6112,6103,6122,6112,6123,6094,10508,10503,10497,10498,10503,10510,10499,10498,10511,6691,6692,6679,16013,16035,16057,6692,6689,6684,6690,6678,6689,6695,6685,6690,6693,6696,6686,6685,6697,6693,6696,6698,6687,6698,6712,6705,6123,6141,6108,6149,6130,6141,6149,6160,6130,10441,10421,10440,10442,10422,10441,6122,6103,6133,6122,6123,6112,10514,10503,10508,6713,6700,6721,6692,6706,6700,16079,16057,16035,16013,16057,16034,6692,6700,6689,6701,6690,6689,6685,6695,6697,6695,6690,6702,6693,6703,6696,6693,6697,6704,6709,6698,6696,6698,6720,6712,16103,16079,16035,6122,6141,6123,6149,6141,6144,6160,6149,6170,6178,6187,6160,6197,6187,6178,6133,6103,6134,6122,6133,6144,6735,6728,6713,6700,6713,6701,16102,16057,16079,16078,16034,16057,6701,6689,6700,6702,6690,6701,6707,6697,6695,6695,6702,6708,6703,6693,6704,6710,6696,6703,6704,6697,6711,6715,6698,6709,6696,6716,6709,6715,6720,6698,6720,6727,6712,6141,6122,6144,6153,6149,6144,6170,6149,6153,6160,6170,6178,6134,6152,6133,6153,6144,6133,6713,6728,6714,6713,6714,6701,16102,16078,16057,16116,16102,16079,16034,16078,16054,6702,6701,6714,6707,6711,6697,6707,6695,6708,6714,6708,6702,6704,6717,6703,6696,6710,6716,6703,6718,6710,6711,6719,6704,6715,6709,6724,6709,6716,6724,6729,6720,6715,16116,16079,16134,6178,6170,6153,6152,6164,6133,6133,6165,6153,6714,6728,6723,16078,16102,16054,16132,16102,16116,6719,6711,6707,6708,6722,6707,6714,6723,6708,6719,6717,6704,6725,6703,6717,6726,6716,6710,6725,6718,6703,6726,6710,6718,6730,6715,6724,6731,6724,6716,6738,6720,6729,6739,6729,6715,6738,6743,6720,6164,6152,6173,6133,6164,6165,16102,16100,16054,16102,16132, +16100,16153,16132,16116,6719,6707,6722,6723,6722,6708,6731,6716,6726,6725,6734,6718,6734,6726,6718,6730,6739,6715,6724,6731,6730,16198,16182,16167,6729,6739,6744,16167,16153,16116,6731,6726,6740,6734,6740,6726,6745,6739,6730,6731,6746,6730,6729,6751,6756,16182,16153,16167,6750,6744,6739,6729,6744,6751,6731,6740,6748,6734,6749,6740,6745,6750,6739,6745,6730,6752,6731,6748,6746,6730,6746,6752,6755,6744,6750,6751,6744,6755,6740,6754,6748,6754,6740,6749,6750,6745,6757,6745,6752,6758,6759,6746,6748,6746,6758,6752,6755,6750,6764,6762,6748,6754,6745,6758,6757,6750,6757,6764,6766,6746,6759,6762,6759,6748,6758,6746,6767,6771,6757,6758,6772,6764,6757,6767,6746,6766,6766,6759,6773,6759,6762,6773,6771,6758,6767,6771,6772,6757,6779,6767,6766,6780,6766,6773,6773,6762,6781,6782,6771,6767,6784,6772,6771,6786,6767,6779,6779,6766,6780,6780,6773,6781,6782,6784,6771,6782,6767,6786,6784,6785,6772,6782,6793,6784,6786,6793,6782,6795,6785,6784,6793,6797,6784,16820,16823,16821,6797,6795,6784,7733,7727,7741,7727,7733,7717,3681,3680,3712,16832,16833,16834,7718,7717,7733,7727,7717,7702,3680,3711,3712,3712,3737,3752,3794,3752,3786,7717,7718,7703,7733,7734,7718,7702,7717,7703,3698,3711,3680,3712,3711,3737,3737,3751,3752,3786,3752,3774,13773,13766,13760,7703,7718,7710,7718,7734,7726,7702,7703,7690,3698,3729,3711,3698,3680,3662,3711,3729,3737,3751,3737,3729,3751,3774,3752,13766,13774,13755,13766,13754,13760,7718,7726,7710,7703,7710,7696,7726,7734,7739,7703,7696,7690,3728,3729,3698,3697,3698,3662,3751,3729,3759,3774,3751,3785,13767,13755,13774,13755,13754,13766,13748,13760,13754,7716,7710,7726,7695,7696,7710,7739,7724,7726,7690,7696,7679,3749,3729,3728,3697,3728,3698,3759,3729,3749,3775,3751,3759,13787,13784,13778,13767,13774,13778,13767,13761,13755,13755,13743,13754,13743,13748,13754,7716,7695,7710,7724,7716,7726,7695,7679,7696,7739,7740,7724,7679,7686,7690,3749,3728,3750,3710,3728,3697,3759,3749,3772,3759,3787,3775,13778,13784,13779,13767,13778,13768,13761,13767,13768,13749,13755,13761,13743,13755,13749,13748,13743,13736,7716,7709,7695,7716,7724, +7709,7695,7689,7679,7725,7724,7740,7679,7671,7686,3728,3736,3750,3750,3772,3749,3736,3728,3710,3772,3784,3759,3787,3759,3784,13788,13779,13784,13778,13779,13768,13756,13761,13768,13749,13761,13750,13743,13749,13732,13743,13729,13736,7701,7695,7709,7725,7709,7724,7701,7689,7695,7679,7689,7678,7746,7725,7740,7665,7671,7679,3750,3736,3760,3750,3773,3772,3772,3773,3784,3787,3784,3801,13788,13785,13779,13769,13768,13779,13750,13761,13756,13756,13768,13769,13750,13732,13749,13743,13732,13729,13714,13736,13729,7709,7715,7701,7725,7715,7709,7689,7701,7693,7678,7689,7677,7679,7678,7665,7725,7746,7738,3760,3736,3761,3773,3750,3760,3784,3773,3800,3800,3801,3784,13785,13782,13779,13769,13779,13782,13756,13744,13750,13769,13762,13756,13737,13732,13750,13716,13729,13732,13716,13714,13729,7701,7715,7706,7723,7715,7725,7701,7706,7693,7689,7693,7677,7678,7677,7664,7664,7665,7678,13693,13691,13714,7725,7738,7723,3773,3760,3761,8806,8808,8739,8806,8772,8842,8842,8772,8841,8840,8901,8841,13756,13751,13744,13737,13750,13744,13762,13751,13756,13737,13730,13732,13716,13732,13724,13693,13714,13716,7723,7706,7715,7694,7693,7706,7677,7693,7688,7677,7670,7664,13693,13680,13691,7723,7738,7730,8774,8739,8808,8806,8739,8738,8772,8806,8738,8771,8841,8772,8840,8841,8771,13744,13751,13738,13723,13737,13744,8843,8840,8773,13737,13723,13730,13730,13724,13732,13716,13724,13705,13716,13692,13693,7723,7730,7706,7694,7688,7693,7706,7707,7694,7685,7677,7688,7685,7670,7677,7664,7670,7660,13693,13669,13680,13691,13680,13668,7738,7745,7730,8772,8738,8703,8771,8772,8703,8771,8805,8840,8807,8876,8843,13723,13744,13738,8805,8773,8840,8807,8843,8773,13730,13723,13705,13730,13705,13724,13705,13692,13716,13692,13669,13693,7706,7730,7721,7694,7685,7688,7721,7707,7706,7700,7694,7707,3326,3294,3315,3305,3293,3315,13669,13660,13680,13680,13659,13668,7730,7745,7744,8704,8771,8703,8771,8704,8805,8804,8876,8807,13731,13723,13738,8704,8773,8805,8807,8773,8737,13723,13704,13705,13705,13681,13692,13669,13692,13681,7721,7730,7736,7685,7694,7700,7721,7722,7707,7713,7700,7707, +7685,7700,7708,3294,3305,3315,3270,3293,3305,13669,13648,13660,13680,13660,13659,13668,13659,13647,7745,7752,7744,7736,7730,7744,8737,8804,8807,13715,13723,13731,8737,8773,8704,13723,13715,13704,13705,13704,13681,13681,13648,13669,7721,7736,7722,7713,7707,7722,7713,7714,7700,7708,7700,7714,3294,3270,3305,3271,3293,3270,13660,13648,13635,13660,13635,13659,13659,13635,13647,7745,7754,7752,7749,7744,7752,7736,7744,7749,8769,8804,8737,8838,8804,8769,13689,13704,13715,13689,13681,13704,13689,13648,13681,7722,7736,7743,7713,7722,7732,7714,7713,7731,3306,3281,3294,3294,3281,3270,3248,3271,3270,13648,13624,13635,13647,13635,13603,7754,7756,7752,7752,7753,7749,7736,7749,7743,8803,8838,8769,13715,13713,13689,13689,13678,13648,7722,7743,7737,7732,7722,7737,13586,13572,13540,13526,13556,13540,3306,3282,3281,3270,3281,3257,3256,3271,3248,3248,3270,3257,13646,13624,13648,13624,13603,13635,7752,7756,7753,7753,7750,7749,7743,7749,7750,8838,8803,8875,13702,13689,13713,13678,13689,13702,13667,13648,13678,7737,7743,7750,13555,13540,13572,13492,13526,13540,3258,3281,3282,3258,3257,3281,3256,3248,3234,3241,3248,3257,13624,13646,13625,13648,13667,13646,13624,13615,13603,13603,13583,13614,7755,7750,7753,8839,8875,8803,13702,13690,13678,13667,13678,13690,13555,13570,13524,13555,13525,13540,13492,13510,13526,13540,13525,13492,3258,3282,3273,3258,3241,3257,3248,3241,3234,13658,13625,13646,13624,13625,13615,13667,13658,13646,13615,13582,13603,13582,13583,13603,13570,13583,13553,8770,8839,8803,8839,8837,8900,13690,13679,13667,13553,13524,13570,13555,13524,13525,13510,13492,13480,13507,13492,13525,3273,3249,3258,3249,3241,3258,3241,3229,3234,13625,13658,13649,13604,13615,13625,13667,13679,13658,13615,13604,13582,13583,13582,13553,8839,8770,8837,8836,8900,8837,13703,13679,13690,13553,13523,13524,13507,13525,13524,13492,13465,13480,13510,13480,13509,13507,13465,13492,3273,3272,3249,3249,3235,3241,3241,3235,3229,3234,3229,3222,13670,13649,13658,13636,13625,13649,13604,13625,13636,13679,13670,13658,13582,13604,13584,13569,13553,13582,13695,13679, +13703,13553,13569,13523,13524,13523,13490,13507,13524,13490,13465,13426,13480,13491,13509,13480,13490,13465,13507,3249,3272,3250,3250,3235,3249,3229,3235,3223,3229,3213,3222,13649,13670,13671,13661,13636,13649,13626,13604,13636,13679,13695,13670,13604,13605,13584,13569,13582,13584,13523,13569,13554,13490,13523,13506,13465,13453,13426,13426,13491,13480,3297,3285,3272,13490,13479,13465,3260,3250,3272,3236,3235,3250,3235,3236,3223,3229,3223,3213,13661,13649,13671,13636,13661,13662,13626,13605,13604,13626,13636,13650,13605,13585,13584,13584,13554,13569,13523,13554,13539,13523,13539,13506,13506,13479,13490,13453,13465,13479,13443,13426,13453,13426,13508,13491,3285,3297,3296,3272,3285,3260,3242,3250,3260,3250,3242,3236,3230,3223,3236,3213,3223,3218,13682,13661,13671,6808,6804,6801,13662,13650,13636,13626,13627,13605,13627,13626,13650,13605,13606,13585,13584,13585,13554,13554,13571,13539,13494,13506,13539,13506,13493,13479,13453,13479,13454,13443,13413,13426,13443,13453,13454,3327,3316,3296,3260,3285,3296,3259,3242,3260,3242,3230,3236,3218,3223,3230,6808,6818,6814,6814,6804,6808,6802,6801,6804,6806,6801,6803,13606,13605,13627,6816,6806,6812,13589,13585,13606,13585,13571,13554,13558,13539,13571,13506,13494,13493,13527,13494,13539,13493,13454,13479,13443,13427,13413,13426,13413,13399,13454,13427,13443,3296,3316,3309,3284,3260,3296,3259,3243,3242,3260,3284,3259,3242,3243,3230,3218,3230,3231,6827,6814,6818,6809,6804,6814,6800,6801,6802,6809,6802,6804,6803,6801,6800,6812,6806,6803,13608,13606,13627,6824,6816,6812,13589,13571,13585,13589,13606,13608,13527,13539,13558,13589,13558,13571,13481,13493,13494,13527,13511,13494,13481,13454,13493,13413,13427,13400,13413,13374,13399,13454,13444,13427,13399,13374,13373,3296,3309,3284,3243,3259,3274,3284,3283,3259,3231,3230,3243,6829,6814,6827,6820,6809,6814,6800,6802,6805,6802,6809,6810,6803,6800,6807,6807,6812,6803,6832,6824,6812,13595,13589,13608,13557,13527,13558,13589,13595,13558,13494,13466,13481,13527,13541,13511,13494,13511,13466,13455,13454,13481,13427,13401,13400,13413,13400,13374, +13455,13444,13454,13427,13444,13401,13374,13346,13373,13346,13356,13373,3283,3274,3259,3243,3274,3261,3284,3308,3283,3243,3251,3231,6829,6820,6814,9001,8962,8978,6819,6809,6820,6802,6810,6805,6811,6800,6805,6810,6809,6819,6813,6807,6800,6807,6817,6812,6843,6824,6832,6832,6812,6826,13527,13557,13541,13587,13557,13558,13587,13558,13595,13481,13466,13455,13541,13528,13511,13495,13466,13511,13400,13401,13386,13386,13374,13400,13444,13455,13428,13401,13444,13428,13374,13357,13346,13346,13310,13356,3283,3295,3274,3261,3274,3275,3251,3243,3261,13272,13326,13310,3262,3231,3251,6829,6836,6820,6829,6848,6836,6819,6820,6835,6810,6815,6805,6813,6800,6811,6811,6805,6815,6810,6819,6828,6813,6817,6807,6817,6826,6812,13607,13595,13616,6826,6846,6832,13573,13541,13557,13587,13588,13557,13607,13587,13595,13445,13455,13466,13559,13528,13541,13495,13511,13528,13470,13466,13495,13386,13401,13375,13374,13386,13357,13428,13455,13445,13414,13401,13428,13357,13327,13346,13346,13311,13310,3295,3283,3307,13325,13345,13309,3251,3261,3275,13272,13310,13273,3276,3262,3251,6836,6835,6820,9000,9018,8978,6819,6835,6828,6810,6821,6815,6822,6813,6811,6823,6811,6815,6828,6821,6810,6817,6813,6825,6817,6833,6826,6853,6832,6846,6846,6826,6845,13573,13559,13541,13573,13557,13588,13587,13607,13588,13466,13470,13445,13560,13528,13559,13495,13528,13512,13495,13512,13470,13414,13375,13401,13386,13375,13358,13386,13358,13357,13415,13428,13445,13428,13402,13414,13357,13358,13327,13327,13311,13346,13273,13310,13311,13272,13288,13309,13288,13325,13309,3251,3275,3286,13240,13272,13273,7460,7431,7467,6836,6854,6835,6864,6854,6836,6835,6847,6828,6821,6830,6815,6825,6813,6822,6822,6811,6831,6823,6831,6811,6823,6815,6830,6837,6821,6828,6817,6825,6833,6845,6826,6833,6853,6846,6863,6846,6845,6862,13573,13590,13559,13573,13588,13596,13596,13588,13607,13445,13470,13447,13542,13528,13560,13560,13559,13590,13542,13512,13528,13470,13512,13482,13414,13402,13375,13358,13375,13347,13415,13402,13428,13445,13417,13415,13358,13328,13327,13311,13327,13290,13311,13290,13273,13288, +13272,13253,13288,13343,13325,7467,7477,7460,13253,13272,13240,13273,13252,13240,7460,7452,7431,6854,6847,6835,9017,9037,9000,6849,6828,6847,6838,6830,6821,6839,6825,6822,6831,6840,6822,6823,6841,6831,6823,6830,6842,6837,6838,6821,6837,6828,6849,6844,6833,6825,6844,6845,6833,6863,6846,6862,6853,6863,6870,6862,6845,6861,12246,12253,12250,13470,13456,13447,13447,13417,13445,12241,12234,12245,12241,12246,12228,13513,13512,13542,13513,13482,13512,13470,13482,13456,13402,13387,13375,13347,13375,13359,13358,13347,13328,13402,13415,13387,13415,13417,13406,13292,13327,13328,13327,13292,13290,13290,13252,13273,13271,13288,13253,13288,13323,13343,13203,13253,13240,13219,13240,13252,13342,13323,13307,7431,7452,7445,6854,6865,6847,9037,9017,9036,6849,6847,6866,6850,6830,6838,6839,6844,6825,6839,6822,6840,6831,6851,6840,6823,6842,6841,6831,6841,6851,6852,6842,6830,6837,6855,6838,6856,6837,6849,6844,6861,6845,6863,6862,6876,6870,6863,6877,12215,12216,12217,12246,12250,12228,13447,13456,13430,13447,13429,13417,12241,12228,12234,12233,12245,12234,13513,13542,13543,13496,13482,13513,13482,13467,13456,13387,13359,13375,13359,13329,13347,13347,13293,13328,13415,13406,13387,13417,13388,13406,13292,13328,13293,13290,13292,13255,13290,13255,13252,13307,13288,13271,13271,13253,13239,13288,13307,13323,13239,13253,13203,13219,13203,13240,13252,13238,13219,13342,13307,13344,13385,13342,13372,6865,6866,6847,8999,9036,9017,6856,6849,6866,6852,6830,6850,6857,6850,6838,12235,12224,12230,6840,6858,6839,6840,6851,6859,6842,6860,6841,6841,6860,6851,16835,16836,16837,6856,6855,6837,6838,6855,6857,12230,12224,12217,12215,12218,12216,6877,6863,6876,12215,12217,12219,13446,13430,13456,13430,13429,13447,13417,13429,13405,12234,12228,12223,12233,12234,12223,13530,13513,13543,13496,13467,13482,13530,13496,13513,13456,13467,13446,13378,13359,13387,13359,13349,13329,13347,13329,13293,13406,13378,13387,13417,13405,13388,13406,13388,13378,13292,13293,13275,13255,13292,13275,13252,13255,13243,13307,13271,13324,13239,13289,13271,13239,13203,13220,13219,13184, +13203,13252,13243,13238,13238,13182,13219,13344,13307,13324,13372,13342,13344,13385,13372,13398,9036,9052,9063,8999,9052,9036,6872,6856,6866,16841,16836,16844,6857,6867,6850,6840,6859,6858,6859,6851,6868,16835,16837,16839,6869,6851,6860,16838,16837,16836,6856,6871,6855,6857,6855,6867,12224,12221,12217,12220,12218,12215,12228,12218,12223,12219,12217,12221,12215,12219,12222,13430,13446,13416,13429,13430,13403,13429,13403,13405,12227,12233,12223,12233,12227,12239,13496,13497,13467,13529,13496,13530,13467,13469,13446,13359,13378,13349,13330,13329,13349,13312,13293,13329,13388,13405,13377,13388,13361,13378,13293,13256,13275,13255,13275,13244,13243,13255,13206,7500,7501,7518,7527,7510,7517,13308,13271,13289,13169,13220,13203,13184,13219,13182,13184,13169,13203,13202,13238,13243,13202,13182,13238,7493,7501,7482,7481,7493,7475,7453,7481,7475,9076,9063,9052,9052,8999,9035,6872,6871,6856,16838,16836,16841,6873,6850,6867,6859,6874,6858,6869,6868,6851,6875,6859,6868,16837,16842,16839,16845,16847,16839,16837,16838,16840,6871,6878,6855,6879,6867,6855,12224,12225,12221,12220,12223,12218,12220,12215,12222,12221,12225,12219,12219,12226,12222,13416,13446,13431,13430,13416,13403,13377,13405,13403,12227,12223,12220,12240,12239,12227,13529,13497,13496,13497,13469,13467,13529,13530,13561,13457,13446,13469,13378,13361,13349,13329,13330,13312,13330,13349,13313,13312,13276,13293,13388,13377,13361,13276,13256,13293,13275,13256,13244,13206,13255,13244,13205,13243,13206,7500,7482,7501,7517,7510,7502,7500,7517,7502,7519,7510,7528,13182,13153,13184,13169,13184,13153,13224,13202,13243,13202,13183,13182,7475,7493,7482,7453,7475,7466,9062,9076,9052,9062,9052,9035,9083,9101,9076,6887,6873,6883,6873,6867,6880,6875,6874,6859,6868,6869,6881,6875,6868,6882,16843,16842,16837,16845,16839,16842,6869,6884,6881,6892,6887,6889,16840,16843,16837,9109,9129,9101,6879,6855,6878,6867,6879,6880,12220,12222,12229,12219,12225,12231,12219,12231,12226,12232,12222,12226,13457,13431,13446,13404,13416,13431,13376,13403,13416,13377,13403,13376,12229,12227,12220,12229,12240, +12227,13529,13499,13497,13497,13499,13469,13544,13529,13561,13457,13469,13483,13313,13349,13361,13330,13277,13312,13330,13313,13277,13276,13312,13277,13361,13377,13348,13256,13276,13245,13244,13256,13225,13206,13244,13225,13205,13224,13243,13205,13206,13172,7500,7483,7482,7494,7502,7510,7500,7502,7483,7519,7503,7510,13138,13167,13169,13182,13152,13153,13138,13169,13153,13190,13202,13224,13183,13202,13168,13182,13183,13152,7482,7466,7475,7453,7466,7442,9083,9076,9062,9035,9060,9062,9109,9101,9083,6873,6880,6883,6883,6889,6887,12243,12236,12225,6882,6868,6881,12243,12252,12248,16843,16845,16842,12267,12263,12261,16854,16855,16856,16840,16846,16843,9128,9129,9109,17847,17848,17849,6879,6885,6880,12232,12229,12222,12236,12231,12225,12237,12226,12231,12232,12226,12238,13457,13432,13431,13404,13376,13416,13407,13404,13431,13377,13376,13348,12242,12240,12229,13544,13499,13529,13499,13483,13469,13562,13544,13561,13483,13468,13457,13348,13313,13361,13313,13294,13277,13277,13245,13276,13256,13245,13225,13173,13206,13225,13190,13224,13205,13172,13206,13173,13205,13172,13171,7482,7483,7466,7494,7483,7502,7494,7510,7503,13167,13150,13136,13167,13138,13150,13153,13152,13122,13153,13122,13138,13190,13168,13202,13183,13168,13152,7466,7459,7442,9083,9062,9060,9060,9035,9051,9085,9109,9083,6886,6883,6880,6886,6889,6883,12248,12236,12243,12257,12252,12261,12254,12248,12252,16843,16849,16845,12257,12261,12263,12308,12301,12304,16856,16857,16854,16840,16848,16846,16843,16846,16849,9109,9100,9128,6890,6888,6879,6885,6879,6888,16871,16864,16867,12232,12242,12229,12236,12237,12231,12237,12238,12226,12232,12238,12244,13457,13468,13432,13407,13431,13432,13404,13362,13376,13404,13407,13362,13360,13348,13376,13544,13531,13499,13499,13514,13483,13544,13562,13531,13483,13498,13468,13348,13331,13313,13313,13331,13294,13277,13294,13257,13277,13257,13245,13207,13225,13245,13173,13225,13207,13190,13205,13171,13141,13172,13173,13171,13172,13142,7476,7466,7483,7476,7483,7494,7484,7494,7503,13118,13136,13150,13150,13138,13108,13120,13122,13152,13138, +13122,13108,13190,13158,13168,13120,13152,13168,7466,7476,7459,7451,7442,7459,9085,9083,9060,9051,9074,9060,9109,9085,9100,16861,16867,16864,16861,16859,16856,12248,12247,12236,12252,12257,12254,12248,12254,12256,12263,12264,12257,12301,12298,12304,16856,16858,16857,12301,12303,12295,16848,16850,16846,9128,9100,9144,6885,6888,6891,16875,16864,16871,6899,6902,6895,12237,12236,12247,12249,12238,12237,6893,6894,6895,13458,13432,13468,13418,13407,13432,13362,13360,13376,13389,13362,13407,13348,13360,13331,13531,13514,13499,13498,13483,13514,6903,6899,6897,13498,13484,13468,13314,13294,13331,13257,13294,13314,13245,13257,13226,13226,13207,13245,13173,13207,13191,13171,13158,13190,13141,13142,13172,13173,13159,13141,13140,13171,13142,7494,7484,7476,13090,13136,13118,13119,13118,13150,13119,13150,13108,13120,13096,13122,13122,13096,13108,13168,13158,13127,13168,13151,13120,7459,7476,7484,13046,13074,13048,9074,9085,9060,9074,9051,9084,9085,9074,9100,16861,16864,16859,16858,16856,16859,12251,12247,12248,12257,12262,12254,12260,12256,12254,12248,12256,12251,12264,12262,12257,12301,12295,12298,16851,16848,16852,16860,16857,16858,12295,12303,12307,16850,16848,16851,9127,9144,9100,9159,9144,9127,16872,16864,16875,6899,6895,6897,12237,12247,12251,6896,6894,6893,12249,12237,12251,6897,6895,6894,13433,13432,13458,13458,13468,13484,13389,13407,13418,13418,13432,13433,13360,13362,13331,13362,13389,13379,6903,6897,6907,6911,6916,6907,6916,6921,6926,13331,13350,13314,13257,13314,13295,13258,13226,13257,13207,13226,13191,13159,13173,13191,13171,13140,13158,13141,13110,13142,13141,13159,13128,13140,13142,13126,13090,13118,13091,13119,13105,13118,13119,13108,13093,13120,13094,13096,13108,13096,13079,13127,13158,13140,13168,13127,13151,13120,13151,13137,13090,13048,13074,13046,13048,13034,9084,9099,9074,9074,9112,9100,16864,16865,16859,16859,16862,16858,12260,12254,12262,12260,12259,12256,12259,12251,12256,12287,12298,12295,16860,16858,16863,12312,12295,12307,16850,16851,16853,9127,9100,9112,9159,9127,9160,16864,16872,16865,16875,16881, +16872,6894,6896,6898,12249,12251,12255,6894,6900,6897,6959,6950,6940,6940,6950,6926,13408,13389,13418,13408,13418,13433,13362,13350,13331,13389,13408,13379,13362,13379,13350,6897,6904,6907,6921,6916,6911,6904,6911,6907,6926,6921,6932,13314,13350,13332,13295,13314,13332,13257,13295,13258,13226,13258,13227,13227,13191,13226,13159,13191,13208,13110,13141,13128,13126,13142,13110,13159,13170,13128,13109,13140,13126,13118,13105,13091,13075,13090,13091,13119,13093,13105,13079,13093,13108,13120,13137,13094,13094,13063,13096,13063,13079,13096,13127,13140,13109,13127,13121,13151,13137,13151,13121,13075,13048,13090,13048,13021,13034,9099,9112,9074,16859,16865,16862,16858,16862,16863,12266,12260,12262,12266,12259,12260,12259,12258,12251,12291,12287,12295,16866,16860,16863,16880,16883,16866,12282,12270,12287,12262,12270,12266,9127,9112,9145,9127,9145,9160,16872,16873,16865,16872,16881,16884,6896,6901,6898,6894,6898,6900,12255,12251,12258,6904,6897,6900,6951,6959,6940,6940,6926,6932,6970,6984,6959,13390,13379,13408,13363,13350,13379,6921,6911,6912,6904,6912,6911,6932,6921,6939,13350,13363,13332,13333,13295,13332,13295,13296,13258,13227,13258,13254,13208,13191,13227,13192,13159,13208,13110,13128,13100,13126,13110,13081,13159,13192,13170,13170,13155,13128,13109,13126,13081,13105,13050,13091,13075,13091,13076,13105,13093,13050,13078,13093,13079,13094,13137,13121,13063,13094,13064,13063,13052,13079,13127,13109,13099,13121,13127,13099,13048,13075,13047,13048,13047,13021,13021,13008,13034,9112,9099,9126,16868,16862,16865,16863,16862,16869,12266,12269,12259,12265,12258,12259,12291,12282,12287,16870,16866,16863,16880,16866,16874,12278,12270,12282,12266,12270,12272,9145,9112,9143,9187,9145,9171,16868,16865,16873,6898,6901,6905,6898,6906,6900,6901,6909,6905,6904,6900,6908,6970,6959,6951,6932,6951,6940,6996,6984,6970,13363,13379,13390,6921,6912,6922,6904,6908,6912,6921,6931,6939,6949,6932,6939,13363,13364,13332,13296,13295,13333,13333,13332,13364,13258,13296,13254,13222,13227,13254,13222,13208,13227,13192,13208,13222,13100,13128,13123,13110, +13100,13081,13192,13187,13170,13187,13155,13170,13155,13123,13128,13109,13081,13099,13050,13076,13091,13047,13075,13076,13050,13093,13078,13052,13078,13079,13094,13121,13095,13094,13095,13064,13064,13051,13063,13038,13052,13063,13099,13095,13121,13021,13047,13035,13021,12995,13008,13020,13034,13008,9126,9099,9142,9112,9126,9143,16862,16868,16869,16870,16863,16869,12266,12272,12269,12259,12269,12265,12265,12268,12258,12291,12286,12282,16870,16874,16866,16882,16880,16874,12278,12276,12270,12282,12286,12278,12270,12276,12272,9145,9143,9171,16877,16868,16873,6898,6905,6910,6898,6910,6906,6906,6908,6900,6970,6951,6949,6949,6951,6932,6993,6996,6970,6996,6993,7015,6922,6912,6917,6921,6922,6931,6912,6908,6917,6931,6948,6939,6958,6949,6939,7015,7024,7032,13296,13333,13320,13364,13380,13333,13296,13291,13254,13222,13254,13241,13192,13222,13187,13123,13097,13100,13054,13081,13100,13187,13185,13155,13155,13154,13123,13067,13099,13081,13050,13047,13076,13050,13078,13062,13052,13062,13078,13067,13064,13095,13029,13051,13064,13038,13063,13051,13027,13052,13038,13067,13095,13099,13050,13035,13047,12995,13021,13035,12995,12981,13008,12994,13020,13008,9126,9142,9157,9143,9126,9158,16868,16876,16869,16869,16878,16870,12275,12269,12272,12271,12265,12269,6905,6918,6913,16870,16879,16874,16882,16874,16879,12278,12281,12276,12278,12286,12281,12272,12276,12275,9143,9158,9171,16868,16877,16876,9186,9171,9158,6905,6913,6910,6914,6906,6910,6915,6908,6906,6983,6970,6949,6970,6983,6993,7024,7015,6993,6922,6917,6927,6933,6931,6922,6915,6917,6908,6948,6931,6941,6958,6939,6948,6949,6958,6971,7031,7032,7024,7046,7066,7072,13296,13320,13291,7032,7031,7046,13254,13291,13274,13241,13254,13274,13187,13222,13241,13124,13097,13123,13100,13097,13080,13054,13067,13081,13054,13100,13080,13187,13221,13185,13185,13154,13155,13124,13123,13154,13062,13037,13050,13027,13062,13052,13067,13029,13064,13029,13026,13051,13038,13051,13026,13038,13012,13027,13025,13035,13050,13010,12995,13035,12965,12981,12995,13008,12981,12994,13020,12994,13007,9157,9158,9126,16876, +16878,16869,16878,16879,16870,12269,12275,12274,12271,12273,12265,12269,12274,12271,16882,16879,16888,12281,12285,12276,16882,16888,16890,12276,12280,12275,16877,16885,16876,9186,9158,9204,6914,6910,6913,6914,6919,6906,6920,6915,6906,6949,6971,6983,6995,6993,6983,6993,7014,7024,6925,6927,6917,6933,6922,6927,6941,6931,6933,6925,6917,6915,6968,6948,6941,6948,6969,6958,6958,6982,6971,7031,7024,7014,7046,7060,7066,13320,13285,13291,7045,7046,7031,13274,13291,13249,13274,13242,13241,13187,13241,13221,13097,13124,13098,13066,13080,13097,13067,13054,13029,13054,13080,13065,13221,13186,13185,13186,13154,13185,13156,13124,13154,13062,13027,13037,13037,13025,13050,13029,13001,13026,13038,13026,13012,13027,13012,12999,13010,13035,13025,12995,13010,12983,12949,12981,12965,12995,12983,12965,12949,12994,12981,12994,12964,13007,9158,9157,9185,16876,16886,16878,16878,16887,16879,12275,12279,12274,6923,6913,6928,12271,12274,12277,16879,16889,16888,16890,16895,16901,12276,12285,12280,16889,16890,16888,12283,12275,12280,16885,16886,16876,16894,16885,16898,6914,6913,6923,6924,6919,6914,6906,6919,6920,6920,6925,6915,6971,6995,6983,6993,6995,7014,6938,6927,6925,6941,6933,6927,6948,6968,6981,6941,6972,6968,6981,6969,6948,6969,6982,6958,6971,6982,6994,7014,7017,7031,7046,7045,7060,7066,7060,7071,13285,13249,13291,7035,7045,7031,13274,13249,13242,13241,13242,13221,13139,13098,13124,13097,13098,13066,13066,13053,13080,13039,13029,13054,13065,13080,13053,13054,13065,13039,13221,13223,13186,13186,13156,13154,13156,13139,13124,13027,13024,13037,13025,13037,13000,13014,13001,13029,13012,13026,13001,12999,13012,12985,13027,12999,13024,13011,13010,13025,12983,13010,12984,12949,12965,12936,12965,12983,12969,12994,12949,12964,16878,16886,16887,16879,16887,16889,12283,12279,12275,12279,12277,12274,17850,17851,17852,16895,16890,16889,16901,16895,16903,12285,12289,12280,12280,12290,12283,16891,16886,16885,6923,6924,6914,6924,6929,6919,6920,6919,6930,6925,6920,6930,6971,7005,6995,6995,7017,7014,6927,6938,6946,6938,6925,6930,6927,6952,6941,6968,6990,6981, +6941,6960,6972,6972,6991,6968,6992,6969,6981,6992,6982,6969,6982,7004,6994,7005,6971,6994,7035,7031,7017,7060,7045,7059,7077,7071,7060,13285,13266,13249,7045,7035,7053,13242,13249,13215,13242,13204,13221,13125,13098,13139,13070,13066,13098,13066,13040,13053,13039,13014,13029,13039,13065,13053,13204,13223,13221,13223,13189,13186,13186,13188,13156,13139,13156,13157,13024,13000,13037,13000,13011,13025,13014,12987,13001,12985,13012,13001,12973,12999,12985,12999,12998,13024,13010,13011,12984,12951,12983,12984,12936,12965,12942,12917,12949,12936,12951,12969,12983,12969,12942,12965,12949,12948,12964,16886,16892,16887,16893,16889,16887,12283,12288,12279,12277,12279,12284,6923,6953,6942,16895,16889,16893,16900,16903,16895,12280,12289,12290,12294,12283,12290,16886,16891,16892,6923,6934,6924,6929,6924,6935,6919,6929,6936,6919,6937,6930,6995,7005,7017,6947,6946,6938,6927,6946,6952,6947,6938,6930,6960,6941,6952,6968,7002,6990,6981,6990,6992,6985,6972,6960,6991,6972,6985,7003,6968,6991,6982,6992,7004,7016,6994,7004,7016,7005,6994,7026,7035,7017,7045,7053,7059,7060,7059,7070,7083,7071,7077,7077,7060,7070,13266,13234,13249,7053,7035,7055,13234,13215,13249,13204,13242,13215,13125,13102,13098,13125,13139,13157,13066,13070,13042,13102,13070,13098,13066,13042,13040,13028,13053,13040,13002,13014,13039,13039,13053,13028,13204,13189,13223,13189,13188,13186,13156,13188,13157,13024,12998,13000,13011,13000,12984,13014,13002,12987,13001,12987,12971,12985,13001,12972,12968,12999,12973,12973,12985,12952,12999,12968,12998,12970,12951,12984,12905,12936,12942,12949,12917,12948,12936,12900,12917,12951,12919,12969,12969,12919,12942,16893,16887,16892,12288,12283,12292,12288,12284,12279,6923,6942,6934,16900,16895,16893,16903,16900,16907,12290,12289,12296,12294,12292,12283,12297,12294,12290,16891,16896,16892,6934,6943,6924,6935,6924,6943,6929,6935,6944,6929,6944,6936,6919,6936,6937,6937,6945,6930,7026,7017,7005,6946,6947,6966,6966,6952,6946,6957,6947,6930,6952,6973,6960,6968,7010,7002,7002,7011,6990,7012,6992,6990,6985,6960,6997,6985,7006,6991,7010,6968, +7003,7009,7003,6991,7004,6992,7013,7023,7016,7004,7005,7016,7025,7026,7025,7035,7059,7053,7065,7059,7065,7070,7087,7083,7077,7070,7082,7077,13267,13234,13266,7055,7035,7040,7053,7055,7065,13199,13215,13234,13204,13215,13164,13114,13102,13125,13125,13157,13164,13042,13070,13057,13102,13086,13070,13016,13040,13042,13028,13040,13013,13002,13039,13028,13204,13164,13189,13189,13157,13188,12998,12970,13000,12970,12984,13000,12987,13002,12986,12953,12971,12987,13001,12971,12972,12952,12985,12972,12968,12973,12940,12952,12940,12973,12968,12970,12998,12970,12941,12951,12936,12905,12900,12942,12906,12905,12941,12919,12951,12942,12919,12906,16892,16899,16893,17853,17854,17855,12284,12288,12293,6942,6954,6934,16893,16902,16900,16900,16908,16907,12296,12297,12290,12294,12299,12292,12297,12300,12294,16899,16892,16896,6943,6934,6954,6955,6935,6943,6935,6955,6944,6945,6936,6944,6936,6945,6937,6945,6956,6930,7026,7005,7025,6957,6966,6947,6952,6966,6973,6967,6957,6930,6986,6960,6973,7010,7020,7002,7002,7021,7011,7012,6990,7011,6992,7012,7013,6997,6960,6986,7007,6985,6997,7006,6985,7000,6991,7006,7009,7003,7022,7010,7019,7003,7009,7013,7023,7004,7033,7016,7023,7034,7025,7016,7040,7035,7025,7070,7065,7076,7094,7083,7087,7077,7082,7087,7070,7076,7082,13235,13234,13267,7048,7055,7040,7065,7055,7069,13164,13215,13199,13199,13234,13235,13114,13086,13102,13125,13147,13114,13157,13189,13164,13125,13164,13147,13057,13070,13086,13042,13057,13031,13040,13016,13013,13042,13031,13016,13002,13028,13013,12986,13002,12974,12953,12987,12986,12953,12922,12971,12971,12920,12972,12952,12972,12920,12939,12968,12940,12952,12920,12940,12941,12970,12968,12883,12900,12905,12905,12906,12872,12941,12904,12919,12906,12919,12886,16902,16893,16899,17855,17854,17856,16900,16902,16908,12305,12296,12310,12297,12296,12302,12300,12299,12294,12297,12302,12300,16899,16896,16905,6943,6954,6961,6955,6943,6962,6955,6963,6944,6964,6945,6944,6956,6945,6964,6930,6956,6965,6979,6966,6957,6979,6973,6966,6967,6980,6957,6965,6967,6930,6986,6973,6979,7020,7010,7022,7021,7002,7020, +7021,7029,7011,7012,7011,7029,7013,7012,7030,7008,6997,6986,7000,6985,7007,7008,7007,6997,6989,7006,7000,6989,7009,7006,7022,7003,7019,6999,7019,7009,7030,7023,7013,7034,7016,7033,7039,7033,7023,7040,7025,7034,7076,7065,7069,13302,13267,13319,7087,7082,7093,7082,7076,7081,13235,13267,13264,7062,7055,7048,7048,7040,7034,7069,7055,7067,13164,13199,13180,13199,13235,13213,13129,13086,13114,13114,13147,13146,13147,13164,13180,13057,13086,13082,13031,13057,13055,13016,12974,13013,13016,13031,13003,13002,13013,12974,12953,12986,12974,12953,12923,12922,12971,12922,12920,12941,12968,12939,12939,12940,12903,12920,12907,12940,12905,12872,12883,12885,12872,12906,12939,12904,12941,12886,12919,12904,12906,12886,12885,16906,16902,16899,6961,6954,6974,16902,16911,16908,12305,12302,12296,12313,12305,12310,17137,17138,17170,12300,12302,12306,16896,16909,16905,16905,16910,16899,6943,6961,6962,6962,6975,6955,6955,6976,6963,6964,6944,6963,6956,6964,6977,6965,6956,6978,6980,6979,6957,6967,6965,6980,7001,6986,6979,6999,7020,7022,6999,7021,7020,7021,7038,7029,7030,7012,7029,7001,7008,6986,7007,6965,7000,7008,6965,7007,6989,7000,6965,6999,7009,6989,6999,7022,7019,7030,7039,7023,7047,7034,7033,7039,7047,7033,7076,7069,7081,13302,13264,13267,7100,7087,7093,7093,7082,7091,7091,7082,7081,13264,13232,13235,7062,7067,7055,7061,7062,7048,7048,7034,7047,7080,7069,7067,13213,13180,13199,13235,13232,13213,13129,13111,13086,13114,13146,13129,13178,13146,13147,13147,13180,13178,13086,13111,13082,13055,13057,13082,13031,13055,13030,13016,13003,12974,13003,13031,13030,12953,12974,12923,12922,12923,12909,12922,12921,12920,12903,12940,12907,12904,12939,12903,12920,12887,12907,12883,12872,12839,12885,12853,12872,12886,12904,12870,12885,12886,12854,16902,16906,16911,16906,16899,16912,17154,17170,17138,16916,16908,16911,12302,12305,12309,12313,12309,12305,12315,12313,12310,17093,17138,17137,12302,12311,12306,17137,17113,17093,16905,16909,16910,16899,16910,16913,17114,17171,17154,6962,6987,6975,6976,6955,6975,6988,6963,6976,6977,6964,6963,6977,6978,6956,6965, +6978,6989,6980,7001,6979,6980,6965,7001,7028,7021,6999,7028,7038,7021,7038,7043,7029,7029,7043,7030,7001,6965,7008,6999,6989,6978,7030,7044,7039,7039,7054,7047,7080,7081,7069,13302,13284,13264,7107,7100,7093,7106,7093,7091,7080,7091,7081,13264,13284,13232,7067,7062,7075,7073,7062,7061,7061,7048,7047,7086,7080,7067,13178,13180,13213,13213,13232,13197,13111,13129,13143,13160,13129,13146,13178,13197,13146,13083,13082,13111,13055,13082,13083,13056,13030,13055,13003,12975,12974,13003,13030,13015,12954,12923,12974,12909,12923,12889,12888,12922,12909,12922,12888,12921,12921,12887,12920,12871,12903,12907,12903,12870,12904,12871,12907,12887,12839,12872,12853,12853,12885,12854,12870,12854,12886,16906,16914,16911,16912,16899,16913,16912,16915,16906,17138,17114,17154,16921,16908,16916,16916,16911,16914,12311,12302,12309,12313,12314,12309,12313,12315,12316,17093,17114,17138,17065,17093,17113,16917,16910,16909,16918,16913,16910,17078,17115,17114,17116,17115,17094,6977,6963,6988,6998,6988,6976,6977,6988,6978,7028,6999,7018,7038,7028,7036,7043,7038,7050,7051,7030,7043,6988,6999,6978,7030,7051,7044,7039,7044,7052,7052,7054,7039,7047,7054,7061,13302,13303,13284,7107,7093,7106,7103,7106,7091,7080,7099,7091,13265,13232,13284,7062,7073,7075,7067,7075,7079,7074,7073,7061,7080,7086,7092,7086,7067,7079,13178,13213,13197,13232,13214,13197,13160,13143,13129,13130,13111,13143,13179,13160,13146,13179,13146,13197,13083,13111,13130,13055,13083,13056,13056,13041,13030,12975,13003,13015,12975,12954,12974,13041,13015,13030,12954,12943,12923,12923,12943,12889,12856,12909,12889,12856,12888,12909,12908,12921,12888,12921,12908,12887,12871,12870,12903,12871,12887,12855,12839,12853,12826,12853,12854,12827,12870,12838,12854,16906,16915,16914,16919,16912,16913,16920,16915,16912,16916,16925,16921,16914,16923,16916,17065,17048,17038,16993,17016,17004,17048,17016,17038,12315,12317,12316,17004,16982,16993,17093,17078,17114,17093,17065,17064,16918,16910,16917,16918,16922,16913,17115,17078,17094,17094,17079,17116,6999,6988,6998,17139,17116,17095,6999,6998,7018, +7028,7018,7036,7036,7050,7038,7050,7056,7043,7051,7043,7056,7057,7044,7051,7058,7052,7044,7064,7054,7052,7061,7054,7064,13265,13284,13303,7113,7107,7106,7106,7103,7113,7103,7091,7099,7092,7099,7080,13232,13265,13233,7075,7073,7084,7079,7075,7084,7085,7073,7074,7064,7074,7061,7092,7086,7098,7079,7090,7086,13232,13233,13214,13179,13197,13214,13143,13160,13174,13130,13143,13144,13160,13179,13198,13083,13130,13112,13085,13056,13083,13056,13069,13041,12975,13015,13004,12954,12975,12943,13015,13041,13043,12889,12943,12924,12856,12889,12857,12855,12888,12856,12888,12855,12908,12887,12908,12855,12871,12837,12870,12828,12871,12855,12826,12853,12827,12813,12839,12826,12854,12838,12827,12870,12837,12838,16915,16923,16914,16919,16920,16912,16919,16913,16922,16920,16924,16915,16916,16923,16925,16925,16930,16921,17065,17038,17064,16993,17015,17016,17016,17015,17038,12317,12315,12318,16973,16982,16964,16973,16993,16982,17078,17093,17064,16918,16926,16922,17094,17078,17049,17094,17049,17079,17079,17095,17116,7037,6998,7042,7027,7018,6998,7018,7027,7036,17348,17366,17245,17330,17346,17348,7051,7056,7063,17438,17458,17399,7063,7057,7051,17476,17438,17457,13303,13304,13265,7107,7113,7120,7113,7103,7110,7099,7110,7103,7092,7105,7099,13265,13279,13233,7073,7088,7084,7084,7089,7079,7073,7085,7088,7074,7078,7085,7074,7064,7078,7086,7090,7098,7092,7098,7104,7079,7089,7090,13233,13198,13214,13179,13214,13198,13160,13193,13174,13143,13174,13144,13130,13144,13112,13160,13198,13193,13083,13112,13085,13069,13056,13085,13041,13069,13084,13015,13032,13004,12975,13004,12988,12943,12975,12955,13043,13041,13068,13015,13043,13032,12924,12943,12955,12889,12924,12890,12889,12890,12857,12840,12856,12857,12829,12855,12856,12828,12837,12871,12828,12855,12829,12826,12827,12800,12813,12826,12801,12827,12838,12812,12812,12838,12837,16915,16927,16923,16919,16928,16920,16922,16928,16919,16924,16920,16929,16915,16924,16927,16932,16925,16923,16932,16930,16925,16930,16937,16921,17037,17064,17038,17015,16993,16991,17038,17015,17037,16964,16937,16957,16973,16964, +16957,16973,16991,16993,17078,17064,17049,16922,16926,16928,17049,17066,17079,17079,17066,17095,7027,6998,7037,17109,17095,17076,7027,7041,7036,7049,7036,7041,17245,17330,17348,17310,17346,17330,7068,7063,7056,17402,17438,17399,7057,7063,7068,17457,17438,17402,13265,13304,13279,7121,7120,7113,7113,7110,7118,7110,7099,7105,7105,7092,7104,13279,13259,13233,7095,7084,7088,7084,7097,7089,7085,7096,7088,17480,17442,17462,17442,17457,17402,7089,7098,7090,7109,7104,7098,13198,13233,13228,13193,13209,13174,13175,13144,13174,13161,13112,13144,13198,13228,13193,13085,13112,13101,13069,13085,13101,13084,13069,13101,13041,13084,13068,13004,13032,13017,12988,13004,12989,12975,12988,12955,13068,13058,13043,13043,13058,13032,12955,12925,12924,12890,12924,12925,12857,12890,12858,12840,12829,12856,12857,12830,12840,12811,12837,12828,12828,12829,12803,12800,12827,12812,12800,12801,12826,12785,12813,12801,12811,12812,12837,16931,16923,16927,16928,16933,16920,16920,16934,16929,16924,16929,16935,16936,16927,16924,16923,16938,16932,16942,16930,16932,16943,16937,16930,17037,17049,17064,17015,16991,17014,17014,17037,17015,16951,16957,16937,16957,16972,16973,16973,16972,16991,17049,17039,17066,17076,17095,17066,17132,17109,17089,17109,17076,17089,17132,17164,17189,17245,17189,17226,17245,17310,17330,17346,17310,17329,17329,17365,17346,17402,17399,17369,17369,17399,17365,13279,13304,13278,7120,7121,7126,7121,7113,7118,7118,7110,7116,7110,7105,7116,7105,7104,7115,13259,13279,13278,13259,13228,13233,7095,7097,7084,7101,7095,7088,7089,7097,7102,17480,17462,17495,7088,7096,7101,17442,17419,17462,17442,17402,17419,7089,7109,7098,7114,7104,7109,13193,13229,13209,13209,13175,13174,13144,13175,13161,13145,13112,13161,13193,13228,13229,13112,13131,13101,13084,13101,13113,13084,13087,13068,13044,13017,13032,13017,12989,13004,12989,12956,12988,12988,12976,12955,13068,13087,13058,13044,13032,13058,12976,12925,12955,12890,12925,12891,12890,12891,12858,12857,12858,12830,12840,12815,12829,12840,12830,12815,12828,12814,12811,12829,12815,12803,12828,12803, +12802,12800,12812,12784,12800,12771,12801,12801,12771,12785,12811,12784,12812,16923,16931,16938,16939,16931,16927,16933,16934,16920,16935,16929,16934,16935,16940,16924,16936,16941,16927,16936,16924,16940,16938,16945,16932,16942,16949,16930,16932,16950,16942,16943,16951,16937,16943,16930,16949,17026,17049,17037,16992,17014,16991,17014,17026,17037,16951,16963,16957,16972,16957,16963,16992,16991,16972,17026,17039,17049,17039,17061,17066,17076,17066,17061,17132,17089,17131,17076,17046,17089,17132,17131,17164,17189,17164,17207,17189,17207,17226,17263,17245,17226,17245,17297,17310,17329,17310,17297,17329,17347,17365,17402,17369,17385,17369,17365,17347,13304,13297,13278,7121,7118,7126,7132,7120,7126,7125,7118,7116,7105,7115,7116,7104,7119,7115,13259,13278,13228,7101,7097,7095,7102,7097,7108,7089,7102,7109,17462,17460,17495,17495,17513,17525,17462,17419,17460,17385,17419,17402,7104,7114,7119,7114,7109,7117,13246,13209,13229,13209,13230,13175,13194,13161,13175,13112,13145,13131,13161,13131,13145,13260,13229,13228,13132,13101,13131,13132,13113,13101,13084,13113,13087,13017,13044,13018,13017,13005,12989,12956,12989,12957,12956,12976,12988,13087,13071,13058,13044,13058,13071,12976,12956,12925,12926,12891,12925,12891,12859,12858,12830,12858,12841,12804,12815,12830,12814,12828,12802,12787,12811,12814,12774,12803,12815,12802,12803,12788,12784,12771,12800,12785,12771,12761,12787,12784,12811,16944,16938,16931,16944,16931,16939,16939,16927,16941,16935,16946,16940,16936,16947,16941,16940,16948,16936,16938,16944,16945,16932,16945,16954,16949,16942,16955,16954,16950,16932,16950,16955,16942,16956,16951,16943,16943,16949,16956,16992,17003,17014,17026,17014,17003,16956,16963,16951,16972,16963,16981,16992,16972,16981,17026,17003,17039,17034,17061,17039,17061,17046,17076,17107,17131,17089,17089,17046,17074,17164,17131,17188,17207,17164,17225,17207,17244,17226,17263,17277,17245,17263,17226,17244,17297,17245,17277,17297,17347,17329,17385,17369,17331,17369,17347,17331,13304,13334,13297,13260,13278,13297,7125,7126,7118,13366,13334,13381,7125,7116, +7115,7124,7115,7119,13260,13228,13278,7108,7097,7101,7111,7102,7108,7102,7112,7109,17513,17495,17460,17513,17542,17525,17419,17440,17460,17419,17385,17400,7119,7114,7122,7109,7112,7117,7114,7117,7123,13230,13209,13246,13260,13246,13229,13175,13230,13210,13161,13194,13176,13175,13210,13194,13161,13176,13131,13132,13131,13162,13132,13133,13113,13087,13113,13115,13044,13059,13018,13005,13017,13018,13005,12957,12989,12956,12957,12944,13087,13115,13071,13044,13071,13059,12926,12925,12956,12891,12926,12892,12859,12891,12892,12841,12858,12859,12841,12804,12830,12774,12815,12804,12786,12814,12802,12786,12787,12814,12774,12788,12803,12802,12788,12773,12784,12760,12771,12761,12771,12746,12760,12784,12787,16939,16952,16944,16939,16941,16953,16940,16946,16948,16947,16936,16948,16953,16941,16947,16945,16944,16958,16954,16945,16960,16949,16955,16956,16954,16962,16950,16955,16950,16962,16992,16981,17003,16956,16971,16963,16981,16963,16980,17034,17039,17003,17046,17061,17034,17131,17107,17108,17107,17089,17074,17046,17045,17074,17131,17151,17188,17164,17188,17206,17206,17225,17164,17207,17225,17243,17244,17207,17243,17263,17276,17277,17244,17276,17263,17277,17311,17297,17297,17331,17347,17368,17385,17331,13315,13297,13334,13297,13280,13260,7131,7126,7125,13351,13334,13366,7131,7134,7126,7115,7128,7125,7124,7128,7115,7122,7124,7119,17525,17542,17554,7102,7111,7112,17554,17568,17587,17460,17494,17513,17513,17524,17542,17419,17400,17440,17440,17478,17460,17368,17400,17385,7122,7114,7127,17628,17614,17642,17656,17642,17614,7114,7123,7127,13230,13246,13261,13280,13246,13260,13247,13210,13230,13211,13176,13194,13231,13194,13210,13131,13176,13162,13177,13132,13162,13163,13133,13132,13113,13133,13115,13018,13059,13072,13005,13018,12958,13005,12958,12957,12927,12944,12957,12956,12944,12926,13103,13071,13115,13059,13071,13088,12892,12926,12944,12892,12862,12859,12841,12859,12831,12841,12831,12804,12774,12804,12775,12786,12802,12773,12772,12787,12786,12762,12788,12774,12773,12788,12762,12760,12746,12771,12746,12734,12761,12760,12787,12772,16952, +16939,16953,16944,16952,16959,16965,16958,16944,16945,16958,16960,16954,16960,16968,16956,16955,16970,16954,16968,16962,16955,16962,16970,17000,17003,16981,16956,16970,16971,16980,16963,16971,16981,16980,17000,17003,17025,17034,17034,17025,17046,17107,17075,17108,17151,17131,17108,17075,17107,17074,17045,17046,17025,17075,17074,17045,17190,17188,17151,17206,17188,17190,17242,17225,17206,17262,17243,17225,17243,17262,17244,17276,17296,17277,17276,17244,17296,17277,17328,17311,17311,17331,17297,17368,17331,17349,13315,13280,13297,13315,13334,13351,7128,7131,7125,13351,13366,13365,7134,7131,7137,7124,7130,7128,7122,7129,7124,17554,17542,17568,17587,17614,17628,17586,17587,17568,17478,17494,17460,17513,17494,17524,17524,17553,17542,17400,17439,17440,17440,17439,17478,17400,17368,17418,7122,7127,7129,17656,17614,17641,12323,12330,12326,13246,13281,13261,13247,13230,13261,13246,13280,13281,13231,13210,13247,13176,13211,13195,11644,11661,11627,13231,13248,13194,13176,13195,13162,13132,13177,13163,13195,13177,13162,13148,13133,13163,13103,13115,13133,11709,11722,11711,11715,11723,11709,11723,11715,11724,12957,12958,12959,12927,12892,12944,12927,12957,12959,13071,13103,13088,12892,12910,12862,12859,12862,12831,12804,12831,12805,12805,12775,12804,12775,12749,12774,12786,12773,12747,12786,12747,12772,12749,12762,12774,12748,12773,12762,12760,12721,12746,12746,12721,12734,12772,12747,12760,16952,16953,16966,16952,16967,16959,16965,16944,16959,16965,16974,16958,16960,16958,16975,16968,16960,16978,16968,16979,16962,16979,16970,16962,17000,17025,17003,16979,16971,16970,16990,16980,16971,17001,17000,16980,17075,17090,17108,17112,17151,17108,17045,17025,17024,17060,17075,17045,17190,17151,17153,17206,17190,17227,17242,17261,17225,17206,17227,17242,17262,17225,17261,17244,17262,17295,17296,17328,17277,17244,17295,17296,17345,17311,17328,17331,17311,17349,17368,17349,17384,13315,13281,13280,13335,13315,13351,7133,7131,7128,13365,13366,13391,13335,13351,13365,7133,7137,7131,7134,7137,7140,7130,7124,7129,7130,7133,7128,17553,17568,17542, +17586,17614,17587,17553,17586,17568,17478,17511,17494,17494,17511,17524,17524,17541,17553,17418,17439,17400,17478,17439,17477,17420,17418,17368,12323,12321,12320,17627,17641,17614,12330,12335,12326,12323,12326,12321,13281,13282,13261,13247,13261,13282,13231,13247,13263,11659,11644,11625,11627,11661,11660,11627,11608,11644,13231,13262,13248,13196,13163,13177,11659,11625,11676,13148,13103,13133,13163,13165,13148,11709,11711,11693,11715,11709,11702,11724,11715,11702,12959,12958,12931,12927,12910,12892,12959,12931,12927,13088,13103,13116,12895,12862,12910,12843,12831,12862,12816,12805,12831,12805,12789,12775,12775,12763,12749,12773,12748,12747,12723,12762,12749,12723,12748,12762,12721,12760,12747,12721,12708,12734,16966,16967,16952,16959,16967,16976,16977,16965,16959,16974,16965,16983,16984,16958,16974,16984,16975,16958,16960,16975,16985,16978,16960,16985,16968,16978,16989,16979,16968,16989,17024,17025,17000,16971,16979,16989,16990,17001,16980,16990,16971,17002,17001,17024,17000,17060,17090,17075,17112,17108,17090,17112,17153,17151,17024,17060,17045,17190,17153,17192,17227,17190,17192,17242,17275,17261,17227,17229,17242,17262,17261,17294,17295,17262,17294,17296,17345,17328,17295,17327,17296,17367,17311,17345,17367,17349,17311,17384,17349,17367,17384,17401,17368,13281,13315,13335,13365,13391,13367,13335,13365,13336,7137,7133,7139,13434,13419,13391,7130,7129,7135,7130,7136,7133,17586,17627,17614,17553,17585,17586,17478,17477,17511,17511,17541,17524,17553,17541,17567,17418,17459,17439,17477,17439,17459,17418,17420,17459,17401,17420,17368,12319,12320,12321,17613,17641,17627,12326,12335,12336,12321,12326,12328,13316,13282,13281,13247,13282,13263,13262,13231,13263,11625,11644,11608,11660,11626,11627,11627,11580,11608,13262,13283,13248,11686,11658,11657,13212,13196,13177,13134,13103,13148,11685,11686,11657,13148,13165,13134,11693,11711,11704,11693,11692,11709,11692,11702,11709,11720,11724,11702,12930,12931,12958,12895,12910,12927,12931,12895,12927,13134,13116,13103,12874,12862,12895,12843,12816,12831,12874,12843,12862,12816, +12789,12805,12763,12775,12789,12749,12763,12738,12748,12722,12747,12723,12749,12738,12723,12722,12748,12721,12747,12722,12708,12721,12699,16988,16959,16976,16983,16965,16977,16988,16977,16959,16974,16983,16994,16984,16974,16995,16984,16985,16975,16978,16985,16989,16971,16989,17011,16990,17012,17001,17002,16971,17013,16990,17002,17012,17024,17001,17012,17060,17077,17090,17112,17090,17077,17112,17133,17153,17024,17047,17060,17153,17169,17192,17227,17192,17229,17229,17275,17242,17293,17261,17275,17294,17261,17293,17295,17294,17326,17345,17296,17327,17295,17326,17327,17384,17367,17345,17401,17384,17398,13335,13336,13281,13392,13367,13391,13365,13367,13336,12356,12371,12377,13392,13391,13419,12322,12320,12319,7130,7135,7138,12334,12356,12364,17613,17627,17586,17553,17567,17585,17613,17586,17585,17512,17511,17477,17511,17540,17541,17541,17565,17567,17477,17459,17493,17461,17459,17420,17420,17401,17441,12324,12319,12321,17655,17641,17613,12345,12336,12335,12326,12336,12328,12321,12328,12324,13301,13282,13316,13316,13281,13336,13301,13263,13282,13262,13263,13298,11579,11625,11608,13248,13283,13300,11626,11580,11627,11556,11608,11580,13262,13299,13283,11658,11624,11657,11625,11624,11658,11656,11685,11657,11675,11696,11685,11684,11693,11704,11670,11692,11693,11702,11692,11683,11720,11702,11714,12894,12931,12930,12931,12894,12895,11696,11684,11704,12874,12895,12894,12816,12843,12861,12874,12861,12843,12817,12789,12816,12790,12763,12789,12764,12738,12763,12700,12723,12738,12710,12722,12723,12699,12721,12722,12699,12688,12708,16997,16988,16976,16977,16998,16983,16999,16977,16988,16998,16994,16983,16994,17005,16974,16995,16974,17005,16984,16995,17006,16985,16984,17006,16989,16985,17010,16989,17010,17011,16971,17011,17013,17002,17013,17012,17035,17024,17012,17060,17047,17077,17112,17077,17133,17169,17153,17133,17035,17047,17024,17169,17208,17192,17229,17192,17208,17264,17275,17229,17264,17293,17275,17294,17293,17326,17364,17345,17327,17326,17363,17327,17384,17345,17364,17364,17398,17384,17401,17398,17437,13382,13367,13392,13367, +13352,13336,12356,12365,12371,13392,13419,13420,12322,12319,12325,12329,12334,12322,12356,12334,12349,17565,17585,17567,17612,17613,17585,17512,17540,17511,17512,17477,17493,17541,17540,17565,17493,17459,17461,17461,17420,17441,17401,17437,17441,12324,12327,12319,12357,12345,12335,17655,17613,17653,12332,12336,12345,12332,12328,12336,12332,12324,12328,13301,13316,13337,13336,13352,13316,13298,13263,13301,13262,13298,13317,11578,11625,11579,11556,11579,11608,13318,13300,13283,11626,11581,11580,11580,11529,11556,13262,13317,13299,13283,13299,13318,11624,11623,11657,11625,11578,11624,11656,11675,11685,11656,11657,11622,11675,11684,11696,11693,11684,11671,11692,11670,11683,11671,11670,11693,11701,11702,11683,11702,11701,11714,11726,11720,11714,12893,12894,12930,12861,12874,12894,12816,12861,12842,12790,12789,12817,12842,12817,12816,12790,12764,12763,12738,12764,12739,12710,12723,12700,12700,12738,12739,12710,12699,12722,12688,12699,12680,16997,17007,16988,17008,16998,16977,16999,17008,16977,16999,16988,17009,16998,17017,16994,16994,17017,17005,17006,16995,17005,16985,17006,17010,17010,17032,17011,17033,17013,17011,17012,17013,17036,17036,17035,17012,17077,17047,17062,17110,17133,17077,17169,17133,17165,17062,17047,17035,17165,17208,17169,17248,17229,17208,17248,17264,17229,17264,17313,17293,17333,17326,17293,17327,17363,17364,17333,17363,17326,17364,17397,17398,17437,17398,17436,13367,13382,13352,13397,13382,13392,12356,12349,12365,13397,13392,13420,12327,12325,12319,12325,12329,12322,12329,12341,12334,12349,12334,12341,17565,17566,17585,17626,17613,17612,17585,17566,17612,17512,17523,17540,17512,17493,17523,17565,17540,17566,17493,17461,17479,17461,17441,17479,17437,17475,17441,12327,12324,12331,12357,12361,12345,17626,17653,17613,12345,12352,12332,12339,12324,12332,13352,13337,13316,13298,13301,13337,13298,13338,13317,11579,11528,11578,11528,11579,11556,11582,11581,11626,11580,11581,11529,11487,11556,11529,13299,13317,13339,13318,13299,13339,11624,11576,11623,11643,11657,11623,11578,11576,11624,11656,11642,11675,11643, +11622,11657,11642,11656,11622,11684,11675,11642,11684,11642,11671,11670,11653,11683,11671,11638,11670,11701,11683,11691,11708,11714,11701,12911,12893,12928,12893,12861,12894,12842,12861,12873,12790,12817,12806,12860,12817,12842,12790,12776,12764,12739,12764,12776,12680,12710,12700,12700,12739,12724,12680,12699,12710,12680,12666,12688,17007,17020,16988,17008,17021,16998,17022,17008,16999,16988,17020,17009,16999,17009,17023,17017,16998,17021,17006,17005,17017,17010,17006,17027,17010,17027,17032,17033,17011,17032,17033,17036,17013,17063,17035,17036,17091,17077,17062,17110,17134,17133,17110,17077,17091,17165,17133,17134,17062,17035,17063,17165,17209,17208,17248,17208,17246,17248,17279,17264,17298,17313,17264,17333,17293,17313,17364,17363,17397,17333,17371,17363,17436,17398,17397,17474,17437,17436,13368,13352,13382,13382,13397,13368,13393,13420,13435,13393,13397,13420,12327,12333,12325,12325,12333,12329,12347,12341,12329,12349,12341,12355,17612,17600,17626,17612,17566,17600,17540,17523,17543,17514,17523,17493,17540,17543,17566,17493,17479,17514,17441,17475,17479,17475,17437,17492,12337,12331,12324,12327,12331,12338,12345,12361,12352,17667,17653,17626,12351,12332,12352,12339,12337,12324,12332,12344,12339,13368,13337,13352,13298,13337,13338,13353,13317,13338,11528,11555,11578,11487,11528,11556,11582,11531,11581,11529,11581,11530,11487,11529,11451,13339,13317,13353,13318,13339,13354,11623,11576,11607,11607,11643,11623,11576,11578,11555,11607,11622,11643,11605,11642,11622,11671,11642,11638,11653,11670,11638,11653,11691,11683,11708,11701,11691,11721,11714,11708,12893,12911,12873,12893,12873,12861,12842,12873,12860,11743,11740,11738,12790,12806,12776,11738,11740,11734,11748,11744,11746,12690,12680,12700,11748,11746,11751,12701,12700,12724,12666,12680,12672,17022,17021,17008,17029,17022,16999,17020,17030,17009,17031,17023,17009,17023,17029,16999,17017,17021,17040,17017,17027,17006,17027,17051,17032,17058,17033,17032,17059,17036,17033,17059,17063,17036,17062,17111,17091,17110,17091,17134,17165,17134,17166,17062,17063,17092,17209, +17165,17166,17209,17246,17208,17248,17246,17279,17298,17264,17279,17298,17332,17313,17332,17333,17313,17363,17371,17397,17333,17332,17371,17436,17397,17423,17437,17474,17492,17474,17436,17445,13368,13397,13393,13393,13435,13436,12338,12333,12327,12340,12329,12333,12341,12347,12355,12347,12329,12340,17600,17629,17626,17569,17600,17566,17543,17523,17514,17569,17566,17543,17510,17514,17479,17475,17510,17479,17475,17492,17510,12342,12331,12337,12343,12338,12331,12352,12361,12370,12361,12376,12370,17654,17667,17626,12351,12344,12332,12352,12370,12351,12337,12339,12344,13368,13338,13337,13338,13369,13353,11528,11486,11555,11487,11450,11528,11557,11531,11582,11581,11531,11530,11530,11451,11529,11487,11451,11358,13339,13353,13370,13354,13339,13371,11583,11557,11582,11554,11607,11576,11553,11576,11555,11622,11607,11606,11605,11638,11642,11622,11552,11605,11653,11638,11599,11691,11653,11694,11691,11713,11708,11708,11727,11721,12929,12873,12911,11734,11737,11729,11738,11744,11743,11738,11734,11731,11746,11744,11741,12680,12690,12672,12690,12700,12701,11750,11751,11746,11750,11755,11751,12672,12661,12666,17022,17042,17021,17022,17029,17042,17043,17009,17030,17031,17029,17023,17044,17031,17009,17040,17021,17050,17027,17017,17040,17027,17040,17051,17058,17032,17051,17058,17059,17033,17088,17063,17059,17062,17092,17111,17091,17111,17135,17091,17135,17134,17166,17134,17135,17088,17092,17063,17209,17166,17167,17247,17246,17209,17279,17246,17278,17278,17298,17279,17332,17298,17350,17397,17371,17388,17371,17332,17388,17397,17388,17423,17423,17445,17436,17474,17509,17492,17474,17445,17465,13368,13393,13369,13393,13436,13421,12338,12346,12333,12348,12340,12333,12355,12347,12363,12347,12340,12354,17600,17615,17629,17654,17626,17629,17600,17569,17588,17514,17552,17543,17552,17569,17543,17539,17514,17510,17509,17510,17492,12343,12331,12342,12342,12337,12344,12338,12343,12350,12376,12382,12370,17667,17654,17680,12360,12344,12351,12369,12351,12370,13368,13369,13338,13383,13353,13369,11486,11528,11450,11486,11553,11555,11487,11358,11450,11489, +11531,11557,11530,11531,11488,11451,11530,11488,11358,11451,11359,13353,13384,13370,13371,13339,13370,11583,11612,11560,11583,11499,11557,11554,11577,11607,11554,11576,11485,11576,11553,11485,11575,11606,11607,11606,11552,11622,11605,11599,11638,11605,11552,11572,11654,11653,11599,11674,11694,11653,11707,11691,11694,11713,11691,11707,11708,11713,11719,11708,11719,11727,11727,11729,11721,11734,11729,11731,11738,11741,11744,11738,11731,11741,11746,11741,11745,12690,12701,12672,11746,11745,11750,12735,12718,12701,12661,12672,12673,17050,17021,17042,17029,17052,17042,17043,17054,17009,17030,17055,17043,17056,17029,17031,17044,17057,17031,17009,17054,17044,17040,17050,17067,17051,17040,17067,17058,17051,17080,17087,17059,17058,17087,17088,17059,17092,17136,17111,17135,17111,17152,17167,17166,17135,17092,17088,17130,17228,17209,17167,17247,17278,17246,17228,17247,17209,17312,17298,17278,17350,17298,17344,17332,17350,17370,17332,17370,17388,17405,17423,17388,17423,17405,17445,17474,17500,17509,17405,17465,17445,17474,17465,17500,13394,13369,13393,13436,13448,13421,13394,13393,13421,12353,12346,12338,12346,12348,12333,12348,12354,12340,12354,12363,12347,17600,17588,17615,17629,17615,17611,17654,17629,17666,17552,17588,17569,17539,17552,17514,17538,17539,17510,17509,17538,17510,12342,12358,12343,12358,12342,12344,12350,12343,12359,12353,12338,12350,17667,17680,17691,12369,12370,12382,17654,17666,17680,12358,12344,12360,12369,12360,12351,13353,13383,13384,13394,13383,13369,11486,11450,11403,11486,11484,11553,11403,11450,11358,11531,11489,11452,11557,11499,11489,11531,11452,11488,11451,11488,11359,11358,11359,11255,13384,13395,13370,13396,13371,13370,11612,11561,11560,11560,11499,11583,11577,11554,11527,11607,11577,11575,11554,11485,11527,11484,11485,11553,11575,11552,11606,11605,11572,11599,11522,11572,11552,11654,11674,11653,11654,11599,11604,11674,11703,11694,11710,11707,11694,11707,11719,11713,11719,11730,11727,11731,11729,11727,11741,11731,11739,11741,11739,11745,12672,12701,12698,11745,11752,11750,11754,11756,11750,12698, +12701,12718,12689,12673,12672,12661,12673,12667,17042,17068,17050,17056,17052,17029,17069,17042,17052,17043,17071,17054,17043,17055,17071,17057,17056,17031,17057,17044,17072,17073,17044,17054,17067,17050,17068,17051,17067,17097,17097,17080,17051,17058,17080,17087,17088,17087,17129,17150,17136,17092,17152,17111,17136,17167,17135,17152,17088,17129,17130,17130,17150,17092,17210,17228,17167,17247,17274,17278,17228,17224,17247,17312,17344,17298,17278,17274,17312,17386,17350,17344,17387,17370,17350,17405,17388,17370,17509,17500,17530,17444,17465,17405,17465,17482,17500,13422,13421,13448,13422,13394,13421,12353,12362,12346,13500,13501,13475,13500,13472,13471,13449,13448,13471,17588,17611,17615,17629,17611,17640,17640,17666,17629,17552,17584,17588,17564,17552,17539,17564,17539,17538,17509,17530,17538,12343,12358,12366,12343,12366,12359,12350,12359,12367,12353,12350,12368,17680,17692,17691,12389,12369,12382,17692,17680,17666,12372,12358,12360,12360,12369,12372,13384,13383,13409,13409,13383,13394,11486,11403,11484,11403,11358,11308,11404,11452,11489,11453,11489,11499,11359,11488,11452,11309,11255,11359,11255,11308,11358,13395,13384,13410,13411,13370,13395,11629,11561,11612,13370,13412,13396,11561,11498,11560,11499,11560,11498,17857,17858,17859,17860,17857,17859,11485,11449,11527,11484,11401,11485,11575,11526,11552,11599,11572,11549,11549,11572,11522,11552,11448,11522,11641,11674,11654,11604,11599,11600,11641,11654,11604,11674,11695,11703,11703,11710,11694,11710,11719,11707,11728,11730,11719,11732,11727,11730,11732,11731,11727,11732,11739,11731,11747,11745,11739,12672,12698,12689,11752,11745,11749,11754,11750,11752,11756,11754,11758,12673,12689,12681,12667,12673,12681,17069,17068,17042,17056,17057,17052,17052,17081,17069,17071,17083,17054,17084,17071,17055,17073,17072,17044,17057,17072,17085,17086,17073,17054,17096,17067,17068,17097,17067,17096,17097,17118,17080,17087,17080,17119,17087,17119,17129,17150,17168,17136,17136,17168,17152,17168,17167,17152,17130,17129,17156,17150,17130,17163,17228,17210,17224,17168,17210,17167,17247, +17224,17274,17309,17344,17312,17274,17309,17312,17386,17403,17350,17383,17386,17344,17387,17404,17370,17387,17350,17403,17404,17405,17370,17500,17529,17530,17465,17444,17482,17404,17444,17405,17517,17500,17482,13422,13448,13449,13409,13394,13422,12362,12353,12368,13487,13476,13501,13476,13475,13501,13475,13472,13500,13471,13472,13449,17588,17584,17611,17625,17640,17611,17640,17646,17666,17564,17584,17552,17564,17538,17557,17538,17530,17557,12372,12366,12358,12366,12373,12359,12374,12367,12359,12350,12367,12375,12368,12350,12375,17696,17691,17692,12388,12369,12389,12394,12389,12382,17671,17692,17666,12369,12381,12372,13384,13409,13410,11403,11405,11484,11308,11405,11403,11359,11452,11404,11404,11489,11453,11453,11499,11415,11309,11162,11255,11359,11404,11309,11208,11308,11255,13395,13410,13423,13370,13411,13412,13424,13411,13395,13442,13396,13425,13396,13412,13425,11498,11561,11534,11415,11499,11498,11527,11449,11526,11449,11485,11401,11401,11484,11402,11526,11448,11552,11600,11599,11549,11549,11522,11481,11522,11448,11445,11641,11673,11674,11604,11600,11551,11621,11641,11604,11695,11674,11673,17861,17862,17863,11710,11703,11716,11710,11725,11719,11733,11730,11728,11728,11719,11725,11735,11732,11730,11732,11735,11739,11749,11745,11747,12884,12918,12901,12689,12698,12709,11753,11752,11749,11754,11752,11753,12698,12719,12709,12681,12689,12682,12667,12681,12682,17069,17098,17068,17099,17052,17057,17099,17081,17052,17069,17081,17100,17102,17083,17071,17103,17054,17083,17102,17071,17084,17104,17072,17073,17072,17105,17085,17099,17057,17085,17086,17104,17073,17086,17054,17106,17068,17117,17096,17097,17096,17118,17118,17119,17080,17156,17129,17119,17168,17150,17191,17130,17156,17185,17163,17130,17186,17150,17163,17187,17224,17210,17191,17168,17191,17210,17274,17224,17260,17309,17362,17344,17274,17292,17309,17383,17403,17386,17383,17344,17362,17421,17404,17387,17403,17422,17387,17517,17529,17500,17529,17557,17530,17444,17499,17482,17404,17443,17444,17482,17516,17517,13422,13449,13437,13409,13422,13437,13487,13517,13486,13487, +13462,13476,13476,13451,13475,13475,13459,13472,13472,13459,13449,17584,17625,17611,17640,17625,17639,17640,17639,17646,17646,17671,17666,17584,17564,17599,17564,17557,17573,12366,12372,12373,12378,12359,12373,12379,12367,12374,12359,12378,12374,12375,12367,12380,13517,13533,13486,12399,12394,12382,17671,17696,17692,12388,12381,12369,12394,12388,12389,12381,12373,12372,13410,13409,13437,11402,11484,11405,11357,11405,11308,11404,11453,11322,11453,11415,11322,11256,11162,11309,11162,11208,11255,11309,11404,11322,11208,11254,11308,13423,13410,13437,13395,13423,13438,13412,13411,13439,13424,13440,13411,13395,13438,13424,11561,11587,11534,13412,13441,13425,11498,11534,11416,11415,11498,11416,11449,11448,11526,11449,11401,11355,11401,11402,11253,11551,11600,11549,11445,11481,11522,11481,11551,11549,11400,11445,11448,11655,11673,11641,11551,11574,11604,11621,11655,11641,11574,11621,11604,2610,2661,2646,17861,17864,17862,17861,17863,17865,13061,13106,13092,11733,11736,11730,13022,13049,13036,13049,13061,13036,12950,12996,12982,11742,11739,11735,12825,12884,12869,12901,12869,12884,12709,12720,12689,12810,12783,12825,11754,11753,11757,12691,12682,12689,12667,12682,12674,17069,17120,17098,17098,17117,17068,17121,17081,17099,17122,17100,17081,17100,17120,17069,17123,17083,17102,17103,17106,17054,17123,17103,17083,17102,17084,17124,17104,17105,17072,17126,17085,17105,17099,17085,17126,17104,17086,17127,17086,17106,17128,17096,17117,17140,17118,17096,17140,17155,17119,17118,17155,17156,17119,17187,17191,17150,17204,17185,17156,17130,17185,17186,17205,17163,17186,17205,17187,17163,17187,17224,17191,17260,17224,17241,17274,17260,17292,17309,17382,17362,17325,17309,17292,17383,17434,17403,17383,17362,17396,17421,17443,17404,17421,17387,17422,17434,17422,17403,17517,17516,17529,17545,17557,17529,17444,17498,17499,17482,17499,17516,17481,17444,17443,13437,13449,13459,13462,13487,13486,13476,13462,13451,13475,13451,13459,17610,17625,17584,17610,17639,17625,17639,17619,17646,17658,17671,17646,17599,17564,17573,17610,17584,17599,17573, +17557,17545,12378,12373,12383,12367,12379,12384,12385,12379,12374,12378,12386,12374,12387,12380,12367,13533,13532,13486,12394,12399,12404,17696,17671,17684,12381,12388,12393,12394,12404,12388,12383,12373,12381,11357,11402,11405,11357,11308,11254,11415,11321,11322,11256,11176,11162,11309,11322,11256,11208,11162,11113,11254,11208,11113,13438,13423,13437,13439,13411,13440,13412,13439,13441,13450,13440,13424,13424,13438,13451,11613,11534,11587,13441,13452,13425,13522,13552,13538,11416,11321,11415,11449,11355,11448,11401,11253,11355,11356,11253,11402,11445,11399,11481,11551,11481,11525,11400,11352,11445,11448,11355,11400,11655,11672,11673,11574,11551,11525,11640,11655,11621,11603,11621,11574,2610,2646,2627,2624,2591,2643,2610,2593,2624,13061,13092,13077,12982,13022,13009,13022,13036,13009,13077,13036,13061,12966,12950,12982,12937,12901,12950,12852,12825,12869,12901,12902,12869,12720,12709,12736,12689,12720,12737,12799,12783,12810,12810,12825,12832,12770,12709,12783,12682,12691,12674,12702,12691,12689,17141,17098,17120,17142,17117,17098,17121,17122,17081,17121,17099,17143,17144,17100,17122,17100,17145,17120,17102,17146,17123,17106,17103,17147,17147,17103,17123,17124,17146,17102,17104,17127,17105,17105,17148,17126,17099,17126,17143,17128,17127,17086,17128,17106,17149,17142,17140,17117,17118,17140,17155,17155,17194,17156,17204,17186,17185,17194,17204,17156,17205,17186,17204,17205,17223,17187,17187,17241,17224,17259,17260,17241,17292,17260,17291,17382,17309,17361,17382,17396,17362,17325,17343,17309,17291,17325,17292,17383,17435,17434,17417,17383,17396,17421,17463,17443,17421,17422,17464,17435,17422,17434,17516,17545,17529,17481,17498,17444,17527,17499,17498,17516,17499,17528,17481,17443,17463,13437,13459,13438,13462,13486,13474,13462,13424,13451,13451,13438,13459,17610,17619,17639,17646,17619,17631,17658,17684,17671,17646,17631,17658,17599,17573,17592,17599,17592,17610,17556,17573,17545,12378,12383,12390,12379,12391,12384,12367,12384,12387,12385,12392,12379,12385,12374,12386,12378,12390,12386,13546,13516,13532,13486,13532, +13516,12399,12412,12404,12388,12398,12393,12381,12393,12383,12388,12404,12398,11357,11356,11402,11357,11254,11307,11322,11321,11221,11256,11177,11176,11176,11067,11162,11268,11256,11322,11113,11162,11067,11113,11207,11254,13439,13440,13460,13441,13439,13460,13450,13461,13440,13462,13450,13424,13538,13505,13522,11613,11587,11630,13452,13441,13463,13452,13464,13425,11419,11325,11416,11416,11325,11321,11253,11252,11355,11306,11253,11356,11352,11399,11445,11481,11399,11447,11481,11447,11525,11305,11352,11400,11355,11305,11400,11640,11672,11655,11574,11525,11524,11603,11640,11621,11603,11574,11524,2610,2627,2594,2624,2593,2591,2625,2643,2591,2610,2576,2593,13077,13092,13107,12982,13009,12997,13009,13036,13023,2660,2677,2692,12950,12966,12937,12966,12982,12997,12901,12937,12902,12852,12832,12825,12869,12875,12852,12875,12869,12902,12736,12709,12745,12740,12720,12736,12740,12737,12720,12689,12737,12725,12783,12799,12770,12777,12799,12810,12807,12810,12832,12759,12709,12770,12691,12702,12674,12689,12725,12702,17142,17098,17141,17145,17141,17120,17143,17122,17121,17144,17145,17100,17144,17122,17157,17146,17158,17123,17106,17147,17149,17158,17147,17123,17146,17124,17160,17105,17127,17148,17126,17148,17161,17143,17126,17161,17128,17148,17127,17128,17149,17162,17140,17142,17172,17140,17172,17155,17194,17155,17211,17231,17204,17194,17205,17204,17240,17205,17240,17223,17241,17187,17223,17260,17259,17291,17259,17241,17223,17343,17361,17309,17382,17361,17381,17416,17396,17382,17343,17325,17360,17291,17308,17325,17417,17435,17383,17417,17396,17433,17421,17464,17463,17422,17472,17464,17435,17472,17422,17516,17528,17545,17515,17498,17481,17527,17544,17499,17515,17527,17498,17499,17544,17528,17481,17463,17497,13486,13485,13474,13462,13474,13450,17619,17610,17603,17619,17591,17631,17658,17683,17684,17658,17631,17645,17573,17556,17592,17610,17592,17603,17556,17545,17528,12383,12393,12390,12391,12379,12392,12387,12384,12391,12392,12385,12395,12385,12386,12396,12397,12386,12390,13546,13563,13516,13486,13516,13485,12404,12412,12416,12398, +12405,12393,12404,12411,12398,11307,11356,11357,11307,11254,11207,11267,11221,11321,11221,11268,11322,11268,11177,11256,11177,11127,11176,11067,11176,11127,11113,11067,11024,11065,11207,11113,13461,13460,13440,13460,13473,13441,13450,13474,13461,13489,13522,13505,13505,13464,13489,13473,13463,13441,13477,13452,13463,13452,13478,13464,11325,11419,11370,11321,11325,11267,11253,11160,11252,11252,11305,11355,11253,11306,11206,11307,11306,11356,11352,11304,11399,11399,11354,11447,11524,11525,11447,11305,11204,11352,2611,2627,2628,11640,11603,11639,11603,11524,11602,2611,2594,2627,2610,2594,2576,2556,2591,2593,2591,2609,2625,2556,2593,2576,2660,2625,2644,13009,13023,12997,2677,2660,2644,12966,12967,12937,2663,2706,2693,12902,12937,12938,12844,12832,12852,12844,12852,12875,12875,12902,12912,12745,12709,12759,12745,12750,12736,12740,12736,12750,12737,12740,12726,12726,12725,12737,12777,12770,12799,12810,12807,12777,12832,12844,12807,12777,12759,12770,12702,12711,12674,12711,12702,12725,17173,17142,17141,17145,17174,17141,17175,17122,17143,17176,17145,17144,17175,17157,17122,17144,17157,17177,17178,17158,17146,17149,17147,17179,17158,17179,17147,17124,17181,17160,17178,17146,17160,17161,17148,17182,17161,17183,17143,17128,17162,17148,17184,17162,17149,17193,17172,17142,17172,17211,17155,17231,17194,17211,17231,17250,17204,17250,17240,17204,17223,17240,17258,17291,17259,17308,17259,17223,17258,17381,17361,17343,17382,17381,17416,17416,17433,17396,17342,17360,17325,17380,17343,17360,17342,17325,17308,17417,17455,17435,17433,17456,17417,17496,17463,17464,17464,17472,17496,17435,17455,17472,17481,17497,17515,17544,17527,17526,17527,17515,17526,17544,17555,17528,17496,17497,17463,13474,13485,13461,17591,17619,17603,17618,17631,17591,17683,17658,17670,17631,17618,17645,17670,17658,17645,17556,17603,17592,17528,17555,17556,12390,12393,12400,12392,12401,12391,13546,13574,13563,12385,12402,12395,12403,12392,12395,12397,12396,12386,12385,12396,12402,12390,12400,12397,13516,13563,13545,13516,13515,13485,12404,12416,12411,12411,12405, +12398,12393,12405,12406,11307,11207,11306,11221,11267,11128,11221,11177,11268,11177,11175,11127,11067,11127,11039,11024,11067,10979,11024,11112,11113,11207,11065,11161,11065,11113,11112,13460,13461,13473,13489,13537,13522,13489,13464,13478,13463,13473,13488,13452,13477,13478,13463,13488,13477,11419,11461,11370,11325,11370,11223,11223,11267,11325,11160,11253,11206,11160,11205,11252,11252,11205,11305,11206,11306,11207,11204,11304,11352,11304,11354,11399,11354,11483,11447,11524,11447,11483,11305,11205,11204,2595,2611,2628,11603,11602,11639,11573,11602,11524,2611,2577,2594,2541,2576,2594,2591,2556,2575,2591,2575,2609,2609,2644,2625,2556,2576,2541,2678,2693,2677,2645,2677,2644,12938,12937,12967,2663,2693,2678,12912,12902,12938,12844,12875,12896,12896,12875,12912,12759,12765,12745,12750,12745,12765,12712,12740,12750,12712,12726,12740,12725,12726,12711,12807,12791,12777,2219,2214,2197,12759,12777,12765,12711,12703,12674,17173,17193,17142,17173,17141,17174,17176,17174,17145,17175,17143,17183,17144,17177,17176,17195,17157,17175,17196,17177,17157,17197,17158,17178,17149,17179,17198,17199,17179,17158,17200,17160,17181,17178,17160,17201,17148,17162,17182,17202,17161,17182,17161,17203,17183,17184,17182,17162,17198,17184,17149,17212,17172,17193,17172,17212,17211,17212,17231,17211,17250,17231,17249,17250,17258,17240,17259,17290,17308,17290,17259,17258,17380,17381,17343,17414,17416,17381,17416,17452,17433,17359,17360,17342,17395,17380,17360,17324,17342,17308,17456,17455,17417,17433,17473,17456,17491,17496,17472,17491,17472,17455,17515,17497,17526,17544,17526,17571,17544,17572,17555,17522,17497,17496,13485,13473,13461,17591,17603,17556,17618,17591,17590,17695,17683,17670,17644,17645,17618,17669,17670,17645,17555,17591,17556,12393,12406,12400,12403,12401,12392,13545,13574,13591,13545,13563,13574,12402,12407,12395,12403,12395,12407,12396,12397,12408,12402,12396,12409,12397,12400,12410,13545,13515,13516,13485,13515,13473,12423,12411,12416,12405,12411,12417,12418,12406,12405,11223,11128,11267,11221,11128,11079,11079,11177,11221,11177, +11081,11175,11078,11127,11175,11039,11127,11078,11039,10979,11067,10979,10938,11024,11066,11112,11024,11064,11161,11065,11207,11161,11206,11065,11112,11023,13537,13489,13551,11463,11588,11563,13473,13502,13488,13477,13503,13478,13488,13504,13477,11370,11461,11463,11370,11270,11223,11064,11160,11206,11205,11160,11111,11304,11204,11202,11354,11304,11251,11446,11483,11354,11524,11483,11523,11205,11110,11204,2595,2577,2611,11602,11601,11639,11573,11601,11602,11523,11573,11524,2541,2594,2577,2540,2575,2556,2592,2609,2575,2644,2609,2645,2556,2541,2521,2645,2678,2677,12967,12977,12938,2678,2629,2663,12912,12938,12932,12913,12844,12896,12896,12912,12932,12741,12750,12765,12712,12750,12741,12726,12712,12703,12703,12711,12726,12791,12807,12818,12777,12791,12741,2206,2197,2214,12741,12765,12777,12703,12692,12674,17213,17193,17173,17213,17173,17174,17214,17174,17176,17215,17175,17183,17216,17176,17177,17195,17196,17157,17175,17217,17195,17177,17196,17218,17197,17199,17158,17178,17219,17197,17198,17179,17220,17199,17221,17179,17200,17201,17160,5684,5657,5694,17178,17201,17219,17161,17202,17203,17222,17202,17182,17215,17183,17203,17222,17182,17184,17184,17198,17222,17230,17212,17193,17249,17231,17212,17250,17249,17281,17281,17258,17250,17324,17308,17290,17290,17258,17281,17380,17414,17381,17414,17452,17416,17452,17471,17433,17360,17359,17394,17324,17359,17342,17395,17415,17380,17360,17394,17395,17490,17455,17456,17471,17473,17433,17490,17456,17473,17491,17522,17496,17491,17455,17490,17526,17497,17522,17571,17526,17570,17589,17544,17571,17544,17589,17572,17572,17590,17555,17555,17590,17591,17602,17618,17590,17708,17695,17670,17669,17645,17644,17618,17630,17644,17670,17669,17694,12410,12400,12406,13609,13597,13591,13545,13591,13575,12413,12407,12402,13628,13617,13609,12414,12408,12397,12396,12408,12415,12409,12396,12415,12402,12409,12413,12414,12397,12410,13545,13518,13515,13518,13473,13515,17695,17720,17731,12417,12424,12405,12419,12406,12418,12418,12405,12424,11128,11223,11178,11080,11079,11128,11177,11079,11081,11081,11078,11175, +10950,11039,11078,10979,11039,10950,10904,10938,10979,10938,11066,11024,11066,11023,11112,11064,11206,11161,11064,11065,10980,11065,11023,10978,11536,11463,11563,13502,13473,13518,13488,13502,13519,13477,13520,13503,13521,13504,13488,13504,13520,13477,11463,11420,11370,11326,11270,11370,11223,11270,11180,11064,11111,11160,11205,11111,11110,11202,11204,11109,11203,11304,11202,11203,11251,11304,11353,11354,11251,11483,11446,11523,11353,11446,11354,11110,11109,11204,2543,2577,2595,2558,2543,2595,11550,11601,11573,11523,11550,11573,2541,2577,2542,2540,2557,2575,2540,2556,2521,2626,2609,2592,2592,2575,2557,2626,2645,2609,2521,2541,2508,2678,2645,2629,2663,2629,2647,12960,12938,12977,12960,12932,12938,12913,12896,12933,12896,12932,12933,12741,12727,12712,12692,12703,12712,2178,2198,2197,2198,2189,2207,2206,2184,2197,17230,17193,17213,17214,17213,17174,17216,17214,17176,17215,17217,17175,17177,17218,17216,17195,17232,17196,17233,17195,17217,17234,17218,17196,17235,17199,17197,17236,17197,17219,17220,17179,17221,17198,17220,17237,17221,17199,17238,5672,5694,5657,5684,5659,5657,5656,5672,5630,17203,17202,17222,17239,17215,17203,17198,17237,17222,17230,17249,17212,17281,17249,17280,17324,17290,17315,17315,17290,17281,17380,17415,17414,17414,17451,17452,17452,17487,17471,17359,17372,17394,17334,17359,17324,17432,17415,17395,17431,17395,17394,17471,17507,17473,17473,17508,17490,17491,17508,17522,17491,17490,17508,17551,17526,17522,17570,17526,17551,17570,17601,17571,17601,17589,17571,17572,17589,17602,17572,17602,17590,17602,17630,17618,17708,17720,17695,17670,17694,17708,17669,17644,17657,17644,17630,17657,17682,17694,17669,12410,12406,12419,13617,13597,13609,13575,13591,13597,13545,13575,13564,13637,13617,13628,12408,12414,12420,12421,12415,12408,12422,12409,12415,12409,12422,12413,12410,12419,12414,13545,13564,13518,17720,17708,17730,12418,12428,12419,12429,12418,12424,11178,11223,11180,11178,11041,11128,11080,10995,11079,11080,11128,11041,11081,11079,11040,11081,10994,11078,10994,10950,11078,10950,10880,10979,10867,10938, +10904,10979,10880,10904,11066,10938,11023,10980,11065,10978,10980,10977,11064,10938,10978,11023,11536,11462,11463,13518,13519,13502,13521,13488,13519,13520,13534,13503,13521,13535,13504,13520,13504,13536,11462,11420,11463,11420,11326,11370,11326,11224,11270,11224,11180,11270,11022,11111,11064,11110,11111,11022,11108,11202,11109,11203,11202,11108,11203,11159,11251,11353,11251,11303,11482,11523,11446,11353,11482,11446,11109,11110,11021,2543,2542,2577,2558,2544,2543,2559,2510,2558,11482,11550,11523,2541,2542,2508,2522,2557,2540,2540,2521,2507,2596,2626,2592,2563,2592,2557,2626,2629,2645,2478,2521,2508,2629,2612,2647,12977,12991,12960,12961,12932,12960,12913,12933,12945,12933,12932,12961,12751,12727,12741,12692,12712,12727,2198,2178,2189,2178,2197,2184,17213,17214,17230,17251,17214,17216,17239,17217,17215,17218,17252,17216,17195,17233,17232,17196,17232,17234,17233,17217,17253,17234,17254,17218,17199,17235,17238,17236,17235,17197,5629,5632,5656,17220,17221,17255,17255,17237,17220,17221,17238,17256,17866,17867,17868,5659,5633,5657,5629,5656,5630,17257,17203,17222,17257,17239,17203,17257,17222,17237,17249,17230,17265,17249,17265,17280,17281,17280,17315,17324,17315,17280,17414,17415,17451,17487,17452,17451,17471,17487,17506,17359,17334,17372,17372,17406,17394,17334,17324,17280,17432,17453,17415,17432,17395,17454,17450,17395,17431,17424,17431,17394,17507,17471,17506,17507,17508,17473,17551,17522,17508,17551,17583,17570,17598,17601,17570,17616,17589,17601,17617,17602,17589,17630,17602,17617,17708,17694,17719,17682,17669,17657,17657,17630,17643,17694,17682,17707,13617,13598,13597,13597,13598,13575,13576,13564,13575,13638,13617,13637,12414,12425,12420,12421,12408,12420,12421,12426,12415,12426,12422,12415,12413,12422,12427,12414,12419,12425,13564,13547,13518,17730,17708,17719,12429,12428,12418,12434,12419,12428,17738,17730,17719,11178,11180,11041,11080,10997,10995,11079,10995,11040,11080,11041,10997,10994,11081,11040,10994,10951,10950,10950,10881,10880,10867,10978,10938,10937,10980,10978,10977,10980,10903,10977,11022,11064,11562, +11462,11536,13547,13519,13518,13547,13521,13519,13548,13534,13520,13521,13549,13535,13535,13550,13504,13504,13550,13536,13520,13536,13548,11327,11420,11462,11326,11420,11327,11326,11269,11224,11224,11129,11180,11022,11021,11110,11108,11109,11063,11203,11108,11159,11303,11251,11159,11353,11303,11351,11482,11353,11480,11109,11021,11063,2543,2523,2542,2510,2544,2558,2544,2509,2543,2559,2545,2510,2578,2545,2559,2523,2508,2542,2563,2557,2522,2540,2507,2522,2507,2521,2478,2629,2626,2596,2596,2592,2563,2478,2508,2494,2596,2612,2629,2647,2612,2662,12990,12960,12991,12960,12990,12961,12933,12961,12945,2189,2179,2199,12727,12713,12692,2178,2167,2189,2184,2160,2178,17214,17265,17230,17251,17265,17214,17251,17216,17252,17239,17266,17217,17252,17218,17254,17267,17232,17233,17234,17232,17267,17266,17253,17217,17253,17268,17233,17234,17269,17254,17235,17270,17238,17236,17271,17235,5629,5594,5632,17256,17255,17221,17255,17257,17237,17272,17256,17238,5630,5657,5633,5633,5659,5634,5592,5629,5630,17273,17239,17257,17280,17265,17282,17415,17453,17451,17453,17487,17451,17487,17488,17506,17351,17372,17334,17372,17374,17406,17424,17394,17406,17334,17280,17314,17432,17470,17453,17450,17454,17395,17432,17454,17470,17466,17450,17431,17466,17431,17424,17507,17506,17536,17507,17537,17508,17550,17551,17508,17550,17583,17551,17598,17570,17583,17598,17616,17601,17616,17617,17589,17630,17617,17643,17694,17707,17719,17682,17657,17668,17657,17643,17668,17682,17693,17707,13618,13598,13617,13575,13598,13576,13576,13547,13564,13638,13618,13617,13637,13652,13638,12430,12420,12425,12421,12420,12431,12432,12426,12421,12426,12433,12422,12433,12427,12422,12434,12425,12419,12429,12438,12428,12428,12439,12434,17729,17738,17719,11129,11041,11180,10884,10995,10997,10995,10952,11040,10997,11041,10954,10952,10994,11040,10951,10994,10882,10951,10881,10950,10978,10867,10937,10937,10903,10980,10903,10936,10977,10977,10936,11022,13565,13534,13548,13547,13549,13521,13535,13549,13566,13550,13535,13567,13567,13536,13550,13548,13536,13568,11462,11422,11327,11326,11327, +11269,11179,11224,11269,11129,11224,11179,11021,11022,10936,11108,11063,11019,11019,11159,11108,11250,11303,11159,11303,11250,11351,11353,11351,11398,11480,11353,11398,2578,2584,2560,10976,11063,11021,2509,2523,2543,2510,2509,2544,2524,2510,2545,2545,2578,2560,2523,2494,2508,2522,2526,2563,2522,2507,2483,2507,2478,2483,2563,2562,2596,2478,2494,2465,2596,2561,2612,13019,12991,13033,12990,12991,13019,2194,2212,2195,12945,12961,12978,2179,2189,2167,12727,12728,12713,2178,2160,2167,2172,2160,2184,17251,17282,17265,17251,17252,17283,17239,17284,17266,17252,17254,17283,17268,17267,17233,17234,17267,17269,17285,17253,17266,17253,17286,17268,17254,17269,17287,17271,17270,17235,17270,17272,17238,5632,5594,5613,5629,5592,5594,17256,17288,17255,17257,17255,17288,17272,17289,17256,5595,5630,5633,5633,5634,5596,5592,5630,5595,17273,17284,17239,17288,17273,17257,17282,17314,17280,17488,17487,17453,17506,17488,17504,17372,17351,17374,17351,17334,17314,17374,17424,17406,17488,17453,17470,17450,17466,17454,17454,17489,17470,17424,17446,17466,17536,17506,17534,17507,17536,17537,17537,17550,17508,17583,17550,17563,17583,17563,17598,17609,17616,17598,17616,17638,17617,17638,17643,17617,17729,17719,17707,17693,17682,17668,17681,17668,17643,17718,17707,17693,13599,13598,13618,13599,13576,13598,13547,13576,13549,13638,13630,13618,13638,13652,13630,12430,12431,12420,12425,12435,12430,12432,12421,12431,12432,12436,12426,12433,12426,12436,12433,12437,12427,12425,12434,12435,12429,12445,12438,12428,12438,12439,12439,12444,12434,11129,11083,11041,10884,10952,10995,10954,10884,10997,10954,11041,10955,10994,10952,10882,10881,10951,10882,10867,10866,10937,10903,10937,10868,10903,10865,10936,13565,13548,13577,13566,13549,13578,13566,13579,13535,13567,13535,13579,13536,13567,13580,13536,13580,13568,13548,13568,13581,11422,11372,11327,11269,11327,11226,11179,11269,11225,11129,11179,11083,10936,10976,11021,11019,11063,10976,11019,11158,11159,11250,11159,11158,11351,11250,11289,11351,11289,11398,2584,2585,2551,2560,2584,2550,2523,2509,2494,2479,2509, +2510,2524,2480,2510,2545,2560,2524,2522,2497,2526,2563,2526,2562,2522,2483,2497,2453,2483,2478,2561,2596,2562,2479,2465,2494,2453,2478,2465,13045,13033,13060,13019,13033,13045,2201,2182,2195,2171,2194,2195,2184,2194,2172,2167,2154,2179,2167,2160,2154,2160,2172,2156,17251,17283,17282,17266,17284,17299,17283,17254,17300,17268,17301,17267,17269,17267,17301,17285,17286,17253,17266,17299,17285,17302,17268,17286,17269,17303,17287,17254,17287,17300,17304,17270,17271,17305,17272,17270,5579,5613,5594,5559,5594,5592,17289,17288,17256,17289,17272,17306,5595,5633,5596,5614,5596,5634,5595,5560,5592,17273,17307,17284,17273,17288,17307,17316,17314,17282,17470,17504,17488,17506,17504,17534,17351,17336,17374,17351,17314,17316,17374,17407,17424,17501,17454,17466,17501,17489,17454,17470,17489,17505,17446,17424,17407,17483,17466,17446,17534,17561,17536,17537,17536,17561,17550,17537,17563,17598,17563,17582,17638,17616,17609,17598,17582,17609,17638,17665,17643,17729,17707,17728,17681,17693,17668,17681,17643,17665,17718,17728,17707,17718,17693,17706,13618,13610,13599,13576,13599,13578,13578,13549,13576,13618,13630,13610,12440,12431,12430,12440,12430,12435,12432,12431,12440,12436,12432,12441,12433,12436,12442,12443,12437,12433,12435,12434,12444,17729,17747,17754,12448,12439,12438,12449,12444,12439,11041,11083,10955,10952,10884,10882,10937,10866,10868,10903,10868,10834,10865,10903,10834,10936,10865,10976,11503,11422,11537,13566,13578,13592,13579,13566,13593,13567,13579,13594,13567,13594,13580,13580,13581,13568,11422,11464,11372,11272,11327,11372,11272,11226,11327,11269,11226,11130,11225,11269,11130,11179,11225,11130,11179,11130,11083,10935,11019,10976,11019,11054,11158,11158,11289,11250,2585,2604,2570,2570,2551,2585,2550,2584,2551,2524,2560,2550,2479,2494,2509,2510,2480,2479,2480,2524,2515,2497,2496,2526,2526,2525,2562,2497,2483,2482,2453,2456,2483,2561,2562,2525,2454,2465,2479,2465,2430,2453,13045,13060,13073,2210,2192,2201,2182,2201,2192,2171,2195,2182,2171,2172,2194,2160,2148,2154,2156,2172,2171,2160,2156,2148,17316,17282,17283,17284,17317, +17299,17283,17300,17316,17302,17301,17268,17269,17301,17303,17286,17285,17318,17285,17299,17319,17302,17286,17320,17321,17287,17303,17321,17300,17287,17304,17305,17270,17322,17304,17271,17305,17306,17272,5579,5612,5613,5559,5579,5594,5560,5559,5592,17289,17307,17288,17289,17306,17323,5596,5561,5595,5596,5614,5580,5595,5561,5560,17317,17284,17307,17504,17470,17505,17534,17504,17533,17351,17316,17336,17375,17374,17336,17374,17375,17407,17483,17501,17466,17521,17489,17501,17505,17489,17521,17449,17446,17407,17483,17446,17449,17578,17561,17534,17561,17581,17537,17563,17537,17582,17638,17609,17652,17608,17609,17582,17652,17665,17638,17747,17729,17728,17681,17706,17693,17665,17679,17681,17728,17718,17737,17706,17727,17718,13610,13592,13599,13592,13578,13599,13640,13610,13630,12446,12440,12435,12432,12440,12441,12436,12441,12447,12442,12436,12447,12442,12443,12433,12435,12444,12446,17765,17754,17747,12448,12453,12439,12449,12452,12444,12454,12449,12439,10955,11083,11042,10868,10866,10803,10834,10868,10803,10834,10774,10865,10976,10865,10935,11422,11503,11464,13592,13593,13566,13593,13600,13579,13600,13594,13579,13594,13601,13580,13580,13602,13581,11464,11502,11372,11272,11372,11371,11226,11272,11181,11130,11226,11131,11042,11083,11130,10935,11020,11019,11054,11019,11020,11054,11146,11158,11158,11239,11289,11289,11340,11389,2570,2532,2551,2550,2551,2515,2550,2515,2524,2480,2454,2479,2502,2480,2515,2496,2497,2467,2526,2496,2525,2456,2482,2483,2482,2467,2497,2453,2444,2456,2525,2546,2561,2454,2430,2465,2430,2433,2453,13089,13045,13073,2210,2208,2192,2169,2182,2192,2182,2161,2171,2161,2156,2171,2156,2151,2148,17335,17299,17317,17336,17316,17300,17337,17301,17302,17337,17303,17301,17318,17285,17338,17286,17318,17320,17319,17299,17335,17319,17338,17285,17337,17302,17320,17321,17303,17337,17321,17339,17300,17322,17305,17304,17340,17306,17305,5612,5579,5593,5559,5540,5579,5559,5560,5523,17289,17341,17307,5703,5719,5712,17289,17323,17341,5596,5580,5561,5597,5580,5614,5524,5560,5561,17341,17317,17307,17504,17505,17533,17560,17534, +17533,17375,17336,17339,17407,17375,17392,17501,17483,17518,17521,17501,17532,17521,17535,17505,17407,17411,17449,17449,17486,17483,17581,17561,17578,17578,17534,17560,17582,17537,17581,17637,17652,17609,17637,17609,17608,17582,17581,17608,17652,17679,17665,17747,17728,17737,17681,17704,17706,17681,17679,17704,17718,17736,17737,17704,17727,17706,17727,17725,17718,13592,13610,13619,13629,13610,13640,12446,12450,12440,12450,12441,12440,12447,12441,12451,13639,13651,13619,13629,13640,13639,12446,12444,12452,17753,17765,17747,17765,17753,17773,12454,12439,12453,12449,12457,12452,12458,12449,12454,10996,10955,11042,10834,10803,10775,10834,10775,10774,10865,10774,10833,10935,10865,10856,13611,13593,13592,13593,13611,13600,13612,13594,13600,13613,13601,13594,13602,13580,13601,13601,13623,13602,11421,11372,11502,11421,11371,11372,11272,11371,11271,11181,11272,11271,11226,11181,11131,11130,11131,11042,10935,10968,11020,10968,11054,11020,11054,11098,11146,11158,11146,11239,11239,11340,11289,2570,2603,2569,2570,2569,2532,2515,2551,2532,2480,2461,2454,2502,2471,2480,2532,2502,2515,2466,2496,2467,2511,2525,2496,2467,2482,2456,2433,2444,2453,2431,2456,2444,2525,2511,2546,2442,2430,2454,2430,2410,2433,2210,2220,2208,13089,13073,13104,2192,2208,2191,2169,2161,2182,2169,2192,2191,2151,2156,2161,17317,17341,17335,17339,17336,17300,17318,17338,17352,17352,17320,17318,17319,17335,17353,17353,17338,17319,17337,17320,17354,17321,17337,17355,17355,17339,17321,17322,17356,17305,17340,17357,17306,17356,17340,17305,5593,5579,5540,5612,5593,5631,5559,5523,5540,5523,5560,5524,5682,5703,5712,17341,17323,17358,5580,5541,5561,5597,5542,5580,5541,5524,5561,17535,17533,17505,17560,17533,17535,17375,17339,17355,17392,17375,17355,17392,17411,17407,17518,17483,17531,17518,17532,17501,17521,17532,17548,17549,17535,17521,17469,17449,17411,17486,17449,17469,17486,17519,17483,17596,17581,17578,17596,17578,17560,17652,17637,17636,17608,17606,17637,17608,17581,17606,17652,17636,17679,17747,17737,17753,17704,17679,17678,17718,17725,17736,17737,17736,17753, +17704,17705,17727,17727,17705,17725,13629,13619,13610,13592,13619,13611,12446,12455,12450,12456,12441,12450,12456,12451,12441,13651,13663,13642,13619,13651,13642,13639,13619,13629,12446,12452,12455,17764,17773,17753,12462,12454,12453,12457,12449,12458,12461,12452,12457,12454,12463,12458,11042,11084,10996,10833,10774,10769,10856,10865,10833,10968,10935,10856,13611,13620,13600,13613,13594,13612,13612,13600,13621,13622,13601,13613,13601,13622,13623,11460,11421,11502,11371,11421,11328,11371,11328,11271,11181,11271,11227,11181,11084,11131,11042,11131,11084,11008,11054,10968,11098,11054,11008,11192,11146,11098,11192,11239,11146,11288,11340,11239,2616,2569,2603,2532,2569,2533,2480,2471,2461,2442,2454,2461,2502,2488,2471,2533,2502,2532,2511,2496,2466,2466,2467,2455,2467,2456,2431,2433,2423,2444,2431,2444,2421,13104,13073,13117,2430,2442,2413,2413,2410,2430,2410,2423,2433,2220,2221,2208,2220,2230,2221,2215,2191,2208,2169,2155,2161,2181,2169,2191,2151,2161,2155,17373,17335,17341,17376,17352,17338,17320,17352,17377,17353,17335,17373,17378,17338,17353,17320,17377,17354,17337,17354,17379,17379,17355,17337,17356,17357,17340,16670,16671,16668,5648,5631,5593,5487,5540,5523,5524,5485,5523,5682,5681,5703,17412,17357,17393,5670,5681,5644,5580,5542,5541,5542,5597,5581,5488,5524,5541,17562,17560,17535,17379,17392,17355,17379,17411,17392,17531,17483,17519,17546,17518,17531,17546,17532,17518,17546,17548,17532,17549,17521,17548,17549,17562,17535,5606,5571,5587,5605,5587,5570,5605,5570,5622,17581,17596,17606,17562,17596,17560,17637,17606,17636,17636,17678,17679,17704,17678,17705,17725,17716,17736,17753,17736,17764,17705,17715,17725,13631,13611,13619,12455,12459,12450,12459,12456,12450,12451,12456,12460,13663,13664,13642,13619,13642,13631,12455,12452,12461,17782,17773,17764,12462,12463,12454,12467,12457,12458,12461,12457,12468,12467,12458,12463,11082,10996,11084,10769,10856,10833,10926,10968,10856,13620,13611,13632,13620,13621,13600,13633,13613,13612,13621,13634,13612,13633,13622,13613,13644,13623,13622,11421,11460,11328,11328,11227,11271, +11084,11181,11227,11008,10968,10926,11098,11008,11056,11192,11098,11148,11192,11288,11239,2605,2569,2616,2569,2534,2533,2461,2471,2449,2442,2461,2436,2516,2488,2502,2471,2488,2449,2516,2502,2533,2495,2511,2466,2455,2467,2431,2443,2466,2455,2421,2444,2423,2411,2431,2421,13104,13117,13135,2442,2436,2413,2413,2394,2410,2410,2404,2423,2215,2208,2221,2230,2237,2221,2191,2215,2209,2155,2169,2181,2200,2181,2191,5655,5670,5644,17376,17389,17352,17378,17376,17338,17389,17377,17352,17353,17373,17390,17378,17353,17390,17354,17377,17391,17354,17391,17379,17393,17357,17356,5487,5558,5540,16670,16668,16664,17430,17413,17356,5648,5593,5658,5487,5523,5485,5524,5488,5485,5681,5682,5644,5671,5682,5693,5541,5542,5525,5581,5543,5542,5541,5525,5488,17411,17379,17391,17531,17519,17547,17546,17531,17558,17548,17546,17574,17579,17549,17548,17580,17562,17549,17411,17391,17428,5571,5550,5587,5570,5587,5550,17559,17519,17575,17562,17606,17596,17624,17636,17606,17678,17636,17664,17688,17705,17678,17716,17725,17702,17736,17716,17745,17736,17763,17764,17705,17688,17715,17725,17715,17702,13631,13641,13611,12455,12464,12459,12456,12459,12465,12460,12456,12466,13642,13664,13653,13642,13653,13631,12455,12461,12464,12484,12476,12462,12471,12463,12462,12467,12468,12457,12470,12461,12468,12467,12463,12472,11134,11082,11084,10828,10856,10769,10926,10856,10898,13611,13641,13632,13632,13621,13620,13612,13643,13633,13621,13632,13634,13612,13634,13643,13645,13622,13633,13644,13622,13645,11417,11328,11460,11328,11324,11227,11227,11222,11084,10926,10969,11008,11008,10969,11056,11056,11148,11098,2605,2638,2653,2638,2605,2616,2579,2569,2605,2579,2534,2569,2534,2516,2533,2436,2461,2449,2516,2499,2488,2472,2449,2488,2466,2481,2495,2443,2455,2431,2466,2443,2481,2421,2423,2404,2431,2411,2443,2411,2421,2404,13149,13104,13135,2436,2427,2413,2413,2407,2394,2395,2410,2394,2410,2395,2404,2215,2221,2227,2239,2221,2237,2222,2209,2215,2209,2200,2191,2155,2181,2170,2181,2200,2193,5609,5655,5644,17408,17389,17376,17409,17376,17378,17389,17410,17377,5625,5609,5553,17391,17377, +17410,17413,17393,17356,16668,16669,16667,16668,16667,16664,5673,5685,5648,5673,5648,5658,5448,5485,5488,5671,5644,5682,17413,17429,17393,5542,5508,5525,5543,5581,5562,5542,5543,5508,5488,5525,5508,17547,17519,17559,17531,17547,17558,17546,17558,17574,17579,17548,17574,17549,17579,17580,17562,17580,17597,17391,17410,17428,5533,5550,5571,5479,5570,5550,17559,17575,17594,17562,17597,17606,17635,17636,17624,17624,17606,17597,17635,17664,17636,17678,17664,17688,17689,17716,17702,17744,17745,17716,17736,17745,17752,17736,17752,17763,17688,17702,17715,13641,13631,13653,12459,12464,12465,12456,12465,12469,12456,12469,12466,13664,13672,13653,12470,12464,12461,12471,12462,12476,12471,12475,12463,12467,12477,12468,12468,12477,12470,12472,12463,12478,17846,17844,17842,11222,11134,11084,10828,10898,10856,10926,10898,10969,13654,13632,13641,13655,13633,13643,13632,13656,13634,13634,13657,13643,13633,13655,13645,11417,11460,11500,11328,11417,11324,11227,11324,11222,10969,11055,11056,11056,11193,11148,2605,2653,2639,2605,2613,2579,2579,2564,2534,2516,2534,2499,2436,2449,2427,2499,2472,2488,2472,2459,2449,13149,13135,13166,13166,13217,13201,13217,13236,13201,2411,2404,2387,2407,2413,2427,2407,2389,2394,2386,2395,2394,2395,2387,2404,2231,2227,2221,2222,2215,2227,2231,2221,2239,2239,2237,2243,2211,2209,2222,2200,2209,2193,2170,2181,2193,5626,5609,5644,17408,17425,17389,17409,17408,17376,17426,17409,17378,17389,17427,17410,5589,5553,5609,16657,16664,16667,5685,5673,5695,16657,16662,16664,5466,5448,5488,5671,5645,5644,5683,5671,5685,5510,5543,5562,5543,5510,5508,5449,5488,5508,17559,17576,17547,17577,17558,17547,17593,17574,17558,17604,17579,17574,17579,17607,17580,17580,17607,17597,17410,17448,17428,5533,5479,5550,17622,17605,17575,17575,17605,17594,5607,5552,5588,17607,17635,17624,17597,17607,17624,17662,17664,17635,17662,17688,17664,17717,17716,17689,17662,17689,17702,17752,17745,17744,17716,17735,17744,12491,12485,12476,17688,17662,17702,13654,13641,13653,12465,12464,12473,12474,12469,12465,13697,13673,13672,13653,13672,13654,12470, +12473,12464,12471,12476,12485,12483,12475,12471,12463,12475,12478,17841,17845,17842,17843,17840,17844,17840,17842,17844,11222,11228,11134,10828,10860,10898,10971,10969,10898,13632,13654,13656,13655,13643,13665,13634,13656,13657,13643,13657,13666,13655,13665,13645,11500,11535,11417,11418,11324,11417,11222,11324,11369,10969,10971,11055,11055,11147,11056,11147,11193,11056,2605,2639,2613,2598,2579,2613,2579,2598,2564,2564,2528,2534,2528,2499,2534,2427,2449,2459,2499,2469,2472,2469,2459,2472,13181,13149,13166,13181,13166,13201,13250,13201,13236,2422,2411,2387,2427,2406,2407,2389,2407,2406,2389,2377,2394,2395,2386,2369,2377,2386,2394,2387,2395,2369,2231,2238,2227,2227,2232,2222,2231,2239,2243,2243,2237,2248,2209,2211,2193,2222,2228,2211,5626,5589,5609,5626,5644,5645,17408,17447,17425,17389,17425,17427,17408,17409,17426,17448,17410,17427,5553,5589,5573,5507,5465,5486,5673,5704,5695,5685,5695,5683,16657,16661,16662,5449,5466,5488,5671,5646,5645,5646,5671,5683,5508,5510,5489,5508,5489,5449,17547,17576,17595,17593,17558,17577,17547,17595,17577,17604,17574,17593,17604,17621,17579,17607,17579,17621,5479,5533,5517,5480,5516,5479,5552,5516,5535,5588,5552,5572,17634,17635,17607,17662,17635,17634,17716,17717,17735,17689,17690,17717,17689,17662,17663,17762,17752,17744,17744,17735,17746,17762,17781,17752,12479,12465,12473,12474,12480,12469,12481,12474,12465,12487,12469,12480,13673,13654,13672,12473,12470,12482,12471,12485,12490,12483,12489,12475,12471,12490,12483,12489,12478,12475,12488,12482,12470,17841,17842,17838,17839,17840,17843,17840,17838,17842,11222,11323,11228,10898,10860,10929,10929,10971,10898,13673,13656,13654,13674,13665,13643,13657,13656,13675,13676,13666,13657,13674,13643,13666,13665,13677,13645,11501,11417,11535,11324,11418,11369,11418,11417,11501,11369,11323,11222,10971,11011,11055,11147,11055,11150,2672,2649,2639,2639,2649,2613,2598,2613,2630,2598,2597,2564,2565,2528,2564,2499,2528,2500,2427,2459,2447,2499,2500,2469,2447,2459,2469,13200,13149,13181,13218,13181,13201,13250,13237,13201,2387,2432,2422,2427,2426,2406, +2406,2388,2389,2370,2377,2389,2386,2377,2369,2378,2387,2369,2242,2238,2231,2227,2238,2232,2222,2232,2228,2242,2231,2243,2243,2248,2251,5589,5626,5610,5626,5645,5610,17467,17447,17408,17425,17447,17468,17425,17468,17427,17467,17408,17426,5517,5533,5551,5589,5554,5573,5536,5553,5573,16657,16655,16653,16663,16666,16661,16661,16657,16659,5610,5645,5646,5683,5576,5646,5608,5623,5588,17595,17593,17577,17620,17604,17593,17621,17604,17632,17634,17607,17621,5498,5479,5517,5480,5500,5516,5441,5480,5479,5500,5535,5516,5535,5572,5552,5608,5588,5572,17634,17663,17662,17735,17717,17726,17689,17663,17690,17703,17717,17690,17744,17746,17762,17735,17726,17746,17780,17781,17762,12481,12465,12479,12479,12473,12486,13683,13707,13685,13719,13699,13707,13673,13683,13656,12486,12473,12482,17780,17795,17781,17839,17833,17836,12490,12495,12483,12482,12488,12493,17835,17841,17838,17831,17840,17839,17831,17838,17840,11228,11323,11273,10929,10860,10859,10971,10929,11011,13684,13665,13674,13685,13675,13656,13676,13657,13675,13686,13666,13676,13687,13674,13666,13665,13688,13677,13688,13701,13677,11418,11423,11369,13735,13701,13728,11369,11373,11323,11057,11055,11011,11150,11055,11057,11147,11150,11195,2649,2672,2681,2630,2613,2649,2630,2597,2598,2565,2564,2597,2565,2529,2528,2529,2500,2528,2426,2427,2447,2500,2485,2469,2447,2469,2448,13216,13200,13181,13181,13218,13216,13237,13218,13201,13270,13237,13250,13340,13321,13270,2406,2426,2412,2412,2388,2406,2389,2388,2370,2370,2362,2377,2369,2377,2362,2363,2378,2369,2242,2246,2238,2249,2242,2243,2248,2256,2251,2243,2251,2253,5589,5610,5554,17467,17484,17447,17468,17447,17484,17468,17485,17427,5501,5553,5536,5536,5573,5554,16653,16659,16657,16660,16663,16661,16660,16661,16659,5646,5627,5610,16663,16660,16665,17869,17870,17871,17595,17633,17623,17595,17623,17593,17620,17632,17604,17593,17623,17620,17621,17632,17649,17621,17651,17634,5498,5461,5479,5498,5517,5534,5437,5500,5480,5437,5480,5441,5441,5479,5461,17723,17701,17713,17713,17686,17700,5624,5608,5572,17663,17634,17651,17703,17726,17717,17676,17690, +17663,17703,17690,17676,17762,17746,17772,17743,17746,17726,17762,17772,17780,12492,12481,12479,12492,12479,12486,13699,13685,13707,13683,13685,13656,13719,13710,13699,12486,12482,12494,17794,17795,17780,17823,17836,17833,17839,17836,17831,12495,12490,12500,17823,17833,17827,12498,12493,12488,12499,12482,12493,17835,17838,17832,17832,17838,17831,11323,11373,11273,10928,10929,10859,10928,11011,10929,13684,13698,13665,13684,13674,13687,13699,13675,13685,13676,13675,13699,13687,13666,13686,13686,13676,13700,13665,13698,13688,13701,13688,13712,11418,11465,11423,11369,11423,11373,13728,13701,13722,10928,11057,11011,11150,11057,11100,11150,11100,11195,11147,11195,11290,2681,2672,2702,2664,2649,2681,2649,2664,2630,2630,2648,2597,2565,2597,2599,2565,2566,2529,2500,2529,2512,2448,2426,2447,2500,2512,2485,2469,2485,2448,2248,2261,2256,2261,2267,2256,13237,13251,13218,13268,13237,13270,13270,13321,13305,2412,2426,2435,2388,2412,2405,2388,2371,2370,2370,2357,2362,2362,2356,2369,2363,2369,2356,2242,2249,2246,2243,2253,2249,2262,2251,2256,2262,2253,2251,5610,5591,5554,17502,17484,17467,17503,17468,17484,5501,5536,5519,5502,5536,5554,16653,16660,16659,5610,5627,5591,5611,5578,5576,17870,17872,17871,17623,17633,17650,17647,17632,17620,17648,17620,17623,17649,17632,17659,17621,17649,17651,17503,17484,17520,5500,5437,5518,5441,5422,5437,5441,5461,5401,17713,17701,17686,17661,17700,17686,17650,17633,17661,17676,17663,17651,17726,17703,17722,17676,17699,17703,17761,17772,17746,17761,17746,17743,17722,17743,17726,17780,17772,17761,12492,12496,12481,12486,12497,12492,13676,13699,13710,12494,12482,12499,12497,12486,12494,17794,17780,17788,17836,17823,17831,12500,12506,12495,17823,17827,17816,12498,12502,12493,12503,12499,12493,17832,17826,17835,17822,17832,17831,11273,11373,11423,13684,13708,13698,13709,13684,13687,13711,13687,13686,13700,13676,13710,13711,13686,13700,13712,13688,13698,13722,13701,13712,11374,11423,11465,11374,11465,11504,11100,11241,11195,11241,11290,11195,2702,2697,2681,2664,2681,2697,2648,2630,2664,2631,2597,2648,2631, +2599,2597,2565,2599,2566,2529,2566,2547,2512,2529,2547,2435,2426,2448,2512,2486,2485,2486,2448,2485,2256,2267,2274,13251,13237,13268,13218,13251,13269,13268,13270,13305,2412,2435,2424,2424,2405,2412,2390,2388,2405,2388,2390,2371,2370,2371,2357,2350,2362,2357,2356,2362,2350,2356,2338,2363,2249,2252,2246,2253,2257,2249,2262,2256,2268,2265,2253,2262,5574,5554,5591,5462,5461,5499,5481,5462,5501,5502,5519,5536,5481,5501,5519,5574,5502,5554,5628,5611,5647,17872,17873,17871,5611,5628,5578,5557,5576,5578,5576,5556,5577,17623,17650,17660,17647,17659,17632,17648,17647,17620,17623,17660,17648,17649,17659,17675,17651,17649,17676,17714,17701,17724,5441,5400,5422,5422,5379,5437,5462,5401,5461,5441,5401,5400,17701,17677,17686,17661,17686,17677,17661,17677,17650,17703,17699,17722,17676,17675,17699,17761,17743,17760,17722,17742,17743,17761,17788,17780,12501,12496,12492,12501,12492,12497,12504,12494,12499,12497,12494,12505,17794,17788,17802,17822,17831,17823,12506,12509,12495,17817,17816,17827,17823,17816,17813,17835,17826,17825,12507,12493,12502,12504,12499,12503,12503,12493,12508,17832,17822,17826,11374,11273,11423,13717,13708,13684,13708,13718,13698,13709,13717,13684,13709,13687,13711,13720,13700,13710,13700,13721,13711,13712,13698,13718,13722,13712,13718,11374,11504,11466,11290,11241,11343,2707,2697,2702,2664,2697,2694,2666,2648,2664,2631,2648,2666,2599,2631,2632,2566,2599,2614,2547,2566,2580,2547,2530,2512,2435,2448,2460,2512,2530,2486,2470,2448,2486,2256,2274,2275,13251,13268,13286,13269,13251,13287,13306,13268,13305,2445,2424,2435,2424,2434,2405,2405,2408,2390,2379,2371,2390,2371,2364,2357,2350,2357,2345,2356,2350,2338,13355,13341,13305,2249,2257,2252,2257,2253,2265,2275,2268,2256,2268,2276,2262,2276,2265,2262,17875,17873,17874,5442,5462,5481,5481,5519,5502,5574,5590,5502,17872,17874,17873,5557,5520,5576,5538,5557,5578,5556,5576,5520,5577,5556,5537,17650,17677,17660,17672,17659,17647,17673,17647,17648,17674,17648,17660,17659,17672,17675,17649,17675,17676,17687,17701,17714,5419,5437,5379,5422,5400,5379,5442,5401,5462,5400,5401, +5378,17701,17687,17677,17722,17699,17710,17675,17710,17699,17760,17743,17742,17760,17779,17761,17742,17722,17733,17761,17779,17788,12497,12505,12501,12504,12505,12494,17788,17801,17802,17823,17813,17822,17809,17817,17802,17809,17816,17817,17813,17816,17808,17825,17826,17812,12507,12508,12493,12502,12511,12507,12504,12503,12512,12512,12503,12508,17822,17812,17826,13717,13725,13708,13708,13726,13718,13717,13709,13727,13709,13711,13727,12501,12510,12514,13727,13711,13721,13733,13722,13718,13742,13747,13722,2710,2707,2702,2697,2707,2694,2664,2694,2666,2599,2632,2614,2566,2614,2600,2600,2580,2566,2547,2580,2567,2547,2567,2530,2460,2448,2470,2435,2460,2457,2530,2513,2486,2486,2501,2470,2286,2275,2274,13306,13286,13268,13287,13251,13286,2290,2274,2296,13306,13305,13341,2445,2434,2424,2435,2457,2445,2405,2434,2425,2405,2425,2408,2396,2390,2408,2371,2379,2364,2379,2390,2396,2364,2345,2357,2338,2350,2345,2338,2335,2328,2257,2263,2252,2265,2269,2257,2275,2280,2268,2281,2276,2268,2265,2276,2278,17874,17876,17875,5502,5442,5481,17885,17876,17882,5575,5577,5537,5557,5538,5520,5556,5520,5537,17687,17660,17677,17673,17672,17647,17648,17674,17673,17660,17685,17674,17672,17697,17675,17687,17714,17712,5376,5419,5379,5340,5379,5400,5404,5401,5442,5401,5362,5378,5400,5378,5340,17710,17733,17722,17675,17697,17710,17760,17742,17771,17760,17771,17779,17741,17742,17733,17779,17778,17788,12501,12505,12510,12504,12513,12505,17778,17801,17788,17809,17802,17801,17822,17813,17812,17809,17808,17816,17799,17813,17808,17825,17812,17820,12515,12508,12507,12507,12511,12516,12512,12517,12504,12512,12508,12515,13727,13725,13717,13725,13726,13708,13733,13718,13726,13734,13727,13721,13742,13722,13733,13741,13747,13742,2707,2710,2666,2694,2707,2666,2650,2614,2632,2600,2614,2634,2581,2580,2600,2567,2580,2581,2567,2548,2530,2460,2470,2487,2457,2460,2484,2530,2548,2513,2486,2513,2501,2470,2501,2487,2286,2280,2275,2286,2274,2290,13306,13322,13286,2296,2311,2306,2290,2296,2297,2328,2317,2323,2446,2434,2445,2445,2457,2446,2446,2425,2434,2425,2414,2408,2408,2414, +2396,2373,2364,2379,2379,2396,2399,2364,2358,2345,2335,2338,2345,2335,2317,2328,2269,2263,2257,2269,2265,2278,2281,2268,2280,2276,2281,2278,17874,17877,17876,17876,17879,17882,5555,5575,5537,5483,5520,5538,5537,5520,5504,17687,17685,17660,17673,17698,17672,17674,17698,17673,5477,5438,5439,17709,17697,17672,17714,17734,17712,17685,17687,17712,5376,5398,5419,5376,5379,5360,5340,5360,5379,5401,5404,5362,17884,17882,17879,5378,5362,5341,5378,5341,5340,17710,17721,17733,17710,17697,17721,17759,17771,17742,17779,17771,17778,17759,17742,17741,17721,17741,17733,12513,12510,12505,12517,12513,12504,17793,17801,17778,17793,17809,17801,17813,17806,17812,17793,17808,17809,17799,17806,17813,17793,17799,17808,17811,17820,17812,12507,12516,12515,12511,12518,12516,12512,12519,12517,12512,12515,12520,13727,13739,13725,13740,13726,13725,13726,13741,13733,13727,13734,13739,13742,13733,13741,13741,13759,13747,2650,2634,2614,2634,2633,2600,2600,2633,2581,2567,2581,2548,2460,2487,2484,2484,2446,2457,2548,2531,2513,2531,2501,2513,2514,2487,2501,2286,2291,2280,2286,2290,2297,2323,2317,2306,2306,2297,2296,2425,2446,2458,2414,2425,2437,2414,2415,2396,2373,2358,2364,2391,2373,2379,2415,2399,2396,2379,2399,2391,2358,2349,2345,2335,2345,2349,2335,2327,2317,2263,2269,2277,2282,2269,2278,2291,2281,2280,2278,2281,2292,17878,17876,17877,17876,17878,17879,5537,5503,5555,5483,5504,5520,16633,16647,16644,5537,5504,5503,17711,17672,17698,5477,5439,5478,5377,5439,5438,17721,17697,17709,17709,17672,17711,5377,5420,5398,5377,5438,5420,5376,5361,5398,5376,5360,5323,5303,5360,5340,5404,5382,5362,17884,17879,17886,5362,5324,5341,5341,5304,5340,17759,17778,17771,17759,17741,17749,17721,17749,17741,12521,12513,12517,17778,17786,17793,17812,17806,17798,17799,17785,17806,17799,17793,17786,17820,17811,17821,17811,17812,17798,12515,12516,12522,17820,17821,17830,12523,12516,12518,12519,12512,12520,12519,12524,12517,12522,12520,12515,13740,13725,13739,13745,13726,13740,13746,13741,13726,13764,13759,13741,2633,2634,2667,2615,2581,2633,2581,2568,2548,2487,2498,2484,2446, +2484,2468,2531,2548,2568,2531,2514,2501,2527,2487,2514,2297,2291,2286,2317,2307,2306,2307,2297,2306,2468,2458,2446,2425,2458,2450,2437,2425,2450,2415,2414,2437,2373,2380,2358,2391,2380,2373,2398,2399,2415,2391,2399,2398,2358,2361,2349,2344,2335,2349,2327,2335,2336,2322,2317,2327,2269,2282,2277,2282,2278,2287,2298,2281,2291,2281,2298,2292,2287,2278,2292,17878,17877,17880,17881,17879,17878,5463,5504,5483,5522,5483,5539,5503,5504,5463,5440,5497,5478,5440,5478,5439,5421,5439,5377,17709,17732,17721,17709,17711,17732,5377,5398,5361,5376,5323,5361,5360,5303,5323,5340,5304,5303,5382,5342,5362,17883,17886,17879,5324,5362,5342,5341,5324,5304,17759,17770,17778,17770,17759,17749,17739,17749,17721,12521,12517,12524,17786,17778,17770,17785,17798,17806,17799,17786,17785,17811,17815,17821,17811,17798,17805,12525,12522,12516,17829,17830,17821,12523,12525,12516,12518,12526,12523,12519,12520,12527,12519,12528,12524,12522,12527,12520,13739,13752,13740,13746,13726,13745,13740,13752,13745,13741,13746,13753,11506,11589,11564,13758,13764,13741,2633,2667,2652,2615,2601,2581,2652,2615,2633,2601,2568,2581,2487,2527,2498,2498,2468,2484,2531,2568,2549,2514,2531,2549,2549,2527,2514,2302,2291,2297,2317,2322,2307,2307,2302,2297,2458,2468,2450,2437,2450,2462,2451,2415,2437,2380,2372,2358,2391,2398,2380,2398,2415,2416,2358,2372,2361,2349,2361,2354,2335,2344,2336,2344,2349,2354,2322,2327,2336,2277,2282,2285,2294,2282,2287,2298,2291,2303,2304,2292,2298,2299,2287,2292,5482,5503,5463,17883,17879,17881,5482,5463,5423,5443,5463,5483,5505,5483,5522,17711,17750,17740,5440,5439,5421,5421,5377,5399,17732,17739,17721,17711,17740,17732,5377,5361,5339,5361,5323,5339,5285,5323,5303,5304,5270,5303,17883,17887,17886,5342,5305,5324,5287,5304,5324,17770,17749,17768,17739,17756,17749,17786,17770,17768,17785,17791,17798,17786,17768,17785,17811,17805,17815,17819,17821,17815,17798,17791,17805,12522,12525,12527,17819,17829,17821,12529,12525,12523,17819,17828,17829,12530,12519,12527,12528,12519,12530,13757,13745,13752,13753,13746,13745,13758,13741,13753,11589,11614,11564, +2636,2601,2615,2651,2615,2652,2601,2602,2568,2517,2498,2527,2498,2489,2468,2568,2583,2549,2549,2552,2527,2302,2303,2291,2307,2322,2318,2313,2302,2307,2450,2468,2489,2473,2462,2450,2451,2437,2462,2415,2451,2438,2384,2372,2380,2380,2398,2397,2416,2415,2438,2416,2397,2398,2372,2367,2361,2354,2361,2367,2336,2344,2346,2344,2354,2355,2330,2322,2336,2293,2285,2282,2277,2285,2273,2294,2293,2282,2294,2287,2300,2298,2303,2304,2304,2299,2292,2299,2300,2287,5380,5423,5402,5443,5423,5463,5505,5443,5483,17740,17750,17757,5399,5440,5421,5339,5399,5377,17748,17739,17732,17740,17751,17732,5302,5339,5323,5285,5302,5323,5285,5303,5286,5304,5287,5270,5303,5270,5286,5363,5342,5380,5305,5342,5363,5287,5324,5305,17756,17768,17749,17739,17755,17756,17785,17776,17791,17776,17785,17768,17804,17815,17805,17804,17819,17815,17804,17805,17791,12531,12527,12525,12525,12529,12531,12523,12532,12529,17819,17818,17828,12530,12527,12533,12530,12533,12528,13757,13763,13745,13753,13745,13763,13753,13765,13758,2636,2635,2601,2651,2636,2615,2602,2601,2635,2602,2583,2568,2517,2489,2498,2517,2527,2552,2583,2582,2549,2582,2552,2549,2302,2312,2303,2330,2318,2322,2313,2307,2318,2302,2313,2312,2473,2450,2489,2462,2473,2490,2474,2451,2462,2438,2451,2452,2384,2367,2372,2384,2380,2397,2438,2428,2416,2428,2397,2416,2354,2367,2368,2344,2355,2346,2336,2346,2340,2354,2368,2355,2336,2340,2330,2293,2284,2285,2284,2273,2285,2293,2294,2300,2304,2303,2314,2299,2304,2309,2299,2308,2300,5443,5402,5423,5380,5402,5363,5505,5521,5443,5440,5399,5460,17740,17757,17758,17800,17792,17807,17748,17755,17739,17748,17732,17751,17758,17751,17740,5285,5269,5302,5247,5285,5286,5270,5287,5248,5270,5247,5286,5305,5363,5381,5287,5305,5271,17756,17776,17768,17755,17776,17756,17776,17790,17791,17819,17804,17818,17790,17804,17791,12533,12527,12531,12531,12529,12534,12535,12532,12523,12534,12529,12532,17828,17818,17834,12533,12536,12528,13757,13771,13763,13763,13770,13753,13770,13765,13753,2635,2636,2669,2636,2651,2671,2637,2602,2635,2602,2607,2583,2504,2489,2517,2517,2552,2537,2607,2582,2583, +2582,2573,2552,2314,2303,2312,2330,2325,2318,2325,2313,2318,2312,2313,2324,2473,2489,2504,2490,2473,2503,2474,2462,2490,2475,2451,2474,2452,2451,2475,2438,2452,2429,2384,2385,2367,2384,2397,2403,2438,2429,2428,2428,2417,2397,2367,2385,2368,2346,2355,2347,2340,2346,2347,2374,2355,2368,2330,2340,2337,2284,2293,2301,2284,2279,2273,2293,2300,2301,2314,2316,2304,2304,2316,2309,2315,2299,2309,2308,2299,2315,2310,2300,2308,16635,16640,16628,5402,5403,5363,16628,16627,16626,17757,17792,17787,17757,17777,17758,17792,17800,17787,17748,17766,17755,17767,17748,17751,17769,17751,17758,5285,5247,5269,5269,5306,5302,5287,5271,5248,5193,5270,5248,5193,5247,5270,5403,5381,5363,17888,17889,17890,17755,17775,17776,17775,17790,17776,17814,17818,17804,17790,17803,17804,12531,12536,12533,12531,12534,12537,5300,5321,5241,17828,17834,17837,5300,5337,5321,5160,5216,5242,12528,12536,12538,13775,13763,13771,13763,13775,13770,2671,2669,2636,2669,2670,2635,2602,2637,2607,2637,2635,2670,2537,2504,2517,2537,2552,2573,2607,2573,2582,2314,2312,2324,2325,2330,2337,17896,17897,17898,17899,17896,17898,2473,2504,2503,2490,2503,2518,2474,2490,2505,2475,2474,2505,2475,2464,2452,2452,2440,2429,2384,2403,2385,2417,2403,2397,2428,2429,2417,2374,2368,2385,2365,2347,2355,2340,2347,2337,2374,2365,2355,2295,2284,2301,2289,2279,2284,2301,2300,2310,2326,2316,2314,2316,2320,2309,2315,2309,2321,2308,2315,2319,2310,2308,2319,16632,16635,16628,16632,16639,16635,16630,16628,16626,17757,17787,17777,17777,17769,17758,17774,17766,17748,17755,17766,17775,17774,17748,17767,5343,5359,5397,5220,5269,5247,5288,5306,5269,5196,5248,5271,5193,5248,5196,5193,5220,5247,5272,5381,5403,17891,17888,17890,17784,17790,17775,17824,17818,17814,17814,17804,17803,17790,17797,17803,12537,12536,12531,5375,5337,5358,5284,5300,5241,5241,5216,5188,5358,5337,5300,5160,5188,5216,12539,12538,12536,2700,2669,2671,2669,2688,2670,2607,2637,2621,2637,2670,2657,2537,2535,2504,2537,2573,2588,2607,2621,2573,2329,2314,2324,2341,2325,2337,17899,17898,17900,2535,2503,2504,2503,2536,2518,2505,2490,2518,2493, +2475,2505,2475,2493,2464,2452,2464,2440,2418,2429,2440,2385,2403,2400,2403,2417,2400,2417,2429,2400,2374,2385,2381,2347,2365,2359,2337,2347,2352,2374,2381,2365,2295,2289,2284,2279,2289,2283,2320,2316,2326,2331,2326,2314,2309,2320,2321,2315,2321,2319,17918,17919,17920,16628,16630,16632,16632,16643,16639,5325,5306,5288,5343,5325,5288,17766,17774,17783,17784,17775,17766,5338,5359,5322,5359,5343,5322,5220,5250,5269,5288,5269,5250,17888,17893,17895,5163,5193,5196,5193,5132,5220,5272,5444,5381,17892,17888,17891,17784,17797,17790,5106,5160,5189,17810,17814,17803,17797,17810,17803,16422,16421,16415,16421,16424,16416,16430,16425,16427,5240,5284,5241,5240,5241,5188,16425,16424,16427,5160,5129,5188,12540,12539,12536,2669,2700,2688,2657,2670,2688,2637,2657,2621,2572,2535,2537,2608,2588,2573,2572,2537,2588,2622,2573,2621,2329,2331,2314,2341,2337,2348,17901,17900,17898,2535,2536,2503,2536,2538,2518,2505,2518,2538,2493,2505,2519,2464,2493,2477,2464,2439,2440,2418,2400,2429,2418,2440,2439,2385,2400,2381,2376,2359,2365,2359,2352,2347,2352,2348,2337,2365,2381,2392,2289,2295,2283,2320,2326,2333,2331,2333,2326,2334,2321,2320,2332,2319,2321,17921,17920,17919,16632,16630,16634,5307,5289,5272,5343,5288,5326,17783,17774,17789,17766,17783,17784,5266,5338,5322,5343,5326,5322,5195,5250,5220,5288,5250,5301,17888,17892,17893,5134,5196,5198,5163,5132,5193,5134,5163,5196,5132,5195,5220,17892,17891,17894,17783,17797,17784,5106,5129,5160,5130,5106,5161,16415,16421,16418,16422,16415,16419,16416,16424,16425,16421,16416,16418,16431,16425,16430,16430,16433,16431,5187,5240,5188,5129,5187,5188,2704,2657,2688,2621,2657,2658,2572,2587,2535,2588,2608,2619,2622,2608,2573,2572,2588,2587,2621,2658,2622,2331,2329,2339,17901,17902,17900,2571,2536,2535,2536,2555,2538,2505,2538,2519,2493,2519,2492,2477,2493,2492,2477,2439,2464,2418,2401,2400,2439,2419,2418,2401,2381,2400,2376,2382,2359,2365,2383,2376,2359,2366,2352,2352,2360,2348,2392,2381,2401,2392,2383,2365,2320,2333,2334,2333,2331,2342,2334,2332,2321,10315,10285,10314,16634,16630,16637,16632,16634,16638,5251, +5272,5289,5301,5326,5288,17796,17789,17774,5243,5217,5161,5322,5301,5266,5322,5326,5301,5221,5250,5195,5245,5301,5250,5198,5222,5165,5198,5165,5134,5163,5108,5132,5163,5134,5108,5132,5164,5195,5251,5222,5272,5106,5035,5129,5081,5106,5130,5130,5161,5190,16413,16415,16418,16415,16411,16419,16423,16416,16425,16418,16416,16413,16425,16431,16429,2657,2704,2689,2658,2657,2689,2571,2535,2587,2608,2642,2619,2588,2619,2587,2608,2622,2642,2659,2622,2658,17902,17903,17900,2331,2339,2342,2571,2586,2536,2536,2586,2555,2538,2555,2519,2520,2492,2519,2477,2492,2463,2477,2463,2439,2418,2419,2401,2419,2439,2441,2376,2393,2382,2382,2375,2359,2376,2383,2393,2375,2366,2359,2366,2360,2352,2392,2401,2409,2392,2402,2383,2333,2342,2334,2343,2332,2334,10301,10285,10315,16642,16634,16637,16638,16634,16642,5244,5217,5266,5161,5217,5190,5245,5266,5301,5250,5221,5267,5221,5195,5164,5267,5245,5250,5222,5197,5165,5060,5132,5108,5132,5109,5164,5222,5251,5197,5035,5106,5081,5130,5131,5081,5130,5190,5191,16415,16413,16411,16423,16420,16416,16426,16423,16425,16412,16413,16416,16426,16425,16429,2704,2715,2689,2658,2689,2690,2571,2587,2606,2656,2619,2642,2587,2619,2618,2642,2622,2659,2659,2658,2690,17902,17904,17903,2339,2351,2342,2606,2586,2571,2589,2555,2586,2553,2519,2555,2506,2492,2520,2520,2519,2553,2506,2463,2492,2463,2441,2439,2419,2409,2401,2441,2420,2419,17917,17911,17913,17910,17913,17908,2393,2383,2402,17904,17910,17908,2409,2402,2392,2343,2334,2342,10285,10301,10269,16637,16646,16642,5244,5190,5217,5244,5266,5245,5267,5221,5268,5194,5221,5164,5245,5267,5218,5060,5109,5132,5194,5164,5109,5130,5191,5131,5081,5131,5107,5244,5191,5190,16412,16411,16413,16423,16417,16420,16416,16420,16412,16428,16423,16426,2715,2716,2689,2690,2689,2716,2587,2618,2606,2656,2618,2619,2642,2675,2656,2642,2659,2676,2659,2690,2691,17905,17903,17904,17905,17906,17903,17906,17912,17916,2606,2617,2586,2589,2553,2555,2506,2520,2539,2520,2553,2554,2506,2491,2463,2476,2441,2463,2419,2420,2409,10220,10183,10224,10200,10258,10239,17908,17913,17911,10239,10225,10200,17907,17904, +17908,2402,2409,2420,2353,2343,2342,10316,10269,10301,10285,10269,10236,5245,5191,5244,5219,5268,5221,5267,5268,5218,5194,5249,5221,5245,5218,5191,5060,5061,5109,16485,16482,16483,5191,5162,5131,5107,5131,5162,4862,4836,4892,16412,16420,16417,4863,4862,4892,2716,2715,2740,2690,2716,2717,2617,2606,2618,2656,2654,2618,17922,17923,17924,17926,17928,17923,2659,2691,2676,2691,2690,2717,17905,17904,17907,17905,17907,17906,17906,17909,17912,2553,2589,2554,2539,2520,2554,10256,10221,10237,10237,10221,10197,2491,2476,2463,10183,10220,10178,10182,10224,10183,10200,10238,10258,17907,17908,17911,10200,10225,10182,10225,10224,10182,17915,17912,17909,10269,10254,10236,5268,5219,5218,5219,5221,5249,16482,16480,16483,5162,5191,5218,5109,5061,5133,5107,5162,5192,4836,4862,4810,4862,4863,4810,2716,2740,2741,2741,2717,2716,2654,2617,2618,2656,2686,2654,17925,17923,17922,17926,17923,17925,2676,2691,2705,2718,2691,2717,17909,17906,17907,10158,10197,10221,10197,10158,10178,10183,10178,10141,10183,10143,10182,10200,10199,10238,10238,10255,10258,17911,17914,17907,10200,10182,10162,10269,10286,10254,10218,10236,10254,5162,5218,5219,5219,5192,5162,2740,2769,2741,2741,2754,2717,17927,17925,17922,17926,17925,17929,2718,2705,2691,17927,17922,17931,17979,17980,17981,10286,10300,10254,10141,10178,10158,10143,10183,10141,10182,10143,10162,10162,10199,10200,10223,10238,10199,10255,10238,10223,10258,10255,10254,10218,10254,10255,2769,2740,2768,17989,17984,17986,17980,17986,17984,17930,17925,17927,17925,17930,17929,2705,2718,2730,2771,2705,2755,17981,17980,17982,10125,10143,10141,10162,10143,10105,10162,10161,10199,10181,10223,10199,10222,10255,10223,10219,10218,10255,2769,2768,2791,17989,17987,17984,17980,17984,17983,17927,17933,17930,2718,2742,2730,2705,2730,2743,2743,2755,2705,17982,17980,17983,10125,10105,10143,10161,10162,10105,10161,10181,10199,10223,10181,10222,10222,10219,10255,10219,10176,10218,2801,2791,2768,2769,2791,2802,17987,17989,17992,17983,17984,17987,2743,2730,2742,17933,17942,17941,17982,17983,17985,10105,10142,10161,10142,10181, +10161,10198,10222,10181,10219,10222,10177,10176,10219,10177,2791,2801,2814,18004,18000,17994,17989,17994,17992,17987,17992,17990,17983,17987,17985,2743,2742,2770,2743,2782,2793,17988,17982,17985,10181,10142,10160,10222,10198,10177,10160,10198,10181,2825,2814,2801,18000,17997,17994,17994,17990,17992,17985,17987,17990,2743,2770,2782,17988,17985,17991,10198,10160,10177,2835,2814,2825,2801,2824,2825,17997,18000,18003,17997,17990,17994,17985,17990,17993,2770,2792,2782,2792,2836,2826,18006,18003,18000,2835,2825,2843,2825,2824,2842,17997,18003,18002,17990,17997,17999,17995,17993,17990,17985,17993,17996,2782,2792,2803,2792,2826,2815,2843,2854,2835,18014,18020,18017,2842,2853,2825,18008,18002,18003,17999,17997,18002,17990,17999,17995,17995,17998,17993,17998,17996,17993,2803,2792,2815,2826,2837,2815,2843,2861,2854,18017,18020,18023,18014,18017,18012,2842,2860,2853,18002,18008,18009,17999,18002,18005,18001,17995,17999,2837,2870,2862,2815,2837,2844,18008,18014,18012,18023,18018,18017,18018,18012,18017,2859,2860,2842,18032,18028,18023,18008,18011,18009,18009,18005,18002,17999,18005,18001,2874,2862,2870,2837,2862,2855,2837,2855,2844,18008,18012,18011,18023,18024,18018,18018,18015,18012,2873,2860,2859,2873,2877,2860,18023,18028,18024,18011,18013,18009,18009,18007,18005,18001,18005,18007,2874,2871,2862,2871,2855,2862,2844,2855,2863,18012,18015,18011,18018,18024,18021,18018,18021,18015,2859,2878,2873,11878,11891,11867,18029,18024,18028,18013,18011,18016,2885,2896,2892,18007,18009,18010,2874,2879,2871,2875,2855,2871,2872,2863,2855,18011,18015,18019,18026,18021,18024,18021,18019,18015,2881,2873,2878,11891,11878,11902,11854,11878,11867,18029,18026,18024,18029,18028,18035,2901,2897,2889,2885,2892,2889,2879,2885,2882,2875,2871,2879,2872,2855,2875,18011,18019,18022,18026,18025,18021,18019,18021,18025,11845,11854,11867,11890,11902,11878,18028,18038,18035,11866,11878,11854,18033,18026,18029,18029,18035,18033,2897,2891,2889,2885,2889,2882,2875,2879,2882,2872,2875,2880,2897,2909,2905,18026,18030,18025,18019,18025,18027,11845,11836,11854,18045, +18041,18038,11890,11878,11866,18035,18038,18041,11866,11854,11844,18033,18030,18026,18033,18035,18039,2900,2891,2897,2891,2886,2889,2889,2886,2882,2875,2882,2886,2884,2880,2875,2897,2905,2900,18025,18030,18031,18025,18031,18027,11836,11844,11854,18046,18041,18045,11866,11889,11890,18035,18041,18039,11844,11865,11866,18036,18030,18033,18033,18039,18036,2891,2900,2895,2886,2891,2884,2884,2875,2886,2904,2900,2905,18031,18030,18037,18034,18027,18031,11836,11830,11844,18046,18039,18041,18052,18046,18045,11866,11865,11889,11865,11844,11843,18036,18037,18030,18043,18036,18039,2904,2895,2900,2891,2895,2884,18031,18037,18040,2904,2915,2913,11830,11843,11844,18048,18039,18046,11926,11889,11914,11901,11889,11865,11865,11843,11863,18042,18037,18036,18043,18042,18036,18043,18039,18047,2904,2908,2895,2895,2893,2884,18040,18037,18044,2904,2913,2908,11830,11835,11843,18048,18047,18039,18046,18053,18048,11901,11914,11889,11865,11877,11901,11863,11843,11842,11877,11865,11863,18042,18044,18037,18043,18050,18042,18043,18047,18051,2906,2895,2908,2893,2895,2902,2913,2920,2916,2913,2916,2908,11842,11843,11835,18055,18047,18048,18055,18048,18053,11914,11901,11925,11901,11877,11888,11877,11863,11842,18049,18044,18042,18043,18054,18050,18050,18049,18042,18056,18051,18047,18043,18051,18054,2906,2902,2895,2910,2906,2908,2924,2916,2920,2916,2910,2908,11842,11835,11828,18055,18056,18047,18053,18061,18055,11913,11925,11901,11877,11864,11888,11901,11888,11913,11877,11842,11864,2927,2924,2920,18058,18050,18054,18049,18050,18057,18059,18051,18056,18054,18051,18060,2910,2902,2906,2924,2922,2916,2922,2910,2916,11842,11828,11852,18055,18062,18056,18055,18061,18062,18068,18062,18061,11864,11874,11888,11913,11888,11912,11842,11852,11864,2927,2932,2924,18058,18057,18050,18058,18054,18060,18059,18060,18051,18056,18063,18059,2910,2911,2902,2928,2922,2924,2910,2922,2921,11841,11852,11828,18056,18062,18063,18062,18068,18071,11852,11874,11864,11897,11888,11874,11912,11888,11897,18068,18081,18077,2928,2924,2932,18057,18058,18064,18058,18060,18065,18060,18059, +18066,18067,18059,18063,2911,2910,2917,2928,2921,2922,2910,2921,2917,11861,11852,11841,11841,11828,11834,18062,18071,18063,18071,18068,18077,11861,11874,11852,11885,11897,11874,18081,18092,18087,18077,18081,18087,2932,2933,2928,2938,2950,2945,2938,2933,2932,18060,18069,18065,18058,18065,18070,18067,18066,18059,18060,18066,18069,18063,18072,18067,2921,2928,2933,2917,2921,2925,11841,11862,11861,11853,11841,11834,18071,18072,18063,18071,18077,18072,11885,11874,11861,11908,11897,11885,18101,18087,18092,18077,18087,18076,2938,2945,2937,2938,2929,2933,18073,18065,18069,18073,18070,18065,18074,18066,18067,18075,18069,18066,18076,18067,18072,2929,2921,2933,2929,2925,2921,2930,2917,2925,11841,11853,11862,11861,11862,11886,11834,11859,11853,18076,18072,18077,11861,11886,11885,11922,11908,11885,18087,18101,18091,18087,18091,18076,2946,2937,2945,2929,2938,2937,18078,18073,18069,18070,18073,18079,18080,18066,18074,18074,18067,18076,18075,18078,18069,18080,18075,18066,2929,2934,2925,2930,2935,2917,2925,2934,2930,11875,11862,11853,11886,11862,11887,11876,11853,11859,11885,11886,11909,18104,18091,18101,11885,11909,11922,18084,18076,18091,2946,2940,2937,2945,2954,2946,2929,2937,2934,18078,18082,18073,2976,2971,2954,18074,18083,18080,18084,18074,18076,18085,18078,18075,18086,18075,18080,2935,2930,2939,2940,2930,2934,11875,11887,11862,11876,11875,11853,11887,11909,11886,11882,11876,11859,18104,18097,18091,11922,11909,11932,18091,18097,18084,2946,2947,2940,2940,2934,2937,2946,2954,2947,18088,18082,18078,2954,2971,2965,18074,18089,18083,18080,18083,18090,18084,18089,18074,18085,18088,18078,18086,18085,18075,18080,18090,18086,2939,2930,2940,2935,2939,2942,11887,11875,11898,11876,11899,11875,11887,11923,11909,11882,11900,11876,11923,11932,11909,18096,18084,18097,2940,2947,2939,2955,2947,2954,18088,18093,18082,2977,2965,2971,2954,2965,2955,18089,18094,18083,18083,18095,18090,18084,18096,18089,18085,18098,18088,18085,18086,18099,18086,18090,18100,2942,2939,2948,11898,11875,11899,3206,3203,3204,11899,11876,11910,11923,11887,11933,11911,11900, +11882,11900,11910,11876,2947,2951,2939,2955,2951,2947,2999,2994,2977,2965,2977,2966,2955,2965,2956,18089,18096,18094,18094,18102,18083,18083,18102,18095,18095,18103,18090,18098,18085,18105,18088,18098,18106,18086,18100,18099,18085,18099,18105,18107,18100,18090,2948,2939,2951,2948,2952,2942,3202,3203,3201,3204,3203,3202,3201,3197,3199,3208,3204,3207,3188,3195,3198,11911,11882,11924,3193,3197,3195,2956,2951,2955,2984,2977,2994,2966,2977,2978,2956,2965,2966,3204,3205,3207,18108,18095,18102,18103,18095,18108,18107,18090,18103,18098,18105,18109,18109,18106,18098,18100,18110,18099,18111,18105,18099,18112,18100,18107,2956,2948,2951,2952,2948,2957,3202,3201,3199,3204,3202,3205,3193,3199,3197,3193,3195,3188,11911,11934,11945,11917,11924,11882,11911,11924,11934,2984,2978,2977,18109,18115,18106,2966,2978,2972,2956,2966,2961,3200,3205,3202,3196,3194,3200,18113,18107,18103,18109,18105,18114,18100,18116,18110,18110,18111,18099,18111,18114,18105,18112,18116,18100,18112,18107,18117,2956,2961,2948,2957,2948,2962,3202,3199,3200,3199,3193,3196,3193,3188,3190,11944,11945,11934,11917,11938,11924,11944,11934,11924,2978,2984,2972,18115,18109,18119,2972,2961,2966,3190,3194,3196,18146,18147,18148,18113,18117,18107,3192,3194,3190,18118,18109,18114,18110,18116,18120,18121,18111,18110,18114,18111,18121,18122,18116,18112,3191,3189,3186,2961,2962,2948,2967,2957,2962,3190,3196,3193,3187,3190,3188,3187,3188,3185,11938,11917,11939,11938,11944,11924,2972,2984,2988,18118,18119,18109,2984,3000,2997,2972,2973,2961,3192,3187,3189,3187,3192,3190,18118,18114,18123,18122,18120,18116,18120,18124,18110,18124,18121,18110,18125,18114,18121,18122,18112,18126,3187,3186,3189,2962,2961,2973,2975,2967,2962,3187,3185,3183,3181,3177,3180,3181,3183,3185,2988,2984,2997,2972,2988,2995,18119,18118,18127,3000,3006,2997,2973,2972,2983,18125,18123,18114,18118,18123,18128,18122,18129,18120,18120,18129,18124,18124,18130,18121,18121,18130,18125,3186,3182,3184,3187,3183,3186,2975,2962,2973,2967,2975,2980,3175,3180,3177,3181,3180,3183,2995,2988,2997,2972,2995,2987,18127,18118, +18131,3007,2997,3006,2972,2987,2983,2975,2973,2983,18132,18123,18125,18133,18128,18123,3034,3041,3046,3184,3182,3178,18134,18124,18129,18135,18130,18124,18136,18125,18130,3182,3186,3183,2980,2975,2986,3175,3179,3180,3182,3183,3180,3007,2995,2997,2995,2996,2987,18127,18131,18137,3006,3017,3007,2983,2987,2996,2983,2989,2975,18132,18133,18123,18125,18138,18132,18128,18133,18139,3034,3017,3041,3179,3178,3182,18124,18134,18135,3172,3178,3176,18140,18130,18135,18125,18136,18138,18136,18130,18140,2989,2986,2975,3179,3175,3176,3179,3182,3180,3007,3005,2995,2996,2995,3005,3007,3017,3021,2983,2996,2989,3059,3072,3066,18132,18138,18141,18133,18142,18139,3017,3034,3030,3179,3176,3178,3172,3170,3168,3176,3173,3172,3158,3168,3164,18138,18136,18143,18140,18144,18136,2986,2989,2998,3176,3175,3173,3015,3005,3007,2996,3005,3009,3021,3017,3025,3021,3015,3007,3001,2989,2996,3059,3066,3054,18145,18141,18138,3059,3054,3042,3035,3030,3042,3017,3030,3025,3172,3173,3170,3164,3168,3170,3151,3158,3164,18136,18144,18143,18145,18138,18143,3158,3151,3129,3002,2998,2989,3015,3020,3005,3009,3005,3016,3001,2996,3009,3029,3021,3025,3024,3015,3021,2989,3001,3008,3060,3054,3066,3084,3078,3066,3042,3054,3048,3035,3025,3030,3048,3035,3042,3118,3129,3107,3084,3118,3107,2998,3002,3010,3002,2989,3008,3024,3020,3015,3020,3016,3005,3008,3009,3016,3008,3001,3009,3029,3024,3021,3036,3029,3025,3060,3048,3054,3073,3060,3066,3084,3083,3078,3078,3073,3066,3035,3036,3025,3047,3035,3048,3084,3107,3096,3012,3010,3002,3013,3002,3008,3020,3024,3028,3022,3016,3020,3022,3008,3016,3029,3028,3024,3043,3029,3036,3060,3058,3048,3060,3073,3071,3096,3083,3084,3078,3083,3073,3036,3035,3047,3058,3047,3048,3010,3012,3018,3013,3012,3002,3013,3008,3019,3028,3022,3020,3022,3019,3008,3029,3040,3028,3029,3043,3040,3036,3047,3043,3058,3060,3071,3071,3073,3082,3065,3047,3058,3012,3013,3018,3023,3013,3019,3026,3022,3028,3019,3022,3026,3037,3028,3040,3043,3053,3040,3047,3055,3043,3070,3058,3071,3082,3081,3071,3065,3061,3047,3058,3070,3065,3013,3023,3018,3023,3019,3027,3037,3026,3028,3032, +3019,3026,3040,3050,3037,3043,3055,3053,3040,3053,3050,3061,3055,3047,3070,3071,3081,3093,3081,3082,3061,3065,3075,3070,3075,3065,3027,3019,3032,3037,3038,3026,3032,3026,3038,3037,3050,3049,3055,3064,3053,3053,3064,3050,3061,3064,3055,3081,3075,3070,3075,3074,3061,3049,3038,3037,3063,3049,3050,3063,3050,3064,3074,3064,3061,3075,3081,3088,3075,3085,3074,3063,3068,3049,3063,3064,3074,3085,3075,3088,3074,3085,3086,3063,3077,3068,3063,3074,3077,3074,3086,3077,9869,9871,9873,9876,9873,9871,6087,6078,6098,6097,6087,6106,9871,9875,9876,6087,6066,6078,6078,6077,6098,6097,6066,6087,6116,6097,6106,9880,9876,9875,6055,6078,6066,6078,6055,6077,6097,6086,6066,6105,6097,6116,9880,9875,9879,6066,6043,6055,6077,6055,6064,6105,6086,6097,6066,6086,6065,6128,6105,6116,9879,9875,9878,6116,6137,6128,6066,6065,6043,6029,6055,6043,6064,6055,6029,6086,6105,6096,6096,6065,6086,6128,6117,6105,9879,9878,9882,6137,6138,6128,6043,6065,6042,6043,6015,6029,6040,6064,6029,6096,6105,6117,6096,6085,6065,6128,6138,6117,9884,9882,9878,6054,6042,6065,6043,6042,6015,6015,6004,6029,6040,6053,6064,6013,6040,6029,6125,6096,6117,6085,6096,6104,6067,6065,6085,6138,6139,6117,6138,6158,6139,6054,6030,6042,6054,6065,6067,6042,6030,6015,6015,5988,6004,6029,6004,6003,6040,6027,6053,6013,6027,6040,6029,6003,6013,6125,6114,6096,6125,6117,6139,6104,6096,6114,6085,6104,6088,6067,6085,6088,6145,6139,6158,6054,6044,6030,6054,6067,6044,5988,6015,6030,6004,5988,5976,6004,5976,6003,6053,6027,6039,6027,6013,5985,6013,6003,6001,6114,6125,6135,6145,6125,6139,6114,6126,6104,6088,6104,6115,6088,6079,6067,9886,9888,9884,6016,6030,6044,6045,6044,6067,5988,6030,6016,5964,5976,5988,5986,6003,5976,6039,6027,6012,6013,6001,5985,6027,5985,6012,5986,6001,6003,6135,6125,6145,6114,6135,6136,6126,6114,6136,6127,6104,6126,6127,6115,6104,6088,6115,6107,6088,6100,6079,6079,6057,6067,9886,9890,9888,6016,6044,6045,6045,6067,6057,5989,5988,6016,5964,5952,5976,5964,5988,5989,5952,5986,5976,6039,6012,6026,6001,5973,5985,5985,6000,6012,6001,5986,5973,6135,6145,6155,6135,6156,6136,6126,6136,6146, +6147,6127,6126,6127,6129,6115,6129,6107,6115,6100,6088,6107,6100,6080,6079,6079,6080,6057,6045,6017,6016,6031,6045,6057,5989,6016,6017,5952,5964,5939,5975,5964,5989,5952,5973,5986,6000,6026,6012,5973,5962,5985,5962,6000,5985,6156,6135,6155,6146,6136,6156,6146,6157,6126,6147,6148,6127,6147,6126,6157,6129,6127,6148,6129,6118,6107,6118,6100,6107,6080,6100,6092,6080,6068,6057,6045,6031,6017,6031,6057,6068,6017,6005,5989,5964,5975,5939,5923,5952,5939,5975,5989,6005,5950,5973,5952,6011,6026,6000,5962,5973,5950,5962,5984,6000,6148,6147,6167,6168,6147,6157,6129,6148,6140,6140,6118,6129,6118,6093,6100,6092,6100,6093,6080,6092,6072,6080,6072,6068,6031,6005,6017,6068,6056,6031,5963,5939,5975,5923,5950,5952,5923,5939,5896,6005,6002,5975,9846,9842,9850,6011,6000,5984,5937,5962,5950,5967,5984,5962,6168,6167,6147,6169,6148,6167,6159,6140,6148,6140,6120,6118,6093,6118,6120,6092,6093,6071,6071,6072,6092,6062,6068,6072,6031,6041,6005,6056,6068,6062,6031,6056,6041,5963,5938,5939,5963,5975,5987,5923,5921,5950,5939,5938,5896,5910,5923,5896,6002,6005,6028,5987,5975,6002,9842,9846,9838,9846,9841,9838,5937,5967,5962,5937,5950,5921,5990,5984,5967,6159,6148,6169,6159,6142,6140,6142,6120,6140,6093,6120,6109,6071,6093,6082,6051,6072,6071,6051,6062,6072,6041,6028,6005,6062,6049,6056,6046,6041,6056,5963,5974,5938,5974,5963,5987,5910,5921,5923,5938,5922,5896,5871,5910,5896,6028,6014,6002,5987,6002,6014,9835,9838,9841,5953,5967,5937,5895,5937,5921,5990,5967,5966,6177,6159,6169,6161,6142,6159,6131,6120,6142,6131,6109,6120,6109,6090,6093,6082,6093,6090,6060,6071,6082,6051,6071,6060,6062,6051,6037,6046,6028,6041,6049,6062,6037,6046,6056,6049,5974,5955,5938,5974,5987,5996,5895,5921,5910,5938,5951,5922,5897,5896,5922,5871,5895,5910,5896,5883,5871,6028,6032,6014,5987,6014,5996,9831,9838,9835,5953,5966,5967,5925,5953,5937,5937,5895,5925,9835,9832,9828,6177,6161,6159,6161,6150,6142,6131,6142,6150,6131,6110,6109,6091,6090,6109,6082,6090,6070,6060,6082,6070,6046,6032,6028,6037,6036,6049,6018,6046,6049,5970,5955,5974,5951,5938,5955,5996,5970,5974,5951,5924, +5922,5897,5883,5896,5897,5922,5924,5895,5871,5873,5857,5871,5883,6032,5997,6014,5997,5996,6014,9831,9835,9828,5966,5953,5943,5925,5943,5953,5913,5925,5895,9832,9824,9828,6179,6161,6177,6162,6150,6161,6131,6150,6132,6131,6132,6110,6109,6110,6091,6091,6070,6090,6046,6018,6032,6018,6049,6036,5940,5951,5955,5996,5997,5970,5940,5924,5951,5857,5883,5897,5903,5897,5924,5871,5849,5873,5895,5873,5886,5871,5857,5845,6032,6018,5997,5966,5943,5977,5913,5943,5925,5913,5895,5886,9819,9828,9824,6179,6162,6161,6162,6132,6150,6121,6110,6132,6102,6091,6110,6091,6083,6070,5940,5955,5916,5903,5924,5940,5897,5884,5857,5903,5884,5897,5871,5845,5849,5860,5873,5849,5860,5886,5873,5857,5824,5845,5965,5977,5943,5913,5942,5943,5913,5886,5911,9817,9819,9824,6171,6162,6179,6132,6162,6151,6121,6102,6110,6143,6121,6132,6083,6091,6102,5940,5916,5929,5940,5929,5903,5884,5867,5857,5903,5879,5884,5827,5849,5845,5836,5860,5849,5886,5860,5885,5846,5824,5857,5824,5827,5845,9817,9824,9825,5965,5943,5942,5942,5913,5911,5886,5885,5911,9819,9817,9814,6162,6171,6151,6132,6151,6143,6111,6102,6121,6143,6124,6121,6111,6083,6102,5904,5929,5916,5929,5904,5903,5884,5879,5867,5846,5857,5867,5903,5904,5879,5827,5836,5849,5836,5861,5860,5885,5860,5861,5825,5824,5846,5827,5824,5797,9825,9820,9817,5942,5911,5941,5911,5885,5912,9817,9812,9814,6171,6172,6151,6143,6151,6163,6111,6121,6124,6134,6124,6143,6111,6103,6083,5842,5867,5879,5842,5846,5867,5869,5879,5904,5836,5827,5816,5836,5850,5861,5885,5861,5887,5815,5824,5825,5825,5846,5842,5797,5824,5815,5816,5827,5797,9820,9815,9817,5941,5911,5912,5887,5912,5885,9817,9815,9812,9804,9814,9812,6151,6172,6163,6143,6163,6154,6111,6124,6103,6124,6134,6103,6143,6154,6134,5842,5879,5868,5868,5879,5869,5816,5828,5836,5828,5850,5836,5850,5875,5861,5887,5861,5875,5825,5804,5815,5825,5842,5822,5815,5796,5797,5816,5797,5805,9815,9813,9809,9813,9811,9805,9809,9812,9815,9809,9804,9812,6172,6180,6163,6154,6163,6152,6134,6154,6152,5843,5842,5868,5843,5868,5869,5805,5828,5816,5828,5859,5850,5875,5850,5874,5887,5875,5898,5825,5822,5804,5815, +5804,5796,5842,5843,5822,5797,5796,5777,5784,5805,5797,9813,9805,9809,9803,9805,9811,9809,9796,9804,6180,6173,6163,6152,6163,6173,5826,5828,5805,5848,5859,5828,5874,5850,5859,5875,5874,5898,5803,5804,5822,5785,5796,5804,5777,5796,5785,5784,5797,5777,5784,5814,5805,9809,9805,9796,9803,9786,9805,9779,9804,9796,5826,5848,5828,5814,5826,5805,5848,5872,5859,9808,9807,9788,9808,9788,9803,5785,5804,5803,5785,5770,5777,5784,5777,5765,5814,5784,5802,9786,9796,9805,9803,9788,9786,9786,9779,9796,5848,5826,5847,5814,5833,5826,5847,5872,5848,9807,9798,9788,5785,5803,5795,5785,5795,5770,5777,5770,5765,5784,5765,5776,5802,5784,5793,5814,5802,5820,9786,9788,9775,9786,9775,9779,5833,5847,5826,5833,5814,5820,9797,9780,9798,9780,9788,9798,5806,5795,5803,5786,5770,5795,5765,5770,5758,5776,5765,5764,5776,5793,5784,5802,5793,5813,5821,5820,5802,9780,9775,9788,9779,9775,9769,5833,5858,5847,5833,5820,5841,9780,9797,9787,5806,5786,5795,5770,5786,5771,5770,5771,5758,5765,5758,5752,5764,5765,5752,5776,5764,5783,5776,5794,5793,5793,5794,5813,5813,5821,5802,5821,5841,5820,9780,9770,9775,9775,9766,9769,9787,9806,9789,9780,9787,9770,5786,5806,5807,5787,5771,5786,5771,5759,5758,5752,5758,5747,5764,5752,5751,5775,5783,5764,5794,5776,5783,5812,5813,5794,9800,9781,9799,9781,9789,9799,9775,9770,9766,9787,9789,9770,5787,5786,5807,5787,5772,5771,5771,5772,5759,5747,5758,5759,5752,5747,5742,5752,5742,5751,5763,5764,5751,5775,5792,5783,5775,5764,5763,5794,5783,5792,9781,9800,9790,5792,5812,5794,9789,9781,9770,9763,9766,9770,5772,5760,5759,5753,5747,5759,5742,5747,5740,5746,5751,5742,5757,5763,5751,5775,5782,5792,5775,5763,5769,9781,9790,9776,9793,9776,9790,9781,9771,9770,9763,9770,9771,5760,5772,5778,5760,5753,5759,5740,5747,5753,5740,5739,5742,5746,5757,5751,5746,5742,5739,5763,5757,5769,5769,5782,5775,9776,9793,9784,9776,9771,9781,9764,9763,9771,5746,5756,5757,5745,5746,5739,5756,5769,5757,9783,9773,9784,9773,9776,9784,9776,9764,9771,5756,5746,5745,9792,9777,9783,9773,9783,9777,9773,9764,9776,5750,5756,5745,9801,9777,9792,9777,9767,9773,9773,9767,9764, +9801,9791,9777,9777,9782,9767,9767,9760,9764,9782,9777,9791,9782,9768,9767,9772,9760,9767,9768,9772,9767,9760,9772,9765,9768,9765,9772,9765,9761,9760,9765,9768,9757,9761,9765,9757,8171,8170,8210,8171,8120,8170,8171,8210,8236,8171,8149,8120,8236,8210,8259,8188,8149,8171,8149,8134,8120,8187,8149,8188,8134,8149,8152,8134,8102,8120,8102,8084,8120,8058,8034,8055,8034,8029,8055,8152,8149,8187,8152,8122,8134,8134,8101,8102,8057,8084,8102,8085,8084,8069,7974,7968,7959,8029,8005,8004,8058,8085,8069,8058,8044,8034,8034,8009,8029,8152,8136,8122,8122,8101,8134,8101,8057,8102,8057,8069,8084,7974,7985,7987,7968,7974,7979,7960,7959,7968,7985,8004,8005,8009,8005,8029,8058,8069,8044,8034,8044,8017,8034,8017,8009,8105,8122,8136,8122,8089,8101,8101,8083,8057,8044,8069,8057,7985,8005,7987,7974,7987,7979,7968,7979,7980,7959,7960,7954,7969,7960,7968,8009,7987,8005,8032,8017,8044,7996,8009,8017,8105,8089,8122,8089,8088,8101,8101,8088,8083,8056,8057,8083,8044,8057,8032,7996,7979,7987,7979,7997,7980,7980,7969,7968,7969,7964,7960,7996,7987,8009,8032,8008,8017,7996,8017,8008,8072,8089,8105,8089,8060,8088,8083,8088,8070,8032,8057,8056,8070,8056,8083,7996,8008,7979,8010,7997,7979,7980,7997,8011,7969,7980,7988,7957,7960,7964,7969,7975,7964,8008,8032,8033,8060,8089,8072,8086,8072,8105,8060,8070,8088,8032,8056,8033,8070,8035,8056,8010,7979,8008,8018,7997,8010,8011,7997,8019,7980,8011,8020,7998,7988,7980,7988,7981,7969,7975,7969,7981,8008,8033,8010,8060,8072,8046,8072,8086,8061,8035,8070,8060,8033,8056,8035,8018,8019,7997,8018,8010,8035,8011,8019,8036,8020,8011,8037,8020,8013,7980,7998,8012,7988,7998,7980,8013,7988,7989,7981,7975,7981,7989,8033,8035,8010,8046,8072,8061,8035,8060,8046,8061,8086,8059,8045,8019,8018,8035,8046,8018,8045,8036,8019,8011,8036,8037,8020,8037,8039,8013,8020,8039,7998,8021,8012,8012,7989,7988,4224,4217,4206,8046,8061,8018,8071,8059,8086,8061,8059,8018,8018,8059,8045,8062,8036,8045,8036,8063,8037,8039,8037,8064,4217,4218,4201,8038,8021,7998,4206,4217,4202,8458,8402,8431,8332,8402,8401,8045,8059,8071,8103,8071,8086,8036,8062, +8063,8045,8073,8062,8037,8063,8074,8064,8037,8074,4218,4223,4211,4212,4201,4218,4217,4201,4202,8431,8402,8375,8332,8375,8402,8401,8349,8332,8045,8071,8087,8103,8104,8071,8090,8063,8062,8045,8087,8073,8073,8091,8062,8074,8063,8092,4223,4229,4210,4210,4211,4223,4218,4211,4212,8430,8349,8401,8375,8332,8350,8332,8349,8330,8104,8087,8071,8135,8104,8103,8063,8090,8106,8090,8062,8107,8073,8087,8108,8073,8109,8091,8091,8107,8062,8106,8092,8063,8074,8092,8110,7182,7174,7179,8350,8332,8310,8349,8309,8330,8261,8332,8330,8104,8121,8087,8104,8135,8121,8090,8107,8106,8108,8087,8123,8073,8108,8109,8124,8091,8109,8091,8124,8107,8106,8125,8092,8110,8092,8125,7176,7179,7174,8349,8374,8331,8261,8310,8332,8349,8331,8309,8261,8330,8309,8087,8121,8123,8150,8121,8135,8107,8137,8106,8108,8123,8138,8138,8109,8108,8109,8139,8124,8124,8137,8107,8106,8140,8125,14192,14166,14191,7181,7179,7176,7184,7186,7179,8286,8310,8261,8285,8309,8331,8260,8261,8309,8151,8123,8121,8151,8121,8150,8172,8150,8135,8106,8137,8153,8154,8138,8123,8138,8155,8109,8139,8109,8156,8124,8139,8157,8124,8158,8137,8140,8106,8153,8125,8140,8159,14166,14192,14167,7184,7179,7181,7188,7186,7184,8238,8286,8261,8260,8309,8285,7188,7190,7186,8261,8260,8192,8123,8151,8154,8189,8151,8150,8190,8150,8172,8172,8135,8191,8173,8153,8137,8154,8174,8138,8174,8155,8138,8155,8156,8109,8139,8156,8175,8139,8176,8157,8158,8124,8157,8137,8158,8177,8178,8140,8153,8179,8159,8140,14192,14193,14167,7191,7188,7184,8238,8261,8192,8237,8260,8285,8285,8329,8284,8237,8192,8260,8192,8154,8151,8213,8151,8189,8189,8150,8190,8193,8153,8173,8173,8137,8194,8174,8154,8195,8155,8174,8196,8155,8197,8156,8175,8156,8197,8175,8198,8139,8139,8198,8176,8176,8199,8157,8157,8177,8158,8137,8177,8200,8140,8178,8179,8193,8178,8153,14205,14168,14193,14167,14193,14168,8348,8329,8373,8192,8213,8238,8285,8284,8237,8308,8284,8329,8237,8214,8192,8192,8214,8154,8213,8192,8151,8215,8193,8173,8200,8194,8137,8194,8215,8173,8195,8154,8214,8174,8195,8216,8217,8196,8174,8196,8197,8155,8175,8197,8218,8175,8219,8198,8176,8198,8220,8220, +8199,8176,8221,8157,8199,8177,8157,8222,8200,8177,8223,8179,8178,8224,8193,8224,8178,14205,14194,14168,8308,8329,8348,8284,8241,8237,8284,8308,8241,8237,8241,8214,8215,8224,8193,8200,8239,8194,8194,8240,8215,8195,8214,8241,8241,8216,8195,8217,8174,8216,8217,8242,8196,8196,8242,8197,8242,8218,8197,8219,8175,8218,8220,8198,8219,8199,8220,8243,8244,8157,8221,8199,8245,8221,8222,8157,8244,8222,8246,8177,8223,8177,8246,8239,8200,8223,14194,14178,14168,8288,8241,8308,8215,8262,8224,8239,8240,8194,8263,8215,8240,8241,8264,8216,18149,18150,18151,18153,18149,18152,8242,8265,8218,8219,8218,8265,8220,8219,8266,8220,8266,8243,8243,8267,8199,8221,8268,8244,8199,8267,8245,8221,8245,8268,8269,8222,8244,8222,8270,8246,8223,8246,8271,8272,8239,8223,14206,14178,14194,8288,8264,8241,8262,8215,8263,8240,8239,8287,14210,14220,14197,8289,8216,8264,8333,8216,8311,18152,18149,18151,8266,8219,8265,8267,8243,8266,8269,8244,8268,8290,8245,8267,8290,8268,8245,8222,8269,8270,8291,8246,8270,8292,8271,8246,8293,8223,8271,8294,8239,8272,8272,8223,8293,14206,14179,14178,14206,14210,14179,8239,8294,8287,14220,14232,14197,14197,14179,14210,8311,8216,8289,8312,8269,8268,8313,8268,8290,8270,8269,8312,8246,8291,8292,8314,8291,8270,8271,8292,8315,8271,8316,8293,8294,8272,8317,8272,8293,8318,14232,14245,14221,14232,14221,14197,8334,8312,8268,8334,8268,8313,8335,8270,8312,8336,8292,8291,8291,8314,8337,8314,8270,8335,8336,8315,8292,8315,8316,8271,8293,8316,8338,8318,8317,8272,14245,14259,14233,8318,8293,8338,14221,14245,14233,14221,14207,14197,8336,8291,8353,8353,8291,8337,8315,8336,8355,8356,8316,8315,8356,8338,8316,8318,8357,8317,14233,14259,14255,8318,8338,8358,14221,14233,14207,8336,8353,8378,8353,8337,8380,8355,8336,8381,8382,8315,8355,8315,8382,8356,8356,8383,8338,8384,8357,8318,14233,14255,14229,8358,8338,8385,8358,8384,8318,14233,14229,14207,8378,8353,8406,8381,8336,8378,3526,3497,3496,8355,8381,8409,8355,8410,8382,8356,8382,8411,8383,8356,8412,8385,8338,8383,8384,8413,8357,14229,14255,14254,8385,8414,8358,8414,8384,8358,8353,8434,8406,8435,8378,8406, +8436,8381,8378,3483,3496,3497,8353,8462,8434,8436,8409,8381,8438,8355,8409,8410,8355,8438,8439,8382,8410,8439,8411,8382,8411,8440,8356,8356,8440,8412,8412,8441,8383,8442,8385,8383,8414,8413,8384,14229,14254,14243,8414,8385,8443,3495,3537,3507,8436,8378,8435,3540,3537,3495,3483,3470,3496,3470,3507,3496,8436,8465,8409,8438,8409,8465,8410,8438,8466,8467,8439,8410,8411,8439,8468,8440,8411,8469,8470,8412,8440,8412,8471,8441,8441,8442,8383,8385,8442,8472,14254,14279,14268,14254,14268,14243,8443,8385,8472,14279,14293,14268,3495,3507,3493,8435,8494,8436,3495,3525,3540,3470,3493,3507,8494,8465,8436,8465,8498,8438,8438,8498,8466,8467,8410,8466,8467,8499,8439,8499,8468,8439,8469,8411,8468,8440,8469,8470,8500,8412,8470,8471,8412,8501,8502,8441,8471,8441,8472,8442,14258,14243,14268,14294,14293,14316,14268,14293,14280,3540,3525,3556,3556,3553,3583,3583,3553,3582,3582,3599,3614,8466,8529,8467,8499,8467,8529,8499,8530,8468,8469,8468,8531,8470,8469,8532,8533,8412,8500,3790,3777,3765,8501,8412,8533,3814,3810,3818,8502,8534,8441,3829,3818,3823,8535,8472,8441,14268,14280,14258,14294,14280,14293,14326,14294,14316,3525,3553,3556,3553,3568,3582,3582,3568,3599,8466,8570,8529,3633,3645,3665,8499,8571,8530,8572,8468,8530,8572,8531,8468,8531,8532,8469,3777,3742,3765,3790,3803,3806,3789,3790,3765,3814,3806,3805,3805,3810,3814,3818,3810,3823,3832,3829,3826,8441,8534,8535,3823,3826,3829,14294,14258,14280,3839,3834,3835,3599,3613,3633,3633,3613,3645,3667,3684,3645,8530,8531,8572,3730,3742,3716,3741,3765,3742,3790,3789,3803,3803,3805,3806,3763,3789,3765,3805,3795,3810,3816,3823,3810,3832,3826,3816,3832,3827,3834,3823,3816,3826,14258,14294,14281,3827,3835,3834,3835,3836,3839,3700,3684,3667,3684,3700,3716,3741,3742,3730,3700,3730,3716,3763,3765,3741,3802,3803,3789,3802,3805,3803,3789,3763,3788,3802,3795,3805,3809,3810,3795,3816,3810,3809,3816,3827,3832,3827,3828,3835,3828,3836,3835,3802,3789,3788,3802,3788,3795,3816,3809,3817,3827,3816,3817,3828,3827,3817,7954,7960,7957,8755,8789,8725,8789,8860,8824,8725,8789,8756,8691,8755,8725,8860,8790,8824,8789, +8824,8756,8725,8756,8659,8691,8725,8659,8864,8860,8913,8864,8790,8860,8790,8756,8824,8790,8659,8756,8691,8659,8623,8548,8623,8589,8894,8864,8913,8826,8790,8864,8913,8920,8894,8759,8659,8790,8659,8589,8623,8517,8548,8589,8517,8484,8548,8894,8826,8864,8826,8759,8790,8866,8894,8920,8726,8659,8759,8624,8589,8659,8624,8517,8589,8425,8484,8429,8484,8517,8456,8866,8826,8894,8792,8759,8826,8919,8866,8920,8726,8660,8659,8792,8726,8759,8659,8660,8624,8624,8590,8517,8484,8456,8429,8517,8557,8456,8866,8792,8826,8866,8919,8865,8590,8624,8660,8590,8557,8517,8399,8429,8456,8456,8557,8489,8866,8865,8792,8590,8660,8625,8557,8590,8625,8456,8455,8399,8489,8557,8550,8455,8456,8489,8557,8625,8651,8400,8399,8455,18154,18155,18156,8489,8550,8485,8455,8489,8426,8583,8557,8651,8400,8455,8426,8583,8485,8557,8489,8485,8426,8583,8651,8649,8583,8549,8485,8485,8452,8426,8583,8649,8615,8583,8615,8549,8513,8485,8549,8452,8485,8513,8650,8549,8615,8513,8549,8584,8452,8513,8453,8616,8549,8650,8616,8584,8549,8584,8551,8513,8513,8551,8453,8652,8584,8616,8584,8587,8551,8551,8514,8453,8652,8587,8584,8551,8587,8514,8652,8656,8587,8619,8514,8587,8652,8720,8656,8587,8656,8619,8619,8617,8514,8752,8656,8720,8656,8687,8619,8619,8687,8617,8617,8585,8514,8752,8754,8656,8687,8656,8723,8686,8617,8687,8653,8585,8617,8723,8656,8754,8653,8617,8686,8653,8685,8585,8689,8585,8685,18157,18158,18159,10081,10063,10096,10063,10081,10044,10063,10044,10031,10031,10044,10018,10031,10018,9996,9995,9996,10018,9996,9995,9979,9986,9979,9995,9979,9986,9960,9979,9960,9971,9960,9952,9971,9960,9945,9952,9938,9952,9945,9952,9938,9944,9944,9938,9928,10172,10170,10209,10170,10172,10135,10210,10209,10170,1812,1833,1823,10151,10135,10172,1846,1833,1856,1846,1823,1833,1801,1812,1823,10096,10135,10151,1781,1800,1812,1865,1846,1856,1846,1824,1823,1781,1812,1801,1801,1823,1802,10096,10151,10131,1781,1775,1800,12560,12561,12562,1846,1847,1824,1823,1824,1802,10113,10096,10131,1866,1847,1846,1866,1865,1879,10096,10113,10081,1866,1879,1847,11882,11872,11894,11872,11882,11859,11872,11859,11850,11834, +11850,11859,11850,11834,11840,11840,11834,11827,11815,11827,11834,11828,11815,11834,11815,11828,11823,11828,11835,11823,11823,11808,11815,11830,11823,11835,11823,11818,11808,11818,11823,11830,11818,11803,11808,11818,11830,11836,11818,11816,11803,11845,11818,11836,2888,2881,2869,11803,11816,11811,2881,2878,2869,2852,2850,2869,12563,12564,12565,12566,12567,12568,2852,2869,2859,2832,2850,2834,2834,2852,2842,2859,2842,2852,2832,2834,2813,2824,2834,2842,2813,2834,2824,2832,2813,2812,2801,2813,2824,2813,2790,2812,2813,2801,2790,2812,2790,2800,2801,2768,2790,2781,2800,2790,2768,2781,2790,2781,2768,2753,2740,2753,2768,2781,2753,2780,2715,2753,2740,2780,2753,2752,2715,2752,2753,2715,2739,2752,2715,2728,2739,2728,2715,2704,2704,2714,2728,2714,2704,2688,5835,5844,5823,5844,5835,5856,5844,5837,5823,5803,5835,5823,5856,5835,5834,5823,5837,5817,5835,5803,5834,5806,5803,5823,5856,5834,5855,5818,5817,5837,5823,5817,5806,5803,5822,5834,5843,5855,5834,5855,5880,5856,5818,5798,5817,5807,5806,5817,5843,5834,5822,5855,5843,5869,5869,5880,5855,5798,5818,5809,5798,5807,5817,5880,5869,5891,5809,5788,5798,5798,5787,5807,5869,5904,5891,5905,5880,5891,5788,5809,5808,5798,5788,5772,5772,5787,5798,5904,5916,5891,5916,5905,5891,5829,5808,5809,5788,5808,5789,5788,5778,5772,5905,5916,5931,5829,5830,5808,5808,5810,5789,5788,5789,5778,5931,5916,5946,5851,5830,5829,5830,5810,5808,5916,5955,5946,5946,5956,5931,5851,5840,5830,5946,5955,5970,5946,5970,5956,5866,5840,5851,5978,5956,5970,5840,5866,5878,5978,5970,5997,5978,5997,5991,6018,5991,5997,6018,5994,5991,6036,5994,6018,5994,6036,6022,6022,6036,6037,9865,9869,9866,6098,6077,6099,9865,9866,9861,6099,6077,6084,9866,9863,9861,6077,6064,6084,9858,9861,9863,6076,6084,6064,9858,9863,9860,6053,6076,6064,9858,9860,9856,6053,6075,6076,9858,9856,9851,6075,6053,6063,9856,9849,9851,6053,6039,6063,9856,9853,9849,9844,9851,9849,9845,9853,9854,9853,9845,9849,9844,9849,9840,9850,9845,9854,9845,9840,9849,9844,9840,9836,9845,9850,9842,9833,9840,9845,9833,9836,9840,9845,9842,9833,9829,9836,9833,9842,9838,9833,9823,9829, +9833,9831,9833,9838,9829,9823,9822,9823,9833,9831,9823,9816,9822,9831,9828,9823,9823,9819,9816,9822,9816,9818,9819,9823,9828,9819,9814,9816,9810,9818,9816,9814,9810,9816,9804,9810,9814,9804,9802,9810,9779,9802,9804,9779,9795,9802,9795,9779,9778,9779,9769,9778,9794,9795,9778,9769,9774,9778,9785,9794,9778,9769,9758,9774,9774,9785,9778,9758,9769,9766,9758,9766,9759,9766,9763,9759,9758,9759,9753,9756,9759,9763,9756,9753,9759,9764,9756,9763,9754,9753,9756,9760,9756,9764,9760,9754,9756,9761,9754,9760,9754,9761,9757,1900,1879,1865,1879,1900,1901,10279,10247,10264,10264,10293,10279,1879,1901,1889,10292,10293,10264,1913,1889,1901,10292,10322,10293,10323,10322,10292,10323,10349,10322,10349,10323,10364,2012,2000,1967,2000,2012,2023,2023,2012,2037,2000,2023,2038,2037,2051,2023,2038,2023,2052,2066,2051,2037,2051,2052,2023,2066,2079,2051,2080,2066,2037,2081,2052,2051,2091,2079,2066,2081,2051,2079,10426,10399,10415,2079,2091,2102,2091,2066,2103,2081,2079,2104,10399,10407,10415,2110,2102,2091,2079,2102,2104,2111,2091,2103,10425,10415,10407,2091,2111,2110,10425,10434,10415,10424,10425,10407,2110,2111,2126,10434,10425,10444,10425,10424,10444,10414,10424,10407,2111,2135,2126,2136,2135,2145,10432,10424,10414,10414,10407,10398,2141,2136,2145,2146,2141,2145,10433,10432,10414,10398,10423,10414,2141,2146,2142,10432,10433,10450,10433,10414,10423,10450,10457,10432,10433,10451,10450,10423,10443,10433,10433,10443,10451,10450,10451,10467,10423,10431,10443,10449,10451,10443,10467,10451,10466,10431,10449,10443,10466,10451,10449,10467,10466,10482,10448,10449,10431,10449,10464,10466,10466,10479,10482,10449,10448,10464,10448,10431,10442,10466,10464,10479,10494,10482,10479,10448,10465,10464,10448,10442,10456,10478,10479,10464,10478,10494,10479,10448,10456,10465,10465,10478,10464,6178,6201,6197,10494,10478,10493,10465,10456,10473,10481,10478,10465,6178,6183,6201,10481,10493,10478,10494,10493,10504,10473,10456,10480,10481,10465,10473,6178,6153,6183,10490,10493,10481,10501,10504,10493,10489,10473,10480,10481,10473,10490,6174,6183,6153,10501,10493,10490, +16408,16409,16406,10489,10490,10473,6202,6183,6193,6193,6183,6174,6174,6153,6165,10506,10501,10490,16408,16406,16407,10490,10489,10500,10489,10505,10500,6174,6194,6193,6174,6165,6182,10506,10490,10500,16406,16403,16407,10500,10505,10512,6182,6194,6174,6212,6193,6194,6182,6165,6164,10506,10500,10513,16406,16405,16403,2122,2139,2123,10500,10512,10516,6182,6203,6194,10517,10513,10500,16405,16402,16403,16403,16402,16398,10517,10500,10516,6203,6213,6194,16405,16404,16402,16401,16402,16404,6182,6164,6191,12569,12570,12571,6181,6191,6164,16402,16400,16398,12571,12570,12572,6191,6181,6199,6181,6164,6173,16402,16401,16400,12573,12571,12572,6200,6199,6181,6192,6181,6173,16401,16397,16400,16399,16397,16401,6200,6181,6192,6192,6173,6180,16400,16397,16396,16399,16395,16397,6200,6192,6211,6192,6180,6198,16397,16394,16396,16395,16394,16397,6192,6198,6211,6180,6190,6198,16394,16393,16396,16392,16394,16395,6216,6211,6198,6172,6190,6180,6198,6190,6210,16390,16393,16394,16392,16390,16394,6198,6210,6216,6189,6190,6172,6210,6190,6209,16386,16393,16390,16390,16392,16389,6216,6210,6218,6189,6209,6190,6189,6172,6171,6218,6210,6209,16390,16389,16386,16391,16389,16392,6189,6215,6209,6188,6189,6171,6218,6209,6215,16389,16387,16386,16391,16388,16389,6214,6215,6189,6189,6188,6208,6171,6179,6188,16389,16388,16387,16386,16387,16382,16384,16387,16388,6208,6214,6189,6208,6188,6207,6188,6179,6196,16387,16384,16382,16379,16384,16385,6188,6196,6207,6208,6207,6217,6179,6177,6196,16382,16384,16379,16380,16379,16385,6196,6206,6207,6217,6207,6206,6186,6196,6177,16380,16377,16379,6186,6206,6196,16380,16378,16377,6177,6169,6186,6206,6186,6205,16373,16377,16378,6186,6169,6185,6205,6186,6185,16378,16381,16373,6169,6167,6185,6205,6185,6204,9911,9910,9912,6167,6195,6185,6195,6204,6185,9911,9909,9910,6195,6167,6184,9907,9908,9909,9910,9909,9908,6168,6184,6167,9907,9905,9904,9904,9908,9907,6168,6176,6184,9904,9905,9903,6157,6176,6168,9904,9903,9901,6157,6166,6176,9897,9901,9903,6146,6166,6157,9901,9897,9899,6175,6166,6146,9897,9895,9899,9893,9895,9897,9898,9896, +9893,9892,9895,9893,9893,9896,9890,9890,9892,9893,9892,9890,9891,9891,9890,9889,9886,9889,9890,2063,2064,2032,9889,9886,9885,2034,2032,2064,9886,9881,9885,9889,9885,9887,9886,9884,9881,9883,9885,9881,9883,9887,9885,9881,9884,9878,9883,9881,9877,9878,9877,9881,9877,9878,9870,9878,9875,9870,9871,9870,9875,9865,9870,9871,9869,9865,9871,15826,15800,15848,15826,15756,15800,15848,15800,15827,15875,15826,15848,15800,15756,15777,15777,15827,15800,15848,15827,15876,15875,15848,15895,15738,15777,15756,15777,15802,15827,15876,15827,15849,15895,15848,15876,15895,15920,15875,15737,15777,15738,15738,15756,15712,15777,15757,15802,15827,15802,15849,15877,15876,15849,15895,15876,15921,15895,15942,15920,15919,15875,15920,15737,15757,15777,15737,15738,15690,15712,15690,15738,15801,15802,15757,15802,15801,15849,15877,15921,15876,15877,15849,15801,15895,15921,15942,15920,15942,15966,15920,15965,15919,15713,15757,15737,15691,15737,15690,15648,15690,15712,15801,15757,15778,15877,15922,15921,15877,15801,15896,15921,15967,15942,15942,15988,15966,15965,15920,15966,15964,15919,15965,15713,15778,15757,15691,15713,15737,15647,15691,15690,15647,15690,15648,11856,11868,11846,6669,6656,6655,15896,15922,15877,15967,15921,15922,15988,15942,15967,15965,15966,15988,15964,15965,16012,6656,6649,6645,15691,15670,15713,15691,15647,15670,15648,15612,15647,11856,11846,11838,6655,6656,6645,16013,15988,15967,15988,16012,15965,6635,6645,6649,6657,6635,6649,15647,15629,15670,15613,15612,15648,15647,15612,15629,16034,15988,16013,16034,16012,15988,15670,15649,15692,15670,15629,15649,15613,15580,15612,15591,15629,15612,16012,16034,16054,6621,6635,6641,15614,15649,15629,15613,15592,15580,15591,15612,15580,15591,15614,15629,6647,6621,6641,15592,15543,15580,15560,15591,15580,15579,15614,15591,6653,6621,6647,15560,15580,15543,15579,15591,15560,15579,15559,15590,15543,15525,15560,15560,15542,15579,15579,15542,15559,6605,6621,6628,15525,15543,15491,15560,15525,15542,15542,15524,15559,15541,15578,15559,15525,15491,15509,15542,15525,15509,15542,15509,15524,15559,15524,15541, +6613,6596,6605,15476,15509,15491,15509,15475,15524,15524,15508,15541,6613,6620,6596,6605,6596,6577,15509,15476,15475,15452,15476,15491,15524,15475,15508,15490,15523,15508,6589,6577,6596,15451,15475,15476,15476,15452,15451,15475,15490,15508,6589,6596,6606,6589,6568,6577,15462,15475,15451,15429,15451,15452,15462,15490,15475,6606,6609,6589,6589,6584,6568,6577,6568,6558,15441,15462,15451,15441,15451,15429,6602,6589,6609,6589,6602,6584,6584,6567,6568,6549,6558,6568,15450,15462,15441,15404,15441,15429,6585,6584,6602,6584,6585,6567,6549,6568,6567,6549,6530,6558,15415,15450,15441,15404,15415,15441,6575,6567,6585,6549,6567,6557,6549,6538,6530,15403,15415,15404,6567,6575,6557,6575,6585,6592,6557,6538,6549,6530,6538,6524,15403,15381,15415,15382,15403,15404,6575,6586,6557,15381,15367,15391,6559,6538,6557,6538,6539,6524,15403,15382,15381,6593,6557,6586,15381,15355,15367,6538,6559,6539,6559,6557,6574,6539,6526,6524,15381,15382,15355,15317,15307,15332,15317,15367,15355,6569,6539,6559,15313,15331,15307,6539,6542,6526,15382,15368,15355,15317,15296,15307,15317,15355,15342,15313,15324,15336,15280,15313,15307,6539,6561,6542,6533,6526,6542,15342,15355,15368,15317,15318,15296,15280,15307,15296,15342,15318,15317,15313,15300,15324,15280,15300,15313,15323,15346,15324,15335,15356,15346,15308,15296,15318,15280,15296,15264,15342,15333,15318,15324,15300,15323,15323,15335,15346,6533,6551,6540,15264,15296,15308,15333,15308,15318,3098,3109,3085,3122,3109,3098,3088,3098,3085,12577,12574,12576,12574,12575,12576,3122,3133,3109,3108,3122,3098,3088,3108,3098,12578,12577,12576,3132,3133,3122,3108,3132,3122,3108,3088,3104,16823,16824,16821,12579,12578,12576,3140,3132,3108,3088,3094,3104,3108,3104,3126,16822,16821,16824,16822,16824,16825,3108,3126,3140,3081,3094,3088,3114,3104,3094,3126,3104,3125,16821,16822,16818,3140,3126,3125,3102,3094,3081,3114,3125,3104,3114,3094,3124,16818,16822,16819,3102,3113,3094,3102,3081,3093,3125,3114,3139,3113,3124,3094,3114,3124,3139,16816,16818,16819,3111,3113,3102,3111,3102,3093,3125,3139,3147,3124,3113,3138,3148,3139,3124, +16816,16815,16818,16819,16817,16816,3111,3135,3113,3111,3093,3112,3147,3139,3157,3138,3113,3135,3124,3138,3146,3157,3139,3148,3148,3124,3146,16816,16813,16815,16816,16817,16814,3111,3136,3135,3103,3112,3093,3112,3136,3111,3138,3135,3153,3156,3146,3138,3163,3157,3148,3163,3148,3146,16816,16814,16813,16810,16815,16813,3136,3152,3135,3116,3112,3103,3093,3082,3103,3112,3137,3136,3152,3153,3135,3153,3161,3138,3156,3162,3146,3156,3138,3161,16809,16813,16814,16809,16812,16806,16813,16807,16810,3136,3154,3152,3137,3112,3116,3095,3116,3103,3095,3103,3082,3137,3154,3136,3152,3166,3153,3161,3153,3166,3167,3162,3156,16806,16812,16811,18160,18161,18162,16809,16807,16813,16809,16806,16807,16807,16804,16810,3152,3154,3166,3137,3116,3142,3127,3116,3095,3082,3089,3095,3154,3137,3155,18162,18161,18163,16806,16811,16808,16807,16806,16804,11990,11994,11992,3127,3142,3116,3142,3155,3137,3127,3095,3115,3082,3073,3089,3105,3095,3089,11990,11992,11985,11996,11994,11995,16808,16805,16806,16805,16804,16806,11995,11994,11990,3127,3149,3142,3155,3142,3149,3105,3115,3095,3127,3115,3141,3073,3090,3089,3090,3105,3089,11990,11985,11980,11995,11990,11991,3149,3127,3141,11985,11982,11969,3105,3121,3115,3121,3141,3115,3090,3073,3083,3090,3097,3105,11980,11985,11969,11990,11980,11991,11982,11987,11975,11969,11982,11975,3105,3097,3121,11988,11975,11987,3090,3083,3097,11963,11969,11975,3131,3121,3097,11975,11988,11983,3106,3097,3083,11963,11975,11983,3120,3131,3097,3106,3120,3097,3096,3106,3083,11981,11963,11983,3120,3106,3128,3117,3106,3096,11981,11974,11963,3117,3128,3106,11981,11986,11974,3117,3096,3119,11963,11974,11968,3143,3128,3117,11986,11976,11974,3107,3119,3096,3117,3119,3143,11976,11968,11974,3107,3130,3119,3143,3119,3150,11964,11968,11976,3107,3129,3130,3144,3119,3130,3144,3150,3119,11976,11970,11964,11964,11965,11968,3130,3129,3151,3130,3151,3144,3144,3159,3150,11970,11959,11964,11964,11948,11965,3144,3151,3160,3144,3160,3159,3150,3159,3165,11964,11959,11948,3151,3164,3160,3169,3159,3160,3169,3165,3159,11959,11947,11948,3164,3170,3160,3160, +3170,3169,3169,3171,3165,3165,3171,3174,11948,11947,11928,3170,3173,3169,3169,3173,3171,3175,3174,3171,11928,11947,11939,11948,11928,11929,3175,3171,3173,3177,3174,3175,11928,11939,11917,11905,11929,11928,11928,11917,11905,11905,11918,11929,11917,11882,11905,11905,11894,11918,11905,11882,11894,9090,9067,9070,9093,9090,9070,9093,9117,9090,9090,9087,9067,9113,9087,9090,9090,9117,9113,9064,9067,9087,9117,9146,9113,9151,9146,9117,9064,9087,9088,9114,9088,9087,9114,9087,9130,9113,9130,9087,9113,9146,9130,9088,9065,9064,9172,9146,9151,9130,9146,9161,9172,9161,9146,9114,9130,9147,9130,9162,9147,9162,9130,9173,9130,9161,9173,9088,9114,9115,9115,9114,9147,9088,9089,9065,9115,9089,9088,9065,9089,9066,9188,9161,9172,9205,9188,9172,9161,9189,9173,9188,9189,9161,9162,9173,9190,9173,9206,9190,9173,9189,9206,9162,9174,9147,9190,9174,9162,9115,9147,9148,9174,9148,9147,9115,9116,9089,9115,9148,9116,9066,9089,9102,9116,9102,9089,9188,9205,9219,9205,9234,9219,9188,9219,9189,9206,9189,9220,9219,9233,9189,9220,9189,9233,9222,9190,9206,9237,9222,9206,9206,9220,9235,9237,9206,9235,9190,9175,9174,9175,9190,9221,9222,9221,9190,9174,9175,9148,9116,9148,9163,9148,9175,9163,9233,9219,9234,9270,9233,9234,9220,9233,9250,9270,9250,9233,9251,9235,9220,9220,9250,9272,9251,9220,9272,9235,9274,9237,9251,9273,9235,9274,9235,9293,9292,9235,9273,9292,9293,9235,9222,9237,9253,9276,9253,9237,9276,9237,9274,9222,9253,9221,9175,9221,9207,9221,9238,9207,9221,9254,9238,9253,9254,9221,9163,9175,9191,9191,9175,9207,9290,9250,9270,9291,9272,9250,9290,9291,9250,9251,9272,9273,9291,9314,9272,9273,9272,9315,9314,9315,9272,9316,9292,9273,9316,9273,9315,9292,9316,9293,9274,9293,9317,9293,9316,9317,9318,9276,9274,9318,9274,9317,9296,9253,9276,9305,9296,9276,9305,9276,9329,9318,9329,9276,9253,9295,9254,9253,9296,9295,9254,9277,9238,9254,9295,9277,9207,9238,9223,9223,9238,9255,9255,9238,9277,9191,9207,9223,9315,9357,9316,9317,9316,9358,9358,9316,9380,9316,9357,9380,9318,9317,9359,9359,9317,9358,9318,9360,9329,9318,9381,9360,9359,9381,9318,9329,9285,9305,9330,9285,9329, +9330,9329,9360,9305,9304,9296,9263,9304,9305,9263,9305,9285,9304,9295,9296,9307,9277,9295,9304,9307,9295,9297,9255,9277,9297,9277,9307,9358,9380,9400,9359,9358,9400,9359,9400,9381,9401,9360,9381,9401,9381,9426,9400,9426,9381,9330,9360,9332,9393,9360,9401,9332,9360,9393,9330,9287,9285,9330,9332,9287,9229,9263,9285,9229,9285,9287,9263,9284,9304,9263,9244,9284,9244,9263,9229,9284,9307,9304,9265,9297,9307,9284,9265,9307,9297,9265,9349,9401,9426,9438,9393,9401,9438,9332,9393,9413,9306,9287,9332,5616,5661,5675,9212,9244,9229,9212,9229,9198,9245,9284,9244,9212,9245,9244,9245,9265,9284,18164,18165,18166,9245,9230,9265,9212,9198,9180,9198,9154,9180,9154,9198,9197,9212,9230,9245,9199,9230,9212,9199,9212,9180,9230,9199,9213,9179,9154,9197,9154,9121,9138,9138,9168,9154,9154,9153,9121,9180,9154,9168,9154,9179,9153,9199,9180,9168,9199,9168,9213,9213,9168,9214,9096,9108,9121,9138,9121,9108,9096,9121,9107,9121,9136,9107,9153,9136,9121,9138,9108,9139,9138,9139,9168,9139,9181,9168,9200,9168,9181,9214,9168,9200,9136,9153,9137,9108,9082,9098,9098,9123,9108,9108,9096,9082,9108,9123,9139,9136,9137,9107,9081,9096,9107,9081,9107,9122,9122,9107,9137,9072,9082,9096,9072,9096,9081,9139,9123,9152,9169,9139,9152,9181,9139,9169,9082,9073,9098,9082,9059,9073,9072,9059,9082,9080,9098,9073,9080,9120,9098,9098,9120,9123,9152,9123,9120,7163,7161,7160,9049,9072,9081,9049,9081,9097,7165,7163,7164,7160,7164,7163,9072,9049,9059,9152,9120,9135,9057,9080,9073,9050,9057,9073,9050,9073,9059,9059,9034,9050,9059,9049,9034,9080,9057,9071,9095,9080,9071,9106,9080,9095,9120,9080,9106,9135,9120,9106,7160,7162,7164,7164,7167,7166,8995,8993,8955,7164,7166,7165,8955,8993,8954,8994,8954,8993,8994,8993,9014,9034,9049,8998,7166,7167,7168,9057,9050,9048,9015,9048,9050,9015,9050,9034,9030,9046,9057,9071,9057,9046,9048,9030,9057,9034,8998,9015,8994,9014,8974,8959,8998,8995,8959,8995,8955,8994,8957,8954,8974,8957,8994,8955,8954,8915,8915,8954,8914,8957,8914,8954,8955,8918,8959,8915,8918,8955,9015,8998,8976,8976,8998,8959,9048,9015,9031,8992,9031,9015,8992,9015,8975,9015,8976, +8975,9048,9031,9030,8974,8937,8957,8976,8959,8939,8896,8939,8959,8959,8918,8896,8937,8914,8957,8891,8914,8825,8915,8914,8891,8825,8914,8892,8937,8892,8914,8915,8861,8918,8915,8891,8861,8918,8895,8896,8861,8895,8918,8975,8976,8920,8920,8976,8939,8939,8896,8919,8865,8919,8896,8865,8896,8827,8827,8896,8895,8939,8919,8920,8862,8825,8892,8726,8825,8791,8726,8861,8825,8825,8862,8791,8891,8825,8861,8726,8827,8861,8827,8895,8861,8827,8726,8792,8827,8792,8865,8726,8758,8660,8726,8791,8758,8758,8791,8793,8863,8793,8791,8727,8660,8758,8758,8793,8727,8692,8660,8727,8625,8660,8692,8828,8793,8863,8727,8793,8828,8727,8728,8692,8728,8727,8794,8794,8727,8828,8692,8728,8625,8693,8651,8625,8693,8625,8728,8829,8794,8828,8728,8794,8829,8728,8760,8693,8651,8693,8649,8693,8719,8649,8719,8693,8760,8683,8649,8719,8750,8683,8719,8615,8649,8683,8751,8683,8750,8684,8615,8683,8684,8683,8751,8684,8650,8615,12580,12581,12582,3087,3091,3079,3087,3101,3091,3080,3079,3091,3077,3087,3079,12583,12584,12585,12594,12595,12596,3067,3079,3080,12599,12596,12598,3087,3077,3092,3077,3079,3068,3087,3092,3100,12585,12584,12586,12594,12597,12595,12598,12596,12595,3067,3068,3079,3080,3076,3067,12600,12599,12598,3092,3077,3086,3092,3099,3100,12584,12587,12586,6799,6798,6786,6786,6779,6791,6792,6791,6779,3049,3068,3067,12599,12600,12601,3062,3067,3076,6780,6796,6792,3092,3086,3099,3100,3099,3123,12588,12586,12587,6786,6798,6793,6779,6780,6792,3062,3049,3067,12602,12601,12600,12603,12601,12602,12600,12605,12604,3099,3086,3085,3110,3123,3099,12588,12589,12586,12590,12588,12587,3049,3062,3056,12600,12604,12602,3062,3069,3057,3099,3085,3110,12589,12588,12591,12592,12588,12590,3051,3056,3062,3049,3056,3038,12604,12606,12602,12602,12606,12607,3051,3062,3057,3109,3110,3085,12588,12593,12591,12588,12592,12593,3109,3134,3110,3056,3051,3038,6781,6762,6774,12608,12607,12606,3044,3051,3057,18167,18168,18169,3109,3145,3134,3044,3038,3051,6774,6762,6768,3052,3044,3057,12606,12609,12608,3032,3038,3044,6762,6754,6768,3044,3052,3039,12608,12609,12610,3044,3039,3032,6768,6754,6763, +3045,3039,3052,12611,12608,12610,3032,3039,3027,6754,6749,6763,3033,3039,3045,12612,12611,12610,3039,3033,3027,6763,6749,6761,12610,12613,12612,3023,3027,3033,12618,12619,12620,12612,12613,12614,3033,3031,3023,6753,6761,6747,6747,6749,6734,12614,12613,12615,3018,3023,3031,6733,6753,6747,6733,6747,6734,12615,12616,12614,6760,6753,6733,6725,6733,6734,12617,12616,12615,10535,10540,10541,6725,6717,6733,18170,18171,18172,10537,10540,10535,6732,6733,6717,3003,3010,3014,10537,10539,10540,10534,10537,10535,6719,6732,6717,3003,2998,3010,10534,10539,10537,10535,10532,10534,6732,6719,6736,2992,2998,3003,10538,10539,10534,10534,10532,10531,6736,6719,6722,2992,2986,2998,2992,3003,3011,10536,10538,10534,10531,10532,10529,10534,10531,10536,6741,6736,6722,2986,2992,2980,18173,18174,18175,10531,10529,10530,18176,18177,18178,6741,6722,6737,2993,2980,2992,2993,2992,3004,10530,10529,10527,10531,10530,10533,6723,6737,6722,10529,10528,10527,2985,2980,2993,18179,18180,18181,2985,2993,2990,6737,6723,6742,10527,10528,10522,2967,2980,2985,2981,2979,2991,2979,2985,2990,10524,10520,10522,10526,10527,10522,2979,2967,2985,2981,2974,2979,10522,10520,10519,10526,10522,10525,2974,2967,2979,2974,2981,2968,10508,10519,10520,10522,10519,10523,10523,10525,10522,2981,2982,2968,2967,2974,2957,2974,2968,2957,10519,10508,10515,10523,10519,10521,18182,18183,18184,2982,2970,2968,2963,2957,2968,10508,10497,10515,10519,10515,10521,18184,18183,18185,2963,2968,2970,2957,2963,2952,10515,10497,10509,10518,10521,10515,18185,18186,18184,2958,2963,2970,2958,2952,2963,10509,10497,10502,10515,10509,10518,2959,2958,2969,2958,2942,2952,10497,10486,10502,10509,10502,10507,10518,10509,10507,2958,2959,2942,10502,10486,10496,10502,10496,10507,2959,2964,2953,2953,2942,2959,10496,10486,10491,18187,18188,18189,2960,2953,2964,2943,2942,2953,10470,10491,10486,18189,18192,18190,18190,18187,18189,2943,2953,2960,2943,2935,2942,10485,10491,10470,10485,10495,10491,18190,18191,18187,2943,2941,2935,10476,10485,10470,18193,18194,18195,2941,2943,2949,2935,2941,2931,18196,18197,18198,10461, +10476,10470,2936,2941,2944,2936,2931,2941,2935,2931,2917,18199,18197,18196,10483,10476,10461,2926,2931,2936,2917,2931,2926,18200,18197,18199,10483,10461,10474,2918,2917,2926,18199,18201,18200,10460,10474,10461,2918,2911,2917,2923,2918,2926,18202,18200,18201,18203,18202,18201,10460,10461,10446,2918,2914,2911,2914,2918,2923,10475,10484,10460,10460,10446,10453,2911,2914,2907,2919,2914,2923,10468,10475,10460,10453,10446,10436,10460,10453,10468,2912,2907,2914,2911,2907,2902,2912,2914,2919,18204,18205,18206,10459,10453,10436,10469,10468,10453,2903,2907,2912,2907,2898,2902,18207,18204,18206,10459,10469,10453,10452,10459,10436,2907,2903,2898,18208,18204,18207,2893,2902,2898,18209,18208,18207,10452,10458,10459,10452,10436,10435,2903,2890,2898,2893,2898,2890,18208,18209,18210,10452,10445,10458,10452,10435,10445,18208,18210,18211,2884,2893,2890,17976,17975,17977,10427,10445,10435,2899,2894,2890,2887,2884,2890,17975,17976,17973,17976,17978,17973,2887,2890,2894,2887,2880,2884,17975,17973,17974,10447,10427,10437,2887,2883,2880,17974,17973,17971,10416,10437,10427,17973,17972,17971,2876,2880,2883,17966,17972,17969,17966,17971,17972,2872,2880,2876,17968,17971,17966,17969,17964,17966,2863,2872,2876,17965,17968,17966,17965,17966,17964,17965,17967,17968,17965,17964,17962,17963,17967,17965,17959,17962,17964,17963,17965,17962,17970,17967,17963,17962,17959,17960,17962,17960,17963,2864,2856,2844,17959,17957,17960,17963,17960,17961,2838,2844,2856,17959,17954,17957,17955,17960,17957,17961,17960,17955,2838,2815,2844,17955,17958,17961,17952,17957,17954,17952,17955,17957,2827,2815,2838,17955,17951,17958,17954,17949,17952,17955,17952,17951,2803,2815,2827,17954,17956,17949,17952,17949,17947,17947,17951,17952,17947,17948,17951,10360,10371,10344,17947,17949,17945,17943,17948,17947,17953,17945,17949,10344,10317,10360,17943,17947,17945,17950,17948,17943,10384,10392,10360,10360,10317,10358,17944,17943,17945,2804,2793,2782,10360,10358,10384,10343,10358,10317,17940,17943,17944,17943,17940,17941,17940,17944,17946,10358,10343,10369,17933,17941,17940,10369, +10383,10358,10369,10343,10357,17939,17933,17940,10328,10357,10343,17939,17934,17937,17937,17933,17939,17935,17929,17934,17937,17934,17930,17937,17930,17933,17932,17929,17935,17930,17934,17929,17929,17932,17926,17936,17926,17932,17936,17938,17926,2685,2673,2654,2673,2617,2654,2655,2617,2673,2640,2617,2655,2617,2640,2586,9229,9287,9264,9306,9264,9287,9264,9242,9229,9393,9438,9454,9464,9438,9426,5616,5636,5598,9198,9229,9242,9286,9264,9306,9264,9286,9242,5616,5650,5661,9454,9438,9464,5616,5598,5582,9242,9226,9198,7155,7161,7159,7160,7161,7155,8791,8862,8893,8863,8791,8893,9286,9306,9331,9282,9242,9286,5616,5615,5650,9454,9464,9487,5582,5598,5544,5615,5616,5582,9242,9260,9226,9226,9197,9198,7162,7160,7157,9196,9153,9179,9153,9178,9137,7155,7159,7151,7160,7155,7157,8862,8892,8916,8893,8862,8917,9331,9345,9286,9242,9282,9260,9286,9326,9282,5650,5615,5649,5582,5544,5562,5615,5582,5581,9281,9226,9260,9226,9227,9197,8974,9014,9013,9211,9179,9197,9196,9178,9153,9211,9196,9179,7148,7155,7151,7148,7157,7155,8916,8892,8938,8916,8917,8862,9286,9345,9326,9301,9260,9282,9301,9282,9326,5635,5649,5615,5562,5581,5582,5581,5597,5615,9281,9259,9226,9260,9302,9281,9227,9226,9259,9197,9227,9211,8974,9013,8997,8974,8997,8937,9210,9178,9196,9211,9228,9196,7148,7151,7145,7148,7152,7157,8956,8892,8937,8938,8892,8956,9345,9367,9326,9301,9302,9260,9326,9347,9301,9345,9387,9367,5615,5597,5635,9281,9300,9259,9281,9302,9327,9227,9259,9261,9211,9227,9243,8997,9013,9033,8937,8997,8973,7150,7145,7154,9211,9243,9228,7148,7145,7143,7148,7143,7152,8973,8956,8937,9326,9367,9347,9302,9301,9346,9301,9347,9368,5660,5674,5635,5614,5635,5597,9281,9324,9300,9300,9261,9259,9302,9348,9327,9327,9324,9281,9243,9227,9261,9033,9012,8997,8973,8997,9012,7147,7145,7150,9243,9262,9228,7145,7141,7143,7143,7156,7152,8956,8973,8996,9389,9347,9367,9301,9368,9346,9302,9346,9369,9347,9389,9368,9389,9367,9410,5634,5660,5635,5634,5635,5614,9324,9343,9300,9261,9300,9325,9302,9369,9348,9365,9327,9348,9327,9365,9324,9243,9261,9283,9033,9032,9012,8996,8973,9012,7145,7147,7141,7153, +7147,7150,9262,9243,9283,7141,7142,7143,18212,18213,18214,9368,9388,9346,9388,9369,9346,9389,9388,9368,9410,9434,9389,5634,5659,5660,9324,9365,9343,9300,9343,9366,9344,9325,9300,9303,9261,9325,9369,9390,9348,9365,9348,9391,9303,9283,9261,8996,9012,9032,7147,7146,7141,7153,7146,7147,7153,7158,7146,7142,7141,7144,9388,9409,9369,9434,9388,9389,9343,9365,9385,9386,9366,9343,9300,9366,9344,9344,9303,9325,9369,9409,9390,9411,9348,9390,9411,9391,9348,9385,9365,9391,9283,9303,9328,7146,7144,7141,9435,9409,9388,9434,9435,9388,9385,9406,9343,9366,9386,9407,9386,9343,9406,9344,9366,9370,9344,9370,9303,17159,17180,17124,9411,9390,9436,9411,9429,9391,9385,9391,9429,7146,7149,7144,17181,17124,17180,9385,9430,9406,9386,9431,9407,9366,9407,9408,9386,9406,9432,9366,9408,9370,9303,9370,9392,17124,17125,17159,9411,9436,9429,9429,9430,9385,9406,9430,9432,9431,9386,9432,9431,9452,9407,9453,9408,9407,9370,9408,9433,9392,9370,9412,17124,17084,17125,17101,17125,17084,17101,17055,17082,17082,17053,17070,9431,9432,9467,9431,9468,9452,9469,9407,9452,9453,9433,9408,9469,9453,9407,9370,9433,9437,9412,9370,9437,17084,17055,17101,17082,17055,17053,17041,17070,17053,9467,9468,9431,9483,9452,9468,9452,9483,9469,9470,9433,9453,9484,9453,9469,9437,9433,9471,17055,17030,17053,17041,17053,17030,17041,17020,17028,17019,17028,17007,9503,9469,9483,9433,9470,9485,9470,9453,9486,9486,9453,9484,9484,9469,9503,9471,9433,9485,17020,17041,17030,17007,17028,17020,17007,16997,17019,17018,17019,16997,9470,9504,9485,9505,9470,9486,9486,9484,9513,9484,9503,9513,17018,16997,16996,9470,9505,9504,9485,9504,9514,9486,9515,9505,9515,9486,9513,9503,9525,9513,16997,16976,16996,9505,9526,9504,9514,9504,9507,9527,9505,9515,9515,9513,9535,9535,9513,9525,16987,16996,16976,9505,9527,9526,9508,9504,9526,9504,9508,9507,9527,9515,9536,9536,9515,9535,16967,16987,16976,9518,9526,9527,9508,9526,9518,9508,9473,9507,9536,9537,9527,16986,16987,16967,9518,9527,9537,9491,9508,9518,9508,9491,9473,9507,9473,9490,9536,9544,9537,16966,16986,16967,9529,9518,9537,9491,9518,9506,9458,9473,9491, +9490,9473,9440,9529,9537,9544,9529,9506,9518,9491,9506,9472,9458,9440,9473,9491,9472,9458,9529,9544,9528,9529,9528,9506,9489,9472,9506,9458,9417,9440,9439,9458,9472,16966,16953,16969,9517,9506,9528,9489,9455,9472,9506,9517,9489,9458,9439,9417,9440,9417,9373,9439,9472,9455,16961,16969,16953,9489,9488,9455,9489,9517,9516,9439,9394,9417,9394,9373,9417,9459,9440,9373,9455,9414,9439,16953,16947,16961,9516,9488,9489,9456,9455,9488,9439,9414,9394,9394,9334,9373,9455,9456,9414,9394,9414,9371,9394,9371,9334,9373,9334,9351,9414,9456,9415,9414,9415,9371,9333,9334,9371,9351,9334,9309,9457,9415,9456,9415,9372,9371,9267,9334,9333,9333,9371,9372,9267,9309,9334,9457,9416,9415,9086,9051,9075,9415,9416,9372,9308,9267,9333,9350,9333,9372,9309,9267,9288,9051,9086,9084,9374,9372,9416,9266,9267,9308,9308,9333,9350,9372,9374,9350,9288,9267,9246,9084,9086,9110,9231,9267,9266,9266,9308,9289,9335,9308,9350,9374,9335,9350,9231,9246,9267,9124,9084,9110,9232,9231,9266,9289,9308,9335,9289,9248,9266,9352,9335,9374,9231,9201,9246,9084,9124,9111,9202,9231,9232,9232,9266,9248,9289,9335,9311,9289,9269,9248,9311,9335,9352,9231,9202,9201,9140,9111,9124,9099,9084,9111,9202,9232,9215,9215,9232,9248,9269,9289,9311,9215,9248,9269,9156,9201,9202,9141,9111,9140,9099,9111,9125,9215,9183,9202,9269,9311,9310,9215,9269,9268,9156,9182,9201,9156,9202,9183,9141,9125,9111,9125,9142,9099,9215,9216,9183,9310,9268,9269,9268,9247,9215,9182,9156,9155,9156,9183,9170,9155,9125,9141,9125,9156,9142,9216,9215,9247,9216,9203,9183,9268,9249,9247,9155,9156,9125,9170,9183,9203,9142,9156,9170,9216,9247,9249,9216,9217,9203,9203,9184,9170,9142,9170,9157,9249,9217,9216,9203,9217,9184,9170,9184,9157,16909,16896,16904,9218,9184,9217,9157,9184,9185,16897,16904,16896,9185,9184,9218,16896,16891,16897,16894,16897,16891,16894,16891,16885,16220,16227,16210,16210,16189,16220,16210,16227,16211,8419,8362,8390,8362,8322,8390,8277,8322,8321,8362,8321,8322,8322,8277,8301,8277,8252,8301,8252,8302,8301,8302,8252,8278,8478,8421,8419,8389,8419,8421,8362,8419,8389,8362,8389,8321,8277,8321,8275,8229,8277, +8275,8277,8229,8252,8341,8298,8321,8363,8341,8321,8298,8275,8321,8363,8321,8389,8206,8252,8229,8252,8206,8230,8252,8230,8278,8231,8278,8230,8247,8278,8231,8542,8479,8478,8447,8478,8479,8421,8478,8447,8421,8447,8363,8389,8421,8363,8298,8227,8275,8227,8229,8275,8144,8229,8227,8206,8229,8144,8341,8299,8298,8299,8276,8298,8227,8298,8276,8363,8420,8364,8364,8341,8363,8363,8447,8420,8364,8299,8341,8206,8144,8184,8206,8184,8230,8231,8230,8184,8231,8184,8207,8231,8207,8247,8201,8247,8207,8202,8247,8201,8543,8479,8542,8480,8479,8543,8480,8420,8479,8447,8479,8420,8227,8276,8251,8205,8227,8251,8144,8227,8205,8183,8144,8205,8183,8143,8144,8113,8144,8143,8184,8144,8160,8144,8113,8130,8144,8130,8160,8342,8299,8364,8342,8300,8299,8251,8299,8300,8299,8251,8276,8420,8423,8364,8420,8480,8423,8364,8392,8342,8364,8423,8392,8184,8160,8207,8201,8207,8160,8201,8160,8180,8201,8180,8202,8180,8161,8202,8580,8509,8543,8480,8543,8509,8480,8509,8450,8450,8423,8480,8251,8300,8250,8250,8228,8251,8205,8251,8228,8228,8165,8205,8183,8205,8165,8183,8165,8143,8129,8143,8165,8113,8143,8129,8097,8130,8113,8129,8096,8113,8113,8078,8097,8113,8096,8078,8160,8130,8127,8097,8127,8130,8160,8127,8180,8391,8342,8392,8391,8365,8342,8365,8300,8342,8365,8343,8300,8320,8300,8343,8320,8250,8300,8450,8392,8423,8392,8449,8391,8392,8482,8449,8482,8392,8450,8180,8127,8161,8161,8127,8128,8509,8580,8546,8509,8546,8482,8482,8450,8509,8250,8320,8297,8250,8297,8274,18215,18216,18217,8274,8226,8250,8226,8204,8250,8228,8204,8165,8163,8165,8204,18218,18219,18220,8142,8129,8163,8129,8142,8096,8164,8096,8142,18221,18222,18223,8066,8078,8096,8065,8097,8078,8065,8078,8051,8051,8078,8066,8127,8097,8095,8065,8095,8097,8127,8095,8128,8391,8449,8448,8391,8448,8422,8365,8391,8422,8365,8422,8393,8343,8365,8393,18224,18225,18226,18226,18227,18224,18228,18224,18227,18227,18229,18228,8506,8448,8449,8449,8508,8506,8482,8508,8449,8482,8545,8508,8482,8546,8545,8112,8128,8095,8546,8611,8545,8360,8297,8387,8297,8273,8274,8360,8319,8297,8273,8297,8319,8274,8273,8226,8226,8181,8204,8249,8226,8273, +8226,8249,8181,8204,8181,8163,8181,8142,8163,8181,8203,8142,8142,8203,8182,8164,8142,8182,8182,8145,8164,8164,8145,8066,8145,8114,8066,8025,8051,8066,8079,8066,8114,8025,8066,8052,18230,18231,18232,8065,8051,8041,8051,8026,8041,8051,8025,8026,8095,8065,8077,8050,8077,8065,8050,8065,8041,8095,8077,8112,8507,8448,8506,8507,8481,8448,8422,8448,8481,8422,8481,8451,8393,8422,8451,8393,8451,8483,8393,8483,8444,8444,8483,8475,8444,8475,8417,8444,8417,8387,8360,8387,8417,8578,8506,8508,8578,8508,8545,8577,8507,8506,8577,8506,8578,8578,8545,8612,8112,8077,8111,8360,8417,8416,8361,8360,8416,8319,8360,8361,8319,8361,8340,8340,8296,8319,8273,8319,8296,8249,8273,8296,8295,8249,8296,8225,8181,8249,8248,8249,8295,8225,8249,8248,8225,8203,8181,8225,8248,8203,8253,8203,8248,8209,8182,8203,8253,8232,8203,8209,8203,8232,8167,8182,8209,8182,8167,8145,8132,8145,8167,8145,8132,8114,8132,8098,8114,8079,8114,8098,18230,18232,18233,8098,8067,8079,8067,8042,8079,8027,8025,8052,8027,8052,8042,8000,8026,8025,8001,8000,8025,8001,8025,8027,8014,8041,8026,8000,8014,8026,8050,8041,8024,8014,8024,8041,8050,8076,8077,8076,8050,8049,8050,8024,8049,8111,8077,8076,8507,8577,8579,8507,8579,8544,8544,8481,8507,8547,8481,8544,8547,8510,8481,8510,8451,8481,8510,8511,8451,8451,8511,8483,8483,8511,8539,8539,8475,8483,8539,8477,8475,8416,8475,8477,8417,8475,8416,8577,8578,8612,8577,8645,8579,8577,8677,8645,8612,8677,8577,8416,8477,8446,8446,8388,8416,8361,8416,8388,8340,8361,8388,8340,8388,8359,8340,8359,8296,8359,8339,8296,8295,8296,8339,8254,8295,8339,8248,8295,8254,8253,8248,8254,8254,8208,8253,8253,8208,8232,8232,8208,8166,8232,8166,8209,8167,8209,8166,8132,8167,8166,8166,8131,8132,8131,8098,8132,8131,8099,8098,8098,8099,8067,8053,8042,8067,8067,8099,8080,8053,8067,8080,8015,8027,8042,8015,8042,8053,8001,8027,8015,8000,8001,7983,7983,8001,7991,8001,8015,7991,7982,8014,8000,8000,7983,7982,7999,8024,8014,7982,7999,8014,8049,8024,8040,7999,8040,8024,8579,8645,8678,8547,8582,8510,8510,8582,8581,8581,8511,8510,8581,8576,8511,8576,8477,8511,8539,8511,8477,8477, +8576,8541,8477,8541,8504,8446,8477,8504,8446,8504,8445,8445,8388,8446,8418,8388,8445,8359,8388,8418,8418,8415,8359,8415,8386,8359,8359,8386,8339,8386,8366,8339,8323,8339,8366,8323,8254,8339,8323,8281,8254,8254,8281,8257,8257,8212,8254,8212,8208,8254,8212,8169,8208,8169,8166,8208,8133,8166,8169,8166,8133,8131,8131,8133,8099,8115,8099,8133,8115,8080,8099,8115,8116,8080,8100,8053,8080,8100,8080,8116,8053,8054,8015,8053,8081,8054,8053,8100,8081,7991,8015,8003,8003,8015,8043,8054,8043,8015,7977,7983,7991,7977,7991,7993,7991,8003,7993,7971,7982,7983,7977,7971,7983,7990,7999,7982,7982,7976,7990,7971,7976,7982,8040,7999,8023,8023,7999,8006,7990,8006,7999,8505,8504,8541,8505,8445,8504,8505,8476,8445,8476,8418,8445,8418,8476,8474,8415,8418,8474,8474,8503,8415,8503,8473,8415,8415,8473,8424,8415,8424,8386,8366,8386,8424,8425,8366,8424,8425,8372,8366,8366,8372,8323,8327,8323,8372,8306,8323,8327,8306,8281,8323,8306,8234,8281,8281,8234,8257,8212,8257,8234,8234,8185,8212,8185,8169,8212,8185,8147,8169,8133,8169,8147,8133,8147,8115,8147,8168,8115,8146,8115,8168,8115,8146,8116,8116,8146,8117,8116,8117,8100,8117,8081,8100,8081,8082,8054,8081,8118,8082,8118,8081,8117,8043,8054,8028,8055,8054,8082,8055,8028,8054,8043,8028,8003,7984,7993,8003,8003,8028,8002,8003,8002,7984,7984,7977,7993,7971,7977,7967,7967,7977,7972,7984,7972,7977,7963,7976,7971,7963,7971,7967,7994,7990,7976,7994,8006,7990,8425,8424,8473,8327,8280,8306,8327,8326,8280,8280,8234,8306,8280,8256,8234,8256,8185,8234,8255,8185,8256,8185,8211,8147,8255,8233,8185,8185,8233,8211,8211,8186,8147,8168,8147,8186,8168,8186,8210,8168,8210,8170,8170,8146,8168,8170,8148,8146,8117,8146,8148,8117,8148,8118,8119,8118,8148,8118,8085,8082,8118,8119,8085,8058,8055,8082,8085,8058,8082,8029,8028,8055,8004,8002,8028,8029,8004,8028,7984,8002,7992,8004,7992,8002,7984,7992,7972,7967,7972,7959,7972,7974,7959,7992,7985,7972,7972,7985,7974,7959,7963,7967,8280,8326,8305,8280,8305,8256,8255,8256,8305,8255,8305,8303,8255,8303,8279,8255,8279,8233,8186,8211,8233,8279,8304,8233,8235,8186,8233,8325,8233,8304, +8235,8233,8282,8307,8233,8325,8282,8233,8307,8210,8186,8235,8235,8258,8210,8283,8210,8258,8259,8210,8283,8170,8120,8148,8119,8148,8120,8119,8120,8084,8085,8119,8084,7992,8004,7985,12621,12622,12623,8328,8282,8307,8235,8282,8258,8984,8966,8983,8966,8984,8947,8946,8983,8966,8985,8947,8984,8966,8947,8905,8983,8946,9006,8946,8966,8905,8967,8947,8985,8905,8947,8930,9006,8946,8982,8929,8946,8905,8967,8930,8947,9007,8967,8985,8905,8930,8884,8946,8965,8982,8946,8929,8965,8856,8929,8905,8930,8967,8948,8986,8967,9007,8930,8948,8884,8856,8905,8884,8965,9005,8982,8949,8965,8929,8906,8929,8856,8986,8948,8967,9025,8986,9007,8907,8884,8948,8856,8884,8785,8965,8987,9005,8965,8949,8987,8949,8929,8906,8906,8856,8883,8981,8948,8986,9025,9024,8986,8907,8885,8884,8945,8907,8948,8785,8884,8885,8856,8785,8820,8987,9027,9005,8988,8987,8949,8906,8950,8949,8856,8820,8883,8906,8883,8931,8945,8948,8981,8981,8986,9024,9025,9039,9024,8854,8885,8907,8904,8907,8945,8854,8785,8885,8785,8749,8820,8987,9026,9027,9005,9027,9041,8987,8988,9026,8988,8949,8950,8931,8950,8906,8855,8883,8820,8928,8931,8883,8964,8945,8981,9004,8981,9024,9004,9024,9039,8854,8907,8904,8945,8927,8904,8854,8819,8785,8749,8785,8716,8820,8749,8855,9053,9027,9026,9053,9041,9027,8988,9040,9026,8950,8990,8988,8931,8968,8950,8855,8882,8883,5687,5664,5698,8928,8883,8882,8964,8927,8945,8964,8981,9004,9023,9004,9039,8853,8854,8904,8904,8927,8881,8854,8784,8819,8819,8716,8785,8749,8716,8678,8749,8882,8855,9040,9053,9026,9041,9053,9066,8988,9042,9040,8968,8990,8950,8990,9028,8988,8968,8931,8989,5664,5687,5677,9008,8989,8931,8928,8882,8908,8944,8927,8964,8979,8964,9004,9023,8979,9004,18234,18235,18236,8853,8784,8854,8853,8904,8848,8927,8880,8881,8904,8881,8848,8716,8819,8784,8646,8678,8716,8749,8678,8786,8749,8857,8882,9053,9040,9065,9053,9065,9066,9042,8988,9028,9042,9064,9040,8968,9009,8990,8990,9009,9028,5699,5706,5678,5677,5687,5697,5664,5677,5639,5678,5664,5652,8857,8908,8882,5705,5697,5687,8903,8927,8944,8964,8979,8944,9020,8979,9023,18237,18235,18234,8853,8783,8784,8848,8847,8853, +8903,8880,8927,8814,8881,8880,8814,8848,8881,8716,8784,8715,8579,8678,8646,8715,8646,8716,8821,8749,8786,8821,8857,8749,9040,9064,9065,9042,9028,9044,9042,9067,9064,8968,9029,9009,9009,9044,9028,5678,5688,5699,5652,5664,5639,5678,5652,5665,8886,8908,8857,5697,5705,5696,8943,8903,8944,8943,8944,8979,9003,8979,9020,9021,9020,9023,8853,8847,8783,8783,8715,8784,8848,8780,8847,8903,8846,8880,8814,8880,8813,8814,8780,8848,8646,8610,8579,8715,8679,8646,8821,8886,8857,9042,9044,9067,9009,9029,9043,9044,9009,9055,5665,5688,5678,9043,9029,9054,5720,5696,5705,8903,8943,8926,8943,8979,9003,9003,9020,9021,8818,8783,8847,8783,8748,8715,8779,8847,8780,8846,8903,8879,8813,8880,8846,8813,8745,8814,8814,8745,8780,8646,8679,8610,8610,8544,8579,8748,8679,8715,9070,9067,9044,9055,9009,9043,9070,9044,9055,9068,9043,9054,8963,8926,8943,8903,8926,8879,8943,9003,8980,9003,9021,8980,8783,8818,8748,8818,8847,8779,8779,8780,8712,8846,8879,8776,8813,8846,8777,8813,8777,8745,8780,8745,8712,8679,8609,8610,8610,8609,8544,8748,8680,8679,8963,8942,8926,8943,8980,8963,8902,8879,8926,9022,8980,9021,8818,8778,8748,8818,8779,8778,8779,8712,8711,8879,8845,8776,8846,8776,8777,8709,8745,8777,8676,8712,8745,8679,8680,8609,8544,8609,8547,8748,8710,8680,8970,8942,8963,8942,8902,8926,9002,8963,8980,8902,8845,8879,9002,8980,9022,8778,8710,8748,8779,8711,8778,8711,8712,8643,8776,8845,8810,8708,8777,8776,8709,8676,8745,8777,8708,8709,8643,8712,8676,8680,8613,8609,8547,8609,8613,8644,8680,8710,8970,8934,8942,8970,8963,9002,8902,8942,8925,8877,8845,8902,9038,9002,9022,8710,8778,8711,8643,8642,8711,8877,8810,8845,8776,8810,8742,8776,8742,8708,8676,8709,8641,8709,8708,8675,8676,8608,8643,8644,8613,8680,8547,8613,8582,8710,8642,8644,8952,8934,8970,8942,8934,8925,8970,9002,9019,8902,8925,8877,9019,9002,9038,8710,8711,8642,8643,8575,8642,8810,8877,8811,8810,8743,8742,8742,8674,8708,8709,8675,8641,8607,8676,8641,8708,8640,8675,8608,8676,8607,8575,8643,8608,8613,8644,8576,8613,8581,8582,8642,8606,8644,8952,8910,8934,8970,8972,8952,8934,8889,8925,9010,8970,9019,8925,8878, +8877,9047,9019,9038,8606,8642,8575,8811,8877,8878,8810,8811,8743,8743,8672,8742,8672,8674,8742,8708,8674,8640,8605,8641,8675,8607,8641,8574,8640,8605,8675,8608,8607,8540,8540,8575,8608,8576,8644,8606,8581,8613,8576,8910,8952,8911,8889,8934,8910,9010,8972,8970,8952,8972,8935,8889,8878,8925,9047,9010,9019,8606,8575,8505,8878,8812,8811,8744,8743,8811,8672,8743,8673,8672,8604,8674,8640,8674,8604,8605,8574,8641,8540,8607,8574,8640,8537,8605,8505,8575,8540,8541,8576,8606,8935,8911,8952,8911,8859,8910,8889,8910,8859,9030,8972,9010,8971,8935,8972,8889,8823,8878,9047,9058,9010,8505,8541,8606,8878,8823,8812,8812,8744,8811,8744,8673,8743,8672,8673,8603,8603,8604,8672,8640,8604,8537,8574,8605,8537,8540,8574,8476,8540,8476,8505,8935,8890,8911,8911,8890,8859,8889,8859,8823,9030,9011,8972,9046,9030,9010,8971,8936,8935,9011,8971,8972,9046,9010,9058,8812,8823,8755,8812,8757,8744,8744,8707,8673,8603,8673,8639,8603,8573,8604,8604,8538,8537,8574,8537,8476,8890,8935,8936,8859,8890,8789,8823,8859,8789,9011,9030,9031,8953,8936,8971,9011,8992,8971,9071,9046,9058,8823,8789,8755,8757,8812,8755,8757,8707,8744,8639,8673,8707,8639,8536,8603,8573,8603,8536,8573,8538,8604,8474,8537,8538,8537,8474,8476,8890,8936,8912,8789,8890,8860,9011,9031,8992,8953,8912,8936,8971,8992,8953,8757,8755,8691,8757,8718,8707,8682,8639,8707,8639,8614,8536,8503,8573,8536,8573,8503,8538,8538,8503,8474,8890,8912,8860,8912,8953,8913,8992,8958,8953,8757,8691,8718,8682,8707,8718,8682,8614,8639,8614,8548,8536,8503,8536,8473,8860,8912,8913,8913,8953,8958,8975,8958,8992,8718,8691,8623,8682,8718,8623,8682,8623,8614,8548,8614,8623,8536,8548,8512,8473,8536,8512,8913,8958,8920,8975,8920,8958,8484,8512,8548,8425,8473,8512,8484,8425,8512,8429,8372,8425,8429,8399,8372,8327,8372,8399,8327,8399,8371,8399,8400,8347,8371,8399,8347,8371,8326,8327,8347,8400,8367,8426,8367,8400,8371,8347,8326,8347,8367,8305,8426,8394,8367,8347,8305,8326,8452,8394,8426,8344,8305,8367,8344,8367,8394,8394,8452,8395,8305,8344,8303,8394,8395,8344,8452,8453,8395,8344,8368,8303,8395,8368,8344,8453,8427,8395,8368, +8345,8303,8427,8368,8395,8514,8486,8453,8427,8453,8486,8368,8398,8345,8345,8324,8303,8279,8303,8324,8427,8398,8368,8514,8552,8486,8427,8486,8488,8398,8397,8345,8369,8324,8345,8324,8304,8279,8427,8454,8398,8552,8514,8585,8586,8486,8552,8488,8486,8553,8427,8488,8454,8397,8398,8454,8345,8397,8369,8369,8396,8324,8346,8304,8324,8618,8552,8585,8486,8586,8553,8586,8552,8618,8556,8488,8553,8488,8515,8454,8397,8454,8428,8397,8428,8369,8369,8428,8396,8370,8324,8396,8346,8324,8370,8654,8618,8585,8586,8620,8553,8618,8655,8586,8556,8515,8488,8556,8553,8620,8515,8487,8454,8428,8454,8487,8654,8688,8618,8654,8585,8689,8586,8657,8620,8655,8618,8688,8655,8657,8586,8556,8554,8515,8556,8620,8621,8487,8515,8554,8428,8487,8516,8721,8688,8654,8689,8721,8654,8690,8620,8657,8655,8688,8722,8657,8655,8690,8621,8554,8556,8690,8621,8620,8487,8554,8555,8555,8516,8487,8721,8722,8688,8722,8753,8655,8724,8690,8655,8555,8554,8621,8690,8658,8621,8555,8588,8516,8721,8787,8722,8788,8753,8722,8724,8655,8753,8724,8658,8690,8658,8555,8621,8622,8588,8555,18244,18245,18246,8822,8787,8721,8788,8722,8787,8788,8761,8753,8724,8753,8694,8724,8661,8658,8658,8622,8555,8622,8558,8588,8627,8588,8558,8858,8787,8822,8858,8788,8787,8795,8761,8788,8753,8761,8694,8694,8661,8724,8658,8661,8622,8558,8622,8591,8592,8627,8558,8822,8888,8858,8858,8795,8788,8795,8695,8761,8694,8761,8695,8694,8591,8661,8591,8622,8661,8558,8591,8518,8592,8558,8490,8909,8888,8822,8867,8858,8888,8795,8858,8867,8797,8695,8795,8695,8591,8694,8626,8518,8591,8558,8518,8490,8592,8490,8559,8932,8888,8909,8822,8933,8909,8867,8888,8932,8795,8867,8797,8797,8763,8695,8695,8662,8591,8626,8593,8518,8662,8626,8591,8490,8518,8457,8559,8490,8520,8932,8909,8940,8951,8909,8933,8867,8932,8871,8867,8869,8797,8797,8831,8763,8763,8730,8695,8662,8695,8730,8593,8626,8663,8519,8518,8593,8662,8663,8626,8519,8457,8518,8402,8490,8457,8458,8520,8490,8951,8940,8909,8871,8932,8940,8969,8951,8933,8867,8871,8869,8831,8797,8869,8831,8830,8763,8763,8796,8730,8662,8730,8762,8593,8663,8628,8519,8593,8628,8663,8662,8729,8519,8491,8457, +8458,8490,8402,8401,8402,8457,8977,8940,8951,8871,8940,8922,8991,8951,8969,8834,8869,8871,8869,8833,8831,8831,8868,8830,8830,8796,8763,8796,8762,8730,8662,8762,8729,8628,8663,8696,7170,7172,7175,7185,7187,7183,7169,7172,7170,8401,8457,8491,8940,8977,8960,8991,8977,8951,8922,8940,8960,8871,8922,8899,8834,8766,8869,8834,8871,8799,8869,8766,8833,8833,8898,8831,8868,8831,8898,8796,8830,8868,8796,8832,8762,7187,7192,7189,7180,7185,7183,7175,7180,7178,7170,7175,7173,7183,7187,7189,7169,7170,7171,7177,7169,7174,8977,8999,8960,8991,9016,8977,8961,8922,8960,8899,8922,8941,8871,8899,8835,8799,8766,8834,8871,8835,8799,8833,8766,8765,8833,8870,8898,8868,8898,8897,8796,8868,8832,7193,7189,7192,7178,7180,7183,7173,7175,7178,7171,7170,7173,7171,7174,7169,9016,8999,8977,8960,8999,9017,8991,9045,9016,8941,8922,8961,8960,9000,8961,8899,8941,8924,8835,8899,8872,8766,8799,8733,8767,8799,8835,8766,8699,8765,8765,8870,8833,8897,8898,8870,8832,8868,8897,8921,8832,8897,7171,7176,7174,8999,9016,9035,8960,9017,9000,9056,9016,9045,8941,8961,8978,9000,8978,8961,8924,8941,8962,8872,8899,8924,8872,8801,8835,8733,8799,8767,8699,8766,8733,8767,8835,8801,8765,8699,8732,12624,12625,12626,9051,9035,9016,9056,9061,9016,8941,8978,8962,6827,6818,6834,8872,8924,8923,8872,8873,8801,8767,8667,8733,8699,8733,8666,8767,8801,8735,8699,8665,8732,8798,8765,8732,9051,9016,9061,9079,9061,9056,13696,13682,13671,13696,13671,13694,8873,8872,8923,8802,8801,8873,8667,8767,8735,8733,8667,8666,8699,8666,8630,8802,8735,8801,8699,8630,8665,8665,8764,8732,8798,8732,8764,9075,9051,9061,9094,9061,9079,13671,13670,13694,13706,13694,13670,8802,8873,8874,8667,8735,8701,8666,8667,8631,8596,8630,8666,8802,8768,8735,8595,8665,8630,8764,8665,8731,13695,13706,13670,8874,8836,8802,8768,8701,8735,8634,8667,8701,8562,8631,8667,8596,8666,8631,8630,8596,8523,8802,8836,8768,8595,8698,8665,8595,8630,8523,8731,8665,8698,8701,8768,8702,8562,8667,8634,8701,8702,8634,8562,8596,8631,8523,8596,8562,8836,8837,8768,8698,8595,8697,8560,8595,8523,8768,8770,8702,8562,8634,8601,8669,8634,8702,8523,8562, +8461,8768,8837,8770,8697,8595,8664,8560,8629,8595,8523,8493,8560,8770,8736,8702,8669,8601,8634,8562,8601,8527,8702,8736,8669,8562,8527,8461,8461,8493,8523,8664,8595,8629,8629,8560,8594,8560,8493,8492,8770,8803,8736,8669,8670,8601,8602,8527,8601,8736,8670,8669,8496,8461,8527,8433,8493,8461,8560,8492,8594,8433,8492,8493,8803,8769,8736,8601,8670,8602,8566,8527,8602,8736,8769,8670,8461,8496,8437,8566,8496,8527,8377,8433,8461,8594,8492,8561,8492,8433,8460,8671,8602,8670,8566,8602,8635,8769,8737,8670,8528,8437,8496,8461,8437,8377,8496,8566,8567,8377,8405,8433,8561,8492,8522,8433,8405,8460,8492,8460,8522,8635,8602,8671,8671,8670,8737,8566,8635,8567,8437,8528,8497,8528,8496,8567,8408,8377,8437,8352,8405,8377,8460,8405,8459,8522,8460,8521,8351,8312,8334,8334,8313,8351,8312,8352,8335,8354,8337,8314,8314,8335,8354,8671,8704,8635,8737,8704,8671,8636,8567,8635,8568,8497,8528,8437,8497,8464,8567,8568,8528,8354,8377,8408,8437,8464,8408,8352,8403,8405,8377,8335,8352,8459,8405,8404,8521,8460,8459,8351,8352,8312,8376,8351,8313,8337,8354,8379,8377,8354,8335,8704,8703,8635,8568,8567,8636,8636,8635,8703,8569,8497,8568,8524,8464,8497,8354,8408,8407,8408,8464,8463,8352,8351,8403,8403,8404,8405,8459,8404,8432,8404,8351,8376,8354,8407,8379,8337,8379,8380,8636,8637,8568,8636,8703,8738,8569,8524,8497,8569,8568,8637,8463,8464,8524,8407,8408,8463,8404,8403,8351,8432,8404,8376,3510,3527,3464,3497,3510,3464,8636,8705,8637,8738,8739,8636,8597,8524,8569,8638,8569,8637,8525,8463,8524,8407,8463,8495,8600,8407,8564,3483,3497,3464,8636,8739,8705,8637,8705,8740,8525,8524,8597,8597,8569,8638,8706,8638,8637,8495,8463,8525,8526,8407,8495,8526,8564,8407,3464,3477,3454,8774,8705,8739,8774,8740,8705,8706,8637,8740,8525,8597,8598,8598,8597,8638,8706,8741,8638,8495,8525,8563,8526,8495,8565,3477,3489,3465,3454,3477,3465,3761,3738,3753,3727,3762,3753,8598,8563,8525,8598,8638,8700,8706,8775,8741,8638,8741,8734,8495,8563,8599,8599,8565,8495,3489,3518,3502,3489,3502,3465,3761,3736,3738,3727,3753,3738,8844,8809,8706,8632,8563,8598,8638,8734,8700,8598,8700,8668,8775, +8706,8809,8775,8800,8741,8800,8734,8741,8633,8599,8563,3547,3517,3518,3502,3518,3517,3465,3502,3488,3710,3738,3736,3727,3738,3710,3727,3695,3709,8632,8633,8563,8632,8598,8668,3675,3676,3658,3626,3675,3658,3678,3709,3695,3678,3642,3677,3677,3641,3676,3564,3548,3547,3517,3547,3548,3488,3502,3517,3710,3695,3727,3594,3577,3564,3594,3626,3608,3658,3676,3641,3626,3658,3609,3695,3659,3678,3678,3659,3642,3677,3642,3641,3534,3548,3564,3517,3548,3534,3710,3679,3695,3577,3594,3608,3577,3534,3564,3608,3626,3609,3641,3609,3658,3695,3664,3659,3627,3642,3659,3642,3610,3641,3679,3710,3697,3664,3695,3679,3577,3608,3609,3565,3534,3577,3609,3641,3610,3664,3627,3659,3642,3627,3610,3577,3609,3578,3578,3565,3577,3609,3610,3578 + } + } + LayerElementSmoothing: 0 { + Version: 102 + Name: "" + MappingInformationType: "ByEdge" + ReferenceInformationType: "Direct" + Smoothing: *45598 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: *1 { + a: 0 + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementSmoothing" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 2709857248, "Model::Stanford Bunny", "Mesh" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",100,100,100 + P: "currentUVSet", "KString", "", "U", "default" + } + Shading: T + Culling: "CullingOff" + } + Material: 2249280928, "Material::Wood Light", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "AmbientColor", "Color", "", "A",0,0,0 + P: "DiffuseColor", "Color", "", "A",1,1,1 + P: "BumpFactor", "double", "Number", "",0.0299999993294477 + P: "TransparencyFactor", "Number", "", "A",1 + P: "SpecularColor", "Color", "", "A",0.5,0.5,0.5 + P: "ShininessExponent", "Number", "", "A",19 + P: "Emissive", "Vector3D", "Vector", "",0,0,0 + P: "Ambient", "Vector3D", "Vector", "",0,0,0 + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "Specular", "Vector3D", "Vector", "",0.5,0.5,0.5 + P: "Shininess", "double", "Number", "",19 + P: "Opacity", "double", "Number", "",1 + P: "Reflectivity", "double", "Number", "",0 + } + } +} + +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Stanford Bunny, Model::RootNode + C: "OO",2709857248,0 + + ;AnimLayer::BaseLayer, AnimStack::Take 001 + C: "OO",2708656048,1024396080 + + ;Geometry::, Model::Stanford Bunny + C: "OO",1938977120,2709857248 + + ;Material::Wood Light, Model::Stanford Bunny + C: "OO",2249280928,2709857248 +} diff --git a/examples/models/fbx/white.jpg b/examples/models/fbx/white.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d59b8fdfd7daf2902d0277006a460cd879f2720 Binary files /dev/null and b/examples/models/fbx/white.jpg differ diff --git a/examples/webgl_materials_translucency.html b/examples/webgl_materials_translucency.html new file mode 100644 index 0000000000000000000000000000000000000000..540441e82f92497559a78549baafd05f6576865f --- /dev/null +++ b/examples/webgl_materials_translucency.html @@ -0,0 +1,176 @@ + + + + three.js webgl - Fast subsurface scattering in Blinn-Phong shading demo + + + + + + +
+
three.js +
Fast subsurface scattering in Blinn-Phong shading demo
+ [Thanks for the art support from Shaochun Lin] +
+ + + + + + + + + + + +